From ecafa4defa76c00bf754c87b90db64903ec53b77 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Wed, 25 Mar 2026 14:19:46 +0000 Subject: [PATCH 01/23] Initial plan From a01148eaa55a864d45265397c498469141c059f6 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Wed, 25 Mar 2026 14:39:07 +0000 Subject: [PATCH 02/23] Migrate from Turborepo to Nx for build orchestration Co-authored-by: magne4000 <1098371+magne4000@users.noreply.github.com> Agent-Logs-Url: https://github.com/vikejs/bati/sessions/0c41f2d5-ee26-4f6b-ac72-d4f05545b7fc --- .github/workflows/checks.yml | 8 +- .gitignore | 4 +- .../5a8293ec1b12419889284f7db84b9a04.db | Bin 0 -> 86016 bytes .../5a8293ec1b12419889284f7db84b9a04.lock | 0 .nx/workspace-data/file-map.json | 2964 ++ .nx/workspace-data/lockfile-dependencies.hash | 1 + .nx/workspace-data/lockfile-nodes.hash | 1 + .nx/workspace-data/nx_files.nxt | Bin 0 -> 48396 bytes .../parsed-lock-file.dependencies.json | 15127 ++++++ .../parsed-lock-file.nodes.json | 20245 ++++++++ .nx/workspace-data/project-graph.json | 38442 ++++++++++++++++ .nx/workspace-data/project-graph.lock | 0 .nx/workspace-data/source-maps.json | 8346 ++++ boilerplates/auth0/package.json | 9 +- boilerplates/authjs/package.json | 7 +- boilerplates/aws/package.json | 19 +- boilerplates/biome/package.json | 9 +- boilerplates/cloudflare/package.json | 9 +- boilerplates/compiled/package.json | 9 +- boilerplates/d1-kysely/package.json | 9 +- boilerplates/d1-sqlite/package.json | 7 +- boilerplates/d1/package.json | 7 +- boilerplates/drizzle/package.json | 13 +- boilerplates/eslint/package.json | 7 +- boilerplates/express/package.json | 7 +- boilerplates/fastify/package.json | 7 +- boilerplates/google-analytics/package.json | 9 +- boilerplates/h3/package.json | 7 +- boilerplates/hono/package.json | 7 +- boilerplates/kysely/package.json | 7 +- boilerplates/mantine/package.json | 13 +- boilerplates/oxlint/package.json | 9 +- boilerplates/photon/package.json | 9 +- boilerplates/plausible.io/package.json | 9 +- boilerplates/pnpm/package.json | 9 +- boilerplates/prettier/package.json | 9 +- boilerplates/prisma/package.json | 9 +- boilerplates/react-sentry/package.json | 13 +- boilerplates/react/package.json | 7 +- boilerplates/sentry/package.json | 9 +- boilerplates/shadcn-ui/package.json | 7 +- boilerplates/shared-db/package.json | 23 +- boilerplates/shared-server/package.json | 19 +- boilerplates/shared-todo/package.json | 7 +- boilerplates/shared/package.json | 7 +- boilerplates/solid-sentry/package.json | 13 +- boilerplates/solid/package.json | 43 +- boilerplates/sqlite/package.json | 7 +- boilerplates/storybook/package.json | 9 +- boilerplates/tailwindcss/package.json | 9 +- boilerplates/telefunc/package.json | 13 +- boilerplates/trpc/package.json | 31 +- boilerplates/ts-rest/package.json | 7 +- boilerplates/vercel/package.json | 9 +- boilerplates/vue-sentry/package.json | 7 +- boilerplates/vue/package.json | 13 +- nx.json | 18 + package.json | 10 +- packages/cli/package.json | 2 +- packages/cli/project.json | 4 + packages/cli/turbo.json | 56 - packages/compile/package.json | 2 +- packages/features/package.json | 2 +- packages/tests/turbo.json | 18 - pnpm-lock.yaml | 616 +- scripts/helpers/boilerplates.ts | 30 - scripts/new-boilerplate.ts | 24 +- turbo.json | 17 - 68 files changed, 86083 insertions(+), 323 deletions(-) create mode 100644 .nx/workspace-data/5a8293ec1b12419889284f7db84b9a04.db create mode 100644 .nx/workspace-data/5a8293ec1b12419889284f7db84b9a04.lock create mode 100644 .nx/workspace-data/file-map.json create mode 100644 .nx/workspace-data/lockfile-dependencies.hash create mode 100644 .nx/workspace-data/lockfile-nodes.hash create mode 100644 .nx/workspace-data/nx_files.nxt create mode 100644 .nx/workspace-data/parsed-lock-file.dependencies.json create mode 100644 .nx/workspace-data/parsed-lock-file.nodes.json create mode 100644 .nx/workspace-data/project-graph.json create mode 100644 .nx/workspace-data/project-graph.lock create mode 100644 .nx/workspace-data/source-maps.json create mode 100644 nx.json create mode 100644 packages/cli/project.json delete mode 100644 packages/cli/turbo.json delete mode 100644 packages/tests/turbo.json delete mode 100644 scripts/helpers/boilerplates.ts delete mode 100644 turbo.json diff --git a/.github/workflows/checks.yml b/.github/workflows/checks.yml index 047f6f232..1676a57dc 100644 --- a/.github/workflows/checks.yml +++ b/.github/workflows/checks.yml @@ -41,12 +41,12 @@ jobs: run: mkdir -p ${{ runner.temp }}/bati-cache - uses: actions/cache/restore@v5 - name: Setup Turborepo cache + name: Setup Nx cache with: - path: .turbo - key: ${{ runner.os }}-${{ matrix.node }}-turbo-${{ github.sha }} + path: .nx/cache + key: ${{ runner.os }}-${{ matrix.node }}-nx-${{ github.sha }} restore-keys: | - ${{ runner.os }}-${{ matrix.node }}-turbo- + ${{ runner.os }}-${{ matrix.node }}-nx- - name: Install dependencies run: pnpm install diff --git a/.gitignore b/.gitignore index d54ab6c70..de1bc5dab 100644 --- a/.gitignore +++ b/.gitignore @@ -106,8 +106,8 @@ dist # IDEs .idea/ -# Turborepo -.turbo +# Nx +.nx/cache # Generated GitHub Worflow action .github/actions/bati-gen diff --git a/.nx/workspace-data/5a8293ec1b12419889284f7db84b9a04.db b/.nx/workspace-data/5a8293ec1b12419889284f7db84b9a04.db new file mode 100644 index 0000000000000000000000000000000000000000..f0504c6554e9f86098917114551fbebd44a4e374 GIT binary patch literal 86016 zcmeHw3!EH9wRg|V_B?xL@*vp+64;Q0BqTHGclQJWI|&H{$U6aoB+F)Zk{$M$-Pt^V zfX&+g0&*cBARvk$m#e7g^#O~u@RpRV?yE^=wzlGE0;tXi{dd3nu-mXnrjXj!pxUCWB~C!ah| zAnEAutN_Kb73-E9zhuqd01j2p{$Rk4!Ag6r(%A;;;ksqZm#ke^UcRd3xFt)=>rY)`d)rC($fVJ5Ye&Q7^qf-sZ@nEO8rY_d_?htB z7#%4W7zaj*|02>(_~oV%UFPrjJ*JQS@6U1rgZ*b!I%@uGII?5#thZM1TOIvexfkZ0&h{F-JM90_5q%A= zA~Sn;W!K0D#82KN@ddJax1V1r2G_f>I0?(j-|-v+!Re|2ql( z4gZ7^2qh3oAe2BTflvaW1VRaf5(p&_N+6U#D1lG{|M(IZABjzyyyCRBQ1R#1H+3}?V{gSCh+Pz09-A0_F8Y~hf7Fde zBj1bcjckt0lm1(JU=-myo+(?#bV;+dlHA`%WA1dxaBSBATATjmx{hWCgy2L|tM*kmBE!>V3y3tkWay4= zx+P76|3P)G8&GX&AF5Ti?Bb|&Poq^q9j57OCChRw*K}>$vI3&Y&VfPjksCpzQX<`T zR9CZfpmbGRHyo?pzRtnw*=K{V;ek#W-hA08OqU!-wM#0r($bf#r%t_8iaKz^!j z8waE~)YU#%=`3_^=IBiCNZEk;bn>)xP17~iB2T=e*M$#cogICJ;pzyoIg|`)fk$lG zs;QPtQ+F++KCU{o0`s98K{lI`8Ki4KXPB0z>$YQQr9hNG*1c<}(!-As+nXg@8VE(R zG}p9UT`w7$WoS;xt_x-RaHTL*>8lO$gqC-NYycsQ4jt%>lB+xL^enfe2K9CH^bdD# z=>f@b?XQSaTUQNNEy0)s z;lPLsYV;pNt-rH>M3vKJ&6+ORwx)wn9UY#$X2C04A7n%QJ=IRJkB)b^YyhEQk-ouO zZdxTMt014CMsQH=s9}`T7$u0tH8mUlIF@d?s$L(V13m4-LsjtDEmrx)x?YQHIMXF~ ziO7>TbVG%KW0u@fV=sp)gWE^E7e{-C$<{(Lz#YpmO#=i3?-exNvFc-BYk&XNo=Ty; zuf1nit=hrA_nLPo2)G%B0(o^EONHTTl2$l&eZX=v+UDVEPv;zOs%*?`mP`;R;4SDO zOlX!14}jV&{5OWNQ}iw_qM}RTU-*2ZpGrLO%mAObuorK*I!Py7d+1_Mm z`UJ^RLBclt<3c;2rc$Xsp^~N(=p1j7Y|NS#k|SkZ|DnKu0Z@XzS=M!-tM#P}hLv#4N$1 z)S&esd8htlIyDNNwP9@_6Sf1bhPT*MoqBU&zM$B7ULF>bW{FM<CB^SjFJ6sTz4QFoV>e-ay|#FU20|Wn>G+vqmHUkJmPASA(^^1anm&;;#O_ zehQxJrPzRm$~CgOx{hI3nrXu03&3<{@zF_!2B79xmZq6Rdho=px{&E?;x{@WYw)N^ zmtb9U^^yydmu8stH+gflzc+ZX;s-ceB^W?3)9B=J9~jEub>5}=?T}?-4m=fy%<`bM zKtEMSGwcITg-k1z9v|IA(Ygk67re7-$#x7IhKZxsyGVV#eRPbXT@bWs!FyFAuc4vB z^iW6Bm6D?8c~RMdmcR%FK|`Y**VJL)!IW7SHd}Xm<`LF#3&xsGUh5Kw8~!uv!)ai! zI@H_lGnW{13mUA#oUb{suECNG3r^6Mfv)~qe;WN10IFQG zWWyT-i-8HkECC_Wk?Iu$iX*F_pH%?!75OyKO?aC@uO(|>Ku}j1Sp|Kp0?;vG-f~=6 z;XzX{xE|DXMT%E@K}m!z15+3ZFup)rgC_?wSp7vkpd_*;^?-H=lZ-_aU)2EBiwFqT zpL!P#XoswdZcqzhzJpmBMyCyLtO1K44AXiSIJJ;boJA>Mv4`~)x(X{1DD?1>HA)GePODLsij z={3pyxu51=$=#K9Q+?T6a=Q|l%qrzoG%=3hm)@>Et$RX!St)i8Hqn+zn}S~{A~83{4L2-l}l1zQx?RP{L$$j zWnYm$nmsHvJ^79JH#05qHN+uYVPXfF*z-BUiQnW%Tl+; zpUvEt?orm}{+K#CwJ+o5XDEqmcYb~Hj%+-CalAF_Cb!9-$+c(SPn?!`P(CBEE%B51 zhV;dWnWNYZ!porqLJ5Qt_`fWHNiib|O9)Zz!D48`ngZIGp-E4Z8=$6wG68xvS!ir1 z!Hpk~8?ab|O|3-qW%&33t;2Do?~@x~K!k5B74${Wc0gHx4<6|$%8Gm^!kR@EUeFGq zB18J#98gt2n{+kl2}(jPz?yG>u?tpA z_;%1;>AUm}sK7ediNJ;iiwd;Zwsq+{v|(V)1Pdjs;=m8qGFX|U$H|Qn=n%wqplYC; z!KWk$KzfYvf{!^1TBCu&1D`+u(xgY}9r%icPXzb^0X8}qC&0KUeVg7Pt2Y>Vi7gbq zW?)%&OVT5x8XeY6(1%>Gu@Ku3tb2y^Epo#I1ql=@qKboV1?IGpEj>&rz&-+NZ3$E_ zV$gt9(v`kRD*=&#x(`Ycs8}Ec6O6XfL$oiTqQOlAtPWu41lbZj85(>!IyO8@YM(Y#=^OM0(Ns&e38v4I3dTtI+?T#id66$(_>cfS2W%i< zUW0$6uhBd38AmJw8tEUXjO2Sk`YL4xrj`xj-@nG~}k@M$S1^_`i&N)rSN zE$O&$(J`f4Sc60xt#mUb5p9pswUh+0GfE$$ZGz4L4#Pla!Np2u^KIsa|3o+_Rm(x3lky*Nl^-8quNgtti5Idf985#eg%}%Kk!&jyod-#U+sKE#x@ zn{g7YR_77|#6WcpX%n)`A>BqfAvUUAgcD+o+DWgAcBdWWI$~kkJ~5`ji_&OI8m4SS zqfw2CLbMJI(Hn>vXpr7O%styk6^L19fD$0)n|?|lnrZqd0b-8nB?O4orH5RHMY{3Z zyhN@eCX};i1&E=fN^c<6kS@XrF?npI1c+T@3pxJ}LI1)(p#(w+gc1lP5K17FKq!Gw z0-*##34{^|B@jv=l)yi+1jzaS@caLt_yLDq3ndUrAe2BTflvaW1VRaf5(p&_N+6U# zD1lG{AOUv%{~aQWeEyyMqWrkrOSv!RF3PRT&CI@)eLQ8H}4NcX2((_>RFq`r{4Ftsi6O8krQ^W!JO>HpW{2jnZ|jdHQ+y{7Ls-P$zJ)Y>#A_Co9nu?u7CVl$#|MIVdq zjdn##(RAdek$WQNMox}QkzSR)(fGiMYZ8)mNK%%;B~>_dGc-)|&O~mR*?s4B^7rT3 zimL-W;Re%Z|gzW2$( zi9Q_hg5%&jOf+F!7sRiz%NY|mjseT{ERsK?*AtE3%tT{K6~W!8xQXzaPPUoVjqq; zXmRlFr3AkFw}nLkckxUh2k-keg|94>eK_JT#=*Or3B2}`Vr$S>#I=sYpZ;}%?|Za( zY=8$(b~5bwQ=1%q%OJsbTZLo%<{(~m9K7xK6do%q^x<$)tnt7p2XB9xz_(P2M+dDT zt#5GiKx4k_;i@h5SP}T{*LyZ0!^<)+Tz?s|GrN*phbiP3wY2-b2X*8Ue^N}#A9?68cp+? zhBLQ+uu&Lb!N4|Kjdtpu&A&OWs`KaedFT7knKo+0>|XBCSCpMstv&w2|)-+-VB z1liI;{+=Ey6i9OjUOaBk!4LfffgheJ&I{NhBb&#&1V7C!&JFO$d(YvgkO>+ZRXmc% zH@s;a{*dbk{?K0(=J?G=-g_QCi^AQ)Y#)xi_ZLZ6wKS}V}cZ!n&Jffa*_#{~^s!F!l9N-c4m&cz? z@R^;(i2)w*istZ%y9hr0WN|`(M^5E)c==ldpWHX^poFB+8A@>L=F#mGy{j<3E=(a< z0S9loh`)NMjHO9)ASIpIICe;E{L|96s_1f^WL8 zm=EwsY>NZ@JL7~0ss69g^1r zH7WmEvD_3MQ_s94*a`z;b=hvs7iFRh!Bp-@=KKf$r_{4pYU&il<&&qu) zu_bnGRFm&jo=tT%&CbtAUzxcu{#v{>@$6`<9+$Z}eW$W3b)&pnnUo&iG^S~TJSF{x+|*Rg{XB7KeqrRq*xR}J zi6>(1@^#q@lb?w_t~{LbqI;EVQupQiGO73mr9JiC*z@vZk@qs)iFiDpSK|AXH&e;j z2{AR>o%};Kom!RuO=hj4rsrlCq*|ii&3!vzWe-n26WN`=HF;I^^UB>RH+FW@zNR~( zCq>Vbm&^az^lIY>AfYs{pk6o9h#*)bt{Z3&5hQpPi*AEO;$qQlut-?f(Q05LMu@BR zFYFEyrRrMJ04zw>$0!MyafMh|EQk(72^PXcT}@+&Ad#(D3>hqb6^$VSkvxSkRWybS z7Fg;EDl##Xf^<2#fklbhL%V_nc484^urN`VvF?k}_@zrniLFE<$Y8OcXapGuBi0y! zo<)$sLa(q0GD!G%=>pm;EaVe}kb%L6gm$9wi;%cd=hHwTun*9XrhrD4L6Rk~$TCRM z1{zrg3EOoJsQ^hSaW;!-B1Q(=#cqg^$!KI5h(gyGEQ7@8s*;+K5M5oYW-$;K3oL`|cyA$`5I+DvK$aLdtdmxO*u*2=XHZ5g?aY(Aer z`HRkG$20yyNbjYzp~w#W5<-CZi5*9-BMxDUDPHvaT12iR-V9}0G2+wFN^c4P<}Nro9v0 znJjW0nXgRB2-$iw=nZ7P(y5$C7M_vmHZ)p;ILWA#5i*6&r#FyZ7YQdseg#T^2z(yB zfeeDV^&1V(?nqJvG6?3-&WXNwvneBFG|i&D7PBrKLHi)O)668-5x!!h&* z;#85RHxTcM9DNd^n?x30y%oksbbQDVK8S}ynzcyu;7kz$#AhMtw^T^^lOP1hBon6u z$a*Lf0%SdGq6Em~6QegqPFL`udJw~lnIk5V^Zz#|d!+mi^N;55&EKBCF8`7I?)3Z1m2jtGUw%nbJg6&-0IwtTq#$` zP0LNlrLup`zL9-7`)u~U?CsfWvR>xm%y6ch(K6FAWAkt2f0O@3{;S!ivJYp6v(@az z?CR{2Y$;pFPRmZnrj)-bZzwM-&nizT4=eX8cPqCj*C-dm$%9^{U0JUzQx+DSUPr1z)4n|>gDU;5MO8`D>& zz4UOp3fT%*rI1^?r6{>L8v$4B@dm+?O?<$qkl|G1d{aS{LHLjK1E{11=+@!?GDkccn%^SSbQ zTzNNFK9?(>!m4~?UAXnbTl?S+TKUePK%Dr5u;N+{%@Y<;ur!<%L}NXs&z|S6;xCOI+FI$_`hyxw6&p z?9GPXM#FEt;kU-|Qn~VcQuf`?i(I+DmFIEgxm@{3t~`e;&*sXrxbhKPc_vq$!Ih_T z<-@u1G_Ksjl@H^}hjQhqTzLvtK7=bD%#|l|;mT>QoZ`w!uACrce@>5c*JZBU#9?AwIhu|glJaS}^Z(=X@8n+3 zeKxl>HzWIe_NMHq*>TDbls(E)C6@VS=G=^v{xA5J?n}>2y#n9KXQrkme+uXP*Cod! zo=WUVEKNk?55~`q+wz<8=jC2`PSY=&ZfiONEEW4>*Tz=GGH|N@g6Of4cOzeo?1-4s zo6_h1rm`@~&DI5RBN;Kkz9wYJ+C)-Y7F464TP>Qoz;G5oUMKNVYl(3{HrUP-;gE2v zk*QsF;}&THNebJT5vxjXU6C~xS8YL-pb3S`f)={^xJc0@H68PE#o2uU2)n5;WGU*sY7 zL{%5-z#~R@h}(oyT2?eLu@*qeuaSKrmlkV26J$#5A`h_NHa-(;@sa+6MeNYh<>L?v|<``aiDZP5{aN09x1W0r^njqe*YOkFfH zcq-yP@tC^=9x5auY-oq-E}G%4R^FVC)r+!c5A&yejDz~t~ftdSUPh`1%kR2?uCh`zRn5vbh`aKbM&E|ac1G1RHSRh;V@&9UIVJ?6zbUy8O2ykH%3B&2Y+-0$~V#1-ZtV zhu{&ei<W5d?V#8#NdrSd_3 zD?}fN+0P<)f%tYz-Y&3!)b@?cd;5biDJ!fmh<8L!<3evPFvVeR+KV%OI}k^d$a?X8GsS^!T8q-YKoIwh zS+|OPX`IcWZN}o1-w?#VC34ILk%>4^O?^?)ZwTTGGb<|aFvOYED3ufb7=xZVHstiB zN#!-yHSB|aBeD=5uHls9j0F-)M?a;3g}wlSNR1q0L@iz{*Pn}JxvHw#kR2FYRl%=W zjeTxv0|mmwh8cZv6SSkr00m65RMjGk9Ps>f4M@6qW%faV2_)4W*%Hbm=C=gffL}Pi zfkIy(d^r&&i=zI68M#@nf_iBcpAdO8ju6759AQ#Lj{1*(`0uiSFYIv($o_v<{2(d! zaOz9x*Awq4o0Oj^JMvE_n=`*uj!zt(yDPU;xjMZmUC6A-d?CLu(UYAKe<<;?GBN%} zrj%*PJej;Iaa8)w>{F>}xi|Bd#GlE}h#!}_F!R^=aIQ`HR_d($SCV(-ej2}1xjUc9 zzL(yf+nGwG)}$xoPl3Jn1#lK%WAY7UezGn7(X5hu7)~GDlAD;nHCIeNn|>&f1`qyZ zraRl4JU*#r*Jtm~|0Z{J_Tt1-nU7}|#y_h3SK|KoyzDK>9jT{MH^&c3tV>*+UYh<% z>g7?)2jS&V0-*##34{{(8xkN+XC*@e<;by1hOJwgrdx(algmQtb~vr0s&2`Gf<;Va z>;t#@44HZ{|*A$vWX*D&ZA0OUv%I|G26i0Y*7ZsLI`b_4)955VIur`qE$SJ7PsF=hc2cPHx0Oa7)GS;G!Mo6H)L_#GP8#X-w zfE;|HCjgLxPwWH$yic$xVY(#^#Am`=;<`&{4Yqjji5>w!4n8fW1gd!OiJk#K4nCEs zw8eu@t>ik?Yk~852}}!M=Fp*aE;|7r9(+26R*W2cT1YE^4+9d@O4TeF5paG@(~c(B zk%Le4006Rsvw+}{eHrHekLxCmFylsg%C6scT=8Ex_}t) zi;TZ`$cTCWBaYL)_rK_B&Ak5+qxg}u4#dz+-Tx8m^=#Z-d=?Wo`D8R*6CSv$yDAJc z{Rnyk@jIW%dMAeSor`;)s73tpTxz(jx#!-u9{F z(IJ*gb^<^&N754jh>h`J!Ur)NPGzV z5hF~BQXqzvB<-DOEn)uu;t?R`|BoC2qW=Ggt>S;=|4&T{(TOo5h1dy5{J%92S|9xX zZwIgcF#bOTrw-%)yI_$n*^Xm_z5{Ey?mLS>M9S_k{(s4^;M)h391SAU+ni{^`2S)2 z{~_{@gz^6c>pJIBOC%J={}1E;gHw=gxL|EL5GA>KNErX$avb<@1=AX_tZT%O!ubEhsHB@3#JVq8#I(UlCmF{72dfrDvLgPvV24mGPB_sp{(pm= z>VR;%!ubEN_W{WxU^9fQQ?}!B!uf}f{}1T}p1X#8|DPD0AmyLV-WS1% zsUA2lpH2P(&c~mZT$wy9@rT62iH{{VCm{J!{OR~@@qu_bK1O~{{x|tNd4+sv)9;%e zXu1;42+WPW6MG_dW2`IY#1hf}h~60;jxK>lg@69vNTA?BA|0AC1K9>V@WI=6)8nAa z_uaF<;L$`nkkkU%9^~-1lKgvp_gr4|Ad?PDf`M!sas=0tL_K|XEG&4CONTZH*-qr} z*X$wqTYp*fXf7R+Wdqq}KJ^k_02n#RL% zK^uX1h^|!v>oM5%U5?pmli#mO@|O5+m#%_4w9_0Z_gV=57Ox{86n%49Kp^m zLh#|~MGrFS_ypqiCP&bFB_Y`L`+^5Kby#8)aodx_50DIGeLJ@lJ(^R8bODJB$r1El zP6&3?iXKg>LkN(7ksQIPj}d}_!wMc`)nVgK+&<;-okSJx>)%uKXjUCk0kW;i6Oc4H zeZ7|#JepPq2#~0g9DajJ@SQNQA+HV_ci{MDz!sWK|AN&(<19aYt4ZdYzRr6K9%R;G z!${no<@hfp3Txkn`2~+=)`9jQ+qN9OO!23FyXeu>I;6wMb}mP7Oq^7(`q82Xxpml} zKmuLz1Sb)KrBDOSu0v|j#O+^>z@+bf`P=h6NUx)jgf`-~Fb7vZMfe|cV!?y-I#fc) zb}@&yHc`A>@MwA+V2=dRR5lkLO2ny>9o)nBBahsaMAN&Bp&n_0u_u;N$*E;0J%Bu-k_td)*v7x0t{uk13uTbQX#I$>Eh=f^WXM za8AJ9b>L_S_=lLTOSU}0UU~rD`#zo5$GuxPJAlJZKkQt?Za*Xu1*@}TItSo=@>_&^ zu3X#|v>-Q?h1|4v$SO}tnQT7w+Z!;X))db0`+&HkaPX%+0^iqO{7_v)qL&JX|G`><|M9Bg=>Z;bUg7ZH`x?Rja9MFf zfJe@Ra`=a7I_{?{#nS>j;_AZTA6!ZJ|6pP9)Buloz;O7llI*bE-@CJLiZ33-F@}SG zu|nVvzdUcfFMII_Cx`yr06{-^ba7qK805Gnhrfs9W9|Ox@SmGS@Lya{ zzW-NB4@mj%=kLhxgm`~S?pcWKw=H*UE}Q*%_Oscuv&*uRm0v4gQ7%H7;>?8fuhU;kUjY&I=BK69k02(%_S6ZfDG(>`n-CpuYx1aMKJk3wONoypHh~2| zj_;4(9X~I=B0g1qU4BHqN?s*TX!=>x?M+=x#n@Z12Vxh+md7SWpNoDb+8=eJ(a85A zdn218^Q8ZV=HY)F&y+1=x}+grk*%BCYt^%c=GQ7iwV}drt=cox(N*c_F4T4nREBiV zkd3+1CB(ZjAna}Lt5y3d9FgJavIRsMqJ0EZTiSJk?m6{5#nGN5Ooe#&px|nWc%jJMq#>yd`kpGwMtKA%Wz)@*FM85 zQYyq}F`$Ch)oRtsAV+0-1=)hSNEC)f@6mv)qrZ2c+EeM|$SiN3Y|RHUM4b%CXl9Dd z{r%k|=;ksy+I+&3|B{x&7ow-H%dU(sTGE{ z^;B#812DbWlnn7N<;c2s4OM#h5n_9@WJ?2~AYWVo-S**1VW`qq8{`Qs?+DodLgY&! zpzG-AAMV`J1CrsoXL~bc1Kt}%UkT`Hkb!(hwXd^d#ISU{8SI5aK79hpA@&$*{hj?I zs+kyxke@2Pf*eRRCTWdjJ2>;?hlV5PmIhEYyql%oG}KsnIUK0H+2+*2u5 z`Nq0li)=X4CB#EHp!9n=R2kep;=MT9J506~k^v4bunkVk0qxfQ{;fTgLVI6(&#qdv zgMaTe?@$nMGYkbWLViHb&1jp4t391_ys5G=vsps?!~&9z{=o{x&h@6q)-2$Us22g4 z@~7yccL==XfJXGG0KKKsUV~KiLzJN49Sj5$U{(-aYy$$AfqG#e50PqSdy}E*6C^}c z4dA5d1Uko?Bpb6PNQlxLKxxCtUtrB+%|KMz035WN@t!DK(}`3>9WcOm^i*jVkMzbv zJ3!i^vK2rnj{Y^<8z)=SfHC4E7@)fhA3Byn5f8)w+Nn|K9B&M3F5;6IKw-Y1*m+(a z7LsNOas3OR{xt2g&iRrM!yO0s_8shD&+)Q!+#zRe188k zNG~H>FrGEUt1|$1_4oBt@LVs&1~j6M2jC$xv-s#FLnFSb0h-Pxexnnz29H`)k^}7K zYJYF=V#N<|Za4uQpxcLQU8>&>uxHJIry@qJ4!~qusr2~hCW=P)&;x_jq26|%xx|i7Unp5HrK1D9n(o*@a!8LxQ}KZ;Jr#Yo4r^J1KJ{B7T7OHBN@! z!O&tFkO1wgnhd?2q7e`C0PX9T3_UDsWGw*OzY3e^Y6&!0(}w>C;6S&e=t2#Y%4P|1 zIuGE1Qc2;(A-2#UA1whs&?YH<{vfD>&=|zoJ;2x1NJg-Y5g=btb%H>DWGxy1Rjye= zG6isWrZ}<+`dI}?G@F2+t}?O;`d9^G$^j0~jbODGltkzh=77q2PuVKl`RXpft=W=lW>|K zqv>Ka$Qg`)hSvcpjkXn(KNx^u_%}d(0ZjltzjSi0FCgKSKT2Y3ku3+BhMXA*Xhx`g zl*p>c#zGh;wvgB%plMY1DA}A&w$5tcY7HSXOvo3a!jV4+pHY9G0*zzNCV#be31^Kf*wF4eWuOvAF21l#S_N^HsryS^`@Hal*Bs zWM}~uD90SZd~XGqm%z*~x&zb+z>dgKsNQlg<4ug&CxU>4s`ea7 z(K`u@dSDGkybuGLE`uW|cqhsRAs|sW91YxHz`GEXdDpG?yi?=w^Sx#8aR7KEI7(0f zd>n8ThIazn#6o-<0t)|Ao1-dv$I~Z5Hm<;@$APeE&^-94DwzQhm<2h4`QB3cM38j2 z0Rb@%aulk!1k8TKaxUhu4oHZNa0JP5j0EvX2}p>gkR#E&#bBp{S`aVHfP~r$IU3bl zL?65^dddVO^z(BBNtu!$$+ZI#YC9Z3(#mQP-FE^KYCz;jbnjR&R6%DDf6Rb}*%3J+ z%{vB6VX(O&dKCpU!p4^FEo2oz&^(Cn10g=>3+aHVu>NJqK8;6IbTq3-^meLO)VQOi zc}FoC(f>1`VfIC?9^G5O8i#mc)rqK;aRgC`5h0GF0TDAcazvWvvet>&r~?{db5HXe zzehrRpMZv09=UpS&t{E7qQV43%mB#|8J^|8*kVYcfXFvQa#ZB|e*uKz&p(jgl{drq z|0BXwLk5Ay2%+Rs82{hTuMo!nA2D1YN@*DX-%q{)valD0@&6BGBLRU}Vf_F4=m_Kg z^Qmeecz+oGKginy!qCcL{C}3j2;#(t@&AL70m3lD`2Y0;S0sl(82_IWhv|gz|G5Nc zkVGJi|9?OO3*-Mcqy&H*c{cg}FE)*n@(0Fc1HP5(p*m4qmT@n$ibc-u@Q~Qm4K_-T49Yq_K?o_U>wSwK_i?JBt3$V_vEaL3Q;jt zTVx?*gLJ_f)Y{=oLfkfK%vK8U#>6?~QhBrA2xNl?VbN%=1QvF=-DiPpc{FBF1bk!C zEpn-Rrq2S|n-L$Wkhl<7=;gM6g}8;#nEMd$;v?16)=f;B$fgR?4~#>3qu&T*!$fR^ zko?D8pq9#K1pN@r>|2C^1*wuo<_`iEPV0wQKT6^z2hs?PL-};S5y>c{M2Z0^?9# z;Y$)ZfVER((KsZa5n6e<&jLB+CT3^08ixe1P+L#-B_W3V5G6tK9*=mtoCRj7^(4jt zIol@=2(xjL01i&;iGCZzz#!uD6jI><2fK9{xv_ zLX0TVI7vX88>bm^sdZ`44I#*g_}FL0@*4@Scs#_a9YcLBg9>Ogo8Ly8Fp){&p~uRKsbn_ z%CK6G^&hC{D$%G2K(A2_$M_sXmkxwOqmm0ujq*ZYl!)(1qe=vLaYz_?>(Ra-#1JVT zl*3Vs1L7{!sG-8fwfH!7Cmq=>ogC?qGEb$?X!^SRr|7$of$z`xOOo5O?bf#Pa<5^fS@U?3(05k`lpyP22Kc$t;NPiQSvIKRq0|K6zZ`=JcJ)uGEe4Ze>z>eAAew4f2%q8*)=q zIrsC#q4|Z86Ju}Z<|m$rwaeFKFHC+W_PFwJ%8Tw*u1Vbo*#lGY4N80JyRqlx$0F}# zx)bquKCi_0D{rQfu@hoywmbQUY&x|n|C`KOMNQAmE=aXRznlAZ!pa_=d?vCxe{1rp z=;xKYQ*P|+rhQF!L{EyICoh-(v+32w&$&r4BZ_=%NH0j6#QSFwljh-Y;Mzm?^W0V9@lBH`HGg0@Iu8y83O-58& z=_*QsXsXgjW2$r_5{XT^5^kJ?=#|nHM9PS|DA78QuSMzO^bVrjNgtti5S>lBjNU<1 zG3nCS<5GvHVM&*eb|H$BbTJT2MnacK7ZD0X&5M26Y|oB zNhT6Rg*YDwAXO7Nd*ndwFAF}|Y+zhE53Wx_miyf_)d>=`;oPP>BslCX1p7LNra%#+ zdYw%fAf&NW!y;(f{ zy^)9&Il6rY?E-R;nq~e&4ndzzDUcJ)8|V!rUeRgv26A}#)Z}r}BqRdSDR^owKlPuO zn#)i92f_PvNYn-CU*LaWhSSuwtaq>|G=v&ole|irj2%l|%{l=rApD;S$-f}iGGq+Y zomKP(a?EmN@)-$IA3|C-$dUys2Bc^+z~NL|0oS2(!corUlo4_)^yHK$U5%VdJt?(H zIsrMWNz?x!XMLB^M=c(prP=?GgVV=Dy_4WzG|8U>i6kM4zgsdOax}~Shn!Ykk{&Oe ziJX!?4z5o^j+8H^bAyLg=c2@>1Ef2OstUPD9JgQMvUB!~k||A$14SU?Go)Lf6x1) z6$!VY!SzYVB%}Jh7G|aS$|StkMe-yN`LPUuh`{{}fN;3ju^=s@Nkrw8;KVV@0Enbj zJ5p&!2LVk0h~#IR%^rl9=xvtrrnD0omq#cMOOOK*ULi;&YQo~E!{P!tFJ_K1zGsl@ z$O|_e_)kLKAC~wQfJ{D#{H>@`#Pa_k>!FKGcqfs;rhzt9x49{ zL;$=$e@p)2d~bezeqnxQKAU?h_lw-4xqEZh=g!Y<&8^7UxkGdD>}%Qm5E>1g`*}2*A$~($S%9F|$m7A0cm2PE?vOqapNoU^7{512e%x5##WOilRGs`ksW^yK) z{%!h45I69X={@Of=?&>}dQN(5>h09?sqdsdm%JmjH+6n$OKL^RPVPxfO*JK7P3}v6 zqw!li{2fXllt3tfPy(R@LJ9nHNPyZyNpK_hG=p^MkaWoJd=%1!gaG-fIewJu(|uVq1`?Jorv!-MWR&ZmK!P1z^h%QU zQUdXF=cG}tv(F$gjNussk16G(V#HfR+CvFOv9w^{Sqv|lBSyJCn_h=7TP|4R!M3HV zCA9?E=(SN2V-q;?Ik+~}b`MP6KSeA-IEPQzJFD zMM3e9ecFZX3HS#r{Tc)^bIYS#KZ0I|7|N<@5nBp;vBR@=%*rU&%~7t$$#o>&BDJs~ z*JqFpqkC195u{dvT^`pZU%ILZP124VnCL-T15}`uY;Kfvfn@g zZySRD!CVUa2T+0NnXYCIcl dzX!2}QClx^eI~UpjA{-=ZWJj65;=19{{pUv$JhV> literal 0 HcmV?d00001 diff --git a/.nx/workspace-data/5a8293ec1b12419889284f7db84b9a04.lock b/.nx/workspace-data/5a8293ec1b12419889284f7db84b9a04.lock new file mode 100644 index 000000000..e69de29bb diff --git a/.nx/workspace-data/file-map.json b/.nx/workspace-data/file-map.json new file mode 100644 index 000000000..0f750fc1c --- /dev/null +++ b/.nx/workspace-data/file-map.json @@ -0,0 +1,2964 @@ +{ + "version": "6.0", + "nxVersion": "22.6.1", + "pathMappings": {}, + "nxJsonPlugins": [], + "fileMap": { + "projectFileMap": { + "@batijs/cli": [ + { + "file": "packages/cli/README.md", + "hash": "2019585873753941271" + }, + { + "file": "packages/cli/cli.js", + "hash": "6683158999131795298" + }, + { + "file": "packages/cli/index.ts", + "hash": "2929732403070346177" + }, + { + "file": "packages/cli/package.json", + "hash": "18432153438389291433", + "deps": [ + "@batijs/build", + "@batijs/compile", + "npm:@inquirer/prompts", + "npm:@types/node", + "npm:@types/which", + "npm:citty", + "npm:colorette", + "npm:esbuild", + "npm:execa", + "npm:scule", + "npm:tsdown", + "npm:typescript", + "npm:unplugin-purge-polyfills", + "npm:vite", + "@batijs/core", + "@batijs/features" + ] + }, + { + "file": "packages/cli/project.json", + "hash": "1169886281036299444" + }, + { + "file": "packages/cli/rolldown-bundle-all.ts", + "hash": "1117695809810703832" + }, + { + "file": "packages/cli/rules.ts", + "hash": "16120125303123881112" + }, + { + "file": "packages/cli/tsconfig.json", + "hash": "208911192527379557" + }, + { + "file": "packages/cli/tsdown.config.ts", + "hash": "8733122092681065877" + }, + { + "file": "packages/cli/types.ts", + "hash": "12517125352741026167" + } + ], + "@batijs/features": [ + { + "file": "packages/features/README.md", + "hash": "11253393686841137245" + }, + { + "file": "packages/features/package.json", + "hash": "7453170885760792090", + "deps": [ + "npm:@types/node", + "npm:tsdown", + "npm:vitest" + ] + }, + { + "file": "packages/features/src/categories.ts", + "hash": "14918685289060879844" + }, + { + "file": "packages/features/src/features.ts", + "hash": "9661613517454545939" + }, + { + "file": "packages/features/src/groups.ts", + "hash": "5515756501903621779" + }, + { + "file": "packages/features/src/helpers.ts", + "hash": "953781356557775360" + }, + { + "file": "packages/features/src/index.ts", + "hash": "686364796612302314" + }, + { + "file": "packages/features/src/rules/enum.ts", + "hash": "11309363181756926451" + }, + { + "file": "packages/features/src/rules/index.ts", + "hash": "6972498361861935039" + }, + { + "file": "packages/features/src/rules/rules.ts", + "hash": "16262125312287405844" + }, + { + "file": "packages/features/src/rules/utils.ts", + "hash": "12159310857698734648" + }, + { + "file": "packages/features/src/types.ts", + "hash": "16330970605003154469" + }, + { + "file": "packages/features/tests/rules.spec.ts", + "hash": "12812245825378500306" + }, + { + "file": "packages/features/tsconfig.json", + "hash": "10829160037969775529" + }, + { + "file": "packages/features/tsdown.config.ts", + "hash": "7897129861689910779" + } + ], + "@batijs/create-app": [ + { + "file": "packages/create-batijs-app/README.md", + "hash": "2019585873753941271" + }, + { + "file": "packages/create-batijs-app/index.js", + "hash": "15356043125406927671" + }, + { + "file": "packages/create-batijs-app/package.json", + "hash": "6186718274979364946", + "deps": [ + "@batijs/cli" + ] + } + ], + "@batijs/tailwindcss": [ + { + "file": "boilerplates/tailwindcss/bati.config.ts", + "hash": "3405982239360702511" + }, + { + "file": "boilerplates/tailwindcss/files/$package.json.ts", + "hash": "4659574445107011325" + }, + { + "file": "boilerplates/tailwindcss/files/$vite.config.ts.ts", + "hash": "3674845499047101466" + }, + { + "file": "boilerplates/tailwindcss/files/pages/tailwind.css", + "hash": "6167540089143400167" + }, + { + "file": "boilerplates/tailwindcss/package.json", + "hash": "10818557754625570273", + "deps": [ + "@batijs/compile", + "npm:@tailwindcss/vite", + "npm:@types/node", + "npm:autoprefixer", + "npm:daisyui", + "npm:tailwindcss", + "npm:vike", + "npm:vite", + "@batijs/core" + ] + }, + { + "file": "boilerplates/tailwindcss/tsconfig.json", + "hash": "10829160037969775529" + } + ], + "@batijs/ts-rest": [ + { + "file": "boilerplates/ts-rest/bati.config.ts", + "hash": "6236527870745630980" + }, + { + "file": "boilerplates/ts-rest/files/$package.json.ts", + "hash": "6519465308004691717" + }, + { + "file": "boilerplates/ts-rest/files/server/ts-rest-handler.ts", + "hash": "15916439577012550267" + }, + { + "file": "boilerplates/ts-rest/files/ts-rest/client.ts", + "hash": "151169003987061687" + }, + { + "file": "boilerplates/ts-rest/files/ts-rest/contract.ts", + "hash": "14582072781521774149" + }, + { + "file": "boilerplates/ts-rest/package.json", + "hash": "13610503164960947769", + "deps": [ + "@batijs/compile", + "npm:@ts-rest/core", + "npm:@ts-rest/serverless", + "npm:@types/node", + "npm:@universal-middleware/core", + "npm:zod", + "@batijs/core" + ] + }, + { + "file": "boilerplates/ts-rest/tsconfig.json", + "hash": "3753561261312697709" + } + ], + "@batijs/sqlite": [ + { + "file": "boilerplates/sqlite/bati.config.ts", + "hash": "13423641626652675926" + }, + { + "file": "boilerplates/sqlite/files/$.env.ts", + "hash": "1059579254708864984" + }, + { + "file": "boilerplates/sqlite/files/$TODO.md.ts", + "hash": "10873231272483289364" + }, + { + "file": "boilerplates/sqlite/files/$package.json.ts", + "hash": "12609730557467665400" + }, + { + "file": "boilerplates/sqlite/files/database/sqlite/db.ts", + "hash": "4714673669428407576" + }, + { + "file": "boilerplates/sqlite/files/database/sqlite/queries/todos.ts", + "hash": "8370144468861942697" + }, + { + "file": "boilerplates/sqlite/files/database/sqlite/schema/all.ts", + "hash": "10334571664929811996" + }, + { + "file": "boilerplates/sqlite/files/database/sqlite/schema/todos.ts", + "hash": "1802711003905051725" + }, + { + "file": "boilerplates/sqlite/package.json", + "hash": "15550614415875847417", + "deps": [ + "@batijs/compile", + "npm:@types/better-sqlite3", + "npm:@types/node", + "npm:better-sqlite3", + "npm:dotenv", + "npm:tsx", + "@batijs/core" + ] + }, + { + "file": "boilerplates/sqlite/tsconfig.json", + "hash": "10433283992457019454" + } + ], + "create-vike": [ + { + "file": "packages/create-bati/README.md", + "hash": "2019585873753941271" + }, + { + "file": "packages/create-bati/index.js", + "hash": "15356043125406927671" + }, + { + "file": "packages/create-bati/package.json", + "hash": "17436822452286544318", + "deps": [ + "@batijs/cli" + ] + } + ], + "@batijs/google-analytics": [ + { + "file": "boilerplates/google-analytics/bati.config.ts", + "hash": "245935929995948560" + }, + { + "file": "boilerplates/google-analytics/files/$.env.ts", + "hash": "4707171447062817104" + }, + { + "file": "boilerplates/google-analytics/package.json", + "hash": "3290265742820693522", + "deps": [ + "@batijs/compile", + "npm:@types/node", + "@batijs/core" + ] + }, + { + "file": "boilerplates/google-analytics/tsconfig.json", + "hash": "10829160037969775529" + } + ], + "@batijs/solid-sentry": [ + { + "file": "boilerplates/solid-sentry/bati.config.ts", + "hash": "2452761312261229506" + }, + { + "file": "boilerplates/solid-sentry/biome.json", + "hash": "1802006597246924721" + }, + { + "file": "boilerplates/solid-sentry/files/$package.json.ts", + "hash": "7190305476066739095" + }, + { + "file": "boilerplates/solid-sentry/files/pages/sentry/+Page.tsx", + "hash": "2734540031240721049" + }, + { + "file": "boilerplates/solid-sentry/files/sentry.browser.config.ts", + "hash": "14792966134154825523" + }, + { + "file": "boilerplates/solid-sentry/package.json", + "hash": "1475966000644505224", + "deps": [ + "@batijs/compile", + "npm:@sentry/solid", + "npm:@types/node", + "npm:solid-js", + "npm:vike-solid", + "npm:vite", + "@batijs/core" + ] + }, + { + "file": "boilerplates/solid-sentry/tsconfig.json", + "hash": "3961252132930206977" + } + ], + "@batijs/d1-kysely": [ + { + "file": "boilerplates/d1-kysely/bati.config.ts", + "hash": "6369031714502057325" + }, + { + "file": "boilerplates/d1-kysely/files/$package.json.ts", + "hash": "4745156170744194339" + }, + { + "file": "boilerplates/d1-kysely/files/database/migrations/todos.sql", + "hash": "14065259487295302022" + }, + { + "file": "boilerplates/d1-kysely/package.json", + "hash": "1245319202014194364", + "deps": [ + "@batijs/compile", + "npm:@types/node", + "@batijs/core" + ] + }, + { + "file": "boilerplates/d1-kysely/tsconfig.json", + "hash": "10829160037969775529" + } + ], + "@batijs/shadcn-ui": [ + { + "file": "boilerplates/shadcn-ui/bati.config.ts", + "hash": "1007102254205056134" + }, + { + "file": "boilerplates/shadcn-ui/files/$README.md.ts", + "hash": "17161598253323440990" + }, + { + "file": "boilerplates/shadcn-ui/files/$package.json.ts", + "hash": "6325233123661020923" + }, + { + "file": "boilerplates/shadcn-ui/files/$tsconfig.json.ts", + "hash": "11430456756141898561" + }, + { + "file": "boilerplates/shadcn-ui/files/$vite.config.ts.ts", + "hash": "15068637671208013532" + }, + { + "file": "boilerplates/shadcn-ui/files/components.json", + "hash": "9970190643560653964" + }, + { + "file": "boilerplates/shadcn-ui/files/lib/utils.ts", + "hash": "1260146919662595987" + }, + { + "file": "boilerplates/shadcn-ui/files/pages/!tailwind.css", + "hash": "10376007731897761438" + }, + { + "file": "boilerplates/shadcn-ui/package.json", + "hash": "18151698545190039740", + "deps": [ + "@batijs/compile", + "npm:@radix-ui/react-icons", + "npm:@types/node", + "npm:autoprefixer", + "npm:class-variance-authority", + "npm:clsx", + "npm:lucide-react", + "npm:tailwind-merge", + "npm:tailwindcss", + "npm:tw-animate-css", + "@batijs/core" + ] + }, + { + "file": "boilerplates/shadcn-ui/tsconfig.json", + "hash": "6543321687697935132" + } + ], + "@batijs/trpc": [ + { + "file": "boilerplates/trpc/bati.config.ts", + "hash": "18167389611308617262" + }, + { + "file": "boilerplates/trpc/files/$package.json.ts", + "hash": "6298302015227358450" + }, + { + "file": "boilerplates/trpc/files/server/trpc-handler.ts", + "hash": "17514369242399170441" + }, + { + "file": "boilerplates/trpc/files/trpc/client.ts", + "hash": "4197159420079775533" + }, + { + "file": "boilerplates/trpc/files/trpc/server.ts", + "hash": "16440931258756854226" + }, + { + "file": "boilerplates/trpc/package.json", + "hash": "10450542558095842306", + "deps": [ + "@batijs/compile", + "npm:@trpc/client", + "npm:@trpc/server", + "npm:@types/node", + "npm:@universal-middleware/core", + "npm:vite", + "@batijs/core" + ] + }, + { + "file": "boilerplates/trpc/tsconfig.json", + "hash": "18126462976322146836" + } + ], + "@batijs/hono": [ + { + "file": "boilerplates/hono/bati.config.ts", + "hash": "1668111618542323938" + }, + { + "file": "boilerplates/hono/files/$package.json.ts", + "hash": "16537434593504419719" + }, + { + "file": "boilerplates/hono/files/entry_aws_lambda.ts", + "hash": "2350681074451169825" + }, + { + "file": "boilerplates/hono/files/server/entry.ts", + "hash": "2784854165460553033" + }, + { + "file": "boilerplates/hono/package.json", + "hash": "7422550386272714190", + "deps": [ + "npm:@auth/core", + "@batijs/compile", + "npm:@photonjs/hono", + "npm:@trpc/server", + "npm:@types/aws-lambda", + "npm:@types/node", + "npm:dotenv", + "npm:hono", + "npm:telefunc", + "npm:vike", + "npm:vike-photon", + "npm:vite", + "@batijs/core" + ] + }, + { + "file": "boilerplates/hono/tsconfig.json", + "hash": "11631520777567996841" + } + ], + "@batijs/mantine": [ + { + "file": "boilerplates/mantine/bati.config.ts", + "hash": "5159503322167847424" + }, + { + "file": "boilerplates/mantine/files/$README.md.ts", + "hash": "1607568662519478631" + }, + { + "file": "boilerplates/mantine/files/$package.json.ts", + "hash": "15064705574684773926" + }, + { + "file": "boilerplates/mantine/files/.vscode/settings.json", + "hash": "6727437149657607627" + }, + { + "file": "boilerplates/mantine/files/components/Link.tsx", + "hash": "4968861440972792952" + }, + { + "file": "boilerplates/mantine/files/pages/+Layout.tsx", + "hash": "2003217458910859844" + }, + { + "file": "boilerplates/mantine/files/pages/Layout.css", + "hash": "3244421341483603138" + }, + { + "file": "boilerplates/mantine/files/postcss.config.cjs", + "hash": "14014684693614384412" + }, + { + "file": "boilerplates/mantine/package.json", + "hash": "15713713174878759850", + "deps": [ + "@batijs/compile", + "npm:@mantine/core", + "npm:@mantine/hooks", + "npm:@types/node", + "npm:@types/react", + "npm:@types/react-dom", + "npm:postcss", + "npm:postcss-preset-mantine", + "npm:postcss-simple-vars", + "npm:react", + "npm:react-dom", + "npm:vike-react", + "npm:vite", + "npm:vite-plugin-compiled-react", + "@batijs/core" + ] + }, + { + "file": "boilerplates/mantine/tsconfig.json", + "hash": "12426269000092382266" + } + ], + "@batijs/cloudflare": [ + { + "file": "boilerplates/cloudflare/bati.config.ts", + "hash": "16769662496460821300" + }, + { + "file": "boilerplates/cloudflare/files/$TODO.md.ts", + "hash": "3142516528630374019" + }, + { + "file": "boilerplates/cloudflare/files/$package.json.ts", + "hash": "11067447906439220795" + }, + { + "file": "boilerplates/cloudflare/files/$tsconfig.json.ts", + "hash": "3596348352572138712" + }, + { + "file": "boilerplates/cloudflare/files/wrangler.jsonc", + "hash": "338322602966147526" + }, + { + "file": "boilerplates/cloudflare/package.json", + "hash": "1884526986535503678", + "deps": [ + "@batijs/compile", + "npm:@photonjs/cloudflare", + "npm:@types/node", + "npm:wrangler", + "@batijs/core" + ] + }, + { + "file": "boilerplates/cloudflare/tsconfig.json", + "hash": "10829160037969775529" + }, + { + "file": "boilerplates/cloudflare/worker-configuration.d.ts", + "hash": "12169936246518129473" + } + ], + "@batijs/compile": [ + { + "file": "packages/compile/README.md", + "hash": "12076157598057555405" + }, + { + "file": "packages/compile/build.ts", + "hash": "6229218219409449563" + }, + { + "file": "packages/compile/clean.ts", + "hash": "6449151184187557636" + }, + { + "file": "packages/compile/cli.js", + "hash": "6683158999131795298" + }, + { + "file": "packages/compile/copy.ts", + "hash": "14026374497976991433" + }, + { + "file": "packages/compile/index.ts", + "hash": "10476868020082487573" + }, + { + "file": "packages/compile/package.json", + "hash": "14345869727686394443", + "deps": [ + "npm:@types/node", + "npm:typescript", + "npm:unplugin-purge-polyfills", + "npm:globby", + "npm:tsdown" + ] + }, + { + "file": "packages/compile/tsconfig.json", + "hash": "4493155363885913347" + }, + { + "file": "packages/compile/tsdown.config.ts", + "hash": "1605805468504013677" + } + ], + "@batijs/prisma": [ + { + "file": "boilerplates/prisma/.gitignore", + "hash": "5040098333059802248" + }, + { + "file": "boilerplates/prisma/bati.config.ts", + "hash": "4116054588860108285" + }, + { + "file": "boilerplates/prisma/files/$.env.ts", + "hash": "3059707544482740209" + }, + { + "file": "boilerplates/prisma/files/$TODO.md.ts", + "hash": "4531676088638242012" + }, + { + "file": "boilerplates/prisma/files/$package.json.ts", + "hash": "1574690670365220888" + }, + { + "file": "boilerplates/prisma/package.json", + "hash": "4596878849001479432", + "deps": [ + "@batijs/compile", + "npm:@prisma/client", + "npm:@types/node", + "npm:colorette", + "npm:prisma", + "@batijs/core" + ] + }, + { + "file": "boilerplates/prisma/tsconfig.json", + "hash": "15624783604779776670" + } + ], + "@batijs/biome": [ + { + "file": "boilerplates/biome/bati.config.ts", + "hash": "10015098588393613002" + }, + { + "file": "boilerplates/biome/files/$biome.json.ts", + "hash": "2868167598838604202" + }, + { + "file": "boilerplates/biome/files/$package.json.ts", + "hash": "3001748721728368052" + }, + { + "file": "boilerplates/biome/package.json", + "hash": "16119473530077575260", + "deps": [ + "@batijs/compile", + "npm:@biomejs/biome", + "npm:@biomejs/wasm-nodejs", + "npm:@types/node", + "@batijs/core" + ] + }, + { + "file": "boilerplates/biome/tsconfig.json", + "hash": "10829160037969775529" + } + ], + "@batijs/tests-utils": [ + { + "file": "packages/tests-utils/README.md", + "hash": "8277556730148226359" + }, + { + "file": "packages/tests-utils/package.json", + "hash": "973981267459812669", + "deps": [ + "npm:@types/node", + "npm:@types/which", + "npm:tsdown", + "npm:tsx", + "npm:typescript", + "npm:get-port", + "npm:node-fetch", + "npm:vitest", + "npm:which", + "npm:zx" + ] + }, + { + "file": "packages/tests-utils/src/combinate.ts", + "hash": "6262567251302040328" + }, + { + "file": "packages/tests-utils/src/describe.ts", + "hash": "6792228321081539628" + }, + { + "file": "packages/tests-utils/src/exec.ts", + "hash": "7168185002454358027" + }, + { + "file": "packages/tests-utils/src/index.ts", + "hash": "10152866017933555330" + }, + { + "file": "packages/tests-utils/src/package-manager.ts", + "hash": "13911086057740118821" + }, + { + "file": "packages/tests-utils/src/port.ts", + "hash": "15864947140754744990" + }, + { + "file": "packages/tests-utils/src/prepare.ts", + "hash": "9657955929000496805" + }, + { + "file": "packages/tests-utils/src/run-build.ts", + "hash": "18122674888365616027" + }, + { + "file": "packages/tests-utils/src/run-dev.ts", + "hash": "14619716055888188871" + }, + { + "file": "packages/tests-utils/src/run-prod.ts", + "hash": "15051659305587251900" + }, + { + "file": "packages/tests-utils/src/types.ts", + "hash": "17686325428284938026" + }, + { + "file": "packages/tests-utils/src/wait-for-localhost.ts", + "hash": "4927628986708349721" + }, + { + "file": "packages/tests-utils/src/zx.ts", + "hash": "17221544248649376133" + }, + { + "file": "packages/tests-utils/tsconfig.json", + "hash": "10829160037969775529" + }, + { + "file": "packages/tests-utils/tsdown.config.ts", + "hash": "11810183624862991492" + } + ], + "@batijs/shared-todo": [ + { + "file": "boilerplates/shared-todo/bati.config.ts", + "hash": "12546336490227508751" + }, + { + "file": "boilerplates/shared-todo/bati.d.ts", + "hash": "15578028359676202312" + }, + { + "file": "boilerplates/shared-todo/files/global.d.ts", + "hash": "17195213062081090684" + }, + { + "file": "boilerplates/shared-todo/files/pages/todo/+config.ts", + "hash": "14798147267068945494" + }, + { + "file": "boilerplates/shared-todo/files/pages/todo/+data.ts", + "hash": "789300547812656364" + }, + { + "file": "boilerplates/shared-todo/package.json", + "hash": "16119899403278957275", + "deps": [ + "@batijs/compile", + "npm:@types/node", + "npm:vike", + "@batijs/core" + ] + }, + { + "file": "boilerplates/shared-todo/tsconfig.json", + "hash": "18126462976322146836" + } + ], + "@batijs/authjs": [ + { + "file": "boilerplates/authjs/bati.config.ts", + "hash": "4708052660062853287" + }, + { + "file": "boilerplates/authjs/files/$package.json.ts", + "hash": "7315070523143791750" + }, + { + "file": "boilerplates/authjs/files/global.d.ts", + "hash": "9725249121169172757" + }, + { + "file": "boilerplates/authjs/files/server/authjs-handler.ts", + "hash": "5964477270344524378" + }, + { + "file": "boilerplates/authjs/package.json", + "hash": "9548464094814358918", + "deps": [ + "npm:@auth/core", + "@batijs/compile", + "npm:@types/node", + "npm:@universal-middleware/core", + "@batijs/core" + ] + }, + { + "file": "boilerplates/authjs/tsconfig.json", + "hash": "16179520611677090791" + } + ], + "@batijs/d1-sqlite": [ + { + "file": "boilerplates/d1-sqlite/bati.config.ts", + "hash": "16758337827657987897" + }, + { + "file": "boilerplates/d1-sqlite/files/$package.json.ts", + "hash": "4745156170744194339" + }, + { + "file": "boilerplates/d1-sqlite/files/database/d1/queries/todos.ts", + "hash": "385979320500332943" + }, + { + "file": "boilerplates/d1-sqlite/files/database/migrations/todos.sql", + "hash": "9145598158172402695" + }, + { + "file": "boilerplates/d1-sqlite/package.json", + "hash": "507224553223770812", + "deps": [ + "@batijs/compile", + "npm:@types/node", + "npm:@universal-middleware/core", + "npm:vike", + "@batijs/core" + ] + }, + { + "file": "boilerplates/d1-sqlite/tsconfig.json", + "hash": "18126462976322146836" + } + ], + "@batijs/build": [ + { + "file": "packages/build/README.md", + "hash": "17588624786197882185" + }, + { + "file": "packages/build/package.json", + "hash": "17705580872974387748", + "deps": [ + "@batijs/core", + "@batijs/compile", + "@batijs/features", + "npm:@types/node", + "npm:tsdown" + ] + }, + { + "file": "packages/build/src/index.ts", + "hash": "17221714020692871215" + }, + { + "file": "packages/build/src/operations/common.ts", + "hash": "6173006151246276772" + }, + { + "file": "packages/build/src/operations/file.ts", + "hash": "2420076122125147504" + }, + { + "file": "packages/build/src/operations/merge-dts.ts", + "hash": "3422649380100555239" + }, + { + "file": "packages/build/src/operations/rearranger.ts", + "hash": "2358332895765973636" + }, + { + "file": "packages/build/src/operations/transform.ts", + "hash": "17127862419762991443" + }, + { + "file": "packages/build/src/queue.ts", + "hash": "8801678005853286520" + }, + { + "file": "packages/build/src/relations.ts", + "hash": "7048583053702574788" + }, + { + "file": "packages/build/src/utils.ts", + "hash": "1376349399704767613" + }, + { + "file": "packages/build/tsconfig.json", + "hash": "15624783604779776670" + }, + { + "file": "packages/build/tsdown.config.ts", + "hash": "9264109140055413029" + } + ], + "@batijs/react-sentry": [ + { + "file": "boilerplates/react-sentry/bati.config.ts", + "hash": "4087011872666923170" + }, + { + "file": "boilerplates/react-sentry/biome.json", + "hash": "14330491566544727584" + }, + { + "file": "boilerplates/react-sentry/files/$package.json.ts", + "hash": "12740362361901885517" + }, + { + "file": "boilerplates/react-sentry/files/pages/sentry/+Page.tsx", + "hash": "10964212616825723390" + }, + { + "file": "boilerplates/react-sentry/files/sentry.browser.config.ts", + "hash": "15980589539037976408" + }, + { + "file": "boilerplates/react-sentry/package.json", + "hash": "15553926613248789457", + "deps": [ + "@batijs/compile", + "npm:@sentry/react", + "npm:@types/node", + "npm:@types/react", + "npm:@types/react-dom", + "npm:react", + "npm:react-dom", + "npm:vite", + "@batijs/core" + ] + }, + { + "file": "boilerplates/react-sentry/tsconfig.json", + "hash": "8220870955760094164" + } + ], + "@batijs/h3": [ + { + "file": "boilerplates/h3/bati.config.ts", + "hash": "18435502787496375143" + }, + { + "file": "boilerplates/h3/files/$package.json.ts", + "hash": "10000480424969115624" + }, + { + "file": "boilerplates/h3/files/server/entry.ts", + "hash": "8080314319156943076" + }, + { + "file": "boilerplates/h3/package.json", + "hash": "10774742460554244347", + "deps": [ + "npm:@auth/core", + "@batijs/compile", + "npm:@photonjs/h3", + "npm:@trpc/server", + "npm:@types/express", + "npm:@types/node", + "npm:@universal-middleware/core", + "npm:dotenv", + "npm:h3", + "npm:telefunc", + "npm:vike", + "npm:vike-photon", + "npm:vite", + "@batijs/core" + ] + }, + { + "file": "boilerplates/h3/tsconfig.json", + "hash": "10829160037969775529" + } + ], + "@batijs/auth0": [ + { + "file": "boilerplates/auth0/bati.config.ts", + "hash": "246975477619732168" + }, + { + "file": "boilerplates/auth0/files/$.env.ts", + "hash": "881868106894569981" + }, + { + "file": "boilerplates/auth0/files/$TODO.md.ts", + "hash": "5315584209676199399" + }, + { + "file": "boilerplates/auth0/files/$wrangler.jsonc.ts", + "hash": "4858905856258571593" + }, + { + "file": "boilerplates/auth0/package.json", + "hash": "17797861300927625043", + "deps": [ + "@batijs/compile", + "npm:@types/node", + "@batijs/core" + ] + }, + { + "file": "boilerplates/auth0/tsconfig.json", + "hash": "15624783604779776670" + } + ], + "@batijs/vercel": [ + { + "file": "boilerplates/vercel/bati.config.ts", + "hash": "11981326057467424988" + }, + { + "file": "boilerplates/vercel/files/$package.json.ts", + "hash": "6430316533671099288" + }, + { + "file": "boilerplates/vercel/package.json", + "hash": "6937113710708912376", + "deps": [ + "@batijs/compile", + "npm:@photonjs/vercel", + "npm:@types/node", + "npm:h3", + "npm:vike", + "npm:vite", + "@batijs/core" + ] + }, + { + "file": "boilerplates/vercel/tsconfig.json", + "hash": "10829160037969775529" + } + ], + "batijs": [ + { + "file": "packages/batijs/README.md", + "hash": "2019585873753941271" + }, + { + "file": "packages/batijs/index.js", + "hash": "15356043125406927671" + }, + { + "file": "packages/batijs/package.json", + "hash": "8353654110176810999", + "deps": [ + "@batijs/cli" + ] + } + ], + "@batijs/sentry": [ + { + "file": "boilerplates/sentry/bati.config.ts", + "hash": "5035718702400118455" + }, + { + "file": "boilerplates/sentry/files/$.env.ts", + "hash": "13650950838598206077" + }, + { + "file": "boilerplates/sentry/files/$README.md.ts", + "hash": "15501659600878543379" + }, + { + "file": "boilerplates/sentry/files/$TODO.md.ts", + "hash": "7449063188894131621" + }, + { + "file": "boilerplates/sentry/files/$package.json.ts", + "hash": "1468347746634412706" + }, + { + "file": "boilerplates/sentry/files/$vite.config.ts.ts", + "hash": "5264118640754114481" + }, + { + "file": "boilerplates/sentry/files/.env.sentry-build-plugin", + "hash": "3444401161532200993" + }, + { + "file": "boilerplates/sentry/files/pages/$+client.ts.ts", + "hash": "7623917551217253245" + }, + { + "file": "boilerplates/sentry/package.json", + "hash": "9560393097027182987", + "deps": [ + "@batijs/compile", + "npm:@sentry/vite-plugin", + "npm:@types/node", + "npm:vite", + "@batijs/core" + ] + }, + { + "file": "boilerplates/sentry/tsconfig.json", + "hash": "12725800372324204213" + } + ], + "@batijs/shared": [ + { + "file": "boilerplates/shared/bati.config.ts", + "hash": "6642103247069562027" + }, + { + "file": "boilerplates/shared/const.ts", + "hash": "15517333947599095915" + }, + { + "file": "boilerplates/shared/files/$README.md.ts", + "hash": "13549328503689767083" + }, + { + "file": "boilerplates/shared/files/$TODO.md.ts", + "hash": "3802591104453522414" + }, + { + "file": "boilerplates/shared/files/gitignore", + "hash": "12719950030143069637" + }, + { + "file": "boilerplates/shared/files/package.json", + "hash": "2330539807987412639" + }, + { + "file": "boilerplates/shared/files/tsconfig.json", + "hash": "13402210058758164605" + }, + { + "file": "boilerplates/shared/files/vite.config.ts", + "hash": "6124990386436740244" + }, + { + "file": "boilerplates/shared/hooks/after.ts", + "hash": "12315429807060609790" + }, + { + "file": "boilerplates/shared/package.json", + "hash": "9579701137761689182", + "deps": [ + "@batijs/compile", + "npm:@types/node", + "npm:vike", + "npm:vite" + ] + }, + { + "file": "boilerplates/shared/tsconfig.json", + "hash": "10829160037969775529" + } + ], + "@batijs/shared-db": [ + { + "file": "boilerplates/shared-db/bati.config.ts", + "hash": "3206691303674948006" + }, + { + "file": "boilerplates/shared-db/files/server/db-middleware.ts", + "hash": "12375206984287499721" + }, + { + "file": "boilerplates/shared-db/package.json", + "hash": "7696249875814496176", + "deps": [ + "@batijs/compile", + "npm:@types/node", + "npm:@universal-middleware/core", + "@batijs/core" + ] + }, + { + "file": "boilerplates/shared-db/tsconfig.json", + "hash": "18126462976322146836" + } + ], + "@batijs/solid": [ + { + "file": "boilerplates/solid/bati.config.ts", + "hash": "8111442139575210612" + }, + { + "file": "boilerplates/solid/biome.json", + "hash": "1802006597246924721" + }, + { + "file": "boilerplates/solid/files/$README.md.ts", + "hash": "14198218476642710494" + }, + { + "file": "boilerplates/solid/files/$package.json.ts", + "hash": "17097805665875424189" + }, + { + "file": "boilerplates/solid/files/$tsconfig.json.ts", + "hash": "4698297846800398110" + }, + { + "file": "boilerplates/solid/files/$vite.config.ts.ts", + "hash": "13834366169657205330" + }, + { + "file": "boilerplates/solid/files/assets/logo.svg", + "hash": "456965794851136715" + }, + { + "file": "boilerplates/solid/files/components/Link.tsx", + "hash": "17583913308895048184" + }, + { + "file": "boilerplates/solid/files/pages/+Head.tsx", + "hash": "11566568109960055750" + }, + { + "file": "boilerplates/solid/files/pages/+Layout.tsx", + "hash": "735785801979110970" + }, + { + "file": "boilerplates/solid/files/pages/+config.ts", + "hash": "15285257982010528898" + }, + { + "file": "boilerplates/solid/files/pages/+onPageTransitionEnd.ts", + "hash": "14247927934540815005" + }, + { + "file": "boilerplates/solid/files/pages/+onPageTransitionStart.ts", + "hash": "9116206879620678971" + }, + { + "file": "boilerplates/solid/files/pages/Layout.css", + "hash": "13481115073965312656" + }, + { + "file": "boilerplates/solid/files/pages/_error/+Page.tsx", + "hash": "4194852495573456653" + }, + { + "file": "boilerplates/solid/files/pages/index/+Page.tsx", + "hash": "16909960653003023854" + }, + { + "file": "boilerplates/solid/files/pages/index/Counter.tsx", + "hash": "15250918434545892143" + }, + { + "file": "boilerplates/solid/files/pages/star-wars/@id/+Page.tsx", + "hash": "9896745506623726355" + }, + { + "file": "boilerplates/solid/files/pages/star-wars/@id/+data.ts", + "hash": "9298842294204880508" + }, + { + "file": "boilerplates/solid/files/pages/star-wars/index/+Page.tsx", + "hash": "9230495519549237518" + }, + { + "file": "boilerplates/solid/files/pages/star-wars/index/+data.ts", + "hash": "7488097475396943891" + }, + { + "file": "boilerplates/solid/files/pages/star-wars/types.ts", + "hash": "4084339154141473810" + }, + { + "file": "boilerplates/solid/files/pages/todo/+Page.tsx", + "hash": "10364174212594667415" + }, + { + "file": "boilerplates/solid/files/pages/todo/TodoList.tsx", + "hash": "8765089503040072977" + }, + { + "file": "boilerplates/solid/package.json", + "hash": "9213692191002844274", + "deps": [ + "@batijs/compile", + "npm:@types/node", + "npm:solid-js", + "npm:tailwindcss", + "npm:typescript", + "npm:vike", + "npm:vike-photon", + "npm:vike-solid", + "npm:vite", + "npm:vite-plugin-solid", + "@batijs/core" + ] + }, + { + "file": "boilerplates/solid/tailwind.config.js", + "hash": "13515649713983895160" + }, + { + "file": "boilerplates/solid/tsconfig.json", + "hash": "3961252132930206977" + } + ], + "@batijs/compiled": [ + { + "file": "boilerplates/compiled/bati.config.ts", + "hash": "6557974920330638665" + }, + { + "file": "boilerplates/compiled/files/$package.json.ts", + "hash": "13941553902686932622" + }, + { + "file": "boilerplates/compiled/files/$vite.config.ts.ts", + "hash": "9810738325651448202" + }, + { + "file": "boilerplates/compiled/package.json", + "hash": "448243733114009126", + "deps": [ + "@batijs/compile", + "npm:@types/node", + "npm:vite", + "npm:vite-plugin-compiled-react", + "@batijs/core", + "npm:@compiled/react" + ] + }, + { + "file": "boilerplates/compiled/tsconfig.json", + "hash": "10829160037969775529" + } + ], + "@batijs/eslint": [ + { + "file": "boilerplates/eslint/bati.config.ts", + "hash": "11720143381010038490" + }, + { + "file": "boilerplates/eslint/files/$package.json.ts", + "hash": "13840719815699996876" + }, + { + "file": "boilerplates/eslint/files/eslint.config.ts", + "hash": "6921612227693504854" + }, + { + "file": "boilerplates/eslint/package.json", + "hash": "9987858559824992918", + "deps": [ + "@batijs/compile", + "npm:@eslint/js", + "npm:eslint", + "npm:eslint-config-prettier", + "npm:eslint-plugin-prettier", + "npm:eslint-plugin-react", + "npm:eslint-plugin-solid", + "npm:eslint-plugin-vue", + "npm:globals", + "npm:typescript-eslint", + "npm:vue-eslint-parser", + "@batijs/core" + ] + }, + { + "file": "boilerplates/eslint/tsconfig.json", + "hash": "10829160037969775529" + } + ], + "@batijs/fastify": [ + { + "file": "boilerplates/fastify/bati.config.ts", + "hash": "15087650595076395327" + }, + { + "file": "boilerplates/fastify/files/$package.json.ts", + "hash": "3829830530686835681" + }, + { + "file": "boilerplates/fastify/files/server/entry.ts", + "hash": "12518326727171109739" + }, + { + "file": "boilerplates/fastify/package.json", + "hash": "11556072308529105609", + "deps": [ + "npm:@auth/core", + "@batijs/compile", + "npm:@photonjs/fastify", + "npm:@trpc/server", + "npm:@types/express", + "npm:@types/node", + "npm:dotenv", + "npm:fastify", + "npm:fastify-raw-body", + "npm:telefunc", + "npm:vike", + "npm:vite", + "@batijs/core" + ] + }, + { + "file": "boilerplates/fastify/tsconfig.json", + "hash": "18144687449552703701" + } + ], + "@batijs/vue": [ + { + "file": "boilerplates/vue/bati.config.ts", + "hash": "13550791330639504773" + }, + { + "file": "boilerplates/vue/biome.json", + "hash": "3056594972392903914" + }, + { + "file": "boilerplates/vue/files/$README.md.ts", + "hash": "5661659385531601795" + }, + { + "file": "boilerplates/vue/files/$package.json.ts", + "hash": "7995665395039615076" + }, + { + "file": "boilerplates/vue/files/$tsconfig.json.ts", + "hash": "9729518427626565780" + }, + { + "file": "boilerplates/vue/files/$vite.config.ts.ts", + "hash": "8942994500951012988" + }, + { + "file": "boilerplates/vue/files/assets/logo.svg", + "hash": "456965794851136715" + }, + { + "file": "boilerplates/vue/files/components/Content.vue", + "hash": "7470363284377898452" + }, + { + "file": "boilerplates/vue/files/components/Counter.vue", + "hash": "6180567185750885010" + }, + { + "file": "boilerplates/vue/files/components/Link.vue", + "hash": "13784846309229482394" + }, + { + "file": "boilerplates/vue/files/components/Logo.vue", + "hash": "16353648806248902925" + }, + { + "file": "boilerplates/vue/files/components/Sidebar.vue", + "hash": "16469883140016852172" + }, + { + "file": "boilerplates/vue/files/pages/+Head.vue", + "hash": "9201255343519180604" + }, + { + "file": "boilerplates/vue/files/pages/+Layout.vue", + "hash": "3795326637860504038" + }, + { + "file": "boilerplates/vue/files/pages/+config.ts", + "hash": "5589107243477250739" + }, + { + "file": "boilerplates/vue/files/pages/+onCreateApp.ts", + "hash": "1103141187668280528" + }, + { + "file": "boilerplates/vue/files/pages/+onPageTransitionEnd.ts", + "hash": "14247927934540815005" + }, + { + "file": "boilerplates/vue/files/pages/+onPageTransitionStart.ts", + "hash": "9116206879620678971" + }, + { + "file": "boilerplates/vue/files/pages/_error/+Page.vue", + "hash": "17474297277737277348" + }, + { + "file": "boilerplates/vue/files/pages/index/+Page.vue", + "hash": "2296061370206052757" + }, + { + "file": "boilerplates/vue/files/pages/star-wars/@id/+Page.vue", + "hash": "5189182754400181295" + }, + { + "file": "boilerplates/vue/files/pages/star-wars/@id/+data.ts", + "hash": "3512044405335571603" + }, + { + "file": "boilerplates/vue/files/pages/star-wars/index/+Page.vue", + "hash": "12809753384005833381" + }, + { + "file": "boilerplates/vue/files/pages/star-wars/index/+data.ts", + "hash": "981951816066781481" + }, + { + "file": "boilerplates/vue/files/pages/star-wars/types.ts", + "hash": "4084339154141473810" + }, + { + "file": "boilerplates/vue/files/pages/todo/+Page.vue", + "hash": "13049029044837801272" + }, + { + "file": "boilerplates/vue/files/pages/todo/TodoList.vue", + "hash": "2107490935982487110" + }, + { + "file": "boilerplates/vue/package.json", + "hash": "3742326333873265138", + "deps": [ + "@batijs/compile", + "@batijs/tailwindcss", + "npm:@types/node", + "npm:@vitejs/plugin-vue", + "npm:tailwindcss", + "npm:typescript", + "npm:vike", + "npm:vike-photon", + "npm:vike-vue", + "npm:vite", + "npm:vue", + "npm:vue-gtag", + "@batijs/core" + ] + }, + { + "file": "boilerplates/vue/tailwind.config.js", + "hash": "18388324591188790808" + }, + { + "file": "boilerplates/vue/tsconfig.json", + "hash": "4658726002500437860" + } + ], + "@batijs/tests": [ + { + "file": "packages/tests/README.md", + "hash": "17222524996708680293" + }, + { + "file": "packages/tests/package.json", + "hash": "16248323506875003759", + "deps": [ + "@batijs/core", + "@batijs/features", + "@batijs/tests-utils", + "npm:@types/node", + "npm:@types/which", + "npm:dotenv", + "npm:fast-glob", + "npm:knip", + "npm:mri", + "npm:p-limit", + "npm:tsdown", + "npm:tsx", + "npm:turbo", + "npm:typescript", + "npm:vitest", + "npm:yaml" + ] + }, + { + "file": "packages/tests/rules.local.spec.ts", + "hash": "10759956230475856338" + }, + { + "file": "packages/tests/src/common.ts", + "hash": "15995982865085792574" + }, + { + "file": "packages/tests/src/exec-bati.ts", + "hash": "1372060028334787255" + }, + { + "file": "packages/tests/src/index.ts", + "hash": "15385340290287984765" + }, + { + "file": "packages/tests/src/load-test-files.ts", + "hash": "3556802646100699844" + }, + { + "file": "packages/tests/src/prepare.ts", + "hash": "797294620753435623" + }, + { + "file": "packages/tests/src/tmp.ts", + "hash": "5540928384021663128" + }, + { + "file": "packages/tests/src/types.ts", + "hash": "13596597985106273775" + }, + { + "file": "packages/tests/tests/FRAMEWORK+ANALYTICS.spec.ts", + "hash": "933991272662267336" + }, + { + "file": "packages/tests/tests/FRAMEWORK+CSS.spec.ts", + "hash": "3321032198831863998" + }, + { + "file": "packages/tests/tests/FRAMEWORK+SERVER+AUTH.spec.ts", + "hash": "3923868099654464610" + }, + { + "file": "packages/tests/tests/FRAMEWORK+SERVER+DATA.spec.ts", + "hash": "11710652099209274838" + }, + { + "file": "packages/tests/tests/FRAMEWORK+aws.spec.ts", + "hash": "12348760301358894773" + }, + { + "file": "packages/tests/tests/FRAMEWORK+cloudflare.spec.ts", + "hash": "16257422296857065162" + }, + { + "file": "packages/tests/tests/FRAMEWORK+prettier.spec.ts", + "hash": "3021165532292274381" + }, + { + "file": "packages/tests/tests/FRAMEWORK+prisma.spec.ts", + "hash": "692030709713198432" + }, + { + "file": "packages/tests/tests/FRAMEWORK+sentry.spec.ts", + "hash": "1817400054609140203" + }, + { + "file": "packages/tests/tests/FRAMEWORK+storybook.spec.ts", + "hash": "330707346120483192" + }, + { + "file": "packages/tests/tests/FRAMEWORK+vercel.spec.ts", + "hash": "18238222425435577136" + }, + { + "file": "packages/tests/tests/react+UI.spec.ts", + "hash": "15141782769418777564" + }, + { + "file": "packages/tests/tests/remove-linter-comments.spec.ts", + "hash": "8903522090654421874" + }, + { + "file": "packages/tests/tsconfig.json", + "hash": "10829160037969775529" + }, + { + "file": "packages/tests/tsdown.config.ts", + "hash": "15147905083468779427" + }, + { + "file": "packages/tests/vitest.config.ts", + "hash": "839923958862646810" + } + ], + "@batijs/elements": [ + { + "file": "website/README.md", + "hash": "12465836579273636435" + }, + { + "file": "website/assets/logo.svg", + "hash": "16599565117243618629" + }, + { + "file": "website/components/Cli.tsx", + "hash": "5494454366780737430" + }, + { + "file": "website/components/Copy.tsx", + "hash": "10977693384512341735" + }, + { + "file": "website/components/Description.tsx", + "hash": "5529568717524106178" + }, + { + "file": "website/components/Features.tsx", + "hash": "12797757252533445367" + }, + { + "file": "website/components/Flip.tsx", + "hash": "14848624479803690503" + }, + { + "file": "website/components/FormControl.tsx", + "hash": "8200318457807714097" + }, + { + "file": "website/components/Icons.tsx", + "hash": "12020021306917489438" + }, + { + "file": "website/components/InputGroup.tsx", + "hash": "13859916235045706875" + }, + { + "file": "website/components/Logo.tsx", + "hash": "4948591463697094609" + }, + { + "file": "website/components/Messages.tsx", + "hash": "11848051529553603646" + }, + { + "file": "website/components/Presets.tsx", + "hash": "1755368751566654261" + }, + { + "file": "website/components/RootContext.tsx", + "hash": "9725670665589863312" + }, + { + "file": "website/components/RulesMessages.tsx", + "hash": "6556488082281128396" + }, + { + "file": "website/components/ShieldBadge.tsx", + "hash": "1633068473609245540" + }, + { + "file": "website/components/Stackblitz.tsx", + "hash": "7088088201876035529" + }, + { + "file": "website/components/Store.tsx", + "hash": "134023527294282321" + }, + { + "file": "website/components/Tooltip.tsx", + "hash": "16253362405588845583" + }, + { + "file": "website/components/Widget.tsx", + "hash": "14308036358078943576" + }, + { + "file": "website/index.html", + "hash": "409875437099995013" + }, + { + "file": "website/layouts/Head.tsx", + "hash": "8280130173430313424" + }, + { + "file": "website/layouts/Layout.tsx", + "hash": "12865817139203746378" + }, + { + "file": "website/layouts/tailwind.css", + "hash": "10853650513502171679" + }, + { + "file": "website/lib/floating-solid.ts", + "hash": "9472354918800620949" + }, + { + "file": "website/lib/track.ts", + "hash": "9761477555794531515" + }, + { + "file": "website/package.json", + "hash": "11020001051737968162", + "deps": [ + "npm:@babel/core", + "@batijs/features", + "npm:@floating-ui/dom", + "npm:@floating-ui/utils", + "npm:@solid-primitives/scheduled", + "npm:@stackblitz/sdk", + "npm:@tailwindcss/vite", + "npm:babel-preset-solid", + "npm:bumpp", + "npm:clsx", + "npm:daisyui", + "npm:esbuild", + "npm:http-server", + "npm:solid-element", + "npm:solid-js", + "npm:solid-motionone", + "npm:tailwindcss", + "npm:tslib", + "npm:typescript", + "npm:vike", + "npm:vike-solid", + "npm:vite", + "npm:vite-plugin-solid" + ] + }, + { + "file": "website/pages/+config.ts", + "hash": "3440875999753323784" + }, + { + "file": "website/pages/_error/+Page.tsx", + "hash": "16454998665875213880" + }, + { + "file": "website/pages/index/+Page.tsx", + "hash": "16632770008398308351" + }, + { + "file": "website/pages/index/+config.ts", + "hash": "14393256405524397549" + }, + { + "file": "website/tsconfig.json", + "hash": "8962166822880171117" + }, + { + "file": "website/types.ts", + "hash": "9852301593280086756" + }, + { + "file": "website/vite.config.ts", + "hash": "2722737609707901749" + }, + { + "file": "website/widget/AppWidget.tsx", + "hash": "10208118252399139319" + }, + { + "file": "website/widget/web-component.index.ts", + "hash": "522607888105565421" + } + ], + "@batijs/express": [ + { + "file": "boilerplates/express/bati.config.ts", + "hash": "4864170925815018033" + }, + { + "file": "boilerplates/express/files/$package.json.ts", + "hash": "14689073189619208611" + }, + { + "file": "boilerplates/express/files/server/entry.ts", + "hash": "6904535672098735309" + }, + { + "file": "boilerplates/express/package.json", + "hash": "6920276473416971265", + "deps": [ + "npm:@auth/core", + "@batijs/compile", + "npm:@photonjs/express", + "npm:@trpc/server", + "npm:@types/express", + "npm:@types/node", + "npm:dotenv", + "npm:express", + "npm:telefunc", + "npm:vike", + "npm:vite", + "@batijs/core" + ] + }, + { + "file": "boilerplates/express/tsconfig.json", + "hash": "15624783604779776670" + } + ], + "@batijs/photon": [ + { + "file": "boilerplates/photon/bati.config.ts", + "hash": "3067148549642645452" + }, + { + "file": "boilerplates/photon/files/$README.md.ts", + "hash": "3079014212179392868" + }, + { + "file": "boilerplates/photon/files/$package.json.ts", + "hash": "13306441530271570534" + }, + { + "file": "boilerplates/photon/package.json", + "hash": "16781290531315241914", + "deps": [ + "@batijs/compile", + "npm:@types/node", + "npm:vike-photon", + "@batijs/core" + ] + }, + { + "file": "boilerplates/photon/tsconfig.json", + "hash": "10829160037969775529" + } + ], + "@batijs/core": [ + { + "file": "packages/core/README.md", + "hash": "12037634474786229906" + }, + { + "file": "packages/core/global.d.ts", + "hash": "12813315585634602944" + }, + { + "file": "packages/core/package.json", + "hash": "12917634659412821587", + "deps": [ + "@batijs/features", + "npm:@types/eslint", + "npm:@types/estree", + "npm:@types/node", + "npm:@types/which", + "npm:@typescript-eslint/parser", + "npm:@typescript-eslint/utils", + "npm:attributes-parser", + "npm:colorette", + "npm:esbuild", + "npm:eslint", + "npm:eslint-plugin-solid", + "npm:eslint-rule-composer", + "npm:espree", + "npm:magicast", + "npm:mdast-builder", + "npm:mdast-util-from-markdown", + "npm:mdast-util-to-markdown", + "npm:mdast-util-to-string", + "npm:mdast-util-toc", + "npm:prettier", + "npm:squirrelly", + "npm:tsdown", + "npm:tsx", + "npm:typescript", + "npm:unplugin-purge-polyfills", + "npm:vitest", + "npm:vue-eslint-parser", + "npm:which", + "npm:yaml" + ] + }, + { + "file": "packages/core/src/assert.ts", + "hash": "7887229568901347476" + }, + { + "file": "packages/core/src/config.ts", + "hash": "2493413073520973465" + }, + { + "file": "packages/core/src/format.ts", + "hash": "6764289092734507368" + }, + { + "file": "packages/core/src/index.ts", + "hash": "14928717256885109881" + }, + { + "file": "packages/core/src/loaders.ts", + "hash": "5286803719723920640" + }, + { + "file": "packages/core/src/magicast.ts", + "hash": "4354493897614221225" + }, + { + "file": "packages/core/src/markdown/createTOC.ts", + "hash": "13512485900270940709" + }, + { + "file": "packages/core/src/markdown/markdown.ts", + "hash": "4411919684729591460" + }, + { + "file": "packages/core/src/markdown/types.ts", + "hash": "14307616440785598306" + }, + { + "file": "packages/core/src/markdown/utils.ts", + "hash": "6152374238904074627" + }, + { + "file": "packages/core/src/markdown/zone.ts", + "hash": "10750863306705533097" + }, + { + "file": "packages/core/src/parse.ts", + "hash": "13072124803937862888" + }, + { + "file": "packages/core/src/parse/eval.ts", + "hash": "13646180175835790118" + }, + { + "file": "packages/core/src/parse/linters/common.ts", + "hash": "12043321571192336209" + }, + { + "file": "packages/core/src/parse/linters/index.ts", + "hash": "7913309108664521286" + }, + { + "file": "packages/core/src/parse/linters/linter-ts.ts", + "hash": "15947043729986772265" + }, + { + "file": "packages/core/src/parse/linters/linter-vue.ts", + "hash": "11249087830835493980" + }, + { + "file": "packages/core/src/parse/linters/plugin-remove-unused-imports.ts", + "hash": "18150098302938615953" + }, + { + "file": "packages/core/src/parse/linters/types.ts", + "hash": "10299815159941282468" + }, + { + "file": "packages/core/src/parse/linters/visit-if-statement.ts", + "hash": "13493307544913313041" + }, + { + "file": "packages/core/src/parse/linters/visitor-global-comments.ts", + "hash": "6571743831739028205" + }, + { + "file": "packages/core/src/parse/linters/visitor-imports.ts", + "hash": "4163753282081857706" + }, + { + "file": "packages/core/src/parse/linters/visitor-statement-with-comments.ts", + "hash": "8933569326910409556" + }, + { + "file": "packages/core/src/parse/linters/visitor-ts-types.ts", + "hash": "7250603899764532899" + }, + { + "file": "packages/core/src/parse/squirelly.ts", + "hash": "11236798355534411502" + }, + { + "file": "packages/core/src/print.ts", + "hash": "13343441600469307037" + }, + { + "file": "packages/core/src/random.ts", + "hash": "17042021245402791763" + }, + { + "file": "packages/core/src/relative.ts", + "hash": "3161565933105133000" + }, + { + "file": "packages/core/src/runtime.ts", + "hash": "906964323508087330" + }, + { + "file": "packages/core/src/types.ts", + "hash": "12585825321471450454" + }, + { + "file": "packages/core/src/utils/env.ts", + "hash": "8679582370429265801" + }, + { + "file": "packages/core/src/utils/package.ts", + "hash": "12299565546087031005" + }, + { + "file": "packages/core/src/which.ts", + "hash": "148475500891681961" + }, + { + "file": "packages/core/tests/markdown/markdown.spec.ts", + "hash": "3706306302930845265" + }, + { + "file": "packages/core/tests/markdown/toc.spec.ts", + "hash": "11303234506022418010" + }, + { + "file": "packages/core/tests/markdown/utils.spec.ts", + "hash": "2243439427880325985" + }, + { + "file": "packages/core/tests/replace-bati-imports.spec.ts", + "hash": "8344487064998270393" + }, + { + "file": "packages/core/tests/transform-ts.spec.ts", + "hash": "8438149426080400544" + }, + { + "file": "packages/core/tests/transform-vue.spec.ts", + "hash": "9382159685117857534" + }, + { + "file": "packages/core/tests/utils/package.spec.ts", + "hash": "692915540507003895" + }, + { + "file": "packages/core/tsconfig.json", + "hash": "10829160037969775529" + }, + { + "file": "packages/core/tsdown.config.ts", + "hash": "12838807228801245886" + }, + { + "file": "packages/core/type-utils.ts", + "hash": "10155335266123660572" + } + ], + "@batijs/prettier": [ + { + "file": "boilerplates/prettier/bati.config.ts", + "hash": "17443007970994572713" + }, + { + "file": "boilerplates/prettier/files/$package.json.ts", + "hash": "4356100228796015365" + }, + { + "file": "boilerplates/prettier/files/.prettierignore", + "hash": "12719950030143069637" + }, + { + "file": "boilerplates/prettier/files/prettier.config.js", + "hash": "7777515834766987346" + }, + { + "file": "boilerplates/prettier/package.json", + "hash": "17457141383587797489", + "deps": [ + "@batijs/compile", + "npm:@types/node", + "npm:prettier", + "@batijs/core" + ] + }, + { + "file": "boilerplates/prettier/tsconfig.json", + "hash": "10829160037969775529" + } + ], + "@batijs/drizzle": [ + { + "file": "boilerplates/drizzle/.gitignore", + "hash": "5040098333059802248" + }, + { + "file": "boilerplates/drizzle/bati.config.ts", + "hash": "2710995805493197889" + }, + { + "file": "boilerplates/drizzle/files/$.env.ts", + "hash": "1059579254708864984" + }, + { + "file": "boilerplates/drizzle/files/$TODO.md.ts", + "hash": "7094263364243414181" + }, + { + "file": "boilerplates/drizzle/files/$package.json.ts", + "hash": "16015935492509242837" + }, + { + "file": "boilerplates/drizzle/files/database/drizzle/db.ts", + "hash": "9756653239576938068" + }, + { + "file": "boilerplates/drizzle/files/database/drizzle/queries/todos.ts", + "hash": "15482890820684246998" + }, + { + "file": "boilerplates/drizzle/files/database/drizzle/schema/todos.ts", + "hash": "4972121246208894198" + }, + { + "file": "boilerplates/drizzle/files/drizzle.config.ts", + "hash": "18240634092313816164" + }, + { + "file": "boilerplates/drizzle/package.json", + "hash": "2403490886616869290", + "deps": [ + "@batijs/compile", + "npm:@types/better-sqlite3", + "npm:@types/node", + "npm:better-sqlite3", + "npm:dotenv", + "npm:drizzle-kit", + "npm:drizzle-orm", + "@batijs/core" + ] + }, + { + "file": "boilerplates/drizzle/tsconfig.json", + "hash": "18126462976322146836" + } + ], + "@batijs/shared-server": [ + { + "file": "boilerplates/shared-server/bati.config.ts", + "hash": "15114050104332112156" + }, + { + "file": "boilerplates/shared-server/bati.d.ts", + "hash": "15578028359676202312" + }, + { + "file": "boilerplates/shared-server/files/$package.json.ts", + "hash": "14519767394590546274" + }, + { + "file": "boilerplates/shared-server/files/server/create-todo-handler.ts", + "hash": "537028294928069464" + }, + { + "file": "boilerplates/shared-server/package.json", + "hash": "7647358639639767936", + "deps": [ + "@batijs/compile", + "npm:@types/node", + "npm:@universal-middleware/core", + "npm:vike", + "npm:vite" + ] + }, + { + "file": "boilerplates/shared-server/tsconfig.json", + "hash": "18126462976322146836" + } + ], + "@batijs/plausible.io": [ + { + "file": "boilerplates/plausible.io/bati.config.ts", + "hash": "8569518495308207660" + }, + { + "file": "boilerplates/plausible.io/files/$TODO.md.ts", + "hash": "14677831576146108744" + }, + { + "file": "boilerplates/plausible.io/package.json", + "hash": "13106053219670928449", + "deps": [ + "@batijs/compile", + "npm:@types/node", + "@batijs/core" + ] + }, + { + "file": "boilerplates/plausible.io/tsconfig.json", + "hash": "10829160037969775529" + } + ], + "@batijs/d1": [ + { + "file": "boilerplates/d1/bati.config.ts", + "hash": "8177039328440590846" + }, + { + "file": "boilerplates/d1/files/$TODO.md.ts", + "hash": "3669896176014539727" + }, + { + "file": "boilerplates/d1/files/$package.json.ts", + "hash": "15594875177009451976" + }, + { + "file": "boilerplates/d1/files/$wrangler.jsonc.ts", + "hash": "17008874810307699785" + }, + { + "file": "boilerplates/d1/files/database/d1/helpers.ts", + "hash": "9485641893877685857" + }, + { + "file": "boilerplates/d1/files/global.d.ts", + "hash": "15578028359676202312" + }, + { + "file": "boilerplates/d1/package.json", + "hash": "15667771846402583679", + "deps": [ + "@batijs/compile", + "npm:@types/node", + "npm:@universal-middleware/core", + "npm:vike", + "npm:wrangler", + "@batijs/core" + ] + }, + { + "file": "boilerplates/d1/tsconfig.json", + "hash": "18126462976322146836" + } + ], + "@batijs/storybook": [ + { + "file": "boilerplates/storybook/bati.config.ts", + "hash": "5530482630701383775" + }, + { + "file": "boilerplates/storybook/hooks/after.ts", + "hash": "398995943148335939" + }, + { + "file": "boilerplates/storybook/package.json", + "hash": "16016062343166875124", + "deps": [ + "@batijs/compile", + "npm:@types/node", + "@batijs/core" + ] + }, + { + "file": "boilerplates/storybook/tsconfig.json", + "hash": "10716251606175135872" + } + ], + "@batijs/react": [ + { + "file": "boilerplates/react/bati.config.ts", + "hash": "4497886617975337323" + }, + { + "file": "boilerplates/react/biome.json", + "hash": "1367633352157617152" + }, + { + "file": "boilerplates/react/files/$README.md.ts", + "hash": "17310247390997549651" + }, + { + "file": "boilerplates/react/files/$package.json.ts", + "hash": "16613009978132506732" + }, + { + "file": "boilerplates/react/files/$tsconfig.json.ts", + "hash": "16751141146600204627" + }, + { + "file": "boilerplates/react/files/$vite.config.ts.ts", + "hash": "8208954465993100621" + }, + { + "file": "boilerplates/react/files/assets/logo.svg", + "hash": "456965794851136715" + }, + { + "file": "boilerplates/react/files/components/Link.tsx", + "hash": "15301786157164890621" + }, + { + "file": "boilerplates/react/files/pages/+Head.tsx", + "hash": "10889362621654449488" + }, + { + "file": "boilerplates/react/files/pages/+Layout.tsx", + "hash": "5353325577759859618" + }, + { + "file": "boilerplates/react/files/pages/+config.ts", + "hash": "6615639521985931115" + }, + { + "file": "boilerplates/react/files/pages/+onPageTransitionEnd.ts", + "hash": "14247927934540815005" + }, + { + "file": "boilerplates/react/files/pages/+onPageTransitionStart.ts", + "hash": "9116206879620678971" + }, + { + "file": "boilerplates/react/files/pages/Layout.css", + "hash": "13481115073965312656" + }, + { + "file": "boilerplates/react/files/pages/_error/+Page.tsx", + "hash": "2639429208420143618" + }, + { + "file": "boilerplates/react/files/pages/index/+Page.tsx", + "hash": "4423024231858812826" + }, + { + "file": "boilerplates/react/files/pages/index/Counter.tsx", + "hash": "2211509797363495570" + }, + { + "file": "boilerplates/react/files/pages/star-wars/@id/+Page.tsx", + "hash": "2393246371632616227" + }, + { + "file": "boilerplates/react/files/pages/star-wars/@id/+data.ts", + "hash": "970194308548949041" + }, + { + "file": "boilerplates/react/files/pages/star-wars/index/+Page.tsx", + "hash": "12352787776754111204" + }, + { + "file": "boilerplates/react/files/pages/star-wars/index/+data.ts", + "hash": "15637753550256440592" + }, + { + "file": "boilerplates/react/files/pages/star-wars/types.ts", + "hash": "4084339154141473810" + }, + { + "file": "boilerplates/react/files/pages/todo/+Page.tsx", + "hash": "10364174212594667415" + }, + { + "file": "boilerplates/react/files/pages/todo/TodoList.tsx", + "hash": "17095791910804630485" + }, + { + "file": "boilerplates/react/package.json", + "hash": "4516955274977791871", + "deps": [ + "npm:@babel/core", + "npm:@babel/plugin-syntax-flow", + "npm:@babel/plugin-transform-react-jsx", + "@batijs/compile", + "npm:@mantine/core", + "npm:@types/node", + "npm:@types/react", + "npm:@types/react-dom", + "npm:@vitejs/plugin-react", + "npm:react", + "npm:react-dom", + "npm:tailwindcss", + "npm:typescript", + "npm:vike", + "npm:vike-photon", + "npm:vike-react", + "npm:vite", + "npm:vite-plugin-compiled-react", + "@batijs/core" + ] + }, + { + "file": "boilerplates/react/tailwind.config.js", + "hash": "13515649713983895160" + }, + { + "file": "boilerplates/react/tsconfig.json", + "hash": "12426269000092382266" + } + ], + "@batijs/oxlint": [ + { + "file": "boilerplates/oxlint/bati.config.ts", + "hash": "7389793535987383499" + }, + { + "file": "boilerplates/oxlint/files/$.oxlintrc.json.ts", + "hash": "4118173470789092444" + }, + { + "file": "boilerplates/oxlint/files/$package.json.ts", + "hash": "317119702700065606" + }, + { + "file": "boilerplates/oxlint/package.json", + "hash": "4543264547646766038", + "deps": [ + "@batijs/compile", + "npm:@types/node", + "npm:oxlint", + "npm:oxlint-tsgolint", + "@batijs/core" + ] + }, + { + "file": "boilerplates/oxlint/tsconfig.json", + "hash": "10829160037969775529" + } + ], + "@batijs/telefunc": [ + { + "file": "boilerplates/telefunc/bati.config.ts", + "hash": "1898647461440047347" + }, + { + "file": "boilerplates/telefunc/files/$package.json.ts", + "hash": "973106109685929373" + }, + { + "file": "boilerplates/telefunc/files/$vite.config.ts.ts", + "hash": "5293987169260388338" + }, + { + "file": "boilerplates/telefunc/files/global.d.ts", + "hash": "1115697451523391661" + }, + { + "file": "boilerplates/telefunc/files/pages/todo/TodoList.telefunc.ts", + "hash": "2080952871938043374" + }, + { + "file": "boilerplates/telefunc/files/server/telefunc-handler.ts", + "hash": "6777095237620687097" + }, + { + "file": "boilerplates/telefunc/package.json", + "hash": "13934300512944991170", + "deps": [ + "@batijs/compile", + "npm:@types/node", + "npm:@universal-middleware/core", + "npm:telefunc", + "npm:vike", + "npm:vite", + "@batijs/core" + ] + }, + { + "file": "boilerplates/telefunc/tsconfig.json", + "hash": "13527409923677017098" + } + ], + "@batijs/pnpm": [ + { + "file": "boilerplates/pnpm/bati.config.ts", + "hash": "12415246205952726323" + }, + { + "file": "boilerplates/pnpm/files/$pnpm-workspace.yaml.ts", + "hash": "18435527075128516894" + }, + { + "file": "boilerplates/pnpm/package.json", + "hash": "30346845075610942", + "deps": [ + "@batijs/compile", + "npm:@types/node", + "@batijs/core" + ] + }, + { + "file": "boilerplates/pnpm/tsconfig.json", + "hash": "10829160037969775529" + } + ], + "@batijs/kysely": [ + { + "file": "boilerplates/kysely/bati.config.ts", + "hash": "12180651091900883752" + }, + { + "file": "boilerplates/kysely/files/$.env.ts", + "hash": "1059579254708864984" + }, + { + "file": "boilerplates/kysely/files/$TODO.md.ts", + "hash": "15053493103162783711" + }, + { + "file": "boilerplates/kysely/files/$package.json.ts", + "hash": "3818189458371690357" + }, + { + "file": "boilerplates/kysely/files/database/kysely/db.ts", + "hash": "7428180724951645599" + }, + { + "file": "boilerplates/kysely/files/database/kysely/migrate.ts", + "hash": "16608466648164592181" + }, + { + "file": "boilerplates/kysely/files/database/kysely/migrations/001_create_todos_table.ts", + "hash": "9988715739546823983" + }, + { + "file": "boilerplates/kysely/files/database/kysely/queries/todos.ts", + "hash": "14356230776171161652" + }, + { + "file": "boilerplates/kysely/files/database/kysely/types.ts", + "hash": "3376270916468557145" + }, + { + "file": "boilerplates/kysely/package.json", + "hash": "14001025728233847792", + "deps": [ + "@batijs/compile", + "npm:@cloudflare/workers-types", + "npm:@types/better-sqlite3", + "npm:@types/node", + "npm:better-sqlite3", + "npm:dotenv", + "npm:kysely", + "npm:kysely-d1", + "npm:tsx", + "@batijs/core" + ] + }, + { + "file": "boilerplates/kysely/tsconfig.json", + "hash": "18126462976322146836" + } + ], + "@batijs/aws": [ + { + "file": "boilerplates/aws/bati.config.ts", + "hash": "13957955230824185279" + }, + { + "file": "boilerplates/aws/files/$README.md.ts", + "hash": "4188452023476575717" + }, + { + "file": "boilerplates/aws/files/$TODO.md.ts", + "hash": "14403382619368653827" + }, + { + "file": "boilerplates/aws/files/$package.json.ts", + "hash": "4582459650238510305" + }, + { + "file": "boilerplates/aws/files/$tsconfig.json.ts", + "hash": "5628644099746052850" + }, + { + "file": "boilerplates/aws/files/$vite.config.ts.ts", + "hash": "7647712851044975636" + }, + { + "file": "boilerplates/aws/files/cdk.json", + "hash": "6128320444351766894" + }, + { + "file": "boilerplates/aws/files/cdk/$stack-name-suffix.json.ts", + "hash": "18439149065539639792" + }, + { + "file": "boilerplates/aws/files/cdk/bin/infrastructure.ts", + "hash": "3978129351170013849" + }, + { + "file": "boilerplates/aws/files/cdk/lib/vike-stack.ts", + "hash": "11582005390914433501" + }, + { + "file": "boilerplates/aws/files/tests/aws_handler.spec.ts", + "hash": "14548027137338076882" + }, + { + "file": "boilerplates/aws/files/vitest.config.ts", + "hash": "6004403807631661676" + }, + { + "file": "boilerplates/aws/package.json", + "hash": "9058498796242637157", + "deps": [ + "@batijs/compile", + "npm:@types/node", + "npm:@types/which", + "npm:aws-cdk", + "npm:aws-cdk-lib", + "npm:cdk", + "npm:constructs", + "npm:esbuild", + "npm:npm-run-all2", + "npm:source-map-support", + "npm:tsx", + "npm:typescript", + "npm:vitest", + "npm:which", + "@batijs/core" + ] + }, + { + "file": "boilerplates/aws/tsconfig.json", + "hash": "12503249049220797797" + } + ], + "@batijs/vue-sentry": [ + { + "file": "boilerplates/vue-sentry/bati.config.ts", + "hash": "5334953471835508282" + }, + { + "file": "boilerplates/vue-sentry/biome.json", + "hash": "3056594972392903914" + }, + { + "file": "boilerplates/vue-sentry/files/$package.json.ts", + "hash": "9709358604512201703" + }, + { + "file": "boilerplates/vue-sentry/files/pages/sentry/+Page.vue", + "hash": "4010962285878134624" + }, + { + "file": "boilerplates/vue-sentry/files/sentry.browser.config.ts", + "hash": "6075066664618922570" + }, + { + "file": "boilerplates/vue-sentry/package.json", + "hash": "180108721256108528", + "deps": [ + "@batijs/compile", + "npm:@sentry/vue", + "npm:@types/node", + "npm:vike-vue", + "npm:vite", + "npm:vue", + "@batijs/core" + ] + }, + { + "file": "boilerplates/vue-sentry/tsconfig.json", + "hash": "4658726002500437860" + } + ] + }, + "nonProjectFiles": [ + { + "file": ".editorconfig", + "hash": "17427675574182985939" + }, + { + "file": ".gitattributes", + "hash": "8207937369485138236" + }, + { + "file": ".github/DISCUSSION_TEMPLATE/integration-request.yml", + "hash": "12441894247943795336" + }, + { + "file": ".github/FUNDING.yml", + "hash": "18180679098338033019" + }, + { + "file": ".github/ISSUE_TEMPLATE/bug_report.md", + "hash": "13535677796983558725" + }, + { + "file": ".github/renovate.json5", + "hash": "18217004668482161607" + }, + { + "file": ".github/workflows/checks.yml", + "hash": "4013411573206725232" + }, + { + "file": ".github/workflows/clear-cache.yml", + "hash": "3514536276660415861" + }, + { + "file": ".github/workflows/publish.yml", + "hash": "17015840054167401104" + }, + { + "file": ".github/workflows/reusable.init-tests.yml", + "hash": "13269405574999400763" + }, + { + "file": ".github/workflows/reusable.run-tests.yml", + "hash": "11156741578208488720" + }, + { + "file": ".github/workflows/tests-entry.yml", + "hash": "15694450683875448932" + }, + { + "file": ".gitignore", + "hash": "11718471652935198687" + }, + { + "file": ".vscode/settings.json", + "hash": "12461145776256189186" + }, + { + "file": "AGENTS.md", + "hash": "3327702000024921805" + }, + { + "file": "BOILERPLATES.md", + "hash": "5037373011451141264" + }, + { + "file": "CONTRIBUTING.md", + "hash": "1873725386715470200" + }, + { + "file": "LICENSE.md", + "hash": "9060792552244981516" + }, + { + "file": "README.md", + "hash": "6902104447645608931" + }, + { + "file": "biome.json", + "hash": "710935252759319162" + }, + { + "file": "boilerplates/README.md", + "hash": "11101429424654219937" + }, + { + "file": "boilerplates/tsconfig.base.json", + "hash": "7770238612161011742" + }, + { + "file": "bump.config.ts", + "hash": "13458862336782979823" + }, + { + "file": "doc/bati.png", + "hash": "15349562161930091051" + }, + { + "file": "doc/demo.gif", + "hash": "7273743634420817313" + }, + { + "file": "doc/demo.yml", + "hash": "8612494506489238294" + }, + { + "file": "doc/screenshot.png", + "hash": "18009937776851012328" + }, + { + "file": "nx.json", + "hash": "16855121116317549616" + }, + { + "file": "package.json", + "hash": "2572746899770913567" + }, + { + "file": "packages/tsconfig.base.json", + "hash": "5558516391392663447" + }, + { + "file": "pnpm-lock.yaml", + "hash": "2213892221397260131" + }, + { + "file": "pnpm-workspace.yaml", + "hash": "5823068464468672213" + }, + { + "file": "render-gif.sh", + "hash": "15332861308217431894" + }, + { + "file": "scripts/gen-composite-workflow-action.js", + "hash": "7060950195546908042" + }, + { + "file": "scripts/new-boilerplate.ts", + "hash": "12842557470915726443" + }, + { + "file": "scripts/screenshot.js", + "hash": "10451930503084366367" + }, + { + "file": "terminalizer-config.yml", + "hash": "1876018010099047765" + }, + { + "file": "tsconfig.json", + "hash": "17422877559985939350" + }, + { + "file": "update-gif.sh", + "hash": "12573375449374780104" + } + ] + }, + "externalNodesHash": "11647994478078182403" +} \ No newline at end of file diff --git a/.nx/workspace-data/lockfile-dependencies.hash b/.nx/workspace-data/lockfile-dependencies.hash new file mode 100644 index 000000000..05e6a44f6 --- /dev/null +++ b/.nx/workspace-data/lockfile-dependencies.hash @@ -0,0 +1 @@ +1940204358142768512 \ No newline at end of file diff --git a/.nx/workspace-data/lockfile-nodes.hash b/.nx/workspace-data/lockfile-nodes.hash new file mode 100644 index 000000000..05e6a44f6 --- /dev/null +++ b/.nx/workspace-data/lockfile-nodes.hash @@ -0,0 +1 @@ +1940204358142768512 \ No newline at end of file diff --git a/.nx/workspace-data/nx_files.nxt b/.nx/workspace-data/nx_files.nxt new file mode 100644 index 0000000000000000000000000000000000000000..8c6e8615fa20a74d28a7fae0aaeb4ba420ed9053 GIT binary patch literal 48396 zcmb82378#KnfD{ZqHM|{3=Bvd7QxWncV8G$0tASJph*}-(a_6Ha-q|=z4vyu86}E} zpn?mVEFvI|qKqIgEHWY^Dse$XA4Wz86$cejMDf#cW;EaLU-eeid+K%)>?gPDo`0V@ zb(Z(M`>AZ+oc-)HXU@hs@y|w~&!cSDIl6Ag-*nZ__O2dZHzptbjdtej!e=)=FXY3| zMt%0+m;SErd+}>;D+~K8u>Guj0M~=~yp#_=8EA~EjpD|? z@|~Zw9pTFW zbZ_!=8s*nHEUB-#(06@K=a=g1yTnD7I@BD0B$**?wbm z7RsOFlRR73TPfecC+XAO_Wd5N_wwOiG#|REzOMK2OZC;RuJ>D6-}U#eSoy15AK>#f zD}SBqH|@K|qW08=`lx$%<@zvx|Blsp#IE17>!VyB(A}Gp8cfN{RP*j`25oTrvC6Xx<77x^X8}RZ_jYm-+sfd-x>Bi8cXWwx}BA` zx9bjeRlj!RdopKHU3-pb&X4H@)YF{kSxMVFgY9Z<3ESO$SKBYN@{72tyuV%524ACg z4&cj6_#9+^OWM{|b@WMi(Oe3D%jYmY`uoec9>GU#Yn_DY`@Z&FW&Ip!^@q8ttr4yo zGkVCz8sGQiTIbs2qcI=Nb*$5#Y;~t6NBgbb$V73d_m;_azcteDjd!M2v{w$F)$2?Z z8^uzsQY$sb0i&-Ss15?at~}d|#zpE>xPuYOPkSRO+RA zwNVM~>vbmE6C*3=L2qPwbS1xg{n75w+R<)rq&+p!S~oK9HNeCD-nwQe+B#%~Lb+NGZtnMnx~*P+WNftG z9=3t^d$m%zRxQ;V^+LT;t(6PSMj^bbJ3YSbiL$QrMws9}1MH5EOm;>mhEyDihOQ1) ztF=Z!lUytmYRzV&Qc3Sy(HiZ~(7ll*3+5kx%7Wq56UAbwS}r%swMMN`DHhB1Ql%R7 zY{h7=-(Hc-Mz7Uf)9Q{ytHZOnx!5R|YOF`GUMv=x^>Q<~JDkd8ryhSQ&(w|8LbY6J zmWzdQvBtbGm&LWMv7YE9UOij0bOwtRdReO0Dursb#P>RD7d&cuRj1#XN>(i$pk|~{ zZx)J`Qn6I5H_OcuLk;fits3pN652T=>tvZ}tTq`|rBW?dOQlLNB)OHH&dSNw(CF0Y z=f4m8lD->gWbP|yZ%h9nda!Nh2PbZoTO8Zq=OGp%kL zitKkLIz3TFrCepV6zX+`QY_Yr?3-Y<5`qjj7zEX**PyCqwE$~rR?DSuUq*Z-w?d^# zsa9eS^8+7fluEU5{KmjyrjmBt(BAl}*6Pub(aA~mx==1xsxX8a9Hq%JHk)Bn@#8&v ziV6I<&dgN5)fEB24jDzW&L*m{H>%Zo$Rk1m&#hz;_E@V_iq$fUS>#r>S1@h)we&oZ zzm-Z&R-gS371j!{svKJzpX|&`te9k@*{~34hub*y-aw>%eLIM%NKBXlXbvS=+2!8U4jYg#k6*OvW@@k=6t2c&Mw)?AQ z#zxk5x@WJL?5ypLbXzmM(Xq+aaCc@ZVz<5F^{Xd~ELg41q}Lnl-AbcTFNKdp7S8nA zy06{INrXnV)@0+b&Sj<$nyrPmt{$E0x2KZ*H{Mx2-I;>z_C^-9r_L6+u-6-n8haj+ zDb=C6YAInazIJD2C$3#-z{@JNGQ6nJtkeo2bIFs(yv~%w<+ASR6im6@nOcf8?b8zc zum*`VU}{|Ijb^=Qvzdscl=T+tr4rn%!d|EsV7i4;vz)8jok3m?Pj<#fCx?5}t#KYu zEYz#bX2b(3Fg2uQxsl#AHq)M*hy-6}y46L*cBXm}S#cw~xxhRY*++;a?k$8AG^img zZ*{w!Zl)MiicMyT4zu^z&Zrt$f5$tJz9jDI(eBw3owZXV3Ejc5^jLOZq28!gn+D9RZ)kLSIuqHY0*Xtc+Nh(sl$(_z z`#pHvDD)aW2w_sKGbq?<11ZK3>*4ATa;Io}E@RU!YWKA4>xxhfjTD>3LZbi~6_}~u zv4Iq|aYRZ}3D!hM8%W^>o23MI4sM+8w)*`xT1Ctqhm&%9P5+QbNT;IVx3Z>{SFC zY$fQspE$qkY>$c^7wha&iH1s}S*Vr5wdzan^OJ?LL1!zaYPG?9H!3VyZMZej?svLz z_losOsa`{yU@B2C*wp3bqJ_sTSiDr~98X}Hxf^W-rJz_X)>4v+mB#pYx3#*nrZpth zAR74U)#5G57Nn!ncM7zIOfMB#wk?i2*48pcUSqJ5zolZ-H?hcB*wP7;?dgcBDzHta zw*qazdYi0NIKiVc{Z$2{j6;T7Q){@ZfdXEGyGL?D8g8BgX`8mzwZ^0E!wphvnV3SU zfs{rGXMTe580q?T5Utk>Qi!#+BmE}4Wx(9{OE~6V+SG!nh#D&;=83%vZ$j9iEEK|V zWQ@iSrHD$8E?I)dAQ+pKa;?&BVG(tQR<>6R_f|oqWpv`Am;=;RmURPFtZt*%wl}2v zA`*D$SZH_!EQ@BdP+@MW6P@vq38+bbrV*GY1T0#YLY0%@tzM*yZc|MTrzg_Ru?Qo} zBgfdP#Ucg){Xz1hK9!)o;O0b%2J^vY#NL4MRvHik47*yGg+xzj^?I@+BQix$Hwx7v zDtxtCu0g4l+4t26OXi=l;B}`iIeFgF1xx;Z!IF8$&tEn_*;YkZJv)kh#bU6Il}5Rd zJUA1Y;x!n>&|gW4U=4jZ7?Rj~%qb5^Z=#QI1L-k^5){tOj4@=B67ZQh4M(n3n-w$% z>>+kLn!&7mVqiS;Pg{0UG9GR%OROW`VH1(T8T8bQcTr*dJ|Au0L=LWOhTE`uX!w;aQ-CwUEy($Q_Ix;w$yjaBu zsyE6IIcjtf;Uz}fY&J9MNNijgagltlBCC)y&=3Ss!*r?C)7sW}WNc6wR)diVi$N+g z2@+&s=e<0QB}=B~dy7R1NeLOn{)Gu)c_L>@IepK!bx6Q-v=H0`@8BPbH=Gfdl~eV$(NJ_u#vP0q)=mbV7+9^Is0Ddp+Br2>vYaen?PqRKn`$hG&zZfL8B*XYAE*g z$lAeTf&LM@Ww>Sq7GEw6uYnvUP>iL*O|9%j!$SzvnAj>SgTp3r4uo9UM&_pI-xz4$wuQxet&3#7(KUj z&io_Nr^ET9V>O%sj7b^}3yjYvn1M(#2Hx7D909CoBx#UUC_155>RHQZ5906Ph{e$E ztyziLh&ZgvkmP~zx15}awo^{Fq4XlJaSoT{KttE4X8U<51hVD zxnd>5_#&TMFsaksb`S5E?X}FODpjq}(Dr8k+9;1%pcz}at>@H@%84qC>jiHmnEfr4?Yvm!( zGz=WwCRAul(~hS1*prtmEENWTq05Rmkj8muvzLIFqZD z2For78-f9`lvn)nZm$7tLyyov8u(nqNeVSBS;d*0sZ@gGr{pSuZB(?O&?|VLi@!W@9OJu|dk4=iTax6hV|Hww=f=|WKvWx-_FTiU?kXpK{gv&9}aI0EK9t`gWTUKu<| zA#d@*FR!B~KG9ix@q^P8%cRyCe81W?G9Xc?@%bVR3D^}gw{LzO#g!t#s2ky+L=Eu1 z%WB41lUJ$&7t&fJCqcVzwC$vl!Tn$m@-vtCg}82p)8kFUP~m~ACWgy{O+xTeVUAKJBT_n#)iRa10q2jTwX=#3p^Q>J-j(%c87!(Bh-qxMDfKm#jymh#4Dcq)tu?E zM6o9C)k7=6QHcy?j?ji1*ge4vS?Jsojm$PI|0+JVh*sH`!7Z6+_i8ASA-H%6{YiNi zRld&3{{4ecR3POjoFs!7PBS|SPX-h+kWlO6JMRA})y+f>0t`08JFTotQO2 z7HqRL=Lc^o`YDPuT831dT29oaV@JRt#^rdzyI-R<_H?i;#s&NYSE@X-j?a|vKfywj zr;y&V&KmOxc@OJ}0}fdu)q_}LDSTi=>d#Suk&s0O;Ra$9*l@_sp!0cW(x5L(fidjP zI?_+76tXO2Mv;sNdt-t-wno#;C_K&zEud3kiK63>CYA3BnKHB#QO_258^#i&fTuCV zq7NJ-DFcZKLqJJ=4`pG+j-86=gw*J<_f$#y6{u@BJQ(63=`+7xIDX&>Hf7t^1)Nief!+#`kVN4ME zl;aC0l!79PzQ7P!sj}nNiVMe&PSw7CXFR2FxEdy?+-B0GqS#5|^N*)sRe$v)F?=b) z_)M^-aX1u19mH`JPr}k(su24MqJ zDG&&<4_F$w3rtDjMr_7#(#_E|z#&l0h!!b)%C3}WqM7aBz+#Nj0LUtvi5wbC8H^Im z2we~-G3+)oG*jIJ6|mnXIgtJONjuKz+HQ}!+V+^rrf@#lmAg9(WlH-xT5P`wL zB7H{t4Q`6ZH@Mq`U^x9atdQf<4$<@QmtimjH`(q9$pecE^(V;T4GCEcKCs3bQi=eJ~})X@~)??$2xAFmx&Frb%-{jwO1HZshLO;g6W+#Vj{{A z#!1A+mgk2}##h;+A>Cw)XtbKowAym8KkZ}6U-I3I^0Cl=qnrg&bp}{Wx-uhi?niHA zO`8O-P8Vh~lvwY~4&n+4D{TbHz?Wc7v)pd$Q9N`R8@R5~i^!UQ(}W8#kS*))CDg#i zkS-`!owUC2=A1c|YJQ?GCK$W3hAK(e1_CRG%8!Jnf0T@U<;yB<7ByMPlEL8mt;yDk znW^!_<{Yp#NCF_62}cSv!6e}*$yD=nVf+(`ERk#gyF$JyI|mLNJaHBie$nXq&P|s+7WbwGa}*%i7^J)P%x1}x@EZIXOUv;$~l4PuE=@J@)1HIii-$JHJ*?^ zA=xnE;4?4^IZ=tD1j`i#NJEu{6hyDDL_rsL8_FCKxK2Ty6t zt~?YPbq$}c64ptWsf8oAN9Cp$dqn;b1_a^4IB_`y9rPAJFkQsGn+R~l2+#bSXNpCf7Gi2G$PmB&7v!aVj|?DNWwHrH>7h zKgRx6@{~+MbbW&J#MtMbxM1;xa4|TQ%7VQ?0c_ZaiAW5|LSX!lg|>p6u$pGM*BpfUfMkD_cx1%u2y%IcCs&%-zm>h1vn@nmV@<%fl+!2`D!L9hL z;W9Yzr6jYPVWGjD3Ec-bNeJWY#IuepQJzxnRLk_#^y)x?gd`PlA-jj$cuKhTp^rSj zw@83s^6L1d$R$FHha^JD7{`qR(h>7T7P5IT#c=*$F$AN^)Z|!AaN&9W1j#X%Xe#Kv ztT=XVPDvh6-qM|-jRo(4j}Q`<;{&OTx|ni0FA2rLCtBK}V^TI?Sa{@Fcvua+H!LK46EAgtZAiWEfl*oyeb8%iaCc+6FDB*?5lXUQqF&hZ(lIdoI$ ztZZI+J<+0A&)h*`V@}bG#tM(0VhfJ59atKaX{qCCA|$$aMMLJs7S=I6Y%&5ycxkvl zq#}E;ZDmgm>M~h>HRhB9tjzOZm+dG^K;`I(%5KL80*PZAL=6RZ6j2le)Oi|X1p!BEIh6`q^N0Ng0Zz^*PwS$zg z*nw=76^W&byGZAD6je^-turN$>r5+&4Ru;F87C~88ge3;C6_KAsy72v#EukmB!agF#QTUlWO6J~kfJG$z1>Lwgf)d@qF~Sq^gpMYpc&N@E z5dtRL9`Q(QJ*~b4hXczJ2Y{7mB1**_0D~k-f_guAb4p=KxDa>ZH30G-pcjX`FZPRM z@jy`q@{>tcCKs$GcbF;=E`G}!4WwZ%h(_!Ru|X~dY5=*uInFo`yPUsx{-V>DEj%tg zQUJ+e9>I`tJmJzE2nlW3jEs$BPMg`GD>yC_rpd-jL{DT@hAMh;1RxM)Qm~meR2W!_ z1TC97U<+H_ba~oEz7Pgg2Ct|P$5=DRx)^N87aZg`QOShJsUtSwp0E%K zasbONWqa%7TBsSMW~IN02N1S{LF?!p?hZWT*+Q9zD2pVbq3bmUA`;w0Pu zCU(h+L?K`XNCc)6mlSq=FrRr@JufopL74=3_7z|xN{yM8JBToFW176iPLq=seNM_9 zT1n1W;?8Y`ZK*@}9g0R~LkOf#;F=FNQmoU4VoX~|UL+h|B;QE7%)(`lkFD-?A#`LW95T+t*1=P>3_OKUU$`)> z?s#i5r-^RMpihax`K;iTXj!N}h&~j3VyeX~V40AcynmVv6mskpWCtVzOD6vy*Q?yi z6F47u92~0O;;j$jAksY< zj;>k46513p12qBzPfq2c-|1WS%MGa`+-oa9&}Dk~K_oR~pxdqij1 zDRBIisLIj79OQTuSP!?8^Pxpwac{-Xj>sB&nT3(97~Q4sC-M9-8ZWkzLY2f%2!)cJlrz!;&sB1S7OxntAR>h5>r6QMM`f1ne*z~A zj_Z(j+fjz*IuRV!4`K&}U0&#Brb%o;H878D9C%=6a3>OUBacAIVQAdp^!T?W#PU1H zqT(JzBs)#1=x8W8BQ}+ic57~;l>UKMsZ<6Q7sDp^blz(tE;9SgL~t28JPeNpyq0vw zoJ|xb(hPK3PI?Y%DO;XpqJ`O17JH^SiZd~bZHqPqYk`!Md4YzQ?je^ikfxnPM+K6^ z6WpQ*Bxn&g33izp2qxRC6nr<~#+@ZD5!`1q9NsjGk1V)p&@Gdl2!RU{xx>+fT_j}! zQzE#Rj+#;A7gSL!9m&AMD2FKK6gMgorGNw8c|;V>{bH7Z!t7NdAI%Zd@K{F_`d z;oz+K8PMKG218+3&B`!{JT9|@tEOkhCfmJLQ6>{g9yWk1Ui^~G7`Ah=@9mvL6s4NR zZyOm-L@-`Vg6fR&jaEn)kG;d*cKu4ia`9QH zWD`LDO7&zABpJ$gDDP^>o zN3y5Gtr5;sW_j4D&7AW?C-Na}sS zcThf56zPW3u-|2C5W>VZf=2{h%#`DJ>r-Byq+BJh5yG1gd6JYafWCrZo13C7Tj;4i zIkc7+L3v9ZE`=H)Eemr51qfysbj*|pzgE=79l{6xf>0ngCcMSdXz)e{mX>A4V<>er z5@*%)L~YE2^6xKF*bysP??%8RQFNn`#j3C%c$XE9yQ!5!kq(RiK_Mf<3PqWU$_~UU z7!1ej%7c*&xgHe2L=MA9a9W^uXUxRX#>Znvoj5n!3v~$1m~$G++zlR;@Pv%d4n9!f zB-BskJ>W6IUy*xXTQrr4!5qq3WdZ6)k^D6X5ar{zu9|rf^A~%`4DMM>Ec5~#)UZmt z??Hc~sY#w?Owcd8lndo~%DEh!8q_jY$7WVfCtMHyg*_~DM_MJ8na=5CyTXK8loFcd z&_n6TK9;*v?_(iahzAH}kw2xJV?8m)aZkrdf^G^GGaaOtvW_7m$ov+mLeLvYURcK; zQCv8~hcib4i0mf#ks|Rf+O2pzltthR9aannM+tGwU?TI@RO~mGc7ugYA~3EMh?$%9 z&ILt{NBeyu6*J5a1_}OFaw4MB*042~mz}8)?oDA3NLL5IqRdPvpWH2y+ps7w!St?` zuw(9}Abw>P7E#I*TasWP$%#0}gB$&hjyI~Qiix!0>>+j~zi0=Q3Ws0qxKkG|Te9%j z)0Qn1i@&gTNCM)nhj)mkS{rivKO_ z1da>fbKs8(UPC`bvLSR5VenF=+-3HC9Gg+eR)!-*`ls|CL_W#vp5Wx7)6GDadH8wz*9t)HIAZ?n`8ti zht?sHBWq}CbTvM$nH4MA>ylWt&VcKv0FHi{QY^+cGS=i9i%nl?gjzv_GifN;ypUWt zVw2Bd&y^rUOpQEfW?B6vF)^5@RJ95BfZkpKhk||LnIP4QpkQv*rDF8q_{#kkpGCDr z4vMzf^uZ&%q|K#;Z|jW`seSCt)R!jmG|ov;Mi@RD7>>ea2;Z!ysrI#cbY**-xBb#v zd?iR~^l;VH`xO0~36;!cuiS(;W0b*pG!rN*Vjf!@R=m$ycY7;y_6}KW8f`z6XhKzp zLxeO(m4k*t>ft>I7;r1P^tL-Q-shFZbQ(&5mnuHWQXmt_@(r5UYCI%L;ZhiiP!7z1 zTrNcf>zV%`jo`)mInF;%bWJk9l=`e-78ZrI6q$fNd%es~m}NWWg)aLL%LkKgaw)QJ6g17F#mhgC`CobBAUi?2sS5GlR*ce;@r3(c~5)JhMiz?`U)`7g8 zQkO-EqffjHi9k#yTuQ%DLv>xo8VO0Ldx#zlIrkEWgl&fFqa<{!38jR=NOW>Dqq&IG zEDt!K9c%)vD;p-d)^ddITn7UV0GOjxO=u6rOwG*ZXV+WB<2QK7Er<6K&iX%tn-Nlo$i#9t|mJyhn2+ijS_2UUPtSi{6hUnnWQUc-2RegA|G= zy{bY223;7EM5iuiv*@Wr0w?iop=@jQ*a|4gJXGdc(AzjHXx+_}A*H?R&7+v=3J#LM znMLYSE~p2^c?{V}9OX2_0a<2z^EzcwNwWS{wx(jIqF(SGO^RNtJj9#+6r?7-fn#T_)1f47FL@M!^u1S5+lz;$ECCiJ>sGoWGne;;m+KsRef%+s-Wo zW<1e4WgtTcN&?TKAo-;*LK0%W_Ii%PrhqM zdFL0e85@dT(7mb?>xNMhtg`*t2n1X6Svb+0Br+lBrsOF!hN?{-i2V3DS9>BL?8~6)tA*-$0~}aCQhL7wf`i zhwDox*1)%XYcOV9JcJzOm_`fH$zpbXN`on-M|MJ@Q|qV)Qj>}dST8E7rT=e4&@>ve zObG}S?;Sc8YH!e~Y}Y!M!6LnxT3Z%HRSGDNLg*5CW)lW?XNpzG{tzR?%uvvAXUYMH z8zi`oyo&G!)IVgtrVla88v%G|Isxeh$i*;G1>{bLsbGV!Z?MY-E%JoMVsf#y9(X^L zP6uLCpp)UQVyt*8(pMJq{$n_h@=|bvA@Jxbp0L5*=}mj1vWpOiSOz%qxJyaIkV7!| z)KK&!oMQ=gypYy-AW~1kEKDtB&eih-ZC#0ZCe9s_a!K@%LJMgS6b>Gq1xiiY4J13F zI*8puz^G1Q14yrMw7~<(713KYaE|fTcEt>G#&qoGa()Bk2E+^Nih}eAA>Vqe>JejN zG*B&+jY9)(2HFW}MT7Dp-GKBJJp>=4-jkuDd5}@s>paWSo1xIyVk3s|2%Sg3({r5; zEjXVqows*PKKGcHXZQI%C4E%x7A2i1bVHUCZo*1-%!TbK<3N#a*{JZ(+;nF9HLxqN zMxs&Ra>SUCGM9}$U?8zNmU%*ShD3}KcRSuhY|X9Gs--I@6zt9(;M_p-)OI97K&N3& z>GUgPNOs7iUJZj*twZla_CKO9UNXUJdr z4*4~H474&GsGwU4!sUD!nP3QK0gE4(o6K(Zfg%#QvkJy7f)}kS9E3f^9g&gG;Bs=+ zS+cP{VCsMlTA^ej^P;3l>~*Lo7mM?|HNH9XJtYpTS>96@&QtQ<kXB8|LMeZ|@D(-?J}Um-(u{XM$9TF6p5z@FY$a?P z9!KtmP8}exlB3KEmo7bRLH634v6+?2IUlP-#zYCyvdRYcUb8%VPUaonfFMGxMy}weL;RI;T0yLt)2&IY=jcCjNYAjF*A3;9lsOb7 zg*h7zj(&<6eh`G!k4K&~0Z z1qU%$8Vqch3<>j41qMRUj`n}Bxsbt%T(XxD{5t&gT#gZ?RtU|ZfpQX0o*1TzNy7#W zo|w5;2OLIlSey^?bEAbRO*NNnGPuoRA6^nDlwicLMCHcyL6``!4|@-%T$?6(=YKG2 zgxA*7RR_F~;Y#b|8Uw~pqpeDEw-f)_Tbsh95~D46C&|6iG>~0-6Go`ynq$EBs;3cl zIy$88LSQmXa+guog1OGZHM8H3Ev;l2+&xe#t}wDng8Ny{MD-2FE90GWn&=qXxJ+In zFLIOrk}-a8>RoVd1xdr`@Fx}$$7}I6p%fEU#6_8@9fN9nEK8T2dK}}2gXncHsQN@k z@#8TU;Q$8XqkjQcAG|rzuie=WB7f|0xuTL++S&r~mICv7#KB1vz?B{S=X2_`k{}2& zOS@Mxk*v#L)|2yx@zfn3CJLh? zq;-Bs?|6s;-TE)cPB?Ax@d^p+HDo$oPF8~6-2uZy%?wiLlehG_uz_MY$_?gK+bjo) zX(hA}gSSNI<%a?&$aIka`5I)JA+~}Unay0!7Ls%-)DDESBqZ`~Kxc_#7SZB`yM7i$ zFq_9D6^tnUL??dzInF|yz-)G?RNJjqKK9gwixw=2-sz@O*O=`Xc}y21%}07>Fc4Hx zzZ#5J@(*@}vm1viR?W8PH)Hb_zp$iGnv#L6-KhV%Quc3V62%fOk#i8yywet@z6#zc zLUI<07`7M3QAmIY`<$D6Tr;RdNp8nD33a%%asS~v;9wbkaX3lH42*?^Q!hnK|2+wQ zZt468$X3QZ0CD=ecpotraXdJH4(>q&A>(u@ts(E?fn*V3;&L*J{U@h> z$TfLKS+Gb%Gou(YA_*-5k)EUNaDrz2e=2z0C8j@NDy1*sC&>F4l1&~wm+3?(V2N=T z%#CQO+vTE8pBqS^fFlSfQP2Uy(jlgR@*rLM@nX zycBR_F>|H-!=BUe1iUCfx_TFp)tldswe})1i;t`Qa#2 zJlvN`XlGwWe1HHY`+6(;a)6OT1?&#AH+i|pH+}x}(-avFOy>3RSd+39~I!CmhC}Oi~a?CY}Rj@?DXqbIE zoe=IHDf;oPp|=}cVSa3VHqm0 z9DdOGAS%TA!n)ub#Ecb7LWX@IVL^lPmXzW40&i7Me87TSshhqXZAjmhUf1*+~RTPM1vN zs7@6sBLF7@dzBDzJ(@RyFlR?$WX+LW*<9dVxCG0yot)r=Z}grl1qZalh(JJ4B;b`Y zGbl@vOx=cf`E-H~Yfr~%

IfoEp_ew)TH_CYlGKTrnxE1~`tA>g0ITe>T52pXa}0 z^X7wo{iU|bhw%CC+c$3(es~W59r#}0XE?k;d2hB3Vwstf5zc|1O8>h_c=G~zn=R8!|M)LJKIs#b6@N5mry>Kvije5_{%6C zZTQ6wS3AootDUqmbZ&$H&?3zYZdy3adv{kQtZJG?@@ zIh6I>^$tIZ@`&M=J6!Fz48P6cbHU$f_|F_(2mcsl^>eRxW&J5o{*KjeI9&7mXRCjv z!;b_%gtGd%(czl6lMTPw;TqQ@Wj*)%4j-X>mEr%x^+PsqqR+2TR{ICOJL~7+l%KHr z^KNW(WeTy%As;kP(ko8@fEdhY!W|7*%u8UDD#{}%ja%6jf!otO1f z^YEbILk`z?pSE^RcDUB@uPLjYNr$VQy5aA2xaQ||l-1809IpMf#_(@DT$#^n zT=RLD;nQ3%v;NNoKgRIuU48M%H&WJfzw2<()rD67S*{;+{NamM|9@S5&BJ3>fA z_$G(%0scwKn$IU4F1o$l@XZd_x_sC0Bj1~iSMC1-T>W3@aP7N&DXaaq!_|J(@CzL- zKDNy8I~}h5xSq1w|Cz%pl&`n?d%iF0kLrKN@L}+exq17O;R{@S$%XwWtDkRlxW-$c ztmjTSTzuvP!>@C==;{rIKj3hU>q5$E|LGilo8d2hf7XBP$43o6+Tlasb0}+Hta7;c z#^IFJ&vP9vI$2`)#SVWlc!#q3bEm__w>KL8sKdp7t~dO77iRrbf9^N@Z@@3Gc@`c1 z((szAKNoyQ%6je+hpV42rL6w1bGZ21(N_OrhtCC{u==++T=aGhWzEkfhiiSWw)#JH zxcK?4hHrOKHml$l;pjJt(XFajqMG6YE8q zw>o9D^ER#@xAmP%d9l^MhHIj)s{OMJzu(~+?*)|A&f^Z({C}3R=JU@EpG)~ctG~|& zv-TyAes1_;hra@RJIZS39EVpaA4OTu{jkILr`)Ej@&2>JwZ6Jv_=67DxIRKz?fl;1 zqW`K_fB&|x&sl-1AW4p;j}7(U~0 z(Zk7xU+Hks?Wp1RI$ZnxJj&|N6AoAXPh0(+F3I{MdU(k2VTWrTo;CbLhaU*OKV|iQ z)ZrR$nX;by4u@-=Pci)C4%c&6Q&u|Gw|9-$o3)n%JEzsL3SNpQ7u40u9UlFQpu)^ocK*ZzIE;a53acFmh9 ztNjNZEWhB%q^y2UI=oEz z2*W?%aMAPYDXX22I$Y&{q^$nm>u}N4dklZd;p+d5l=a+a9WFij5ySWXNH#9f?GFtv zJ6v*M4rM+6WQR*09Yk5}uXlKba+R|B`5}jE9$JQf#^K^uZ#Dc|4%a+fMp^Cu&f%iN zyA9v%imd-?|3`+;bGYdLkKpRh!W_OYW#KKZiG3k@t{A?~)t8?68p`U=N4Q>M^eH|z zZullwU-R%T!++p#(fRF$Z+B(Ze~s$_aP?=d!`1(%t^O+4evNy z^j}db zIJ^wL9c9tmIM*v}o<)ZR%4+94t{*mB^LC2iH*!t*gXpJg_`h*|m(>@YTw?fBuD;d3b;Y4|#> z*IR#tpF~;Dz1G!N|0fK;&*9=H@1v~tH#uDV=QD=?*5PXBcFJmhk884VY26<){FM&Z zeEy%cGwN`y`w^7Y&N&X(cuz6>0}dD6o<&*xyvyODhkvm8k2+lP_Xfj%<8aZ{{f6)P zvCW&Wuz3@I_yM@u-w!;YANe2tWO&`->gNuW)&DVv%Z@&nvfAl7T>JMF!$06~wex1f zZ{eEoE3L~v8vb2ZUvzafWj*&d4j27=(ePca&H67s@B?u5=SYWZyuUYmp~KbAUsG27 zQHM*8R1IIB!%v~C{=CiMFQD8q{CtPM2)u3hXB{rRu1{Id{V#{hKYWGN-{HD!T$-PU ztp5JsEtBu!tIrrd?CMJ{>_}PtJl)}1FWs-__P8c`vgYl0tAB;7uYN8!{HqQZoxjWQ zryVZ+=W~?R{;t<&{nvhZ)bPU`ELweS95_(={|Klh=m{H0+uYUdrTiI!c+>7zJ9j!db^`&_&Qf#{W-<(s~xWSpD_GZhpYYbDQh0S;c)TQ zYpnjC94@{64$2zW5&x8pOa8Yf!PU;29IpMo7iIN-1J{de9YsGUQC9t%bM;qP{VzLQ z{k+oZ|Cp=y!`x!^|IGCo*ZwyQ-|LfEKefKU0M~Q>&f!|G&4!=haPif{D69V494oZ{0WEaxwlbP`*Uv0`Y-yj z{|Un@Iea_HYUhm(S33t8{tkzWKc7fh{k+lPsy}7;w;V1$e2L+|cDUr@-G=Y|nXI3x z{~v}obNFU(_4D-(*ZdzsS@?{@wT{PARzI(BxcJ7X)xVQ#68Dt6dzaz2slLhUsrdaY zJE@&-3AZ@D*7swSg+K463|E}@Zo?07_+0Q`f~%hk9IkcWiL&rFJ6!y#NLh4sj>9!? zueSPEJ6!Y7rmX&4=Wyvc=Ue?d9Uk#{!yj_E^r(+hRy#j-xb(w&4Bzdav+>G5@C|VF z|8R%TrTpK9FLJo}z}}SA{&Ws+82)yLORs*T;nz4^>orMP&%M{-nx6{{|4)aD{y$Aw z&wb%%v;K?!Z!)~-aPh*82X~ z;o3(xP*yv?cevK;>y-7Jm)@N9Uvf(KtNwC_A4_>R%EC8r_44J_l-16auDt&Tw-aSO z_hg4_K3_~(?VRRt^`~z5KR8_Tb`0fcUAVs0TeESA&cAE*U*>S}&)*yVDu;_d>_u7azuw`Zhk2AW-VF}dJREQMr4Cp7 zEyKUyaLx1EDQjMTn!`V3^?%9rc;nBzQtu(k>d&sXW#iJk{kzpa(&6Hh|84lI9j^Vj zFJ-l}!QqnERmvLIH4fLlUSaj`ak%)*1%`j$;cEYrl-15N4wv5YRmvLgUbkoc7yavg z_2+1Zi_ZUK?fkvNHUCFYR{a$Y7vG*wS$+{yFF#~^Yso_e-5Lpam_e9(l;op{f{_Y zd}g`fH#=PW=$(c?>TvDrD-HjZ!$l|eQ&xYrzccH<+WDT(+<~oH(33zJ6!wgGOPcK9R4p>fA_nx{%hSIvHHUf7hV0) z>YwIt@yY!utDjwmYh8|^tZ`lLaMgd4)qmXKi^1P%_5aV|((Ary_@Q@a{S;sNx#6z_ zPvSM&cY9FQb5D2m)y~Te@8|FZhF|S)wSOjMjcb#`wI9zn{D%&gK5!dlJ@-!z*Lr=; z>hJOStpAd~Pa1xd!$oiZXZRTo*S(OSxC|5k^qo%0RENouc55=f8}t^+r3tQ?=NKI5&g9Ode({T(T*Kd0yLL#_UM9j^IbVECsTuJu|&S?%2CaLvQThX2sv;tw}b z7T@0Q-mL$xr2KWOUv~Ih@V}z0{-5G-&BH;4x46E;^fW!UVfZ;*|H*Lif!7#*9oNKu z6yH0Ga@2o^YkuBu^&fM%`0Y(rf4eVc?MM&VWc5cJF1`9`aEB%%|GSjc|4j~8|1UB8affSuZZ~|h!}Z(;DXTy8?#sp{zW0>Xf3?Ha z{yvoT+)1vN+B{2M*C?xk)krD6DG4%a%qnX>x-d54R?z1{GiI9&Yp6NYd9rL3QthX)OB zI{YZ`UxTavZ*;i$^C6UlZ*;i&bE4s&a=4y5Y4`&U*LW{6{I?F*eBMS`<9hM^SwHpM z$E^Or4p+T7lyyDY;aaa3QdU359Ip8}-0Gk2aLN6}R{utaYkvBM-{)}g;Y%s&x!-WO z?5Ufq{!h4`YxE|)>kh;B`EoWc`G3A;c-`UJciT}`|Ic)|=JQ~~-|BGfi$#>xpMP?= z=Cf_}A8@$F^&!K5#PuB4&)X=gon60@^;2~F4Xb}R_=Q$q&;5hpN4xscKli4r{-5sf zxs;DE{H+exepx_S&wZc6Rc>4Ts~x@%_*%oi<#6%;^C@c|{hDhM#}^;?yx}{2H5-@c z%Kc>)gO1b=J`;{s{dApi=QvH`qw*Lbl5ihK8I^xTu52% z{HMb;&!4gS&pKRkd6VHUejpoHv|kJ_Ib7qKLs{)FbhzmAK*MJou63_c)_6bSaIM#< z)xVvqr-yf1{U=@h2KBEse6LMeKc%;P*YKA*T+jP6xcXUlxaNOX%KG~o9Io*mOj-5& z4%hrIpe%a0)ZwE4GY!AT;o`R&DXabaxjtt4$?lXtVfcTz`s&YT4Syzwf7$T;zLt$w Ubn<=hS8azLeeCAVFXC_iADb~;_5c6? literal 0 HcmV?d00001 diff --git a/.nx/workspace-data/parsed-lock-file.dependencies.json b/.nx/workspace-data/parsed-lock-file.dependencies.json new file mode 100644 index 000000000..4fa84f459 --- /dev/null +++ b/.nx/workspace-data/parsed-lock-file.dependencies.json @@ -0,0 +1,15127 @@ +[ + { + "source": "npm:@auth/core", + "target": "npm:@panva/hkdf", + "type": "static" + }, + { + "source": "npm:@auth/core", + "target": "npm:jose", + "type": "static" + }, + { + "source": "npm:@auth/core", + "target": "npm:oauth4webapi", + "type": "static" + }, + { + "source": "npm:@auth/core", + "target": "npm:preact", + "type": "static" + }, + { + "source": "npm:@auth/core", + "target": "npm:preact-render-to-string", + "type": "static" + }, + { + "source": "npm:@babel/code-frame", + "target": "npm:@babel/helper-validator-identifier", + "type": "static" + }, + { + "source": "npm:@babel/code-frame", + "target": "npm:js-tokens", + "type": "static" + }, + { + "source": "npm:@babel/code-frame", + "target": "npm:picocolors", + "type": "static" + }, + { + "source": "npm:@babel/core", + "target": "npm:@babel/code-frame", + "type": "static" + }, + { + "source": "npm:@babel/core", + "target": "npm:@babel/generator", + "type": "static" + }, + { + "source": "npm:@babel/core", + "target": "npm:@babel/helper-compilation-targets", + "type": "static" + }, + { + "source": "npm:@babel/core", + "target": "npm:@babel/helper-module-transforms", + "type": "static" + }, + { + "source": "npm:@babel/core", + "target": "npm:@babel/helpers", + "type": "static" + }, + { + "source": "npm:@babel/core", + "target": "npm:@babel/parser", + "type": "static" + }, + { + "source": "npm:@babel/core", + "target": "npm:@babel/template", + "type": "static" + }, + { + "source": "npm:@babel/core", + "target": "npm:@babel/traverse", + "type": "static" + }, + { + "source": "npm:@babel/core", + "target": "npm:@babel/types", + "type": "static" + }, + { + "source": "npm:@babel/core", + "target": "npm:@jridgewell/remapping", + "type": "static" + }, + { + "source": "npm:@babel/core", + "target": "npm:convert-source-map", + "type": "static" + }, + { + "source": "npm:@babel/core", + "target": "npm:debug", + "type": "static" + }, + { + "source": "npm:@babel/core", + "target": "npm:gensync", + "type": "static" + }, + { + "source": "npm:@babel/core", + "target": "npm:json5", + "type": "static" + }, + { + "source": "npm:@babel/core", + "target": "npm:semver", + "type": "static" + }, + { + "source": "npm:@babel/generator", + "target": "npm:@babel/parser", + "type": "static" + }, + { + "source": "npm:@babel/generator", + "target": "npm:@babel/types", + "type": "static" + }, + { + "source": "npm:@babel/generator", + "target": "npm:@jridgewell/gen-mapping", + "type": "static" + }, + { + "source": "npm:@babel/generator", + "target": "npm:@jridgewell/trace-mapping", + "type": "static" + }, + { + "source": "npm:@babel/generator", + "target": "npm:jsesc", + "type": "static" + }, + { + "source": "npm:@babel/generator@8.0.0-rc.2", + "target": "npm:@babel/parser@8.0.0-rc.2", + "type": "static" + }, + { + "source": "npm:@babel/generator@8.0.0-rc.2", + "target": "npm:@babel/types@8.0.0-rc.2", + "type": "static" + }, + { + "source": "npm:@babel/generator@8.0.0-rc.2", + "target": "npm:@jridgewell/gen-mapping", + "type": "static" + }, + { + "source": "npm:@babel/generator@8.0.0-rc.2", + "target": "npm:@jridgewell/trace-mapping", + "type": "static" + }, + { + "source": "npm:@babel/generator@8.0.0-rc.2", + "target": "npm:@types/jsesc", + "type": "static" + }, + { + "source": "npm:@babel/generator@8.0.0-rc.2", + "target": "npm:jsesc", + "type": "static" + }, + { + "source": "npm:@babel/helper-annotate-as-pure", + "target": "npm:@babel/types", + "type": "static" + }, + { + "source": "npm:@babel/helper-compilation-targets", + "target": "npm:@babel/compat-data", + "type": "static" + }, + { + "source": "npm:@babel/helper-compilation-targets", + "target": "npm:@babel/helper-validator-option", + "type": "static" + }, + { + "source": "npm:@babel/helper-compilation-targets", + "target": "npm:browserslist", + "type": "static" + }, + { + "source": "npm:@babel/helper-compilation-targets", + "target": "npm:lru-cache", + "type": "static" + }, + { + "source": "npm:@babel/helper-compilation-targets", + "target": "npm:semver", + "type": "static" + }, + { + "source": "npm:@babel/helper-module-imports@7.18.6", + "target": "npm:@babel/types", + "type": "static" + }, + { + "source": "npm:@babel/helper-module-imports", + "target": "npm:@babel/traverse", + "type": "static" + }, + { + "source": "npm:@babel/helper-module-imports", + "target": "npm:@babel/types", + "type": "static" + }, + { + "source": "npm:@babel/helper-module-transforms", + "target": "npm:@babel/core", + "type": "static" + }, + { + "source": "npm:@babel/helper-module-transforms", + "target": "npm:@babel/helper-module-imports", + "type": "static" + }, + { + "source": "npm:@babel/helper-module-transforms", + "target": "npm:@babel/helper-validator-identifier", + "type": "static" + }, + { + "source": "npm:@babel/helper-module-transforms", + "target": "npm:@babel/traverse", + "type": "static" + }, + { + "source": "npm:@babel/helpers", + "target": "npm:@babel/template", + "type": "static" + }, + { + "source": "npm:@babel/helpers", + "target": "npm:@babel/types", + "type": "static" + }, + { + "source": "npm:@babel/parser", + "target": "npm:@babel/types", + "type": "static" + }, + { + "source": "npm:@babel/parser@8.0.0-rc.2", + "target": "npm:@babel/types@8.0.0-rc.2", + "type": "static" + }, + { + "source": "npm:@babel/plugin-syntax-flow", + "target": "npm:@babel/core", + "type": "static" + }, + { + "source": "npm:@babel/plugin-syntax-flow", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-syntax-jsx", + "target": "npm:@babel/core", + "type": "static" + }, + { + "source": "npm:@babel/plugin-syntax-jsx", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-flow-strip-types", + "target": "npm:@babel/core", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-flow-strip-types", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-flow-strip-types", + "target": "npm:@babel/plugin-syntax-flow", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-react-jsx", + "target": "npm:@babel/core", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-react-jsx", + "target": "npm:@babel/helper-annotate-as-pure", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-react-jsx", + "target": "npm:@babel/helper-module-imports", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-react-jsx", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-react-jsx", + "target": "npm:@babel/plugin-syntax-jsx", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-react-jsx", + "target": "npm:@babel/types", + "type": "static" + }, + { + "source": "npm:@babel/template", + "target": "npm:@babel/code-frame", + "type": "static" + }, + { + "source": "npm:@babel/template", + "target": "npm:@babel/parser", + "type": "static" + }, + { + "source": "npm:@babel/template", + "target": "npm:@babel/types", + "type": "static" + }, + { + "source": "npm:@babel/traverse", + "target": "npm:@babel/code-frame", + "type": "static" + }, + { + "source": "npm:@babel/traverse", + "target": "npm:@babel/generator", + "type": "static" + }, + { + "source": "npm:@babel/traverse", + "target": "npm:@babel/helper-globals", + "type": "static" + }, + { + "source": "npm:@babel/traverse", + "target": "npm:@babel/parser", + "type": "static" + }, + { + "source": "npm:@babel/traverse", + "target": "npm:@babel/template", + "type": "static" + }, + { + "source": "npm:@babel/traverse", + "target": "npm:@babel/types", + "type": "static" + }, + { + "source": "npm:@babel/traverse", + "target": "npm:debug", + "type": "static" + }, + { + "source": "npm:@babel/types", + "target": "npm:@babel/helper-string-parser", + "type": "static" + }, + { + "source": "npm:@babel/types", + "target": "npm:@babel/helper-validator-identifier", + "type": "static" + }, + { + "source": "npm:@babel/types@8.0.0-rc.2", + "target": "npm:@babel/helper-string-parser@8.0.0-rc.3", + "type": "static" + }, + { + "source": "npm:@babel/types@8.0.0-rc.2", + "target": "npm:@babel/helper-validator-identifier@8.0.0-rc.2", + "type": "static" + }, + { + "source": "npm:@batijs/compile", + "target": "npm:globby", + "type": "static" + }, + { + "source": "npm:@batijs/compile", + "target": "npm:tsdown", + "type": "static" + }, + { + "source": "npm:@biomejs/biome", + "target": "npm:@biomejs/cli-darwin-arm64", + "type": "static" + }, + { + "source": "npm:@biomejs/biome", + "target": "npm:@biomejs/cli-darwin-x64", + "type": "static" + }, + { + "source": "npm:@biomejs/biome", + "target": "npm:@biomejs/cli-linux-arm64", + "type": "static" + }, + { + "source": "npm:@biomejs/biome", + "target": "npm:@biomejs/cli-linux-arm64-musl", + "type": "static" + }, + { + "source": "npm:@biomejs/biome", + "target": "npm:@biomejs/cli-linux-x64", + "type": "static" + }, + { + "source": "npm:@biomejs/biome", + "target": "npm:@biomejs/cli-linux-x64-musl", + "type": "static" + }, + { + "source": "npm:@biomejs/biome", + "target": "npm:@biomejs/cli-win32-arm64", + "type": "static" + }, + { + "source": "npm:@biomejs/biome", + "target": "npm:@biomejs/cli-win32-x64", + "type": "static" + }, + { + "source": "npm:@brillout/vite-plugin-server-entry", + "target": "npm:@brillout/import", + "type": "static" + }, + { + "source": "npm:@brillout/vite-plugin-server-entry", + "target": "npm:@brillout/picocolors", + "type": "static" + }, + { + "source": "npm:@browserless/devices", + "target": "npm:didyoumean3", + "type": "static" + }, + { + "source": "npm:@browserless/devices", + "target": "npm:memoize-one", + "type": "static" + }, + { + "source": "npm:@browserless/devices", + "target": "npm:require-one-of", + "type": "static" + }, + { + "source": "npm:@browserless/errors", + "target": "npm:debug-logfmt", + "type": "static" + }, + { + "source": "npm:@browserless/errors", + "target": "npm:ensure-error", + "type": "static" + }, + { + "source": "npm:@browserless/errors", + "target": "npm:serialize-error", + "type": "static" + }, + { + "source": "npm:@browserless/errors", + "target": "npm:whoops", + "type": "static" + }, + { + "source": "npm:@browserless/goto", + "target": "npm:@browserless/devices", + "type": "static" + }, + { + "source": "npm:@browserless/goto", + "target": "npm:@duckduckgo/autoconsent", + "type": "static" + }, + { + "source": "npm:@browserless/goto", + "target": "npm:@ghostery/adblocker-puppeteer", + "type": "static" + }, + { + "source": "npm:@browserless/goto", + "target": "npm:debug-logfmt", + "type": "static" + }, + { + "source": "npm:@browserless/goto", + "target": "npm:got", + "type": "static" + }, + { + "source": "npm:@browserless/goto", + "target": "npm:is-url-http", + "type": "static" + }, + { + "source": "npm:@browserless/goto", + "target": "npm:p-reflect", + "type": "static" + }, + { + "source": "npm:@browserless/goto", + "target": "npm:p-timeout", + "type": "static" + }, + { + "source": "npm:@browserless/goto", + "target": "npm:shallow-equal", + "type": "static" + }, + { + "source": "npm:@browserless/goto", + "target": "npm:tough-cookie", + "type": "static" + }, + { + "source": "npm:@browserless/pdf", + "target": "npm:@browserless/goto", + "type": "static" + }, + { + "source": "npm:@browserless/pdf", + "target": "npm:@browserless/screenshot", + "type": "static" + }, + { + "source": "npm:@browserless/pdf", + "target": "npm:@kikobeats/time-span", + "type": "static" + }, + { + "source": "npm:@browserless/pdf", + "target": "npm:debug-logfmt", + "type": "static" + }, + { + "source": "npm:@browserless/pdf", + "target": "npm:pretty-ms@7.0.1", + "type": "static" + }, + { + "source": "npm:@browserless/screenshot", + "target": "npm:@browserless/goto", + "type": "static" + }, + { + "source": "npm:@browserless/screenshot", + "target": "npm:@kikobeats/content-type", + "type": "static" + }, + { + "source": "npm:@browserless/screenshot", + "target": "npm:@kikobeats/time-span", + "type": "static" + }, + { + "source": "npm:@browserless/screenshot", + "target": "npm:automad-prism-themes", + "type": "static" + }, + { + "source": "npm:@browserless/screenshot", + "target": "npm:debug-logfmt", + "type": "static" + }, + { + "source": "npm:@browserless/screenshot", + "target": "npm:got", + "type": "static" + }, + { + "source": "npm:@browserless/screenshot", + "target": "npm:is-html-content", + "type": "static" + }, + { + "source": "npm:@browserless/screenshot", + "target": "npm:is-url-http", + "type": "static" + }, + { + "source": "npm:@browserless/screenshot", + "target": "npm:lodash", + "type": "static" + }, + { + "source": "npm:@browserless/screenshot", + "target": "npm:map-values-deep", + "type": "static" + }, + { + "source": "npm:@browserless/screenshot", + "target": "npm:mime@3.0.0", + "type": "static" + }, + { + "source": "npm:@browserless/screenshot", + "target": "npm:null-prototype-object", + "type": "static" + }, + { + "source": "npm:@browserless/screenshot", + "target": "npm:p-reflect", + "type": "static" + }, + { + "source": "npm:@browserless/screenshot", + "target": "npm:pretty-ms@7.0.1", + "type": "static" + }, + { + "source": "npm:@browserless/screenshot", + "target": "npm:prism-themes", + "type": "static" + }, + { + "source": "npm:@browserless/screenshot", + "target": "npm:sharp", + "type": "static" + }, + { + "source": "npm:@browserless/screenshot", + "target": "npm:svg-gradient", + "type": "static" + }, + { + "source": "npm:@chevrotain/cst-dts-gen", + "target": "npm:@chevrotain/gast", + "type": "static" + }, + { + "source": "npm:@chevrotain/cst-dts-gen", + "target": "npm:@chevrotain/types", + "type": "static" + }, + { + "source": "npm:@chevrotain/cst-dts-gen", + "target": "npm:lodash@4.17.21", + "type": "static" + }, + { + "source": "npm:@chevrotain/gast", + "target": "npm:@chevrotain/types", + "type": "static" + }, + { + "source": "npm:@chevrotain/gast", + "target": "npm:lodash@4.17.21", + "type": "static" + }, + { + "source": "npm:@cloudflare/unenv-preset", + "target": "npm:unenv", + "type": "static" + }, + { + "source": "npm:@cloudflare/unenv-preset", + "target": "npm:workerd", + "type": "static" + }, + { + "source": "npm:@cloudflare/unenv-preset@2.7.13", + "target": "npm:unenv", + "type": "static" + }, + { + "source": "npm:@cloudflare/unenv-preset@2.7.13", + "target": "npm:workerd", + "type": "static" + }, + { + "source": "npm:@cloudflare/vite-plugin", + "target": "npm:@cloudflare/unenv-preset@2.7.13", + "type": "static" + }, + { + "source": "npm:@cloudflare/vite-plugin", + "target": "npm:@remix-run/node-fetch-server", + "type": "static" + }, + { + "source": "npm:@cloudflare/vite-plugin", + "target": "npm:defu", + "type": "static" + }, + { + "source": "npm:@cloudflare/vite-plugin", + "target": "npm:get-port", + "type": "static" + }, + { + "source": "npm:@cloudflare/vite-plugin", + "target": "npm:miniflare@4.20251217.0", + "type": "static" + }, + { + "source": "npm:@cloudflare/vite-plugin", + "target": "npm:picocolors", + "type": "static" + }, + { + "source": "npm:@cloudflare/vite-plugin", + "target": "npm:tinyglobby", + "type": "static" + }, + { + "source": "npm:@cloudflare/vite-plugin", + "target": "npm:unenv", + "type": "static" + }, + { + "source": "npm:@cloudflare/vite-plugin", + "target": "npm:vite", + "type": "static" + }, + { + "source": "npm:@cloudflare/vite-plugin", + "target": "npm:wrangler", + "type": "static" + }, + { + "source": "npm:@cloudflare/vite-plugin", + "target": "npm:ws", + "type": "static" + }, + { + "source": "npm:@compiled/babel-plugin-strip-runtime", + "target": "npm:@babel/core", + "type": "static" + }, + { + "source": "npm:@compiled/babel-plugin-strip-runtime", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@compiled/babel-plugin-strip-runtime", + "target": "npm:@babel/template", + "type": "static" + }, + { + "source": "npm:@compiled/babel-plugin-strip-runtime", + "target": "npm:@babel/traverse", + "type": "static" + }, + { + "source": "npm:@compiled/babel-plugin-strip-runtime", + "target": "npm:@babel/types", + "type": "static" + }, + { + "source": "npm:@compiled/babel-plugin-strip-runtime", + "target": "npm:@compiled/css", + "type": "static" + }, + { + "source": "npm:@compiled/babel-plugin-strip-runtime", + "target": "npm:@compiled/utils", + "type": "static" + }, + { + "source": "npm:@compiled/babel-plugin", + "target": "npm:@babel/core", + "type": "static" + }, + { + "source": "npm:@compiled/babel-plugin", + "target": "npm:@babel/generator", + "type": "static" + }, + { + "source": "npm:@compiled/babel-plugin", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@compiled/babel-plugin", + "target": "npm:@babel/parser", + "type": "static" + }, + { + "source": "npm:@compiled/babel-plugin", + "target": "npm:@babel/plugin-syntax-jsx", + "type": "static" + }, + { + "source": "npm:@compiled/babel-plugin", + "target": "npm:@babel/plugin-transform-flow-strip-types", + "type": "static" + }, + { + "source": "npm:@compiled/babel-plugin", + "target": "npm:@babel/template", + "type": "static" + }, + { + "source": "npm:@compiled/babel-plugin", + "target": "npm:@babel/traverse", + "type": "static" + }, + { + "source": "npm:@compiled/babel-plugin", + "target": "npm:@babel/types", + "type": "static" + }, + { + "source": "npm:@compiled/babel-plugin", + "target": "npm:@compiled/css", + "type": "static" + }, + { + "source": "npm:@compiled/babel-plugin", + "target": "npm:@compiled/utils", + "type": "static" + }, + { + "source": "npm:@compiled/babel-plugin", + "target": "npm:@emotion/is-prop-valid", + "type": "static" + }, + { + "source": "npm:@compiled/babel-plugin", + "target": "npm:resolve@1.22.10", + "type": "static" + }, + { + "source": "npm:@compiled/css", + "target": "npm:@compiled/utils", + "type": "static" + }, + { + "source": "npm:@compiled/css", + "target": "npm:autoprefixer", + "type": "static" + }, + { + "source": "npm:@compiled/css", + "target": "npm:cssnano-preset-default", + "type": "static" + }, + { + "source": "npm:@compiled/css", + "target": "npm:postcss", + "type": "static" + }, + { + "source": "npm:@compiled/css", + "target": "npm:postcss-discard-duplicates", + "type": "static" + }, + { + "source": "npm:@compiled/css", + "target": "npm:postcss-nested@5.0.6", + "type": "static" + }, + { + "source": "npm:@compiled/css", + "target": "npm:postcss-normalize-whitespace", + "type": "static" + }, + { + "source": "npm:@compiled/css", + "target": "npm:postcss-selector-parser@6.1.2", + "type": "static" + }, + { + "source": "npm:@compiled/css", + "target": "npm:postcss-values-parser", + "type": "static" + }, + { + "source": "npm:@compiled/react", + "target": "npm:csstype", + "type": "static" + }, + { + "source": "npm:@compiled/react", + "target": "npm:react", + "type": "static" + }, + { + "source": "npm:@compiled/utils", + "target": "npm:convert-source-map", + "type": "static" + }, + { + "source": "npm:@compiled/utils", + "target": "npm:source-map@0.7.6", + "type": "static" + }, + { + "source": "npm:@cspotcode/source-map-support", + "target": "npm:@jridgewell/trace-mapping@0.3.9", + "type": "static" + }, + { + "source": "npm:@duckduckgo/autoconsent", + "target": "npm:@ghostery/adblocker", + "type": "static" + }, + { + "source": "npm:@duckduckgo/autoconsent", + "target": "npm:@ghostery/adblocker-content", + "type": "static" + }, + { + "source": "npm:@duckduckgo/autoconsent", + "target": "npm:tldts-experimental", + "type": "static" + }, + { + "source": "npm:@electric-sql/pglite-socket", + "target": "npm:@electric-sql/pglite", + "type": "static" + }, + { + "source": "npm:@electric-sql/pglite-tools", + "target": "npm:@electric-sql/pglite", + "type": "static" + }, + { + "source": "npm:@emnapi/core", + "target": "npm:@emnapi/wasi-threads", + "type": "static" + }, + { + "source": "npm:@emnapi/core", + "target": "npm:tslib", + "type": "static" + }, + { + "source": "npm:@emnapi/runtime", + "target": "npm:tslib", + "type": "static" + }, + { + "source": "npm:@emnapi/wasi-threads", + "target": "npm:tslib", + "type": "static" + }, + { + "source": "npm:@emotion/is-prop-valid", + "target": "npm:@emotion/memoize", + "type": "static" + }, + { + "source": "npm:@esbuild-kit/core-utils", + "target": "npm:esbuild@0.18.20", + "type": "static" + }, + { + "source": "npm:@esbuild-kit/core-utils", + "target": "npm:source-map-support", + "type": "static" + }, + { + "source": "npm:@esbuild-kit/esm-loader", + "target": "npm:@esbuild-kit/core-utils", + "type": "static" + }, + { + "source": "npm:@esbuild-kit/esm-loader", + "target": "npm:get-tsconfig", + "type": "static" + }, + { + "source": "npm:@eslint-community/eslint-utils", + "target": "npm:eslint", + "type": "static" + }, + { + "source": "npm:@eslint-community/eslint-utils", + "target": "npm:eslint-visitor-keys@3.4.3", + "type": "static" + }, + { + "source": "npm:@eslint/config-array", + "target": "npm:@eslint/object-schema", + "type": "static" + }, + { + "source": "npm:@eslint/config-array", + "target": "npm:debug", + "type": "static" + }, + { + "source": "npm:@eslint/config-array", + "target": "npm:minimatch", + "type": "static" + }, + { + "source": "npm:@eslint/config-helpers", + "target": "npm:@eslint/core", + "type": "static" + }, + { + "source": "npm:@eslint/core", + "target": "npm:@types/json-schema", + "type": "static" + }, + { + "source": "npm:@eslint/eslintrc", + "target": "npm:ajv", + "type": "static" + }, + { + "source": "npm:@eslint/eslintrc", + "target": "npm:debug", + "type": "static" + }, + { + "source": "npm:@eslint/eslintrc", + "target": "npm:espree@10.4.0", + "type": "static" + }, + { + "source": "npm:@eslint/eslintrc", + "target": "npm:globals@14.0.0", + "type": "static" + }, + { + "source": "npm:@eslint/eslintrc", + "target": "npm:ignore", + "type": "static" + }, + { + "source": "npm:@eslint/eslintrc", + "target": "npm:import-fresh", + "type": "static" + }, + { + "source": "npm:@eslint/eslintrc", + "target": "npm:js-yaml", + "type": "static" + }, + { + "source": "npm:@eslint/eslintrc", + "target": "npm:minimatch", + "type": "static" + }, + { + "source": "npm:@eslint/eslintrc", + "target": "npm:strip-json-comments@3.1.1", + "type": "static" + }, + { + "source": "npm:@eslint/plugin-kit", + "target": "npm:@eslint/core", + "type": "static" + }, + { + "source": "npm:@eslint/plugin-kit", + "target": "npm:levn", + "type": "static" + }, + { + "source": "npm:@fastify/ajv-compiler", + "target": "npm:ajv@8.18.0", + "type": "static" + }, + { + "source": "npm:@fastify/ajv-compiler", + "target": "npm:ajv-formats", + "type": "static" + }, + { + "source": "npm:@fastify/ajv-compiler", + "target": "npm:fast-uri", + "type": "static" + }, + { + "source": "npm:@fastify/fast-json-stringify-compiler", + "target": "npm:fast-json-stringify", + "type": "static" + }, + { + "source": "npm:@fastify/merge-json-schemas", + "target": "npm:dequal", + "type": "static" + }, + { + "source": "npm:@fastify/proxy-addr", + "target": "npm:@fastify/forwarded", + "type": "static" + }, + { + "source": "npm:@fastify/proxy-addr", + "target": "npm:ipaddr.js", + "type": "static" + }, + { + "source": "npm:@floating-ui/core", + "target": "npm:@floating-ui/utils", + "type": "static" + }, + { + "source": "npm:@floating-ui/dom", + "target": "npm:@floating-ui/core", + "type": "static" + }, + { + "source": "npm:@floating-ui/dom", + "target": "npm:@floating-ui/utils", + "type": "static" + }, + { + "source": "npm:@floating-ui/react-dom", + "target": "npm:@floating-ui/dom", + "type": "static" + }, + { + "source": "npm:@floating-ui/react-dom", + "target": "npm:react", + "type": "static" + }, + { + "source": "npm:@floating-ui/react-dom", + "target": "npm:react-dom", + "type": "static" + }, + { + "source": "npm:@floating-ui/react", + "target": "npm:@floating-ui/react-dom", + "type": "static" + }, + { + "source": "npm:@floating-ui/react", + "target": "npm:@floating-ui/utils", + "type": "static" + }, + { + "source": "npm:@floating-ui/react", + "target": "npm:react", + "type": "static" + }, + { + "source": "npm:@floating-ui/react", + "target": "npm:react-dom", + "type": "static" + }, + { + "source": "npm:@floating-ui/react", + "target": "npm:tabbable", + "type": "static" + }, + { + "source": "npm:@ghostery/adblocker-content", + "target": "npm:@ghostery/adblocker-extended-selectors", + "type": "static" + }, + { + "source": "npm:@ghostery/adblocker-puppeteer", + "target": "npm:@ghostery/adblocker", + "type": "static" + }, + { + "source": "npm:@ghostery/adblocker-puppeteer", + "target": "npm:@ghostery/adblocker-content", + "type": "static" + }, + { + "source": "npm:@ghostery/adblocker-puppeteer", + "target": "npm:puppeteer", + "type": "static" + }, + { + "source": "npm:@ghostery/adblocker-puppeteer", + "target": "npm:tldts-experimental", + "type": "static" + }, + { + "source": "npm:@ghostery/adblocker", + "target": "npm:@ghostery/adblocker-content", + "type": "static" + }, + { + "source": "npm:@ghostery/adblocker", + "target": "npm:@ghostery/adblocker-extended-selectors", + "type": "static" + }, + { + "source": "npm:@ghostery/adblocker", + "target": "npm:@ghostery/url-parser", + "type": "static" + }, + { + "source": "npm:@ghostery/adblocker", + "target": "npm:@remusao/guess-url-type", + "type": "static" + }, + { + "source": "npm:@ghostery/adblocker", + "target": "npm:@remusao/small", + "type": "static" + }, + { + "source": "npm:@ghostery/adblocker", + "target": "npm:@remusao/smaz", + "type": "static" + }, + { + "source": "npm:@ghostery/adblocker", + "target": "npm:tldts-experimental", + "type": "static" + }, + { + "source": "npm:@ghostery/url-parser", + "target": "npm:tldts-experimental", + "type": "static" + }, + { + "source": "npm:@hono/node-server", + "target": "npm:hono@4.11.4", + "type": "static" + }, + { + "source": "npm:@hono/node-server", + "target": "npm:hono", + "type": "static" + }, + { + "source": "npm:@humanfs/node", + "target": "npm:@humanfs/core", + "type": "static" + }, + { + "source": "npm:@humanfs/node", + "target": "npm:@humanwhocodes/retry", + "type": "static" + }, + { + "source": "npm:@img/sharp-darwin-arm64@0.33.5", + "target": "npm:@img/sharp-libvips-darwin-arm64@1.0.4", + "type": "static" + }, + { + "source": "npm:@img/sharp-darwin-arm64@0.34.5", + "target": "npm:@img/sharp-libvips-darwin-arm64@1.2.4", + "type": "static" + }, + { + "source": "npm:@img/sharp-darwin-x64@0.33.5", + "target": "npm:@img/sharp-libvips-darwin-x64@1.0.4", + "type": "static" + }, + { + "source": "npm:@img/sharp-darwin-x64@0.34.5", + "target": "npm:@img/sharp-libvips-darwin-x64@1.2.4", + "type": "static" + }, + { + "source": "npm:@img/sharp-linux-arm64@0.33.5", + "target": "npm:@img/sharp-libvips-linux-arm64@1.0.4", + "type": "static" + }, + { + "source": "npm:@img/sharp-linux-arm64@0.34.5", + "target": "npm:@img/sharp-libvips-linux-arm64@1.2.4", + "type": "static" + }, + { + "source": "npm:@img/sharp-linux-arm@0.33.5", + "target": "npm:@img/sharp-libvips-linux-arm@1.0.5", + "type": "static" + }, + { + "source": "npm:@img/sharp-linux-arm@0.34.5", + "target": "npm:@img/sharp-libvips-linux-arm@1.2.4", + "type": "static" + }, + { + "source": "npm:@img/sharp-linux-ppc64", + "target": "npm:@img/sharp-libvips-linux-ppc64", + "type": "static" + }, + { + "source": "npm:@img/sharp-linux-riscv64", + "target": "npm:@img/sharp-libvips-linux-riscv64", + "type": "static" + }, + { + "source": "npm:@img/sharp-linux-s390x@0.33.5", + "target": "npm:@img/sharp-libvips-linux-s390x@1.0.4", + "type": "static" + }, + { + "source": "npm:@img/sharp-linux-s390x@0.34.5", + "target": "npm:@img/sharp-libvips-linux-s390x@1.2.4", + "type": "static" + }, + { + "source": "npm:@img/sharp-linux-x64@0.33.5", + "target": "npm:@img/sharp-libvips-linux-x64@1.0.4", + "type": "static" + }, + { + "source": "npm:@img/sharp-linux-x64", + "target": "npm:@img/sharp-libvips-linux-x64", + "type": "static" + }, + { + "source": "npm:@img/sharp-linuxmusl-arm64@0.33.5", + "target": "npm:@img/sharp-libvips-linuxmusl-arm64@1.0.4", + "type": "static" + }, + { + "source": "npm:@img/sharp-linuxmusl-arm64@0.34.5", + "target": "npm:@img/sharp-libvips-linuxmusl-arm64@1.2.4", + "type": "static" + }, + { + "source": "npm:@img/sharp-linuxmusl-x64@0.33.5", + "target": "npm:@img/sharp-libvips-linuxmusl-x64@1.0.4", + "type": "static" + }, + { + "source": "npm:@img/sharp-linuxmusl-x64", + "target": "npm:@img/sharp-libvips-linuxmusl-x64", + "type": "static" + }, + { + "source": "npm:@img/sharp-wasm32@0.33.5", + "target": "npm:@emnapi/runtime", + "type": "static" + }, + { + "source": "npm:@img/sharp-wasm32@0.34.5", + "target": "npm:@emnapi/runtime", + "type": "static" + }, + { + "source": "npm:@inquirer/checkbox", + "target": "npm:@inquirer/ansi", + "type": "static" + }, + { + "source": "npm:@inquirer/checkbox", + "target": "npm:@inquirer/core", + "type": "static" + }, + { + "source": "npm:@inquirer/checkbox", + "target": "npm:@inquirer/figures", + "type": "static" + }, + { + "source": "npm:@inquirer/checkbox", + "target": "npm:@inquirer/type", + "type": "static" + }, + { + "source": "npm:@inquirer/checkbox", + "target": "npm:@types/node", + "type": "static" + }, + { + "source": "npm:@inquirer/confirm", + "target": "npm:@inquirer/core", + "type": "static" + }, + { + "source": "npm:@inquirer/confirm", + "target": "npm:@inquirer/type", + "type": "static" + }, + { + "source": "npm:@inquirer/confirm", + "target": "npm:@types/node", + "type": "static" + }, + { + "source": "npm:@inquirer/core", + "target": "npm:@inquirer/ansi", + "type": "static" + }, + { + "source": "npm:@inquirer/core", + "target": "npm:@inquirer/figures", + "type": "static" + }, + { + "source": "npm:@inquirer/core", + "target": "npm:@inquirer/type", + "type": "static" + }, + { + "source": "npm:@inquirer/core", + "target": "npm:cli-width", + "type": "static" + }, + { + "source": "npm:@inquirer/core", + "target": "npm:fast-wrap-ansi", + "type": "static" + }, + { + "source": "npm:@inquirer/core", + "target": "npm:mute-stream", + "type": "static" + }, + { + "source": "npm:@inquirer/core", + "target": "npm:signal-exit", + "type": "static" + }, + { + "source": "npm:@inquirer/core", + "target": "npm:@types/node", + "type": "static" + }, + { + "source": "npm:@inquirer/editor", + "target": "npm:@inquirer/core", + "type": "static" + }, + { + "source": "npm:@inquirer/editor", + "target": "npm:@inquirer/external-editor", + "type": "static" + }, + { + "source": "npm:@inquirer/editor", + "target": "npm:@inquirer/type", + "type": "static" + }, + { + "source": "npm:@inquirer/editor", + "target": "npm:@types/node", + "type": "static" + }, + { + "source": "npm:@inquirer/expand", + "target": "npm:@inquirer/core", + "type": "static" + }, + { + "source": "npm:@inquirer/expand", + "target": "npm:@inquirer/type", + "type": "static" + }, + { + "source": "npm:@inquirer/expand", + "target": "npm:@types/node", + "type": "static" + }, + { + "source": "npm:@inquirer/external-editor", + "target": "npm:chardet", + "type": "static" + }, + { + "source": "npm:@inquirer/external-editor", + "target": "npm:iconv-lite@0.7.2", + "type": "static" + }, + { + "source": "npm:@inquirer/external-editor", + "target": "npm:@types/node", + "type": "static" + }, + { + "source": "npm:@inquirer/input", + "target": "npm:@inquirer/core", + "type": "static" + }, + { + "source": "npm:@inquirer/input", + "target": "npm:@inquirer/type", + "type": "static" + }, + { + "source": "npm:@inquirer/input", + "target": "npm:@types/node", + "type": "static" + }, + { + "source": "npm:@inquirer/number", + "target": "npm:@inquirer/core", + "type": "static" + }, + { + "source": "npm:@inquirer/number", + "target": "npm:@inquirer/type", + "type": "static" + }, + { + "source": "npm:@inquirer/number", + "target": "npm:@types/node", + "type": "static" + }, + { + "source": "npm:@inquirer/password", + "target": "npm:@inquirer/ansi", + "type": "static" + }, + { + "source": "npm:@inquirer/password", + "target": "npm:@inquirer/core", + "type": "static" + }, + { + "source": "npm:@inquirer/password", + "target": "npm:@inquirer/type", + "type": "static" + }, + { + "source": "npm:@inquirer/password", + "target": "npm:@types/node", + "type": "static" + }, + { + "source": "npm:@inquirer/prompts", + "target": "npm:@inquirer/checkbox", + "type": "static" + }, + { + "source": "npm:@inquirer/prompts", + "target": "npm:@inquirer/confirm", + "type": "static" + }, + { + "source": "npm:@inquirer/prompts", + "target": "npm:@inquirer/editor", + "type": "static" + }, + { + "source": "npm:@inquirer/prompts", + "target": "npm:@inquirer/expand", + "type": "static" + }, + { + "source": "npm:@inquirer/prompts", + "target": "npm:@inquirer/input", + "type": "static" + }, + { + "source": "npm:@inquirer/prompts", + "target": "npm:@inquirer/number", + "type": "static" + }, + { + "source": "npm:@inquirer/prompts", + "target": "npm:@inquirer/password", + "type": "static" + }, + { + "source": "npm:@inquirer/prompts", + "target": "npm:@inquirer/rawlist", + "type": "static" + }, + { + "source": "npm:@inquirer/prompts", + "target": "npm:@inquirer/search", + "type": "static" + }, + { + "source": "npm:@inquirer/prompts", + "target": "npm:@inquirer/select", + "type": "static" + }, + { + "source": "npm:@inquirer/prompts", + "target": "npm:@types/node", + "type": "static" + }, + { + "source": "npm:@inquirer/rawlist", + "target": "npm:@inquirer/core", + "type": "static" + }, + { + "source": "npm:@inquirer/rawlist", + "target": "npm:@inquirer/type", + "type": "static" + }, + { + "source": "npm:@inquirer/rawlist", + "target": "npm:@types/node", + "type": "static" + }, + { + "source": "npm:@inquirer/search", + "target": "npm:@inquirer/core", + "type": "static" + }, + { + "source": "npm:@inquirer/search", + "target": "npm:@inquirer/figures", + "type": "static" + }, + { + "source": "npm:@inquirer/search", + "target": "npm:@inquirer/type", + "type": "static" + }, + { + "source": "npm:@inquirer/search", + "target": "npm:@types/node", + "type": "static" + }, + { + "source": "npm:@inquirer/select", + "target": "npm:@inquirer/ansi", + "type": "static" + }, + { + "source": "npm:@inquirer/select", + "target": "npm:@inquirer/core", + "type": "static" + }, + { + "source": "npm:@inquirer/select", + "target": "npm:@inquirer/figures", + "type": "static" + }, + { + "source": "npm:@inquirer/select", + "target": "npm:@inquirer/type", + "type": "static" + }, + { + "source": "npm:@inquirer/select", + "target": "npm:@types/node", + "type": "static" + }, + { + "source": "npm:@inquirer/type", + "target": "npm:@types/node", + "type": "static" + }, + { + "source": "npm:@isaacs/cliui@8.0.2", + "target": "npm:string-width@5.1.2", + "type": "static" + }, + { + "source": "npm:@isaacs/cliui@8.0.2", + "target": "npm:string-width-cjs", + "type": "static" + }, + { + "source": "npm:@isaacs/cliui@8.0.2", + "target": "npm:strip-ansi", + "type": "static" + }, + { + "source": "npm:@isaacs/cliui@8.0.2", + "target": "npm:strip-ansi-cjs", + "type": "static" + }, + { + "source": "npm:@isaacs/cliui@8.0.2", + "target": "npm:wrap-ansi@8.1.0", + "type": "static" + }, + { + "source": "npm:@isaacs/cliui@8.0.2", + "target": "npm:wrap-ansi-cjs", + "type": "static" + }, + { + "source": "npm:@isaacs/fs-minipass", + "target": "npm:minipass", + "type": "static" + }, + { + "source": "npm:@jest/schemas", + "target": "npm:@sinclair/typebox", + "type": "static" + }, + { + "source": "npm:@jridgewell/gen-mapping", + "target": "npm:@jridgewell/sourcemap-codec", + "type": "static" + }, + { + "source": "npm:@jridgewell/gen-mapping", + "target": "npm:@jridgewell/trace-mapping", + "type": "static" + }, + { + "source": "npm:@jridgewell/remapping", + "target": "npm:@jridgewell/gen-mapping", + "type": "static" + }, + { + "source": "npm:@jridgewell/remapping", + "target": "npm:@jridgewell/trace-mapping", + "type": "static" + }, + { + "source": "npm:@jridgewell/trace-mapping", + "target": "npm:@jridgewell/resolve-uri", + "type": "static" + }, + { + "source": "npm:@jridgewell/trace-mapping", + "target": "npm:@jridgewell/sourcemap-codec", + "type": "static" + }, + { + "source": "npm:@jridgewell/trace-mapping@0.3.9", + "target": "npm:@jridgewell/resolve-uri", + "type": "static" + }, + { + "source": "npm:@jridgewell/trace-mapping@0.3.9", + "target": "npm:@jridgewell/sourcemap-codec", + "type": "static" + }, + { + "source": "npm:@mantine/core", + "target": "npm:@floating-ui/react", + "type": "static" + }, + { + "source": "npm:@mantine/core", + "target": "npm:@mantine/hooks", + "type": "static" + }, + { + "source": "npm:@mantine/core", + "target": "npm:clsx", + "type": "static" + }, + { + "source": "npm:@mantine/core", + "target": "npm:react", + "type": "static" + }, + { + "source": "npm:@mantine/core", + "target": "npm:react-dom", + "type": "static" + }, + { + "source": "npm:@mantine/core", + "target": "npm:react-number-format", + "type": "static" + }, + { + "source": "npm:@mantine/core", + "target": "npm:react-remove-scroll", + "type": "static" + }, + { + "source": "npm:@mantine/core", + "target": "npm:react-textarea-autosize", + "type": "static" + }, + { + "source": "npm:@mantine/core", + "target": "npm:type-fest", + "type": "static" + }, + { + "source": "npm:@mantine/hooks", + "target": "npm:react", + "type": "static" + }, + { + "source": "npm:@manypkg/find-root", + "target": "npm:@manypkg/tools", + "type": "static" + }, + { + "source": "npm:@manypkg/tools", + "target": "npm:jju", + "type": "static" + }, + { + "source": "npm:@manypkg/tools", + "target": "npm:js-yaml", + "type": "static" + }, + { + "source": "npm:@manypkg/tools", + "target": "npm:tinyglobby", + "type": "static" + }, + { + "source": "npm:@mapbox/node-pre-gyp", + "target": "npm:consola", + "type": "static" + }, + { + "source": "npm:@mapbox/node-pre-gyp", + "target": "npm:detect-libc", + "type": "static" + }, + { + "source": "npm:@mapbox/node-pre-gyp", + "target": "npm:https-proxy-agent@7.0.6", + "type": "static" + }, + { + "source": "npm:@mapbox/node-pre-gyp", + "target": "npm:node-fetch@2.7.0", + "type": "static" + }, + { + "source": "npm:@mapbox/node-pre-gyp", + "target": "npm:nopt", + "type": "static" + }, + { + "source": "npm:@mapbox/node-pre-gyp", + "target": "npm:semver@7.7.4", + "type": "static" + }, + { + "source": "npm:@mapbox/node-pre-gyp", + "target": "npm:tar", + "type": "static" + }, + { + "source": "npm:@motionone/animation", + "target": "npm:@motionone/easing", + "type": "static" + }, + { + "source": "npm:@motionone/animation", + "target": "npm:@motionone/types", + "type": "static" + }, + { + "source": "npm:@motionone/animation", + "target": "npm:@motionone/utils", + "type": "static" + }, + { + "source": "npm:@motionone/animation", + "target": "npm:tslib", + "type": "static" + }, + { + "source": "npm:@motionone/dom", + "target": "npm:@motionone/animation", + "type": "static" + }, + { + "source": "npm:@motionone/dom", + "target": "npm:@motionone/generators", + "type": "static" + }, + { + "source": "npm:@motionone/dom", + "target": "npm:@motionone/types", + "type": "static" + }, + { + "source": "npm:@motionone/dom", + "target": "npm:@motionone/utils", + "type": "static" + }, + { + "source": "npm:@motionone/dom", + "target": "npm:hey-listen", + "type": "static" + }, + { + "source": "npm:@motionone/dom", + "target": "npm:tslib", + "type": "static" + }, + { + "source": "npm:@motionone/easing", + "target": "npm:@motionone/utils", + "type": "static" + }, + { + "source": "npm:@motionone/easing", + "target": "npm:tslib", + "type": "static" + }, + { + "source": "npm:@motionone/generators", + "target": "npm:@motionone/types", + "type": "static" + }, + { + "source": "npm:@motionone/generators", + "target": "npm:@motionone/utils", + "type": "static" + }, + { + "source": "npm:@motionone/generators", + "target": "npm:tslib", + "type": "static" + }, + { + "source": "npm:@motionone/utils", + "target": "npm:@motionone/types", + "type": "static" + }, + { + "source": "npm:@motionone/utils", + "target": "npm:hey-listen", + "type": "static" + }, + { + "source": "npm:@motionone/utils", + "target": "npm:tslib", + "type": "static" + }, + { + "source": "npm:@mrleebo/prisma-ast", + "target": "npm:chevrotain", + "type": "static" + }, + { + "source": "npm:@mrleebo/prisma-ast", + "target": "npm:lilconfig", + "type": "static" + }, + { + "source": "npm:@napi-rs/wasm-runtime", + "target": "npm:@emnapi/core", + "type": "static" + }, + { + "source": "npm:@napi-rs/wasm-runtime", + "target": "npm:@emnapi/runtime", + "type": "static" + }, + { + "source": "npm:@napi-rs/wasm-runtime", + "target": "npm:@tybys/wasm-util", + "type": "static" + }, + { + "source": "npm:@napi-rs/wasm-runtime@1.1.1", + "target": "npm:@emnapi/core", + "type": "static" + }, + { + "source": "npm:@napi-rs/wasm-runtime@1.1.1", + "target": "npm:@emnapi/runtime", + "type": "static" + }, + { + "source": "npm:@napi-rs/wasm-runtime@1.1.1", + "target": "npm:@tybys/wasm-util@0.10.1", + "type": "static" + }, + { + "source": "npm:@nodelib/fs.scandir", + "target": "npm:@nodelib/fs.stat", + "type": "static" + }, + { + "source": "npm:@nodelib/fs.scandir", + "target": "npm:run-parallel", + "type": "static" + }, + { + "source": "npm:@nodelib/fs.walk", + "target": "npm:@nodelib/fs.scandir", + "type": "static" + }, + { + "source": "npm:@nodelib/fs.walk", + "target": "npm:fastq", + "type": "static" + }, + { + "source": "npm:@npmcli/agent", + "target": "npm:agent-base", + "type": "static" + }, + { + "source": "npm:@npmcli/agent", + "target": "npm:http-proxy-agent", + "type": "static" + }, + { + "source": "npm:@npmcli/agent", + "target": "npm:https-proxy-agent@7.0.6", + "type": "static" + }, + { + "source": "npm:@npmcli/agent", + "target": "npm:lru-cache@10.4.3", + "type": "static" + }, + { + "source": "npm:@npmcli/agent", + "target": "npm:socks-proxy-agent", + "type": "static" + }, + { + "source": "npm:@npmcli/fs", + "target": "npm:semver@7.7.4", + "type": "static" + }, + { + "source": "npm:@oxc-parser/binding-wasm32-wasi", + "target": "npm:@napi-rs/wasm-runtime@1.1.1", + "type": "static" + }, + { + "source": "npm:@oxc-resolver/binding-wasm32-wasi", + "target": "npm:@napi-rs/wasm-runtime@1.1.1", + "type": "static" + }, + { + "source": "npm:@photonjs/cloudflare", + "target": "npm:@cloudflare/vite-plugin", + "type": "static" + }, + { + "source": "npm:@photonjs/cloudflare", + "target": "npm:@photonjs/core", + "type": "static" + }, + { + "source": "npm:@photonjs/cloudflare", + "target": "npm:@universal-middleware/cloudflare", + "type": "static" + }, + { + "source": "npm:@photonjs/core", + "target": "npm:@brillout/vite-plugin-server-entry", + "type": "static" + }, + { + "source": "npm:@photonjs/core", + "target": "npm:@universal-middleware/cloudflare", + "type": "static" + }, + { + "source": "npm:@photonjs/core", + "target": "npm:@universal-middleware/compress", + "type": "static" + }, + { + "source": "npm:@photonjs/core", + "target": "npm:@universal-middleware/core", + "type": "static" + }, + { + "source": "npm:@photonjs/core", + "target": "npm:@universal-middleware/express", + "type": "static" + }, + { + "source": "npm:@photonjs/core", + "target": "npm:@universal-middleware/sirv", + "type": "static" + }, + { + "source": "npm:@photonjs/core", + "target": "npm:estree-walker", + "type": "static" + }, + { + "source": "npm:@photonjs/core", + "target": "npm:ts-deepmerge", + "type": "static" + }, + { + "source": "npm:@photonjs/core", + "target": "npm:zod@4.3.6", + "type": "static" + }, + { + "source": "npm:@photonjs/core", + "target": "npm:vite", + "type": "static" + }, + { + "source": "npm:@photonjs/express", + "target": "npm:@photonjs/core", + "type": "static" + }, + { + "source": "npm:@photonjs/express", + "target": "npm:@universal-middleware/express", + "type": "static" + }, + { + "source": "npm:@photonjs/express", + "target": "npm:vite", + "type": "static" + }, + { + "source": "npm:@photonjs/fastify", + "target": "npm:@photonjs/core", + "type": "static" + }, + { + "source": "npm:@photonjs/fastify", + "target": "npm:@universal-middleware/fastify", + "type": "static" + }, + { + "source": "npm:@photonjs/fastify", + "target": "npm:vite", + "type": "static" + }, + { + "source": "npm:@photonjs/h3", + "target": "npm:@photonjs/core", + "type": "static" + }, + { + "source": "npm:@photonjs/h3", + "target": "npm:@universal-middleware/h3", + "type": "static" + }, + { + "source": "npm:@photonjs/h3", + "target": "npm:vite", + "type": "static" + }, + { + "source": "npm:@photonjs/hono", + "target": "npm:@photonjs/core", + "type": "static" + }, + { + "source": "npm:@photonjs/hono", + "target": "npm:@universal-middleware/hono", + "type": "static" + }, + { + "source": "npm:@photonjs/hono", + "target": "npm:@hono/node-server", + "type": "static" + }, + { + "source": "npm:@photonjs/hono", + "target": "npm:vite", + "type": "static" + }, + { + "source": "npm:@photonjs/runtime", + "target": "npm:@photonjs/core", + "type": "static" + }, + { + "source": "npm:@photonjs/runtime", + "target": "npm:@photonjs/srvx", + "type": "static" + }, + { + "source": "npm:@photonjs/runtime", + "target": "npm:@universal-middleware/core", + "type": "static" + }, + { + "source": "npm:@photonjs/runtime", + "target": "npm:@universal-middleware/sirv", + "type": "static" + }, + { + "source": "npm:@photonjs/runtime", + "target": "npm:srvx", + "type": "static" + }, + { + "source": "npm:@photonjs/runtime", + "target": "npm:standaloner", + "type": "static" + }, + { + "source": "npm:@photonjs/runtime", + "target": "npm:vite", + "type": "static" + }, + { + "source": "npm:@photonjs/srvx", + "target": "npm:@photonjs/core", + "type": "static" + }, + { + "source": "npm:@photonjs/srvx", + "target": "npm:@universal-middleware/srvx", + "type": "static" + }, + { + "source": "npm:@photonjs/srvx", + "target": "npm:vite", + "type": "static" + }, + { + "source": "npm:@photonjs/vercel", + "target": "npm:@brillout/libassert", + "type": "static" + }, + { + "source": "npm:@photonjs/vercel", + "target": "npm:@manypkg/find-root", + "type": "static" + }, + { + "source": "npm:@photonjs/vercel", + "target": "npm:@photonjs/core", + "type": "static" + }, + { + "source": "npm:@photonjs/vercel", + "target": "npm:@photonjs/runtime", + "type": "static" + }, + { + "source": "npm:@photonjs/vercel", + "target": "npm:@universal-middleware/core", + "type": "static" + }, + { + "source": "npm:@photonjs/vercel", + "target": "npm:@universal-middleware/vercel", + "type": "static" + }, + { + "source": "npm:@photonjs/vercel", + "target": "npm:@vercel/build-utils", + "type": "static" + }, + { + "source": "npm:@photonjs/vercel", + "target": "npm:@vercel/nft", + "type": "static" + }, + { + "source": "npm:@photonjs/vercel", + "target": "npm:@vercel/routing-utils", + "type": "static" + }, + { + "source": "npm:@photonjs/vercel", + "target": "npm:@vite-plugin-vercel/schemas", + "type": "static" + }, + { + "source": "npm:@photonjs/vercel", + "target": "npm:convert-route", + "type": "static" + }, + { + "source": "npm:@photonjs/vercel", + "target": "npm:esbuild", + "type": "static" + }, + { + "source": "npm:@photonjs/vercel", + "target": "npm:fast-glob", + "type": "static" + }, + { + "source": "npm:@photonjs/vercel", + "target": "npm:magicast", + "type": "static" + }, + { + "source": "npm:@photonjs/vercel", + "target": "npm:path-to-regexp", + "type": "static" + }, + { + "source": "npm:@photonjs/vercel", + "target": "npm:strip-ansi", + "type": "static" + }, + { + "source": "npm:@photonjs/vercel", + "target": "npm:vite", + "type": "static" + }, + { + "source": "npm:@photonjs/vercel", + "target": "npm:vite-plugin-wasm", + "type": "static" + }, + { + "source": "npm:@poppinss/colors", + "target": "npm:kleur", + "type": "static" + }, + { + "source": "npm:@poppinss/dumper", + "target": "npm:@poppinss/colors", + "type": "static" + }, + { + "source": "npm:@poppinss/dumper", + "target": "npm:@sindresorhus/is@7.1.0", + "type": "static" + }, + { + "source": "npm:@poppinss/dumper", + "target": "npm:supports-color@10.2.2", + "type": "static" + }, + { + "source": "npm:@prisma/client", + "target": "npm:@prisma/client-runtime-utils", + "type": "static" + }, + { + "source": "npm:@prisma/client", + "target": "npm:prisma", + "type": "static" + }, + { + "source": "npm:@prisma/client", + "target": "npm:typescript", + "type": "static" + }, + { + "source": "npm:@prisma/config", + "target": "npm:c12", + "type": "static" + }, + { + "source": "npm:@prisma/config", + "target": "npm:deepmerge-ts", + "type": "static" + }, + { + "source": "npm:@prisma/config", + "target": "npm:effect", + "type": "static" + }, + { + "source": "npm:@prisma/config", + "target": "npm:empathic", + "type": "static" + }, + { + "source": "npm:@prisma/dev", + "target": "npm:@electric-sql/pglite", + "type": "static" + }, + { + "source": "npm:@prisma/dev", + "target": "npm:@electric-sql/pglite-socket", + "type": "static" + }, + { + "source": "npm:@prisma/dev", + "target": "npm:@electric-sql/pglite-tools", + "type": "static" + }, + { + "source": "npm:@prisma/dev", + "target": "npm:@hono/node-server", + "type": "static" + }, + { + "source": "npm:@prisma/dev", + "target": "npm:@mrleebo/prisma-ast", + "type": "static" + }, + { + "source": "npm:@prisma/dev", + "target": "npm:@prisma/get-platform", + "type": "static" + }, + { + "source": "npm:@prisma/dev", + "target": "npm:@prisma/query-plan-executor", + "type": "static" + }, + { + "source": "npm:@prisma/dev", + "target": "npm:foreground-child", + "type": "static" + }, + { + "source": "npm:@prisma/dev", + "target": "npm:get-port-please", + "type": "static" + }, + { + "source": "npm:@prisma/dev", + "target": "npm:hono@4.11.4", + "type": "static" + }, + { + "source": "npm:@prisma/dev", + "target": "npm:http-status-codes", + "type": "static" + }, + { + "source": "npm:@prisma/dev", + "target": "npm:pathe", + "type": "static" + }, + { + "source": "npm:@prisma/dev", + "target": "npm:proper-lockfile", + "type": "static" + }, + { + "source": "npm:@prisma/dev", + "target": "npm:remeda", + "type": "static" + }, + { + "source": "npm:@prisma/dev", + "target": "npm:std-env@3.10.0", + "type": "static" + }, + { + "source": "npm:@prisma/dev", + "target": "npm:valibot", + "type": "static" + }, + { + "source": "npm:@prisma/dev", + "target": "npm:zeptomatch", + "type": "static" + }, + { + "source": "npm:@prisma/engines", + "target": "npm:@prisma/debug", + "type": "static" + }, + { + "source": "npm:@prisma/engines", + "target": "npm:@prisma/engines-version", + "type": "static" + }, + { + "source": "npm:@prisma/engines", + "target": "npm:@prisma/fetch-engine", + "type": "static" + }, + { + "source": "npm:@prisma/engines", + "target": "npm:@prisma/get-platform@7.5.0", + "type": "static" + }, + { + "source": "npm:@prisma/fetch-engine", + "target": "npm:@prisma/debug", + "type": "static" + }, + { + "source": "npm:@prisma/fetch-engine", + "target": "npm:@prisma/engines-version", + "type": "static" + }, + { + "source": "npm:@prisma/fetch-engine", + "target": "npm:@prisma/get-platform@7.5.0", + "type": "static" + }, + { + "source": "npm:@prisma/get-platform", + "target": "npm:@prisma/debug@7.2.0", + "type": "static" + }, + { + "source": "npm:@prisma/get-platform@7.5.0", + "target": "npm:@prisma/debug", + "type": "static" + }, + { + "source": "npm:@prisma/studio-core", + "target": "npm:@types/react", + "type": "static" + }, + { + "source": "npm:@prisma/studio-core", + "target": "npm:react", + "type": "static" + }, + { + "source": "npm:@prisma/studio-core", + "target": "npm:react-dom", + "type": "static" + }, + { + "source": "npm:@puppeteer/browsers", + "target": "npm:debug", + "type": "static" + }, + { + "source": "npm:@puppeteer/browsers", + "target": "npm:extract-zip", + "type": "static" + }, + { + "source": "npm:@puppeteer/browsers", + "target": "npm:progress", + "type": "static" + }, + { + "source": "npm:@puppeteer/browsers", + "target": "npm:proxy-agent", + "type": "static" + }, + { + "source": "npm:@puppeteer/browsers", + "target": "npm:semver@7.7.4", + "type": "static" + }, + { + "source": "npm:@puppeteer/browsers", + "target": "npm:tar-fs", + "type": "static" + }, + { + "source": "npm:@puppeteer/browsers", + "target": "npm:yargs", + "type": "static" + }, + { + "source": "npm:@quansync/fs", + "target": "npm:quansync", + "type": "static" + }, + { + "source": "npm:@radix-ui/react-icons", + "target": "npm:react", + "type": "static" + }, + { + "source": "npm:@remusao/smaz-compress", + "target": "npm:@remusao/trie", + "type": "static" + }, + { + "source": "npm:@remusao/smaz", + "target": "npm:@remusao/smaz-compress", + "type": "static" + }, + { + "source": "npm:@remusao/smaz", + "target": "npm:@remusao/smaz-decompress", + "type": "static" + }, + { + "source": "npm:@rolldown/binding-wasm32-wasi@1.0.0-beta.51", + "target": "npm:@napi-rs/wasm-runtime@1.1.1", + "type": "static" + }, + { + "source": "npm:@rolldown/binding-wasm32-wasi@1.0.0-rc.11", + "target": "npm:@napi-rs/wasm-runtime@1.1.1", + "type": "static" + }, + { + "source": "npm:@rolldown/binding-wasm32-wasi@1.0.0-rc.9", + "target": "npm:@napi-rs/wasm-runtime@1.1.1", + "type": "static" + }, + { + "source": "npm:@rollup/pluginutils", + "target": "npm:@types/estree", + "type": "static" + }, + { + "source": "npm:@rollup/pluginutils", + "target": "npm:estree-walker@2.0.2", + "type": "static" + }, + { + "source": "npm:@rollup/pluginutils", + "target": "npm:picomatch", + "type": "static" + }, + { + "source": "npm:@sentry-internal/browser-utils", + "target": "npm:@sentry/core", + "type": "static" + }, + { + "source": "npm:@sentry-internal/feedback", + "target": "npm:@sentry/core", + "type": "static" + }, + { + "source": "npm:@sentry-internal/replay-canvas", + "target": "npm:@sentry-internal/replay", + "type": "static" + }, + { + "source": "npm:@sentry-internal/replay-canvas", + "target": "npm:@sentry/core", + "type": "static" + }, + { + "source": "npm:@sentry-internal/replay", + "target": "npm:@sentry-internal/browser-utils", + "type": "static" + }, + { + "source": "npm:@sentry-internal/replay", + "target": "npm:@sentry/core", + "type": "static" + }, + { + "source": "npm:@sentry/browser", + "target": "npm:@sentry-internal/browser-utils", + "type": "static" + }, + { + "source": "npm:@sentry/browser", + "target": "npm:@sentry-internal/feedback", + "type": "static" + }, + { + "source": "npm:@sentry/browser", + "target": "npm:@sentry-internal/replay", + "type": "static" + }, + { + "source": "npm:@sentry/browser", + "target": "npm:@sentry-internal/replay-canvas", + "type": "static" + }, + { + "source": "npm:@sentry/browser", + "target": "npm:@sentry/core", + "type": "static" + }, + { + "source": "npm:@sentry/bundler-plugin-core", + "target": "npm:@babel/core", + "type": "static" + }, + { + "source": "npm:@sentry/bundler-plugin-core", + "target": "npm:@sentry/babel-plugin-component-annotate", + "type": "static" + }, + { + "source": "npm:@sentry/bundler-plugin-core", + "target": "npm:@sentry/cli", + "type": "static" + }, + { + "source": "npm:@sentry/bundler-plugin-core", + "target": "npm:dotenv@16.6.1", + "type": "static" + }, + { + "source": "npm:@sentry/bundler-plugin-core", + "target": "npm:find-up", + "type": "static" + }, + { + "source": "npm:@sentry/bundler-plugin-core", + "target": "npm:glob", + "type": "static" + }, + { + "source": "npm:@sentry/bundler-plugin-core", + "target": "npm:magic-string", + "type": "static" + }, + { + "source": "npm:@sentry/cli", + "target": "npm:https-proxy-agent", + "type": "static" + }, + { + "source": "npm:@sentry/cli", + "target": "npm:node-fetch@2.7.0", + "type": "static" + }, + { + "source": "npm:@sentry/cli", + "target": "npm:progress", + "type": "static" + }, + { + "source": "npm:@sentry/cli", + "target": "npm:proxy-from-env", + "type": "static" + }, + { + "source": "npm:@sentry/cli", + "target": "npm:which@2.0.2", + "type": "static" + }, + { + "source": "npm:@sentry/cli", + "target": "npm:@sentry/cli-darwin", + "type": "static" + }, + { + "source": "npm:@sentry/cli", + "target": "npm:@sentry/cli-linux-arm", + "type": "static" + }, + { + "source": "npm:@sentry/cli", + "target": "npm:@sentry/cli-linux-arm64", + "type": "static" + }, + { + "source": "npm:@sentry/cli", + "target": "npm:@sentry/cli-linux-i686", + "type": "static" + }, + { + "source": "npm:@sentry/cli", + "target": "npm:@sentry/cli-linux-x64", + "type": "static" + }, + { + "source": "npm:@sentry/cli", + "target": "npm:@sentry/cli-win32-arm64", + "type": "static" + }, + { + "source": "npm:@sentry/cli", + "target": "npm:@sentry/cli-win32-i686", + "type": "static" + }, + { + "source": "npm:@sentry/cli", + "target": "npm:@sentry/cli-win32-x64", + "type": "static" + }, + { + "source": "npm:@sentry/react", + "target": "npm:@sentry/browser", + "type": "static" + }, + { + "source": "npm:@sentry/react", + "target": "npm:@sentry/core", + "type": "static" + }, + { + "source": "npm:@sentry/react", + "target": "npm:react", + "type": "static" + }, + { + "source": "npm:@sentry/rollup-plugin", + "target": "npm:@sentry/bundler-plugin-core", + "type": "static" + }, + { + "source": "npm:@sentry/rollup-plugin", + "target": "npm:magic-string", + "type": "static" + }, + { + "source": "npm:@sentry/solid", + "target": "npm:@sentry/browser", + "type": "static" + }, + { + "source": "npm:@sentry/solid", + "target": "npm:@sentry/core", + "type": "static" + }, + { + "source": "npm:@sentry/solid", + "target": "npm:solid-js", + "type": "static" + }, + { + "source": "npm:@sentry/vite-plugin", + "target": "npm:@sentry/bundler-plugin-core", + "type": "static" + }, + { + "source": "npm:@sentry/vite-plugin", + "target": "npm:@sentry/rollup-plugin", + "type": "static" + }, + { + "source": "npm:@sentry/vue", + "target": "npm:@sentry/browser", + "type": "static" + }, + { + "source": "npm:@sentry/vue", + "target": "npm:@sentry/core", + "type": "static" + }, + { + "source": "npm:@sentry/vue", + "target": "npm:vue", + "type": "static" + }, + { + "source": "npm:@solid-primitives/props", + "target": "npm:@solid-primitives/utils", + "type": "static" + }, + { + "source": "npm:@solid-primitives/props", + "target": "npm:solid-js", + "type": "static" + }, + { + "source": "npm:@solid-primitives/refs", + "target": "npm:@solid-primitives/utils", + "type": "static" + }, + { + "source": "npm:@solid-primitives/refs", + "target": "npm:solid-js", + "type": "static" + }, + { + "source": "npm:@solid-primitives/scheduled", + "target": "npm:solid-js", + "type": "static" + }, + { + "source": "npm:@solid-primitives/transition-group", + "target": "npm:solid-js", + "type": "static" + }, + { + "source": "npm:@solid-primitives/utils", + "target": "npm:solid-js", + "type": "static" + }, + { + "source": "npm:@szmarczak/http-timer", + "target": "npm:defer-to-connect", + "type": "static" + }, + { + "source": "npm:@tailwindcss/node", + "target": "npm:@jridgewell/remapping", + "type": "static" + }, + { + "source": "npm:@tailwindcss/node", + "target": "npm:enhanced-resolve", + "type": "static" + }, + { + "source": "npm:@tailwindcss/node", + "target": "npm:jiti", + "type": "static" + }, + { + "source": "npm:@tailwindcss/node", + "target": "npm:lightningcss", + "type": "static" + }, + { + "source": "npm:@tailwindcss/node", + "target": "npm:magic-string", + "type": "static" + }, + { + "source": "npm:@tailwindcss/node", + "target": "npm:source-map-js", + "type": "static" + }, + { + "source": "npm:@tailwindcss/node", + "target": "npm:tailwindcss", + "type": "static" + }, + { + "source": "npm:@tailwindcss/oxide", + "target": "npm:@tailwindcss/oxide-android-arm64", + "type": "static" + }, + { + "source": "npm:@tailwindcss/oxide", + "target": "npm:@tailwindcss/oxide-darwin-arm64", + "type": "static" + }, + { + "source": "npm:@tailwindcss/oxide", + "target": "npm:@tailwindcss/oxide-darwin-x64", + "type": "static" + }, + { + "source": "npm:@tailwindcss/oxide", + "target": "npm:@tailwindcss/oxide-freebsd-x64", + "type": "static" + }, + { + "source": "npm:@tailwindcss/oxide", + "target": "npm:@tailwindcss/oxide-linux-arm-gnueabihf", + "type": "static" + }, + { + "source": "npm:@tailwindcss/oxide", + "target": "npm:@tailwindcss/oxide-linux-arm64-gnu", + "type": "static" + }, + { + "source": "npm:@tailwindcss/oxide", + "target": "npm:@tailwindcss/oxide-linux-arm64-musl", + "type": "static" + }, + { + "source": "npm:@tailwindcss/oxide", + "target": "npm:@tailwindcss/oxide-linux-x64-gnu", + "type": "static" + }, + { + "source": "npm:@tailwindcss/oxide", + "target": "npm:@tailwindcss/oxide-linux-x64-musl", + "type": "static" + }, + { + "source": "npm:@tailwindcss/oxide", + "target": "npm:@tailwindcss/oxide-wasm32-wasi", + "type": "static" + }, + { + "source": "npm:@tailwindcss/oxide", + "target": "npm:@tailwindcss/oxide-win32-arm64-msvc", + "type": "static" + }, + { + "source": "npm:@tailwindcss/oxide", + "target": "npm:@tailwindcss/oxide-win32-x64-msvc", + "type": "static" + }, + { + "source": "npm:@tailwindcss/vite", + "target": "npm:@tailwindcss/node", + "type": "static" + }, + { + "source": "npm:@tailwindcss/vite", + "target": "npm:@tailwindcss/oxide", + "type": "static" + }, + { + "source": "npm:@tailwindcss/vite", + "target": "npm:tailwindcss", + "type": "static" + }, + { + "source": "npm:@tailwindcss/vite", + "target": "npm:vite", + "type": "static" + }, + { + "source": "npm:@trpc/client", + "target": "npm:@trpc/server", + "type": "static" + }, + { + "source": "npm:@trpc/client", + "target": "npm:typescript", + "type": "static" + }, + { + "source": "npm:@trpc/server", + "target": "npm:typescript", + "type": "static" + }, + { + "source": "npm:@ts-morph/common", + "target": "npm:fast-glob", + "type": "static" + }, + { + "source": "npm:@ts-morph/common", + "target": "npm:minimatch@10.2.3", + "type": "static" + }, + { + "source": "npm:@ts-morph/common", + "target": "npm:path-browserify", + "type": "static" + }, + { + "source": "npm:@ts-rest/core", + "target": "npm:@types/node", + "type": "static" + }, + { + "source": "npm:@ts-rest/core", + "target": "npm:zod", + "type": "static" + }, + { + "source": "npm:@ts-rest/serverless", + "target": "npm:@ts-rest/core", + "type": "static" + }, + { + "source": "npm:@ts-rest/serverless", + "target": "npm:itty-router", + "type": "static" + }, + { + "source": "npm:@ts-rest/serverless", + "target": "npm:@types/aws-lambda", + "type": "static" + }, + { + "source": "npm:@ts-rest/serverless", + "target": "npm:zod", + "type": "static" + }, + { + "source": "npm:@tybys/wasm-util@0.10.1", + "target": "npm:tslib", + "type": "static" + }, + { + "source": "npm:@tybys/wasm-util", + "target": "npm:tslib", + "type": "static" + }, + { + "source": "npm:@types/babel__core", + "target": "npm:@babel/parser", + "type": "static" + }, + { + "source": "npm:@types/babel__core", + "target": "npm:@babel/types", + "type": "static" + }, + { + "source": "npm:@types/babel__core", + "target": "npm:@types/babel__generator", + "type": "static" + }, + { + "source": "npm:@types/babel__core", + "target": "npm:@types/babel__template", + "type": "static" + }, + { + "source": "npm:@types/babel__core", + "target": "npm:@types/babel__traverse", + "type": "static" + }, + { + "source": "npm:@types/babel__generator", + "target": "npm:@babel/types", + "type": "static" + }, + { + "source": "npm:@types/babel__template", + "target": "npm:@babel/parser", + "type": "static" + }, + { + "source": "npm:@types/babel__template", + "target": "npm:@babel/types", + "type": "static" + }, + { + "source": "npm:@types/babel__traverse", + "target": "npm:@babel/types", + "type": "static" + }, + { + "source": "npm:@types/better-sqlite3", + "target": "npm:@types/node", + "type": "static" + }, + { + "source": "npm:@types/body-parser", + "target": "npm:@types/connect", + "type": "static" + }, + { + "source": "npm:@types/body-parser", + "target": "npm:@types/node", + "type": "static" + }, + { + "source": "npm:@types/cacheable-request", + "target": "npm:@types/http-cache-semantics", + "type": "static" + }, + { + "source": "npm:@types/cacheable-request", + "target": "npm:@types/keyv", + "type": "static" + }, + { + "source": "npm:@types/cacheable-request", + "target": "npm:@types/node", + "type": "static" + }, + { + "source": "npm:@types/cacheable-request", + "target": "npm:@types/responselike", + "type": "static" + }, + { + "source": "npm:@types/chai", + "target": "npm:@types/deep-eql", + "type": "static" + }, + { + "source": "npm:@types/connect", + "target": "npm:@types/node", + "type": "static" + }, + { + "source": "npm:@types/debug", + "target": "npm:@types/ms", + "type": "static" + }, + { + "source": "npm:@types/eslint", + "target": "npm:@types/estree", + "type": "static" + }, + { + "source": "npm:@types/eslint", + "target": "npm:@types/json-schema", + "type": "static" + }, + { + "source": "npm:@types/express-serve-static-core", + "target": "npm:@types/node", + "type": "static" + }, + { + "source": "npm:@types/express-serve-static-core", + "target": "npm:@types/qs", + "type": "static" + }, + { + "source": "npm:@types/express-serve-static-core", + "target": "npm:@types/range-parser", + "type": "static" + }, + { + "source": "npm:@types/express-serve-static-core", + "target": "npm:@types/send", + "type": "static" + }, + { + "source": "npm:@types/express", + "target": "npm:@types/body-parser", + "type": "static" + }, + { + "source": "npm:@types/express", + "target": "npm:@types/express-serve-static-core", + "type": "static" + }, + { + "source": "npm:@types/express", + "target": "npm:@types/serve-static", + "type": "static" + }, + { + "source": "npm:@types/keyv", + "target": "npm:@types/node", + "type": "static" + }, + { + "source": "npm:@types/mdast", + "target": "npm:@types/unist@3.0.3", + "type": "static" + }, + { + "source": "npm:@types/node", + "target": "npm:undici-types", + "type": "static" + }, + { + "source": "npm:@types/react-dom", + "target": "npm:@types/react", + "type": "static" + }, + { + "source": "npm:@types/react", + "target": "npm:csstype", + "type": "static" + }, + { + "source": "npm:@types/responselike", + "target": "npm:@types/node", + "type": "static" + }, + { + "source": "npm:@types/send", + "target": "npm:@types/node", + "type": "static" + }, + { + "source": "npm:@types/serve-static", + "target": "npm:@types/http-errors", + "type": "static" + }, + { + "source": "npm:@types/serve-static", + "target": "npm:@types/node", + "type": "static" + }, + { + "source": "npm:@types/yauzl", + "target": "npm:@types/node", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/eslint-plugin", + "target": "npm:@eslint-community/regexpp", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/eslint-plugin", + "target": "npm:@typescript-eslint/parser", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/eslint-plugin", + "target": "npm:@typescript-eslint/scope-manager", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/eslint-plugin", + "target": "npm:@typescript-eslint/type-utils", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/eslint-plugin", + "target": "npm:@typescript-eslint/utils", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/eslint-plugin", + "target": "npm:@typescript-eslint/visitor-keys", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/eslint-plugin", + "target": "npm:eslint", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/eslint-plugin", + "target": "npm:ignore@7.0.5", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/eslint-plugin", + "target": "npm:natural-compare", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/eslint-plugin", + "target": "npm:ts-api-utils", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/eslint-plugin", + "target": "npm:typescript", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/parser", + "target": "npm:@typescript-eslint/scope-manager", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/parser", + "target": "npm:@typescript-eslint/types", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/parser", + "target": "npm:@typescript-eslint/typescript-estree", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/parser", + "target": "npm:@typescript-eslint/visitor-keys", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/parser", + "target": "npm:debug", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/parser", + "target": "npm:eslint", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/parser", + "target": "npm:typescript", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/project-service", + "target": "npm:@typescript-eslint/tsconfig-utils", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/project-service", + "target": "npm:@typescript-eslint/types", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/project-service", + "target": "npm:debug", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/project-service", + "target": "npm:typescript", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/scope-manager", + "target": "npm:@typescript-eslint/types", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/scope-manager", + "target": "npm:@typescript-eslint/visitor-keys", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/tsconfig-utils", + "target": "npm:typescript", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/type-utils", + "target": "npm:@typescript-eslint/types", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/type-utils", + "target": "npm:@typescript-eslint/typescript-estree", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/type-utils", + "target": "npm:@typescript-eslint/utils", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/type-utils", + "target": "npm:debug", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/type-utils", + "target": "npm:eslint", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/type-utils", + "target": "npm:ts-api-utils", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/type-utils", + "target": "npm:typescript", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/typescript-estree", + "target": "npm:@typescript-eslint/project-service", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/typescript-estree", + "target": "npm:@typescript-eslint/tsconfig-utils", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/typescript-estree", + "target": "npm:@typescript-eslint/types", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/typescript-estree", + "target": "npm:@typescript-eslint/visitor-keys", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/typescript-estree", + "target": "npm:debug", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/typescript-estree", + "target": "npm:minimatch@10.2.3", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/typescript-estree", + "target": "npm:semver@7.7.4", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/typescript-estree", + "target": "npm:tinyglobby", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/typescript-estree", + "target": "npm:ts-api-utils", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/typescript-estree", + "target": "npm:typescript", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/utils", + "target": "npm:@eslint-community/eslint-utils", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/utils", + "target": "npm:@typescript-eslint/scope-manager", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/utils", + "target": "npm:@typescript-eslint/types", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/utils", + "target": "npm:@typescript-eslint/typescript-estree", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/utils", + "target": "npm:eslint", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/utils", + "target": "npm:typescript", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/visitor-keys", + "target": "npm:@typescript-eslint/types", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/visitor-keys", + "target": "npm:eslint-visitor-keys@5.0.1", + "type": "static" + }, + { + "source": "npm:@universal-middleware/cloudflare", + "target": "npm:@universal-middleware/core", + "type": "static" + }, + { + "source": "npm:@universal-middleware/core", + "target": "npm:regexparam", + "type": "static" + }, + { + "source": "npm:@universal-middleware/core", + "target": "npm:tough-cookie", + "type": "static" + }, + { + "source": "npm:@universal-middleware/core", + "target": "npm:@cloudflare/workers-types", + "type": "static" + }, + { + "source": "npm:@universal-middleware/core", + "target": "npm:@types/express", + "type": "static" + }, + { + "source": "npm:@universal-middleware/core", + "target": "npm:fastify", + "type": "static" + }, + { + "source": "npm:@universal-middleware/core", + "target": "npm:h3", + "type": "static" + }, + { + "source": "npm:@universal-middleware/core", + "target": "npm:hono", + "type": "static" + }, + { + "source": "npm:@universal-middleware/core", + "target": "npm:srvx", + "type": "static" + }, + { + "source": "npm:@universal-middleware/express", + "target": "npm:@universal-middleware/core", + "type": "static" + }, + { + "source": "npm:@universal-middleware/fastify", + "target": "npm:@universal-middleware/core", + "type": "static" + }, + { + "source": "npm:@universal-middleware/fastify", + "target": "npm:@universal-middleware/express", + "type": "static" + }, + { + "source": "npm:@universal-middleware/fastify", + "target": "npm:fastify-raw-body", + "type": "static" + }, + { + "source": "npm:@universal-middleware/h3", + "target": "npm:@universal-middleware/core", + "type": "static" + }, + { + "source": "npm:@universal-middleware/hono", + "target": "npm:@universal-middleware/core", + "type": "static" + }, + { + "source": "npm:@universal-middleware/sirv", + "target": "npm:mrmime", + "type": "static" + }, + { + "source": "npm:@universal-middleware/sirv", + "target": "npm:totalist", + "type": "static" + }, + { + "source": "npm:@universal-middleware/srvx", + "target": "npm:@universal-middleware/core", + "type": "static" + }, + { + "source": "npm:@universal-middleware/vercel", + "target": "npm:@universal-middleware/core", + "type": "static" + }, + { + "source": "npm:@universal-middleware/vercel", + "target": "npm:@universal-middleware/express", + "type": "static" + }, + { + "source": "npm:@universal-middleware/vercel", + "target": "npm:@universal-middleware/h3", + "type": "static" + }, + { + "source": "npm:@universal-middleware/vercel", + "target": "npm:express", + "type": "static" + }, + { + "source": "npm:@universal-middleware/vercel", + "target": "npm:fastify", + "type": "static" + }, + { + "source": "npm:@universal-middleware/vercel", + "target": "npm:h3", + "type": "static" + }, + { + "source": "npm:@universal-middleware/vercel", + "target": "npm:hono", + "type": "static" + }, + { + "source": "npm:@universal-middleware/vercel", + "target": "npm:srvx", + "type": "static" + }, + { + "source": "npm:@vercel/nft@0.30.4", + "target": "npm:@mapbox/node-pre-gyp", + "type": "static" + }, + { + "source": "npm:@vercel/nft@0.30.4", + "target": "npm:@rollup/pluginutils", + "type": "static" + }, + { + "source": "npm:@vercel/nft@0.30.4", + "target": "npm:acorn", + "type": "static" + }, + { + "source": "npm:@vercel/nft@0.30.4", + "target": "npm:acorn-import-attributes", + "type": "static" + }, + { + "source": "npm:@vercel/nft@0.30.4", + "target": "npm:async-sema", + "type": "static" + }, + { + "source": "npm:@vercel/nft@0.30.4", + "target": "npm:bindings", + "type": "static" + }, + { + "source": "npm:@vercel/nft@0.30.4", + "target": "npm:estree-walker@2.0.2", + "type": "static" + }, + { + "source": "npm:@vercel/nft@0.30.4", + "target": "npm:glob@10.5.0", + "type": "static" + }, + { + "source": "npm:@vercel/nft@0.30.4", + "target": "npm:graceful-fs", + "type": "static" + }, + { + "source": "npm:@vercel/nft@0.30.4", + "target": "npm:node-gyp-build", + "type": "static" + }, + { + "source": "npm:@vercel/nft@0.30.4", + "target": "npm:picomatch", + "type": "static" + }, + { + "source": "npm:@vercel/nft@0.30.4", + "target": "npm:resolve-from", + "type": "static" + }, + { + "source": "npm:@vercel/nft", + "target": "npm:@mapbox/node-pre-gyp", + "type": "static" + }, + { + "source": "npm:@vercel/nft", + "target": "npm:@rollup/pluginutils", + "type": "static" + }, + { + "source": "npm:@vercel/nft", + "target": "npm:acorn", + "type": "static" + }, + { + "source": "npm:@vercel/nft", + "target": "npm:acorn-import-attributes", + "type": "static" + }, + { + "source": "npm:@vercel/nft", + "target": "npm:async-sema", + "type": "static" + }, + { + "source": "npm:@vercel/nft", + "target": "npm:bindings", + "type": "static" + }, + { + "source": "npm:@vercel/nft", + "target": "npm:estree-walker@2.0.2", + "type": "static" + }, + { + "source": "npm:@vercel/nft", + "target": "npm:glob", + "type": "static" + }, + { + "source": "npm:@vercel/nft", + "target": "npm:graceful-fs", + "type": "static" + }, + { + "source": "npm:@vercel/nft", + "target": "npm:node-gyp-build", + "type": "static" + }, + { + "source": "npm:@vercel/nft", + "target": "npm:picomatch", + "type": "static" + }, + { + "source": "npm:@vercel/nft", + "target": "npm:resolve-from", + "type": "static" + }, + { + "source": "npm:@vercel/routing-utils", + "target": "npm:path-to-regexp@6.1.0", + "type": "static" + }, + { + "source": "npm:@vercel/routing-utils", + "target": "npm:path-to-regexp-updated", + "type": "static" + }, + { + "source": "npm:@vercel/routing-utils", + "target": "npm:ajv", + "type": "static" + }, + { + "source": "npm:@vikejs/biome-config", + "target": "npm:@biomejs/biome", + "type": "static" + }, + { + "source": "npm:@vite-plugin-vercel/schemas", + "target": "npm:zod@4.3.6", + "type": "static" + }, + { + "source": "npm:@vitejs/plugin-react", + "target": "npm:@rolldown/pluginutils", + "type": "static" + }, + { + "source": "npm:@vitejs/plugin-react", + "target": "npm:vite", + "type": "static" + }, + { + "source": "npm:@vitejs/plugin-vue", + "target": "npm:@rolldown/pluginutils@1.0.0-rc.2", + "type": "static" + }, + { + "source": "npm:@vitejs/plugin-vue", + "target": "npm:vite", + "type": "static" + }, + { + "source": "npm:@vitejs/plugin-vue", + "target": "npm:vue", + "type": "static" + }, + { + "source": "npm:@vitest/expect", + "target": "npm:@standard-schema/spec", + "type": "static" + }, + { + "source": "npm:@vitest/expect", + "target": "npm:@types/chai", + "type": "static" + }, + { + "source": "npm:@vitest/expect", + "target": "npm:@vitest/spy", + "type": "static" + }, + { + "source": "npm:@vitest/expect", + "target": "npm:@vitest/utils", + "type": "static" + }, + { + "source": "npm:@vitest/expect", + "target": "npm:chai", + "type": "static" + }, + { + "source": "npm:@vitest/expect", + "target": "npm:tinyrainbow", + "type": "static" + }, + { + "source": "npm:@vitest/mocker", + "target": "npm:@vitest/spy", + "type": "static" + }, + { + "source": "npm:@vitest/mocker", + "target": "npm:estree-walker", + "type": "static" + }, + { + "source": "npm:@vitest/mocker", + "target": "npm:magic-string", + "type": "static" + }, + { + "source": "npm:@vitest/mocker", + "target": "npm:vite", + "type": "static" + }, + { + "source": "npm:@vitest/pretty-format", + "target": "npm:tinyrainbow", + "type": "static" + }, + { + "source": "npm:@vitest/runner", + "target": "npm:@vitest/utils", + "type": "static" + }, + { + "source": "npm:@vitest/runner", + "target": "npm:pathe", + "type": "static" + }, + { + "source": "npm:@vitest/snapshot", + "target": "npm:@vitest/pretty-format", + "type": "static" + }, + { + "source": "npm:@vitest/snapshot", + "target": "npm:@vitest/utils", + "type": "static" + }, + { + "source": "npm:@vitest/snapshot", + "target": "npm:magic-string", + "type": "static" + }, + { + "source": "npm:@vitest/snapshot", + "target": "npm:pathe", + "type": "static" + }, + { + "source": "npm:@vitest/utils", + "target": "npm:@vitest/pretty-format", + "type": "static" + }, + { + "source": "npm:@vitest/utils", + "target": "npm:convert-source-map", + "type": "static" + }, + { + "source": "npm:@vitest/utils", + "target": "npm:tinyrainbow", + "type": "static" + }, + { + "source": "npm:@vue/compiler-core", + "target": "npm:@babel/parser", + "type": "static" + }, + { + "source": "npm:@vue/compiler-core", + "target": "npm:@vue/shared", + "type": "static" + }, + { + "source": "npm:@vue/compiler-core", + "target": "npm:entities", + "type": "static" + }, + { + "source": "npm:@vue/compiler-core", + "target": "npm:estree-walker@2.0.2", + "type": "static" + }, + { + "source": "npm:@vue/compiler-core", + "target": "npm:source-map-js", + "type": "static" + }, + { + "source": "npm:@vue/compiler-dom", + "target": "npm:@vue/compiler-core", + "type": "static" + }, + { + "source": "npm:@vue/compiler-dom", + "target": "npm:@vue/shared", + "type": "static" + }, + { + "source": "npm:@vue/compiler-sfc", + "target": "npm:@babel/parser", + "type": "static" + }, + { + "source": "npm:@vue/compiler-sfc", + "target": "npm:@vue/compiler-core", + "type": "static" + }, + { + "source": "npm:@vue/compiler-sfc", + "target": "npm:@vue/compiler-dom", + "type": "static" + }, + { + "source": "npm:@vue/compiler-sfc", + "target": "npm:@vue/compiler-ssr", + "type": "static" + }, + { + "source": "npm:@vue/compiler-sfc", + "target": "npm:@vue/shared", + "type": "static" + }, + { + "source": "npm:@vue/compiler-sfc", + "target": "npm:estree-walker@2.0.2", + "type": "static" + }, + { + "source": "npm:@vue/compiler-sfc", + "target": "npm:magic-string", + "type": "static" + }, + { + "source": "npm:@vue/compiler-sfc", + "target": "npm:postcss", + "type": "static" + }, + { + "source": "npm:@vue/compiler-sfc", + "target": "npm:source-map-js", + "type": "static" + }, + { + "source": "npm:@vue/compiler-ssr", + "target": "npm:@vue/compiler-dom", + "type": "static" + }, + { + "source": "npm:@vue/compiler-ssr", + "target": "npm:@vue/shared", + "type": "static" + }, + { + "source": "npm:@vue/reactivity", + "target": "npm:@vue/shared", + "type": "static" + }, + { + "source": "npm:@vue/runtime-core", + "target": "npm:@vue/reactivity", + "type": "static" + }, + { + "source": "npm:@vue/runtime-core", + "target": "npm:@vue/shared", + "type": "static" + }, + { + "source": "npm:@vue/runtime-dom", + "target": "npm:@vue/reactivity", + "type": "static" + }, + { + "source": "npm:@vue/runtime-dom", + "target": "npm:@vue/runtime-core", + "type": "static" + }, + { + "source": "npm:@vue/runtime-dom", + "target": "npm:@vue/shared", + "type": "static" + }, + { + "source": "npm:@vue/runtime-dom", + "target": "npm:csstype", + "type": "static" + }, + { + "source": "npm:@vue/server-renderer", + "target": "npm:@vue/compiler-ssr", + "type": "static" + }, + { + "source": "npm:@vue/server-renderer", + "target": "npm:@vue/shared", + "type": "static" + }, + { + "source": "npm:@vue/server-renderer", + "target": "npm:vue", + "type": "static" + }, + { + "source": "npm:@yarnpkg/parsers", + "target": "npm:js-yaml@3.14.2", + "type": "static" + }, + { + "source": "npm:@yarnpkg/parsers", + "target": "npm:tslib", + "type": "static" + }, + { + "source": "npm:@zkochan/js-yaml", + "target": "npm:argparse", + "type": "static" + }, + { + "source": "npm:accepts", + "target": "npm:mime-types", + "type": "static" + }, + { + "source": "npm:accepts", + "target": "npm:negotiator", + "type": "static" + }, + { + "source": "npm:acorn-import-attributes", + "target": "npm:acorn", + "type": "static" + }, + { + "source": "npm:acorn-jsx", + "target": "npm:acorn", + "type": "static" + }, + { + "source": "npm:agent-base@6.0.2", + "target": "npm:debug", + "type": "static" + }, + { + "source": "npm:ajv-formats", + "target": "npm:ajv@8.18.0", + "type": "static" + }, + { + "source": "npm:ajv", + "target": "npm:fast-deep-equal", + "type": "static" + }, + { + "source": "npm:ajv", + "target": "npm:fast-json-stable-stringify", + "type": "static" + }, + { + "source": "npm:ajv", + "target": "npm:json-schema-traverse", + "type": "static" + }, + { + "source": "npm:ajv", + "target": "npm:uri-js", + "type": "static" + }, + { + "source": "npm:ajv@8.18.0", + "target": "npm:fast-deep-equal", + "type": "static" + }, + { + "source": "npm:ajv@8.18.0", + "target": "npm:fast-uri", + "type": "static" + }, + { + "source": "npm:ajv@8.18.0", + "target": "npm:json-schema-traverse@1.0.0", + "type": "static" + }, + { + "source": "npm:ajv@8.18.0", + "target": "npm:require-from-string", + "type": "static" + }, + { + "source": "npm:ansi-styles@4.3.0", + "target": "npm:color-convert", + "type": "static" + }, + { + "source": "npm:argparse@1.0.10", + "target": "npm:sprintf-js", + "type": "static" + }, + { + "source": "npm:array-buffer-byte-length", + "target": "npm:call-bound", + "type": "static" + }, + { + "source": "npm:array-buffer-byte-length", + "target": "npm:is-array-buffer", + "type": "static" + }, + { + "source": "npm:array-includes", + "target": "npm:call-bind", + "type": "static" + }, + { + "source": "npm:array-includes", + "target": "npm:call-bound", + "type": "static" + }, + { + "source": "npm:array-includes", + "target": "npm:define-properties", + "type": "static" + }, + { + "source": "npm:array-includes", + "target": "npm:es-abstract", + "type": "static" + }, + { + "source": "npm:array-includes", + "target": "npm:es-object-atoms", + "type": "static" + }, + { + "source": "npm:array-includes", + "target": "npm:get-intrinsic", + "type": "static" + }, + { + "source": "npm:array-includes", + "target": "npm:is-string", + "type": "static" + }, + { + "source": "npm:array-includes", + "target": "npm:math-intrinsics", + "type": "static" + }, + { + "source": "npm:array.prototype.findlast", + "target": "npm:call-bind", + "type": "static" + }, + { + "source": "npm:array.prototype.findlast", + "target": "npm:define-properties", + "type": "static" + }, + { + "source": "npm:array.prototype.findlast", + "target": "npm:es-abstract", + "type": "static" + }, + { + "source": "npm:array.prototype.findlast", + "target": "npm:es-errors", + "type": "static" + }, + { + "source": "npm:array.prototype.findlast", + "target": "npm:es-object-atoms", + "type": "static" + }, + { + "source": "npm:array.prototype.findlast", + "target": "npm:es-shim-unscopables", + "type": "static" + }, + { + "source": "npm:array.prototype.flat", + "target": "npm:call-bind", + "type": "static" + }, + { + "source": "npm:array.prototype.flat", + "target": "npm:define-properties", + "type": "static" + }, + { + "source": "npm:array.prototype.flat", + "target": "npm:es-abstract", + "type": "static" + }, + { + "source": "npm:array.prototype.flat", + "target": "npm:es-shim-unscopables", + "type": "static" + }, + { + "source": "npm:array.prototype.flatmap", + "target": "npm:call-bind", + "type": "static" + }, + { + "source": "npm:array.prototype.flatmap", + "target": "npm:define-properties", + "type": "static" + }, + { + "source": "npm:array.prototype.flatmap", + "target": "npm:es-abstract", + "type": "static" + }, + { + "source": "npm:array.prototype.flatmap", + "target": "npm:es-shim-unscopables", + "type": "static" + }, + { + "source": "npm:array.prototype.tosorted", + "target": "npm:call-bind", + "type": "static" + }, + { + "source": "npm:array.prototype.tosorted", + "target": "npm:define-properties", + "type": "static" + }, + { + "source": "npm:array.prototype.tosorted", + "target": "npm:es-abstract", + "type": "static" + }, + { + "source": "npm:array.prototype.tosorted", + "target": "npm:es-errors", + "type": "static" + }, + { + "source": "npm:array.prototype.tosorted", + "target": "npm:es-shim-unscopables", + "type": "static" + }, + { + "source": "npm:arraybuffer.prototype.slice", + "target": "npm:array-buffer-byte-length", + "type": "static" + }, + { + "source": "npm:arraybuffer.prototype.slice", + "target": "npm:call-bind", + "type": "static" + }, + { + "source": "npm:arraybuffer.prototype.slice", + "target": "npm:define-properties", + "type": "static" + }, + { + "source": "npm:arraybuffer.prototype.slice", + "target": "npm:es-abstract", + "type": "static" + }, + { + "source": "npm:arraybuffer.prototype.slice", + "target": "npm:es-errors", + "type": "static" + }, + { + "source": "npm:arraybuffer.prototype.slice", + "target": "npm:get-intrinsic", + "type": "static" + }, + { + "source": "npm:arraybuffer.prototype.slice", + "target": "npm:is-array-buffer", + "type": "static" + }, + { + "source": "npm:ast-kit", + "target": "npm:@babel/parser@8.0.0-rc.2", + "type": "static" + }, + { + "source": "npm:ast-kit", + "target": "npm:estree-walker", + "type": "static" + }, + { + "source": "npm:ast-kit", + "target": "npm:pathe", + "type": "static" + }, + { + "source": "npm:ast-types", + "target": "npm:tslib", + "type": "static" + }, + { + "source": "npm:attributes-parser", + "target": "npm:json-loose", + "type": "static" + }, + { + "source": "npm:autoprefixer", + "target": "npm:browserslist", + "type": "static" + }, + { + "source": "npm:autoprefixer", + "target": "npm:caniuse-lite", + "type": "static" + }, + { + "source": "npm:autoprefixer", + "target": "npm:fraction.js", + "type": "static" + }, + { + "source": "npm:autoprefixer", + "target": "npm:picocolors", + "type": "static" + }, + { + "source": "npm:autoprefixer", + "target": "npm:postcss", + "type": "static" + }, + { + "source": "npm:autoprefixer", + "target": "npm:postcss-value-parser", + "type": "static" + }, + { + "source": "npm:available-typed-arrays", + "target": "npm:possible-typed-array-names", + "type": "static" + }, + { + "source": "npm:avvio", + "target": "npm:@fastify/error", + "type": "static" + }, + { + "source": "npm:avvio", + "target": "npm:fastq", + "type": "static" + }, + { + "source": "npm:aws-cdk-lib", + "target": "npm:@aws-cdk/asset-awscli-v1", + "type": "static" + }, + { + "source": "npm:aws-cdk-lib", + "target": "npm:@aws-cdk/asset-node-proxy-agent-v6", + "type": "static" + }, + { + "source": "npm:aws-cdk-lib", + "target": "npm:@aws-cdk/cloud-assembly-schema", + "type": "static" + }, + { + "source": "npm:aws-cdk-lib", + "target": "npm:constructs", + "type": "static" + }, + { + "source": "npm:axios", + "target": "npm:follow-redirects", + "type": "static" + }, + { + "source": "npm:axios", + "target": "npm:form-data", + "type": "static" + }, + { + "source": "npm:axios", + "target": "npm:proxy-from-env", + "type": "static" + }, + { + "source": "npm:babel-plugin-jsx-dom-expressions", + "target": "npm:@babel/core", + "type": "static" + }, + { + "source": "npm:babel-plugin-jsx-dom-expressions", + "target": "npm:@babel/helper-module-imports@7.18.6", + "type": "static" + }, + { + "source": "npm:babel-plugin-jsx-dom-expressions", + "target": "npm:@babel/plugin-syntax-jsx", + "type": "static" + }, + { + "source": "npm:babel-plugin-jsx-dom-expressions", + "target": "npm:@babel/types", + "type": "static" + }, + { + "source": "npm:babel-plugin-jsx-dom-expressions", + "target": "npm:html-entities", + "type": "static" + }, + { + "source": "npm:babel-plugin-jsx-dom-expressions", + "target": "npm:parse5", + "type": "static" + }, + { + "source": "npm:babel-plugin-module-resolver", + "target": "npm:find-babel-config", + "type": "static" + }, + { + "source": "npm:babel-plugin-module-resolver", + "target": "npm:glob@9.3.5", + "type": "static" + }, + { + "source": "npm:babel-plugin-module-resolver", + "target": "npm:pkg-up", + "type": "static" + }, + { + "source": "npm:babel-plugin-module-resolver", + "target": "npm:reselect", + "type": "static" + }, + { + "source": "npm:babel-plugin-module-resolver", + "target": "npm:resolve@1.22.10", + "type": "static" + }, + { + "source": "npm:babel-preset-solid", + "target": "npm:@babel/core", + "type": "static" + }, + { + "source": "npm:babel-preset-solid", + "target": "npm:babel-plugin-jsx-dom-expressions", + "type": "static" + }, + { + "source": "npm:babel-preset-solid", + "target": "npm:solid-js", + "type": "static" + }, + { + "source": "npm:balanced-match@4.0.2", + "target": "npm:jackspeak", + "type": "static" + }, + { + "source": "npm:bare-fs", + "target": "npm:bare-events", + "type": "static" + }, + { + "source": "npm:bare-fs", + "target": "npm:bare-path", + "type": "static" + }, + { + "source": "npm:bare-fs", + "target": "npm:bare-stream", + "type": "static" + }, + { + "source": "npm:bare-fs", + "target": "npm:bare-url", + "type": "static" + }, + { + "source": "npm:bare-fs", + "target": "npm:fast-fifo", + "type": "static" + }, + { + "source": "npm:bare-path", + "target": "npm:bare-os", + "type": "static" + }, + { + "source": "npm:bare-stream", + "target": "npm:streamx", + "type": "static" + }, + { + "source": "npm:bare-stream", + "target": "npm:bare-events", + "type": "static" + }, + { + "source": "npm:bare-url", + "target": "npm:bare-path", + "type": "static" + }, + { + "source": "npm:basic-auth", + "target": "npm:safe-buffer", + "type": "static" + }, + { + "source": "npm:better-sqlite3", + "target": "npm:bindings", + "type": "static" + }, + { + "source": "npm:better-sqlite3", + "target": "npm:prebuild-install", + "type": "static" + }, + { + "source": "npm:bindings", + "target": "npm:file-uri-to-path", + "type": "static" + }, + { + "source": "npm:bl", + "target": "npm:buffer", + "type": "static" + }, + { + "source": "npm:bl", + "target": "npm:inherits", + "type": "static" + }, + { + "source": "npm:bl", + "target": "npm:readable-stream", + "type": "static" + }, + { + "source": "npm:body-parser", + "target": "npm:bytes", + "type": "static" + }, + { + "source": "npm:body-parser", + "target": "npm:content-type", + "type": "static" + }, + { + "source": "npm:body-parser", + "target": "npm:debug", + "type": "static" + }, + { + "source": "npm:body-parser", + "target": "npm:http-errors", + "type": "static" + }, + { + "source": "npm:body-parser", + "target": "npm:iconv-lite@0.7.2", + "type": "static" + }, + { + "source": "npm:body-parser", + "target": "npm:on-finished", + "type": "static" + }, + { + "source": "npm:body-parser", + "target": "npm:qs", + "type": "static" + }, + { + "source": "npm:body-parser", + "target": "npm:raw-body", + "type": "static" + }, + { + "source": "npm:body-parser", + "target": "npm:type-is", + "type": "static" + }, + { + "source": "npm:brace-expansion@1.1.12", + "target": "npm:balanced-match", + "type": "static" + }, + { + "source": "npm:brace-expansion@1.1.12", + "target": "npm:concat-map", + "type": "static" + }, + { + "source": "npm:brace-expansion@2.0.2", + "target": "npm:balanced-match", + "type": "static" + }, + { + "source": "npm:brace-expansion", + "target": "npm:balanced-match@4.0.2", + "type": "static" + }, + { + "source": "npm:braces", + "target": "npm:fill-range", + "type": "static" + }, + { + "source": "npm:browserless", + "target": "npm:@browserless/errors", + "type": "static" + }, + { + "source": "npm:browserless", + "target": "npm:@browserless/goto", + "type": "static" + }, + { + "source": "npm:browserless", + "target": "npm:@browserless/pdf", + "type": "static" + }, + { + "source": "npm:browserless", + "target": "npm:@browserless/screenshot", + "type": "static" + }, + { + "source": "npm:browserless", + "target": "npm:debug-logfmt", + "type": "static" + }, + { + "source": "npm:browserless", + "target": "npm:kill-process-group", + "type": "static" + }, + { + "source": "npm:browserless", + "target": "npm:p-reflect", + "type": "static" + }, + { + "source": "npm:browserless", + "target": "npm:p-retry", + "type": "static" + }, + { + "source": "npm:browserless", + "target": "npm:p-timeout", + "type": "static" + }, + { + "source": "npm:browserless", + "target": "npm:require-one-of", + "type": "static" + }, + { + "source": "npm:browserless", + "target": "npm:superlock", + "type": "static" + }, + { + "source": "npm:browserslist", + "target": "npm:baseline-browser-mapping", + "type": "static" + }, + { + "source": "npm:browserslist", + "target": "npm:caniuse-lite", + "type": "static" + }, + { + "source": "npm:browserslist", + "target": "npm:electron-to-chromium", + "type": "static" + }, + { + "source": "npm:browserslist", + "target": "npm:node-releases", + "type": "static" + }, + { + "source": "npm:browserslist", + "target": "npm:update-browserslist-db", + "type": "static" + }, + { + "source": "npm:buffer", + "target": "npm:base64-js", + "type": "static" + }, + { + "source": "npm:buffer", + "target": "npm:ieee754", + "type": "static" + }, + { + "source": "npm:bumpp", + "target": "npm:args-tokenizer", + "type": "static" + }, + { + "source": "npm:bumpp", + "target": "npm:cac", + "type": "static" + }, + { + "source": "npm:bumpp", + "target": "npm:jsonc-parser", + "type": "static" + }, + { + "source": "npm:bumpp", + "target": "npm:package-manager-detector", + "type": "static" + }, + { + "source": "npm:bumpp", + "target": "npm:semver@7.7.4", + "type": "static" + }, + { + "source": "npm:bumpp", + "target": "npm:tinyexec", + "type": "static" + }, + { + "source": "npm:bumpp", + "target": "npm:tinyglobby", + "type": "static" + }, + { + "source": "npm:bumpp", + "target": "npm:unconfig", + "type": "static" + }, + { + "source": "npm:bumpp", + "target": "npm:yaml", + "type": "static" + }, + { + "source": "npm:c12", + "target": "npm:chokidar", + "type": "static" + }, + { + "source": "npm:c12", + "target": "npm:confbox", + "type": "static" + }, + { + "source": "npm:c12", + "target": "npm:defu", + "type": "static" + }, + { + "source": "npm:c12", + "target": "npm:dotenv@16.6.1", + "type": "static" + }, + { + "source": "npm:c12", + "target": "npm:exsolve", + "type": "static" + }, + { + "source": "npm:c12", + "target": "npm:giget", + "type": "static" + }, + { + "source": "npm:c12", + "target": "npm:jiti", + "type": "static" + }, + { + "source": "npm:c12", + "target": "npm:ohash", + "type": "static" + }, + { + "source": "npm:c12", + "target": "npm:pathe", + "type": "static" + }, + { + "source": "npm:c12", + "target": "npm:perfect-debounce", + "type": "static" + }, + { + "source": "npm:c12", + "target": "npm:pkg-types", + "type": "static" + }, + { + "source": "npm:c12", + "target": "npm:rc9", + "type": "static" + }, + { + "source": "npm:cacache", + "target": "npm:@npmcli/fs", + "type": "static" + }, + { + "source": "npm:cacache", + "target": "npm:fs-minipass", + "type": "static" + }, + { + "source": "npm:cacache", + "target": "npm:glob@10.5.0", + "type": "static" + }, + { + "source": "npm:cacache", + "target": "npm:lru-cache@10.4.3", + "type": "static" + }, + { + "source": "npm:cacache", + "target": "npm:minipass", + "type": "static" + }, + { + "source": "npm:cacache", + "target": "npm:minipass-collect", + "type": "static" + }, + { + "source": "npm:cacache", + "target": "npm:minipass-flush", + "type": "static" + }, + { + "source": "npm:cacache", + "target": "npm:minipass-pipeline", + "type": "static" + }, + { + "source": "npm:cacache", + "target": "npm:p-map", + "type": "static" + }, + { + "source": "npm:cacache", + "target": "npm:ssri", + "type": "static" + }, + { + "source": "npm:cacache", + "target": "npm:tar", + "type": "static" + }, + { + "source": "npm:cacache", + "target": "npm:unique-filename", + "type": "static" + }, + { + "source": "npm:cacheable-request", + "target": "npm:clone-response", + "type": "static" + }, + { + "source": "npm:cacheable-request", + "target": "npm:get-stream@5.2.0", + "type": "static" + }, + { + "source": "npm:cacheable-request", + "target": "npm:http-cache-semantics", + "type": "static" + }, + { + "source": "npm:cacheable-request", + "target": "npm:keyv", + "type": "static" + }, + { + "source": "npm:cacheable-request", + "target": "npm:lowercase-keys", + "type": "static" + }, + { + "source": "npm:cacheable-request", + "target": "npm:normalize-url", + "type": "static" + }, + { + "source": "npm:cacheable-request", + "target": "npm:responselike", + "type": "static" + }, + { + "source": "npm:call-bind-apply-helpers", + "target": "npm:es-errors", + "type": "static" + }, + { + "source": "npm:call-bind-apply-helpers", + "target": "npm:function-bind", + "type": "static" + }, + { + "source": "npm:call-bind", + "target": "npm:call-bind-apply-helpers", + "type": "static" + }, + { + "source": "npm:call-bind", + "target": "npm:es-define-property", + "type": "static" + }, + { + "source": "npm:call-bind", + "target": "npm:get-intrinsic", + "type": "static" + }, + { + "source": "npm:call-bind", + "target": "npm:set-function-length", + "type": "static" + }, + { + "source": "npm:call-bound", + "target": "npm:call-bind-apply-helpers", + "type": "static" + }, + { + "source": "npm:call-bound", + "target": "npm:get-intrinsic", + "type": "static" + }, + { + "source": "npm:caniuse-api", + "target": "npm:browserslist", + "type": "static" + }, + { + "source": "npm:caniuse-api", + "target": "npm:caniuse-lite", + "type": "static" + }, + { + "source": "npm:caniuse-api", + "target": "npm:lodash.memoize", + "type": "static" + }, + { + "source": "npm:caniuse-api", + "target": "npm:lodash.uniq", + "type": "static" + }, + { + "source": "npm:cdk", + "target": "npm:aws-cdk", + "type": "static" + }, + { + "source": "npm:chalk", + "target": "npm:ansi-styles@4.3.0", + "type": "static" + }, + { + "source": "npm:chalk", + "target": "npm:supports-color", + "type": "static" + }, + { + "source": "npm:chevrotain", + "target": "npm:@chevrotain/cst-dts-gen", + "type": "static" + }, + { + "source": "npm:chevrotain", + "target": "npm:@chevrotain/gast", + "type": "static" + }, + { + "source": "npm:chevrotain", + "target": "npm:@chevrotain/types", + "type": "static" + }, + { + "source": "npm:chevrotain", + "target": "npm:@chevrotain/utils", + "type": "static" + }, + { + "source": "npm:chevrotain", + "target": "npm:lodash@4.17.21", + "type": "static" + }, + { + "source": "npm:chevrotain", + "target": "npm:regexp-to-ast", + "type": "static" + }, + { + "source": "npm:chokidar", + "target": "npm:readdirp", + "type": "static" + }, + { + "source": "npm:chromium-bidi", + "target": "npm:devtools-protocol", + "type": "static" + }, + { + "source": "npm:chromium-bidi", + "target": "npm:mitt", + "type": "static" + }, + { + "source": "npm:chromium-bidi", + "target": "npm:zod", + "type": "static" + }, + { + "source": "npm:citty@0.1.6", + "target": "npm:consola", + "type": "static" + }, + { + "source": "npm:class-variance-authority", + "target": "npm:clsx", + "type": "static" + }, + { + "source": "npm:cli-cursor", + "target": "npm:restore-cursor", + "type": "static" + }, + { + "source": "npm:cliui", + "target": "npm:string-width", + "type": "static" + }, + { + "source": "npm:cliui", + "target": "npm:strip-ansi@6.0.1", + "type": "static" + }, + { + "source": "npm:cliui", + "target": "npm:wrap-ansi", + "type": "static" + }, + { + "source": "npm:clone-response", + "target": "npm:mimic-response@1.0.1", + "type": "static" + }, + { + "source": "npm:color-convert", + "target": "npm:color-name", + "type": "static" + }, + { + "source": "npm:color-string", + "target": "npm:color-name", + "type": "static" + }, + { + "source": "npm:color-string", + "target": "npm:simple-swizzle", + "type": "static" + }, + { + "source": "npm:color", + "target": "npm:color-convert", + "type": "static" + }, + { + "source": "npm:color", + "target": "npm:color-string", + "type": "static" + }, + { + "source": "npm:combined-stream", + "target": "npm:delayed-stream", + "type": "static" + }, + { + "source": "npm:cosmiconfig", + "target": "npm:env-paths", + "type": "static" + }, + { + "source": "npm:cosmiconfig", + "target": "npm:import-fresh", + "type": "static" + }, + { + "source": "npm:cosmiconfig", + "target": "npm:js-yaml", + "type": "static" + }, + { + "source": "npm:cosmiconfig", + "target": "npm:parse-json", + "type": "static" + }, + { + "source": "npm:cosmiconfig", + "target": "npm:typescript", + "type": "static" + }, + { + "source": "npm:cross-spawn", + "target": "npm:path-key", + "type": "static" + }, + { + "source": "npm:cross-spawn", + "target": "npm:shebang-command", + "type": "static" + }, + { + "source": "npm:cross-spawn", + "target": "npm:which@2.0.2", + "type": "static" + }, + { + "source": "npm:crossws", + "target": "npm:uncrypto", + "type": "static" + }, + { + "source": "npm:css-declaration-sorter", + "target": "npm:postcss", + "type": "static" + }, + { + "source": "npm:css-select", + "target": "npm:boolbase", + "type": "static" + }, + { + "source": "npm:css-select", + "target": "npm:css-what", + "type": "static" + }, + { + "source": "npm:css-select", + "target": "npm:domhandler", + "type": "static" + }, + { + "source": "npm:css-select", + "target": "npm:domutils", + "type": "static" + }, + { + "source": "npm:css-select", + "target": "npm:nth-check", + "type": "static" + }, + { + "source": "npm:css-tree", + "target": "npm:mdn-data", + "type": "static" + }, + { + "source": "npm:css-tree", + "target": "npm:source-map", + "type": "static" + }, + { + "source": "npm:cssnano-preset-default", + "target": "npm:css-declaration-sorter", + "type": "static" + }, + { + "source": "npm:cssnano-preset-default", + "target": "npm:cssnano-utils", + "type": "static" + }, + { + "source": "npm:cssnano-preset-default", + "target": "npm:postcss", + "type": "static" + }, + { + "source": "npm:cssnano-preset-default", + "target": "npm:postcss-calc", + "type": "static" + }, + { + "source": "npm:cssnano-preset-default", + "target": "npm:postcss-colormin", + "type": "static" + }, + { + "source": "npm:cssnano-preset-default", + "target": "npm:postcss-convert-values", + "type": "static" + }, + { + "source": "npm:cssnano-preset-default", + "target": "npm:postcss-discard-comments", + "type": "static" + }, + { + "source": "npm:cssnano-preset-default", + "target": "npm:postcss-discard-duplicates@5.1.0", + "type": "static" + }, + { + "source": "npm:cssnano-preset-default", + "target": "npm:postcss-discard-empty", + "type": "static" + }, + { + "source": "npm:cssnano-preset-default", + "target": "npm:postcss-discard-overridden", + "type": "static" + }, + { + "source": "npm:cssnano-preset-default", + "target": "npm:postcss-merge-longhand", + "type": "static" + }, + { + "source": "npm:cssnano-preset-default", + "target": "npm:postcss-merge-rules", + "type": "static" + }, + { + "source": "npm:cssnano-preset-default", + "target": "npm:postcss-minify-font-values", + "type": "static" + }, + { + "source": "npm:cssnano-preset-default", + "target": "npm:postcss-minify-gradients", + "type": "static" + }, + { + "source": "npm:cssnano-preset-default", + "target": "npm:postcss-minify-params", + "type": "static" + }, + { + "source": "npm:cssnano-preset-default", + "target": "npm:postcss-minify-selectors", + "type": "static" + }, + { + "source": "npm:cssnano-preset-default", + "target": "npm:postcss-normalize-charset", + "type": "static" + }, + { + "source": "npm:cssnano-preset-default", + "target": "npm:postcss-normalize-display-values", + "type": "static" + }, + { + "source": "npm:cssnano-preset-default", + "target": "npm:postcss-normalize-positions", + "type": "static" + }, + { + "source": "npm:cssnano-preset-default", + "target": "npm:postcss-normalize-repeat-style", + "type": "static" + }, + { + "source": "npm:cssnano-preset-default", + "target": "npm:postcss-normalize-string", + "type": "static" + }, + { + "source": "npm:cssnano-preset-default", + "target": "npm:postcss-normalize-timing-functions", + "type": "static" + }, + { + "source": "npm:cssnano-preset-default", + "target": "npm:postcss-normalize-unicode", + "type": "static" + }, + { + "source": "npm:cssnano-preset-default", + "target": "npm:postcss-normalize-url", + "type": "static" + }, + { + "source": "npm:cssnano-preset-default", + "target": "npm:postcss-normalize-whitespace", + "type": "static" + }, + { + "source": "npm:cssnano-preset-default", + "target": "npm:postcss-ordered-values", + "type": "static" + }, + { + "source": "npm:cssnano-preset-default", + "target": "npm:postcss-reduce-initial", + "type": "static" + }, + { + "source": "npm:cssnano-preset-default", + "target": "npm:postcss-reduce-transforms", + "type": "static" + }, + { + "source": "npm:cssnano-preset-default", + "target": "npm:postcss-svgo", + "type": "static" + }, + { + "source": "npm:cssnano-preset-default", + "target": "npm:postcss-unique-selectors", + "type": "static" + }, + { + "source": "npm:cssnano-utils", + "target": "npm:postcss", + "type": "static" + }, + { + "source": "npm:csso", + "target": "npm:css-tree", + "type": "static" + }, + { + "source": "npm:data-view-buffer", + "target": "npm:call-bound", + "type": "static" + }, + { + "source": "npm:data-view-buffer", + "target": "npm:es-errors", + "type": "static" + }, + { + "source": "npm:data-view-buffer", + "target": "npm:is-data-view", + "type": "static" + }, + { + "source": "npm:data-view-byte-length", + "target": "npm:call-bound", + "type": "static" + }, + { + "source": "npm:data-view-byte-length", + "target": "npm:es-errors", + "type": "static" + }, + { + "source": "npm:data-view-byte-length", + "target": "npm:is-data-view", + "type": "static" + }, + { + "source": "npm:data-view-byte-offset", + "target": "npm:call-bound", + "type": "static" + }, + { + "source": "npm:data-view-byte-offset", + "target": "npm:es-errors", + "type": "static" + }, + { + "source": "npm:data-view-byte-offset", + "target": "npm:is-data-view", + "type": "static" + }, + { + "source": "npm:debug-logfmt", + "target": "npm:@kikobeats/time-span", + "type": "static" + }, + { + "source": "npm:debug-logfmt", + "target": "npm:null-prototype-object", + "type": "static" + }, + { + "source": "npm:debug-logfmt", + "target": "npm:pretty-ms@7.0.1", + "type": "static" + }, + { + "source": "npm:debug", + "target": "npm:ms", + "type": "static" + }, + { + "source": "npm:decode-named-character-reference", + "target": "npm:character-entities", + "type": "static" + }, + { + "source": "npm:decompress-response", + "target": "npm:mimic-response", + "type": "static" + }, + { + "source": "npm:defaults", + "target": "npm:clone", + "type": "static" + }, + { + "source": "npm:define-data-property", + "target": "npm:es-define-property", + "type": "static" + }, + { + "source": "npm:define-data-property", + "target": "npm:es-errors", + "type": "static" + }, + { + "source": "npm:define-data-property", + "target": "npm:gopd", + "type": "static" + }, + { + "source": "npm:define-properties", + "target": "npm:define-data-property", + "type": "static" + }, + { + "source": "npm:define-properties", + "target": "npm:has-property-descriptors", + "type": "static" + }, + { + "source": "npm:define-properties", + "target": "npm:object-keys", + "type": "static" + }, + { + "source": "npm:degenerator", + "target": "npm:ast-types", + "type": "static" + }, + { + "source": "npm:degenerator", + "target": "npm:escodegen", + "type": "static" + }, + { + "source": "npm:degenerator", + "target": "npm:esprima", + "type": "static" + }, + { + "source": "npm:devlop", + "target": "npm:dequal", + "type": "static" + }, + { + "source": "npm:doctrine", + "target": "npm:esutils", + "type": "static" + }, + { + "source": "npm:dom-serializer", + "target": "npm:domelementtype", + "type": "static" + }, + { + "source": "npm:dom-serializer", + "target": "npm:domhandler", + "type": "static" + }, + { + "source": "npm:dom-serializer", + "target": "npm:entities@2.2.0", + "type": "static" + }, + { + "source": "npm:domhandler", + "target": "npm:domelementtype", + "type": "static" + }, + { + "source": "npm:domutils", + "target": "npm:dom-serializer", + "type": "static" + }, + { + "source": "npm:domutils", + "target": "npm:domelementtype", + "type": "static" + }, + { + "source": "npm:domutils", + "target": "npm:domhandler", + "type": "static" + }, + { + "source": "npm:dotenv-expand", + "target": "npm:dotenv@16.6.1", + "type": "static" + }, + { + "source": "npm:drizzle-kit", + "target": "npm:@drizzle-team/brocli", + "type": "static" + }, + { + "source": "npm:drizzle-kit", + "target": "npm:@esbuild-kit/esm-loader", + "type": "static" + }, + { + "source": "npm:drizzle-kit", + "target": "npm:esbuild@0.25.12", + "type": "static" + }, + { + "source": "npm:drizzle-kit", + "target": "npm:tsx", + "type": "static" + }, + { + "source": "npm:drizzle-orm", + "target": "npm:@cloudflare/workers-types", + "type": "static" + }, + { + "source": "npm:drizzle-orm", + "target": "npm:@electric-sql/pglite", + "type": "static" + }, + { + "source": "npm:drizzle-orm", + "target": "npm:@prisma/client", + "type": "static" + }, + { + "source": "npm:drizzle-orm", + "target": "npm:@types/better-sqlite3", + "type": "static" + }, + { + "source": "npm:drizzle-orm", + "target": "npm:better-sqlite3", + "type": "static" + }, + { + "source": "npm:drizzle-orm", + "target": "npm:kysely", + "type": "static" + }, + { + "source": "npm:drizzle-orm", + "target": "npm:mysql2", + "type": "static" + }, + { + "source": "npm:drizzle-orm", + "target": "npm:postgres", + "type": "static" + }, + { + "source": "npm:drizzle-orm", + "target": "npm:prisma", + "type": "static" + }, + { + "source": "npm:dts-resolver", + "target": "npm:oxc-resolver", + "type": "static" + }, + { + "source": "npm:dunder-proto", + "target": "npm:call-bind-apply-helpers", + "type": "static" + }, + { + "source": "npm:dunder-proto", + "target": "npm:es-errors", + "type": "static" + }, + { + "source": "npm:dunder-proto", + "target": "npm:gopd", + "type": "static" + }, + { + "source": "npm:effect", + "target": "npm:@standard-schema/spec", + "type": "static" + }, + { + "source": "npm:effect", + "target": "npm:fast-check", + "type": "static" + }, + { + "source": "npm:ejs", + "target": "npm:jake", + "type": "static" + }, + { + "source": "npm:encoding", + "target": "npm:iconv-lite", + "type": "static" + }, + { + "source": "npm:end-of-stream", + "target": "npm:once", + "type": "static" + }, + { + "source": "npm:enhanced-resolve", + "target": "npm:graceful-fs", + "type": "static" + }, + { + "source": "npm:enhanced-resolve", + "target": "npm:tapable", + "type": "static" + }, + { + "source": "npm:enquirer", + "target": "npm:ansi-colors", + "type": "static" + }, + { + "source": "npm:error-ex", + "target": "npm:is-arrayish", + "type": "static" + }, + { + "source": "npm:es-abstract", + "target": "npm:array-buffer-byte-length", + "type": "static" + }, + { + "source": "npm:es-abstract", + "target": "npm:arraybuffer.prototype.slice", + "type": "static" + }, + { + "source": "npm:es-abstract", + "target": "npm:available-typed-arrays", + "type": "static" + }, + { + "source": "npm:es-abstract", + "target": "npm:call-bind", + "type": "static" + }, + { + "source": "npm:es-abstract", + "target": "npm:call-bound", + "type": "static" + }, + { + "source": "npm:es-abstract", + "target": "npm:data-view-buffer", + "type": "static" + }, + { + "source": "npm:es-abstract", + "target": "npm:data-view-byte-length", + "type": "static" + }, + { + "source": "npm:es-abstract", + "target": "npm:data-view-byte-offset", + "type": "static" + }, + { + "source": "npm:es-abstract", + "target": "npm:es-define-property", + "type": "static" + }, + { + "source": "npm:es-abstract", + "target": "npm:es-errors", + "type": "static" + }, + { + "source": "npm:es-abstract", + "target": "npm:es-object-atoms", + "type": "static" + }, + { + "source": "npm:es-abstract", + "target": "npm:es-set-tostringtag", + "type": "static" + }, + { + "source": "npm:es-abstract", + "target": "npm:es-to-primitive", + "type": "static" + }, + { + "source": "npm:es-abstract", + "target": "npm:function.prototype.name", + "type": "static" + }, + { + "source": "npm:es-abstract", + "target": "npm:get-intrinsic", + "type": "static" + }, + { + "source": "npm:es-abstract", + "target": "npm:get-proto", + "type": "static" + }, + { + "source": "npm:es-abstract", + "target": "npm:get-symbol-description", + "type": "static" + }, + { + "source": "npm:es-abstract", + "target": "npm:globalthis", + "type": "static" + }, + { + "source": "npm:es-abstract", + "target": "npm:gopd", + "type": "static" + }, + { + "source": "npm:es-abstract", + "target": "npm:has-property-descriptors", + "type": "static" + }, + { + "source": "npm:es-abstract", + "target": "npm:has-proto", + "type": "static" + }, + { + "source": "npm:es-abstract", + "target": "npm:has-symbols", + "type": "static" + }, + { + "source": "npm:es-abstract", + "target": "npm:hasown", + "type": "static" + }, + { + "source": "npm:es-abstract", + "target": "npm:internal-slot", + "type": "static" + }, + { + "source": "npm:es-abstract", + "target": "npm:is-array-buffer", + "type": "static" + }, + { + "source": "npm:es-abstract", + "target": "npm:is-callable", + "type": "static" + }, + { + "source": "npm:es-abstract", + "target": "npm:is-data-view", + "type": "static" + }, + { + "source": "npm:es-abstract", + "target": "npm:is-negative-zero", + "type": "static" + }, + { + "source": "npm:es-abstract", + "target": "npm:is-regex", + "type": "static" + }, + { + "source": "npm:es-abstract", + "target": "npm:is-set", + "type": "static" + }, + { + "source": "npm:es-abstract", + "target": "npm:is-shared-array-buffer", + "type": "static" + }, + { + "source": "npm:es-abstract", + "target": "npm:is-string", + "type": "static" + }, + { + "source": "npm:es-abstract", + "target": "npm:is-typed-array", + "type": "static" + }, + { + "source": "npm:es-abstract", + "target": "npm:is-weakref", + "type": "static" + }, + { + "source": "npm:es-abstract", + "target": "npm:math-intrinsics", + "type": "static" + }, + { + "source": "npm:es-abstract", + "target": "npm:object-inspect", + "type": "static" + }, + { + "source": "npm:es-abstract", + "target": "npm:object-keys", + "type": "static" + }, + { + "source": "npm:es-abstract", + "target": "npm:object.assign", + "type": "static" + }, + { + "source": "npm:es-abstract", + "target": "npm:own-keys", + "type": "static" + }, + { + "source": "npm:es-abstract", + "target": "npm:regexp.prototype.flags", + "type": "static" + }, + { + "source": "npm:es-abstract", + "target": "npm:safe-array-concat", + "type": "static" + }, + { + "source": "npm:es-abstract", + "target": "npm:safe-push-apply", + "type": "static" + }, + { + "source": "npm:es-abstract", + "target": "npm:safe-regex-test", + "type": "static" + }, + { + "source": "npm:es-abstract", + "target": "npm:set-proto", + "type": "static" + }, + { + "source": "npm:es-abstract", + "target": "npm:stop-iteration-iterator", + "type": "static" + }, + { + "source": "npm:es-abstract", + "target": "npm:string.prototype.trim", + "type": "static" + }, + { + "source": "npm:es-abstract", + "target": "npm:string.prototype.trimend", + "type": "static" + }, + { + "source": "npm:es-abstract", + "target": "npm:string.prototype.trimstart", + "type": "static" + }, + { + "source": "npm:es-abstract", + "target": "npm:typed-array-buffer", + "type": "static" + }, + { + "source": "npm:es-abstract", + "target": "npm:typed-array-byte-length", + "type": "static" + }, + { + "source": "npm:es-abstract", + "target": "npm:typed-array-byte-offset", + "type": "static" + }, + { + "source": "npm:es-abstract", + "target": "npm:typed-array-length", + "type": "static" + }, + { + "source": "npm:es-abstract", + "target": "npm:unbox-primitive", + "type": "static" + }, + { + "source": "npm:es-abstract", + "target": "npm:which-typed-array", + "type": "static" + }, + { + "source": "npm:es-iterator-helpers", + "target": "npm:call-bind", + "type": "static" + }, + { + "source": "npm:es-iterator-helpers", + "target": "npm:call-bound", + "type": "static" + }, + { + "source": "npm:es-iterator-helpers", + "target": "npm:define-properties", + "type": "static" + }, + { + "source": "npm:es-iterator-helpers", + "target": "npm:es-abstract", + "type": "static" + }, + { + "source": "npm:es-iterator-helpers", + "target": "npm:es-errors", + "type": "static" + }, + { + "source": "npm:es-iterator-helpers", + "target": "npm:es-set-tostringtag", + "type": "static" + }, + { + "source": "npm:es-iterator-helpers", + "target": "npm:function-bind", + "type": "static" + }, + { + "source": "npm:es-iterator-helpers", + "target": "npm:get-intrinsic", + "type": "static" + }, + { + "source": "npm:es-iterator-helpers", + "target": "npm:globalthis", + "type": "static" + }, + { + "source": "npm:es-iterator-helpers", + "target": "npm:gopd", + "type": "static" + }, + { + "source": "npm:es-iterator-helpers", + "target": "npm:has-property-descriptors", + "type": "static" + }, + { + "source": "npm:es-iterator-helpers", + "target": "npm:has-proto", + "type": "static" + }, + { + "source": "npm:es-iterator-helpers", + "target": "npm:has-symbols", + "type": "static" + }, + { + "source": "npm:es-iterator-helpers", + "target": "npm:internal-slot", + "type": "static" + }, + { + "source": "npm:es-iterator-helpers", + "target": "npm:iterator.prototype", + "type": "static" + }, + { + "source": "npm:es-iterator-helpers", + "target": "npm:safe-array-concat", + "type": "static" + }, + { + "source": "npm:es-object-atoms", + "target": "npm:es-errors", + "type": "static" + }, + { + "source": "npm:es-set-tostringtag", + "target": "npm:es-errors", + "type": "static" + }, + { + "source": "npm:es-set-tostringtag", + "target": "npm:get-intrinsic", + "type": "static" + }, + { + "source": "npm:es-set-tostringtag", + "target": "npm:has-tostringtag", + "type": "static" + }, + { + "source": "npm:es-set-tostringtag", + "target": "npm:hasown", + "type": "static" + }, + { + "source": "npm:es-shim-unscopables", + "target": "npm:hasown", + "type": "static" + }, + { + "source": "npm:es-to-primitive", + "target": "npm:is-callable", + "type": "static" + }, + { + "source": "npm:es-to-primitive", + "target": "npm:is-date-object", + "type": "static" + }, + { + "source": "npm:es-to-primitive", + "target": "npm:is-symbol", + "type": "static" + }, + { + "source": "npm:esbuild@0.18.20", + "target": "npm:@esbuild/android-arm@0.18.20", + "type": "static" + }, + { + "source": "npm:esbuild@0.18.20", + "target": "npm:@esbuild/android-arm64@0.18.20", + "type": "static" + }, + { + "source": "npm:esbuild@0.18.20", + "target": "npm:@esbuild/android-x64@0.18.20", + "type": "static" + }, + { + "source": "npm:esbuild@0.18.20", + "target": "npm:@esbuild/darwin-arm64@0.18.20", + "type": "static" + }, + { + "source": "npm:esbuild@0.18.20", + "target": "npm:@esbuild/darwin-x64@0.18.20", + "type": "static" + }, + { + "source": "npm:esbuild@0.18.20", + "target": "npm:@esbuild/freebsd-arm64@0.18.20", + "type": "static" + }, + { + "source": "npm:esbuild@0.18.20", + "target": "npm:@esbuild/freebsd-x64@0.18.20", + "type": "static" + }, + { + "source": "npm:esbuild@0.18.20", + "target": "npm:@esbuild/linux-arm@0.18.20", + "type": "static" + }, + { + "source": "npm:esbuild@0.18.20", + "target": "npm:@esbuild/linux-arm64@0.18.20", + "type": "static" + }, + { + "source": "npm:esbuild@0.18.20", + "target": "npm:@esbuild/linux-ia32@0.18.20", + "type": "static" + }, + { + "source": "npm:esbuild@0.18.20", + "target": "npm:@esbuild/linux-loong64@0.18.20", + "type": "static" + }, + { + "source": "npm:esbuild@0.18.20", + "target": "npm:@esbuild/linux-mips64el@0.18.20", + "type": "static" + }, + { + "source": "npm:esbuild@0.18.20", + "target": "npm:@esbuild/linux-ppc64@0.18.20", + "type": "static" + }, + { + "source": "npm:esbuild@0.18.20", + "target": "npm:@esbuild/linux-riscv64@0.18.20", + "type": "static" + }, + { + "source": "npm:esbuild@0.18.20", + "target": "npm:@esbuild/linux-s390x@0.18.20", + "type": "static" + }, + { + "source": "npm:esbuild@0.18.20", + "target": "npm:@esbuild/linux-x64@0.18.20", + "type": "static" + }, + { + "source": "npm:esbuild@0.18.20", + "target": "npm:@esbuild/netbsd-x64@0.18.20", + "type": "static" + }, + { + "source": "npm:esbuild@0.18.20", + "target": "npm:@esbuild/openbsd-x64@0.18.20", + "type": "static" + }, + { + "source": "npm:esbuild@0.18.20", + "target": "npm:@esbuild/sunos-x64@0.18.20", + "type": "static" + }, + { + "source": "npm:esbuild@0.18.20", + "target": "npm:@esbuild/win32-arm64@0.18.20", + "type": "static" + }, + { + "source": "npm:esbuild@0.18.20", + "target": "npm:@esbuild/win32-ia32@0.18.20", + "type": "static" + }, + { + "source": "npm:esbuild@0.18.20", + "target": "npm:@esbuild/win32-x64@0.18.20", + "type": "static" + }, + { + "source": "npm:esbuild@0.25.12", + "target": "npm:@esbuild/aix-ppc64@0.25.12", + "type": "static" + }, + { + "source": "npm:esbuild@0.25.12", + "target": "npm:@esbuild/android-arm@0.25.12", + "type": "static" + }, + { + "source": "npm:esbuild@0.25.12", + "target": "npm:@esbuild/android-arm64@0.25.12", + "type": "static" + }, + { + "source": "npm:esbuild@0.25.12", + "target": "npm:@esbuild/android-x64@0.25.12", + "type": "static" + }, + { + "source": "npm:esbuild@0.25.12", + "target": "npm:@esbuild/darwin-arm64@0.25.12", + "type": "static" + }, + { + "source": "npm:esbuild@0.25.12", + "target": "npm:@esbuild/darwin-x64@0.25.12", + "type": "static" + }, + { + "source": "npm:esbuild@0.25.12", + "target": "npm:@esbuild/freebsd-arm64@0.25.12", + "type": "static" + }, + { + "source": "npm:esbuild@0.25.12", + "target": "npm:@esbuild/freebsd-x64@0.25.12", + "type": "static" + }, + { + "source": "npm:esbuild@0.25.12", + "target": "npm:@esbuild/linux-arm@0.25.12", + "type": "static" + }, + { + "source": "npm:esbuild@0.25.12", + "target": "npm:@esbuild/linux-arm64@0.25.12", + "type": "static" + }, + { + "source": "npm:esbuild@0.25.12", + "target": "npm:@esbuild/linux-ia32@0.25.12", + "type": "static" + }, + { + "source": "npm:esbuild@0.25.12", + "target": "npm:@esbuild/linux-loong64@0.25.12", + "type": "static" + }, + { + "source": "npm:esbuild@0.25.12", + "target": "npm:@esbuild/linux-mips64el@0.25.12", + "type": "static" + }, + { + "source": "npm:esbuild@0.25.12", + "target": "npm:@esbuild/linux-ppc64@0.25.12", + "type": "static" + }, + { + "source": "npm:esbuild@0.25.12", + "target": "npm:@esbuild/linux-riscv64@0.25.12", + "type": "static" + }, + { + "source": "npm:esbuild@0.25.12", + "target": "npm:@esbuild/linux-s390x@0.25.12", + "type": "static" + }, + { + "source": "npm:esbuild@0.25.12", + "target": "npm:@esbuild/linux-x64@0.25.12", + "type": "static" + }, + { + "source": "npm:esbuild@0.25.12", + "target": "npm:@esbuild/netbsd-arm64@0.25.12", + "type": "static" + }, + { + "source": "npm:esbuild@0.25.12", + "target": "npm:@esbuild/netbsd-x64@0.25.12", + "type": "static" + }, + { + "source": "npm:esbuild@0.25.12", + "target": "npm:@esbuild/openbsd-arm64@0.25.12", + "type": "static" + }, + { + "source": "npm:esbuild@0.25.12", + "target": "npm:@esbuild/openbsd-x64@0.25.12", + "type": "static" + }, + { + "source": "npm:esbuild@0.25.12", + "target": "npm:@esbuild/openharmony-arm64@0.25.12", + "type": "static" + }, + { + "source": "npm:esbuild@0.25.12", + "target": "npm:@esbuild/sunos-x64@0.25.12", + "type": "static" + }, + { + "source": "npm:esbuild@0.25.12", + "target": "npm:@esbuild/win32-arm64@0.25.12", + "type": "static" + }, + { + "source": "npm:esbuild@0.25.12", + "target": "npm:@esbuild/win32-ia32@0.25.12", + "type": "static" + }, + { + "source": "npm:esbuild@0.25.12", + "target": "npm:@esbuild/win32-x64@0.25.12", + "type": "static" + }, + { + "source": "npm:esbuild@0.27.3", + "target": "npm:@esbuild/aix-ppc64@0.27.3", + "type": "static" + }, + { + "source": "npm:esbuild@0.27.3", + "target": "npm:@esbuild/android-arm@0.27.3", + "type": "static" + }, + { + "source": "npm:esbuild@0.27.3", + "target": "npm:@esbuild/android-arm64@0.27.3", + "type": "static" + }, + { + "source": "npm:esbuild@0.27.3", + "target": "npm:@esbuild/android-x64@0.27.3", + "type": "static" + }, + { + "source": "npm:esbuild@0.27.3", + "target": "npm:@esbuild/darwin-arm64@0.27.3", + "type": "static" + }, + { + "source": "npm:esbuild@0.27.3", + "target": "npm:@esbuild/darwin-x64@0.27.3", + "type": "static" + }, + { + "source": "npm:esbuild@0.27.3", + "target": "npm:@esbuild/freebsd-arm64@0.27.3", + "type": "static" + }, + { + "source": "npm:esbuild@0.27.3", + "target": "npm:@esbuild/freebsd-x64@0.27.3", + "type": "static" + }, + { + "source": "npm:esbuild@0.27.3", + "target": "npm:@esbuild/linux-arm@0.27.3", + "type": "static" + }, + { + "source": "npm:esbuild@0.27.3", + "target": "npm:@esbuild/linux-arm64@0.27.3", + "type": "static" + }, + { + "source": "npm:esbuild@0.27.3", + "target": "npm:@esbuild/linux-ia32@0.27.3", + "type": "static" + }, + { + "source": "npm:esbuild@0.27.3", + "target": "npm:@esbuild/linux-loong64@0.27.3", + "type": "static" + }, + { + "source": "npm:esbuild@0.27.3", + "target": "npm:@esbuild/linux-mips64el@0.27.3", + "type": "static" + }, + { + "source": "npm:esbuild@0.27.3", + "target": "npm:@esbuild/linux-ppc64@0.27.3", + "type": "static" + }, + { + "source": "npm:esbuild@0.27.3", + "target": "npm:@esbuild/linux-riscv64@0.27.3", + "type": "static" + }, + { + "source": "npm:esbuild@0.27.3", + "target": "npm:@esbuild/linux-s390x@0.27.3", + "type": "static" + }, + { + "source": "npm:esbuild@0.27.3", + "target": "npm:@esbuild/linux-x64@0.27.3", + "type": "static" + }, + { + "source": "npm:esbuild@0.27.3", + "target": "npm:@esbuild/netbsd-arm64@0.27.3", + "type": "static" + }, + { + "source": "npm:esbuild@0.27.3", + "target": "npm:@esbuild/netbsd-x64@0.27.3", + "type": "static" + }, + { + "source": "npm:esbuild@0.27.3", + "target": "npm:@esbuild/openbsd-arm64@0.27.3", + "type": "static" + }, + { + "source": "npm:esbuild@0.27.3", + "target": "npm:@esbuild/openbsd-x64@0.27.3", + "type": "static" + }, + { + "source": "npm:esbuild@0.27.3", + "target": "npm:@esbuild/openharmony-arm64@0.27.3", + "type": "static" + }, + { + "source": "npm:esbuild@0.27.3", + "target": "npm:@esbuild/sunos-x64@0.27.3", + "type": "static" + }, + { + "source": "npm:esbuild@0.27.3", + "target": "npm:@esbuild/win32-arm64@0.27.3", + "type": "static" + }, + { + "source": "npm:esbuild@0.27.3", + "target": "npm:@esbuild/win32-ia32@0.27.3", + "type": "static" + }, + { + "source": "npm:esbuild@0.27.3", + "target": "npm:@esbuild/win32-x64@0.27.3", + "type": "static" + }, + { + "source": "npm:esbuild", + "target": "npm:@esbuild/aix-ppc64@0.27.4", + "type": "static" + }, + { + "source": "npm:esbuild", + "target": "npm:@esbuild/android-arm@0.27.4", + "type": "static" + }, + { + "source": "npm:esbuild", + "target": "npm:@esbuild/android-arm64@0.27.4", + "type": "static" + }, + { + "source": "npm:esbuild", + "target": "npm:@esbuild/android-x64@0.27.4", + "type": "static" + }, + { + "source": "npm:esbuild", + "target": "npm:@esbuild/darwin-arm64@0.27.4", + "type": "static" + }, + { + "source": "npm:esbuild", + "target": "npm:@esbuild/darwin-x64@0.27.4", + "type": "static" + }, + { + "source": "npm:esbuild", + "target": "npm:@esbuild/freebsd-arm64@0.27.4", + "type": "static" + }, + { + "source": "npm:esbuild", + "target": "npm:@esbuild/freebsd-x64@0.27.4", + "type": "static" + }, + { + "source": "npm:esbuild", + "target": "npm:@esbuild/linux-arm@0.27.4", + "type": "static" + }, + { + "source": "npm:esbuild", + "target": "npm:@esbuild/linux-arm64@0.27.4", + "type": "static" + }, + { + "source": "npm:esbuild", + "target": "npm:@esbuild/linux-ia32@0.27.4", + "type": "static" + }, + { + "source": "npm:esbuild", + "target": "npm:@esbuild/linux-loong64@0.27.4", + "type": "static" + }, + { + "source": "npm:esbuild", + "target": "npm:@esbuild/linux-mips64el@0.27.4", + "type": "static" + }, + { + "source": "npm:esbuild", + "target": "npm:@esbuild/linux-ppc64@0.27.4", + "type": "static" + }, + { + "source": "npm:esbuild", + "target": "npm:@esbuild/linux-riscv64@0.27.4", + "type": "static" + }, + { + "source": "npm:esbuild", + "target": "npm:@esbuild/linux-s390x@0.27.4", + "type": "static" + }, + { + "source": "npm:esbuild", + "target": "npm:@esbuild/linux-x64", + "type": "static" + }, + { + "source": "npm:esbuild", + "target": "npm:@esbuild/netbsd-arm64@0.27.4", + "type": "static" + }, + { + "source": "npm:esbuild", + "target": "npm:@esbuild/netbsd-x64@0.27.4", + "type": "static" + }, + { + "source": "npm:esbuild", + "target": "npm:@esbuild/openbsd-arm64@0.27.4", + "type": "static" + }, + { + "source": "npm:esbuild", + "target": "npm:@esbuild/openbsd-x64@0.27.4", + "type": "static" + }, + { + "source": "npm:esbuild", + "target": "npm:@esbuild/openharmony-arm64@0.27.4", + "type": "static" + }, + { + "source": "npm:esbuild", + "target": "npm:@esbuild/sunos-x64@0.27.4", + "type": "static" + }, + { + "source": "npm:esbuild", + "target": "npm:@esbuild/win32-arm64@0.27.4", + "type": "static" + }, + { + "source": "npm:esbuild", + "target": "npm:@esbuild/win32-ia32@0.27.4", + "type": "static" + }, + { + "source": "npm:esbuild", + "target": "npm:@esbuild/win32-x64@0.27.4", + "type": "static" + }, + { + "source": "npm:escodegen", + "target": "npm:esprima", + "type": "static" + }, + { + "source": "npm:escodegen", + "target": "npm:estraverse", + "type": "static" + }, + { + "source": "npm:escodegen", + "target": "npm:esutils", + "type": "static" + }, + { + "source": "npm:escodegen", + "target": "npm:source-map", + "type": "static" + }, + { + "source": "npm:eslint-config-prettier", + "target": "npm:eslint", + "type": "static" + }, + { + "source": "npm:eslint-plugin-prettier", + "target": "npm:eslint", + "type": "static" + }, + { + "source": "npm:eslint-plugin-prettier", + "target": "npm:prettier", + "type": "static" + }, + { + "source": "npm:eslint-plugin-prettier", + "target": "npm:prettier-linter-helpers", + "type": "static" + }, + { + "source": "npm:eslint-plugin-prettier", + "target": "npm:synckit", + "type": "static" + }, + { + "source": "npm:eslint-plugin-prettier", + "target": "npm:@types/eslint", + "type": "static" + }, + { + "source": "npm:eslint-plugin-prettier", + "target": "npm:eslint-config-prettier", + "type": "static" + }, + { + "source": "npm:eslint-plugin-react", + "target": "npm:array-includes", + "type": "static" + }, + { + "source": "npm:eslint-plugin-react", + "target": "npm:array.prototype.findlast", + "type": "static" + }, + { + "source": "npm:eslint-plugin-react", + "target": "npm:array.prototype.flatmap", + "type": "static" + }, + { + "source": "npm:eslint-plugin-react", + "target": "npm:array.prototype.tosorted", + "type": "static" + }, + { + "source": "npm:eslint-plugin-react", + "target": "npm:doctrine", + "type": "static" + }, + { + "source": "npm:eslint-plugin-react", + "target": "npm:es-iterator-helpers", + "type": "static" + }, + { + "source": "npm:eslint-plugin-react", + "target": "npm:eslint", + "type": "static" + }, + { + "source": "npm:eslint-plugin-react", + "target": "npm:estraverse", + "type": "static" + }, + { + "source": "npm:eslint-plugin-react", + "target": "npm:hasown", + "type": "static" + }, + { + "source": "npm:eslint-plugin-react", + "target": "npm:jsx-ast-utils", + "type": "static" + }, + { + "source": "npm:eslint-plugin-react", + "target": "npm:minimatch", + "type": "static" + }, + { + "source": "npm:eslint-plugin-react", + "target": "npm:object.entries", + "type": "static" + }, + { + "source": "npm:eslint-plugin-react", + "target": "npm:object.fromentries", + "type": "static" + }, + { + "source": "npm:eslint-plugin-react", + "target": "npm:object.values", + "type": "static" + }, + { + "source": "npm:eslint-plugin-react", + "target": "npm:prop-types", + "type": "static" + }, + { + "source": "npm:eslint-plugin-react", + "target": "npm:resolve", + "type": "static" + }, + { + "source": "npm:eslint-plugin-react", + "target": "npm:semver", + "type": "static" + }, + { + "source": "npm:eslint-plugin-react", + "target": "npm:string.prototype.matchall", + "type": "static" + }, + { + "source": "npm:eslint-plugin-react", + "target": "npm:string.prototype.repeat", + "type": "static" + }, + { + "source": "npm:eslint-plugin-solid", + "target": "npm:@typescript-eslint/utils", + "type": "static" + }, + { + "source": "npm:eslint-plugin-solid", + "target": "npm:eslint", + "type": "static" + }, + { + "source": "npm:eslint-plugin-solid", + "target": "npm:estraverse", + "type": "static" + }, + { + "source": "npm:eslint-plugin-solid", + "target": "npm:is-html", + "type": "static" + }, + { + "source": "npm:eslint-plugin-solid", + "target": "npm:kebab-case", + "type": "static" + }, + { + "source": "npm:eslint-plugin-solid", + "target": "npm:known-css-properties", + "type": "static" + }, + { + "source": "npm:eslint-plugin-solid", + "target": "npm:style-to-object", + "type": "static" + }, + { + "source": "npm:eslint-plugin-solid", + "target": "npm:typescript", + "type": "static" + }, + { + "source": "npm:eslint-plugin-vue", + "target": "npm:@eslint-community/eslint-utils", + "type": "static" + }, + { + "source": "npm:eslint-plugin-vue", + "target": "npm:eslint", + "type": "static" + }, + { + "source": "npm:eslint-plugin-vue", + "target": "npm:natural-compare", + "type": "static" + }, + { + "source": "npm:eslint-plugin-vue", + "target": "npm:nth-check", + "type": "static" + }, + { + "source": "npm:eslint-plugin-vue", + "target": "npm:postcss-selector-parser", + "type": "static" + }, + { + "source": "npm:eslint-plugin-vue", + "target": "npm:semver@7.7.4", + "type": "static" + }, + { + "source": "npm:eslint-plugin-vue", + "target": "npm:vue-eslint-parser", + "type": "static" + }, + { + "source": "npm:eslint-plugin-vue", + "target": "npm:xml-name-validator", + "type": "static" + }, + { + "source": "npm:eslint-plugin-vue", + "target": "npm:@typescript-eslint/parser", + "type": "static" + }, + { + "source": "npm:eslint-scope", + "target": "npm:esrecurse", + "type": "static" + }, + { + "source": "npm:eslint-scope", + "target": "npm:estraverse", + "type": "static" + }, + { + "source": "npm:eslint", + "target": "npm:@eslint-community/eslint-utils", + "type": "static" + }, + { + "source": "npm:eslint", + "target": "npm:@eslint-community/regexpp", + "type": "static" + }, + { + "source": "npm:eslint", + "target": "npm:@eslint/config-array", + "type": "static" + }, + { + "source": "npm:eslint", + "target": "npm:@eslint/config-helpers", + "type": "static" + }, + { + "source": "npm:eslint", + "target": "npm:@eslint/core", + "type": "static" + }, + { + "source": "npm:eslint", + "target": "npm:@eslint/eslintrc", + "type": "static" + }, + { + "source": "npm:eslint", + "target": "npm:@eslint/js", + "type": "static" + }, + { + "source": "npm:eslint", + "target": "npm:@eslint/plugin-kit", + "type": "static" + }, + { + "source": "npm:eslint", + "target": "npm:@humanfs/node", + "type": "static" + }, + { + "source": "npm:eslint", + "target": "npm:@humanwhocodes/module-importer", + "type": "static" + }, + { + "source": "npm:eslint", + "target": "npm:@humanwhocodes/retry", + "type": "static" + }, + { + "source": "npm:eslint", + "target": "npm:@types/estree", + "type": "static" + }, + { + "source": "npm:eslint", + "target": "npm:ajv", + "type": "static" + }, + { + "source": "npm:eslint", + "target": "npm:chalk", + "type": "static" + }, + { + "source": "npm:eslint", + "target": "npm:cross-spawn", + "type": "static" + }, + { + "source": "npm:eslint", + "target": "npm:debug", + "type": "static" + }, + { + "source": "npm:eslint", + "target": "npm:escape-string-regexp", + "type": "static" + }, + { + "source": "npm:eslint", + "target": "npm:eslint-scope", + "type": "static" + }, + { + "source": "npm:eslint", + "target": "npm:eslint-visitor-keys", + "type": "static" + }, + { + "source": "npm:eslint", + "target": "npm:espree@10.4.0", + "type": "static" + }, + { + "source": "npm:eslint", + "target": "npm:esquery", + "type": "static" + }, + { + "source": "npm:eslint", + "target": "npm:esutils", + "type": "static" + }, + { + "source": "npm:eslint", + "target": "npm:fast-deep-equal", + "type": "static" + }, + { + "source": "npm:eslint", + "target": "npm:file-entry-cache", + "type": "static" + }, + { + "source": "npm:eslint", + "target": "npm:find-up", + "type": "static" + }, + { + "source": "npm:eslint", + "target": "npm:glob-parent", + "type": "static" + }, + { + "source": "npm:eslint", + "target": "npm:ignore", + "type": "static" + }, + { + "source": "npm:eslint", + "target": "npm:imurmurhash", + "type": "static" + }, + { + "source": "npm:eslint", + "target": "npm:is-glob", + "type": "static" + }, + { + "source": "npm:eslint", + "target": "npm:json-stable-stringify-without-jsonify", + "type": "static" + }, + { + "source": "npm:eslint", + "target": "npm:lodash.merge", + "type": "static" + }, + { + "source": "npm:eslint", + "target": "npm:minimatch", + "type": "static" + }, + { + "source": "npm:eslint", + "target": "npm:natural-compare", + "type": "static" + }, + { + "source": "npm:eslint", + "target": "npm:optionator", + "type": "static" + }, + { + "source": "npm:eslint", + "target": "npm:jiti", + "type": "static" + }, + { + "source": "npm:espree@10.4.0", + "target": "npm:acorn", + "type": "static" + }, + { + "source": "npm:espree@10.4.0", + "target": "npm:acorn-jsx", + "type": "static" + }, + { + "source": "npm:espree@10.4.0", + "target": "npm:eslint-visitor-keys", + "type": "static" + }, + { + "source": "npm:espree", + "target": "npm:acorn", + "type": "static" + }, + { + "source": "npm:espree", + "target": "npm:acorn-jsx", + "type": "static" + }, + { + "source": "npm:espree", + "target": "npm:eslint-visitor-keys@5.0.1", + "type": "static" + }, + { + "source": "npm:esquery", + "target": "npm:estraverse", + "type": "static" + }, + { + "source": "npm:esrecurse", + "target": "npm:estraverse", + "type": "static" + }, + { + "source": "npm:estree-walker", + "target": "npm:@types/estree", + "type": "static" + }, + { + "source": "npm:events-universal", + "target": "npm:bare-events", + "type": "static" + }, + { + "source": "npm:execa", + "target": "npm:@sindresorhus/merge-streams", + "type": "static" + }, + { + "source": "npm:execa", + "target": "npm:cross-spawn", + "type": "static" + }, + { + "source": "npm:execa", + "target": "npm:figures", + "type": "static" + }, + { + "source": "npm:execa", + "target": "npm:get-stream", + "type": "static" + }, + { + "source": "npm:execa", + "target": "npm:human-signals", + "type": "static" + }, + { + "source": "npm:execa", + "target": "npm:is-plain-obj", + "type": "static" + }, + { + "source": "npm:execa", + "target": "npm:is-stream", + "type": "static" + }, + { + "source": "npm:execa", + "target": "npm:npm-run-path", + "type": "static" + }, + { + "source": "npm:execa", + "target": "npm:pretty-ms", + "type": "static" + }, + { + "source": "npm:execa", + "target": "npm:signal-exit", + "type": "static" + }, + { + "source": "npm:execa", + "target": "npm:strip-final-newline", + "type": "static" + }, + { + "source": "npm:execa", + "target": "npm:yoctocolors", + "type": "static" + }, + { + "source": "npm:express", + "target": "npm:accepts", + "type": "static" + }, + { + "source": "npm:express", + "target": "npm:body-parser", + "type": "static" + }, + { + "source": "npm:express", + "target": "npm:content-disposition", + "type": "static" + }, + { + "source": "npm:express", + "target": "npm:content-type", + "type": "static" + }, + { + "source": "npm:express", + "target": "npm:cookie", + "type": "static" + }, + { + "source": "npm:express", + "target": "npm:cookie-signature", + "type": "static" + }, + { + "source": "npm:express", + "target": "npm:debug", + "type": "static" + }, + { + "source": "npm:express", + "target": "npm:depd", + "type": "static" + }, + { + "source": "npm:express", + "target": "npm:encodeurl", + "type": "static" + }, + { + "source": "npm:express", + "target": "npm:escape-html", + "type": "static" + }, + { + "source": "npm:express", + "target": "npm:etag", + "type": "static" + }, + { + "source": "npm:express", + "target": "npm:finalhandler", + "type": "static" + }, + { + "source": "npm:express", + "target": "npm:fresh", + "type": "static" + }, + { + "source": "npm:express", + "target": "npm:http-errors", + "type": "static" + }, + { + "source": "npm:express", + "target": "npm:merge-descriptors", + "type": "static" + }, + { + "source": "npm:express", + "target": "npm:mime-types", + "type": "static" + }, + { + "source": "npm:express", + "target": "npm:on-finished", + "type": "static" + }, + { + "source": "npm:express", + "target": "npm:once", + "type": "static" + }, + { + "source": "npm:express", + "target": "npm:parseurl", + "type": "static" + }, + { + "source": "npm:express", + "target": "npm:proxy-addr", + "type": "static" + }, + { + "source": "npm:express", + "target": "npm:qs", + "type": "static" + }, + { + "source": "npm:express", + "target": "npm:range-parser", + "type": "static" + }, + { + "source": "npm:express", + "target": "npm:router", + "type": "static" + }, + { + "source": "npm:express", + "target": "npm:send", + "type": "static" + }, + { + "source": "npm:express", + "target": "npm:serve-static", + "type": "static" + }, + { + "source": "npm:express", + "target": "npm:statuses", + "type": "static" + }, + { + "source": "npm:express", + "target": "npm:type-is", + "type": "static" + }, + { + "source": "npm:express", + "target": "npm:vary", + "type": "static" + }, + { + "source": "npm:extract-zip", + "target": "npm:debug", + "type": "static" + }, + { + "source": "npm:extract-zip", + "target": "npm:get-stream@5.2.0", + "type": "static" + }, + { + "source": "npm:extract-zip", + "target": "npm:yauzl", + "type": "static" + }, + { + "source": "npm:extract-zip", + "target": "npm:@types/yauzl", + "type": "static" + }, + { + "source": "npm:fast-check", + "target": "npm:pure-rand", + "type": "static" + }, + { + "source": "npm:fast-glob", + "target": "npm:@nodelib/fs.stat", + "type": "static" + }, + { + "source": "npm:fast-glob", + "target": "npm:@nodelib/fs.walk", + "type": "static" + }, + { + "source": "npm:fast-glob", + "target": "npm:glob-parent@5.1.2", + "type": "static" + }, + { + "source": "npm:fast-glob", + "target": "npm:merge2", + "type": "static" + }, + { + "source": "npm:fast-glob", + "target": "npm:micromatch", + "type": "static" + }, + { + "source": "npm:fast-json-stringify", + "target": "npm:@fastify/merge-json-schemas", + "type": "static" + }, + { + "source": "npm:fast-json-stringify", + "target": "npm:ajv@8.18.0", + "type": "static" + }, + { + "source": "npm:fast-json-stringify", + "target": "npm:ajv-formats", + "type": "static" + }, + { + "source": "npm:fast-json-stringify", + "target": "npm:fast-uri", + "type": "static" + }, + { + "source": "npm:fast-json-stringify", + "target": "npm:json-schema-ref-resolver", + "type": "static" + }, + { + "source": "npm:fast-json-stringify", + "target": "npm:rfdc", + "type": "static" + }, + { + "source": "npm:fast-querystring", + "target": "npm:fast-decode-uri-component", + "type": "static" + }, + { + "source": "npm:fast-string-width", + "target": "npm:fast-string-truncated-width", + "type": "static" + }, + { + "source": "npm:fast-wrap-ansi", + "target": "npm:fast-string-width", + "type": "static" + }, + { + "source": "npm:fastify-raw-body", + "target": "npm:fastify-plugin", + "type": "static" + }, + { + "source": "npm:fastify-raw-body", + "target": "npm:raw-body", + "type": "static" + }, + { + "source": "npm:fastify-raw-body", + "target": "npm:secure-json-parse", + "type": "static" + }, + { + "source": "npm:fastify", + "target": "npm:@fastify/ajv-compiler", + "type": "static" + }, + { + "source": "npm:fastify", + "target": "npm:@fastify/error", + "type": "static" + }, + { + "source": "npm:fastify", + "target": "npm:@fastify/fast-json-stringify-compiler", + "type": "static" + }, + { + "source": "npm:fastify", + "target": "npm:@fastify/proxy-addr", + "type": "static" + }, + { + "source": "npm:fastify", + "target": "npm:abstract-logging", + "type": "static" + }, + { + "source": "npm:fastify", + "target": "npm:avvio", + "type": "static" + }, + { + "source": "npm:fastify", + "target": "npm:fast-json-stringify", + "type": "static" + }, + { + "source": "npm:fastify", + "target": "npm:find-my-way", + "type": "static" + }, + { + "source": "npm:fastify", + "target": "npm:light-my-request", + "type": "static" + }, + { + "source": "npm:fastify", + "target": "npm:pino", + "type": "static" + }, + { + "source": "npm:fastify", + "target": "npm:process-warning", + "type": "static" + }, + { + "source": "npm:fastify", + "target": "npm:rfdc", + "type": "static" + }, + { + "source": "npm:fastify", + "target": "npm:secure-json-parse@4.1.0", + "type": "static" + }, + { + "source": "npm:fastify", + "target": "npm:semver@7.7.4", + "type": "static" + }, + { + "source": "npm:fastify", + "target": "npm:toad-cache", + "type": "static" + }, + { + "source": "npm:fastq", + "target": "npm:reusify", + "type": "static" + }, + { + "source": "npm:fd-package-json", + "target": "npm:walk-up-path", + "type": "static" + }, + { + "source": "npm:fd-slicer", + "target": "npm:pend", + "type": "static" + }, + { + "source": "npm:fdir", + "target": "npm:picomatch", + "type": "static" + }, + { + "source": "npm:fetch-blob", + "target": "npm:node-domexception", + "type": "static" + }, + { + "source": "npm:fetch-blob", + "target": "npm:web-streams-polyfill", + "type": "static" + }, + { + "source": "npm:figures@3.2.0", + "target": "npm:escape-string-regexp@1.0.5", + "type": "static" + }, + { + "source": "npm:figures", + "target": "npm:is-unicode-supported", + "type": "static" + }, + { + "source": "npm:file-entry-cache", + "target": "npm:flat-cache", + "type": "static" + }, + { + "source": "npm:filelist", + "target": "npm:minimatch@5.1.9", + "type": "static" + }, + { + "source": "npm:fill-range", + "target": "npm:to-regex-range", + "type": "static" + }, + { + "source": "npm:finalhandler", + "target": "npm:debug", + "type": "static" + }, + { + "source": "npm:finalhandler", + "target": "npm:encodeurl", + "type": "static" + }, + { + "source": "npm:finalhandler", + "target": "npm:escape-html", + "type": "static" + }, + { + "source": "npm:finalhandler", + "target": "npm:on-finished", + "type": "static" + }, + { + "source": "npm:finalhandler", + "target": "npm:parseurl", + "type": "static" + }, + { + "source": "npm:finalhandler", + "target": "npm:statuses", + "type": "static" + }, + { + "source": "npm:find-babel-config", + "target": "npm:json5", + "type": "static" + }, + { + "source": "npm:find-my-way", + "target": "npm:fast-deep-equal", + "type": "static" + }, + { + "source": "npm:find-my-way", + "target": "npm:fast-querystring", + "type": "static" + }, + { + "source": "npm:find-my-way", + "target": "npm:safe-regex2", + "type": "static" + }, + { + "source": "npm:find-up@3.0.0", + "target": "npm:locate-path@3.0.0", + "type": "static" + }, + { + "source": "npm:find-up", + "target": "npm:locate-path", + "type": "static" + }, + { + "source": "npm:find-up", + "target": "npm:path-exists", + "type": "static" + }, + { + "source": "npm:flat-cache", + "target": "npm:flatted", + "type": "static" + }, + { + "source": "npm:flat-cache", + "target": "npm:keyv", + "type": "static" + }, + { + "source": "npm:for-each", + "target": "npm:is-callable", + "type": "static" + }, + { + "source": "npm:foreground-child", + "target": "npm:cross-spawn", + "type": "static" + }, + { + "source": "npm:foreground-child", + "target": "npm:signal-exit", + "type": "static" + }, + { + "source": "npm:form-data", + "target": "npm:asynckit", + "type": "static" + }, + { + "source": "npm:form-data", + "target": "npm:combined-stream", + "type": "static" + }, + { + "source": "npm:form-data", + "target": "npm:es-set-tostringtag", + "type": "static" + }, + { + "source": "npm:form-data", + "target": "npm:hasown", + "type": "static" + }, + { + "source": "npm:form-data", + "target": "npm:mime-types@2.1.35", + "type": "static" + }, + { + "source": "npm:formatly", + "target": "npm:fd-package-json", + "type": "static" + }, + { + "source": "npm:formdata-polyfill", + "target": "npm:fetch-blob", + "type": "static" + }, + { + "source": "npm:front-matter", + "target": "npm:js-yaml@3.14.2", + "type": "static" + }, + { + "source": "npm:fs-minipass", + "target": "npm:minipass", + "type": "static" + }, + { + "source": "npm:function.prototype.name", + "target": "npm:call-bind", + "type": "static" + }, + { + "source": "npm:function.prototype.name", + "target": "npm:call-bound", + "type": "static" + }, + { + "source": "npm:function.prototype.name", + "target": "npm:define-properties", + "type": "static" + }, + { + "source": "npm:function.prototype.name", + "target": "npm:functions-have-names", + "type": "static" + }, + { + "source": "npm:function.prototype.name", + "target": "npm:hasown", + "type": "static" + }, + { + "source": "npm:function.prototype.name", + "target": "npm:is-callable", + "type": "static" + }, + { + "source": "npm:generate-function", + "target": "npm:is-property", + "type": "static" + }, + { + "source": "npm:get-intrinsic", + "target": "npm:call-bind-apply-helpers", + "type": "static" + }, + { + "source": "npm:get-intrinsic", + "target": "npm:es-define-property", + "type": "static" + }, + { + "source": "npm:get-intrinsic", + "target": "npm:es-errors", + "type": "static" + }, + { + "source": "npm:get-intrinsic", + "target": "npm:es-object-atoms", + "type": "static" + }, + { + "source": "npm:get-intrinsic", + "target": "npm:function-bind", + "type": "static" + }, + { + "source": "npm:get-intrinsic", + "target": "npm:get-proto", + "type": "static" + }, + { + "source": "npm:get-intrinsic", + "target": "npm:gopd", + "type": "static" + }, + { + "source": "npm:get-intrinsic", + "target": "npm:has-symbols", + "type": "static" + }, + { + "source": "npm:get-intrinsic", + "target": "npm:hasown", + "type": "static" + }, + { + "source": "npm:get-intrinsic", + "target": "npm:math-intrinsics", + "type": "static" + }, + { + "source": "npm:get-proto", + "target": "npm:dunder-proto", + "type": "static" + }, + { + "source": "npm:get-proto", + "target": "npm:es-object-atoms", + "type": "static" + }, + { + "source": "npm:get-stream@5.2.0", + "target": "npm:pump", + "type": "static" + }, + { + "source": "npm:get-stream", + "target": "npm:@sec-ant/readable-stream", + "type": "static" + }, + { + "source": "npm:get-stream", + "target": "npm:is-stream", + "type": "static" + }, + { + "source": "npm:get-symbol-description", + "target": "npm:call-bound", + "type": "static" + }, + { + "source": "npm:get-symbol-description", + "target": "npm:es-errors", + "type": "static" + }, + { + "source": "npm:get-symbol-description", + "target": "npm:get-intrinsic", + "type": "static" + }, + { + "source": "npm:get-tsconfig", + "target": "npm:resolve-pkg-maps", + "type": "static" + }, + { + "source": "npm:get-uri", + "target": "npm:basic-ftp", + "type": "static" + }, + { + "source": "npm:get-uri", + "target": "npm:data-uri-to-buffer@6.0.2", + "type": "static" + }, + { + "source": "npm:get-uri", + "target": "npm:debug", + "type": "static" + }, + { + "source": "npm:giget", + "target": "npm:citty@0.1.6", + "type": "static" + }, + { + "source": "npm:giget", + "target": "npm:consola", + "type": "static" + }, + { + "source": "npm:giget", + "target": "npm:defu", + "type": "static" + }, + { + "source": "npm:giget", + "target": "npm:node-fetch-native", + "type": "static" + }, + { + "source": "npm:giget", + "target": "npm:nypm", + "type": "static" + }, + { + "source": "npm:giget", + "target": "npm:pathe", + "type": "static" + }, + { + "source": "npm:glob-parent@5.1.2", + "target": "npm:is-glob", + "type": "static" + }, + { + "source": "npm:glob-parent", + "target": "npm:is-glob", + "type": "static" + }, + { + "source": "npm:glob@10.5.0", + "target": "npm:foreground-child", + "type": "static" + }, + { + "source": "npm:glob@10.5.0", + "target": "npm:jackspeak@3.4.3", + "type": "static" + }, + { + "source": "npm:glob@10.5.0", + "target": "npm:minimatch@9.0.5", + "type": "static" + }, + { + "source": "npm:glob@10.5.0", + "target": "npm:minipass", + "type": "static" + }, + { + "source": "npm:glob@10.5.0", + "target": "npm:package-json-from-dist", + "type": "static" + }, + { + "source": "npm:glob@10.5.0", + "target": "npm:path-scurry@1.11.1", + "type": "static" + }, + { + "source": "npm:glob", + "target": "npm:minimatch@10.2.3", + "type": "static" + }, + { + "source": "npm:glob", + "target": "npm:minipass", + "type": "static" + }, + { + "source": "npm:glob", + "target": "npm:path-scurry", + "type": "static" + }, + { + "source": "npm:glob@9.3.5", + "target": "npm:fs.realpath", + "type": "static" + }, + { + "source": "npm:glob@9.3.5", + "target": "npm:minimatch@8.0.4", + "type": "static" + }, + { + "source": "npm:glob@9.3.5", + "target": "npm:minipass@4.2.8", + "type": "static" + }, + { + "source": "npm:glob@9.3.5", + "target": "npm:path-scurry@1.11.1", + "type": "static" + }, + { + "source": "npm:globalthis", + "target": "npm:define-properties", + "type": "static" + }, + { + "source": "npm:globalthis", + "target": "npm:gopd", + "type": "static" + }, + { + "source": "npm:globby", + "target": "npm:@sindresorhus/merge-streams", + "type": "static" + }, + { + "source": "npm:globby", + "target": "npm:fast-glob", + "type": "static" + }, + { + "source": "npm:globby", + "target": "npm:ignore@7.0.5", + "type": "static" + }, + { + "source": "npm:globby", + "target": "npm:is-path-inside", + "type": "static" + }, + { + "source": "npm:globby", + "target": "npm:slash", + "type": "static" + }, + { + "source": "npm:globby", + "target": "npm:unicorn-magic", + "type": "static" + }, + { + "source": "npm:got", + "target": "npm:@sindresorhus/is", + "type": "static" + }, + { + "source": "npm:got", + "target": "npm:@szmarczak/http-timer", + "type": "static" + }, + { + "source": "npm:got", + "target": "npm:@types/cacheable-request", + "type": "static" + }, + { + "source": "npm:got", + "target": "npm:@types/responselike", + "type": "static" + }, + { + "source": "npm:got", + "target": "npm:cacheable-lookup", + "type": "static" + }, + { + "source": "npm:got", + "target": "npm:cacheable-request", + "type": "static" + }, + { + "source": "npm:got", + "target": "npm:decompress-response", + "type": "static" + }, + { + "source": "npm:got", + "target": "npm:http2-wrapper", + "type": "static" + }, + { + "source": "npm:got", + "target": "npm:lowercase-keys", + "type": "static" + }, + { + "source": "npm:got", + "target": "npm:p-cancelable", + "type": "static" + }, + { + "source": "npm:got", + "target": "npm:responselike", + "type": "static" + }, + { + "source": "npm:h3", + "target": "npm:cookie-es", + "type": "static" + }, + { + "source": "npm:h3", + "target": "npm:crossws", + "type": "static" + }, + { + "source": "npm:h3", + "target": "npm:defu", + "type": "static" + }, + { + "source": "npm:h3", + "target": "npm:destr", + "type": "static" + }, + { + "source": "npm:h3", + "target": "npm:iron-webcrypto", + "type": "static" + }, + { + "source": "npm:h3", + "target": "npm:node-mock-http", + "type": "static" + }, + { + "source": "npm:h3", + "target": "npm:radix3", + "type": "static" + }, + { + "source": "npm:h3", + "target": "npm:ufo", + "type": "static" + }, + { + "source": "npm:h3", + "target": "npm:uncrypto", + "type": "static" + }, + { + "source": "npm:has-property-descriptors", + "target": "npm:es-define-property", + "type": "static" + }, + { + "source": "npm:has-proto", + "target": "npm:dunder-proto", + "type": "static" + }, + { + "source": "npm:has-tostringtag", + "target": "npm:has-symbols", + "type": "static" + }, + { + "source": "npm:hasown", + "target": "npm:function-bind", + "type": "static" + }, + { + "source": "npm:html-encoding-sniffer", + "target": "npm:whatwg-encoding", + "type": "static" + }, + { + "source": "npm:http-errors", + "target": "npm:depd", + "type": "static" + }, + { + "source": "npm:http-errors", + "target": "npm:inherits", + "type": "static" + }, + { + "source": "npm:http-errors", + "target": "npm:setprototypeof", + "type": "static" + }, + { + "source": "npm:http-errors", + "target": "npm:statuses", + "type": "static" + }, + { + "source": "npm:http-errors", + "target": "npm:toidentifier", + "type": "static" + }, + { + "source": "npm:http-proxy-agent", + "target": "npm:agent-base", + "type": "static" + }, + { + "source": "npm:http-proxy-agent", + "target": "npm:debug", + "type": "static" + }, + { + "source": "npm:http-proxy", + "target": "npm:eventemitter3", + "type": "static" + }, + { + "source": "npm:http-proxy", + "target": "npm:follow-redirects", + "type": "static" + }, + { + "source": "npm:http-proxy", + "target": "npm:requires-port", + "type": "static" + }, + { + "source": "npm:http-server", + "target": "npm:basic-auth", + "type": "static" + }, + { + "source": "npm:http-server", + "target": "npm:chalk", + "type": "static" + }, + { + "source": "npm:http-server", + "target": "npm:corser", + "type": "static" + }, + { + "source": "npm:http-server", + "target": "npm:he", + "type": "static" + }, + { + "source": "npm:http-server", + "target": "npm:html-encoding-sniffer", + "type": "static" + }, + { + "source": "npm:http-server", + "target": "npm:http-proxy", + "type": "static" + }, + { + "source": "npm:http-server", + "target": "npm:mime", + "type": "static" + }, + { + "source": "npm:http-server", + "target": "npm:minimist", + "type": "static" + }, + { + "source": "npm:http-server", + "target": "npm:opener", + "type": "static" + }, + { + "source": "npm:http-server", + "target": "npm:portfinder", + "type": "static" + }, + { + "source": "npm:http-server", + "target": "npm:secure-compare", + "type": "static" + }, + { + "source": "npm:http-server", + "target": "npm:union", + "type": "static" + }, + { + "source": "npm:http-server", + "target": "npm:url-join", + "type": "static" + }, + { + "source": "npm:http2-wrapper", + "target": "npm:quick-lru", + "type": "static" + }, + { + "source": "npm:http2-wrapper", + "target": "npm:resolve-alpn", + "type": "static" + }, + { + "source": "npm:https-proxy-agent", + "target": "npm:agent-base@6.0.2", + "type": "static" + }, + { + "source": "npm:https-proxy-agent", + "target": "npm:debug", + "type": "static" + }, + { + "source": "npm:https-proxy-agent@7.0.6", + "target": "npm:agent-base", + "type": "static" + }, + { + "source": "npm:https-proxy-agent@7.0.6", + "target": "npm:debug", + "type": "static" + }, + { + "source": "npm:iconv-lite", + "target": "npm:safer-buffer", + "type": "static" + }, + { + "source": "npm:iconv-lite@0.7.2", + "target": "npm:safer-buffer", + "type": "static" + }, + { + "source": "npm:import-fresh", + "target": "npm:parent-module", + "type": "static" + }, + { + "source": "npm:import-fresh", + "target": "npm:resolve-from@4.0.0", + "type": "static" + }, + { + "source": "npm:internal-slot", + "target": "npm:es-errors", + "type": "static" + }, + { + "source": "npm:internal-slot", + "target": "npm:hasown", + "type": "static" + }, + { + "source": "npm:internal-slot", + "target": "npm:side-channel", + "type": "static" + }, + { + "source": "npm:is-array-buffer", + "target": "npm:call-bind", + "type": "static" + }, + { + "source": "npm:is-array-buffer", + "target": "npm:call-bound", + "type": "static" + }, + { + "source": "npm:is-array-buffer", + "target": "npm:get-intrinsic", + "type": "static" + }, + { + "source": "npm:is-async-function", + "target": "npm:async-function", + "type": "static" + }, + { + "source": "npm:is-async-function", + "target": "npm:call-bound", + "type": "static" + }, + { + "source": "npm:is-async-function", + "target": "npm:get-proto", + "type": "static" + }, + { + "source": "npm:is-async-function", + "target": "npm:has-tostringtag", + "type": "static" + }, + { + "source": "npm:is-async-function", + "target": "npm:safe-regex-test", + "type": "static" + }, + { + "source": "npm:is-bigint", + "target": "npm:has-bigints", + "type": "static" + }, + { + "source": "npm:is-boolean-object", + "target": "npm:call-bound", + "type": "static" + }, + { + "source": "npm:is-boolean-object", + "target": "npm:has-tostringtag", + "type": "static" + }, + { + "source": "npm:is-core-module", + "target": "npm:hasown", + "type": "static" + }, + { + "source": "npm:is-data-view", + "target": "npm:call-bound", + "type": "static" + }, + { + "source": "npm:is-data-view", + "target": "npm:get-intrinsic", + "type": "static" + }, + { + "source": "npm:is-data-view", + "target": "npm:is-typed-array", + "type": "static" + }, + { + "source": "npm:is-date-object", + "target": "npm:call-bound", + "type": "static" + }, + { + "source": "npm:is-date-object", + "target": "npm:has-tostringtag", + "type": "static" + }, + { + "source": "npm:is-finalizationregistry", + "target": "npm:call-bound", + "type": "static" + }, + { + "source": "npm:is-generator-function", + "target": "npm:call-bound", + "type": "static" + }, + { + "source": "npm:is-generator-function", + "target": "npm:generator-function", + "type": "static" + }, + { + "source": "npm:is-generator-function", + "target": "npm:get-proto", + "type": "static" + }, + { + "source": "npm:is-generator-function", + "target": "npm:has-tostringtag", + "type": "static" + }, + { + "source": "npm:is-generator-function", + "target": "npm:safe-regex-test", + "type": "static" + }, + { + "source": "npm:is-glob", + "target": "npm:is-extglob", + "type": "static" + }, + { + "source": "npm:is-html", + "target": "npm:html-tags", + "type": "static" + }, + { + "source": "npm:is-number-object", + "target": "npm:call-bound", + "type": "static" + }, + { + "source": "npm:is-number-object", + "target": "npm:has-tostringtag", + "type": "static" + }, + { + "source": "npm:is-regex", + "target": "npm:call-bound", + "type": "static" + }, + { + "source": "npm:is-regex", + "target": "npm:gopd", + "type": "static" + }, + { + "source": "npm:is-regex", + "target": "npm:has-tostringtag", + "type": "static" + }, + { + "source": "npm:is-regex", + "target": "npm:hasown", + "type": "static" + }, + { + "source": "npm:is-shared-array-buffer", + "target": "npm:call-bound", + "type": "static" + }, + { + "source": "npm:is-string", + "target": "npm:call-bound", + "type": "static" + }, + { + "source": "npm:is-string", + "target": "npm:has-tostringtag", + "type": "static" + }, + { + "source": "npm:is-symbol", + "target": "npm:call-bound", + "type": "static" + }, + { + "source": "npm:is-symbol", + "target": "npm:has-symbols", + "type": "static" + }, + { + "source": "npm:is-symbol", + "target": "npm:safe-regex-test", + "type": "static" + }, + { + "source": "npm:is-typed-array", + "target": "npm:which-typed-array", + "type": "static" + }, + { + "source": "npm:is-url-http", + "target": "npm:url-http", + "type": "static" + }, + { + "source": "npm:is-weakref", + "target": "npm:call-bound", + "type": "static" + }, + { + "source": "npm:is-weakset", + "target": "npm:call-bound", + "type": "static" + }, + { + "source": "npm:is-weakset", + "target": "npm:get-intrinsic", + "type": "static" + }, + { + "source": "npm:is-wsl", + "target": "npm:is-docker", + "type": "static" + }, + { + "source": "npm:iterator.prototype", + "target": "npm:define-data-property", + "type": "static" + }, + { + "source": "npm:iterator.prototype", + "target": "npm:es-object-atoms", + "type": "static" + }, + { + "source": "npm:iterator.prototype", + "target": "npm:get-intrinsic", + "type": "static" + }, + { + "source": "npm:iterator.prototype", + "target": "npm:get-proto", + "type": "static" + }, + { + "source": "npm:iterator.prototype", + "target": "npm:has-symbols", + "type": "static" + }, + { + "source": "npm:iterator.prototype", + "target": "npm:set-function-name", + "type": "static" + }, + { + "source": "npm:jackspeak@3.4.3", + "target": "npm:@isaacs/cliui@8.0.2", + "type": "static" + }, + { + "source": "npm:jackspeak@3.4.3", + "target": "npm:@pkgjs/parseargs", + "type": "static" + }, + { + "source": "npm:jackspeak", + "target": "npm:@isaacs/cliui", + "type": "static" + }, + { + "source": "npm:jake", + "target": "npm:async", + "type": "static" + }, + { + "source": "npm:jake", + "target": "npm:filelist", + "type": "static" + }, + { + "source": "npm:jake", + "target": "npm:picocolors", + "type": "static" + }, + { + "source": "npm:jest-diff", + "target": "npm:@jest/diff-sequences", + "type": "static" + }, + { + "source": "npm:jest-diff", + "target": "npm:@jest/get-type", + "type": "static" + }, + { + "source": "npm:jest-diff", + "target": "npm:chalk", + "type": "static" + }, + { + "source": "npm:jest-diff", + "target": "npm:pretty-format", + "type": "static" + }, + { + "source": "npm:js-yaml@3.14.2", + "target": "npm:argparse@1.0.10", + "type": "static" + }, + { + "source": "npm:js-yaml@3.14.2", + "target": "npm:esprima", + "type": "static" + }, + { + "source": "npm:js-yaml", + "target": "npm:argparse", + "type": "static" + }, + { + "source": "npm:json-loose", + "target": "npm:moo", + "type": "static" + }, + { + "source": "npm:json-schema-ref-resolver", + "target": "npm:dequal", + "type": "static" + }, + { + "source": "npm:jsx-ast-utils", + "target": "npm:array-includes", + "type": "static" + }, + { + "source": "npm:jsx-ast-utils", + "target": "npm:array.prototype.flat", + "type": "static" + }, + { + "source": "npm:jsx-ast-utils", + "target": "npm:object.assign", + "type": "static" + }, + { + "source": "npm:jsx-ast-utils", + "target": "npm:object.values", + "type": "static" + }, + { + "source": "npm:keyv", + "target": "npm:json-buffer", + "type": "static" + }, + { + "source": "npm:knip", + "target": "npm:@nodelib/fs.walk", + "type": "static" + }, + { + "source": "npm:knip", + "target": "npm:@types/node", + "type": "static" + }, + { + "source": "npm:knip", + "target": "npm:fast-glob", + "type": "static" + }, + { + "source": "npm:knip", + "target": "npm:formatly", + "type": "static" + }, + { + "source": "npm:knip", + "target": "npm:jiti", + "type": "static" + }, + { + "source": "npm:knip", + "target": "npm:minimist", + "type": "static" + }, + { + "source": "npm:knip", + "target": "npm:oxc-resolver", + "type": "static" + }, + { + "source": "npm:knip", + "target": "npm:picocolors", + "type": "static" + }, + { + "source": "npm:knip", + "target": "npm:picomatch", + "type": "static" + }, + { + "source": "npm:knip", + "target": "npm:smol-toml", + "type": "static" + }, + { + "source": "npm:knip", + "target": "npm:strip-json-comments", + "type": "static" + }, + { + "source": "npm:knip", + "target": "npm:typescript", + "type": "static" + }, + { + "source": "npm:knip", + "target": "npm:unbash", + "type": "static" + }, + { + "source": "npm:knip", + "target": "npm:yaml", + "type": "static" + }, + { + "source": "npm:knip", + "target": "npm:zod@4.3.6", + "type": "static" + }, + { + "source": "npm:kysely-d1", + "target": "npm:kysely", + "type": "static" + }, + { + "source": "npm:levn", + "target": "npm:prelude-ls", + "type": "static" + }, + { + "source": "npm:levn", + "target": "npm:type-check", + "type": "static" + }, + { + "source": "npm:light-my-request", + "target": "npm:cookie@1.1.1", + "type": "static" + }, + { + "source": "npm:light-my-request", + "target": "npm:process-warning@4.0.1", + "type": "static" + }, + { + "source": "npm:light-my-request", + "target": "npm:set-cookie-parser", + "type": "static" + }, + { + "source": "npm:lightningcss", + "target": "npm:detect-libc", + "type": "static" + }, + { + "source": "npm:lightningcss", + "target": "npm:lightningcss-android-arm64", + "type": "static" + }, + { + "source": "npm:lightningcss", + "target": "npm:lightningcss-darwin-arm64", + "type": "static" + }, + { + "source": "npm:lightningcss", + "target": "npm:lightningcss-darwin-x64", + "type": "static" + }, + { + "source": "npm:lightningcss", + "target": "npm:lightningcss-freebsd-x64", + "type": "static" + }, + { + "source": "npm:lightningcss", + "target": "npm:lightningcss-linux-arm-gnueabihf", + "type": "static" + }, + { + "source": "npm:lightningcss", + "target": "npm:lightningcss-linux-arm64-gnu", + "type": "static" + }, + { + "source": "npm:lightningcss", + "target": "npm:lightningcss-linux-arm64-musl", + "type": "static" + }, + { + "source": "npm:lightningcss", + "target": "npm:lightningcss-linux-x64-gnu", + "type": "static" + }, + { + "source": "npm:lightningcss", + "target": "npm:lightningcss-linux-x64-musl", + "type": "static" + }, + { + "source": "npm:lightningcss", + "target": "npm:lightningcss-win32-arm64-msvc", + "type": "static" + }, + { + "source": "npm:lightningcss", + "target": "npm:lightningcss-win32-x64-msvc", + "type": "static" + }, + { + "source": "npm:locate-path@3.0.0", + "target": "npm:p-locate@3.0.0", + "type": "static" + }, + { + "source": "npm:locate-path@3.0.0", + "target": "npm:path-exists@3.0.0", + "type": "static" + }, + { + "source": "npm:locate-path", + "target": "npm:p-locate", + "type": "static" + }, + { + "source": "npm:log-symbols", + "target": "npm:chalk", + "type": "static" + }, + { + "source": "npm:log-symbols", + "target": "npm:is-unicode-supported@0.1.0", + "type": "static" + }, + { + "source": "npm:loose-envify", + "target": "npm:js-tokens", + "type": "static" + }, + { + "source": "npm:lru-cache", + "target": "npm:yallist", + "type": "static" + }, + { + "source": "npm:lucide-react", + "target": "npm:react", + "type": "static" + }, + { + "source": "npm:magic-regexp", + "target": "npm:estree-walker", + "type": "static" + }, + { + "source": "npm:magic-regexp", + "target": "npm:magic-string", + "type": "static" + }, + { + "source": "npm:magic-regexp", + "target": "npm:mlly", + "type": "static" + }, + { + "source": "npm:magic-regexp", + "target": "npm:regexp-tree", + "type": "static" + }, + { + "source": "npm:magic-regexp", + "target": "npm:type-level-regexp", + "type": "static" + }, + { + "source": "npm:magic-regexp", + "target": "npm:ufo", + "type": "static" + }, + { + "source": "npm:magic-regexp", + "target": "npm:unplugin", + "type": "static" + }, + { + "source": "npm:magic-string", + "target": "npm:@jridgewell/sourcemap-codec", + "type": "static" + }, + { + "source": "npm:magicast", + "target": "npm:@babel/parser", + "type": "static" + }, + { + "source": "npm:magicast", + "target": "npm:@babel/types", + "type": "static" + }, + { + "source": "npm:magicast", + "target": "npm:source-map-js", + "type": "static" + }, + { + "source": "npm:make-fetch-happen", + "target": "npm:@npmcli/agent", + "type": "static" + }, + { + "source": "npm:make-fetch-happen", + "target": "npm:cacache", + "type": "static" + }, + { + "source": "npm:make-fetch-happen", + "target": "npm:http-cache-semantics", + "type": "static" + }, + { + "source": "npm:make-fetch-happen", + "target": "npm:minipass", + "type": "static" + }, + { + "source": "npm:make-fetch-happen", + "target": "npm:minipass-fetch", + "type": "static" + }, + { + "source": "npm:make-fetch-happen", + "target": "npm:minipass-flush", + "type": "static" + }, + { + "source": "npm:make-fetch-happen", + "target": "npm:minipass-pipeline", + "type": "static" + }, + { + "source": "npm:make-fetch-happen", + "target": "npm:negotiator", + "type": "static" + }, + { + "source": "npm:make-fetch-happen", + "target": "npm:proc-log", + "type": "static" + }, + { + "source": "npm:make-fetch-happen", + "target": "npm:promise-retry", + "type": "static" + }, + { + "source": "npm:make-fetch-happen", + "target": "npm:ssri", + "type": "static" + }, + { + "source": "npm:mdast-builder", + "target": "npm:@types/unist", + "type": "static" + }, + { + "source": "npm:mdast-util-from-markdown", + "target": "npm:@types/mdast", + "type": "static" + }, + { + "source": "npm:mdast-util-from-markdown", + "target": "npm:@types/unist@3.0.3", + "type": "static" + }, + { + "source": "npm:mdast-util-from-markdown", + "target": "npm:decode-named-character-reference", + "type": "static" + }, + { + "source": "npm:mdast-util-from-markdown", + "target": "npm:devlop", + "type": "static" + }, + { + "source": "npm:mdast-util-from-markdown", + "target": "npm:mdast-util-to-string", + "type": "static" + }, + { + "source": "npm:mdast-util-from-markdown", + "target": "npm:micromark", + "type": "static" + }, + { + "source": "npm:mdast-util-from-markdown", + "target": "npm:micromark-util-decode-numeric-character-reference", + "type": "static" + }, + { + "source": "npm:mdast-util-from-markdown", + "target": "npm:micromark-util-decode-string", + "type": "static" + }, + { + "source": "npm:mdast-util-from-markdown", + "target": "npm:micromark-util-normalize-identifier", + "type": "static" + }, + { + "source": "npm:mdast-util-from-markdown", + "target": "npm:micromark-util-symbol", + "type": "static" + }, + { + "source": "npm:mdast-util-from-markdown", + "target": "npm:micromark-util-types", + "type": "static" + }, + { + "source": "npm:mdast-util-from-markdown", + "target": "npm:unist-util-stringify-position", + "type": "static" + }, + { + "source": "npm:mdast-util-phrasing", + "target": "npm:@types/mdast", + "type": "static" + }, + { + "source": "npm:mdast-util-phrasing", + "target": "npm:unist-util-is", + "type": "static" + }, + { + "source": "npm:mdast-util-to-markdown", + "target": "npm:@types/mdast", + "type": "static" + }, + { + "source": "npm:mdast-util-to-markdown", + "target": "npm:@types/unist@3.0.3", + "type": "static" + }, + { + "source": "npm:mdast-util-to-markdown", + "target": "npm:longest-streak", + "type": "static" + }, + { + "source": "npm:mdast-util-to-markdown", + "target": "npm:mdast-util-phrasing", + "type": "static" + }, + { + "source": "npm:mdast-util-to-markdown", + "target": "npm:mdast-util-to-string", + "type": "static" + }, + { + "source": "npm:mdast-util-to-markdown", + "target": "npm:micromark-util-classify-character", + "type": "static" + }, + { + "source": "npm:mdast-util-to-markdown", + "target": "npm:micromark-util-decode-string", + "type": "static" + }, + { + "source": "npm:mdast-util-to-markdown", + "target": "npm:unist-util-visit", + "type": "static" + }, + { + "source": "npm:mdast-util-to-markdown", + "target": "npm:zwitch", + "type": "static" + }, + { + "source": "npm:mdast-util-to-string", + "target": "npm:@types/mdast", + "type": "static" + }, + { + "source": "npm:mdast-util-toc", + "target": "npm:@types/mdast", + "type": "static" + }, + { + "source": "npm:mdast-util-toc", + "target": "npm:@types/ungap__structured-clone", + "type": "static" + }, + { + "source": "npm:mdast-util-toc", + "target": "npm:@ungap/structured-clone", + "type": "static" + }, + { + "source": "npm:mdast-util-toc", + "target": "npm:github-slugger", + "type": "static" + }, + { + "source": "npm:mdast-util-toc", + "target": "npm:mdast-util-to-string", + "type": "static" + }, + { + "source": "npm:mdast-util-toc", + "target": "npm:unist-util-is", + "type": "static" + }, + { + "source": "npm:mdast-util-toc", + "target": "npm:unist-util-visit", + "type": "static" + }, + { + "source": "npm:merge-anything", + "target": "npm:is-what", + "type": "static" + }, + { + "source": "npm:micromark-core-commonmark", + "target": "npm:decode-named-character-reference", + "type": "static" + }, + { + "source": "npm:micromark-core-commonmark", + "target": "npm:devlop", + "type": "static" + }, + { + "source": "npm:micromark-core-commonmark", + "target": "npm:micromark-factory-destination", + "type": "static" + }, + { + "source": "npm:micromark-core-commonmark", + "target": "npm:micromark-factory-label", + "type": "static" + }, + { + "source": "npm:micromark-core-commonmark", + "target": "npm:micromark-factory-space", + "type": "static" + }, + { + "source": "npm:micromark-core-commonmark", + "target": "npm:micromark-factory-title", + "type": "static" + }, + { + "source": "npm:micromark-core-commonmark", + "target": "npm:micromark-factory-whitespace", + "type": "static" + }, + { + "source": "npm:micromark-core-commonmark", + "target": "npm:micromark-util-character", + "type": "static" + }, + { + "source": "npm:micromark-core-commonmark", + "target": "npm:micromark-util-chunked", + "type": "static" + }, + { + "source": "npm:micromark-core-commonmark", + "target": "npm:micromark-util-classify-character", + "type": "static" + }, + { + "source": "npm:micromark-core-commonmark", + "target": "npm:micromark-util-html-tag-name", + "type": "static" + }, + { + "source": "npm:micromark-core-commonmark", + "target": "npm:micromark-util-normalize-identifier", + "type": "static" + }, + { + "source": "npm:micromark-core-commonmark", + "target": "npm:micromark-util-resolve-all", + "type": "static" + }, + { + "source": "npm:micromark-core-commonmark", + "target": "npm:micromark-util-subtokenize", + "type": "static" + }, + { + "source": "npm:micromark-core-commonmark", + "target": "npm:micromark-util-symbol", + "type": "static" + }, + { + "source": "npm:micromark-core-commonmark", + "target": "npm:micromark-util-types", + "type": "static" + }, + { + "source": "npm:micromark-factory-destination", + "target": "npm:micromark-util-character", + "type": "static" + }, + { + "source": "npm:micromark-factory-destination", + "target": "npm:micromark-util-symbol", + "type": "static" + }, + { + "source": "npm:micromark-factory-destination", + "target": "npm:micromark-util-types", + "type": "static" + }, + { + "source": "npm:micromark-factory-label", + "target": "npm:devlop", + "type": "static" + }, + { + "source": "npm:micromark-factory-label", + "target": "npm:micromark-util-character", + "type": "static" + }, + { + "source": "npm:micromark-factory-label", + "target": "npm:micromark-util-symbol", + "type": "static" + }, + { + "source": "npm:micromark-factory-label", + "target": "npm:micromark-util-types", + "type": "static" + }, + { + "source": "npm:micromark-factory-space", + "target": "npm:micromark-util-character", + "type": "static" + }, + { + "source": "npm:micromark-factory-space", + "target": "npm:micromark-util-types", + "type": "static" + }, + { + "source": "npm:micromark-factory-title", + "target": "npm:micromark-factory-space", + "type": "static" + }, + { + "source": "npm:micromark-factory-title", + "target": "npm:micromark-util-character", + "type": "static" + }, + { + "source": "npm:micromark-factory-title", + "target": "npm:micromark-util-symbol", + "type": "static" + }, + { + "source": "npm:micromark-factory-title", + "target": "npm:micromark-util-types", + "type": "static" + }, + { + "source": "npm:micromark-factory-whitespace", + "target": "npm:micromark-factory-space", + "type": "static" + }, + { + "source": "npm:micromark-factory-whitespace", + "target": "npm:micromark-util-character", + "type": "static" + }, + { + "source": "npm:micromark-factory-whitespace", + "target": "npm:micromark-util-symbol", + "type": "static" + }, + { + "source": "npm:micromark-factory-whitespace", + "target": "npm:micromark-util-types", + "type": "static" + }, + { + "source": "npm:micromark-util-character", + "target": "npm:micromark-util-symbol", + "type": "static" + }, + { + "source": "npm:micromark-util-character", + "target": "npm:micromark-util-types", + "type": "static" + }, + { + "source": "npm:micromark-util-chunked", + "target": "npm:micromark-util-symbol", + "type": "static" + }, + { + "source": "npm:micromark-util-classify-character", + "target": "npm:micromark-util-character", + "type": "static" + }, + { + "source": "npm:micromark-util-classify-character", + "target": "npm:micromark-util-symbol", + "type": "static" + }, + { + "source": "npm:micromark-util-classify-character", + "target": "npm:micromark-util-types", + "type": "static" + }, + { + "source": "npm:micromark-util-combine-extensions", + "target": "npm:micromark-util-chunked", + "type": "static" + }, + { + "source": "npm:micromark-util-combine-extensions", + "target": "npm:micromark-util-types", + "type": "static" + }, + { + "source": "npm:micromark-util-decode-numeric-character-reference", + "target": "npm:micromark-util-symbol", + "type": "static" + }, + { + "source": "npm:micromark-util-decode-string", + "target": "npm:decode-named-character-reference", + "type": "static" + }, + { + "source": "npm:micromark-util-decode-string", + "target": "npm:micromark-util-character", + "type": "static" + }, + { + "source": "npm:micromark-util-decode-string", + "target": "npm:micromark-util-decode-numeric-character-reference", + "type": "static" + }, + { + "source": "npm:micromark-util-decode-string", + "target": "npm:micromark-util-symbol", + "type": "static" + }, + { + "source": "npm:micromark-util-normalize-identifier", + "target": "npm:micromark-util-symbol", + "type": "static" + }, + { + "source": "npm:micromark-util-resolve-all", + "target": "npm:micromark-util-types", + "type": "static" + }, + { + "source": "npm:micromark-util-sanitize-uri", + "target": "npm:micromark-util-character", + "type": "static" + }, + { + "source": "npm:micromark-util-sanitize-uri", + "target": "npm:micromark-util-encode", + "type": "static" + }, + { + "source": "npm:micromark-util-sanitize-uri", + "target": "npm:micromark-util-symbol", + "type": "static" + }, + { + "source": "npm:micromark-util-subtokenize", + "target": "npm:devlop", + "type": "static" + }, + { + "source": "npm:micromark-util-subtokenize", + "target": "npm:micromark-util-chunked", + "type": "static" + }, + { + "source": "npm:micromark-util-subtokenize", + "target": "npm:micromark-util-symbol", + "type": "static" + }, + { + "source": "npm:micromark-util-subtokenize", + "target": "npm:micromark-util-types", + "type": "static" + }, + { + "source": "npm:micromark", + "target": "npm:@types/debug", + "type": "static" + }, + { + "source": "npm:micromark", + "target": "npm:debug", + "type": "static" + }, + { + "source": "npm:micromark", + "target": "npm:decode-named-character-reference", + "type": "static" + }, + { + "source": "npm:micromark", + "target": "npm:devlop", + "type": "static" + }, + { + "source": "npm:micromark", + "target": "npm:micromark-core-commonmark", + "type": "static" + }, + { + "source": "npm:micromark", + "target": "npm:micromark-factory-space", + "type": "static" + }, + { + "source": "npm:micromark", + "target": "npm:micromark-util-character", + "type": "static" + }, + { + "source": "npm:micromark", + "target": "npm:micromark-util-chunked", + "type": "static" + }, + { + "source": "npm:micromark", + "target": "npm:micromark-util-combine-extensions", + "type": "static" + }, + { + "source": "npm:micromark", + "target": "npm:micromark-util-decode-numeric-character-reference", + "type": "static" + }, + { + "source": "npm:micromark", + "target": "npm:micromark-util-encode", + "type": "static" + }, + { + "source": "npm:micromark", + "target": "npm:micromark-util-normalize-identifier", + "type": "static" + }, + { + "source": "npm:micromark", + "target": "npm:micromark-util-resolve-all", + "type": "static" + }, + { + "source": "npm:micromark", + "target": "npm:micromark-util-sanitize-uri", + "type": "static" + }, + { + "source": "npm:micromark", + "target": "npm:micromark-util-subtokenize", + "type": "static" + }, + { + "source": "npm:micromark", + "target": "npm:micromark-util-symbol", + "type": "static" + }, + { + "source": "npm:micromark", + "target": "npm:micromark-util-types", + "type": "static" + }, + { + "source": "npm:micromatch", + "target": "npm:braces", + "type": "static" + }, + { + "source": "npm:micromatch", + "target": "npm:picomatch@2.3.1", + "type": "static" + }, + { + "source": "npm:mime-types@2.1.35", + "target": "npm:mime-db@1.52.0", + "type": "static" + }, + { + "source": "npm:mime-types", + "target": "npm:mime-db", + "type": "static" + }, + { + "source": "npm:miniflare@4.20251217.0", + "target": "npm:@cspotcode/source-map-support", + "type": "static" + }, + { + "source": "npm:miniflare@4.20251217.0", + "target": "npm:acorn@8.14.0", + "type": "static" + }, + { + "source": "npm:miniflare@4.20251217.0", + "target": "npm:acorn-walk", + "type": "static" + }, + { + "source": "npm:miniflare@4.20251217.0", + "target": "npm:exit-hook", + "type": "static" + }, + { + "source": "npm:miniflare@4.20251217.0", + "target": "npm:glob-to-regexp", + "type": "static" + }, + { + "source": "npm:miniflare@4.20251217.0", + "target": "npm:sharp@0.33.5", + "type": "static" + }, + { + "source": "npm:miniflare@4.20251217.0", + "target": "npm:stoppable", + "type": "static" + }, + { + "source": "npm:miniflare@4.20251217.0", + "target": "npm:undici@7.14.0", + "type": "static" + }, + { + "source": "npm:miniflare@4.20251217.0", + "target": "npm:workerd@1.20251217.0", + "type": "static" + }, + { + "source": "npm:miniflare@4.20251217.0", + "target": "npm:ws", + "type": "static" + }, + { + "source": "npm:miniflare@4.20251217.0", + "target": "npm:youch", + "type": "static" + }, + { + "source": "npm:miniflare@4.20251217.0", + "target": "npm:zod@3.22.3", + "type": "static" + }, + { + "source": "npm:miniflare", + "target": "npm:@cspotcode/source-map-support", + "type": "static" + }, + { + "source": "npm:miniflare", + "target": "npm:sharp", + "type": "static" + }, + { + "source": "npm:miniflare", + "target": "npm:undici", + "type": "static" + }, + { + "source": "npm:miniflare", + "target": "npm:workerd", + "type": "static" + }, + { + "source": "npm:miniflare", + "target": "npm:ws", + "type": "static" + }, + { + "source": "npm:miniflare", + "target": "npm:youch", + "type": "static" + }, + { + "source": "npm:minimatch@10.2.3", + "target": "npm:brace-expansion", + "type": "static" + }, + { + "source": "npm:minimatch@10.2.4", + "target": "npm:brace-expansion", + "type": "static" + }, + { + "source": "npm:minimatch", + "target": "npm:brace-expansion@1.1.12", + "type": "static" + }, + { + "source": "npm:minimatch@5.1.9", + "target": "npm:brace-expansion@2.0.2", + "type": "static" + }, + { + "source": "npm:minimatch@8.0.4", + "target": "npm:brace-expansion@2.0.2", + "type": "static" + }, + { + "source": "npm:minimatch@9.0.5", + "target": "npm:brace-expansion@2.0.2", + "type": "static" + }, + { + "source": "npm:minipass-collect", + "target": "npm:minipass", + "type": "static" + }, + { + "source": "npm:minipass-fetch", + "target": "npm:minipass", + "type": "static" + }, + { + "source": "npm:minipass-fetch", + "target": "npm:minipass-sized", + "type": "static" + }, + { + "source": "npm:minipass-fetch", + "target": "npm:minizlib", + "type": "static" + }, + { + "source": "npm:minipass-fetch", + "target": "npm:encoding", + "type": "static" + }, + { + "source": "npm:minipass-flush", + "target": "npm:minipass@3.3.6", + "type": "static" + }, + { + "source": "npm:minipass-pipeline", + "target": "npm:minipass@3.3.6", + "type": "static" + }, + { + "source": "npm:minipass-sized", + "target": "npm:minipass@3.3.6", + "type": "static" + }, + { + "source": "npm:minipass@3.3.6", + "target": "npm:yallist@4.0.0", + "type": "static" + }, + { + "source": "npm:minizlib", + "target": "npm:minipass", + "type": "static" + }, + { + "source": "npm:mlly", + "target": "npm:acorn", + "type": "static" + }, + { + "source": "npm:mlly", + "target": "npm:pathe", + "type": "static" + }, + { + "source": "npm:mlly", + "target": "npm:pkg-types@1.3.1", + "type": "static" + }, + { + "source": "npm:mlly", + "target": "npm:ufo", + "type": "static" + }, + { + "source": "npm:mysql2", + "target": "npm:aws-ssl-profiles", + "type": "static" + }, + { + "source": "npm:mysql2", + "target": "npm:denque", + "type": "static" + }, + { + "source": "npm:mysql2", + "target": "npm:generate-function", + "type": "static" + }, + { + "source": "npm:mysql2", + "target": "npm:iconv-lite@0.7.2", + "type": "static" + }, + { + "source": "npm:mysql2", + "target": "npm:long", + "type": "static" + }, + { + "source": "npm:mysql2", + "target": "npm:lru.min", + "type": "static" + }, + { + "source": "npm:mysql2", + "target": "npm:named-placeholders", + "type": "static" + }, + { + "source": "npm:mysql2", + "target": "npm:seq-queue", + "type": "static" + }, + { + "source": "npm:mysql2", + "target": "npm:sqlstring", + "type": "static" + }, + { + "source": "npm:named-placeholders", + "target": "npm:lru-cache@7.18.3", + "type": "static" + }, + { + "source": "npm:node-abi", + "target": "npm:semver@7.7.4", + "type": "static" + }, + { + "source": "npm:node-fetch@2.7.0", + "target": "npm:whatwg-url", + "type": "static" + }, + { + "source": "npm:node-fetch@2.7.0", + "target": "npm:encoding", + "type": "static" + }, + { + "source": "npm:node-fetch", + "target": "npm:data-uri-to-buffer", + "type": "static" + }, + { + "source": "npm:node-fetch", + "target": "npm:fetch-blob", + "type": "static" + }, + { + "source": "npm:node-fetch", + "target": "npm:formdata-polyfill", + "type": "static" + }, + { + "source": "npm:node-gyp", + "target": "npm:env-paths", + "type": "static" + }, + { + "source": "npm:node-gyp", + "target": "npm:exponential-backoff", + "type": "static" + }, + { + "source": "npm:node-gyp", + "target": "npm:graceful-fs", + "type": "static" + }, + { + "source": "npm:node-gyp", + "target": "npm:make-fetch-happen", + "type": "static" + }, + { + "source": "npm:node-gyp", + "target": "npm:nopt", + "type": "static" + }, + { + "source": "npm:node-gyp", + "target": "npm:proc-log", + "type": "static" + }, + { + "source": "npm:node-gyp", + "target": "npm:semver@7.7.4", + "type": "static" + }, + { + "source": "npm:node-gyp", + "target": "npm:tar", + "type": "static" + }, + { + "source": "npm:node-gyp", + "target": "npm:tinyglobby", + "type": "static" + }, + { + "source": "npm:node-gyp", + "target": "npm:which@5.0.0", + "type": "static" + }, + { + "source": "npm:nopt", + "target": "npm:abbrev", + "type": "static" + }, + { + "source": "npm:npm-run-all2", + "target": "npm:ansi-styles", + "type": "static" + }, + { + "source": "npm:npm-run-all2", + "target": "npm:cross-spawn", + "type": "static" + }, + { + "source": "npm:npm-run-all2", + "target": "npm:memorystream", + "type": "static" + }, + { + "source": "npm:npm-run-all2", + "target": "npm:picomatch", + "type": "static" + }, + { + "source": "npm:npm-run-all2", + "target": "npm:pidtree", + "type": "static" + }, + { + "source": "npm:npm-run-all2", + "target": "npm:read-package-json-fast", + "type": "static" + }, + { + "source": "npm:npm-run-all2", + "target": "npm:shell-quote", + "type": "static" + }, + { + "source": "npm:npm-run-all2", + "target": "npm:which@5.0.0", + "type": "static" + }, + { + "source": "npm:npm-run-path@4.0.1", + "target": "npm:path-key", + "type": "static" + }, + { + "source": "npm:npm-run-path", + "target": "npm:path-key@4.0.0", + "type": "static" + }, + { + "source": "npm:npm-run-path", + "target": "npm:unicorn-magic@0.3.0", + "type": "static" + }, + { + "source": "npm:nth-check", + "target": "npm:boolbase", + "type": "static" + }, + { + "source": "npm:nx", + "target": "npm:@ltd/j-toml", + "type": "static" + }, + { + "source": "npm:nx", + "target": "npm:@napi-rs/wasm-runtime", + "type": "static" + }, + { + "source": "npm:nx", + "target": "npm:@yarnpkg/lockfile", + "type": "static" + }, + { + "source": "npm:nx", + "target": "npm:@yarnpkg/parsers", + "type": "static" + }, + { + "source": "npm:nx", + "target": "npm:@zkochan/js-yaml", + "type": "static" + }, + { + "source": "npm:nx", + "target": "npm:axios", + "type": "static" + }, + { + "source": "npm:nx", + "target": "npm:cli-cursor", + "type": "static" + }, + { + "source": "npm:nx", + "target": "npm:cli-spinners", + "type": "static" + }, + { + "source": "npm:nx", + "target": "npm:cliui", + "type": "static" + }, + { + "source": "npm:nx", + "target": "npm:dotenv@16.4.7", + "type": "static" + }, + { + "source": "npm:nx", + "target": "npm:dotenv-expand", + "type": "static" + }, + { + "source": "npm:nx", + "target": "npm:ejs", + "type": "static" + }, + { + "source": "npm:nx", + "target": "npm:enquirer", + "type": "static" + }, + { + "source": "npm:nx", + "target": "npm:figures@3.2.0", + "type": "static" + }, + { + "source": "npm:nx", + "target": "npm:flat", + "type": "static" + }, + { + "source": "npm:nx", + "target": "npm:front-matter", + "type": "static" + }, + { + "source": "npm:nx", + "target": "npm:ignore@7.0.5", + "type": "static" + }, + { + "source": "npm:nx", + "target": "npm:jest-diff", + "type": "static" + }, + { + "source": "npm:nx", + "target": "npm:jsonc-parser@3.2.0", + "type": "static" + }, + { + "source": "npm:nx", + "target": "npm:lines-and-columns", + "type": "static" + }, + { + "source": "npm:nx", + "target": "npm:minimatch@10.2.4", + "type": "static" + }, + { + "source": "npm:nx", + "target": "npm:npm-run-path@4.0.1", + "type": "static" + }, + { + "source": "npm:nx", + "target": "npm:open", + "type": "static" + }, + { + "source": "npm:nx", + "target": "npm:ora", + "type": "static" + }, + { + "source": "npm:nx", + "target": "npm:picocolors", + "type": "static" + }, + { + "source": "npm:nx", + "target": "npm:resolve.exports", + "type": "static" + }, + { + "source": "npm:nx", + "target": "npm:semver@7.7.4", + "type": "static" + }, + { + "source": "npm:nx", + "target": "npm:string-width", + "type": "static" + }, + { + "source": "npm:nx", + "target": "npm:tar-stream", + "type": "static" + }, + { + "source": "npm:nx", + "target": "npm:tmp", + "type": "static" + }, + { + "source": "npm:nx", + "target": "npm:tree-kill", + "type": "static" + }, + { + "source": "npm:nx", + "target": "npm:tsconfig-paths", + "type": "static" + }, + { + "source": "npm:nx", + "target": "npm:tslib", + "type": "static" + }, + { + "source": "npm:nx", + "target": "npm:yaml", + "type": "static" + }, + { + "source": "npm:nx", + "target": "npm:yargs", + "type": "static" + }, + { + "source": "npm:nx", + "target": "npm:yargs-parser", + "type": "static" + }, + { + "source": "npm:nx", + "target": "npm:@nx/nx-darwin-arm64", + "type": "static" + }, + { + "source": "npm:nx", + "target": "npm:@nx/nx-darwin-x64", + "type": "static" + }, + { + "source": "npm:nx", + "target": "npm:@nx/nx-freebsd-x64", + "type": "static" + }, + { + "source": "npm:nx", + "target": "npm:@nx/nx-linux-arm-gnueabihf", + "type": "static" + }, + { + "source": "npm:nx", + "target": "npm:@nx/nx-linux-arm64-gnu", + "type": "static" + }, + { + "source": "npm:nx", + "target": "npm:@nx/nx-linux-arm64-musl", + "type": "static" + }, + { + "source": "npm:nx", + "target": "npm:@nx/nx-linux-x64-gnu", + "type": "static" + }, + { + "source": "npm:nx", + "target": "npm:@nx/nx-linux-x64-musl", + "type": "static" + }, + { + "source": "npm:nx", + "target": "npm:@nx/nx-win32-arm64-msvc", + "type": "static" + }, + { + "source": "npm:nx", + "target": "npm:@nx/nx-win32-x64-msvc", + "type": "static" + }, + { + "source": "npm:nypm", + "target": "npm:citty@0.1.6", + "type": "static" + }, + { + "source": "npm:nypm", + "target": "npm:consola", + "type": "static" + }, + { + "source": "npm:nypm", + "target": "npm:pathe", + "type": "static" + }, + { + "source": "npm:nypm", + "target": "npm:pkg-types", + "type": "static" + }, + { + "source": "npm:nypm", + "target": "npm:tinyexec", + "type": "static" + }, + { + "source": "npm:object.assign", + "target": "npm:call-bind", + "type": "static" + }, + { + "source": "npm:object.assign", + "target": "npm:call-bound", + "type": "static" + }, + { + "source": "npm:object.assign", + "target": "npm:define-properties", + "type": "static" + }, + { + "source": "npm:object.assign", + "target": "npm:es-object-atoms", + "type": "static" + }, + { + "source": "npm:object.assign", + "target": "npm:has-symbols", + "type": "static" + }, + { + "source": "npm:object.assign", + "target": "npm:object-keys", + "type": "static" + }, + { + "source": "npm:object.entries", + "target": "npm:call-bind", + "type": "static" + }, + { + "source": "npm:object.entries", + "target": "npm:call-bound", + "type": "static" + }, + { + "source": "npm:object.entries", + "target": "npm:define-properties", + "type": "static" + }, + { + "source": "npm:object.entries", + "target": "npm:es-object-atoms", + "type": "static" + }, + { + "source": "npm:object.fromentries", + "target": "npm:call-bind", + "type": "static" + }, + { + "source": "npm:object.fromentries", + "target": "npm:define-properties", + "type": "static" + }, + { + "source": "npm:object.fromentries", + "target": "npm:es-abstract", + "type": "static" + }, + { + "source": "npm:object.fromentries", + "target": "npm:es-object-atoms", + "type": "static" + }, + { + "source": "npm:object.values", + "target": "npm:call-bind", + "type": "static" + }, + { + "source": "npm:object.values", + "target": "npm:call-bound", + "type": "static" + }, + { + "source": "npm:object.values", + "target": "npm:define-properties", + "type": "static" + }, + { + "source": "npm:object.values", + "target": "npm:es-object-atoms", + "type": "static" + }, + { + "source": "npm:on-finished", + "target": "npm:ee-first", + "type": "static" + }, + { + "source": "npm:once", + "target": "npm:wrappy", + "type": "static" + }, + { + "source": "npm:onetime", + "target": "npm:mimic-fn", + "type": "static" + }, + { + "source": "npm:open", + "target": "npm:define-lazy-prop", + "type": "static" + }, + { + "source": "npm:open", + "target": "npm:is-docker", + "type": "static" + }, + { + "source": "npm:open", + "target": "npm:is-wsl", + "type": "static" + }, + { + "source": "npm:optionator", + "target": "npm:deep-is", + "type": "static" + }, + { + "source": "npm:optionator", + "target": "npm:fast-levenshtein", + "type": "static" + }, + { + "source": "npm:optionator", + "target": "npm:levn", + "type": "static" + }, + { + "source": "npm:optionator", + "target": "npm:prelude-ls", + "type": "static" + }, + { + "source": "npm:optionator", + "target": "npm:type-check", + "type": "static" + }, + { + "source": "npm:optionator", + "target": "npm:word-wrap", + "type": "static" + }, + { + "source": "npm:ora", + "target": "npm:bl", + "type": "static" + }, + { + "source": "npm:ora", + "target": "npm:chalk", + "type": "static" + }, + { + "source": "npm:ora", + "target": "npm:cli-cursor", + "type": "static" + }, + { + "source": "npm:ora", + "target": "npm:cli-spinners", + "type": "static" + }, + { + "source": "npm:ora", + "target": "npm:is-interactive", + "type": "static" + }, + { + "source": "npm:ora", + "target": "npm:log-symbols", + "type": "static" + }, + { + "source": "npm:ora", + "target": "npm:strip-ansi@6.0.1", + "type": "static" + }, + { + "source": "npm:ora", + "target": "npm:wcwidth", + "type": "static" + }, + { + "source": "npm:own-keys", + "target": "npm:get-intrinsic", + "type": "static" + }, + { + "source": "npm:own-keys", + "target": "npm:object-keys", + "type": "static" + }, + { + "source": "npm:own-keys", + "target": "npm:safe-push-apply", + "type": "static" + }, + { + "source": "npm:oxc-parser", + "target": "npm:@oxc-project/types", + "type": "static" + }, + { + "source": "npm:oxc-parser", + "target": "npm:@oxc-parser/binding-android-arm64", + "type": "static" + }, + { + "source": "npm:oxc-parser", + "target": "npm:@oxc-parser/binding-darwin-arm64", + "type": "static" + }, + { + "source": "npm:oxc-parser", + "target": "npm:@oxc-parser/binding-darwin-x64", + "type": "static" + }, + { + "source": "npm:oxc-parser", + "target": "npm:@oxc-parser/binding-freebsd-x64", + "type": "static" + }, + { + "source": "npm:oxc-parser", + "target": "npm:@oxc-parser/binding-linux-arm-gnueabihf", + "type": "static" + }, + { + "source": "npm:oxc-parser", + "target": "npm:@oxc-parser/binding-linux-arm64-gnu", + "type": "static" + }, + { + "source": "npm:oxc-parser", + "target": "npm:@oxc-parser/binding-linux-arm64-musl", + "type": "static" + }, + { + "source": "npm:oxc-parser", + "target": "npm:@oxc-parser/binding-linux-riscv64-gnu", + "type": "static" + }, + { + "source": "npm:oxc-parser", + "target": "npm:@oxc-parser/binding-linux-s390x-gnu", + "type": "static" + }, + { + "source": "npm:oxc-parser", + "target": "npm:@oxc-parser/binding-linux-x64-gnu", + "type": "static" + }, + { + "source": "npm:oxc-parser", + "target": "npm:@oxc-parser/binding-linux-x64-musl", + "type": "static" + }, + { + "source": "npm:oxc-parser", + "target": "npm:@oxc-parser/binding-openharmony-arm64", + "type": "static" + }, + { + "source": "npm:oxc-parser", + "target": "npm:@oxc-parser/binding-wasm32-wasi", + "type": "static" + }, + { + "source": "npm:oxc-parser", + "target": "npm:@oxc-parser/binding-win32-arm64-msvc", + "type": "static" + }, + { + "source": "npm:oxc-parser", + "target": "npm:@oxc-parser/binding-win32-x64-msvc", + "type": "static" + }, + { + "source": "npm:oxc-resolver", + "target": "npm:@oxc-resolver/binding-android-arm-eabi", + "type": "static" + }, + { + "source": "npm:oxc-resolver", + "target": "npm:@oxc-resolver/binding-android-arm64", + "type": "static" + }, + { + "source": "npm:oxc-resolver", + "target": "npm:@oxc-resolver/binding-darwin-arm64", + "type": "static" + }, + { + "source": "npm:oxc-resolver", + "target": "npm:@oxc-resolver/binding-darwin-x64", + "type": "static" + }, + { + "source": "npm:oxc-resolver", + "target": "npm:@oxc-resolver/binding-freebsd-x64", + "type": "static" + }, + { + "source": "npm:oxc-resolver", + "target": "npm:@oxc-resolver/binding-linux-arm-gnueabihf", + "type": "static" + }, + { + "source": "npm:oxc-resolver", + "target": "npm:@oxc-resolver/binding-linux-arm-musleabihf", + "type": "static" + }, + { + "source": "npm:oxc-resolver", + "target": "npm:@oxc-resolver/binding-linux-arm64-gnu", + "type": "static" + }, + { + "source": "npm:oxc-resolver", + "target": "npm:@oxc-resolver/binding-linux-arm64-musl", + "type": "static" + }, + { + "source": "npm:oxc-resolver", + "target": "npm:@oxc-resolver/binding-linux-ppc64-gnu", + "type": "static" + }, + { + "source": "npm:oxc-resolver", + "target": "npm:@oxc-resolver/binding-linux-riscv64-gnu", + "type": "static" + }, + { + "source": "npm:oxc-resolver", + "target": "npm:@oxc-resolver/binding-linux-riscv64-musl", + "type": "static" + }, + { + "source": "npm:oxc-resolver", + "target": "npm:@oxc-resolver/binding-linux-s390x-gnu", + "type": "static" + }, + { + "source": "npm:oxc-resolver", + "target": "npm:@oxc-resolver/binding-linux-x64-gnu", + "type": "static" + }, + { + "source": "npm:oxc-resolver", + "target": "npm:@oxc-resolver/binding-linux-x64-musl", + "type": "static" + }, + { + "source": "npm:oxc-resolver", + "target": "npm:@oxc-resolver/binding-openharmony-arm64", + "type": "static" + }, + { + "source": "npm:oxc-resolver", + "target": "npm:@oxc-resolver/binding-wasm32-wasi", + "type": "static" + }, + { + "source": "npm:oxc-resolver", + "target": "npm:@oxc-resolver/binding-win32-arm64-msvc", + "type": "static" + }, + { + "source": "npm:oxc-resolver", + "target": "npm:@oxc-resolver/binding-win32-ia32-msvc", + "type": "static" + }, + { + "source": "npm:oxc-resolver", + "target": "npm:@oxc-resolver/binding-win32-x64-msvc", + "type": "static" + }, + { + "source": "npm:oxc-walker", + "target": "npm:magic-regexp", + "type": "static" + }, + { + "source": "npm:oxc-walker", + "target": "npm:oxc-parser", + "type": "static" + }, + { + "source": "npm:oxlint-tsgolint", + "target": "npm:@oxlint-tsgolint/darwin-arm64", + "type": "static" + }, + { + "source": "npm:oxlint-tsgolint", + "target": "npm:@oxlint-tsgolint/darwin-x64", + "type": "static" + }, + { + "source": "npm:oxlint-tsgolint", + "target": "npm:@oxlint-tsgolint/linux-arm64", + "type": "static" + }, + { + "source": "npm:oxlint-tsgolint", + "target": "npm:@oxlint-tsgolint/linux-x64", + "type": "static" + }, + { + "source": "npm:oxlint-tsgolint", + "target": "npm:@oxlint-tsgolint/win32-arm64", + "type": "static" + }, + { + "source": "npm:oxlint-tsgolint", + "target": "npm:@oxlint-tsgolint/win32-x64", + "type": "static" + }, + { + "source": "npm:oxlint", + "target": "npm:@oxlint/binding-android-arm-eabi", + "type": "static" + }, + { + "source": "npm:oxlint", + "target": "npm:@oxlint/binding-android-arm64", + "type": "static" + }, + { + "source": "npm:oxlint", + "target": "npm:@oxlint/binding-darwin-arm64", + "type": "static" + }, + { + "source": "npm:oxlint", + "target": "npm:@oxlint/binding-darwin-x64", + "type": "static" + }, + { + "source": "npm:oxlint", + "target": "npm:@oxlint/binding-freebsd-x64", + "type": "static" + }, + { + "source": "npm:oxlint", + "target": "npm:@oxlint/binding-linux-arm-gnueabihf", + "type": "static" + }, + { + "source": "npm:oxlint", + "target": "npm:@oxlint/binding-linux-arm-musleabihf", + "type": "static" + }, + { + "source": "npm:oxlint", + "target": "npm:@oxlint/binding-linux-arm64-gnu", + "type": "static" + }, + { + "source": "npm:oxlint", + "target": "npm:@oxlint/binding-linux-arm64-musl", + "type": "static" + }, + { + "source": "npm:oxlint", + "target": "npm:@oxlint/binding-linux-ppc64-gnu", + "type": "static" + }, + { + "source": "npm:oxlint", + "target": "npm:@oxlint/binding-linux-riscv64-gnu", + "type": "static" + }, + { + "source": "npm:oxlint", + "target": "npm:@oxlint/binding-linux-riscv64-musl", + "type": "static" + }, + { + "source": "npm:oxlint", + "target": "npm:@oxlint/binding-linux-s390x-gnu", + "type": "static" + }, + { + "source": "npm:oxlint", + "target": "npm:@oxlint/binding-linux-x64-gnu", + "type": "static" + }, + { + "source": "npm:oxlint", + "target": "npm:@oxlint/binding-linux-x64-musl", + "type": "static" + }, + { + "source": "npm:oxlint", + "target": "npm:@oxlint/binding-openharmony-arm64", + "type": "static" + }, + { + "source": "npm:oxlint", + "target": "npm:@oxlint/binding-win32-arm64-msvc", + "type": "static" + }, + { + "source": "npm:oxlint", + "target": "npm:@oxlint/binding-win32-ia32-msvc", + "type": "static" + }, + { + "source": "npm:oxlint", + "target": "npm:@oxlint/binding-win32-x64-msvc", + "type": "static" + }, + { + "source": "npm:oxlint", + "target": "npm:oxlint-tsgolint", + "type": "static" + }, + { + "source": "npm:p-limit@2.3.0", + "target": "npm:p-try", + "type": "static" + }, + { + "source": "npm:p-limit@3.1.0", + "target": "npm:yocto-queue@0.1.0", + "type": "static" + }, + { + "source": "npm:p-limit", + "target": "npm:yocto-queue", + "type": "static" + }, + { + "source": "npm:p-locate@3.0.0", + "target": "npm:p-limit@2.3.0", + "type": "static" + }, + { + "source": "npm:p-locate", + "target": "npm:p-limit@3.1.0", + "type": "static" + }, + { + "source": "npm:p-retry", + "target": "npm:@types/retry", + "type": "static" + }, + { + "source": "npm:p-retry", + "target": "npm:retry", + "type": "static" + }, + { + "source": "npm:pac-proxy-agent", + "target": "npm:@tootallnate/quickjs-emscripten", + "type": "static" + }, + { + "source": "npm:pac-proxy-agent", + "target": "npm:agent-base", + "type": "static" + }, + { + "source": "npm:pac-proxy-agent", + "target": "npm:debug", + "type": "static" + }, + { + "source": "npm:pac-proxy-agent", + "target": "npm:get-uri", + "type": "static" + }, + { + "source": "npm:pac-proxy-agent", + "target": "npm:http-proxy-agent", + "type": "static" + }, + { + "source": "npm:pac-proxy-agent", + "target": "npm:https-proxy-agent@7.0.6", + "type": "static" + }, + { + "source": "npm:pac-proxy-agent", + "target": "npm:pac-resolver", + "type": "static" + }, + { + "source": "npm:pac-proxy-agent", + "target": "npm:socks-proxy-agent", + "type": "static" + }, + { + "source": "npm:pac-resolver", + "target": "npm:degenerator", + "type": "static" + }, + { + "source": "npm:pac-resolver", + "target": "npm:netmask", + "type": "static" + }, + { + "source": "npm:parent-module", + "target": "npm:callsites", + "type": "static" + }, + { + "source": "npm:parse-json", + "target": "npm:@babel/code-frame", + "type": "static" + }, + { + "source": "npm:parse-json", + "target": "npm:error-ex", + "type": "static" + }, + { + "source": "npm:parse-json", + "target": "npm:json-parse-even-better-errors@2.3.1", + "type": "static" + }, + { + "source": "npm:parse-json", + "target": "npm:lines-and-columns@1.2.4", + "type": "static" + }, + { + "source": "npm:parse5", + "target": "npm:entities@6.0.1", + "type": "static" + }, + { + "source": "npm:path-scurry@1.11.1", + "target": "npm:lru-cache@10.4.3", + "type": "static" + }, + { + "source": "npm:path-scurry@1.11.1", + "target": "npm:minipass", + "type": "static" + }, + { + "source": "npm:path-scurry", + "target": "npm:lru-cache@11.2.2", + "type": "static" + }, + { + "source": "npm:path-scurry", + "target": "npm:minipass", + "type": "static" + }, + { + "source": "npm:pino-abstract-transport", + "target": "npm:split2", + "type": "static" + }, + { + "source": "npm:pino", + "target": "npm:@pinojs/redact", + "type": "static" + }, + { + "source": "npm:pino", + "target": "npm:atomic-sleep", + "type": "static" + }, + { + "source": "npm:pino", + "target": "npm:on-exit-leak-free", + "type": "static" + }, + { + "source": "npm:pino", + "target": "npm:pino-abstract-transport", + "type": "static" + }, + { + "source": "npm:pino", + "target": "npm:pino-std-serializers", + "type": "static" + }, + { + "source": "npm:pino", + "target": "npm:process-warning", + "type": "static" + }, + { + "source": "npm:pino", + "target": "npm:quick-format-unescaped", + "type": "static" + }, + { + "source": "npm:pino", + "target": "npm:real-require", + "type": "static" + }, + { + "source": "npm:pino", + "target": "npm:safe-stable-stringify", + "type": "static" + }, + { + "source": "npm:pino", + "target": "npm:sonic-boom", + "type": "static" + }, + { + "source": "npm:pino", + "target": "npm:thread-stream", + "type": "static" + }, + { + "source": "npm:pkg-types@1.3.1", + "target": "npm:confbox@0.1.8", + "type": "static" + }, + { + "source": "npm:pkg-types@1.3.1", + "target": "npm:mlly", + "type": "static" + }, + { + "source": "npm:pkg-types@1.3.1", + "target": "npm:pathe", + "type": "static" + }, + { + "source": "npm:pkg-types", + "target": "npm:confbox", + "type": "static" + }, + { + "source": "npm:pkg-types", + "target": "npm:exsolve", + "type": "static" + }, + { + "source": "npm:pkg-types", + "target": "npm:pathe", + "type": "static" + }, + { + "source": "npm:pkg-up", + "target": "npm:find-up@3.0.0", + "type": "static" + }, + { + "source": "npm:portfinder", + "target": "npm:async", + "type": "static" + }, + { + "source": "npm:portfinder", + "target": "npm:debug", + "type": "static" + }, + { + "source": "npm:postcss-calc", + "target": "npm:postcss", + "type": "static" + }, + { + "source": "npm:postcss-calc", + "target": "npm:postcss-selector-parser@6.1.2", + "type": "static" + }, + { + "source": "npm:postcss-calc", + "target": "npm:postcss-value-parser", + "type": "static" + }, + { + "source": "npm:postcss-colormin", + "target": "npm:browserslist", + "type": "static" + }, + { + "source": "npm:postcss-colormin", + "target": "npm:caniuse-api", + "type": "static" + }, + { + "source": "npm:postcss-colormin", + "target": "npm:colord", + "type": "static" + }, + { + "source": "npm:postcss-colormin", + "target": "npm:postcss", + "type": "static" + }, + { + "source": "npm:postcss-colormin", + "target": "npm:postcss-value-parser", + "type": "static" + }, + { + "source": "npm:postcss-convert-values", + "target": "npm:browserslist", + "type": "static" + }, + { + "source": "npm:postcss-convert-values", + "target": "npm:postcss", + "type": "static" + }, + { + "source": "npm:postcss-convert-values", + "target": "npm:postcss-value-parser", + "type": "static" + }, + { + "source": "npm:postcss-discard-comments", + "target": "npm:postcss", + "type": "static" + }, + { + "source": "npm:postcss-discard-duplicates@5.1.0", + "target": "npm:postcss", + "type": "static" + }, + { + "source": "npm:postcss-discard-duplicates", + "target": "npm:postcss", + "type": "static" + }, + { + "source": "npm:postcss-discard-empty", + "target": "npm:postcss", + "type": "static" + }, + { + "source": "npm:postcss-discard-overridden", + "target": "npm:postcss", + "type": "static" + }, + { + "source": "npm:postcss-js", + "target": "npm:camelcase-css", + "type": "static" + }, + { + "source": "npm:postcss-js", + "target": "npm:postcss", + "type": "static" + }, + { + "source": "npm:postcss-merge-longhand", + "target": "npm:postcss", + "type": "static" + }, + { + "source": "npm:postcss-merge-longhand", + "target": "npm:postcss-value-parser", + "type": "static" + }, + { + "source": "npm:postcss-merge-longhand", + "target": "npm:stylehacks", + "type": "static" + }, + { + "source": "npm:postcss-merge-rules", + "target": "npm:browserslist", + "type": "static" + }, + { + "source": "npm:postcss-merge-rules", + "target": "npm:caniuse-api", + "type": "static" + }, + { + "source": "npm:postcss-merge-rules", + "target": "npm:cssnano-utils", + "type": "static" + }, + { + "source": "npm:postcss-merge-rules", + "target": "npm:postcss", + "type": "static" + }, + { + "source": "npm:postcss-merge-rules", + "target": "npm:postcss-selector-parser@6.1.2", + "type": "static" + }, + { + "source": "npm:postcss-minify-font-values", + "target": "npm:postcss", + "type": "static" + }, + { + "source": "npm:postcss-minify-font-values", + "target": "npm:postcss-value-parser", + "type": "static" + }, + { + "source": "npm:postcss-minify-gradients", + "target": "npm:colord", + "type": "static" + }, + { + "source": "npm:postcss-minify-gradients", + "target": "npm:cssnano-utils", + "type": "static" + }, + { + "source": "npm:postcss-minify-gradients", + "target": "npm:postcss", + "type": "static" + }, + { + "source": "npm:postcss-minify-gradients", + "target": "npm:postcss-value-parser", + "type": "static" + }, + { + "source": "npm:postcss-minify-params", + "target": "npm:browserslist", + "type": "static" + }, + { + "source": "npm:postcss-minify-params", + "target": "npm:cssnano-utils", + "type": "static" + }, + { + "source": "npm:postcss-minify-params", + "target": "npm:postcss", + "type": "static" + }, + { + "source": "npm:postcss-minify-params", + "target": "npm:postcss-value-parser", + "type": "static" + }, + { + "source": "npm:postcss-minify-selectors", + "target": "npm:postcss", + "type": "static" + }, + { + "source": "npm:postcss-minify-selectors", + "target": "npm:postcss-selector-parser@6.1.2", + "type": "static" + }, + { + "source": "npm:postcss-mixins", + "target": "npm:postcss", + "type": "static" + }, + { + "source": "npm:postcss-mixins", + "target": "npm:postcss-js", + "type": "static" + }, + { + "source": "npm:postcss-mixins", + "target": "npm:postcss-simple-vars", + "type": "static" + }, + { + "source": "npm:postcss-mixins", + "target": "npm:sugarss", + "type": "static" + }, + { + "source": "npm:postcss-mixins", + "target": "npm:tinyglobby", + "type": "static" + }, + { + "source": "npm:postcss-nested@5.0.6", + "target": "npm:postcss", + "type": "static" + }, + { + "source": "npm:postcss-nested@5.0.6", + "target": "npm:postcss-selector-parser@6.1.2", + "type": "static" + }, + { + "source": "npm:postcss-nested", + "target": "npm:postcss", + "type": "static" + }, + { + "source": "npm:postcss-nested", + "target": "npm:postcss-selector-parser", + "type": "static" + }, + { + "source": "npm:postcss-normalize-charset", + "target": "npm:postcss", + "type": "static" + }, + { + "source": "npm:postcss-normalize-display-values", + "target": "npm:postcss", + "type": "static" + }, + { + "source": "npm:postcss-normalize-display-values", + "target": "npm:postcss-value-parser", + "type": "static" + }, + { + "source": "npm:postcss-normalize-positions", + "target": "npm:postcss", + "type": "static" + }, + { + "source": "npm:postcss-normalize-positions", + "target": "npm:postcss-value-parser", + "type": "static" + }, + { + "source": "npm:postcss-normalize-repeat-style", + "target": "npm:postcss", + "type": "static" + }, + { + "source": "npm:postcss-normalize-repeat-style", + "target": "npm:postcss-value-parser", + "type": "static" + }, + { + "source": "npm:postcss-normalize-string", + "target": "npm:postcss", + "type": "static" + }, + { + "source": "npm:postcss-normalize-string", + "target": "npm:postcss-value-parser", + "type": "static" + }, + { + "source": "npm:postcss-normalize-timing-functions", + "target": "npm:postcss", + "type": "static" + }, + { + "source": "npm:postcss-normalize-timing-functions", + "target": "npm:postcss-value-parser", + "type": "static" + }, + { + "source": "npm:postcss-normalize-unicode", + "target": "npm:browserslist", + "type": "static" + }, + { + "source": "npm:postcss-normalize-unicode", + "target": "npm:postcss", + "type": "static" + }, + { + "source": "npm:postcss-normalize-unicode", + "target": "npm:postcss-value-parser", + "type": "static" + }, + { + "source": "npm:postcss-normalize-url", + "target": "npm:normalize-url", + "type": "static" + }, + { + "source": "npm:postcss-normalize-url", + "target": "npm:postcss", + "type": "static" + }, + { + "source": "npm:postcss-normalize-url", + "target": "npm:postcss-value-parser", + "type": "static" + }, + { + "source": "npm:postcss-normalize-whitespace", + "target": "npm:postcss", + "type": "static" + }, + { + "source": "npm:postcss-normalize-whitespace", + "target": "npm:postcss-value-parser", + "type": "static" + }, + { + "source": "npm:postcss-ordered-values", + "target": "npm:cssnano-utils", + "type": "static" + }, + { + "source": "npm:postcss-ordered-values", + "target": "npm:postcss", + "type": "static" + }, + { + "source": "npm:postcss-ordered-values", + "target": "npm:postcss-value-parser", + "type": "static" + }, + { + "source": "npm:postcss-preset-mantine", + "target": "npm:postcss", + "type": "static" + }, + { + "source": "npm:postcss-preset-mantine", + "target": "npm:postcss-mixins", + "type": "static" + }, + { + "source": "npm:postcss-preset-mantine", + "target": "npm:postcss-nested", + "type": "static" + }, + { + "source": "npm:postcss-reduce-initial", + "target": "npm:browserslist", + "type": "static" + }, + { + "source": "npm:postcss-reduce-initial", + "target": "npm:caniuse-api", + "type": "static" + }, + { + "source": "npm:postcss-reduce-initial", + "target": "npm:postcss", + "type": "static" + }, + { + "source": "npm:postcss-reduce-transforms", + "target": "npm:postcss", + "type": "static" + }, + { + "source": "npm:postcss-reduce-transforms", + "target": "npm:postcss-value-parser", + "type": "static" + }, + { + "source": "npm:postcss-selector-parser@6.1.2", + "target": "npm:cssesc", + "type": "static" + }, + { + "source": "npm:postcss-selector-parser@6.1.2", + "target": "npm:util-deprecate", + "type": "static" + }, + { + "source": "npm:postcss-selector-parser", + "target": "npm:cssesc", + "type": "static" + }, + { + "source": "npm:postcss-selector-parser", + "target": "npm:util-deprecate", + "type": "static" + }, + { + "source": "npm:postcss-simple-vars", + "target": "npm:postcss", + "type": "static" + }, + { + "source": "npm:postcss-svgo", + "target": "npm:postcss", + "type": "static" + }, + { + "source": "npm:postcss-svgo", + "target": "npm:postcss-value-parser", + "type": "static" + }, + { + "source": "npm:postcss-svgo", + "target": "npm:svgo", + "type": "static" + }, + { + "source": "npm:postcss-unique-selectors", + "target": "npm:postcss", + "type": "static" + }, + { + "source": "npm:postcss-unique-selectors", + "target": "npm:postcss-selector-parser@6.1.2", + "type": "static" + }, + { + "source": "npm:postcss-values-parser", + "target": "npm:color-name", + "type": "static" + }, + { + "source": "npm:postcss-values-parser", + "target": "npm:is-url-superb", + "type": "static" + }, + { + "source": "npm:postcss-values-parser", + "target": "npm:postcss", + "type": "static" + }, + { + "source": "npm:postcss-values-parser", + "target": "npm:quote-unquote", + "type": "static" + }, + { + "source": "npm:postcss", + "target": "npm:nanoid", + "type": "static" + }, + { + "source": "npm:postcss", + "target": "npm:picocolors", + "type": "static" + }, + { + "source": "npm:postcss", + "target": "npm:source-map-js", + "type": "static" + }, + { + "source": "npm:preact-render-to-string", + "target": "npm:preact", + "type": "static" + }, + { + "source": "npm:prebuild-install", + "target": "npm:detect-libc", + "type": "static" + }, + { + "source": "npm:prebuild-install", + "target": "npm:expand-template", + "type": "static" + }, + { + "source": "npm:prebuild-install", + "target": "npm:github-from-package", + "type": "static" + }, + { + "source": "npm:prebuild-install", + "target": "npm:minimist", + "type": "static" + }, + { + "source": "npm:prebuild-install", + "target": "npm:mkdirp-classic", + "type": "static" + }, + { + "source": "npm:prebuild-install", + "target": "npm:napi-build-utils", + "type": "static" + }, + { + "source": "npm:prebuild-install", + "target": "npm:node-abi", + "type": "static" + }, + { + "source": "npm:prebuild-install", + "target": "npm:pump", + "type": "static" + }, + { + "source": "npm:prebuild-install", + "target": "npm:rc", + "type": "static" + }, + { + "source": "npm:prebuild-install", + "target": "npm:simple-get", + "type": "static" + }, + { + "source": "npm:prebuild-install", + "target": "npm:tar-fs@2.1.4", + "type": "static" + }, + { + "source": "npm:prebuild-install", + "target": "npm:tunnel-agent", + "type": "static" + }, + { + "source": "npm:prettier-linter-helpers", + "target": "npm:fast-diff", + "type": "static" + }, + { + "source": "npm:pretty-format", + "target": "npm:@jest/schemas", + "type": "static" + }, + { + "source": "npm:pretty-format", + "target": "npm:ansi-styles@5.2.0", + "type": "static" + }, + { + "source": "npm:pretty-format", + "target": "npm:react-is@18.3.1", + "type": "static" + }, + { + "source": "npm:pretty-ms@7.0.1", + "target": "npm:parse-ms@2.1.0", + "type": "static" + }, + { + "source": "npm:pretty-ms", + "target": "npm:parse-ms", + "type": "static" + }, + { + "source": "npm:prisma", + "target": "npm:@prisma/config", + "type": "static" + }, + { + "source": "npm:prisma", + "target": "npm:@prisma/dev", + "type": "static" + }, + { + "source": "npm:prisma", + "target": "npm:@prisma/engines", + "type": "static" + }, + { + "source": "npm:prisma", + "target": "npm:@prisma/studio-core", + "type": "static" + }, + { + "source": "npm:prisma", + "target": "npm:mysql2", + "type": "static" + }, + { + "source": "npm:prisma", + "target": "npm:postgres", + "type": "static" + }, + { + "source": "npm:prisma", + "target": "npm:better-sqlite3", + "type": "static" + }, + { + "source": "npm:prisma", + "target": "npm:typescript", + "type": "static" + }, + { + "source": "npm:promise-retry", + "target": "npm:err-code", + "type": "static" + }, + { + "source": "npm:promise-retry", + "target": "npm:retry@0.12.0", + "type": "static" + }, + { + "source": "npm:prop-types", + "target": "npm:loose-envify", + "type": "static" + }, + { + "source": "npm:prop-types", + "target": "npm:object-assign", + "type": "static" + }, + { + "source": "npm:prop-types", + "target": "npm:react-is", + "type": "static" + }, + { + "source": "npm:proper-lockfile", + "target": "npm:graceful-fs", + "type": "static" + }, + { + "source": "npm:proper-lockfile", + "target": "npm:retry@0.12.0", + "type": "static" + }, + { + "source": "npm:proper-lockfile", + "target": "npm:signal-exit@3.0.7", + "type": "static" + }, + { + "source": "npm:proxy-addr", + "target": "npm:forwarded", + "type": "static" + }, + { + "source": "npm:proxy-addr", + "target": "npm:ipaddr.js@1.9.1", + "type": "static" + }, + { + "source": "npm:proxy-agent", + "target": "npm:agent-base", + "type": "static" + }, + { + "source": "npm:proxy-agent", + "target": "npm:debug", + "type": "static" + }, + { + "source": "npm:proxy-agent", + "target": "npm:http-proxy-agent", + "type": "static" + }, + { + "source": "npm:proxy-agent", + "target": "npm:https-proxy-agent@7.0.6", + "type": "static" + }, + { + "source": "npm:proxy-agent", + "target": "npm:lru-cache@7.18.3", + "type": "static" + }, + { + "source": "npm:proxy-agent", + "target": "npm:pac-proxy-agent", + "type": "static" + }, + { + "source": "npm:proxy-agent", + "target": "npm:proxy-from-env", + "type": "static" + }, + { + "source": "npm:proxy-agent", + "target": "npm:socks-proxy-agent", + "type": "static" + }, + { + "source": "npm:pump", + "target": "npm:end-of-stream", + "type": "static" + }, + { + "source": "npm:pump", + "target": "npm:once", + "type": "static" + }, + { + "source": "npm:puppeteer-core", + "target": "npm:@puppeteer/browsers", + "type": "static" + }, + { + "source": "npm:puppeteer-core", + "target": "npm:chromium-bidi", + "type": "static" + }, + { + "source": "npm:puppeteer-core", + "target": "npm:debug", + "type": "static" + }, + { + "source": "npm:puppeteer-core", + "target": "npm:devtools-protocol", + "type": "static" + }, + { + "source": "npm:puppeteer-core", + "target": "npm:typed-query-selector", + "type": "static" + }, + { + "source": "npm:puppeteer-core", + "target": "npm:webdriver-bidi-protocol", + "type": "static" + }, + { + "source": "npm:puppeteer-core", + "target": "npm:ws@8.19.0", + "type": "static" + }, + { + "source": "npm:puppeteer", + "target": "npm:@puppeteer/browsers", + "type": "static" + }, + { + "source": "npm:puppeteer", + "target": "npm:chromium-bidi", + "type": "static" + }, + { + "source": "npm:puppeteer", + "target": "npm:cosmiconfig", + "type": "static" + }, + { + "source": "npm:puppeteer", + "target": "npm:devtools-protocol", + "type": "static" + }, + { + "source": "npm:puppeteer", + "target": "npm:puppeteer-core", + "type": "static" + }, + { + "source": "npm:puppeteer", + "target": "npm:typed-query-selector", + "type": "static" + }, + { + "source": "npm:qs", + "target": "npm:side-channel", + "type": "static" + }, + { + "source": "npm:raw-body", + "target": "npm:bytes", + "type": "static" + }, + { + "source": "npm:raw-body", + "target": "npm:http-errors", + "type": "static" + }, + { + "source": "npm:raw-body", + "target": "npm:iconv-lite@0.7.2", + "type": "static" + }, + { + "source": "npm:raw-body", + "target": "npm:unpipe", + "type": "static" + }, + { + "source": "npm:rc9", + "target": "npm:defu", + "type": "static" + }, + { + "source": "npm:rc9", + "target": "npm:destr", + "type": "static" + }, + { + "source": "npm:rc", + "target": "npm:deep-extend", + "type": "static" + }, + { + "source": "npm:rc", + "target": "npm:ini", + "type": "static" + }, + { + "source": "npm:rc", + "target": "npm:minimist", + "type": "static" + }, + { + "source": "npm:rc", + "target": "npm:strip-json-comments@2.0.1", + "type": "static" + }, + { + "source": "npm:re2", + "target": "npm:install-artifact-from-github", + "type": "static" + }, + { + "source": "npm:re2", + "target": "npm:nan", + "type": "static" + }, + { + "source": "npm:re2", + "target": "npm:node-gyp", + "type": "static" + }, + { + "source": "npm:react-dom", + "target": "npm:react", + "type": "static" + }, + { + "source": "npm:react-dom", + "target": "npm:scheduler", + "type": "static" + }, + { + "source": "npm:react-number-format", + "target": "npm:react", + "type": "static" + }, + { + "source": "npm:react-number-format", + "target": "npm:react-dom", + "type": "static" + }, + { + "source": "npm:react-remove-scroll-bar", + "target": "npm:react", + "type": "static" + }, + { + "source": "npm:react-remove-scroll-bar", + "target": "npm:react-style-singleton", + "type": "static" + }, + { + "source": "npm:react-remove-scroll-bar", + "target": "npm:tslib", + "type": "static" + }, + { + "source": "npm:react-remove-scroll-bar", + "target": "npm:@types/react", + "type": "static" + }, + { + "source": "npm:react-remove-scroll", + "target": "npm:react", + "type": "static" + }, + { + "source": "npm:react-remove-scroll", + "target": "npm:react-remove-scroll-bar", + "type": "static" + }, + { + "source": "npm:react-remove-scroll", + "target": "npm:react-style-singleton", + "type": "static" + }, + { + "source": "npm:react-remove-scroll", + "target": "npm:tslib", + "type": "static" + }, + { + "source": "npm:react-remove-scroll", + "target": "npm:use-callback-ref", + "type": "static" + }, + { + "source": "npm:react-remove-scroll", + "target": "npm:use-sidecar", + "type": "static" + }, + { + "source": "npm:react-remove-scroll", + "target": "npm:@types/react", + "type": "static" + }, + { + "source": "npm:react-streaming", + "target": "npm:@brillout/import", + "type": "static" + }, + { + "source": "npm:react-streaming", + "target": "npm:@brillout/json-serializer", + "type": "static" + }, + { + "source": "npm:react-streaming", + "target": "npm:@brillout/picocolors", + "type": "static" + }, + { + "source": "npm:react-streaming", + "target": "npm:isbot-fast", + "type": "static" + }, + { + "source": "npm:react-streaming", + "target": "npm:react", + "type": "static" + }, + { + "source": "npm:react-streaming", + "target": "npm:react-dom", + "type": "static" + }, + { + "source": "npm:react-style-singleton", + "target": "npm:get-nonce", + "type": "static" + }, + { + "source": "npm:react-style-singleton", + "target": "npm:react", + "type": "static" + }, + { + "source": "npm:react-style-singleton", + "target": "npm:tslib", + "type": "static" + }, + { + "source": "npm:react-style-singleton", + "target": "npm:@types/react", + "type": "static" + }, + { + "source": "npm:react-textarea-autosize", + "target": "npm:@babel/runtime", + "type": "static" + }, + { + "source": "npm:react-textarea-autosize", + "target": "npm:react", + "type": "static" + }, + { + "source": "npm:react-textarea-autosize", + "target": "npm:use-composed-ref", + "type": "static" + }, + { + "source": "npm:react-textarea-autosize", + "target": "npm:use-latest", + "type": "static" + }, + { + "source": "npm:read-package-json-fast", + "target": "npm:json-parse-even-better-errors", + "type": "static" + }, + { + "source": "npm:read-package-json-fast", + "target": "npm:npm-normalize-package-bin", + "type": "static" + }, + { + "source": "npm:readable-stream", + "target": "npm:inherits", + "type": "static" + }, + { + "source": "npm:readable-stream", + "target": "npm:string_decoder", + "type": "static" + }, + { + "source": "npm:readable-stream", + "target": "npm:util-deprecate", + "type": "static" + }, + { + "source": "npm:reflect.getprototypeof", + "target": "npm:call-bind", + "type": "static" + }, + { + "source": "npm:reflect.getprototypeof", + "target": "npm:define-properties", + "type": "static" + }, + { + "source": "npm:reflect.getprototypeof", + "target": "npm:es-abstract", + "type": "static" + }, + { + "source": "npm:reflect.getprototypeof", + "target": "npm:es-errors", + "type": "static" + }, + { + "source": "npm:reflect.getprototypeof", + "target": "npm:es-object-atoms", + "type": "static" + }, + { + "source": "npm:reflect.getprototypeof", + "target": "npm:get-intrinsic", + "type": "static" + }, + { + "source": "npm:reflect.getprototypeof", + "target": "npm:get-proto", + "type": "static" + }, + { + "source": "npm:reflect.getprototypeof", + "target": "npm:which-builtin-type", + "type": "static" + }, + { + "source": "npm:regexp.prototype.flags", + "target": "npm:call-bind", + "type": "static" + }, + { + "source": "npm:regexp.prototype.flags", + "target": "npm:define-properties", + "type": "static" + }, + { + "source": "npm:regexp.prototype.flags", + "target": "npm:es-errors", + "type": "static" + }, + { + "source": "npm:regexp.prototype.flags", + "target": "npm:get-proto", + "type": "static" + }, + { + "source": "npm:regexp.prototype.flags", + "target": "npm:gopd", + "type": "static" + }, + { + "source": "npm:regexp.prototype.flags", + "target": "npm:set-function-name", + "type": "static" + }, + { + "source": "npm:require-one-of", + "target": "npm:debug", + "type": "static" + }, + { + "source": "npm:require-one-of", + "target": "npm:humanize-list", + "type": "static" + }, + { + "source": "npm:require-one-of", + "target": "npm:null-prototype-object", + "type": "static" + }, + { + "source": "npm:require-one-of", + "target": "npm:resolve-from", + "type": "static" + }, + { + "source": "npm:resolve@1.22.10", + "target": "npm:is-core-module", + "type": "static" + }, + { + "source": "npm:resolve@1.22.10", + "target": "npm:path-parse", + "type": "static" + }, + { + "source": "npm:resolve@1.22.10", + "target": "npm:supports-preserve-symlinks-flag", + "type": "static" + }, + { + "source": "npm:resolve", + "target": "npm:is-core-module", + "type": "static" + }, + { + "source": "npm:resolve", + "target": "npm:path-parse", + "type": "static" + }, + { + "source": "npm:resolve", + "target": "npm:supports-preserve-symlinks-flag", + "type": "static" + }, + { + "source": "npm:responselike", + "target": "npm:lowercase-keys", + "type": "static" + }, + { + "source": "npm:restore-cursor", + "target": "npm:onetime", + "type": "static" + }, + { + "source": "npm:restore-cursor", + "target": "npm:signal-exit@3.0.7", + "type": "static" + }, + { + "source": "npm:rimraf", + "target": "npm:glob", + "type": "static" + }, + { + "source": "npm:rimraf", + "target": "npm:package-json-from-dist", + "type": "static" + }, + { + "source": "npm:rolldown-plugin-dts", + "target": "npm:@babel/generator@8.0.0-rc.2", + "type": "static" + }, + { + "source": "npm:rolldown-plugin-dts", + "target": "npm:@babel/helper-validator-identifier@8.0.0-rc.2", + "type": "static" + }, + { + "source": "npm:rolldown-plugin-dts", + "target": "npm:@babel/parser@8.0.0-rc.2", + "type": "static" + }, + { + "source": "npm:rolldown-plugin-dts", + "target": "npm:@babel/types@8.0.0-rc.2", + "type": "static" + }, + { + "source": "npm:rolldown-plugin-dts", + "target": "npm:ast-kit", + "type": "static" + }, + { + "source": "npm:rolldown-plugin-dts", + "target": "npm:birpc", + "type": "static" + }, + { + "source": "npm:rolldown-plugin-dts", + "target": "npm:dts-resolver", + "type": "static" + }, + { + "source": "npm:rolldown-plugin-dts", + "target": "npm:get-tsconfig", + "type": "static" + }, + { + "source": "npm:rolldown-plugin-dts", + "target": "npm:obug", + "type": "static" + }, + { + "source": "npm:rolldown-plugin-dts", + "target": "npm:rolldown", + "type": "static" + }, + { + "source": "npm:rolldown-plugin-dts", + "target": "npm:typescript", + "type": "static" + }, + { + "source": "npm:rolldown@1.0.0-beta.51", + "target": "npm:@oxc-project/types@0.98.0", + "type": "static" + }, + { + "source": "npm:rolldown@1.0.0-beta.51", + "target": "npm:@rolldown/pluginutils@1.0.0-beta.51", + "type": "static" + }, + { + "source": "npm:rolldown@1.0.0-beta.51", + "target": "npm:@rolldown/binding-android-arm64@1.0.0-beta.51", + "type": "static" + }, + { + "source": "npm:rolldown@1.0.0-beta.51", + "target": "npm:@rolldown/binding-darwin-arm64@1.0.0-beta.51", + "type": "static" + }, + { + "source": "npm:rolldown@1.0.0-beta.51", + "target": "npm:@rolldown/binding-darwin-x64@1.0.0-beta.51", + "type": "static" + }, + { + "source": "npm:rolldown@1.0.0-beta.51", + "target": "npm:@rolldown/binding-freebsd-x64@1.0.0-beta.51", + "type": "static" + }, + { + "source": "npm:rolldown@1.0.0-beta.51", + "target": "npm:@rolldown/binding-linux-arm-gnueabihf@1.0.0-beta.51", + "type": "static" + }, + { + "source": "npm:rolldown@1.0.0-beta.51", + "target": "npm:@rolldown/binding-linux-arm64-gnu@1.0.0-beta.51", + "type": "static" + }, + { + "source": "npm:rolldown@1.0.0-beta.51", + "target": "npm:@rolldown/binding-linux-arm64-musl@1.0.0-beta.51", + "type": "static" + }, + { + "source": "npm:rolldown@1.0.0-beta.51", + "target": "npm:@rolldown/binding-linux-x64-gnu@1.0.0-beta.51", + "type": "static" + }, + { + "source": "npm:rolldown@1.0.0-beta.51", + "target": "npm:@rolldown/binding-linux-x64-musl@1.0.0-beta.51", + "type": "static" + }, + { + "source": "npm:rolldown@1.0.0-beta.51", + "target": "npm:@rolldown/binding-openharmony-arm64@1.0.0-beta.51", + "type": "static" + }, + { + "source": "npm:rolldown@1.0.0-beta.51", + "target": "npm:@rolldown/binding-wasm32-wasi@1.0.0-beta.51", + "type": "static" + }, + { + "source": "npm:rolldown@1.0.0-beta.51", + "target": "npm:@rolldown/binding-win32-arm64-msvc@1.0.0-beta.51", + "type": "static" + }, + { + "source": "npm:rolldown@1.0.0-beta.51", + "target": "npm:@rolldown/binding-win32-ia32-msvc", + "type": "static" + }, + { + "source": "npm:rolldown@1.0.0-beta.51", + "target": "npm:@rolldown/binding-win32-x64-msvc@1.0.0-beta.51", + "type": "static" + }, + { + "source": "npm:rolldown@1.0.0-rc.11", + "target": "npm:@oxc-project/types@0.122.0", + "type": "static" + }, + { + "source": "npm:rolldown@1.0.0-rc.11", + "target": "npm:@rolldown/pluginutils@1.0.0-rc.11", + "type": "static" + }, + { + "source": "npm:rolldown@1.0.0-rc.11", + "target": "npm:@rolldown/binding-android-arm64@1.0.0-rc.11", + "type": "static" + }, + { + "source": "npm:rolldown@1.0.0-rc.11", + "target": "npm:@rolldown/binding-darwin-arm64@1.0.0-rc.11", + "type": "static" + }, + { + "source": "npm:rolldown@1.0.0-rc.11", + "target": "npm:@rolldown/binding-darwin-x64@1.0.0-rc.11", + "type": "static" + }, + { + "source": "npm:rolldown@1.0.0-rc.11", + "target": "npm:@rolldown/binding-freebsd-x64@1.0.0-rc.11", + "type": "static" + }, + { + "source": "npm:rolldown@1.0.0-rc.11", + "target": "npm:@rolldown/binding-linux-arm-gnueabihf@1.0.0-rc.11", + "type": "static" + }, + { + "source": "npm:rolldown@1.0.0-rc.11", + "target": "npm:@rolldown/binding-linux-arm64-gnu@1.0.0-rc.11", + "type": "static" + }, + { + "source": "npm:rolldown@1.0.0-rc.11", + "target": "npm:@rolldown/binding-linux-arm64-musl@1.0.0-rc.11", + "type": "static" + }, + { + "source": "npm:rolldown@1.0.0-rc.11", + "target": "npm:@rolldown/binding-linux-ppc64-gnu@1.0.0-rc.11", + "type": "static" + }, + { + "source": "npm:rolldown@1.0.0-rc.11", + "target": "npm:@rolldown/binding-linux-s390x-gnu@1.0.0-rc.11", + "type": "static" + }, + { + "source": "npm:rolldown@1.0.0-rc.11", + "target": "npm:@rolldown/binding-linux-x64-gnu", + "type": "static" + }, + { + "source": "npm:rolldown@1.0.0-rc.11", + "target": "npm:@rolldown/binding-linux-x64-musl", + "type": "static" + }, + { + "source": "npm:rolldown@1.0.0-rc.11", + "target": "npm:@rolldown/binding-openharmony-arm64@1.0.0-rc.11", + "type": "static" + }, + { + "source": "npm:rolldown@1.0.0-rc.11", + "target": "npm:@rolldown/binding-wasm32-wasi@1.0.0-rc.11", + "type": "static" + }, + { + "source": "npm:rolldown@1.0.0-rc.11", + "target": "npm:@rolldown/binding-win32-arm64-msvc@1.0.0-rc.11", + "type": "static" + }, + { + "source": "npm:rolldown@1.0.0-rc.11", + "target": "npm:@rolldown/binding-win32-x64-msvc@1.0.0-rc.11", + "type": "static" + }, + { + "source": "npm:rolldown", + "target": "npm:@oxc-project/types@0.115.0", + "type": "static" + }, + { + "source": "npm:rolldown", + "target": "npm:@rolldown/pluginutils@1.0.0-rc.9", + "type": "static" + }, + { + "source": "npm:rolldown", + "target": "npm:@rolldown/binding-android-arm64@1.0.0-rc.9", + "type": "static" + }, + { + "source": "npm:rolldown", + "target": "npm:@rolldown/binding-darwin-arm64@1.0.0-rc.9", + "type": "static" + }, + { + "source": "npm:rolldown", + "target": "npm:@rolldown/binding-darwin-x64@1.0.0-rc.9", + "type": "static" + }, + { + "source": "npm:rolldown", + "target": "npm:@rolldown/binding-freebsd-x64@1.0.0-rc.9", + "type": "static" + }, + { + "source": "npm:rolldown", + "target": "npm:@rolldown/binding-linux-arm-gnueabihf@1.0.0-rc.9", + "type": "static" + }, + { + "source": "npm:rolldown", + "target": "npm:@rolldown/binding-linux-arm64-gnu@1.0.0-rc.9", + "type": "static" + }, + { + "source": "npm:rolldown", + "target": "npm:@rolldown/binding-linux-arm64-musl@1.0.0-rc.9", + "type": "static" + }, + { + "source": "npm:rolldown", + "target": "npm:@rolldown/binding-linux-ppc64-gnu@1.0.0-rc.9", + "type": "static" + }, + { + "source": "npm:rolldown", + "target": "npm:@rolldown/binding-linux-s390x-gnu@1.0.0-rc.9", + "type": "static" + }, + { + "source": "npm:rolldown", + "target": "npm:@rolldown/binding-linux-x64-gnu@1.0.0-rc.9", + "type": "static" + }, + { + "source": "npm:rolldown", + "target": "npm:@rolldown/binding-linux-x64-musl@1.0.0-rc.9", + "type": "static" + }, + { + "source": "npm:rolldown", + "target": "npm:@rolldown/binding-openharmony-arm64@1.0.0-rc.9", + "type": "static" + }, + { + "source": "npm:rolldown", + "target": "npm:@rolldown/binding-wasm32-wasi@1.0.0-rc.9", + "type": "static" + }, + { + "source": "npm:rolldown", + "target": "npm:@rolldown/binding-win32-arm64-msvc@1.0.0-rc.9", + "type": "static" + }, + { + "source": "npm:rolldown", + "target": "npm:@rolldown/binding-win32-x64-msvc@1.0.0-rc.9", + "type": "static" + }, + { + "source": "npm:router", + "target": "npm:debug", + "type": "static" + }, + { + "source": "npm:router", + "target": "npm:depd", + "type": "static" + }, + { + "source": "npm:router", + "target": "npm:is-promise", + "type": "static" + }, + { + "source": "npm:router", + "target": "npm:parseurl", + "type": "static" + }, + { + "source": "npm:router", + "target": "npm:path-to-regexp", + "type": "static" + }, + { + "source": "npm:run-parallel", + "target": "npm:queue-microtask", + "type": "static" + }, + { + "source": "npm:safe-array-concat", + "target": "npm:call-bind", + "type": "static" + }, + { + "source": "npm:safe-array-concat", + "target": "npm:call-bound", + "type": "static" + }, + { + "source": "npm:safe-array-concat", + "target": "npm:get-intrinsic", + "type": "static" + }, + { + "source": "npm:safe-array-concat", + "target": "npm:has-symbols", + "type": "static" + }, + { + "source": "npm:safe-array-concat", + "target": "npm:isarray", + "type": "static" + }, + { + "source": "npm:safe-push-apply", + "target": "npm:es-errors", + "type": "static" + }, + { + "source": "npm:safe-push-apply", + "target": "npm:isarray", + "type": "static" + }, + { + "source": "npm:safe-regex-test", + "target": "npm:call-bound", + "type": "static" + }, + { + "source": "npm:safe-regex-test", + "target": "npm:es-errors", + "type": "static" + }, + { + "source": "npm:safe-regex-test", + "target": "npm:is-regex", + "type": "static" + }, + { + "source": "npm:safe-regex2", + "target": "npm:ret", + "type": "static" + }, + { + "source": "npm:send", + "target": "npm:debug", + "type": "static" + }, + { + "source": "npm:send", + "target": "npm:encodeurl", + "type": "static" + }, + { + "source": "npm:send", + "target": "npm:escape-html", + "type": "static" + }, + { + "source": "npm:send", + "target": "npm:etag", + "type": "static" + }, + { + "source": "npm:send", + "target": "npm:fresh", + "type": "static" + }, + { + "source": "npm:send", + "target": "npm:http-errors", + "type": "static" + }, + { + "source": "npm:send", + "target": "npm:mime-types", + "type": "static" + }, + { + "source": "npm:send", + "target": "npm:ms", + "type": "static" + }, + { + "source": "npm:send", + "target": "npm:on-finished", + "type": "static" + }, + { + "source": "npm:send", + "target": "npm:range-parser", + "type": "static" + }, + { + "source": "npm:send", + "target": "npm:statuses", + "type": "static" + }, + { + "source": "npm:serialize-error", + "target": "npm:type-fest@0.20.2", + "type": "static" + }, + { + "source": "npm:seroval-plugins", + "target": "npm:seroval", + "type": "static" + }, + { + "source": "npm:serve-static", + "target": "npm:encodeurl", + "type": "static" + }, + { + "source": "npm:serve-static", + "target": "npm:escape-html", + "type": "static" + }, + { + "source": "npm:serve-static", + "target": "npm:parseurl", + "type": "static" + }, + { + "source": "npm:serve-static", + "target": "npm:send", + "type": "static" + }, + { + "source": "npm:set-function-length", + "target": "npm:define-data-property", + "type": "static" + }, + { + "source": "npm:set-function-length", + "target": "npm:es-errors", + "type": "static" + }, + { + "source": "npm:set-function-length", + "target": "npm:function-bind", + "type": "static" + }, + { + "source": "npm:set-function-length", + "target": "npm:get-intrinsic", + "type": "static" + }, + { + "source": "npm:set-function-length", + "target": "npm:gopd", + "type": "static" + }, + { + "source": "npm:set-function-length", + "target": "npm:has-property-descriptors", + "type": "static" + }, + { + "source": "npm:set-function-name", + "target": "npm:define-data-property", + "type": "static" + }, + { + "source": "npm:set-function-name", + "target": "npm:es-errors", + "type": "static" + }, + { + "source": "npm:set-function-name", + "target": "npm:functions-have-names", + "type": "static" + }, + { + "source": "npm:set-function-name", + "target": "npm:has-property-descriptors", + "type": "static" + }, + { + "source": "npm:set-proto", + "target": "npm:dunder-proto", + "type": "static" + }, + { + "source": "npm:set-proto", + "target": "npm:es-errors", + "type": "static" + }, + { + "source": "npm:set-proto", + "target": "npm:es-object-atoms", + "type": "static" + }, + { + "source": "npm:sharp@0.33.5", + "target": "npm:color", + "type": "static" + }, + { + "source": "npm:sharp@0.33.5", + "target": "npm:detect-libc", + "type": "static" + }, + { + "source": "npm:sharp@0.33.5", + "target": "npm:semver@7.7.4", + "type": "static" + }, + { + "source": "npm:sharp@0.33.5", + "target": "npm:@img/sharp-darwin-arm64@0.33.5", + "type": "static" + }, + { + "source": "npm:sharp@0.33.5", + "target": "npm:@img/sharp-darwin-x64@0.33.5", + "type": "static" + }, + { + "source": "npm:sharp@0.33.5", + "target": "npm:@img/sharp-libvips-darwin-arm64@1.0.4", + "type": "static" + }, + { + "source": "npm:sharp@0.33.5", + "target": "npm:@img/sharp-libvips-darwin-x64@1.0.4", + "type": "static" + }, + { + "source": "npm:sharp@0.33.5", + "target": "npm:@img/sharp-libvips-linux-arm@1.0.5", + "type": "static" + }, + { + "source": "npm:sharp@0.33.5", + "target": "npm:@img/sharp-libvips-linux-arm64@1.0.4", + "type": "static" + }, + { + "source": "npm:sharp@0.33.5", + "target": "npm:@img/sharp-libvips-linux-s390x@1.0.4", + "type": "static" + }, + { + "source": "npm:sharp@0.33.5", + "target": "npm:@img/sharp-libvips-linux-x64@1.0.4", + "type": "static" + }, + { + "source": "npm:sharp@0.33.5", + "target": "npm:@img/sharp-libvips-linuxmusl-arm64@1.0.4", + "type": "static" + }, + { + "source": "npm:sharp@0.33.5", + "target": "npm:@img/sharp-libvips-linuxmusl-x64@1.0.4", + "type": "static" + }, + { + "source": "npm:sharp@0.33.5", + "target": "npm:@img/sharp-linux-arm@0.33.5", + "type": "static" + }, + { + "source": "npm:sharp@0.33.5", + "target": "npm:@img/sharp-linux-arm64@0.33.5", + "type": "static" + }, + { + "source": "npm:sharp@0.33.5", + "target": "npm:@img/sharp-linux-s390x@0.33.5", + "type": "static" + }, + { + "source": "npm:sharp@0.33.5", + "target": "npm:@img/sharp-linux-x64@0.33.5", + "type": "static" + }, + { + "source": "npm:sharp@0.33.5", + "target": "npm:@img/sharp-linuxmusl-arm64@0.33.5", + "type": "static" + }, + { + "source": "npm:sharp@0.33.5", + "target": "npm:@img/sharp-linuxmusl-x64@0.33.5", + "type": "static" + }, + { + "source": "npm:sharp@0.33.5", + "target": "npm:@img/sharp-wasm32@0.33.5", + "type": "static" + }, + { + "source": "npm:sharp@0.33.5", + "target": "npm:@img/sharp-win32-ia32@0.33.5", + "type": "static" + }, + { + "source": "npm:sharp@0.33.5", + "target": "npm:@img/sharp-win32-x64@0.33.5", + "type": "static" + }, + { + "source": "npm:sharp", + "target": "npm:@img/colour", + "type": "static" + }, + { + "source": "npm:sharp", + "target": "npm:detect-libc", + "type": "static" + }, + { + "source": "npm:sharp", + "target": "npm:semver@7.7.4", + "type": "static" + }, + { + "source": "npm:sharp", + "target": "npm:@img/sharp-darwin-arm64@0.34.5", + "type": "static" + }, + { + "source": "npm:sharp", + "target": "npm:@img/sharp-darwin-x64@0.34.5", + "type": "static" + }, + { + "source": "npm:sharp", + "target": "npm:@img/sharp-libvips-darwin-arm64@1.2.4", + "type": "static" + }, + { + "source": "npm:sharp", + "target": "npm:@img/sharp-libvips-darwin-x64@1.2.4", + "type": "static" + }, + { + "source": "npm:sharp", + "target": "npm:@img/sharp-libvips-linux-arm@1.2.4", + "type": "static" + }, + { + "source": "npm:sharp", + "target": "npm:@img/sharp-libvips-linux-arm64@1.2.4", + "type": "static" + }, + { + "source": "npm:sharp", + "target": "npm:@img/sharp-libvips-linux-ppc64", + "type": "static" + }, + { + "source": "npm:sharp", + "target": "npm:@img/sharp-libvips-linux-riscv64", + "type": "static" + }, + { + "source": "npm:sharp", + "target": "npm:@img/sharp-libvips-linux-s390x@1.2.4", + "type": "static" + }, + { + "source": "npm:sharp", + "target": "npm:@img/sharp-libvips-linux-x64", + "type": "static" + }, + { + "source": "npm:sharp", + "target": "npm:@img/sharp-libvips-linuxmusl-arm64@1.2.4", + "type": "static" + }, + { + "source": "npm:sharp", + "target": "npm:@img/sharp-libvips-linuxmusl-x64", + "type": "static" + }, + { + "source": "npm:sharp", + "target": "npm:@img/sharp-linux-arm@0.34.5", + "type": "static" + }, + { + "source": "npm:sharp", + "target": "npm:@img/sharp-linux-arm64@0.34.5", + "type": "static" + }, + { + "source": "npm:sharp", + "target": "npm:@img/sharp-linux-ppc64", + "type": "static" + }, + { + "source": "npm:sharp", + "target": "npm:@img/sharp-linux-riscv64", + "type": "static" + }, + { + "source": "npm:sharp", + "target": "npm:@img/sharp-linux-s390x@0.34.5", + "type": "static" + }, + { + "source": "npm:sharp", + "target": "npm:@img/sharp-linux-x64", + "type": "static" + }, + { + "source": "npm:sharp", + "target": "npm:@img/sharp-linuxmusl-arm64@0.34.5", + "type": "static" + }, + { + "source": "npm:sharp", + "target": "npm:@img/sharp-linuxmusl-x64", + "type": "static" + }, + { + "source": "npm:sharp", + "target": "npm:@img/sharp-wasm32@0.34.5", + "type": "static" + }, + { + "source": "npm:sharp", + "target": "npm:@img/sharp-win32-arm64", + "type": "static" + }, + { + "source": "npm:sharp", + "target": "npm:@img/sharp-win32-ia32@0.34.5", + "type": "static" + }, + { + "source": "npm:sharp", + "target": "npm:@img/sharp-win32-x64@0.34.5", + "type": "static" + }, + { + "source": "npm:shebang-command", + "target": "npm:shebang-regex", + "type": "static" + }, + { + "source": "npm:side-channel-list", + "target": "npm:es-errors", + "type": "static" + }, + { + "source": "npm:side-channel-list", + "target": "npm:object-inspect", + "type": "static" + }, + { + "source": "npm:side-channel-map", + "target": "npm:call-bound", + "type": "static" + }, + { + "source": "npm:side-channel-map", + "target": "npm:es-errors", + "type": "static" + }, + { + "source": "npm:side-channel-map", + "target": "npm:get-intrinsic", + "type": "static" + }, + { + "source": "npm:side-channel-map", + "target": "npm:object-inspect", + "type": "static" + }, + { + "source": "npm:side-channel-weakmap", + "target": "npm:call-bound", + "type": "static" + }, + { + "source": "npm:side-channel-weakmap", + "target": "npm:es-errors", + "type": "static" + }, + { + "source": "npm:side-channel-weakmap", + "target": "npm:get-intrinsic", + "type": "static" + }, + { + "source": "npm:side-channel-weakmap", + "target": "npm:object-inspect", + "type": "static" + }, + { + "source": "npm:side-channel-weakmap", + "target": "npm:side-channel-map", + "type": "static" + }, + { + "source": "npm:side-channel", + "target": "npm:es-errors", + "type": "static" + }, + { + "source": "npm:side-channel", + "target": "npm:object-inspect", + "type": "static" + }, + { + "source": "npm:side-channel", + "target": "npm:side-channel-list", + "type": "static" + }, + { + "source": "npm:side-channel", + "target": "npm:side-channel-map", + "type": "static" + }, + { + "source": "npm:side-channel", + "target": "npm:side-channel-weakmap", + "type": "static" + }, + { + "source": "npm:simple-get", + "target": "npm:decompress-response", + "type": "static" + }, + { + "source": "npm:simple-get", + "target": "npm:once", + "type": "static" + }, + { + "source": "npm:simple-get", + "target": "npm:simple-concat", + "type": "static" + }, + { + "source": "npm:simple-swizzle", + "target": "npm:is-arrayish@0.3.4", + "type": "static" + }, + { + "source": "npm:sirv", + "target": "npm:@polka/url", + "type": "static" + }, + { + "source": "npm:sirv", + "target": "npm:mrmime", + "type": "static" + }, + { + "source": "npm:sirv", + "target": "npm:totalist", + "type": "static" + }, + { + "source": "npm:socks-proxy-agent", + "target": "npm:agent-base", + "type": "static" + }, + { + "source": "npm:socks-proxy-agent", + "target": "npm:debug", + "type": "static" + }, + { + "source": "npm:socks-proxy-agent", + "target": "npm:socks", + "type": "static" + }, + { + "source": "npm:socks", + "target": "npm:ip-address", + "type": "static" + }, + { + "source": "npm:socks", + "target": "npm:smart-buffer", + "type": "static" + }, + { + "source": "npm:solid-element", + "target": "npm:component-register", + "type": "static" + }, + { + "source": "npm:solid-element", + "target": "npm:solid-js", + "type": "static" + }, + { + "source": "npm:solid-js", + "target": "npm:csstype", + "type": "static" + }, + { + "source": "npm:solid-js", + "target": "npm:seroval", + "type": "static" + }, + { + "source": "npm:solid-js", + "target": "npm:seroval-plugins", + "type": "static" + }, + { + "source": "npm:solid-motionone", + "target": "npm:@motionone/dom", + "type": "static" + }, + { + "source": "npm:solid-motionone", + "target": "npm:@motionone/utils", + "type": "static" + }, + { + "source": "npm:solid-motionone", + "target": "npm:@solid-primitives/props", + "type": "static" + }, + { + "source": "npm:solid-motionone", + "target": "npm:@solid-primitives/refs", + "type": "static" + }, + { + "source": "npm:solid-motionone", + "target": "npm:@solid-primitives/transition-group", + "type": "static" + }, + { + "source": "npm:solid-motionone", + "target": "npm:csstype", + "type": "static" + }, + { + "source": "npm:solid-motionone", + "target": "npm:solid-js", + "type": "static" + }, + { + "source": "npm:solid-refresh", + "target": "npm:@babel/generator", + "type": "static" + }, + { + "source": "npm:solid-refresh", + "target": "npm:@babel/helper-module-imports", + "type": "static" + }, + { + "source": "npm:solid-refresh", + "target": "npm:@babel/types", + "type": "static" + }, + { + "source": "npm:solid-refresh", + "target": "npm:solid-js", + "type": "static" + }, + { + "source": "npm:sonic-boom", + "target": "npm:atomic-sleep", + "type": "static" + }, + { + "source": "npm:source-map-support", + "target": "npm:buffer-from", + "type": "static" + }, + { + "source": "npm:source-map-support", + "target": "npm:source-map", + "type": "static" + }, + { + "source": "npm:ssri", + "target": "npm:minipass", + "type": "static" + }, + { + "source": "npm:standaloner", + "target": "npm:@vercel/nft@0.30.4", + "type": "static" + }, + { + "source": "npm:standaloner", + "target": "npm:acorn", + "type": "static" + }, + { + "source": "npm:standaloner", + "target": "npm:estree-walker", + "type": "static" + }, + { + "source": "npm:standaloner", + "target": "npm:magic-string", + "type": "static" + }, + { + "source": "npm:standaloner", + "target": "npm:rolldown@1.0.0-beta.51", + "type": "static" + }, + { + "source": "npm:standaloner@0.2.2", + "target": "npm:@vercel/nft", + "type": "static" + }, + { + "source": "npm:standaloner@0.2.2", + "target": "npm:acorn", + "type": "static" + }, + { + "source": "npm:standaloner@0.2.2", + "target": "npm:estree-walker", + "type": "static" + }, + { + "source": "npm:standaloner@0.2.2", + "target": "npm:magic-string", + "type": "static" + }, + { + "source": "npm:standaloner@0.2.2", + "target": "npm:p-limit", + "type": "static" + }, + { + "source": "npm:standaloner@0.2.2", + "target": "npm:rolldown@1.0.0-beta.51", + "type": "static" + }, + { + "source": "npm:stop-iteration-iterator", + "target": "npm:es-errors", + "type": "static" + }, + { + "source": "npm:stop-iteration-iterator", + "target": "npm:internal-slot", + "type": "static" + }, + { + "source": "npm:streamx", + "target": "npm:events-universal", + "type": "static" + }, + { + "source": "npm:streamx", + "target": "npm:fast-fifo", + "type": "static" + }, + { + "source": "npm:streamx", + "target": "npm:text-decoder", + "type": "static" + }, + { + "source": "npm:string-width", + "target": "npm:emoji-regex", + "type": "static" + }, + { + "source": "npm:string-width", + "target": "npm:is-fullwidth-code-point", + "type": "static" + }, + { + "source": "npm:string-width", + "target": "npm:strip-ansi@6.0.1", + "type": "static" + }, + { + "source": "npm:string-width-cjs", + "target": "npm:emoji-regex", + "type": "static" + }, + { + "source": "npm:string-width-cjs", + "target": "npm:is-fullwidth-code-point", + "type": "static" + }, + { + "source": "npm:string-width-cjs", + "target": "npm:strip-ansi@6.0.1", + "type": "static" + }, + { + "source": "npm:string-width@5.1.2", + "target": "npm:eastasianwidth", + "type": "static" + }, + { + "source": "npm:string-width@5.1.2", + "target": "npm:emoji-regex@9.2.2", + "type": "static" + }, + { + "source": "npm:string-width@5.1.2", + "target": "npm:strip-ansi", + "type": "static" + }, + { + "source": "npm:string.prototype.matchall", + "target": "npm:call-bind", + "type": "static" + }, + { + "source": "npm:string.prototype.matchall", + "target": "npm:call-bound", + "type": "static" + }, + { + "source": "npm:string.prototype.matchall", + "target": "npm:define-properties", + "type": "static" + }, + { + "source": "npm:string.prototype.matchall", + "target": "npm:es-abstract", + "type": "static" + }, + { + "source": "npm:string.prototype.matchall", + "target": "npm:es-errors", + "type": "static" + }, + { + "source": "npm:string.prototype.matchall", + "target": "npm:es-object-atoms", + "type": "static" + }, + { + "source": "npm:string.prototype.matchall", + "target": "npm:get-intrinsic", + "type": "static" + }, + { + "source": "npm:string.prototype.matchall", + "target": "npm:gopd", + "type": "static" + }, + { + "source": "npm:string.prototype.matchall", + "target": "npm:has-symbols", + "type": "static" + }, + { + "source": "npm:string.prototype.matchall", + "target": "npm:internal-slot", + "type": "static" + }, + { + "source": "npm:string.prototype.matchall", + "target": "npm:regexp.prototype.flags", + "type": "static" + }, + { + "source": "npm:string.prototype.matchall", + "target": "npm:set-function-name", + "type": "static" + }, + { + "source": "npm:string.prototype.matchall", + "target": "npm:side-channel", + "type": "static" + }, + { + "source": "npm:string.prototype.repeat", + "target": "npm:define-properties", + "type": "static" + }, + { + "source": "npm:string.prototype.repeat", + "target": "npm:es-abstract", + "type": "static" + }, + { + "source": "npm:string.prototype.trim", + "target": "npm:call-bind", + "type": "static" + }, + { + "source": "npm:string.prototype.trim", + "target": "npm:call-bound", + "type": "static" + }, + { + "source": "npm:string.prototype.trim", + "target": "npm:define-data-property", + "type": "static" + }, + { + "source": "npm:string.prototype.trim", + "target": "npm:define-properties", + "type": "static" + }, + { + "source": "npm:string.prototype.trim", + "target": "npm:es-abstract", + "type": "static" + }, + { + "source": "npm:string.prototype.trim", + "target": "npm:es-object-atoms", + "type": "static" + }, + { + "source": "npm:string.prototype.trim", + "target": "npm:has-property-descriptors", + "type": "static" + }, + { + "source": "npm:string.prototype.trimend", + "target": "npm:call-bind", + "type": "static" + }, + { + "source": "npm:string.prototype.trimend", + "target": "npm:call-bound", + "type": "static" + }, + { + "source": "npm:string.prototype.trimend", + "target": "npm:define-properties", + "type": "static" + }, + { + "source": "npm:string.prototype.trimend", + "target": "npm:es-object-atoms", + "type": "static" + }, + { + "source": "npm:string.prototype.trimstart", + "target": "npm:call-bind", + "type": "static" + }, + { + "source": "npm:string.prototype.trimstart", + "target": "npm:define-properties", + "type": "static" + }, + { + "source": "npm:string.prototype.trimstart", + "target": "npm:es-object-atoms", + "type": "static" + }, + { + "source": "npm:string_decoder", + "target": "npm:safe-buffer@5.2.1", + "type": "static" + }, + { + "source": "npm:strip-ansi@6.0.1", + "target": "npm:ansi-regex@5.0.1", + "type": "static" + }, + { + "source": "npm:strip-ansi-cjs", + "target": "npm:ansi-regex@5.0.1", + "type": "static" + }, + { + "source": "npm:strip-ansi", + "target": "npm:ansi-regex", + "type": "static" + }, + { + "source": "npm:style-to-object", + "target": "npm:inline-style-parser", + "type": "static" + }, + { + "source": "npm:stylehacks", + "target": "npm:browserslist", + "type": "static" + }, + { + "source": "npm:stylehacks", + "target": "npm:postcss", + "type": "static" + }, + { + "source": "npm:stylehacks", + "target": "npm:postcss-selector-parser@6.1.2", + "type": "static" + }, + { + "source": "npm:sugarss", + "target": "npm:postcss", + "type": "static" + }, + { + "source": "npm:supports-color", + "target": "npm:has-flag", + "type": "static" + }, + { + "source": "npm:svg-gradient", + "target": "npm:gradient-parser", + "type": "static" + }, + { + "source": "npm:svg-gradient", + "target": "npm:whoops", + "type": "static" + }, + { + "source": "npm:svgo", + "target": "npm:@trysound/sax", + "type": "static" + }, + { + "source": "npm:svgo", + "target": "npm:commander", + "type": "static" + }, + { + "source": "npm:svgo", + "target": "npm:css-select", + "type": "static" + }, + { + "source": "npm:svgo", + "target": "npm:css-tree", + "type": "static" + }, + { + "source": "npm:svgo", + "target": "npm:csso", + "type": "static" + }, + { + "source": "npm:svgo", + "target": "npm:picocolors", + "type": "static" + }, + { + "source": "npm:svgo", + "target": "npm:stable", + "type": "static" + }, + { + "source": "npm:synckit", + "target": "npm:@pkgr/core", + "type": "static" + }, + { + "source": "npm:tar-fs@2.1.4", + "target": "npm:chownr", + "type": "static" + }, + { + "source": "npm:tar-fs@2.1.4", + "target": "npm:mkdirp-classic", + "type": "static" + }, + { + "source": "npm:tar-fs@2.1.4", + "target": "npm:pump", + "type": "static" + }, + { + "source": "npm:tar-fs@2.1.4", + "target": "npm:tar-stream", + "type": "static" + }, + { + "source": "npm:tar-fs", + "target": "npm:pump", + "type": "static" + }, + { + "source": "npm:tar-fs", + "target": "npm:tar-stream@3.1.7", + "type": "static" + }, + { + "source": "npm:tar-fs", + "target": "npm:bare-fs", + "type": "static" + }, + { + "source": "npm:tar-fs", + "target": "npm:bare-path", + "type": "static" + }, + { + "source": "npm:tar-stream", + "target": "npm:bl", + "type": "static" + }, + { + "source": "npm:tar-stream", + "target": "npm:end-of-stream", + "type": "static" + }, + { + "source": "npm:tar-stream", + "target": "npm:fs-constants", + "type": "static" + }, + { + "source": "npm:tar-stream", + "target": "npm:inherits", + "type": "static" + }, + { + "source": "npm:tar-stream", + "target": "npm:readable-stream", + "type": "static" + }, + { + "source": "npm:tar-stream@3.1.7", + "target": "npm:b4a", + "type": "static" + }, + { + "source": "npm:tar-stream@3.1.7", + "target": "npm:fast-fifo", + "type": "static" + }, + { + "source": "npm:tar-stream@3.1.7", + "target": "npm:streamx", + "type": "static" + }, + { + "source": "npm:tar", + "target": "npm:@isaacs/fs-minipass", + "type": "static" + }, + { + "source": "npm:tar", + "target": "npm:chownr@3.0.0", + "type": "static" + }, + { + "source": "npm:tar", + "target": "npm:minipass", + "type": "static" + }, + { + "source": "npm:tar", + "target": "npm:minizlib", + "type": "static" + }, + { + "source": "npm:tar", + "target": "npm:yallist@5.0.0", + "type": "static" + }, + { + "source": "npm:telefunc", + "target": "npm:@brillout/import", + "type": "static" + }, + { + "source": "npm:telefunc", + "target": "npm:@brillout/json-serializer", + "type": "static" + }, + { + "source": "npm:telefunc", + "target": "npm:@brillout/picocolors", + "type": "static" + }, + { + "source": "npm:telefunc", + "target": "npm:@brillout/vite-plugin-server-entry", + "type": "static" + }, + { + "source": "npm:telefunc", + "target": "npm:es-module-lexer", + "type": "static" + }, + { + "source": "npm:telefunc", + "target": "npm:magic-string", + "type": "static" + }, + { + "source": "npm:telefunc", + "target": "npm:ts-morph", + "type": "static" + }, + { + "source": "npm:telefunc", + "target": "npm:@babel/core", + "type": "static" + }, + { + "source": "npm:telefunc", + "target": "npm:@babel/parser", + "type": "static" + }, + { + "source": "npm:telefunc", + "target": "npm:@babel/types", + "type": "static" + }, + { + "source": "npm:telefunc", + "target": "npm:react", + "type": "static" + }, + { + "source": "npm:telefunc", + "target": "npm:react-streaming", + "type": "static" + }, + { + "source": "npm:telefunc", + "target": "npm:vite", + "type": "static" + }, + { + "source": "npm:text-decoder", + "target": "npm:b4a", + "type": "static" + }, + { + "source": "npm:thread-stream", + "target": "npm:real-require", + "type": "static" + }, + { + "source": "npm:tinyglobby", + "target": "npm:fdir", + "type": "static" + }, + { + "source": "npm:tinyglobby", + "target": "npm:picomatch", + "type": "static" + }, + { + "source": "npm:tldts-experimental", + "target": "npm:tldts-core", + "type": "static" + }, + { + "source": "npm:tldts", + "target": "npm:tldts-core", + "type": "static" + }, + { + "source": "npm:to-regex-range", + "target": "npm:is-number", + "type": "static" + }, + { + "source": "npm:tough-cookie", + "target": "npm:tldts", + "type": "static" + }, + { + "source": "npm:ts-api-utils", + "target": "npm:typescript", + "type": "static" + }, + { + "source": "npm:ts-morph", + "target": "npm:@ts-morph/common", + "type": "static" + }, + { + "source": "npm:ts-morph", + "target": "npm:code-block-writer", + "type": "static" + }, + { + "source": "npm:tsconfig-paths", + "target": "npm:json5", + "type": "static" + }, + { + "source": "npm:tsconfig-paths", + "target": "npm:minimist", + "type": "static" + }, + { + "source": "npm:tsconfig-paths", + "target": "npm:strip-bom", + "type": "static" + }, + { + "source": "npm:tsdown", + "target": "npm:ansis", + "type": "static" + }, + { + "source": "npm:tsdown", + "target": "npm:cac", + "type": "static" + }, + { + "source": "npm:tsdown", + "target": "npm:defu", + "type": "static" + }, + { + "source": "npm:tsdown", + "target": "npm:empathic", + "type": "static" + }, + { + "source": "npm:tsdown", + "target": "npm:hookable", + "type": "static" + }, + { + "source": "npm:tsdown", + "target": "npm:import-without-cache", + "type": "static" + }, + { + "source": "npm:tsdown", + "target": "npm:obug", + "type": "static" + }, + { + "source": "npm:tsdown", + "target": "npm:picomatch", + "type": "static" + }, + { + "source": "npm:tsdown", + "target": "npm:rolldown", + "type": "static" + }, + { + "source": "npm:tsdown", + "target": "npm:rolldown-plugin-dts", + "type": "static" + }, + { + "source": "npm:tsdown", + "target": "npm:semver@7.7.4", + "type": "static" + }, + { + "source": "npm:tsdown", + "target": "npm:tinyexec", + "type": "static" + }, + { + "source": "npm:tsdown", + "target": "npm:tinyglobby", + "type": "static" + }, + { + "source": "npm:tsdown", + "target": "npm:tree-kill", + "type": "static" + }, + { + "source": "npm:tsdown", + "target": "npm:unconfig-core", + "type": "static" + }, + { + "source": "npm:tsdown", + "target": "npm:unrun", + "type": "static" + }, + { + "source": "npm:tsdown", + "target": "npm:typescript", + "type": "static" + }, + { + "source": "npm:tsx", + "target": "npm:esbuild", + "type": "static" + }, + { + "source": "npm:tsx", + "target": "npm:get-tsconfig", + "type": "static" + }, + { + "source": "npm:tsx", + "target": "npm:fsevents", + "type": "static" + }, + { + "source": "npm:tunnel-agent", + "target": "npm:safe-buffer@5.2.1", + "type": "static" + }, + { + "source": "npm:turbo", + "target": "npm:@turbo/darwin-64", + "type": "static" + }, + { + "source": "npm:turbo", + "target": "npm:@turbo/darwin-arm64", + "type": "static" + }, + { + "source": "npm:turbo", + "target": "npm:@turbo/linux-64", + "type": "static" + }, + { + "source": "npm:turbo", + "target": "npm:@turbo/linux-arm64", + "type": "static" + }, + { + "source": "npm:turbo", + "target": "npm:@turbo/windows-64", + "type": "static" + }, + { + "source": "npm:turbo", + "target": "npm:@turbo/windows-arm64", + "type": "static" + }, + { + "source": "npm:type-check", + "target": "npm:prelude-ls", + "type": "static" + }, + { + "source": "npm:type-is", + "target": "npm:content-type", + "type": "static" + }, + { + "source": "npm:type-is", + "target": "npm:media-typer", + "type": "static" + }, + { + "source": "npm:type-is", + "target": "npm:mime-types", + "type": "static" + }, + { + "source": "npm:typed-array-buffer", + "target": "npm:call-bound", + "type": "static" + }, + { + "source": "npm:typed-array-buffer", + "target": "npm:es-errors", + "type": "static" + }, + { + "source": "npm:typed-array-buffer", + "target": "npm:is-typed-array", + "type": "static" + }, + { + "source": "npm:typed-array-byte-length", + "target": "npm:call-bind", + "type": "static" + }, + { + "source": "npm:typed-array-byte-length", + "target": "npm:for-each", + "type": "static" + }, + { + "source": "npm:typed-array-byte-length", + "target": "npm:gopd", + "type": "static" + }, + { + "source": "npm:typed-array-byte-length", + "target": "npm:has-proto", + "type": "static" + }, + { + "source": "npm:typed-array-byte-length", + "target": "npm:is-typed-array", + "type": "static" + }, + { + "source": "npm:typed-array-byte-offset", + "target": "npm:available-typed-arrays", + "type": "static" + }, + { + "source": "npm:typed-array-byte-offset", + "target": "npm:call-bind", + "type": "static" + }, + { + "source": "npm:typed-array-byte-offset", + "target": "npm:for-each", + "type": "static" + }, + { + "source": "npm:typed-array-byte-offset", + "target": "npm:gopd", + "type": "static" + }, + { + "source": "npm:typed-array-byte-offset", + "target": "npm:has-proto", + "type": "static" + }, + { + "source": "npm:typed-array-byte-offset", + "target": "npm:is-typed-array", + "type": "static" + }, + { + "source": "npm:typed-array-byte-offset", + "target": "npm:reflect.getprototypeof", + "type": "static" + }, + { + "source": "npm:typed-array-length", + "target": "npm:call-bind", + "type": "static" + }, + { + "source": "npm:typed-array-length", + "target": "npm:for-each", + "type": "static" + }, + { + "source": "npm:typed-array-length", + "target": "npm:gopd", + "type": "static" + }, + { + "source": "npm:typed-array-length", + "target": "npm:is-typed-array", + "type": "static" + }, + { + "source": "npm:typed-array-length", + "target": "npm:possible-typed-array-names", + "type": "static" + }, + { + "source": "npm:typed-array-length", + "target": "npm:reflect.getprototypeof", + "type": "static" + }, + { + "source": "npm:typescript-eslint", + "target": "npm:@typescript-eslint/eslint-plugin", + "type": "static" + }, + { + "source": "npm:typescript-eslint", + "target": "npm:@typescript-eslint/parser", + "type": "static" + }, + { + "source": "npm:typescript-eslint", + "target": "npm:@typescript-eslint/typescript-estree", + "type": "static" + }, + { + "source": "npm:typescript-eslint", + "target": "npm:@typescript-eslint/utils", + "type": "static" + }, + { + "source": "npm:typescript-eslint", + "target": "npm:eslint", + "type": "static" + }, + { + "source": "npm:typescript-eslint", + "target": "npm:typescript", + "type": "static" + }, + { + "source": "npm:unbox-primitive", + "target": "npm:call-bound", + "type": "static" + }, + { + "source": "npm:unbox-primitive", + "target": "npm:has-bigints", + "type": "static" + }, + { + "source": "npm:unbox-primitive", + "target": "npm:has-symbols", + "type": "static" + }, + { + "source": "npm:unbox-primitive", + "target": "npm:which-boxed-primitive", + "type": "static" + }, + { + "source": "npm:unconfig-core", + "target": "npm:@quansync/fs", + "type": "static" + }, + { + "source": "npm:unconfig-core", + "target": "npm:quansync", + "type": "static" + }, + { + "source": "npm:unconfig", + "target": "npm:@quansync/fs", + "type": "static" + }, + { + "source": "npm:unconfig", + "target": "npm:defu", + "type": "static" + }, + { + "source": "npm:unconfig", + "target": "npm:jiti", + "type": "static" + }, + { + "source": "npm:unconfig", + "target": "npm:quansync", + "type": "static" + }, + { + "source": "npm:unconfig", + "target": "npm:unconfig-core", + "type": "static" + }, + { + "source": "npm:unenv", + "target": "npm:pathe", + "type": "static" + }, + { + "source": "npm:union", + "target": "npm:qs", + "type": "static" + }, + { + "source": "npm:unique-filename", + "target": "npm:unique-slug", + "type": "static" + }, + { + "source": "npm:unique-slug", + "target": "npm:imurmurhash", + "type": "static" + }, + { + "source": "npm:unist-util-is", + "target": "npm:@types/unist@3.0.3", + "type": "static" + }, + { + "source": "npm:unist-util-stringify-position", + "target": "npm:@types/unist@3.0.3", + "type": "static" + }, + { + "source": "npm:unist-util-visit-parents", + "target": "npm:@types/unist@3.0.3", + "type": "static" + }, + { + "source": "npm:unist-util-visit-parents", + "target": "npm:unist-util-is", + "type": "static" + }, + { + "source": "npm:unist-util-visit", + "target": "npm:@types/unist@3.0.3", + "type": "static" + }, + { + "source": "npm:unist-util-visit", + "target": "npm:unist-util-is", + "type": "static" + }, + { + "source": "npm:unist-util-visit", + "target": "npm:unist-util-visit-parents", + "type": "static" + }, + { + "source": "npm:unplugin-purge-polyfills", + "target": "npm:defu", + "type": "static" + }, + { + "source": "npm:unplugin-purge-polyfills", + "target": "npm:magic-string", + "type": "static" + }, + { + "source": "npm:unplugin-purge-polyfills", + "target": "npm:mlly", + "type": "static" + }, + { + "source": "npm:unplugin-purge-polyfills", + "target": "npm:unplugin", + "type": "static" + }, + { + "source": "npm:unplugin", + "target": "npm:@jridgewell/remapping", + "type": "static" + }, + { + "source": "npm:unplugin", + "target": "npm:acorn", + "type": "static" + }, + { + "source": "npm:unplugin", + "target": "npm:picomatch", + "type": "static" + }, + { + "source": "npm:unplugin", + "target": "npm:webpack-virtual-modules", + "type": "static" + }, + { + "source": "npm:unrun", + "target": "npm:rolldown", + "type": "static" + }, + { + "source": "npm:unrun", + "target": "npm:synckit", + "type": "static" + }, + { + "source": "npm:update-browserslist-db", + "target": "npm:browserslist", + "type": "static" + }, + { + "source": "npm:update-browserslist-db", + "target": "npm:escalade", + "type": "static" + }, + { + "source": "npm:update-browserslist-db", + "target": "npm:picocolors", + "type": "static" + }, + { + "source": "npm:uri-js", + "target": "npm:punycode", + "type": "static" + }, + { + "source": "npm:url-http", + "target": "npm:punycode-regex", + "type": "static" + }, + { + "source": "npm:url-http", + "target": "npm:re2", + "type": "static" + }, + { + "source": "npm:url-http", + "target": "npm:url-regex-safe", + "type": "static" + }, + { + "source": "npm:url-regex-safe", + "target": "npm:ip-regex", + "type": "static" + }, + { + "source": "npm:url-regex-safe", + "target": "npm:tlds", + "type": "static" + }, + { + "source": "npm:url-regex-safe", + "target": "npm:re2", + "type": "static" + }, + { + "source": "npm:use-callback-ref", + "target": "npm:react", + "type": "static" + }, + { + "source": "npm:use-callback-ref", + "target": "npm:tslib", + "type": "static" + }, + { + "source": "npm:use-callback-ref", + "target": "npm:@types/react", + "type": "static" + }, + { + "source": "npm:use-composed-ref", + "target": "npm:react", + "type": "static" + }, + { + "source": "npm:use-composed-ref", + "target": "npm:@types/react", + "type": "static" + }, + { + "source": "npm:use-isomorphic-layout-effect", + "target": "npm:react", + "type": "static" + }, + { + "source": "npm:use-isomorphic-layout-effect", + "target": "npm:@types/react", + "type": "static" + }, + { + "source": "npm:use-latest", + "target": "npm:react", + "type": "static" + }, + { + "source": "npm:use-latest", + "target": "npm:use-isomorphic-layout-effect", + "type": "static" + }, + { + "source": "npm:use-latest", + "target": "npm:@types/react", + "type": "static" + }, + { + "source": "npm:use-sidecar", + "target": "npm:detect-node-es", + "type": "static" + }, + { + "source": "npm:use-sidecar", + "target": "npm:react", + "type": "static" + }, + { + "source": "npm:use-sidecar", + "target": "npm:tslib", + "type": "static" + }, + { + "source": "npm:use-sidecar", + "target": "npm:@types/react", + "type": "static" + }, + { + "source": "npm:valibot", + "target": "npm:typescript", + "type": "static" + }, + { + "source": "npm:vike-photon", + "target": "npm:@brillout/picocolors", + "type": "static" + }, + { + "source": "npm:vike-photon", + "target": "npm:@brillout/vite-plugin-server-entry", + "type": "static" + }, + { + "source": "npm:vike-photon", + "target": "npm:@photonjs/core", + "type": "static" + }, + { + "source": "npm:vike-photon", + "target": "npm:@photonjs/runtime", + "type": "static" + }, + { + "source": "npm:vike-photon", + "target": "npm:@universal-middleware/compress", + "type": "static" + }, + { + "source": "npm:vike-photon", + "target": "npm:@universal-middleware/core", + "type": "static" + }, + { + "source": "npm:vike-photon", + "target": "npm:@universal-middleware/sirv", + "type": "static" + }, + { + "source": "npm:vike-photon", + "target": "npm:pkg-types", + "type": "static" + }, + { + "source": "npm:vike-photon", + "target": "npm:standaloner@0.2.2", + "type": "static" + }, + { + "source": "npm:vike-photon", + "target": "npm:vike", + "type": "static" + }, + { + "source": "npm:vike-photon", + "target": "npm:@photonjs/cloudflare", + "type": "static" + }, + { + "source": "npm:vike-photon", + "target": "npm:@photonjs/vercel", + "type": "static" + }, + { + "source": "npm:vike-photon", + "target": "npm:vite", + "type": "static" + }, + { + "source": "npm:vike-react", + "target": "npm:react", + "type": "static" + }, + { + "source": "npm:vike-react", + "target": "npm:react-dom", + "type": "static" + }, + { + "source": "npm:vike-react", + "target": "npm:react-streaming", + "type": "static" + }, + { + "source": "npm:vike-react", + "target": "npm:vike", + "type": "static" + }, + { + "source": "npm:vike-solid", + "target": "npm:isbot-fast", + "type": "static" + }, + { + "source": "npm:vike-solid", + "target": "npm:solid-js", + "type": "static" + }, + { + "source": "npm:vike-solid", + "target": "npm:vike", + "type": "static" + }, + { + "source": "npm:vike-solid", + "target": "npm:vite-plugin-solid", + "type": "static" + }, + { + "source": "npm:vike-vue", + "target": "npm:magic-string", + "type": "static" + }, + { + "source": "npm:vike-vue", + "target": "npm:oxc-parser", + "type": "static" + }, + { + "source": "npm:vike-vue", + "target": "npm:oxc-walker", + "type": "static" + }, + { + "source": "npm:vike-vue", + "target": "npm:vike", + "type": "static" + }, + { + "source": "npm:vike-vue", + "target": "npm:vue", + "type": "static" + }, + { + "source": "npm:vike", + "target": "npm:@babel/core", + "type": "static" + }, + { + "source": "npm:vike", + "target": "npm:@babel/types", + "type": "static" + }, + { + "source": "npm:vike", + "target": "npm:@brillout/import", + "type": "static" + }, + { + "source": "npm:vike", + "target": "npm:@brillout/json-serializer", + "type": "static" + }, + { + "source": "npm:vike", + "target": "npm:@brillout/picocolors", + "type": "static" + }, + { + "source": "npm:vike", + "target": "npm:@brillout/vite-plugin-server-entry", + "type": "static" + }, + { + "source": "npm:vike", + "target": "npm:cac@6.7.14", + "type": "static" + }, + { + "source": "npm:vike", + "target": "npm:es-module-lexer", + "type": "static" + }, + { + "source": "npm:vike", + "target": "npm:esbuild", + "type": "static" + }, + { + "source": "npm:vike", + "target": "npm:json5", + "type": "static" + }, + { + "source": "npm:vike", + "target": "npm:magic-string", + "type": "static" + }, + { + "source": "npm:vike", + "target": "npm:picomatch", + "type": "static" + }, + { + "source": "npm:vike", + "target": "npm:semver@7.7.4", + "type": "static" + }, + { + "source": "npm:vike", + "target": "npm:sirv", + "type": "static" + }, + { + "source": "npm:vike", + "target": "npm:source-map-support", + "type": "static" + }, + { + "source": "npm:vike", + "target": "npm:tinyglobby", + "type": "static" + }, + { + "source": "npm:vike", + "target": "npm:vite", + "type": "static" + }, + { + "source": "npm:vike", + "target": "npm:react-streaming", + "type": "static" + }, + { + "source": "npm:vite-plugin-compiled-react", + "target": "npm:@babel/types", + "type": "static" + }, + { + "source": "npm:vite-plugin-compiled-react", + "target": "npm:@compiled/babel-plugin", + "type": "static" + }, + { + "source": "npm:vite-plugin-compiled-react", + "target": "npm:@compiled/babel-plugin-strip-runtime", + "type": "static" + }, + { + "source": "npm:vite-plugin-compiled-react", + "target": "npm:@compiled/react", + "type": "static" + }, + { + "source": "npm:vite-plugin-compiled-react", + "target": "npm:@vitejs/plugin-react", + "type": "static" + }, + { + "source": "npm:vite-plugin-compiled-react", + "target": "npm:babel-plugin-module-resolver", + "type": "static" + }, + { + "source": "npm:vite-plugin-compiled-react", + "target": "npm:vite", + "type": "static" + }, + { + "source": "npm:vite-plugin-solid", + "target": "npm:@babel/core", + "type": "static" + }, + { + "source": "npm:vite-plugin-solid", + "target": "npm:@types/babel__core", + "type": "static" + }, + { + "source": "npm:vite-plugin-solid", + "target": "npm:babel-preset-solid", + "type": "static" + }, + { + "source": "npm:vite-plugin-solid", + "target": "npm:merge-anything", + "type": "static" + }, + { + "source": "npm:vite-plugin-solid", + "target": "npm:solid-js", + "type": "static" + }, + { + "source": "npm:vite-plugin-solid", + "target": "npm:solid-refresh", + "type": "static" + }, + { + "source": "npm:vite-plugin-solid", + "target": "npm:vite", + "type": "static" + }, + { + "source": "npm:vite-plugin-solid", + "target": "npm:vitefu", + "type": "static" + }, + { + "source": "npm:vite-plugin-wasm", + "target": "npm:vite", + "type": "static" + }, + { + "source": "npm:vite", + "target": "npm:lightningcss", + "type": "static" + }, + { + "source": "npm:vite", + "target": "npm:picomatch", + "type": "static" + }, + { + "source": "npm:vite", + "target": "npm:postcss", + "type": "static" + }, + { + "source": "npm:vite", + "target": "npm:rolldown@1.0.0-rc.11", + "type": "static" + }, + { + "source": "npm:vite", + "target": "npm:tinyglobby", + "type": "static" + }, + { + "source": "npm:vite", + "target": "npm:@types/node", + "type": "static" + }, + { + "source": "npm:vite", + "target": "npm:esbuild", + "type": "static" + }, + { + "source": "npm:vite", + "target": "npm:fsevents", + "type": "static" + }, + { + "source": "npm:vite", + "target": "npm:jiti", + "type": "static" + }, + { + "source": "npm:vite", + "target": "npm:sugarss", + "type": "static" + }, + { + "source": "npm:vite", + "target": "npm:tsx", + "type": "static" + }, + { + "source": "npm:vite", + "target": "npm:yaml", + "type": "static" + }, + { + "source": "npm:vitefu", + "target": "npm:vite", + "type": "static" + }, + { + "source": "npm:vitest", + "target": "npm:@vitest/expect", + "type": "static" + }, + { + "source": "npm:vitest", + "target": "npm:@vitest/mocker", + "type": "static" + }, + { + "source": "npm:vitest", + "target": "npm:@vitest/pretty-format", + "type": "static" + }, + { + "source": "npm:vitest", + "target": "npm:@vitest/runner", + "type": "static" + }, + { + "source": "npm:vitest", + "target": "npm:@vitest/snapshot", + "type": "static" + }, + { + "source": "npm:vitest", + "target": "npm:@vitest/spy", + "type": "static" + }, + { + "source": "npm:vitest", + "target": "npm:@vitest/utils", + "type": "static" + }, + { + "source": "npm:vitest", + "target": "npm:es-module-lexer@2.0.0", + "type": "static" + }, + { + "source": "npm:vitest", + "target": "npm:expect-type", + "type": "static" + }, + { + "source": "npm:vitest", + "target": "npm:magic-string", + "type": "static" + }, + { + "source": "npm:vitest", + "target": "npm:obug", + "type": "static" + }, + { + "source": "npm:vitest", + "target": "npm:pathe", + "type": "static" + }, + { + "source": "npm:vitest", + "target": "npm:picomatch", + "type": "static" + }, + { + "source": "npm:vitest", + "target": "npm:std-env", + "type": "static" + }, + { + "source": "npm:vitest", + "target": "npm:tinybench", + "type": "static" + }, + { + "source": "npm:vitest", + "target": "npm:tinyexec", + "type": "static" + }, + { + "source": "npm:vitest", + "target": "npm:tinyglobby", + "type": "static" + }, + { + "source": "npm:vitest", + "target": "npm:tinyrainbow", + "type": "static" + }, + { + "source": "npm:vitest", + "target": "npm:vite", + "type": "static" + }, + { + "source": "npm:vitest", + "target": "npm:why-is-node-running", + "type": "static" + }, + { + "source": "npm:vitest", + "target": "npm:@types/node", + "type": "static" + }, + { + "source": "npm:vue-eslint-parser", + "target": "npm:debug", + "type": "static" + }, + { + "source": "npm:vue-eslint-parser", + "target": "npm:eslint", + "type": "static" + }, + { + "source": "npm:vue-eslint-parser", + "target": "npm:eslint-scope", + "type": "static" + }, + { + "source": "npm:vue-eslint-parser", + "target": "npm:eslint-visitor-keys@5.0.1", + "type": "static" + }, + { + "source": "npm:vue-eslint-parser", + "target": "npm:espree", + "type": "static" + }, + { + "source": "npm:vue-eslint-parser", + "target": "npm:esquery", + "type": "static" + }, + { + "source": "npm:vue-eslint-parser", + "target": "npm:semver@7.7.4", + "type": "static" + }, + { + "source": "npm:vue-gtag", + "target": "npm:vue", + "type": "static" + }, + { + "source": "npm:vue", + "target": "npm:@vue/compiler-dom", + "type": "static" + }, + { + "source": "npm:vue", + "target": "npm:@vue/compiler-sfc", + "type": "static" + }, + { + "source": "npm:vue", + "target": "npm:@vue/runtime-dom", + "type": "static" + }, + { + "source": "npm:vue", + "target": "npm:@vue/server-renderer", + "type": "static" + }, + { + "source": "npm:vue", + "target": "npm:@vue/shared", + "type": "static" + }, + { + "source": "npm:vue", + "target": "npm:typescript", + "type": "static" + }, + { + "source": "npm:wcwidth", + "target": "npm:defaults", + "type": "static" + }, + { + "source": "npm:whatwg-encoding", + "target": "npm:iconv-lite", + "type": "static" + }, + { + "source": "npm:whatwg-url", + "target": "npm:tr46", + "type": "static" + }, + { + "source": "npm:whatwg-url", + "target": "npm:webidl-conversions", + "type": "static" + }, + { + "source": "npm:which-boxed-primitive", + "target": "npm:is-bigint", + "type": "static" + }, + { + "source": "npm:which-boxed-primitive", + "target": "npm:is-boolean-object", + "type": "static" + }, + { + "source": "npm:which-boxed-primitive", + "target": "npm:is-number-object", + "type": "static" + }, + { + "source": "npm:which-boxed-primitive", + "target": "npm:is-string", + "type": "static" + }, + { + "source": "npm:which-boxed-primitive", + "target": "npm:is-symbol", + "type": "static" + }, + { + "source": "npm:which-builtin-type", + "target": "npm:call-bound", + "type": "static" + }, + { + "source": "npm:which-builtin-type", + "target": "npm:function.prototype.name", + "type": "static" + }, + { + "source": "npm:which-builtin-type", + "target": "npm:has-tostringtag", + "type": "static" + }, + { + "source": "npm:which-builtin-type", + "target": "npm:is-async-function", + "type": "static" + }, + { + "source": "npm:which-builtin-type", + "target": "npm:is-date-object", + "type": "static" + }, + { + "source": "npm:which-builtin-type", + "target": "npm:is-finalizationregistry", + "type": "static" + }, + { + "source": "npm:which-builtin-type", + "target": "npm:is-generator-function", + "type": "static" + }, + { + "source": "npm:which-builtin-type", + "target": "npm:is-regex", + "type": "static" + }, + { + "source": "npm:which-builtin-type", + "target": "npm:is-weakref", + "type": "static" + }, + { + "source": "npm:which-builtin-type", + "target": "npm:isarray", + "type": "static" + }, + { + "source": "npm:which-builtin-type", + "target": "npm:which-boxed-primitive", + "type": "static" + }, + { + "source": "npm:which-builtin-type", + "target": "npm:which-collection", + "type": "static" + }, + { + "source": "npm:which-builtin-type", + "target": "npm:which-typed-array", + "type": "static" + }, + { + "source": "npm:which-collection", + "target": "npm:is-map", + "type": "static" + }, + { + "source": "npm:which-collection", + "target": "npm:is-set", + "type": "static" + }, + { + "source": "npm:which-collection", + "target": "npm:is-weakmap", + "type": "static" + }, + { + "source": "npm:which-collection", + "target": "npm:is-weakset", + "type": "static" + }, + { + "source": "npm:which-typed-array", + "target": "npm:available-typed-arrays", + "type": "static" + }, + { + "source": "npm:which-typed-array", + "target": "npm:call-bind", + "type": "static" + }, + { + "source": "npm:which-typed-array", + "target": "npm:call-bound", + "type": "static" + }, + { + "source": "npm:which-typed-array", + "target": "npm:for-each", + "type": "static" + }, + { + "source": "npm:which-typed-array", + "target": "npm:get-proto", + "type": "static" + }, + { + "source": "npm:which-typed-array", + "target": "npm:gopd", + "type": "static" + }, + { + "source": "npm:which-typed-array", + "target": "npm:has-tostringtag", + "type": "static" + }, + { + "source": "npm:which@2.0.2", + "target": "npm:isexe@2.0.0", + "type": "static" + }, + { + "source": "npm:which@5.0.0", + "target": "npm:isexe@3.1.1", + "type": "static" + }, + { + "source": "npm:which", + "target": "npm:isexe", + "type": "static" + }, + { + "source": "npm:why-is-node-running", + "target": "npm:siginfo", + "type": "static" + }, + { + "source": "npm:why-is-node-running", + "target": "npm:stackback", + "type": "static" + }, + { + "source": "npm:workerd@1.20251217.0", + "target": "npm:@cloudflare/workerd-darwin-64@1.20251217.0", + "type": "static" + }, + { + "source": "npm:workerd@1.20251217.0", + "target": "npm:@cloudflare/workerd-darwin-arm64@1.20251217.0", + "type": "static" + }, + { + "source": "npm:workerd@1.20251217.0", + "target": "npm:@cloudflare/workerd-linux-64@1.20251217.0", + "type": "static" + }, + { + "source": "npm:workerd@1.20251217.0", + "target": "npm:@cloudflare/workerd-linux-arm64@1.20251217.0", + "type": "static" + }, + { + "source": "npm:workerd@1.20251217.0", + "target": "npm:@cloudflare/workerd-windows-64@1.20251217.0", + "type": "static" + }, + { + "source": "npm:workerd", + "target": "npm:@cloudflare/workerd-darwin-64@1.20260317.1", + "type": "static" + }, + { + "source": "npm:workerd", + "target": "npm:@cloudflare/workerd-darwin-arm64@1.20260317.1", + "type": "static" + }, + { + "source": "npm:workerd", + "target": "npm:@cloudflare/workerd-linux-64", + "type": "static" + }, + { + "source": "npm:workerd", + "target": "npm:@cloudflare/workerd-linux-arm64@1.20260317.1", + "type": "static" + }, + { + "source": "npm:workerd", + "target": "npm:@cloudflare/workerd-windows-64@1.20260317.1", + "type": "static" + }, + { + "source": "npm:wrangler", + "target": "npm:@cloudflare/kv-asset-handler", + "type": "static" + }, + { + "source": "npm:wrangler", + "target": "npm:@cloudflare/unenv-preset", + "type": "static" + }, + { + "source": "npm:wrangler", + "target": "npm:blake3-wasm", + "type": "static" + }, + { + "source": "npm:wrangler", + "target": "npm:esbuild@0.27.3", + "type": "static" + }, + { + "source": "npm:wrangler", + "target": "npm:miniflare", + "type": "static" + }, + { + "source": "npm:wrangler", + "target": "npm:path-to-regexp@6.3.0", + "type": "static" + }, + { + "source": "npm:wrangler", + "target": "npm:unenv", + "type": "static" + }, + { + "source": "npm:wrangler", + "target": "npm:workerd", + "type": "static" + }, + { + "source": "npm:wrangler", + "target": "npm:@cloudflare/workers-types", + "type": "static" + }, + { + "source": "npm:wrangler", + "target": "npm:fsevents", + "type": "static" + }, + { + "source": "npm:wrap-ansi", + "target": "npm:ansi-styles@4.3.0", + "type": "static" + }, + { + "source": "npm:wrap-ansi", + "target": "npm:string-width", + "type": "static" + }, + { + "source": "npm:wrap-ansi", + "target": "npm:strip-ansi@6.0.1", + "type": "static" + }, + { + "source": "npm:wrap-ansi-cjs", + "target": "npm:ansi-styles@4.3.0", + "type": "static" + }, + { + "source": "npm:wrap-ansi-cjs", + "target": "npm:string-width", + "type": "static" + }, + { + "source": "npm:wrap-ansi-cjs", + "target": "npm:strip-ansi@6.0.1", + "type": "static" + }, + { + "source": "npm:wrap-ansi@8.1.0", + "target": "npm:ansi-styles", + "type": "static" + }, + { + "source": "npm:wrap-ansi@8.1.0", + "target": "npm:string-width@5.1.2", + "type": "static" + }, + { + "source": "npm:wrap-ansi@8.1.0", + "target": "npm:strip-ansi", + "type": "static" + }, + { + "source": "npm:yargs", + "target": "npm:cliui", + "type": "static" + }, + { + "source": "npm:yargs", + "target": "npm:escalade", + "type": "static" + }, + { + "source": "npm:yargs", + "target": "npm:get-caller-file", + "type": "static" + }, + { + "source": "npm:yargs", + "target": "npm:require-directory", + "type": "static" + }, + { + "source": "npm:yargs", + "target": "npm:string-width", + "type": "static" + }, + { + "source": "npm:yargs", + "target": "npm:y18n", + "type": "static" + }, + { + "source": "npm:yargs", + "target": "npm:yargs-parser", + "type": "static" + }, + { + "source": "npm:yauzl", + "target": "npm:buffer-crc32", + "type": "static" + }, + { + "source": "npm:yauzl", + "target": "npm:fd-slicer", + "type": "static" + }, + { + "source": "npm:youch-core", + "target": "npm:@poppinss/exception", + "type": "static" + }, + { + "source": "npm:youch-core", + "target": "npm:error-stack-parser-es", + "type": "static" + }, + { + "source": "npm:youch", + "target": "npm:@poppinss/colors", + "type": "static" + }, + { + "source": "npm:youch", + "target": "npm:@poppinss/dumper", + "type": "static" + }, + { + "source": "npm:youch", + "target": "npm:@speed-highlight/core", + "type": "static" + }, + { + "source": "npm:youch", + "target": "npm:cookie@1.1.1", + "type": "static" + }, + { + "source": "npm:youch", + "target": "npm:youch-core", + "type": "static" + }, + { + "source": "npm:zeptomatch", + "target": "npm:grammex", + "type": "static" + }, + { + "source": "npm:zeptomatch", + "target": "npm:graphmatch", + "type": "static" + } +] \ No newline at end of file diff --git a/.nx/workspace-data/parsed-lock-file.nodes.json b/.nx/workspace-data/parsed-lock-file.nodes.json new file mode 100644 index 000000000..2e0a74ac4 --- /dev/null +++ b/.nx/workspace-data/parsed-lock-file.nodes.json @@ -0,0 +1,20245 @@ +{ + "nodes": { + "npm:@auth/core": { + "type": "npm", + "name": "npm:@auth/core", + "data": { + "version": "0.41.1", + "packageName": "@auth/core", + "hash": "sha512-t9cJ2zNYAdWMacGRMT6+r4xr1uybIdmYa49calBPeTqwgAFPV/88ac9TEvCR85pvATiSPt8VaNf+Gt24JIT/uw==" + } + }, + "npm:@aws-cdk/asset-awscli-v1": { + "type": "npm", + "name": "npm:@aws-cdk/asset-awscli-v1", + "data": { + "version": "2.2.263", + "packageName": "@aws-cdk/asset-awscli-v1", + "hash": "sha512-X9JvcJhYcb7PHs8R7m4zMablO5C9PGb/hYfLnxds9h/rKJu6l7MiXE/SabCibuehxPnuO/vk+sVVJiUWrccarQ==" + } + }, + "npm:@aws-cdk/asset-node-proxy-agent-v6": { + "type": "npm", + "name": "npm:@aws-cdk/asset-node-proxy-agent-v6", + "data": { + "version": "2.1.1", + "packageName": "@aws-cdk/asset-node-proxy-agent-v6", + "hash": "sha512-We4bmHaowOPHr+IQR4/FyTGjRfjgBj4ICMjtqmJeBDWad3Q/6St12NT07leNtyuukv2qMhtSZJQorD8KpKTwRA==" + } + }, + "npm:@aws-cdk/cloud-assembly-schema": { + "type": "npm", + "name": "npm:@aws-cdk/cloud-assembly-schema", + "data": { + "version": "52.2.0", + "packageName": "@aws-cdk/cloud-assembly-schema", + "hash": "sha512-ourZjixQ/UfsZc7gdk3vt1eHBODMUjQTYYYCY3ZX8fiXyHtWNDAYZPrXUK96jpCC2fLP+tfHTJrBjZ563pmcEw==" + } + }, + "npm:@babel/code-frame": { + "type": "npm", + "name": "npm:@babel/code-frame", + "data": { + "version": "7.29.0", + "packageName": "@babel/code-frame", + "hash": "sha512-9NhCeYjq9+3uxgdtp20LSiJXJvN0FeCtNGpJxuMFZ1Kv3cWUNb6DOhJwUvcVCzKGR66cw4njwM6hrJLqgOwbcw==" + } + }, + "npm:@babel/compat-data": { + "type": "npm", + "name": "npm:@babel/compat-data", + "data": { + "version": "7.28.6", + "packageName": "@babel/compat-data", + "hash": "sha512-2lfu57JtzctfIrcGMz992hyLlByuzgIk58+hhGCxjKZ3rWI82NnVLjXcaTqkI2NvlcvOskZaiZ5kjUALo3Lpxg==" + } + }, + "npm:@babel/core": { + "type": "npm", + "name": "npm:@babel/core", + "data": { + "version": "7.29.0", + "packageName": "@babel/core", + "hash": "sha512-CGOfOJqWjg2qW/Mb6zNsDm+u5vFQ8DxXfbM09z69p5Z6+mE1ikP2jUXw+j42Pf1XTYED2Rni5f95npYeuwMDQA==" + } + }, + "npm:@babel/generator": { + "type": "npm", + "name": "npm:@babel/generator", + "data": { + "version": "7.29.0", + "packageName": "@babel/generator", + "hash": "sha512-vSH118/wwM/pLR38g/Sgk05sNtro6TlTJKuiMXDaZqPUfjTFcudpCOt00IhOfj+1BFAX+UFAlzCU+6WXr3GLFQ==" + } + }, + "npm:@babel/generator@8.0.0-rc.2": { + "type": "npm", + "name": "npm:@babel/generator@8.0.0-rc.2", + "data": { + "version": "8.0.0-rc.2", + "packageName": "@babel/generator", + "hash": "sha512-oCQ1IKPwkzCeJzAPb7Fv8rQ9k5+1sG8mf2uoHiMInPYvkRfrDJxbTIbH51U+jstlkghus0vAi3EBvkfvEsYNLQ==" + } + }, + "npm:@babel/helper-annotate-as-pure": { + "type": "npm", + "name": "npm:@babel/helper-annotate-as-pure", + "data": { + "version": "7.27.3", + "packageName": "@babel/helper-annotate-as-pure", + "hash": "sha512-fXSwMQqitTGeHLBC08Eq5yXz2m37E4pJX1qAU1+2cNedz/ifv/bVXft90VeSav5nFO61EcNgwr0aJxbyPaWBPg==" + } + }, + "npm:@babel/helper-compilation-targets": { + "type": "npm", + "name": "npm:@babel/helper-compilation-targets", + "data": { + "version": "7.28.6", + "packageName": "@babel/helper-compilation-targets", + "hash": "sha512-JYtls3hqi15fcx5GaSNL7SCTJ2MNmjrkHXg4FSpOA/grxK8KwyZ5bubHsCq8FXCkua6xhuaaBit+3b7+VZRfcA==" + } + }, + "npm:@babel/helper-globals": { + "type": "npm", + "name": "npm:@babel/helper-globals", + "data": { + "version": "7.28.0", + "packageName": "@babel/helper-globals", + "hash": "sha512-+W6cISkXFa1jXsDEdYA8HeevQT/FULhxzR99pxphltZcVaugps53THCeiWA8SguxxpSp3gKPiuYfSWopkLQ4hw==" + } + }, + "npm:@babel/helper-module-imports@7.18.6": { + "type": "npm", + "name": "npm:@babel/helper-module-imports@7.18.6", + "data": { + "version": "7.18.6", + "packageName": "@babel/helper-module-imports", + "hash": "sha512-0NFvs3VkuSYbFi1x2Vd6tKrywq+z/cLeYC/RJNFrIX/30Bf5aiGYbtvGXolEktzJH8o5E5KJ3tT+nkxuuZFVlA==" + } + }, + "npm:@babel/helper-module-imports": { + "type": "npm", + "name": "npm:@babel/helper-module-imports", + "data": { + "version": "7.28.6", + "packageName": "@babel/helper-module-imports", + "hash": "sha512-l5XkZK7r7wa9LucGw9LwZyyCUscb4x37JWTPz7swwFE/0FMQAGpiWUZn8u9DzkSBWEcK25jmvubfpw2dnAMdbw==" + } + }, + "npm:@babel/helper-module-transforms": { + "type": "npm", + "name": "npm:@babel/helper-module-transforms", + "data": { + "version": "7.28.6", + "packageName": "@babel/helper-module-transforms", + "hash": "sha512-67oXFAYr2cDLDVGLXTEABjdBJZ6drElUSI7WKp70NrpyISso3plG9SAGEF6y7zbha/wOzUByWWTJvEDVNIUGcA==" + } + }, + "npm:@babel/helper-plugin-utils": { + "type": "npm", + "name": "npm:@babel/helper-plugin-utils", + "data": { + "version": "7.28.6", + "packageName": "@babel/helper-plugin-utils", + "hash": "sha512-S9gzZ/bz83GRysI7gAD4wPT/AI3uCnY+9xn+Mx/KPs2JwHJIz1W8PZkg2cqyt3RNOBM8ejcXhV6y8Og7ly/Dug==" + } + }, + "npm:@babel/helper-string-parser": { + "type": "npm", + "name": "npm:@babel/helper-string-parser", + "data": { + "version": "7.27.1", + "packageName": "@babel/helper-string-parser", + "hash": "sha512-qMlSxKbpRlAridDExk92nSobyDdpPijUq2DW6oDnUqd0iOGxmQjyqhMIihI9+zv4LPyZdRje2cavWPbCbWm3eA==" + } + }, + "npm:@babel/helper-string-parser@8.0.0-rc.3": { + "type": "npm", + "name": "npm:@babel/helper-string-parser@8.0.0-rc.3", + "data": { + "version": "8.0.0-rc.3", + "packageName": "@babel/helper-string-parser", + "hash": "sha512-AmwWFx1m8G/a5cXkxLxTiWl+YEoWuoFLUCwqMlNuWO1tqAYITQAbCRPUkyBHv1VOFgfjVOqEj6L3u15J5ZCzTA==" + } + }, + "npm:@babel/helper-validator-identifier": { + "type": "npm", + "name": "npm:@babel/helper-validator-identifier", + "data": { + "version": "7.28.5", + "packageName": "@babel/helper-validator-identifier", + "hash": "sha512-qSs4ifwzKJSV39ucNjsvc6WVHs6b7S03sOh2OcHF9UHfVPqWWALUsNUVzhSBiItjRZoLHx7nIarVjqKVusUZ1Q==" + } + }, + "npm:@babel/helper-validator-identifier@8.0.0-rc.2": { + "type": "npm", + "name": "npm:@babel/helper-validator-identifier@8.0.0-rc.2", + "data": { + "version": "8.0.0-rc.2", + "packageName": "@babel/helper-validator-identifier", + "hash": "sha512-xExUBkuXWJjVuIbO7z6q7/BA9bgfJDEhVL0ggrggLMbg0IzCUWGT1hZGE8qUH7Il7/RD/a6cZ3AAFrrlp1LF/A==" + } + }, + "npm:@babel/helper-validator-option": { + "type": "npm", + "name": "npm:@babel/helper-validator-option", + "data": { + "version": "7.27.1", + "packageName": "@babel/helper-validator-option", + "hash": "sha512-YvjJow9FxbhFFKDSuFnVCe2WxXk1zWc22fFePVNEaWJEu8IrZVlda6N0uHwzZrUM1il7NC9Mlp4MaJYbYd9JSg==" + } + }, + "npm:@babel/helpers": { + "type": "npm", + "name": "npm:@babel/helpers", + "data": { + "version": "7.28.6", + "packageName": "@babel/helpers", + "hash": "sha512-xOBvwq86HHdB7WUDTfKfT/Vuxh7gElQ+Sfti2Cy6yIWNW05P8iUslOVcZ4/sKbE+/jQaukQAdz/gf3724kYdqw==" + } + }, + "npm:@babel/parser": { + "type": "npm", + "name": "npm:@babel/parser", + "data": { + "version": "7.29.0", + "packageName": "@babel/parser", + "hash": "sha512-IyDgFV5GeDUVX4YdF/3CPULtVGSXXMLh1xVIgdCgxApktqnQV0r7/8Nqthg+8YLGaAtdyIlo2qIdZrbCv4+7ww==" + } + }, + "npm:@babel/parser@8.0.0-rc.2": { + "type": "npm", + "name": "npm:@babel/parser@8.0.0-rc.2", + "data": { + "version": "8.0.0-rc.2", + "packageName": "@babel/parser", + "hash": "sha512-29AhEtcq4x8Dp3T72qvUMZHx0OMXCj4Jy/TEReQa+KWLln524Cj1fWb3QFi0l/xSpptQBR6y9RNEXuxpFvwiUQ==" + } + }, + "npm:@babel/plugin-syntax-flow": { + "type": "npm", + "name": "npm:@babel/plugin-syntax-flow", + "data": { + "version": "7.28.6", + "packageName": "@babel/plugin-syntax-flow", + "hash": "sha512-D+OrJumc9McXNEBI/JmFnc/0uCM2/Y3PEBG3gfV3QIYkKv5pvnpzFrl1kYCrcHJP8nOeFB/SHi1IHz29pNGuew==" + } + }, + "npm:@babel/plugin-syntax-jsx": { + "type": "npm", + "name": "npm:@babel/plugin-syntax-jsx", + "data": { + "version": "7.28.6", + "packageName": "@babel/plugin-syntax-jsx", + "hash": "sha512-wgEmr06G6sIpqr8YDwA2dSRTE3bJ+V0IfpzfSY3Lfgd7YWOaAdlykvJi13ZKBt8cZHfgH1IXN+CL656W3uUa4w==" + } + }, + "npm:@babel/plugin-transform-flow-strip-types": { + "type": "npm", + "name": "npm:@babel/plugin-transform-flow-strip-types", + "data": { + "version": "7.27.1", + "packageName": "@babel/plugin-transform-flow-strip-types", + "hash": "sha512-G5eDKsu50udECw7DL2AcsysXiQyB7Nfg521t2OAJ4tbfTJ27doHLeF/vlI1NZGlLdbb/v+ibvtL1YBQqYOwJGg==" + } + }, + "npm:@babel/plugin-transform-react-jsx": { + "type": "npm", + "name": "npm:@babel/plugin-transform-react-jsx", + "data": { + "version": "7.28.6", + "packageName": "@babel/plugin-transform-react-jsx", + "hash": "sha512-61bxqhiRfAACulXSLd/GxqmAedUSrRZIu/cbaT18T1CetkTmtDN15it7i80ru4DVqRK1WMxQhXs+Lf9kajm5Ow==" + } + }, + "npm:@babel/runtime": { + "type": "npm", + "name": "npm:@babel/runtime", + "data": { + "version": "7.28.4", + "packageName": "@babel/runtime", + "hash": "sha512-Q/N6JNWvIvPnLDvjlE1OUBLPQHH6l3CltCEsHIujp45zQUSSh8K+gHnaEX45yAT1nyngnINhvWtzN+Nb9D8RAQ==" + } + }, + "npm:@babel/template": { + "type": "npm", + "name": "npm:@babel/template", + "data": { + "version": "7.28.6", + "packageName": "@babel/template", + "hash": "sha512-YA6Ma2KsCdGb+WC6UpBVFJGXL58MDA6oyONbjyF/+5sBgxY/dwkhLogbMT2GXXyU84/IhRw/2D1Os1B/giz+BQ==" + } + }, + "npm:@babel/traverse": { + "type": "npm", + "name": "npm:@babel/traverse", + "data": { + "version": "7.29.0", + "packageName": "@babel/traverse", + "hash": "sha512-4HPiQr0X7+waHfyXPZpWPfWL/J7dcN1mx9gL6WdQVMbPnF3+ZhSMs8tCxN7oHddJE9fhNE7+lxdnlyemKfJRuA==" + } + }, + "npm:@babel/types": { + "type": "npm", + "name": "npm:@babel/types", + "data": { + "version": "7.29.0", + "packageName": "@babel/types", + "hash": "sha512-LwdZHpScM4Qz8Xw2iKSzS+cfglZzJGvofQICy7W7v4caru4EaAmyUuO6BGrbyQ2mYV11W0U8j5mBhd14dd3B0A==" + } + }, + "npm:@babel/types@8.0.0-rc.2": { + "type": "npm", + "name": "npm:@babel/types@8.0.0-rc.2", + "data": { + "version": "8.0.0-rc.2", + "packageName": "@babel/types", + "hash": "sha512-91gAaWRznDwSX4E2tZ1YjBuIfnQVOFDCQ2r0Toby0gu4XEbyF623kXLMA8d4ZbCu+fINcrudkmEcwSUHgDDkNw==" + } + }, + "npm:@batijs/compile": { + "type": "npm", + "name": "npm:@batijs/compile", + "data": { + "version": "file:packages/compile", + "packageName": "@batijs/compile", + "hash": "8949708989012550123" + } + }, + "npm:@biomejs/biome": { + "type": "npm", + "name": "npm:@biomejs/biome", + "data": { + "version": "2.4.8", + "packageName": "@biomejs/biome", + "hash": "sha512-ponn0oKOky1oRXBV+rlSaUlixUxf1aZvWC19Z41zBfUOUesthrQqL3OtiAlSB1EjFjyWpn98Q64DHelhA6jNlA==" + } + }, + "npm:@biomejs/cli-darwin-arm64": { + "type": "npm", + "name": "npm:@biomejs/cli-darwin-arm64", + "data": { + "version": "2.4.8", + "packageName": "@biomejs/cli-darwin-arm64", + "hash": "sha512-ARx0tECE8I7S2C2yjnWYLNbBdDoPdq3oyNLhMglmuctThwUsuzFWRKrHmIGwIRWKz0Mat9DuzLEDp52hGnrxGQ==" + } + }, + "npm:@biomejs/cli-darwin-x64": { + "type": "npm", + "name": "npm:@biomejs/cli-darwin-x64", + "data": { + "version": "2.4.8", + "packageName": "@biomejs/cli-darwin-x64", + "hash": "sha512-Jg9/PsB9vDCJlANE8uhG7qDhb5w0Ix69D7XIIc8IfZPUoiPrbLm33k2Ig3NOJ/7nb3UbesFz3D1aDKm9DvzjhQ==" + } + }, + "npm:@biomejs/cli-linux-arm64-musl": { + "type": "npm", + "name": "npm:@biomejs/cli-linux-arm64-musl", + "data": { + "version": "2.4.8", + "packageName": "@biomejs/cli-linux-arm64-musl", + "hash": "sha512-Zo9OhBQDJ3IBGPlqHiTISloo5H0+FBIpemqIJdW/0edJ+gEcLR+MZeZozcUyz3o1nXkVA7++DdRKQT0599j9jA==" + } + }, + "npm:@biomejs/cli-linux-arm64": { + "type": "npm", + "name": "npm:@biomejs/cli-linux-arm64", + "data": { + "version": "2.4.8", + "packageName": "@biomejs/cli-linux-arm64", + "hash": "sha512-5CdrsJct76XG2hpKFwXnEtlT1p+4g4yV+XvvwBpzKsTNLO9c6iLlAxwcae2BJ7ekPGWjNGw9j09T5KGPKKxQig==" + } + }, + "npm:@biomejs/cli-linux-x64-musl": { + "type": "npm", + "name": "npm:@biomejs/cli-linux-x64-musl", + "data": { + "version": "2.4.8", + "packageName": "@biomejs/cli-linux-x64-musl", + "hash": "sha512-Gi8quv8MEuDdKaPFtS2XjEnMqODPsRg6POT6KhoP+VrkNb+T2ywunVB+TvOU0LX1jAZzfBr+3V1mIbBhzAMKvw==" + } + }, + "npm:@biomejs/cli-linux-x64": { + "type": "npm", + "name": "npm:@biomejs/cli-linux-x64", + "data": { + "version": "2.4.8", + "packageName": "@biomejs/cli-linux-x64", + "hash": "sha512-PdKXspVEaMCQLjtZCn6vfSck/li4KX9KGwSDbZdgIqlrizJ2MnMcE3TvHa2tVfXNmbjMikzcfJpuPWH695yJrw==" + } + }, + "npm:@biomejs/cli-win32-arm64": { + "type": "npm", + "name": "npm:@biomejs/cli-win32-arm64", + "data": { + "version": "2.4.8", + "packageName": "@biomejs/cli-win32-arm64", + "hash": "sha512-LoFatS0tnHv6KkCVpIy3qZCih+MxUMvdYiPWLHRri7mhi2vyOOs8OrbZBcLTUEWCS+ktO72nZMy4F96oMhkOHQ==" + } + }, + "npm:@biomejs/cli-win32-x64": { + "type": "npm", + "name": "npm:@biomejs/cli-win32-x64", + "data": { + "version": "2.4.8", + "packageName": "@biomejs/cli-win32-x64", + "hash": "sha512-vAn7iXDoUbqFXqVocuq1sMYAd33p8+mmurqJkWl6CtIhobd/O6moe4rY5AJvzbunn/qZCdiDVcveqtkFh1e7Hg==" + } + }, + "npm:@biomejs/wasm-nodejs": { + "type": "npm", + "name": "npm:@biomejs/wasm-nodejs", + "data": { + "version": "2.4.8", + "packageName": "@biomejs/wasm-nodejs", + "hash": "sha512-pTfObtbrSfifZqdEE75EQc6R6ZZ3K3dtuS4KqOsmOYz9on8b5RXpXEYRp/VR0MQ5NzRBk4UteKL8PMT4GKHHnw==" + } + }, + "npm:@brillout/import": { + "type": "npm", + "name": "npm:@brillout/import", + "data": { + "version": "0.2.6", + "packageName": "@brillout/import", + "hash": "sha512-1GUTmADc8trUC1YSW2lp9r6PmwluMoEyHajnE1kxVdbKGD0wJOlq/DvTWMUqLtBDCnQR+n//qgMtz6HwA/lotA==" + } + }, + "npm:@brillout/json-serializer": { + "type": "npm", + "name": "npm:@brillout/json-serializer", + "data": { + "version": "0.5.22", + "packageName": "@brillout/json-serializer", + "hash": "sha512-jzcOqcbysKICCeZNlwa755tffF+HfMj8G+ZSuvHe06aCpp4xQiU2D91RHFUeJpF0/RNyfa5uWZ0pRuvFoeoqow==" + } + }, + "npm:@brillout/libassert": { + "type": "npm", + "name": "npm:@brillout/libassert", + "data": { + "version": "0.5.8", + "packageName": "@brillout/libassert", + "hash": "sha512-u/fu+jTRUdNdbLONGq1plCfh+k2/XjSbGVTfnF3rHnSPZd+ABWp0XinR5ifrFkyGOzMbzv8IiQ44lZ4U6ZGrGA==" + } + }, + "npm:@brillout/picocolors": { + "type": "npm", + "name": "npm:@brillout/picocolors", + "data": { + "version": "1.0.30", + "packageName": "@brillout/picocolors", + "hash": "sha512-xJjdgyN1H0qh2nB2xlzazIipiDixuUd9oD5msh/Qv5bXJG9j8MSD/m4lREt6Z10ej6FF31b8vB4tdT7lDUbiyA==" + } + }, + "npm:@brillout/vite-plugin-server-entry": { + "type": "npm", + "name": "npm:@brillout/vite-plugin-server-entry", + "data": { + "version": "0.7.18", + "packageName": "@brillout/vite-plugin-server-entry", + "hash": "sha512-j3neG+vaIZ2AbP2/vGgaIyJwrFIxlK3xd3Ey2EGBswCvAGeI4QSSfXGbb7R3b3H8223PgTTsWOZuZH0Y8Ope2w==" + } + }, + "npm:@browserless/devices": { + "type": "npm", + "name": "npm:@browserless/devices", + "data": { + "version": "10.11.3", + "packageName": "@browserless/devices", + "hash": "sha512-EodVNBa9yLoR18gyuOeLiGRislxDmMLDF0GId9y0cei6lfUE4kW98RtdZwfMul+tVfffpyXK5/SYNbNO+33m5w==" + } + }, + "npm:@browserless/errors": { + "type": "npm", + "name": "npm:@browserless/errors", + "data": { + "version": "10.12.1", + "packageName": "@browserless/errors", + "hash": "sha512-qqbUbNeAFhCNihc4ZxYXKnBGfTP6+ZxqhhapVQz/BRwcEWnBlD6MT9Dgo5Anp7+CBKwWW4TQvkaa294LuuryYQ==" + } + }, + "npm:@browserless/goto": { + "type": "npm", + "name": "npm:@browserless/goto", + "data": { + "version": "10.11.4", + "packageName": "@browserless/goto", + "hash": "sha512-Cpf78Nc8xA6pJa1Jm6dH+uvpEklkkkkG/qYoi2pLK6Zfmv2H6RnirE/S3CSTnKMf97jtCd/JiCOJW3bX9M0bRA==" + } + }, + "npm:@browserless/pdf": { + "type": "npm", + "name": "npm:@browserless/pdf", + "data": { + "version": "10.12.5", + "packageName": "@browserless/pdf", + "hash": "sha512-dCLzs7q+G+17c942tjm1ZqjmLc8hoB/+ruDQjmHK1ERHd+2fKsanbCOAfV7wiBKChWKToldsG9STMV8ixGow1A==" + } + }, + "npm:@browserless/screenshot": { + "type": "npm", + "name": "npm:@browserless/screenshot", + "data": { + "version": "10.12.5", + "packageName": "@browserless/screenshot", + "hash": "sha512-9MtpHCFe1t9zaQY+kHuknpCQLYm85R/qNjgz/dNSWEjqN1PDpqnpeZqdFwdAnM1++6dpW85EYFIkyI6vpBHl3g==" + } + }, + "npm:@chevrotain/cst-dts-gen": { + "type": "npm", + "name": "npm:@chevrotain/cst-dts-gen", + "data": { + "version": "10.5.0", + "packageName": "@chevrotain/cst-dts-gen", + "hash": "sha512-lhmC/FyqQ2o7pGK4Om+hzuDrm9rhFYIJ/AXoQBeongmn870Xeb0L6oGEiuR8nohFNL5sMaQEJWCxr1oIVIVXrw==" + } + }, + "npm:@chevrotain/gast": { + "type": "npm", + "name": "npm:@chevrotain/gast", + "data": { + "version": "10.5.0", + "packageName": "@chevrotain/gast", + "hash": "sha512-pXdMJ9XeDAbgOWKuD1Fldz4ieCs6+nLNmyVhe2gZVqoO7v8HXuHYs5OV2EzUtbuai37TlOAQHrTDvxMnvMJz3A==" + } + }, + "npm:@chevrotain/types": { + "type": "npm", + "name": "npm:@chevrotain/types", + "data": { + "version": "10.5.0", + "packageName": "@chevrotain/types", + "hash": "sha512-f1MAia0x/pAVPWH/T73BJVyO2XU5tI4/iE7cnxb7tqdNTNhQI3Uq3XkqcoteTmD4t1aM0LbHCJOhgIDn07kl2A==" + } + }, + "npm:@chevrotain/utils": { + "type": "npm", + "name": "npm:@chevrotain/utils", + "data": { + "version": "10.5.0", + "packageName": "@chevrotain/utils", + "hash": "sha512-hBzuU5+JjB2cqNZyszkDHZgOSrUUT8V3dhgRl8Q9Gp6dAj/H5+KILGjbhDpc3Iy9qmqlm/akuOI2ut9VUtzJxQ==" + } + }, + "npm:@cloudflare/kv-asset-handler": { + "type": "npm", + "name": "npm:@cloudflare/kv-asset-handler", + "data": { + "version": "0.4.2", + "packageName": "@cloudflare/kv-asset-handler", + "hash": "sha512-SIOD2DxrRRwQ+jgzlXCqoEFiKOFqaPjhnNTGKXSRLvp1HiOvapLaFG2kEr9dYQTYe8rKrd9uvDUzmAITeNyaHQ==" + } + }, + "npm:@cloudflare/unenv-preset": { + "type": "npm", + "name": "npm:@cloudflare/unenv-preset", + "data": { + "version": "2.16.0", + "packageName": "@cloudflare/unenv-preset", + "hash": "sha512-8ovsRpwzPoEqPUzoErAYVv8l3FMZNeBVQfJTvtzP4AgLSRGZISRfuChFxHWUQd3n6cnrwkuTGxT+2cGo8EsyYg==" + } + }, + "npm:@cloudflare/unenv-preset@2.7.13": { + "type": "npm", + "name": "npm:@cloudflare/unenv-preset@2.7.13", + "data": { + "version": "2.7.13", + "packageName": "@cloudflare/unenv-preset", + "hash": "sha512-NulO1H8R/DzsJguLC0ndMuk4Ufv0KSlN+E54ay9rn9ZCQo0kpAPwwh3LhgpZ96a3Dr6L9LqW57M4CqC34iLOvw==" + } + }, + "npm:@cloudflare/vite-plugin": { + "type": "npm", + "name": "npm:@cloudflare/vite-plugin", + "data": { + "version": "1.19.0", + "packageName": "@cloudflare/vite-plugin", + "hash": "sha512-5WpXYB7vwLnqlMyGSrPOO0nKynbn/nA33VXRPQg3II7q3T/3GOACYq/pnv9WBfcq4OnTdehJFm72Zn+psfhBXQ==" + } + }, + "npm:@cloudflare/workerd-darwin-64@1.20251217.0": { + "type": "npm", + "name": "npm:@cloudflare/workerd-darwin-64@1.20251217.0", + "data": { + "version": "1.20251217.0", + "packageName": "@cloudflare/workerd-darwin-64", + "hash": "sha512-DN6vT+9ho61d/1/YuILW4VS+N1JBLaixWRL1vqNmhgbf8J8VHwWWotrRruEUYigJKx2yZyw6YsasE+yLXgx/Fw==" + } + }, + "npm:@cloudflare/workerd-darwin-64@1.20260317.1": { + "type": "npm", + "name": "npm:@cloudflare/workerd-darwin-64@1.20260317.1", + "data": { + "version": "1.20260317.1", + "packageName": "@cloudflare/workerd-darwin-64", + "hash": "sha512-8hjh3sPMwY8M/zedq3/sXoA2Q4BedlGufn3KOOleIG+5a4ReQKLlUah140D7J6zlKmYZAFMJ4tWC7hCuI/s79g==" + } + }, + "npm:@cloudflare/workerd-darwin-arm64@1.20251217.0": { + "type": "npm", + "name": "npm:@cloudflare/workerd-darwin-arm64@1.20251217.0", + "data": { + "version": "1.20251217.0", + "packageName": "@cloudflare/workerd-darwin-arm64", + "hash": "sha512-5nZOpRTkHmtcTc4Wbr1mj/O3dLb6aHZSiJuVBgtdbVcVmOXueSay3hnw1PXEyR+vpTKGUPkM+omUIslKHWnXDw==" + } + }, + "npm:@cloudflare/workerd-darwin-arm64@1.20260317.1": { + "type": "npm", + "name": "npm:@cloudflare/workerd-darwin-arm64@1.20260317.1", + "data": { + "version": "1.20260317.1", + "packageName": "@cloudflare/workerd-darwin-arm64", + "hash": "sha512-M/MnNyvO5HMgoIdr3QHjdCj2T1ki9gt0vIUnxYxBu9ISXS/jgtMl6chUVPJ7zHYBn9MyYr8ByeN6frjYxj0MGg==" + } + }, + "npm:@cloudflare/workerd-linux-64@1.20251217.0": { + "type": "npm", + "name": "npm:@cloudflare/workerd-linux-64@1.20251217.0", + "data": { + "version": "1.20251217.0", + "packageName": "@cloudflare/workerd-linux-64", + "hash": "sha512-uoPGhMaZVXPpCsU0oG3HQzyVpXCGi5rU+jcHRjUI7DXM4EwctBGvZ380Knkja36qtl+ZvSKVR1pUFSGdK+45Pg==" + } + }, + "npm:@cloudflare/workerd-linux-64": { + "type": "npm", + "name": "npm:@cloudflare/workerd-linux-64", + "data": { + "version": "1.20260317.1", + "packageName": "@cloudflare/workerd-linux-64", + "hash": "sha512-1ltuEjkRcS3fsVF7CxsKlWiRmzq2ZqMfqDN0qUOgbUwkpXsLVJsXmoblaLf5OP00ELlcgF0QsN0p2xPEua4Uug==" + } + }, + "npm:@cloudflare/workerd-linux-arm64@1.20251217.0": { + "type": "npm", + "name": "npm:@cloudflare/workerd-linux-arm64@1.20251217.0", + "data": { + "version": "1.20251217.0", + "packageName": "@cloudflare/workerd-linux-arm64", + "hash": "sha512-ixHnHKsiz1Xko+eDgCJOZ7EEUZKtmnYq3AjW3nkVcLFypSLks4C29E45zVewdaN4wq8sCLeyQCl6r1kS17+DQQ==" + } + }, + "npm:@cloudflare/workerd-linux-arm64@1.20260317.1": { + "type": "npm", + "name": "npm:@cloudflare/workerd-linux-arm64@1.20260317.1", + "data": { + "version": "1.20260317.1", + "packageName": "@cloudflare/workerd-linux-arm64", + "hash": "sha512-3QrNnPF1xlaNwkHpasvRvAMidOvQs2NhXQmALJrEfpIJ/IDL2la8g499yXp3eqhG3hVMCB07XVY149GTs42Xtw==" + } + }, + "npm:@cloudflare/workerd-windows-64@1.20251217.0": { + "type": "npm", + "name": "npm:@cloudflare/workerd-windows-64@1.20251217.0", + "data": { + "version": "1.20251217.0", + "packageName": "@cloudflare/workerd-windows-64", + "hash": "sha512-rP6USX+7ctynz3AtmKi+EvlLP3Xdr1ETrSdcnv693/I5QdUwBxq4yE1Lj6CV7GJizX6opXKYg8QMq0Q4eB9zRQ==" + } + }, + "npm:@cloudflare/workerd-windows-64@1.20260317.1": { + "type": "npm", + "name": "npm:@cloudflare/workerd-windows-64@1.20260317.1", + "data": { + "version": "1.20260317.1", + "packageName": "@cloudflare/workerd-windows-64", + "hash": "sha512-MfZTz+7LfuIpMGTa3RLXHX8Z/pnycZLItn94WRdHr8LPVet+C5/1Nzei399w/jr3+kzT4pDKk26JF/tlI5elpQ==" + } + }, + "npm:@cloudflare/workers-types": { + "type": "npm", + "name": "npm:@cloudflare/workers-types", + "data": { + "version": "4.20260317.1", + "packageName": "@cloudflare/workers-types", + "hash": "sha512-+G4eVwyCpm8Au1ex8vQBCuA9wnwqetz4tPNRoB/53qvktERWBRMQnrtvC1k584yRE3emMThtuY0gWshvSJ++PQ==" + } + }, + "npm:@compiled/babel-plugin-strip-runtime": { + "type": "npm", + "name": "npm:@compiled/babel-plugin-strip-runtime", + "data": { + "version": "0.37.1", + "packageName": "@compiled/babel-plugin-strip-runtime", + "hash": "sha512-GESC3QXGhLd5ULzAre8NvbFmrICqD/lUX4VBse00VZmSeMDgbMMetPwFn9mfPdwiUj9tLXNTVswJzyT3OWYwtA==" + } + }, + "npm:@compiled/babel-plugin": { + "type": "npm", + "name": "npm:@compiled/babel-plugin", + "data": { + "version": "0.37.1", + "packageName": "@compiled/babel-plugin", + "hash": "sha512-lZUBJnySZlOHq16EnAUqnmz0EfOkoeclpH1nXZzs4aCJN7NOosnr2UPLbJtAsPuNJ1P2zstMSDGntMKhKOcA8w==" + } + }, + "npm:@compiled/css": { + "type": "npm", + "name": "npm:@compiled/css", + "data": { + "version": "0.20.0", + "packageName": "@compiled/css", + "hash": "sha512-cgRIqM+VWrwiG2S6b9DMkKm9bO5zG8ZMWvU6MNoKzQtkOPFFQ/jU4McN+4ilahHoJxUlHhLE8NoF0qL2UwzH4w==" + } + }, + "npm:@compiled/react": { + "type": "npm", + "name": "npm:@compiled/react", + "data": { + "version": "0.20.0", + "packageName": "@compiled/react", + "hash": "sha512-mEJuYGFxIDST1H7CpksyE6a3HRVRQmeDal26O+bCHTEZlPp7iKvs5KD1FOmd2palng+S60dPFFG+UuoZDRILwA==" + } + }, + "npm:@compiled/utils": { + "type": "npm", + "name": "npm:@compiled/utils", + "data": { + "version": "0.13.2", + "packageName": "@compiled/utils", + "hash": "sha512-UZZv/P+pKN78BSvyu8lHO18sYS2XC1qB/Afi9ggol0wAJFY8eWrAoLvWzXDC6Pt495KOLqUX6HpWXQPyGF9ojA==" + } + }, + "npm:@cspotcode/source-map-support": { + "type": "npm", + "name": "npm:@cspotcode/source-map-support", + "data": { + "version": "0.8.1", + "packageName": "@cspotcode/source-map-support", + "hash": "sha512-IchNf6dN4tHoMFIn/7OE8LWZ19Y6q/67Bmf6vnGREv8RSbBVb9LPJxEcnwrcwX6ixSvaiGoomAUvu4YSxXrVgw==" + } + }, + "npm:@drizzle-team/brocli": { + "type": "npm", + "name": "npm:@drizzle-team/brocli", + "data": { + "version": "0.10.2", + "packageName": "@drizzle-team/brocli", + "hash": "sha512-z33Il7l5dKjUgGULTqBsQBQwckHh5AbIuxhdsIxDDiZAzBOrZO6q9ogcWC65kU382AfynTfgNumVcNIjuIua6w==" + } + }, + "npm:@duckduckgo/autoconsent": { + "type": "npm", + "name": "npm:@duckduckgo/autoconsent", + "data": { + "version": "14.56.0", + "packageName": "@duckduckgo/autoconsent", + "hash": "sha512-0gImNtILoEb4LtQkCXJ7pjwqV3lY4IG7sm9y+cbB218MqKKoMJ/zht9UEI0bJ2J2IZZ0GEcLQE9TsQ3AISFZ5Q==" + } + }, + "npm:@electric-sql/pglite-socket": { + "type": "npm", + "name": "npm:@electric-sql/pglite-socket", + "data": { + "version": "0.0.20", + "packageName": "@electric-sql/pglite-socket", + "hash": "sha512-J5nLGsicnD9wJHnno9r+DGxfcZWh+YJMCe0q/aCgtG6XOm9Z7fKeite8IZSNXgZeGltSigM9U/vAWZQWdgcSFg==" + } + }, + "npm:@electric-sql/pglite-tools": { + "type": "npm", + "name": "npm:@electric-sql/pglite-tools", + "data": { + "version": "0.2.20", + "packageName": "@electric-sql/pglite-tools", + "hash": "sha512-BK50ZnYa3IG7ztXhtgYf0Q7zijV32Iw1cYS8C+ThdQlwx12V5VZ9KRJ42y82Hyb4PkTxZQklVQA9JHyUlex33A==" + } + }, + "npm:@electric-sql/pglite": { + "type": "npm", + "name": "npm:@electric-sql/pglite", + "data": { + "version": "0.3.15", + "packageName": "@electric-sql/pglite", + "hash": "sha512-Cj++n1Mekf9ETfdc16TlDi+cDDQF0W7EcbyRHYOAeZdsAe8M/FJg18itDTSwyHfar2WIezawM9o0EKaRGVKygQ==" + } + }, + "npm:@emnapi/core": { + "type": "npm", + "name": "npm:@emnapi/core", + "data": { + "version": "1.7.1", + "packageName": "@emnapi/core", + "hash": "sha512-o1uhUASyo921r2XtHYOHy7gdkGLge8ghBEQHMWmyJFoXlpU58kIrhhN3w26lpQb6dspetweapMn2CSNwQ8I4wg==" + } + }, + "npm:@emnapi/runtime": { + "type": "npm", + "name": "npm:@emnapi/runtime", + "data": { + "version": "1.7.1", + "packageName": "@emnapi/runtime", + "hash": "sha512-PVtJr5CmLwYAU9PZDMITZoR5iAOShYREoR45EyyLrbntV50mdePTgUn4AmOw90Ifcj+x2kRjdzr1HP3RrNiHGA==" + } + }, + "npm:@emnapi/wasi-threads": { + "type": "npm", + "name": "npm:@emnapi/wasi-threads", + "data": { + "version": "1.1.0", + "packageName": "@emnapi/wasi-threads", + "hash": "sha512-WI0DdZ8xFSbgMjR1sFsKABJ/C5OnRrjT06JXbZKexJGrDuPTzZdDYfFlsgcCXCyf+suG5QU2e/y1Wo2V/OapLQ==" + } + }, + "npm:@emotion/is-prop-valid": { + "type": "npm", + "name": "npm:@emotion/is-prop-valid", + "data": { + "version": "1.4.0", + "packageName": "@emotion/is-prop-valid", + "hash": "sha512-QgD4fyscGcbbKwJmqNvUMSE02OsHUa+lAWKdEUIJKgqe5IwRSKd7+KhibEWdaKwgjLj0DRSHA9biAIqGBk05lw==" + } + }, + "npm:@emotion/memoize": { + "type": "npm", + "name": "npm:@emotion/memoize", + "data": { + "version": "0.9.0", + "packageName": "@emotion/memoize", + "hash": "sha512-30FAj7/EoJ5mwVPOWhAyCX+FPfMDrVecJAM+Iw9NRoSl4BBAQeqj4cApHHUXOVvIPgLVDsCFoz/hGD+5QQD1GQ==" + } + }, + "npm:@esbuild-kit/core-utils": { + "type": "npm", + "name": "npm:@esbuild-kit/core-utils", + "data": { + "version": "3.3.2", + "packageName": "@esbuild-kit/core-utils", + "hash": "sha512-sPRAnw9CdSsRmEtnsl2WXWdyquogVpB3yZ3dgwJfe8zrOzTsV7cJvmwrKVa+0ma5BoiGJ+BoqkMvawbayKUsqQ==" + } + }, + "npm:@esbuild-kit/esm-loader": { + "type": "npm", + "name": "npm:@esbuild-kit/esm-loader", + "data": { + "version": "2.6.5", + "packageName": "@esbuild-kit/esm-loader", + "hash": "sha512-FxEMIkJKnodyA1OaCUoEvbYRkoZlLZ4d/eXFu9Fh8CbBBgP5EmZxrfTRyN0qpXZ4vOvqnE5YdRdcrmUUXuU+dA==" + } + }, + "npm:@esbuild/aix-ppc64@0.25.12": { + "type": "npm", + "name": "npm:@esbuild/aix-ppc64@0.25.12", + "data": { + "version": "0.25.12", + "packageName": "@esbuild/aix-ppc64", + "hash": "sha512-Hhmwd6CInZ3dwpuGTF8fJG6yoWmsToE+vYgD4nytZVxcu1ulHpUQRAB1UJ8+N1Am3Mz4+xOByoQoSZf4D+CpkA==" + } + }, + "npm:@esbuild/aix-ppc64@0.27.3": { + "type": "npm", + "name": "npm:@esbuild/aix-ppc64@0.27.3", + "data": { + "version": "0.27.3", + "packageName": "@esbuild/aix-ppc64", + "hash": "sha512-9fJMTNFTWZMh5qwrBItuziu834eOCUcEqymSH7pY+zoMVEZg3gcPuBNxH1EvfVYe9h0x/Ptw8KBzv7qxb7l8dg==" + } + }, + "npm:@esbuild/aix-ppc64@0.27.4": { + "type": "npm", + "name": "npm:@esbuild/aix-ppc64@0.27.4", + "data": { + "version": "0.27.4", + "packageName": "@esbuild/aix-ppc64", + "hash": "sha512-cQPwL2mp2nSmHHJlCyoXgHGhbEPMrEEU5xhkcy3Hs/O7nGZqEpZ2sUtLaL9MORLtDfRvVl2/3PAuEkYZH0Ty8Q==" + } + }, + "npm:@esbuild/android-arm64@0.18.20": { + "type": "npm", + "name": "npm:@esbuild/android-arm64@0.18.20", + "data": { + "version": "0.18.20", + "packageName": "@esbuild/android-arm64", + "hash": "sha512-Nz4rJcchGDtENV0eMKUNa6L12zz2zBDXuhj/Vjh18zGqB44Bi7MBMSXjgunJgjRhCmKOjnPuZp4Mb6OKqtMHLQ==" + } + }, + "npm:@esbuild/android-arm64@0.25.12": { + "type": "npm", + "name": "npm:@esbuild/android-arm64@0.25.12", + "data": { + "version": "0.25.12", + "packageName": "@esbuild/android-arm64", + "hash": "sha512-6AAmLG7zwD1Z159jCKPvAxZd4y/VTO0VkprYy+3N2FtJ8+BQWFXU+OxARIwA46c5tdD9SsKGZ/1ocqBS/gAKHg==" + } + }, + "npm:@esbuild/android-arm64@0.27.3": { + "type": "npm", + "name": "npm:@esbuild/android-arm64@0.27.3", + "data": { + "version": "0.27.3", + "packageName": "@esbuild/android-arm64", + "hash": "sha512-YdghPYUmj/FX2SYKJ0OZxf+iaKgMsKHVPF1MAq/P8WirnSpCStzKJFjOjzsW0QQ7oIAiccHdcqjbHmJxRb/dmg==" + } + }, + "npm:@esbuild/android-arm64@0.27.4": { + "type": "npm", + "name": "npm:@esbuild/android-arm64@0.27.4", + "data": { + "version": "0.27.4", + "packageName": "@esbuild/android-arm64", + "hash": "sha512-gdLscB7v75wRfu7QSm/zg6Rx29VLdy9eTr2t44sfTW7CxwAtQghZ4ZnqHk3/ogz7xao0QAgrkradbBzcqFPasw==" + } + }, + "npm:@esbuild/android-arm@0.18.20": { + "type": "npm", + "name": "npm:@esbuild/android-arm@0.18.20", + "data": { + "version": "0.18.20", + "packageName": "@esbuild/android-arm", + "hash": "sha512-fyi7TDI/ijKKNZTUJAQqiG5T7YjJXgnzkURqmGj13C6dCqckZBLdl4h7bkhHt/t0WP+zO9/zwroDvANaOqO5Sw==" + } + }, + "npm:@esbuild/android-arm@0.25.12": { + "type": "npm", + "name": "npm:@esbuild/android-arm@0.25.12", + "data": { + "version": "0.25.12", + "packageName": "@esbuild/android-arm", + "hash": "sha512-VJ+sKvNA/GE7Ccacc9Cha7bpS8nyzVv0jdVgwNDaR4gDMC/2TTRc33Ip8qrNYUcpkOHUT5OZ0bUcNNVZQ9RLlg==" + } + }, + "npm:@esbuild/android-arm@0.27.3": { + "type": "npm", + "name": "npm:@esbuild/android-arm@0.27.3", + "data": { + "version": "0.27.3", + "packageName": "@esbuild/android-arm", + "hash": "sha512-i5D1hPY7GIQmXlXhs2w8AWHhenb00+GxjxRncS2ZM7YNVGNfaMxgzSGuO8o8SJzRc/oZwU2bcScvVERk03QhzA==" + } + }, + "npm:@esbuild/android-arm@0.27.4": { + "type": "npm", + "name": "npm:@esbuild/android-arm@0.27.4", + "data": { + "version": "0.27.4", + "packageName": "@esbuild/android-arm", + "hash": "sha512-X9bUgvxiC8CHAGKYufLIHGXPJWnr0OCdR0anD2e21vdvgCI8lIfqFbnoeOz7lBjdrAGUhqLZLcQo6MLhTO2DKQ==" + } + }, + "npm:@esbuild/android-x64@0.18.20": { + "type": "npm", + "name": "npm:@esbuild/android-x64@0.18.20", + "data": { + "version": "0.18.20", + "packageName": "@esbuild/android-x64", + "hash": "sha512-8GDdlePJA8D6zlZYJV/jnrRAi6rOiNaCC/JclcXpB+KIuvfBN4owLtgzY2bsxnx666XjJx2kDPUmnTtR8qKQUg==" + } + }, + "npm:@esbuild/android-x64@0.25.12": { + "type": "npm", + "name": "npm:@esbuild/android-x64@0.25.12", + "data": { + "version": "0.25.12", + "packageName": "@esbuild/android-x64", + "hash": "sha512-5jbb+2hhDHx5phYR2By8GTWEzn6I9UqR11Kwf22iKbNpYrsmRB18aX/9ivc5cabcUiAT/wM+YIZ6SG9QO6a8kg==" + } + }, + "npm:@esbuild/android-x64@0.27.3": { + "type": "npm", + "name": "npm:@esbuild/android-x64@0.27.3", + "data": { + "version": "0.27.3", + "packageName": "@esbuild/android-x64", + "hash": "sha512-IN/0BNTkHtk8lkOM8JWAYFg4ORxBkZQf9zXiEOfERX/CzxW3Vg1ewAhU7QSWQpVIzTW+b8Xy+lGzdYXV6UZObQ==" + } + }, + "npm:@esbuild/android-x64@0.27.4": { + "type": "npm", + "name": "npm:@esbuild/android-x64@0.27.4", + "data": { + "version": "0.27.4", + "packageName": "@esbuild/android-x64", + "hash": "sha512-PzPFnBNVF292sfpfhiyiXCGSn9HZg5BcAz+ivBuSsl6Rk4ga1oEXAamhOXRFyMcjwr2DVtm40G65N3GLeH1Lvw==" + } + }, + "npm:@esbuild/darwin-arm64@0.18.20": { + "type": "npm", + "name": "npm:@esbuild/darwin-arm64@0.18.20", + "data": { + "version": "0.18.20", + "packageName": "@esbuild/darwin-arm64", + "hash": "sha512-bxRHW5kHU38zS2lPTPOyuyTm+S+eobPUnTNkdJEfAddYgEcll4xkT8DB9d2008DtTbl7uJag2HuE5NZAZgnNEA==" + } + }, + "npm:@esbuild/darwin-arm64@0.25.12": { + "type": "npm", + "name": "npm:@esbuild/darwin-arm64@0.25.12", + "data": { + "version": "0.25.12", + "packageName": "@esbuild/darwin-arm64", + "hash": "sha512-N3zl+lxHCifgIlcMUP5016ESkeQjLj/959RxxNYIthIg+CQHInujFuXeWbWMgnTo4cp5XVHqFPmpyu9J65C1Yg==" + } + }, + "npm:@esbuild/darwin-arm64@0.27.3": { + "type": "npm", + "name": "npm:@esbuild/darwin-arm64@0.27.3", + "data": { + "version": "0.27.3", + "packageName": "@esbuild/darwin-arm64", + "hash": "sha512-Re491k7ByTVRy0t3EKWajdLIr0gz2kKKfzafkth4Q8A5n1xTHrkqZgLLjFEHVD+AXdUGgQMq+Godfq45mGpCKg==" + } + }, + "npm:@esbuild/darwin-arm64@0.27.4": { + "type": "npm", + "name": "npm:@esbuild/darwin-arm64@0.27.4", + "data": { + "version": "0.27.4", + "packageName": "@esbuild/darwin-arm64", + "hash": "sha512-b7xaGIwdJlht8ZFCvMkpDN6uiSmnxxK56N2GDTMYPr2/gzvfdQN8rTfBsvVKmIVY/X7EM+/hJKEIbbHs9oA4tQ==" + } + }, + "npm:@esbuild/darwin-x64@0.18.20": { + "type": "npm", + "name": "npm:@esbuild/darwin-x64@0.18.20", + "data": { + "version": "0.18.20", + "packageName": "@esbuild/darwin-x64", + "hash": "sha512-pc5gxlMDxzm513qPGbCbDukOdsGtKhfxD1zJKXjCCcU7ju50O7MeAZ8c4krSJcOIJGFR+qx21yMMVYwiQvyTyQ==" + } + }, + "npm:@esbuild/darwin-x64@0.25.12": { + "type": "npm", + "name": "npm:@esbuild/darwin-x64@0.25.12", + "data": { + "version": "0.25.12", + "packageName": "@esbuild/darwin-x64", + "hash": "sha512-HQ9ka4Kx21qHXwtlTUVbKJOAnmG1ipXhdWTmNXiPzPfWKpXqASVcWdnf2bnL73wgjNrFXAa3yYvBSd9pzfEIpA==" + } + }, + "npm:@esbuild/darwin-x64@0.27.3": { + "type": "npm", + "name": "npm:@esbuild/darwin-x64@0.27.3", + "data": { + "version": "0.27.3", + "packageName": "@esbuild/darwin-x64", + "hash": "sha512-vHk/hA7/1AckjGzRqi6wbo+jaShzRowYip6rt6q7VYEDX4LEy1pZfDpdxCBnGtl+A5zq8iXDcyuxwtv3hNtHFg==" + } + }, + "npm:@esbuild/darwin-x64@0.27.4": { + "type": "npm", + "name": "npm:@esbuild/darwin-x64@0.27.4", + "data": { + "version": "0.27.4", + "packageName": "@esbuild/darwin-x64", + "hash": "sha512-sR+OiKLwd15nmCdqpXMnuJ9W2kpy0KigzqScqHI3Hqwr7IXxBp3Yva+yJwoqh7rE8V77tdoheRYataNKL4QrPw==" + } + }, + "npm:@esbuild/freebsd-arm64@0.18.20": { + "type": "npm", + "name": "npm:@esbuild/freebsd-arm64@0.18.20", + "data": { + "version": "0.18.20", + "packageName": "@esbuild/freebsd-arm64", + "hash": "sha512-yqDQHy4QHevpMAaxhhIwYPMv1NECwOvIpGCZkECn8w2WFHXjEwrBn3CeNIYsibZ/iZEUemj++M26W3cNR5h+Tw==" + } + }, + "npm:@esbuild/freebsd-arm64@0.25.12": { + "type": "npm", + "name": "npm:@esbuild/freebsd-arm64@0.25.12", + "data": { + "version": "0.25.12", + "packageName": "@esbuild/freebsd-arm64", + "hash": "sha512-gA0Bx759+7Jve03K1S0vkOu5Lg/85dou3EseOGUes8flVOGxbhDDh/iZaoek11Y8mtyKPGF3vP8XhnkDEAmzeg==" + } + }, + "npm:@esbuild/freebsd-arm64@0.27.3": { + "type": "npm", + "name": "npm:@esbuild/freebsd-arm64@0.27.3", + "data": { + "version": "0.27.3", + "packageName": "@esbuild/freebsd-arm64", + "hash": "sha512-ipTYM2fjt3kQAYOvo6vcxJx3nBYAzPjgTCk7QEgZG8AUO3ydUhvelmhrbOheMnGOlaSFUoHXB6un+A7q4ygY9w==" + } + }, + "npm:@esbuild/freebsd-arm64@0.27.4": { + "type": "npm", + "name": "npm:@esbuild/freebsd-arm64@0.27.4", + "data": { + "version": "0.27.4", + "packageName": "@esbuild/freebsd-arm64", + "hash": "sha512-jnfpKe+p79tCnm4GVav68A7tUFeKQwQyLgESwEAUzyxk/TJr4QdGog9sqWNcUbr/bZt/O/HXouspuQDd9JxFSw==" + } + }, + "npm:@esbuild/freebsd-x64@0.18.20": { + "type": "npm", + "name": "npm:@esbuild/freebsd-x64@0.18.20", + "data": { + "version": "0.18.20", + "packageName": "@esbuild/freebsd-x64", + "hash": "sha512-tgWRPPuQsd3RmBZwarGVHZQvtzfEBOreNuxEMKFcd5DaDn2PbBxfwLcj4+aenoh7ctXcbXmOQIn8HI6mCSw5MQ==" + } + }, + "npm:@esbuild/freebsd-x64@0.25.12": { + "type": "npm", + "name": "npm:@esbuild/freebsd-x64@0.25.12", + "data": { + "version": "0.25.12", + "packageName": "@esbuild/freebsd-x64", + "hash": "sha512-TGbO26Yw2xsHzxtbVFGEXBFH0FRAP7gtcPE7P5yP7wGy7cXK2oO7RyOhL5NLiqTlBh47XhmIUXuGciXEqYFfBQ==" + } + }, + "npm:@esbuild/freebsd-x64@0.27.3": { + "type": "npm", + "name": "npm:@esbuild/freebsd-x64@0.27.3", + "data": { + "version": "0.27.3", + "packageName": "@esbuild/freebsd-x64", + "hash": "sha512-dDk0X87T7mI6U3K9VjWtHOXqwAMJBNN2r7bejDsc+j03SEjtD9HrOl8gVFByeM0aJksoUuUVU9TBaZa2rgj0oA==" + } + }, + "npm:@esbuild/freebsd-x64@0.27.4": { + "type": "npm", + "name": "npm:@esbuild/freebsd-x64@0.27.4", + "data": { + "version": "0.27.4", + "packageName": "@esbuild/freebsd-x64", + "hash": "sha512-2kb4ceA/CpfUrIcTUl1wrP/9ad9Atrp5J94Lq69w7UwOMolPIGrfLSvAKJp0RTvkPPyn6CIWrNy13kyLikZRZQ==" + } + }, + "npm:@esbuild/linux-arm64@0.18.20": { + "type": "npm", + "name": "npm:@esbuild/linux-arm64@0.18.20", + "data": { + "version": "0.18.20", + "packageName": "@esbuild/linux-arm64", + "hash": "sha512-2YbscF+UL7SQAVIpnWvYwM+3LskyDmPhe31pE7/aoTMFKKzIc9lLbyGUpmmb8a8AixOL61sQ/mFh3jEjHYFvdA==" + } + }, + "npm:@esbuild/linux-arm64@0.25.12": { + "type": "npm", + "name": "npm:@esbuild/linux-arm64@0.25.12", + "data": { + "version": "0.25.12", + "packageName": "@esbuild/linux-arm64", + "hash": "sha512-8bwX7a8FghIgrupcxb4aUmYDLp8pX06rGh5HqDT7bB+8Rdells6mHvrFHHW2JAOPZUbnjUpKTLg6ECyzvas2AQ==" + } + }, + "npm:@esbuild/linux-arm64@0.27.3": { + "type": "npm", + "name": "npm:@esbuild/linux-arm64@0.27.3", + "data": { + "version": "0.27.3", + "packageName": "@esbuild/linux-arm64", + "hash": "sha512-sZOuFz/xWnZ4KH3YfFrKCf1WyPZHakVzTiqji3WDc0BCl2kBwiJLCXpzLzUBLgmp4veFZdvN5ChW4Eq/8Fc2Fg==" + } + }, + "npm:@esbuild/linux-arm64@0.27.4": { + "type": "npm", + "name": "npm:@esbuild/linux-arm64@0.27.4", + "data": { + "version": "0.27.4", + "packageName": "@esbuild/linux-arm64", + "hash": "sha512-7nQOttdzVGth1iz57kxg9uCz57dxQLHWxopL6mYuYthohPKEK0vU0C3O21CcBK6KDlkYVcnDXY099HcCDXd9dA==" + } + }, + "npm:@esbuild/linux-arm@0.18.20": { + "type": "npm", + "name": "npm:@esbuild/linux-arm@0.18.20", + "data": { + "version": "0.18.20", + "packageName": "@esbuild/linux-arm", + "hash": "sha512-/5bHkMWnq1EgKr1V+Ybz3s1hWXok7mDFUMQ4cG10AfW3wL02PSZi5kFpYKrptDsgb2WAJIvRcDm+qIvXf/apvg==" + } + }, + "npm:@esbuild/linux-arm@0.25.12": { + "type": "npm", + "name": "npm:@esbuild/linux-arm@0.25.12", + "data": { + "version": "0.25.12", + "packageName": "@esbuild/linux-arm", + "hash": "sha512-lPDGyC1JPDou8kGcywY0YILzWlhhnRjdof3UlcoqYmS9El818LLfJJc3PXXgZHrHCAKs/Z2SeZtDJr5MrkxtOw==" + } + }, + "npm:@esbuild/linux-arm@0.27.3": { + "type": "npm", + "name": "npm:@esbuild/linux-arm@0.27.3", + "data": { + "version": "0.27.3", + "packageName": "@esbuild/linux-arm", + "hash": "sha512-s6nPv2QkSupJwLYyfS+gwdirm0ukyTFNl3KTgZEAiJDd+iHZcbTPPcWCcRYH+WlNbwChgH2QkE9NSlNrMT8Gfw==" + } + }, + "npm:@esbuild/linux-arm@0.27.4": { + "type": "npm", + "name": "npm:@esbuild/linux-arm@0.27.4", + "data": { + "version": "0.27.4", + "packageName": "@esbuild/linux-arm", + "hash": "sha512-aBYgcIxX/wd5n2ys0yESGeYMGF+pv6g0DhZr3G1ZG4jMfruU9Tl1i2Z+Wnj9/KjGz1lTLCcorqE2viePZqj4Eg==" + } + }, + "npm:@esbuild/linux-ia32@0.18.20": { + "type": "npm", + "name": "npm:@esbuild/linux-ia32@0.18.20", + "data": { + "version": "0.18.20", + "packageName": "@esbuild/linux-ia32", + "hash": "sha512-P4etWwq6IsReT0E1KHU40bOnzMHoH73aXp96Fs8TIT6z9Hu8G6+0SHSw9i2isWrD2nbx2qo5yUqACgdfVGx7TA==" + } + }, + "npm:@esbuild/linux-ia32@0.25.12": { + "type": "npm", + "name": "npm:@esbuild/linux-ia32@0.25.12", + "data": { + "version": "0.25.12", + "packageName": "@esbuild/linux-ia32", + "hash": "sha512-0y9KrdVnbMM2/vG8KfU0byhUN+EFCny9+8g202gYqSSVMonbsCfLjUO+rCci7pM0WBEtz+oK/PIwHkzxkyharA==" + } + }, + "npm:@esbuild/linux-ia32@0.27.3": { + "type": "npm", + "name": "npm:@esbuild/linux-ia32@0.27.3", + "data": { + "version": "0.27.3", + "packageName": "@esbuild/linux-ia32", + "hash": "sha512-yGlQYjdxtLdh0a3jHjuwOrxQjOZYD/C9PfdbgJJF3TIZWnm/tMd/RcNiLngiu4iwcBAOezdnSLAwQDPqTmtTYg==" + } + }, + "npm:@esbuild/linux-ia32@0.27.4": { + "type": "npm", + "name": "npm:@esbuild/linux-ia32@0.27.4", + "data": { + "version": "0.27.4", + "packageName": "@esbuild/linux-ia32", + "hash": "sha512-oPtixtAIzgvzYcKBQM/qZ3R+9TEUd1aNJQu0HhGyqtx6oS7qTpvjheIWBbes4+qu1bNlo2V4cbkISr8q6gRBFA==" + } + }, + "npm:@esbuild/linux-loong64@0.18.20": { + "type": "npm", + "name": "npm:@esbuild/linux-loong64@0.18.20", + "data": { + "version": "0.18.20", + "packageName": "@esbuild/linux-loong64", + "hash": "sha512-nXW8nqBTrOpDLPgPY9uV+/1DjxoQ7DoB2N8eocyq8I9XuqJ7BiAMDMf9n1xZM9TgW0J8zrquIb/A7s3BJv7rjg==" + } + }, + "npm:@esbuild/linux-loong64@0.25.12": { + "type": "npm", + "name": "npm:@esbuild/linux-loong64@0.25.12", + "data": { + "version": "0.25.12", + "packageName": "@esbuild/linux-loong64", + "hash": "sha512-h///Lr5a9rib/v1GGqXVGzjL4TMvVTv+s1DPoxQdz7l/AYv6LDSxdIwzxkrPW438oUXiDtwM10o9PmwS/6Z0Ng==" + } + }, + "npm:@esbuild/linux-loong64@0.27.3": { + "type": "npm", + "name": "npm:@esbuild/linux-loong64@0.27.3", + "data": { + "version": "0.27.3", + "packageName": "@esbuild/linux-loong64", + "hash": "sha512-WO60Sn8ly3gtzhyjATDgieJNet/KqsDlX5nRC5Y3oTFcS1l0KWba+SEa9Ja1GfDqSF1z6hif/SkpQJbL63cgOA==" + } + }, + "npm:@esbuild/linux-loong64@0.27.4": { + "type": "npm", + "name": "npm:@esbuild/linux-loong64@0.27.4", + "data": { + "version": "0.27.4", + "packageName": "@esbuild/linux-loong64", + "hash": "sha512-8mL/vh8qeCoRcFH2nM8wm5uJP+ZcVYGGayMavi8GmRJjuI3g1v6Z7Ni0JJKAJW+m0EtUuARb6Lmp4hMjzCBWzA==" + } + }, + "npm:@esbuild/linux-mips64el@0.18.20": { + "type": "npm", + "name": "npm:@esbuild/linux-mips64el@0.18.20", + "data": { + "version": "0.18.20", + "packageName": "@esbuild/linux-mips64el", + "hash": "sha512-d5NeaXZcHp8PzYy5VnXV3VSd2D328Zb+9dEq5HE6bw6+N86JVPExrA6O68OPwobntbNJ0pzCpUFZTo3w0GyetQ==" + } + }, + "npm:@esbuild/linux-mips64el@0.25.12": { + "type": "npm", + "name": "npm:@esbuild/linux-mips64el@0.25.12", + "data": { + "version": "0.25.12", + "packageName": "@esbuild/linux-mips64el", + "hash": "sha512-iyRrM1Pzy9GFMDLsXn1iHUm18nhKnNMWscjmp4+hpafcZjrr2WbT//d20xaGljXDBYHqRcl8HnxbX6uaA/eGVw==" + } + }, + "npm:@esbuild/linux-mips64el@0.27.3": { + "type": "npm", + "name": "npm:@esbuild/linux-mips64el@0.27.3", + "data": { + "version": "0.27.3", + "packageName": "@esbuild/linux-mips64el", + "hash": "sha512-APsymYA6sGcZ4pD6k+UxbDjOFSvPWyZhjaiPyl/f79xKxwTnrn5QUnXR5prvetuaSMsb4jgeHewIDCIWljrSxw==" + } + }, + "npm:@esbuild/linux-mips64el@0.27.4": { + "type": "npm", + "name": "npm:@esbuild/linux-mips64el@0.27.4", + "data": { + "version": "0.27.4", + "packageName": "@esbuild/linux-mips64el", + "hash": "sha512-1RdrWFFiiLIW7LQq9Q2NES+HiD4NyT8Itj9AUeCl0IVCA459WnPhREKgwrpaIfTOe+/2rdntisegiPWn/r/aAw==" + } + }, + "npm:@esbuild/linux-ppc64@0.18.20": { + "type": "npm", + "name": "npm:@esbuild/linux-ppc64@0.18.20", + "data": { + "version": "0.18.20", + "packageName": "@esbuild/linux-ppc64", + "hash": "sha512-WHPyeScRNcmANnLQkq6AfyXRFr5D6N2sKgkFo2FqguP44Nw2eyDlbTdZwd9GYk98DZG9QItIiTlFLHJHjxP3FA==" + } + }, + "npm:@esbuild/linux-ppc64@0.25.12": { + "type": "npm", + "name": "npm:@esbuild/linux-ppc64@0.25.12", + "data": { + "version": "0.25.12", + "packageName": "@esbuild/linux-ppc64", + "hash": "sha512-9meM/lRXxMi5PSUqEXRCtVjEZBGwB7P/D4yT8UG/mwIdze2aV4Vo6U5gD3+RsoHXKkHCfSxZKzmDssVlRj1QQA==" + } + }, + "npm:@esbuild/linux-ppc64@0.27.3": { + "type": "npm", + "name": "npm:@esbuild/linux-ppc64@0.27.3", + "data": { + "version": "0.27.3", + "packageName": "@esbuild/linux-ppc64", + "hash": "sha512-eizBnTeBefojtDb9nSh4vvVQ3V9Qf9Df01PfawPcRzJH4gFSgrObw+LveUyDoKU3kxi5+9RJTCWlj4FjYXVPEA==" + } + }, + "npm:@esbuild/linux-ppc64@0.27.4": { + "type": "npm", + "name": "npm:@esbuild/linux-ppc64@0.27.4", + "data": { + "version": "0.27.4", + "packageName": "@esbuild/linux-ppc64", + "hash": "sha512-tLCwNG47l3sd9lpfyx9LAGEGItCUeRCWeAx6x2Jmbav65nAwoPXfewtAdtbtit/pJFLUWOhpv0FpS6GQAmPrHA==" + } + }, + "npm:@esbuild/linux-riscv64@0.18.20": { + "type": "npm", + "name": "npm:@esbuild/linux-riscv64@0.18.20", + "data": { + "version": "0.18.20", + "packageName": "@esbuild/linux-riscv64", + "hash": "sha512-WSxo6h5ecI5XH34KC7w5veNnKkju3zBRLEQNY7mv5mtBmrP/MjNBCAlsM2u5hDBlS3NGcTQpoBvRzqBcRtpq1A==" + } + }, + "npm:@esbuild/linux-riscv64@0.25.12": { + "type": "npm", + "name": "npm:@esbuild/linux-riscv64@0.25.12", + "data": { + "version": "0.25.12", + "packageName": "@esbuild/linux-riscv64", + "hash": "sha512-Zr7KR4hgKUpWAwb1f3o5ygT04MzqVrGEGXGLnj15YQDJErYu/BGg+wmFlIDOdJp0PmB0lLvxFIOXZgFRrdjR0w==" + } + }, + "npm:@esbuild/linux-riscv64@0.27.3": { + "type": "npm", + "name": "npm:@esbuild/linux-riscv64@0.27.3", + "data": { + "version": "0.27.3", + "packageName": "@esbuild/linux-riscv64", + "hash": "sha512-3Emwh0r5wmfm3ssTWRQSyVhbOHvqegUDRd0WhmXKX2mkHJe1SFCMJhagUleMq+Uci34wLSipf8Lagt4LlpRFWQ==" + } + }, + "npm:@esbuild/linux-riscv64@0.27.4": { + "type": "npm", + "name": "npm:@esbuild/linux-riscv64@0.27.4", + "data": { + "version": "0.27.4", + "packageName": "@esbuild/linux-riscv64", + "hash": "sha512-BnASypppbUWyqjd1KIpU4AUBiIhVr6YlHx/cnPgqEkNoVOhHg+YiSVxM1RLfiy4t9cAulbRGTNCKOcqHrEQLIw==" + } + }, + "npm:@esbuild/linux-s390x@0.18.20": { + "type": "npm", + "name": "npm:@esbuild/linux-s390x@0.18.20", + "data": { + "version": "0.18.20", + "packageName": "@esbuild/linux-s390x", + "hash": "sha512-+8231GMs3mAEth6Ja1iK0a1sQ3ohfcpzpRLH8uuc5/KVDFneH6jtAJLFGafpzpMRO6DzJ6AvXKze9LfFMrIHVQ==" + } + }, + "npm:@esbuild/linux-s390x@0.25.12": { + "type": "npm", + "name": "npm:@esbuild/linux-s390x@0.25.12", + "data": { + "version": "0.25.12", + "packageName": "@esbuild/linux-s390x", + "hash": "sha512-MsKncOcgTNvdtiISc/jZs/Zf8d0cl/t3gYWX8J9ubBnVOwlk65UIEEvgBORTiljloIWnBzLs4qhzPkJcitIzIg==" + } + }, + "npm:@esbuild/linux-s390x@0.27.3": { + "type": "npm", + "name": "npm:@esbuild/linux-s390x@0.27.3", + "data": { + "version": "0.27.3", + "packageName": "@esbuild/linux-s390x", + "hash": "sha512-pBHUx9LzXWBc7MFIEEL0yD/ZVtNgLytvx60gES28GcWMqil8ElCYR4kvbV2BDqsHOvVDRrOxGySBM9Fcv744hw==" + } + }, + "npm:@esbuild/linux-s390x@0.27.4": { + "type": "npm", + "name": "npm:@esbuild/linux-s390x@0.27.4", + "data": { + "version": "0.27.4", + "packageName": "@esbuild/linux-s390x", + "hash": "sha512-+eUqgb/Z7vxVLezG8bVB9SfBie89gMueS+I0xYh2tJdw3vqA/0ImZJ2ROeWwVJN59ihBeZ7Tu92dF/5dy5FttA==" + } + }, + "npm:@esbuild/linux-x64@0.18.20": { + "type": "npm", + "name": "npm:@esbuild/linux-x64@0.18.20", + "data": { + "version": "0.18.20", + "packageName": "@esbuild/linux-x64", + "hash": "sha512-UYqiqemphJcNsFEskc73jQ7B9jgwjWrSayxawS6UVFZGWrAAtkzjxSqnoclCXxWtfwLdzU+vTpcNYhpn43uP1w==" + } + }, + "npm:@esbuild/linux-x64@0.25.12": { + "type": "npm", + "name": "npm:@esbuild/linux-x64@0.25.12", + "data": { + "version": "0.25.12", + "packageName": "@esbuild/linux-x64", + "hash": "sha512-uqZMTLr/zR/ed4jIGnwSLkaHmPjOjJvnm6TVVitAa08SLS9Z0VM8wIRx7gWbJB5/J54YuIMInDquWyYvQLZkgw==" + } + }, + "npm:@esbuild/linux-x64@0.27.3": { + "type": "npm", + "name": "npm:@esbuild/linux-x64@0.27.3", + "data": { + "version": "0.27.3", + "packageName": "@esbuild/linux-x64", + "hash": "sha512-Czi8yzXUWIQYAtL/2y6vogER8pvcsOsk5cpwL4Gk5nJqH5UZiVByIY8Eorm5R13gq+DQKYg0+JyQoytLQas4dA==" + } + }, + "npm:@esbuild/linux-x64": { + "type": "npm", + "name": "npm:@esbuild/linux-x64", + "data": { + "version": "0.27.4", + "packageName": "@esbuild/linux-x64", + "hash": "sha512-S5qOXrKV8BQEzJPVxAwnryi2+Iq5pB40gTEIT69BQONqR7JH1EPIcQ/Uiv9mCnn05jff9umq/5nqzxlqTOg9NA==" + } + }, + "npm:@esbuild/netbsd-arm64@0.25.12": { + "type": "npm", + "name": "npm:@esbuild/netbsd-arm64@0.25.12", + "data": { + "version": "0.25.12", + "packageName": "@esbuild/netbsd-arm64", + "hash": "sha512-xXwcTq4GhRM7J9A8Gv5boanHhRa/Q9KLVmcyXHCTaM4wKfIpWkdXiMog/KsnxzJ0A1+nD+zoecuzqPmCRyBGjg==" + } + }, + "npm:@esbuild/netbsd-arm64@0.27.3": { + "type": "npm", + "name": "npm:@esbuild/netbsd-arm64@0.27.3", + "data": { + "version": "0.27.3", + "packageName": "@esbuild/netbsd-arm64", + "hash": "sha512-sDpk0RgmTCR/5HguIZa9n9u+HVKf40fbEUt+iTzSnCaGvY9kFP0YKBWZtJaraonFnqef5SlJ8/TiPAxzyS+UoA==" + } + }, + "npm:@esbuild/netbsd-arm64@0.27.4": { + "type": "npm", + "name": "npm:@esbuild/netbsd-arm64@0.27.4", + "data": { + "version": "0.27.4", + "packageName": "@esbuild/netbsd-arm64", + "hash": "sha512-xHT8X4sb0GS8qTqiwzHqpY00C95DPAq7nAwX35Ie/s+LO9830hrMd3oX0ZMKLvy7vsonee73x0lmcdOVXFzd6Q==" + } + }, + "npm:@esbuild/netbsd-x64@0.18.20": { + "type": "npm", + "name": "npm:@esbuild/netbsd-x64@0.18.20", + "data": { + "version": "0.18.20", + "packageName": "@esbuild/netbsd-x64", + "hash": "sha512-iO1c++VP6xUBUmltHZoMtCUdPlnPGdBom6IrO4gyKPFFVBKioIImVooR5I83nTew5UOYrk3gIJhbZh8X44y06A==" + } + }, + "npm:@esbuild/netbsd-x64@0.25.12": { + "type": "npm", + "name": "npm:@esbuild/netbsd-x64@0.25.12", + "data": { + "version": "0.25.12", + "packageName": "@esbuild/netbsd-x64", + "hash": "sha512-Ld5pTlzPy3YwGec4OuHh1aCVCRvOXdH8DgRjfDy/oumVovmuSzWfnSJg+VtakB9Cm0gxNO9BzWkj6mtO1FMXkQ==" + } + }, + "npm:@esbuild/netbsd-x64@0.27.3": { + "type": "npm", + "name": "npm:@esbuild/netbsd-x64@0.27.3", + "data": { + "version": "0.27.3", + "packageName": "@esbuild/netbsd-x64", + "hash": "sha512-P14lFKJl/DdaE00LItAukUdZO5iqNH7+PjoBm+fLQjtxfcfFE20Xf5CrLsmZdq5LFFZzb5JMZ9grUwvtVYzjiA==" + } + }, + "npm:@esbuild/netbsd-x64@0.27.4": { + "type": "npm", + "name": "npm:@esbuild/netbsd-x64@0.27.4", + "data": { + "version": "0.27.4", + "packageName": "@esbuild/netbsd-x64", + "hash": "sha512-RugOvOdXfdyi5Tyv40kgQnI0byv66BFgAqjdgtAKqHoZTbTF2QqfQrFwa7cHEORJf6X2ht+l9ABLMP0dnKYsgg==" + } + }, + "npm:@esbuild/openbsd-arm64@0.25.12": { + "type": "npm", + "name": "npm:@esbuild/openbsd-arm64@0.25.12", + "data": { + "version": "0.25.12", + "packageName": "@esbuild/openbsd-arm64", + "hash": "sha512-fF96T6KsBo/pkQI950FARU9apGNTSlZGsv1jZBAlcLL1MLjLNIWPBkj5NlSz8aAzYKg+eNqknrUJ24QBybeR5A==" + } + }, + "npm:@esbuild/openbsd-arm64@0.27.3": { + "type": "npm", + "name": "npm:@esbuild/openbsd-arm64@0.27.3", + "data": { + "version": "0.27.3", + "packageName": "@esbuild/openbsd-arm64", + "hash": "sha512-AIcMP77AvirGbRl/UZFTq5hjXK+2wC7qFRGoHSDrZ5v5b8DK/GYpXW3CPRL53NkvDqb9D+alBiC/dV0Fb7eJcw==" + } + }, + "npm:@esbuild/openbsd-arm64@0.27.4": { + "type": "npm", + "name": "npm:@esbuild/openbsd-arm64@0.27.4", + "data": { + "version": "0.27.4", + "packageName": "@esbuild/openbsd-arm64", + "hash": "sha512-2MyL3IAaTX+1/qP0O1SwskwcwCoOI4kV2IBX1xYnDDqthmq5ArrW94qSIKCAuRraMgPOmG0RDTA74mzYNQA9ow==" + } + }, + "npm:@esbuild/openbsd-x64@0.18.20": { + "type": "npm", + "name": "npm:@esbuild/openbsd-x64@0.18.20", + "data": { + "version": "0.18.20", + "packageName": "@esbuild/openbsd-x64", + "hash": "sha512-e5e4YSsuQfX4cxcygw/UCPIEP6wbIL+se3sxPdCiMbFLBWu0eiZOJ7WoD+ptCLrmjZBK1Wk7I6D/I3NglUGOxg==" + } + }, + "npm:@esbuild/openbsd-x64@0.25.12": { + "type": "npm", + "name": "npm:@esbuild/openbsd-x64@0.25.12", + "data": { + "version": "0.25.12", + "packageName": "@esbuild/openbsd-x64", + "hash": "sha512-MZyXUkZHjQxUvzK7rN8DJ3SRmrVrke8ZyRusHlP+kuwqTcfWLyqMOE3sScPPyeIXN/mDJIfGXvcMqCgYKekoQw==" + } + }, + "npm:@esbuild/openbsd-x64@0.27.3": { + "type": "npm", + "name": "npm:@esbuild/openbsd-x64@0.27.3", + "data": { + "version": "0.27.3", + "packageName": "@esbuild/openbsd-x64", + "hash": "sha512-DnW2sRrBzA+YnE70LKqnM3P+z8vehfJWHXECbwBmH/CU51z6FiqTQTHFenPlHmo3a8UgpLyH3PT+87OViOh1AQ==" + } + }, + "npm:@esbuild/openbsd-x64@0.27.4": { + "type": "npm", + "name": "npm:@esbuild/openbsd-x64@0.27.4", + "data": { + "version": "0.27.4", + "packageName": "@esbuild/openbsd-x64", + "hash": "sha512-u8fg/jQ5aQDfsnIV6+KwLOf1CmJnfu1ShpwqdwC0uA7ZPwFws55Ngc12vBdeUdnuWoQYx/SOQLGDcdlfXhYmXQ==" + } + }, + "npm:@esbuild/openharmony-arm64@0.25.12": { + "type": "npm", + "name": "npm:@esbuild/openharmony-arm64@0.25.12", + "data": { + "version": "0.25.12", + "packageName": "@esbuild/openharmony-arm64", + "hash": "sha512-rm0YWsqUSRrjncSXGA7Zv78Nbnw4XL6/dzr20cyrQf7ZmRcsovpcRBdhD43Nuk3y7XIoW2OxMVvwuRvk9XdASg==" + } + }, + "npm:@esbuild/openharmony-arm64@0.27.3": { + "type": "npm", + "name": "npm:@esbuild/openharmony-arm64@0.27.3", + "data": { + "version": "0.27.3", + "packageName": "@esbuild/openharmony-arm64", + "hash": "sha512-NinAEgr/etERPTsZJ7aEZQvvg/A6IsZG/LgZy+81wON2huV7SrK3e63dU0XhyZP4RKGyTm7aOgmQk0bGp0fy2g==" + } + }, + "npm:@esbuild/openharmony-arm64@0.27.4": { + "type": "npm", + "name": "npm:@esbuild/openharmony-arm64@0.27.4", + "data": { + "version": "0.27.4", + "packageName": "@esbuild/openharmony-arm64", + "hash": "sha512-JkTZrl6VbyO8lDQO3yv26nNr2RM2yZzNrNHEsj9bm6dOwwu9OYN28CjzZkH57bh4w0I2F7IodpQvUAEd1mbWXg==" + } + }, + "npm:@esbuild/sunos-x64@0.18.20": { + "type": "npm", + "name": "npm:@esbuild/sunos-x64@0.18.20", + "data": { + "version": "0.18.20", + "packageName": "@esbuild/sunos-x64", + "hash": "sha512-kDbFRFp0YpTQVVrqUd5FTYmWo45zGaXe0X8E1G/LKFC0v8x0vWrhOWSLITcCn63lmZIxfOMXtCfti/RxN/0wnQ==" + } + }, + "npm:@esbuild/sunos-x64@0.25.12": { + "type": "npm", + "name": "npm:@esbuild/sunos-x64@0.25.12", + "data": { + "version": "0.25.12", + "packageName": "@esbuild/sunos-x64", + "hash": "sha512-3wGSCDyuTHQUzt0nV7bocDy72r2lI33QL3gkDNGkod22EsYl04sMf0qLb8luNKTOmgF/eDEDP5BFNwoBKH441w==" + } + }, + "npm:@esbuild/sunos-x64@0.27.3": { + "type": "npm", + "name": "npm:@esbuild/sunos-x64@0.27.3", + "data": { + "version": "0.27.3", + "packageName": "@esbuild/sunos-x64", + "hash": "sha512-PanZ+nEz+eWoBJ8/f8HKxTTD172SKwdXebZ0ndd953gt1HRBbhMsaNqjTyYLGLPdoWHy4zLU7bDVJztF5f3BHA==" + } + }, + "npm:@esbuild/sunos-x64@0.27.4": { + "type": "npm", + "name": "npm:@esbuild/sunos-x64@0.27.4", + "data": { + "version": "0.27.4", + "packageName": "@esbuild/sunos-x64", + "hash": "sha512-/gOzgaewZJfeJTlsWhvUEmUG4tWEY2Spp5M20INYRg2ZKl9QPO3QEEgPeRtLjEWSW8FilRNacPOg8R1uaYkA6g==" + } + }, + "npm:@esbuild/win32-arm64@0.18.20": { + "type": "npm", + "name": "npm:@esbuild/win32-arm64@0.18.20", + "data": { + "version": "0.18.20", + "packageName": "@esbuild/win32-arm64", + "hash": "sha512-ddYFR6ItYgoaq4v4JmQQaAI5s7npztfV4Ag6NrhiaW0RrnOXqBkgwZLofVTlq1daVTQNhtI5oieTvkRPfZrePg==" + } + }, + "npm:@esbuild/win32-arm64@0.25.12": { + "type": "npm", + "name": "npm:@esbuild/win32-arm64@0.25.12", + "data": { + "version": "0.25.12", + "packageName": "@esbuild/win32-arm64", + "hash": "sha512-rMmLrur64A7+DKlnSuwqUdRKyd3UE7oPJZmnljqEptesKM8wx9J8gx5u0+9Pq0fQQW8vqeKebwNXdfOyP+8Bsg==" + } + }, + "npm:@esbuild/win32-arm64@0.27.3": { + "type": "npm", + "name": "npm:@esbuild/win32-arm64@0.27.3", + "data": { + "version": "0.27.3", + "packageName": "@esbuild/win32-arm64", + "hash": "sha512-B2t59lWWYrbRDw/tjiWOuzSsFh1Y/E95ofKz7rIVYSQkUYBjfSgf6oeYPNWHToFRr2zx52JKApIcAS/D5TUBnA==" + } + }, + "npm:@esbuild/win32-arm64@0.27.4": { + "type": "npm", + "name": "npm:@esbuild/win32-arm64@0.27.4", + "data": { + "version": "0.27.4", + "packageName": "@esbuild/win32-arm64", + "hash": "sha512-Z9SExBg2y32smoDQdf1HRwHRt6vAHLXcxD2uGgO/v2jK7Y718Ix4ndsbNMU/+1Qiem9OiOdaqitioZwxivhXYg==" + } + }, + "npm:@esbuild/win32-ia32@0.18.20": { + "type": "npm", + "name": "npm:@esbuild/win32-ia32@0.18.20", + "data": { + "version": "0.18.20", + "packageName": "@esbuild/win32-ia32", + "hash": "sha512-Wv7QBi3ID/rROT08SABTS7eV4hX26sVduqDOTe1MvGMjNd3EjOz4b7zeexIR62GTIEKrfJXKL9LFxTYgkyeu7g==" + } + }, + "npm:@esbuild/win32-ia32@0.25.12": { + "type": "npm", + "name": "npm:@esbuild/win32-ia32@0.25.12", + "data": { + "version": "0.25.12", + "packageName": "@esbuild/win32-ia32", + "hash": "sha512-HkqnmmBoCbCwxUKKNPBixiWDGCpQGVsrQfJoVGYLPT41XWF8lHuE5N6WhVia2n4o5QK5M4tYr21827fNhi4byQ==" + } + }, + "npm:@esbuild/win32-ia32@0.27.3": { + "type": "npm", + "name": "npm:@esbuild/win32-ia32@0.27.3", + "data": { + "version": "0.27.3", + "packageName": "@esbuild/win32-ia32", + "hash": "sha512-QLKSFeXNS8+tHW7tZpMtjlNb7HKau0QDpwm49u0vUp9y1WOF+PEzkU84y9GqYaAVW8aH8f3GcBck26jh54cX4Q==" + } + }, + "npm:@esbuild/win32-ia32@0.27.4": { + "type": "npm", + "name": "npm:@esbuild/win32-ia32@0.27.4", + "data": { + "version": "0.27.4", + "packageName": "@esbuild/win32-ia32", + "hash": "sha512-DAyGLS0Jz5G5iixEbMHi5KdiApqHBWMGzTtMiJ72ZOLhbu/bzxgAe8Ue8CTS3n3HbIUHQz/L51yMdGMeoxXNJw==" + } + }, + "npm:@esbuild/win32-x64@0.18.20": { + "type": "npm", + "name": "npm:@esbuild/win32-x64@0.18.20", + "data": { + "version": "0.18.20", + "packageName": "@esbuild/win32-x64", + "hash": "sha512-kTdfRcSiDfQca/y9QIkng02avJ+NCaQvrMejlsB3RRv5sE9rRoeBPISaZpKxHELzRxZyLvNts1P27W3wV+8geQ==" + } + }, + "npm:@esbuild/win32-x64@0.25.12": { + "type": "npm", + "name": "npm:@esbuild/win32-x64@0.25.12", + "data": { + "version": "0.25.12", + "packageName": "@esbuild/win32-x64", + "hash": "sha512-alJC0uCZpTFrSL0CCDjcgleBXPnCrEAhTBILpeAp7M/OFgoqtAetfBzX0xM00MUsVVPpVjlPuMbREqnZCXaTnA==" + } + }, + "npm:@esbuild/win32-x64@0.27.3": { + "type": "npm", + "name": "npm:@esbuild/win32-x64@0.27.3", + "data": { + "version": "0.27.3", + "packageName": "@esbuild/win32-x64", + "hash": "sha512-4uJGhsxuptu3OcpVAzli+/gWusVGwZZHTlS63hh++ehExkVT8SgiEf7/uC/PclrPPkLhZqGgCTjd0VWLo6xMqA==" + } + }, + "npm:@esbuild/win32-x64@0.27.4": { + "type": "npm", + "name": "npm:@esbuild/win32-x64@0.27.4", + "data": { + "version": "0.27.4", + "packageName": "@esbuild/win32-x64", + "hash": "sha512-+knoa0BDoeXgkNvvV1vvbZX4+hizelrkwmGJBdT17t8FNPwG2lKemmuMZlmaNQ3ws3DKKCxpb4zRZEIp3UxFCg==" + } + }, + "npm:@eslint-community/eslint-utils": { + "type": "npm", + "name": "npm:@eslint-community/eslint-utils", + "data": { + "version": "4.9.1", + "packageName": "@eslint-community/eslint-utils", + "hash": "sha512-phrYmNiYppR7znFEdqgfWHXR6NCkZEK7hwWDHZUjit/2/U0r6XvkDl0SYnoM51Hq7FhCGdLDT6zxCCOY1hexsQ==" + } + }, + "npm:@eslint-community/regexpp": { + "type": "npm", + "name": "npm:@eslint-community/regexpp", + "data": { + "version": "4.12.2", + "packageName": "@eslint-community/regexpp", + "hash": "sha512-EriSTlt5OC9/7SXkRSCAhfSxxoSUgBm33OH+IkwbdpgoqsSsUg7y3uh+IICI/Qg4BBWr3U2i39RpmycbxMq4ew==" + } + }, + "npm:@eslint/config-array": { + "type": "npm", + "name": "npm:@eslint/config-array", + "data": { + "version": "0.21.2", + "packageName": "@eslint/config-array", + "hash": "sha512-nJl2KGTlrf9GjLimgIru+V/mzgSK0ABCDQRvxw5BjURL7WfH5uoWmizbH7QB6MmnMBd8cIC9uceWnezL1VZWWw==" + } + }, + "npm:@eslint/config-helpers": { + "type": "npm", + "name": "npm:@eslint/config-helpers", + "data": { + "version": "0.4.2", + "packageName": "@eslint/config-helpers", + "hash": "sha512-gBrxN88gOIf3R7ja5K9slwNayVcZgK6SOUORm2uBzTeIEfeVaIhOpCtTox3P6R7o2jLFwLFTLnC7kU/RGcYEgw==" + } + }, + "npm:@eslint/core": { + "type": "npm", + "name": "npm:@eslint/core", + "data": { + "version": "0.17.0", + "packageName": "@eslint/core", + "hash": "sha512-yL/sLrpmtDaFEiUj1osRP4TI2MDz1AddJL+jZ7KSqvBuliN4xqYY54IfdN8qD8Toa6g1iloph1fxQNkjOxrrpQ==" + } + }, + "npm:@eslint/eslintrc": { + "type": "npm", + "name": "npm:@eslint/eslintrc", + "data": { + "version": "3.3.5", + "packageName": "@eslint/eslintrc", + "hash": "sha512-4IlJx0X0qftVsN5E+/vGujTRIFtwuLbNsVUe7TO6zYPDR1O6nFwvwhIKEKSrl6dZchmYBITazxKoUYOjdtjlRg==" + } + }, + "npm:@eslint/js": { + "type": "npm", + "name": "npm:@eslint/js", + "data": { + "version": "9.39.4", + "packageName": "@eslint/js", + "hash": "sha512-nE7DEIchvtiFTwBw4Lfbu59PG+kCofhjsKaCWzxTpt4lfRjRMqG6uMBzKXuEcyXhOHoUp9riAm7/aWYGhXZ9cw==" + } + }, + "npm:@eslint/object-schema": { + "type": "npm", + "name": "npm:@eslint/object-schema", + "data": { + "version": "2.1.7", + "packageName": "@eslint/object-schema", + "hash": "sha512-VtAOaymWVfZcmZbp6E2mympDIHvyjXs/12LqWYjVw6qjrfF+VK+fyG33kChz3nnK+SU5/NeHOqrTEHS8sXO3OA==" + } + }, + "npm:@eslint/plugin-kit": { + "type": "npm", + "name": "npm:@eslint/plugin-kit", + "data": { + "version": "0.4.1", + "packageName": "@eslint/plugin-kit", + "hash": "sha512-43/qtrDUokr7LJqoF2c3+RInu/t4zfrpYdoSDfYyhg52rwLV6TnOvdG4fXm7IkSB3wErkcmJS9iEhjVtOSEjjA==" + } + }, + "npm:@fastify/ajv-compiler": { + "type": "npm", + "name": "npm:@fastify/ajv-compiler", + "data": { + "version": "4.0.5", + "packageName": "@fastify/ajv-compiler", + "hash": "sha512-KoWKW+MhvfTRWL4qrhUwAAZoaChluo0m0vbiJlGMt2GXvL4LVPQEjt8kSpHI3IBq5Rez8fg+XeH3cneztq+C7A==" + } + }, + "npm:@fastify/error": { + "type": "npm", + "name": "npm:@fastify/error", + "data": { + "version": "4.2.0", + "packageName": "@fastify/error", + "hash": "sha512-RSo3sVDXfHskiBZKBPRgnQTtIqpi/7zhJOEmAxCiBcM7d0uwdGdxLlsCaLzGs8v8NnxIRlfG0N51p5yFaOentQ==" + } + }, + "npm:@fastify/fast-json-stringify-compiler": { + "type": "npm", + "name": "npm:@fastify/fast-json-stringify-compiler", + "data": { + "version": "5.0.3", + "packageName": "@fastify/fast-json-stringify-compiler", + "hash": "sha512-uik7yYHkLr6fxd8hJSZ8c+xF4WafPK+XzneQDPU+D10r5X19GW8lJcom2YijX2+qtFF1ENJlHXKFM9ouXNJYgQ==" + } + }, + "npm:@fastify/forwarded": { + "type": "npm", + "name": "npm:@fastify/forwarded", + "data": { + "version": "3.0.1", + "packageName": "@fastify/forwarded", + "hash": "sha512-JqDochHFqXs3C3Ml3gOY58zM7OqO9ENqPo0UqAjAjH8L01fRZqwX9iLeX34//kiJubF7r2ZQHtBRU36vONbLlw==" + } + }, + "npm:@fastify/merge-json-schemas": { + "type": "npm", + "name": "npm:@fastify/merge-json-schemas", + "data": { + "version": "0.2.1", + "packageName": "@fastify/merge-json-schemas", + "hash": "sha512-OA3KGBCy6KtIvLf8DINC5880o5iBlDX4SxzLQS8HorJAbqluzLRn80UXU0bxZn7UOFhFgpRJDasfwn9nG4FG4A==" + } + }, + "npm:@fastify/proxy-addr": { + "type": "npm", + "name": "npm:@fastify/proxy-addr", + "data": { + "version": "5.1.0", + "packageName": "@fastify/proxy-addr", + "hash": "sha512-INS+6gh91cLUjB+PVHfu1UqcB76Sqtpyp7bnL+FYojhjygvOPA9ctiD/JDKsyD9Xgu4hUhCSJBPig/w7duNajw==" + } + }, + "npm:@floating-ui/core": { + "type": "npm", + "name": "npm:@floating-ui/core", + "data": { + "version": "1.7.5", + "packageName": "@floating-ui/core", + "hash": "sha512-1Ih4WTWyw0+lKyFMcBHGbb5U5FtuHJuujoyyr5zTaWS5EYMeT6Jb2AuDeftsCsEuchO+mM2ij5+q9crhydzLhQ==" + } + }, + "npm:@floating-ui/dom": { + "type": "npm", + "name": "npm:@floating-ui/dom", + "data": { + "version": "1.7.6", + "packageName": "@floating-ui/dom", + "hash": "sha512-9gZSAI5XM36880PPMm//9dfiEngYoC6Am2izES1FF406YFsjvyBMmeJ2g4SAju3xWwtuynNRFL2s9hgxpLI5SQ==" + } + }, + "npm:@floating-ui/react-dom": { + "type": "npm", + "name": "npm:@floating-ui/react-dom", + "data": { + "version": "2.1.6", + "packageName": "@floating-ui/react-dom", + "hash": "sha512-4JX6rEatQEvlmgU80wZyq9RT96HZJa88q8hp0pBd+LrczeDI4o6uA2M+uvxngVHo4Ihr8uibXxH6+70zhAFrVw==" + } + }, + "npm:@floating-ui/react": { + "type": "npm", + "name": "npm:@floating-ui/react", + "data": { + "version": "0.27.16", + "packageName": "@floating-ui/react", + "hash": "sha512-9O8N4SeG2z++TSM8QA/KTeKFBVCNEz/AGS7gWPJf6KFRzmRWixFRnCnkPHRDwSVZW6QPDO6uT0P2SpWNKCc9/g==" + } + }, + "npm:@floating-ui/utils": { + "type": "npm", + "name": "npm:@floating-ui/utils", + "data": { + "version": "0.2.11", + "packageName": "@floating-ui/utils", + "hash": "sha512-RiB/yIh78pcIxl6lLMG0CgBXAZ2Y0eVHqMPYugu+9U0AeT6YBeiJpf7lbdJNIugFP5SIjwNRgo4DhR1Qxi26Gg==" + } + }, + "npm:@ghostery/adblocker-content": { + "type": "npm", + "name": "npm:@ghostery/adblocker-content", + "data": { + "version": "2.14.1", + "packageName": "@ghostery/adblocker-content", + "hash": "sha512-hDE6RAL9xgQonJQiK1knOHy527PEwlAuvKaha4snE0XO6Vmtk0HThce1M2JFVRxGayWR3nTxoWbvEfGWXU7O/A==" + } + }, + "npm:@ghostery/adblocker-extended-selectors": { + "type": "npm", + "name": "npm:@ghostery/adblocker-extended-selectors", + "data": { + "version": "2.14.1", + "packageName": "@ghostery/adblocker-extended-selectors", + "hash": "sha512-3RARO2ukDrfwDqVEMD+HKZIwsM9QjjII+U1zqxhLXZ0dZRHjbtUHlZCsokqfjZ1JAa3ZVKcZrF0nZv5SA2LgyA==" + } + }, + "npm:@ghostery/adblocker-puppeteer": { + "type": "npm", + "name": "npm:@ghostery/adblocker-puppeteer", + "data": { + "version": "2.14.1", + "packageName": "@ghostery/adblocker-puppeteer", + "hash": "sha512-P7SuAWDkDMriOhtLrSMZIERV+kxc9ieFUhfkSEgXHtqieLizsNUeys9ltvtU7m75XX+RTvg6JY8DmwX0HIF/LQ==" + } + }, + "npm:@ghostery/adblocker": { + "type": "npm", + "name": "npm:@ghostery/adblocker", + "data": { + "version": "2.14.1", + "packageName": "@ghostery/adblocker", + "hash": "sha512-/cQTMJRd4/7zpgFHWqe+9wqiRPGTy+BhqfkxplvejPgq8d6spBjC6bSJV61rVHJZw5F4KOO5ReKOvuguaKG28A==" + } + }, + "npm:@ghostery/url-parser": { + "type": "npm", + "name": "npm:@ghostery/url-parser", + "data": { + "version": "1.3.1", + "packageName": "@ghostery/url-parser", + "hash": "sha512-QKqGi+7aDQ4RcyHyCwgEk6B9vWnsBP4Q7htaN0zPJV3ATqTKEQDtSTb9c/AN586oJUDs24YXKcwFYwNweY/YjQ==" + } + }, + "npm:@hono/node-server": { + "type": "npm", + "name": "npm:@hono/node-server", + "data": { + "version": "1.19.9", + "packageName": "@hono/node-server", + "hash": "sha512-vHL6w3ecZsky+8P5MD+eFfaGTyCeOHUIFYMGpQGbrBTSmNNoxv0if69rEZ5giu36weC5saFuznL411gRX7bJDw==" + } + }, + "npm:@humanfs/core": { + "type": "npm", + "name": "npm:@humanfs/core", + "data": { + "version": "0.19.1", + "packageName": "@humanfs/core", + "hash": "sha512-5DyQ4+1JEUzejeK1JGICcideyfUbGixgS9jNgex5nqkW+cY7WZhxBigmieN5Qnw9ZosSNVC9KQKyb+GUaGyKUA==" + } + }, + "npm:@humanfs/node": { + "type": "npm", + "name": "npm:@humanfs/node", + "data": { + "version": "0.16.7", + "packageName": "@humanfs/node", + "hash": "sha512-/zUx+yOsIrG4Y43Eh2peDeKCxlRt/gET6aHfaKpuq267qXdYDFViVHfMaLyygZOnl0kGWxFIgsBy8QFuTLUXEQ==" + } + }, + "npm:@humanwhocodes/module-importer": { + "type": "npm", + "name": "npm:@humanwhocodes/module-importer", + "data": { + "version": "1.0.1", + "packageName": "@humanwhocodes/module-importer", + "hash": "sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA==" + } + }, + "npm:@humanwhocodes/retry": { + "type": "npm", + "name": "npm:@humanwhocodes/retry", + "data": { + "version": "0.4.3", + "packageName": "@humanwhocodes/retry", + "hash": "sha512-bV0Tgo9K4hfPCek+aMAn81RppFKv2ySDQeMoSZuvTASywNTnVJCArCZE2FWqpvIatKu7VMRLWlR1EazvVhDyhQ==" + } + }, + "npm:@img/colour": { + "type": "npm", + "name": "npm:@img/colour", + "data": { + "version": "1.0.0", + "packageName": "@img/colour", + "hash": "sha512-A5P/LfWGFSl6nsckYtjw9da+19jB8hkJ6ACTGcDfEJ0aE+l2n2El7dsVM7UVHZQ9s2lmYMWlrS21YLy2IR1LUw==" + } + }, + "npm:@img/sharp-darwin-arm64@0.33.5": { + "type": "npm", + "name": "npm:@img/sharp-darwin-arm64@0.33.5", + "data": { + "version": "0.33.5", + "packageName": "@img/sharp-darwin-arm64", + "hash": "sha512-UT4p+iz/2H4twwAoLCqfA9UH5pI6DggwKEGuaPy7nCVQ8ZsiY5PIcrRvD1DzuY3qYL07NtIQcWnBSY/heikIFQ==" + } + }, + "npm:@img/sharp-darwin-arm64@0.34.5": { + "type": "npm", + "name": "npm:@img/sharp-darwin-arm64@0.34.5", + "data": { + "version": "0.34.5", + "packageName": "@img/sharp-darwin-arm64", + "hash": "sha512-imtQ3WMJXbMY4fxb/Ndp6HBTNVtWCUI0WdobyheGf5+ad6xX8VIDO8u2xE4qc/fr08CKG/7dDseFtn6M6g/r3w==" + } + }, + "npm:@img/sharp-darwin-x64@0.33.5": { + "type": "npm", + "name": "npm:@img/sharp-darwin-x64@0.33.5", + "data": { + "version": "0.33.5", + "packageName": "@img/sharp-darwin-x64", + "hash": "sha512-fyHac4jIc1ANYGRDxtiqelIbdWkIuQaI84Mv45KvGRRxSAa7o7d1ZKAOBaYbnepLC1WqxfpimdeWfvqqSGwR2Q==" + } + }, + "npm:@img/sharp-darwin-x64@0.34.5": { + "type": "npm", + "name": "npm:@img/sharp-darwin-x64@0.34.5", + "data": { + "version": "0.34.5", + "packageName": "@img/sharp-darwin-x64", + "hash": "sha512-YNEFAF/4KQ/PeW0N+r+aVVsoIY0/qxxikF2SWdp+NRkmMB7y9LBZAVqQ4yhGCm/H3H270OSykqmQMKLBhBJDEw==" + } + }, + "npm:@img/sharp-libvips-darwin-arm64@1.0.4": { + "type": "npm", + "name": "npm:@img/sharp-libvips-darwin-arm64@1.0.4", + "data": { + "version": "1.0.4", + "packageName": "@img/sharp-libvips-darwin-arm64", + "hash": "sha512-XblONe153h0O2zuFfTAbQYAX2JhYmDHeWikp1LM9Hul9gVPjFY427k6dFEcOL72O01QxQsWi761svJ/ev9xEDg==" + } + }, + "npm:@img/sharp-libvips-darwin-arm64@1.2.4": { + "type": "npm", + "name": "npm:@img/sharp-libvips-darwin-arm64@1.2.4", + "data": { + "version": "1.2.4", + "packageName": "@img/sharp-libvips-darwin-arm64", + "hash": "sha512-zqjjo7RatFfFoP0MkQ51jfuFZBnVE2pRiaydKJ1G/rHZvnsrHAOcQALIi9sA5co5xenQdTugCvtb1cuf78Vf4g==" + } + }, + "npm:@img/sharp-libvips-darwin-x64@1.0.4": { + "type": "npm", + "name": "npm:@img/sharp-libvips-darwin-x64@1.0.4", + "data": { + "version": "1.0.4", + "packageName": "@img/sharp-libvips-darwin-x64", + "hash": "sha512-xnGR8YuZYfJGmWPvmlunFaWJsb9T/AO2ykoP3Fz/0X5XV2aoYBPkX6xqCQvUTKKiLddarLaxpzNe+b1hjeWHAQ==" + } + }, + "npm:@img/sharp-libvips-darwin-x64@1.2.4": { + "type": "npm", + "name": "npm:@img/sharp-libvips-darwin-x64@1.2.4", + "data": { + "version": "1.2.4", + "packageName": "@img/sharp-libvips-darwin-x64", + "hash": "sha512-1IOd5xfVhlGwX+zXv2N93k0yMONvUlANylbJw1eTah8K/Jtpi15KC+WSiaX/nBmbm2HxRM1gZ0nSdjSsrZbGKg==" + } + }, + "npm:@img/sharp-libvips-linux-arm64@1.0.4": { + "type": "npm", + "name": "npm:@img/sharp-libvips-linux-arm64@1.0.4", + "data": { + "version": "1.0.4", + "packageName": "@img/sharp-libvips-linux-arm64", + "hash": "sha512-9B+taZ8DlyyqzZQnoeIvDVR/2F4EbMepXMc/NdVbkzsJbzkUjhXv/70GQJ7tdLA4YJgNP25zukcxpX2/SueNrA==" + } + }, + "npm:@img/sharp-libvips-linux-arm64@1.2.4": { + "type": "npm", + "name": "npm:@img/sharp-libvips-linux-arm64@1.2.4", + "data": { + "version": "1.2.4", + "packageName": "@img/sharp-libvips-linux-arm64", + "hash": "sha512-excjX8DfsIcJ10x1Kzr4RcWe1edC9PquDRRPx3YVCvQv+U5p7Yin2s32ftzikXojb1PIFc/9Mt28/y+iRklkrw==" + } + }, + "npm:@img/sharp-libvips-linux-arm@1.0.5": { + "type": "npm", + "name": "npm:@img/sharp-libvips-linux-arm@1.0.5", + "data": { + "version": "1.0.5", + "packageName": "@img/sharp-libvips-linux-arm", + "hash": "sha512-gvcC4ACAOPRNATg/ov8/MnbxFDJqf/pDePbBnuBDcjsI8PssmjoKMAz4LtLaVi+OnSb5FK/yIOamqDwGmXW32g==" + } + }, + "npm:@img/sharp-libvips-linux-arm@1.2.4": { + "type": "npm", + "name": "npm:@img/sharp-libvips-linux-arm@1.2.4", + "data": { + "version": "1.2.4", + "packageName": "@img/sharp-libvips-linux-arm", + "hash": "sha512-bFI7xcKFELdiNCVov8e44Ia4u2byA+l3XtsAj+Q8tfCwO6BQ8iDojYdvoPMqsKDkuoOo+X6HZA0s0q11ANMQ8A==" + } + }, + "npm:@img/sharp-libvips-linux-ppc64": { + "type": "npm", + "name": "npm:@img/sharp-libvips-linux-ppc64", + "data": { + "version": "1.2.4", + "packageName": "@img/sharp-libvips-linux-ppc64", + "hash": "sha512-FMuvGijLDYG6lW+b/UvyilUWu5Ayu+3r2d1S8notiGCIyYU/76eig1UfMmkZ7vwgOrzKzlQbFSuQfgm7GYUPpA==" + } + }, + "npm:@img/sharp-libvips-linux-riscv64": { + "type": "npm", + "name": "npm:@img/sharp-libvips-linux-riscv64", + "data": { + "version": "1.2.4", + "packageName": "@img/sharp-libvips-linux-riscv64", + "hash": "sha512-oVDbcR4zUC0ce82teubSm+x6ETixtKZBh/qbREIOcI3cULzDyb18Sr/Wcyx7NRQeQzOiHTNbZFF1UwPS2scyGA==" + } + }, + "npm:@img/sharp-libvips-linux-s390x@1.0.4": { + "type": "npm", + "name": "npm:@img/sharp-libvips-linux-s390x@1.0.4", + "data": { + "version": "1.0.4", + "packageName": "@img/sharp-libvips-linux-s390x", + "hash": "sha512-u7Wz6ntiSSgGSGcjZ55im6uvTrOxSIS8/dgoVMoiGE9I6JAfU50yH5BoDlYA1tcuGS7g/QNtetJnxA6QEsCVTA==" + } + }, + "npm:@img/sharp-libvips-linux-s390x@1.2.4": { + "type": "npm", + "name": "npm:@img/sharp-libvips-linux-s390x@1.2.4", + "data": { + "version": "1.2.4", + "packageName": "@img/sharp-libvips-linux-s390x", + "hash": "sha512-qmp9VrzgPgMoGZyPvrQHqk02uyjA0/QrTO26Tqk6l4ZV0MPWIW6LTkqOIov+J1yEu7MbFQaDpwdwJKhbJvuRxQ==" + } + }, + "npm:@img/sharp-libvips-linux-x64@1.0.4": { + "type": "npm", + "name": "npm:@img/sharp-libvips-linux-x64@1.0.4", + "data": { + "version": "1.0.4", + "packageName": "@img/sharp-libvips-linux-x64", + "hash": "sha512-MmWmQ3iPFZr0Iev+BAgVMb3ZyC4KeFc3jFxnNbEPas60e1cIfevbtuyf9nDGIzOaW9PdnDciJm+wFFaTlj5xYw==" + } + }, + "npm:@img/sharp-libvips-linux-x64": { + "type": "npm", + "name": "npm:@img/sharp-libvips-linux-x64", + "data": { + "version": "1.2.4", + "packageName": "@img/sharp-libvips-linux-x64", + "hash": "sha512-tJxiiLsmHc9Ax1bz3oaOYBURTXGIRDODBqhveVHonrHJ9/+k89qbLl0bcJns+e4t4rvaNBxaEZsFtSfAdquPrw==" + } + }, + "npm:@img/sharp-libvips-linuxmusl-arm64@1.0.4": { + "type": "npm", + "name": "npm:@img/sharp-libvips-linuxmusl-arm64@1.0.4", + "data": { + "version": "1.0.4", + "packageName": "@img/sharp-libvips-linuxmusl-arm64", + "hash": "sha512-9Ti+BbTYDcsbp4wfYib8Ctm1ilkugkA/uscUn6UXK1ldpC1JjiXbLfFZtRlBhjPZ5o1NCLiDbg8fhUPKStHoTA==" + } + }, + "npm:@img/sharp-libvips-linuxmusl-arm64@1.2.4": { + "type": "npm", + "name": "npm:@img/sharp-libvips-linuxmusl-arm64@1.2.4", + "data": { + "version": "1.2.4", + "packageName": "@img/sharp-libvips-linuxmusl-arm64", + "hash": "sha512-FVQHuwx1IIuNow9QAbYUzJ+En8KcVm9Lk5+uGUQJHaZmMECZmOlix9HnH7n1TRkXMS0pGxIJokIVB9SuqZGGXw==" + } + }, + "npm:@img/sharp-libvips-linuxmusl-x64@1.0.4": { + "type": "npm", + "name": "npm:@img/sharp-libvips-linuxmusl-x64@1.0.4", + "data": { + "version": "1.0.4", + "packageName": "@img/sharp-libvips-linuxmusl-x64", + "hash": "sha512-viYN1KX9m+/hGkJtvYYp+CCLgnJXwiQB39damAO7WMdKWlIhmYTfHjwSbQeUK/20vY154mwezd9HflVFM1wVSw==" + } + }, + "npm:@img/sharp-libvips-linuxmusl-x64": { + "type": "npm", + "name": "npm:@img/sharp-libvips-linuxmusl-x64", + "data": { + "version": "1.2.4", + "packageName": "@img/sharp-libvips-linuxmusl-x64", + "hash": "sha512-+LpyBk7L44ZIXwz/VYfglaX/okxezESc6UxDSoyo2Ks6Jxc4Y7sGjpgU9s4PMgqgjj1gZCylTieNamqA1MF7Dg==" + } + }, + "npm:@img/sharp-linux-arm64@0.33.5": { + "type": "npm", + "name": "npm:@img/sharp-linux-arm64@0.33.5", + "data": { + "version": "0.33.5", + "packageName": "@img/sharp-linux-arm64", + "hash": "sha512-JMVv+AMRyGOHtO1RFBiJy/MBsgz0x4AWrT6QoEVVTyh1E39TrCUpTRI7mx9VksGX4awWASxqCYLCV4wBZHAYxA==" + } + }, + "npm:@img/sharp-linux-arm64@0.34.5": { + "type": "npm", + "name": "npm:@img/sharp-linux-arm64@0.34.5", + "data": { + "version": "0.34.5", + "packageName": "@img/sharp-linux-arm64", + "hash": "sha512-bKQzaJRY/bkPOXyKx5EVup7qkaojECG6NLYswgktOZjaXecSAeCWiZwwiFf3/Y+O1HrauiE3FVsGxFg8c24rZg==" + } + }, + "npm:@img/sharp-linux-arm@0.33.5": { + "type": "npm", + "name": "npm:@img/sharp-linux-arm@0.33.5", + "data": { + "version": "0.33.5", + "packageName": "@img/sharp-linux-arm", + "hash": "sha512-JTS1eldqZbJxjvKaAkxhZmBqPRGmxgu+qFKSInv8moZ2AmT5Yib3EQ1c6gp493HvrvV8QgdOXdyaIBrhvFhBMQ==" + } + }, + "npm:@img/sharp-linux-arm@0.34.5": { + "type": "npm", + "name": "npm:@img/sharp-linux-arm@0.34.5", + "data": { + "version": "0.34.5", + "packageName": "@img/sharp-linux-arm", + "hash": "sha512-9dLqsvwtg1uuXBGZKsxem9595+ujv0sJ6Vi8wcTANSFpwV/GONat5eCkzQo/1O6zRIkh0m/8+5BjrRr7jDUSZw==" + } + }, + "npm:@img/sharp-linux-ppc64": { + "type": "npm", + "name": "npm:@img/sharp-linux-ppc64", + "data": { + "version": "0.34.5", + "packageName": "@img/sharp-linux-ppc64", + "hash": "sha512-7zznwNaqW6YtsfrGGDA6BRkISKAAE1Jo0QdpNYXNMHu2+0dTrPflTLNkpc8l7MUP5M16ZJcUvysVWWrMefZquA==" + } + }, + "npm:@img/sharp-linux-riscv64": { + "type": "npm", + "name": "npm:@img/sharp-linux-riscv64", + "data": { + "version": "0.34.5", + "packageName": "@img/sharp-linux-riscv64", + "hash": "sha512-51gJuLPTKa7piYPaVs8GmByo7/U7/7TZOq+cnXJIHZKavIRHAP77e3N2HEl3dgiqdD/w0yUfiJnII77PuDDFdw==" + } + }, + "npm:@img/sharp-linux-s390x@0.33.5": { + "type": "npm", + "name": "npm:@img/sharp-linux-s390x@0.33.5", + "data": { + "version": "0.33.5", + "packageName": "@img/sharp-linux-s390x", + "hash": "sha512-y/5PCd+mP4CA/sPDKl2961b+C9d+vPAveS33s6Z3zfASk2j5upL6fXVPZi7ztePZ5CuH+1kW8JtvxgbuXHRa4Q==" + } + }, + "npm:@img/sharp-linux-s390x@0.34.5": { + "type": "npm", + "name": "npm:@img/sharp-linux-s390x@0.34.5", + "data": { + "version": "0.34.5", + "packageName": "@img/sharp-linux-s390x", + "hash": "sha512-nQtCk0PdKfho3eC5MrbQoigJ2gd1CgddUMkabUj+rBevs8tZ2cULOx46E7oyX+04WGfABgIwmMC0VqieTiR4jg==" + } + }, + "npm:@img/sharp-linux-x64@0.33.5": { + "type": "npm", + "name": "npm:@img/sharp-linux-x64@0.33.5", + "data": { + "version": "0.33.5", + "packageName": "@img/sharp-linux-x64", + "hash": "sha512-opC+Ok5pRNAzuvq1AG0ar+1owsu842/Ab+4qvU879ippJBHvyY5n2mxF1izXqkPYlGuP/M556uh53jRLJmzTWA==" + } + }, + "npm:@img/sharp-linux-x64": { + "type": "npm", + "name": "npm:@img/sharp-linux-x64", + "data": { + "version": "0.34.5", + "packageName": "@img/sharp-linux-x64", + "hash": "sha512-MEzd8HPKxVxVenwAa+JRPwEC7QFjoPWuS5NZnBt6B3pu7EG2Ge0id1oLHZpPJdn3OQK+BQDiw9zStiHBTJQQQQ==" + } + }, + "npm:@img/sharp-linuxmusl-arm64@0.33.5": { + "type": "npm", + "name": "npm:@img/sharp-linuxmusl-arm64@0.33.5", + "data": { + "version": "0.33.5", + "packageName": "@img/sharp-linuxmusl-arm64", + "hash": "sha512-XrHMZwGQGvJg2V/oRSUfSAfjfPxO+4DkiRh6p2AFjLQztWUuY/o8Mq0eMQVIY7HJ1CDQUJlxGGZRw1a5bqmd1g==" + } + }, + "npm:@img/sharp-linuxmusl-arm64@0.34.5": { + "type": "npm", + "name": "npm:@img/sharp-linuxmusl-arm64@0.34.5", + "data": { + "version": "0.34.5", + "packageName": "@img/sharp-linuxmusl-arm64", + "hash": "sha512-fprJR6GtRsMt6Kyfq44IsChVZeGN97gTD331weR1ex1c1rypDEABN6Tm2xa1wE6lYb5DdEnk03NZPqA7Id21yg==" + } + }, + "npm:@img/sharp-linuxmusl-x64@0.33.5": { + "type": "npm", + "name": "npm:@img/sharp-linuxmusl-x64@0.33.5", + "data": { + "version": "0.33.5", + "packageName": "@img/sharp-linuxmusl-x64", + "hash": "sha512-WT+d/cgqKkkKySYmqoZ8y3pxx7lx9vVejxW/W4DOFMYVSkErR+w7mf2u8m/y4+xHe7yY9DAXQMWQhpnMuFfScw==" + } + }, + "npm:@img/sharp-linuxmusl-x64": { + "type": "npm", + "name": "npm:@img/sharp-linuxmusl-x64", + "data": { + "version": "0.34.5", + "packageName": "@img/sharp-linuxmusl-x64", + "hash": "sha512-Jg8wNT1MUzIvhBFxViqrEhWDGzqymo3sV7z7ZsaWbZNDLXRJZoRGrjulp60YYtV4wfY8VIKcWidjojlLcWrd8Q==" + } + }, + "npm:@img/sharp-wasm32@0.33.5": { + "type": "npm", + "name": "npm:@img/sharp-wasm32@0.33.5", + "data": { + "version": "0.33.5", + "packageName": "@img/sharp-wasm32", + "hash": "sha512-ykUW4LVGaMcU9lu9thv85CbRMAwfeadCJHRsg2GmeRa/cJxsVY9Rbd57JcMxBkKHag5U/x7TSBpScF4U8ElVzg==" + } + }, + "npm:@img/sharp-wasm32@0.34.5": { + "type": "npm", + "name": "npm:@img/sharp-wasm32@0.34.5", + "data": { + "version": "0.34.5", + "packageName": "@img/sharp-wasm32", + "hash": "sha512-OdWTEiVkY2PHwqkbBI8frFxQQFekHaSSkUIJkwzclWZe64O1X4UlUjqqqLaPbUpMOQk6FBu/HtlGXNblIs0huw==" + } + }, + "npm:@img/sharp-win32-arm64": { + "type": "npm", + "name": "npm:@img/sharp-win32-arm64", + "data": { + "version": "0.34.5", + "packageName": "@img/sharp-win32-arm64", + "hash": "sha512-WQ3AgWCWYSb2yt+IG8mnC6Jdk9Whs7O0gxphblsLvdhSpSTtmu69ZG1Gkb6NuvxsNACwiPV6cNSZNzt0KPsw7g==" + } + }, + "npm:@img/sharp-win32-ia32@0.33.5": { + "type": "npm", + "name": "npm:@img/sharp-win32-ia32@0.33.5", + "data": { + "version": "0.33.5", + "packageName": "@img/sharp-win32-ia32", + "hash": "sha512-T36PblLaTwuVJ/zw/LaH0PdZkRz5rd3SmMHX8GSmR7vtNSP5Z6bQkExdSK7xGWyxLw4sUknBuugTelgw2faBbQ==" + } + }, + "npm:@img/sharp-win32-ia32@0.34.5": { + "type": "npm", + "name": "npm:@img/sharp-win32-ia32@0.34.5", + "data": { + "version": "0.34.5", + "packageName": "@img/sharp-win32-ia32", + "hash": "sha512-FV9m/7NmeCmSHDD5j4+4pNI8Cp3aW+JvLoXcTUo0IqyjSfAZJ8dIUmijx1qaJsIiU+Hosw6xM5KijAWRJCSgNg==" + } + }, + "npm:@img/sharp-win32-x64@0.33.5": { + "type": "npm", + "name": "npm:@img/sharp-win32-x64@0.33.5", + "data": { + "version": "0.33.5", + "packageName": "@img/sharp-win32-x64", + "hash": "sha512-MpY/o8/8kj+EcnxwvrP4aTJSWw/aZ7JIGR4aBeZkZw5B7/Jn+tY9/VNwtcoGmdT7GfggGIU4kygOMSbYnOrAbg==" + } + }, + "npm:@img/sharp-win32-x64@0.34.5": { + "type": "npm", + "name": "npm:@img/sharp-win32-x64@0.34.5", + "data": { + "version": "0.34.5", + "packageName": "@img/sharp-win32-x64", + "hash": "sha512-+29YMsqY2/9eFEiW93eqWnuLcWcufowXewwSNIT6UwZdUUCrM3oFjMWH/Z6/TMmb4hlFenmfAVbpWeup2jryCw==" + } + }, + "npm:@inquirer/ansi": { + "type": "npm", + "name": "npm:@inquirer/ansi", + "data": { + "version": "2.0.4", + "packageName": "@inquirer/ansi", + "hash": "sha512-DpcZrQObd7S0R/U3bFdkcT5ebRwbTTC4D3tCc1vsJizmgPLxNJBo+AAFmrZwe8zk30P2QzgzGWZ3Q9uJwWuhIg==" + } + }, + "npm:@inquirer/checkbox": { + "type": "npm", + "name": "npm:@inquirer/checkbox", + "data": { + "version": "5.1.2", + "packageName": "@inquirer/checkbox", + "hash": "sha512-PubpMPO2nJgMufkoB3P2wwxNXEMUXnBIKi/ACzDUYfaoPuM7gSTmuxJeMscoLVEsR4qqrCMf5p0SiYGWnVJ8kw==" + } + }, + "npm:@inquirer/confirm": { + "type": "npm", + "name": "npm:@inquirer/confirm", + "data": { + "version": "6.0.10", + "packageName": "@inquirer/confirm", + "hash": "sha512-tiNyA73pgpQ0FQ7axqtoLUe4GDYjNCDcVsbgcA5anvwg2z6i+suEngLKKJrWKJolT//GFPZHwN30binDIHgSgQ==" + } + }, + "npm:@inquirer/core": { + "type": "npm", + "name": "npm:@inquirer/core", + "data": { + "version": "11.1.7", + "packageName": "@inquirer/core", + "hash": "sha512-1BiBNDk9btIwYIzNZpkikIHXWeNzNncJePPqwDyVMhXhD1ebqbpn1mKGctpoqAbzywZfdG0O4tvmsGIcOevAPQ==" + } + }, + "npm:@inquirer/editor": { + "type": "npm", + "name": "npm:@inquirer/editor", + "data": { + "version": "5.0.10", + "packageName": "@inquirer/editor", + "hash": "sha512-VJx4XyaKea7t8hEApTw5dxeIyMtWXre2OiyJcICCRZI4hkoHsMoCnl/KbUnJJExLbH9csLLHMVR144ZhFE1CwA==" + } + }, + "npm:@inquirer/expand": { + "type": "npm", + "name": "npm:@inquirer/expand", + "data": { + "version": "5.0.10", + "packageName": "@inquirer/expand", + "hash": "sha512-fC0UHJPXsTRvY2fObiwuQYaAnHrp3aDqfwKUJSdfpgv18QUG054ezGbaRNStk/BKD5IPijeMKWej8VV8O5Q/eQ==" + } + }, + "npm:@inquirer/external-editor": { + "type": "npm", + "name": "npm:@inquirer/external-editor", + "data": { + "version": "2.0.4", + "packageName": "@inquirer/external-editor", + "hash": "sha512-Prenuv9C1PHj2Itx0BcAOVBTonz02Hc2Nd2DbU67PdGUaqn0nPCnV34oDyyoaZHnmfRxkpuhh/u51ThkrO+RdA==" + } + }, + "npm:@inquirer/figures": { + "type": "npm", + "name": "npm:@inquirer/figures", + "data": { + "version": "2.0.4", + "packageName": "@inquirer/figures", + "hash": "sha512-eLBsjlS7rPS3WEhmOmh1znQ5IsQrxWzxWDxO51e4urv+iVrSnIHbq4zqJIOiyNdYLa+BVjwOtdetcQx1lWPpiQ==" + } + }, + "npm:@inquirer/input": { + "type": "npm", + "name": "npm:@inquirer/input", + "data": { + "version": "5.0.10", + "packageName": "@inquirer/input", + "hash": "sha512-nvZ6qEVeX/zVtZ1dY2hTGDQpVGD3R7MYPLODPgKO8Y+RAqxkrP3i/3NwF3fZpLdaMiNuK0z2NaYIx9tPwiSegQ==" + } + }, + "npm:@inquirer/number": { + "type": "npm", + "name": "npm:@inquirer/number", + "data": { + "version": "4.0.10", + "packageName": "@inquirer/number", + "hash": "sha512-Ht8OQstxiS3APMGjHV0aYAjRAysidWdwurWEo2i8yI5xbhOBWqizT0+MU1S2GCcuhIBg+3SgWVjEoXgfhY+XaA==" + } + }, + "npm:@inquirer/password": { + "type": "npm", + "name": "npm:@inquirer/password", + "data": { + "version": "5.0.10", + "packageName": "@inquirer/password", + "hash": "sha512-QbNyvIE8q2GTqKLYSsA8ATG+eETo+m31DSR0+AU7x3d2FhaTWzqQek80dj3JGTo743kQc6mhBR0erMjYw5jQ0A==" + } + }, + "npm:@inquirer/prompts": { + "type": "npm", + "name": "npm:@inquirer/prompts", + "data": { + "version": "8.3.2", + "packageName": "@inquirer/prompts", + "hash": "sha512-yFroiSj2iiBFlm59amdTvAcQFvWS6ph5oKESls/uqPBect7rTU2GbjyZO2DqxMGuIwVA8z0P4K6ViPcd/cp+0w==" + } + }, + "npm:@inquirer/rawlist": { + "type": "npm", + "name": "npm:@inquirer/rawlist", + "data": { + "version": "5.2.6", + "packageName": "@inquirer/rawlist", + "hash": "sha512-jfw0MLJ5TilNsa9zlJ6nmRM0ZFVZhhTICt4/6CU2Dv1ndY7l3sqqo1gIYZyMMDw0LvE1u1nzJNisfHEhJIxq5w==" + } + }, + "npm:@inquirer/search": { + "type": "npm", + "name": "npm:@inquirer/search", + "data": { + "version": "4.1.6", + "packageName": "@inquirer/search", + "hash": "sha512-3/6kTRae98hhDevENScy7cdFEuURnSpM3JbBNg8yfXLw88HgTOl+neUuy/l9W0No5NzGsLVydhBzTIxZP7yChQ==" + } + }, + "npm:@inquirer/select": { + "type": "npm", + "name": "npm:@inquirer/select", + "data": { + "version": "5.1.2", + "packageName": "@inquirer/select", + "hash": "sha512-kTK8YIkHV+f02y7bWCh7E0u2/11lul5WepVTclr3UMBtBr05PgcZNWfMa7FY57ihpQFQH/spLMHTcr0rXy50tA==" + } + }, + "npm:@inquirer/type": { + "type": "npm", + "name": "npm:@inquirer/type", + "data": { + "version": "4.0.4", + "packageName": "@inquirer/type", + "hash": "sha512-PamArxO3cFJZoOzspzo6cxVlLeIftyBsZw/S9bKY5DzxqJVZgjoj1oP8d0rskKtp7sZxBycsoer1g6UeJV1BBA==" + } + }, + "npm:@isaacs/cliui@8.0.2": { + "type": "npm", + "name": "npm:@isaacs/cliui@8.0.2", + "data": { + "version": "8.0.2", + "packageName": "@isaacs/cliui", + "hash": "sha512-O8jcjabXaleOG9DQ0+ARXWZBTfnP4WNAqzuiJK7ll44AmxGKv/J2M4TPjxjY3znBCfvBXFzucm1twdyFybFqEA==" + } + }, + "npm:@isaacs/cliui": { + "type": "npm", + "name": "npm:@isaacs/cliui", + "data": { + "version": "9.0.0", + "packageName": "@isaacs/cliui", + "hash": "sha512-AokJm4tuBHillT+FpMtxQ60n8ObyXBatq7jD2/JA9dxbDDokKQm8KMht5ibGzLVU9IJDIKK4TPKgMHEYMn3lMg==" + } + }, + "npm:@isaacs/fs-minipass": { + "type": "npm", + "name": "npm:@isaacs/fs-minipass", + "data": { + "version": "4.0.1", + "packageName": "@isaacs/fs-minipass", + "hash": "sha512-wgm9Ehl2jpeqP3zw/7mo3kRHFp5MEDhqAdwy1fTGkHAwnkGOVsgpvQhL8B5n1qlb01jV3n/bI0ZfZp5lWA1k4w==" + } + }, + "npm:@jest/diff-sequences": { + "type": "npm", + "name": "npm:@jest/diff-sequences", + "data": { + "version": "30.3.0", + "packageName": "@jest/diff-sequences", + "hash": "sha512-cG51MVnLq1ecVUaQ3fr6YuuAOitHK1S4WUJHnsPFE/quQr33ADUx1FfrTCpMCRxvy0Yr9BThKpDjSlcTi91tMA==" + } + }, + "npm:@jest/get-type": { + "type": "npm", + "name": "npm:@jest/get-type", + "data": { + "version": "30.1.0", + "packageName": "@jest/get-type", + "hash": "sha512-eMbZE2hUnx1WV0pmURZY9XoXPkUYjpc55mb0CrhtdWLtzMQPFvu/rZkTLZFTsdaVQa+Tr4eWAteqcUzoawq/uA==" + } + }, + "npm:@jest/schemas": { + "type": "npm", + "name": "npm:@jest/schemas", + "data": { + "version": "30.0.5", + "packageName": "@jest/schemas", + "hash": "sha512-DmdYgtezMkh3cpU8/1uyXakv3tJRcmcXxBOcO0tbaozPwpmh4YMsnWrQm9ZmZMfa5ocbxzbFk6O4bDPEc/iAnA==" + } + }, + "npm:@jridgewell/gen-mapping": { + "type": "npm", + "name": "npm:@jridgewell/gen-mapping", + "data": { + "version": "0.3.13", + "packageName": "@jridgewell/gen-mapping", + "hash": "sha512-2kkt/7niJ6MgEPxF0bYdQ6etZaA+fQvDcLKckhy1yIQOzaoKjBBjSj63/aLVjYE3qhRt5dvM+uUyfCg6UKCBbA==" + } + }, + "npm:@jridgewell/remapping": { + "type": "npm", + "name": "npm:@jridgewell/remapping", + "data": { + "version": "2.3.5", + "packageName": "@jridgewell/remapping", + "hash": "sha512-LI9u/+laYG4Ds1TDKSJW2YPrIlcVYOwi2fUC6xB43lueCjgxV4lffOCZCtYFiH6TNOX+tQKXx97T4IKHbhyHEQ==" + } + }, + "npm:@jridgewell/resolve-uri": { + "type": "npm", + "name": "npm:@jridgewell/resolve-uri", + "data": { + "version": "3.1.2", + "packageName": "@jridgewell/resolve-uri", + "hash": "sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw==" + } + }, + "npm:@jridgewell/sourcemap-codec": { + "type": "npm", + "name": "npm:@jridgewell/sourcemap-codec", + "data": { + "version": "1.5.5", + "packageName": "@jridgewell/sourcemap-codec", + "hash": "sha512-cYQ9310grqxueWbl+WuIUIaiUaDcj7WOq5fVhEljNVgRfOUhY9fy2zTvfoqWsnebh8Sl70VScFbICvJnLKB0Og==" + } + }, + "npm:@jridgewell/trace-mapping": { + "type": "npm", + "name": "npm:@jridgewell/trace-mapping", + "data": { + "version": "0.3.31", + "packageName": "@jridgewell/trace-mapping", + "hash": "sha512-zzNR+SdQSDJzc8joaeP8QQoCQr8NuYx2dIIytl1QeBEZHJ9uW6hebsrYgbz8hJwUQao3TWCMtmfV8Nu1twOLAw==" + } + }, + "npm:@jridgewell/trace-mapping@0.3.9": { + "type": "npm", + "name": "npm:@jridgewell/trace-mapping@0.3.9", + "data": { + "version": "0.3.9", + "packageName": "@jridgewell/trace-mapping", + "hash": "sha512-3Belt6tdc8bPgAtbcmdtNJlirVoTmEb5e2gC94PnkwEW9jI6CAHUeoG85tjWP5WquqfavoMtMwiG4P926ZKKuQ==" + } + }, + "npm:@kikobeats/content-type": { + "type": "npm", + "name": "npm:@kikobeats/content-type", + "data": { + "version": "1.0.3", + "packageName": "@kikobeats/content-type", + "hash": "sha512-5FJ7DRACUgopXmRomCLlncPMAEM3oj6r8jlTT4h/oagn9kdbXDdr3jF/Xaoqu2T1DPPqTBRQJw63QuCwhjb/PQ==" + } + }, + "npm:@kikobeats/time-span": { + "type": "npm", + "name": "npm:@kikobeats/time-span", + "data": { + "version": "1.0.11", + "packageName": "@kikobeats/time-span", + "hash": "sha512-S+msolgD9aPVoJ+ZomVD0WSKm+qJBKvJimzwq8dMvlGKbIPsAyEWhHHdSRuQT3g2VpDIctvbi9nU++kN/VPZaw==" + } + }, + "npm:@ltd/j-toml": { + "type": "npm", + "name": "npm:@ltd/j-toml", + "data": { + "version": "1.38.0", + "packageName": "@ltd/j-toml", + "hash": "sha512-lYtBcmvHustHQtg4X7TXUu1Xa/tbLC3p2wLvgQI+fWVySguVZJF60Snxijw5EiohumxZbR10kWYFFebh1zotiw==" + } + }, + "npm:@mantine/core": { + "type": "npm", + "name": "npm:@mantine/core", + "data": { + "version": "8.3.18", + "packageName": "@mantine/core", + "hash": "sha512-9tph1lTVogKPjTx02eUxDUOdXacPzK62UuSqb4TdGliI54/Xgxftq0Dfqu6XuhCxn9J5MDJaNiLDvL/1KRkYqA==" + } + }, + "npm:@mantine/hooks": { + "type": "npm", + "name": "npm:@mantine/hooks", + "data": { + "version": "8.3.18", + "packageName": "@mantine/hooks", + "hash": "sha512-QoWr9+S8gg5050TQ06aTSxtlpGjYOpIllRbjYYXlRvZeTsUqiTbVfvQROLexu4rEaK+yy9Wwriwl9PMRgbLqPw==" + } + }, + "npm:@manypkg/find-root": { + "type": "npm", + "name": "npm:@manypkg/find-root", + "data": { + "version": "3.1.0", + "packageName": "@manypkg/find-root", + "hash": "sha512-BcSqCyKhBVZ5YkSzOiheMCV41kqAFptW6xGqYSTjkVTl9XQpr+pqHhwgGCOHQtjDCv7Is6EFyA14Sm5GVbVABA==" + } + }, + "npm:@manypkg/tools": { + "type": "npm", + "name": "npm:@manypkg/tools", + "data": { + "version": "2.1.0", + "packageName": "@manypkg/tools", + "hash": "sha512-0FOIepYR4ugPYaHwK7hDeHDkfPOBVvayt9QpvRbi2LT/h2b0GaE/gM9Gag7fsnyYyNaTZ2IGyOuVg07IYepvYQ==" + } + }, + "npm:@mapbox/node-pre-gyp": { + "type": "npm", + "name": "npm:@mapbox/node-pre-gyp", + "data": { + "version": "2.0.0", + "packageName": "@mapbox/node-pre-gyp", + "hash": "sha512-llMXd39jtP0HpQLVI37Bf1m2ADlEb35GYSh1SDSLsBhR+5iCxiNGlT31yqbNtVHygHAtMy6dWFERpU2JgufhPg==" + } + }, + "npm:@motionone/animation": { + "type": "npm", + "name": "npm:@motionone/animation", + "data": { + "version": "10.18.0", + "packageName": "@motionone/animation", + "hash": "sha512-9z2p5GFGCm0gBsZbi8rVMOAJCtw1WqBTIPw3ozk06gDvZInBPIsQcHgYogEJ4yuHJ+akuW8g1SEIOpTOvYs8hw==" + } + }, + "npm:@motionone/dom": { + "type": "npm", + "name": "npm:@motionone/dom", + "data": { + "version": "10.18.0", + "packageName": "@motionone/dom", + "hash": "sha512-bKLP7E0eyO4B2UaHBBN55tnppwRnaE3KFfh3Ps9HhnAkar3Cb69kUCJY9as8LrccVYKgHA+JY5dOQqJLOPhF5A==" + } + }, + "npm:@motionone/easing": { + "type": "npm", + "name": "npm:@motionone/easing", + "data": { + "version": "10.18.0", + "packageName": "@motionone/easing", + "hash": "sha512-VcjByo7XpdLS4o9T8t99JtgxkdMcNWD3yHU/n6CLEz3bkmKDRZyYQ/wmSf6daum8ZXqfUAgFeCZSpJZIMxaCzg==" + } + }, + "npm:@motionone/generators": { + "type": "npm", + "name": "npm:@motionone/generators", + "data": { + "version": "10.18.0", + "packageName": "@motionone/generators", + "hash": "sha512-+qfkC2DtkDj4tHPu+AFKVfR/C30O1vYdvsGYaR13W/1cczPrrcjdvYCj0VLFuRMN+lP1xvpNZHCRNM4fBzn1jg==" + } + }, + "npm:@motionone/types": { + "type": "npm", + "name": "npm:@motionone/types", + "data": { + "version": "10.17.1", + "packageName": "@motionone/types", + "hash": "sha512-KaC4kgiODDz8hswCrS0btrVrzyU2CSQKO7Ps90ibBVSQmjkrt2teqta6/sOG59v7+dPnKMAg13jyqtMKV2yJ7A==" + } + }, + "npm:@motionone/utils": { + "type": "npm", + "name": "npm:@motionone/utils", + "data": { + "version": "10.18.0", + "packageName": "@motionone/utils", + "hash": "sha512-3XVF7sgyTSI2KWvTf6uLlBJ5iAgRgmvp3bpuOiQJvInd4nZ19ET8lX5unn30SlmRH7hXbBbH+Gxd0m0klJ3Xtw==" + } + }, + "npm:@mrleebo/prisma-ast": { + "type": "npm", + "name": "npm:@mrleebo/prisma-ast", + "data": { + "version": "0.13.1", + "packageName": "@mrleebo/prisma-ast", + "hash": "sha512-XyroGQXcHrZdvmrGJvsA9KNeOOgGMg1Vg9OlheUsBOSKznLMDl+YChxbkboRHvtFYJEMRYmlV3uoo/njCw05iw==" + } + }, + "npm:@napi-rs/wasm-runtime": { + "type": "npm", + "name": "npm:@napi-rs/wasm-runtime", + "data": { + "version": "0.2.4", + "packageName": "@napi-rs/wasm-runtime", + "hash": "sha512-9zESzOO5aDByvhIAsOy9TbpZ0Ur2AJbUI7UT73kcUTS2mxAMHOBaa1st/jAymNoCtvrit99kkzT1FZuXVcgfIQ==" + } + }, + "npm:@napi-rs/wasm-runtime@1.1.1": { + "type": "npm", + "name": "npm:@napi-rs/wasm-runtime@1.1.1", + "data": { + "version": "1.1.1", + "packageName": "@napi-rs/wasm-runtime", + "hash": "sha512-p64ah1M1ld8xjWv3qbvFwHiFVWrq1yFvV4f7w+mzaqiR4IlSgkqhcRdHwsGgomwzBH51sRY4NEowLxnaBjcW/A==" + } + }, + "npm:@nodelib/fs.scandir": { + "type": "npm", + "name": "npm:@nodelib/fs.scandir", + "data": { + "version": "2.1.5", + "packageName": "@nodelib/fs.scandir", + "hash": "sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==" + } + }, + "npm:@nodelib/fs.stat": { + "type": "npm", + "name": "npm:@nodelib/fs.stat", + "data": { + "version": "2.0.5", + "packageName": "@nodelib/fs.stat", + "hash": "sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==" + } + }, + "npm:@nodelib/fs.walk": { + "type": "npm", + "name": "npm:@nodelib/fs.walk", + "data": { + "version": "1.2.8", + "packageName": "@nodelib/fs.walk", + "hash": "sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==" + } + }, + "npm:@npmcli/agent": { + "type": "npm", + "name": "npm:@npmcli/agent", + "data": { + "version": "3.0.0", + "packageName": "@npmcli/agent", + "hash": "sha512-S79NdEgDQd/NGCay6TCoVzXSj74skRZIKJcpJjC5lOq34SZzyI6MqtiiWoiVWoVrTcGjNeC4ipbh1VIHlpfF5Q==" + } + }, + "npm:@npmcli/fs": { + "type": "npm", + "name": "npm:@npmcli/fs", + "data": { + "version": "4.0.0", + "packageName": "@npmcli/fs", + "hash": "sha512-/xGlezI6xfGO9NwuJlnwz/K14qD1kCSAGtacBHnGzeAIuJGazcp45KP5NuyARXoKb7cwulAGWVsbeSxdG/cb0Q==" + } + }, + "npm:@nx/nx-darwin-arm64": { + "type": "npm", + "name": "npm:@nx/nx-darwin-arm64", + "data": { + "version": "22.6.1", + "packageName": "@nx/nx-darwin-arm64", + "hash": "sha512-lixkEBGFdEsUiqEZg9LIyjfiTv12Sg1Es/yUgrdOQUAZu+5oiUPMoybyBwrvINl+fZw+PLh66jOmB4GSP2aUMQ==" + } + }, + "npm:@nx/nx-darwin-x64": { + "type": "npm", + "name": "npm:@nx/nx-darwin-x64", + "data": { + "version": "22.6.1", + "packageName": "@nx/nx-darwin-x64", + "hash": "sha512-HvgtOtuWnEf0dpfWb05N0ptdFg040YgzsKFhXg6+qaBJg5Hg0e0AXPKaSgh2PCqCIDlKu40YtwVgF7KXxXAGlA==" + } + }, + "npm:@nx/nx-freebsd-x64": { + "type": "npm", + "name": "npm:@nx/nx-freebsd-x64", + "data": { + "version": "22.6.1", + "packageName": "@nx/nx-freebsd-x64", + "hash": "sha512-g2wUltGX+7/+mdTV5d6ODa0ylrNu/krgb9YdrsbhW6oZeXYm2LeLOAnYqIlL/Kx140NLrb5Kcz7bi7JrBAw4Ow==" + } + }, + "npm:@nx/nx-linux-arm-gnueabihf": { + "type": "npm", + "name": "npm:@nx/nx-linux-arm-gnueabihf", + "data": { + "version": "22.6.1", + "packageName": "@nx/nx-linux-arm-gnueabihf", + "hash": "sha512-TTqisFPAPrj35EihvzotBbajS+0bX++PQggmRVmDmGwSTrpySRJwZnKNHYDqP6s9tigDvkNJOJftK+GkBEFRRA==" + } + }, + "npm:@nx/nx-linux-arm64-gnu": { + "type": "npm", + "name": "npm:@nx/nx-linux-arm64-gnu", + "data": { + "version": "22.6.1", + "packageName": "@nx/nx-linux-arm64-gnu", + "hash": "sha512-uIkPcanSTIcyh7/6LOoX0YpGO/7GkVhMRgyM9Mg/7ItFjCtRaeuPEPrJESsaNeB5zIVVhI4cXbGrM9NDnagiiw==" + } + }, + "npm:@nx/nx-linux-arm64-musl": { + "type": "npm", + "name": "npm:@nx/nx-linux-arm64-musl", + "data": { + "version": "22.6.1", + "packageName": "@nx/nx-linux-arm64-musl", + "hash": "sha512-eqkG8s/7remiRZ1Lo2zIrFLSNsQ/0x9fAj++CV1nqFE+rfykPQhC48F8pqsq6tUQpI5HqRQEfQgv4CnFNpLR+w==" + } + }, + "npm:@nx/nx-linux-x64-gnu": { + "type": "npm", + "name": "npm:@nx/nx-linux-x64-gnu", + "data": { + "version": "22.6.1", + "packageName": "@nx/nx-linux-x64-gnu", + "hash": "sha512-6DhSupCcDa6BYzQ48qsMK4LIdIO+y4E+4xuUBkX2YTGOZh58gctELCv7Gi6/FhiC8rzVzM7hDcygOvHCGc30zA==" + } + }, + "npm:@nx/nx-linux-x64-musl": { + "type": "npm", + "name": "npm:@nx/nx-linux-x64-musl", + "data": { + "version": "22.6.1", + "packageName": "@nx/nx-linux-x64-musl", + "hash": "sha512-QqtfaBhdfLRKGucpP8RSv7KJ51XRWpfUcXPhkb/1dKP/b9/Z0kpaCgczGHdrAtX9m6haWw+sQXYGxnStZIg/TQ==" + } + }, + "npm:@nx/nx-win32-arm64-msvc": { + "type": "npm", + "name": "npm:@nx/nx-win32-arm64-msvc", + "data": { + "version": "22.6.1", + "packageName": "@nx/nx-win32-arm64-msvc", + "hash": "sha512-8pTWXphY5IIgY3edZ5SfzP8yPjBqoAxRV5snAYDctF4e0OC1nDOUims70jLesMle8DTSWiHPSfbLVfp2HkU9WQ==" + } + }, + "npm:@nx/nx-win32-x64-msvc": { + "type": "npm", + "name": "npm:@nx/nx-win32-x64-msvc", + "data": { + "version": "22.6.1", + "packageName": "@nx/nx-win32-x64-msvc", + "hash": "sha512-XMYrtsR5O39uNR4fVpFs65rVB09FyLXvUM735r2rO7IUWWHxHWTAgVcc+gqQaAchBPqR9f1q+3u2i1Inub3Cdw==" + } + }, + "npm:@oxc-parser/binding-android-arm64": { + "type": "npm", + "name": "npm:@oxc-parser/binding-android-arm64", + "data": { + "version": "0.104.0", + "packageName": "@oxc-parser/binding-android-arm64", + "hash": "sha512-2a4tk6mtkPbGwT4Zi8pjOqMkmkrvc/Pussmas+uXoiCVv7sn7P7Jn93ATu/HK49dxIwvrvQCZ3BcS0KhAvKxlQ==" + } + }, + "npm:@oxc-parser/binding-darwin-arm64": { + "type": "npm", + "name": "npm:@oxc-parser/binding-darwin-arm64", + "data": { + "version": "0.104.0", + "packageName": "@oxc-parser/binding-darwin-arm64", + "hash": "sha512-qprm6/Hr35TSCkJoo+huRHq3siyqRyMBtNVNJQkJorZAGcffQTzzdhmzJnA7TQc+WnN36/Jq56D7/INu0/2knQ==" + } + }, + "npm:@oxc-parser/binding-darwin-x64": { + "type": "npm", + "name": "npm:@oxc-parser/binding-darwin-x64", + "data": { + "version": "0.104.0", + "packageName": "@oxc-parser/binding-darwin-x64", + "hash": "sha512-Xpu0l/l2zCUeheIrpu7dz6FxQ96W0f8Dq9rhYE1yLtTqQpMGhefnEV5Lr8qd15clwniZiKWZO6FGQawQ7npt3Q==" + } + }, + "npm:@oxc-parser/binding-freebsd-x64": { + "type": "npm", + "name": "npm:@oxc-parser/binding-freebsd-x64", + "data": { + "version": "0.104.0", + "packageName": "@oxc-parser/binding-freebsd-x64", + "hash": "sha512-I++fE3ZrhjtLzA0mqFcC/GuA6+dWNa/QkJJfm7sS4NGGQhipQQ2vikCK6jZK1YGIsbDFDrSoQCfA3tQfeK6pqg==" + } + }, + "npm:@oxc-parser/binding-linux-arm-gnueabihf": { + "type": "npm", + "name": "npm:@oxc-parser/binding-linux-arm-gnueabihf", + "data": { + "version": "0.104.0", + "packageName": "@oxc-parser/binding-linux-arm-gnueabihf", + "hash": "sha512-JkvwCNZm3ZwVG1r+c3LrcrxpJ1YXAtYEbVwOcwe+wh6LnltGoxEEZk7Zo9259jch8GiWW6AfRGDQY2FxzWJT7A==" + } + }, + "npm:@oxc-parser/binding-linux-arm64-gnu": { + "type": "npm", + "name": "npm:@oxc-parser/binding-linux-arm64-gnu", + "data": { + "version": "0.104.0", + "packageName": "@oxc-parser/binding-linux-arm64-gnu", + "hash": "sha512-CD9Tzp3dfMtujHikS0JwTIOaDUCBWItvziUTDYsMXrfVHjfSaGGsaKqIQmNsG1Qg7QdmtMZtMW0pQcHGZQ2OoA==" + } + }, + "npm:@oxc-parser/binding-linux-arm64-musl": { + "type": "npm", + "name": "npm:@oxc-parser/binding-linux-arm64-musl", + "data": { + "version": "0.104.0", + "packageName": "@oxc-parser/binding-linux-arm64-musl", + "hash": "sha512-lARUu7lrZ7CoAm2arLJQkq9Sem2NiC3DaphmPvlf2X+ngkWcYUCRxZanhe+++x/bVzKrwvxormC3IVaulP51mQ==" + } + }, + "npm:@oxc-parser/binding-linux-riscv64-gnu": { + "type": "npm", + "name": "npm:@oxc-parser/binding-linux-riscv64-gnu", + "data": { + "version": "0.104.0", + "packageName": "@oxc-parser/binding-linux-riscv64-gnu", + "hash": "sha512-hnPWrncj89/7AiMt19Juqpa04z8OpJrIf3/ToGkJafZ3A1ZN50atyNKQD5EmGs2/gdaFxF4hG3zUnLKhX9nTtQ==" + } + }, + "npm:@oxc-parser/binding-linux-s390x-gnu": { + "type": "npm", + "name": "npm:@oxc-parser/binding-linux-s390x-gnu", + "data": { + "version": "0.104.0", + "packageName": "@oxc-parser/binding-linux-s390x-gnu", + "hash": "sha512-VegcKzBgUoHQ/p5NyV+GrdEgJEXhX4AD+kCZng+viP/eNsZJgmp2K1jDBCeLSUZIdSmdldK5wlSma3Bf8MKcUQ==" + } + }, + "npm:@oxc-parser/binding-linux-x64-gnu": { + "type": "npm", + "name": "npm:@oxc-parser/binding-linux-x64-gnu", + "data": { + "version": "0.104.0", + "packageName": "@oxc-parser/binding-linux-x64-gnu", + "hash": "sha512-nDtCJIwaNgVNLR1EOgb1Xsz7VL3TOASLRbQEC+wLZycs3CCETlGNQht5OqwXPNjbem61kl4l8dvuEavu8BRT/Q==" + } + }, + "npm:@oxc-parser/binding-linux-x64-musl": { + "type": "npm", + "name": "npm:@oxc-parser/binding-linux-x64-musl", + "data": { + "version": "0.104.0", + "packageName": "@oxc-parser/binding-linux-x64-musl", + "hash": "sha512-E98MNPE3d88D2xUABQYWH2cYqLA/mmOM4XL3CZHaG5dM68sN3fzCyV0ryK5skq4hVK1L2e6jk79z5oLArsCYyA==" + } + }, + "npm:@oxc-parser/binding-openharmony-arm64": { + "type": "npm", + "name": "npm:@oxc-parser/binding-openharmony-arm64", + "data": { + "version": "0.104.0", + "packageName": "@oxc-parser/binding-openharmony-arm64", + "hash": "sha512-/FNOTg5tzlpB0hunjdI1AiJp2lC8NvBl0HpqMk0qp42KAK+yOe7nyw7XcNpMH7SvhmPe+R3oyJV8UQv953sCvA==" + } + }, + "npm:@oxc-parser/binding-wasm32-wasi": { + "type": "npm", + "name": "npm:@oxc-parser/binding-wasm32-wasi", + "data": { + "version": "0.104.0", + "packageName": "@oxc-parser/binding-wasm32-wasi", + "hash": "sha512-I+xnHDxkInzHBZV+YERIvvrt+GFwEBdgq/RUax5jLl8yHg5iPVq11qtGh3m+2v8zAjQXYPmBbcANNGWwgXqtWQ==" + } + }, + "npm:@oxc-parser/binding-win32-arm64-msvc": { + "type": "npm", + "name": "npm:@oxc-parser/binding-win32-arm64-msvc", + "data": { + "version": "0.104.0", + "packageName": "@oxc-parser/binding-win32-arm64-msvc", + "hash": "sha512-EWHVWfllZGTJFWfjfBKzvS/0uuw6/Z3+o598VTvySamy5fz2f4P1mNElvTi4tGGhbm1sGTYnYRNRW8XBAnGUGg==" + } + }, + "npm:@oxc-parser/binding-win32-x64-msvc": { + "type": "npm", + "name": "npm:@oxc-parser/binding-win32-x64-msvc", + "data": { + "version": "0.104.0", + "packageName": "@oxc-parser/binding-win32-x64-msvc", + "hash": "sha512-Nj7zeywIvxBRRd0I6NrdGufOOdiwQcAKnkRwtWo5dejPTmR1XM+9iRHJztoKacejW5+VOdEwQrfCjpa8MdLJBQ==" + } + }, + "npm:@oxc-project/types": { + "type": "npm", + "name": "npm:@oxc-project/types", + "data": { + "version": "0.104.0", + "packageName": "@oxc-project/types", + "hash": "sha512-We30k+29WpOerl3gCb1v8IFL4vmKTkghjist4TQ89yw7adGDCKFGf8+4mA4H3Ek5ajRzzBZ7BtGY8aIaOv9oFQ==" + } + }, + "npm:@oxc-project/types@0.115.0": { + "type": "npm", + "name": "npm:@oxc-project/types@0.115.0", + "data": { + "version": "0.115.0", + "packageName": "@oxc-project/types", + "hash": "sha512-4n91DKnebUS4yjUHl2g3/b2T+IUdCfmoZGhmwsovZCDaJSs+QkVAM+0AqqTxHSsHfeiMuueT75cZaZcT/m0pSw==" + } + }, + "npm:@oxc-project/types@0.122.0": { + "type": "npm", + "name": "npm:@oxc-project/types@0.122.0", + "data": { + "version": "0.122.0", + "packageName": "@oxc-project/types", + "hash": "sha512-oLAl5kBpV4w69UtFZ9xqcmTi+GENWOcPF7FCrczTiBbmC0ibXxCwyvZGbO39rCVEuLGAZM84DH0pUIyyv/YJzA==" + } + }, + "npm:@oxc-project/types@0.98.0": { + "type": "npm", + "name": "npm:@oxc-project/types@0.98.0", + "data": { + "version": "0.98.0", + "packageName": "@oxc-project/types", + "hash": "sha512-Vzmd6FsqVuz5HQVcRC/hrx7Ujo3WEVeQP7C2UNP5uy1hUY4SQvMB+93jxkI1KRHz9a/6cni3glPOtvteN+zpsw==" + } + }, + "npm:@oxc-resolver/binding-android-arm-eabi": { + "type": "npm", + "name": "npm:@oxc-resolver/binding-android-arm-eabi", + "data": { + "version": "11.19.1", + "packageName": "@oxc-resolver/binding-android-arm-eabi", + "hash": "sha512-aUs47y+xyXHUKlbhqHUjBABjvycq6YSD7bpxSW7vplUmdzAlJ93yXY6ZR0c1o1x5A/QKbENCvs3+NlY8IpIVzg==" + } + }, + "npm:@oxc-resolver/binding-android-arm64": { + "type": "npm", + "name": "npm:@oxc-resolver/binding-android-arm64", + "data": { + "version": "11.19.1", + "packageName": "@oxc-resolver/binding-android-arm64", + "hash": "sha512-oolbkRX+m7Pq2LNjr/kKgYeC7bRDMVTWPgxBGMjSpZi/+UskVo4jsMU3MLheZV55jL6c3rNelPl4oD60ggYmqA==" + } + }, + "npm:@oxc-resolver/binding-darwin-arm64": { + "type": "npm", + "name": "npm:@oxc-resolver/binding-darwin-arm64", + "data": { + "version": "11.19.1", + "packageName": "@oxc-resolver/binding-darwin-arm64", + "hash": "sha512-nUC6d2i3R5B12sUW4O646qD5cnMXf2oBGPLIIeaRfU9doJRORAbE2SGv4eW6rMqhD+G7nf2Y8TTJTLiiO3Q/dQ==" + } + }, + "npm:@oxc-resolver/binding-darwin-x64": { + "type": "npm", + "name": "npm:@oxc-resolver/binding-darwin-x64", + "data": { + "version": "11.19.1", + "packageName": "@oxc-resolver/binding-darwin-x64", + "hash": "sha512-cV50vE5+uAgNcFa3QY1JOeKDSkM/9ReIcc/9wn4TavhW/itkDGrXhw9jaKnkQnGbjJ198Yh5nbX/Gr2mr4Z5jQ==" + } + }, + "npm:@oxc-resolver/binding-freebsd-x64": { + "type": "npm", + "name": "npm:@oxc-resolver/binding-freebsd-x64", + "data": { + "version": "11.19.1", + "packageName": "@oxc-resolver/binding-freebsd-x64", + "hash": "sha512-xZOQiYGFxtk48PBKff+Zwoym7ScPAIVp4c14lfLxizO2LTTTJe5sx9vQNGrBymrf/vatSPNMD4FgsaaRigPkqw==" + } + }, + "npm:@oxc-resolver/binding-linux-arm-gnueabihf": { + "type": "npm", + "name": "npm:@oxc-resolver/binding-linux-arm-gnueabihf", + "data": { + "version": "11.19.1", + "packageName": "@oxc-resolver/binding-linux-arm-gnueabihf", + "hash": "sha512-lXZYWAC6kaGe/ky2su94e9jN9t6M0/6c+GrSlCqL//XO1cxi5lpAhnJYdyrKfm0ZEr/c7RNyAx3P7FSBcBd5+A==" + } + }, + "npm:@oxc-resolver/binding-linux-arm-musleabihf": { + "type": "npm", + "name": "npm:@oxc-resolver/binding-linux-arm-musleabihf", + "data": { + "version": "11.19.1", + "packageName": "@oxc-resolver/binding-linux-arm-musleabihf", + "hash": "sha512-veG1kKsuK5+t2IsO9q0DErYVSw2azvCVvWHnfTOS73WE0STdLLB7Q1bB9WR+yHPQM76ASkFyRbogWo1GR1+WbQ==" + } + }, + "npm:@oxc-resolver/binding-linux-arm64-gnu": { + "type": "npm", + "name": "npm:@oxc-resolver/binding-linux-arm64-gnu", + "data": { + "version": "11.19.1", + "packageName": "@oxc-resolver/binding-linux-arm64-gnu", + "hash": "sha512-heV2+jmXyYnUrpUXSPugqWDRpnsQcDm2AX4wzTuvgdlZfoNYO0O3W2AVpJYaDn9AG4JdM6Kxom8+foE7/BcSig==" + } + }, + "npm:@oxc-resolver/binding-linux-arm64-musl": { + "type": "npm", + "name": "npm:@oxc-resolver/binding-linux-arm64-musl", + "data": { + "version": "11.19.1", + "packageName": "@oxc-resolver/binding-linux-arm64-musl", + "hash": "sha512-jvo2Pjs1c9KPxMuMPIeQsgu0mOJF9rEb3y3TdpsrqwxRM+AN6/nDDwv45n5ZrUnQMsdBy5gIabioMKnQfWo9ew==" + } + }, + "npm:@oxc-resolver/binding-linux-ppc64-gnu": { + "type": "npm", + "name": "npm:@oxc-resolver/binding-linux-ppc64-gnu", + "data": { + "version": "11.19.1", + "packageName": "@oxc-resolver/binding-linux-ppc64-gnu", + "hash": "sha512-vLmdNxWCdN7Uo5suays6A/+ywBby2PWBBPXctWPg5V0+eVuzsJxgAn6MMB4mPlshskYbppjpN2Zg83ArHze9gQ==" + } + }, + "npm:@oxc-resolver/binding-linux-riscv64-gnu": { + "type": "npm", + "name": "npm:@oxc-resolver/binding-linux-riscv64-gnu", + "data": { + "version": "11.19.1", + "packageName": "@oxc-resolver/binding-linux-riscv64-gnu", + "hash": "sha512-/b+WgR+VTSBxzgOhDO7TlMXC1ufPIMR6Vj1zN+/x+MnyXGW7prTLzU9eW85Aj7Th7CCEG9ArCbTeqxCzFWdg2w==" + } + }, + "npm:@oxc-resolver/binding-linux-riscv64-musl": { + "type": "npm", + "name": "npm:@oxc-resolver/binding-linux-riscv64-musl", + "data": { + "version": "11.19.1", + "packageName": "@oxc-resolver/binding-linux-riscv64-musl", + "hash": "sha512-YlRdeWb9j42p29ROh+h4eg/OQ3dTJlpHSa+84pUM9+p6i3djtPz1q55yLJhgW9XfDch7FN1pQ/Vd6YP+xfRIuw==" + } + }, + "npm:@oxc-resolver/binding-linux-s390x-gnu": { + "type": "npm", + "name": "npm:@oxc-resolver/binding-linux-s390x-gnu", + "data": { + "version": "11.19.1", + "packageName": "@oxc-resolver/binding-linux-s390x-gnu", + "hash": "sha512-EDpafVOQWF8/MJynsjOGFThcqhRHy417sRyLfQmeiamJ8qVhSKAn2Dn2VVKUGCjVB9C46VGjhNo7nOPUi1x6uA==" + } + }, + "npm:@oxc-resolver/binding-linux-x64-gnu": { + "type": "npm", + "name": "npm:@oxc-resolver/binding-linux-x64-gnu", + "data": { + "version": "11.19.1", + "packageName": "@oxc-resolver/binding-linux-x64-gnu", + "hash": "sha512-NxjZe+rqWhr+RT8/Ik+5ptA3oz7tUw361Wa5RWQXKnfqwSSHdHyrw6IdcTfYuml9dM856AlKWZIUXDmA9kkiBQ==" + } + }, + "npm:@oxc-resolver/binding-linux-x64-musl": { + "type": "npm", + "name": "npm:@oxc-resolver/binding-linux-x64-musl", + "data": { + "version": "11.19.1", + "packageName": "@oxc-resolver/binding-linux-x64-musl", + "hash": "sha512-cM/hQwsO3ReJg5kR+SpI69DMfvNCp+A/eVR4b4YClE5bVZwz8rh2Nh05InhwI5HR/9cArbEkzMjcKgTHS6UaNw==" + } + }, + "npm:@oxc-resolver/binding-openharmony-arm64": { + "type": "npm", + "name": "npm:@oxc-resolver/binding-openharmony-arm64", + "data": { + "version": "11.19.1", + "packageName": "@oxc-resolver/binding-openharmony-arm64", + "hash": "sha512-QF080IowFB0+9Rh6RcD19bdgh49BpQHUW5TajG1qvWHvmrQznTZZjYlgE2ltLXyKY+qs4F/v5xuX1XS7Is+3qA==" + } + }, + "npm:@oxc-resolver/binding-wasm32-wasi": { + "type": "npm", + "name": "npm:@oxc-resolver/binding-wasm32-wasi", + "data": { + "version": "11.19.1", + "packageName": "@oxc-resolver/binding-wasm32-wasi", + "hash": "sha512-w8UCKhX826cP/ZLokXDS6+milN8y4X7zidsAttEdWlVoamTNf6lhBJldaWr3ukTDiye7s4HRcuPEPOXNC432Vg==" + } + }, + "npm:@oxc-resolver/binding-win32-arm64-msvc": { + "type": "npm", + "name": "npm:@oxc-resolver/binding-win32-arm64-msvc", + "data": { + "version": "11.19.1", + "packageName": "@oxc-resolver/binding-win32-arm64-msvc", + "hash": "sha512-nJ4AsUVZrVKwnU/QRdzPCCrO0TrabBqgJ8pJhXITdZGYOV28TIYystV1VFLbQ7DtAcaBHpocT5/ZJnF78YJPtQ==" + } + }, + "npm:@oxc-resolver/binding-win32-ia32-msvc": { + "type": "npm", + "name": "npm:@oxc-resolver/binding-win32-ia32-msvc", + "data": { + "version": "11.19.1", + "packageName": "@oxc-resolver/binding-win32-ia32-msvc", + "hash": "sha512-EW+ND5q2Tl+a3pH81l1QbfgbF3HmqgwLfDfVithRFheac8OTcnbXt/JxqD2GbDkb7xYEqy1zNaVFRr3oeG8npA==" + } + }, + "npm:@oxc-resolver/binding-win32-x64-msvc": { + "type": "npm", + "name": "npm:@oxc-resolver/binding-win32-x64-msvc", + "data": { + "version": "11.19.1", + "packageName": "@oxc-resolver/binding-win32-x64-msvc", + "hash": "sha512-6hIU3RQu45B+VNTY4Ru8ppFwjVS/S5qwYyGhBotmjxfEKk41I2DlGtRfGJndZ5+6lneE2pwloqunlOyZuX/XAw==" + } + }, + "npm:@oxlint-tsgolint/darwin-arm64": { + "type": "npm", + "name": "npm:@oxlint-tsgolint/darwin-arm64", + "data": { + "version": "0.17.1", + "packageName": "@oxlint-tsgolint/darwin-arm64", + "hash": "sha512-JNWNwyvSDcUQSBlQRl10XrCeNcN66TMvDw3gIDQeop5SNa1F7wFhsEx4zitYb7fGHwGh9095tsNttmuCaNXCbw==" + } + }, + "npm:@oxlint-tsgolint/darwin-x64": { + "type": "npm", + "name": "npm:@oxlint-tsgolint/darwin-x64", + "data": { + "version": "0.17.1", + "packageName": "@oxlint-tsgolint/darwin-x64", + "hash": "sha512-SluNf6CW88pgGPqQUGC5GoK5qESWo2ct1PRDbza3vbf9SK2npx3igvylGQIgE9qYYOcjgnVdLOJ0+q0gItgUmQ==" + } + }, + "npm:@oxlint-tsgolint/linux-arm64": { + "type": "npm", + "name": "npm:@oxlint-tsgolint/linux-arm64", + "data": { + "version": "0.17.1", + "packageName": "@oxlint-tsgolint/linux-arm64", + "hash": "sha512-BJxQ7/cdo2dNdGIBs2PIR6BaPA7cPfe+r1HE/uY+K7g2ygip+0LHB3GUO9GaNDZuWpsnDyjLYYowEGrVK8dokA==" + } + }, + "npm:@oxlint-tsgolint/linux-x64": { + "type": "npm", + "name": "npm:@oxlint-tsgolint/linux-x64", + "data": { + "version": "0.17.1", + "packageName": "@oxlint-tsgolint/linux-x64", + "hash": "sha512-s6UjmuaJbZ4zz/wJKdEw/s5mc0t41rgwxQJCSHPuzMumMK6ylrB7nydhDf8ObTtzhTIZdAS/2S/uayJmDcGbxw==" + } + }, + "npm:@oxlint-tsgolint/win32-arm64": { + "type": "npm", + "name": "npm:@oxlint-tsgolint/win32-arm64", + "data": { + "version": "0.17.1", + "packageName": "@oxlint-tsgolint/win32-arm64", + "hash": "sha512-EO/Oj0ixHX+UQdu9hM7YUzibZI888MvPUo/DF8lSxFBt4JNEt8qGkwJEbCYjB/1LhUNmPHzSw2Tr9dCFVfW9nw==" + } + }, + "npm:@oxlint-tsgolint/win32-x64": { + "type": "npm", + "name": "npm:@oxlint-tsgolint/win32-x64", + "data": { + "version": "0.17.1", + "packageName": "@oxlint-tsgolint/win32-x64", + "hash": "sha512-jhv7XktAJ1sMRSb//yDYTauFSZ06H81i2SLEBPaSUKxSKoPMK8p1ACUJlnmwZX2MgapRLEj1Ml22B6+HiM2YIA==" + } + }, + "npm:@oxlint/binding-android-arm-eabi": { + "type": "npm", + "name": "npm:@oxlint/binding-android-arm-eabi", + "data": { + "version": "1.56.0", + "packageName": "@oxlint/binding-android-arm-eabi", + "hash": "sha512-IyfYPthZyiSKwAv/dLjeO18SaK8MxLI9Yss2JrRDyweQAkuL3LhEy7pwIwI7uA3KQc1Vdn20kdmj3q0oUIQL6A==" + } + }, + "npm:@oxlint/binding-android-arm64": { + "type": "npm", + "name": "npm:@oxlint/binding-android-arm64", + "data": { + "version": "1.56.0", + "packageName": "@oxlint/binding-android-arm64", + "hash": "sha512-Ga5zYrzH6vc/VFxhn6MmyUnYEfy9vRpwTIks99mY3j6Nz30yYpIkWryI0QKPCgvGUtDSXVLEaMum5nA+WrNOSg==" + } + }, + "npm:@oxlint/binding-darwin-arm64": { + "type": "npm", + "name": "npm:@oxlint/binding-darwin-arm64", + "data": { + "version": "1.56.0", + "packageName": "@oxlint/binding-darwin-arm64", + "hash": "sha512-ogmbdJysnw/D4bDcpf1sPLpFThZ48lYp4aKYm10Z/6Nh1SON6NtnNhTNOlhEY296tDFItsZUz+2tgcSYqh8Eyw==" + } + }, + "npm:@oxlint/binding-darwin-x64": { + "type": "npm", + "name": "npm:@oxlint/binding-darwin-x64", + "data": { + "version": "1.56.0", + "packageName": "@oxlint/binding-darwin-x64", + "hash": "sha512-x8QE1h+RAtQ2g+3KPsP6Fk/tdz6zJQUv5c7fTrJxXV3GHOo+Ry5p/PsogU4U+iUZg0rj6hS+E4xi+mnwwlDCWQ==" + } + }, + "npm:@oxlint/binding-freebsd-x64": { + "type": "npm", + "name": "npm:@oxlint/binding-freebsd-x64", + "data": { + "version": "1.56.0", + "packageName": "@oxlint/binding-freebsd-x64", + "hash": "sha512-6G+WMZvwJpMvY7my+/SHEjb7BTk/PFbePqLpmVmUJRIsJMy/UlyYqjpuh0RCgYYkPLcnXm1rUM04kbTk8yS1Yg==" + } + }, + "npm:@oxlint/binding-linux-arm-gnueabihf": { + "type": "npm", + "name": "npm:@oxlint/binding-linux-arm-gnueabihf", + "data": { + "version": "1.56.0", + "packageName": "@oxlint/binding-linux-arm-gnueabihf", + "hash": "sha512-YYHBsk/sl7fYwQOok+6W5lBPeUEvisznV/HZD2IfZmF3Bns6cPC3Z0vCtSEOaAWTjYWN3jVsdu55jMxKlsdlhg==" + } + }, + "npm:@oxlint/binding-linux-arm-musleabihf": { + "type": "npm", + "name": "npm:@oxlint/binding-linux-arm-musleabihf", + "data": { + "version": "1.56.0", + "packageName": "@oxlint/binding-linux-arm-musleabihf", + "hash": "sha512-+AZK8rOUr78y8WT6XkDb04IbMRqauNV+vgT6f8ZLOH8wnpQ9i7Nol0XLxAu+Cq7Sb+J9wC0j6Km5hG8rj47/yQ==" + } + }, + "npm:@oxlint/binding-linux-arm64-gnu": { + "type": "npm", + "name": "npm:@oxlint/binding-linux-arm64-gnu", + "data": { + "version": "1.56.0", + "packageName": "@oxlint/binding-linux-arm64-gnu", + "hash": "sha512-urse2SnugwJRojUkGSSeH2LPMaje5Q50yQtvtL9HFckiyeqXzoFwOAZqD5TR29R2lq7UHidfFDM9EGcchcbb8A==" + } + }, + "npm:@oxlint/binding-linux-arm64-musl": { + "type": "npm", + "name": "npm:@oxlint/binding-linux-arm64-musl", + "data": { + "version": "1.56.0", + "packageName": "@oxlint/binding-linux-arm64-musl", + "hash": "sha512-rkTZkBfJ4TYLjansjSzL6mgZOdN5IvUnSq3oNJSLwBcNvy3dlgQtpHPrRxrCEbbcp7oQ6If0tkNaqfOsphYZ9g==" + } + }, + "npm:@oxlint/binding-linux-ppc64-gnu": { + "type": "npm", + "name": "npm:@oxlint/binding-linux-ppc64-gnu", + "data": { + "version": "1.56.0", + "packageName": "@oxlint/binding-linux-ppc64-gnu", + "hash": "sha512-uqL1kMH3u69/e1CH2EJhP3CP28jw2ExLsku4o8RVAZ7fySo9zOyI2fy9pVlTAp4voBLVgzndXi3SgtdyCTa2aA==" + } + }, + "npm:@oxlint/binding-linux-riscv64-gnu": { + "type": "npm", + "name": "npm:@oxlint/binding-linux-riscv64-gnu", + "data": { + "version": "1.56.0", + "packageName": "@oxlint/binding-linux-riscv64-gnu", + "hash": "sha512-j0CcMBOgV6KsRaBdsebIeiy7hCjEvq2KdEsiULf2LZqAq0v1M1lWjelhCV57LxsqaIGChXFuFJ0RiFrSRHPhSg==" + } + }, + "npm:@oxlint/binding-linux-riscv64-musl": { + "type": "npm", + "name": "npm:@oxlint/binding-linux-riscv64-musl", + "data": { + "version": "1.56.0", + "packageName": "@oxlint/binding-linux-riscv64-musl", + "hash": "sha512-7VDOiL8cDG3DQ/CY3yKjbV1c4YPvc4vH8qW09Vv+5ukq3l/Kcyr6XGCd5NvxUmxqDb2vjMpM+eW/4JrEEsUetA==" + } + }, + "npm:@oxlint/binding-linux-s390x-gnu": { + "type": "npm", + "name": "npm:@oxlint/binding-linux-s390x-gnu", + "data": { + "version": "1.56.0", + "packageName": "@oxlint/binding-linux-s390x-gnu", + "hash": "sha512-JGRpX0M+ikD3WpwJ7vKcHKV6Kg0dT52BW2Eu2BupXotYeqGXBrbY+QPkAyKO6MNgKozyTNaRh3r7g+VWgyAQYQ==" + } + }, + "npm:@oxlint/binding-linux-x64-gnu": { + "type": "npm", + "name": "npm:@oxlint/binding-linux-x64-gnu", + "data": { + "version": "1.56.0", + "packageName": "@oxlint/binding-linux-x64-gnu", + "hash": "sha512-dNaICPvtmuxFP/VbqdofrLqdS3bM/AKJN3LMJD52si44ea7Be1cBk6NpfIahaysG9Uo+L98QKddU9CD5L8UHnQ==" + } + }, + "npm:@oxlint/binding-linux-x64-musl": { + "type": "npm", + "name": "npm:@oxlint/binding-linux-x64-musl", + "data": { + "version": "1.56.0", + "packageName": "@oxlint/binding-linux-x64-musl", + "hash": "sha512-pF1vOtM+GuXmbklM1hV8WMsn6tCNPvkUzklj/Ej98JhlanbmA2RB1BILgOpwSuCTRTIYx2MXssmEyQQ90QF5aA==" + } + }, + "npm:@oxlint/binding-openharmony-arm64": { + "type": "npm", + "name": "npm:@oxlint/binding-openharmony-arm64", + "data": { + "version": "1.56.0", + "packageName": "@oxlint/binding-openharmony-arm64", + "hash": "sha512-bp8NQ4RE6fDIFLa4bdBiOA+TAvkNkg+rslR+AvvjlLTYXLy9/uKAYLQudaQouWihLD/hgkrXIKKzXi5IXOewwg==" + } + }, + "npm:@oxlint/binding-win32-arm64-msvc": { + "type": "npm", + "name": "npm:@oxlint/binding-win32-arm64-msvc", + "data": { + "version": "1.56.0", + "packageName": "@oxlint/binding-win32-arm64-msvc", + "hash": "sha512-PxT4OJDfMOQBzo3OlzFb9gkoSD+n8qSBxyVq2wQSZIHFQYGEqIRTo9M0ZStvZm5fdhMqaVYpOnJvH2hUMEDk/g==" + } + }, + "npm:@oxlint/binding-win32-ia32-msvc": { + "type": "npm", + "name": "npm:@oxlint/binding-win32-ia32-msvc", + "data": { + "version": "1.56.0", + "packageName": "@oxlint/binding-win32-ia32-msvc", + "hash": "sha512-PTRy6sIEPqy2x8PTP1baBNReN/BNEFmde0L+mYeHmjXE1Vlcc9+I5nsqENsB2yAm5wLkzPoTNCMY/7AnabT4/A==" + } + }, + "npm:@oxlint/binding-win32-x64-msvc": { + "type": "npm", + "name": "npm:@oxlint/binding-win32-x64-msvc", + "data": { + "version": "1.56.0", + "packageName": "@oxlint/binding-win32-x64-msvc", + "hash": "sha512-ZHa0clocjLmIDr+1LwoWtxRcoYniAvERotvwKUYKhH41NVfl0Y4LNbyQkwMZzwDvKklKGvGZ5+DAG58/Ik47tQ==" + } + }, + "npm:@panva/hkdf": { + "type": "npm", + "name": "npm:@panva/hkdf", + "data": { + "version": "1.2.1", + "packageName": "@panva/hkdf", + "hash": "sha512-6oclG6Y3PiDFcoyk8srjLfVKyMfVCKJ27JwNPViuXziFpmdz+MZnZN/aKY0JGXgYuO/VghU0jcOAZgWXZ1Dmrw==" + } + }, + "npm:@photonjs/cloudflare": { + "type": "npm", + "name": "npm:@photonjs/cloudflare", + "data": { + "version": "0.1.13", + "packageName": "@photonjs/cloudflare", + "hash": "sha512-gyu26ZIEJTLVU47U3OC7iqsT6tvp5qpk1KtTT0zCGpTInTc5p7s3db7xAzq+egZ09SSrU+SbQpoYAlAboLaryA==" + } + }, + "npm:@photonjs/core": { + "type": "npm", + "name": "npm:@photonjs/core", + "data": { + "version": "0.1.21", + "packageName": "@photonjs/core", + "hash": "sha512-dfAUHhWGsKYPNAKqBaOfvGPKOm6l80yWJ3dq1vSG4GICa5ZJemM1xK5JRJhT1lZD4rEHPOJfQncZ8LHiMPivcg==" + } + }, + "npm:@photonjs/express": { + "type": "npm", + "name": "npm:@photonjs/express", + "data": { + "version": "0.1.13", + "packageName": "@photonjs/express", + "hash": "sha512-3PQUhwH6jtoaCFzKB8MWLcNLgEb2vDis1x5wms6ixcHbiacUiVsCO5aMTZv96+SFd5XfLe7MzsVIazM6RLBZpA==" + } + }, + "npm:@photonjs/fastify": { + "type": "npm", + "name": "npm:@photonjs/fastify", + "data": { + "version": "0.1.12", + "packageName": "@photonjs/fastify", + "hash": "sha512-L5Keb7z0D1VL5aAaanwYCRp0RpmOZDeVW2gWhQRB8WL1E6NuEAJP/bmTyGlEjNNM/jPw19f5wlGa2erE/oICww==" + } + }, + "npm:@photonjs/h3": { + "type": "npm", + "name": "npm:@photonjs/h3", + "data": { + "version": "0.1.12", + "packageName": "@photonjs/h3", + "hash": "sha512-kszTOtsHIHP3loYXxpVqFHFqmtU8adw41c6Xvg+pJ2/2LkMus71PIZ5UHpPzacD/JB5AkPFd5IPNYwA97d+sew==" + } + }, + "npm:@photonjs/hono": { + "type": "npm", + "name": "npm:@photonjs/hono", + "data": { + "version": "0.1.12", + "packageName": "@photonjs/hono", + "hash": "sha512-S/fiW3H5ivgayfLbr2cXQQdXZ82olMwLPBbKF4I/6nNH29s2+/nvsH4kswjVg8+ZVJ/WDibO1tCensbknEvM3w==" + } + }, + "npm:@photonjs/runtime": { + "type": "npm", + "name": "npm:@photonjs/runtime", + "data": { + "version": "0.1.16", + "packageName": "@photonjs/runtime", + "hash": "sha512-04ejZcSfQ3f16cpv22tJyJbqGMepuhpg2NBVoxK8YOiJltkBK1fF5lY/EORTF8ZTxYd1M2HGvn0ZfCAlTfZmng==" + } + }, + "npm:@photonjs/srvx": { + "type": "npm", + "name": "npm:@photonjs/srvx", + "data": { + "version": "0.1.12", + "packageName": "@photonjs/srvx", + "hash": "sha512-UT/ukFPdmLsEm6Z5kKIl2DXhayxP0braPBcKRZ4bE1l2sFpN67/54JlZXyFgS/Qdmuo3Hpn94sDIX9uoEBVlGQ==" + } + }, + "npm:@photonjs/vercel": { + "type": "npm", + "name": "npm:@photonjs/vercel", + "data": { + "version": "0.1.22", + "packageName": "@photonjs/vercel", + "hash": "sha512-D+1rl94Jh/d54TwoMf+h9VlV3ITRt18Tdxc9BepSIIc7/tqHm88K9bPBzrAVQ7I+clI/0o2N7ZVVkp1hqDASQQ==" + } + }, + "npm:@pinojs/redact": { + "type": "npm", + "name": "npm:@pinojs/redact", + "data": { + "version": "0.4.0", + "packageName": "@pinojs/redact", + "hash": "sha512-k2ENnmBugE/rzQfEcdWHcCY+/FM3VLzH9cYEsbdsoqrvzAKRhUZeRNhAZvB8OitQJ1TBed3yqWtdjzS6wJKBwg==" + } + }, + "npm:@pkgjs/parseargs": { + "type": "npm", + "name": "npm:@pkgjs/parseargs", + "data": { + "version": "0.11.0", + "packageName": "@pkgjs/parseargs", + "hash": "sha512-+1VkjdD0QBLPodGrJUeqarH8VAIvQODIbwh9XpP5Syisf7YoQgsJKPNFoqqLQlu+VQ/tVSshMR6loPMn8U+dPg==" + } + }, + "npm:@pkgr/core": { + "type": "npm", + "name": "npm:@pkgr/core", + "data": { + "version": "0.2.9", + "packageName": "@pkgr/core", + "hash": "sha512-QNqXyfVS2wm9hweSYD2O7F0G06uurj9kZ96TRQE5Y9hU7+tgdZwIkbAKc5Ocy1HxEY2kuDQa6cQ1WRs/O5LFKA==" + } + }, + "npm:@polka/url": { + "type": "npm", + "name": "npm:@polka/url", + "data": { + "version": "1.0.0-next.29", + "packageName": "@polka/url", + "hash": "sha512-wwQAWhWSuHaag8c4q/KN/vCoeOJYshAIvMQwD4GpSb3OiZklFfvAgmj0VCBBImRpuF/aFgIRzllXlVX93Jevww==" + } + }, + "npm:@poppinss/colors": { + "type": "npm", + "name": "npm:@poppinss/colors", + "data": { + "version": "4.1.5", + "packageName": "@poppinss/colors", + "hash": "sha512-FvdDqtcRCtz6hThExcFOgW0cWX+xwSMWcRuQe5ZEb2m7cVQOAVZOIMt+/v9RxGiD9/OY16qJBXK4CVKWAPalBw==" + } + }, + "npm:@poppinss/dumper": { + "type": "npm", + "name": "npm:@poppinss/dumper", + "data": { + "version": "0.6.4", + "packageName": "@poppinss/dumper", + "hash": "sha512-iG0TIdqv8xJ3Lt9O8DrPRxw1MRLjNpoqiSGU03P/wNLP/s0ra0udPJ1J2Tx5M0J3H/cVyEgpbn8xUKRY9j59kQ==" + } + }, + "npm:@poppinss/exception": { + "type": "npm", + "name": "npm:@poppinss/exception", + "data": { + "version": "1.2.2", + "packageName": "@poppinss/exception", + "hash": "sha512-m7bpKCD4QMlFCjA/nKTs23fuvoVFoA83brRKmObCUNmi/9tVu8Ve3w4YQAnJu4q3Tjf5fr685HYIC/IA2zHRSg==" + } + }, + "npm:@prisma/client-runtime-utils": { + "type": "npm", + "name": "npm:@prisma/client-runtime-utils", + "data": { + "version": "7.5.0", + "packageName": "@prisma/client-runtime-utils", + "hash": "sha512-KnJ2b4Si/pcWEtK68uM+h0h1oh80CZt2suhLTVuLaSKg4n58Q9jBF/A42Kw6Ma+aThy1yAhfDeTC0JvEmeZnFQ==" + } + }, + "npm:@prisma/client": { + "type": "npm", + "name": "npm:@prisma/client", + "data": { + "version": "7.5.0", + "packageName": "@prisma/client", + "hash": "sha512-h4hF9ctp+kSRs7ENHGsFQmHAgHcfkOCxbYt6Ti9Xi8x7D+kP4tTi9x51UKmiTH/OqdyJAO+8V+r+JA5AWdav7w==" + } + }, + "npm:@prisma/config": { + "type": "npm", + "name": "npm:@prisma/config", + "data": { + "version": "7.5.0", + "packageName": "@prisma/config", + "hash": "sha512-1J/9YEX7A889xM46PYg9e8VAuSL1IUmXJW3tEhMv7XQHDWlfC9YSkIw9sTYRaq5GswGlxZ+GnnyiNsUZ9JJhSQ==" + } + }, + "npm:@prisma/debug@7.2.0": { + "type": "npm", + "name": "npm:@prisma/debug@7.2.0", + "data": { + "version": "7.2.0", + "packageName": "@prisma/debug", + "hash": "sha512-YSGTiSlBAVJPzX4ONZmMotL+ozJwQjRmZweQNIq/ER0tQJKJynNkRB3kyvt37eOfsbMCXk3gnLF6J9OJ4QWftw==" + } + }, + "npm:@prisma/debug": { + "type": "npm", + "name": "npm:@prisma/debug", + "data": { + "version": "7.5.0", + "packageName": "@prisma/debug", + "hash": "sha512-163+nffny0JoPEkDhfNco0vcuT3ymIJc9+WX7MHSQhfkeKUmKe9/wqvGk5SjppT93DtBjVwr5HPJYlXbzm6qtg==" + } + }, + "npm:@prisma/dev": { + "type": "npm", + "name": "npm:@prisma/dev", + "data": { + "version": "0.20.0", + "packageName": "@prisma/dev", + "hash": "sha512-ovlBYwWor0OzG+yH4J3Ot+AneD818BttLA+Ii7wjbcLHUrnC4tbUPVGyNd3c/+71KETPKZfjhkTSpdS15dmXNQ==" + } + }, + "npm:@prisma/engines-version": { + "type": "npm", + "name": "npm:@prisma/engines-version", + "data": { + "version": "7.5.0-15.280c870be64f457428992c43c1f6d557fab6e29e", + "packageName": "@prisma/engines-version", + "hash": "sha512-E+iRV/vbJLl8iGjVr6g/TEWokA+gjkV/doZkaQN1i/ULVdDwGnPJDfLUIFGS3BVwlG/m6L8T4x1x5isl8hGMxA==" + } + }, + "npm:@prisma/engines": { + "type": "npm", + "name": "npm:@prisma/engines", + "data": { + "version": "7.5.0", + "packageName": "@prisma/engines", + "hash": "sha512-ondGRhzoaVpRWvFaQ5wH5zS1BIbhzbKqczKjCn6j3L0Zfe/LInjcEg8+xtB49AuZBX30qyx1ZtGoootUohz2pw==" + } + }, + "npm:@prisma/fetch-engine": { + "type": "npm", + "name": "npm:@prisma/fetch-engine", + "data": { + "version": "7.5.0", + "packageName": "@prisma/fetch-engine", + "hash": "sha512-kZCl2FV54qnyrVdnII8MI6qvt7HfU6Cbiz8dZ8PXz4f4lbSw45jEB9/gEMK2SGdiNhBKyk/Wv95uthoLhGMLYA==" + } + }, + "npm:@prisma/get-platform": { + "type": "npm", + "name": "npm:@prisma/get-platform", + "data": { + "version": "7.2.0", + "packageName": "@prisma/get-platform", + "hash": "sha512-k1V0l0Td1732EHpAfi2eySTezyllok9dXb6UQanajkJQzPUGi3vO2z7jdkz67SypFTdmbnyGYxvEvYZdZsMAVA==" + } + }, + "npm:@prisma/get-platform@7.5.0": { + "type": "npm", + "name": "npm:@prisma/get-platform@7.5.0", + "data": { + "version": "7.5.0", + "packageName": "@prisma/get-platform", + "hash": "sha512-7I+2y1nu/gkEKSiHHbcZ1HPe/euGdEqJZxEEMT0246q4De1+hla0ZzlTgvaT9dHcVCgLSuCG8v39db5qUUWNgw==" + } + }, + "npm:@prisma/query-plan-executor": { + "type": "npm", + "name": "npm:@prisma/query-plan-executor", + "data": { + "version": "7.2.0", + "packageName": "@prisma/query-plan-executor", + "hash": "sha512-EOZmNzcV8uJ0mae3DhTsiHgoNCuu1J9mULQpGCh62zN3PxPTd+qI9tJvk5jOst8WHKQNwJWR3b39t0XvfBB0WQ==" + } + }, + "npm:@prisma/studio-core": { + "type": "npm", + "name": "npm:@prisma/studio-core", + "data": { + "version": "0.21.1", + "packageName": "@prisma/studio-core", + "hash": "sha512-bOGqG/eMQtKC0XVvcVLRmhWWzm/I+0QUWqAEhEBtetpuS3k3V4IWqKGUONkAIT223DNXJMxMtZp36b1FmcdPeg==" + } + }, + "npm:@puppeteer/browsers": { + "type": "npm", + "name": "npm:@puppeteer/browsers", + "data": { + "version": "2.13.0", + "packageName": "@puppeteer/browsers", + "hash": "sha512-46BZJYJjc/WwmKjsvDFykHtXrtomsCIrwYQPOP7VfMJoZY2bsDF9oROBABR3paDjDcmkUye1Pb1BqdcdiipaWA==" + } + }, + "npm:@quansync/fs": { + "type": "npm", + "name": "npm:@quansync/fs", + "data": { + "version": "1.0.0", + "packageName": "@quansync/fs", + "hash": "sha512-4TJ3DFtlf1L5LDMaM6CanJ/0lckGNtJcMjQ1NAV6zDmA0tEHKZtxNKin8EgPaVX1YzljbxckyT2tJrpQKAtngQ==" + } + }, + "npm:@radix-ui/react-icons": { + "type": "npm", + "name": "npm:@radix-ui/react-icons", + "data": { + "version": "1.3.2", + "packageName": "@radix-ui/react-icons", + "hash": "sha512-fyQIhGDhzfc9pK2kH6Pl9c4BDJGfMkPqkyIgYDthyNYoNg3wVhoJMMh19WS4Up/1KMPFVpNsT2q3WmXn2N1m6g==" + } + }, + "npm:@remix-run/node-fetch-server": { + "type": "npm", + "name": "npm:@remix-run/node-fetch-server", + "data": { + "version": "0.8.1", + "packageName": "@remix-run/node-fetch-server", + "hash": "sha512-J1dev372wtJqmqn9U/qbpbZxbJSQrogNN2+Qv1lKlpATpe/WQ9aCZfl/xSb9d2Rgh1IyLSvNxZAXPZxruO6Xig==" + } + }, + "npm:@remusao/guess-url-type": { + "type": "npm", + "name": "npm:@remusao/guess-url-type", + "data": { + "version": "2.1.0", + "packageName": "@remusao/guess-url-type", + "hash": "sha512-zI3dlTUxpjvx2GCxp9nLOSK5yEIqDCpxlAVGwb2Y49RKkS72oeNaxxo+VWS5+XQ5+Mf8Zfp9ZXIlk+G5eoEN8A==" + } + }, + "npm:@remusao/small": { + "type": "npm", + "name": "npm:@remusao/small", + "data": { + "version": "2.1.0", + "packageName": "@remusao/small", + "hash": "sha512-Y1kyjZp7JU7dXdyOdxHVNfoTr1XLZJTyQP36/esZUU/WRWq9XY0PV2HsE3CsIHuaTf4pvgWv2pvzvnZ//UHIJQ==" + } + }, + "npm:@remusao/smaz-compress": { + "type": "npm", + "name": "npm:@remusao/smaz-compress", + "data": { + "version": "2.2.0", + "packageName": "@remusao/smaz-compress", + "hash": "sha512-TXpTPgILRUYOt2rEe0+9PC12xULPvBqeMpmipzB9A7oM4fa9Ztvy9lLYzPTd7tiQEeoNa1pmxihpKfJtsxnM/w==" + } + }, + "npm:@remusao/smaz-decompress": { + "type": "npm", + "name": "npm:@remusao/smaz-decompress", + "data": { + "version": "2.2.0", + "packageName": "@remusao/smaz-decompress", + "hash": "sha512-ERAPwxPaA0/yg4hkNU7T2S+lnp9jj1sApcQMtOyROvOQyo+Zuh6Hn/oRcXr8mmjlYzyRaC7E6r3mT1nrdHR6pg==" + } + }, + "npm:@remusao/smaz": { + "type": "npm", + "name": "npm:@remusao/smaz", + "data": { + "version": "2.2.0", + "packageName": "@remusao/smaz", + "hash": "sha512-eSd3Qs0ELP/e7tU1SI5RWXcCn9KjDgvBY+KtWbL4i2QvvHhJOfdIt4v0AA3S5BbLWAr5dCEC7C4LUfogDm6q/Q==" + } + }, + "npm:@remusao/trie": { + "type": "npm", + "name": "npm:@remusao/trie", + "data": { + "version": "2.1.0", + "packageName": "@remusao/trie", + "hash": "sha512-Er3Q8q0/2OcCJPQYJOPLmCuqO0wu7cav3SPtpjlxSbjFi1x+A1pZkkLD6c9q2rGEkGW/tkrRzfrhNMt8VQjzXg==" + } + }, + "npm:@rolldown/binding-android-arm64@1.0.0-beta.51": { + "type": "npm", + "name": "npm:@rolldown/binding-android-arm64@1.0.0-beta.51", + "data": { + "version": "1.0.0-beta.51", + "packageName": "@rolldown/binding-android-arm64", + "hash": "sha512-Ctn8FUXKWWQI9pWC61P1yumS9WjQtelNS9riHwV7oCkknPGaAry4o7eFx2KgoLMnI2BgFJYpW7Im8/zX3BuONg==" + } + }, + "npm:@rolldown/binding-android-arm64@1.0.0-rc.11": { + "type": "npm", + "name": "npm:@rolldown/binding-android-arm64@1.0.0-rc.11", + "data": { + "version": "1.0.0-rc.11", + "packageName": "@rolldown/binding-android-arm64", + "hash": "sha512-SJ+/g+xNnOh6NqYxD0V3uVN4W3VfnrGsC9/hoglicgTNfABFG9JjISvkkU0dNY84MNHLWyOgxP9v9Y9pX4S7+A==" + } + }, + "npm:@rolldown/binding-android-arm64@1.0.0-rc.9": { + "type": "npm", + "name": "npm:@rolldown/binding-android-arm64@1.0.0-rc.9", + "data": { + "version": "1.0.0-rc.9", + "packageName": "@rolldown/binding-android-arm64", + "hash": "sha512-lcJL0bN5hpgJfSIz/8PIf02irmyL43P+j1pTCfbD1DbLkmGRuFIA4DD3B3ZOvGqG0XiVvRznbKtN0COQVaKUTg==" + } + }, + "npm:@rolldown/binding-darwin-arm64@1.0.0-beta.51": { + "type": "npm", + "name": "npm:@rolldown/binding-darwin-arm64@1.0.0-beta.51", + "data": { + "version": "1.0.0-beta.51", + "packageName": "@rolldown/binding-darwin-arm64", + "hash": "sha512-EL1aRW2Oq15ShUEkBPsDtLMO8GTqfb/ktM/dFaVzXKQiEE96Ss6nexMgfgQrg8dGnNpndFyffVDb5IdSibsu1g==" + } + }, + "npm:@rolldown/binding-darwin-arm64@1.0.0-rc.11": { + "type": "npm", + "name": "npm:@rolldown/binding-darwin-arm64@1.0.0-rc.11", + "data": { + "version": "1.0.0-rc.11", + "packageName": "@rolldown/binding-darwin-arm64", + "hash": "sha512-7WQgR8SfOPwmDZGFkThUvsmd/nwAWv91oCO4I5LS7RKrssPZmOt7jONN0cW17ydGC1n/+puol1IpoieKqQidmg==" + } + }, + "npm:@rolldown/binding-darwin-arm64@1.0.0-rc.9": { + "type": "npm", + "name": "npm:@rolldown/binding-darwin-arm64@1.0.0-rc.9", + "data": { + "version": "1.0.0-rc.9", + "packageName": "@rolldown/binding-darwin-arm64", + "hash": "sha512-J7Zk3kLYFsLtuH6U+F4pS2sYVzac0qkjcO5QxHS7OS7yZu2LRs+IXo+uvJ/mvpyUljDJ3LROZPoQfgBIpCMhdQ==" + } + }, + "npm:@rolldown/binding-darwin-x64@1.0.0-beta.51": { + "type": "npm", + "name": "npm:@rolldown/binding-darwin-x64@1.0.0-beta.51", + "data": { + "version": "1.0.0-beta.51", + "packageName": "@rolldown/binding-darwin-x64", + "hash": "sha512-uGtYKlFen9pMIPvkHPWZVDtmYhMQi5g5Ddsndg1gf3atScKYKYgs5aDP4DhHeTwGXQglhfBG7lEaOIZ4UAIWww==" + } + }, + "npm:@rolldown/binding-darwin-x64@1.0.0-rc.11": { + "type": "npm", + "name": "npm:@rolldown/binding-darwin-x64@1.0.0-rc.11", + "data": { + "version": "1.0.0-rc.11", + "packageName": "@rolldown/binding-darwin-x64", + "hash": "sha512-39Ks6UvIHq4rEogIfQBoBRusj0Q0nPVWIvqmwBLaT6aqQGIakHdESBVOPRRLacy4WwUPIx4ZKzfZ9PMW+IeyUQ==" + } + }, + "npm:@rolldown/binding-darwin-x64@1.0.0-rc.9": { + "type": "npm", + "name": "npm:@rolldown/binding-darwin-x64@1.0.0-rc.9", + "data": { + "version": "1.0.0-rc.9", + "packageName": "@rolldown/binding-darwin-x64", + "hash": "sha512-iwtmmghy8nhfRGeNAIltcNXzD0QMNaaA5U/NyZc1Ia4bxrzFByNMDoppoC+hl7cDiUq5/1CnFthpT9n+UtfFyg==" + } + }, + "npm:@rolldown/binding-freebsd-x64@1.0.0-beta.51": { + "type": "npm", + "name": "npm:@rolldown/binding-freebsd-x64@1.0.0-beta.51", + "data": { + "version": "1.0.0-beta.51", + "packageName": "@rolldown/binding-freebsd-x64", + "hash": "sha512-JRoVTQtHYbZj1P07JLiuTuXjiBtIa7ag7/qgKA6CIIXnAcdl4LrOf7nfDuHPJcuRKaP5dzecMgY99itvWfmUFQ==" + } + }, + "npm:@rolldown/binding-freebsd-x64@1.0.0-rc.11": { + "type": "npm", + "name": "npm:@rolldown/binding-freebsd-x64@1.0.0-rc.11", + "data": { + "version": "1.0.0-rc.11", + "packageName": "@rolldown/binding-freebsd-x64", + "hash": "sha512-jfsm0ZHfhiqrvWjJAmzsqiIFPz5e7mAoCOPBNTcNgkiid/LaFKiq92+0ojH+nmJmKYkre4t71BWXUZDNp7vsag==" + } + }, + "npm:@rolldown/binding-freebsd-x64@1.0.0-rc.9": { + "type": "npm", + "name": "npm:@rolldown/binding-freebsd-x64@1.0.0-rc.9", + "data": { + "version": "1.0.0-rc.9", + "packageName": "@rolldown/binding-freebsd-x64", + "hash": "sha512-DLFYI78SCiZr5VvdEplsVC2Vx53lnA4/Ga5C65iyldMVaErr86aiqCoNBLl92PXPfDtUYjUh+xFFor40ueNs4Q==" + } + }, + "npm:@rolldown/binding-linux-arm-gnueabihf@1.0.0-beta.51": { + "type": "npm", + "name": "npm:@rolldown/binding-linux-arm-gnueabihf@1.0.0-beta.51", + "data": { + "version": "1.0.0-beta.51", + "packageName": "@rolldown/binding-linux-arm-gnueabihf", + "hash": "sha512-BKATVnpPZ0TYBW9XfDwyd4kPGgvf964HiotIwUgpMrFOFYWqpZ+9ONNzMV4UFAYC7Hb5C2qgYQk/qj2OnAd4RQ==" + } + }, + "npm:@rolldown/binding-linux-arm-gnueabihf@1.0.0-rc.11": { + "type": "npm", + "name": "npm:@rolldown/binding-linux-arm-gnueabihf@1.0.0-rc.11", + "data": { + "version": "1.0.0-rc.11", + "packageName": "@rolldown/binding-linux-arm-gnueabihf", + "hash": "sha512-zjQaUtSyq1nVe3nxmlSCuR96T1LPlpvmJ0SZy0WJFEsV4kFbXcq2u68L4E6O0XeFj4aex9bEauqjW8UQBeAvfQ==" + } + }, + "npm:@rolldown/binding-linux-arm-gnueabihf@1.0.0-rc.9": { + "type": "npm", + "name": "npm:@rolldown/binding-linux-arm-gnueabihf@1.0.0-rc.9", + "data": { + "version": "1.0.0-rc.9", + "packageName": "@rolldown/binding-linux-arm-gnueabihf", + "hash": "sha512-CsjTmTwd0Hri6iTw/DRMK7kOZ7FwAkrO4h8YWKoX/kcj833e4coqo2wzIFywtch/8Eb5enQ/lwLM7w6JX1W5RQ==" + } + }, + "npm:@rolldown/binding-linux-arm64-gnu@1.0.0-beta.51": { + "type": "npm", + "name": "npm:@rolldown/binding-linux-arm64-gnu@1.0.0-beta.51", + "data": { + "version": "1.0.0-beta.51", + "packageName": "@rolldown/binding-linux-arm64-gnu", + "hash": "sha512-xLd7da5jkfbVsBCm1buIRdWtuXY8+hU3+6ESXY/Tk5X5DPHaifrUblhYDgmA34dQt6WyNC2kfXGgrduPEvDI6Q==" + } + }, + "npm:@rolldown/binding-linux-arm64-gnu@1.0.0-rc.11": { + "type": "npm", + "name": "npm:@rolldown/binding-linux-arm64-gnu@1.0.0-rc.11", + "data": { + "version": "1.0.0-rc.11", + "packageName": "@rolldown/binding-linux-arm64-gnu", + "hash": "sha512-WMW1yE6IOnehTcFE9eipFkm3XN63zypWlrJQ2iF7NrQ9b2LDRjumFoOGJE8RJJTJCTBAdmLMnJ8uVitACUUo1Q==" + } + }, + "npm:@rolldown/binding-linux-arm64-gnu@1.0.0-rc.9": { + "type": "npm", + "name": "npm:@rolldown/binding-linux-arm64-gnu@1.0.0-rc.9", + "data": { + "version": "1.0.0-rc.9", + "packageName": "@rolldown/binding-linux-arm64-gnu", + "hash": "sha512-2x9O2JbSPxpxMDhP9Z74mahAStibTlrBMW0520+epJH5sac7/LwZW5Bmg/E6CXuEF53JJFW509uP+lSedaUNxg==" + } + }, + "npm:@rolldown/binding-linux-arm64-musl@1.0.0-beta.51": { + "type": "npm", + "name": "npm:@rolldown/binding-linux-arm64-musl@1.0.0-beta.51", + "data": { + "version": "1.0.0-beta.51", + "packageName": "@rolldown/binding-linux-arm64-musl", + "hash": "sha512-EQFXTgHxxTzv3t5EmjUP/DfxzFYx9sMndfLsYaAY4DWF6KsK1fXGYsiupif6qPTViPC9eVmRm78q0pZU/kuIPg==" + } + }, + "npm:@rolldown/binding-linux-arm64-musl@1.0.0-rc.11": { + "type": "npm", + "name": "npm:@rolldown/binding-linux-arm64-musl@1.0.0-rc.11", + "data": { + "version": "1.0.0-rc.11", + "packageName": "@rolldown/binding-linux-arm64-musl", + "hash": "sha512-jfndI9tsfm4APzjNt6QdBkYwre5lRPUgHeDHoI7ydKUuJvz3lZeCfMsI56BZj+7BYqiKsJm7cfd/6KYV7ubrBg==" + } + }, + "npm:@rolldown/binding-linux-arm64-musl@1.0.0-rc.9": { + "type": "npm", + "name": "npm:@rolldown/binding-linux-arm64-musl@1.0.0-rc.9", + "data": { + "version": "1.0.0-rc.9", + "packageName": "@rolldown/binding-linux-arm64-musl", + "hash": "sha512-JA1QRW31ogheAIRhIg9tjMfsYbglXXYGNPLdPEYrwFxdbkQCAzvpSCSHCDWNl4hTtrol8WeboCSEpjdZK8qrCg==" + } + }, + "npm:@rolldown/binding-linux-ppc64-gnu@1.0.0-rc.11": { + "type": "npm", + "name": "npm:@rolldown/binding-linux-ppc64-gnu@1.0.0-rc.11", + "data": { + "version": "1.0.0-rc.11", + "packageName": "@rolldown/binding-linux-ppc64-gnu", + "hash": "sha512-ZlFgw46NOAGMgcdvdYwAGu2Q+SLFA9LzbJLW+iyMOJyhj5wk6P3KEE9Gct4xWwSzFoPI7JCdYmYMzVtlgQ+zfw==" + } + }, + "npm:@rolldown/binding-linux-ppc64-gnu@1.0.0-rc.9": { + "type": "npm", + "name": "npm:@rolldown/binding-linux-ppc64-gnu@1.0.0-rc.9", + "data": { + "version": "1.0.0-rc.9", + "packageName": "@rolldown/binding-linux-ppc64-gnu", + "hash": "sha512-aOKU9dJheda8Kj8Y3w9gnt9QFOO+qKPAl8SWd7JPHP+Cu0EuDAE5wokQubLzIDQWg2myXq2XhTpOVS07qqvT+w==" + } + }, + "npm:@rolldown/binding-linux-s390x-gnu@1.0.0-rc.11": { + "type": "npm", + "name": "npm:@rolldown/binding-linux-s390x-gnu@1.0.0-rc.11", + "data": { + "version": "1.0.0-rc.11", + "packageName": "@rolldown/binding-linux-s390x-gnu", + "hash": "sha512-hIOYmuT6ofM4K04XAZd3OzMySEO4K0/nc9+jmNcxNAxRi6c5UWpqfw3KMFV4MVFWL+jQsSh+bGw2VqmaPMTLyw==" + } + }, + "npm:@rolldown/binding-linux-s390x-gnu@1.0.0-rc.9": { + "type": "npm", + "name": "npm:@rolldown/binding-linux-s390x-gnu@1.0.0-rc.9", + "data": { + "version": "1.0.0-rc.9", + "packageName": "@rolldown/binding-linux-s390x-gnu", + "hash": "sha512-OalO94fqj7IWRn3VdXWty75jC5dk4C197AWEuMhIpvVv2lw9fiPhud0+bW2ctCxb3YoBZor71QHbY+9/WToadA==" + } + }, + "npm:@rolldown/binding-linux-x64-gnu@1.0.0-beta.51": { + "type": "npm", + "name": "npm:@rolldown/binding-linux-x64-gnu@1.0.0-beta.51", + "data": { + "version": "1.0.0-beta.51", + "packageName": "@rolldown/binding-linux-x64-gnu", + "hash": "sha512-p5P6Xpa68w3yFaAdSzIZJbj+AfuDnMDqNSeglBXM7UlJT14Q4zwK+rV+8Mhp9MiUb4XFISZtbI/seBprhkQbiQ==" + } + }, + "npm:@rolldown/binding-linux-x64-gnu": { + "type": "npm", + "name": "npm:@rolldown/binding-linux-x64-gnu", + "data": { + "version": "1.0.0-rc.11", + "packageName": "@rolldown/binding-linux-x64-gnu", + "hash": "sha512-qXBQQO9OvkjjQPLdUVr7Nr2t3QTZI7s4KZtfw7HzBgjbmAPSFwSv4rmET9lLSgq3rH/ndA3ngv3Qb8l2njoPNA==" + } + }, + "npm:@rolldown/binding-linux-x64-gnu@1.0.0-rc.9": { + "type": "npm", + "name": "npm:@rolldown/binding-linux-x64-gnu@1.0.0-rc.9", + "data": { + "version": "1.0.0-rc.9", + "packageName": "@rolldown/binding-linux-x64-gnu", + "hash": "sha512-cVEl1vZtBsBZna3YMjGXNvnYYrOJ7RzuWvZU0ffvJUexWkukMaDuGhUXn0rjnV0ptzGVkvc+vW9Yqy6h8YX4pg==" + } + }, + "npm:@rolldown/binding-linux-x64-musl@1.0.0-beta.51": { + "type": "npm", + "name": "npm:@rolldown/binding-linux-x64-musl@1.0.0-beta.51", + "data": { + "version": "1.0.0-beta.51", + "packageName": "@rolldown/binding-linux-x64-musl", + "hash": "sha512-sNVVyLa8HB8wkFipdfz1s6i0YWinwpbMWk5hO5S+XAYH2UH67YzUT13gs6wZTKg2x/3gtgXzYnHyF5wMIqoDAw==" + } + }, + "npm:@rolldown/binding-linux-x64-musl": { + "type": "npm", + "name": "npm:@rolldown/binding-linux-x64-musl", + "data": { + "version": "1.0.0-rc.11", + "packageName": "@rolldown/binding-linux-x64-musl", + "hash": "sha512-/tpFfoSTzUkH9LPY+cYbqZBDyyX62w5fICq9qzsHLL8uTI6BHip3Q9Uzft0wylk/i8OOwKik8OxW+QAhDmzwmg==" + } + }, + "npm:@rolldown/binding-linux-x64-musl@1.0.0-rc.9": { + "type": "npm", + "name": "npm:@rolldown/binding-linux-x64-musl@1.0.0-rc.9", + "data": { + "version": "1.0.0-rc.9", + "packageName": "@rolldown/binding-linux-x64-musl", + "hash": "sha512-UzYnKCIIc4heAKgI4PZ3dfBGUZefGCJ1TPDuLHoCzgrMYPb5Rv6TLFuYtyM4rWyHM7hymNdsg5ik2C+UD9VDbA==" + } + }, + "npm:@rolldown/binding-openharmony-arm64@1.0.0-beta.51": { + "type": "npm", + "name": "npm:@rolldown/binding-openharmony-arm64@1.0.0-beta.51", + "data": { + "version": "1.0.0-beta.51", + "packageName": "@rolldown/binding-openharmony-arm64", + "hash": "sha512-e/JMTz9Q8+T3g/deEi8DK44sFWZWGKr9AOCW5e8C8SCVWzAXqYXAG7FXBWBNzWEZK0Rcwo9TQHTQ9Q0gXgdCaA==" + } + }, + "npm:@rolldown/binding-openharmony-arm64@1.0.0-rc.11": { + "type": "npm", + "name": "npm:@rolldown/binding-openharmony-arm64@1.0.0-rc.11", + "data": { + "version": "1.0.0-rc.11", + "packageName": "@rolldown/binding-openharmony-arm64", + "hash": "sha512-mcp3Rio2w72IvdZG0oQ4bM2c2oumtwHfUfKncUM6zGgz0KgPz4YmDPQfnXEiY5t3+KD/i8HG2rOB/LxdmieK2g==" + } + }, + "npm:@rolldown/binding-openharmony-arm64@1.0.0-rc.9": { + "type": "npm", + "name": "npm:@rolldown/binding-openharmony-arm64@1.0.0-rc.9", + "data": { + "version": "1.0.0-rc.9", + "packageName": "@rolldown/binding-openharmony-arm64", + "hash": "sha512-+6zoiF+RRyf5cdlFQP7nm58mq7+/2PFaY2DNQeD4B87N36JzfF/l9mdBkkmTvSYcYPE8tMh/o3cRlsx1ldLfog==" + } + }, + "npm:@rolldown/binding-wasm32-wasi@1.0.0-beta.51": { + "type": "npm", + "name": "npm:@rolldown/binding-wasm32-wasi@1.0.0-beta.51", + "data": { + "version": "1.0.0-beta.51", + "packageName": "@rolldown/binding-wasm32-wasi", + "hash": "sha512-We3LWqSu6J9s5Y0MK+N7fUiiu37aBGPG3Pc347EoaROuAwkCS2u9xJ5dpIyLW4B49CIbS3KaPmn4kTgPb3EyPw==" + } + }, + "npm:@rolldown/binding-wasm32-wasi@1.0.0-rc.11": { + "type": "npm", + "name": "npm:@rolldown/binding-wasm32-wasi@1.0.0-rc.11", + "data": { + "version": "1.0.0-rc.11", + "packageName": "@rolldown/binding-wasm32-wasi", + "hash": "sha512-LXk5Hii1Ph9asuGRjBuz8TUxdc1lWzB7nyfdoRgI0WGPZKmCxvlKk8KfYysqtr4MfGElu/f/pEQRh8fcEgkrWw==" + } + }, + "npm:@rolldown/binding-wasm32-wasi@1.0.0-rc.9": { + "type": "npm", + "name": "npm:@rolldown/binding-wasm32-wasi@1.0.0-rc.9", + "data": { + "version": "1.0.0-rc.9", + "packageName": "@rolldown/binding-wasm32-wasi", + "hash": "sha512-rgFN6sA/dyebil3YTlL2evvi/M+ivhfnyxec7AccTpRPccno/rPoNlqybEZQBkcbZu8Hy+eqNJCqfBR8P7Pg8g==" + } + }, + "npm:@rolldown/binding-win32-arm64-msvc@1.0.0-beta.51": { + "type": "npm", + "name": "npm:@rolldown/binding-win32-arm64-msvc@1.0.0-beta.51", + "data": { + "version": "1.0.0-beta.51", + "packageName": "@rolldown/binding-win32-arm64-msvc", + "hash": "sha512-fj56buHRuMM+r/cb6ZYfNjNvO/0xeFybI6cTkTROJatdP4fvmQ1NS8D/Lm10FCSDEOkqIz8hK3TGpbAThbPHsA==" + } + }, + "npm:@rolldown/binding-win32-arm64-msvc@1.0.0-rc.11": { + "type": "npm", + "name": "npm:@rolldown/binding-win32-arm64-msvc@1.0.0-rc.11", + "data": { + "version": "1.0.0-rc.11", + "packageName": "@rolldown/binding-win32-arm64-msvc", + "hash": "sha512-dDwf5otnx0XgRY1yqxOC4ITizcdzS/8cQ3goOWv3jFAo4F+xQYni+hnMuO6+LssHHdJW7+OCVL3CoU4ycnh35Q==" + } + }, + "npm:@rolldown/binding-win32-arm64-msvc@1.0.0-rc.9": { + "type": "npm", + "name": "npm:@rolldown/binding-win32-arm64-msvc@1.0.0-rc.9", + "data": { + "version": "1.0.0-rc.9", + "packageName": "@rolldown/binding-win32-arm64-msvc", + "hash": "sha512-lHVNUG/8nlF1IQk1C0Ci574qKYyty2goMiPlRqkC5R+3LkXDkL5Dhx8ytbxq35m+pkHVIvIxviD+TWLdfeuadA==" + } + }, + "npm:@rolldown/binding-win32-ia32-msvc": { + "type": "npm", + "name": "npm:@rolldown/binding-win32-ia32-msvc", + "data": { + "version": "1.0.0-beta.51", + "packageName": "@rolldown/binding-win32-ia32-msvc", + "hash": "sha512-fkqEqaeEx8AySXiDm54b/RdINb3C0VovzJA3osMhZsbn6FoD73H0AOIiaVAtGr6x63hefruVKTX8irAm4Jkt2w==" + } + }, + "npm:@rolldown/binding-win32-x64-msvc@1.0.0-beta.51": { + "type": "npm", + "name": "npm:@rolldown/binding-win32-x64-msvc@1.0.0-beta.51", + "data": { + "version": "1.0.0-beta.51", + "packageName": "@rolldown/binding-win32-x64-msvc", + "hash": "sha512-CWuLG/HMtrVcjKGa0C4GnuxONrku89g0+CsH8nT0SNhOtREXuzwgjIXNJImpE/A/DMf9JF+1Xkrq/YRr+F/rCg==" + } + }, + "npm:@rolldown/binding-win32-x64-msvc@1.0.0-rc.11": { + "type": "npm", + "name": "npm:@rolldown/binding-win32-x64-msvc@1.0.0-rc.11", + "data": { + "version": "1.0.0-rc.11", + "packageName": "@rolldown/binding-win32-x64-msvc", + "hash": "sha512-LN4/skhSggybX71ews7dAj6r2geaMJfm3kMbK2KhFMg9B10AZXnKoLCVVgzhMHL0S+aKtr4p8QbAW8k+w95bAA==" + } + }, + "npm:@rolldown/binding-win32-x64-msvc@1.0.0-rc.9": { + "type": "npm", + "name": "npm:@rolldown/binding-win32-x64-msvc@1.0.0-rc.9", + "data": { + "version": "1.0.0-rc.9", + "packageName": "@rolldown/binding-win32-x64-msvc", + "hash": "sha512-G0oA4+w1iY5AGi5HcDTxWsoxF509hrFIPB2rduV5aDqS9FtDg1CAfa7V34qImbjfhIcA8C+RekocJZA96EarwQ==" + } + }, + "npm:@rolldown/pluginutils@1.0.0-beta.51": { + "type": "npm", + "name": "npm:@rolldown/pluginutils@1.0.0-beta.51", + "data": { + "version": "1.0.0-beta.51", + "packageName": "@rolldown/pluginutils", + "hash": "sha512-51/8cNXMrqWqX3o8DZidhwz1uYq0BhHDDSfVygAND1Skx5s1TDw3APSSxCMcFFedwgqGcx34gRouwY+m404BBQ==" + } + }, + "npm:@rolldown/pluginutils@1.0.0-rc.11": { + "type": "npm", + "name": "npm:@rolldown/pluginutils@1.0.0-rc.11", + "data": { + "version": "1.0.0-rc.11", + "packageName": "@rolldown/pluginutils", + "hash": "sha512-xQO9vbwBecJRv9EUcQ/y0dzSTJgA7Q6UVN7xp6B81+tBGSLVAK03yJ9NkJaUA7JFD91kbjxRSC/mDnmvXzbHoQ==" + } + }, + "npm:@rolldown/pluginutils@1.0.0-rc.2": { + "type": "npm", + "name": "npm:@rolldown/pluginutils@1.0.0-rc.2", + "data": { + "version": "1.0.0-rc.2", + "packageName": "@rolldown/pluginutils", + "hash": "sha512-izyXV/v+cHiRfozX62W9htOAvwMo4/bXKDrQ+vom1L1qRuexPock/7VZDAhnpHCLNejd3NJ6hiab+tO0D44Rgw==" + } + }, + "npm:@rolldown/pluginutils": { + "type": "npm", + "name": "npm:@rolldown/pluginutils", + "data": { + "version": "1.0.0-rc.7", + "packageName": "@rolldown/pluginutils", + "hash": "sha512-qujRfC8sFVInYSPPMLQByRh7zhwkGFS4+tyMQ83srV1qrxL4g8E2tyxVVyxd0+8QeBM1mIk9KbWxkegRr76XzA==" + } + }, + "npm:@rolldown/pluginutils@1.0.0-rc.9": { + "type": "npm", + "name": "npm:@rolldown/pluginutils@1.0.0-rc.9", + "data": { + "version": "1.0.0-rc.9", + "packageName": "@rolldown/pluginutils", + "hash": "sha512-w6oiRWgEBl04QkFZgmW+jnU1EC9b57Oihi2ot3HNWIQRqgHp5PnYDia5iZ5FF7rpa4EQdiqMDXjlqKGXBhsoXw==" + } + }, + "npm:@rollup/pluginutils": { + "type": "npm", + "name": "npm:@rollup/pluginutils", + "data": { + "version": "5.3.0", + "packageName": "@rollup/pluginutils", + "hash": "sha512-5EdhGZtnu3V88ces7s53hhfK5KSASnJZv8Lulpc04cWO3REESroJXg73DFsOmgbU2BhwV0E20bu2IDZb3VKW4Q==" + } + }, + "npm:@sec-ant/readable-stream": { + "type": "npm", + "name": "npm:@sec-ant/readable-stream", + "data": { + "version": "0.4.1", + "packageName": "@sec-ant/readable-stream", + "hash": "sha512-831qok9r2t8AlxLko40y2ebgSDhenenCatLVeW/uBtnHPyhHOvG0C7TvfgecV+wHzIm5KUICgzmVpWS+IMEAeg==" + } + }, + "npm:@sentry-internal/browser-utils": { + "type": "npm", + "name": "npm:@sentry-internal/browser-utils", + "data": { + "version": "10.45.0", + "packageName": "@sentry-internal/browser-utils", + "hash": "sha512-ZPZpeIarXKScvquGx2AfNKcYiVNDA4wegMmjyGVsTA2JPmP0TrJoO3UybJS6KGDeee8V3I3EfD/ruauMm7jOFQ==" + } + }, + "npm:@sentry-internal/feedback": { + "type": "npm", + "name": "npm:@sentry-internal/feedback", + "data": { + "version": "10.45.0", + "packageName": "@sentry-internal/feedback", + "hash": "sha512-vCSurazFVq7RUeYiM5X326jA5gOVrWYD6lYX2fbjBOMcyCEhDnveNxMT62zKkZDyNT/jyD194nz/cjntBUkyWA==" + } + }, + "npm:@sentry-internal/replay-canvas": { + "type": "npm", + "name": "npm:@sentry-internal/replay-canvas", + "data": { + "version": "10.45.0", + "packageName": "@sentry-internal/replay-canvas", + "hash": "sha512-nvq/AocdZTuD7y0KSiWi3gVaY0s5HOFy86mC/v1kDZmT/jsBAzN5LDkk/f1FvsWma1peqQmpUqxvhC+YIW294Q==" + } + }, + "npm:@sentry-internal/replay": { + "type": "npm", + "name": "npm:@sentry-internal/replay", + "data": { + "version": "10.45.0", + "packageName": "@sentry-internal/replay", + "hash": "sha512-vjosRoGA1bzhVAEO1oce+CsRdd70quzBeo7WvYqpcUnoLe/Rv8qpOMqWX3j26z7XfFHMExWQNQeLxmtYOArvlw==" + } + }, + "npm:@sentry/babel-plugin-component-annotate": { + "type": "npm", + "name": "npm:@sentry/babel-plugin-component-annotate", + "data": { + "version": "5.1.1", + "packageName": "@sentry/babel-plugin-component-annotate", + "hash": "sha512-x2wEpBHwsTyTF2rWsLKJlzrRF1TTIGOfX+ngdE+Yd5DBkoS58HwQv824QOviPGQRla4/ypISqAXzjdDPL/zalg==" + } + }, + "npm:@sentry/browser": { + "type": "npm", + "name": "npm:@sentry/browser", + "data": { + "version": "10.45.0", + "packageName": "@sentry/browser", + "hash": "sha512-e/a8UMiQhqqv706McSIcG6XK+AoQf9INthi2pD+giZfNRTzXTdqHzUT5OIO5hg8Am6eF63nDJc+vrYNPhzs51Q==" + } + }, + "npm:@sentry/bundler-plugin-core": { + "type": "npm", + "name": "npm:@sentry/bundler-plugin-core", + "data": { + "version": "5.1.1", + "packageName": "@sentry/bundler-plugin-core", + "hash": "sha512-F+itpwR9DyQR7gEkrXd2tigREPTvtF5lC8qu6e4anxXYRTui1+dVR0fXNwjpyAZMhIesLfXRN7WY7ggdj7hi0Q==" + } + }, + "npm:@sentry/cli-darwin": { + "type": "npm", + "name": "npm:@sentry/cli-darwin", + "data": { + "version": "2.58.5", + "packageName": "@sentry/cli-darwin", + "hash": "sha512-lYrNzenZFJftfwSya7gwrHGxtE+Kob/e1sr9lmHMFOd4utDlmq0XFDllmdZAMf21fxcPRI1GL28ejZ3bId01fQ==" + } + }, + "npm:@sentry/cli-linux-arm64": { + "type": "npm", + "name": "npm:@sentry/cli-linux-arm64", + "data": { + "version": "2.58.5", + "packageName": "@sentry/cli-linux-arm64", + "hash": "sha512-/4gywFeBqRB6tR/iGMRAJ3HRqY6Z7Yp4l8ZCbl0TDLAfHNxu7schEw4tSnm2/Hh9eNMiOVy4z58uzAWlZXAYBQ==" + } + }, + "npm:@sentry/cli-linux-arm": { + "type": "npm", + "name": "npm:@sentry/cli-linux-arm", + "data": { + "version": "2.58.5", + "packageName": "@sentry/cli-linux-arm", + "hash": "sha512-KtHweSIomYL4WVDrBrYSYJricKAAzxUgX86kc6OnlikbyOhoK6Fy8Vs6vwd52P6dvWPjgrMpUYjW2M5pYXQDUw==" + } + }, + "npm:@sentry/cli-linux-i686": { + "type": "npm", + "name": "npm:@sentry/cli-linux-i686", + "data": { + "version": "2.58.5", + "packageName": "@sentry/cli-linux-i686", + "hash": "sha512-G7261dkmyxqlMdyvyP06b+RTIVzp1gZNgglj5UksxSouSUqRd/46W/2pQeOMPhloDYo9yLtCN2YFb3Mw4aUsWw==" + } + }, + "npm:@sentry/cli-linux-x64": { + "type": "npm", + "name": "npm:@sentry/cli-linux-x64", + "data": { + "version": "2.58.5", + "packageName": "@sentry/cli-linux-x64", + "hash": "sha512-rP04494RSmt86xChkQ+ecBNRYSPbyXc4u0IA7R7N1pSLCyO74e5w5Al+LnAq35cMfVbZgz5Sm0iGLjyiUu4I1g==" + } + }, + "npm:@sentry/cli-win32-arm64": { + "type": "npm", + "name": "npm:@sentry/cli-win32-arm64", + "data": { + "version": "2.58.5", + "packageName": "@sentry/cli-win32-arm64", + "hash": "sha512-AOJ2nCXlQL1KBaCzv38m3i2VmSHNurUpm7xVKd6yAHX+ZoVBI8VT0EgvwmtJR2TY2N2hNCC7UrgRmdUsQ152bA==" + } + }, + "npm:@sentry/cli-win32-i686": { + "type": "npm", + "name": "npm:@sentry/cli-win32-i686", + "data": { + "version": "2.58.5", + "packageName": "@sentry/cli-win32-i686", + "hash": "sha512-EsuboLSOnlrN7MMPJ1eFvfMDm+BnzOaSWl8eYhNo8W/BIrmNgpRUdBwnWn9Q2UOjJj5ZopukmsiMYtU/D7ml9g==" + } + }, + "npm:@sentry/cli-win32-x64": { + "type": "npm", + "name": "npm:@sentry/cli-win32-x64", + "data": { + "version": "2.58.5", + "packageName": "@sentry/cli-win32-x64", + "hash": "sha512-IZf+XIMiQwj+5NzqbOQfywlOitmCV424Vtf9c+ep61AaVScUFD1TSrQbOcJJv5xGxhlxNOMNgMeZhdexdzrKZg==" + } + }, + "npm:@sentry/cli": { + "type": "npm", + "name": "npm:@sentry/cli", + "data": { + "version": "2.58.5", + "packageName": "@sentry/cli", + "hash": "sha512-tavJ7yGUZV+z3Ct2/ZB6mg339i08sAk6HDkgqmSRuQEu2iLS5sl9HIvuXfM6xjv8fwlgFOSy++WNABNAcGHUbg==" + } + }, + "npm:@sentry/core": { + "type": "npm", + "name": "npm:@sentry/core", + "data": { + "version": "10.45.0", + "packageName": "@sentry/core", + "hash": "sha512-s69UXxvefeQxuZ5nY7/THtTrIEvJxNVCp3ns4kwoCw1qMpgpvn/296WCKVmM7MiwnaAdzEKnAvLAwaxZc2nM7Q==" + } + }, + "npm:@sentry/react": { + "type": "npm", + "name": "npm:@sentry/react", + "data": { + "version": "10.45.0", + "packageName": "@sentry/react", + "hash": "sha512-jLezuxi4BUIU3raKyAPR5xMbQG/nhwnWmKo5p11NCbLmWzkS+lxoyDTUB4B8TAKZLfdtdkKLOn1S0tFc8vbUHw==" + } + }, + "npm:@sentry/rollup-plugin": { + "type": "npm", + "name": "npm:@sentry/rollup-plugin", + "data": { + "version": "5.1.1", + "packageName": "@sentry/rollup-plugin", + "hash": "sha512-1d5NkdRR6aKWBP7czkY8sFFWiKnfmfRpQOj+m9bJTsyTjbMiEQJst6315w5pCVlRItPhBqpAraqAhutZFgvyVg==" + } + }, + "npm:@sentry/solid": { + "type": "npm", + "name": "npm:@sentry/solid", + "data": { + "version": "10.45.0", + "packageName": "@sentry/solid", + "hash": "sha512-dhdFrlCHeA39ukkXTGI6ltW3z5flMI3zeRT54+q/e700VR7802OpojHJlboz1YB5wStH+grhVnxf7p0UZyz7Nw==" + } + }, + "npm:@sentry/vite-plugin": { + "type": "npm", + "name": "npm:@sentry/vite-plugin", + "data": { + "version": "5.1.1", + "packageName": "@sentry/vite-plugin", + "hash": "sha512-i6NWUDi2SDikfSUeMJvJTRdwEKYSfTd+mvBO2Ja51S1YK+hnickBuDfD+RvPerIXLuyRu3GamgNPbNqgCGUg/Q==" + } + }, + "npm:@sentry/vue": { + "type": "npm", + "name": "npm:@sentry/vue", + "data": { + "version": "10.45.0", + "packageName": "@sentry/vue", + "hash": "sha512-p6ghTgQtiCBZ+Yw0B2xmC69S8AdCRRsYvbTHW7MJYspwNnJDs7rqgCBqOxNhvr3tsKdDuEOEHLtf/5hbKi+8xQ==" + } + }, + "npm:@sinclair/typebox": { + "type": "npm", + "name": "npm:@sinclair/typebox", + "data": { + "version": "0.34.48", + "packageName": "@sinclair/typebox", + "hash": "sha512-kKJTNuK3AQOrgjjotVxMrCn1sUJwM76wMszfq1kdU4uYVJjvEWuFQ6HgvLt4Xz3fSmZlTOxJ/Ie13KnIcWQXFA==" + } + }, + "npm:@sindresorhus/is": { + "type": "npm", + "name": "npm:@sindresorhus/is", + "data": { + "version": "4.6.0", + "packageName": "@sindresorhus/is", + "hash": "sha512-t09vSN3MdfsyCHoFcTRCH/iUtG7OJ0CsjzB8cjAmKc/va/kIgeDI/TxsigdncE/4be734m0cvIYwNaV4i2XqAw==" + } + }, + "npm:@sindresorhus/is@7.1.0": { + "type": "npm", + "name": "npm:@sindresorhus/is@7.1.0", + "data": { + "version": "7.1.0", + "packageName": "@sindresorhus/is", + "hash": "sha512-7F/yz2IphV39hiS2zB4QYVkivrptHHh0K8qJJd9HhuWSdvf8AN7NpebW3CcDZDBQsUPMoDKWsY2WWgW7bqOcfA==" + } + }, + "npm:@sindresorhus/merge-streams": { + "type": "npm", + "name": "npm:@sindresorhus/merge-streams", + "data": { + "version": "4.0.0", + "packageName": "@sindresorhus/merge-streams", + "hash": "sha512-tlqY9xq5ukxTUZBmoOp+m61cqwQD5pHJtFY3Mn8CA8ps6yghLH/Hw8UPdqg4OLmFW3IFlcXnQNmo/dh8HzXYIQ==" + } + }, + "npm:@solid-primitives/props": { + "type": "npm", + "name": "npm:@solid-primitives/props", + "data": { + "version": "3.2.2", + "packageName": "@solid-primitives/props", + "hash": "sha512-lZOTwFJajBrshSyg14nBMEP0h8MXzPowGO0s3OeiR3z6nXHTfj0FhzDtJMv+VYoRJKQHG2QRnJTgCzK6erARAw==" + } + }, + "npm:@solid-primitives/refs": { + "type": "npm", + "name": "npm:@solid-primitives/refs", + "data": { + "version": "1.1.2", + "packageName": "@solid-primitives/refs", + "hash": "sha512-K7tf2thy7L+YJjdqXspXOg5xvNEOH8tgEWsp0+1mQk3obHBRD6hEjYZk7p7FlJphSZImS35je3UfmWuD7MhDfg==" + } + }, + "npm:@solid-primitives/scheduled": { + "type": "npm", + "name": "npm:@solid-primitives/scheduled", + "data": { + "version": "1.5.3", + "packageName": "@solid-primitives/scheduled", + "hash": "sha512-oNwLE6E6lxJAWrc8QXuwM0k2oU1BnANnkChwMw82aK1j3+mWGJkG1IFe5gCwbV+afYmjI76t9JJV3md/8tLw+g==" + } + }, + "npm:@solid-primitives/transition-group": { + "type": "npm", + "name": "npm:@solid-primitives/transition-group", + "data": { + "version": "1.1.2", + "packageName": "@solid-primitives/transition-group", + "hash": "sha512-gnHS0OmcdjeoHN9n7Khu8KNrOlRc8a2weETDt2YT6o1zeW/XtUC6Db3Q9pkMU/9cCKdEmN4b0a/41MKAHRhzWA==" + } + }, + "npm:@solid-primitives/utils": { + "type": "npm", + "name": "npm:@solid-primitives/utils", + "data": { + "version": "6.3.2", + "packageName": "@solid-primitives/utils", + "hash": "sha512-hZ/M/qr25QOCcwDPOHtGjxTD8w2mNyVAYvcfgwzBHq2RwNqHNdDNsMZYap20+ruRwW4A3Cdkczyoz0TSxLCAPQ==" + } + }, + "npm:@speed-highlight/core": { + "type": "npm", + "name": "npm:@speed-highlight/core", + "data": { + "version": "1.2.7", + "packageName": "@speed-highlight/core", + "hash": "sha512-0dxmVj4gxg3Jg879kvFS/msl4s9F3T9UXC1InxgOf7t5NvcPD97u/WTA5vL/IxWHMn7qSxBozqrnnE2wvl1m8g==" + } + }, + "npm:@stackblitz/sdk": { + "type": "npm", + "name": "npm:@stackblitz/sdk", + "data": { + "version": "1.11.0", + "packageName": "@stackblitz/sdk", + "hash": "sha512-DFQGANNkEZRzFk1/rDP6TcFdM82ycHE+zfl9C/M/jXlH68jiqHWHFMQURLELoD8koxvu/eW5uhg94NSAZlYrUQ==" + } + }, + "npm:@standard-schema/spec": { + "type": "npm", + "name": "npm:@standard-schema/spec", + "data": { + "version": "1.1.0", + "packageName": "@standard-schema/spec", + "hash": "sha512-l2aFy5jALhniG5HgqrD6jXLi/rUWrKvqN/qJx6yoJsgKhblVd+iqqU4RCXavm/jPityDo5TCvKMnpjKnOriy0w==" + } + }, + "npm:@szmarczak/http-timer": { + "type": "npm", + "name": "npm:@szmarczak/http-timer", + "data": { + "version": "4.0.6", + "packageName": "@szmarczak/http-timer", + "hash": "sha512-4BAffykYOgO+5nzBWYwE3W90sBgLJoUPRWWcL8wlyiM8IB8ipJz3UMJ9KXQd1RKQXpKp8Tutn80HZtWsu2u76w==" + } + }, + "npm:@tailwindcss/node": { + "type": "npm", + "name": "npm:@tailwindcss/node", + "data": { + "version": "4.2.2", + "packageName": "@tailwindcss/node", + "hash": "sha512-pXS+wJ2gZpVXqFaUEjojq7jzMpTGf8rU6ipJz5ovJV6PUGmlJ+jvIwGrzdHdQ80Sg+wmQxUFuoW1UAAwHNEdFA==" + } + }, + "npm:@tailwindcss/oxide-android-arm64": { + "type": "npm", + "name": "npm:@tailwindcss/oxide-android-arm64", + "data": { + "version": "4.2.2", + "packageName": "@tailwindcss/oxide-android-arm64", + "hash": "sha512-dXGR1n+P3B6748jZO/SvHZq7qBOqqzQ+yFrXpoOWWALWndF9MoSKAT3Q0fYgAzYzGhxNYOoysRvYlpixRBBoDg==" + } + }, + "npm:@tailwindcss/oxide-darwin-arm64": { + "type": "npm", + "name": "npm:@tailwindcss/oxide-darwin-arm64", + "data": { + "version": "4.2.2", + "packageName": "@tailwindcss/oxide-darwin-arm64", + "hash": "sha512-iq9Qjr6knfMpZHj55/37ouZeykwbDqF21gPFtfnhCCKGDcPI/21FKC9XdMO/XyBM7qKORx6UIhGgg6jLl7BZlg==" + } + }, + "npm:@tailwindcss/oxide-darwin-x64": { + "type": "npm", + "name": "npm:@tailwindcss/oxide-darwin-x64", + "data": { + "version": "4.2.2", + "packageName": "@tailwindcss/oxide-darwin-x64", + "hash": "sha512-BlR+2c3nzc8f2G639LpL89YY4bdcIdUmiOOkv2GQv4/4M0vJlpXEa0JXNHhCHU7VWOKWT/CjqHdTP8aUuDJkuw==" + } + }, + "npm:@tailwindcss/oxide-freebsd-x64": { + "type": "npm", + "name": "npm:@tailwindcss/oxide-freebsd-x64", + "data": { + "version": "4.2.2", + "packageName": "@tailwindcss/oxide-freebsd-x64", + "hash": "sha512-YUqUgrGMSu2CDO82hzlQ5qSb5xmx3RUrke/QgnoEx7KvmRJHQuZHZmZTLSuuHwFf0DJPybFMXMYf+WJdxHy/nQ==" + } + }, + "npm:@tailwindcss/oxide-linux-arm-gnueabihf": { + "type": "npm", + "name": "npm:@tailwindcss/oxide-linux-arm-gnueabihf", + "data": { + "version": "4.2.2", + "packageName": "@tailwindcss/oxide-linux-arm-gnueabihf", + "hash": "sha512-FPdhvsW6g06T9BWT0qTwiVZYE2WIFo2dY5aCSpjG/S/u1tby+wXoslXS0kl3/KXnULlLr1E3NPRRw0g7t2kgaQ==" + } + }, + "npm:@tailwindcss/oxide-linux-arm64-gnu": { + "type": "npm", + "name": "npm:@tailwindcss/oxide-linux-arm64-gnu", + "data": { + "version": "4.2.2", + "packageName": "@tailwindcss/oxide-linux-arm64-gnu", + "hash": "sha512-4og1V+ftEPXGttOO7eCmW7VICmzzJWgMx+QXAJRAhjrSjumCwWqMfkDrNu1LXEQzNAwz28NCUpucgQPrR4S2yw==" + } + }, + "npm:@tailwindcss/oxide-linux-arm64-musl": { + "type": "npm", + "name": "npm:@tailwindcss/oxide-linux-arm64-musl", + "data": { + "version": "4.2.2", + "packageName": "@tailwindcss/oxide-linux-arm64-musl", + "hash": "sha512-oCfG/mS+/+XRlwNjnsNLVwnMWYH7tn/kYPsNPh+JSOMlnt93mYNCKHYzylRhI51X+TbR+ufNhhKKzm6QkqX8ag==" + } + }, + "npm:@tailwindcss/oxide-linux-x64-gnu": { + "type": "npm", + "name": "npm:@tailwindcss/oxide-linux-x64-gnu", + "data": { + "version": "4.2.2", + "packageName": "@tailwindcss/oxide-linux-x64-gnu", + "hash": "sha512-rTAGAkDgqbXHNp/xW0iugLVmX62wOp2PoE39BTCGKjv3Iocf6AFbRP/wZT/kuCxC9QBh9Pu8XPkv/zCZB2mcMg==" + } + }, + "npm:@tailwindcss/oxide-linux-x64-musl": { + "type": "npm", + "name": "npm:@tailwindcss/oxide-linux-x64-musl", + "data": { + "version": "4.2.2", + "packageName": "@tailwindcss/oxide-linux-x64-musl", + "hash": "sha512-XW3t3qwbIwiSyRCggeO2zxe3KWaEbM0/kW9e8+0XpBgyKU4ATYzcVSMKteZJ1iukJ3HgHBjbg9P5YPRCVUxlnQ==" + } + }, + "npm:@tailwindcss/oxide-wasm32-wasi": { + "type": "npm", + "name": "npm:@tailwindcss/oxide-wasm32-wasi", + "data": { + "version": "4.2.2", + "packageName": "@tailwindcss/oxide-wasm32-wasi", + "hash": "sha512-eKSztKsmEsn1O5lJ4ZAfyn41NfG7vzCg496YiGtMDV86jz1q/irhms5O0VrY6ZwTUkFy/EKG3RfWgxSI3VbZ8Q==" + } + }, + "npm:@tailwindcss/oxide-win32-arm64-msvc": { + "type": "npm", + "name": "npm:@tailwindcss/oxide-win32-arm64-msvc", + "data": { + "version": "4.2.2", + "packageName": "@tailwindcss/oxide-win32-arm64-msvc", + "hash": "sha512-qPmaQM4iKu5mxpsrWZMOZRgZv1tOZpUm+zdhhQP0VhJfyGGO3aUKdbh3gDZc/dPLQwW4eSqWGrrcWNBZWUWaXQ==" + } + }, + "npm:@tailwindcss/oxide-win32-x64-msvc": { + "type": "npm", + "name": "npm:@tailwindcss/oxide-win32-x64-msvc", + "data": { + "version": "4.2.2", + "packageName": "@tailwindcss/oxide-win32-x64-msvc", + "hash": "sha512-1T/37VvI7WyH66b+vqHj/cLwnCxt7Qt3WFu5Q8hk65aOvlwAhs7rAp1VkulBJw/N4tMirXjVnylTR72uI0HGcA==" + } + }, + "npm:@tailwindcss/oxide": { + "type": "npm", + "name": "npm:@tailwindcss/oxide", + "data": { + "version": "4.2.2", + "packageName": "@tailwindcss/oxide", + "hash": "sha512-qEUA07+E5kehxYp9BVMpq9E8vnJuBHfJEC0vPC5e7iL/hw7HR61aDKoVoKzrG+QKp56vhNZe4qwkRmMC0zDLvg==" + } + }, + "npm:@tailwindcss/vite": { + "type": "npm", + "name": "npm:@tailwindcss/vite", + "data": { + "version": "4.2.2", + "packageName": "@tailwindcss/vite", + "hash": "sha512-mEiF5HO1QqCLXoNEfXVA1Tzo+cYsrqV7w9Juj2wdUFyW07JRenqMG225MvPwr3ZD9N1bFQj46X7r33iHxLUW0w==" + } + }, + "npm:@tootallnate/quickjs-emscripten": { + "type": "npm", + "name": "npm:@tootallnate/quickjs-emscripten", + "data": { + "version": "0.23.0", + "packageName": "@tootallnate/quickjs-emscripten", + "hash": "sha512-C5Mc6rdnsaJDjO3UpGW/CQTHtCKaYlScZTly4JIu97Jxo/odCiH0ITnDXSJPTOrEKk/ycSZ0AOgTmkDtkOsvIA==" + } + }, + "npm:@trpc/client": { + "type": "npm", + "name": "npm:@trpc/client", + "data": { + "version": "11.14.1", + "packageName": "@trpc/client", + "hash": "sha512-zjIq7JGm50/hIfo7/WR2BQEyngB0SDVlHJi9J3o5cLrOhUAxArYC6F8xpch1a1vatsN9rkayc6hJ3OXHDUOWow==" + } + }, + "npm:@trpc/server": { + "type": "npm", + "name": "npm:@trpc/server", + "data": { + "version": "11.14.1", + "packageName": "@trpc/server", + "hash": "sha512-5sl9cpbrFm1mnDW0/SoOSQBNmwj+cal/JDUNLmLBp1thPvsbN7UerTZjeyLu0BCNxG/FKhnF12BgqYY8SEtCWw==" + } + }, + "npm:@trysound/sax": { + "type": "npm", + "name": "npm:@trysound/sax", + "data": { + "version": "0.2.0", + "packageName": "@trysound/sax", + "hash": "sha512-L7z9BgrNEcYyUYtF+HaEfiS5ebkh9jXqbszz7pC0hRBPaatV0XjSD3+eHrpqFemQfgwiFF0QPIarnIihIDn7OA==" + } + }, + "npm:@ts-morph/common": { + "type": "npm", + "name": "npm:@ts-morph/common", + "data": { + "version": "0.27.0", + "packageName": "@ts-morph/common", + "hash": "sha512-Wf29UqxWDpc+i61k3oIOzcUfQt79PIT9y/MWfAGlrkjg6lBC1hwDECLXPVJAhWjiGbfBCxZd65F/LIZF3+jeJQ==" + } + }, + "npm:@ts-rest/core": { + "type": "npm", + "name": "npm:@ts-rest/core", + "data": { + "version": "3.52.1", + "packageName": "@ts-rest/core", + "hash": "sha512-tAjz7Kxq/grJodcTA1Anop4AVRDlD40fkksEV5Mmal88VoZeRKAG8oMHsDwdwPZz+B/zgnz0q2sF+cm5M7Bc7g==" + } + }, + "npm:@ts-rest/serverless": { + "type": "npm", + "name": "npm:@ts-rest/serverless", + "data": { + "version": "3.52.1", + "packageName": "@ts-rest/serverless", + "hash": "sha512-9lz6SVC/zOjR7Q70Uige1i4fgSLS5cPpei/ocBgdwhc/TJhKWTMQog2IQX3pT2nIA4B4QvZ54YyrBkSiwbrGPw==" + } + }, + "npm:@turbo/darwin-64": { + "type": "npm", + "name": "npm:@turbo/darwin-64", + "data": { + "version": "2.8.20", + "packageName": "@turbo/darwin-64", + "hash": "sha512-FQ9EX1xMU5nbwjxXxM3yU88AQQ6Sqc6S44exPRroMcx9XZHqqppl5ymJF0Ig/z3nvQNwDmz1Gsnvxubo+nXWjQ==" + } + }, + "npm:@turbo/darwin-arm64": { + "type": "npm", + "name": "npm:@turbo/darwin-arm64", + "data": { + "version": "2.8.20", + "packageName": "@turbo/darwin-arm64", + "hash": "sha512-Gpyh9ATFGThD6/s9L95YWY54cizg/VRWl2B67h0yofG8BpHf67DFAh9nuJVKG7bY0+SBJDAo5cMur+wOl9YOYw==" + } + }, + "npm:@turbo/linux-64": { + "type": "npm", + "name": "npm:@turbo/linux-64", + "data": { + "version": "2.8.20", + "packageName": "@turbo/linux-64", + "hash": "sha512-p2QxWUYyYUgUFG0b0kR+pPi8t7c9uaVlRtjTTI1AbCvVqkpjUfCcReBn6DgG/Hu8xrWdKLuyQFaLYFzQskZbcA==" + } + }, + "npm:@turbo/linux-arm64": { + "type": "npm", + "name": "npm:@turbo/linux-arm64", + "data": { + "version": "2.8.20", + "packageName": "@turbo/linux-arm64", + "hash": "sha512-Gn5yjlZGLRZWarLWqdQzv0wMqyBNIdq1QLi48F1oY5Lo9kiohuf7BPQWtWxeNVS2NgJ1+nb/DzK1JduYC4AWOA==" + } + }, + "npm:@turbo/windows-64": { + "type": "npm", + "name": "npm:@turbo/windows-64", + "data": { + "version": "2.8.20", + "packageName": "@turbo/windows-64", + "hash": "sha512-vyaDpYk/8T6Qz5V/X+ihKvKFEZFUoC0oxYpC1sZanK6gaESJlmV3cMRT3Qhcg4D2VxvtC2Jjs9IRkrZGL+exLw==" + } + }, + "npm:@turbo/windows-arm64": { + "type": "npm", + "name": "npm:@turbo/windows-arm64", + "data": { + "version": "2.8.20", + "packageName": "@turbo/windows-arm64", + "hash": "sha512-voicVULvUV5yaGXo0Iue13BcHGYW3u0VgqSbfQwBaHbpj1zLjYV4KIe+7fYIo6DO8FVUJzxFps3ODCQG/Wy2Qw==" + } + }, + "npm:@tybys/wasm-util@0.10.1": { + "type": "npm", + "name": "npm:@tybys/wasm-util@0.10.1", + "data": { + "version": "0.10.1", + "packageName": "@tybys/wasm-util", + "hash": "sha512-9tTaPJLSiejZKx+Bmog4uSubteqTvFrVrURwkmHixBo0G4seD0zUxp98E1DzUBJxLQ3NPwXrGKDiVjwx/DpPsg==" + } + }, + "npm:@tybys/wasm-util": { + "type": "npm", + "name": "npm:@tybys/wasm-util", + "data": { + "version": "0.9.0", + "packageName": "@tybys/wasm-util", + "hash": "sha512-6+7nlbMVX/PVDCwaIQ8nTOPveOcFLSt8GcXdx8hD0bt39uWxYT88uXzqTd4fTvqta7oeUJqudepapKNt2DYJFw==" + } + }, + "npm:@types/aws-lambda": { + "type": "npm", + "name": "npm:@types/aws-lambda", + "data": { + "version": "8.10.161", + "packageName": "@types/aws-lambda", + "hash": "sha512-rUYdp+MQwSFocxIOcSsYSF3YYYC/uUpMbCY/mbO21vGqfrEYvNSoPyKYDj6RhXXpPfS0KstW9RwG3qXh9sL7FQ==" + } + }, + "npm:@types/babel__core": { + "type": "npm", + "name": "npm:@types/babel__core", + "data": { + "version": "7.20.5", + "packageName": "@types/babel__core", + "hash": "sha512-qoQprZvz5wQFJwMDqeseRXWv3rqMvhgpbXFfVyWhbx9X47POIA6i/+dXefEmZKoAgOaTdaIgNSMqMIU61yRyzA==" + } + }, + "npm:@types/babel__generator": { + "type": "npm", + "name": "npm:@types/babel__generator", + "data": { + "version": "7.27.0", + "packageName": "@types/babel__generator", + "hash": "sha512-ufFd2Xi92OAVPYsy+P4n7/U7e68fex0+Ee8gSG9KX7eo084CWiQ4sdxktvdl0bOPupXtVJPY19zk6EwWqUQ8lg==" + } + }, + "npm:@types/babel__template": { + "type": "npm", + "name": "npm:@types/babel__template", + "data": { + "version": "7.4.4", + "packageName": "@types/babel__template", + "hash": "sha512-h/NUaSyG5EyxBIp8YRxo4RMe2/qQgvyowRwVMzhYhBCONbW8PUsg4lkFMrhgZhUe5z3L3MiLDuvyJ/CaPa2A8A==" + } + }, + "npm:@types/babel__traverse": { + "type": "npm", + "name": "npm:@types/babel__traverse", + "data": { + "version": "7.28.0", + "packageName": "@types/babel__traverse", + "hash": "sha512-8PvcXf70gTDZBgt9ptxJ8elBeBjcLOAcOtoO/mPJjtji1+CdGbHgm77om1GrsPxsiE+uXIpNSK64UYaIwQXd4Q==" + } + }, + "npm:@types/better-sqlite3": { + "type": "npm", + "name": "npm:@types/better-sqlite3", + "data": { + "version": "7.6.13", + "packageName": "@types/better-sqlite3", + "hash": "sha512-NMv9ASNARoKksWtsq/SHakpYAYnhBrQgGD8zkLYk/jaK8jUGn08CfEdTRgYhMypUQAfzSP8W6gNLe0q19/t4VA==" + } + }, + "npm:@types/body-parser": { + "type": "npm", + "name": "npm:@types/body-parser", + "data": { + "version": "1.19.6", + "packageName": "@types/body-parser", + "hash": "sha512-HLFeCYgz89uk22N5Qg3dvGvsv46B8GLvKKo1zKG4NybA8U2DiEO3w9lqGg29t/tfLRJpJ6iQxnVw4OnB7MoM9g==" + } + }, + "npm:@types/cacheable-request": { + "type": "npm", + "name": "npm:@types/cacheable-request", + "data": { + "version": "6.0.3", + "packageName": "@types/cacheable-request", + "hash": "sha512-IQ3EbTzGxIigb1I3qPZc1rWJnH0BmSKv5QYTalEwweFvyBDLSAe24zP0le/hyi7ecGfZVlIVAg4BZqb8WBwKqw==" + } + }, + "npm:@types/chai": { + "type": "npm", + "name": "npm:@types/chai", + "data": { + "version": "5.2.2", + "packageName": "@types/chai", + "hash": "sha512-8kB30R7Hwqf40JPiKhVzodJs2Qc1ZJ5zuT3uzw5Hq/dhNCl3G3l83jfpdI1e20BP348+fV7VIL/+FxaXkqBmWg==" + } + }, + "npm:@types/connect": { + "type": "npm", + "name": "npm:@types/connect", + "data": { + "version": "3.4.38", + "packageName": "@types/connect", + "hash": "sha512-K6uROf1LD88uDQqJCktA4yzL1YYAK6NgfsI0v/mTgyPKWsX1CnJ0XPSDhViejru1GcRkLWb8RlzFYJRqGUbaug==" + } + }, + "npm:@types/debug": { + "type": "npm", + "name": "npm:@types/debug", + "data": { + "version": "4.1.12", + "packageName": "@types/debug", + "hash": "sha512-vIChWdVG3LG1SMxEvI/AK+FWJthlrqlTu7fbrlywTkkaONwk/UAGaULXRlf8vkzFBLVm0zkMdCquhL5aOjhXPQ==" + } + }, + "npm:@types/deep-eql": { + "type": "npm", + "name": "npm:@types/deep-eql", + "data": { + "version": "4.0.2", + "packageName": "@types/deep-eql", + "hash": "sha512-c9h9dVVMigMPc4bwTvC5dxqtqJZwQPePsWjPlpSOnojbor6pGqdk541lfA7AqFQr5pB1BRdq0juY9db81BwyFw==" + } + }, + "npm:@types/eslint": { + "type": "npm", + "name": "npm:@types/eslint", + "data": { + "version": "9.6.1", + "packageName": "@types/eslint", + "hash": "sha512-FXx2pKgId/WyYo2jXw63kk7/+TY7u7AziEJxJAnSFzHlqTAS3Ync6SvgYAN/k4/PQpnnVuzoMuVnByKK2qp0ag==" + } + }, + "npm:@types/estree": { + "type": "npm", + "name": "npm:@types/estree", + "data": { + "version": "1.0.8", + "packageName": "@types/estree", + "hash": "sha512-dWHzHa2WqEXI/O1E9OjrocMTKJl2mSrEolh1Iomrv6U+JuNwaHXsXx9bLu5gG7BUWFIN0skIQJQ/L1rIex4X6w==" + } + }, + "npm:@types/express-serve-static-core": { + "type": "npm", + "name": "npm:@types/express-serve-static-core", + "data": { + "version": "5.1.0", + "packageName": "@types/express-serve-static-core", + "hash": "sha512-jnHMsrd0Mwa9Cf4IdOzbz543y4XJepXrbia2T4b6+spXC2We3t1y6K44D3mR8XMFSXMCf3/l7rCgddfx7UNVBA==" + } + }, + "npm:@types/express": { + "type": "npm", + "name": "npm:@types/express", + "data": { + "version": "5.0.6", + "packageName": "@types/express", + "hash": "sha512-sKYVuV7Sv9fbPIt/442koC7+IIwK5olP1KWeD88e/idgoJqDm3JV/YUiPwkoKK92ylff2MGxSz1CSjsXelx0YA==" + } + }, + "npm:@types/http-cache-semantics": { + "type": "npm", + "name": "npm:@types/http-cache-semantics", + "data": { + "version": "4.0.4", + "packageName": "@types/http-cache-semantics", + "hash": "sha512-1m0bIFVc7eJWyve9S0RnuRgcQqF/Xd5QsUZAZeQFr1Q3/p9JWoQQEqmVy+DPTNpGXwhgIetAoYF8JSc33q29QA==" + } + }, + "npm:@types/http-errors": { + "type": "npm", + "name": "npm:@types/http-errors", + "data": { + "version": "2.0.5", + "packageName": "@types/http-errors", + "hash": "sha512-r8Tayk8HJnX0FztbZN7oVqGccWgw98T/0neJphO91KkmOzug1KkofZURD4UaD5uH8AqcFLfdPErnBod0u71/qg==" + } + }, + "npm:@types/jsesc": { + "type": "npm", + "name": "npm:@types/jsesc", + "data": { + "version": "2.5.1", + "packageName": "@types/jsesc", + "hash": "sha512-9VN+6yxLOPLOav+7PwjZbxiID2bVaeq0ED4qSQmdQTdjnXJSaCVKTR58t15oqH1H5t8Ng2ZX1SabJVoN9Q34bw==" + } + }, + "npm:@types/json-schema": { + "type": "npm", + "name": "npm:@types/json-schema", + "data": { + "version": "7.0.15", + "packageName": "@types/json-schema", + "hash": "sha512-5+fP8P8MFNC+AyZCDxrB2pkZFPGzqQWUzpSeuuVLvm8VMcorNYavBqoFcxK8bQz4Qsbn4oUEEem4wDLfcysGHA==" + } + }, + "npm:@types/keyv": { + "type": "npm", + "name": "npm:@types/keyv", + "data": { + "version": "3.1.4", + "packageName": "@types/keyv", + "hash": "sha512-BQ5aZNSCpj7D6K2ksrRCTmKRLEpnPvWDiLPfoGyhZ++8YtiK9d/3DBKPJgry359X/P1PfruyYwvnvwFjuEiEIg==" + } + }, + "npm:@types/mdast": { + "type": "npm", + "name": "npm:@types/mdast", + "data": { + "version": "4.0.4", + "packageName": "@types/mdast", + "hash": "sha512-kGaNbPh1k7AFzgpud/gMdvIm5xuECykRR+JnWKQno9TAXVa6WIVCGTPvYGekIDL4uwCZQSYbUxNBSb1aUo79oA==" + } + }, + "npm:@types/ms": { + "type": "npm", + "name": "npm:@types/ms", + "data": { + "version": "2.1.0", + "packageName": "@types/ms", + "hash": "sha512-GsCCIZDE/p3i96vtEqx+7dBUGXrc7zeSK3wwPHIaRThS+9OhWIXRqzs4d6k1SVU8g91DrNRWxWUGhp5KXQb2VA==" + } + }, + "npm:@types/node": { + "type": "npm", + "name": "npm:@types/node", + "data": { + "version": "20.19.37", + "packageName": "@types/node", + "hash": "sha512-8kzdPJ3FsNsVIurqBs7oodNnCEVbni9yUEkaHbgptDACOPW04jimGagZ51E6+lXUwJjgnBw+hyko/lkFWCldqw==" + } + }, + "npm:@types/qs": { + "type": "npm", + "name": "npm:@types/qs", + "data": { + "version": "6.14.0", + "packageName": "@types/qs", + "hash": "sha512-eOunJqu0K1923aExK6y8p6fsihYEn/BYuQ4g0CxAAgFc4b/ZLN4CrsRZ55srTdqoiLzU2B2evC+apEIxprEzkQ==" + } + }, + "npm:@types/range-parser": { + "type": "npm", + "name": "npm:@types/range-parser", + "data": { + "version": "1.2.7", + "packageName": "@types/range-parser", + "hash": "sha512-hKormJbkJqzQGhziax5PItDUTMAM9uE2XXQmM37dyd4hVM+5aVl7oVxMVUiVQn2oCQFN/LKCZdvSM0pFRqbSmQ==" + } + }, + "npm:@types/react-dom": { + "type": "npm", + "name": "npm:@types/react-dom", + "data": { + "version": "19.2.3", + "packageName": "@types/react-dom", + "hash": "sha512-jp2L/eY6fn+KgVVQAOqYItbF0VY/YApe5Mz2F0aykSO8gx31bYCZyvSeYxCHKvzHG5eZjc+zyaS5BrBWya2+kQ==" + } + }, + "npm:@types/react": { + "type": "npm", + "name": "npm:@types/react", + "data": { + "version": "19.2.14", + "packageName": "@types/react", + "hash": "sha512-ilcTH/UniCkMdtexkoCN0bI7pMcJDvmQFPvuPvmEaYA/NSfFTAgdUSLAoVjaRJm7+6PvcM+q1zYOwS4wTYMF9w==" + } + }, + "npm:@types/responselike": { + "type": "npm", + "name": "npm:@types/responselike", + "data": { + "version": "1.0.3", + "packageName": "@types/responselike", + "hash": "sha512-H/+L+UkTV33uf49PH5pCAUBVPNj2nDBXTN+qS1dOwyyg24l3CcicicCA7ca+HMvJBZcFgl5r8e+RR6elsb4Lyw==" + } + }, + "npm:@types/retry": { + "type": "npm", + "name": "npm:@types/retry", + "data": { + "version": "0.12.0", + "packageName": "@types/retry", + "hash": "sha512-wWKOClTTiizcZhXnPY4wikVAwmdYHp8q6DmC+EJUzAMsycb7HB32Kh9RN4+0gExjmPmZSAQjgURXIGATPegAvA==" + } + }, + "npm:@types/send": { + "type": "npm", + "name": "npm:@types/send", + "data": { + "version": "1.2.0", + "packageName": "@types/send", + "hash": "sha512-zBF6vZJn1IaMpg3xUF25VK3gd3l8zwE0ZLRX7dsQyQi+jp4E8mMDJNGDYnYse+bQhYwWERTxVwHpi3dMOq7RKQ==" + } + }, + "npm:@types/serve-static": { + "type": "npm", + "name": "npm:@types/serve-static", + "data": { + "version": "2.2.0", + "packageName": "@types/serve-static", + "hash": "sha512-8mam4H1NHLtu7nmtalF7eyBH14QyOASmcxHhSfEoRyr0nP/YdoesEtU+uSRvMe96TW/HPTtkoKqQLl53N7UXMQ==" + } + }, + "npm:@types/ungap__structured-clone": { + "type": "npm", + "name": "npm:@types/ungap__structured-clone", + "data": { + "version": "1.2.0", + "packageName": "@types/ungap__structured-clone", + "hash": "sha512-ZoaihZNLeZSxESbk9PUAPZOlSpcKx81I1+4emtULDVmBLkYutTcMlCj2K9VNlf9EWODxdO6gkAqEaLorXwZQVA==" + } + }, + "npm:@types/unist": { + "type": "npm", + "name": "npm:@types/unist", + "data": { + "version": "2.0.11", + "packageName": "@types/unist", + "hash": "sha512-CmBKiL6NNo/OqgmMn95Fk9Whlp2mtvIv+KNpQKN2F4SjvrEesubTRWGYSg+BnWZOnlCaSTU1sMpsBOzgbYhnsA==" + } + }, + "npm:@types/unist@3.0.3": { + "type": "npm", + "name": "npm:@types/unist@3.0.3", + "data": { + "version": "3.0.3", + "packageName": "@types/unist", + "hash": "sha512-ko/gIFJRv177XgZsZcBwnqJN5x/Gien8qNOn0D5bQU/zAzVf9Zt3BlcUiLqhV9y4ARk0GbT3tnUiPNgnTXzc/Q==" + } + }, + "npm:@types/which": { + "type": "npm", + "name": "npm:@types/which", + "data": { + "version": "3.0.4", + "packageName": "@types/which", + "hash": "sha512-liyfuo/106JdlgSchJzXEQCVArk0CvevqPote8F8HgWgJ3dRCcTHgJIsLDuee0kxk/mhbInzIZk3QWSZJ8R+2w==" + } + }, + "npm:@types/yauzl": { + "type": "npm", + "name": "npm:@types/yauzl", + "data": { + "version": "2.10.3", + "packageName": "@types/yauzl", + "hash": "sha512-oJoftv0LSuaDZE3Le4DbKX+KS9G36NzOeSap90UIK0yMA/NhKJhqlSGtNDORNRaIbQfzjXDrQa0ytJ6mNRGz/Q==" + } + }, + "npm:@typescript-eslint/eslint-plugin": { + "type": "npm", + "name": "npm:@typescript-eslint/eslint-plugin", + "data": { + "version": "8.57.1", + "packageName": "@typescript-eslint/eslint-plugin", + "hash": "sha512-Gn3aqnvNl4NGc6x3/Bqk1AOn0thyTU9bqDRhiRnUWezgvr2OnhYCWCgC8zXXRVqBsIL1pSDt7T9nJUe0oM0kDQ==" + } + }, + "npm:@typescript-eslint/parser": { + "type": "npm", + "name": "npm:@typescript-eslint/parser", + "data": { + "version": "8.57.1", + "packageName": "@typescript-eslint/parser", + "hash": "sha512-k4eNDan0EIMTT/dUKc/g+rsJ6wcHYhNPdY19VoX/EOtaAG8DLtKCykhrUnuHPYvinn5jhAPgD2Qw9hXBwrahsw==" + } + }, + "npm:@typescript-eslint/project-service": { + "type": "npm", + "name": "npm:@typescript-eslint/project-service", + "data": { + "version": "8.57.1", + "packageName": "@typescript-eslint/project-service", + "hash": "sha512-vx1F37BRO1OftsYlmG9xay1TqnjNVlqALymwWVuYTdo18XuKxtBpCj1QlzNIEHlvlB27osvXFWptYiEWsVdYsg==" + } + }, + "npm:@typescript-eslint/scope-manager": { + "type": "npm", + "name": "npm:@typescript-eslint/scope-manager", + "data": { + "version": "8.57.1", + "packageName": "@typescript-eslint/scope-manager", + "hash": "sha512-hs/QcpCwlwT2L5S+3fT6gp0PabyGk4Q0Rv2doJXA0435/OpnSR3VRgvrp8Xdoc3UAYSg9cyUjTeFXZEPg/3OKg==" + } + }, + "npm:@typescript-eslint/tsconfig-utils": { + "type": "npm", + "name": "npm:@typescript-eslint/tsconfig-utils", + "data": { + "version": "8.57.1", + "packageName": "@typescript-eslint/tsconfig-utils", + "hash": "sha512-0lgOZB8cl19fHO4eI46YUx2EceQqhgkPSuCGLlGi79L2jwYY1cxeYc1Nae8Aw1xjgW3PKVDLlr3YJ6Bxx8HkWg==" + } + }, + "npm:@typescript-eslint/type-utils": { + "type": "npm", + "name": "npm:@typescript-eslint/type-utils", + "data": { + "version": "8.57.1", + "packageName": "@typescript-eslint/type-utils", + "hash": "sha512-+Bwwm0ScukFdyoJsh2u6pp4S9ktegF98pYUU0hkphOOqdMB+1sNQhIz8y5E9+4pOioZijrkfNO/HUJVAFFfPKA==" + } + }, + "npm:@typescript-eslint/types": { + "type": "npm", + "name": "npm:@typescript-eslint/types", + "data": { + "version": "8.57.1", + "packageName": "@typescript-eslint/types", + "hash": "sha512-S29BOBPJSFUiblEl6RzPPjJt6w25A6XsBqRVDt53tA/tlL8q7ceQNZHTjPeONt/3S7KRI4quk+yP9jK2WjBiPQ==" + } + }, + "npm:@typescript-eslint/typescript-estree": { + "type": "npm", + "name": "npm:@typescript-eslint/typescript-estree", + "data": { + "version": "8.57.1", + "packageName": "@typescript-eslint/typescript-estree", + "hash": "sha512-ybe2hS9G6pXpqGtPli9Gx9quNV0TWLOmh58ADlmZe9DguLq0tiAKVjirSbtM1szG6+QH6rVXyU6GTLQbWnMY+g==" + } + }, + "npm:@typescript-eslint/utils": { + "type": "npm", + "name": "npm:@typescript-eslint/utils", + "data": { + "version": "8.57.1", + "packageName": "@typescript-eslint/utils", + "hash": "sha512-XUNSJ/lEVFttPMMoDVA2r2bwrl8/oPx8cURtczkSEswY5T3AeLmCy+EKWQNdL4u0MmAHOjcWrqJp2cdvgjn8dQ==" + } + }, + "npm:@typescript-eslint/visitor-keys": { + "type": "npm", + "name": "npm:@typescript-eslint/visitor-keys", + "data": { + "version": "8.57.1", + "packageName": "@typescript-eslint/visitor-keys", + "hash": "sha512-YWnmJkXbofiz9KbnbbwuA2rpGkFPLbAIetcCNO6mJ8gdhdZ/v7WDXsoGFAJuM6ikUFKTlSQnjWnVO4ux+UzS6A==" + } + }, + "npm:@ungap/structured-clone": { + "type": "npm", + "name": "npm:@ungap/structured-clone", + "data": { + "version": "1.3.0", + "packageName": "@ungap/structured-clone", + "hash": "sha512-WmoN8qaIAo7WTYWbAZuG8PYEhn5fkz7dZrqTBZ7dtt//lL2Gwms1IcnQ5yHqjDfX8Ft5j4YzDM23f87zBfDe9g==" + } + }, + "npm:@universal-middleware/cloudflare": { + "type": "npm", + "name": "npm:@universal-middleware/cloudflare", + "data": { + "version": "0.4.10", + "packageName": "@universal-middleware/cloudflare", + "hash": "sha512-ZY+N0KKoH+H+BB3wsaD5yqTiiFtX7uklPyCBqGLqEijOtZA5ZgFIExfWDjiIUjezUBAbRB8kUZ/WlPITY+hyTg==" + } + }, + "npm:@universal-middleware/compress": { + "type": "npm", + "name": "npm:@universal-middleware/compress", + "data": { + "version": "0.2.35", + "packageName": "@universal-middleware/compress", + "hash": "sha512-uLwwPtGLlK6KCYG5SksLdifOFhx6O10hArtz7PaD2hbqRE+IiWa1zntDCtKIkOHhA8Upz2koIbScyRpY/z/a3w==" + } + }, + "npm:@universal-middleware/core": { + "type": "npm", + "name": "npm:@universal-middleware/core", + "data": { + "version": "0.4.17", + "packageName": "@universal-middleware/core", + "hash": "sha512-q+/nXW9DQ94RtmlghC57DhwEvjrqxX57EtU40iaM3U+eYTKc+FVnEdlpdrYX8kCAdEU7zVBLBlFgJre+VrXoUg==" + } + }, + "npm:@universal-middleware/express": { + "type": "npm", + "name": "npm:@universal-middleware/express", + "data": { + "version": "0.4.22", + "packageName": "@universal-middleware/express", + "hash": "sha512-4aIrnK52NJmYKokZnwpWja/vT2m/HoZ8zxQyYLdokkSQdx0B1k1VsmYGeWENvpDQBgLjnfyvDzyaxch6Tib/hA==" + } + }, + "npm:@universal-middleware/fastify": { + "type": "npm", + "name": "npm:@universal-middleware/fastify", + "data": { + "version": "0.5.22", + "packageName": "@universal-middleware/fastify", + "hash": "sha512-6axgXhhi69V4RHh6DjUxRmWnRN8U9cW/Ro/1lB0weTe4Y07pI/9603XGcg9iNltbqEhjRvK+Jch3WwwIfVdIBg==" + } + }, + "npm:@universal-middleware/h3": { + "type": "npm", + "name": "npm:@universal-middleware/h3", + "data": { + "version": "0.4.15", + "packageName": "@universal-middleware/h3", + "hash": "sha512-IdoQ9cHSQEh7R1MtUppstuOrKLo//6hFv1AdVx0fyqCOELk0+rGH63VJ2MjnA26/xqysqrbjkiNQilBucAyfxw==" + } + }, + "npm:@universal-middleware/hono": { + "type": "npm", + "name": "npm:@universal-middleware/hono", + "data": { + "version": "0.4.18", + "packageName": "@universal-middleware/hono", + "hash": "sha512-RpnX8hKh2zx7hwVYzI32DjvH7KBYpt7MLIHWYw9QBSEzpD1ErqL+SpkvvlJaINjFs+sYJKH5IOoL53uHCL5alw==" + } + }, + "npm:@universal-middleware/sirv": { + "type": "npm", + "name": "npm:@universal-middleware/sirv", + "data": { + "version": "0.1.25", + "packageName": "@universal-middleware/sirv", + "hash": "sha512-yjOJE/PmEFfTPYOpwXzZyGnDRZOvDphMrsNLaNkdNVlCBFnTLEGIJP9WnsOKNr65iyqFkMXzXvmyZd65RlN8yg==" + } + }, + "npm:@universal-middleware/srvx": { + "type": "npm", + "name": "npm:@universal-middleware/srvx", + "data": { + "version": "0.1.1", + "packageName": "@universal-middleware/srvx", + "hash": "sha512-nTy4BZvaEI+rFO8sWEVvZrZWwFuqEXlXPNvIBAfl16+nKcorwiwm1x+qzuDrSqLd/kr5LSsGR3/KenTvESS9dQ==" + } + }, + "npm:@universal-middleware/vercel": { + "type": "npm", + "name": "npm:@universal-middleware/vercel", + "data": { + "version": "0.4.29", + "packageName": "@universal-middleware/vercel", + "hash": "sha512-w/2/cPat0MnKAI6w5I8OTYZSGCOLRe/yAGsPqfUyQtubuSpOpXnv/ELwC6iXO6EIoZcI9kCkO/Eucjuv55V6Xw==" + } + }, + "npm:@vercel/build-utils": { + "type": "npm", + "name": "npm:@vercel/build-utils", + "data": { + "version": "13.2.4", + "packageName": "@vercel/build-utils", + "hash": "sha512-12m+8Z+wsxJUoWZ+JQqRk8v1O0ioJhGYWz+yStW8abuzfNz75QW2rRcbn0hSHuF8c7b3D2papmMdh94kSSYQEw==" + } + }, + "npm:@vercel/nft@0.30.4": { + "type": "npm", + "name": "npm:@vercel/nft@0.30.4", + "data": { + "version": "0.30.4", + "packageName": "@vercel/nft", + "hash": "sha512-wE6eAGSXScra60N2l6jWvNtVK0m+sh873CpfZW4KI2v8EHuUQp+mSEi4T+IcdPCSEDgCdAS/7bizbhQlkjzrSA==" + } + }, + "npm:@vercel/nft": { + "type": "npm", + "name": "npm:@vercel/nft", + "data": { + "version": "1.1.1", + "packageName": "@vercel/nft", + "hash": "sha512-mKMGa7CEUcXU75474kOeqHbtvK1kAcu4wiahhmlUenB5JbTQB8wVlDI8CyHR3rpGo0qlzoRWqcDzI41FUoBJCA==" + } + }, + "npm:@vercel/routing-utils": { + "type": "npm", + "name": "npm:@vercel/routing-utils", + "data": { + "version": "5.3.1", + "packageName": "@vercel/routing-utils", + "hash": "sha512-HlqFRdB6Dm20xgEWtEatchf9X28NifweXPdDoEGyj5ItngaiqpywtkgkuiAk3xK9eAu2oXM36wEJbDDTxMblUg==" + } + }, + "npm:@vikejs/biome-config": { + "type": "npm", + "name": "npm:@vikejs/biome-config", + "data": { + "version": "2.0.1", + "packageName": "@vikejs/biome-config", + "hash": "sha512-kqVIZSWS7WCwTJYSzPnrhq3k+OdsOD67BM+lYtOaxkmoMfmtjz00ckGvFO8PxF8GJGeKTu7S/+pL6YmxC/Ht3Q==" + } + }, + "npm:@vite-plugin-vercel/schemas": { + "type": "npm", + "name": "npm:@vite-plugin-vercel/schemas", + "data": { + "version": "1.1.0", + "packageName": "@vite-plugin-vercel/schemas", + "hash": "sha512-Vl7r+Itu7oS2/Ypo0wyPOB87AHdoU4EsmDNkSjTeKc7wl9xxHafCMd2Uc9qLOcX0tlDtcwJkjvB4A//ObqL8/w==" + } + }, + "npm:@vitejs/plugin-react": { + "type": "npm", + "name": "npm:@vitejs/plugin-react", + "data": { + "version": "6.0.1", + "packageName": "@vitejs/plugin-react", + "hash": "sha512-l9X/E3cDb+xY3SWzlG1MOGt2usfEHGMNIaegaUGFsLkb3RCn/k8/TOXBcab+OndDI4TBtktT8/9BwwW8Vi9KUQ==" + } + }, + "npm:@vitejs/plugin-vue": { + "type": "npm", + "name": "npm:@vitejs/plugin-vue", + "data": { + "version": "6.0.5", + "packageName": "@vitejs/plugin-vue", + "hash": "sha512-bL3AxKuQySfk1iGcBsQnoRVexTPJq0Z/ixFVM8OhVJAP6ZXXXLtM7NFKWhLl30Kg7uTBqIaPXbh+nuQCuBDedg==" + } + }, + "npm:@vitest/expect": { + "type": "npm", + "name": "npm:@vitest/expect", + "data": { + "version": "4.1.0", + "packageName": "@vitest/expect", + "hash": "sha512-EIxG7k4wlWweuCLG9Y5InKFwpMEOyrMb6ZJ1ihYu02LVj/bzUwn2VMU+13PinsjRW75XnITeFrQBMH5+dLvCDA==" + } + }, + "npm:@vitest/mocker": { + "type": "npm", + "name": "npm:@vitest/mocker", + "data": { + "version": "4.1.0", + "packageName": "@vitest/mocker", + "hash": "sha512-evxREh+Hork43+Y4IOhTo+h5lGmVRyjqI739Rz4RlUPqwrkFFDF6EMvOOYjTx4E8Tl6gyCLRL8Mu7Ry12a13Tw==" + } + }, + "npm:@vitest/pretty-format": { + "type": "npm", + "name": "npm:@vitest/pretty-format", + "data": { + "version": "4.1.0", + "packageName": "@vitest/pretty-format", + "hash": "sha512-3RZLZlh88Ib0J7NQTRATfc/3ZPOnSUn2uDBUoGNn5T36+bALixmzphN26OUD3LRXWkJu4H0s5vvUeqBiw+kS0A==" + } + }, + "npm:@vitest/runner": { + "type": "npm", + "name": "npm:@vitest/runner", + "data": { + "version": "4.1.0", + "packageName": "@vitest/runner", + "hash": "sha512-Duvx2OzQ7d6OjchL+trw+aSrb9idh7pnNfxrklo14p3zmNL4qPCDeIJAK+eBKYjkIwG96Bc6vYuxhqDXQOWpoQ==" + } + }, + "npm:@vitest/snapshot": { + "type": "npm", + "name": "npm:@vitest/snapshot", + "data": { + "version": "4.1.0", + "packageName": "@vitest/snapshot", + "hash": "sha512-0Vy9euT1kgsnj1CHttwi9i9o+4rRLEaPRSOJ5gyv579GJkNpgJK+B4HSv/rAWixx2wdAFci1X4CEPjiu2bXIMg==" + } + }, + "npm:@vitest/spy": { + "type": "npm", + "name": "npm:@vitest/spy", + "data": { + "version": "4.1.0", + "packageName": "@vitest/spy", + "hash": "sha512-pz77k+PgNpyMDv2FV6qmk5ZVau6c3R8HC8v342T2xlFxQKTrSeYw9waIJG8KgV9fFwAtTu4ceRzMivPTH6wSxw==" + } + }, + "npm:@vitest/utils": { + "type": "npm", + "name": "npm:@vitest/utils", + "data": { + "version": "4.1.0", + "packageName": "@vitest/utils", + "hash": "sha512-XfPXT6a8TZY3dcGY8EdwsBulFCIw+BeeX0RZn2x/BtiY/75YGh8FeWGG8QISN/WhaqSrE2OrlDgtF8q5uhOTmw==" + } + }, + "npm:@vue/compiler-core": { + "type": "npm", + "name": "npm:@vue/compiler-core", + "data": { + "version": "3.5.30", + "packageName": "@vue/compiler-core", + "hash": "sha512-s3DfdZkcu/qExZ+td75015ljzHc6vE+30cFMGRPROYjqkroYI5NV2X1yAMX9UeyBNWB9MxCfPcsjpLS11nzkkw==" + } + }, + "npm:@vue/compiler-dom": { + "type": "npm", + "name": "npm:@vue/compiler-dom", + "data": { + "version": "3.5.30", + "packageName": "@vue/compiler-dom", + "hash": "sha512-eCFYESUEVYHhiMuK4SQTldO3RYxyMR/UQL4KdGD1Yrkfdx4m/HYuZ9jSfPdA+nWJY34VWndiYdW/wZXyiPEB9g==" + } + }, + "npm:@vue/compiler-sfc": { + "type": "npm", + "name": "npm:@vue/compiler-sfc", + "data": { + "version": "3.5.30", + "packageName": "@vue/compiler-sfc", + "hash": "sha512-LqmFPDn89dtU9vI3wHJnwaV6GfTRD87AjWpTWpyrdVOObVtjIuSeZr181z5C4PmVx/V3j2p+0f7edFKGRMpQ5A==" + } + }, + "npm:@vue/compiler-ssr": { + "type": "npm", + "name": "npm:@vue/compiler-ssr", + "data": { + "version": "3.5.30", + "packageName": "@vue/compiler-ssr", + "hash": "sha512-NsYK6OMTnx109PSL2IAyf62JP6EUdk4Dmj6AkWcJGBvN0dQoMYtVekAmdqgTtWQgEJo+Okstbf/1p7qZr5H+bA==" + } + }, + "npm:@vue/reactivity": { + "type": "npm", + "name": "npm:@vue/reactivity", + "data": { + "version": "3.5.30", + "packageName": "@vue/reactivity", + "hash": "sha512-179YNgKATuwj9gB+66snskRDOitDiuOZqkYia7mHKJaidOMo/WJxHKF8DuGc4V4XbYTJANlfEKb0yxTQotnx4Q==" + } + }, + "npm:@vue/runtime-core": { + "type": "npm", + "name": "npm:@vue/runtime-core", + "data": { + "version": "3.5.30", + "packageName": "@vue/runtime-core", + "hash": "sha512-e0Z+8PQsUTdwV8TtEsLzUM7SzC7lQwYKePydb7K2ZnmS6jjND+WJXkmmfh/swYzRyfP1EY3fpdesyYoymCzYfg==" + } + }, + "npm:@vue/runtime-dom": { + "type": "npm", + "name": "npm:@vue/runtime-dom", + "data": { + "version": "3.5.30", + "packageName": "@vue/runtime-dom", + "hash": "sha512-2UIGakjU4WSQ0T4iwDEW0W7vQj6n7AFn7taqZ9Cvm0Q/RA2FFOziLESrDL4GmtI1wV3jXg5nMoJSYO66egDUBw==" + } + }, + "npm:@vue/server-renderer": { + "type": "npm", + "name": "npm:@vue/server-renderer", + "data": { + "version": "3.5.30", + "packageName": "@vue/server-renderer", + "hash": "sha512-v+R34icapydRwbZRD0sXwtHqrQJv38JuMB4JxbOxd8NEpGLny7cncMp53W9UH/zo4j8eDHjQ1dEJXwzFQknjtQ==" + } + }, + "npm:@vue/shared": { + "type": "npm", + "name": "npm:@vue/shared", + "data": { + "version": "3.5.30", + "packageName": "@vue/shared", + "hash": "sha512-YXgQ7JjaO18NeK2K9VTbDHaFy62WrObMa6XERNfNOkAhD1F1oDSf3ZJ7K6GqabZ0BvSDHajp8qfS5Sa2I9n8uQ==" + } + }, + "npm:@yarnpkg/lockfile": { + "type": "npm", + "name": "npm:@yarnpkg/lockfile", + "data": { + "version": "1.1.0", + "packageName": "@yarnpkg/lockfile", + "hash": "sha512-GpSwvyXOcOOlV70vbnzjj4fW5xW/FdUF6nQEt1ENy7m4ZCczi1+/buVUPAqmGfqznsORNFzUMjctTIp8a9tuCQ==" + } + }, + "npm:@yarnpkg/parsers": { + "type": "npm", + "name": "npm:@yarnpkg/parsers", + "data": { + "version": "3.0.2", + "packageName": "@yarnpkg/parsers", + "hash": "sha512-/HcYgtUSiJiot/XWGLOlGxPYUG65+/31V8oqk17vZLW1xlCoR4PampyePljOxY2n8/3jz9+tIFzICsyGujJZoA==" + } + }, + "npm:@zkochan/js-yaml": { + "type": "npm", + "name": "npm:@zkochan/js-yaml", + "data": { + "version": "0.0.7", + "packageName": "@zkochan/js-yaml", + "hash": "sha512-nrUSn7hzt7J6JWgWGz78ZYI8wj+gdIJdk0Ynjpp8l+trkn58Uqsf6RYrYkEK+3X18EX+TNdtJI0WxAtc+L84SQ==" + } + }, + "npm:abbrev": { + "type": "npm", + "name": "npm:abbrev", + "data": { + "version": "3.0.1", + "packageName": "abbrev", + "hash": "sha512-AO2ac6pjRB3SJmGJo+v5/aK6Omggp6fsLrs6wN9bd35ulu4cCwaAU9+7ZhXjeqHVkaHThLuzH0nZr0YpCDhygg==" + } + }, + "npm:abstract-logging": { + "type": "npm", + "name": "npm:abstract-logging", + "data": { + "version": "2.0.1", + "packageName": "abstract-logging", + "hash": "sha512-2BjRTZxTPvheOvGbBslFSYOUkr+SjPtOnrLP33f+VIWLzezQpZcqVg7ja3L4dBXmzzgwT+a029jRx5PCi3JuiA==" + } + }, + "npm:accepts": { + "type": "npm", + "name": "npm:accepts", + "data": { + "version": "2.0.0", + "packageName": "accepts", + "hash": "sha512-5cvg6CtKwfgdmVqY1WIiXKc3Q1bkRqGLi+2W/6ao+6Y7gu/RCwRuAhGEzh5B4KlszSuTLgZYuqFqo5bImjNKng==" + } + }, + "npm:acorn-import-attributes": { + "type": "npm", + "name": "npm:acorn-import-attributes", + "data": { + "version": "1.9.5", + "packageName": "acorn-import-attributes", + "hash": "sha512-n02Vykv5uA3eHGM/Z2dQrcD56kL8TyDb2p1+0P83PClMnC/nc+anbQRhIOWnSq4Ke/KvDPrY3C9hDtC/A3eHnQ==" + } + }, + "npm:acorn-jsx": { + "type": "npm", + "name": "npm:acorn-jsx", + "data": { + "version": "5.3.2", + "packageName": "acorn-jsx", + "hash": "sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==" + } + }, + "npm:acorn-walk": { + "type": "npm", + "name": "npm:acorn-walk", + "data": { + "version": "8.3.2", + "packageName": "acorn-walk", + "hash": "sha512-cjkyv4OtNCIeqhHrfS81QWXoCBPExR/J62oyEqepVw8WaQeSqpW2uhuLPh1m9eWhDuOo/jUXVTlifvesOWp/4A==" + } + }, + "npm:acorn@8.14.0": { + "type": "npm", + "name": "npm:acorn@8.14.0", + "data": { + "version": "8.14.0", + "packageName": "acorn", + "hash": "sha512-cl669nCJTZBsL97OF4kUQm5g5hC2uihk0NxY3WENAC0TYdILVkAyHymAntgxGkl7K+t0cXIrH5siy5S4XkFycA==" + } + }, + "npm:acorn": { + "type": "npm", + "name": "npm:acorn", + "data": { + "version": "8.16.0", + "packageName": "acorn", + "hash": "sha512-UVJyE9MttOsBQIDKw1skb9nAwQuR5wuGD3+82K6JgJlm/Y+KI92oNsMNGZCYdDsVtRHSak0pcV5Dno5+4jh9sw==" + } + }, + "npm:agent-base@6.0.2": { + "type": "npm", + "name": "npm:agent-base@6.0.2", + "data": { + "version": "6.0.2", + "packageName": "agent-base", + "hash": "sha512-RZNwNclF7+MS/8bDg70amg32dyeZGZxiDuQmZxKLAlQjr3jGyLx+4Kkk58UO7D2QdgFIQCovuSuZESne6RG6XQ==" + } + }, + "npm:agent-base": { + "type": "npm", + "name": "npm:agent-base", + "data": { + "version": "7.1.4", + "packageName": "agent-base", + "hash": "sha512-MnA+YT8fwfJPgBx3m60MNqakm30XOkyIoH1y6huTQvC0PwZG7ki8NacLBcrPbNoo8vEZy7Jpuk7+jMO+CUovTQ==" + } + }, + "npm:ajv-formats": { + "type": "npm", + "name": "npm:ajv-formats", + "data": { + "version": "3.0.1", + "packageName": "ajv-formats", + "hash": "sha512-8iUql50EUR+uUcdRQ3HDqa6EVyo3docL8g5WJ3FNcWmu62IbkGUue/pEyLBW8VGKKucTPgqeks4fIU1DA4yowQ==" + } + }, + "npm:ajv": { + "type": "npm", + "name": "npm:ajv", + "data": { + "version": "6.14.0", + "packageName": "ajv", + "hash": "sha512-IWrosm/yrn43eiKqkfkHis7QioDleaXQHdDVPKg0FSwwd/DuvyX79TZnFOnYpB7dcsFAMmtFztZuXPDvSePkFw==" + } + }, + "npm:ajv@8.18.0": { + "type": "npm", + "name": "npm:ajv@8.18.0", + "data": { + "version": "8.18.0", + "packageName": "ajv", + "hash": "sha512-PlXPeEWMXMZ7sPYOHqmDyCJzcfNrUr3fGNKtezX14ykXOEIvyK81d+qydx89KY5O71FKMPaQ2vBfBFI5NHR63A==" + } + }, + "npm:ansi-colors": { + "type": "npm", + "name": "npm:ansi-colors", + "data": { + "version": "4.1.3", + "packageName": "ansi-colors", + "hash": "sha512-/6w/C21Pm1A7aZitlI5Ni/2J6FFQN8i1Cvz3kHABAAbw93v/NlvKdVOqz7CCWz/3iv/JplRSEEZ83XION15ovw==" + } + }, + "npm:ansi-regex@5.0.1": { + "type": "npm", + "name": "npm:ansi-regex@5.0.1", + "data": { + "version": "5.0.1", + "packageName": "ansi-regex", + "hash": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==" + } + }, + "npm:ansi-regex": { + "type": "npm", + "name": "npm:ansi-regex", + "data": { + "version": "6.2.2", + "packageName": "ansi-regex", + "hash": "sha512-Bq3SmSpyFHaWjPk8If9yc6svM8c56dB5BAtW4Qbw5jHTwwXXcTLoRMkpDJp6VL0XzlWaCHTXrkFURMYmD0sLqg==" + } + }, + "npm:ansi-styles@4.3.0": { + "type": "npm", + "name": "npm:ansi-styles@4.3.0", + "data": { + "version": "4.3.0", + "packageName": "ansi-styles", + "hash": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==" + } + }, + "npm:ansi-styles@5.2.0": { + "type": "npm", + "name": "npm:ansi-styles@5.2.0", + "data": { + "version": "5.2.0", + "packageName": "ansi-styles", + "hash": "sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA==" + } + }, + "npm:ansi-styles": { + "type": "npm", + "name": "npm:ansi-styles", + "data": { + "version": "6.2.3", + "packageName": "ansi-styles", + "hash": "sha512-4Dj6M28JB+oAH8kFkTLUo+a2jwOFkuqb3yucU0CANcRRUbxS0cP0nZYCGjcc3BNXwRIsUVmDGgzawme7zvJHvg==" + } + }, + "npm:ansis": { + "type": "npm", + "name": "npm:ansis", + "data": { + "version": "4.2.0", + "packageName": "ansis", + "hash": "sha512-HqZ5rWlFjGiV0tDm3UxxgNRqsOTniqoKZu0pIAfh7TZQMGuZK+hH0drySty0si0QXj1ieop4+SkSfPZBPPkHig==" + } + }, + "npm:argparse@1.0.10": { + "type": "npm", + "name": "npm:argparse@1.0.10", + "data": { + "version": "1.0.10", + "packageName": "argparse", + "hash": "sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==" + } + }, + "npm:argparse": { + "type": "npm", + "name": "npm:argparse", + "data": { + "version": "2.0.1", + "packageName": "argparse", + "hash": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==" + } + }, + "npm:args-tokenizer": { + "type": "npm", + "name": "npm:args-tokenizer", + "data": { + "version": "0.3.0", + "packageName": "args-tokenizer", + "hash": "sha512-xXAd7G2Mll5W8uo37GETpQ2VrE84M181Z7ugHFGQnJZ50M2mbOv0osSZ9VsSgPfJQ+LVG0prSi0th+ELMsno7Q==" + } + }, + "npm:array-buffer-byte-length": { + "type": "npm", + "name": "npm:array-buffer-byte-length", + "data": { + "version": "1.0.2", + "packageName": "array-buffer-byte-length", + "hash": "sha512-LHE+8BuR7RYGDKvnrmcuSq3tDcKv9OFEXQt/HpbZhY7V6h0zlUXutnAD82GiFx9rdieCMjkvtcsPqBwgUl1Iiw==" + } + }, + "npm:array-includes": { + "type": "npm", + "name": "npm:array-includes", + "data": { + "version": "3.1.9", + "packageName": "array-includes", + "hash": "sha512-FmeCCAenzH0KH381SPT5FZmiA/TmpndpcaShhfgEN9eCVjnFBqq3l1xrI42y8+PPLI6hypzou4GXw00WHmPBLQ==" + } + }, + "npm:array.prototype.findlast": { + "type": "npm", + "name": "npm:array.prototype.findlast", + "data": { + "version": "1.2.5", + "packageName": "array.prototype.findlast", + "hash": "sha512-CVvd6FHg1Z3POpBLxO6E6zr+rSKEQ9L6rZHAaY7lLfhKsWYUBBOuMs0e9o24oopj6H+geRCX0YJ+TJLBK2eHyQ==" + } + }, + "npm:array.prototype.flat": { + "type": "npm", + "name": "npm:array.prototype.flat", + "data": { + "version": "1.3.3", + "packageName": "array.prototype.flat", + "hash": "sha512-rwG/ja1neyLqCuGZ5YYrznA62D4mZXg0i1cIskIUKSiqF3Cje9/wXAls9B9s1Wa2fomMsIv8czB8jZcPmxCXFg==" + } + }, + "npm:array.prototype.flatmap": { + "type": "npm", + "name": "npm:array.prototype.flatmap", + "data": { + "version": "1.3.3", + "packageName": "array.prototype.flatmap", + "hash": "sha512-Y7Wt51eKJSyi80hFrJCePGGNo5ktJCslFuboqJsbf57CCPcm5zztluPlc4/aD8sWsKvlwatezpV4U1efk8kpjg==" + } + }, + "npm:array.prototype.tosorted": { + "type": "npm", + "name": "npm:array.prototype.tosorted", + "data": { + "version": "1.1.4", + "packageName": "array.prototype.tosorted", + "hash": "sha512-p6Fx8B7b7ZhL/gmUsAy0D15WhvDccw3mnGNbZpi3pmeJdxtWsj2jEaI4Y6oo3XiHfzuSgPwKc04MYt6KgvC/wA==" + } + }, + "npm:arraybuffer.prototype.slice": { + "type": "npm", + "name": "npm:arraybuffer.prototype.slice", + "data": { + "version": "1.0.4", + "packageName": "arraybuffer.prototype.slice", + "hash": "sha512-BNoCY6SXXPQ7gF2opIP4GBE+Xw7U+pHMYKuzjgCN3GwiaIR09UUeKfheyIry77QtrCBlC0KK0q5/TER/tYh3PQ==" + } + }, + "npm:ast-kit": { + "type": "npm", + "name": "npm:ast-kit", + "data": { + "version": "3.0.0-beta.1", + "packageName": "ast-kit", + "hash": "sha512-trmleAnZ2PxN/loHWVhhx1qeOHSRXq4TDsBBxq3GqeJitfk3+jTQ+v/C1km/KYq9M7wKqCewMh+/NAvVH7m+bw==" + } + }, + "npm:ast-types": { + "type": "npm", + "name": "npm:ast-types", + "data": { + "version": "0.13.4", + "packageName": "ast-types", + "hash": "sha512-x1FCFnFifvYDDzTaLII71vG5uvDwgtmDTEVWAxrgeiR8VjMONcCXJx7E+USjDtHlwFmt9MysbqgF9b9Vjr6w+w==" + } + }, + "npm:async-function": { + "type": "npm", + "name": "npm:async-function", + "data": { + "version": "1.0.0", + "packageName": "async-function", + "hash": "sha512-hsU18Ae8CDTR6Kgu9DYf0EbCr/a5iGL0rytQDobUcdpYOKokk8LEjVphnXkDkgpi0wYVsqrXuP0bZxJaTqdgoA==" + } + }, + "npm:async-sema": { + "type": "npm", + "name": "npm:async-sema", + "data": { + "version": "3.1.1", + "packageName": "async-sema", + "hash": "sha512-tLRNUXati5MFePdAk8dw7Qt7DpxPB60ofAgn8WRhW6a2rcimZnYBP9oxHiv0OHy+Wz7kPMG+t4LGdt31+4EmGg==" + } + }, + "npm:async": { + "type": "npm", + "name": "npm:async", + "data": { + "version": "3.2.6", + "packageName": "async", + "hash": "sha512-htCUDlxyyCLMgaM3xXg0C0LW2xqfuQ6p05pCEIsXuyQ+a1koYKTuBMzRNwmybfLgvJDMd0r1LTn4+E0Ti6C2AA==" + } + }, + "npm:asynckit": { + "type": "npm", + "name": "npm:asynckit", + "data": { + "version": "0.4.0", + "packageName": "asynckit", + "hash": "sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q==" + } + }, + "npm:atomic-sleep": { + "type": "npm", + "name": "npm:atomic-sleep", + "data": { + "version": "1.0.0", + "packageName": "atomic-sleep", + "hash": "sha512-kNOjDqAh7px0XWNI+4QbzoiR/nTkHAWNud2uvnJquD1/x5a7EQZMJT0AczqK0Qn67oY/TTQ1LbUKajZpp3I9tQ==" + } + }, + "npm:attributes-parser": { + "type": "npm", + "name": "npm:attributes-parser", + "data": { + "version": "2.2.3", + "packageName": "attributes-parser", + "hash": "sha512-zjOUWt95la8AdUO+kP1GBOonWrV5jy9NjJP+z9tva/DSA6FIzGKcN/gk3tdqQf/pOeB8dkyd3FCPrjhELMmrkg==" + } + }, + "npm:automad-prism-themes": { + "type": "npm", + "name": "npm:automad-prism-themes", + "data": { + "version": "0.3.7", + "packageName": "automad-prism-themes", + "hash": "sha512-iTe1K6OCNJqilDapONlBQrbmQZO1u7JiJbEAJxfWUs0rGYxwyvpFmEiQ1TgZ0CmhYAYRtM1/ZT6GXbPeyw/XPg==" + } + }, + "npm:autoprefixer": { + "type": "npm", + "name": "npm:autoprefixer", + "data": { + "version": "10.4.27", + "packageName": "autoprefixer", + "hash": "sha512-NP9APE+tO+LuJGn7/9+cohklunJsXWiaWEfV3si4Gi/XHDwVNgkwr1J3RQYFIvPy76GmJ9/bW8vyoU1LcxwKHA==" + } + }, + "npm:available-typed-arrays": { + "type": "npm", + "name": "npm:available-typed-arrays", + "data": { + "version": "1.0.7", + "packageName": "available-typed-arrays", + "hash": "sha512-wvUjBtSGN7+7SjNpq/9M2Tg350UZD3q62IFZLbRAR1bSMlCo1ZaeW+BJ+D090e4hIIZLBcTDWe4Mh4jvUDajzQ==" + } + }, + "npm:avvio": { + "type": "npm", + "name": "npm:avvio", + "data": { + "version": "9.2.0", + "packageName": "avvio", + "hash": "sha512-2t/sy01ArdHHE0vRH5Hsay+RtCZt3dLPji7W7/MMOCEgze5b7SNDC4j5H6FnVgPkI1MTNFGzHdHrVXDDl7QSSQ==" + } + }, + "npm:aws-cdk-lib": { + "type": "npm", + "name": "npm:aws-cdk-lib", + "data": { + "version": "2.244.0", + "packageName": "aws-cdk-lib", + "hash": "sha512-j5FVeZv5W+v6j6OnW8RjoN04T+8pYvDJJV7yXhhj4IiGDKPgMH3fflQLQXJousd2QQk+nSAjghDVJcrZ4GFyGA==" + } + }, + "npm:aws-cdk": { + "type": "npm", + "name": "npm:aws-cdk", + "data": { + "version": "2.1112.0", + "packageName": "aws-cdk", + "hash": "sha512-IYUbsd9tpBQRqEO2evWsG+p2ZNa6wG5/sJvmWaqo45V1ep8BW+mrf+jEpFLD9uDPXqRA57EZGVGils7QLbOhNA==" + } + }, + "npm:aws-ssl-profiles": { + "type": "npm", + "name": "npm:aws-ssl-profiles", + "data": { + "version": "1.1.2", + "packageName": "aws-ssl-profiles", + "hash": "sha512-NZKeq9AfyQvEeNlN0zSYAaWrmBffJh3IELMZfRpJVWgrpEbtEpnjvzqBPf+mxoI287JohRDoa+/nsfqqiZmF6g==" + } + }, + "npm:axios": { + "type": "npm", + "name": "npm:axios", + "data": { + "version": "1.13.6", + "packageName": "axios", + "hash": "sha512-ChTCHMouEe2kn713WHbQGcuYrr6fXTBiu460OTwWrWob16g1bXn4vtz07Ope7ewMozJAnEquLk5lWQWtBig9DQ==" + } + }, + "npm:b4a": { + "type": "npm", + "name": "npm:b4a", + "data": { + "version": "1.7.3", + "packageName": "b4a", + "hash": "sha512-5Q2mfq2WfGuFp3uS//0s6baOJLMoVduPYVeNmDYxu5OUA1/cBfvr2RIS7vi62LdNj/urk1hfmj867I3qt6uZ7Q==" + } + }, + "npm:babel-plugin-jsx-dom-expressions": { + "type": "npm", + "name": "npm:babel-plugin-jsx-dom-expressions", + "data": { + "version": "0.40.3", + "packageName": "babel-plugin-jsx-dom-expressions", + "hash": "sha512-5HOwwt0BYiv/zxl7j8Pf2bGL6rDXfV6nUhLs8ygBX+EFJXzBPHM/euj9j/6deMZ6wa52Wb2PBaAV5U/jKwIY1w==" + } + }, + "npm:babel-plugin-module-resolver": { + "type": "npm", + "name": "npm:babel-plugin-module-resolver", + "data": { + "version": "5.0.2", + "packageName": "babel-plugin-module-resolver", + "hash": "sha512-9KtaCazHee2xc0ibfqsDeamwDps6FZNo5S0Q81dUqEuFzVwPhcT4J5jOqIVvgCA3Q/wO9hKYxN/Ds3tIsp5ygg==" + } + }, + "npm:babel-preset-solid": { + "type": "npm", + "name": "npm:babel-preset-solid", + "data": { + "version": "1.9.10", + "packageName": "babel-preset-solid", + "hash": "sha512-HCelrgua/Y+kqO8RyL04JBWS/cVdrtUv/h45GntgQY+cJl4eBcKkCDV3TdMjtKx1nXwRaR9QXslM/Npm1dxdZQ==" + } + }, + "npm:balanced-match": { + "type": "npm", + "name": "npm:balanced-match", + "data": { + "version": "1.0.2", + "packageName": "balanced-match", + "hash": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==" + } + }, + "npm:balanced-match@4.0.2": { + "type": "npm", + "name": "npm:balanced-match@4.0.2", + "data": { + "version": "4.0.2", + "packageName": "balanced-match", + "hash": "sha512-x0K50QvKQ97fdEz2kPehIerj+YTeptKF9hyYkKf6egnwmMWAkADiO0QCzSp0R5xN8FTZgYaBfSaue46Ej62nMg==" + } + }, + "npm:bare-events": { + "type": "npm", + "name": "npm:bare-events", + "data": { + "version": "2.8.0", + "packageName": "bare-events", + "hash": "sha512-AOhh6Bg5QmFIXdViHbMc2tLDsBIRxdkIaIddPslJF9Z5De3APBScuqGP2uThXnIpqFrgoxMNC6km7uXNIMLHXA==" + } + }, + "npm:bare-fs": { + "type": "npm", + "name": "npm:bare-fs", + "data": { + "version": "4.4.11", + "packageName": "bare-fs", + "hash": "sha512-Bejmm9zRMvMTRoHS+2adgmXw1ANZnCNx+B5dgZpGwlP1E3x6Yuxea8RToddHUbWtVV0iUMWqsgZr8+jcgUI2SA==" + } + }, + "npm:bare-os": { + "type": "npm", + "name": "npm:bare-os", + "data": { + "version": "3.6.2", + "packageName": "bare-os", + "hash": "sha512-T+V1+1srU2qYNBmJCXZkUY5vQ0B4FSlL3QDROnKQYOqeiQR8UbjNHlPa+TIbM4cuidiN9GaTaOZgSEgsvPbh5A==" + } + }, + "npm:bare-path": { + "type": "npm", + "name": "npm:bare-path", + "data": { + "version": "3.0.0", + "packageName": "bare-path", + "hash": "sha512-tyfW2cQcB5NN8Saijrhqn0Zh7AnFNsnczRcuWODH0eYAXBsJ5gVxAUuNr7tsHSC6IZ77cA0SitzT+s47kot8Mw==" + } + }, + "npm:bare-stream": { + "type": "npm", + "name": "npm:bare-stream", + "data": { + "version": "2.7.0", + "packageName": "bare-stream", + "hash": "sha512-oyXQNicV1y8nc2aKffH+BUHFRXmx6VrPzlnaEvMhram0nPBrKcEdcyBg5r08D0i8VxngHFAiVyn1QKXpSG0B8A==" + } + }, + "npm:bare-url": { + "type": "npm", + "name": "npm:bare-url", + "data": { + "version": "2.3.0", + "packageName": "bare-url", + "hash": "sha512-c+RCqMSZbkz97Mw1LWR0gcOqwK82oyYKfLoHJ8k13ybi1+I80ffdDzUy0TdAburdrR/kI0/VuN8YgEnJqX+Nyw==" + } + }, + "npm:base64-js": { + "type": "npm", + "name": "npm:base64-js", + "data": { + "version": "1.5.1", + "packageName": "base64-js", + "hash": "sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==" + } + }, + "npm:baseline-browser-mapping": { + "type": "npm", + "name": "npm:baseline-browser-mapping", + "data": { + "version": "2.9.7", + "packageName": "baseline-browser-mapping", + "hash": "sha512-k9xFKplee6KIio3IDbwj+uaCLpqzOwakOgmqzPezM0sFJlFKcg30vk2wOiAJtkTSfx0SSQDSe8q+mWA/fSH5Zg==" + } + }, + "npm:basic-auth": { + "type": "npm", + "name": "npm:basic-auth", + "data": { + "version": "2.0.1", + "packageName": "basic-auth", + "hash": "sha512-NF+epuEdnUYVlGuhaxbbq+dvJttwLnGY+YixlXlME5KpQ5W3CnXA5cVTneY3SPbPDRkcjMbifrwmFYcClgOZeg==" + } + }, + "npm:basic-ftp": { + "type": "npm", + "name": "npm:basic-ftp", + "data": { + "version": "5.0.5", + "packageName": "basic-ftp", + "hash": "sha512-4Bcg1P8xhUuqcii/S0Z9wiHIrQVPMermM1any+MX5GeGD7faD3/msQUDGLol9wOcz4/jbg/WJnGqoJF6LiBdtg==" + } + }, + "npm:better-sqlite3": { + "type": "npm", + "name": "npm:better-sqlite3", + "data": { + "version": "12.8.0", + "packageName": "better-sqlite3", + "hash": "sha512-RxD2Vd96sQDjQr20kdP+F+dK/1OUNiVOl200vKBZY8u0vTwysfolF6Hq+3ZK2+h8My9YvZhHsF+RSGZW2VYrPQ==" + } + }, + "npm:bindings": { + "type": "npm", + "name": "npm:bindings", + "data": { + "version": "1.5.0", + "packageName": "bindings", + "hash": "sha512-p2q/t/mhvuOj/UeLlV6566GD/guowlr0hHxClI0W9m7MWYkL1F0hLo+0Aexs9HSPCtR1SXQ0TD3MMKrXZajbiQ==" + } + }, + "npm:birpc": { + "type": "npm", + "name": "npm:birpc", + "data": { + "version": "4.0.0", + "packageName": "birpc", + "hash": "sha512-LShSxJP0KTmd101b6DRyGBj57LZxSDYWKitQNW/mi8GRMvZb078Uf9+pveax1DrVL89vm7mWe+TovdI/UDOuPw==" + } + }, + "npm:bl": { + "type": "npm", + "name": "npm:bl", + "data": { + "version": "4.1.0", + "packageName": "bl", + "hash": "sha512-1W07cM9gS6DcLperZfFSj+bWLtaPGSOHWhPiGzXmvVJbRLdG82sH/Kn8EtW1VqWVA54AKf2h5k5BbnIbwF3h6w==" + } + }, + "npm:blake3-wasm": { + "type": "npm", + "name": "npm:blake3-wasm", + "data": { + "version": "2.1.5", + "packageName": "blake3-wasm", + "hash": "sha512-F1+K8EbfOZE49dtoPtmxUQrpXaBIl3ICvasLh+nJta0xkz+9kF/7uet9fLnwKqhDrmj6g+6K3Tw9yQPUg2ka5g==" + } + }, + "npm:body-parser": { + "type": "npm", + "name": "npm:body-parser", + "data": { + "version": "2.2.1", + "packageName": "body-parser", + "hash": "sha512-nfDwkulwiZYQIGwxdy0RUmowMhKcFVcYXUU7m4QlKYim1rUtg83xm2yjZ40QjDuc291AJjjeSc9b++AWHSgSHw==" + } + }, + "npm:boolbase": { + "type": "npm", + "name": "npm:boolbase", + "data": { + "version": "1.0.0", + "packageName": "boolbase", + "hash": "sha512-JZOSA7Mo9sNGB8+UjSgzdLtokWAky1zbztM3WRLCbZ70/3cTANmQmOdR7y2g+J0e2WXywy1yS468tY+IruqEww==" + } + }, + "npm:brace-expansion@1.1.12": { + "type": "npm", + "name": "npm:brace-expansion@1.1.12", + "data": { + "version": "1.1.12", + "packageName": "brace-expansion", + "hash": "sha512-9T9UjW3r0UW5c1Q7GTwllptXwhvYmEzFhzMfZ9H7FQWt+uZePjZPjBP/W1ZEyZ1twGWom5/56TF4lPcqjnDHcg==" + } + }, + "npm:brace-expansion@2.0.2": { + "type": "npm", + "name": "npm:brace-expansion@2.0.2", + "data": { + "version": "2.0.2", + "packageName": "brace-expansion", + "hash": "sha512-Jt0vHyM+jmUBqojB7E1NIYadt0vI0Qxjxd2TErW94wDz+E2LAm5vKMXXwg6ZZBTHPuUlDgQHKXvjGBdfcF1ZDQ==" + } + }, + "npm:brace-expansion": { + "type": "npm", + "name": "npm:brace-expansion", + "data": { + "version": "5.0.2", + "packageName": "brace-expansion", + "hash": "sha512-Pdk8c9poy+YhOgVWw1JNN22/HcivgKWwpxKq04M/jTmHyCZn12WPJebZxdjSa5TmBqISrUSgNYU3eRORljfCCw==" + } + }, + "npm:braces": { + "type": "npm", + "name": "npm:braces", + "data": { + "version": "3.0.3", + "packageName": "braces", + "hash": "sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA==" + } + }, + "npm:browserless": { + "type": "npm", + "name": "npm:browserless", + "data": { + "version": "10.12.5", + "packageName": "browserless", + "hash": "sha512-7FZIdkSDYfIIcLyGOnqVYwLURVArQzhZQ5KrLXJFb9Hnc0Hfg11LI3Rak7K6WD6PGw45SzeJRxPc7np3bSLWnw==" + } + }, + "npm:browserslist": { + "type": "npm", + "name": "npm:browserslist", + "data": { + "version": "4.28.1", + "packageName": "browserslist", + "hash": "sha512-ZC5Bd0LgJXgwGqUknZY/vkUQ04r8NXnJZ3yYi4vDmSiZmC/pdSN0NbNRPxZpbtO4uAfDUAFffO8IZoM3Gj8IkA==" + } + }, + "npm:buffer-crc32": { + "type": "npm", + "name": "npm:buffer-crc32", + "data": { + "version": "0.2.13", + "packageName": "buffer-crc32", + "hash": "sha512-VO9Ht/+p3SN7SKWqcrgEzjGbRSJYTx+Q1pTQC0wrWqHx0vpJraQ6GtHx8tvcg1rlK1byhU5gccxgOgj7B0TDkQ==" + } + }, + "npm:buffer-from": { + "type": "npm", + "name": "npm:buffer-from", + "data": { + "version": "1.1.2", + "packageName": "buffer-from", + "hash": "sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ==" + } + }, + "npm:buffer": { + "type": "npm", + "name": "npm:buffer", + "data": { + "version": "5.7.1", + "packageName": "buffer", + "hash": "sha512-EHcyIPBQ4BSGlvjB16k5KgAJ27CIsHY/2JBmCRReo48y9rQ3MaUzWX3KVlBa4U7MyX02HdVj0K7C3WaB3ju7FQ==" + } + }, + "npm:bumpp": { + "type": "npm", + "name": "npm:bumpp", + "data": { + "version": "11.0.1", + "packageName": "bumpp", + "hash": "sha512-X0ti27I/ewsx/u0EJSyl0IZWWOE95q+wIpAG/60kc5gqMNR4a23YJdd3lL7JsBN11TgLbCM4KpfGMuFfdigb4g==" + } + }, + "npm:bytes": { + "type": "npm", + "name": "npm:bytes", + "data": { + "version": "3.1.2", + "packageName": "bytes", + "hash": "sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg==" + } + }, + "npm:c12": { + "type": "npm", + "name": "npm:c12", + "data": { + "version": "3.1.0", + "packageName": "c12", + "hash": "sha512-uWoS8OU1MEIsOv8p/5a82c3H31LsWVR5qiyXVfBNOzfffjUWtPnhAb4BYI2uG2HfGmZmFjCtui5XNWaps+iFuw==" + } + }, + "npm:cac@6.7.14": { + "type": "npm", + "name": "npm:cac@6.7.14", + "data": { + "version": "6.7.14", + "packageName": "cac", + "hash": "sha512-b6Ilus+c3RrdDk+JhLKUAQfzzgLEPy6wcXqS7f/xe1EETvsDP6GORG7SFuOs6cID5YkqchW/LXZbX5bc8j7ZcQ==" + } + }, + "npm:cac": { + "type": "npm", + "name": "npm:cac", + "data": { + "version": "7.0.0", + "packageName": "cac", + "hash": "sha512-tixWYgm5ZoOD+3g6UTea91eow5z6AAHaho3g0V9CNSNb45gM8SmflpAc+GRd1InC4AqN/07Unrgp56Y94N9hJQ==" + } + }, + "npm:cacache": { + "type": "npm", + "name": "npm:cacache", + "data": { + "version": "19.0.1", + "packageName": "cacache", + "hash": "sha512-hdsUxulXCi5STId78vRVYEtDAjq99ICAUktLTeTYsLoTE6Z8dS0c8pWNCxwdrk9YfJeobDZc2Y186hD/5ZQgFQ==" + } + }, + "npm:cacheable-lookup": { + "type": "npm", + "name": "npm:cacheable-lookup", + "data": { + "version": "5.0.4", + "packageName": "cacheable-lookup", + "hash": "sha512-2/kNscPhpcxrOigMZzbiWF7dz8ilhb/nIHU3EyZiXWXpeq/au8qJ8VhdftMkty3n7Gj6HIGalQG8oiBNB3AJgA==" + } + }, + "npm:cacheable-request": { + "type": "npm", + "name": "npm:cacheable-request", + "data": { + "version": "7.0.4", + "packageName": "cacheable-request", + "hash": "sha512-v+p6ongsrp0yTGbJXjgxPow2+DL93DASP4kXCDKb8/bwRtt9OEF3whggkkDkGNzgcWy2XaF4a8nZglC7uElscg==" + } + }, + "npm:call-bind-apply-helpers": { + "type": "npm", + "name": "npm:call-bind-apply-helpers", + "data": { + "version": "1.0.2", + "packageName": "call-bind-apply-helpers", + "hash": "sha512-Sp1ablJ0ivDkSzjcaJdxEunN5/XvksFJ2sMBFfq6x0ryhQV/2b/KwFe21cMpmHtPOSij8K99/wSfoEuTObmuMQ==" + } + }, + "npm:call-bind": { + "type": "npm", + "name": "npm:call-bind", + "data": { + "version": "1.0.8", + "packageName": "call-bind", + "hash": "sha512-oKlSFMcMwpUg2ednkhQ454wfWiU/ul3CkJe/PEHcTKuiX6RpbehUiFMXu13HalGZxfUwCQzZG747YXBn1im9ww==" + } + }, + "npm:call-bound": { + "type": "npm", + "name": "npm:call-bound", + "data": { + "version": "1.0.4", + "packageName": "call-bound", + "hash": "sha512-+ys997U96po4Kx/ABpBCqhA9EuxJaQWDQg7295H4hBphv3IZg0boBKuwYpt4YXp6MZ5AmZQnU/tyMTlRpaSejg==" + } + }, + "npm:callsites": { + "type": "npm", + "name": "npm:callsites", + "data": { + "version": "3.1.0", + "packageName": "callsites", + "hash": "sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==" + } + }, + "npm:camelcase-css": { + "type": "npm", + "name": "npm:camelcase-css", + "data": { + "version": "2.0.1", + "packageName": "camelcase-css", + "hash": "sha512-QOSvevhslijgYwRx6Rv7zKdMF8lbRmx+uQGx2+vDc+KI/eBnsy9kit5aj23AgGu3pa4t9AgwbnXWqS+iOY+2aA==" + } + }, + "npm:caniuse-api": { + "type": "npm", + "name": "npm:caniuse-api", + "data": { + "version": "3.0.0", + "packageName": "caniuse-api", + "hash": "sha512-bsTwuIg/BZZK/vreVTYYbSWoe2F+71P7K5QGEX+pT250DZbfU1MQ5prOKpPR+LL6uWKK3KMwMCAS74QB3Um1uw==" + } + }, + "npm:caniuse-lite": { + "type": "npm", + "name": "npm:caniuse-lite", + "data": { + "version": "1.0.30001775", + "packageName": "caniuse-lite", + "hash": "sha512-s3Qv7Lht9zbVKE9XoTyRG6wVDCKdtOFIjBGg3+Yhn6JaytuNKPIjBMTMIY1AnOH3seL5mvF+x33oGAyK3hVt3A==" + } + }, + "npm:cdk": { + "type": "npm", + "name": "npm:cdk", + "data": { + "version": "2.1112.0", + "packageName": "cdk", + "hash": "sha512-a9asUnTapvEldOntOH7GZISwmYcr12HJas4v7183hWX0iZ8/Cb31IyPr9L5sz2tP6a9OugA45AXkjFgTCjH2+g==" + } + }, + "npm:chai": { + "type": "npm", + "name": "npm:chai", + "data": { + "version": "6.2.2", + "packageName": "chai", + "hash": "sha512-NUPRluOfOiTKBKvWPtSD4PhFvWCqOi0BGStNWs57X9js7XGTprSmFoz5F0tWhR4WPjNeR9jXqdC7/UpSJTnlRg==" + } + }, + "npm:chalk": { + "type": "npm", + "name": "npm:chalk", + "data": { + "version": "4.1.2", + "packageName": "chalk", + "hash": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==" + } + }, + "npm:character-entities": { + "type": "npm", + "name": "npm:character-entities", + "data": { + "version": "2.0.2", + "packageName": "character-entities", + "hash": "sha512-shx7oQ0Awen/BRIdkjkvz54PnEEI/EjwXDSIZp86/KKdbafHh1Df/RYGBhn4hbe2+uKC9FnT5UCEdyPz3ai9hQ==" + } + }, + "npm:chardet": { + "type": "npm", + "name": "npm:chardet", + "data": { + "version": "2.1.1", + "packageName": "chardet", + "hash": "sha512-PsezH1rqdV9VvyNhxxOW32/d75r01NY7TQCmOqomRo15ZSOKbpTFVsfjghxo6JloQUCGnH4k1LGu0R4yCLlWQQ==" + } + }, + "npm:chevrotain": { + "type": "npm", + "name": "npm:chevrotain", + "data": { + "version": "10.5.0", + "packageName": "chevrotain", + "hash": "sha512-Pkv5rBY3+CsHOYfV5g/Vs5JY9WTHHDEKOlohI2XeygaZhUeqhAlldZ8Hz9cRmxu709bvS08YzxHdTPHhffc13A==" + } + }, + "npm:chokidar": { + "type": "npm", + "name": "npm:chokidar", + "data": { + "version": "4.0.3", + "packageName": "chokidar", + "hash": "sha512-Qgzu8kfBvo+cA4962jnP1KkS6Dop5NS6g7R5LFYJr4b8Ub94PPQXUksCw9PvXoeXPRRddRNC5C1JQUR2SMGtnA==" + } + }, + "npm:chownr": { + "type": "npm", + "name": "npm:chownr", + "data": { + "version": "1.1.4", + "packageName": "chownr", + "hash": "sha512-jJ0bqzaylmJtVnNgzTeSOs8DPavpbYgEr/b0YL8/2GO3xJEhInFmhKMUnEJQjZumK7KXGFhUy89PrsJWlakBVg==" + } + }, + "npm:chownr@3.0.0": { + "type": "npm", + "name": "npm:chownr@3.0.0", + "data": { + "version": "3.0.0", + "packageName": "chownr", + "hash": "sha512-+IxzY9BZOQd/XuYPRmrvEVjF/nqj5kgT4kEq7VofrDoM1MxoRjEWkrCC3EtLi59TVawxTAn+orJwFQcrqEN1+g==" + } + }, + "npm:chromium-bidi": { + "type": "npm", + "name": "npm:chromium-bidi", + "data": { + "version": "14.0.0", + "packageName": "chromium-bidi", + "hash": "sha512-9gYlLtS6tStdRWzrtXaTMnqcM4dudNegMXJxkR0I/CXObHalYeYcAMPrL19eroNZHtJ8DQmu1E+ZNOYu/IXMXw==" + } + }, + "npm:citty@0.1.6": { + "type": "npm", + "name": "npm:citty@0.1.6", + "data": { + "version": "0.1.6", + "packageName": "citty", + "hash": "sha512-tskPPKEs8D2KPafUypv2gxwJP8h/OaJmC82QQGGDQcHvXX43xF2VDACcJVmZ0EuSxkpO9Kc4MlrA3q0+FG58AQ==" + } + }, + "npm:citty": { + "type": "npm", + "name": "npm:citty", + "data": { + "version": "0.2.1", + "packageName": "citty", + "hash": "sha512-kEV95lFBhQgtogAPlQfJJ0WGVSokvLr/UEoFPiKKOXF7pl98HfUVUD0ejsuTCld/9xH9vogSywZ5KqHzXrZpqg==" + } + }, + "npm:class-variance-authority": { + "type": "npm", + "name": "npm:class-variance-authority", + "data": { + "version": "0.7.1", + "packageName": "class-variance-authority", + "hash": "sha512-Ka+9Trutv7G8M6WT6SeiRWz792K5qEqIGEGzXKhAE6xOWAY6pPH8U+9IY3oCMv6kqTmLsv7Xh/2w2RigkePMsg==" + } + }, + "npm:cli-cursor": { + "type": "npm", + "name": "npm:cli-cursor", + "data": { + "version": "3.1.0", + "packageName": "cli-cursor", + "hash": "sha512-I/zHAwsKf9FqGoXM4WWRACob9+SNukZTd94DWF57E4toouRulbCxcUh6RKUEOQlYTHJnzkPMySvPNaaSLNfLZw==" + } + }, + "npm:cli-spinners": { + "type": "npm", + "name": "npm:cli-spinners", + "data": { + "version": "2.6.1", + "packageName": "cli-spinners", + "hash": "sha512-x/5fWmGMnbKQAaNwN+UZlV79qBLM9JFnJuJ03gIi5whrob0xV0ofNVHy9DhwGdsMJQc2OKv0oGmLzvaqvAVv+g==" + } + }, + "npm:cli-width": { + "type": "npm", + "name": "npm:cli-width", + "data": { + "version": "4.1.0", + "packageName": "cli-width", + "hash": "sha512-ouuZd4/dm2Sw5Gmqy6bGyNNNe1qt9RpmxveLSO7KcgsTnU7RXfsw+/bukWGo1abgBiMAic068rclZsO4IWmmxQ==" + } + }, + "npm:cliui": { + "type": "npm", + "name": "npm:cliui", + "data": { + "version": "8.0.1", + "packageName": "cliui", + "hash": "sha512-BSeNnyus75C4//NQ9gQt1/csTXyo/8Sb+afLAkzAptFuMsod9HFokGNudZpi/oQV73hnVK+sR+5PVRMd+Dr7YQ==" + } + }, + "npm:clone-response": { + "type": "npm", + "name": "npm:clone-response", + "data": { + "version": "1.0.3", + "packageName": "clone-response", + "hash": "sha512-ROoL94jJH2dUVML2Y/5PEDNaSHgeOdSDicUyS7izcF63G6sTc/FTjLub4b8Il9S8S0beOfYt0TaA5qvFK+w0wA==" + } + }, + "npm:clone": { + "type": "npm", + "name": "npm:clone", + "data": { + "version": "1.0.4", + "packageName": "clone", + "hash": "sha512-JQHZ2QMW6l3aH/j6xCqQThY/9OH4D/9ls34cgkUBiEeocRTU04tHfKPBsUK1PqZCUQM7GiA0IIXJSuXHI64Kbg==" + } + }, + "npm:clsx": { + "type": "npm", + "name": "npm:clsx", + "data": { + "version": "2.1.1", + "packageName": "clsx", + "hash": "sha512-eYm0QWBtUrBWZWG0d386OGAw16Z995PiOVo2B7bjWSbHedGl5e0ZWaq65kOGgUSNesEIDkB9ISbTg/JK9dhCZA==" + } + }, + "npm:code-block-writer": { + "type": "npm", + "name": "npm:code-block-writer", + "data": { + "version": "13.0.3", + "packageName": "code-block-writer", + "hash": "sha512-Oofo0pq3IKnsFtuHqSF7TqBfr71aeyZDVJ0HpmqB7FBM2qEigL0iPONSCZSO9pE9dZTAxANe5XHG9Uy0YMv8cg==" + } + }, + "npm:color-convert": { + "type": "npm", + "name": "npm:color-convert", + "data": { + "version": "2.0.1", + "packageName": "color-convert", + "hash": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==" + } + }, + "npm:color-name": { + "type": "npm", + "name": "npm:color-name", + "data": { + "version": "1.1.4", + "packageName": "color-name", + "hash": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" + } + }, + "npm:color-string": { + "type": "npm", + "name": "npm:color-string", + "data": { + "version": "1.9.1", + "packageName": "color-string", + "hash": "sha512-shrVawQFojnZv6xM40anx4CkoDP+fZsw/ZerEMsW/pyzsRbElpsL/DBVW7q3ExxwusdNXI3lXpuhEZkzs8p5Eg==" + } + }, + "npm:color": { + "type": "npm", + "name": "npm:color", + "data": { + "version": "4.2.3", + "packageName": "color", + "hash": "sha512-1rXeuUUiGGrykh+CeBdu5Ie7OJwinCgQY0bc7GCRxy5xVHy+moaqkpL/jqQq0MtQOeYcrqEz4abc5f0KtU7W4A==" + } + }, + "npm:colord": { + "type": "npm", + "name": "npm:colord", + "data": { + "version": "2.9.3", + "packageName": "colord", + "hash": "sha512-jeC1axXpnb0/2nn/Y1LPuLdgXBLH7aDcHu4KEKfqw3CUhX7ZpfBSlPKyqXE6btIgEzfWtrX3/tyBCaCvXvMkOw==" + } + }, + "npm:colorette": { + "type": "npm", + "name": "npm:colorette", + "data": { + "version": "2.0.20", + "packageName": "colorette", + "hash": "sha512-IfEDxwoWIjkeXL1eXcDiow4UbKjhLdq6/EuSVR9GMN7KVH3r9gQ83e73hsz1Nd1T3ijd5xv1wcWRYO+D6kCI2w==" + } + }, + "npm:combined-stream": { + "type": "npm", + "name": "npm:combined-stream", + "data": { + "version": "1.0.8", + "packageName": "combined-stream", + "hash": "sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==" + } + }, + "npm:commander": { + "type": "npm", + "name": "npm:commander", + "data": { + "version": "7.2.0", + "packageName": "commander", + "hash": "sha512-QrWXB+ZQSVPmIWIhtEO9H+gwHaMGYiF5ChvoJ+K9ZGHG/sVsa6yiesAD1GC/x46sET00Xlwo1u49RVVVzvcSkw==" + } + }, + "npm:component-register": { + "type": "npm", + "name": "npm:component-register", + "data": { + "version": "0.8.8", + "packageName": "component-register", + "hash": "sha512-djhwcxjY+X9dacaYUEOkOm7tda8uOEDiMDigWysu3xv54M8o6XDlsjR1qt5Y8QLGiKg51fqXFIR2HUTmt9ys0Q==" + } + }, + "npm:concat-map": { + "type": "npm", + "name": "npm:concat-map", + "data": { + "version": "0.0.1", + "packageName": "concat-map", + "hash": "sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==" + } + }, + "npm:confbox@0.1.8": { + "type": "npm", + "name": "npm:confbox@0.1.8", + "data": { + "version": "0.1.8", + "packageName": "confbox", + "hash": "sha512-RMtmw0iFkeR4YV+fUOSucriAQNb9g8zFR52MWCtl+cCZOFRNL6zeB395vPzFhEjjn4fMxXudmELnl/KF/WrK6w==" + } + }, + "npm:confbox": { + "type": "npm", + "name": "npm:confbox", + "data": { + "version": "0.2.2", + "packageName": "confbox", + "hash": "sha512-1NB+BKqhtNipMsov4xI/NnhCKp9XG9NamYp5PVm9klAT0fsrNPjaFICsCFhNhwZJKNh7zB/3q8qXz0E9oaMNtQ==" + } + }, + "npm:consola": { + "type": "npm", + "name": "npm:consola", + "data": { + "version": "3.4.2", + "packageName": "consola", + "hash": "sha512-5IKcdX0nnYavi6G7TtOhwkYzyjfJlatbjMjuLSfE2kYT5pMDOilZ4OvMhi637CcDICTmz3wARPoyhqyX1Y+XvA==" + } + }, + "npm:constructs": { + "type": "npm", + "name": "npm:constructs", + "data": { + "version": "10.5.1", + "packageName": "constructs", + "hash": "sha512-f/TfFXiS3G/yVIXDjOQn9oTlyu9Wo7Fxyjj7lb8r92iO81jR2uST+9MstxZTmDGx/CgIbxCXkFXgupnLTNxQZg==" + } + }, + "npm:content-disposition": { + "type": "npm", + "name": "npm:content-disposition", + "data": { + "version": "1.0.1", + "packageName": "content-disposition", + "hash": "sha512-oIXISMynqSqm241k6kcQ5UwttDILMK4BiurCfGEREw6+X9jkkpEe5T9FZaApyLGGOnFuyMWZpdolTXMtvEJ08Q==" + } + }, + "npm:content-type": { + "type": "npm", + "name": "npm:content-type", + "data": { + "version": "1.0.5", + "packageName": "content-type", + "hash": "sha512-nTjqfcBFEipKdXCv4YDQWCfmcLZKm81ldF0pAopTvyrFGVbcR6P/VAAd5G7N+0tTr8QqiU0tFadD6FK4NtJwOA==" + } + }, + "npm:convert-route": { + "type": "npm", + "name": "npm:convert-route", + "data": { + "version": "0.1.2", + "packageName": "convert-route", + "hash": "sha512-KSp+HiFELyZGWsrderXM0EjVo8Hj2eDT2LvJXNz9vnK6BVgEvlhREkAYz1oV6bx3ulhXvOtuRyE94BovdPigCQ==" + } + }, + "npm:convert-source-map": { + "type": "npm", + "name": "npm:convert-source-map", + "data": { + "version": "2.0.0", + "packageName": "convert-source-map", + "hash": "sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg==" + } + }, + "npm:cookie-es": { + "type": "npm", + "name": "npm:cookie-es", + "data": { + "version": "1.2.2", + "packageName": "cookie-es", + "hash": "sha512-+W7VmiVINB+ywl1HGXJXmrqkOhpKrIiVZV6tQuV54ZyQC7MMuBt81Vc336GMLoHBq5hV/F9eXgt5Mnx0Rha5Fg==" + } + }, + "npm:cookie-signature": { + "type": "npm", + "name": "npm:cookie-signature", + "data": { + "version": "1.2.2", + "packageName": "cookie-signature", + "hash": "sha512-D76uU73ulSXrD1UXF4KE2TMxVVwhsnCgfAyTg9k8P6KGZjlXKrOLe4dJQKI3Bxi5wjesZoFXJWElNWBjPZMbhg==" + } + }, + "npm:cookie": { + "type": "npm", + "name": "npm:cookie", + "data": { + "version": "0.7.2", + "packageName": "cookie", + "hash": "sha512-yki5XnKuf750l50uGTllt6kKILY4nQ1eNIQatoXEByZ5dWgnKqbnqmTrBE5B4N7lrMJKQ2ytWMiTO2o0v6Ew/w==" + } + }, + "npm:cookie@1.1.1": { + "type": "npm", + "name": "npm:cookie@1.1.1", + "data": { + "version": "1.1.1", + "packageName": "cookie", + "hash": "sha512-ei8Aos7ja0weRpFzJnEA9UHJ/7XQmqglbRwnf2ATjcB9Wq874VKH9kfjjirM6UhU2/E5fFYadylyhFldcqSidQ==" + } + }, + "npm:corser": { + "type": "npm", + "name": "npm:corser", + "data": { + "version": "2.0.1", + "packageName": "corser", + "hash": "sha512-utCYNzRSQIZNPIcGZdQc92UVJYAhtGAteCFg0yRaFm8f0P+CPtyGyHXJcGXnffjCybUCEx3FQ2G7U3/o9eIkVQ==" + } + }, + "npm:cosmiconfig": { + "type": "npm", + "name": "npm:cosmiconfig", + "data": { + "version": "9.0.0", + "packageName": "cosmiconfig", + "hash": "sha512-itvL5h8RETACmOTFc4UfIyB2RfEHi71Ax6E/PivVxq9NseKbOWpeyHEOIbmAw1rs8Ak0VursQNww7lf7YtUwzg==" + } + }, + "npm:cross-spawn": { + "type": "npm", + "name": "npm:cross-spawn", + "data": { + "version": "7.0.6", + "packageName": "cross-spawn", + "hash": "sha512-uV2QOWP2nWzsy2aMp8aRibhi9dlzF5Hgh5SHaB9OiTGEyDTiJJyx0uy51QXdyWbtAHNua4XJzUKca3OzKUd3vA==" + } + }, + "npm:crossws": { + "type": "npm", + "name": "npm:crossws", + "data": { + "version": "0.3.5", + "packageName": "crossws", + "hash": "sha512-ojKiDvcmByhwa8YYqbQI/hg7MEU0NC03+pSdEq4ZUnZR9xXpwk7E43SMNGkn+JxJGPFtNvQ48+vV2p+P1ml5PA==" + } + }, + "npm:css-declaration-sorter": { + "type": "npm", + "name": "npm:css-declaration-sorter", + "data": { + "version": "6.4.1", + "packageName": "css-declaration-sorter", + "hash": "sha512-rtdthzxKuyq6IzqX6jEcIzQF/YqccluefyCYheovBOLhFT/drQA9zj/UbRAa9J7C0o6EG6u3E6g+vKkay7/k3g==" + } + }, + "npm:css-select": { + "type": "npm", + "name": "npm:css-select", + "data": { + "version": "4.3.0", + "packageName": "css-select", + "hash": "sha512-wPpOYtnsVontu2mODhA19JrqWxNsfdatRKd64kmpRbQgh1KtItko5sTnEpPdpSaJszTOhEMlF/RPz28qj4HqhQ==" + } + }, + "npm:css-tree": { + "type": "npm", + "name": "npm:css-tree", + "data": { + "version": "1.1.3", + "packageName": "css-tree", + "hash": "sha512-tRpdppF7TRazZrjJ6v3stzv93qxRcSsFmW6cX0Zm2NVKpxE1WV1HblnghVv9TreireHkqI/VDEsfolRF1p6y7Q==" + } + }, + "npm:css-what": { + "type": "npm", + "name": "npm:css-what", + "data": { + "version": "6.2.2", + "packageName": "css-what", + "hash": "sha512-u/O3vwbptzhMs3L1fQE82ZSLHQQfto5gyZzwteVIEyeaY5Fc7R4dapF/BvRoSYFeqfBk4m0V1Vafq5Pjv25wvA==" + } + }, + "npm:cssesc": { + "type": "npm", + "name": "npm:cssesc", + "data": { + "version": "3.0.0", + "packageName": "cssesc", + "hash": "sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg==" + } + }, + "npm:cssnano-preset-default": { + "type": "npm", + "name": "npm:cssnano-preset-default", + "data": { + "version": "5.2.14", + "packageName": "cssnano-preset-default", + "hash": "sha512-t0SFesj/ZV2OTylqQVOrFgEh5uanxbO6ZAdeCrNsUQ6fVuXwYTxJPNAGvGTxHbD68ldIJNec7PyYZDBrfDQ+6A==" + } + }, + "npm:cssnano-utils": { + "type": "npm", + "name": "npm:cssnano-utils", + "data": { + "version": "3.1.0", + "packageName": "cssnano-utils", + "hash": "sha512-JQNR19/YZhz4psLX/rQ9M83e3z2Wf/HdJbryzte4a3NSuafyp9w/I4U+hx5C2S9g41qlstH7DEWnZaaj83OuEA==" + } + }, + "npm:csso": { + "type": "npm", + "name": "npm:csso", + "data": { + "version": "4.2.0", + "packageName": "csso", + "hash": "sha512-wvlcdIbf6pwKEk7vHj8/Bkc0B4ylXZruLvOgs9doS5eOsOpuodOV2zJChSpkp+pRpYQLQMeF04nr3Z68Sta9jA==" + } + }, + "npm:csstype": { + "type": "npm", + "name": "npm:csstype", + "data": { + "version": "3.2.3", + "packageName": "csstype", + "hash": "sha512-z1HGKcYy2xA8AGQfwrn0PAy+PB7X/GSj3UVJW9qKyn43xWa+gl5nXmU4qqLMRzWVLFC8KusUX8T/0kCiOYpAIQ==" + } + }, + "npm:daisyui": { + "type": "npm", + "name": "npm:daisyui", + "data": { + "version": "5.5.19", + "packageName": "daisyui", + "hash": "sha512-pbFAkl1VCEh/MPCeclKL61I/MqRIFFhNU7yiXoDDRapXN4/qNCoMxeCCswyxEEhqL5eiTTfwHvucFtOE71C9sA==" + } + }, + "npm:data-uri-to-buffer": { + "type": "npm", + "name": "npm:data-uri-to-buffer", + "data": { + "version": "4.0.1", + "packageName": "data-uri-to-buffer", + "hash": "sha512-0R9ikRb668HB7QDxT1vkpuUBtqc53YyAwMwGeUFKRojY/NWKvdZ+9UYtRfGmhqNbRkTSVpMbmyhXipFFv2cb/A==" + } + }, + "npm:data-uri-to-buffer@6.0.2": { + "type": "npm", + "name": "npm:data-uri-to-buffer@6.0.2", + "data": { + "version": "6.0.2", + "packageName": "data-uri-to-buffer", + "hash": "sha512-7hvf7/GW8e86rW0ptuwS3OcBGDjIi6SZva7hCyWC0yYry2cOPmLIjXAUHI6DK2HsnwJd9ifmt57i8eV2n4YNpw==" + } + }, + "npm:data-view-buffer": { + "type": "npm", + "name": "npm:data-view-buffer", + "data": { + "version": "1.0.2", + "packageName": "data-view-buffer", + "hash": "sha512-EmKO5V3OLXh1rtK2wgXRansaK1/mtVdTUEiEI0W8RkvgT05kfxaH29PliLnpLP73yYO6142Q72QNa8Wx/A5CqQ==" + } + }, + "npm:data-view-byte-length": { + "type": "npm", + "name": "npm:data-view-byte-length", + "data": { + "version": "1.0.2", + "packageName": "data-view-byte-length", + "hash": "sha512-tuhGbE6CfTM9+5ANGf+oQb72Ky/0+s3xKUpHvShfiz2RxMFgFPjsXuRLBVMtvMs15awe45SRb83D6wH4ew6wlQ==" + } + }, + "npm:data-view-byte-offset": { + "type": "npm", + "name": "npm:data-view-byte-offset", + "data": { + "version": "1.0.1", + "packageName": "data-view-byte-offset", + "hash": "sha512-BS8PfmtDGnrgYdOonGZQdLZslWIeCGFP9tpan0hi1Co2Zr2NKADsvGYA8XxuG/4UWgJ6Cjtv+YJnB6MM69QGlQ==" + } + }, + "npm:debug-logfmt": { + "type": "npm", + "name": "npm:debug-logfmt", + "data": { + "version": "1.4.8", + "packageName": "debug-logfmt", + "hash": "sha512-tdHndIqcBCy5vEjDBCcyv9FnCkn38QrPRP0Q5B5qi+0S2Lgc6JOPjy2ozsLt00qslzJVbxoO2W05PXNYNB0IMQ==" + } + }, + "npm:debug": { + "type": "npm", + "name": "npm:debug", + "data": { + "version": "4.4.3", + "packageName": "debug", + "hash": "sha512-RGwwWnwQvkVfavKVt22FGLw+xYSdzARwm0ru6DhTVA3umU5hZc28V3kO4stgYryrTlLpuvgI9GiijltAjNbcqA==" + } + }, + "npm:decode-named-character-reference": { + "type": "npm", + "name": "npm:decode-named-character-reference", + "data": { + "version": "1.2.0", + "packageName": "decode-named-character-reference", + "hash": "sha512-c6fcElNV6ShtZXmsgNgFFV5tVX2PaV4g+MOAkb8eXHvn6sryJBrZa9r0zV6+dtTyoCKxtDy5tyQ5ZwQuidtd+Q==" + } + }, + "npm:decompress-response": { + "type": "npm", + "name": "npm:decompress-response", + "data": { + "version": "6.0.0", + "packageName": "decompress-response", + "hash": "sha512-aW35yZM6Bb/4oJlZncMH2LCoZtJXTRxES17vE3hoRiowU2kWHaJKFkSBDnDR+cm9J+9QhXmREyIfv0pji9ejCQ==" + } + }, + "npm:deep-extend": { + "type": "npm", + "name": "npm:deep-extend", + "data": { + "version": "0.6.0", + "packageName": "deep-extend", + "hash": "sha512-LOHxIOaPYdHlJRtCQfDIVZtfw/ufM8+rVj649RIHzcm/vGwQRXFt6OPqIFWsm2XEMrNIEtWR64sY1LEKD2vAOA==" + } + }, + "npm:deep-is": { + "type": "npm", + "name": "npm:deep-is", + "data": { + "version": "0.1.4", + "packageName": "deep-is", + "hash": "sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==" + } + }, + "npm:deepmerge-ts": { + "type": "npm", + "name": "npm:deepmerge-ts", + "data": { + "version": "7.1.5", + "packageName": "deepmerge-ts", + "hash": "sha512-HOJkrhaYsweh+W+e74Yn7YStZOilkoPb6fycpwNLKzSPtruFs48nYis0zy5yJz1+ktUhHxoRDJ27RQAWLIJVJw==" + } + }, + "npm:defaults": { + "type": "npm", + "name": "npm:defaults", + "data": { + "version": "1.0.4", + "packageName": "defaults", + "hash": "sha512-eFuaLoy/Rxalv2kr+lqMlUnrDWV+3j4pljOIJgLIhI058IQfWJ7vXhyEIHu+HtC738klGALYxOKDO0bQP3tg8A==" + } + }, + "npm:defer-to-connect": { + "type": "npm", + "name": "npm:defer-to-connect", + "data": { + "version": "2.0.1", + "packageName": "defer-to-connect", + "hash": "sha512-4tvttepXG1VaYGrRibk5EwJd1t4udunSOVMdLSAL6mId1ix438oPwPZMALY41FCijukO1L0twNcGsdzS7dHgDg==" + } + }, + "npm:define-data-property": { + "type": "npm", + "name": "npm:define-data-property", + "data": { + "version": "1.1.4", + "packageName": "define-data-property", + "hash": "sha512-rBMvIzlpA8v6E+SJZoo++HAYqsLrkg7MSfIinMPFhmkorw7X+dOXVJQs+QT69zGkzMyfDnIMN2Wid1+NbL3T+A==" + } + }, + "npm:define-lazy-prop": { + "type": "npm", + "name": "npm:define-lazy-prop", + "data": { + "version": "2.0.0", + "packageName": "define-lazy-prop", + "hash": "sha512-Ds09qNh8yw3khSjiJjiUInaGX9xlqZDY7JVryGxdxV7NPeuqQfplOpQ66yJFZut3jLa5zOwkXw1g9EI2uKh4Og==" + } + }, + "npm:define-properties": { + "type": "npm", + "name": "npm:define-properties", + "data": { + "version": "1.2.1", + "packageName": "define-properties", + "hash": "sha512-8QmQKqEASLd5nx0U1B1okLElbUuuttJ/AnYmRXbbbGDWh6uS208EjD4Xqq/I9wK7u0v6O08XhTWnt5XtEbR6Dg==" + } + }, + "npm:defu": { + "type": "npm", + "name": "npm:defu", + "data": { + "version": "6.1.4", + "packageName": "defu", + "hash": "sha512-mEQCMmwJu317oSz8CwdIOdwf3xMif1ttiM8LTufzc3g6kR+9Pe236twL8j3IYT1F7GfRgGcW6MWxzZjLIkuHIg==" + } + }, + "npm:degenerator": { + "type": "npm", + "name": "npm:degenerator", + "data": { + "version": "5.0.1", + "packageName": "degenerator", + "hash": "sha512-TllpMR/t0M5sqCXfj85i4XaAzxmS5tVA16dqvdkMwGmzI+dXLXnw3J+3Vdv7VKw+ThlTMboK6i9rnZ6Nntj5CQ==" + } + }, + "npm:delayed-stream": { + "type": "npm", + "name": "npm:delayed-stream", + "data": { + "version": "1.0.0", + "packageName": "delayed-stream", + "hash": "sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ==" + } + }, + "npm:denque": { + "type": "npm", + "name": "npm:denque", + "data": { + "version": "2.1.0", + "packageName": "denque", + "hash": "sha512-HVQE3AAb/pxF8fQAoiqpvg9i3evqug3hoiwakOyZAwJm+6vZehbkYXZ0l4JxS+I3QxM97v5aaRNhj8v5oBhekw==" + } + }, + "npm:depd": { + "type": "npm", + "name": "npm:depd", + "data": { + "version": "2.0.0", + "packageName": "depd", + "hash": "sha512-g7nH6P6dyDioJogAAGprGpCtVImJhpPk/roCzdb3fIh61/s/nPsfR6onyMwkCAR/OlC3yBC0lESvUoQEAssIrw==" + } + }, + "npm:dequal": { + "type": "npm", + "name": "npm:dequal", + "data": { + "version": "2.0.3", + "packageName": "dequal", + "hash": "sha512-0je+qPKHEMohvfRTCEo3CrPG6cAzAYgmzKyxRiYSSDkS6eGJdyVJm7WaYA5ECaAD9wLB2T4EEeymA5aFVcYXCA==" + } + }, + "npm:destr": { + "type": "npm", + "name": "npm:destr", + "data": { + "version": "2.0.5", + "packageName": "destr", + "hash": "sha512-ugFTXCtDZunbzasqBxrK93Ik/DRYsO6S/fedkWEMKqt04xZ4csmnmwGDBAb07QWNaGMAmnTIemsYZCksjATwsA==" + } + }, + "npm:detect-libc": { + "type": "npm", + "name": "npm:detect-libc", + "data": { + "version": "2.1.2", + "packageName": "detect-libc", + "hash": "sha512-Btj2BOOO83o3WyH59e8MgXsxEQVcarkUOpEYrubB0urwnN10yQ364rsiByU11nZlqWYZm05i/of7io4mzihBtQ==" + } + }, + "npm:detect-node-es": { + "type": "npm", + "name": "npm:detect-node-es", + "data": { + "version": "1.1.0", + "packageName": "detect-node-es", + "hash": "sha512-ypdmJU/TbBby2Dxibuv7ZLW3Bs1QEmM7nHjEANfohJLvE0XVujisn1qPJcZxg+qDucsr+bP6fLD1rPS3AhJ7EQ==" + } + }, + "npm:devlop": { + "type": "npm", + "name": "npm:devlop", + "data": { + "version": "1.1.0", + "packageName": "devlop", + "hash": "sha512-RWmIqhcFf1lRYBvNmr7qTNuyCt/7/ns2jbpp1+PalgE/rDQcBT0fioSMUpJ93irlUhC5hrg4cYqe6U+0ImW0rA==" + } + }, + "npm:devtools-protocol": { + "type": "npm", + "name": "npm:devtools-protocol", + "data": { + "version": "0.0.1581282", + "packageName": "devtools-protocol", + "hash": "sha512-nv7iKtNZQshSW2hKzYNr46nM/Cfh5SEvE2oV0/SEGgc9XupIY5ggf84Cz8eJIkBce7S3bmTAauFD6aysMpnqsQ==" + } + }, + "npm:didyoumean3": { + "type": "npm", + "name": "npm:didyoumean3", + "data": { + "version": "1.2.5", + "packageName": "didyoumean3", + "hash": "sha512-ROol2k9IQ04NjrCiB98knunQ1cOmoXdYaGFjMfDIcXl9PuaxNVHxAZrG163aWkrRq5jIL+LatmqCgPasOvRwSQ==" + } + }, + "npm:doctrine": { + "type": "npm", + "name": "npm:doctrine", + "data": { + "version": "2.1.0", + "packageName": "doctrine", + "hash": "sha512-35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw==" + } + }, + "npm:dom-serializer": { + "type": "npm", + "name": "npm:dom-serializer", + "data": { + "version": "1.4.1", + "packageName": "dom-serializer", + "hash": "sha512-VHwB3KfrcOOkelEG2ZOfxqLZdfkil8PtJi4P8N2MMXucZq2yLp75ClViUlOVwyoHEDjYU433Aq+5zWP61+RGag==" + } + }, + "npm:domelementtype": { + "type": "npm", + "name": "npm:domelementtype", + "data": { + "version": "2.3.0", + "packageName": "domelementtype", + "hash": "sha512-OLETBj6w0OsagBwdXnPdN0cnMfF9opN69co+7ZrbfPGrdpPVNBUj02spi6B1N7wChLQiPn4CSH/zJvXw56gmHw==" + } + }, + "npm:domhandler": { + "type": "npm", + "name": "npm:domhandler", + "data": { + "version": "4.3.1", + "packageName": "domhandler", + "hash": "sha512-GrwoxYN+uWlzO8uhUXRl0P+kHE4GtVPfYzVLcUxPL7KNdHKj66vvlhiweIHqYYXWlw+T8iLMp42Lm67ghw4WMQ==" + } + }, + "npm:domutils": { + "type": "npm", + "name": "npm:domutils", + "data": { + "version": "2.8.0", + "packageName": "domutils", + "hash": "sha512-w96Cjofp72M5IIhpjgobBimYEfoPjx1Vx0BSX9P30WBdZW2WIKU0T1Bd0kz2eNZ9ikjKgHbEyKx8BB6H1L3h3A==" + } + }, + "npm:dotenv-expand": { + "type": "npm", + "name": "npm:dotenv-expand", + "data": { + "version": "11.0.7", + "packageName": "dotenv-expand", + "hash": "sha512-zIHwmZPRshsCdpMDyVsqGmgyP0yT8GAgXUnkdAoJisxvf33k7yO6OuoKmcTGuXPWSsm8Oh88nZicRLA9Y0rUeA==" + } + }, + "npm:dotenv@16.4.7": { + "type": "npm", + "name": "npm:dotenv@16.4.7", + "data": { + "version": "16.4.7", + "packageName": "dotenv", + "hash": "sha512-47qPchRCykZC03FhkYAhrvwU4xDBFIj1QPqaarj6mdM/hgUzfPHcpkHJOn3mJAufFeeAxAzeGsr5X0M4k6fLZQ==" + } + }, + "npm:dotenv@16.6.1": { + "type": "npm", + "name": "npm:dotenv@16.6.1", + "data": { + "version": "16.6.1", + "packageName": "dotenv", + "hash": "sha512-uBq4egWHTcTt33a72vpSG0z3HnPuIl6NqYcTrKEg2azoEyl2hpW0zqlxysq2pK9HlDIHyHyakeYaYnSAwd8bow==" + } + }, + "npm:dotenv": { + "type": "npm", + "name": "npm:dotenv", + "data": { + "version": "17.3.1", + "packageName": "dotenv", + "hash": "sha512-IO8C/dzEb6O3F9/twg6ZLXz164a2fhTnEWb95H23Dm4OuN+92NmEAlTrupP9VW6Jm3sO26tQlqyvyi4CsnY9GA==" + } + }, + "npm:drizzle-kit": { + "type": "npm", + "name": "npm:drizzle-kit", + "data": { + "version": "0.31.10", + "packageName": "drizzle-kit", + "hash": "sha512-7OZcmQUrdGI+DUNNsKBn1aW8qSoKuTH7d0mYgSP8bAzdFzKoovxEFnoGQp2dVs82EOJeYycqRtciopszwUf8bw==" + } + }, + "npm:drizzle-orm": { + "type": "npm", + "name": "npm:drizzle-orm", + "data": { + "version": "0.45.1", + "packageName": "drizzle-orm", + "hash": "sha512-Te0FOdKIistGNPMq2jscdqngBRfBpC8uMFVwqjf6gtTVJHIQ/dosgV/CLBU2N4ZJBsXL5savCba9b0YJskKdcA==" + } + }, + "npm:dts-resolver": { + "type": "npm", + "name": "npm:dts-resolver", + "data": { + "version": "2.1.3", + "packageName": "dts-resolver", + "hash": "sha512-bihc7jPC90VrosXNzK0LTE2cuLP6jr0Ro8jk+kMugHReJVLIpHz/xadeq3MhuwyO4TD4OA3L1Q8pBBFRc08Tsw==" + } + }, + "npm:dunder-proto": { + "type": "npm", + "name": "npm:dunder-proto", + "data": { + "version": "1.0.1", + "packageName": "dunder-proto", + "hash": "sha512-KIN/nDJBQRcXw0MLVhZE9iQHmG68qAVIBg9CqmUYjmQIhgij9U5MFvrqkUL5FbtyyzZuOeOt0zdeRe4UY7ct+A==" + } + }, + "npm:eastasianwidth": { + "type": "npm", + "name": "npm:eastasianwidth", + "data": { + "version": "0.2.0", + "packageName": "eastasianwidth", + "hash": "sha512-I88TYZWc9XiYHRQ4/3c5rjjfgkjhLyW2luGIheGERbNQ6OY7yTybanSpDXZa8y7VUP9YmDcYa+eyq4ca7iLqWA==" + } + }, + "npm:ee-first": { + "type": "npm", + "name": "npm:ee-first", + "data": { + "version": "1.1.1", + "packageName": "ee-first", + "hash": "sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow==" + } + }, + "npm:effect": { + "type": "npm", + "name": "npm:effect", + "data": { + "version": "3.18.4", + "packageName": "effect", + "hash": "sha512-b1LXQJLe9D11wfnOKAk3PKxuqYshQ0Heez+y5pnkd3jLj1yx9QhM72zZ9uUrOQyNvrs2GZZd/3maL0ZV18YuDA==" + } + }, + "npm:ejs": { + "type": "npm", + "name": "npm:ejs", + "data": { + "version": "3.1.10", + "packageName": "ejs", + "hash": "sha512-UeJmFfOrAQS8OJWPZ4qtgHyWExa088/MtK5UEyoJGFH67cDEXkZSviOiKRCZ4Xij0zxI3JECgYs3oKx+AizQBA==" + } + }, + "npm:electron-to-chromium": { + "type": "npm", + "name": "npm:electron-to-chromium", + "data": { + "version": "1.5.267", + "packageName": "electron-to-chromium", + "hash": "sha512-0Drusm6MVRXSOJpGbaSVgcQsuB4hEkMpHXaVstcPmhu5LIedxs1xNK/nIxmQIU/RPC0+1/o0AVZfBTkTNJOdUw==" + } + }, + "npm:emoji-regex": { + "type": "npm", + "name": "npm:emoji-regex", + "data": { + "version": "8.0.0", + "packageName": "emoji-regex", + "hash": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==" + } + }, + "npm:emoji-regex@9.2.2": { + "type": "npm", + "name": "npm:emoji-regex@9.2.2", + "data": { + "version": "9.2.2", + "packageName": "emoji-regex", + "hash": "sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==" + } + }, + "npm:empathic": { + "type": "npm", + "name": "npm:empathic", + "data": { + "version": "2.0.0", + "packageName": "empathic", + "hash": "sha512-i6UzDscO/XfAcNYD75CfICkmfLedpyPDdozrLMmQc5ORaQcdMoc21OnlEylMIqI7U8eniKrPMxxtj8k0vhmJhA==" + } + }, + "npm:encodeurl": { + "type": "npm", + "name": "npm:encodeurl", + "data": { + "version": "2.0.0", + "packageName": "encodeurl", + "hash": "sha512-Q0n9HRi4m6JuGIV1eFlmvJB7ZEVxu93IrMyiMsGC0lrMJMWzRgx6WGquyfQgZVb31vhGgXnfmPNNXmxnOkRBrg==" + } + }, + "npm:encoding": { + "type": "npm", + "name": "npm:encoding", + "data": { + "version": "0.1.13", + "packageName": "encoding", + "hash": "sha512-ETBauow1T35Y/WZMkio9jiM0Z5xjHHmJ4XmjZOq1l/dXz3lr2sRn87nJy20RupqSh1F2m3HHPSp8ShIPQJrJ3A==" + } + }, + "npm:end-of-stream": { + "type": "npm", + "name": "npm:end-of-stream", + "data": { + "version": "1.4.5", + "packageName": "end-of-stream", + "hash": "sha512-ooEGc6HP26xXq/N+GCGOT0JKCLDGrq2bQUZrQ7gyrJiZANJ/8YDTxTpQBXGMn+WbIQXNVpyWymm7KYVICQnyOg==" + } + }, + "npm:enhanced-resolve": { + "type": "npm", + "name": "npm:enhanced-resolve", + "data": { + "version": "5.19.0", + "packageName": "enhanced-resolve", + "hash": "sha512-phv3E1Xl4tQOShqSte26C7Fl84EwUdZsyOuSSk9qtAGyyQs2s3jJzComh+Abf4g187lUUAvH+H26omrqia2aGg==" + } + }, + "npm:enquirer": { + "type": "npm", + "name": "npm:enquirer", + "data": { + "version": "2.3.6", + "packageName": "enquirer", + "hash": "sha512-yjNnPr315/FjS4zIsUxYguYUPP2e1NK4d7E7ZOLiyYCcbFBiTMyID+2wvm2w6+pZ/odMA7cRkjhsPbltwBOrLg==" + } + }, + "npm:ensure-error": { + "type": "npm", + "name": "npm:ensure-error", + "data": { + "version": "3.0.1", + "packageName": "ensure-error", + "hash": "sha512-J2e5Z3sgnA8en6+alf2VkO5cRwe75hHgSw0rJiMn5CEE4Yyw6GSgH31IBgwN9lugeCuPKHzuOF3X/RozAFsuhQ==" + } + }, + "npm:entities@2.2.0": { + "type": "npm", + "name": "npm:entities@2.2.0", + "data": { + "version": "2.2.0", + "packageName": "entities", + "hash": "sha512-p92if5Nz619I0w+akJrLZH0MX0Pb5DX39XOwQTtXSdQQOaYH03S1uIQp4mhOZtAXrxq4ViO67YTiLBo2638o9A==" + } + }, + "npm:entities@6.0.1": { + "type": "npm", + "name": "npm:entities@6.0.1", + "data": { + "version": "6.0.1", + "packageName": "entities", + "hash": "sha512-aN97NXWF6AWBTahfVOIrB/NShkzi5H7F9r1s9mD3cDj4Ko5f2qhhVoYMibXF7GlLveb/D2ioWay8lxI97Ven3g==" + } + }, + "npm:entities": { + "type": "npm", + "name": "npm:entities", + "data": { + "version": "7.0.1", + "packageName": "entities", + "hash": "sha512-TWrgLOFUQTH994YUyl1yT4uyavY5nNB5muff+RtWaqNVCAK408b5ZnnbNAUEWLTCpum9w6arT70i1XdQ4UeOPA==" + } + }, + "npm:env-paths": { + "type": "npm", + "name": "npm:env-paths", + "data": { + "version": "2.2.1", + "packageName": "env-paths", + "hash": "sha512-+h1lkLKhZMTYjog1VEpJNG7NZJWcuc2DDk/qsqSTRRCOXiLjeQ1d1/udrUGhqMxUgAlwKNZ0cf2uqan5GLuS2A==" + } + }, + "npm:err-code": { + "type": "npm", + "name": "npm:err-code", + "data": { + "version": "2.0.3", + "packageName": "err-code", + "hash": "sha512-2bmlRpNKBxT/CRmPOlyISQpNj+qSeYvcym/uT0Jx2bMOlKLtSy1ZmLuVxSEKKyor/N5yhvp/ZiG1oE3DEYMSFA==" + } + }, + "npm:error-ex": { + "type": "npm", + "name": "npm:error-ex", + "data": { + "version": "1.3.4", + "packageName": "error-ex", + "hash": "sha512-sqQamAnR14VgCr1A618A3sGrygcpK+HEbenA/HiEAkkUwcZIIB/tgWqHFxWgOyDh4nB4JCRimh79dR5Ywc9MDQ==" + } + }, + "npm:error-stack-parser-es": { + "type": "npm", + "name": "npm:error-stack-parser-es", + "data": { + "version": "1.0.5", + "packageName": "error-stack-parser-es", + "hash": "sha512-5qucVt2XcuGMcEGgWI7i+yZpmpByQ8J1lHhcL7PwqCwu9FPP3VUXzT4ltHe5i2z9dePwEHcDVOAfSnHsOlCXRA==" + } + }, + "npm:es-abstract": { + "type": "npm", + "name": "npm:es-abstract", + "data": { + "version": "1.24.0", + "packageName": "es-abstract", + "hash": "sha512-WSzPgsdLtTcQwm4CROfS5ju2Wa1QQcVeT37jFjYzdFz1r9ahadC8B8/a4qxJxM+09F18iumCdRmlr96ZYkQvEg==" + } + }, + "npm:es-define-property": { + "type": "npm", + "name": "npm:es-define-property", + "data": { + "version": "1.0.1", + "packageName": "es-define-property", + "hash": "sha512-e3nRfgfUZ4rNGL232gUgX06QNyyez04KdjFrF+LTRoOXmrOgFKDg4BCdsjW8EnT69eqdYGmRpJwiPVYNrCaW3g==" + } + }, + "npm:es-errors": { + "type": "npm", + "name": "npm:es-errors", + "data": { + "version": "1.3.0", + "packageName": "es-errors", + "hash": "sha512-Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw==" + } + }, + "npm:es-iterator-helpers": { + "type": "npm", + "name": "npm:es-iterator-helpers", + "data": { + "version": "1.2.1", + "packageName": "es-iterator-helpers", + "hash": "sha512-uDn+FE1yrDzyC0pCo961B2IHbdM8y/ACZsKD4dG6WqrjV53BADjwa7D+1aom2rsNVfLyDgU/eigvlJGJ08OQ4w==" + } + }, + "npm:es-module-lexer": { + "type": "npm", + "name": "npm:es-module-lexer", + "data": { + "version": "1.7.0", + "packageName": "es-module-lexer", + "hash": "sha512-jEQoCwk8hyb2AZziIOLhDqpm5+2ww5uIE6lkO/6jcOCusfk6LhMHpXXfBLXTZ7Ydyt0j4VoUQv6uGNYbdW+kBA==" + } + }, + "npm:es-module-lexer@2.0.0": { + "type": "npm", + "name": "npm:es-module-lexer@2.0.0", + "data": { + "version": "2.0.0", + "packageName": "es-module-lexer", + "hash": "sha512-5POEcUuZybH7IdmGsD8wlf0AI55wMecM9rVBTI/qEAy2c1kTOm3DjFYjrBdI2K3BaJjJYfYFeRtM0t9ssnRuxw==" + } + }, + "npm:es-object-atoms": { + "type": "npm", + "name": "npm:es-object-atoms", + "data": { + "version": "1.1.1", + "packageName": "es-object-atoms", + "hash": "sha512-FGgH2h8zKNim9ljj7dankFPcICIK9Cp5bm+c2gQSYePhpaG5+esrLODihIorn+Pe6FGJzWhXQotPv73jTaldXA==" + } + }, + "npm:es-set-tostringtag": { + "type": "npm", + "name": "npm:es-set-tostringtag", + "data": { + "version": "2.1.0", + "packageName": "es-set-tostringtag", + "hash": "sha512-j6vWzfrGVfyXxge+O0x5sh6cvxAog0a/4Rdd2K36zCMV5eJ+/+tOAngRO8cODMNWbVRdVlmGZQL2YS3yR8bIUA==" + } + }, + "npm:es-shim-unscopables": { + "type": "npm", + "name": "npm:es-shim-unscopables", + "data": { + "version": "1.1.0", + "packageName": "es-shim-unscopables", + "hash": "sha512-d9T8ucsEhh8Bi1woXCf+TIKDIROLG5WCkxg8geBCbvk22kzwC5G2OnXVMO6FUsvQlgUUXQ2itephWDLqDzbeCw==" + } + }, + "npm:es-to-primitive": { + "type": "npm", + "name": "npm:es-to-primitive", + "data": { + "version": "1.3.0", + "packageName": "es-to-primitive", + "hash": "sha512-w+5mJ3GuFL+NjVtJlvydShqE1eN3h3PbI7/5LAsYJP/2qtuMXjfL2LpHSRqo4b4eSF5K/DH1JXKUAHSB2UW50g==" + } + }, + "npm:esbuild@0.18.20": { + "type": "npm", + "name": "npm:esbuild@0.18.20", + "data": { + "version": "0.18.20", + "packageName": "esbuild", + "hash": "sha512-ceqxoedUrcayh7Y7ZX6NdbbDzGROiyVBgC4PriJThBKSVPWnnFHZAkfI1lJT8QFkOwH4qOS2SJkS4wvpGl8BpA==" + } + }, + "npm:esbuild@0.25.12": { + "type": "npm", + "name": "npm:esbuild@0.25.12", + "data": { + "version": "0.25.12", + "packageName": "esbuild", + "hash": "sha512-bbPBYYrtZbkt6Os6FiTLCTFxvq4tt3JKall1vRwshA3fdVztsLAatFaZobhkBC8/BrPetoa0oksYoKXoG4ryJg==" + } + }, + "npm:esbuild@0.27.3": { + "type": "npm", + "name": "npm:esbuild@0.27.3", + "data": { + "version": "0.27.3", + "packageName": "esbuild", + "hash": "sha512-8VwMnyGCONIs6cWue2IdpHxHnAjzxnw2Zr7MkVxB2vjmQ2ivqGFb4LEG3SMnv0Gb2F/G/2yA8zUaiL1gywDCCg==" + } + }, + "npm:esbuild": { + "type": "npm", + "name": "npm:esbuild", + "data": { + "version": "0.27.4", + "packageName": "esbuild", + "hash": "sha512-Rq4vbHnYkK5fws5NF7MYTU68FPRE1ajX7heQ/8QXXWqNgqqJ/GkmmyxIzUnf2Sr/bakf8l54716CcMGHYhMrrQ==" + } + }, + "npm:escalade": { + "type": "npm", + "name": "npm:escalade", + "data": { + "version": "3.2.0", + "packageName": "escalade", + "hash": "sha512-WUj2qlxaQtO4g6Pq5c29GTcWGDyd8itL8zTlipgECz3JesAiiOKotd8JU6otB3PACgG6xkJUyVhboMS+bje/jA==" + } + }, + "npm:escape-html": { + "type": "npm", + "name": "npm:escape-html", + "data": { + "version": "1.0.3", + "packageName": "escape-html", + "hash": "sha512-NiSupZ4OeuGwr68lGIeym/ksIZMJodUGOSCZ/FSnTxcrekbvqrgdUxlJOMpijaKZVjAJrWrGs/6Jy8OMuyj9ow==" + } + }, + "npm:escape-string-regexp@1.0.5": { + "type": "npm", + "name": "npm:escape-string-regexp@1.0.5", + "data": { + "version": "1.0.5", + "packageName": "escape-string-regexp", + "hash": "sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==" + } + }, + "npm:escape-string-regexp": { + "type": "npm", + "name": "npm:escape-string-regexp", + "data": { + "version": "4.0.0", + "packageName": "escape-string-regexp", + "hash": "sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==" + } + }, + "npm:escodegen": { + "type": "npm", + "name": "npm:escodegen", + "data": { + "version": "2.1.0", + "packageName": "escodegen", + "hash": "sha512-2NlIDTwUWJN0mRPQOdtQBzbUHvdGY2P1VXSyU83Q3xKxM7WHX2Ql8dKq782Q9TgQUNOLEzEYu9bzLNj1q88I5w==" + } + }, + "npm:eslint-config-prettier": { + "type": "npm", + "name": "npm:eslint-config-prettier", + "data": { + "version": "10.1.8", + "packageName": "eslint-config-prettier", + "hash": "sha512-82GZUjRS0p/jganf6q1rEO25VSoHH0hKPCTrgillPjdI/3bgBhAE1QzHrHTizjpRvy6pGAvKjDJtk2pF9NDq8w==" + } + }, + "npm:eslint-plugin-prettier": { + "type": "npm", + "name": "npm:eslint-plugin-prettier", + "data": { + "version": "5.5.5", + "packageName": "eslint-plugin-prettier", + "hash": "sha512-hscXkbqUZ2sPithAuLm5MXL+Wph+U7wHngPBv9OMWwlP8iaflyxpjTYZkmdgB4/vPIhemRlBEoLrH7UC1n7aUw==" + } + }, + "npm:eslint-plugin-react": { + "type": "npm", + "name": "npm:eslint-plugin-react", + "data": { + "version": "7.37.5", + "packageName": "eslint-plugin-react", + "hash": "sha512-Qteup0SqU15kdocexFNAJMvCJEfa2xUKNV4CC1xsVMrIIqEy3SQ/rqyxCWNzfrd3/ldy6HMlD2e0JDVpDg2qIA==" + } + }, + "npm:eslint-plugin-solid": { + "type": "npm", + "name": "npm:eslint-plugin-solid", + "data": { + "version": "0.14.5", + "packageName": "eslint-plugin-solid", + "hash": "sha512-nfuYK09ah5aJG/oEN6P1qziy1zLgW4PDWe75VNPi4CEFYk1x2AEqwFeQfEPR7gNn0F2jOeqKhx2E+5oNCOBYWQ==" + } + }, + "npm:eslint-plugin-vue": { + "type": "npm", + "name": "npm:eslint-plugin-vue", + "data": { + "version": "10.8.0", + "packageName": "eslint-plugin-vue", + "hash": "sha512-f1J/tcbnrpgC8suPN5AtdJ5MQjuXbSU9pGRSSYAuF3SHoiYCOdEX6O22pLaRyLHXvDcOe+O5ENgc1owQ587agA==" + } + }, + "npm:eslint-rule-composer": { + "type": "npm", + "name": "npm:eslint-rule-composer", + "data": { + "version": "0.3.0", + "packageName": "eslint-rule-composer", + "hash": "sha512-bt+Sh8CtDmn2OajxvNO+BX7Wn4CIWMpTRm3MaiKPCQcnnlm0CS2mhui6QaoeQugs+3Kj2ESKEEGJUdVafwhiCg==" + } + }, + "npm:eslint-scope": { + "type": "npm", + "name": "npm:eslint-scope", + "data": { + "version": "8.4.0", + "packageName": "eslint-scope", + "hash": "sha512-sNXOfKCn74rt8RICKMvJS7XKV/Xk9kA7DyJr8mJik3S7Cwgy3qlkkmyS2uQB3jiJg6VNdZd/pDBJu0nvG2NlTg==" + } + }, + "npm:eslint-visitor-keys@3.4.3": { + "type": "npm", + "name": "npm:eslint-visitor-keys@3.4.3", + "data": { + "version": "3.4.3", + "packageName": "eslint-visitor-keys", + "hash": "sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag==" + } + }, + "npm:eslint-visitor-keys": { + "type": "npm", + "name": "npm:eslint-visitor-keys", + "data": { + "version": "4.2.1", + "packageName": "eslint-visitor-keys", + "hash": "sha512-Uhdk5sfqcee/9H/rCOJikYz67o0a2Tw2hGRPOG2Y1R2dg7brRe1uG0yaNQDHu+TO/uQPF/5eCapvYSmHUjt7JQ==" + } + }, + "npm:eslint-visitor-keys@5.0.1": { + "type": "npm", + "name": "npm:eslint-visitor-keys@5.0.1", + "data": { + "version": "5.0.1", + "packageName": "eslint-visitor-keys", + "hash": "sha512-tD40eHxA35h0PEIZNeIjkHoDR4YjjJp34biM0mDvplBe//mB+IHCqHDGV7pxF+7MklTvighcCPPZC7ynWyjdTA==" + } + }, + "npm:eslint": { + "type": "npm", + "name": "npm:eslint", + "data": { + "version": "9.39.4", + "packageName": "eslint", + "hash": "sha512-XoMjdBOwe/esVgEvLmNsD3IRHkm7fbKIUGvrleloJXUZgDHig2IPWNniv+GwjyJXzuNqVjlr5+4yVUZjycJwfQ==" + } + }, + "npm:espree@10.4.0": { + "type": "npm", + "name": "npm:espree@10.4.0", + "data": { + "version": "10.4.0", + "packageName": "espree", + "hash": "sha512-j6PAQ2uUr79PZhBjP5C5fhl8e39FmRnOjsD5lGnWrFU8i2G776tBK7+nP8KuQUTTyAZUwfQqXAgrVH5MbH9CYQ==" + } + }, + "npm:espree": { + "type": "npm", + "name": "npm:espree", + "data": { + "version": "11.2.0", + "packageName": "espree", + "hash": "sha512-7p3DrVEIopW1B1avAGLuCSh1jubc01H2JHc8B4qqGblmg5gI9yumBgACjWo4JlIc04ufug4xJ3SQI8HkS/Rgzw==" + } + }, + "npm:esprima": { + "type": "npm", + "name": "npm:esprima", + "data": { + "version": "4.0.1", + "packageName": "esprima", + "hash": "sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==" + } + }, + "npm:esquery": { + "type": "npm", + "name": "npm:esquery", + "data": { + "version": "1.6.0", + "packageName": "esquery", + "hash": "sha512-ca9pw9fomFcKPvFLXhBKUK90ZvGibiGOvRJNbjljY7s7uq/5YO4BOzcYtJqExdx99rF6aAcnRxHmcUHcz6sQsg==" + } + }, + "npm:esrecurse": { + "type": "npm", + "name": "npm:esrecurse", + "data": { + "version": "4.3.0", + "packageName": "esrecurse", + "hash": "sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==" + } + }, + "npm:estraverse": { + "type": "npm", + "name": "npm:estraverse", + "data": { + "version": "5.3.0", + "packageName": "estraverse", + "hash": "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==" + } + }, + "npm:estree-walker@2.0.2": { + "type": "npm", + "name": "npm:estree-walker@2.0.2", + "data": { + "version": "2.0.2", + "packageName": "estree-walker", + "hash": "sha512-Rfkk/Mp/DL7JVje3u18FxFujQlTNR2q6QfMSMB7AvCBx91NGj/ba3kCfza0f6dVDbw7YlRf/nDrn7pQrCCyQ/w==" + } + }, + "npm:estree-walker": { + "type": "npm", + "name": "npm:estree-walker", + "data": { + "version": "3.0.3", + "packageName": "estree-walker", + "hash": "sha512-7RUKfXgSMMkzt6ZuXmqapOurLGPPfgj6l9uRZ7lRGolvk0y2yocc35LdcxKC5PQZdn2DMqioAQ2NoWcrTKmm6g==" + } + }, + "npm:esutils": { + "type": "npm", + "name": "npm:esutils", + "data": { + "version": "2.0.3", + "packageName": "esutils", + "hash": "sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==" + } + }, + "npm:etag": { + "type": "npm", + "name": "npm:etag", + "data": { + "version": "1.8.1", + "packageName": "etag", + "hash": "sha512-aIL5Fx7mawVa300al2BnEE4iNvo1qETxLrPI/o05L7z6go7fCw1J6EQmbK4FmJ2AS7kgVF/KEZWufBfdClMcPg==" + } + }, + "npm:eventemitter3": { + "type": "npm", + "name": "npm:eventemitter3", + "data": { + "version": "4.0.7", + "packageName": "eventemitter3", + "hash": "sha512-8guHBZCwKnFhYdHr2ysuRWErTwhoN2X8XELRlrRwpmfeY2jjuUN4taQMsULKUVo1K4DvZl+0pgfyoysHxvmvEw==" + } + }, + "npm:events-universal": { + "type": "npm", + "name": "npm:events-universal", + "data": { + "version": "1.0.1", + "packageName": "events-universal", + "hash": "sha512-LUd5euvbMLpwOF8m6ivPCbhQeSiYVNb8Vs0fQ8QjXo0JTkEHpz8pxdQf0gStltaPpw0Cca8b39KxvK9cfKRiAw==" + } + }, + "npm:execa": { + "type": "npm", + "name": "npm:execa", + "data": { + "version": "9.6.1", + "packageName": "execa", + "hash": "sha512-9Be3ZoN4LmYR90tUoVu2te2BsbzHfhJyfEiAVfz7N5/zv+jduIfLrV2xdQXOHbaD6KgpGdO9PRPM1Y4Q9QkPkA==" + } + }, + "npm:exit-hook": { + "type": "npm", + "name": "npm:exit-hook", + "data": { + "version": "2.2.1", + "packageName": "exit-hook", + "hash": "sha512-eNTPlAD67BmP31LDINZ3U7HSF8l57TxOY2PmBJ1shpCvpnxBF93mWCE8YHBnXs8qiUZJc9WDcWIeC3a2HIAMfw==" + } + }, + "npm:expand-template": { + "type": "npm", + "name": "npm:expand-template", + "data": { + "version": "2.0.3", + "packageName": "expand-template", + "hash": "sha512-XYfuKMvj4O35f/pOXLObndIRvyQ+/+6AhODh+OKWj9S9498pHHn/IMszH+gt0fBCRWMNfk1ZSp5x3AifmnI2vg==" + } + }, + "npm:expect-type": { + "type": "npm", + "name": "npm:expect-type", + "data": { + "version": "1.3.0", + "packageName": "expect-type", + "hash": "sha512-knvyeauYhqjOYvQ66MznSMs83wmHrCycNEN6Ao+2AeYEfxUIkuiVxdEa1qlGEPK+We3n0THiDciYSsCcgW/DoA==" + } + }, + "npm:exponential-backoff": { + "type": "npm", + "name": "npm:exponential-backoff", + "data": { + "version": "3.1.3", + "packageName": "exponential-backoff", + "hash": "sha512-ZgEeZXj30q+I0EN+CbSSpIyPaJ5HVQD18Z1m+u1FXbAeT94mr1zw50q4q6jiiC447Nl/YTcIYSAftiGqetwXCA==" + } + }, + "npm:express": { + "type": "npm", + "name": "npm:express", + "data": { + "version": "5.2.1", + "packageName": "express", + "hash": "sha512-hIS4idWWai69NezIdRt2xFVofaF4j+6INOpJlVOLDO8zXGpUVEVzIYk12UUi2JzjEzWL3IOAxcTubgz9Po0yXw==" + } + }, + "npm:exsolve": { + "type": "npm", + "name": "npm:exsolve", + "data": { + "version": "1.0.8", + "packageName": "exsolve", + "hash": "sha512-LmDxfWXwcTArk8fUEnOfSZpHOJ6zOMUJKOtFLFqJLoKJetuQG874Uc7/Kki7zFLzYybmZhp1M7+98pfMqeX8yA==" + } + }, + "npm:extract-zip": { + "type": "npm", + "name": "npm:extract-zip", + "data": { + "version": "2.0.1", + "packageName": "extract-zip", + "hash": "sha512-GDhU9ntwuKyGXdZBUgTIe+vXnWj0fppUEtMDL0+idd5Sta8TGpHssn/eusA9mrPr9qNDym6SxAYZjNvCn/9RBg==" + } + }, + "npm:fast-check": { + "type": "npm", + "name": "npm:fast-check", + "data": { + "version": "3.23.2", + "packageName": "fast-check", + "hash": "sha512-h5+1OzzfCC3Ef7VbtKdcv7zsstUQwUDlYpUTvjeUsJAssPgLn7QzbboPtL5ro04Mq0rPOsMzl7q5hIbRs2wD1A==" + } + }, + "npm:fast-decode-uri-component": { + "type": "npm", + "name": "npm:fast-decode-uri-component", + "data": { + "version": "1.0.1", + "packageName": "fast-decode-uri-component", + "hash": "sha512-WKgKWg5eUxvRZGwW8FvfbaH7AXSh2cL+3j5fMGzUMCxWBJ3dV3a7Wz8y2f/uQ0e3B6WmodD3oS54jTQ9HVTIIg==" + } + }, + "npm:fast-deep-equal": { + "type": "npm", + "name": "npm:fast-deep-equal", + "data": { + "version": "3.1.3", + "packageName": "fast-deep-equal", + "hash": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==" + } + }, + "npm:fast-diff": { + "type": "npm", + "name": "npm:fast-diff", + "data": { + "version": "1.3.0", + "packageName": "fast-diff", + "hash": "sha512-VxPP4NqbUjj6MaAOafWeUn2cXWLcCtljklUtZf0Ind4XQ+QPtmA0b18zZy0jIQx+ExRVCR/ZQpBmik5lXshNsw==" + } + }, + "npm:fast-fifo": { + "type": "npm", + "name": "npm:fast-fifo", + "data": { + "version": "1.3.2", + "packageName": "fast-fifo", + "hash": "sha512-/d9sfos4yxzpwkDkuN7k2SqFKtYNmCTzgfEpz82x34IM9/zc8KGxQoXg1liNC/izpRM/MBdt44Nmx41ZWqk+FQ==" + } + }, + "npm:fast-glob": { + "type": "npm", + "name": "npm:fast-glob", + "data": { + "version": "3.3.3", + "packageName": "fast-glob", + "hash": "sha512-7MptL8U0cqcFdzIzwOTHoilX9x5BrNqye7Z/LuC7kCMRio1EMSyqRK3BEAUD7sXRq4iT4AzTVuZdhgQ2TCvYLg==" + } + }, + "npm:fast-json-stable-stringify": { + "type": "npm", + "name": "npm:fast-json-stable-stringify", + "data": { + "version": "2.1.0", + "packageName": "fast-json-stable-stringify", + "hash": "sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==" + } + }, + "npm:fast-json-stringify": { + "type": "npm", + "name": "npm:fast-json-stringify", + "data": { + "version": "6.3.0", + "packageName": "fast-json-stringify", + "hash": "sha512-oRCntNDY/329HJPlmdNLIdogNtt6Vyjb1WuT01Soss3slIdyUp8kAcDU3saQTOquEK8KFVfwIIF7FebxUAu+yA==" + } + }, + "npm:fast-levenshtein": { + "type": "npm", + "name": "npm:fast-levenshtein", + "data": { + "version": "2.0.6", + "packageName": "fast-levenshtein", + "hash": "sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==" + } + }, + "npm:fast-querystring": { + "type": "npm", + "name": "npm:fast-querystring", + "data": { + "version": "1.1.2", + "packageName": "fast-querystring", + "hash": "sha512-g6KuKWmFXc0fID8WWH0jit4g0AGBoJhCkJMb1RmbsSEUNvQ+ZC8D6CUZ+GtF8nMzSPXnhiePyyqqipzNNEnHjg==" + } + }, + "npm:fast-string-truncated-width": { + "type": "npm", + "name": "npm:fast-string-truncated-width", + "data": { + "version": "3.0.3", + "packageName": "fast-string-truncated-width", + "hash": "sha512-0jjjIEL6+0jag3l2XWWizO64/aZVtpiGE3t0Zgqxv0DPuxiMjvB3M24fCyhZUO4KomJQPj3LTSUnDP3GpdwC0g==" + } + }, + "npm:fast-string-width": { + "type": "npm", + "name": "npm:fast-string-width", + "data": { + "version": "3.0.2", + "packageName": "fast-string-width", + "hash": "sha512-gX8LrtNEI5hq8DVUfRQMbr5lpaS4nMIWV+7XEbXk2b8kiQIizgnlr12B4dA3ZEx3308ze0O4Q1R+cHts8kyUJg==" + } + }, + "npm:fast-uri": { + "type": "npm", + "name": "npm:fast-uri", + "data": { + "version": "3.1.0", + "packageName": "fast-uri", + "hash": "sha512-iPeeDKJSWf4IEOasVVrknXpaBV0IApz/gp7S2bb7Z4Lljbl2MGJRqInZiUrQwV16cpzw/D3S5j5Julj/gT52AA==" + } + }, + "npm:fast-wrap-ansi": { + "type": "npm", + "name": "npm:fast-wrap-ansi", + "data": { + "version": "0.2.0", + "packageName": "fast-wrap-ansi", + "hash": "sha512-rLV8JHxTyhVmFYhBJuMujcrHqOT2cnO5Zxj37qROj23CP39GXubJRBUFF0z8KFK77Uc0SukZUf7JZhsVEQ6n8w==" + } + }, + "npm:fastify-plugin": { + "type": "npm", + "name": "npm:fastify-plugin", + "data": { + "version": "5.1.0", + "packageName": "fastify-plugin", + "hash": "sha512-FAIDA8eovSt5qcDgcBvDuX/v0Cjz0ohGhENZ/wpc3y+oZCY2afZ9Baqql3g/lC+OHRnciQol4ww7tuthOb9idw==" + } + }, + "npm:fastify-raw-body": { + "type": "npm", + "name": "npm:fastify-raw-body", + "data": { + "version": "5.0.0", + "packageName": "fastify-raw-body", + "hash": "sha512-2qfoaQ3BQDhZ1gtbkKZd6n0kKxJISJGM6u/skD9ljdWItAscjXrtZ1lnjr7PavmXX9j4EyCPmBDiIsLn07d5vA==" + } + }, + "npm:fastify": { + "type": "npm", + "name": "npm:fastify", + "data": { + "version": "5.8.2", + "packageName": "fastify", + "hash": "sha512-lZmt3navvZG915IE+f7/TIVamxIwmBd+OMB+O9WBzcpIwOo6F0LTh0sluoMFk5VkrKTvvrwIaoJPkir4Z+jtAg==" + } + }, + "npm:fastq": { + "type": "npm", + "name": "npm:fastq", + "data": { + "version": "1.20.1", + "packageName": "fastq", + "hash": "sha512-GGToxJ/w1x32s/D2EKND7kTil4n8OVk/9mycTc4VDza13lOvpUZTGX3mFSCtV9ksdGBVzvsyAVLM6mHFThxXxw==" + } + }, + "npm:fd-package-json": { + "type": "npm", + "name": "npm:fd-package-json", + "data": { + "version": "2.0.0", + "packageName": "fd-package-json", + "hash": "sha512-jKmm9YtsNXN789RS/0mSzOC1NUq9mkVd65vbSSVsKdjGvYXBuE4oWe2QOEoFeRmJg+lPuZxpmrfFclNhoRMneQ==" + } + }, + "npm:fd-slicer": { + "type": "npm", + "name": "npm:fd-slicer", + "data": { + "version": "1.1.0", + "packageName": "fd-slicer", + "hash": "sha512-cE1qsB/VwyQozZ+q1dGxR8LBYNZeofhEdUNGSMbQD3Gw2lAzX9Zb3uIU6Ebc/Fmyjo9AWWfnn0AUCHqtevs/8g==" + } + }, + "npm:fdir": { + "type": "npm", + "name": "npm:fdir", + "data": { + "version": "6.5.0", + "packageName": "fdir", + "hash": "sha512-tIbYtZbucOs0BRGqPJkshJUYdL+SDH7dVM8gjy+ERp3WAUjLEFJE+02kanyHtwjWOnwrKYBiwAmM0p4kLJAnXg==" + } + }, + "npm:fetch-blob": { + "type": "npm", + "name": "npm:fetch-blob", + "data": { + "version": "3.2.0", + "packageName": "fetch-blob", + "hash": "sha512-7yAQpD2UMJzLi1Dqv7qFYnPbaPx7ZfFK6PiIxQ4PfkGPyNyl2Ugx+a/umUonmKqjhM4DnfbMvdX6otXq83soQQ==" + } + }, + "npm:figures@3.2.0": { + "type": "npm", + "name": "npm:figures@3.2.0", + "data": { + "version": "3.2.0", + "packageName": "figures", + "hash": "sha512-yaduQFRKLXYOGgEn6AZau90j3ggSOyiqXU0F9JZfeXYhNa+Jk4X+s45A2zg5jns87GAFa34BBm2kXw4XpNcbdg==" + } + }, + "npm:figures": { + "type": "npm", + "name": "npm:figures", + "data": { + "version": "6.1.0", + "packageName": "figures", + "hash": "sha512-d+l3qxjSesT4V7v2fh+QnmFnUWv9lSpjarhShNTgBOfA0ttejbQUAlHLitbjkoRiDulW0OPoQPYIGhIC8ohejg==" + } + }, + "npm:file-entry-cache": { + "type": "npm", + "name": "npm:file-entry-cache", + "data": { + "version": "8.0.0", + "packageName": "file-entry-cache", + "hash": "sha512-XXTUwCvisa5oacNGRP9SfNtYBNAMi+RPwBFmblZEF7N7swHYQS6/Zfk7SRwx4D5j3CH211YNRco1DEMNVfZCnQ==" + } + }, + "npm:file-uri-to-path": { + "type": "npm", + "name": "npm:file-uri-to-path", + "data": { + "version": "1.0.0", + "packageName": "file-uri-to-path", + "hash": "sha512-0Zt+s3L7Vf1biwWZ29aARiVYLx7iMGnEUl9x33fbB/j3jR81u/O2LbqK+Bm1CDSNDKVtJ/YjwY7TUd5SkeLQLw==" + } + }, + "npm:filelist": { + "type": "npm", + "name": "npm:filelist", + "data": { + "version": "1.0.6", + "packageName": "filelist", + "hash": "sha512-5giy2PkLYY1cP39p17Ech+2xlpTRL9HLspOfEgm0L6CwBXBTgsK5ou0JtzYuepxkaQ/tvhCFIJ5uXo0OrM2DxA==" + } + }, + "npm:fill-range": { + "type": "npm", + "name": "npm:fill-range", + "data": { + "version": "7.1.1", + "packageName": "fill-range", + "hash": "sha512-YsGpe3WHLK8ZYi4tWDg2Jy3ebRz2rXowDxnld4bkQB00cc/1Zw9AWnC0i9ztDJitivtQvaI9KaLyKrc+hBW0yg==" + } + }, + "npm:finalhandler": { + "type": "npm", + "name": "npm:finalhandler", + "data": { + "version": "2.1.1", + "packageName": "finalhandler", + "hash": "sha512-S8KoZgRZN+a5rNwqTxlZZePjT/4cnm0ROV70LedRHZ0p8u9fRID0hJUZQpkKLzro8LfmC8sx23bY6tVNxv8pQA==" + } + }, + "npm:find-babel-config": { + "type": "npm", + "name": "npm:find-babel-config", + "data": { + "version": "2.1.2", + "packageName": "find-babel-config", + "hash": "sha512-ZfZp1rQyp4gyuxqt1ZqjFGVeVBvmpURMqdIWXbPRfB97Bf6BzdK/xSIbylEINzQ0kB5tlDQfn9HkNXXWsqTqLg==" + } + }, + "npm:find-my-way": { + "type": "npm", + "name": "npm:find-my-way", + "data": { + "version": "9.5.0", + "packageName": "find-my-way", + "hash": "sha512-VW2RfnmscZO5KgBY5XVyKREMW5nMZcxDy+buTOsL+zIPnBlbKm+00sgzoQzq1EVh4aALZLfKdwv6atBGcjvjrQ==" + } + }, + "npm:find-up@3.0.0": { + "type": "npm", + "name": "npm:find-up@3.0.0", + "data": { + "version": "3.0.0", + "packageName": "find-up", + "hash": "sha512-1yD6RmLI1XBfxugvORwlck6f75tYL+iR0jqwsOrOxMZyGYqUuDhJ0l4AXdO1iX/FTs9cBAMEk1gWSEx1kSbylg==" + } + }, + "npm:find-up": { + "type": "npm", + "name": "npm:find-up", + "data": { + "version": "5.0.0", + "packageName": "find-up", + "hash": "sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==" + } + }, + "npm:flat-cache": { + "type": "npm", + "name": "npm:flat-cache", + "data": { + "version": "4.0.1", + "packageName": "flat-cache", + "hash": "sha512-f7ccFPK3SXFHpx15UIGyRJ/FJQctuKZ0zVuN3frBo4HnK3cay9VEW0R6yPYFHC0AgqhukPzKjq22t5DmAyqGyw==" + } + }, + "npm:flat": { + "type": "npm", + "name": "npm:flat", + "data": { + "version": "5.0.2", + "packageName": "flat", + "hash": "sha512-b6suED+5/3rTpUBdG1gupIl8MPFCAMA0QXwmljLhvCUKcUvdE4gWky9zpuGCcXHOsz4J9wPGNWq6OKpmIzz3hQ==" + } + }, + "npm:flatted": { + "type": "npm", + "name": "npm:flatted", + "data": { + "version": "3.3.3", + "packageName": "flatted", + "hash": "sha512-GX+ysw4PBCz0PzosHDepZGANEuFCMLrnRTiEy9McGjmkCQYwRq4A/X786G/fjM/+OjsWSU1ZrY5qyARZmO/uwg==" + } + }, + "npm:follow-redirects": { + "type": "npm", + "name": "npm:follow-redirects", + "data": { + "version": "1.15.11", + "packageName": "follow-redirects", + "hash": "sha512-deG2P0JfjrTxl50XGCDyfI97ZGVCxIpfKYmfyrQ54n5FO/0gfIES8C/Psl6kWVDolizcaaxZJnTS0QSMxvnsBQ==" + } + }, + "npm:for-each": { + "type": "npm", + "name": "npm:for-each", + "data": { + "version": "0.3.5", + "packageName": "for-each", + "hash": "sha512-dKx12eRCVIzqCxFGplyFKJMPvLEWgmNtUrpTiJIR5u97zEhRG8ySrtboPHZXx7daLxQVrl643cTzbab2tkQjxg==" + } + }, + "npm:foreground-child": { + "type": "npm", + "name": "npm:foreground-child", + "data": { + "version": "3.3.1", + "packageName": "foreground-child", + "hash": "sha512-gIXjKqtFuWEgzFRJA9WCQeSJLZDjgJUOMCMzxtvFq/37KojM1BFGufqsCy0r4qSQmYLsZYMeyRqzIWOMup03sw==" + } + }, + "npm:form-data": { + "type": "npm", + "name": "npm:form-data", + "data": { + "version": "4.0.5", + "packageName": "form-data", + "hash": "sha512-8RipRLol37bNs2bhoV67fiTEvdTrbMUYcFTiy3+wuuOnUog2QBHCZWXDRijWQfAkhBj2Uf5UnVaiWwA5vdd82w==" + } + }, + "npm:formatly": { + "type": "npm", + "name": "npm:formatly", + "data": { + "version": "0.3.0", + "packageName": "formatly", + "hash": "sha512-9XNj/o4wrRFyhSMJOvsuyMwy8aUfBaZ1VrqHVfohyXf0Sw0e+yfKG+xZaY3arGCOMdwFsqObtzVOc1gU9KiT9w==" + } + }, + "npm:formdata-polyfill": { + "type": "npm", + "name": "npm:formdata-polyfill", + "data": { + "version": "4.0.10", + "packageName": "formdata-polyfill", + "hash": "sha512-buewHzMvYL29jdeQTVILecSaZKnt/RJWjoZCF5OW60Z67/GmSLBkOFM7qh1PI3zFNtJbaZL5eQu1vLfazOwj4g==" + } + }, + "npm:forwarded": { + "type": "npm", + "name": "npm:forwarded", + "data": { + "version": "0.2.0", + "packageName": "forwarded", + "hash": "sha512-buRG0fpBtRHSTCOASe6hD258tEubFoRLb4ZNA6NxMVHNw2gOcwHo9wyablzMzOA5z9xA9L1KNjk/Nt6MT9aYow==" + } + }, + "npm:fraction.js": { + "type": "npm", + "name": "npm:fraction.js", + "data": { + "version": "5.3.4", + "packageName": "fraction.js", + "hash": "sha512-1X1NTtiJphryn/uLQz3whtY6jK3fTqoE3ohKs0tT+Ujr1W59oopxmoEh7Lu5p6vBaPbgoM0bzveAW4Qi5RyWDQ==" + } + }, + "npm:fresh": { + "type": "npm", + "name": "npm:fresh", + "data": { + "version": "2.0.0", + "packageName": "fresh", + "hash": "sha512-Rx/WycZ60HOaqLKAi6cHRKKI7zxWbJ31MhntmtwMoaTeF7XFH9hhBp8vITaMidfljRQ6eYWCKkaTK+ykVJHP2A==" + } + }, + "npm:front-matter": { + "type": "npm", + "name": "npm:front-matter", + "data": { + "version": "4.0.2", + "packageName": "front-matter", + "hash": "sha512-I8ZuJ/qG92NWX8i5x1Y8qyj3vizhXS31OxjKDu3LKP+7/qBgfIKValiZIEwoVoJKUHlhWtYrktkxV1XsX+pPlg==" + } + }, + "npm:fs-constants": { + "type": "npm", + "name": "npm:fs-constants", + "data": { + "version": "1.0.0", + "packageName": "fs-constants", + "hash": "sha512-y6OAwoSIf7FyjMIv94u+b5rdheZEjzR63GTyZJm5qh4Bi+2YgwLCcI/fPFZkL5PSixOt6ZNKm+w+Hfp/Bciwow==" + } + }, + "npm:fs-minipass": { + "type": "npm", + "name": "npm:fs-minipass", + "data": { + "version": "3.0.3", + "packageName": "fs-minipass", + "hash": "sha512-XUBA9XClHbnJWSfBzjkm6RvPsyg3sryZt06BEQoXcF7EK/xpGaQYJgQKDJSUH5SGZ76Y7pFx1QBnXz09rU5Fbw==" + } + }, + "npm:fs.realpath": { + "type": "npm", + "name": "npm:fs.realpath", + "data": { + "version": "1.0.0", + "packageName": "fs.realpath", + "hash": "sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==" + } + }, + "npm:fsevents": { + "type": "npm", + "name": "npm:fsevents", + "data": { + "version": "2.3.3", + "packageName": "fsevents", + "hash": "sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==" + } + }, + "npm:function-bind": { + "type": "npm", + "name": "npm:function-bind", + "data": { + "version": "1.1.2", + "packageName": "function-bind", + "hash": "sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==" + } + }, + "npm:function.prototype.name": { + "type": "npm", + "name": "npm:function.prototype.name", + "data": { + "version": "1.1.8", + "packageName": "function.prototype.name", + "hash": "sha512-e5iwyodOHhbMr/yNrc7fDYG4qlbIvI5gajyzPnb5TCwyhjApznQh1BMFou9b30SevY43gCJKXycoCBjMbsuW0Q==" + } + }, + "npm:functions-have-names": { + "type": "npm", + "name": "npm:functions-have-names", + "data": { + "version": "1.2.3", + "packageName": "functions-have-names", + "hash": "sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ==" + } + }, + "npm:generate-function": { + "type": "npm", + "name": "npm:generate-function", + "data": { + "version": "2.3.1", + "packageName": "generate-function", + "hash": "sha512-eeB5GfMNeevm/GRYq20ShmsaGcmI81kIX2K9XQx5miC8KdHaC6Jm0qQ8ZNeGOi7wYB8OsdxKs+Y2oVuTFuVwKQ==" + } + }, + "npm:generator-function": { + "type": "npm", + "name": "npm:generator-function", + "data": { + "version": "2.0.1", + "packageName": "generator-function", + "hash": "sha512-SFdFmIJi+ybC0vjlHN0ZGVGHc3lgE0DxPAT0djjVg+kjOnSqclqmj0KQ7ykTOLP6YxoqOvuAODGdcHJn+43q3g==" + } + }, + "npm:gensync": { + "type": "npm", + "name": "npm:gensync", + "data": { + "version": "1.0.0-beta.2", + "packageName": "gensync", + "hash": "sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==" + } + }, + "npm:get-caller-file": { + "type": "npm", + "name": "npm:get-caller-file", + "data": { + "version": "2.0.5", + "packageName": "get-caller-file", + "hash": "sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==" + } + }, + "npm:get-intrinsic": { + "type": "npm", + "name": "npm:get-intrinsic", + "data": { + "version": "1.3.0", + "packageName": "get-intrinsic", + "hash": "sha512-9fSjSaos/fRIVIp+xSJlE6lfwhES7LNtKaCBIamHsjr2na1BiABJPo0mOjjz8GJDURarmCPGqaiVg5mfjb98CQ==" + } + }, + "npm:get-nonce": { + "type": "npm", + "name": "npm:get-nonce", + "data": { + "version": "1.0.1", + "packageName": "get-nonce", + "hash": "sha512-FJhYRoDaiatfEkUK8HKlicmu/3SGFD51q3itKDGoSTysQJBnfOcxU5GxnhE1E6soB76MbT0MBtnKJuXyAx+96Q==" + } + }, + "npm:get-port-please": { + "type": "npm", + "name": "npm:get-port-please", + "data": { + "version": "3.2.0", + "packageName": "get-port-please", + "hash": "sha512-I9QVvBw5U/hw3RmWpYKRumUeaDgxTPd401x364rLmWBJcOQ753eov1eTgzDqRG9bqFIfDc7gfzcQEWrUri3o1A==" + } + }, + "npm:get-port": { + "type": "npm", + "name": "npm:get-port", + "data": { + "version": "7.2.0", + "packageName": "get-port", + "hash": "sha512-afP4W205ONCuMoPBqcR6PSXnzX35KTcJygfJfcp+QY+uwm3p20p1YczWXhlICIzGMCxYBQcySEcOgsJcrkyobg==" + } + }, + "npm:get-proto": { + "type": "npm", + "name": "npm:get-proto", + "data": { + "version": "1.0.1", + "packageName": "get-proto", + "hash": "sha512-sTSfBjoXBp89JvIKIefqw7U2CCebsc74kiY6awiGogKtoSGbgjYE/G/+l9sF3MWFPNc9IcoOC4ODfKHfxFmp0g==" + } + }, + "npm:get-stream@5.2.0": { + "type": "npm", + "name": "npm:get-stream@5.2.0", + "data": { + "version": "5.2.0", + "packageName": "get-stream", + "hash": "sha512-nBF+F1rAZVCu/p7rjzgA+Yb4lfYXrpl7a6VmJrU8wF9I1CKvP/QwPNZHnOlwbTkY6dvtFIzFMSyQXbLoTQPRpA==" + } + }, + "npm:get-stream": { + "type": "npm", + "name": "npm:get-stream", + "data": { + "version": "9.0.1", + "packageName": "get-stream", + "hash": "sha512-kVCxPF3vQM/N0B1PmoqVUqgHP+EeVjmZSQn+1oCRPxd2P21P2F19lIgbR3HBosbB1PUhOAoctJnfEn2GbN2eZA==" + } + }, + "npm:get-symbol-description": { + "type": "npm", + "name": "npm:get-symbol-description", + "data": { + "version": "1.1.0", + "packageName": "get-symbol-description", + "hash": "sha512-w9UMqWwJxHNOvoNzSJ2oPF5wvYcvP7jUvYzhp67yEhTi17ZDBBC1z9pTdGuzjD+EFIqLSYRweZjqfiPzQ06Ebg==" + } + }, + "npm:get-tsconfig": { + "type": "npm", + "name": "npm:get-tsconfig", + "data": { + "version": "4.13.7", + "packageName": "get-tsconfig", + "hash": "sha512-7tN6rFgBlMgpBML5j8typ92BKFi2sFQvIdpAqLA2beia5avZDrMs0FLZiM5etShWq5irVyGcGMEA1jcDaK7A/Q==" + } + }, + "npm:get-uri": { + "type": "npm", + "name": "npm:get-uri", + "data": { + "version": "6.0.5", + "packageName": "get-uri", + "hash": "sha512-b1O07XYq8eRuVzBNgJLstU6FYc1tS6wnMtF1I1D9lE8LxZSOGZ7LhxN54yPP6mGw5f2CkXY2BQUL9Fx41qvcIg==" + } + }, + "npm:giget": { + "type": "npm", + "name": "npm:giget", + "data": { + "version": "2.0.0", + "packageName": "giget", + "hash": "sha512-L5bGsVkxJbJgdnwyuheIunkGatUF/zssUoxxjACCseZYAVbaqdh9Tsmmlkl8vYan09H7sbvKt4pS8GqKLBrEzA==" + } + }, + "npm:github-from-package": { + "type": "npm", + "name": "npm:github-from-package", + "data": { + "version": "0.0.0", + "packageName": "github-from-package", + "hash": "sha512-SyHy3T1v2NUXn29OsWdxmK6RwHD+vkj3v8en8AOBZ1wBQ/hCAQ5bAQTD02kW4W9tUp/3Qh6J8r9EvntiyCmOOw==" + } + }, + "npm:github-slugger": { + "type": "npm", + "name": "npm:github-slugger", + "data": { + "version": "2.0.0", + "packageName": "github-slugger", + "hash": "sha512-IaOQ9puYtjrkq7Y0Ygl9KDZnrf/aiUJYUpVf89y8kyaxbRG7Y1SrX/jaumrv81vc61+kiMempujsM3Yw7w5qcw==" + } + }, + "npm:glob-parent@5.1.2": { + "type": "npm", + "name": "npm:glob-parent@5.1.2", + "data": { + "version": "5.1.2", + "packageName": "glob-parent", + "hash": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==" + } + }, + "npm:glob-parent": { + "type": "npm", + "name": "npm:glob-parent", + "data": { + "version": "6.0.2", + "packageName": "glob-parent", + "hash": "sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==" + } + }, + "npm:glob-to-regexp": { + "type": "npm", + "name": "npm:glob-to-regexp", + "data": { + "version": "0.4.1", + "packageName": "glob-to-regexp", + "hash": "sha512-lkX1HJXwyMcprw/5YUZc2s7DrpAiHB21/V+E1rHUrVNokkvB6bqMzT0VfV6/86ZNabt1k14YOIaT7nDvOX3Iiw==" + } + }, + "npm:glob@10.5.0": { + "type": "npm", + "name": "npm:glob@10.5.0", + "data": { + "version": "10.5.0", + "packageName": "glob", + "hash": "sha512-DfXN8DfhJ7NH3Oe7cFmu3NCu1wKbkReJ8TorzSAFbSKrlNaQSKfIzqYqVY8zlbs2NLBbWpRiU52GX2PbaBVNkg==" + } + }, + "npm:glob": { + "type": "npm", + "name": "npm:glob", + "data": { + "version": "13.0.6", + "packageName": "glob", + "hash": "sha512-Wjlyrolmm8uDpm/ogGyXZXb1Z+Ca2B8NbJwqBVg0axK9GbBeoS7yGV6vjXnYdGm6X53iehEuxxbyiKp8QmN4Vw==" + } + }, + "npm:glob@9.3.5": { + "type": "npm", + "name": "npm:glob@9.3.5", + "data": { + "version": "9.3.5", + "packageName": "glob", + "hash": "sha512-e1LleDykUz2Iu+MTYdkSsuWX8lvAjAcs0Xef0lNIu0S2wOAzuTxCJtcd9S3cijlwYF18EsU3rzb8jPVobxDh9Q==" + } + }, + "npm:globals@14.0.0": { + "type": "npm", + "name": "npm:globals@14.0.0", + "data": { + "version": "14.0.0", + "packageName": "globals", + "hash": "sha512-oahGvuMGQlPw/ivIYBjVSrWAfWLBeku5tpPE2fOPLi+WHffIWbuh2tCjhyQhTBPMf5E9jDEH4FOmTYgYwbKwtQ==" + } + }, + "npm:globals": { + "type": "npm", + "name": "npm:globals", + "data": { + "version": "17.4.0", + "packageName": "globals", + "hash": "sha512-hjrNztw/VajQwOLsMNT1cbJiH2muO3OROCHnbehc8eY5JyD2gqz4AcMHPqgaOR59DjgUjYAYLeH699g/eWi2jw==" + } + }, + "npm:globalthis": { + "type": "npm", + "name": "npm:globalthis", + "data": { + "version": "1.0.4", + "packageName": "globalthis", + "hash": "sha512-DpLKbNU4WylpxJykQujfCcwYWiV/Jhm50Goo0wrVILAv5jOr9d+H+UR3PhSCD2rCCEIg0uc+G+muBTwD54JhDQ==" + } + }, + "npm:globby": { + "type": "npm", + "name": "npm:globby", + "data": { + "version": "16.1.1", + "packageName": "globby", + "hash": "sha512-dW7vl+yiAJSp6aCekaVnVJxurRv7DCOLyXqEG3RYMYUg7AuJ2jCqPkZTA8ooqC2vtnkaMcV5WfFBMuEnTu1OQg==" + } + }, + "npm:gopd": { + "type": "npm", + "name": "npm:gopd", + "data": { + "version": "1.2.0", + "packageName": "gopd", + "hash": "sha512-ZUKRh6/kUFoAiTAtTYPZJ3hw9wNxx+BIBOijnlG9PnrJsCcSjs1wyyD6vJpaYtgnzDrKYRSqf3OO6Rfa93xsRg==" + } + }, + "npm:got": { + "type": "npm", + "name": "npm:got", + "data": { + "version": "11.8.6", + "packageName": "got", + "hash": "sha512-6tfZ91bOr7bOXnK7PRDCGBLa1H4U080YHNaAQ2KsMGlLEzRbk44nsZF2E1IeRc3vtJHPVbKCYgdFbaGO2ljd8g==" + } + }, + "npm:graceful-fs": { + "type": "npm", + "name": "npm:graceful-fs", + "data": { + "version": "4.2.11", + "packageName": "graceful-fs", + "hash": "sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==" + } + }, + "npm:gradient-parser": { + "type": "npm", + "name": "npm:gradient-parser", + "data": { + "version": "1.1.1", + "packageName": "gradient-parser", + "hash": "sha512-Hu0YfNU+38EsTmnUfLXUKFMXq9yz7htGYpF4x+dlbBhUCvIvzLt0yVLT/gJRmvLKFJdqNFrz4eKkIUjIXSr7Tw==" + } + }, + "npm:grammex": { + "type": "npm", + "name": "npm:grammex", + "data": { + "version": "3.1.12", + "packageName": "grammex", + "hash": "sha512-6ufJOsSA7LcQehIJNCO7HIBykfM7DXQual0Ny780/DEcJIpBlHRvcqEBWGPYd7hrXL2GJ3oJI1MIhaXjWmLQOQ==" + } + }, + "npm:graphmatch": { + "type": "npm", + "name": "npm:graphmatch", + "data": { + "version": "1.1.0", + "packageName": "graphmatch", + "hash": "sha512-0E62MaTW5rPZVRLyIJZG/YejmdA/Xr1QydHEw3Vt+qOKkMIOE8WDLc9ZX2bmAjtJFZcId4lEdrdmASsEy7D1QA==" + } + }, + "npm:h3": { + "type": "npm", + "name": "npm:h3", + "data": { + "version": "1.15.10", + "packageName": "h3", + "hash": "sha512-YzJeWSkDZxAhvmp8dexjRK5hxziRO7I9m0N53WhvYL5NiWfkUkzssVzY9jvGu0HBoLFW6+duYmNSn6MaZBCCtg==" + } + }, + "npm:has-bigints": { + "type": "npm", + "name": "npm:has-bigints", + "data": { + "version": "1.1.0", + "packageName": "has-bigints", + "hash": "sha512-R3pbpkcIqv2Pm3dUwgjclDRVmWpTJW2DcMzcIhEXEx1oh/CEMObMm3KLmRJOdvhM7o4uQBnwr8pzRK2sJWIqfg==" + } + }, + "npm:has-flag": { + "type": "npm", + "name": "npm:has-flag", + "data": { + "version": "4.0.0", + "packageName": "has-flag", + "hash": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==" + } + }, + "npm:has-property-descriptors": { + "type": "npm", + "name": "npm:has-property-descriptors", + "data": { + "version": "1.0.2", + "packageName": "has-property-descriptors", + "hash": "sha512-55JNKuIW+vq4Ke1BjOTjM2YctQIvCT7GFzHwmfZPGo5wnrgkid0YQtnAleFSqumZm4az3n2BS+erby5ipJdgrg==" + } + }, + "npm:has-proto": { + "type": "npm", + "name": "npm:has-proto", + "data": { + "version": "1.2.0", + "packageName": "has-proto", + "hash": "sha512-KIL7eQPfHQRC8+XluaIw7BHUwwqL19bQn4hzNgdr+1wXoU0KKj6rufu47lhY7KbJR2C6T6+PfyN0Ea7wkSS+qQ==" + } + }, + "npm:has-symbols": { + "type": "npm", + "name": "npm:has-symbols", + "data": { + "version": "1.1.0", + "packageName": "has-symbols", + "hash": "sha512-1cDNdwJ2Jaohmb3sg4OmKaMBwuC48sYni5HUw2DvsC8LjGTLK9h+eb1X6RyuOHe4hT0ULCW68iomhjUoKUqlPQ==" + } + }, + "npm:has-tostringtag": { + "type": "npm", + "name": "npm:has-tostringtag", + "data": { + "version": "1.0.2", + "packageName": "has-tostringtag", + "hash": "sha512-NqADB8VjPFLM2V0VvHUewwwsw0ZWBaIdgo+ieHtK3hasLz4qeCRjYcqfB6AQrBggRKppKF8L52/VqdVsO47Dlw==" + } + }, + "npm:hasown": { + "type": "npm", + "name": "npm:hasown", + "data": { + "version": "2.0.2", + "packageName": "hasown", + "hash": "sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ==" + } + }, + "npm:he": { + "type": "npm", + "name": "npm:he", + "data": { + "version": "1.2.0", + "packageName": "he", + "hash": "sha512-F/1DnUGPopORZi0ni+CvrCgHQ5FyEAHRLSApuYWMmrbSwoN2Mn/7k+Gl38gJnR7yyDZk6WLXwiGod1JOWNDKGw==" + } + }, + "npm:hey-listen": { + "type": "npm", + "name": "npm:hey-listen", + "data": { + "version": "1.0.8", + "packageName": "hey-listen", + "hash": "sha512-COpmrF2NOg4TBWUJ5UVyaCU2A88wEMkUPK4hNqyCkqHbxT92BbvfjoSozkAIIm6XhicGlJHhFdullInrdhwU8Q==" + } + }, + "npm:hono@4.11.4": { + "type": "npm", + "name": "npm:hono@4.11.4", + "data": { + "version": "4.11.4", + "packageName": "hono", + "hash": "sha512-U7tt8JsyrxSRKspfhtLET79pU8K+tInj5QZXs1jSugO1Vq5dFj3kmZsRldo29mTBfcjDRVRXrEZ6LS63Cog9ZA==" + } + }, + "npm:hono": { + "type": "npm", + "name": "npm:hono", + "data": { + "version": "4.12.8", + "packageName": "hono", + "hash": "sha512-VJCEvtrezO1IAR+kqEYnxUOoStaQPGrCmX3j4wDTNOcD1uRPFpGlwQUIW8niPuvHXaTUxeOUl5MMDGrl+tmO9A==" + } + }, + "npm:hookable": { + "type": "npm", + "name": "npm:hookable", + "data": { + "version": "6.1.0", + "packageName": "hookable", + "hash": "sha512-ZoKZSJgu8voGK2geJS+6YtYjvIzu9AOM/KZXsBxr83uhLL++e9pEv/dlgwgy3dvHg06kTz6JOh1hk3C8Ceiymw==" + } + }, + "npm:html-encoding-sniffer": { + "type": "npm", + "name": "npm:html-encoding-sniffer", + "data": { + "version": "3.0.0", + "packageName": "html-encoding-sniffer", + "hash": "sha512-oWv4T4yJ52iKrufjnyZPkrN0CH3QnrUqdB6In1g5Fe1mia8GmF36gnfNySxoZtxD5+NmYw1EElVXiBk93UeskA==" + } + }, + "npm:html-entities": { + "type": "npm", + "name": "npm:html-entities", + "data": { + "version": "2.3.3", + "packageName": "html-entities", + "hash": "sha512-DV5Ln36z34NNTDgnz0EWGBLZENelNAtkiFA4kyNOG2tDI6Mz1uSWiq1wAKdyjnJwyDiDO7Fa2SO1CTxPXL8VxA==" + } + }, + "npm:html-tags": { + "type": "npm", + "name": "npm:html-tags", + "data": { + "version": "3.3.1", + "packageName": "html-tags", + "hash": "sha512-ztqyC3kLto0e9WbNp0aeP+M3kTt+nbaIveGmUxAtZa+8iFgKLUOD4YKM5j+f3QD89bra7UeumolZHKuOXnTmeQ==" + } + }, + "npm:http-cache-semantics": { + "type": "npm", + "name": "npm:http-cache-semantics", + "data": { + "version": "4.2.0", + "packageName": "http-cache-semantics", + "hash": "sha512-dTxcvPXqPvXBQpq5dUr6mEMJX4oIEFv6bwom3FDwKRDsuIjjJGANqhBuoAn9c1RQJIdAKav33ED65E2ys+87QQ==" + } + }, + "npm:http-errors": { + "type": "npm", + "name": "npm:http-errors", + "data": { + "version": "2.0.1", + "packageName": "http-errors", + "hash": "sha512-4FbRdAX+bSdmo4AUFuS0WNiPz8NgFt+r8ThgNWmlrjQjt1Q7ZR9+zTlce2859x4KSXrwIsaeTqDoKQmtP8pLmQ==" + } + }, + "npm:http-proxy-agent": { + "type": "npm", + "name": "npm:http-proxy-agent", + "data": { + "version": "7.0.2", + "packageName": "http-proxy-agent", + "hash": "sha512-T1gkAiYYDWYx3V5Bmyu7HcfcvL7mUrTWiM6yOfa3PIphViJ/gFPbvidQ+veqSOHci/PxBcDabeUNCzpOODJZig==" + } + }, + "npm:http-proxy": { + "type": "npm", + "name": "npm:http-proxy", + "data": { + "version": "1.18.1", + "packageName": "http-proxy", + "hash": "sha512-7mz/721AbnJwIVbnaSv1Cz3Am0ZLT/UBwkC92VlxhXv/k/BBQfM2fXElQNC27BVGr0uwUpplYPQM9LnaBMR5NQ==" + } + }, + "npm:http-server": { + "type": "npm", + "name": "npm:http-server", + "data": { + "version": "14.1.1", + "packageName": "http-server", + "hash": "sha512-+cbxadF40UXd9T01zUHgA+rlo2Bg1Srer4+B4NwIHdaGxAGGv59nYRnGGDJ9LBk7alpS0US+J+bLLdQOOkJq4A==" + } + }, + "npm:http-status-codes": { + "type": "npm", + "name": "npm:http-status-codes", + "data": { + "version": "2.3.0", + "packageName": "http-status-codes", + "hash": "sha512-RJ8XvFvpPM/Dmc5SV+dC4y5PCeOhT3x1Hq0NU3rjGeg5a/CqlhZ7uudknPwZFz4aeAXDcbAyaeP7GAo9lvngtA==" + } + }, + "npm:http2-wrapper": { + "type": "npm", + "name": "npm:http2-wrapper", + "data": { + "version": "1.0.3", + "packageName": "http2-wrapper", + "hash": "sha512-V+23sDMr12Wnz7iTcDeJr3O6AIxlnvT/bmaAAAP/Xda35C90p9599p0F1eHR/N1KILWSoWVAiOMFjBBXaXSMxg==" + } + }, + "npm:https-proxy-agent": { + "type": "npm", + "name": "npm:https-proxy-agent", + "data": { + "version": "5.0.1", + "packageName": "https-proxy-agent", + "hash": "sha512-dFcAjpTQFgoLMzC2VwU+C/CbS7uRL0lWmxDITmqm7C+7F0Odmj6s9l6alZc6AELXhrnggM2CeWSXHGOdX2YtwA==" + } + }, + "npm:https-proxy-agent@7.0.6": { + "type": "npm", + "name": "npm:https-proxy-agent@7.0.6", + "data": { + "version": "7.0.6", + "packageName": "https-proxy-agent", + "hash": "sha512-vK9P5/iUfdl95AI+JVyUuIcVtd4ofvtrOr3HNtM2yxC9bnMbEdp3x01OhQNnjb8IJYi38VlTE3mBXwcfvywuSw==" + } + }, + "npm:human-signals": { + "type": "npm", + "name": "npm:human-signals", + "data": { + "version": "8.0.1", + "packageName": "human-signals", + "hash": "sha512-eKCa6bwnJhvxj14kZk5NCPc6Hb6BdsU9DZcOnmQKSnO1VKrfV0zCvtttPZUsBvjmNDn8rpcJfpwSYnHBjc95MQ==" + } + }, + "npm:humanize-list": { + "type": "npm", + "name": "npm:humanize-list", + "data": { + "version": "1.0.1", + "packageName": "humanize-list", + "hash": "sha512-4+p3fCRF21oUqxhK0yZ6yaSP/H5/wZumc7q1fH99RkW7Q13aAxDeP78BKjoR+6y+kaHqKF/JWuQhsNuuI2NKtA==" + } + }, + "npm:iconv-lite": { + "type": "npm", + "name": "npm:iconv-lite", + "data": { + "version": "0.6.3", + "packageName": "iconv-lite", + "hash": "sha512-4fCk79wshMdzMp2rH06qWrJE4iolqLhCUH+OiuIgU++RB0+94NlDL81atO7GX55uUKueo0txHNtvEyI6D7WdMw==" + } + }, + "npm:iconv-lite@0.7.2": { + "type": "npm", + "name": "npm:iconv-lite@0.7.2", + "data": { + "version": "0.7.2", + "packageName": "iconv-lite", + "hash": "sha512-im9DjEDQ55s9fL4EYzOAv0yMqmMBSZp6G0VvFyTMPKWxiSBHUj9NW/qqLmXUwXrrM7AvqSlTCfvqRb0cM8yYqw==" + } + }, + "npm:ieee754": { + "type": "npm", + "name": "npm:ieee754", + "data": { + "version": "1.2.1", + "packageName": "ieee754", + "hash": "sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==" + } + }, + "npm:ignore": { + "type": "npm", + "name": "npm:ignore", + "data": { + "version": "5.3.2", + "packageName": "ignore", + "hash": "sha512-hsBTNUqQTDwkWtcdYI2i06Y/nUBEsNEDJKjWdigLvegy8kDuJAS8uRlpkkcQpyEXL0Z/pjDy5HBmMjRCJ2gq+g==" + } + }, + "npm:ignore@7.0.5": { + "type": "npm", + "name": "npm:ignore@7.0.5", + "data": { + "version": "7.0.5", + "packageName": "ignore", + "hash": "sha512-Hs59xBNfUIunMFgWAbGX5cq6893IbWg4KnrjbYwX3tx0ztorVgTDA6B2sxf8ejHJ4wz8BqGUMYlnzNBer5NvGg==" + } + }, + "npm:import-fresh": { + "type": "npm", + "name": "npm:import-fresh", + "data": { + "version": "3.3.1", + "packageName": "import-fresh", + "hash": "sha512-TR3KfrTZTYLPB6jUjfx6MF9WcWrHL9su5TObK4ZkYgBdWKPOFoSoQIdEuTuR82pmtxH2spWG9h6etwfr1pLBqQ==" + } + }, + "npm:import-without-cache": { + "type": "npm", + "name": "npm:import-without-cache", + "data": { + "version": "0.2.5", + "packageName": "import-without-cache", + "hash": "sha512-B6Lc2s6yApwnD2/pMzFh/d5AVjdsDXjgkeJ766FmFuJELIGHNycKRj+l3A39yZPM4CchqNCB4RITEAYB1KUM6A==" + } + }, + "npm:imurmurhash": { + "type": "npm", + "name": "npm:imurmurhash", + "data": { + "version": "0.1.4", + "packageName": "imurmurhash", + "hash": "sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==" + } + }, + "npm:inherits": { + "type": "npm", + "name": "npm:inherits", + "data": { + "version": "2.0.4", + "packageName": "inherits", + "hash": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==" + } + }, + "npm:ini": { + "type": "npm", + "name": "npm:ini", + "data": { + "version": "1.3.8", + "packageName": "ini", + "hash": "sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew==" + } + }, + "npm:inline-style-parser": { + "type": "npm", + "name": "npm:inline-style-parser", + "data": { + "version": "0.2.4", + "packageName": "inline-style-parser", + "hash": "sha512-0aO8FkhNZlj/ZIbNi7Lxxr12obT7cL1moPfE4tg1LkX7LlLfC6DeX4l2ZEud1ukP9jNQyNnfzQVqwbwmAATY4Q==" + } + }, + "npm:install-artifact-from-github": { + "type": "npm", + "name": "npm:install-artifact-from-github", + "data": { + "version": "1.4.0", + "packageName": "install-artifact-from-github", + "hash": "sha512-+y6WywKZREw5rq7U2jvr2nmZpT7cbWbQQ0N/qfcseYnzHFz2cZz1Et52oY+XttYuYeTkI8Y+R2JNWj68MpQFSg==" + } + }, + "npm:internal-slot": { + "type": "npm", + "name": "npm:internal-slot", + "data": { + "version": "1.1.0", + "packageName": "internal-slot", + "hash": "sha512-4gd7VpWNQNB4UKKCFFVcp1AVv+FMOgs9NKzjHKusc8jTMhd5eL1NqQqOpE0KzMds804/yHlglp3uxgluOqAPLw==" + } + }, + "npm:ip-address": { + "type": "npm", + "name": "npm:ip-address", + "data": { + "version": "10.0.1", + "packageName": "ip-address", + "hash": "sha512-NWv9YLW4PoW2B7xtzaS3NCot75m6nK7Icdv0o3lfMceJVRfSoQwqD4wEH5rLwoKJwUiZ/rfpiVBhnaF0FK4HoA==" + } + }, + "npm:ip-regex": { + "type": "npm", + "name": "npm:ip-regex", + "data": { + "version": "4.3.0", + "packageName": "ip-regex", + "hash": "sha512-B9ZWJxHHOHUhUjCPrMpLD4xEq35bUTClHM1S6CBU5ixQnkZmwipwgc96vAd7AAGM9TGHvJR+Uss+/Ak6UphK+Q==" + } + }, + "npm:ipaddr.js@1.9.1": { + "type": "npm", + "name": "npm:ipaddr.js@1.9.1", + "data": { + "version": "1.9.1", + "packageName": "ipaddr.js", + "hash": "sha512-0KI/607xoxSToH7GjN1FfSbLoU0+btTicjsQSWQlh/hZykN8KpmMf7uYwPW3R+akZ6R/w18ZlXSHBYXiYUPO3g==" + } + }, + "npm:ipaddr.js": { + "type": "npm", + "name": "npm:ipaddr.js", + "data": { + "version": "2.3.0", + "packageName": "ipaddr.js", + "hash": "sha512-Zv/pA+ciVFbCSBBjGfaKUya/CcGmUHzTydLMaTwrUUEM2DIEO3iZvueGxmacvmN50fGpGVKeTXpb2LcYQxeVdg==" + } + }, + "npm:iron-webcrypto": { + "type": "npm", + "name": "npm:iron-webcrypto", + "data": { + "version": "1.2.1", + "packageName": "iron-webcrypto", + "hash": "sha512-feOM6FaSr6rEABp/eDfVseKyTMDt+KGpeB35SkVn9Tyn0CqvVsY3EwI0v5i8nMHyJnzCIQf7nsy3p41TPkJZhg==" + } + }, + "npm:is-array-buffer": { + "type": "npm", + "name": "npm:is-array-buffer", + "data": { + "version": "3.0.5", + "packageName": "is-array-buffer", + "hash": "sha512-DDfANUiiG2wC1qawP66qlTugJeL5HyzMpfr8lLK+jMQirGzNod0B12cFB/9q838Ru27sBwfw78/rdoU7RERz6A==" + } + }, + "npm:is-arrayish": { + "type": "npm", + "name": "npm:is-arrayish", + "data": { + "version": "0.2.1", + "packageName": "is-arrayish", + "hash": "sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg==" + } + }, + "npm:is-arrayish@0.3.4": { + "type": "npm", + "name": "npm:is-arrayish@0.3.4", + "data": { + "version": "0.3.4", + "packageName": "is-arrayish", + "hash": "sha512-m6UrgzFVUYawGBh1dUsWR5M2Clqic9RVXC/9f8ceNlv2IcO9j9J/z8UoCLPqtsPBFNzEpfR3xftohbfqDx8EQA==" + } + }, + "npm:is-async-function": { + "type": "npm", + "name": "npm:is-async-function", + "data": { + "version": "2.1.1", + "packageName": "is-async-function", + "hash": "sha512-9dgM/cZBnNvjzaMYHVoxxfPj2QXt22Ev7SuuPrs+xav0ukGB0S6d4ydZdEiM48kLx5kDV+QBPrpVnFyefL8kkQ==" + } + }, + "npm:is-bigint": { + "type": "npm", + "name": "npm:is-bigint", + "data": { + "version": "1.1.0", + "packageName": "is-bigint", + "hash": "sha512-n4ZT37wG78iz03xPRKJrHTdZbe3IicyucEtdRsV5yglwc3GyUfbAfpSeD0FJ41NbUNSt5wbhqfp1fS+BgnvDFQ==" + } + }, + "npm:is-boolean-object": { + "type": "npm", + "name": "npm:is-boolean-object", + "data": { + "version": "1.2.2", + "packageName": "is-boolean-object", + "hash": "sha512-wa56o2/ElJMYqjCjGkXri7it5FbebW5usLw/nPmCMs5DeZ7eziSYZhSmPRn0txqeW4LnAmQQU7FgqLpsEFKM4A==" + } + }, + "npm:is-callable": { + "type": "npm", + "name": "npm:is-callable", + "data": { + "version": "1.2.7", + "packageName": "is-callable", + "hash": "sha512-1BC0BVFhS/p0qtw6enp8e+8OD0UrK0oFLztSjNzhcKA3WDuJxxAPXzPuPtKkjEY9UUoEWlX/8fgKeu2S8i9JTA==" + } + }, + "npm:is-core-module": { + "type": "npm", + "name": "npm:is-core-module", + "data": { + "version": "2.16.1", + "packageName": "is-core-module", + "hash": "sha512-UfoeMA6fIJ8wTYFEUjelnaGI67v6+N7qXJEvQuIGa99l4xsCruSYOVSQ0uPANn4dAzm8lkYPaKLrrijLq7x23w==" + } + }, + "npm:is-data-view": { + "type": "npm", + "name": "npm:is-data-view", + "data": { + "version": "1.0.2", + "packageName": "is-data-view", + "hash": "sha512-RKtWF8pGmS87i2D6gqQu/l7EYRlVdfzemCJN/P3UOs//x1QE7mfhvzHIApBTRf7axvT6DMGwSwBXYCT0nfB9xw==" + } + }, + "npm:is-date-object": { + "type": "npm", + "name": "npm:is-date-object", + "data": { + "version": "1.1.0", + "packageName": "is-date-object", + "hash": "sha512-PwwhEakHVKTdRNVOw+/Gyh0+MzlCl4R6qKvkhuvLtPMggI1WAHt9sOwZxQLSGpUaDnrdyDsomoRgNnCfKNSXXg==" + } + }, + "npm:is-docker": { + "type": "npm", + "name": "npm:is-docker", + "data": { + "version": "2.2.1", + "packageName": "is-docker", + "hash": "sha512-F+i2BKsFrH66iaUFc0woD8sLy8getkwTwtOBjvs56Cx4CgJDeKQeqfz8wAYiSb8JOprWhHH5p77PbmYCvvUuXQ==" + } + }, + "npm:is-extglob": { + "type": "npm", + "name": "npm:is-extglob", + "data": { + "version": "2.1.1", + "packageName": "is-extglob", + "hash": "sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==" + } + }, + "npm:is-finalizationregistry": { + "type": "npm", + "name": "npm:is-finalizationregistry", + "data": { + "version": "1.1.1", + "packageName": "is-finalizationregistry", + "hash": "sha512-1pC6N8qWJbWoPtEjgcL2xyhQOP491EQjeUo3qTKcmV8YSDDJrOepfG8pcC7h/QgnQHYSv0mJ3Z/ZWxmatVrysg==" + } + }, + "npm:is-fullwidth-code-point": { + "type": "npm", + "name": "npm:is-fullwidth-code-point", + "data": { + "version": "3.0.0", + "packageName": "is-fullwidth-code-point", + "hash": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==" + } + }, + "npm:is-generator-function": { + "type": "npm", + "name": "npm:is-generator-function", + "data": { + "version": "1.1.2", + "packageName": "is-generator-function", + "hash": "sha512-upqt1SkGkODW9tsGNG5mtXTXtECizwtS2kA161M+gJPc1xdb/Ax629af6YrTwcOeQHbewrPNlE5Dx7kzvXTizA==" + } + }, + "npm:is-glob": { + "type": "npm", + "name": "npm:is-glob", + "data": { + "version": "4.0.3", + "packageName": "is-glob", + "hash": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==" + } + }, + "npm:is-html-content": { + "type": "npm", + "name": "npm:is-html-content", + "data": { + "version": "1.0.0", + "packageName": "is-html-content", + "hash": "sha512-GhUQOpN/YQ65rybhJ77MjabmrY39IZ/OHiKJZPC+WPg6KytNaqKlbs1tNizJ0Aluz4MOuAV9ItVSBKIZTAx0Iw==" + } + }, + "npm:is-html": { + "type": "npm", + "name": "npm:is-html", + "data": { + "version": "2.0.0", + "packageName": "is-html", + "hash": "sha512-S+OpgB5i7wzIue/YSE5hg0e5ZYfG3hhpNh9KGl6ayJ38p7ED6wxQLd1TV91xHpcTvw90KMJ9EwN3F/iNflHBVg==" + } + }, + "npm:is-interactive": { + "type": "npm", + "name": "npm:is-interactive", + "data": { + "version": "1.0.0", + "packageName": "is-interactive", + "hash": "sha512-2HvIEKRoqS62guEC+qBjpvRubdX910WCMuJTZ+I9yvqKU2/12eSL549HMwtabb4oupdj2sMP50k+XJfB/8JE6w==" + } + }, + "npm:is-map": { + "type": "npm", + "name": "npm:is-map", + "data": { + "version": "2.0.3", + "packageName": "is-map", + "hash": "sha512-1Qed0/Hr2m+YqxnM09CjA2d/i6YZNfF6R2oRAOj36eUdS6qIV/huPJNSEpKbupewFs+ZsJlxsjjPbc0/afW6Lw==" + } + }, + "npm:is-negative-zero": { + "type": "npm", + "name": "npm:is-negative-zero", + "data": { + "version": "2.0.3", + "packageName": "is-negative-zero", + "hash": "sha512-5KoIu2Ngpyek75jXodFvnafB6DJgr3u8uuK0LEZJjrU19DrMD3EVERaR8sjz8CCGgpZvxPl9SuE1GMVPFHx1mw==" + } + }, + "npm:is-number-object": { + "type": "npm", + "name": "npm:is-number-object", + "data": { + "version": "1.1.1", + "packageName": "is-number-object", + "hash": "sha512-lZhclumE1G6VYD8VHe35wFaIif+CTy5SJIi5+3y4psDgWu4wPDoBhF8NxUOinEc7pHgiTsT6MaBb92rKhhD+Xw==" + } + }, + "npm:is-number": { + "type": "npm", + "name": "npm:is-number", + "data": { + "version": "7.0.0", + "packageName": "is-number", + "hash": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==" + } + }, + "npm:is-path-inside": { + "type": "npm", + "name": "npm:is-path-inside", + "data": { + "version": "4.0.0", + "packageName": "is-path-inside", + "hash": "sha512-lJJV/5dYS+RcL8uQdBDW9c9uWFLLBNRyFhnAKXw5tVqLlKZ4RMGZKv+YQ/IA3OhD+RpbJa1LLFM1FQPGyIXvOA==" + } + }, + "npm:is-plain-obj": { + "type": "npm", + "name": "npm:is-plain-obj", + "data": { + "version": "4.1.0", + "packageName": "is-plain-obj", + "hash": "sha512-+Pgi+vMuUNkJyExiMBt5IlFoMyKnr5zhJ4Uspz58WOhBF5QoIZkFyNHIbBAtHwzVAgk5RtndVNsDRN61/mmDqg==" + } + }, + "npm:is-promise": { + "type": "npm", + "name": "npm:is-promise", + "data": { + "version": "4.0.0", + "packageName": "is-promise", + "hash": "sha512-hvpoI6korhJMnej285dSg6nu1+e6uxs7zG3BYAm5byqDsgJNWwxzM6z6iZiAgQR4TJ30JmBTOwqZUw3WlyH3AQ==" + } + }, + "npm:is-property": { + "type": "npm", + "name": "npm:is-property", + "data": { + "version": "1.0.2", + "packageName": "is-property", + "hash": "sha512-Ks/IoX00TtClbGQr4TWXemAnktAQvYB7HzcCxDGqEZU6oCmb2INHuOoKxbtR+HFkmYWBKv/dOZtGRiAjDhj92g==" + } + }, + "npm:is-regex": { + "type": "npm", + "name": "npm:is-regex", + "data": { + "version": "1.2.1", + "packageName": "is-regex", + "hash": "sha512-MjYsKHO5O7mCsmRGxWcLWheFqN9DJ/2TmngvjKXihe6efViPqc274+Fx/4fYj/r03+ESvBdTXK0V6tA3rgez1g==" + } + }, + "npm:is-set": { + "type": "npm", + "name": "npm:is-set", + "data": { + "version": "2.0.3", + "packageName": "is-set", + "hash": "sha512-iPAjerrse27/ygGLxw+EBR9agv9Y6uLeYVJMu+QNCoouJ1/1ri0mGrcWpfCqFZuzzx3WjtwxG098X+n4OuRkPg==" + } + }, + "npm:is-shared-array-buffer": { + "type": "npm", + "name": "npm:is-shared-array-buffer", + "data": { + "version": "1.0.4", + "packageName": "is-shared-array-buffer", + "hash": "sha512-ISWac8drv4ZGfwKl5slpHG9OwPNty4jOWPRIhBpxOoD+hqITiwuipOQ2bNthAzwA3B4fIjO4Nln74N0S9byq8A==" + } + }, + "npm:is-stream": { + "type": "npm", + "name": "npm:is-stream", + "data": { + "version": "4.0.1", + "packageName": "is-stream", + "hash": "sha512-Dnz92NInDqYckGEUJv689RbRiTSEHCQ7wOVeALbkOz999YpqT46yMRIGtSNl2iCL1waAZSx40+h59NV/EwzV/A==" + } + }, + "npm:is-string": { + "type": "npm", + "name": "npm:is-string", + "data": { + "version": "1.1.1", + "packageName": "is-string", + "hash": "sha512-BtEeSsoaQjlSPBemMQIrY1MY0uM6vnS1g5fmufYOtnxLGUZM2178PKbhsk7Ffv58IX+ZtcvoGwccYsh0PglkAA==" + } + }, + "npm:is-symbol": { + "type": "npm", + "name": "npm:is-symbol", + "data": { + "version": "1.1.1", + "packageName": "is-symbol", + "hash": "sha512-9gGx6GTtCQM73BgmHQXfDmLtfjjTUDSyoxTCbp5WtoixAhfgsDirWIcVQ/IHpvI5Vgd5i/J5F7B9cN/WlVbC/w==" + } + }, + "npm:is-typed-array": { + "type": "npm", + "name": "npm:is-typed-array", + "data": { + "version": "1.1.15", + "packageName": "is-typed-array", + "hash": "sha512-p3EcsicXjit7SaskXHs1hA91QxgTw46Fv6EFKKGS5DRFLD8yKnohjF3hxoju94b/OcMZoQukzpPpBE9uLVKzgQ==" + } + }, + "npm:is-unicode-supported@0.1.0": { + "type": "npm", + "name": "npm:is-unicode-supported@0.1.0", + "data": { + "version": "0.1.0", + "packageName": "is-unicode-supported", + "hash": "sha512-knxG2q4UC3u8stRGyAVJCOdxFmv5DZiRcdlIaAQXAbSfJya+OhopNotLQrstBhququ4ZpuKbDc/8S6mgXgPFPw==" + } + }, + "npm:is-unicode-supported": { + "type": "npm", + "name": "npm:is-unicode-supported", + "data": { + "version": "2.1.0", + "packageName": "is-unicode-supported", + "hash": "sha512-mE00Gnza5EEB3Ds0HfMyllZzbBrmLOX3vfWoj9A9PEnTfratQ/BcaJOuMhnkhjXvb2+FkY3VuHqtAGpTPmglFQ==" + } + }, + "npm:is-url-http": { + "type": "npm", + "name": "npm:is-url-http", + "data": { + "version": "2.3.13", + "packageName": "is-url-http", + "hash": "sha512-DUPPybagMEVM0W968iMk0J4ztU72/HOuwMs04Kd8SCDQ/CEV31SdudlOR7qn4zMXmJuLN6+Ak5K60tcVE8tlRA==" + } + }, + "npm:is-url-superb": { + "type": "npm", + "name": "npm:is-url-superb", + "data": { + "version": "4.0.0", + "packageName": "is-url-superb", + "hash": "sha512-GI+WjezhPPcbM+tqE9LnmsY5qqjwHzTvjJ36wxYX5ujNXefSUJ/T17r5bqDV8yLhcgB59KTPNOc9O9cmHTPWsA==" + } + }, + "npm:is-weakmap": { + "type": "npm", + "name": "npm:is-weakmap", + "data": { + "version": "2.0.2", + "packageName": "is-weakmap", + "hash": "sha512-K5pXYOm9wqY1RgjpL3YTkF39tni1XajUIkawTLUo9EZEVUFga5gSQJF8nNS7ZwJQ02y+1YCNYcMh+HIf1ZqE+w==" + } + }, + "npm:is-weakref": { + "type": "npm", + "name": "npm:is-weakref", + "data": { + "version": "1.1.1", + "packageName": "is-weakref", + "hash": "sha512-6i9mGWSlqzNMEqpCp93KwRS1uUOodk2OJ6b+sq7ZPDSy2WuI5NFIxp/254TytR8ftefexkWn5xNiHUNpPOfSew==" + } + }, + "npm:is-weakset": { + "type": "npm", + "name": "npm:is-weakset", + "data": { + "version": "2.0.4", + "packageName": "is-weakset", + "hash": "sha512-mfcwb6IzQyOKTs84CQMrOwW4gQcaTOAWJ0zzJCl2WSPDrWk/OzDaImWFH3djXhb24g4eudZfLRozAvPGw4d9hQ==" + } + }, + "npm:is-what": { + "type": "npm", + "name": "npm:is-what", + "data": { + "version": "4.1.16", + "packageName": "is-what", + "hash": "sha512-ZhMwEosbFJkA0YhFnNDgTM4ZxDRsS6HqTo7qsZM08fehyRYIYa0yHu5R6mgo1n/8MgaPBXiPimPD77baVFYg+A==" + } + }, + "npm:is-wsl": { + "type": "npm", + "name": "npm:is-wsl", + "data": { + "version": "2.2.0", + "packageName": "is-wsl", + "hash": "sha512-fKzAra0rGJUUBwGBgNkHZuToZcn+TtXHpeCgmkMJMMYx1sQDYaCSyjJBSCa2nH1DGm7s3n1oBnohoVTBaN7Lww==" + } + }, + "npm:isarray": { + "type": "npm", + "name": "npm:isarray", + "data": { + "version": "2.0.5", + "packageName": "isarray", + "hash": "sha512-xHjhDr3cNBK0BzdUJSPXZntQUx/mwMS5Rw4A7lPJ90XGAO6ISP/ePDNuo0vhqOZU+UD5JoodwCAAoZQd3FeAKw==" + } + }, + "npm:isbot-fast": { + "type": "npm", + "name": "npm:isbot-fast", + "data": { + "version": "1.2.0", + "packageName": "isbot-fast", + "hash": "sha512-twjuQzy2gKMDVfKGQyQqrx6Uy4opu/fiVUTTpdqtFsd7OQijIp5oXvb27n5EemYXaijh5fomndJt/SPRLsEdSg==" + } + }, + "npm:isexe@2.0.0": { + "type": "npm", + "name": "npm:isexe@2.0.0", + "data": { + "version": "2.0.0", + "packageName": "isexe", + "hash": "sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==" + } + }, + "npm:isexe@3.1.1": { + "type": "npm", + "name": "npm:isexe@3.1.1", + "data": { + "version": "3.1.1", + "packageName": "isexe", + "hash": "sha512-LpB/54B+/2J5hqQ7imZHfdU31OlgQqx7ZicVlkm9kzg9/w8GKLEcFfJl/t7DCEDueOyBAD6zCCwTO6Fzs0NoEQ==" + } + }, + "npm:isexe": { + "type": "npm", + "name": "npm:isexe", + "data": { + "version": "4.0.0", + "packageName": "isexe", + "hash": "sha512-FFUtZMpoZ8RqHS3XeXEmHWLA4thH+ZxCv2lOiPIn1Xc7CxrqhWzNSDzD+/chS/zbYezmiwWLdQC09JdQKmthOw==" + } + }, + "npm:iterator.prototype": { + "type": "npm", + "name": "npm:iterator.prototype", + "data": { + "version": "1.1.5", + "packageName": "iterator.prototype", + "hash": "sha512-H0dkQoCa3b2VEeKQBOxFph+JAbcrQdE7KC0UkqwpLmv2EC4P41QXP+rqo9wYodACiG5/WM5s9oDApTU8utwj9g==" + } + }, + "npm:itty-router": { + "type": "npm", + "name": "npm:itty-router", + "data": { + "version": "5.0.22", + "packageName": "itty-router", + "hash": "sha512-9hmdGErWdYDOurGYxSbqLhy4EFReIwk71hMZTJ5b+zfa2zjMNV1ftFno2b8VjAQvX615gNB8Qxbl9JMRqHnIVA==" + } + }, + "npm:jackspeak@3.4.3": { + "type": "npm", + "name": "npm:jackspeak@3.4.3", + "data": { + "version": "3.4.3", + "packageName": "jackspeak", + "hash": "sha512-OGlZQpz2yfahA/Rd1Y8Cd9SIEsqvXkLVoSw/cgwhnhFMDbsQFeZYoJJ7bIZBS9BcamUW96asq/npPWugM+RQBw==" + } + }, + "npm:jackspeak": { + "type": "npm", + "name": "npm:jackspeak", + "data": { + "version": "4.2.3", + "packageName": "jackspeak", + "hash": "sha512-ykkVRwrYvFm1nb2AJfKKYPr0emF6IiXDYUaFx4Zn9ZuIH7MrzEZ3sD5RlqGXNRpHtvUHJyOnCEFxOlNDtGo7wg==" + } + }, + "npm:jake": { + "type": "npm", + "name": "npm:jake", + "data": { + "version": "10.9.4", + "packageName": "jake", + "hash": "sha512-wpHYzhxiVQL+IV05BLE2Xn34zW1S223hvjtqk0+gsPrwd/8JNLXJgZZM/iPFsYc1xyphF+6M6EvdE5E9MBGkDA==" + } + }, + "npm:jest-diff": { + "type": "npm", + "name": "npm:jest-diff", + "data": { + "version": "30.3.0", + "packageName": "jest-diff", + "hash": "sha512-n3q4PDQjS4LrKxfWB3Z5KNk1XjXtZTBwQp71OP0Jo03Z6V60x++K5L8k6ZrW8MY8pOFylZvHM0zsjS1RqlHJZQ==" + } + }, + "npm:jiti": { + "type": "npm", + "name": "npm:jiti", + "data": { + "version": "2.6.1", + "packageName": "jiti", + "hash": "sha512-ekilCSN1jwRvIbgeg/57YFh8qQDNbwDb9xT/qu2DAHbFFZUicIl4ygVaAvzveMhMVr3LnpSKTNnwt8PoOfmKhQ==" + } + }, + "npm:jju": { + "type": "npm", + "name": "npm:jju", + "data": { + "version": "1.4.0", + "packageName": "jju", + "hash": "sha512-8wb9Yw966OSxApiCt0K3yNJL8pnNeIv+OEq2YMidz4FKP6nonSRoOXc80iXY4JaN2FC11B9qsNmDsm+ZOfMROA==" + } + }, + "npm:jose": { + "type": "npm", + "name": "npm:jose", + "data": { + "version": "6.1.0", + "packageName": "jose", + "hash": "sha512-TTQJyoEoKcC1lscpVDCSsVgYzUDg/0Bt3WE//WiTPK6uOCQC2KZS4MpugbMWt/zyjkopgZoXhZuCi00gLudfUA==" + } + }, + "npm:js-tokens": { + "type": "npm", + "name": "npm:js-tokens", + "data": { + "version": "4.0.0", + "packageName": "js-tokens", + "hash": "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==" + } + }, + "npm:js-yaml@3.14.2": { + "type": "npm", + "name": "npm:js-yaml@3.14.2", + "data": { + "version": "3.14.2", + "packageName": "js-yaml", + "hash": "sha512-PMSmkqxr106Xa156c2M265Z+FTrPl+oxd/rgOQy2tijQeK5TxQ43psO1ZCwhVOSdnn+RzkzlRz/eY4BgJBYVpg==" + } + }, + "npm:js-yaml": { + "type": "npm", + "name": "npm:js-yaml", + "data": { + "version": "4.1.1", + "packageName": "js-yaml", + "hash": "sha512-qQKT4zQxXl8lLwBtHMWwaTcGfFOZviOJet3Oy/xmGk2gZH677CJM9EvtfdSkgWcATZhj/55JZ0rmy3myCT5lsA==" + } + }, + "npm:jsesc": { + "type": "npm", + "name": "npm:jsesc", + "data": { + "version": "3.1.0", + "packageName": "jsesc", + "hash": "sha512-/sM3dO2FOzXjKQhJuo0Q173wf2KOo8t4I8vHy6lF9poUp7bKT0/NHE8fPX23PwfhnykfqnC2xRxOnVw5XuGIaA==" + } + }, + "npm:json-buffer": { + "type": "npm", + "name": "npm:json-buffer", + "data": { + "version": "3.0.1", + "packageName": "json-buffer", + "hash": "sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ==" + } + }, + "npm:json-loose": { + "type": "npm", + "name": "npm:json-loose", + "data": { + "version": "1.2.4", + "packageName": "json-loose", + "hash": "sha512-lwMWNC5pvVI33rhYWmAsmtICWE2IH7euDY/iIPeMFE5AuzAifYgqQrjqSMzwbrFV6MWPs41XD+CajElHI4cZMQ==" + } + }, + "npm:json-parse-even-better-errors@2.3.1": { + "type": "npm", + "name": "npm:json-parse-even-better-errors@2.3.1", + "data": { + "version": "2.3.1", + "packageName": "json-parse-even-better-errors", + "hash": "sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w==" + } + }, + "npm:json-parse-even-better-errors": { + "type": "npm", + "name": "npm:json-parse-even-better-errors", + "data": { + "version": "4.0.0", + "packageName": "json-parse-even-better-errors", + "hash": "sha512-lR4MXjGNgkJc7tkQ97kb2nuEMnNCyU//XYVH0MKTGcXEiSudQ5MKGKen3C5QubYy0vmq+JGitUg92uuywGEwIA==" + } + }, + "npm:json-schema-ref-resolver": { + "type": "npm", + "name": "npm:json-schema-ref-resolver", + "data": { + "version": "3.0.0", + "packageName": "json-schema-ref-resolver", + "hash": "sha512-hOrZIVL5jyYFjzk7+y7n5JDzGlU8rfWDuYyHwGa2WA8/pcmMHezp2xsVwxrebD/Q9t8Nc5DboieySDpCp4WG4A==" + } + }, + "npm:json-schema-traverse": { + "type": "npm", + "name": "npm:json-schema-traverse", + "data": { + "version": "0.4.1", + "packageName": "json-schema-traverse", + "hash": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==" + } + }, + "npm:json-schema-traverse@1.0.0": { + "type": "npm", + "name": "npm:json-schema-traverse@1.0.0", + "data": { + "version": "1.0.0", + "packageName": "json-schema-traverse", + "hash": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==" + } + }, + "npm:json-stable-stringify-without-jsonify": { + "type": "npm", + "name": "npm:json-stable-stringify-without-jsonify", + "data": { + "version": "1.0.1", + "packageName": "json-stable-stringify-without-jsonify", + "hash": "sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==" + } + }, + "npm:json5": { + "type": "npm", + "name": "npm:json5", + "data": { + "version": "2.2.3", + "packageName": "json5", + "hash": "sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==" + } + }, + "npm:jsonc-parser@3.2.0": { + "type": "npm", + "name": "npm:jsonc-parser@3.2.0", + "data": { + "version": "3.2.0", + "packageName": "jsonc-parser", + "hash": "sha512-gfFQZrcTc8CnKXp6Y4/CBT3fTc0OVuDofpre4aEeEpSBPV5X5v4+Vmx+8snU7RLPrNHPKSgLxGo9YuQzz20o+w==" + } + }, + "npm:jsonc-parser": { + "type": "npm", + "name": "npm:jsonc-parser", + "data": { + "version": "3.3.1", + "packageName": "jsonc-parser", + "hash": "sha512-HUgH65KyejrUFPvHFPbqOY0rsFip3Bo5wb4ngvdi1EpCYWUQDC5V+Y7mZws+DLkr4M//zQJoanu1SP+87Dv1oQ==" + } + }, + "npm:jsx-ast-utils": { + "type": "npm", + "name": "npm:jsx-ast-utils", + "data": { + "version": "3.3.5", + "packageName": "jsx-ast-utils", + "hash": "sha512-ZZow9HBI5O6EPgSJLUb8n2NKgmVWTwCvHGwFuJlMjvLFqlGG6pjirPhtdsseaLZjSibD8eegzmYpUZwoIlj2cQ==" + } + }, + "npm:kebab-case": { + "type": "npm", + "name": "npm:kebab-case", + "data": { + "version": "1.0.2", + "packageName": "kebab-case", + "hash": "sha512-7n6wXq4gNgBELfDCpzKc+mRrZFs7D+wgfF5WRFLNAr4DA/qtr9Js8uOAVAfHhuLMfAcQ0pRKqbpjx+TcJVdE1Q==" + } + }, + "npm:keyv": { + "type": "npm", + "name": "npm:keyv", + "data": { + "version": "4.5.4", + "packageName": "keyv", + "hash": "sha512-oxVHkHR/EJf2CNXnWxRLW6mg7JyCCUcG0DtEGmL2ctUo1PNTin1PUil+r/+4r5MpVgC/fn1kjsx7mjSujKqIpw==" + } + }, + "npm:kill-process-group": { + "type": "npm", + "name": "npm:kill-process-group", + "data": { + "version": "1.0.13", + "packageName": "kill-process-group", + "hash": "sha512-BbOC8H7O8mvETYdkp2t5B3TmhNkwbFXUAb6by48wBei0bbUHXXEaD+80uOaTGAmeuSq37P6CUYHetsK5xB2vCA==" + } + }, + "npm:kleur": { + "type": "npm", + "name": "npm:kleur", + "data": { + "version": "4.1.5", + "packageName": "kleur", + "hash": "sha512-o+NO+8WrRiQEE4/7nwRJhN1HWpVmJm511pBHUxPLtp0BUISzlBplORYSmTclCnJvQq2tKu/sgl3xVpkc7ZWuQQ==" + } + }, + "npm:knip": { + "type": "npm", + "name": "npm:knip", + "data": { + "version": "5.88.1", + "packageName": "knip", + "hash": "sha512-tpy5o7zu1MjawVkLPuahymVJekYY3kYjvzcoInhIchgePxTlo+api90tBv2KfhAIe5uXh+mez1tAfmbv8/TiZg==" + } + }, + "npm:known-css-properties": { + "type": "npm", + "name": "npm:known-css-properties", + "data": { + "version": "0.30.0", + "packageName": "known-css-properties", + "hash": "sha512-VSWXYUnsPu9+WYKkfmJyLKtIvaRJi1kXUqVmBACORXZQxT5oZDsoZ2vQP+bQFDnWtpI/4eq3MLoRMjI2fnLzTQ==" + } + }, + "npm:kysely-d1": { + "type": "npm", + "name": "npm:kysely-d1", + "data": { + "version": "0.4.0", + "packageName": "kysely-d1", + "hash": "sha512-wUcVvQNtm30OTfuo7Ad5vYJ1qHqPXOCZc+zWchVKNyuvqY3u8OuGw4gmUx1Ypdx2wRVFLHVQC9I7v0pTmF7Nkw==" + } + }, + "npm:kysely": { + "type": "npm", + "name": "npm:kysely", + "data": { + "version": "0.28.14", + "packageName": "kysely", + "hash": "sha512-SU3lgh0rPvq7upc6vvdVrCsSMUG1h3ChvHVOY7wJ2fw4C9QEB7X3d5eyYEyULUX7UQtxZJtZXGuT6U2US72UYA==" + } + }, + "npm:levn": { + "type": "npm", + "name": "npm:levn", + "data": { + "version": "0.4.1", + "packageName": "levn", + "hash": "sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==" + } + }, + "npm:light-my-request": { + "type": "npm", + "name": "npm:light-my-request", + "data": { + "version": "6.6.0", + "packageName": "light-my-request", + "hash": "sha512-CHYbu8RtboSIoVsHZ6Ye4cj4Aw/yg2oAFimlF7mNvfDV192LR7nDiKtSIfCuLT7KokPSTn/9kfVLm5OGN0A28A==" + } + }, + "npm:lightningcss-android-arm64": { + "type": "npm", + "name": "npm:lightningcss-android-arm64", + "data": { + "version": "1.32.0", + "packageName": "lightningcss-android-arm64", + "hash": "sha512-YK7/ClTt4kAK0vo6w3X+Pnm0D2cf2vPHbhOXdoNti1Ga0al1P4TBZhwjATvjNwLEBCnKvjJc2jQgHXH0NEwlAg==" + } + }, + "npm:lightningcss-darwin-arm64": { + "type": "npm", + "name": "npm:lightningcss-darwin-arm64", + "data": { + "version": "1.32.0", + "packageName": "lightningcss-darwin-arm64", + "hash": "sha512-RzeG9Ju5bag2Bv1/lwlVJvBE3q6TtXskdZLLCyfg5pt+HLz9BqlICO7LZM7VHNTTn/5PRhHFBSjk5lc4cmscPQ==" + } + }, + "npm:lightningcss-darwin-x64": { + "type": "npm", + "name": "npm:lightningcss-darwin-x64", + "data": { + "version": "1.32.0", + "packageName": "lightningcss-darwin-x64", + "hash": "sha512-U+QsBp2m/s2wqpUYT/6wnlagdZbtZdndSmut/NJqlCcMLTWp5muCrID+K5UJ6jqD2BFshejCYXniPDbNh73V8w==" + } + }, + "npm:lightningcss-freebsd-x64": { + "type": "npm", + "name": "npm:lightningcss-freebsd-x64", + "data": { + "version": "1.32.0", + "packageName": "lightningcss-freebsd-x64", + "hash": "sha512-JCTigedEksZk3tHTTthnMdVfGf61Fky8Ji2E4YjUTEQX14xiy/lTzXnu1vwiZe3bYe0q+SpsSH/CTeDXK6WHig==" + } + }, + "npm:lightningcss-linux-arm-gnueabihf": { + "type": "npm", + "name": "npm:lightningcss-linux-arm-gnueabihf", + "data": { + "version": "1.32.0", + "packageName": "lightningcss-linux-arm-gnueabihf", + "hash": "sha512-x6rnnpRa2GL0zQOkt6rts3YDPzduLpWvwAF6EMhXFVZXD4tPrBkEFqzGowzCsIWsPjqSK+tyNEODUBXeeVHSkw==" + } + }, + "npm:lightningcss-linux-arm64-gnu": { + "type": "npm", + "name": "npm:lightningcss-linux-arm64-gnu", + "data": { + "version": "1.32.0", + "packageName": "lightningcss-linux-arm64-gnu", + "hash": "sha512-0nnMyoyOLRJXfbMOilaSRcLH3Jw5z9HDNGfT/gwCPgaDjnx0i8w7vBzFLFR1f6CMLKF8gVbebmkUN3fa/kQJpQ==" + } + }, + "npm:lightningcss-linux-arm64-musl": { + "type": "npm", + "name": "npm:lightningcss-linux-arm64-musl", + "data": { + "version": "1.32.0", + "packageName": "lightningcss-linux-arm64-musl", + "hash": "sha512-UpQkoenr4UJEzgVIYpI80lDFvRmPVg6oqboNHfoH4CQIfNA+HOrZ7Mo7KZP02dC6LjghPQJeBsvXhJod/wnIBg==" + } + }, + "npm:lightningcss-linux-x64-gnu": { + "type": "npm", + "name": "npm:lightningcss-linux-x64-gnu", + "data": { + "version": "1.32.0", + "packageName": "lightningcss-linux-x64-gnu", + "hash": "sha512-V7Qr52IhZmdKPVr+Vtw8o+WLsQJYCTd8loIfpDaMRWGUZfBOYEJeyJIkqGIDMZPwPx24pUMfwSxxI8phr/MbOA==" + } + }, + "npm:lightningcss-linux-x64-musl": { + "type": "npm", + "name": "npm:lightningcss-linux-x64-musl", + "data": { + "version": "1.32.0", + "packageName": "lightningcss-linux-x64-musl", + "hash": "sha512-bYcLp+Vb0awsiXg/80uCRezCYHNg1/l3mt0gzHnWV9XP1W5sKa5/TCdGWaR/zBM2PeF/HbsQv/j2URNOiVuxWg==" + } + }, + "npm:lightningcss-win32-arm64-msvc": { + "type": "npm", + "name": "npm:lightningcss-win32-arm64-msvc", + "data": { + "version": "1.32.0", + "packageName": "lightningcss-win32-arm64-msvc", + "hash": "sha512-8SbC8BR40pS6baCM8sbtYDSwEVQd4JlFTOlaD3gWGHfThTcABnNDBda6eTZeqbofalIJhFx0qKzgHJmcPTnGdw==" + } + }, + "npm:lightningcss-win32-x64-msvc": { + "type": "npm", + "name": "npm:lightningcss-win32-x64-msvc", + "data": { + "version": "1.32.0", + "packageName": "lightningcss-win32-x64-msvc", + "hash": "sha512-Amq9B/SoZYdDi1kFrojnoqPLxYhQ4Wo5XiL8EVJrVsB8ARoC1PWW6VGtT0WKCemjy8aC+louJnjS7U18x3b06Q==" + } + }, + "npm:lightningcss": { + "type": "npm", + "name": "npm:lightningcss", + "data": { + "version": "1.32.0", + "packageName": "lightningcss", + "hash": "sha512-NXYBzinNrblfraPGyrbPoD19C1h9lfI/1mzgWYvXUTe414Gz/X1FD2XBZSZM7rRTrMA8JL3OtAaGifrIKhQ5yQ==" + } + }, + "npm:lilconfig": { + "type": "npm", + "name": "npm:lilconfig", + "data": { + "version": "2.1.0", + "packageName": "lilconfig", + "hash": "sha512-utWOt/GHzuUxnLKxB6dk81RoOeoNeHgbrXiuGk4yyF5qlRz+iIVWu56E2fqGHFrXz0QNUhLB/8nKqvRH66JKGQ==" + } + }, + "npm:lines-and-columns@1.2.4": { + "type": "npm", + "name": "npm:lines-and-columns@1.2.4", + "data": { + "version": "1.2.4", + "packageName": "lines-and-columns", + "hash": "sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==" + } + }, + "npm:lines-and-columns": { + "type": "npm", + "name": "npm:lines-and-columns", + "data": { + "version": "2.0.3", + "packageName": "lines-and-columns", + "hash": "sha512-cNOjgCnLB+FnvWWtyRTzmB3POJ+cXxTA81LoW7u8JdmhfXzriropYwpjShnz1QLLWsQwY7nIxoDmcPTwphDK9w==" + } + }, + "npm:locate-path@3.0.0": { + "type": "npm", + "name": "npm:locate-path@3.0.0", + "data": { + "version": "3.0.0", + "packageName": "locate-path", + "hash": "sha512-7AO748wWnIhNqAuaty2ZWHkQHRSNfPVIsPIfwEOWO22AmaoVrWavlOcMR5nzTLNYvp36X220/maaRsrec1G65A==" + } + }, + "npm:locate-path": { + "type": "npm", + "name": "npm:locate-path", + "data": { + "version": "6.0.0", + "packageName": "locate-path", + "hash": "sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==" + } + }, + "npm:lodash.memoize": { + "type": "npm", + "name": "npm:lodash.memoize", + "data": { + "version": "4.1.2", + "packageName": "lodash.memoize", + "hash": "sha512-t7j+NzmgnQzTAYXcsHYLgimltOV1MXHtlOWf6GjL9Kj8GK5FInw5JotxvbOs+IvV1/Dzo04/fCGfLVs7aXb4Ag==" + } + }, + "npm:lodash.merge": { + "type": "npm", + "name": "npm:lodash.merge", + "data": { + "version": "4.6.2", + "packageName": "lodash.merge", + "hash": "sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==" + } + }, + "npm:lodash.uniq": { + "type": "npm", + "name": "npm:lodash.uniq", + "data": { + "version": "4.5.0", + "packageName": "lodash.uniq", + "hash": "sha512-xfBaXQd9ryd9dlSDvnvI0lvxfLJlYAZzXomUYzLKtUeOQvOP5piqAWuGtrhWeqaXK9hhoM/iyJc5AV+XfsX3HQ==" + } + }, + "npm:lodash@4.17.21": { + "type": "npm", + "name": "npm:lodash@4.17.21", + "data": { + "version": "4.17.21", + "packageName": "lodash", + "hash": "sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==" + } + }, + "npm:lodash": { + "type": "npm", + "name": "npm:lodash", + "data": { + "version": "4.17.23", + "packageName": "lodash", + "hash": "sha512-LgVTMpQtIopCi79SJeDiP0TfWi5CNEc/L/aRdTh3yIvmZXTnheWpKjSZhnvMl8iXbC1tFg9gdHHDMLoV7CnG+w==" + } + }, + "npm:log-symbols": { + "type": "npm", + "name": "npm:log-symbols", + "data": { + "version": "4.1.0", + "packageName": "log-symbols", + "hash": "sha512-8XPvpAA8uyhfteu8pIvQxpJZ7SYYdpUivZpGy6sFsBuKRY/7rQGavedeB8aK+Zkyq6upMFVL/9AW6vOYzfRyLg==" + } + }, + "npm:long": { + "type": "npm", + "name": "npm:long", + "data": { + "version": "5.3.2", + "packageName": "long", + "hash": "sha512-mNAgZ1GmyNhD7AuqnTG3/VQ26o760+ZYBPKjPvugO8+nLbYfX6TVpJPseBvopbdY+qpZ/lKUnmEc1LeZYS3QAA==" + } + }, + "npm:longest-streak": { + "type": "npm", + "name": "npm:longest-streak", + "data": { + "version": "3.1.0", + "packageName": "longest-streak", + "hash": "sha512-9Ri+o0JYgehTaVBBDoMqIl8GXtbWg711O3srftcHhZ0dqnETqLaoIK0x17fUw9rFSlK/0NlsKe0Ahhyl5pXE2g==" + } + }, + "npm:loose-envify": { + "type": "npm", + "name": "npm:loose-envify", + "data": { + "version": "1.4.0", + "packageName": "loose-envify", + "hash": "sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==" + } + }, + "npm:lowercase-keys": { + "type": "npm", + "name": "npm:lowercase-keys", + "data": { + "version": "2.0.0", + "packageName": "lowercase-keys", + "hash": "sha512-tqNXrS78oMOE73NMxK4EMLQsQowWf8jKooH9g7xPavRT706R6bkQJ6DY2Te7QukaZsulxa30wQ7bk0pm4XiHmA==" + } + }, + "npm:lru-cache@10.4.3": { + "type": "npm", + "name": "npm:lru-cache@10.4.3", + "data": { + "version": "10.4.3", + "packageName": "lru-cache", + "hash": "sha512-JNAzZcXrCt42VGLuYz0zfAzDfAvJWW6AfYlDBQyDV5DClI2m5sAmK+OIO7s59XfsRsWHp02jAJrRadPRGTt6SQ==" + } + }, + "npm:lru-cache@11.2.2": { + "type": "npm", + "name": "npm:lru-cache@11.2.2", + "data": { + "version": "11.2.2", + "packageName": "lru-cache", + "hash": "sha512-F9ODfyqML2coTIsQpSkRHnLSZMtkU8Q+mSfcaIyKwy58u+8k5nvAYeiNhsyMARvzNcXJ9QfWVrcPsC9e9rAxtg==" + } + }, + "npm:lru-cache": { + "type": "npm", + "name": "npm:lru-cache", + "data": { + "version": "5.1.1", + "packageName": "lru-cache", + "hash": "sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==" + } + }, + "npm:lru-cache@7.18.3": { + "type": "npm", + "name": "npm:lru-cache@7.18.3", + "data": { + "version": "7.18.3", + "packageName": "lru-cache", + "hash": "sha512-jumlc0BIUrS3qJGgIkWZsyfAM7NCWiBcCDhnd+3NNM5KbBmLTgHVfWBcg6W+rLUsIpzpERPsvwUP7CckAQSOoA==" + } + }, + "npm:lru.min": { + "type": "npm", + "name": "npm:lru.min", + "data": { + "version": "1.1.3", + "packageName": "lru.min", + "hash": "sha512-Lkk/vx6ak3rYkRR0Nhu4lFUT2VDnQSxBe8Hbl7f36358p6ow8Bnvr8lrLt98H8J1aGxfhbX4Fs5tYg2+FTwr5Q==" + } + }, + "npm:lucide-react": { + "type": "npm", + "name": "npm:lucide-react", + "data": { + "version": "0.577.0", + "packageName": "lucide-react", + "hash": "sha512-4LjoFv2eEPwYDPg/CUdBJQSDfPyzXCRrVW1X7jrx/trgxnxkHFjnVZINbzvzxjN70dxychOfg+FTYwBiS3pQ5A==" + } + }, + "npm:magic-regexp": { + "type": "npm", + "name": "npm:magic-regexp", + "data": { + "version": "0.10.0", + "packageName": "magic-regexp", + "hash": "sha512-Uly1Bu4lO1hwHUW0CQeSWuRtzCMNO00CmXtS8N6fyvB3B979GOEEeAkiTUDsmbYLAbvpUS/Kt5c4ibosAzVyVg==" + } + }, + "npm:magic-string": { + "type": "npm", + "name": "npm:magic-string", + "data": { + "version": "0.30.21", + "packageName": "magic-string", + "hash": "sha512-vd2F4YUyEXKGcLHoq+TEyCjxueSeHnFxyyjNp80yg0XV4vUhnDer/lvvlqM/arB5bXQN5K2/3oinyCRyx8T2CQ==" + } + }, + "npm:magicast": { + "type": "npm", + "name": "npm:magicast", + "data": { + "version": "0.5.2", + "packageName": "magicast", + "hash": "sha512-E3ZJh4J3S9KfwdjZhe2afj6R9lGIN5Pher1pF39UGrXRqq/VDaGVIGN13BjHd2u8B61hArAGOnso7nBOouW3TQ==" + } + }, + "npm:make-fetch-happen": { + "type": "npm", + "name": "npm:make-fetch-happen", + "data": { + "version": "14.0.3", + "packageName": "make-fetch-happen", + "hash": "sha512-QMjGbFTP0blj97EeidG5hk/QhKQ3T4ICckQGLgz38QF7Vgbk6e6FTARN8KhKxyBbWn8R0HU+bnw8aSoFPD4qtQ==" + } + }, + "npm:map-values-deep": { + "type": "npm", + "name": "npm:map-values-deep", + "data": { + "version": "1.0.2", + "packageName": "map-values-deep", + "hash": "sha512-br+tp4aANql3WnpDRjD14H7hHopPlJRnzCL0ZlGCRHAQZTU0g0x1rUQFq/ikb3zZQK+lW2AG7RJi+CFfQ8kSPA==" + } + }, + "npm:math-intrinsics": { + "type": "npm", + "name": "npm:math-intrinsics", + "data": { + "version": "1.1.0", + "packageName": "math-intrinsics", + "hash": "sha512-/IXtbwEk5HTPyEwyKX6hGkYXxM9nbj64B+ilVJnC/R6B0pH5G4V3b0pVbL7DBj4tkhBAppbQUlf6F6Xl9LHu1g==" + } + }, + "npm:mdast-builder": { + "type": "npm", + "name": "npm:mdast-builder", + "data": { + "version": "1.1.1", + "packageName": "mdast-builder", + "hash": "sha512-a3KBk/LmYD6wKsWi8WJrGU/rXR4yuF4Men0JO0z6dSZCm5FrXXWTRDjqK0vGSqa+1M6p9edeuypZAZAzSehTUw==" + } + }, + "npm:mdast-util-from-markdown": { + "type": "npm", + "name": "npm:mdast-util-from-markdown", + "data": { + "version": "2.0.3", + "packageName": "mdast-util-from-markdown", + "hash": "sha512-W4mAWTvSlKvf8L6J+VN9yLSqQ9AOAAvHuoDAmPkz4dHf553m5gVj2ejadHJhoJmcmxEnOv6Pa8XJhpxE93kb8Q==" + } + }, + "npm:mdast-util-phrasing": { + "type": "npm", + "name": "npm:mdast-util-phrasing", + "data": { + "version": "4.1.0", + "packageName": "mdast-util-phrasing", + "hash": "sha512-TqICwyvJJpBwvGAMZjj4J2n0X8QWp21b9l0o7eXyVJ25YNWYbJDVIyD1bZXE6WtV6RmKJVYmQAKWa0zWOABz2w==" + } + }, + "npm:mdast-util-to-markdown": { + "type": "npm", + "name": "npm:mdast-util-to-markdown", + "data": { + "version": "2.1.2", + "packageName": "mdast-util-to-markdown", + "hash": "sha512-xj68wMTvGXVOKonmog6LwyJKrYXZPvlwabaryTjLh9LuvovB/KAH+kvi8Gjj+7rJjsFi23nkUxRQv1KqSroMqA==" + } + }, + "npm:mdast-util-to-string": { + "type": "npm", + "name": "npm:mdast-util-to-string", + "data": { + "version": "4.0.0", + "packageName": "mdast-util-to-string", + "hash": "sha512-0H44vDimn51F0YwvxSJSm0eCDOJTRlmN0R1yBh4HLj9wiV1Dn0QoXGbvFAWj2hSItVTlCmBF1hqKlIyUBVFLPg==" + } + }, + "npm:mdast-util-toc": { + "type": "npm", + "name": "npm:mdast-util-toc", + "data": { + "version": "7.1.0", + "packageName": "mdast-util-toc", + "hash": "sha512-2TVKotOQzqdY7THOdn2gGzS9d1Sdd66bvxUyw3aNpWfcPXCLYSJCCgfPy30sEtuzkDraJgqF35dzgmz6xlvH/w==" + } + }, + "npm:mdn-data": { + "type": "npm", + "name": "npm:mdn-data", + "data": { + "version": "2.0.14", + "packageName": "mdn-data", + "hash": "sha512-dn6wd0uw5GsdswPFfsgMp5NSB0/aDe6fK94YJV/AJDYXL6HVLWBsxeq7js7Ad+mU2K9LAlwpk6kN2D5mwCPVow==" + } + }, + "npm:media-typer": { + "type": "npm", + "name": "npm:media-typer", + "data": { + "version": "1.1.0", + "packageName": "media-typer", + "hash": "sha512-aisnrDP4GNe06UcKFnV5bfMNPBUw4jsLGaWwWfnH3v02GnBuXX2MCVn5RbrWo0j3pczUilYblq7fQ7Nw2t5XKw==" + } + }, + "npm:memoize-one": { + "type": "npm", + "name": "npm:memoize-one", + "data": { + "version": "6.0.0", + "packageName": "memoize-one", + "hash": "sha512-rkpe71W0N0c0Xz6QD0eJETuWAJGnJ9afsl1srmwPrI+yBCkge5EycXXbYRyvL29zZVUWQCY7InPRCv3GDXuZNw==" + } + }, + "npm:memorystream": { + "type": "npm", + "name": "npm:memorystream", + "data": { + "version": "0.3.1", + "packageName": "memorystream", + "hash": "sha512-S3UwM3yj5mtUSEfP41UZmt/0SCoVYUcU1rkXv+BQ5Ig8ndL4sPoJNBUJERafdPb5jjHJGuMgytgKvKIf58XNBw==" + } + }, + "npm:merge-anything": { + "type": "npm", + "name": "npm:merge-anything", + "data": { + "version": "5.1.7", + "packageName": "merge-anything", + "hash": "sha512-eRtbOb1N5iyH0tkQDAoQ4Ipsp/5qSR79Dzrz8hEPxRX10RWWR/iQXdoKmBSRCThY1Fh5EhISDtpSc93fpxUniQ==" + } + }, + "npm:merge-descriptors": { + "type": "npm", + "name": "npm:merge-descriptors", + "data": { + "version": "2.0.0", + "packageName": "merge-descriptors", + "hash": "sha512-Snk314V5ayFLhp3fkUREub6WtjBfPdCPY1Ln8/8munuLuiYhsABgBVWsozAG+MWMbVEvcdcpbi9R7ww22l9Q3g==" + } + }, + "npm:merge2": { + "type": "npm", + "name": "npm:merge2", + "data": { + "version": "1.4.1", + "packageName": "merge2", + "hash": "sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==" + } + }, + "npm:micromark-core-commonmark": { + "type": "npm", + "name": "npm:micromark-core-commonmark", + "data": { + "version": "2.0.3", + "packageName": "micromark-core-commonmark", + "hash": "sha512-RDBrHEMSxVFLg6xvnXmb1Ayr2WzLAWjeSATAoxwKYJV94TeNavgoIdA0a9ytzDSVzBy2YKFK+emCPOEibLeCrg==" + } + }, + "npm:micromark-factory-destination": { + "type": "npm", + "name": "npm:micromark-factory-destination", + "data": { + "version": "2.0.1", + "packageName": "micromark-factory-destination", + "hash": "sha512-Xe6rDdJlkmbFRExpTOmRj9N3MaWmbAgdpSrBQvCFqhezUn4AHqJHbaEnfbVYYiexVSs//tqOdY/DxhjdCiJnIA==" + } + }, + "npm:micromark-factory-label": { + "type": "npm", + "name": "npm:micromark-factory-label", + "data": { + "version": "2.0.1", + "packageName": "micromark-factory-label", + "hash": "sha512-VFMekyQExqIW7xIChcXn4ok29YE3rnuyveW3wZQWWqF4Nv9Wk5rgJ99KzPvHjkmPXF93FXIbBp6YdW3t71/7Vg==" + } + }, + "npm:micromark-factory-space": { + "type": "npm", + "name": "npm:micromark-factory-space", + "data": { + "version": "2.0.1", + "packageName": "micromark-factory-space", + "hash": "sha512-zRkxjtBxxLd2Sc0d+fbnEunsTj46SWXgXciZmHq0kDYGnck/ZSGj9/wULTV95uoeYiK5hRXP2mJ98Uo4cq/LQg==" + } + }, + "npm:micromark-factory-title": { + "type": "npm", + "name": "npm:micromark-factory-title", + "data": { + "version": "2.0.1", + "packageName": "micromark-factory-title", + "hash": "sha512-5bZ+3CjhAd9eChYTHsjy6TGxpOFSKgKKJPJxr293jTbfry2KDoWkhBb6TcPVB4NmzaPhMs1Frm9AZH7OD4Cjzw==" + } + }, + "npm:micromark-factory-whitespace": { + "type": "npm", + "name": "npm:micromark-factory-whitespace", + "data": { + "version": "2.0.1", + "packageName": "micromark-factory-whitespace", + "hash": "sha512-Ob0nuZ3PKt/n0hORHyvoD9uZhr+Za8sFoP+OnMcnWK5lngSzALgQYKMr9RJVOWLqQYuyn6ulqGWSXdwf6F80lQ==" + } + }, + "npm:micromark-util-character": { + "type": "npm", + "name": "npm:micromark-util-character", + "data": { + "version": "2.1.1", + "packageName": "micromark-util-character", + "hash": "sha512-wv8tdUTJ3thSFFFJKtpYKOYiGP2+v96Hvk4Tu8KpCAsTMs6yi+nVmGh1syvSCsaxz45J6Jbw+9DD6g97+NV67Q==" + } + }, + "npm:micromark-util-chunked": { + "type": "npm", + "name": "npm:micromark-util-chunked", + "data": { + "version": "2.0.1", + "packageName": "micromark-util-chunked", + "hash": "sha512-QUNFEOPELfmvv+4xiNg2sRYeS/P84pTW0TCgP5zc9FpXetHY0ab7SxKyAQCNCc1eK0459uoLI1y5oO5Vc1dbhA==" + } + }, + "npm:micromark-util-classify-character": { + "type": "npm", + "name": "npm:micromark-util-classify-character", + "data": { + "version": "2.0.1", + "packageName": "micromark-util-classify-character", + "hash": "sha512-K0kHzM6afW/MbeWYWLjoHQv1sgg2Q9EccHEDzSkxiP/EaagNzCm7T/WMKZ3rjMbvIpvBiZgwR3dKMygtA4mG1Q==" + } + }, + "npm:micromark-util-combine-extensions": { + "type": "npm", + "name": "npm:micromark-util-combine-extensions", + "data": { + "version": "2.0.1", + "packageName": "micromark-util-combine-extensions", + "hash": "sha512-OnAnH8Ujmy59JcyZw8JSbK9cGpdVY44NKgSM7E9Eh7DiLS2E9RNQf0dONaGDzEG9yjEl5hcqeIsj4hfRkLH/Bg==" + } + }, + "npm:micromark-util-decode-numeric-character-reference": { + "type": "npm", + "name": "npm:micromark-util-decode-numeric-character-reference", + "data": { + "version": "2.0.2", + "packageName": "micromark-util-decode-numeric-character-reference", + "hash": "sha512-ccUbYk6CwVdkmCQMyr64dXz42EfHGkPQlBj5p7YVGzq8I7CtjXZJrubAYezf7Rp+bjPseiROqe7G6foFd+lEuw==" + } + }, + "npm:micromark-util-decode-string": { + "type": "npm", + "name": "npm:micromark-util-decode-string", + "data": { + "version": "2.0.1", + "packageName": "micromark-util-decode-string", + "hash": "sha512-nDV/77Fj6eH1ynwscYTOsbK7rR//Uj0bZXBwJZRfaLEJ1iGBR6kIfNmlNqaqJf649EP0F3NWNdeJi03elllNUQ==" + } + }, + "npm:micromark-util-encode": { + "type": "npm", + "name": "npm:micromark-util-encode", + "data": { + "version": "2.0.1", + "packageName": "micromark-util-encode", + "hash": "sha512-c3cVx2y4KqUnwopcO9b/SCdo2O67LwJJ/UyqGfbigahfegL9myoEFoDYZgkT7f36T0bLrM9hZTAaAyH+PCAXjw==" + } + }, + "npm:micromark-util-html-tag-name": { + "type": "npm", + "name": "npm:micromark-util-html-tag-name", + "data": { + "version": "2.0.1", + "packageName": "micromark-util-html-tag-name", + "hash": "sha512-2cNEiYDhCWKI+Gs9T0Tiysk136SnR13hhO8yW6BGNyhOC4qYFnwF1nKfD3HFAIXA5c45RrIG1ub11GiXeYd1xA==" + } + }, + "npm:micromark-util-normalize-identifier": { + "type": "npm", + "name": "npm:micromark-util-normalize-identifier", + "data": { + "version": "2.0.1", + "packageName": "micromark-util-normalize-identifier", + "hash": "sha512-sxPqmo70LyARJs0w2UclACPUUEqltCkJ6PhKdMIDuJ3gSf/Q+/GIe3WKl0Ijb/GyH9lOpUkRAO2wp0GVkLvS9Q==" + } + }, + "npm:micromark-util-resolve-all": { + "type": "npm", + "name": "npm:micromark-util-resolve-all", + "data": { + "version": "2.0.1", + "packageName": "micromark-util-resolve-all", + "hash": "sha512-VdQyxFWFT2/FGJgwQnJYbe1jjQoNTS4RjglmSjTUlpUMa95Htx9NHeYW4rGDJzbjvCsl9eLjMQwGeElsqmzcHg==" + } + }, + "npm:micromark-util-sanitize-uri": { + "type": "npm", + "name": "npm:micromark-util-sanitize-uri", + "data": { + "version": "2.0.1", + "packageName": "micromark-util-sanitize-uri", + "hash": "sha512-9N9IomZ/YuGGZZmQec1MbgxtlgougxTodVwDzzEouPKo3qFWvymFHWcnDi2vzV1ff6kas9ucW+o3yzJK9YB1AQ==" + } + }, + "npm:micromark-util-subtokenize": { + "type": "npm", + "name": "npm:micromark-util-subtokenize", + "data": { + "version": "2.1.0", + "packageName": "micromark-util-subtokenize", + "hash": "sha512-XQLu552iSctvnEcgXw6+Sx75GflAPNED1qx7eBJ+wydBb2KCbRZe+NwvIEEMM83uml1+2WSXpBAcp9IUCgCYWA==" + } + }, + "npm:micromark-util-symbol": { + "type": "npm", + "name": "npm:micromark-util-symbol", + "data": { + "version": "2.0.1", + "packageName": "micromark-util-symbol", + "hash": "sha512-vs5t8Apaud9N28kgCrRUdEed4UJ+wWNvicHLPxCa9ENlYuAY31M0ETy5y1vA33YoNPDFTghEbnh6efaE8h4x0Q==" + } + }, + "npm:micromark-util-types": { + "type": "npm", + "name": "npm:micromark-util-types", + "data": { + "version": "2.0.2", + "packageName": "micromark-util-types", + "hash": "sha512-Yw0ECSpJoViF1qTU4DC6NwtC4aWGt1EkzaQB8KPPyCRR8z9TWeV0HbEFGTO+ZY1wB22zmxnJqhPyTpOVCpeHTA==" + } + }, + "npm:micromark": { + "type": "npm", + "name": "npm:micromark", + "data": { + "version": "4.0.2", + "packageName": "micromark", + "hash": "sha512-zpe98Q6kvavpCr1NPVSCMebCKfD7CA2NqZ+rykeNhONIJBpc1tFKt9hucLGwha3jNTNI8lHpctWJWoimVF4PfA==" + } + }, + "npm:micromatch": { + "type": "npm", + "name": "npm:micromatch", + "data": { + "version": "4.0.8", + "packageName": "micromatch", + "hash": "sha512-PXwfBhYu0hBCPw8Dn0E+WDYb7af3dSLVWKi3HGv84IdF4TyFoC0ysxFd0Goxw7nSv4T/PzEJQxsYsEiFCKo2BA==" + } + }, + "npm:mime-db@1.52.0": { + "type": "npm", + "name": "npm:mime-db@1.52.0", + "data": { + "version": "1.52.0", + "packageName": "mime-db", + "hash": "sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==" + } + }, + "npm:mime-db": { + "type": "npm", + "name": "npm:mime-db", + "data": { + "version": "1.54.0", + "packageName": "mime-db", + "hash": "sha512-aU5EJuIN2WDemCcAp2vFBfp/m4EAhWJnUNSSw0ixs7/kXbd6Pg64EmwJkNdFhB8aWt1sH2CTXrLxo/iAGV3oPQ==" + } + }, + "npm:mime-types@2.1.35": { + "type": "npm", + "name": "npm:mime-types@2.1.35", + "data": { + "version": "2.1.35", + "packageName": "mime-types", + "hash": "sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==" + } + }, + "npm:mime-types": { + "type": "npm", + "name": "npm:mime-types", + "data": { + "version": "3.0.2", + "packageName": "mime-types", + "hash": "sha512-Lbgzdk0h4juoQ9fCKXW4by0UJqj+nOOrI9MJ1sSj4nI8aI2eo1qmvQEie4VD1glsS250n15LsWsYtCugiStS5A==" + } + }, + "npm:mime": { + "type": "npm", + "name": "npm:mime", + "data": { + "version": "1.6.0", + "packageName": "mime", + "hash": "sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg==" + } + }, + "npm:mime@3.0.0": { + "type": "npm", + "name": "npm:mime@3.0.0", + "data": { + "version": "3.0.0", + "packageName": "mime", + "hash": "sha512-jSCU7/VB1loIWBZe14aEYHU/+1UMEHoaO7qxCOVJOw9GgH72VAWppxNcjU+x9a2k3GSIBXNKxXQFqRvvZ7vr3A==" + } + }, + "npm:mimic-fn": { + "type": "npm", + "name": "npm:mimic-fn", + "data": { + "version": "2.1.0", + "packageName": "mimic-fn", + "hash": "sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==" + } + }, + "npm:mimic-response@1.0.1": { + "type": "npm", + "name": "npm:mimic-response@1.0.1", + "data": { + "version": "1.0.1", + "packageName": "mimic-response", + "hash": "sha512-j5EctnkH7amfV/q5Hgmoal1g2QHFJRraOtmx0JpIqkxhBhI/lJSl1nMpQ45hVarwNETOoWEimndZ4QK0RHxuxQ==" + } + }, + "npm:mimic-response": { + "type": "npm", + "name": "npm:mimic-response", + "data": { + "version": "3.1.0", + "packageName": "mimic-response", + "hash": "sha512-z0yWI+4FDrrweS8Zmt4Ej5HdJmky15+L2e6Wgn3+iK5fWzb6T3fhNFq2+MeTRb064c6Wr4N/wv0DzQTjNzHNGQ==" + } + }, + "npm:miniflare@4.20251217.0": { + "type": "npm", + "name": "npm:miniflare@4.20251217.0", + "data": { + "version": "4.20251217.0", + "packageName": "miniflare", + "hash": "sha512-8xsTQbPS6YV+ABZl9qiJIbsum6hbpbhqiyKpOVdzZrhK+1N8EFpT8R6aBZff7kezGmxYZSntjgjqTwJmj3JLgA==" + } + }, + "npm:miniflare": { + "type": "npm", + "name": "npm:miniflare", + "data": { + "version": "4.20260317.1", + "packageName": "miniflare", + "hash": "sha512-A3csI1HXEIfqe3oscgpoRMHdYlkReQKPH/g5JE53vFSjoM6YIAOGAzyDNeYffwd9oQkPWDj9xER8+vpxei8klA==" + } + }, + "npm:minimatch@10.2.3": { + "type": "npm", + "name": "npm:minimatch@10.2.3", + "data": { + "version": "10.2.3", + "packageName": "minimatch", + "hash": "sha512-Rwi3pnapEqirPSbWbrZaa6N3nmqq4Xer/2XooiOKyV3q12ML06f7MOuc5DVH8ONZIFhwIYQ3yzPH4nt7iWHaTg==" + } + }, + "npm:minimatch@10.2.4": { + "type": "npm", + "name": "npm:minimatch@10.2.4", + "data": { + "version": "10.2.4", + "packageName": "minimatch", + "hash": "sha512-oRjTw/97aTBN0RHbYCdtF1MQfvusSIBQM0IZEgzl6426+8jSC0nF1a/GmnVLpfB9yyr6g6FTqWqiZVbxrtaCIg==" + } + }, + "npm:minimatch": { + "type": "npm", + "name": "npm:minimatch", + "data": { + "version": "3.1.5", + "packageName": "minimatch", + "hash": "sha512-VgjWUsnnT6n+NUk6eZq77zeFdpW2LWDzP6zFGrCbHXiYNul5Dzqk2HHQ5uFH2DNW5Xbp8+jVzaeNt94ssEEl4w==" + } + }, + "npm:minimatch@5.1.9": { + "type": "npm", + "name": "npm:minimatch@5.1.9", + "data": { + "version": "5.1.9", + "packageName": "minimatch", + "hash": "sha512-7o1wEA2RyMP7Iu7GNba9vc0RWWGACJOCZBJX2GJWip0ikV+wcOsgVuY9uE8CPiyQhkGFSlhuSkZPavN7u1c2Fw==" + } + }, + "npm:minimatch@8.0.4": { + "type": "npm", + "name": "npm:minimatch@8.0.4", + "data": { + "version": "8.0.4", + "packageName": "minimatch", + "hash": "sha512-W0Wvr9HyFXZRGIDgCicunpQ299OKXs9RgZfaukz4qAW/pJhcpUfupc9c+OObPOFueNy8VSrZgEmDtk6Kh4WzDA==" + } + }, + "npm:minimatch@9.0.5": { + "type": "npm", + "name": "npm:minimatch@9.0.5", + "data": { + "version": "9.0.5", + "packageName": "minimatch", + "hash": "sha512-G6T0ZX48xgozx7587koeX9Ys2NYy6Gmv//P89sEte9V9whIapMNF4idKxnW2QtCcLiTWlb/wfCabAtAFWhhBow==" + } + }, + "npm:minimist": { + "type": "npm", + "name": "npm:minimist", + "data": { + "version": "1.2.8", + "packageName": "minimist", + "hash": "sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==" + } + }, + "npm:minipass-collect": { + "type": "npm", + "name": "npm:minipass-collect", + "data": { + "version": "2.0.1", + "packageName": "minipass-collect", + "hash": "sha512-D7V8PO9oaz7PWGLbCACuI1qEOsq7UKfLotx/C0Aet43fCUB/wfQ7DYeq2oR/svFJGYDHPr38SHATeaj/ZoKHKw==" + } + }, + "npm:minipass-fetch": { + "type": "npm", + "name": "npm:minipass-fetch", + "data": { + "version": "4.0.1", + "packageName": "minipass-fetch", + "hash": "sha512-j7U11C5HXigVuutxebFadoYBbd7VSdZWggSe64NVdvWNBqGAiXPL2QVCehjmw7lY1oF9gOllYbORh+hiNgfPgQ==" + } + }, + "npm:minipass-flush": { + "type": "npm", + "name": "npm:minipass-flush", + "data": { + "version": "1.0.5", + "packageName": "minipass-flush", + "hash": "sha512-JmQSYYpPUqX5Jyn1mXaRwOda1uQ8HP5KAT/oDSLCzt1BYRhQU0/hDtsB1ufZfEEzMZ9aAVmsBw8+FWsIXlClWw==" + } + }, + "npm:minipass-pipeline": { + "type": "npm", + "name": "npm:minipass-pipeline", + "data": { + "version": "1.2.4", + "packageName": "minipass-pipeline", + "hash": "sha512-xuIq7cIOt09RPRJ19gdi4b+RiNvDFYe5JH+ggNvBqGqpQXcru3PcRmOZuHBKWK1Txf9+cQ+HMVN4d6z46LZP7A==" + } + }, + "npm:minipass-sized": { + "type": "npm", + "name": "npm:minipass-sized", + "data": { + "version": "1.0.3", + "packageName": "minipass-sized", + "hash": "sha512-MbkQQ2CTiBMlA2Dm/5cY+9SWFEN8pzzOXi6rlM5Xxq0Yqbda5ZQy9sU75a673FE9ZK0Zsbr6Y5iP6u9nktfg2g==" + } + }, + "npm:minipass@3.3.6": { + "type": "npm", + "name": "npm:minipass@3.3.6", + "data": { + "version": "3.3.6", + "packageName": "minipass", + "hash": "sha512-DxiNidxSEK+tHG6zOIklvNOwm3hvCrbUrdtzY74U6HKTJxvIDfOUL5W5P2Ghd3DTkhhKPYGqeNUIh5qcM4YBfw==" + } + }, + "npm:minipass@4.2.8": { + "type": "npm", + "name": "npm:minipass@4.2.8", + "data": { + "version": "4.2.8", + "packageName": "minipass", + "hash": "sha512-fNzuVyifolSLFL4NzpF+wEF4qrgqaaKX0haXPQEdQ7NKAN+WecoKMHV09YcuL/DHxrUsYQOK3MiuDf7Ip2OXfQ==" + } + }, + "npm:minipass": { + "type": "npm", + "name": "npm:minipass", + "data": { + "version": "7.1.3", + "packageName": "minipass", + "hash": "sha512-tEBHqDnIoM/1rXME1zgka9g6Q2lcoCkxHLuc7ODJ5BxbP5d4c2Z5cGgtXAku59200Cx7diuHTOYfSBD8n6mm8A==" + } + }, + "npm:minizlib": { + "type": "npm", + "name": "npm:minizlib", + "data": { + "version": "3.1.0", + "packageName": "minizlib", + "hash": "sha512-KZxYo1BUkWD2TVFLr0MQoM8vUUigWD3LlD83a/75BqC+4qE0Hb1Vo5v1FgcfaNXvfXzr+5EhQ6ing/CaBijTlw==" + } + }, + "npm:mitt": { + "type": "npm", + "name": "npm:mitt", + "data": { + "version": "3.0.1", + "packageName": "mitt", + "hash": "sha512-vKivATfr97l2/QBCYAkXYDbrIWPM2IIKEl7YPhjCvKlG3kE2gm+uBo6nEXK3M5/Ffh/FLpKExzOQ3JJoJGFKBw==" + } + }, + "npm:mkdirp-classic": { + "type": "npm", + "name": "npm:mkdirp-classic", + "data": { + "version": "0.5.3", + "packageName": "mkdirp-classic", + "hash": "sha512-gKLcREMhtuZRwRAfqP3RFW+TK4JqApVBtOIftVgjuABpAtpxhPGaDcfvbhNvD0B8iD1oUr/txX35NjcaY6Ns/A==" + } + }, + "npm:mlly": { + "type": "npm", + "name": "npm:mlly", + "data": { + "version": "1.8.0", + "packageName": "mlly", + "hash": "sha512-l8D9ODSRWLe2KHJSifWGwBqpTZXIXTeo8mlKjY+E2HAakaTeNpqAyBZ8GSqLzHgw4XmHmC8whvpjJNMbFZN7/g==" + } + }, + "npm:moo": { + "type": "npm", + "name": "npm:moo", + "data": { + "version": "0.5.2", + "packageName": "moo", + "hash": "sha512-iSAJLHYKnX41mKcJKjqvnAN9sf0LMDTXDEvFv+ffuRR9a1MIuXLjMNL6EsnDHSkKLTWNqQQ5uo61P4EbU4NU+Q==" + } + }, + "npm:mri": { + "type": "npm", + "name": "npm:mri", + "data": { + "version": "1.2.0", + "packageName": "mri", + "hash": "sha512-tzzskb3bG8LvYGFF/mDTpq3jpI6Q9wc3LEmBaghu+DdCssd1FakN7Bc0hVNmEyGq1bq3RgfkCb3cmQLpNPOroA==" + } + }, + "npm:mrmime": { + "type": "npm", + "name": "npm:mrmime", + "data": { + "version": "2.0.1", + "packageName": "mrmime", + "hash": "sha512-Y3wQdFg2Va6etvQ5I82yUhGdsKrcYox6p7FfL1LbK2J4V01F9TGlepTIhnK24t7koZibmg82KGglhA1XK5IsLQ==" + } + }, + "npm:ms": { + "type": "npm", + "name": "npm:ms", + "data": { + "version": "2.1.3", + "packageName": "ms", + "hash": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==" + } + }, + "npm:mute-stream": { + "type": "npm", + "name": "npm:mute-stream", + "data": { + "version": "3.0.0", + "packageName": "mute-stream", + "hash": "sha512-dkEJPVvun4FryqBmZ5KhDo0K9iDXAwn08tMLDinNdRBNPcYEDiWYysLcc6k3mjTMlbP9KyylvRpd4wFtwrT9rw==" + } + }, + "npm:mysql2": { + "type": "npm", + "name": "npm:mysql2", + "data": { + "version": "3.15.3", + "packageName": "mysql2", + "hash": "sha512-FBrGau0IXmuqg4haEZRBfHNWB5mUARw6hNwPDXXGg0XzVJ50mr/9hb267lvpVMnhZ1FON3qNd4Xfcez1rbFwSg==" + } + }, + "npm:named-placeholders": { + "type": "npm", + "name": "npm:named-placeholders", + "data": { + "version": "1.1.3", + "packageName": "named-placeholders", + "hash": "sha512-eLoBxg6wE/rZkJPhU/xRX1WTpkFEwDJEN96oxFrTsqBdbT5ec295Q+CoHrL9IT0DipqKhmGcaZmwOt8OON5x1w==" + } + }, + "npm:nan": { + "type": "npm", + "name": "npm:nan", + "data": { + "version": "2.23.0", + "packageName": "nan", + "hash": "sha512-1UxuyYGdoQHcGg87Lkqm3FzefucTa0NAiOcuRsDmysep3c1LVCRK2krrUDafMWtjSG04htvAmvg96+SDknOmgQ==" + } + }, + "npm:nanoid": { + "type": "npm", + "name": "npm:nanoid", + "data": { + "version": "3.3.11", + "packageName": "nanoid", + "hash": "sha512-N8SpfPUnUp1bK+PMYW8qSWdl9U+wwNWI4QKxOYDy9JAro3WMX7p2OeVRF9v+347pnakNevPmiHhNmZ2HbFA76w==" + } + }, + "npm:napi-build-utils": { + "type": "npm", + "name": "npm:napi-build-utils", + "data": { + "version": "2.0.0", + "packageName": "napi-build-utils", + "hash": "sha512-GEbrYkbfF7MoNaoh2iGG84Mnf/WZfB0GdGEsM8wz7Expx/LlWf5U8t9nvJKXSp3qr5IsEbK04cBGhol/KwOsWA==" + } + }, + "npm:natural-compare": { + "type": "npm", + "name": "npm:natural-compare", + "data": { + "version": "1.4.0", + "packageName": "natural-compare", + "hash": "sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==" + } + }, + "npm:negotiator": { + "type": "npm", + "name": "npm:negotiator", + "data": { + "version": "1.0.0", + "packageName": "negotiator", + "hash": "sha512-8Ofs/AUQh8MaEcrlq5xOX0CQ9ypTF5dl78mjlMNfOK08fzpgTHQRQPBxcPlEtIw0yRpws+Zo/3r+5WRby7u3Gg==" + } + }, + "npm:netmask": { + "type": "npm", + "name": "npm:netmask", + "data": { + "version": "2.0.2", + "packageName": "netmask", + "hash": "sha512-dBpDMdxv9Irdq66304OLfEmQ9tbNRFnFTuZiLo+bD+r332bBmMJ8GBLXklIXXgxd3+v9+KUnZaUR5PJMa75Gsg==" + } + }, + "npm:node-abi": { + "type": "npm", + "name": "npm:node-abi", + "data": { + "version": "3.78.0", + "packageName": "node-abi", + "hash": "sha512-E2wEyrgX/CqvicaQYU3Ze1PFGjc4QYPGsjUrlYkqAE0WjHEZwgOsGMPMzkMse4LjJbDmaEuDX3CM036j5K2DSQ==" + } + }, + "npm:node-domexception": { + "type": "npm", + "name": "npm:node-domexception", + "data": { + "version": "1.0.0", + "packageName": "node-domexception", + "hash": "sha512-/jKZoMpw0F8GRwl4/eLROPA3cfcXtLApP0QzLmUT/HuPCZWyB7IY9ZrMeKw2O/nFIqPQB3PVM9aYm0F312AXDQ==" + } + }, + "npm:node-fetch-native": { + "type": "npm", + "name": "npm:node-fetch-native", + "data": { + "version": "1.6.7", + "packageName": "node-fetch-native", + "hash": "sha512-g9yhqoedzIUm0nTnTqAQvueMPVOuIY16bqgAJJC8XOOubYFNwz6IER9qs0Gq2Xd0+CecCKFjtdDTMA4u4xG06Q==" + } + }, + "npm:node-fetch@2.7.0": { + "type": "npm", + "name": "npm:node-fetch@2.7.0", + "data": { + "version": "2.7.0", + "packageName": "node-fetch", + "hash": "sha512-c4FRfUm/dbcWZ7U+1Wq0AwCyFL+3nt2bEw05wfxSz+DWpWsitgmSgYmy2dQdWyKC1694ELPqMs/YzUSNozLt8A==" + } + }, + "npm:node-fetch": { + "type": "npm", + "name": "npm:node-fetch", + "data": { + "version": "3.3.2", + "packageName": "node-fetch", + "hash": "sha512-dRB78srN/l6gqWulah9SrxeYnxeddIG30+GOqK/9OlLVyLg3HPnr6SqOWTWOXKRwC2eGYCkZ59NNuSgvSrpgOA==" + } + }, + "npm:node-gyp-build": { + "type": "npm", + "name": "npm:node-gyp-build", + "data": { + "version": "4.8.4", + "packageName": "node-gyp-build", + "hash": "sha512-LA4ZjwlnUblHVgq0oBF3Jl/6h/Nvs5fzBLwdEF4nuxnFdsfajde4WfxtJr3CaiH+F6ewcIB/q4jQ4UzPyid+CQ==" + } + }, + "npm:node-gyp": { + "type": "npm", + "name": "npm:node-gyp", + "data": { + "version": "11.5.0", + "packageName": "node-gyp", + "hash": "sha512-ra7Kvlhxn5V9Slyus0ygMa2h+UqExPqUIkfk7Pc8QTLT956JLSy51uWFwHtIYy0vI8cB4BDhc/S03+880My/LQ==" + } + }, + "npm:node-mock-http": { + "type": "npm", + "name": "npm:node-mock-http", + "data": { + "version": "1.0.4", + "packageName": "node-mock-http", + "hash": "sha512-8DY+kFsDkNXy1sJglUfuODx1/opAGJGyrTuFqEoN90oRc2Vk0ZbD4K2qmKXBBEhZQzdKHIVfEJpDU8Ak2NJEvQ==" + } + }, + "npm:node-releases": { + "type": "npm", + "name": "npm:node-releases", + "data": { + "version": "2.0.27", + "packageName": "node-releases", + "hash": "sha512-nmh3lCkYZ3grZvqcCH+fjmQ7X+H0OeZgP40OierEaAptX4XofMh5kwNbWh7lBduUzCcV/8kZ+NDLCwm2iorIlA==" + } + }, + "npm:nopt": { + "type": "npm", + "name": "npm:nopt", + "data": { + "version": "8.1.0", + "packageName": "nopt", + "hash": "sha512-ieGu42u/Qsa4TFktmaKEwM6MQH0pOWnaB3htzh0JRtx84+Mebc0cbZYN5bC+6WTZ4+77xrL9Pn5m7CV6VIkV7A==" + } + }, + "npm:normalize-url": { + "type": "npm", + "name": "npm:normalize-url", + "data": { + "version": "6.1.0", + "packageName": "normalize-url", + "hash": "sha512-DlL+XwOy3NxAQ8xuC0okPgK46iuVNAK01YN7RueYBqqFeGsBjV9XmCAzAdgt+667bCl5kPh9EqKKDwnaPG1I7A==" + } + }, + "npm:npm-normalize-package-bin": { + "type": "npm", + "name": "npm:npm-normalize-package-bin", + "data": { + "version": "4.0.0", + "packageName": "npm-normalize-package-bin", + "hash": "sha512-TZKxPvItzai9kN9H/TkmCtx/ZN/hvr3vUycjlfmH0ootY9yFBzNOpiXAdIn1Iteqsvk4lQn6B5PTrt+n6h8k/w==" + } + }, + "npm:npm-run-all2": { + "type": "npm", + "name": "npm:npm-run-all2", + "data": { + "version": "8.0.4", + "packageName": "npm-run-all2", + "hash": "sha512-wdbB5My48XKp2ZfJUlhnLVihzeuA1hgBnqB2J9ahV77wLS+/YAJAlN8I+X3DIFIPZ3m5L7nplmlbhNiFDmXRDA==" + } + }, + "npm:npm-run-path@4.0.1": { + "type": "npm", + "name": "npm:npm-run-path@4.0.1", + "data": { + "version": "4.0.1", + "packageName": "npm-run-path", + "hash": "sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw==" + } + }, + "npm:npm-run-path": { + "type": "npm", + "name": "npm:npm-run-path", + "data": { + "version": "6.0.0", + "packageName": "npm-run-path", + "hash": "sha512-9qny7Z9DsQU8Ou39ERsPU4OZQlSTP47ShQzuKZ6PRXpYLtIFgl/DEBYEXKlvcEa+9tHVcK8CF81Y2V72qaZhWA==" + } + }, + "npm:nth-check": { + "type": "npm", + "name": "npm:nth-check", + "data": { + "version": "2.1.1", + "packageName": "nth-check", + "hash": "sha512-lqjrjmaOoAnWfMmBPL+XNnynZh2+swxiX3WUE0s4yEHI6m+AwrK2UZOimIRl3X/4QctVqS8AiZjFqyOGrMXb/w==" + } + }, + "npm:null-prototype-object": { + "type": "npm", + "name": "npm:null-prototype-object", + "data": { + "version": "1.2.5", + "packageName": "null-prototype-object", + "hash": "sha512-YAPMPwBVlXXmIx/eIHx/KwIL1Bsd8I+YHQdFpW0Ydvez6vu5Bx2CaP4GrEnH5c1huVWZD9MqEuFwAJoBMm5LJQ==" + } + }, + "npm:nx": { + "type": "npm", + "name": "npm:nx", + "data": { + "version": "22.6.1", + "packageName": "nx", + "hash": "sha512-b4eo52o5aCVt3oG6LPYvD2Cul3JFBMgr2p9OjMBIo6oU6QfSR693H2/UuUMepLtO6jcIniPKOcIrf6Ue8aXAww==" + } + }, + "npm:nypm": { + "type": "npm", + "name": "npm:nypm", + "data": { + "version": "0.6.2", + "packageName": "nypm", + "hash": "sha512-7eM+hpOtrKrBDCh7Ypu2lJ9Z7PNZBdi/8AT3AX8xoCj43BBVHD0hPSTEvMtkMpfs8FCqBGhxB+uToIQimA111g==" + } + }, + "npm:oauth4webapi": { + "type": "npm", + "name": "npm:oauth4webapi", + "data": { + "version": "3.8.2", + "packageName": "oauth4webapi", + "hash": "sha512-FzZZ+bht5X0FKe7Mwz3DAVAmlH1BV5blSak/lHMBKz0/EBMhX6B10GlQYI51+oRp8ObJaX0g6pXrAxZh5s8rjw==" + } + }, + "npm:object-assign": { + "type": "npm", + "name": "npm:object-assign", + "data": { + "version": "4.1.1", + "packageName": "object-assign", + "hash": "sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==" + } + }, + "npm:object-inspect": { + "type": "npm", + "name": "npm:object-inspect", + "data": { + "version": "1.13.4", + "packageName": "object-inspect", + "hash": "sha512-W67iLl4J2EXEGTbfeHCffrjDfitvLANg0UlX3wFUUSTx92KXRFegMHUVgSqE+wvhAbi4WqjGg9czysTV2Epbew==" + } + }, + "npm:object-keys": { + "type": "npm", + "name": "npm:object-keys", + "data": { + "version": "1.1.1", + "packageName": "object-keys", + "hash": "sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==" + } + }, + "npm:object.assign": { + "type": "npm", + "name": "npm:object.assign", + "data": { + "version": "4.1.7", + "packageName": "object.assign", + "hash": "sha512-nK28WOo+QIjBkDduTINE4JkF/UJJKyf2EJxvJKfblDpyg0Q+pkOHNTL0Qwy6NP6FhE/EnzV73BxxqcJaXY9anw==" + } + }, + "npm:object.entries": { + "type": "npm", + "name": "npm:object.entries", + "data": { + "version": "1.1.9", + "packageName": "object.entries", + "hash": "sha512-8u/hfXFRBD1O0hPUjioLhoWFHRmt6tKA4/vZPyckBr18l1KE9uHrFaFaUi8MDRTpi4uak2goyPTSNJLXX2k2Hw==" + } + }, + "npm:object.fromentries": { + "type": "npm", + "name": "npm:object.fromentries", + "data": { + "version": "2.0.8", + "packageName": "object.fromentries", + "hash": "sha512-k6E21FzySsSK5a21KRADBd/NGneRegFO5pLHfdQLpRDETUNJueLXs3WCzyQ3tFRDYgbq3KHGXfTbi2bs8WQ6rQ==" + } + }, + "npm:object.values": { + "type": "npm", + "name": "npm:object.values", + "data": { + "version": "1.2.1", + "packageName": "object.values", + "hash": "sha512-gXah6aZrcUxjWg2zR2MwouP2eHlCBzdV4pygudehaKXSGW4v2AsRQUK+lwwXhii6KFZcunEnmSUoYp5CXibxtA==" + } + }, + "npm:obug": { + "type": "npm", + "name": "npm:obug", + "data": { + "version": "2.1.1", + "packageName": "obug", + "hash": "sha512-uTqF9MuPraAQ+IsnPf366RG4cP9RtUi7MLO1N3KEc+wb0a6yKpeL0lmk2IB1jY5KHPAlTc6T/JRdC/YqxHNwkQ==" + } + }, + "npm:ohash": { + "type": "npm", + "name": "npm:ohash", + "data": { + "version": "2.0.11", + "packageName": "ohash", + "hash": "sha512-RdR9FQrFwNBNXAr4GixM8YaRZRJ5PUWbKYbE5eOsrwAjJW0q2REGcf79oYPsLyskQCZG1PLN+S/K1V00joZAoQ==" + } + }, + "npm:on-exit-leak-free": { + "type": "npm", + "name": "npm:on-exit-leak-free", + "data": { + "version": "2.1.2", + "packageName": "on-exit-leak-free", + "hash": "sha512-0eJJY6hXLGf1udHwfNftBqH+g73EU4B504nZeKpz1sYRKafAghwxEJunB2O7rDZkL4PGfsMVnTXZ2EjibbqcsA==" + } + }, + "npm:on-finished": { + "type": "npm", + "name": "npm:on-finished", + "data": { + "version": "2.4.1", + "packageName": "on-finished", + "hash": "sha512-oVlzkg3ENAhCk2zdv7IJwd/QUD4z2RxRwpkcGY8psCVcCYZNq4wYnVWALHM+brtuJjePWiYF/ClmuDr8Ch5+kg==" + } + }, + "npm:once": { + "type": "npm", + "name": "npm:once", + "data": { + "version": "1.4.0", + "packageName": "once", + "hash": "sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==" + } + }, + "npm:onetime": { + "type": "npm", + "name": "npm:onetime", + "data": { + "version": "5.1.2", + "packageName": "onetime", + "hash": "sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg==" + } + }, + "npm:open": { + "type": "npm", + "name": "npm:open", + "data": { + "version": "8.4.2", + "packageName": "open", + "hash": "sha512-7x81NCL719oNbsq/3mh+hVrAWmFuEYUqrq/Iw3kUzH8ReypT9QQ0BLoJS7/G9k6N81XjW4qHWtjWwe/9eLy1EQ==" + } + }, + "npm:opener": { + "type": "npm", + "name": "npm:opener", + "data": { + "version": "1.5.2", + "packageName": "opener", + "hash": "sha512-ur5UIdyw5Y7yEj9wLzhqXiy6GZ3Mwx0yGI+5sMn2r0N0v3cKJvUmFH5yPP+WXh9e0xfyzyJX95D8l088DNFj7A==" + } + }, + "npm:optionator": { + "type": "npm", + "name": "npm:optionator", + "data": { + "version": "0.9.4", + "packageName": "optionator", + "hash": "sha512-6IpQ7mKUxRcZNLIObR0hz7lxsapSSIYNZJwXPGeF0mTVqGKFIXj1DQcMoT22S3ROcLyY/rz0PWaWZ9ayWmad9g==" + } + }, + "npm:ora": { + "type": "npm", + "name": "npm:ora", + "data": { + "version": "5.3.0", + "packageName": "ora", + "hash": "sha512-zAKMgGXUim0Jyd6CXK9lraBnD3H5yPGBPPOkC23a2BG6hsm4Zu6OQSjQuEtV0BHDf4aKHcUFvJiGRrFuW3MG8g==" + } + }, + "npm:own-keys": { + "type": "npm", + "name": "npm:own-keys", + "data": { + "version": "1.0.1", + "packageName": "own-keys", + "hash": "sha512-qFOyK5PjiWZd+QQIh+1jhdb9LpxTF0qs7Pm8o5QHYZ0M3vKqSqzsZaEB6oWlxZ+q2sJBMI/Ktgd2N5ZwQoRHfg==" + } + }, + "npm:oxc-parser": { + "type": "npm", + "name": "npm:oxc-parser", + "data": { + "version": "0.104.0", + "packageName": "oxc-parser", + "hash": "sha512-sIEpobLwe7KhW1JdTvBJkNDgjJarHNsx+Q37iRNyASvmlDOD+f8Qirvwp6nFNz7Q5q3JcsJ1dpKM+oMPTDF/dw==" + } + }, + "npm:oxc-resolver": { + "type": "npm", + "name": "npm:oxc-resolver", + "data": { + "version": "11.19.1", + "packageName": "oxc-resolver", + "hash": "sha512-qE/CIg/spwrTBFt5aKmwe3ifeDdLfA2NESN30E42X/lII5ClF8V7Wt6WIJhcGZjp0/Q+nQ+9vgxGk//xZNX2hg==" + } + }, + "npm:oxc-walker": { + "type": "npm", + "name": "npm:oxc-walker", + "data": { + "version": "0.6.0", + "packageName": "oxc-walker", + "hash": "sha512-BA3hlxq5+Sgzp7TCQF52XDXCK5mwoIZuIuxv/+JuuTzOs2RXkLqWZgZ69d8pJDDjnL7wiREZTWHBzFp/UWH88Q==" + } + }, + "npm:oxlint-tsgolint": { + "type": "npm", + "name": "npm:oxlint-tsgolint", + "data": { + "version": "0.17.1", + "packageName": "oxlint-tsgolint", + "hash": "sha512-gJc7hb1ZQFbWjRDYpu1XG+5IRdr1S/Jz/W2ohcpaqIXuDmHU0ujGiM0x05J0nIfwMF3HOEcANi/+j6T0Uecdpg==" + } + }, + "npm:oxlint": { + "type": "npm", + "name": "npm:oxlint", + "data": { + "version": "1.56.0", + "packageName": "oxlint", + "hash": "sha512-Q+5Mj5PVaH/R6/fhMMFzw4dT+KPB+kQW4kaL8FOIq7tfhlnEVp6+3lcWqFruuTNlUo9srZUW3qH7Id4pskeR6g==" + } + }, + "npm:p-cancelable": { + "type": "npm", + "name": "npm:p-cancelable", + "data": { + "version": "2.1.1", + "packageName": "p-cancelable", + "hash": "sha512-BZOr3nRQHOntUjTrH8+Lh54smKHoHyur8We1V8DSMVrl5A2malOOwuJRnKRDjSnkoeBh4at6BwEnb5I7Jl31wg==" + } + }, + "npm:p-limit@2.3.0": { + "type": "npm", + "name": "npm:p-limit@2.3.0", + "data": { + "version": "2.3.0", + "packageName": "p-limit", + "hash": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==" + } + }, + "npm:p-limit@3.1.0": { + "type": "npm", + "name": "npm:p-limit@3.1.0", + "data": { + "version": "3.1.0", + "packageName": "p-limit", + "hash": "sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==" + } + }, + "npm:p-limit": { + "type": "npm", + "name": "npm:p-limit", + "data": { + "version": "7.3.0", + "packageName": "p-limit", + "hash": "sha512-7cIXg/Z0M5WZRblrsOla88S4wAK+zOQQWeBYfV3qJuJXMr+LnbYjaadrFaS0JILfEDPVqHyKnZ1Z/1d6J9VVUw==" + } + }, + "npm:p-locate@3.0.0": { + "type": "npm", + "name": "npm:p-locate@3.0.0", + "data": { + "version": "3.0.0", + "packageName": "p-locate", + "hash": "sha512-x+12w/To+4GFfgJhBEpiDcLozRJGegY+Ei7/z0tSLkMmxGZNybVMSfWj9aJn8Z5Fc7dBUNJOOVgPv2H7IwulSQ==" + } + }, + "npm:p-locate": { + "type": "npm", + "name": "npm:p-locate", + "data": { + "version": "5.0.0", + "packageName": "p-locate", + "hash": "sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==" + } + }, + "npm:p-map": { + "type": "npm", + "name": "npm:p-map", + "data": { + "version": "7.0.3", + "packageName": "p-map", + "hash": "sha512-VkndIv2fIB99swvQoA65bm+fsmt6UNdGeIB0oxBs+WhAhdh08QA04JXpI7rbB9r08/nkbysKoya9rtDERYOYMA==" + } + }, + "npm:p-reflect": { + "type": "npm", + "name": "npm:p-reflect", + "data": { + "version": "2.1.0", + "packageName": "p-reflect", + "hash": "sha512-paHV8NUz8zDHu5lhr/ngGWQiW067DK/+IbJ+RfZ4k+s8y4EKyYCz8pGYWjxCg35eHztpJAt+NUgvN4L+GCbPlg==" + } + }, + "npm:p-retry": { + "type": "npm", + "name": "npm:p-retry", + "data": { + "version": "4.6.2", + "packageName": "p-retry", + "hash": "sha512-312Id396EbJdvRONlngUx0NydfrIQ5lsYu0znKVUzVvArzEIt08V1qhtyESbGVd1FGX7UKtiFp5uwKZdM8wIuQ==" + } + }, + "npm:p-timeout": { + "type": "npm", + "name": "npm:p-timeout", + "data": { + "version": "4.1.0", + "packageName": "p-timeout", + "hash": "sha512-+/wmHtzJuWii1sXn3HCuH/FTwGhrp4tmJTxSKJbfS+vkipci6osxXM5mY0jUiRzWKMTgUT8l7HFbeSwZAynqHw==" + } + }, + "npm:p-try": { + "type": "npm", + "name": "npm:p-try", + "data": { + "version": "2.2.0", + "packageName": "p-try", + "hash": "sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==" + } + }, + "npm:pac-proxy-agent": { + "type": "npm", + "name": "npm:pac-proxy-agent", + "data": { + "version": "7.2.0", + "packageName": "pac-proxy-agent", + "hash": "sha512-TEB8ESquiLMc0lV8vcd5Ql/JAKAoyzHFXaStwjkzpOpC5Yv+pIzLfHvjTSdf3vpa2bMiUQrg9i6276yn8666aA==" + } + }, + "npm:pac-resolver": { + "type": "npm", + "name": "npm:pac-resolver", + "data": { + "version": "7.0.1", + "packageName": "pac-resolver", + "hash": "sha512-5NPgf87AT2STgwa2ntRMr45jTKrYBGkVU36yT0ig/n/GMAa3oPqhZfIQ2kMEimReg0+t9kZViDVZ83qfVUlckg==" + } + }, + "npm:package-json-from-dist": { + "type": "npm", + "name": "npm:package-json-from-dist", + "data": { + "version": "1.0.1", + "packageName": "package-json-from-dist", + "hash": "sha512-UEZIS3/by4OC8vL3P2dTXRETpebLI2NiI5vIrjaD/5UtrkFX/tNbwjTSRAGC/+7CAo2pIcBaRgWmcBBHcsaCIw==" + } + }, + "npm:package-manager-detector": { + "type": "npm", + "name": "npm:package-manager-detector", + "data": { + "version": "1.6.0", + "packageName": "package-manager-detector", + "hash": "sha512-61A5ThoTiDG/C8s8UMZwSorAGwMJ0ERVGj2OjoW5pAalsNOg15+iQiPzrLJ4jhZ1HJzmC2PIHT2oEiH3R5fzNA==" + } + }, + "npm:parent-module": { + "type": "npm", + "name": "npm:parent-module", + "data": { + "version": "1.0.1", + "packageName": "parent-module", + "hash": "sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==" + } + }, + "npm:parse-json": { + "type": "npm", + "name": "npm:parse-json", + "data": { + "version": "5.2.0", + "packageName": "parse-json", + "hash": "sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg==" + } + }, + "npm:parse-ms@2.1.0": { + "type": "npm", + "name": "npm:parse-ms@2.1.0", + "data": { + "version": "2.1.0", + "packageName": "parse-ms", + "hash": "sha512-kHt7kzLoS9VBZfUsiKjv43mr91ea+U05EyKkEtqp7vNbHxmaVuEqN7XxeEVnGrMtYOAxGrDElSi96K7EgO1zCA==" + } + }, + "npm:parse-ms": { + "type": "npm", + "name": "npm:parse-ms", + "data": { + "version": "4.0.0", + "packageName": "parse-ms", + "hash": "sha512-TXfryirbmq34y8QBwgqCVLi+8oA3oWx2eAnSn62ITyEhEYaWRlVZ2DvMM9eZbMs/RfxPu/PK/aBLyGj4IrqMHw==" + } + }, + "npm:parse5": { + "type": "npm", + "name": "npm:parse5", + "data": { + "version": "7.3.0", + "packageName": "parse5", + "hash": "sha512-IInvU7fabl34qmi9gY8XOVxhYyMyuH2xUNpb2q8/Y+7552KlejkRvqvD19nMoUW/uQGGbqNpA6Tufu5FL5BZgw==" + } + }, + "npm:parseurl": { + "type": "npm", + "name": "npm:parseurl", + "data": { + "version": "1.3.3", + "packageName": "parseurl", + "hash": "sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ==" + } + }, + "npm:path-browserify": { + "type": "npm", + "name": "npm:path-browserify", + "data": { + "version": "1.0.1", + "packageName": "path-browserify", + "hash": "sha512-b7uo2UCUOYZcnF/3ID0lulOJi/bafxa1xPe7ZPsammBSpjSWQkjNxlt635YGS2MiR9GjvuXCtz2emr3jbsz98g==" + } + }, + "npm:path-exists@3.0.0": { + "type": "npm", + "name": "npm:path-exists@3.0.0", + "data": { + "version": "3.0.0", + "packageName": "path-exists", + "hash": "sha512-bpC7GYwiDYQ4wYLe+FA8lhRjhQCMcQGuSgGGqDkg/QerRWw9CmGRT0iSOVRSZJ29NMLZgIzqaljJ63oaL4NIJQ==" + } + }, + "npm:path-exists": { + "type": "npm", + "name": "npm:path-exists", + "data": { + "version": "4.0.0", + "packageName": "path-exists", + "hash": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==" + } + }, + "npm:path-key": { + "type": "npm", + "name": "npm:path-key", + "data": { + "version": "3.1.1", + "packageName": "path-key", + "hash": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==" + } + }, + "npm:path-key@4.0.0": { + "type": "npm", + "name": "npm:path-key@4.0.0", + "data": { + "version": "4.0.0", + "packageName": "path-key", + "hash": "sha512-haREypq7xkM7ErfgIyA0z+Bj4AGKlMSdlQE2jvJo6huWD1EdkKYV+G/T4nq0YEF2vgTT8kqMFKo1uHn950r4SQ==" + } + }, + "npm:path-parse": { + "type": "npm", + "name": "npm:path-parse", + "data": { + "version": "1.0.7", + "packageName": "path-parse", + "hash": "sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==" + } + }, + "npm:path-scurry@1.11.1": { + "type": "npm", + "name": "npm:path-scurry@1.11.1", + "data": { + "version": "1.11.1", + "packageName": "path-scurry", + "hash": "sha512-Xa4Nw17FS9ApQFJ9umLiJS4orGjm7ZzwUrwamcGQuHSzDyth9boKDaycYdDcZDuqYATXw4HFXgaqWTctW/v1HA==" + } + }, + "npm:path-scurry": { + "type": "npm", + "name": "npm:path-scurry", + "data": { + "version": "2.0.2", + "packageName": "path-scurry", + "hash": "sha512-3O/iVVsJAPsOnpwWIeD+d6z/7PmqApyQePUtCndjatj/9I5LylHvt5qluFaBT3I5h3r1ejfR056c+FCv+NnNXg==" + } + }, + "npm:path-to-regexp@6.1.0": { + "type": "npm", + "name": "npm:path-to-regexp@6.1.0", + "data": { + "version": "6.1.0", + "packageName": "path-to-regexp", + "hash": "sha512-h9DqehX3zZZDCEm+xbfU0ZmwCGFCAAraPJWMXJ4+v32NjZJilVg3k1TcKsRgIb8IQ/izZSaydDc1OhJCZvs2Dw==" + } + }, + "npm:path-to-regexp@6.3.0": { + "type": "npm", + "name": "npm:path-to-regexp@6.3.0", + "data": { + "version": "6.3.0", + "packageName": "path-to-regexp", + "hash": "sha512-Yhpw4T9C6hPpgPeA28us07OJeqZ5EzQTkbfwuhsUg0c237RomFoETJgmp2sa3F/41gfLE6G5cqcYwznmeEeOlQ==" + } + }, + "npm:path-to-regexp": { + "type": "npm", + "name": "npm:path-to-regexp", + "data": { + "version": "8.3.0", + "packageName": "path-to-regexp", + "hash": "sha512-7jdwVIRtsP8MYpdXSwOS0YdD0Du+qOoF/AEPIt88PcCFrZCzx41oxku1jD88hZBwbNUIEfpqvuhjFaMAqMTWnA==" + } + }, + "npm:path-to-regexp-updated": { + "type": "npm", + "name": "npm:path-to-regexp-updated", + "data": { + "version": "npm:path-to-regexp@6.3.0", + "packageName": "path-to-regexp-updated", + "hash": "sha512-Yhpw4T9C6hPpgPeA28us07OJeqZ5EzQTkbfwuhsUg0c237RomFoETJgmp2sa3F/41gfLE6G5cqcYwznmeEeOlQ==" + } + }, + "npm:pathe": { + "type": "npm", + "name": "npm:pathe", + "data": { + "version": "2.0.3", + "packageName": "pathe", + "hash": "sha512-WUjGcAqP1gQacoQe+OBJsFA7Ld4DyXuUIjZ5cc75cLHvJ7dtNsTugphxIADwspS+AraAUePCKrSVtPLFj/F88w==" + } + }, + "npm:pend": { + "type": "npm", + "name": "npm:pend", + "data": { + "version": "1.2.0", + "packageName": "pend", + "hash": "sha512-F3asv42UuXchdzt+xXqfW1OGlVBe+mxa2mqI0pg5yAHZPvFmY3Y6drSf/GQ1A86WgWEN9Kzh/WrgKa6iGcHXLg==" + } + }, + "npm:perfect-debounce": { + "type": "npm", + "name": "npm:perfect-debounce", + "data": { + "version": "1.0.0", + "packageName": "perfect-debounce", + "hash": "sha512-xCy9V055GLEqoFaHoC1SoLIaLmWctgCUaBaWxDZ7/Zx4CTyX7cJQLJOok/orfjZAh9kEYpjJa4d0KcJmCbctZA==" + } + }, + "npm:picocolors": { + "type": "npm", + "name": "npm:picocolors", + "data": { + "version": "1.1.1", + "packageName": "picocolors", + "hash": "sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==" + } + }, + "npm:picomatch@2.3.1": { + "type": "npm", + "name": "npm:picomatch@2.3.1", + "data": { + "version": "2.3.1", + "packageName": "picomatch", + "hash": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==" + } + }, + "npm:picomatch": { + "type": "npm", + "name": "npm:picomatch", + "data": { + "version": "4.0.3", + "packageName": "picomatch", + "hash": "sha512-5gTmgEY/sqK6gFXLIsQNH19lWb4ebPDLA4SdLP7dsWkIXHWlG66oPuVvXSGFPppYZz8ZDZq0dYYrbHfBCVUb1Q==" + } + }, + "npm:pidtree": { + "type": "npm", + "name": "npm:pidtree", + "data": { + "version": "0.6.0", + "packageName": "pidtree", + "hash": "sha512-eG2dWTVw5bzqGRztnHExczNxt5VGsE6OwTeCG3fdUf9KBsZzO3R5OIIIzWR+iZA0NtZ+RDVdaoE2dK1cn6jH4g==" + } + }, + "npm:pino-abstract-transport": { + "type": "npm", + "name": "npm:pino-abstract-transport", + "data": { + "version": "3.0.0", + "packageName": "pino-abstract-transport", + "hash": "sha512-wlfUczU+n7Hy/Ha5j9a/gZNy7We5+cXp8YL+X+PG8S0KXxw7n/JXA3c46Y0zQznIJ83URJiwy7Lh56WLokNuxg==" + } + }, + "npm:pino-std-serializers": { + "type": "npm", + "name": "npm:pino-std-serializers", + "data": { + "version": "7.1.0", + "packageName": "pino-std-serializers", + "hash": "sha512-BndPH67/JxGExRgiX1dX0w1FvZck5Wa4aal9198SrRhZjH3GxKQUKIBnYJTdj2HDN3UQAS06HlfcSbQj2OHmaw==" + } + }, + "npm:pino": { + "type": "npm", + "name": "npm:pino", + "data": { + "version": "10.3.1", + "packageName": "pino", + "hash": "sha512-r34yH/GlQpKZbU1BvFFqOjhISRo1MNx1tWYsYvmj6KIRHSPMT2+yHOEb1SG6NMvRoHRF0a07kCOox/9yakl1vg==" + } + }, + "npm:pkg-types@1.3.1": { + "type": "npm", + "name": "npm:pkg-types@1.3.1", + "data": { + "version": "1.3.1", + "packageName": "pkg-types", + "hash": "sha512-/Jm5M4RvtBFVkKWRu2BLUTNP8/M2a+UwuAX+ae4770q1qVGtfjG+WTCupoZixokjmHiry8uI+dlY8KXYV5HVVQ==" + } + }, + "npm:pkg-types": { + "type": "npm", + "name": "npm:pkg-types", + "data": { + "version": "2.3.0", + "packageName": "pkg-types", + "hash": "sha512-SIqCzDRg0s9npO5XQ3tNZioRY1uK06lA41ynBC1YmFTmnY6FjUjVt6s4LoADmwoig1qqD0oK8h1p/8mlMx8Oig==" + } + }, + "npm:pkg-up": { + "type": "npm", + "name": "npm:pkg-up", + "data": { + "version": "3.1.0", + "packageName": "pkg-up", + "hash": "sha512-nDywThFk1i4BQK4twPQ6TA4RT8bDY96yeuCVBWL3ePARCiEKDRSrNGbFIgUJpLp+XeIR65v8ra7WuJOFUBtkMA==" + } + }, + "npm:portfinder": { + "type": "npm", + "name": "npm:portfinder", + "data": { + "version": "1.0.38", + "packageName": "portfinder", + "hash": "sha512-rEwq/ZHlJIKw++XtLAO8PPuOQA/zaPJOZJ37BVuN97nLpMJeuDVLVGRwbFoBgLudgdTMP2hdRJP++H+8QOA3vg==" + } + }, + "npm:possible-typed-array-names": { + "type": "npm", + "name": "npm:possible-typed-array-names", + "data": { + "version": "1.1.0", + "packageName": "possible-typed-array-names", + "hash": "sha512-/+5VFTchJDoVj3bhoqi6UeymcD00DAwb1nJwamzPvHEszJ4FpF6SNNbUbOS8yI56qHzdV8eK0qEfOSiodkTdxg==" + } + }, + "npm:postcss-calc": { + "type": "npm", + "name": "npm:postcss-calc", + "data": { + "version": "8.2.4", + "packageName": "postcss-calc", + "hash": "sha512-SmWMSJmB8MRnnULldx0lQIyhSNvuDl9HfrZkaqqE/WHAhToYsAvDq+yAsA/kIyINDszOp3Rh0GFoNuH5Ypsm3Q==" + } + }, + "npm:postcss-colormin": { + "type": "npm", + "name": "npm:postcss-colormin", + "data": { + "version": "5.3.1", + "packageName": "postcss-colormin", + "hash": "sha512-UsWQG0AqTFQmpBegeLLc1+c3jIqBNB0zlDGRWR+dQ3pRKJL1oeMzyqmH3o2PIfn9MBdNrVPWhDbT769LxCTLJQ==" + } + }, + "npm:postcss-convert-values": { + "type": "npm", + "name": "npm:postcss-convert-values", + "data": { + "version": "5.1.3", + "packageName": "postcss-convert-values", + "hash": "sha512-82pC1xkJZtcJEfiLw6UXnXVXScgtBrjlO5CBmuDQc+dlb88ZYheFsjTn40+zBVi3DkfF7iezO0nJUPLcJK3pvA==" + } + }, + "npm:postcss-discard-comments": { + "type": "npm", + "name": "npm:postcss-discard-comments", + "data": { + "version": "5.1.2", + "packageName": "postcss-discard-comments", + "hash": "sha512-+L8208OVbHVF2UQf1iDmRcbdjJkuBF6IS29yBDSiWUIzpYaAhtNl6JYnYm12FnkeCwQqF5LeklOu6rAqgfBZqQ==" + } + }, + "npm:postcss-discard-duplicates@5.1.0": { + "type": "npm", + "name": "npm:postcss-discard-duplicates@5.1.0", + "data": { + "version": "5.1.0", + "packageName": "postcss-discard-duplicates", + "hash": "sha512-zmX3IoSI2aoenxHV6C7plngHWWhUOV3sP1T8y2ifzxzbtnuhk1EdPwm0S1bIUNaJ2eNbWeGLEwzw8huPD67aQw==" + } + }, + "npm:postcss-discard-duplicates": { + "type": "npm", + "name": "npm:postcss-discard-duplicates", + "data": { + "version": "6.0.3", + "packageName": "postcss-discard-duplicates", + "hash": "sha512-+JA0DCvc5XvFAxwx6f/e68gQu/7Z9ud584VLmcgto28eB8FqSFZwtrLwB5Kcp70eIoWP/HXqz4wpo8rD8gpsTw==" + } + }, + "npm:postcss-discard-empty": { + "type": "npm", + "name": "npm:postcss-discard-empty", + "data": { + "version": "5.1.1", + "packageName": "postcss-discard-empty", + "hash": "sha512-zPz4WljiSuLWsI0ir4Mcnr4qQQ5e1Ukc3i7UfE2XcrwKK2LIPIqE5jxMRxO6GbI3cv//ztXDsXwEWT3BHOGh3A==" + } + }, + "npm:postcss-discard-overridden": { + "type": "npm", + "name": "npm:postcss-discard-overridden", + "data": { + "version": "5.1.0", + "packageName": "postcss-discard-overridden", + "hash": "sha512-21nOL7RqWR1kasIVdKs8HNqQJhFxLsyRfAnUDm4Fe4t4mCWL9OJiHvlHPjcd8zc5Myu89b/7wZDnOSjFgeWRtw==" + } + }, + "npm:postcss-js": { + "type": "npm", + "name": "npm:postcss-js", + "data": { + "version": "4.1.0", + "packageName": "postcss-js", + "hash": "sha512-oIAOTqgIo7q2EOwbhb8UalYePMvYoIeRY2YKntdpFQXNosSu3vLrniGgmH9OKs/qAkfoj5oB3le/7mINW1LCfw==" + } + }, + "npm:postcss-merge-longhand": { + "type": "npm", + "name": "npm:postcss-merge-longhand", + "data": { + "version": "5.1.7", + "packageName": "postcss-merge-longhand", + "hash": "sha512-YCI9gZB+PLNskrK0BB3/2OzPnGhPkBEwmwhfYk1ilBHYVAZB7/tkTHFBAnCrvBBOmeYyMYw3DMjT55SyxMBzjQ==" + } + }, + "npm:postcss-merge-rules": { + "type": "npm", + "name": "npm:postcss-merge-rules", + "data": { + "version": "5.1.4", + "packageName": "postcss-merge-rules", + "hash": "sha512-0R2IuYpgU93y9lhVbO/OylTtKMVcHb67zjWIfCiKR9rWL3GUk1677LAqD/BcHizukdZEjT8Ru3oHRoAYoJy44g==" + } + }, + "npm:postcss-minify-font-values": { + "type": "npm", + "name": "npm:postcss-minify-font-values", + "data": { + "version": "5.1.0", + "packageName": "postcss-minify-font-values", + "hash": "sha512-el3mYTgx13ZAPPirSVsHqFzl+BBBDrXvbySvPGFnQcTI4iNslrPaFq4muTkLZmKlGk4gyFAYUBMH30+HurREyA==" + } + }, + "npm:postcss-minify-gradients": { + "type": "npm", + "name": "npm:postcss-minify-gradients", + "data": { + "version": "5.1.1", + "packageName": "postcss-minify-gradients", + "hash": "sha512-VGvXMTpCEo4qHTNSa9A0a3D+dxGFZCYwR6Jokk+/3oB6flu2/PnPXAh2x7x52EkY5xlIHLm+Le8tJxe/7TNhzw==" + } + }, + "npm:postcss-minify-params": { + "type": "npm", + "name": "npm:postcss-minify-params", + "data": { + "version": "5.1.4", + "packageName": "postcss-minify-params", + "hash": "sha512-+mePA3MgdmVmv6g+30rn57USjOGSAyuxUmkfiWpzalZ8aiBkdPYjXWtHuwJGm1v5Ojy0Z0LaSYhHaLJQB0P8Jw==" + } + }, + "npm:postcss-minify-selectors": { + "type": "npm", + "name": "npm:postcss-minify-selectors", + "data": { + "version": "5.2.1", + "packageName": "postcss-minify-selectors", + "hash": "sha512-nPJu7OjZJTsVUmPdm2TcaiohIwxP+v8ha9NehQ2ye9szv4orirRU3SDdtUmKH+10nzn0bAyOXZ0UEr7OpvLehg==" + } + }, + "npm:postcss-mixins": { + "type": "npm", + "name": "npm:postcss-mixins", + "data": { + "version": "12.1.2", + "packageName": "postcss-mixins", + "hash": "sha512-90pSxmZVfbX9e5xCv7tI5RV1mnjdf16y89CJKbf/hD7GyOz1FCxcYMl8ZYA8Hc56dbApTKKmU9HfvgfWdCxlwg==" + } + }, + "npm:postcss-nested@5.0.6": { + "type": "npm", + "name": "npm:postcss-nested@5.0.6", + "data": { + "version": "5.0.6", + "packageName": "postcss-nested", + "hash": "sha512-rKqm2Fk0KbA8Vt3AdGN0FB9OBOMDVajMG6ZCf/GoHgdxUJ4sBFp0A/uMIRm+MJUdo33YXEtjqIz8u7DAp8B7DA==" + } + }, + "npm:postcss-nested": { + "type": "npm", + "name": "npm:postcss-nested", + "data": { + "version": "7.0.2", + "packageName": "postcss-nested", + "hash": "sha512-5osppouFc0VR9/VYzYxO03VaDa3e8F23Kfd6/9qcZTUI8P58GIYlArOET2Wq0ywSl2o2PjELhYOFI4W7l5QHKw==" + } + }, + "npm:postcss-normalize-charset": { + "type": "npm", + "name": "npm:postcss-normalize-charset", + "data": { + "version": "5.1.0", + "packageName": "postcss-normalize-charset", + "hash": "sha512-mSgUJ+pd/ldRGVx26p2wz9dNZ7ji6Pn8VWBajMXFf8jk7vUoSrZ2lt/wZR7DtlZYKesmZI680qjr2CeFF2fbUg==" + } + }, + "npm:postcss-normalize-display-values": { + "type": "npm", + "name": "npm:postcss-normalize-display-values", + "data": { + "version": "5.1.0", + "packageName": "postcss-normalize-display-values", + "hash": "sha512-WP4KIM4o2dazQXWmFaqMmcvsKmhdINFblgSeRgn8BJ6vxaMyaJkwAzpPpuvSIoG/rmX3M+IrRZEz2H0glrQNEA==" + } + }, + "npm:postcss-normalize-positions": { + "type": "npm", + "name": "npm:postcss-normalize-positions", + "data": { + "version": "5.1.1", + "packageName": "postcss-normalize-positions", + "hash": "sha512-6UpCb0G4eofTCQLFVuI3EVNZzBNPiIKcA1AKVka+31fTVySphr3VUgAIULBhxZkKgwLImhzMR2Bw1ORK+37INg==" + } + }, + "npm:postcss-normalize-repeat-style": { + "type": "npm", + "name": "npm:postcss-normalize-repeat-style", + "data": { + "version": "5.1.1", + "packageName": "postcss-normalize-repeat-style", + "hash": "sha512-mFpLspGWkQtBcWIRFLmewo8aC3ImN2i/J3v8YCFUwDnPu3Xz4rLohDO26lGjwNsQxB3YF0KKRwspGzE2JEuS0g==" + } + }, + "npm:postcss-normalize-string": { + "type": "npm", + "name": "npm:postcss-normalize-string", + "data": { + "version": "5.1.0", + "packageName": "postcss-normalize-string", + "hash": "sha512-oYiIJOf4T9T1N4i+abeIc7Vgm/xPCGih4bZz5Nm0/ARVJ7K6xrDlLwvwqOydvyL3RHNf8qZk6vo3aatiw/go3w==" + } + }, + "npm:postcss-normalize-timing-functions": { + "type": "npm", + "name": "npm:postcss-normalize-timing-functions", + "data": { + "version": "5.1.0", + "packageName": "postcss-normalize-timing-functions", + "hash": "sha512-DOEkzJ4SAXv5xkHl0Wa9cZLF3WCBhF3o1SKVxKQAa+0pYKlueTpCgvkFAHfk+Y64ezX9+nITGrDZeVGgITJXjg==" + } + }, + "npm:postcss-normalize-unicode": { + "type": "npm", + "name": "npm:postcss-normalize-unicode", + "data": { + "version": "5.1.1", + "packageName": "postcss-normalize-unicode", + "hash": "sha512-qnCL5jzkNUmKVhZoENp1mJiGNPcsJCs1aaRmURmeJGES23Z/ajaln+EPTD+rBeNkSryI+2WTdW+lwcVdOikrpA==" + } + }, + "npm:postcss-normalize-url": { + "type": "npm", + "name": "npm:postcss-normalize-url", + "data": { + "version": "5.1.0", + "packageName": "postcss-normalize-url", + "hash": "sha512-5upGeDO+PVthOxSmds43ZeMeZfKH+/DKgGRD7TElkkyS46JXAUhMzIKiCa7BabPeIy3AQcTkXwVVN7DbqsiCew==" + } + }, + "npm:postcss-normalize-whitespace": { + "type": "npm", + "name": "npm:postcss-normalize-whitespace", + "data": { + "version": "5.1.1", + "packageName": "postcss-normalize-whitespace", + "hash": "sha512-83ZJ4t3NUDETIHTa3uEg6asWjSBYL5EdkVB0sDncx9ERzOKBVJIUeDO9RyA9Zwtig8El1d79HBp0JEi8wvGQnA==" + } + }, + "npm:postcss-ordered-values": { + "type": "npm", + "name": "npm:postcss-ordered-values", + "data": { + "version": "5.1.3", + "packageName": "postcss-ordered-values", + "hash": "sha512-9UO79VUhPwEkzbb3RNpqqghc6lcYej1aveQteWY+4POIwlqkYE21HKWaLDF6lWNuqCobEAyTovVhtI32Rbv2RQ==" + } + }, + "npm:postcss-preset-mantine": { + "type": "npm", + "name": "npm:postcss-preset-mantine", + "data": { + "version": "1.18.0", + "packageName": "postcss-preset-mantine", + "hash": "sha512-sP6/s1oC7cOtBdl4mw/IRKmKvYTuzpRrH/vT6v9enMU/EQEQ31eQnHcWtFghOXLH87AAthjL/Q75rLmin1oZoA==" + } + }, + "npm:postcss-reduce-initial": { + "type": "npm", + "name": "npm:postcss-reduce-initial", + "data": { + "version": "5.1.2", + "packageName": "postcss-reduce-initial", + "hash": "sha512-dE/y2XRaqAi6OvjzD22pjTUQ8eOfc6m/natGHgKFBK9DxFmIm69YmaRVQrGgFlEfc1HePIurY0TmDeROK05rIg==" + } + }, + "npm:postcss-reduce-transforms": { + "type": "npm", + "name": "npm:postcss-reduce-transforms", + "data": { + "version": "5.1.0", + "packageName": "postcss-reduce-transforms", + "hash": "sha512-2fbdbmgir5AvpW9RLtdONx1QoYG2/EtqpNQbFASDlixBbAYuTcJ0dECwlqNqH7VbaUnEnh8SrxOe2sRIn24XyQ==" + } + }, + "npm:postcss-selector-parser@6.1.2": { + "type": "npm", + "name": "npm:postcss-selector-parser@6.1.2", + "data": { + "version": "6.1.2", + "packageName": "postcss-selector-parser", + "hash": "sha512-Q8qQfPiZ+THO/3ZrOrO0cJJKfpYCagtMUkXbnEfmgUjwXg6z/WBeOyS9APBBPCTSiDV+s4SwQGu8yFsiMRIudg==" + } + }, + "npm:postcss-selector-parser": { + "type": "npm", + "name": "npm:postcss-selector-parser", + "data": { + "version": "7.1.0", + "packageName": "postcss-selector-parser", + "hash": "sha512-8sLjZwK0R+JlxlYcTuVnyT2v+htpdrjDOKuMcOVdYjt52Lh8hWRYpxBPoKx/Zg+bcjc3wx6fmQevMmUztS/ccA==" + } + }, + "npm:postcss-simple-vars": { + "type": "npm", + "name": "npm:postcss-simple-vars", + "data": { + "version": "7.0.1", + "packageName": "postcss-simple-vars", + "hash": "sha512-5GLLXaS8qmzHMOjVxqkk1TZPf1jMqesiI7qLhnlyERalG0sMbHIbJqrcnrpmZdKCLglHnRHoEBB61RtGTsj++A==" + } + }, + "npm:postcss-svgo": { + "type": "npm", + "name": "npm:postcss-svgo", + "data": { + "version": "5.1.0", + "packageName": "postcss-svgo", + "hash": "sha512-D75KsH1zm5ZrHyxPakAxJWtkyXew5qwS70v56exwvw542d9CRtTo78K0WeFxZB4G7JXKKMbEZtZayTGdIky/eA==" + } + }, + "npm:postcss-unique-selectors": { + "type": "npm", + "name": "npm:postcss-unique-selectors", + "data": { + "version": "5.1.1", + "packageName": "postcss-unique-selectors", + "hash": "sha512-5JiODlELrz8L2HwxfPnhOWZYWDxVHWL83ufOv84NrcgipI7TaeRsatAhK4Tr2/ZiYldpK/wBvw5BD3qfaK96GA==" + } + }, + "npm:postcss-value-parser": { + "type": "npm", + "name": "npm:postcss-value-parser", + "data": { + "version": "4.2.0", + "packageName": "postcss-value-parser", + "hash": "sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==" + } + }, + "npm:postcss-values-parser": { + "type": "npm", + "name": "npm:postcss-values-parser", + "data": { + "version": "6.0.2", + "packageName": "postcss-values-parser", + "hash": "sha512-YLJpK0N1brcNJrs9WatuJFtHaV9q5aAOj+S4DI5S7jgHlRfm0PIbDCAFRYMQD5SHq7Fy6xsDhyutgS0QOAs0qw==" + } + }, + "npm:postcss": { + "type": "npm", + "name": "npm:postcss", + "data": { + "version": "8.5.8", + "packageName": "postcss", + "hash": "sha512-OW/rX8O/jXnm82Ey1k44pObPtdblfiuWnrd8X7GJ7emImCOstunGbXUpp7HdBrFQX6rJzn3sPT397Wp5aCwCHg==" + } + }, + "npm:postgres": { + "type": "npm", + "name": "npm:postgres", + "data": { + "version": "3.4.7", + "packageName": "postgres", + "hash": "sha512-Jtc2612XINuBjIl/QTWsV5UvE8UHuNblcO3vVADSrKsrc6RqGX6lOW1cEo3CM2v0XG4Nat8nI+YM7/f26VxXLw==" + } + }, + "npm:preact-render-to-string": { + "type": "npm", + "name": "npm:preact-render-to-string", + "data": { + "version": "6.5.11", + "packageName": "preact-render-to-string", + "hash": "sha512-ubnauqoGczeGISiOh6RjX0/cdaF8v/oDXIjO85XALCQjwQP+SB4RDXXtvZ6yTYSjG+PC1QRP2AhPgCEsM2EvUw==" + } + }, + "npm:preact": { + "type": "npm", + "name": "npm:preact", + "data": { + "version": "10.24.3", + "packageName": "preact", + "hash": "sha512-Z2dPnBnMUfyQfSQ+GBdsGa16hz35YmLmtTLhM169uW944hYL6xzTYkJjC07j+Wosz733pMWx0fgON3JNw1jJQA==" + } + }, + "npm:prebuild-install": { + "type": "npm", + "name": "npm:prebuild-install", + "data": { + "version": "7.1.3", + "packageName": "prebuild-install", + "hash": "sha512-8Mf2cbV7x1cXPUILADGI3wuhfqWvtiLA1iclTDbFRZkgRQS0NqsPZphna9V+HyTEadheuPmjaJMsbzKQFOzLug==" + } + }, + "npm:prelude-ls": { + "type": "npm", + "name": "npm:prelude-ls", + "data": { + "version": "1.2.1", + "packageName": "prelude-ls", + "hash": "sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==" + } + }, + "npm:prettier-linter-helpers": { + "type": "npm", + "name": "npm:prettier-linter-helpers", + "data": { + "version": "1.0.1", + "packageName": "prettier-linter-helpers", + "hash": "sha512-SxToR7P8Y2lWmv/kTzVLC1t/GDI2WGjMwNhLLE9qtH8Q13C+aEmuRlzDst4Up4s0Wc8sF2M+J57iB3cMLqftfg==" + } + }, + "npm:prettier": { + "type": "npm", + "name": "npm:prettier", + "data": { + "version": "3.8.1", + "packageName": "prettier", + "hash": "sha512-UOnG6LftzbdaHZcKoPFtOcCKztrQ57WkHDeRD9t/PTQtmT0NHSeWWepj6pS0z/N7+08BHFDQVUrfmfMRcZwbMg==" + } + }, + "npm:pretty-format": { + "type": "npm", + "name": "npm:pretty-format", + "data": { + "version": "30.3.0", + "packageName": "pretty-format", + "hash": "sha512-oG4T3wCbfeuvljnyAzhBvpN45E8iOTXCU/TD3zXW80HA3dQ4ahdqMkWGiPWZvjpQwlbyHrPTWUAqUzGzv4l1JQ==" + } + }, + "npm:pretty-ms@7.0.1": { + "type": "npm", + "name": "npm:pretty-ms@7.0.1", + "data": { + "version": "7.0.1", + "packageName": "pretty-ms", + "hash": "sha512-973driJZvxiGOQ5ONsFhOF/DtzPMOMtgC11kCpUrPGMTgqp2q/1gwzCquocrN33is0VZ5GFHXZYMM9l6h67v2Q==" + } + }, + "npm:pretty-ms": { + "type": "npm", + "name": "npm:pretty-ms", + "data": { + "version": "9.3.0", + "packageName": "pretty-ms", + "hash": "sha512-gjVS5hOP+M3wMm5nmNOucbIrqudzs9v/57bWRHQWLYklXqoXKrVfYW2W9+glfGsqtPgpiz5WwyEEB+ksXIx3gQ==" + } + }, + "npm:prism-themes": { + "type": "npm", + "name": "npm:prism-themes", + "data": { + "version": "1.9.0", + "packageName": "prism-themes", + "hash": "sha512-tX2AYsehKDw1EORwBps+WhBFKc2kxfoFpQAjxBndbZKr4fRmMkv47XN0BghC/K1qwodB1otbe4oF23vUTFDokw==" + } + }, + "npm:prisma": { + "type": "npm", + "name": "npm:prisma", + "data": { + "version": "7.5.0", + "packageName": "prisma", + "hash": "sha512-n30qZpWehaYQzigLjmuPisyEsvOzHt7bZeRyg8gZ5DvJo9FGjD+gNaY59Ns3hlLD5/jZH5GBeftIss0jDbUoLg==" + } + }, + "npm:proc-log": { + "type": "npm", + "name": "npm:proc-log", + "data": { + "version": "5.0.0", + "packageName": "proc-log", + "hash": "sha512-Azwzvl90HaF0aCz1JrDdXQykFakSSNPaPoiZ9fm5qJIMHioDZEi7OAdRwSm6rSoPtY3Qutnm3L7ogmg3dc+wbQ==" + } + }, + "npm:process-warning@4.0.1": { + "type": "npm", + "name": "npm:process-warning@4.0.1", + "data": { + "version": "4.0.1", + "packageName": "process-warning", + "hash": "sha512-3c2LzQ3rY9d0hc1emcsHhfT9Jwz0cChib/QN89oME2R451w5fy3f0afAhERFZAwrbDU43wk12d0ORBpDVME50Q==" + } + }, + "npm:process-warning": { + "type": "npm", + "name": "npm:process-warning", + "data": { + "version": "5.0.0", + "packageName": "process-warning", + "hash": "sha512-a39t9ApHNx2L4+HBnQKqxxHNs1r7KF+Intd8Q/g1bUh6q0WIp9voPXJ/x0j+ZL45KF1pJd9+q2jLIRMfvEshkA==" + } + }, + "npm:progress": { + "type": "npm", + "name": "npm:progress", + "data": { + "version": "2.0.3", + "packageName": "progress", + "hash": "sha512-7PiHtLll5LdnKIMw100I+8xJXR5gW2QwWYkT6iJva0bXitZKa/XMrSbdmg3r2Xnaidz9Qumd0VPaMrZlF9V9sA==" + } + }, + "npm:promise-retry": { + "type": "npm", + "name": "npm:promise-retry", + "data": { + "version": "2.0.1", + "packageName": "promise-retry", + "hash": "sha512-y+WKFlBR8BGXnsNlIHFGPZmyDf3DFMoLhaflAnyZgV6rG6xu+JwesTo2Q9R6XwYmtmwAFCkAk3e35jEdoeh/3g==" + } + }, + "npm:prop-types": { + "type": "npm", + "name": "npm:prop-types", + "data": { + "version": "15.8.1", + "packageName": "prop-types", + "hash": "sha512-oj87CgZICdulUohogVAR7AjlC0327U4el4L6eAvOqCeudMDVU0NThNaV+b9Df4dXgSP1gXMTnPdhfe/2qDH5cg==" + } + }, + "npm:proper-lockfile": { + "type": "npm", + "name": "npm:proper-lockfile", + "data": { + "version": "4.1.2", + "packageName": "proper-lockfile", + "hash": "sha512-TjNPblN4BwAWMXU8s9AEz4JmQxnD1NNL7bNOY/AKUzyamc379FWASUhc/K1pL2noVb+XmZKLL68cjzLsiOAMaA==" + } + }, + "npm:proxy-addr": { + "type": "npm", + "name": "npm:proxy-addr", + "data": { + "version": "2.0.7", + "packageName": "proxy-addr", + "hash": "sha512-llQsMLSUDUPT44jdrU/O37qlnifitDP+ZwrmmZcoSKyLKvtZxpyV0n2/bD/N4tBAAZ/gJEdZU7KMraoK1+XYAg==" + } + }, + "npm:proxy-agent": { + "type": "npm", + "name": "npm:proxy-agent", + "data": { + "version": "6.5.0", + "packageName": "proxy-agent", + "hash": "sha512-TmatMXdr2KlRiA2CyDu8GqR8EjahTG3aY3nXjdzFyoZbmB8hrBsTyMezhULIXKnC0jpfjlmiZ3+EaCzoInSu/A==" + } + }, + "npm:proxy-from-env": { + "type": "npm", + "name": "npm:proxy-from-env", + "data": { + "version": "1.1.0", + "packageName": "proxy-from-env", + "hash": "sha512-D+zkORCbA9f1tdWRK0RaCR3GPv50cMxcrz4X8k5LTSUD1Dkw47mKJEZQNunItRTkWwgtaUSo1RVFRIG9ZXiFYg==" + } + }, + "npm:pump": { + "type": "npm", + "name": "npm:pump", + "data": { + "version": "3.0.3", + "packageName": "pump", + "hash": "sha512-todwxLMY7/heScKmntwQG8CXVkWUOdYxIvY2s0VWAAMh/nd8SoYiRaKjlr7+iCs984f2P8zvrfWcDDYVb73NfA==" + } + }, + "npm:punycode-regex": { + "type": "npm", + "name": "npm:punycode-regex", + "data": { + "version": "1.0.1", + "packageName": "punycode-regex", + "hash": "sha512-6twir6Wqa80MGTpqRMxxwWNHHdgQI+UC81g8YyYDY7UYiPIVQ20ZlskmXOWIq195eRzyGzyD3qT645OTz9AAZA==" + } + }, + "npm:punycode": { + "type": "npm", + "name": "npm:punycode", + "data": { + "version": "2.3.1", + "packageName": "punycode", + "hash": "sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg==" + } + }, + "npm:puppeteer-core": { + "type": "npm", + "name": "npm:puppeteer-core", + "data": { + "version": "24.40.0", + "packageName": "puppeteer-core", + "hash": "sha512-MWL3XbUCfVgGR0gRsidzT6oKJT2QydPLhMITU6HoVWiiv4gkb6gJi3pcdAa8q4HwjBTbqISOWVP4aJiiyUJvag==" + } + }, + "npm:puppeteer": { + "type": "npm", + "name": "npm:puppeteer", + "data": { + "version": "24.40.0", + "packageName": "puppeteer", + "hash": "sha512-IxQbDq93XHVVLWHrAkFP7F7iHvb9o0mgfsSIMlhHb+JM+JjM1V4v4MNSQfcRWJopx9dsNOr9adYv0U5fm9BJBQ==" + } + }, + "npm:pure-rand": { + "type": "npm", + "name": "npm:pure-rand", + "data": { + "version": "6.1.0", + "packageName": "pure-rand", + "hash": "sha512-bVWawvoZoBYpp6yIoQtQXHZjmz35RSVHnUOTefl8Vcjr8snTPY1wnpSPMWekcFwbxI6gtmT7rSYPFvz71ldiOA==" + } + }, + "npm:qs": { + "type": "npm", + "name": "npm:qs", + "data": { + "version": "6.14.0", + "packageName": "qs", + "hash": "sha512-YWWTjgABSKcvs/nWBi9PycY/JiPJqOD4JA6o9Sej2AtvSGarXxKC3OQSk4pAarbdQlKAh5D4FCQkJNkW+GAn3w==" + } + }, + "npm:quansync": { + "type": "npm", + "name": "npm:quansync", + "data": { + "version": "1.0.0", + "packageName": "quansync", + "hash": "sha512-5xZacEEufv3HSTPQuchrvV6soaiACMFnq1H8wkVioctoH3TRha9Sz66lOxRwPK/qZj7HPiSveih9yAyh98gvqA==" + } + }, + "npm:queue-microtask": { + "type": "npm", + "name": "npm:queue-microtask", + "data": { + "version": "1.2.3", + "packageName": "queue-microtask", + "hash": "sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==" + } + }, + "npm:quick-format-unescaped": { + "type": "npm", + "name": "npm:quick-format-unescaped", + "data": { + "version": "4.0.4", + "packageName": "quick-format-unescaped", + "hash": "sha512-tYC1Q1hgyRuHgloV/YXs2w15unPVh8qfu/qCTfhTYamaw7fyhumKa2yGpdSo87vY32rIclj+4fWYQXUMs9EHvg==" + } + }, + "npm:quick-lru": { + "type": "npm", + "name": "npm:quick-lru", + "data": { + "version": "5.1.1", + "packageName": "quick-lru", + "hash": "sha512-WuyALRjWPDGtt/wzJiadO5AXY+8hZ80hVpe6MyivgraREW751X3SbhRvG3eLKOYN+8VEvqLcf3wdnt44Z4S4SA==" + } + }, + "npm:quote-unquote": { + "type": "npm", + "name": "npm:quote-unquote", + "data": { + "version": "1.0.0", + "packageName": "quote-unquote", + "hash": "sha512-twwRO/ilhlG/FIgYeKGFqyHhoEhqgnKVkcmqMKi2r524gz3ZbDTcyFt38E9xjJI2vT+KbRNHVbnJ/e0I25Azwg==" + } + }, + "npm:radix3": { + "type": "npm", + "name": "npm:radix3", + "data": { + "version": "1.1.2", + "packageName": "radix3", + "hash": "sha512-b484I/7b8rDEdSDKckSSBA8knMpcdsXudlE/LNL639wFoHKwLbEkQFZHWEYwDC0wa0FKUcCY+GAF73Z7wxNVFA==" + } + }, + "npm:range-parser": { + "type": "npm", + "name": "npm:range-parser", + "data": { + "version": "1.2.1", + "packageName": "range-parser", + "hash": "sha512-Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg==" + } + }, + "npm:raw-body": { + "type": "npm", + "name": "npm:raw-body", + "data": { + "version": "3.0.2", + "packageName": "raw-body", + "hash": "sha512-K5zQjDllxWkf7Z5xJdV0/B0WTNqx6vxG70zJE4N0kBs4LovmEYWJzQGxC9bS9RAKu3bgM40lrd5zoLJ12MQ5BA==" + } + }, + "npm:rc9": { + "type": "npm", + "name": "npm:rc9", + "data": { + "version": "2.1.2", + "packageName": "rc9", + "hash": "sha512-btXCnMmRIBINM2LDZoEmOogIZU7Qe7zn4BpomSKZ/ykbLObuBdvG+mFq11DL6fjH1DRwHhrlgtYWG96bJiC7Cg==" + } + }, + "npm:rc": { + "type": "npm", + "name": "npm:rc", + "data": { + "version": "1.2.8", + "packageName": "rc", + "hash": "sha512-y3bGgqKj3QBdxLbLkomlohkvsA8gdAiUQlSBJnBhfn+BPxg4bc62d8TcBW15wavDfgexCgccckhcZvywyQYPOw==" + } + }, + "npm:re2": { + "type": "npm", + "name": "npm:re2", + "data": { + "version": "1.22.1", + "packageName": "re2", + "hash": "sha512-E4J0EtgyNLdIr0wTg0dQPefuiqNY29KaLacytiUAYYRzxCG+zOkWoUygt1rI+TA1LrhN49/njrfSO1DHtVC5Vw==" + } + }, + "npm:react-dom": { + "type": "npm", + "name": "npm:react-dom", + "data": { + "version": "19.2.4", + "packageName": "react-dom", + "hash": "sha512-AXJdLo8kgMbimY95O2aKQqsz2iWi9jMgKJhRBAxECE4IFxfcazB2LmzloIoibJI3C12IlY20+KFaLv+71bUJeQ==" + } + }, + "npm:react-is": { + "type": "npm", + "name": "npm:react-is", + "data": { + "version": "16.13.1", + "packageName": "react-is", + "hash": "sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ==" + } + }, + "npm:react-is@18.3.1": { + "type": "npm", + "name": "npm:react-is@18.3.1", + "data": { + "version": "18.3.1", + "packageName": "react-is", + "hash": "sha512-/LLMVyas0ljjAtoYiPqYiL8VWXzUUdThrmU5+n20DZv+a+ClRoevUzw5JxU+Ieh5/c87ytoTBV9G1FiKfNJdmg==" + } + }, + "npm:react-number-format": { + "type": "npm", + "name": "npm:react-number-format", + "data": { + "version": "5.4.4", + "packageName": "react-number-format", + "hash": "sha512-wOmoNZoOpvMminhifQYiYSTCLUDOiUbBunrMrMjA+dV52sY+vck1S4UhR6PkgnoCquvvMSeJjErXZ4qSaWCliA==" + } + }, + "npm:react-remove-scroll-bar": { + "type": "npm", + "name": "npm:react-remove-scroll-bar", + "data": { + "version": "2.3.8", + "packageName": "react-remove-scroll-bar", + "hash": "sha512-9r+yi9+mgU33AKcj6IbT9oRCO78WriSj6t/cF8DWBZJ9aOGPOTEDvdUDz1FwKim7QXWwmHqtdHnRJfhAxEG46Q==" + } + }, + "npm:react-remove-scroll": { + "type": "npm", + "name": "npm:react-remove-scroll", + "data": { + "version": "2.7.1", + "packageName": "react-remove-scroll", + "hash": "sha512-HpMh8+oahmIdOuS5aFKKY6Pyog+FNaZV/XyJOq7b4YFwsFHe5yYfdbIalI4k3vU2nSDql7YskmUseHsRrJqIPA==" + } + }, + "npm:react-streaming": { + "type": "npm", + "name": "npm:react-streaming", + "data": { + "version": "0.4.16", + "packageName": "react-streaming", + "hash": "sha512-qaDUklKjpmPStven+MvFFk3SWN+UaeIugBNwKgd97UPIR8IMUzk68gIg2iPR1fN7+HkrpLmTVwZE9dGoLZTcCA==" + } + }, + "npm:react-style-singleton": { + "type": "npm", + "name": "npm:react-style-singleton", + "data": { + "version": "2.2.3", + "packageName": "react-style-singleton", + "hash": "sha512-b6jSvxvVnyptAiLjbkWLE/lOnR4lfTtDAl+eUC7RZy+QQWc6wRzIV2CE6xBuMmDxc2qIihtDCZD5NPOFl7fRBQ==" + } + }, + "npm:react-textarea-autosize": { + "type": "npm", + "name": "npm:react-textarea-autosize", + "data": { + "version": "8.5.9", + "packageName": "react-textarea-autosize", + "hash": "sha512-U1DGlIQN5AwgjTyOEnI1oCcMuEr1pv1qOtklB2l4nyMGbHzWrI0eFsYK0zos2YWqAolJyG0IWJaqWmWj5ETh0A==" + } + }, + "npm:react": { + "type": "npm", + "name": "npm:react", + "data": { + "version": "19.2.4", + "packageName": "react", + "hash": "sha512-9nfp2hYpCwOjAN+8TZFGhtWEwgvWHXqESH8qT89AT/lWklpLON22Lc8pEtnpsZz7VmawabSU0gCjnj8aC0euHQ==" + } + }, + "npm:read-package-json-fast": { + "type": "npm", + "name": "npm:read-package-json-fast", + "data": { + "version": "4.0.0", + "packageName": "read-package-json-fast", + "hash": "sha512-qpt8EwugBWDw2cgE2W+/3oxC+KTez2uSVR8JU9Q36TXPAGCaozfQUs59v4j4GFpWTaw0i6hAZSvOmu1J0uOEUg==" + } + }, + "npm:readable-stream": { + "type": "npm", + "name": "npm:readable-stream", + "data": { + "version": "3.6.2", + "packageName": "readable-stream", + "hash": "sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==" + } + }, + "npm:readdirp": { + "type": "npm", + "name": "npm:readdirp", + "data": { + "version": "4.1.2", + "packageName": "readdirp", + "hash": "sha512-GDhwkLfywWL2s6vEjyhri+eXmfH6j1L7JE27WhqLeYzoh/A3DBaYGEj2H/HFZCn/kMfim73FXxEJTw06WtxQwg==" + } + }, + "npm:real-require": { + "type": "npm", + "name": "npm:real-require", + "data": { + "version": "0.2.0", + "packageName": "real-require", + "hash": "sha512-57frrGM/OCTLqLOAh0mhVA9VBMHd+9U7Zb2THMGdBUoZVOtGbJzjxsYGDJ3A9AYYCP4hn6y1TVbaOfzWtm5GFg==" + } + }, + "npm:reflect.getprototypeof": { + "type": "npm", + "name": "npm:reflect.getprototypeof", + "data": { + "version": "1.0.10", + "packageName": "reflect.getprototypeof", + "hash": "sha512-00o4I+DVrefhv+nX0ulyi3biSHCPDe+yLv5o/p6d/UVlirijB8E16FtfwSAi4g3tcqrQ4lRAqQSoFEZJehYEcw==" + } + }, + "npm:regexp-to-ast": { + "type": "npm", + "name": "npm:regexp-to-ast", + "data": { + "version": "0.5.0", + "packageName": "regexp-to-ast", + "hash": "sha512-tlbJqcMHnPKI9zSrystikWKwHkBqu2a/Sgw01h3zFjvYrMxEDYHzzoMZnUrbIfpTFEsoRnnviOXNCzFiSc54Qw==" + } + }, + "npm:regexp-tree": { + "type": "npm", + "name": "npm:regexp-tree", + "data": { + "version": "0.1.27", + "packageName": "regexp-tree", + "hash": "sha512-iETxpjK6YoRWJG5o6hXLwvjYAoW+FEZn9os0PD/b6AP6xQwsa/Y7lCVgIixBbUPMfhu+i2LtdeAqVTgGlQarfA==" + } + }, + "npm:regexp.prototype.flags": { + "type": "npm", + "name": "npm:regexp.prototype.flags", + "data": { + "version": "1.5.4", + "packageName": "regexp.prototype.flags", + "hash": "sha512-dYqgNSZbDwkaJ2ceRd9ojCGjBq+mOm9LmtXnAnEGyHhN/5R7iDW2TRw3h+o/jCFxus3P2LfWIIiwowAjANm7IA==" + } + }, + "npm:regexparam": { + "type": "npm", + "name": "npm:regexparam", + "data": { + "version": "3.0.0", + "packageName": "regexparam", + "hash": "sha512-RSYAtP31mvYLkAHrOlh25pCNQ5hWnT106VukGaaFfuJrZFkGRX5GhUAdPqpSDXxOhA2c4akmRuplv1mRqnBn6Q==" + } + }, + "npm:remeda": { + "type": "npm", + "name": "npm:remeda", + "data": { + "version": "2.33.4", + "packageName": "remeda", + "hash": "sha512-ygHswjlc/opg2VrtiYvUOPLjxjtdKvjGz1/plDhkG66hjNjFr1xmfrs2ClNFo/E6TyUFiwYNh53bKV26oBoMGQ==" + } + }, + "npm:require-directory": { + "type": "npm", + "name": "npm:require-directory", + "data": { + "version": "2.1.1", + "packageName": "require-directory", + "hash": "sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q==" + } + }, + "npm:require-from-string": { + "type": "npm", + "name": "npm:require-from-string", + "data": { + "version": "2.0.2", + "packageName": "require-from-string", + "hash": "sha512-Xf0nWe6RseziFMu+Ap9biiUbmplq6S9/p+7w7YXP/JBHhrUDDUhwa+vANyubuqfZWTveU//DYVGsDG7RKL/vEw==" + } + }, + "npm:require-one-of": { + "type": "npm", + "name": "npm:require-one-of", + "data": { + "version": "1.0.24", + "packageName": "require-one-of", + "hash": "sha512-aaj1WcxnuPnyTDH89d9dCret7OF+mYBed5imq+eotBeJ7wd2X3w6llRB7CTQ3Qsl3FAIoobDrRSEekUKHSDqKQ==" + } + }, + "npm:requires-port": { + "type": "npm", + "name": "npm:requires-port", + "data": { + "version": "1.0.0", + "packageName": "requires-port", + "hash": "sha512-KigOCHcocU3XODJxsu8i/j8T9tzT4adHiecwORRQ0ZZFcp7ahwXuRU1m+yuO90C5ZUyGeGfocHDI14M3L3yDAQ==" + } + }, + "npm:reselect": { + "type": "npm", + "name": "npm:reselect", + "data": { + "version": "4.1.8", + "packageName": "reselect", + "hash": "sha512-ab9EmR80F/zQTMNeneUr4cv+jSwPJgIlvEmVwLerwrWVbpLlBuls9XHzIeTFy4cegU2NHBp3va0LKOzU5qFEYQ==" + } + }, + "npm:resolve-alpn": { + "type": "npm", + "name": "npm:resolve-alpn", + "data": { + "version": "1.2.1", + "packageName": "resolve-alpn", + "hash": "sha512-0a1F4l73/ZFZOakJnQ3FvkJ2+gSTQWz/r2KE5OdDY0TxPm5h4GkqkWWfM47T7HsbnOtcJVEF4epCVy6u7Q3K+g==" + } + }, + "npm:resolve-from@4.0.0": { + "type": "npm", + "name": "npm:resolve-from@4.0.0", + "data": { + "version": "4.0.0", + "packageName": "resolve-from", + "hash": "sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==" + } + }, + "npm:resolve-from": { + "type": "npm", + "name": "npm:resolve-from", + "data": { + "version": "5.0.0", + "packageName": "resolve-from", + "hash": "sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw==" + } + }, + "npm:resolve-pkg-maps": { + "type": "npm", + "name": "npm:resolve-pkg-maps", + "data": { + "version": "1.0.0", + "packageName": "resolve-pkg-maps", + "hash": "sha512-seS2Tj26TBVOC2NIc2rOe2y2ZO7efxITtLZcGSOnHHNOQ7CkiUBfw0Iw2ck6xkIhPwLhKNLS8BO+hEpngQlqzw==" + } + }, + "npm:resolve.exports": { + "type": "npm", + "name": "npm:resolve.exports", + "data": { + "version": "2.0.3", + "packageName": "resolve.exports", + "hash": "sha512-OcXjMsGdhL4XnbShKpAcSqPMzQoYkYyhbEaeSko47MjRP9NfEQMhZkXL1DoFlt9LWQn4YttrdnV6X2OiyzBi+A==" + } + }, + "npm:resolve@1.22.10": { + "type": "npm", + "name": "npm:resolve@1.22.10", + "data": { + "version": "1.22.10", + "packageName": "resolve", + "hash": "sha512-NPRy+/ncIMeDlTAsuqwKIiferiawhefFJtkNSW0qZJEqMEb+qBt/77B/jGeeek+F0uOeN05CDa6HXbbIgtVX4w==" + } + }, + "npm:resolve": { + "type": "npm", + "name": "npm:resolve", + "data": { + "version": "2.0.0-next.5", + "packageName": "resolve", + "hash": "sha512-U7WjGVG9sH8tvjW5SmGbQuui75FiyjAX72HX15DwBBwF9dNiQZRQAg9nnPhYy+TUnE0+VcrttuvNI8oSxZcocA==" + } + }, + "npm:responselike": { + "type": "npm", + "name": "npm:responselike", + "data": { + "version": "2.0.1", + "packageName": "responselike", + "hash": "sha512-4gl03wn3hj1HP3yzgdI7d3lCkF95F21Pz4BPGvKHinyQzALR5CapwC8yIi0Rh58DEMQ/SguC03wFj2k0M/mHhw==" + } + }, + "npm:restore-cursor": { + "type": "npm", + "name": "npm:restore-cursor", + "data": { + "version": "3.1.0", + "packageName": "restore-cursor", + "hash": "sha512-l+sSefzHpj5qimhFSE5a8nufZYAM3sBSVMAPtYkmC+4EH2anSGaEMXSD0izRQbu9nfyQ9y5JrVmp7E8oZrUjvA==" + } + }, + "npm:ret": { + "type": "npm", + "name": "npm:ret", + "data": { + "version": "0.5.0", + "packageName": "ret", + "hash": "sha512-I1XxrZSQ+oErkRR4jYbAyEEu2I0avBvvMM5JN+6EBprOGRCs63ENqZ3vjavq8fBw2+62G5LF5XelKwuJpcvcxw==" + } + }, + "npm:retry@0.12.0": { + "type": "npm", + "name": "npm:retry@0.12.0", + "data": { + "version": "0.12.0", + "packageName": "retry", + "hash": "sha512-9LkiTwjUh6rT555DtE9rTX+BKByPfrMzEAtnlEtdEwr3Nkffwiihqe2bWADg+OQRjt9gl6ICdmB/ZFDCGAtSow==" + } + }, + "npm:retry": { + "type": "npm", + "name": "npm:retry", + "data": { + "version": "0.13.1", + "packageName": "retry", + "hash": "sha512-XQBQ3I8W1Cge0Seh+6gjj03LbmRFWuoszgK9ooCpwYIrhhoO80pfq4cUkU5DkknwfOfFteRwlZ56PYOGYyFWdg==" + } + }, + "npm:reusify": { + "type": "npm", + "name": "npm:reusify", + "data": { + "version": "1.1.0", + "packageName": "reusify", + "hash": "sha512-g6QUff04oZpHs0eG5p83rFLhHeV00ug/Yf9nZM6fLeUrPguBTkTQOdpAWWspMh55TZfVQDPaN3NQJfbVRAxdIw==" + } + }, + "npm:rfdc": { + "type": "npm", + "name": "npm:rfdc", + "data": { + "version": "1.4.1", + "packageName": "rfdc", + "hash": "sha512-q1b3N5QkRUWUl7iyylaaj3kOpIT0N2i9MqIEQXP73GVsN9cw3fdx8X63cEmWhJGi2PPCF23Ijp7ktmd39rawIA==" + } + }, + "npm:rimraf": { + "type": "npm", + "name": "npm:rimraf", + "data": { + "version": "6.1.3", + "packageName": "rimraf", + "hash": "sha512-LKg+Cr2ZF61fkcaK1UdkH2yEBBKnYjTyWzTJT6KNPcSPaiT7HSdhtMXQuN5wkTX0Xu72KQ1l8S42rlmexS2hSA==" + } + }, + "npm:rolldown-plugin-dts": { + "type": "npm", + "name": "npm:rolldown-plugin-dts", + "data": { + "version": "0.22.5", + "packageName": "rolldown-plugin-dts", + "hash": "sha512-M/HXfM4cboo+jONx9Z0X+CUf3B5tCi7ni+kR5fUW50Fp9AlZk0oVLesibGWgCXDKFp5lpgQ9yhKoImUFjl3VZw==" + } + }, + "npm:rolldown@1.0.0-beta.51": { + "type": "npm", + "name": "npm:rolldown@1.0.0-beta.51", + "data": { + "version": "1.0.0-beta.51", + "packageName": "rolldown", + "hash": "sha512-ZRLgPlS91l4JztLYEZnmMcd3Umcla1hkXJgiEiR4HloRJBBoeaX8qogTu5Jfu36rRMVLndzqYv0h+M5gJAkUfg==" + } + }, + "npm:rolldown@1.0.0-rc.11": { + "type": "npm", + "name": "npm:rolldown@1.0.0-rc.11", + "data": { + "version": "1.0.0-rc.11", + "packageName": "rolldown", + "hash": "sha512-NRjoKMusSjfRbSYiH3VSumlkgFe7kYAa3pzVOsVYVFY3zb5d7nS+a3KGQ7hJKXuYWbzJKPVQ9Wxq2UvyK+ENpw==" + } + }, + "npm:rolldown": { + "type": "npm", + "name": "npm:rolldown", + "data": { + "version": "1.0.0-rc.9", + "packageName": "rolldown", + "hash": "sha512-9EbgWge7ZH+yqb4d2EnELAntgPTWbfL8ajiTW+SyhJEC4qhBbkCKbqFV4Ge4zmu5ziQuVbWxb/XwLZ+RIO7E8Q==" + } + }, + "npm:router": { + "type": "npm", + "name": "npm:router", + "data": { + "version": "2.2.0", + "packageName": "router", + "hash": "sha512-nLTrUKm2UyiL7rlhapu/Zl45FwNgkZGaCpZbIHajDYgwlJCOzLSk+cIPAnsEqV955GjILJnKbdQC1nVPz+gAYQ==" + } + }, + "npm:run-parallel": { + "type": "npm", + "name": "npm:run-parallel", + "data": { + "version": "1.2.0", + "packageName": "run-parallel", + "hash": "sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==" + } + }, + "npm:safe-array-concat": { + "type": "npm", + "name": "npm:safe-array-concat", + "data": { + "version": "1.1.3", + "packageName": "safe-array-concat", + "hash": "sha512-AURm5f0jYEOydBj7VQlVvDrjeFgthDdEF5H1dP+6mNpoXOMo1quQqJ4wvJDyRZ9+pO3kGWoOdmV08cSv2aJV6Q==" + } + }, + "npm:safe-buffer": { + "type": "npm", + "name": "npm:safe-buffer", + "data": { + "version": "5.1.2", + "packageName": "safe-buffer", + "hash": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==" + } + }, + "npm:safe-buffer@5.2.1": { + "type": "npm", + "name": "npm:safe-buffer@5.2.1", + "data": { + "version": "5.2.1", + "packageName": "safe-buffer", + "hash": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==" + } + }, + "npm:safe-push-apply": { + "type": "npm", + "name": "npm:safe-push-apply", + "data": { + "version": "1.0.0", + "packageName": "safe-push-apply", + "hash": "sha512-iKE9w/Z7xCzUMIZqdBsp6pEQvwuEebH4vdpjcDWnyzaI6yl6O9FHvVpmGelvEHNsoY6wGblkxR6Zty/h00WiSA==" + } + }, + "npm:safe-regex-test": { + "type": "npm", + "name": "npm:safe-regex-test", + "data": { + "version": "1.1.0", + "packageName": "safe-regex-test", + "hash": "sha512-x/+Cz4YrimQxQccJf5mKEbIa1NzeCRNI5Ecl/ekmlYaampdNLPalVyIcCZNNH3MvmqBugV5TMYZXv0ljslUlaw==" + } + }, + "npm:safe-regex2": { + "type": "npm", + "name": "npm:safe-regex2", + "data": { + "version": "5.0.0", + "packageName": "safe-regex2", + "hash": "sha512-YwJwe5a51WlK7KbOJREPdjNrpViQBI3p4T50lfwPuDhZnE3XGVTlGvi+aolc5+RvxDD6bnUmjVsU9n1eboLUYw==" + } + }, + "npm:safe-stable-stringify": { + "type": "npm", + "name": "npm:safe-stable-stringify", + "data": { + "version": "2.5.0", + "packageName": "safe-stable-stringify", + "hash": "sha512-b3rppTKm9T+PsVCBEOUR46GWI7fdOs00VKZ1+9c1EWDaDMvjQc6tUwuFyIprgGgTcWoVHSKrU8H31ZHA2e0RHA==" + } + }, + "npm:safer-buffer": { + "type": "npm", + "name": "npm:safer-buffer", + "data": { + "version": "2.1.2", + "packageName": "safer-buffer", + "hash": "sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==" + } + }, + "npm:scheduler": { + "type": "npm", + "name": "npm:scheduler", + "data": { + "version": "0.27.0", + "packageName": "scheduler", + "hash": "sha512-eNv+WrVbKu1f3vbYJT/xtiF5syA5HPIMtf9IgY/nKg0sWqzAUEvqY/xm7OcZc/qafLx/iO9FgOmeSAp4v5ti/Q==" + } + }, + "npm:scule": { + "type": "npm", + "name": "npm:scule", + "data": { + "version": "1.3.0", + "packageName": "scule", + "hash": "sha512-6FtHJEvt+pVMIB9IBY+IcCJ6Z5f1iQnytgyfKMhDKgmzYG+TeH/wx1y3l27rshSbLiSanrR9ffZDrEsmjlQF2g==" + } + }, + "npm:secure-compare": { + "type": "npm", + "name": "npm:secure-compare", + "data": { + "version": "3.0.1", + "packageName": "secure-compare", + "hash": "sha512-AckIIV90rPDcBcglUwXPF3kg0P0qmPsPXAj6BBEENQE1p5yA1xfmDJzfi1Tappj37Pv2mVbKpL3Z1T+Nn7k1Qw==" + } + }, + "npm:secure-json-parse": { + "type": "npm", + "name": "npm:secure-json-parse", + "data": { + "version": "2.7.0", + "packageName": "secure-json-parse", + "hash": "sha512-6aU+Rwsezw7VR8/nyvKTx8QpWH9FrcYiXXlqC4z5d5XQBDRqtbfsRjnwGyqbi3gddNtWHuEk9OANUotL26qKUw==" + } + }, + "npm:secure-json-parse@4.1.0": { + "type": "npm", + "name": "npm:secure-json-parse@4.1.0", + "data": { + "version": "4.1.0", + "packageName": "secure-json-parse", + "hash": "sha512-l4KnYfEyqYJxDwlNVyRfO2E4NTHfMKAWdUuA8J0yve2Dz/E/PdBepY03RvyJpssIpRFwJoCD55wA+mEDs6ByWA==" + } + }, + "npm:semver": { + "type": "npm", + "name": "npm:semver", + "data": { + "version": "6.3.1", + "packageName": "semver", + "hash": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==" + } + }, + "npm:semver@7.7.4": { + "type": "npm", + "name": "npm:semver@7.7.4", + "data": { + "version": "7.7.4", + "packageName": "semver", + "hash": "sha512-vFKC2IEtQnVhpT78h1Yp8wzwrf8CM+MzKMHGJZfBtzhZNycRFnXsHk6E5TxIkkMsgNS7mdX3AGB7x2QM2di4lA==" + } + }, + "npm:send": { + "type": "npm", + "name": "npm:send", + "data": { + "version": "1.2.0", + "packageName": "send", + "hash": "sha512-uaW0WwXKpL9blXE2o0bRhoL2EGXIrZxQ2ZQ4mgcfoBxdFmQold+qWsD2jLrfZ0trjKL6vOw0j//eAwcALFjKSw==" + } + }, + "npm:seq-queue": { + "type": "npm", + "name": "npm:seq-queue", + "data": { + "version": "0.0.5", + "packageName": "seq-queue", + "hash": "sha512-hr3Wtp/GZIc/6DAGPDcV4/9WoZhjrkXsi5B/07QgX8tsdc6ilr7BFM6PM6rbdAX1kFSDYeZGLipIZZKyQP0O5Q==" + } + }, + "npm:serialize-error": { + "type": "npm", + "name": "npm:serialize-error", + "data": { + "version": "8.1.0", + "packageName": "serialize-error", + "hash": "sha512-3NnuWfM6vBYoy5gZFvHiYsVbafvI9vZv/+jlIigFn4oP4zjNPK3LhcY0xSCgeb1a5L8jO71Mit9LlNoi2UfDDQ==" + } + }, + "npm:seroval-plugins": { + "type": "npm", + "name": "npm:seroval-plugins", + "data": { + "version": "1.5.0", + "packageName": "seroval-plugins", + "hash": "sha512-EAHqADIQondwRZIdeW2I636zgsODzoBDwb3PT/+7TLDWyw1Dy/Xv7iGUIEXXav7usHDE9HVhOU61irI3EnyyHA==" + } + }, + "npm:seroval": { + "type": "npm", + "name": "npm:seroval", + "data": { + "version": "1.5.0", + "packageName": "seroval", + "hash": "sha512-OE4cvmJ1uSPrKorFIH9/w/Qwuvi/IMcGbv5RKgcJ/zjA/IohDLU6SVaxFN9FwajbP7nsX0dQqMDes1whk3y+yw==" + } + }, + "npm:serve-static": { + "type": "npm", + "name": "npm:serve-static", + "data": { + "version": "2.2.0", + "packageName": "serve-static", + "hash": "sha512-61g9pCh0Vnh7IutZjtLGGpTA355+OPn2TyDv/6ivP2h/AdAVX9azsoxmg2/M6nZeQZNYBEwIcsne1mJd9oQItQ==" + } + }, + "npm:set-cookie-parser": { + "type": "npm", + "name": "npm:set-cookie-parser", + "data": { + "version": "2.7.2", + "packageName": "set-cookie-parser", + "hash": "sha512-oeM1lpU/UvhTxw+g3cIfxXHyJRc/uidd3yK1P242gzHds0udQBYzs3y8j4gCCW+ZJ7ad0yctld8RYO+bdurlvw==" + } + }, + "npm:set-function-length": { + "type": "npm", + "name": "npm:set-function-length", + "data": { + "version": "1.2.2", + "packageName": "set-function-length", + "hash": "sha512-pgRc4hJ4/sNjWCSS9AmnS40x3bNMDTknHgL5UaMBTMyJnU90EgWh1Rz+MC9eFu4BuN/UwZjKQuY/1v3rM7HMfg==" + } + }, + "npm:set-function-name": { + "type": "npm", + "name": "npm:set-function-name", + "data": { + "version": "2.0.2", + "packageName": "set-function-name", + "hash": "sha512-7PGFlmtwsEADb0WYyvCMa1t+yke6daIG4Wirafur5kcf+MhUnPms1UeR0CKQdTZD81yESwMHbtn+TR+dMviakQ==" + } + }, + "npm:set-proto": { + "type": "npm", + "name": "npm:set-proto", + "data": { + "version": "1.0.0", + "packageName": "set-proto", + "hash": "sha512-RJRdvCo6IAnPdsvP/7m6bsQqNnn1FCBX5ZNtFL98MmFF/4xAIJTIg1YbHW5DC2W5SKZanrC6i4HsJqlajw/dZw==" + } + }, + "npm:setprototypeof": { + "type": "npm", + "name": "npm:setprototypeof", + "data": { + "version": "1.2.0", + "packageName": "setprototypeof", + "hash": "sha512-E5LDX7Wrp85Kil5bhZv46j8jOeboKq5JMmYM3gVGdGH8xFpPWXUMsNrlODCrkoxMEeNi/XZIwuRvY4XNwYMJpw==" + } + }, + "npm:shallow-equal": { + "type": "npm", + "name": "npm:shallow-equal", + "data": { + "version": "3.1.0", + "packageName": "shallow-equal", + "hash": "sha512-pfVOw8QZIXpMbhBWvzBISicvToTiM5WBF1EeAUZDDSb5Dt29yl4AYbyywbJFSEsRUMr7gJaxqCdr4L3tQf9wVg==" + } + }, + "npm:sharp@0.33.5": { + "type": "npm", + "name": "npm:sharp@0.33.5", + "data": { + "version": "0.33.5", + "packageName": "sharp", + "hash": "sha512-haPVm1EkS9pgvHrQ/F3Xy+hgcuMV0Wm9vfIBSiwZ05k+xgb0PkBQpGsAA/oWdDobNaZTH5ppvHtzCFbnSEwHVw==" + } + }, + "npm:sharp": { + "type": "npm", + "name": "npm:sharp", + "data": { + "version": "0.34.5", + "packageName": "sharp", + "hash": "sha512-Ou9I5Ft9WNcCbXrU9cMgPBcCK8LiwLqcbywW3t4oDV37n1pzpuNLsYiAV8eODnjbtQlSDwZ2cUEeQz4E54Hltg==" + } + }, + "npm:shebang-command": { + "type": "npm", + "name": "npm:shebang-command", + "data": { + "version": "2.0.0", + "packageName": "shebang-command", + "hash": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==" + } + }, + "npm:shebang-regex": { + "type": "npm", + "name": "npm:shebang-regex", + "data": { + "version": "3.0.0", + "packageName": "shebang-regex", + "hash": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==" + } + }, + "npm:shell-quote": { + "type": "npm", + "name": "npm:shell-quote", + "data": { + "version": "1.8.3", + "packageName": "shell-quote", + "hash": "sha512-ObmnIF4hXNg1BqhnHmgbDETF8dLPCggZWBjkQfhZpbszZnYur5DUljTcCHii5LC3J5E0yeO/1LIMyH+UvHQgyw==" + } + }, + "npm:side-channel-list": { + "type": "npm", + "name": "npm:side-channel-list", + "data": { + "version": "1.0.0", + "packageName": "side-channel-list", + "hash": "sha512-FCLHtRD/gnpCiCHEiJLOwdmFP+wzCmDEkc9y7NsYxeF4u7Btsn1ZuwgwJGxImImHicJArLP4R0yX4c2KCrMrTA==" + } + }, + "npm:side-channel-map": { + "type": "npm", + "name": "npm:side-channel-map", + "data": { + "version": "1.0.1", + "packageName": "side-channel-map", + "hash": "sha512-VCjCNfgMsby3tTdo02nbjtM/ewra6jPHmpThenkTYh8pG9ucZ/1P8So4u4FGBek/BjpOVsDCMoLA/iuBKIFXRA==" + } + }, + "npm:side-channel-weakmap": { + "type": "npm", + "name": "npm:side-channel-weakmap", + "data": { + "version": "1.0.2", + "packageName": "side-channel-weakmap", + "hash": "sha512-WPS/HvHQTYnHisLo9McqBHOJk2FkHO/tlpvldyrnem4aeQp4hai3gythswg6p01oSoTl58rcpiFAjF2br2Ak2A==" + } + }, + "npm:side-channel": { + "type": "npm", + "name": "npm:side-channel", + "data": { + "version": "1.1.0", + "packageName": "side-channel", + "hash": "sha512-ZX99e6tRweoUXqR+VBrslhda51Nh5MTQwou5tnUDgbtyM0dBgmhEDtWGP/xbKn6hqfPRHujUNwz5fy/wbbhnpw==" + } + }, + "npm:siginfo": { + "type": "npm", + "name": "npm:siginfo", + "data": { + "version": "2.0.0", + "packageName": "siginfo", + "hash": "sha512-ybx0WO1/8bSBLEWXZvEd7gMW3Sn3JFlW3TvX1nREbDLRNQNaeNN8WK0meBwPdAaOI7TtRRRJn/Es1zhrrCHu7g==" + } + }, + "npm:signal-exit@3.0.7": { + "type": "npm", + "name": "npm:signal-exit@3.0.7", + "data": { + "version": "3.0.7", + "packageName": "signal-exit", + "hash": "sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==" + } + }, + "npm:signal-exit": { + "type": "npm", + "name": "npm:signal-exit", + "data": { + "version": "4.1.0", + "packageName": "signal-exit", + "hash": "sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==" + } + }, + "npm:simple-concat": { + "type": "npm", + "name": "npm:simple-concat", + "data": { + "version": "1.0.1", + "packageName": "simple-concat", + "hash": "sha512-cSFtAPtRhljv69IK0hTVZQ+OfE9nePi/rtJmw5UjHeVyVroEqJXP1sFztKUy1qU+xvz3u/sfYJLa947b7nAN2Q==" + } + }, + "npm:simple-get": { + "type": "npm", + "name": "npm:simple-get", + "data": { + "version": "4.0.1", + "packageName": "simple-get", + "hash": "sha512-brv7p5WgH0jmQJr1ZDDfKDOSeWWg+OVypG99A/5vYGPqJ6pxiaHLy8nxtFjBA7oMa01ebA9gfh1uMCFqOuXxvA==" + } + }, + "npm:simple-swizzle": { + "type": "npm", + "name": "npm:simple-swizzle", + "data": { + "version": "0.2.4", + "packageName": "simple-swizzle", + "hash": "sha512-nAu1WFPQSMNr2Zn9PGSZK9AGn4t/y97lEm+MXTtUDwfP0ksAIX4nO+6ruD9Jwut4C49SB1Ws+fbXsm/yScWOHw==" + } + }, + "npm:sirv": { + "type": "npm", + "name": "npm:sirv", + "data": { + "version": "3.0.2", + "packageName": "sirv", + "hash": "sha512-2wcC/oGxHis/BoHkkPwldgiPSYcpZK3JU28WoMVv55yHJgcZ8rlXvuG9iZggz+sU1d4bRgIGASwyWqjxu3FM0g==" + } + }, + "npm:slash": { + "type": "npm", + "name": "npm:slash", + "data": { + "version": "5.1.0", + "packageName": "slash", + "hash": "sha512-ZA6oR3T/pEyuqwMgAKT0/hAv8oAXckzbkmR0UkUosQ+Mc4RxGoJkRmwHgHufaenlyAgE1Mxgpdcrf75y6XcnDg==" + } + }, + "npm:smart-buffer": { + "type": "npm", + "name": "npm:smart-buffer", + "data": { + "version": "4.2.0", + "packageName": "smart-buffer", + "hash": "sha512-94hK0Hh8rPqQl2xXc3HsaBoOXKV20MToPkcXvwbISWLEs+64sBq5kFgn2kJDHb1Pry9yrP0dxrCI9RRci7RXKg==" + } + }, + "npm:smol-toml": { + "type": "npm", + "name": "npm:smol-toml", + "data": { + "version": "1.5.2", + "packageName": "smol-toml", + "hash": "sha512-QlaZEqcAH3/RtNyet1IPIYPsEWAaYyXXv1Krsi+1L/QHppjX4Ifm8MQsBISz9vE8cHicIq3clogsheili5vhaQ==" + } + }, + "npm:socks-proxy-agent": { + "type": "npm", + "name": "npm:socks-proxy-agent", + "data": { + "version": "8.0.5", + "packageName": "socks-proxy-agent", + "hash": "sha512-HehCEsotFqbPW9sJ8WVYB6UbmIMv7kUUORIF2Nncq4VQvBfNBLibW9YZR5dlYCSUhwcD628pRllm7n+E+YTzJw==" + } + }, + "npm:socks": { + "type": "npm", + "name": "npm:socks", + "data": { + "version": "2.8.7", + "packageName": "socks", + "hash": "sha512-HLpt+uLy/pxB+bum/9DzAgiKS8CX1EvbWxI4zlmgGCExImLdiad2iCwXT5Z4c9c3Eq8rP2318mPW2c+QbtjK8A==" + } + }, + "npm:solid-element": { + "type": "npm", + "name": "npm:solid-element", + "data": { + "version": "1.9.1", + "packageName": "solid-element", + "hash": "sha512-baJy6Qz27oAUgkPlqOf3Y+7RsBiuVQrS51Nrh1ddDbrqrNPvJbIvehpUsTzLNFb2ZHIoHuNnDg330go/ZKcRdg==" + } + }, + "npm:solid-js": { + "type": "npm", + "name": "npm:solid-js", + "data": { + "version": "1.9.11", + "packageName": "solid-js", + "hash": "sha512-WEJtcc5mkh/BnHA6Yrg4whlF8g6QwpmXXRg4P2ztPmcKeHHlH4+djYecBLhSpecZY2RRECXYUwIc/C2r3yzQ4Q==" + } + }, + "npm:solid-motionone": { + "type": "npm", + "name": "npm:solid-motionone", + "data": { + "version": "1.0.4", + "packageName": "solid-motionone", + "hash": "sha512-aqEjgecoO9raDFznu/dEci7ORSmA26Kjj9J4Cn1Gyr0GZuOVdvsNxdxClTL9J40Aq/uYFx4GLwC8n70fMLHiuA==" + } + }, + "npm:solid-refresh": { + "type": "npm", + "name": "npm:solid-refresh", + "data": { + "version": "0.6.3", + "packageName": "solid-refresh", + "hash": "sha512-F3aPsX6hVw9ttm5LYlth8Q15x6MlI/J3Dn+o3EQyRTtTxidepSTwAYdozt01/YA+7ObcciagGEyXIopGZzQtbA==" + } + }, + "npm:sonic-boom": { + "type": "npm", + "name": "npm:sonic-boom", + "data": { + "version": "4.2.1", + "packageName": "sonic-boom", + "hash": "sha512-w6AxtubXa2wTXAUsZMMWERrsIRAdrK0Sc+FUytWvYAhBJLyuI4llrMIC1DtlNSdI99EI86KZum2MMq3EAZlF9Q==" + } + }, + "npm:source-map-js": { + "type": "npm", + "name": "npm:source-map-js", + "data": { + "version": "1.2.1", + "packageName": "source-map-js", + "hash": "sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA==" + } + }, + "npm:source-map-support": { + "type": "npm", + "name": "npm:source-map-support", + "data": { + "version": "0.5.21", + "packageName": "source-map-support", + "hash": "sha512-uBHU3L3czsIyYXKX88fdrGovxdSCoTGDRZ6SYXtSRxLZUzHg5P/66Ht6uoUlHu9EZod+inXhKo3qQgwXUT/y1w==" + } + }, + "npm:source-map": { + "type": "npm", + "name": "npm:source-map", + "data": { + "version": "0.6.1", + "packageName": "source-map", + "hash": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==" + } + }, + "npm:source-map@0.7.6": { + "type": "npm", + "name": "npm:source-map@0.7.6", + "data": { + "version": "0.7.6", + "packageName": "source-map", + "hash": "sha512-i5uvt8C3ikiWeNZSVZNWcfZPItFQOsYTUAOkcUPGd8DqDy1uOUikjt5dG+uRlwyvR108Fb9DOd4GvXfT0N2/uQ==" + } + }, + "npm:split2": { + "type": "npm", + "name": "npm:split2", + "data": { + "version": "4.2.0", + "packageName": "split2", + "hash": "sha512-UcjcJOWknrNkF6PLX83qcHM6KHgVKNkV62Y8a5uYDVv9ydGQVwAHMKqHdJje1VTWpljG0WYpCDhrCdAOYH4TWg==" + } + }, + "npm:sprintf-js": { + "type": "npm", + "name": "npm:sprintf-js", + "data": { + "version": "1.0.3", + "packageName": "sprintf-js", + "hash": "sha512-D9cPgkvLlV3t3IzL0D0YLvGA9Ahk4PcvVwUbN0dSGr1aP0Nrt4AEnTUbuGvquEC0mA64Gqt1fzirlRs5ibXx8g==" + } + }, + "npm:sqlstring": { + "type": "npm", + "name": "npm:sqlstring", + "data": { + "version": "2.3.3", + "packageName": "sqlstring", + "hash": "sha512-qC9iz2FlN7DQl3+wjwn3802RTyjCx7sDvfQEXchwa6CWOx07/WVfh91gBmQ9fahw8snwGEWU3xGzOt4tFyHLxg==" + } + }, + "npm:squirrelly": { + "type": "npm", + "name": "npm:squirrelly", + "data": { + "version": "9.1.0", + "packageName": "squirrelly", + "hash": "sha512-kvjFqb7qzC4gX4lkqSaU8QPvUHhDLMiDpxpz7a66vjTH0JtjLJqAXbPrc7ST61EefuuuW05sne2rjGskunrF2A==" + } + }, + "npm:srvx": { + "type": "npm", + "name": "npm:srvx", + "data": { + "version": "0.9.8", + "packageName": "srvx", + "hash": "sha512-RZaxTKJEE/14HYn8COLuUOJAt0U55N9l1Xf6jj+T0GoA01EUH1Xz5JtSUOI+EHn+AEgPCVn7gk6jHJffrr06fQ==" + } + }, + "npm:ssri": { + "type": "npm", + "name": "npm:ssri", + "data": { + "version": "12.0.0", + "packageName": "ssri", + "hash": "sha512-S7iGNosepx9RadX82oimUkvr0Ct7IjJbEbs4mJcTxst8um95J3sDYU1RBEOvdu6oL1Wek2ODI5i4MAw+dZ6cAQ==" + } + }, + "npm:stable": { + "type": "npm", + "name": "npm:stable", + "data": { + "version": "0.1.8", + "packageName": "stable", + "hash": "sha512-ji9qxRnOVfcuLDySj9qzhGSEFVobyt1kIOSkj1qZzYLzq7Tos/oUUWvotUPQLlrsidqsK6tBH89Bc9kL5zHA6w==" + } + }, + "npm:stackback": { + "type": "npm", + "name": "npm:stackback", + "data": { + "version": "0.0.2", + "packageName": "stackback", + "hash": "sha512-1XMJE5fQo1jGH6Y/7ebnwPOBEkIEnT4QF32d5R1+VXdXveM0IBMJt8zfaxX1P3QhVwrYe+576+jkANtSS2mBbw==" + } + }, + "npm:standaloner": { + "type": "npm", + "name": "npm:standaloner", + "data": { + "version": "0.1.11", + "packageName": "standaloner", + "hash": "sha512-JeLFj5rKTmy3UJj7/oGUVnmFaBIWmJQVP5Hv3s2D6Ju8kVPZYbGxOhMQS45QiEr2V0ngI83d/Vv4Zh62Ojs/rQ==" + } + }, + "npm:standaloner@0.2.2": { + "type": "npm", + "name": "npm:standaloner@0.2.2", + "data": { + "version": "0.2.2", + "packageName": "standaloner", + "hash": "sha512-u2petNp6YcEvRM96SIynC/ly4UI3EsevXGzdUcdAmXn7vA7iFaQCLd5+uyWRc7wSUsHfXck6VLEPrmI03Uy5Ug==" + } + }, + "npm:statuses": { + "type": "npm", + "name": "npm:statuses", + "data": { + "version": "2.0.2", + "packageName": "statuses", + "hash": "sha512-DvEy55V3DB7uknRo+4iOGT5fP1slR8wQohVdknigZPMpMstaKJQWhwiYBACJE3Ul2pTnATihhBYnRhZQHGBiRw==" + } + }, + "npm:std-env@3.10.0": { + "type": "npm", + "name": "npm:std-env@3.10.0", + "data": { + "version": "3.10.0", + "packageName": "std-env", + "hash": "sha512-5GS12FdOZNliM5mAOxFRg7Ir0pWz8MdpYm6AY6VPkGpbA7ZzmbzNcBJQ0GPvvyWgcY7QAhCgf9Uy89I03faLkg==" + } + }, + "npm:std-env": { + "type": "npm", + "name": "npm:std-env", + "data": { + "version": "4.0.0", + "packageName": "std-env", + "hash": "sha512-zUMPtQ/HBY3/50VbpkupYHbRroTRZJPRLvreamgErJVys0ceuzMkD44J/QjqhHjOzK42GQ3QZIeFG1OYfOtKqQ==" + } + }, + "npm:stop-iteration-iterator": { + "type": "npm", + "name": "npm:stop-iteration-iterator", + "data": { + "version": "1.1.0", + "packageName": "stop-iteration-iterator", + "hash": "sha512-eLoXW/DHyl62zxY4SCaIgnRhuMr6ri4juEYARS8E6sCEqzKpOiE521Ucofdx+KnDZl5xmvGYaaKCk5FEOxJCoQ==" + } + }, + "npm:stoppable": { + "type": "npm", + "name": "npm:stoppable", + "data": { + "version": "1.1.0", + "packageName": "stoppable", + "hash": "sha512-KXDYZ9dszj6bzvnEMRYvxgeTHU74QBFL54XKtP3nyMuJ81CFYtABZ3bAzL2EdFUaEwJOBOgENyFj3R7oTzDyyw==" + } + }, + "npm:streamx": { + "type": "npm", + "name": "npm:streamx", + "data": { + "version": "2.23.0", + "packageName": "streamx", + "hash": "sha512-kn+e44esVfn2Fa/O0CPFcex27fjIL6MkVae0Mm6q+E6f0hWv578YCERbv+4m02cjxvDsPKLnmxral/rR6lBMAg==" + } + }, + "npm:string-width": { + "type": "npm", + "name": "npm:string-width", + "data": { + "version": "4.2.3", + "packageName": "string-width", + "hash": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==" + } + }, + "npm:string-width@5.1.2": { + "type": "npm", + "name": "npm:string-width@5.1.2", + "data": { + "version": "5.1.2", + "packageName": "string-width", + "hash": "sha512-HnLOCR3vjcY8beoNLtcjZ5/nxn2afmME6lhrDrebokqMap+XbeW8n9TXpPDOqdGK5qcI3oT0GKTW6wC7EMiVqA==" + } + }, + "npm:string-width-cjs": { + "type": "npm", + "name": "npm:string-width-cjs", + "data": { + "version": "npm:string-width@4.2.3", + "packageName": "string-width-cjs", + "hash": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==" + } + }, + "npm:string.prototype.matchall": { + "type": "npm", + "name": "npm:string.prototype.matchall", + "data": { + "version": "4.0.12", + "packageName": "string.prototype.matchall", + "hash": "sha512-6CC9uyBL+/48dYizRf7H7VAYCMCNTBeM78x/VTUe9bFEaxBepPJDa1Ow99LqI/1yF7kuy7Q3cQsYMrcjGUcskA==" + } + }, + "npm:string.prototype.repeat": { + "type": "npm", + "name": "npm:string.prototype.repeat", + "data": { + "version": "1.0.0", + "packageName": "string.prototype.repeat", + "hash": "sha512-0u/TldDbKD8bFCQ/4f5+mNRrXwZ8hg2w7ZR8wa16e8z9XpePWl3eGEcUD0OXpEH/VJH/2G3gjUtR3ZOiBe2S/w==" + } + }, + "npm:string.prototype.trim": { + "type": "npm", + "name": "npm:string.prototype.trim", + "data": { + "version": "1.2.10", + "packageName": "string.prototype.trim", + "hash": "sha512-Rs66F0P/1kedk5lyYyH9uBzuiI/kNRmwJAR9quK6VOtIpZ2G+hMZd+HQbbv25MgCA6gEffoMZYxlTod4WcdrKA==" + } + }, + "npm:string.prototype.trimend": { + "type": "npm", + "name": "npm:string.prototype.trimend", + "data": { + "version": "1.0.9", + "packageName": "string.prototype.trimend", + "hash": "sha512-G7Ok5C6E/j4SGfyLCloXTrngQIQU3PWtXGst3yM7Bea9FRURf1S42ZHlZZtsNque2FN2PoUhfZXYLNWwEr4dLQ==" + } + }, + "npm:string.prototype.trimstart": { + "type": "npm", + "name": "npm:string.prototype.trimstart", + "data": { + "version": "1.0.8", + "packageName": "string.prototype.trimstart", + "hash": "sha512-UXSH262CSZY1tfu3G3Secr6uGLCFVPMhIqHjlgCUtCCcgihYc/xKs9djMTMUOb2j1mVSeU8EU6NWc/iQKU6Gfg==" + } + }, + "npm:string_decoder": { + "type": "npm", + "name": "npm:string_decoder", + "data": { + "version": "1.3.0", + "packageName": "string_decoder", + "hash": "sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA==" + } + }, + "npm:strip-ansi@6.0.1": { + "type": "npm", + "name": "npm:strip-ansi@6.0.1", + "data": { + "version": "6.0.1", + "packageName": "strip-ansi", + "hash": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==" + } + }, + "npm:strip-ansi": { + "type": "npm", + "name": "npm:strip-ansi", + "data": { + "version": "7.1.2", + "packageName": "strip-ansi", + "hash": "sha512-gmBGslpoQJtgnMAvOVqGZpEz9dyoKTCzy2nfz/n8aIFhN/jCE/rCmcxabB6jOOHV+0WNnylOxaxBQPSvcWklhA==" + } + }, + "npm:strip-ansi-cjs": { + "type": "npm", + "name": "npm:strip-ansi-cjs", + "data": { + "version": "npm:strip-ansi@6.0.1", + "packageName": "strip-ansi-cjs", + "hash": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==" + } + }, + "npm:strip-bom": { + "type": "npm", + "name": "npm:strip-bom", + "data": { + "version": "3.0.0", + "packageName": "strip-bom", + "hash": "sha512-vavAMRXOgBVNF6nyEEmL3DBK19iRpDcoIwW+swQ+CbGiu7lju6t+JklA1MHweoWtadgt4ISVUsXLyDq34ddcwA==" + } + }, + "npm:strip-final-newline": { + "type": "npm", + "name": "npm:strip-final-newline", + "data": { + "version": "4.0.0", + "packageName": "strip-final-newline", + "hash": "sha512-aulFJcD6YK8V1G7iRB5tigAP4TsHBZZrOV8pjV++zdUwmeV8uzbY7yn6h9MswN62adStNZFuCIx4haBnRuMDaw==" + } + }, + "npm:strip-json-comments@2.0.1": { + "type": "npm", + "name": "npm:strip-json-comments@2.0.1", + "data": { + "version": "2.0.1", + "packageName": "strip-json-comments", + "hash": "sha512-4gB8na07fecVVkOI6Rs4e7T6NOTki5EmL7TUduTs6bu3EdnSycntVJ4re8kgZA+wx9IueI2Y11bfbgwtzuE0KQ==" + } + }, + "npm:strip-json-comments@3.1.1": { + "type": "npm", + "name": "npm:strip-json-comments@3.1.1", + "data": { + "version": "3.1.1", + "packageName": "strip-json-comments", + "hash": "sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==" + } + }, + "npm:strip-json-comments": { + "type": "npm", + "name": "npm:strip-json-comments", + "data": { + "version": "5.0.3", + "packageName": "strip-json-comments", + "hash": "sha512-1tB5mhVo7U+ETBKNf92xT4hrQa3pm0MZ0PQvuDnWgAAGHDsfp4lPSpiS6psrSiet87wyGPh9ft6wmhOMQ0hDiw==" + } + }, + "npm:style-to-object": { + "type": "npm", + "name": "npm:style-to-object", + "data": { + "version": "1.0.11", + "packageName": "style-to-object", + "hash": "sha512-5A560JmXr7wDyGLK12Nq/EYS38VkGlglVzkis1JEdbGWSnbQIEhZzTJhzURXN5/8WwwFCs/f/VVcmkTppbXLow==" + } + }, + "npm:stylehacks": { + "type": "npm", + "name": "npm:stylehacks", + "data": { + "version": "5.1.1", + "packageName": "stylehacks", + "hash": "sha512-sBpcd5Hx7G6seo7b1LkpttvTz7ikD0LlH5RmdcBNb6fFR0Fl7LQwHDFr300q4cwUqi+IYrFGmsIHieMBfnN/Bw==" + } + }, + "npm:sugarss": { + "type": "npm", + "name": "npm:sugarss", + "data": { + "version": "5.0.1", + "packageName": "sugarss", + "hash": "sha512-ctS5RYCBVvPoZAnzIaX5QSShK8ZiZxD5HUqSxlusvEMC+QZQIPCPOIJg6aceFX+K2rf4+SH89eu++h1Zmsr2nw==" + } + }, + "npm:superlock": { + "type": "npm", + "name": "npm:superlock", + "data": { + "version": "1.2.6", + "packageName": "superlock", + "hash": "sha512-V8XeWhjfZK1YA80gEGppesCtwXwGaqqoy1IoPRCZaap+sSgsDtRatAQlEfwoyHaHuR/ZR9KIk7JEpY96oRJ7TA==" + } + }, + "npm:supports-color@10.2.2": { + "type": "npm", + "name": "npm:supports-color@10.2.2", + "data": { + "version": "10.2.2", + "packageName": "supports-color", + "hash": "sha512-SS+jx45GF1QjgEXQx4NJZV9ImqmO2NPz5FNsIHrsDjh2YsHnawpan7SNQ1o8NuhrbHZy9AZhIoCUiCeaW/C80g==" + } + }, + "npm:supports-color": { + "type": "npm", + "name": "npm:supports-color", + "data": { + "version": "7.2.0", + "packageName": "supports-color", + "hash": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==" + } + }, + "npm:supports-preserve-symlinks-flag": { + "type": "npm", + "name": "npm:supports-preserve-symlinks-flag", + "data": { + "version": "1.0.0", + "packageName": "supports-preserve-symlinks-flag", + "hash": "sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==" + } + }, + "npm:svg-gradient": { + "type": "npm", + "name": "npm:svg-gradient", + "data": { + "version": "1.0.4", + "packageName": "svg-gradient", + "hash": "sha512-ugzdjn3dVLI3NG/UXzgL8hRcFS1Dwcj/EzXJ04F6EGgHGc5BbCGND3MhLcYsHeUICoUBnzbTXgNUKK2wMPm10Q==" + } + }, + "npm:svgo": { + "type": "npm", + "name": "npm:svgo", + "data": { + "version": "2.8.0", + "packageName": "svgo", + "hash": "sha512-+N/Q9kV1+F+UeWYoSiULYo4xYSDQlTgb+ayMobAXPwMnLvop7oxKMo9OzIrX5x3eS4L4f2UHhc9axXwY8DpChg==" + } + }, + "npm:synckit": { + "type": "npm", + "name": "npm:synckit", + "data": { + "version": "0.11.12", + "packageName": "synckit", + "hash": "sha512-Bh7QjT8/SuKUIfObSXNHNSK6WHo6J1tHCqJsuaFDP7gP0fkzSfTxI8y85JrppZ0h8l0maIgc2tfuZQ6/t3GtnQ==" + } + }, + "npm:tabbable": { + "type": "npm", + "name": "npm:tabbable", + "data": { + "version": "6.2.0", + "packageName": "tabbable", + "hash": "sha512-Cat63mxsVJlzYvN51JmVXIgNoUokrIaT2zLclCXjRd8boZ0004U4KCs/sToJ75C6sdlByWxpYnb5Boif1VSFew==" + } + }, + "npm:tailwind-merge": { + "type": "npm", + "name": "npm:tailwind-merge", + "data": { + "version": "3.5.0", + "packageName": "tailwind-merge", + "hash": "sha512-I8K9wewnVDkL1NTGoqWmVEIlUcB9gFriAEkXkfCjX5ib8ezGxtR3xD7iZIxrfArjEsH7F1CHD4RFUtxefdqV/A==" + } + }, + "npm:tailwindcss": { + "type": "npm", + "name": "npm:tailwindcss", + "data": { + "version": "4.2.2", + "packageName": "tailwindcss", + "hash": "sha512-KWBIxs1Xb6NoLdMVqhbhgwZf2PGBpPEiwOqgI4pFIYbNTfBXiKYyWoTsXgBQ9WFg/OlhnvHaY+AEpW7wSmFo2Q==" + } + }, + "npm:tapable": { + "type": "npm", + "name": "npm:tapable", + "data": { + "version": "2.3.0", + "packageName": "tapable", + "hash": "sha512-g9ljZiwki/LfxmQADO3dEY1CbpmXT5Hm2fJ+QaGKwSXUylMybePR7/67YW7jOrrvjEgL1Fmz5kzyAjWVWLlucg==" + } + }, + "npm:tar-fs@2.1.4": { + "type": "npm", + "name": "npm:tar-fs@2.1.4", + "data": { + "version": "2.1.4", + "packageName": "tar-fs", + "hash": "sha512-mDAjwmZdh7LTT6pNleZ05Yt65HC3E+NiQzl672vQG38jIrehtJk/J3mNwIg+vShQPcLF/LV7CMnDW6vjj6sfYQ==" + } + }, + "npm:tar-fs": { + "type": "npm", + "name": "npm:tar-fs", + "data": { + "version": "3.1.1", + "packageName": "tar-fs", + "hash": "sha512-LZA0oaPOc2fVo82Txf3gw+AkEd38szODlptMYejQUhndHMLQ9M059uXR+AfS7DNo0NpINvSqDsvyaCrBVkptWg==" + } + }, + "npm:tar-stream": { + "type": "npm", + "name": "npm:tar-stream", + "data": { + "version": "2.2.0", + "packageName": "tar-stream", + "hash": "sha512-ujeqbceABgwMZxEJnk2HDY2DlnUZ+9oEcb1KzTVfYHio0UE6dG71n60d8D2I4qNvleWrrXpmjpt7vZeF1LnMZQ==" + } + }, + "npm:tar-stream@3.1.7": { + "type": "npm", + "name": "npm:tar-stream@3.1.7", + "data": { + "version": "3.1.7", + "packageName": "tar-stream", + "hash": "sha512-qJj60CXt7IU1Ffyc3NJMjh6EkuCFej46zUqJ4J7pqYlThyd9bO0XBTmcOIhSzZJVWfsLks0+nle/j538YAW9RQ==" + } + }, + "npm:tar": { + "type": "npm", + "name": "npm:tar", + "data": { + "version": "7.5.1", + "packageName": "tar", + "hash": "sha512-nlGpxf+hv0v7GkWBK2V9spgactGOp0qvfWRxUMjqHyzrt3SgwE48DIv/FhqPHJYLHpgW1opq3nERbz5Anq7n1g==" + } + }, + "npm:telefunc": { + "type": "npm", + "name": "npm:telefunc", + "data": { + "version": "0.2.19", + "packageName": "telefunc", + "hash": "sha512-bCN3OtmAsRGXrsz23BFUENGSSOXJ3+5GEu5VTWGeWNw+bnWNkoR7h24zEmvlwbYi7g7mtzGndsdEVIhoA2R87g==" + } + }, + "npm:text-decoder": { + "type": "npm", + "name": "npm:text-decoder", + "data": { + "version": "1.2.3", + "packageName": "text-decoder", + "hash": "sha512-3/o9z3X0X0fTupwsYvR03pJ/DjWuqqrfwBgTQzdWDiQSm9KitAyz/9WqsT2JQW7KV2m+bC2ol/zqpW37NHxLaA==" + } + }, + "npm:thread-stream": { + "type": "npm", + "name": "npm:thread-stream", + "data": { + "version": "4.0.0", + "packageName": "thread-stream", + "hash": "sha512-4iMVL6HAINXWf1ZKZjIPcz5wYaOdPhtO8ATvZ+Xqp3BTdaqtAwQkNmKORqcIo5YkQqGXq5cwfswDwMqqQNrpJA==" + } + }, + "npm:tinybench": { + "type": "npm", + "name": "npm:tinybench", + "data": { + "version": "2.9.0", + "packageName": "tinybench", + "hash": "sha512-0+DUvqWMValLmha6lr4kD8iAMK1HzV0/aKnCtWb9v9641TnP/MFb7Pc2bxoxQjTXAErryXVgUOfv2YqNllqGeg==" + } + }, + "npm:tinyexec": { + "type": "npm", + "name": "npm:tinyexec", + "data": { + "version": "1.0.4", + "packageName": "tinyexec", + "hash": "sha512-u9r3uZC0bdpGOXtlxUIdwf9pkmvhqJdrVCH9fapQtgy/OeTTMZ1nqH7agtvEfmGui6e1XxjcdrlxvxJvc3sMqw==" + } + }, + "npm:tinyglobby": { + "type": "npm", + "name": "npm:tinyglobby", + "data": { + "version": "0.2.15", + "packageName": "tinyglobby", + "hash": "sha512-j2Zq4NyQYG5XMST4cbs02Ak8iJUdxRM0XI5QyxXuZOzKOINmWurp3smXu3y5wDcJrptwpSjgXHzIQxR0omXljQ==" + } + }, + "npm:tinyrainbow": { + "type": "npm", + "name": "npm:tinyrainbow", + "data": { + "version": "3.0.3", + "packageName": "tinyrainbow", + "hash": "sha512-PSkbLUoxOFRzJYjjxHJt9xro7D+iilgMX/C9lawzVuYiIdcihh9DXmVibBe8lmcFrRi/VzlPjBxbN7rH24q8/Q==" + } + }, + "npm:tlds": { + "type": "npm", + "name": "npm:tlds", + "data": { + "version": "1.260.0", + "packageName": "tlds", + "hash": "sha512-78+28EWBhCEE7qlyaHA9OR3IPvbCLiDh3Ckla593TksfFc9vfTsgvH7eS+dr3o9qr31gwGbogcI16yN91PoRjQ==" + } + }, + "npm:tldts-core": { + "type": "npm", + "name": "npm:tldts-core", + "data": { + "version": "7.0.25", + "packageName": "tldts-core", + "hash": "sha512-ZjCZK0rppSBu7rjHYDYsEaMOIbbT+nWF57hKkv4IUmZWBNrBWBOjIElc0mKRgLM8bm7x/BBlof6t2gi/Oq/Asw==" + } + }, + "npm:tldts-experimental": { + "type": "npm", + "name": "npm:tldts-experimental", + "data": { + "version": "7.0.25", + "packageName": "tldts-experimental", + "hash": "sha512-rFB8lPWHAf4II9+Zdlc6dwcJLIe6sqEzndcjfbcv9PdsFTlNYBgRI4y9aJzo7VMHvg/GRaUlFK+qZUyKpcE6zA==" + } + }, + "npm:tldts": { + "type": "npm", + "name": "npm:tldts", + "data": { + "version": "7.0.17", + "packageName": "tldts", + "hash": "sha512-Y1KQBgDd/NUc+LfOtKS6mNsC9CCaH+m2P1RoIZy7RAPo3C3/t8X45+zgut31cRZtZ3xKPjfn3TkGTrctC2TQIQ==" + } + }, + "npm:tmp": { + "type": "npm", + "name": "npm:tmp", + "data": { + "version": "0.2.5", + "packageName": "tmp", + "hash": "sha512-voyz6MApa1rQGUxT3E+BK7/ROe8itEx7vD8/HEvt4xwXucvQ5G5oeEiHkmHZJuBO21RpOf+YYm9MOivj709jow==" + } + }, + "npm:to-regex-range": { + "type": "npm", + "name": "npm:to-regex-range", + "data": { + "version": "5.0.1", + "packageName": "to-regex-range", + "hash": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==" + } + }, + "npm:toad-cache": { + "type": "npm", + "name": "npm:toad-cache", + "data": { + "version": "3.7.0", + "packageName": "toad-cache", + "hash": "sha512-/m8M+2BJUpoJdgAHoG+baCwBT+tf2VraSfkBgl0Y00qIWt41DJ8R5B8nsEw0I58YwF5IZH6z24/2TobDKnqSWw==" + } + }, + "npm:toidentifier": { + "type": "npm", + "name": "npm:toidentifier", + "data": { + "version": "1.0.1", + "packageName": "toidentifier", + "hash": "sha512-o5sSPKEkg/DIQNmH43V0/uerLrpzVedkUh8tGNvaeXpfpuwjKenlSox/2O/BTlZUtEe+JG7s5YhEz608PlAHRA==" + } + }, + "npm:totalist": { + "type": "npm", + "name": "npm:totalist", + "data": { + "version": "3.0.1", + "packageName": "totalist", + "hash": "sha512-sf4i37nQ2LBx4m3wB74y+ubopq6W/dIzXg0FDGjsYnZHVa1Da8FH853wlL2gtUhg+xJXjfk3kUZS3BRoQeoQBQ==" + } + }, + "npm:tough-cookie": { + "type": "npm", + "name": "npm:tough-cookie", + "data": { + "version": "6.0.0", + "packageName": "tough-cookie", + "hash": "sha512-kXuRi1mtaKMrsLUxz3sQYvVl37B0Ns6MzfrtV5DvJceE9bPyspOqk9xxv7XbZWcfLWbFmm997vl83qUWVJA64w==" + } + }, + "npm:tr46": { + "type": "npm", + "name": "npm:tr46", + "data": { + "version": "0.0.3", + "packageName": "tr46", + "hash": "sha512-N3WMsuqV66lT30CrXNbEjx4GEwlow3v6rr4mCcv6prnfwhS01rkgyFdjPNBYd9br7LpXV1+Emh01fHnq2Gdgrw==" + } + }, + "npm:tree-kill": { + "type": "npm", + "name": "npm:tree-kill", + "data": { + "version": "1.2.2", + "packageName": "tree-kill", + "hash": "sha512-L0Orpi8qGpRG//Nd+H90vFB+3iHnue1zSSGmNOOCh1GLJ7rUKVwV2HvijphGQS2UmhUZewS9VgvxYIdgr+fG1A==" + } + }, + "npm:ts-api-utils": { + "type": "npm", + "name": "npm:ts-api-utils", + "data": { + "version": "2.4.0", + "packageName": "ts-api-utils", + "hash": "sha512-3TaVTaAv2gTiMB35i3FiGJaRfwb3Pyn/j3m/bfAvGe8FB7CF6u+LMYqYlDh7reQf7UNvoTvdfAqHGmPGOSsPmA==" + } + }, + "npm:ts-deepmerge": { + "type": "npm", + "name": "npm:ts-deepmerge", + "data": { + "version": "7.0.3", + "packageName": "ts-deepmerge", + "hash": "sha512-Du/ZW2RfwV/D4cmA5rXafYjBQVuvu4qGiEEla4EmEHVHgRdx68Gftx7i66jn2bzHPwSVZY36Ae6OuDn9el4ZKA==" + } + }, + "npm:ts-morph": { + "type": "npm", + "name": "npm:ts-morph", + "data": { + "version": "26.0.0", + "packageName": "ts-morph", + "hash": "sha512-ztMO++owQnz8c/gIENcM9XfCEzgoGphTv+nKpYNM1bgsdOVC/jRZuEBf6N+mLLDNg68Kl+GgUZfOySaRiG1/Ug==" + } + }, + "npm:tsconfig-paths": { + "type": "npm", + "name": "npm:tsconfig-paths", + "data": { + "version": "4.2.0", + "packageName": "tsconfig-paths", + "hash": "sha512-NoZ4roiN7LnbKn9QqE1amc9DJfzvZXxF4xDavcOWt1BPkdx+m+0gJuPM+S0vCe7zTJMYUP0R8pO2XMr+Y8oLIg==" + } + }, + "npm:tsdown": { + "type": "npm", + "name": "npm:tsdown", + "data": { + "version": "0.21.4", + "packageName": "tsdown", + "hash": "sha512-Q/kBi8SXkr4X6JI/NAZKZY1UuiEcbuXtIskL4tZCsgpDiEPM/2W6lC+OonNA31S+V3KsWedFvbFDBs23hvt+Aw==" + } + }, + "npm:tslib": { + "type": "npm", + "name": "npm:tslib", + "data": { + "version": "2.8.1", + "packageName": "tslib", + "hash": "sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w==" + } + }, + "npm:tsx": { + "type": "npm", + "name": "npm:tsx", + "data": { + "version": "4.21.0", + "packageName": "tsx", + "hash": "sha512-5C1sg4USs1lfG0GFb2RLXsdpXqBSEhAaA/0kPL01wxzpMqLILNxIxIOKiILz+cdg/pLnOUxFYOR5yhHU666wbw==" + } + }, + "npm:tunnel-agent": { + "type": "npm", + "name": "npm:tunnel-agent", + "data": { + "version": "0.6.0", + "packageName": "tunnel-agent", + "hash": "sha512-McnNiV1l8RYeY8tBgEpuodCC1mLUdbSN+CYBL7kJsJNInOP8UjDDEwdk6Mw60vdLLrr5NHKZhMAOSrR2NZuQ+w==" + } + }, + "npm:turbo": { + "type": "npm", + "name": "npm:turbo", + "data": { + "version": "2.8.20", + "packageName": "turbo", + "hash": "sha512-Rb4qk5YT8RUwwdXtkLpkVhNEe/lor6+WV7S5tTlLpxSz6MjV5Qi8jGNn4gS6NAvrYGA/rNrE6YUQM85sCZUDbQ==" + } + }, + "npm:tw-animate-css": { + "type": "npm", + "name": "npm:tw-animate-css", + "data": { + "version": "1.4.0", + "packageName": "tw-animate-css", + "hash": "sha512-7bziOlRqH0hJx80h/3mbicLW7o8qLsH5+RaLR2t+OHM3D0JlWGODQKQ4cxbK7WlvmUxpcj6Kgu6EKqjrGFe3QQ==" + } + }, + "npm:type-check": { + "type": "npm", + "name": "npm:type-check", + "data": { + "version": "0.4.0", + "packageName": "type-check", + "hash": "sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==" + } + }, + "npm:type-fest@0.20.2": { + "type": "npm", + "name": "npm:type-fest@0.20.2", + "data": { + "version": "0.20.2", + "packageName": "type-fest", + "hash": "sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==" + } + }, + "npm:type-fest": { + "type": "npm", + "name": "npm:type-fest", + "data": { + "version": "4.41.0", + "packageName": "type-fest", + "hash": "sha512-TeTSQ6H5YHvpqVwBRcnLDCBnDOHWYu7IvGbHT6N8AOymcr9PJGjc1GTtiWZTYg0NCgYwvnYWEkVChQAr9bjfwA==" + } + }, + "npm:type-is": { + "type": "npm", + "name": "npm:type-is", + "data": { + "version": "2.0.1", + "packageName": "type-is", + "hash": "sha512-OZs6gsjF4vMp32qrCbiVSkrFmXtG/AZhY3t0iAMrMBiAZyV9oALtXO8hsrHbMXF9x6L3grlFuwW2oAz7cav+Gw==" + } + }, + "npm:type-level-regexp": { + "type": "npm", + "name": "npm:type-level-regexp", + "data": { + "version": "0.1.17", + "packageName": "type-level-regexp", + "hash": "sha512-wTk4DH3cxwk196uGLK/E9pE45aLfeKJacKmcEgEOA/q5dnPGNxXt0cfYdFxb57L+sEpf1oJH4Dnx/pnRcku9jg==" + } + }, + "npm:typed-array-buffer": { + "type": "npm", + "name": "npm:typed-array-buffer", + "data": { + "version": "1.0.3", + "packageName": "typed-array-buffer", + "hash": "sha512-nAYYwfY3qnzX30IkA6AQZjVbtK6duGontcQm1WSG1MD94YLqK0515GNApXkoxKOWMusVssAHWLh9SeaoefYFGw==" + } + }, + "npm:typed-array-byte-length": { + "type": "npm", + "name": "npm:typed-array-byte-length", + "data": { + "version": "1.0.3", + "packageName": "typed-array-byte-length", + "hash": "sha512-BaXgOuIxz8n8pIq3e7Atg/7s+DpiYrxn4vdot3w9KbnBhcRQq6o3xemQdIfynqSeXeDrF32x+WvfzmOjPiY9lg==" + } + }, + "npm:typed-array-byte-offset": { + "type": "npm", + "name": "npm:typed-array-byte-offset", + "data": { + "version": "1.0.4", + "packageName": "typed-array-byte-offset", + "hash": "sha512-bTlAFB/FBYMcuX81gbL4OcpH5PmlFHqlCCpAl8AlEzMz5k53oNDvN8p1PNOWLEmI2x4orp3raOFB51tv9X+MFQ==" + } + }, + "npm:typed-array-length": { + "type": "npm", + "name": "npm:typed-array-length", + "data": { + "version": "1.0.7", + "packageName": "typed-array-length", + "hash": "sha512-3KS2b+kL7fsuk/eJZ7EQdnEmQoaho/r6KUef7hxvltNA5DR8NAUM+8wJMbJyZ4G9/7i3v5zPBIMN5aybAh2/Jg==" + } + }, + "npm:typed-query-selector": { + "type": "npm", + "name": "npm:typed-query-selector", + "data": { + "version": "2.12.1", + "packageName": "typed-query-selector", + "hash": "sha512-uzR+FzI8qrUEIu96oaeBJmd9E7CFEiQ3goA5qCVgc4s5llSubcfGHq9yUstZx/k4s9dXHVKsE35YWoFyvEqEHA==" + } + }, + "npm:typescript-eslint": { + "type": "npm", + "name": "npm:typescript-eslint", + "data": { + "version": "8.57.1", + "packageName": "typescript-eslint", + "hash": "sha512-fLvZWf+cAGw3tqMCYzGIU6yR8K+Y9NT2z23RwOjlNFF2HwSB3KhdEFI5lSBv8tNmFkkBShSjsCjzx1vahZfISA==" + } + }, + "npm:typescript": { + "type": "npm", + "name": "npm:typescript", + "data": { + "version": "6.0.2", + "packageName": "typescript", + "hash": "sha512-bGdAIrZ0wiGDo5l8c++HWtbaNCWTS4UTv7RaTH/ThVIgjkveJt83m74bBHMJkuCbslY8ixgLBVZJIOiQlQTjfQ==" + } + }, + "npm:ufo": { + "type": "npm", + "name": "npm:ufo", + "data": { + "version": "1.6.3", + "packageName": "ufo", + "hash": "sha512-yDJTmhydvl5lJzBmy/hyOAA0d+aqCBuwl818haVdYCRrWV84o7YyeVm4QlVHStqNrrJSTb6jKuFAVqAFsr+K3Q==" + } + }, + "npm:unbash": { + "type": "npm", + "name": "npm:unbash", + "data": { + "version": "2.2.0", + "packageName": "unbash", + "hash": "sha512-X2wH19RAPZE3+ldGicOkoj/SIA83OIxcJ6Cuaw23hf8Xc6fQpvZXY0SftE2JgS0QhYLUG4uwodSI3R53keyh7w==" + } + }, + "npm:unbox-primitive": { + "type": "npm", + "name": "npm:unbox-primitive", + "data": { + "version": "1.1.0", + "packageName": "unbox-primitive", + "hash": "sha512-nWJ91DjeOkej/TA8pXQ3myruKpKEYgqvpw9lz4OPHj/NWFNluYrjbz9j01CJ8yKQd2g4jFoOkINCTW2I5LEEyw==" + } + }, + "npm:unconfig-core": { + "type": "npm", + "name": "npm:unconfig-core", + "data": { + "version": "7.5.0", + "packageName": "unconfig-core", + "hash": "sha512-Su3FauozOGP44ZmKdHy2oE6LPjk51M/TRRjHv2HNCWiDvfvCoxC2lno6jevMA91MYAdCdwP05QnWdWpSbncX/w==" + } + }, + "npm:unconfig": { + "type": "npm", + "name": "npm:unconfig", + "data": { + "version": "7.5.0", + "packageName": "unconfig", + "hash": "sha512-oi8Qy2JV4D3UQ0PsopR28CzdQ3S/5A1zwsUwp/rosSbfhJ5z7b90bIyTwi/F7hCLD4SGcZVjDzd4XoUQcEanvA==" + } + }, + "npm:uncrypto": { + "type": "npm", + "name": "npm:uncrypto", + "data": { + "version": "0.1.3", + "packageName": "uncrypto", + "hash": "sha512-Ql87qFHB3s/De2ClA9e0gsnS6zXG27SkTiSJwjCc9MebbfapQfuPzumMIUMi38ezPZVNFcHI9sUIepeQfw8J8Q==" + } + }, + "npm:undici-types": { + "type": "npm", + "name": "npm:undici-types", + "data": { + "version": "6.21.0", + "packageName": "undici-types", + "hash": "sha512-iwDZqg0QAGrg9Rav5H4n0M64c3mkR59cJ6wQp+7C4nI0gsmExaedaYLNO44eT4AtBBwjbTiGPMlt2Md0T9H9JQ==" + } + }, + "npm:undici@7.14.0": { + "type": "npm", + "name": "npm:undici@7.14.0", + "data": { + "version": "7.14.0", + "packageName": "undici", + "hash": "sha512-Vqs8HTzjpQXZeXdpsfChQTlafcMQaaIwnGwLam1wudSSjlJeQ3bw1j+TLPePgrCnCpUXx7Ba5Pdpf5OBih62NQ==" + } + }, + "npm:undici": { + "type": "npm", + "name": "npm:undici", + "data": { + "version": "7.24.4", + "packageName": "undici", + "hash": "sha512-BM/JzwwaRXxrLdElV2Uo6cTLEjhSb3WXboncJamZ15NgUURmvlXvxa6xkwIOILIjPNo9i8ku136ZvWV0Uly8+w==" + } + }, + "npm:unenv": { + "type": "npm", + "name": "npm:unenv", + "data": { + "version": "2.0.0-rc.24", + "packageName": "unenv", + "hash": "sha512-i7qRCmY42zmCwnYlh9H2SvLEypEFGye5iRmEMKjcGi7zk9UquigRjFtTLz0TYqr0ZGLZhaMHl/foy1bZR+Cwlw==" + } + }, + "npm:unicorn-magic@0.3.0": { + "type": "npm", + "name": "npm:unicorn-magic@0.3.0", + "data": { + "version": "0.3.0", + "packageName": "unicorn-magic", + "hash": "sha512-+QBBXBCvifc56fsbuxZQ6Sic3wqqc3WWaqxs58gvJrcOuN83HGTCwz3oS5phzU9LthRNE9VrJCFCLUgHeeFnfA==" + } + }, + "npm:unicorn-magic": { + "type": "npm", + "name": "npm:unicorn-magic", + "data": { + "version": "0.4.0", + "packageName": "unicorn-magic", + "hash": "sha512-wH590V9VNgYH9g3lH9wWjTrUoKsjLF6sGLjhR4sH1LWpLmCOH0Zf7PukhDA8BiS7KHe4oPNkcTHqYkj7SOGUOw==" + } + }, + "npm:union": { + "type": "npm", + "name": "npm:union", + "data": { + "version": "0.5.0", + "packageName": "union", + "hash": "sha512-N6uOhuW6zO95P3Mel2I2zMsbsanvvtgn6jVqJv4vbVcz/JN0OkL9suomjQGmWtxJQXOCqUJvquc1sMeNz/IwlA==" + } + }, + "npm:unique-filename": { + "type": "npm", + "name": "npm:unique-filename", + "data": { + "version": "4.0.0", + "packageName": "unique-filename", + "hash": "sha512-XSnEewXmQ+veP7xX2dS5Q4yZAvO40cBN2MWkJ7D/6sW4Dg6wYBNwM1Vrnz1FhH5AdeLIlUXRI9e28z1YZi71NQ==" + } + }, + "npm:unique-slug": { + "type": "npm", + "name": "npm:unique-slug", + "data": { + "version": "5.0.0", + "packageName": "unique-slug", + "hash": "sha512-9OdaqO5kwqR+1kVgHAhsp5vPNU0hnxRa26rBFNfNgM7M6pNtgzeBn3s/xbyCQL3dcjzOatcef6UUHpB/6MaETg==" + } + }, + "npm:unist-util-is": { + "type": "npm", + "name": "npm:unist-util-is", + "data": { + "version": "6.0.1", + "packageName": "unist-util-is", + "hash": "sha512-LsiILbtBETkDz8I9p1dQ0uyRUWuaQzd/cuEeS1hoRSyW5E5XGmTzlwY1OrNzzakGowI9Dr/I8HVaw4hTtnxy8g==" + } + }, + "npm:unist-util-stringify-position": { + "type": "npm", + "name": "npm:unist-util-stringify-position", + "data": { + "version": "4.0.0", + "packageName": "unist-util-stringify-position", + "hash": "sha512-0ASV06AAoKCDkS2+xw5RXJywruurpbC4JZSm7nr7MOt1ojAzvyyaO+UxZf18j8FCF6kmzCZKcAgN/yu2gm2XgQ==" + } + }, + "npm:unist-util-visit-parents": { + "type": "npm", + "name": "npm:unist-util-visit-parents", + "data": { + "version": "6.0.2", + "packageName": "unist-util-visit-parents", + "hash": "sha512-goh1s1TBrqSqukSc8wrjwWhL0hiJxgA8m4kFxGlQ+8FYQ3C/m11FcTs4YYem7V664AhHVvgoQLk890Ssdsr2IQ==" + } + }, + "npm:unist-util-visit": { + "type": "npm", + "name": "npm:unist-util-visit", + "data": { + "version": "5.0.0", + "packageName": "unist-util-visit", + "hash": "sha512-MR04uvD+07cwl/yhVuVWAtw+3GOR/knlL55Nd/wAdblk27GCVt3lqpTivy/tkJcZoNPzTwS1Y+KMojlLDhoTzg==" + } + }, + "npm:unpipe": { + "type": "npm", + "name": "npm:unpipe", + "data": { + "version": "1.0.0", + "packageName": "unpipe", + "hash": "sha512-pjy2bYhSsufwWlKwPc+l3cN7+wuJlK6uz0YdJEOlQDbl6jo/YlPi4mb8agUkVC8BF7V8NuzeyPNqRksA3hztKQ==" + } + }, + "npm:unplugin-purge-polyfills": { + "type": "npm", + "name": "npm:unplugin-purge-polyfills", + "data": { + "version": "0.1.0", + "packageName": "unplugin-purge-polyfills", + "hash": "sha512-dHahgAhuzaHZHU65oY7BU24vqH/AtcXppdH1B1SmrBeglyX7NOBtkryjp2F8mOD4tL2RVxfAc41JRqRKTAeAkA==" + } + }, + "npm:unplugin": { + "type": "npm", + "name": "npm:unplugin", + "data": { + "version": "2.3.10", + "packageName": "unplugin", + "hash": "sha512-6NCPkv1ClwH+/BGE9QeoTIl09nuiAt0gS28nn1PvYXsGKRwM2TCbFA2QiilmehPDTXIe684k4rZI1yl3A1PCUw==" + } + }, + "npm:unrun": { + "type": "npm", + "name": "npm:unrun", + "data": { + "version": "0.2.32", + "packageName": "unrun", + "hash": "sha512-opd3z6791rf281JdByf0RdRQrpcc7WyzqittqIXodM/5meNWdTwrVxeyzbaCp4/Rgls/um14oUaif1gomO8YGg==" + } + }, + "npm:update-browserslist-db": { + "type": "npm", + "name": "npm:update-browserslist-db", + "data": { + "version": "1.2.2", + "packageName": "update-browserslist-db", + "hash": "sha512-E85pfNzMQ9jpKkA7+TJAi4TJN+tBCuWh5rUcS/sv6cFi+1q9LYDwDI5dpUL0u/73EElyQ8d3TEaeW4sPedBqYA==" + } + }, + "npm:uri-js": { + "type": "npm", + "name": "npm:uri-js", + "data": { + "version": "4.4.1", + "packageName": "uri-js", + "hash": "sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==" + } + }, + "npm:url-http": { + "type": "npm", + "name": "npm:url-http", + "data": { + "version": "1.3.2", + "packageName": "url-http", + "hash": "sha512-w2ooUk48t/nTJE7axsVsj+pretcM0FA1NdoUg5/H68OWj12bE8pbS6+JvqaGiU9TBaruWUDomZyC/uriT9bFNQ==" + } + }, + "npm:url-join": { + "type": "npm", + "name": "npm:url-join", + "data": { + "version": "4.0.1", + "packageName": "url-join", + "hash": "sha512-jk1+QP6ZJqyOiuEI9AEWQfju/nB2Pw466kbA0LEZljHwKeMgd9WrAEgEGxjPDD2+TNbbb37rTyhEfrCXfuKXnA==" + } + }, + "npm:url-regex-safe": { + "type": "npm", + "name": "npm:url-regex-safe", + "data": { + "version": "4.0.0", + "packageName": "url-regex-safe", + "hash": "sha512-BrnFCWKNFrFnRzKD66NtJqQepfJrUHNPvPxE5y5NSAhXBb4OlobQjt7907Jm4ItPiXaeX+dDWMkcnOd4jR9N8A==" + } + }, + "npm:use-callback-ref": { + "type": "npm", + "name": "npm:use-callback-ref", + "data": { + "version": "1.3.3", + "packageName": "use-callback-ref", + "hash": "sha512-jQL3lRnocaFtu3V00JToYz/4QkNWswxijDaCVNZRiRTO3HQDLsdu1ZtmIUvV4yPp+rvWm5j0y0TG/S61cuijTg==" + } + }, + "npm:use-composed-ref": { + "type": "npm", + "name": "npm:use-composed-ref", + "data": { + "version": "1.4.0", + "packageName": "use-composed-ref", + "hash": "sha512-djviaxuOOh7wkj0paeO1Q/4wMZ8Zrnag5H6yBvzN7AKKe8beOaED9SF5/ByLqsku8NP4zQqsvM2u3ew/tJK8/w==" + } + }, + "npm:use-isomorphic-layout-effect": { + "type": "npm", + "name": "npm:use-isomorphic-layout-effect", + "data": { + "version": "1.2.1", + "packageName": "use-isomorphic-layout-effect", + "hash": "sha512-tpZZ+EX0gaghDAiFR37hj5MgY6ZN55kLiPkJsKxBMZ6GZdOSPJXiOzPM984oPYZ5AnehYx5WQp1+ME8I/P/pRA==" + } + }, + "npm:use-latest": { + "type": "npm", + "name": "npm:use-latest", + "data": { + "version": "1.3.0", + "packageName": "use-latest", + "hash": "sha512-mhg3xdm9NaM8q+gLT8KryJPnRFOz1/5XPBhmDEVZK1webPzDjrPk7f/mbpeLqTgB9msytYWANxgALOCJKnLvcQ==" + } + }, + "npm:use-sidecar": { + "type": "npm", + "name": "npm:use-sidecar", + "data": { + "version": "1.1.3", + "packageName": "use-sidecar", + "hash": "sha512-Fedw0aZvkhynoPYlA5WXrMCAMm+nSWdZt6lzJQ7Ok8S6Q+VsHmHpRWndVRJ8Be0ZbkfPc5LRYH+5XrzXcEeLRQ==" + } + }, + "npm:util-deprecate": { + "type": "npm", + "name": "npm:util-deprecate", + "data": { + "version": "1.0.2", + "packageName": "util-deprecate", + "hash": "sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==" + } + }, + "npm:valibot": { + "type": "npm", + "name": "npm:valibot", + "data": { + "version": "1.2.0", + "packageName": "valibot", + "hash": "sha512-mm1rxUsmOxzrwnX5arGS+U4T25RdvpPjPN4yR0u9pUBov9+zGVtO84tif1eY4r6zWxVxu3KzIyknJy3rxfRZZg==" + } + }, + "npm:vary": { + "type": "npm", + "name": "npm:vary", + "data": { + "version": "1.1.2", + "packageName": "vary", + "hash": "sha512-BNGbWLfd0eUPabhkXUVm0j8uuvREyTh5ovRa/dyow/BqAbZJyC+5fU+IzQOzmAKzYqYRAISoRhdQr3eIZ/PXqg==" + } + }, + "npm:vike-photon": { + "type": "npm", + "name": "npm:vike-photon", + "data": { + "version": "0.1.25", + "packageName": "vike-photon", + "hash": "sha512-vvK2cDmhG+VKijg4Ec1Fq3ZlNplOj/OjI7i1wSp2QPtDUbCZhzKObvM3ZLGTTDkf6fEas0mPXGqLRyRnD0yyuA==" + } + }, + "npm:vike-react": { + "type": "npm", + "name": "npm:vike-react", + "data": { + "version": "0.6.21", + "packageName": "vike-react", + "hash": "sha512-mZyskc8xXJbUbK8/Lsztgd0MhrCxnQjHhCpruMVokA+jJC1uuZEAgwoO5Fptoiyqm2pjDfqtAGDw+1pZ97d9OA==" + } + }, + "npm:vike-solid": { + "type": "npm", + "name": "npm:vike-solid", + "data": { + "version": "0.8.1", + "packageName": "vike-solid", + "hash": "sha512-Zn2wmRmf+KnXb8HYF452kztkwPHiPxwTtthTdCgNXcLWxi8udP1vbkCyXZ1IXJkE0cQtonpqhLviBiotEIh6UA==" + } + }, + "npm:vike-vue": { + "type": "npm", + "name": "npm:vike-vue", + "data": { + "version": "0.9.11", + "packageName": "vike-vue", + "hash": "sha512-Ujcu7NG/ZFsiAgEomA0PtuHFg0J/BMcol/QHiDzaIlov2JSiDfapyBLidrPVTrHwLHvmeCnxa4ruVqG+/Vj1XA==" + } + }, + "npm:vike": { + "type": "npm", + "name": "npm:vike", + "data": { + "version": "0.4.255", + "packageName": "vike", + "hash": "sha512-pVRovPzIcxPiSg1nkkHg0+PGDc+qMupHw/xgWCvmJHhHO0qfuQ6UgiMq+OdEKB9q64NJJ6uuDXDtpVgvmYUu3w==" + } + }, + "npm:vite-plugin-compiled-react": { + "type": "npm", + "name": "npm:vite-plugin-compiled-react", + "data": { + "version": "1.3.1", + "packageName": "vite-plugin-compiled-react", + "hash": "sha512-RewxZHCMTnxC1Zi1UPMSTh0JSEqFAkVYaalkpmfecefv62VfJ3zq+NTiRuQOzsRGBfWQlKdgdvsDgkZMxVJokQ==" + } + }, + "npm:vite-plugin-solid": { + "type": "npm", + "name": "npm:vite-plugin-solid", + "data": { + "version": "2.11.11", + "packageName": "vite-plugin-solid", + "hash": "sha512-YMZCXsLw9kyuvQFEdwLP27fuTQJLmjNoHy90AOJnbRuJ6DwShUxKFo38gdFrWn9v11hnGicKCZEaeI/TFs6JKw==" + } + }, + "npm:vite-plugin-wasm": { + "type": "npm", + "name": "npm:vite-plugin-wasm", + "data": { + "version": "3.5.0", + "packageName": "vite-plugin-wasm", + "hash": "sha512-X5VWgCnqiQEGb+omhlBVsvTfxikKtoOgAzQ95+BZ8gQ+VfMHIjSHr0wyvXFQCa0eKQ0fKyaL0kWcEnYqBac4lQ==" + } + }, + "npm:vite": { + "type": "npm", + "name": "npm:vite", + "data": { + "version": "8.0.2", + "packageName": "vite", + "hash": "sha512-1gFhNi+bHhRE/qKZOJXACm6tX4bA3Isy9KuKF15AgSRuRazNBOJfdDemPBU16/mpMxApDPrWvZ08DcLPEoRnuA==" + } + }, + "npm:vitefu": { + "type": "npm", + "name": "npm:vitefu", + "data": { + "version": "1.1.1", + "packageName": "vitefu", + "hash": "sha512-B/Fegf3i8zh0yFbpzZ21amWzHmuNlLlmJT6n7bu5e+pCHUKQIfXSYokrqOBGEMMe9UG2sostKQF9mml/vYaWJQ==" + } + }, + "npm:vitest": { + "type": "npm", + "name": "npm:vitest", + "data": { + "version": "4.1.0", + "packageName": "vitest", + "hash": "sha512-YbDrMF9jM2Lqc++2530UourxZHmkKLxrs4+mYhEwqWS97WJ7wOYEkcr+QfRgJ3PW9wz3odRijLZjHEaRLTNbqw==" + } + }, + "npm:vue-eslint-parser": { + "type": "npm", + "name": "npm:vue-eslint-parser", + "data": { + "version": "10.4.0", + "packageName": "vue-eslint-parser", + "hash": "sha512-Vxi9pJdbN3ZnVGLODVtZ7y4Y2kzAAE2Cm0CZ3ZDRvydVYxZ6VrnBhLikBsRS+dpwj4Jv4UCv21PTEwF5rQ9WXg==" + } + }, + "npm:vue-gtag": { + "type": "npm", + "name": "npm:vue-gtag", + "data": { + "version": "3.7.0", + "packageName": "vue-gtag", + "hash": "sha512-o/ng/NjiVgEnOBZlSnWyg9IsVzIXUWmSuwbd+lGRX/T/h8gxdYN1IMcz5MT8e7o6GYhextvWpsupVAsWbYb+Gg==" + } + }, + "npm:vue": { + "type": "npm", + "name": "npm:vue", + "data": { + "version": "3.5.30", + "packageName": "vue", + "hash": "sha512-hTHLc6VNZyzzEH/l7PFGjpcTvUgiaPK5mdLkbjrTeWSRcEfxFrv56g/XckIYlE9ckuobsdwqd5mk2g1sBkMewg==" + } + }, + "npm:walk-up-path": { + "type": "npm", + "name": "npm:walk-up-path", + "data": { + "version": "4.0.0", + "packageName": "walk-up-path", + "hash": "sha512-3hu+tD8YzSLGuFYtPRb48vdhKMi0KQV5sn+uWr8+7dMEq/2G/dtLrdDinkLjqq5TIbIBjYJ4Ax/n3YiaW7QM8A==" + } + }, + "npm:wcwidth": { + "type": "npm", + "name": "npm:wcwidth", + "data": { + "version": "1.0.1", + "packageName": "wcwidth", + "hash": "sha512-XHPEwS0q6TaxcvG85+8EYkbiCux2XtWG2mkc47Ng2A77BQu9+DqIOJldST4HgPkuea7dvKSj5VgX3P1d4rW8Tg==" + } + }, + "npm:web-streams-polyfill": { + "type": "npm", + "name": "npm:web-streams-polyfill", + "data": { + "version": "3.3.3", + "packageName": "web-streams-polyfill", + "hash": "sha512-d2JWLCivmZYTSIoge9MsgFCZrt571BikcWGYkjC1khllbTeDlGqZ2D8vD8E/lJa8WGWbb7Plm8/XJYV7IJHZZw==" + } + }, + "npm:webdriver-bidi-protocol": { + "type": "npm", + "name": "npm:webdriver-bidi-protocol", + "data": { + "version": "0.4.1", + "packageName": "webdriver-bidi-protocol", + "hash": "sha512-ARrjNjtWRRs2w4Tk7nqrf2gBI0QXWuOmMCx2hU+1jUt6d00MjMxURrhxhGbrsoiZKJrhTSTzbIrc554iKI10qw==" + } + }, + "npm:webidl-conversions": { + "type": "npm", + "name": "npm:webidl-conversions", + "data": { + "version": "3.0.1", + "packageName": "webidl-conversions", + "hash": "sha512-2JAn3z8AR6rjK8Sm8orRC0h/bcl/DqL7tRPdGZ4I1CjdF+EaMLmYxBHyXuKL849eucPFhvBoxMsflfOb8kxaeQ==" + } + }, + "npm:webpack-virtual-modules": { + "type": "npm", + "name": "npm:webpack-virtual-modules", + "data": { + "version": "0.6.2", + "packageName": "webpack-virtual-modules", + "hash": "sha512-66/V2i5hQanC51vBQKPH4aI8NMAcBW59FVBs+rC7eGHupMyfn34q7rZIE+ETlJ+XTevqfUhVVBgSUNSW2flEUQ==" + } + }, + "npm:whatwg-encoding": { + "type": "npm", + "name": "npm:whatwg-encoding", + "data": { + "version": "2.0.0", + "packageName": "whatwg-encoding", + "hash": "sha512-p41ogyeMUrw3jWclHWTQg1k05DSVXPLcVxRTYsXUk+ZooOCZLcoYgPZ/HL/D/N+uQPOtcp1me1WhBEaX02mhWg==" + } + }, + "npm:whatwg-url": { + "type": "npm", + "name": "npm:whatwg-url", + "data": { + "version": "5.0.0", + "packageName": "whatwg-url", + "hash": "sha512-saE57nupxk6v3HY35+jzBwYa0rKSy0XR8JSxZPwgLr7ys0IBzhGviA1/TUGJLmSVqs8pb9AnvICXEuOHLprYTw==" + } + }, + "npm:which-boxed-primitive": { + "type": "npm", + "name": "npm:which-boxed-primitive", + "data": { + "version": "1.1.1", + "packageName": "which-boxed-primitive", + "hash": "sha512-TbX3mj8n0odCBFVlY8AxkqcHASw3L60jIuF8jFP78az3C2YhmGvqbHBpAjTRH2/xqYunrJ9g1jSyjCjpoWzIAA==" + } + }, + "npm:which-builtin-type": { + "type": "npm", + "name": "npm:which-builtin-type", + "data": { + "version": "1.2.1", + "packageName": "which-builtin-type", + "hash": "sha512-6iBczoX+kDQ7a3+YJBnh3T+KZRxM/iYNPXicqk66/Qfm1b93iu+yOImkg0zHbj5LNOcNv1TEADiZ0xa34B4q6Q==" + } + }, + "npm:which-collection": { + "type": "npm", + "name": "npm:which-collection", + "data": { + "version": "1.0.2", + "packageName": "which-collection", + "hash": "sha512-K4jVyjnBdgvc86Y6BkaLZEN933SwYOuBFkdmBu9ZfkcAbdVbpITnDmjvZ/aQjRXQrv5EPkTnD1s39GiiqbngCw==" + } + }, + "npm:which-typed-array": { + "type": "npm", + "name": "npm:which-typed-array", + "data": { + "version": "1.1.19", + "packageName": "which-typed-array", + "hash": "sha512-rEvr90Bck4WZt9HHFC4DJMsjvu7x+r6bImz0/BrbWb7A2djJ8hnZMrWnHo9F8ssv0OMErasDhftrfROTyqSDrw==" + } + }, + "npm:which@2.0.2": { + "type": "npm", + "name": "npm:which@2.0.2", + "data": { + "version": "2.0.2", + "packageName": "which", + "hash": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==" + } + }, + "npm:which@5.0.0": { + "type": "npm", + "name": "npm:which@5.0.0", + "data": { + "version": "5.0.0", + "packageName": "which", + "hash": "sha512-JEdGzHwwkrbWoGOlIHqQ5gtprKGOenpDHpxE9zVR1bWbOtYRyPPHMe9FaP6x61CmNaTThSkb0DAJte5jD+DmzQ==" + } + }, + "npm:which": { + "type": "npm", + "name": "npm:which", + "data": { + "version": "6.0.1", + "packageName": "which", + "hash": "sha512-oGLe46MIrCRqX7ytPUf66EAYvdeMIZYn3WaocqqKZAxrBpkqHfL/qvTyJ/bTk5+AqHCjXmrv3CEWgy368zhRUg==" + } + }, + "npm:whoops": { + "type": "npm", + "name": "npm:whoops", + "data": { + "version": "5.1.0", + "packageName": "whoops", + "hash": "sha512-JVrjrkswIIaFcZ4DZRHObijOhhXIcADrup/USchmrHo6p8PZcU3TmILSHqs/7d2GrWN17uTKScik/7Mq0wBkMA==" + } + }, + "npm:why-is-node-running": { + "type": "npm", + "name": "npm:why-is-node-running", + "data": { + "version": "2.3.0", + "packageName": "why-is-node-running", + "hash": "sha512-hUrmaWBdVDcxvYqnyh09zunKzROWjbZTiNy8dBEjkS7ehEDQibXJ7XvlmtbwuTclUiIyN+CyXQD4Vmko8fNm8w==" + } + }, + "npm:word-wrap": { + "type": "npm", + "name": "npm:word-wrap", + "data": { + "version": "1.2.5", + "packageName": "word-wrap", + "hash": "sha512-BN22B5eaMMI9UMtjrGd5g5eCYPpCPDUy0FJXbYsaT5zYxjFOckS53SQDE3pWkVoWpHXVb3BrYcEN4Twa55B5cA==" + } + }, + "npm:workerd@1.20251217.0": { + "type": "npm", + "name": "npm:workerd@1.20251217.0", + "data": { + "version": "1.20251217.0", + "packageName": "workerd", + "hash": "sha512-s3mHDSWwHTduyY8kpHOsl27ZJ4ziDBJlc18PfBvNMqNnhO7yBeemlxH7bo7yQyU1foJrIZ6IENHDDg0Z9N8zQA==" + } + }, + "npm:workerd": { + "type": "npm", + "name": "npm:workerd", + "data": { + "version": "1.20260317.1", + "packageName": "workerd", + "hash": "sha512-ZuEq1OdrJBS+NV+L5HMYPCzVn49a2O60slQiiLpG44jqtlOo+S167fWC76kEXteXLLLydeuRrluRel7WdOUa4g==" + } + }, + "npm:wrangler": { + "type": "npm", + "name": "npm:wrangler", + "data": { + "version": "4.76.0", + "packageName": "wrangler", + "hash": "sha512-Wan+CU5a0tu4HIxGOrzjNbkmxCT27HUmzrMj6kc7aoAnjSLv50Ggcn2Ant7wNQrD6xW3g31phKupZJgTZ8wZfQ==" + } + }, + "npm:wrap-ansi": { + "type": "npm", + "name": "npm:wrap-ansi", + "data": { + "version": "7.0.0", + "packageName": "wrap-ansi", + "hash": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==" + } + }, + "npm:wrap-ansi@8.1.0": { + "type": "npm", + "name": "npm:wrap-ansi@8.1.0", + "data": { + "version": "8.1.0", + "packageName": "wrap-ansi", + "hash": "sha512-si7QWI6zUMq56bESFvagtmzMdGOtoxfR+Sez11Mobfc7tm+VkUckk9bW2UeffTGVUbOksxmSw0AA2gs8g71NCQ==" + } + }, + "npm:wrap-ansi-cjs": { + "type": "npm", + "name": "npm:wrap-ansi-cjs", + "data": { + "version": "npm:wrap-ansi@7.0.0", + "packageName": "wrap-ansi-cjs", + "hash": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==" + } + }, + "npm:wrappy": { + "type": "npm", + "name": "npm:wrappy", + "data": { + "version": "1.0.2", + "packageName": "wrappy", + "hash": "sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==" + } + }, + "npm:ws": { + "type": "npm", + "name": "npm:ws", + "data": { + "version": "8.18.0", + "packageName": "ws", + "hash": "sha512-8VbfWfHLbbwu3+N6OKsOMpBdT4kXPDDB9cJk2bJ6mh9ucxdlnNvH1e+roYkKmN9Nxw2yjz7VzeO9oOz2zJ04Pw==" + } + }, + "npm:ws@8.19.0": { + "type": "npm", + "name": "npm:ws@8.19.0", + "data": { + "version": "8.19.0", + "packageName": "ws", + "hash": "sha512-blAT2mjOEIi0ZzruJfIhb3nps74PRWTCz1IjglWEEpQl5XS/UNama6u2/rjFkDDouqr4L67ry+1aGIALViWjDg==" + } + }, + "npm:xml-name-validator": { + "type": "npm", + "name": "npm:xml-name-validator", + "data": { + "version": "4.0.0", + "packageName": "xml-name-validator", + "hash": "sha512-ICP2e+jsHvAj2E2lIHxa5tjXRlKDJo4IdvPvCXbXQGdzSfmSpNVyIKMvoZHjDY9DP0zV17iI85o90vRFXNccRw==" + } + }, + "npm:y18n": { + "type": "npm", + "name": "npm:y18n", + "data": { + "version": "5.0.8", + "packageName": "y18n", + "hash": "sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA==" + } + }, + "npm:yallist": { + "type": "npm", + "name": "npm:yallist", + "data": { + "version": "3.1.1", + "packageName": "yallist", + "hash": "sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==" + } + }, + "npm:yallist@4.0.0": { + "type": "npm", + "name": "npm:yallist@4.0.0", + "data": { + "version": "4.0.0", + "packageName": "yallist", + "hash": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==" + } + }, + "npm:yallist@5.0.0": { + "type": "npm", + "name": "npm:yallist@5.0.0", + "data": { + "version": "5.0.0", + "packageName": "yallist", + "hash": "sha512-YgvUTfwqyc7UXVMrB+SImsVYSmTS8X/tSrtdNZMImM+n7+QTriRXyXim0mBrTXNeqzVF0KWGgHPeiyViFFrNDw==" + } + }, + "npm:yaml": { + "type": "npm", + "name": "npm:yaml", + "data": { + "version": "2.8.3", + "packageName": "yaml", + "hash": "sha512-AvbaCLOO2Otw/lW5bmh9d/WEdcDFdQp2Z2ZUH3pX9U2ihyUY0nvLv7J6TrWowklRGPYbB/IuIMfYgxaCPg5Bpg==" + } + }, + "npm:yargs-parser": { + "type": "npm", + "name": "npm:yargs-parser", + "data": { + "version": "21.1.1", + "packageName": "yargs-parser", + "hash": "sha512-tVpsJW7DdjecAiFpbIB1e3qxIQsE6NoPc5/eTdrbbIC4h0LVsWhnoa3g+m2HclBIujHzsxZ4VJVA+GUuc2/LBw==" + } + }, + "npm:yargs": { + "type": "npm", + "name": "npm:yargs", + "data": { + "version": "17.7.2", + "packageName": "yargs", + "hash": "sha512-7dSzzRQ++CKnNI/krKnYRV7JKKPUXMEh61soaHKg9mrWEhzFWhFnxPxGl+69cD1Ou63C13NUPCnmIcrvqCuM6w==" + } + }, + "npm:yauzl": { + "type": "npm", + "name": "npm:yauzl", + "data": { + "version": "2.10.0", + "packageName": "yauzl", + "hash": "sha512-p4a9I6X6nu6IhoGmBqAcbJy1mlC4j27vEPZX9F4L4/vZT3Lyq1VkFHw/V/PUcB9Buo+DG3iHkT0x3Qya58zc3g==" + } + }, + "npm:yocto-queue@0.1.0": { + "type": "npm", + "name": "npm:yocto-queue@0.1.0", + "data": { + "version": "0.1.0", + "packageName": "yocto-queue", + "hash": "sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==" + } + }, + "npm:yocto-queue": { + "type": "npm", + "name": "npm:yocto-queue", + "data": { + "version": "1.2.1", + "packageName": "yocto-queue", + "hash": "sha512-AyeEbWOu/TAXdxlV9wmGcR0+yh2j3vYPGOECcIj2S7MkrLyC7ne+oye2BKTItt0ii2PHk4cDy+95+LshzbXnGg==" + } + }, + "npm:yoctocolors": { + "type": "npm", + "name": "npm:yoctocolors", + "data": { + "version": "2.1.2", + "packageName": "yoctocolors", + "hash": "sha512-CzhO+pFNo8ajLM2d2IW/R93ipy99LWjtwblvC1RsoSUMZgyLbYFr221TnSNT7GjGdYui6P459mw9JH/g/zW2ug==" + } + }, + "npm:youch-core": { + "type": "npm", + "name": "npm:youch-core", + "data": { + "version": "0.3.3", + "packageName": "youch-core", + "hash": "sha512-ho7XuGjLaJ2hWHoK8yFnsUGy2Y5uDpqSTq1FkHLK4/oqKtyUU1AFbOOxY4IpC9f0fTLjwYbslUz0Po5BpD1wrA==" + } + }, + "npm:youch": { + "type": "npm", + "name": "npm:youch", + "data": { + "version": "4.1.0-beta.10", + "packageName": "youch", + "hash": "sha512-rLfVLB4FgQneDr0dv1oddCVZmKjcJ6yX6mS4pU82Mq/Dt9a3cLZQ62pDBL4AUO+uVrCvtWz3ZFUL2HFAFJ/BXQ==" + } + }, + "npm:zeptomatch": { + "type": "npm", + "name": "npm:zeptomatch", + "data": { + "version": "2.1.0", + "packageName": "zeptomatch", + "hash": "sha512-KiGErG2J0G82LSpniV0CtIzjlJ10E04j02VOudJsPyPwNZgGnRKQy7I1R7GMyg/QswnE4l7ohSGrQbQbjXPPDA==" + } + }, + "npm:zod@3.22.3": { + "type": "npm", + "name": "npm:zod@3.22.3", + "data": { + "version": "3.22.3", + "packageName": "zod", + "hash": "sha512-EjIevzuJRiRPbVH4mGc8nApb/lVLKVpmUhAaR5R5doKGfAnGJ6Gr3CViAVjP+4FWSxCsybeWQdcgCtbX+7oZug==" + } + }, + "npm:zod": { + "type": "npm", + "name": "npm:zod", + "data": { + "version": "3.25.76", + "packageName": "zod", + "hash": "sha512-gzUt/qt81nXsFGKIFcC3YnfEAx5NkunCfnDlvuBSSFS02bcXu4Lmea0AFIUwbLWxWPx3d9p8S5QoaujKcNQxcQ==" + } + }, + "npm:zod@4.3.6": { + "type": "npm", + "name": "npm:zod@4.3.6", + "data": { + "version": "4.3.6", + "packageName": "zod", + "hash": "sha512-rftlrkhHZOcjDwkGlnUtZZkvaPHCsDATp4pGpuOOMDaTdDDXF91wuVDJoWoPsKX/3YPQ5fHuF3STjcYyKr+Qhg==" + } + }, + "npm:zwitch": { + "type": "npm", + "name": "npm:zwitch", + "data": { + "version": "2.0.4", + "packageName": "zwitch", + "hash": "sha512-bXE4cR/kVZhKZX/RjPEflHaKVhUVl85noU3v6b8apfQEc1x4A+zBxjZ4lN8LqGd6WZ3dl98pY4o717VFmoPp+A==" + } + }, + "npm:zx": { + "type": "npm", + "name": "npm:zx", + "data": { + "version": "8.8.5", + "packageName": "zx", + "hash": "sha512-SNgDF5L0gfN7FwVOdEFguY3orU5AkfFZm9B5YSHog/UDHv+lvmd82ZAsOenOkQixigwH2+yyH198AwNdKhj+RA==" + } + } + }, + "keyMap": { + "@auth/core@0.41.1": [ + "npm:@auth/core" + ], + "@aws-cdk/asset-awscli-v1@2.2.263": [ + "npm:@aws-cdk/asset-awscli-v1" + ], + "@aws-cdk/asset-node-proxy-agent-v6@2.1.1": [ + "npm:@aws-cdk/asset-node-proxy-agent-v6" + ], + "@aws-cdk/cloud-assembly-schema@52.2.0": [ + "npm:@aws-cdk/cloud-assembly-schema" + ], + "@babel/code-frame@7.29.0": [ + "npm:@babel/code-frame" + ], + "@babel/compat-data@7.28.6": [ + "npm:@babel/compat-data" + ], + "@babel/core@7.29.0": [ + "npm:@babel/core" + ], + "@babel/generator@7.29.0": [ + "npm:@babel/generator" + ], + "@babel/generator@8.0.0-rc.2": [ + "npm:@babel/generator@8.0.0-rc.2" + ], + "@babel/helper-annotate-as-pure@7.27.3": [ + "npm:@babel/helper-annotate-as-pure" + ], + "@babel/helper-compilation-targets@7.28.6": [ + "npm:@babel/helper-compilation-targets" + ], + "@babel/helper-globals@7.28.0": [ + "npm:@babel/helper-globals" + ], + "@babel/helper-module-imports@7.18.6": [ + "npm:@babel/helper-module-imports@7.18.6" + ], + "@babel/helper-module-imports@7.28.6": [ + "npm:@babel/helper-module-imports" + ], + "@babel/helper-module-transforms@7.28.6(@babel/core@7.29.0)": [ + "npm:@babel/helper-module-transforms" + ], + "@babel/helper-plugin-utils@7.28.6": [ + "npm:@babel/helper-plugin-utils" + ], + "@babel/helper-string-parser@7.27.1": [ + "npm:@babel/helper-string-parser" + ], + "@babel/helper-string-parser@8.0.0-rc.3": [ + "npm:@babel/helper-string-parser@8.0.0-rc.3" + ], + "@babel/helper-validator-identifier@7.28.5": [ + "npm:@babel/helper-validator-identifier" + ], + "@babel/helper-validator-identifier@8.0.0-rc.2": [ + "npm:@babel/helper-validator-identifier@8.0.0-rc.2" + ], + "@babel/helper-validator-option@7.27.1": [ + "npm:@babel/helper-validator-option" + ], + "@babel/helpers@7.28.6": [ + "npm:@babel/helpers" + ], + "@babel/parser@7.29.0": [ + "npm:@babel/parser" + ], + "@babel/parser@8.0.0-rc.2": [ + "npm:@babel/parser@8.0.0-rc.2" + ], + "@babel/plugin-syntax-flow@7.28.6(@babel/core@7.29.0)": [ + "npm:@babel/plugin-syntax-flow" + ], + "@babel/plugin-syntax-jsx@7.28.6(@babel/core@7.29.0)": [ + "npm:@babel/plugin-syntax-jsx" + ], + "@babel/plugin-transform-flow-strip-types@7.27.1(@babel/core@7.29.0)": [ + "npm:@babel/plugin-transform-flow-strip-types" + ], + "@babel/plugin-transform-react-jsx@7.28.6(@babel/core@7.29.0)": [ + "npm:@babel/plugin-transform-react-jsx" + ], + "@babel/runtime@7.28.4": [ + "npm:@babel/runtime" + ], + "@babel/template@7.28.6": [ + "npm:@babel/template" + ], + "@babel/traverse@7.29.0": [ + "npm:@babel/traverse" + ], + "@babel/types@7.29.0": [ + "npm:@babel/types" + ], + "@babel/types@8.0.0-rc.2": [ + "npm:@babel/types@8.0.0-rc.2" + ], + "@batijs/compile@file:packages/compile(oxc-resolver@11.19.1)(synckit@0.11.12)(typescript@6.0.2)": [ + "npm:@batijs/compile" + ], + "@biomejs/biome@2.4.8": [ + "npm:@biomejs/biome" + ], + "@biomejs/cli-darwin-arm64@2.4.8": [ + "npm:@biomejs/cli-darwin-arm64" + ], + "@biomejs/cli-darwin-x64@2.4.8": [ + "npm:@biomejs/cli-darwin-x64" + ], + "@biomejs/cli-linux-arm64-musl@2.4.8": [ + "npm:@biomejs/cli-linux-arm64-musl" + ], + "@biomejs/cli-linux-arm64@2.4.8": [ + "npm:@biomejs/cli-linux-arm64" + ], + "@biomejs/cli-linux-x64-musl@2.4.8": [ + "npm:@biomejs/cli-linux-x64-musl" + ], + "@biomejs/cli-linux-x64@2.4.8": [ + "npm:@biomejs/cli-linux-x64" + ], + "@biomejs/cli-win32-arm64@2.4.8": [ + "npm:@biomejs/cli-win32-arm64" + ], + "@biomejs/cli-win32-x64@2.4.8": [ + "npm:@biomejs/cli-win32-x64" + ], + "@biomejs/wasm-nodejs@2.4.8": [ + "npm:@biomejs/wasm-nodejs" + ], + "@brillout/import@0.2.6": [ + "npm:@brillout/import" + ], + "@brillout/json-serializer@0.5.22": [ + "npm:@brillout/json-serializer" + ], + "@brillout/libassert@0.5.8": [ + "npm:@brillout/libassert" + ], + "@brillout/picocolors@1.0.30": [ + "npm:@brillout/picocolors" + ], + "@brillout/vite-plugin-server-entry@0.7.18": [ + "npm:@brillout/vite-plugin-server-entry" + ], + "@browserless/devices@10.11.3": [ + "npm:@browserless/devices" + ], + "@browserless/errors@10.12.1": [ + "npm:@browserless/errors" + ], + "@browserless/goto@10.11.4(puppeteer@24.40.0(typescript@6.0.2))": [ + "npm:@browserless/goto" + ], + "@browserless/pdf@10.12.5(puppeteer@24.40.0(typescript@6.0.2))": [ + "npm:@browserless/pdf" + ], + "@browserless/screenshot@10.12.5(puppeteer@24.40.0(typescript@6.0.2))": [ + "npm:@browserless/screenshot" + ], + "@chevrotain/cst-dts-gen@10.5.0": [ + "npm:@chevrotain/cst-dts-gen" + ], + "@chevrotain/gast@10.5.0": [ + "npm:@chevrotain/gast" + ], + "@chevrotain/types@10.5.0": [ + "npm:@chevrotain/types" + ], + "@chevrotain/utils@10.5.0": [ + "npm:@chevrotain/utils" + ], + "@cloudflare/kv-asset-handler@0.4.2": [ + "npm:@cloudflare/kv-asset-handler" + ], + "@cloudflare/unenv-preset@2.16.0(unenv@2.0.0-rc.24)(workerd@1.20260317.1)": [ + "npm:@cloudflare/unenv-preset" + ], + "@cloudflare/unenv-preset@2.7.13(unenv@2.0.0-rc.24)(workerd@1.20260317.1)": [ + "npm:@cloudflare/unenv-preset@2.7.13" + ], + "@cloudflare/vite-plugin@1.19.0(vite@8.0.2(@types/node@20.19.37)(esbuild@0.27.4)(jiti@2.6.1)(sugarss@5.0.1(postcss@8.5.8))(tsx@4.21.0)(yaml@2.8.3))(workerd@1.20260317.1)(wrangler@4.76.0(@cloudflare/workers-types@4.20260317.1))": [ + "npm:@cloudflare/vite-plugin" + ], + "@cloudflare/workerd-darwin-64@1.20251217.0": [ + "npm:@cloudflare/workerd-darwin-64@1.20251217.0" + ], + "@cloudflare/workerd-darwin-64@1.20260317.1": [ + "npm:@cloudflare/workerd-darwin-64@1.20260317.1" + ], + "@cloudflare/workerd-darwin-arm64@1.20251217.0": [ + "npm:@cloudflare/workerd-darwin-arm64@1.20251217.0" + ], + "@cloudflare/workerd-darwin-arm64@1.20260317.1": [ + "npm:@cloudflare/workerd-darwin-arm64@1.20260317.1" + ], + "@cloudflare/workerd-linux-64@1.20251217.0": [ + "npm:@cloudflare/workerd-linux-64@1.20251217.0" + ], + "@cloudflare/workerd-linux-64@1.20260317.1": [ + "npm:@cloudflare/workerd-linux-64" + ], + "@cloudflare/workerd-linux-arm64@1.20251217.0": [ + "npm:@cloudflare/workerd-linux-arm64@1.20251217.0" + ], + "@cloudflare/workerd-linux-arm64@1.20260317.1": [ + "npm:@cloudflare/workerd-linux-arm64@1.20260317.1" + ], + "@cloudflare/workerd-windows-64@1.20251217.0": [ + "npm:@cloudflare/workerd-windows-64@1.20251217.0" + ], + "@cloudflare/workerd-windows-64@1.20260317.1": [ + "npm:@cloudflare/workerd-windows-64@1.20260317.1" + ], + "@cloudflare/workers-types@4.20260317.1": [ + "npm:@cloudflare/workers-types" + ], + "@compiled/babel-plugin-strip-runtime@0.37.1": [ + "npm:@compiled/babel-plugin-strip-runtime" + ], + "@compiled/babel-plugin@0.37.1": [ + "npm:@compiled/babel-plugin" + ], + "@compiled/css@0.20.0": [ + "npm:@compiled/css" + ], + "@compiled/react@0.20.0(react@19.2.4)": [ + "npm:@compiled/react" + ], + "@compiled/utils@0.13.2": [ + "npm:@compiled/utils" + ], + "@cspotcode/source-map-support@0.8.1": [ + "npm:@cspotcode/source-map-support" + ], + "@drizzle-team/brocli@0.10.2": [ + "npm:@drizzle-team/brocli" + ], + "@duckduckgo/autoconsent@14.56.0": [ + "npm:@duckduckgo/autoconsent" + ], + "@electric-sql/pglite-socket@0.0.20(@electric-sql/pglite@0.3.15)": [ + "npm:@electric-sql/pglite-socket" + ], + "@electric-sql/pglite-tools@0.2.20(@electric-sql/pglite@0.3.15)": [ + "npm:@electric-sql/pglite-tools" + ], + "@electric-sql/pglite@0.3.15": [ + "npm:@electric-sql/pglite" + ], + "@emnapi/core@1.7.1": [ + "npm:@emnapi/core" + ], + "@emnapi/runtime@1.7.1": [ + "npm:@emnapi/runtime" + ], + "@emnapi/wasi-threads@1.1.0": [ + "npm:@emnapi/wasi-threads" + ], + "@emotion/is-prop-valid@1.4.0": [ + "npm:@emotion/is-prop-valid" + ], + "@emotion/memoize@0.9.0": [ + "npm:@emotion/memoize" + ], + "@esbuild-kit/core-utils@3.3.2": [ + "npm:@esbuild-kit/core-utils" + ], + "@esbuild-kit/esm-loader@2.6.5": [ + "npm:@esbuild-kit/esm-loader" + ], + "@esbuild/aix-ppc64@0.25.12": [ + "npm:@esbuild/aix-ppc64@0.25.12" + ], + "@esbuild/aix-ppc64@0.27.3": [ + "npm:@esbuild/aix-ppc64@0.27.3" + ], + "@esbuild/aix-ppc64@0.27.4": [ + "npm:@esbuild/aix-ppc64@0.27.4" + ], + "@esbuild/android-arm64@0.18.20": [ + "npm:@esbuild/android-arm64@0.18.20" + ], + "@esbuild/android-arm64@0.25.12": [ + "npm:@esbuild/android-arm64@0.25.12" + ], + "@esbuild/android-arm64@0.27.3": [ + "npm:@esbuild/android-arm64@0.27.3" + ], + "@esbuild/android-arm64@0.27.4": [ + "npm:@esbuild/android-arm64@0.27.4" + ], + "@esbuild/android-arm@0.18.20": [ + "npm:@esbuild/android-arm@0.18.20" + ], + "@esbuild/android-arm@0.25.12": [ + "npm:@esbuild/android-arm@0.25.12" + ], + "@esbuild/android-arm@0.27.3": [ + "npm:@esbuild/android-arm@0.27.3" + ], + "@esbuild/android-arm@0.27.4": [ + "npm:@esbuild/android-arm@0.27.4" + ], + "@esbuild/android-x64@0.18.20": [ + "npm:@esbuild/android-x64@0.18.20" + ], + "@esbuild/android-x64@0.25.12": [ + "npm:@esbuild/android-x64@0.25.12" + ], + "@esbuild/android-x64@0.27.3": [ + "npm:@esbuild/android-x64@0.27.3" + ], + "@esbuild/android-x64@0.27.4": [ + "npm:@esbuild/android-x64@0.27.4" + ], + "@esbuild/darwin-arm64@0.18.20": [ + "npm:@esbuild/darwin-arm64@0.18.20" + ], + "@esbuild/darwin-arm64@0.25.12": [ + "npm:@esbuild/darwin-arm64@0.25.12" + ], + "@esbuild/darwin-arm64@0.27.3": [ + "npm:@esbuild/darwin-arm64@0.27.3" + ], + "@esbuild/darwin-arm64@0.27.4": [ + "npm:@esbuild/darwin-arm64@0.27.4" + ], + "@esbuild/darwin-x64@0.18.20": [ + "npm:@esbuild/darwin-x64@0.18.20" + ], + "@esbuild/darwin-x64@0.25.12": [ + "npm:@esbuild/darwin-x64@0.25.12" + ], + "@esbuild/darwin-x64@0.27.3": [ + "npm:@esbuild/darwin-x64@0.27.3" + ], + "@esbuild/darwin-x64@0.27.4": [ + "npm:@esbuild/darwin-x64@0.27.4" + ], + "@esbuild/freebsd-arm64@0.18.20": [ + "npm:@esbuild/freebsd-arm64@0.18.20" + ], + "@esbuild/freebsd-arm64@0.25.12": [ + "npm:@esbuild/freebsd-arm64@0.25.12" + ], + "@esbuild/freebsd-arm64@0.27.3": [ + "npm:@esbuild/freebsd-arm64@0.27.3" + ], + "@esbuild/freebsd-arm64@0.27.4": [ + "npm:@esbuild/freebsd-arm64@0.27.4" + ], + "@esbuild/freebsd-x64@0.18.20": [ + "npm:@esbuild/freebsd-x64@0.18.20" + ], + "@esbuild/freebsd-x64@0.25.12": [ + "npm:@esbuild/freebsd-x64@0.25.12" + ], + "@esbuild/freebsd-x64@0.27.3": [ + "npm:@esbuild/freebsd-x64@0.27.3" + ], + "@esbuild/freebsd-x64@0.27.4": [ + "npm:@esbuild/freebsd-x64@0.27.4" + ], + "@esbuild/linux-arm64@0.18.20": [ + "npm:@esbuild/linux-arm64@0.18.20" + ], + "@esbuild/linux-arm64@0.25.12": [ + "npm:@esbuild/linux-arm64@0.25.12" + ], + "@esbuild/linux-arm64@0.27.3": [ + "npm:@esbuild/linux-arm64@0.27.3" + ], + "@esbuild/linux-arm64@0.27.4": [ + "npm:@esbuild/linux-arm64@0.27.4" + ], + "@esbuild/linux-arm@0.18.20": [ + "npm:@esbuild/linux-arm@0.18.20" + ], + "@esbuild/linux-arm@0.25.12": [ + "npm:@esbuild/linux-arm@0.25.12" + ], + "@esbuild/linux-arm@0.27.3": [ + "npm:@esbuild/linux-arm@0.27.3" + ], + "@esbuild/linux-arm@0.27.4": [ + "npm:@esbuild/linux-arm@0.27.4" + ], + "@esbuild/linux-ia32@0.18.20": [ + "npm:@esbuild/linux-ia32@0.18.20" + ], + "@esbuild/linux-ia32@0.25.12": [ + "npm:@esbuild/linux-ia32@0.25.12" + ], + "@esbuild/linux-ia32@0.27.3": [ + "npm:@esbuild/linux-ia32@0.27.3" + ], + "@esbuild/linux-ia32@0.27.4": [ + "npm:@esbuild/linux-ia32@0.27.4" + ], + "@esbuild/linux-loong64@0.18.20": [ + "npm:@esbuild/linux-loong64@0.18.20" + ], + "@esbuild/linux-loong64@0.25.12": [ + "npm:@esbuild/linux-loong64@0.25.12" + ], + "@esbuild/linux-loong64@0.27.3": [ + "npm:@esbuild/linux-loong64@0.27.3" + ], + "@esbuild/linux-loong64@0.27.4": [ + "npm:@esbuild/linux-loong64@0.27.4" + ], + "@esbuild/linux-mips64el@0.18.20": [ + "npm:@esbuild/linux-mips64el@0.18.20" + ], + "@esbuild/linux-mips64el@0.25.12": [ + "npm:@esbuild/linux-mips64el@0.25.12" + ], + "@esbuild/linux-mips64el@0.27.3": [ + "npm:@esbuild/linux-mips64el@0.27.3" + ], + "@esbuild/linux-mips64el@0.27.4": [ + "npm:@esbuild/linux-mips64el@0.27.4" + ], + "@esbuild/linux-ppc64@0.18.20": [ + "npm:@esbuild/linux-ppc64@0.18.20" + ], + "@esbuild/linux-ppc64@0.25.12": [ + "npm:@esbuild/linux-ppc64@0.25.12" + ], + "@esbuild/linux-ppc64@0.27.3": [ + "npm:@esbuild/linux-ppc64@0.27.3" + ], + "@esbuild/linux-ppc64@0.27.4": [ + "npm:@esbuild/linux-ppc64@0.27.4" + ], + "@esbuild/linux-riscv64@0.18.20": [ + "npm:@esbuild/linux-riscv64@0.18.20" + ], + "@esbuild/linux-riscv64@0.25.12": [ + "npm:@esbuild/linux-riscv64@0.25.12" + ], + "@esbuild/linux-riscv64@0.27.3": [ + "npm:@esbuild/linux-riscv64@0.27.3" + ], + "@esbuild/linux-riscv64@0.27.4": [ + "npm:@esbuild/linux-riscv64@0.27.4" + ], + "@esbuild/linux-s390x@0.18.20": [ + "npm:@esbuild/linux-s390x@0.18.20" + ], + "@esbuild/linux-s390x@0.25.12": [ + "npm:@esbuild/linux-s390x@0.25.12" + ], + "@esbuild/linux-s390x@0.27.3": [ + "npm:@esbuild/linux-s390x@0.27.3" + ], + "@esbuild/linux-s390x@0.27.4": [ + "npm:@esbuild/linux-s390x@0.27.4" + ], + "@esbuild/linux-x64@0.18.20": [ + "npm:@esbuild/linux-x64@0.18.20" + ], + "@esbuild/linux-x64@0.25.12": [ + "npm:@esbuild/linux-x64@0.25.12" + ], + "@esbuild/linux-x64@0.27.3": [ + "npm:@esbuild/linux-x64@0.27.3" + ], + "@esbuild/linux-x64@0.27.4": [ + "npm:@esbuild/linux-x64" + ], + "@esbuild/netbsd-arm64@0.25.12": [ + "npm:@esbuild/netbsd-arm64@0.25.12" + ], + "@esbuild/netbsd-arm64@0.27.3": [ + "npm:@esbuild/netbsd-arm64@0.27.3" + ], + "@esbuild/netbsd-arm64@0.27.4": [ + "npm:@esbuild/netbsd-arm64@0.27.4" + ], + "@esbuild/netbsd-x64@0.18.20": [ + "npm:@esbuild/netbsd-x64@0.18.20" + ], + "@esbuild/netbsd-x64@0.25.12": [ + "npm:@esbuild/netbsd-x64@0.25.12" + ], + "@esbuild/netbsd-x64@0.27.3": [ + "npm:@esbuild/netbsd-x64@0.27.3" + ], + "@esbuild/netbsd-x64@0.27.4": [ + "npm:@esbuild/netbsd-x64@0.27.4" + ], + "@esbuild/openbsd-arm64@0.25.12": [ + "npm:@esbuild/openbsd-arm64@0.25.12" + ], + "@esbuild/openbsd-arm64@0.27.3": [ + "npm:@esbuild/openbsd-arm64@0.27.3" + ], + "@esbuild/openbsd-arm64@0.27.4": [ + "npm:@esbuild/openbsd-arm64@0.27.4" + ], + "@esbuild/openbsd-x64@0.18.20": [ + "npm:@esbuild/openbsd-x64@0.18.20" + ], + "@esbuild/openbsd-x64@0.25.12": [ + "npm:@esbuild/openbsd-x64@0.25.12" + ], + "@esbuild/openbsd-x64@0.27.3": [ + "npm:@esbuild/openbsd-x64@0.27.3" + ], + "@esbuild/openbsd-x64@0.27.4": [ + "npm:@esbuild/openbsd-x64@0.27.4" + ], + "@esbuild/openharmony-arm64@0.25.12": [ + "npm:@esbuild/openharmony-arm64@0.25.12" + ], + "@esbuild/openharmony-arm64@0.27.3": [ + "npm:@esbuild/openharmony-arm64@0.27.3" + ], + "@esbuild/openharmony-arm64@0.27.4": [ + "npm:@esbuild/openharmony-arm64@0.27.4" + ], + "@esbuild/sunos-x64@0.18.20": [ + "npm:@esbuild/sunos-x64@0.18.20" + ], + "@esbuild/sunos-x64@0.25.12": [ + "npm:@esbuild/sunos-x64@0.25.12" + ], + "@esbuild/sunos-x64@0.27.3": [ + "npm:@esbuild/sunos-x64@0.27.3" + ], + "@esbuild/sunos-x64@0.27.4": [ + "npm:@esbuild/sunos-x64@0.27.4" + ], + "@esbuild/win32-arm64@0.18.20": [ + "npm:@esbuild/win32-arm64@0.18.20" + ], + "@esbuild/win32-arm64@0.25.12": [ + "npm:@esbuild/win32-arm64@0.25.12" + ], + "@esbuild/win32-arm64@0.27.3": [ + "npm:@esbuild/win32-arm64@0.27.3" + ], + "@esbuild/win32-arm64@0.27.4": [ + "npm:@esbuild/win32-arm64@0.27.4" + ], + "@esbuild/win32-ia32@0.18.20": [ + "npm:@esbuild/win32-ia32@0.18.20" + ], + "@esbuild/win32-ia32@0.25.12": [ + "npm:@esbuild/win32-ia32@0.25.12" + ], + "@esbuild/win32-ia32@0.27.3": [ + "npm:@esbuild/win32-ia32@0.27.3" + ], + "@esbuild/win32-ia32@0.27.4": [ + "npm:@esbuild/win32-ia32@0.27.4" + ], + "@esbuild/win32-x64@0.18.20": [ + "npm:@esbuild/win32-x64@0.18.20" + ], + "@esbuild/win32-x64@0.25.12": [ + "npm:@esbuild/win32-x64@0.25.12" + ], + "@esbuild/win32-x64@0.27.3": [ + "npm:@esbuild/win32-x64@0.27.3" + ], + "@esbuild/win32-x64@0.27.4": [ + "npm:@esbuild/win32-x64@0.27.4" + ], + "@eslint-community/eslint-utils@4.9.1(eslint@9.39.4(jiti@2.6.1))": [ + "npm:@eslint-community/eslint-utils" + ], + "@eslint-community/regexpp@4.12.2": [ + "npm:@eslint-community/regexpp" + ], + "@eslint/config-array@0.21.2": [ + "npm:@eslint/config-array" + ], + "@eslint/config-helpers@0.4.2": [ + "npm:@eslint/config-helpers" + ], + "@eslint/core@0.17.0": [ + "npm:@eslint/core" + ], + "@eslint/eslintrc@3.3.5": [ + "npm:@eslint/eslintrc" + ], + "@eslint/js@9.39.4": [ + "npm:@eslint/js" + ], + "@eslint/object-schema@2.1.7": [ + "npm:@eslint/object-schema" + ], + "@eslint/plugin-kit@0.4.1": [ + "npm:@eslint/plugin-kit" + ], + "@fastify/ajv-compiler@4.0.5": [ + "npm:@fastify/ajv-compiler" + ], + "@fastify/error@4.2.0": [ + "npm:@fastify/error" + ], + "@fastify/fast-json-stringify-compiler@5.0.3": [ + "npm:@fastify/fast-json-stringify-compiler" + ], + "@fastify/forwarded@3.0.1": [ + "npm:@fastify/forwarded" + ], + "@fastify/merge-json-schemas@0.2.1": [ + "npm:@fastify/merge-json-schemas" + ], + "@fastify/proxy-addr@5.1.0": [ + "npm:@fastify/proxy-addr" + ], + "@floating-ui/core@1.7.5": [ + "npm:@floating-ui/core" + ], + "@floating-ui/dom@1.7.6": [ + "npm:@floating-ui/dom" + ], + "@floating-ui/react-dom@2.1.6(react-dom@19.2.4(react@19.2.4))(react@19.2.4)": [ + "npm:@floating-ui/react-dom" + ], + "@floating-ui/react@0.27.16(react-dom@19.2.4(react@19.2.4))(react@19.2.4)": [ + "npm:@floating-ui/react" + ], + "@floating-ui/utils@0.2.11": [ + "npm:@floating-ui/utils" + ], + "@ghostery/adblocker-content@2.14.1": [ + "npm:@ghostery/adblocker-content" + ], + "@ghostery/adblocker-extended-selectors@2.14.1": [ + "npm:@ghostery/adblocker-extended-selectors" + ], + "@ghostery/adblocker-puppeteer@2.14.1(puppeteer@24.40.0(typescript@6.0.2))": [ + "npm:@ghostery/adblocker-puppeteer" + ], + "@ghostery/adblocker@2.14.1": [ + "npm:@ghostery/adblocker" + ], + "@ghostery/url-parser@1.3.1": [ + "npm:@ghostery/url-parser" + ], + "@hono/node-server@1.19.9(hono@4.11.4)": [ + "npm:@hono/node-server" + ], + "@hono/node-server@1.19.9(hono@4.12.8)": [ + "npm:@hono/node-server" + ], + "@humanfs/core@0.19.1": [ + "npm:@humanfs/core" + ], + "@humanfs/node@0.16.7": [ + "npm:@humanfs/node" + ], + "@humanwhocodes/module-importer@1.0.1": [ + "npm:@humanwhocodes/module-importer" + ], + "@humanwhocodes/retry@0.4.3": [ + "npm:@humanwhocodes/retry" + ], + "@img/colour@1.0.0": [ + "npm:@img/colour" + ], + "@img/sharp-darwin-arm64@0.33.5": [ + "npm:@img/sharp-darwin-arm64@0.33.5" + ], + "@img/sharp-darwin-arm64@0.34.5": [ + "npm:@img/sharp-darwin-arm64@0.34.5" + ], + "@img/sharp-darwin-x64@0.33.5": [ + "npm:@img/sharp-darwin-x64@0.33.5" + ], + "@img/sharp-darwin-x64@0.34.5": [ + "npm:@img/sharp-darwin-x64@0.34.5" + ], + "@img/sharp-libvips-darwin-arm64@1.0.4": [ + "npm:@img/sharp-libvips-darwin-arm64@1.0.4" + ], + "@img/sharp-libvips-darwin-arm64@1.2.4": [ + "npm:@img/sharp-libvips-darwin-arm64@1.2.4" + ], + "@img/sharp-libvips-darwin-x64@1.0.4": [ + "npm:@img/sharp-libvips-darwin-x64@1.0.4" + ], + "@img/sharp-libvips-darwin-x64@1.2.4": [ + "npm:@img/sharp-libvips-darwin-x64@1.2.4" + ], + "@img/sharp-libvips-linux-arm64@1.0.4": [ + "npm:@img/sharp-libvips-linux-arm64@1.0.4" + ], + "@img/sharp-libvips-linux-arm64@1.2.4": [ + "npm:@img/sharp-libvips-linux-arm64@1.2.4" + ], + "@img/sharp-libvips-linux-arm@1.0.5": [ + "npm:@img/sharp-libvips-linux-arm@1.0.5" + ], + "@img/sharp-libvips-linux-arm@1.2.4": [ + "npm:@img/sharp-libvips-linux-arm@1.2.4" + ], + "@img/sharp-libvips-linux-ppc64@1.2.4": [ + "npm:@img/sharp-libvips-linux-ppc64" + ], + "@img/sharp-libvips-linux-riscv64@1.2.4": [ + "npm:@img/sharp-libvips-linux-riscv64" + ], + "@img/sharp-libvips-linux-s390x@1.0.4": [ + "npm:@img/sharp-libvips-linux-s390x@1.0.4" + ], + "@img/sharp-libvips-linux-s390x@1.2.4": [ + "npm:@img/sharp-libvips-linux-s390x@1.2.4" + ], + "@img/sharp-libvips-linux-x64@1.0.4": [ + "npm:@img/sharp-libvips-linux-x64@1.0.4" + ], + "@img/sharp-libvips-linux-x64@1.2.4": [ + "npm:@img/sharp-libvips-linux-x64" + ], + "@img/sharp-libvips-linuxmusl-arm64@1.0.4": [ + "npm:@img/sharp-libvips-linuxmusl-arm64@1.0.4" + ], + "@img/sharp-libvips-linuxmusl-arm64@1.2.4": [ + "npm:@img/sharp-libvips-linuxmusl-arm64@1.2.4" + ], + "@img/sharp-libvips-linuxmusl-x64@1.0.4": [ + "npm:@img/sharp-libvips-linuxmusl-x64@1.0.4" + ], + "@img/sharp-libvips-linuxmusl-x64@1.2.4": [ + "npm:@img/sharp-libvips-linuxmusl-x64" + ], + "@img/sharp-linux-arm64@0.33.5": [ + "npm:@img/sharp-linux-arm64@0.33.5" + ], + "@img/sharp-linux-arm64@0.34.5": [ + "npm:@img/sharp-linux-arm64@0.34.5" + ], + "@img/sharp-linux-arm@0.33.5": [ + "npm:@img/sharp-linux-arm@0.33.5" + ], + "@img/sharp-linux-arm@0.34.5": [ + "npm:@img/sharp-linux-arm@0.34.5" + ], + "@img/sharp-linux-ppc64@0.34.5": [ + "npm:@img/sharp-linux-ppc64" + ], + "@img/sharp-linux-riscv64@0.34.5": [ + "npm:@img/sharp-linux-riscv64" + ], + "@img/sharp-linux-s390x@0.33.5": [ + "npm:@img/sharp-linux-s390x@0.33.5" + ], + "@img/sharp-linux-s390x@0.34.5": [ + "npm:@img/sharp-linux-s390x@0.34.5" + ], + "@img/sharp-linux-x64@0.33.5": [ + "npm:@img/sharp-linux-x64@0.33.5" + ], + "@img/sharp-linux-x64@0.34.5": [ + "npm:@img/sharp-linux-x64" + ], + "@img/sharp-linuxmusl-arm64@0.33.5": [ + "npm:@img/sharp-linuxmusl-arm64@0.33.5" + ], + "@img/sharp-linuxmusl-arm64@0.34.5": [ + "npm:@img/sharp-linuxmusl-arm64@0.34.5" + ], + "@img/sharp-linuxmusl-x64@0.33.5": [ + "npm:@img/sharp-linuxmusl-x64@0.33.5" + ], + "@img/sharp-linuxmusl-x64@0.34.5": [ + "npm:@img/sharp-linuxmusl-x64" + ], + "@img/sharp-wasm32@0.33.5": [ + "npm:@img/sharp-wasm32@0.33.5" + ], + "@img/sharp-wasm32@0.34.5": [ + "npm:@img/sharp-wasm32@0.34.5" + ], + "@img/sharp-win32-arm64@0.34.5": [ + "npm:@img/sharp-win32-arm64" + ], + "@img/sharp-win32-ia32@0.33.5": [ + "npm:@img/sharp-win32-ia32@0.33.5" + ], + "@img/sharp-win32-ia32@0.34.5": [ + "npm:@img/sharp-win32-ia32@0.34.5" + ], + "@img/sharp-win32-x64@0.33.5": [ + "npm:@img/sharp-win32-x64@0.33.5" + ], + "@img/sharp-win32-x64@0.34.5": [ + "npm:@img/sharp-win32-x64@0.34.5" + ], + "@inquirer/ansi@2.0.4": [ + "npm:@inquirer/ansi" + ], + "@inquirer/checkbox@5.1.2(@types/node@20.19.37)": [ + "npm:@inquirer/checkbox" + ], + "@inquirer/confirm@6.0.10(@types/node@20.19.37)": [ + "npm:@inquirer/confirm" + ], + "@inquirer/core@11.1.7(@types/node@20.19.37)": [ + "npm:@inquirer/core" + ], + "@inquirer/editor@5.0.10(@types/node@20.19.37)": [ + "npm:@inquirer/editor" + ], + "@inquirer/expand@5.0.10(@types/node@20.19.37)": [ + "npm:@inquirer/expand" + ], + "@inquirer/external-editor@2.0.4(@types/node@20.19.37)": [ + "npm:@inquirer/external-editor" + ], + "@inquirer/figures@2.0.4": [ + "npm:@inquirer/figures" + ], + "@inquirer/input@5.0.10(@types/node@20.19.37)": [ + "npm:@inquirer/input" + ], + "@inquirer/number@4.0.10(@types/node@20.19.37)": [ + "npm:@inquirer/number" + ], + "@inquirer/password@5.0.10(@types/node@20.19.37)": [ + "npm:@inquirer/password" + ], + "@inquirer/prompts@8.3.2(@types/node@20.19.37)": [ + "npm:@inquirer/prompts" + ], + "@inquirer/rawlist@5.2.6(@types/node@20.19.37)": [ + "npm:@inquirer/rawlist" + ], + "@inquirer/search@4.1.6(@types/node@20.19.37)": [ + "npm:@inquirer/search" + ], + "@inquirer/select@5.1.2(@types/node@20.19.37)": [ + "npm:@inquirer/select" + ], + "@inquirer/type@4.0.4(@types/node@20.19.37)": [ + "npm:@inquirer/type" + ], + "@isaacs/cliui@8.0.2": [ + "npm:@isaacs/cliui@8.0.2" + ], + "@isaacs/cliui@9.0.0": [ + "npm:@isaacs/cliui" + ], + "@isaacs/fs-minipass@4.0.1": [ + "npm:@isaacs/fs-minipass" + ], + "@jest/diff-sequences@30.3.0": [ + "npm:@jest/diff-sequences" + ], + "@jest/get-type@30.1.0": [ + "npm:@jest/get-type" + ], + "@jest/schemas@30.0.5": [ + "npm:@jest/schemas" + ], + "@jridgewell/gen-mapping@0.3.13": [ + "npm:@jridgewell/gen-mapping" + ], + "@jridgewell/remapping@2.3.5": [ + "npm:@jridgewell/remapping" + ], + "@jridgewell/resolve-uri@3.1.2": [ + "npm:@jridgewell/resolve-uri" + ], + "@jridgewell/sourcemap-codec@1.5.5": [ + "npm:@jridgewell/sourcemap-codec" + ], + "@jridgewell/trace-mapping@0.3.31": [ + "npm:@jridgewell/trace-mapping" + ], + "@jridgewell/trace-mapping@0.3.9": [ + "npm:@jridgewell/trace-mapping@0.3.9" + ], + "@kikobeats/content-type@1.0.3": [ + "npm:@kikobeats/content-type" + ], + "@kikobeats/time-span@1.0.11": [ + "npm:@kikobeats/time-span" + ], + "@ltd/j-toml@1.38.0": [ + "npm:@ltd/j-toml" + ], + "@mantine/core@8.3.18(@mantine/hooks@8.3.18(react@19.2.4))(@types/react@19.2.14)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)": [ + "npm:@mantine/core" + ], + "@mantine/hooks@8.3.18(react@19.2.4)": [ + "npm:@mantine/hooks" + ], + "@manypkg/find-root@3.1.0": [ + "npm:@manypkg/find-root" + ], + "@manypkg/tools@2.1.0": [ + "npm:@manypkg/tools" + ], + "@mapbox/node-pre-gyp@2.0.0(encoding@0.1.13)": [ + "npm:@mapbox/node-pre-gyp" + ], + "@motionone/animation@10.18.0": [ + "npm:@motionone/animation" + ], + "@motionone/dom@10.18.0": [ + "npm:@motionone/dom" + ], + "@motionone/easing@10.18.0": [ + "npm:@motionone/easing" + ], + "@motionone/generators@10.18.0": [ + "npm:@motionone/generators" + ], + "@motionone/types@10.17.1": [ + "npm:@motionone/types" + ], + "@motionone/utils@10.18.0": [ + "npm:@motionone/utils" + ], + "@mrleebo/prisma-ast@0.13.1": [ + "npm:@mrleebo/prisma-ast" + ], + "@napi-rs/wasm-runtime@0.2.4": [ + "npm:@napi-rs/wasm-runtime" + ], + "@napi-rs/wasm-runtime@1.1.1": [ + "npm:@napi-rs/wasm-runtime@1.1.1" + ], + "@nodelib/fs.scandir@2.1.5": [ + "npm:@nodelib/fs.scandir" + ], + "@nodelib/fs.stat@2.0.5": [ + "npm:@nodelib/fs.stat" + ], + "@nodelib/fs.walk@1.2.8": [ + "npm:@nodelib/fs.walk" + ], + "@npmcli/agent@3.0.0": [ + "npm:@npmcli/agent" + ], + "@npmcli/fs@4.0.0": [ + "npm:@npmcli/fs" + ], + "@nx/nx-darwin-arm64@22.6.1": [ + "npm:@nx/nx-darwin-arm64" + ], + "@nx/nx-darwin-x64@22.6.1": [ + "npm:@nx/nx-darwin-x64" + ], + "@nx/nx-freebsd-x64@22.6.1": [ + "npm:@nx/nx-freebsd-x64" + ], + "@nx/nx-linux-arm-gnueabihf@22.6.1": [ + "npm:@nx/nx-linux-arm-gnueabihf" + ], + "@nx/nx-linux-arm64-gnu@22.6.1": [ + "npm:@nx/nx-linux-arm64-gnu" + ], + "@nx/nx-linux-arm64-musl@22.6.1": [ + "npm:@nx/nx-linux-arm64-musl" + ], + "@nx/nx-linux-x64-gnu@22.6.1": [ + "npm:@nx/nx-linux-x64-gnu" + ], + "@nx/nx-linux-x64-musl@22.6.1": [ + "npm:@nx/nx-linux-x64-musl" + ], + "@nx/nx-win32-arm64-msvc@22.6.1": [ + "npm:@nx/nx-win32-arm64-msvc" + ], + "@nx/nx-win32-x64-msvc@22.6.1": [ + "npm:@nx/nx-win32-x64-msvc" + ], + "@oxc-parser/binding-android-arm64@0.104.0": [ + "npm:@oxc-parser/binding-android-arm64" + ], + "@oxc-parser/binding-darwin-arm64@0.104.0": [ + "npm:@oxc-parser/binding-darwin-arm64" + ], + "@oxc-parser/binding-darwin-x64@0.104.0": [ + "npm:@oxc-parser/binding-darwin-x64" + ], + "@oxc-parser/binding-freebsd-x64@0.104.0": [ + "npm:@oxc-parser/binding-freebsd-x64" + ], + "@oxc-parser/binding-linux-arm-gnueabihf@0.104.0": [ + "npm:@oxc-parser/binding-linux-arm-gnueabihf" + ], + "@oxc-parser/binding-linux-arm64-gnu@0.104.0": [ + "npm:@oxc-parser/binding-linux-arm64-gnu" + ], + "@oxc-parser/binding-linux-arm64-musl@0.104.0": [ + "npm:@oxc-parser/binding-linux-arm64-musl" + ], + "@oxc-parser/binding-linux-riscv64-gnu@0.104.0": [ + "npm:@oxc-parser/binding-linux-riscv64-gnu" + ], + "@oxc-parser/binding-linux-s390x-gnu@0.104.0": [ + "npm:@oxc-parser/binding-linux-s390x-gnu" + ], + "@oxc-parser/binding-linux-x64-gnu@0.104.0": [ + "npm:@oxc-parser/binding-linux-x64-gnu" + ], + "@oxc-parser/binding-linux-x64-musl@0.104.0": [ + "npm:@oxc-parser/binding-linux-x64-musl" + ], + "@oxc-parser/binding-openharmony-arm64@0.104.0": [ + "npm:@oxc-parser/binding-openharmony-arm64" + ], + "@oxc-parser/binding-wasm32-wasi@0.104.0": [ + "npm:@oxc-parser/binding-wasm32-wasi" + ], + "@oxc-parser/binding-win32-arm64-msvc@0.104.0": [ + "npm:@oxc-parser/binding-win32-arm64-msvc" + ], + "@oxc-parser/binding-win32-x64-msvc@0.104.0": [ + "npm:@oxc-parser/binding-win32-x64-msvc" + ], + "@oxc-project/types@0.104.0": [ + "npm:@oxc-project/types" + ], + "@oxc-project/types@0.115.0": [ + "npm:@oxc-project/types@0.115.0" + ], + "@oxc-project/types@0.122.0": [ + "npm:@oxc-project/types@0.122.0" + ], + "@oxc-project/types@0.98.0": [ + "npm:@oxc-project/types@0.98.0" + ], + "@oxc-resolver/binding-android-arm-eabi@11.19.1": [ + "npm:@oxc-resolver/binding-android-arm-eabi" + ], + "@oxc-resolver/binding-android-arm64@11.19.1": [ + "npm:@oxc-resolver/binding-android-arm64" + ], + "@oxc-resolver/binding-darwin-arm64@11.19.1": [ + "npm:@oxc-resolver/binding-darwin-arm64" + ], + "@oxc-resolver/binding-darwin-x64@11.19.1": [ + "npm:@oxc-resolver/binding-darwin-x64" + ], + "@oxc-resolver/binding-freebsd-x64@11.19.1": [ + "npm:@oxc-resolver/binding-freebsd-x64" + ], + "@oxc-resolver/binding-linux-arm-gnueabihf@11.19.1": [ + "npm:@oxc-resolver/binding-linux-arm-gnueabihf" + ], + "@oxc-resolver/binding-linux-arm-musleabihf@11.19.1": [ + "npm:@oxc-resolver/binding-linux-arm-musleabihf" + ], + "@oxc-resolver/binding-linux-arm64-gnu@11.19.1": [ + "npm:@oxc-resolver/binding-linux-arm64-gnu" + ], + "@oxc-resolver/binding-linux-arm64-musl@11.19.1": [ + "npm:@oxc-resolver/binding-linux-arm64-musl" + ], + "@oxc-resolver/binding-linux-ppc64-gnu@11.19.1": [ + "npm:@oxc-resolver/binding-linux-ppc64-gnu" + ], + "@oxc-resolver/binding-linux-riscv64-gnu@11.19.1": [ + "npm:@oxc-resolver/binding-linux-riscv64-gnu" + ], + "@oxc-resolver/binding-linux-riscv64-musl@11.19.1": [ + "npm:@oxc-resolver/binding-linux-riscv64-musl" + ], + "@oxc-resolver/binding-linux-s390x-gnu@11.19.1": [ + "npm:@oxc-resolver/binding-linux-s390x-gnu" + ], + "@oxc-resolver/binding-linux-x64-gnu@11.19.1": [ + "npm:@oxc-resolver/binding-linux-x64-gnu" + ], + "@oxc-resolver/binding-linux-x64-musl@11.19.1": [ + "npm:@oxc-resolver/binding-linux-x64-musl" + ], + "@oxc-resolver/binding-openharmony-arm64@11.19.1": [ + "npm:@oxc-resolver/binding-openharmony-arm64" + ], + "@oxc-resolver/binding-wasm32-wasi@11.19.1": [ + "npm:@oxc-resolver/binding-wasm32-wasi" + ], + "@oxc-resolver/binding-win32-arm64-msvc@11.19.1": [ + "npm:@oxc-resolver/binding-win32-arm64-msvc" + ], + "@oxc-resolver/binding-win32-ia32-msvc@11.19.1": [ + "npm:@oxc-resolver/binding-win32-ia32-msvc" + ], + "@oxc-resolver/binding-win32-x64-msvc@11.19.1": [ + "npm:@oxc-resolver/binding-win32-x64-msvc" + ], + "@oxlint-tsgolint/darwin-arm64@0.17.1": [ + "npm:@oxlint-tsgolint/darwin-arm64" + ], + "@oxlint-tsgolint/darwin-x64@0.17.1": [ + "npm:@oxlint-tsgolint/darwin-x64" + ], + "@oxlint-tsgolint/linux-arm64@0.17.1": [ + "npm:@oxlint-tsgolint/linux-arm64" + ], + "@oxlint-tsgolint/linux-x64@0.17.1": [ + "npm:@oxlint-tsgolint/linux-x64" + ], + "@oxlint-tsgolint/win32-arm64@0.17.1": [ + "npm:@oxlint-tsgolint/win32-arm64" + ], + "@oxlint-tsgolint/win32-x64@0.17.1": [ + "npm:@oxlint-tsgolint/win32-x64" + ], + "@oxlint/binding-android-arm-eabi@1.56.0": [ + "npm:@oxlint/binding-android-arm-eabi" + ], + "@oxlint/binding-android-arm64@1.56.0": [ + "npm:@oxlint/binding-android-arm64" + ], + "@oxlint/binding-darwin-arm64@1.56.0": [ + "npm:@oxlint/binding-darwin-arm64" + ], + "@oxlint/binding-darwin-x64@1.56.0": [ + "npm:@oxlint/binding-darwin-x64" + ], + "@oxlint/binding-freebsd-x64@1.56.0": [ + "npm:@oxlint/binding-freebsd-x64" + ], + "@oxlint/binding-linux-arm-gnueabihf@1.56.0": [ + "npm:@oxlint/binding-linux-arm-gnueabihf" + ], + "@oxlint/binding-linux-arm-musleabihf@1.56.0": [ + "npm:@oxlint/binding-linux-arm-musleabihf" + ], + "@oxlint/binding-linux-arm64-gnu@1.56.0": [ + "npm:@oxlint/binding-linux-arm64-gnu" + ], + "@oxlint/binding-linux-arm64-musl@1.56.0": [ + "npm:@oxlint/binding-linux-arm64-musl" + ], + "@oxlint/binding-linux-ppc64-gnu@1.56.0": [ + "npm:@oxlint/binding-linux-ppc64-gnu" + ], + "@oxlint/binding-linux-riscv64-gnu@1.56.0": [ + "npm:@oxlint/binding-linux-riscv64-gnu" + ], + "@oxlint/binding-linux-riscv64-musl@1.56.0": [ + "npm:@oxlint/binding-linux-riscv64-musl" + ], + "@oxlint/binding-linux-s390x-gnu@1.56.0": [ + "npm:@oxlint/binding-linux-s390x-gnu" + ], + "@oxlint/binding-linux-x64-gnu@1.56.0": [ + "npm:@oxlint/binding-linux-x64-gnu" + ], + "@oxlint/binding-linux-x64-musl@1.56.0": [ + "npm:@oxlint/binding-linux-x64-musl" + ], + "@oxlint/binding-openharmony-arm64@1.56.0": [ + "npm:@oxlint/binding-openharmony-arm64" + ], + "@oxlint/binding-win32-arm64-msvc@1.56.0": [ + "npm:@oxlint/binding-win32-arm64-msvc" + ], + "@oxlint/binding-win32-ia32-msvc@1.56.0": [ + "npm:@oxlint/binding-win32-ia32-msvc" + ], + "@oxlint/binding-win32-x64-msvc@1.56.0": [ + "npm:@oxlint/binding-win32-x64-msvc" + ], + "@panva/hkdf@1.2.1": [ + "npm:@panva/hkdf" + ], + "@photonjs/cloudflare@0.1.13(@cloudflare/workers-types@4.20260317.1)(@types/express@5.0.6)(fastify@5.8.2)(h3@1.15.10)(hono@4.12.8)(srvx@0.9.8)(vite@8.0.2(@types/node@20.19.37)(esbuild@0.27.4)(jiti@2.6.1)(sugarss@5.0.1(postcss@8.5.8))(tsx@4.21.0)(yaml@2.8.3))(workerd@1.20260317.1)(wrangler@4.76.0(@cloudflare/workers-types@4.20260317.1))": [ + "npm:@photonjs/cloudflare" + ], + "@photonjs/core@0.1.21(@cloudflare/workers-types@4.20260317.1)(@types/express@5.0.6)(fastify@5.8.2)(h3@1.15.10)(hono@4.12.8)(srvx@0.9.8)(vite@8.0.2(@types/node@20.19.37)(esbuild@0.27.4)(jiti@2.6.1)(sugarss@5.0.1(postcss@8.5.8))(tsx@4.21.0)(yaml@2.8.3))": [ + "npm:@photonjs/core" + ], + "@photonjs/express@0.1.13(@cloudflare/workers-types@4.20260317.1)(@types/express@5.0.6)(fastify@5.8.2)(h3@1.15.10)(hono@4.12.8)(srvx@0.9.8)(vite@8.0.2(@types/node@20.19.37)(esbuild@0.27.4)(jiti@2.6.1)(sugarss@5.0.1(postcss@8.5.8))(tsx@4.21.0)(yaml@2.8.3))": [ + "npm:@photonjs/express" + ], + "@photonjs/fastify@0.1.12(@cloudflare/workers-types@4.20260317.1)(@types/express@5.0.6)(fastify@5.8.2)(h3@1.15.10)(hono@4.12.8)(srvx@0.9.8)(vite@8.0.2(@types/node@20.19.37)(esbuild@0.27.4)(jiti@2.6.1)(sugarss@5.0.1(postcss@8.5.8))(tsx@4.21.0)(yaml@2.8.3))": [ + "npm:@photonjs/fastify" + ], + "@photonjs/h3@0.1.12(@cloudflare/workers-types@4.20260317.1)(@types/express@5.0.6)(fastify@5.8.2)(h3@1.15.10)(hono@4.12.8)(srvx@0.9.8)(vite@8.0.2(@types/node@20.19.37)(esbuild@0.27.4)(jiti@2.6.1)(sugarss@5.0.1(postcss@8.5.8))(tsx@4.21.0)(yaml@2.8.3))": [ + "npm:@photonjs/h3" + ], + "@photonjs/hono@0.1.12(@cloudflare/workers-types@4.20260317.1)(@hono/node-server@1.19.9(hono@4.12.8))(@types/express@5.0.6)(fastify@5.8.2)(h3@1.15.10)(hono@4.12.8)(srvx@0.9.8)(vite@8.0.2(@types/node@20.19.37)(esbuild@0.27.4)(jiti@2.6.1)(sugarss@5.0.1(postcss@8.5.8))(tsx@4.21.0)(yaml@2.8.3))": [ + "npm:@photonjs/hono" + ], + "@photonjs/runtime@0.1.16(@cloudflare/workers-types@4.20260317.1)(@types/express@5.0.6)(encoding@0.1.13)(fastify@5.8.2)(h3@1.15.10)(hono@4.12.8)(vite@8.0.2(@types/node@20.19.37)(esbuild@0.27.4)(jiti@2.6.1)(sugarss@5.0.1(postcss@8.5.8))(tsx@4.21.0)(yaml@2.8.3))": [ + "npm:@photonjs/runtime" + ], + "@photonjs/srvx@0.1.12(@cloudflare/workers-types@4.20260317.1)(@types/express@5.0.6)(fastify@5.8.2)(h3@1.15.10)(hono@4.12.8)(srvx@0.9.8)(vite@8.0.2(@types/node@20.19.37)(esbuild@0.27.4)(jiti@2.6.1)(sugarss@5.0.1(postcss@8.5.8))(tsx@4.21.0)(yaml@2.8.3))": [ + "npm:@photonjs/srvx" + ], + "@photonjs/vercel@0.1.22(@cloudflare/workers-types@4.20260317.1)(@types/express@5.0.6)(@universal-middleware/h3@0.4.15(@cloudflare/workers-types@4.20260317.1)(@types/express@5.0.6)(fastify@5.8.2)(h3@1.15.10)(hono@4.12.8)(srvx@0.9.8))(encoding@0.1.13)(express@5.2.1)(fastify@5.8.2)(h3@1.15.10)(hono@4.12.8)(srvx@0.9.8)(vite@8.0.2(@types/node@20.19.37)(esbuild@0.27.4)(jiti@2.6.1)(sugarss@5.0.1(postcss@8.5.8))(tsx@4.21.0)(yaml@2.8.3))": [ + "npm:@photonjs/vercel" + ], + "@pinojs/redact@0.4.0": [ + "npm:@pinojs/redact" + ], + "@pkgjs/parseargs@0.11.0": [ + "npm:@pkgjs/parseargs" + ], + "@pkgr/core@0.2.9": [ + "npm:@pkgr/core" + ], + "@polka/url@1.0.0-next.29": [ + "npm:@polka/url" + ], + "@poppinss/colors@4.1.5": [ + "npm:@poppinss/colors" + ], + "@poppinss/dumper@0.6.4": [ + "npm:@poppinss/dumper" + ], + "@poppinss/exception@1.2.2": [ + "npm:@poppinss/exception" + ], + "@prisma/client-runtime-utils@7.5.0": [ + "npm:@prisma/client-runtime-utils" + ], + "@prisma/client@7.5.0(prisma@7.5.0(@types/react@19.2.14)(better-sqlite3@12.8.0)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)(typescript@6.0.2))(typescript@6.0.2)": [ + "npm:@prisma/client" + ], + "@prisma/config@7.5.0": [ + "npm:@prisma/config" + ], + "@prisma/debug@7.2.0": [ + "npm:@prisma/debug@7.2.0" + ], + "@prisma/debug@7.5.0": [ + "npm:@prisma/debug" + ], + "@prisma/dev@0.20.0(typescript@6.0.2)": [ + "npm:@prisma/dev" + ], + "@prisma/engines-version@7.5.0-15.280c870be64f457428992c43c1f6d557fab6e29e": [ + "npm:@prisma/engines-version" + ], + "@prisma/engines@7.5.0": [ + "npm:@prisma/engines" + ], + "@prisma/fetch-engine@7.5.0": [ + "npm:@prisma/fetch-engine" + ], + "@prisma/get-platform@7.2.0": [ + "npm:@prisma/get-platform" + ], + "@prisma/get-platform@7.5.0": [ + "npm:@prisma/get-platform@7.5.0" + ], + "@prisma/query-plan-executor@7.2.0": [ + "npm:@prisma/query-plan-executor" + ], + "@prisma/studio-core@0.21.1(@types/react@19.2.14)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)": [ + "npm:@prisma/studio-core" + ], + "@puppeteer/browsers@2.13.0": [ + "npm:@puppeteer/browsers" + ], + "@quansync/fs@1.0.0": [ + "npm:@quansync/fs" + ], + "@radix-ui/react-icons@1.3.2(react@19.2.4)": [ + "npm:@radix-ui/react-icons" + ], + "@remix-run/node-fetch-server@0.8.1": [ + "npm:@remix-run/node-fetch-server" + ], + "@remusao/guess-url-type@2.1.0": [ + "npm:@remusao/guess-url-type" + ], + "@remusao/small@2.1.0": [ + "npm:@remusao/small" + ], + "@remusao/smaz-compress@2.2.0": [ + "npm:@remusao/smaz-compress" + ], + "@remusao/smaz-decompress@2.2.0": [ + "npm:@remusao/smaz-decompress" + ], + "@remusao/smaz@2.2.0": [ + "npm:@remusao/smaz" + ], + "@remusao/trie@2.1.0": [ + "npm:@remusao/trie" + ], + "@rolldown/binding-android-arm64@1.0.0-beta.51": [ + "npm:@rolldown/binding-android-arm64@1.0.0-beta.51" + ], + "@rolldown/binding-android-arm64@1.0.0-rc.11": [ + "npm:@rolldown/binding-android-arm64@1.0.0-rc.11" + ], + "@rolldown/binding-android-arm64@1.0.0-rc.9": [ + "npm:@rolldown/binding-android-arm64@1.0.0-rc.9" + ], + "@rolldown/binding-darwin-arm64@1.0.0-beta.51": [ + "npm:@rolldown/binding-darwin-arm64@1.0.0-beta.51" + ], + "@rolldown/binding-darwin-arm64@1.0.0-rc.11": [ + "npm:@rolldown/binding-darwin-arm64@1.0.0-rc.11" + ], + "@rolldown/binding-darwin-arm64@1.0.0-rc.9": [ + "npm:@rolldown/binding-darwin-arm64@1.0.0-rc.9" + ], + "@rolldown/binding-darwin-x64@1.0.0-beta.51": [ + "npm:@rolldown/binding-darwin-x64@1.0.0-beta.51" + ], + "@rolldown/binding-darwin-x64@1.0.0-rc.11": [ + "npm:@rolldown/binding-darwin-x64@1.0.0-rc.11" + ], + "@rolldown/binding-darwin-x64@1.0.0-rc.9": [ + "npm:@rolldown/binding-darwin-x64@1.0.0-rc.9" + ], + "@rolldown/binding-freebsd-x64@1.0.0-beta.51": [ + "npm:@rolldown/binding-freebsd-x64@1.0.0-beta.51" + ], + "@rolldown/binding-freebsd-x64@1.0.0-rc.11": [ + "npm:@rolldown/binding-freebsd-x64@1.0.0-rc.11" + ], + "@rolldown/binding-freebsd-x64@1.0.0-rc.9": [ + "npm:@rolldown/binding-freebsd-x64@1.0.0-rc.9" + ], + "@rolldown/binding-linux-arm-gnueabihf@1.0.0-beta.51": [ + "npm:@rolldown/binding-linux-arm-gnueabihf@1.0.0-beta.51" + ], + "@rolldown/binding-linux-arm-gnueabihf@1.0.0-rc.11": [ + "npm:@rolldown/binding-linux-arm-gnueabihf@1.0.0-rc.11" + ], + "@rolldown/binding-linux-arm-gnueabihf@1.0.0-rc.9": [ + "npm:@rolldown/binding-linux-arm-gnueabihf@1.0.0-rc.9" + ], + "@rolldown/binding-linux-arm64-gnu@1.0.0-beta.51": [ + "npm:@rolldown/binding-linux-arm64-gnu@1.0.0-beta.51" + ], + "@rolldown/binding-linux-arm64-gnu@1.0.0-rc.11": [ + "npm:@rolldown/binding-linux-arm64-gnu@1.0.0-rc.11" + ], + "@rolldown/binding-linux-arm64-gnu@1.0.0-rc.9": [ + "npm:@rolldown/binding-linux-arm64-gnu@1.0.0-rc.9" + ], + "@rolldown/binding-linux-arm64-musl@1.0.0-beta.51": [ + "npm:@rolldown/binding-linux-arm64-musl@1.0.0-beta.51" + ], + "@rolldown/binding-linux-arm64-musl@1.0.0-rc.11": [ + "npm:@rolldown/binding-linux-arm64-musl@1.0.0-rc.11" + ], + "@rolldown/binding-linux-arm64-musl@1.0.0-rc.9": [ + "npm:@rolldown/binding-linux-arm64-musl@1.0.0-rc.9" + ], + "@rolldown/binding-linux-ppc64-gnu@1.0.0-rc.11": [ + "npm:@rolldown/binding-linux-ppc64-gnu@1.0.0-rc.11" + ], + "@rolldown/binding-linux-ppc64-gnu@1.0.0-rc.9": [ + "npm:@rolldown/binding-linux-ppc64-gnu@1.0.0-rc.9" + ], + "@rolldown/binding-linux-s390x-gnu@1.0.0-rc.11": [ + "npm:@rolldown/binding-linux-s390x-gnu@1.0.0-rc.11" + ], + "@rolldown/binding-linux-s390x-gnu@1.0.0-rc.9": [ + "npm:@rolldown/binding-linux-s390x-gnu@1.0.0-rc.9" + ], + "@rolldown/binding-linux-x64-gnu@1.0.0-beta.51": [ + "npm:@rolldown/binding-linux-x64-gnu@1.0.0-beta.51" + ], + "@rolldown/binding-linux-x64-gnu@1.0.0-rc.11": [ + "npm:@rolldown/binding-linux-x64-gnu" + ], + "@rolldown/binding-linux-x64-gnu@1.0.0-rc.9": [ + "npm:@rolldown/binding-linux-x64-gnu@1.0.0-rc.9" + ], + "@rolldown/binding-linux-x64-musl@1.0.0-beta.51": [ + "npm:@rolldown/binding-linux-x64-musl@1.0.0-beta.51" + ], + "@rolldown/binding-linux-x64-musl@1.0.0-rc.11": [ + "npm:@rolldown/binding-linux-x64-musl" + ], + "@rolldown/binding-linux-x64-musl@1.0.0-rc.9": [ + "npm:@rolldown/binding-linux-x64-musl@1.0.0-rc.9" + ], + "@rolldown/binding-openharmony-arm64@1.0.0-beta.51": [ + "npm:@rolldown/binding-openharmony-arm64@1.0.0-beta.51" + ], + "@rolldown/binding-openharmony-arm64@1.0.0-rc.11": [ + "npm:@rolldown/binding-openharmony-arm64@1.0.0-rc.11" + ], + "@rolldown/binding-openharmony-arm64@1.0.0-rc.9": [ + "npm:@rolldown/binding-openharmony-arm64@1.0.0-rc.9" + ], + "@rolldown/binding-wasm32-wasi@1.0.0-beta.51": [ + "npm:@rolldown/binding-wasm32-wasi@1.0.0-beta.51" + ], + "@rolldown/binding-wasm32-wasi@1.0.0-rc.11": [ + "npm:@rolldown/binding-wasm32-wasi@1.0.0-rc.11" + ], + "@rolldown/binding-wasm32-wasi@1.0.0-rc.9": [ + "npm:@rolldown/binding-wasm32-wasi@1.0.0-rc.9" + ], + "@rolldown/binding-win32-arm64-msvc@1.0.0-beta.51": [ + "npm:@rolldown/binding-win32-arm64-msvc@1.0.0-beta.51" + ], + "@rolldown/binding-win32-arm64-msvc@1.0.0-rc.11": [ + "npm:@rolldown/binding-win32-arm64-msvc@1.0.0-rc.11" + ], + "@rolldown/binding-win32-arm64-msvc@1.0.0-rc.9": [ + "npm:@rolldown/binding-win32-arm64-msvc@1.0.0-rc.9" + ], + "@rolldown/binding-win32-ia32-msvc@1.0.0-beta.51": [ + "npm:@rolldown/binding-win32-ia32-msvc" + ], + "@rolldown/binding-win32-x64-msvc@1.0.0-beta.51": [ + "npm:@rolldown/binding-win32-x64-msvc@1.0.0-beta.51" + ], + "@rolldown/binding-win32-x64-msvc@1.0.0-rc.11": [ + "npm:@rolldown/binding-win32-x64-msvc@1.0.0-rc.11" + ], + "@rolldown/binding-win32-x64-msvc@1.0.0-rc.9": [ + "npm:@rolldown/binding-win32-x64-msvc@1.0.0-rc.9" + ], + "@rolldown/pluginutils@1.0.0-beta.51": [ + "npm:@rolldown/pluginutils@1.0.0-beta.51" + ], + "@rolldown/pluginutils@1.0.0-rc.11": [ + "npm:@rolldown/pluginutils@1.0.0-rc.11" + ], + "@rolldown/pluginutils@1.0.0-rc.2": [ + "npm:@rolldown/pluginutils@1.0.0-rc.2" + ], + "@rolldown/pluginutils@1.0.0-rc.7": [ + "npm:@rolldown/pluginutils" + ], + "@rolldown/pluginutils@1.0.0-rc.9": [ + "npm:@rolldown/pluginutils@1.0.0-rc.9" + ], + "@rollup/pluginutils@5.3.0": [ + "npm:@rollup/pluginutils" + ], + "@sec-ant/readable-stream@0.4.1": [ + "npm:@sec-ant/readable-stream" + ], + "@sentry-internal/browser-utils@10.45.0": [ + "npm:@sentry-internal/browser-utils" + ], + "@sentry-internal/feedback@10.45.0": [ + "npm:@sentry-internal/feedback" + ], + "@sentry-internal/replay-canvas@10.45.0": [ + "npm:@sentry-internal/replay-canvas" + ], + "@sentry-internal/replay@10.45.0": [ + "npm:@sentry-internal/replay" + ], + "@sentry/babel-plugin-component-annotate@5.1.1": [ + "npm:@sentry/babel-plugin-component-annotate" + ], + "@sentry/browser@10.45.0": [ + "npm:@sentry/browser" + ], + "@sentry/bundler-plugin-core@5.1.1(encoding@0.1.13)": [ + "npm:@sentry/bundler-plugin-core" + ], + "@sentry/cli-darwin@2.58.5": [ + "npm:@sentry/cli-darwin" + ], + "@sentry/cli-linux-arm64@2.58.5": [ + "npm:@sentry/cli-linux-arm64" + ], + "@sentry/cli-linux-arm@2.58.5": [ + "npm:@sentry/cli-linux-arm" + ], + "@sentry/cli-linux-i686@2.58.5": [ + "npm:@sentry/cli-linux-i686" + ], + "@sentry/cli-linux-x64@2.58.5": [ + "npm:@sentry/cli-linux-x64" + ], + "@sentry/cli-win32-arm64@2.58.5": [ + "npm:@sentry/cli-win32-arm64" + ], + "@sentry/cli-win32-i686@2.58.5": [ + "npm:@sentry/cli-win32-i686" + ], + "@sentry/cli-win32-x64@2.58.5": [ + "npm:@sentry/cli-win32-x64" + ], + "@sentry/cli@2.58.5(encoding@0.1.13)": [ + "npm:@sentry/cli" + ], + "@sentry/core@10.45.0": [ + "npm:@sentry/core" + ], + "@sentry/react@10.45.0(react@19.2.4)": [ + "npm:@sentry/react" + ], + "@sentry/rollup-plugin@5.1.1(encoding@0.1.13)": [ + "npm:@sentry/rollup-plugin" + ], + "@sentry/solid@10.45.0(solid-js@1.9.11)": [ + "npm:@sentry/solid" + ], + "@sentry/vite-plugin@5.1.1(encoding@0.1.13)": [ + "npm:@sentry/vite-plugin" + ], + "@sentry/vue@10.45.0(vue@3.5.30(typescript@6.0.2))": [ + "npm:@sentry/vue" + ], + "@sinclair/typebox@0.34.48": [ + "npm:@sinclair/typebox" + ], + "@sindresorhus/is@4.6.0": [ + "npm:@sindresorhus/is" + ], + "@sindresorhus/is@7.1.0": [ + "npm:@sindresorhus/is@7.1.0" + ], + "@sindresorhus/merge-streams@4.0.0": [ + "npm:@sindresorhus/merge-streams" + ], + "@solid-primitives/props@3.2.2(solid-js@1.9.11)": [ + "npm:@solid-primitives/props" + ], + "@solid-primitives/refs@1.1.2(solid-js@1.9.11)": [ + "npm:@solid-primitives/refs" + ], + "@solid-primitives/scheduled@1.5.3(solid-js@1.9.11)": [ + "npm:@solid-primitives/scheduled" + ], + "@solid-primitives/transition-group@1.1.2(solid-js@1.9.11)": [ + "npm:@solid-primitives/transition-group" + ], + "@solid-primitives/utils@6.3.2(solid-js@1.9.11)": [ + "npm:@solid-primitives/utils" + ], + "@speed-highlight/core@1.2.7": [ + "npm:@speed-highlight/core" + ], + "@stackblitz/sdk@1.11.0": [ + "npm:@stackblitz/sdk" + ], + "@standard-schema/spec@1.1.0": [ + "npm:@standard-schema/spec" + ], + "@szmarczak/http-timer@4.0.6": [ + "npm:@szmarczak/http-timer" + ], + "@tailwindcss/node@4.2.2": [ + "npm:@tailwindcss/node" + ], + "@tailwindcss/oxide-android-arm64@4.2.2": [ + "npm:@tailwindcss/oxide-android-arm64" + ], + "@tailwindcss/oxide-darwin-arm64@4.2.2": [ + "npm:@tailwindcss/oxide-darwin-arm64" + ], + "@tailwindcss/oxide-darwin-x64@4.2.2": [ + "npm:@tailwindcss/oxide-darwin-x64" + ], + "@tailwindcss/oxide-freebsd-x64@4.2.2": [ + "npm:@tailwindcss/oxide-freebsd-x64" + ], + "@tailwindcss/oxide-linux-arm-gnueabihf@4.2.2": [ + "npm:@tailwindcss/oxide-linux-arm-gnueabihf" + ], + "@tailwindcss/oxide-linux-arm64-gnu@4.2.2": [ + "npm:@tailwindcss/oxide-linux-arm64-gnu" + ], + "@tailwindcss/oxide-linux-arm64-musl@4.2.2": [ + "npm:@tailwindcss/oxide-linux-arm64-musl" + ], + "@tailwindcss/oxide-linux-x64-gnu@4.2.2": [ + "npm:@tailwindcss/oxide-linux-x64-gnu" + ], + "@tailwindcss/oxide-linux-x64-musl@4.2.2": [ + "npm:@tailwindcss/oxide-linux-x64-musl" + ], + "@tailwindcss/oxide-wasm32-wasi@4.2.2": [ + "npm:@tailwindcss/oxide-wasm32-wasi" + ], + "@tailwindcss/oxide-win32-arm64-msvc@4.2.2": [ + "npm:@tailwindcss/oxide-win32-arm64-msvc" + ], + "@tailwindcss/oxide-win32-x64-msvc@4.2.2": [ + "npm:@tailwindcss/oxide-win32-x64-msvc" + ], + "@tailwindcss/oxide@4.2.2": [ + "npm:@tailwindcss/oxide" + ], + "@tailwindcss/vite@4.2.2(vite@8.0.2(@types/node@20.19.37)(esbuild@0.27.4)(jiti@2.6.1)(sugarss@5.0.1(postcss@8.5.8))(tsx@4.21.0)(yaml@2.8.3))": [ + "npm:@tailwindcss/vite" + ], + "@tootallnate/quickjs-emscripten@0.23.0": [ + "npm:@tootallnate/quickjs-emscripten" + ], + "@trpc/client@11.14.1(@trpc/server@11.14.1(typescript@6.0.2))(typescript@6.0.2)": [ + "npm:@trpc/client" + ], + "@trpc/server@11.14.1(typescript@6.0.2)": [ + "npm:@trpc/server" + ], + "@trysound/sax@0.2.0": [ + "npm:@trysound/sax" + ], + "@ts-morph/common@0.27.0": [ + "npm:@ts-morph/common" + ], + "@ts-rest/core@3.52.1(@types/node@20.19.37)(zod@3.25.76)": [ + "npm:@ts-rest/core" + ], + "@ts-rest/serverless@3.52.1(@ts-rest/core@3.52.1(@types/node@20.19.37)(zod@3.25.76))(@types/aws-lambda@8.10.161)(zod@3.25.76)": [ + "npm:@ts-rest/serverless" + ], + "@turbo/darwin-64@2.8.20": [ + "npm:@turbo/darwin-64" + ], + "@turbo/darwin-arm64@2.8.20": [ + "npm:@turbo/darwin-arm64" + ], + "@turbo/linux-64@2.8.20": [ + "npm:@turbo/linux-64" + ], + "@turbo/linux-arm64@2.8.20": [ + "npm:@turbo/linux-arm64" + ], + "@turbo/windows-64@2.8.20": [ + "npm:@turbo/windows-64" + ], + "@turbo/windows-arm64@2.8.20": [ + "npm:@turbo/windows-arm64" + ], + "@tybys/wasm-util@0.10.1": [ + "npm:@tybys/wasm-util@0.10.1" + ], + "@tybys/wasm-util@0.9.0": [ + "npm:@tybys/wasm-util" + ], + "@types/aws-lambda@8.10.161": [ + "npm:@types/aws-lambda" + ], + "@types/babel__core@7.20.5": [ + "npm:@types/babel__core" + ], + "@types/babel__generator@7.27.0": [ + "npm:@types/babel__generator" + ], + "@types/babel__template@7.4.4": [ + "npm:@types/babel__template" + ], + "@types/babel__traverse@7.28.0": [ + "npm:@types/babel__traverse" + ], + "@types/better-sqlite3@7.6.13": [ + "npm:@types/better-sqlite3" + ], + "@types/body-parser@1.19.6": [ + "npm:@types/body-parser" + ], + "@types/cacheable-request@6.0.3": [ + "npm:@types/cacheable-request" + ], + "@types/chai@5.2.2": [ + "npm:@types/chai" + ], + "@types/connect@3.4.38": [ + "npm:@types/connect" + ], + "@types/debug@4.1.12": [ + "npm:@types/debug" + ], + "@types/deep-eql@4.0.2": [ + "npm:@types/deep-eql" + ], + "@types/eslint@9.6.1": [ + "npm:@types/eslint" + ], + "@types/estree@1.0.8": [ + "npm:@types/estree" + ], + "@types/express-serve-static-core@5.1.0": [ + "npm:@types/express-serve-static-core" + ], + "@types/express@5.0.6": [ + "npm:@types/express" + ], + "@types/http-cache-semantics@4.0.4": [ + "npm:@types/http-cache-semantics" + ], + "@types/http-errors@2.0.5": [ + "npm:@types/http-errors" + ], + "@types/jsesc@2.5.1": [ + "npm:@types/jsesc" + ], + "@types/json-schema@7.0.15": [ + "npm:@types/json-schema" + ], + "@types/keyv@3.1.4": [ + "npm:@types/keyv" + ], + "@types/mdast@4.0.4": [ + "npm:@types/mdast" + ], + "@types/ms@2.1.0": [ + "npm:@types/ms" + ], + "@types/node@20.19.37": [ + "npm:@types/node" + ], + "@types/qs@6.14.0": [ + "npm:@types/qs" + ], + "@types/range-parser@1.2.7": [ + "npm:@types/range-parser" + ], + "@types/react-dom@19.2.3(@types/react@19.2.14)": [ + "npm:@types/react-dom" + ], + "@types/react@19.2.14": [ + "npm:@types/react" + ], + "@types/responselike@1.0.3": [ + "npm:@types/responselike" + ], + "@types/retry@0.12.0": [ + "npm:@types/retry" + ], + "@types/send@1.2.0": [ + "npm:@types/send" + ], + "@types/serve-static@2.2.0": [ + "npm:@types/serve-static" + ], + "@types/ungap__structured-clone@1.2.0": [ + "npm:@types/ungap__structured-clone" + ], + "@types/unist@2.0.11": [ + "npm:@types/unist" + ], + "@types/unist@3.0.3": [ + "npm:@types/unist@3.0.3" + ], + "@types/which@3.0.4": [ + "npm:@types/which" + ], + "@types/yauzl@2.10.3": [ + "npm:@types/yauzl" + ], + "@typescript-eslint/eslint-plugin@8.57.1(@typescript-eslint/parser@8.57.1(eslint@9.39.4(jiti@2.6.1))(typescript@6.0.2))(eslint@9.39.4(jiti@2.6.1))(typescript@6.0.2)": [ + "npm:@typescript-eslint/eslint-plugin" + ], + "@typescript-eslint/parser@8.57.1(eslint@9.39.4(jiti@2.6.1))(typescript@6.0.2)": [ + "npm:@typescript-eslint/parser" + ], + "@typescript-eslint/project-service@8.57.1(typescript@6.0.2)": [ + "npm:@typescript-eslint/project-service" + ], + "@typescript-eslint/scope-manager@8.57.1": [ + "npm:@typescript-eslint/scope-manager" + ], + "@typescript-eslint/tsconfig-utils@8.57.1(typescript@6.0.2)": [ + "npm:@typescript-eslint/tsconfig-utils" + ], + "@typescript-eslint/type-utils@8.57.1(eslint@9.39.4(jiti@2.6.1))(typescript@6.0.2)": [ + "npm:@typescript-eslint/type-utils" + ], + "@typescript-eslint/types@8.57.1": [ + "npm:@typescript-eslint/types" + ], + "@typescript-eslint/typescript-estree@8.57.1(typescript@6.0.2)": [ + "npm:@typescript-eslint/typescript-estree" + ], + "@typescript-eslint/utils@8.57.1(eslint@9.39.4(jiti@2.6.1))(typescript@6.0.2)": [ + "npm:@typescript-eslint/utils" + ], + "@typescript-eslint/visitor-keys@8.57.1": [ + "npm:@typescript-eslint/visitor-keys" + ], + "@ungap/structured-clone@1.3.0": [ + "npm:@ungap/structured-clone" + ], + "@universal-middleware/cloudflare@0.4.10(@cloudflare/workers-types@4.20260317.1)(@types/express@5.0.6)(fastify@5.8.2)(h3@1.15.10)(hono@4.12.8)(srvx@0.9.8)": [ + "npm:@universal-middleware/cloudflare" + ], + "@universal-middleware/compress@0.2.35": [ + "npm:@universal-middleware/compress" + ], + "@universal-middleware/core@0.4.17(@cloudflare/workers-types@4.20260317.1)(@types/express@5.0.6)(fastify@5.8.2)(h3@1.15.10)(hono@4.12.8)(srvx@0.9.8)": [ + "npm:@universal-middleware/core" + ], + "@universal-middleware/express@0.4.22(@cloudflare/workers-types@4.20260317.1)(@types/express@5.0.6)(fastify@5.8.2)(h3@1.15.10)(hono@4.12.8)(srvx@0.9.8)": [ + "npm:@universal-middleware/express" + ], + "@universal-middleware/fastify@0.5.22(@cloudflare/workers-types@4.20260317.1)(@types/express@5.0.6)(fastify@5.8.2)(h3@1.15.10)(hono@4.12.8)(srvx@0.9.8)": [ + "npm:@universal-middleware/fastify" + ], + "@universal-middleware/h3@0.4.15(@cloudflare/workers-types@4.20260317.1)(@types/express@5.0.6)(fastify@5.8.2)(h3@1.15.10)(hono@4.12.8)(srvx@0.9.8)": [ + "npm:@universal-middleware/h3" + ], + "@universal-middleware/hono@0.4.18(@cloudflare/workers-types@4.20260317.1)(@types/express@5.0.6)(fastify@5.8.2)(h3@1.15.10)(hono@4.12.8)(srvx@0.9.8)": [ + "npm:@universal-middleware/hono" + ], + "@universal-middleware/sirv@0.1.25": [ + "npm:@universal-middleware/sirv" + ], + "@universal-middleware/srvx@0.1.1(@cloudflare/workers-types@4.20260317.1)(@types/express@5.0.6)(fastify@5.8.2)(h3@1.15.10)(hono@4.12.8)(srvx@0.9.8)": [ + "npm:@universal-middleware/srvx" + ], + "@universal-middleware/vercel@0.4.29(@cloudflare/workers-types@4.20260317.1)(@types/express@5.0.6)(@universal-middleware/h3@0.4.15(@cloudflare/workers-types@4.20260317.1)(@types/express@5.0.6)(fastify@5.8.2)(h3@1.15.10)(hono@4.12.8)(srvx@0.9.8))(express@5.2.1)(fastify@5.8.2)(h3@1.15.10)(hono@4.12.8)(srvx@0.9.8)": [ + "npm:@universal-middleware/vercel" + ], + "@vercel/build-utils@13.2.4": [ + "npm:@vercel/build-utils" + ], + "@vercel/nft@0.30.4(encoding@0.1.13)": [ + "npm:@vercel/nft@0.30.4" + ], + "@vercel/nft@1.1.1(encoding@0.1.13)": [ + "npm:@vercel/nft" + ], + "@vercel/routing-utils@5.3.1": [ + "npm:@vercel/routing-utils" + ], + "@vikejs/biome-config@2.0.1(@biomejs/biome@2.4.8)": [ + "npm:@vikejs/biome-config" + ], + "@vite-plugin-vercel/schemas@1.1.0": [ + "npm:@vite-plugin-vercel/schemas" + ], + "@vitejs/plugin-react@6.0.1(vite@8.0.2(@types/node@20.19.37)(esbuild@0.27.4)(jiti@2.6.1)(sugarss@5.0.1(postcss@8.5.8))(tsx@4.21.0)(yaml@2.8.3))": [ + "npm:@vitejs/plugin-react" + ], + "@vitejs/plugin-vue@6.0.5(vite@8.0.2(@types/node@20.19.37)(esbuild@0.27.4)(jiti@2.6.1)(sugarss@5.0.1(postcss@8.5.8))(tsx@4.21.0)(yaml@2.8.3))(vue@3.5.30(typescript@6.0.2))": [ + "npm:@vitejs/plugin-vue" + ], + "@vitest/expect@4.1.0": [ + "npm:@vitest/expect" + ], + "@vitest/mocker@4.1.0(vite@8.0.2(@types/node@20.19.37)(esbuild@0.27.4)(jiti@2.6.1)(sugarss@5.0.1(postcss@8.5.8))(tsx@4.21.0)(yaml@2.8.3))": [ + "npm:@vitest/mocker" + ], + "@vitest/pretty-format@4.1.0": [ + "npm:@vitest/pretty-format" + ], + "@vitest/runner@4.1.0": [ + "npm:@vitest/runner" + ], + "@vitest/snapshot@4.1.0": [ + "npm:@vitest/snapshot" + ], + "@vitest/spy@4.1.0": [ + "npm:@vitest/spy" + ], + "@vitest/utils@4.1.0": [ + "npm:@vitest/utils" + ], + "@vue/compiler-core@3.5.30": [ + "npm:@vue/compiler-core" + ], + "@vue/compiler-dom@3.5.30": [ + "npm:@vue/compiler-dom" + ], + "@vue/compiler-sfc@3.5.30": [ + "npm:@vue/compiler-sfc" + ], + "@vue/compiler-ssr@3.5.30": [ + "npm:@vue/compiler-ssr" + ], + "@vue/reactivity@3.5.30": [ + "npm:@vue/reactivity" + ], + "@vue/runtime-core@3.5.30": [ + "npm:@vue/runtime-core" + ], + "@vue/runtime-dom@3.5.30": [ + "npm:@vue/runtime-dom" + ], + "@vue/server-renderer@3.5.30(vue@3.5.30(typescript@6.0.2))": [ + "npm:@vue/server-renderer" + ], + "@vue/shared@3.5.30": [ + "npm:@vue/shared" + ], + "@yarnpkg/lockfile@1.1.0": [ + "npm:@yarnpkg/lockfile" + ], + "@yarnpkg/parsers@3.0.2": [ + "npm:@yarnpkg/parsers" + ], + "@zkochan/js-yaml@0.0.7": [ + "npm:@zkochan/js-yaml" + ], + "abbrev@3.0.1": [ + "npm:abbrev" + ], + "abstract-logging@2.0.1": [ + "npm:abstract-logging" + ], + "accepts@2.0.0": [ + "npm:accepts" + ], + "acorn-import-attributes@1.9.5(acorn@8.16.0)": [ + "npm:acorn-import-attributes" + ], + "acorn-jsx@5.3.2(acorn@8.16.0)": [ + "npm:acorn-jsx" + ], + "acorn-walk@8.3.2": [ + "npm:acorn-walk" + ], + "acorn@8.14.0": [ + "npm:acorn@8.14.0" + ], + "acorn@8.16.0": [ + "npm:acorn" + ], + "agent-base@6.0.2": [ + "npm:agent-base@6.0.2" + ], + "agent-base@7.1.4": [ + "npm:agent-base" + ], + "ajv-formats@3.0.1": [ + "npm:ajv-formats" + ], + "ajv@6.14.0": [ + "npm:ajv" + ], + "ajv@8.18.0": [ + "npm:ajv@8.18.0" + ], + "ansi-colors@4.1.3": [ + "npm:ansi-colors" + ], + "ansi-regex@5.0.1": [ + "npm:ansi-regex@5.0.1" + ], + "ansi-regex@6.2.2": [ + "npm:ansi-regex" + ], + "ansi-styles@4.3.0": [ + "npm:ansi-styles@4.3.0" + ], + "ansi-styles@5.2.0": [ + "npm:ansi-styles@5.2.0" + ], + "ansi-styles@6.2.3": [ + "npm:ansi-styles" + ], + "ansis@4.2.0": [ + "npm:ansis" + ], + "argparse@1.0.10": [ + "npm:argparse@1.0.10" + ], + "argparse@2.0.1": [ + "npm:argparse" + ], + "args-tokenizer@0.3.0": [ + "npm:args-tokenizer" + ], + "array-buffer-byte-length@1.0.2": [ + "npm:array-buffer-byte-length" + ], + "array-includes@3.1.9": [ + "npm:array-includes" + ], + "array.prototype.findlast@1.2.5": [ + "npm:array.prototype.findlast" + ], + "array.prototype.flat@1.3.3": [ + "npm:array.prototype.flat" + ], + "array.prototype.flatmap@1.3.3": [ + "npm:array.prototype.flatmap" + ], + "array.prototype.tosorted@1.1.4": [ + "npm:array.prototype.tosorted" + ], + "arraybuffer.prototype.slice@1.0.4": [ + "npm:arraybuffer.prototype.slice" + ], + "ast-kit@3.0.0-beta.1": [ + "npm:ast-kit" + ], + "ast-types@0.13.4": [ + "npm:ast-types" + ], + "async-function@1.0.0": [ + "npm:async-function" + ], + "async-sema@3.1.1": [ + "npm:async-sema" + ], + "async@3.2.6": [ + "npm:async" + ], + "asynckit@0.4.0": [ + "npm:asynckit" + ], + "atomic-sleep@1.0.0": [ + "npm:atomic-sleep" + ], + "attributes-parser@2.2.3": [ + "npm:attributes-parser" + ], + "automad-prism-themes@0.3.7": [ + "npm:automad-prism-themes" + ], + "autoprefixer@10.4.27(postcss@8.5.8)": [ + "npm:autoprefixer" + ], + "available-typed-arrays@1.0.7": [ + "npm:available-typed-arrays" + ], + "avvio@9.2.0": [ + "npm:avvio" + ], + "aws-cdk-lib@2.244.0(constructs@10.5.1)": [ + "npm:aws-cdk-lib" + ], + "aws-cdk@2.1112.0": [ + "npm:aws-cdk" + ], + "aws-ssl-profiles@1.1.2": [ + "npm:aws-ssl-profiles" + ], + "axios@1.13.6": [ + "npm:axios" + ], + "b4a@1.7.3": [ + "npm:b4a" + ], + "babel-plugin-jsx-dom-expressions@0.40.3(@babel/core@7.29.0)": [ + "npm:babel-plugin-jsx-dom-expressions" + ], + "babel-plugin-module-resolver@5.0.2": [ + "npm:babel-plugin-module-resolver" + ], + "babel-preset-solid@1.9.10(@babel/core@7.29.0)(solid-js@1.9.11)": [ + "npm:babel-preset-solid" + ], + "balanced-match@1.0.2": [ + "npm:balanced-match" + ], + "balanced-match@4.0.2": [ + "npm:balanced-match@4.0.2" + ], + "bare-events@2.8.0": [ + "npm:bare-events" + ], + "bare-fs@4.4.11": [ + "npm:bare-fs" + ], + "bare-os@3.6.2": [ + "npm:bare-os" + ], + "bare-path@3.0.0": [ + "npm:bare-path" + ], + "bare-stream@2.7.0(bare-events@2.8.0)": [ + "npm:bare-stream" + ], + "bare-url@2.3.0": [ + "npm:bare-url" + ], + "base64-js@1.5.1": [ + "npm:base64-js" + ], + "baseline-browser-mapping@2.9.7": [ + "npm:baseline-browser-mapping" + ], + "basic-auth@2.0.1": [ + "npm:basic-auth" + ], + "basic-ftp@5.0.5": [ + "npm:basic-ftp" + ], + "better-sqlite3@12.8.0": [ + "npm:better-sqlite3" + ], + "bindings@1.5.0": [ + "npm:bindings" + ], + "birpc@4.0.0": [ + "npm:birpc" + ], + "bl@4.1.0": [ + "npm:bl" + ], + "blake3-wasm@2.1.5": [ + "npm:blake3-wasm" + ], + "body-parser@2.2.1": [ + "npm:body-parser" + ], + "boolbase@1.0.0": [ + "npm:boolbase" + ], + "brace-expansion@1.1.12": [ + "npm:brace-expansion@1.1.12" + ], + "brace-expansion@2.0.2": [ + "npm:brace-expansion@2.0.2" + ], + "brace-expansion@5.0.2": [ + "npm:brace-expansion" + ], + "braces@3.0.3": [ + "npm:braces" + ], + "browserless@10.12.5(puppeteer@24.40.0(typescript@6.0.2))": [ + "npm:browserless" + ], + "browserslist@4.28.1": [ + "npm:browserslist" + ], + "buffer-crc32@0.2.13": [ + "npm:buffer-crc32" + ], + "buffer-from@1.1.2": [ + "npm:buffer-from" + ], + "buffer@5.7.1": [ + "npm:buffer" + ], + "bumpp@11.0.1": [ + "npm:bumpp" + ], + "bytes@3.1.2": [ + "npm:bytes" + ], + "c12@3.1.0": [ + "npm:c12" + ], + "cac@6.7.14": [ + "npm:cac@6.7.14" + ], + "cac@7.0.0": [ + "npm:cac" + ], + "cacache@19.0.1": [ + "npm:cacache" + ], + "cacheable-lookup@5.0.4": [ + "npm:cacheable-lookup" + ], + "cacheable-request@7.0.4": [ + "npm:cacheable-request" + ], + "call-bind-apply-helpers@1.0.2": [ + "npm:call-bind-apply-helpers" + ], + "call-bind@1.0.8": [ + "npm:call-bind" + ], + "call-bound@1.0.4": [ + "npm:call-bound" + ], + "callsites@3.1.0": [ + "npm:callsites" + ], + "camelcase-css@2.0.1": [ + "npm:camelcase-css" + ], + "caniuse-api@3.0.0": [ + "npm:caniuse-api" + ], + "caniuse-lite@1.0.30001775": [ + "npm:caniuse-lite" + ], + "cdk@2.1112.0": [ + "npm:cdk" + ], + "chai@6.2.2": [ + "npm:chai" + ], + "chalk@4.1.2": [ + "npm:chalk" + ], + "character-entities@2.0.2": [ + "npm:character-entities" + ], + "chardet@2.1.1": [ + "npm:chardet" + ], + "chevrotain@10.5.0": [ + "npm:chevrotain" + ], + "chokidar@4.0.3": [ + "npm:chokidar" + ], + "chownr@1.1.4": [ + "npm:chownr" + ], + "chownr@3.0.0": [ + "npm:chownr@3.0.0" + ], + "chromium-bidi@14.0.0(devtools-protocol@0.0.1581282)": [ + "npm:chromium-bidi" + ], + "citty@0.1.6": [ + "npm:citty@0.1.6" + ], + "citty@0.2.1": [ + "npm:citty" + ], + "class-variance-authority@0.7.1": [ + "npm:class-variance-authority" + ], + "cli-cursor@3.1.0": [ + "npm:cli-cursor" + ], + "cli-spinners@2.6.1": [ + "npm:cli-spinners" + ], + "cli-width@4.1.0": [ + "npm:cli-width" + ], + "cliui@8.0.1": [ + "npm:cliui" + ], + "clone-response@1.0.3": [ + "npm:clone-response" + ], + "clone@1.0.4": [ + "npm:clone" + ], + "clsx@2.1.1": [ + "npm:clsx" + ], + "code-block-writer@13.0.3": [ + "npm:code-block-writer" + ], + "color-convert@2.0.1": [ + "npm:color-convert" + ], + "color-name@1.1.4": [ + "npm:color-name" + ], + "color-string@1.9.1": [ + "npm:color-string" + ], + "color@4.2.3": [ + "npm:color" + ], + "colord@2.9.3": [ + "npm:colord" + ], + "colorette@2.0.20": [ + "npm:colorette" + ], + "combined-stream@1.0.8": [ + "npm:combined-stream" + ], + "commander@7.2.0": [ + "npm:commander" + ], + "component-register@0.8.8": [ + "npm:component-register" + ], + "concat-map@0.0.1": [ + "npm:concat-map" + ], + "confbox@0.1.8": [ + "npm:confbox@0.1.8" + ], + "confbox@0.2.2": [ + "npm:confbox" + ], + "consola@3.4.2": [ + "npm:consola" + ], + "constructs@10.5.1": [ + "npm:constructs" + ], + "content-disposition@1.0.1": [ + "npm:content-disposition" + ], + "content-type@1.0.5": [ + "npm:content-type" + ], + "convert-route@0.1.2": [ + "npm:convert-route" + ], + "convert-source-map@2.0.0": [ + "npm:convert-source-map" + ], + "cookie-es@1.2.2": [ + "npm:cookie-es" + ], + "cookie-signature@1.2.2": [ + "npm:cookie-signature" + ], + "cookie@0.7.2": [ + "npm:cookie" + ], + "cookie@1.1.1": [ + "npm:cookie@1.1.1" + ], + "corser@2.0.1": [ + "npm:corser" + ], + "cosmiconfig@9.0.0(typescript@6.0.2)": [ + "npm:cosmiconfig" + ], + "cross-spawn@7.0.6": [ + "npm:cross-spawn" + ], + "crossws@0.3.5": [ + "npm:crossws" + ], + "css-declaration-sorter@6.4.1(postcss@8.5.8)": [ + "npm:css-declaration-sorter" + ], + "css-select@4.3.0": [ + "npm:css-select" + ], + "css-tree@1.1.3": [ + "npm:css-tree" + ], + "css-what@6.2.2": [ + "npm:css-what" + ], + "cssesc@3.0.0": [ + "npm:cssesc" + ], + "cssnano-preset-default@5.2.14(postcss@8.5.8)": [ + "npm:cssnano-preset-default" + ], + "cssnano-utils@3.1.0(postcss@8.5.8)": [ + "npm:cssnano-utils" + ], + "csso@4.2.0": [ + "npm:csso" + ], + "csstype@3.2.3": [ + "npm:csstype" + ], + "daisyui@5.5.19": [ + "npm:daisyui" + ], + "data-uri-to-buffer@4.0.1": [ + "npm:data-uri-to-buffer" + ], + "data-uri-to-buffer@6.0.2": [ + "npm:data-uri-to-buffer@6.0.2" + ], + "data-view-buffer@1.0.2": [ + "npm:data-view-buffer" + ], + "data-view-byte-length@1.0.2": [ + "npm:data-view-byte-length" + ], + "data-view-byte-offset@1.0.1": [ + "npm:data-view-byte-offset" + ], + "debug-logfmt@1.4.8": [ + "npm:debug-logfmt" + ], + "debug@4.4.3": [ + "npm:debug" + ], + "decode-named-character-reference@1.2.0": [ + "npm:decode-named-character-reference" + ], + "decompress-response@6.0.0": [ + "npm:decompress-response" + ], + "deep-extend@0.6.0": [ + "npm:deep-extend" + ], + "deep-is@0.1.4": [ + "npm:deep-is" + ], + "deepmerge-ts@7.1.5": [ + "npm:deepmerge-ts" + ], + "defaults@1.0.4": [ + "npm:defaults" + ], + "defer-to-connect@2.0.1": [ + "npm:defer-to-connect" + ], + "define-data-property@1.1.4": [ + "npm:define-data-property" + ], + "define-lazy-prop@2.0.0": [ + "npm:define-lazy-prop" + ], + "define-properties@1.2.1": [ + "npm:define-properties" + ], + "defu@6.1.4": [ + "npm:defu" + ], + "degenerator@5.0.1": [ + "npm:degenerator" + ], + "delayed-stream@1.0.0": [ + "npm:delayed-stream" + ], + "denque@2.1.0": [ + "npm:denque" + ], + "depd@2.0.0": [ + "npm:depd" + ], + "dequal@2.0.3": [ + "npm:dequal" + ], + "destr@2.0.5": [ + "npm:destr" + ], + "detect-libc@2.1.2": [ + "npm:detect-libc" + ], + "detect-node-es@1.1.0": [ + "npm:detect-node-es" + ], + "devlop@1.1.0": [ + "npm:devlop" + ], + "devtools-protocol@0.0.1581282": [ + "npm:devtools-protocol" + ], + "didyoumean3@1.2.5": [ + "npm:didyoumean3" + ], + "doctrine@2.1.0": [ + "npm:doctrine" + ], + "dom-serializer@1.4.1": [ + "npm:dom-serializer" + ], + "domelementtype@2.3.0": [ + "npm:domelementtype" + ], + "domhandler@4.3.1": [ + "npm:domhandler" + ], + "domutils@2.8.0": [ + "npm:domutils" + ], + "dotenv-expand@11.0.7": [ + "npm:dotenv-expand" + ], + "dotenv@16.4.7": [ + "npm:dotenv@16.4.7" + ], + "dotenv@16.6.1": [ + "npm:dotenv@16.6.1" + ], + "dotenv@17.3.1": [ + "npm:dotenv" + ], + "drizzle-kit@0.31.10": [ + "npm:drizzle-kit" + ], + "drizzle-orm@0.45.1(@cloudflare/workers-types@4.20260317.1)(@electric-sql/pglite@0.3.15)(@prisma/client@7.5.0(prisma@7.5.0(@types/react@19.2.14)(better-sqlite3@12.8.0)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)(typescript@6.0.2))(typescript@6.0.2))(@types/better-sqlite3@7.6.13)(better-sqlite3@12.8.0)(kysely@0.28.14)(mysql2@3.15.3)(postgres@3.4.7)(prisma@7.5.0(@types/react@19.2.14)(better-sqlite3@12.8.0)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)(typescript@6.0.2))": [ + "npm:drizzle-orm" + ], + "dts-resolver@2.1.3(oxc-resolver@11.19.1)": [ + "npm:dts-resolver" + ], + "dunder-proto@1.0.1": [ + "npm:dunder-proto" + ], + "eastasianwidth@0.2.0": [ + "npm:eastasianwidth" + ], + "ee-first@1.1.1": [ + "npm:ee-first" + ], + "effect@3.18.4": [ + "npm:effect" + ], + "ejs@3.1.10": [ + "npm:ejs" + ], + "electron-to-chromium@1.5.267": [ + "npm:electron-to-chromium" + ], + "emoji-regex@8.0.0": [ + "npm:emoji-regex" + ], + "emoji-regex@9.2.2": [ + "npm:emoji-regex@9.2.2" + ], + "empathic@2.0.0": [ + "npm:empathic" + ], + "encodeurl@2.0.0": [ + "npm:encodeurl" + ], + "encoding@0.1.13": [ + "npm:encoding" + ], + "end-of-stream@1.4.5": [ + "npm:end-of-stream" + ], + "enhanced-resolve@5.19.0": [ + "npm:enhanced-resolve" + ], + "enquirer@2.3.6": [ + "npm:enquirer" + ], + "ensure-error@3.0.1": [ + "npm:ensure-error" + ], + "entities@2.2.0": [ + "npm:entities@2.2.0" + ], + "entities@6.0.1": [ + "npm:entities@6.0.1" + ], + "entities@7.0.1": [ + "npm:entities" + ], + "env-paths@2.2.1": [ + "npm:env-paths" + ], + "err-code@2.0.3": [ + "npm:err-code" + ], + "error-ex@1.3.4": [ + "npm:error-ex" + ], + "error-stack-parser-es@1.0.5": [ + "npm:error-stack-parser-es" + ], + "es-abstract@1.24.0": [ + "npm:es-abstract" + ], + "es-define-property@1.0.1": [ + "npm:es-define-property" + ], + "es-errors@1.3.0": [ + "npm:es-errors" + ], + "es-iterator-helpers@1.2.1": [ + "npm:es-iterator-helpers" + ], + "es-module-lexer@1.7.0": [ + "npm:es-module-lexer" + ], + "es-module-lexer@2.0.0": [ + "npm:es-module-lexer@2.0.0" + ], + "es-object-atoms@1.1.1": [ + "npm:es-object-atoms" + ], + "es-set-tostringtag@2.1.0": [ + "npm:es-set-tostringtag" + ], + "es-shim-unscopables@1.1.0": [ + "npm:es-shim-unscopables" + ], + "es-to-primitive@1.3.0": [ + "npm:es-to-primitive" + ], + "esbuild@0.18.20": [ + "npm:esbuild@0.18.20" + ], + "esbuild@0.25.12": [ + "npm:esbuild@0.25.12" + ], + "esbuild@0.27.3": [ + "npm:esbuild@0.27.3" + ], + "esbuild@0.27.4": [ + "npm:esbuild" + ], + "escalade@3.2.0": [ + "npm:escalade" + ], + "escape-html@1.0.3": [ + "npm:escape-html" + ], + "escape-string-regexp@1.0.5": [ + "npm:escape-string-regexp@1.0.5" + ], + "escape-string-regexp@4.0.0": [ + "npm:escape-string-regexp" + ], + "escodegen@2.1.0": [ + "npm:escodegen" + ], + "eslint-config-prettier@10.1.8(eslint@9.39.4(jiti@2.6.1))": [ + "npm:eslint-config-prettier" + ], + "eslint-plugin-prettier@5.5.5(@types/eslint@9.6.1)(eslint-config-prettier@10.1.8(eslint@9.39.4(jiti@2.6.1)))(eslint@9.39.4(jiti@2.6.1))(prettier@3.8.1)": [ + "npm:eslint-plugin-prettier" + ], + "eslint-plugin-react@7.37.5(eslint@9.39.4(jiti@2.6.1))": [ + "npm:eslint-plugin-react" + ], + "eslint-plugin-solid@0.14.5(eslint@9.39.4(jiti@2.6.1))(typescript@6.0.2)": [ + "npm:eslint-plugin-solid" + ], + "eslint-plugin-vue@10.8.0(@typescript-eslint/parser@8.57.1(eslint@9.39.4(jiti@2.6.1))(typescript@6.0.2))(eslint@9.39.4(jiti@2.6.1))(vue-eslint-parser@10.4.0(eslint@9.39.4(jiti@2.6.1)))": [ + "npm:eslint-plugin-vue" + ], + "eslint-rule-composer@0.3.0": [ + "npm:eslint-rule-composer" + ], + "eslint-scope@8.4.0": [ + "npm:eslint-scope" + ], + "eslint-visitor-keys@3.4.3": [ + "npm:eslint-visitor-keys@3.4.3" + ], + "eslint-visitor-keys@4.2.1": [ + "npm:eslint-visitor-keys" + ], + "eslint-visitor-keys@5.0.1": [ + "npm:eslint-visitor-keys@5.0.1" + ], + "eslint@9.39.4(jiti@2.6.1)": [ + "npm:eslint" + ], + "espree@10.4.0": [ + "npm:espree@10.4.0" + ], + "espree@11.2.0": [ + "npm:espree" + ], + "esprima@4.0.1": [ + "npm:esprima" + ], + "esquery@1.6.0": [ + "npm:esquery" + ], + "esrecurse@4.3.0": [ + "npm:esrecurse" + ], + "estraverse@5.3.0": [ + "npm:estraverse" + ], + "estree-walker@2.0.2": [ + "npm:estree-walker@2.0.2" + ], + "estree-walker@3.0.3": [ + "npm:estree-walker" + ], + "esutils@2.0.3": [ + "npm:esutils" + ], + "etag@1.8.1": [ + "npm:etag" + ], + "eventemitter3@4.0.7": [ + "npm:eventemitter3" + ], + "events-universal@1.0.1": [ + "npm:events-universal" + ], + "execa@9.6.1": [ + "npm:execa" + ], + "exit-hook@2.2.1": [ + "npm:exit-hook" + ], + "expand-template@2.0.3": [ + "npm:expand-template" + ], + "expect-type@1.3.0": [ + "npm:expect-type" + ], + "exponential-backoff@3.1.3": [ + "npm:exponential-backoff" + ], + "express@5.2.1": [ + "npm:express" + ], + "exsolve@1.0.8": [ + "npm:exsolve" + ], + "extract-zip@2.0.1": [ + "npm:extract-zip" + ], + "fast-check@3.23.2": [ + "npm:fast-check" + ], + "fast-decode-uri-component@1.0.1": [ + "npm:fast-decode-uri-component" + ], + "fast-deep-equal@3.1.3": [ + "npm:fast-deep-equal" + ], + "fast-diff@1.3.0": [ + "npm:fast-diff" + ], + "fast-fifo@1.3.2": [ + "npm:fast-fifo" + ], + "fast-glob@3.3.3": [ + "npm:fast-glob" + ], + "fast-json-stable-stringify@2.1.0": [ + "npm:fast-json-stable-stringify" + ], + "fast-json-stringify@6.3.0": [ + "npm:fast-json-stringify" + ], + "fast-levenshtein@2.0.6": [ + "npm:fast-levenshtein" + ], + "fast-querystring@1.1.2": [ + "npm:fast-querystring" + ], + "fast-string-truncated-width@3.0.3": [ + "npm:fast-string-truncated-width" + ], + "fast-string-width@3.0.2": [ + "npm:fast-string-width" + ], + "fast-uri@3.1.0": [ + "npm:fast-uri" + ], + "fast-wrap-ansi@0.2.0": [ + "npm:fast-wrap-ansi" + ], + "fastify-plugin@5.1.0": [ + "npm:fastify-plugin" + ], + "fastify-raw-body@5.0.0": [ + "npm:fastify-raw-body" + ], + "fastify@5.8.2": [ + "npm:fastify" + ], + "fastq@1.20.1": [ + "npm:fastq" + ], + "fd-package-json@2.0.0": [ + "npm:fd-package-json" + ], + "fd-slicer@1.1.0": [ + "npm:fd-slicer" + ], + "fdir@6.5.0(picomatch@4.0.3)": [ + "npm:fdir" + ], + "fetch-blob@3.2.0": [ + "npm:fetch-blob" + ], + "figures@3.2.0": [ + "npm:figures@3.2.0" + ], + "figures@6.1.0": [ + "npm:figures" + ], + "file-entry-cache@8.0.0": [ + "npm:file-entry-cache" + ], + "file-uri-to-path@1.0.0": [ + "npm:file-uri-to-path" + ], + "filelist@1.0.6": [ + "npm:filelist" + ], + "fill-range@7.1.1": [ + "npm:fill-range" + ], + "finalhandler@2.1.1": [ + "npm:finalhandler" + ], + "find-babel-config@2.1.2": [ + "npm:find-babel-config" + ], + "find-my-way@9.5.0": [ + "npm:find-my-way" + ], + "find-up@3.0.0": [ + "npm:find-up@3.0.0" + ], + "find-up@5.0.0": [ + "npm:find-up" + ], + "flat-cache@4.0.1": [ + "npm:flat-cache" + ], + "flat@5.0.2": [ + "npm:flat" + ], + "flatted@3.3.3": [ + "npm:flatted" + ], + "follow-redirects@1.15.11": [ + "npm:follow-redirects" + ], + "for-each@0.3.5": [ + "npm:for-each" + ], + "foreground-child@3.3.1": [ + "npm:foreground-child" + ], + "form-data@4.0.5": [ + "npm:form-data" + ], + "formatly@0.3.0": [ + "npm:formatly" + ], + "formdata-polyfill@4.0.10": [ + "npm:formdata-polyfill" + ], + "forwarded@0.2.0": [ + "npm:forwarded" + ], + "fraction.js@5.3.4": [ + "npm:fraction.js" + ], + "fresh@2.0.0": [ + "npm:fresh" + ], + "front-matter@4.0.2": [ + "npm:front-matter" + ], + "fs-constants@1.0.0": [ + "npm:fs-constants" + ], + "fs-minipass@3.0.3": [ + "npm:fs-minipass" + ], + "fs.realpath@1.0.0": [ + "npm:fs.realpath" + ], + "fsevents@2.3.3": [ + "npm:fsevents" + ], + "function-bind@1.1.2": [ + "npm:function-bind" + ], + "function.prototype.name@1.1.8": [ + "npm:function.prototype.name" + ], + "functions-have-names@1.2.3": [ + "npm:functions-have-names" + ], + "generate-function@2.3.1": [ + "npm:generate-function" + ], + "generator-function@2.0.1": [ + "npm:generator-function" + ], + "gensync@1.0.0-beta.2": [ + "npm:gensync" + ], + "get-caller-file@2.0.5": [ + "npm:get-caller-file" + ], + "get-intrinsic@1.3.0": [ + "npm:get-intrinsic" + ], + "get-nonce@1.0.1": [ + "npm:get-nonce" + ], + "get-port-please@3.2.0": [ + "npm:get-port-please" + ], + "get-port@7.2.0": [ + "npm:get-port" + ], + "get-proto@1.0.1": [ + "npm:get-proto" + ], + "get-stream@5.2.0": [ + "npm:get-stream@5.2.0" + ], + "get-stream@9.0.1": [ + "npm:get-stream" + ], + "get-symbol-description@1.1.0": [ + "npm:get-symbol-description" + ], + "get-tsconfig@4.13.7": [ + "npm:get-tsconfig" + ], + "get-uri@6.0.5": [ + "npm:get-uri" + ], + "giget@2.0.0": [ + "npm:giget" + ], + "github-from-package@0.0.0": [ + "npm:github-from-package" + ], + "github-slugger@2.0.0": [ + "npm:github-slugger" + ], + "glob-parent@5.1.2": [ + "npm:glob-parent@5.1.2" + ], + "glob-parent@6.0.2": [ + "npm:glob-parent" + ], + "glob-to-regexp@0.4.1": [ + "npm:glob-to-regexp" + ], + "glob@10.5.0": [ + "npm:glob@10.5.0" + ], + "glob@13.0.6": [ + "npm:glob" + ], + "glob@9.3.5": [ + "npm:glob@9.3.5" + ], + "globals@14.0.0": [ + "npm:globals@14.0.0" + ], + "globals@17.4.0": [ + "npm:globals" + ], + "globalthis@1.0.4": [ + "npm:globalthis" + ], + "globby@16.1.1": [ + "npm:globby" + ], + "gopd@1.2.0": [ + "npm:gopd" + ], + "got@11.8.6": [ + "npm:got" + ], + "graceful-fs@4.2.11": [ + "npm:graceful-fs" + ], + "gradient-parser@1.1.1": [ + "npm:gradient-parser" + ], + "grammex@3.1.12": [ + "npm:grammex" + ], + "graphmatch@1.1.0": [ + "npm:graphmatch" + ], + "h3@1.15.10": [ + "npm:h3" + ], + "has-bigints@1.1.0": [ + "npm:has-bigints" + ], + "has-flag@4.0.0": [ + "npm:has-flag" + ], + "has-property-descriptors@1.0.2": [ + "npm:has-property-descriptors" + ], + "has-proto@1.2.0": [ + "npm:has-proto" + ], + "has-symbols@1.1.0": [ + "npm:has-symbols" + ], + "has-tostringtag@1.0.2": [ + "npm:has-tostringtag" + ], + "hasown@2.0.2": [ + "npm:hasown" + ], + "he@1.2.0": [ + "npm:he" + ], + "hey-listen@1.0.8": [ + "npm:hey-listen" + ], + "hono@4.11.4": [ + "npm:hono@4.11.4" + ], + "hono@4.12.8": [ + "npm:hono" + ], + "hookable@6.1.0": [ + "npm:hookable" + ], + "html-encoding-sniffer@3.0.0": [ + "npm:html-encoding-sniffer" + ], + "html-entities@2.3.3": [ + "npm:html-entities" + ], + "html-tags@3.3.1": [ + "npm:html-tags" + ], + "http-cache-semantics@4.2.0": [ + "npm:http-cache-semantics" + ], + "http-errors@2.0.1": [ + "npm:http-errors" + ], + "http-proxy-agent@7.0.2": [ + "npm:http-proxy-agent" + ], + "http-proxy@1.18.1": [ + "npm:http-proxy" + ], + "http-server@14.1.1": [ + "npm:http-server" + ], + "http-status-codes@2.3.0": [ + "npm:http-status-codes" + ], + "http2-wrapper@1.0.3": [ + "npm:http2-wrapper" + ], + "https-proxy-agent@5.0.1": [ + "npm:https-proxy-agent" + ], + "https-proxy-agent@7.0.6": [ + "npm:https-proxy-agent@7.0.6" + ], + "human-signals@8.0.1": [ + "npm:human-signals" + ], + "humanize-list@1.0.1": [ + "npm:humanize-list" + ], + "iconv-lite@0.6.3": [ + "npm:iconv-lite" + ], + "iconv-lite@0.7.2": [ + "npm:iconv-lite@0.7.2" + ], + "ieee754@1.2.1": [ + "npm:ieee754" + ], + "ignore@5.3.2": [ + "npm:ignore" + ], + "ignore@7.0.5": [ + "npm:ignore@7.0.5" + ], + "import-fresh@3.3.1": [ + "npm:import-fresh" + ], + "import-without-cache@0.2.5": [ + "npm:import-without-cache" + ], + "imurmurhash@0.1.4": [ + "npm:imurmurhash" + ], + "inherits@2.0.4": [ + "npm:inherits" + ], + "ini@1.3.8": [ + "npm:ini" + ], + "inline-style-parser@0.2.4": [ + "npm:inline-style-parser" + ], + "install-artifact-from-github@1.4.0": [ + "npm:install-artifact-from-github" + ], + "internal-slot@1.1.0": [ + "npm:internal-slot" + ], + "ip-address@10.0.1": [ + "npm:ip-address" + ], + "ip-regex@4.3.0": [ + "npm:ip-regex" + ], + "ipaddr.js@1.9.1": [ + "npm:ipaddr.js@1.9.1" + ], + "ipaddr.js@2.3.0": [ + "npm:ipaddr.js" + ], + "iron-webcrypto@1.2.1": [ + "npm:iron-webcrypto" + ], + "is-array-buffer@3.0.5": [ + "npm:is-array-buffer" + ], + "is-arrayish@0.2.1": [ + "npm:is-arrayish" + ], + "is-arrayish@0.3.4": [ + "npm:is-arrayish@0.3.4" + ], + "is-async-function@2.1.1": [ + "npm:is-async-function" + ], + "is-bigint@1.1.0": [ + "npm:is-bigint" + ], + "is-boolean-object@1.2.2": [ + "npm:is-boolean-object" + ], + "is-callable@1.2.7": [ + "npm:is-callable" + ], + "is-core-module@2.16.1": [ + "npm:is-core-module" + ], + "is-data-view@1.0.2": [ + "npm:is-data-view" + ], + "is-date-object@1.1.0": [ + "npm:is-date-object" + ], + "is-docker@2.2.1": [ + "npm:is-docker" + ], + "is-extglob@2.1.1": [ + "npm:is-extglob" + ], + "is-finalizationregistry@1.1.1": [ + "npm:is-finalizationregistry" + ], + "is-fullwidth-code-point@3.0.0": [ + "npm:is-fullwidth-code-point" + ], + "is-generator-function@1.1.2": [ + "npm:is-generator-function" + ], + "is-glob@4.0.3": [ + "npm:is-glob" + ], + "is-html-content@1.0.0": [ + "npm:is-html-content" + ], + "is-html@2.0.0": [ + "npm:is-html" + ], + "is-interactive@1.0.0": [ + "npm:is-interactive" + ], + "is-map@2.0.3": [ + "npm:is-map" + ], + "is-negative-zero@2.0.3": [ + "npm:is-negative-zero" + ], + "is-number-object@1.1.1": [ + "npm:is-number-object" + ], + "is-number@7.0.0": [ + "npm:is-number" + ], + "is-path-inside@4.0.0": [ + "npm:is-path-inside" + ], + "is-plain-obj@4.1.0": [ + "npm:is-plain-obj" + ], + "is-promise@4.0.0": [ + "npm:is-promise" + ], + "is-property@1.0.2": [ + "npm:is-property" + ], + "is-regex@1.2.1": [ + "npm:is-regex" + ], + "is-set@2.0.3": [ + "npm:is-set" + ], + "is-shared-array-buffer@1.0.4": [ + "npm:is-shared-array-buffer" + ], + "is-stream@4.0.1": [ + "npm:is-stream" + ], + "is-string@1.1.1": [ + "npm:is-string" + ], + "is-symbol@1.1.1": [ + "npm:is-symbol" + ], + "is-typed-array@1.1.15": [ + "npm:is-typed-array" + ], + "is-unicode-supported@0.1.0": [ + "npm:is-unicode-supported@0.1.0" + ], + "is-unicode-supported@2.1.0": [ + "npm:is-unicode-supported" + ], + "is-url-http@2.3.13": [ + "npm:is-url-http" + ], + "is-url-superb@4.0.0": [ + "npm:is-url-superb" + ], + "is-weakmap@2.0.2": [ + "npm:is-weakmap" + ], + "is-weakref@1.1.1": [ + "npm:is-weakref" + ], + "is-weakset@2.0.4": [ + "npm:is-weakset" + ], + "is-what@4.1.16": [ + "npm:is-what" + ], + "is-wsl@2.2.0": [ + "npm:is-wsl" + ], + "isarray@2.0.5": [ + "npm:isarray" + ], + "isbot-fast@1.2.0": [ + "npm:isbot-fast" + ], + "isexe@2.0.0": [ + "npm:isexe@2.0.0" + ], + "isexe@3.1.1": [ + "npm:isexe@3.1.1" + ], + "isexe@4.0.0": [ + "npm:isexe" + ], + "iterator.prototype@1.1.5": [ + "npm:iterator.prototype" + ], + "itty-router@5.0.22": [ + "npm:itty-router" + ], + "jackspeak@3.4.3": [ + "npm:jackspeak@3.4.3" + ], + "jackspeak@4.2.3": [ + "npm:jackspeak" + ], + "jake@10.9.4": [ + "npm:jake" + ], + "jest-diff@30.3.0": [ + "npm:jest-diff" + ], + "jiti@2.6.1": [ + "npm:jiti" + ], + "jju@1.4.0": [ + "npm:jju" + ], + "jose@6.1.0": [ + "npm:jose" + ], + "js-tokens@4.0.0": [ + "npm:js-tokens" + ], + "js-yaml@3.14.2": [ + "npm:js-yaml@3.14.2" + ], + "js-yaml@4.1.1": [ + "npm:js-yaml" + ], + "jsesc@3.1.0": [ + "npm:jsesc" + ], + "json-buffer@3.0.1": [ + "npm:json-buffer" + ], + "json-loose@1.2.4": [ + "npm:json-loose" + ], + "json-parse-even-better-errors@2.3.1": [ + "npm:json-parse-even-better-errors@2.3.1" + ], + "json-parse-even-better-errors@4.0.0": [ + "npm:json-parse-even-better-errors" + ], + "json-schema-ref-resolver@3.0.0": [ + "npm:json-schema-ref-resolver" + ], + "json-schema-traverse@0.4.1": [ + "npm:json-schema-traverse" + ], + "json-schema-traverse@1.0.0": [ + "npm:json-schema-traverse@1.0.0" + ], + "json-stable-stringify-without-jsonify@1.0.1": [ + "npm:json-stable-stringify-without-jsonify" + ], + "json5@2.2.3": [ + "npm:json5" + ], + "jsonc-parser@3.2.0": [ + "npm:jsonc-parser@3.2.0" + ], + "jsonc-parser@3.3.1": [ + "npm:jsonc-parser" + ], + "jsx-ast-utils@3.3.5": [ + "npm:jsx-ast-utils" + ], + "kebab-case@1.0.2": [ + "npm:kebab-case" + ], + "keyv@4.5.4": [ + "npm:keyv" + ], + "kill-process-group@1.0.13": [ + "npm:kill-process-group" + ], + "kleur@4.1.5": [ + "npm:kleur" + ], + "knip@5.88.1(@types/node@20.19.37)(typescript@6.0.2)": [ + "npm:knip" + ], + "known-css-properties@0.30.0": [ + "npm:known-css-properties" + ], + "kysely-d1@0.4.0(kysely@0.28.14)": [ + "npm:kysely-d1" + ], + "kysely@0.28.14": [ + "npm:kysely" + ], + "levn@0.4.1": [ + "npm:levn" + ], + "light-my-request@6.6.0": [ + "npm:light-my-request" + ], + "lightningcss-android-arm64@1.32.0": [ + "npm:lightningcss-android-arm64" + ], + "lightningcss-darwin-arm64@1.32.0": [ + "npm:lightningcss-darwin-arm64" + ], + "lightningcss-darwin-x64@1.32.0": [ + "npm:lightningcss-darwin-x64" + ], + "lightningcss-freebsd-x64@1.32.0": [ + "npm:lightningcss-freebsd-x64" + ], + "lightningcss-linux-arm-gnueabihf@1.32.0": [ + "npm:lightningcss-linux-arm-gnueabihf" + ], + "lightningcss-linux-arm64-gnu@1.32.0": [ + "npm:lightningcss-linux-arm64-gnu" + ], + "lightningcss-linux-arm64-musl@1.32.0": [ + "npm:lightningcss-linux-arm64-musl" + ], + "lightningcss-linux-x64-gnu@1.32.0": [ + "npm:lightningcss-linux-x64-gnu" + ], + "lightningcss-linux-x64-musl@1.32.0": [ + "npm:lightningcss-linux-x64-musl" + ], + "lightningcss-win32-arm64-msvc@1.32.0": [ + "npm:lightningcss-win32-arm64-msvc" + ], + "lightningcss-win32-x64-msvc@1.32.0": [ + "npm:lightningcss-win32-x64-msvc" + ], + "lightningcss@1.32.0": [ + "npm:lightningcss" + ], + "lilconfig@2.1.0": [ + "npm:lilconfig" + ], + "lines-and-columns@1.2.4": [ + "npm:lines-and-columns@1.2.4" + ], + "lines-and-columns@2.0.3": [ + "npm:lines-and-columns" + ], + "locate-path@3.0.0": [ + "npm:locate-path@3.0.0" + ], + "locate-path@6.0.0": [ + "npm:locate-path" + ], + "lodash.memoize@4.1.2": [ + "npm:lodash.memoize" + ], + "lodash.merge@4.6.2": [ + "npm:lodash.merge" + ], + "lodash.uniq@4.5.0": [ + "npm:lodash.uniq" + ], + "lodash@4.17.21": [ + "npm:lodash@4.17.21" + ], + "lodash@4.17.23": [ + "npm:lodash" + ], + "log-symbols@4.1.0": [ + "npm:log-symbols" + ], + "long@5.3.2": [ + "npm:long" + ], + "longest-streak@3.1.0": [ + "npm:longest-streak" + ], + "loose-envify@1.4.0": [ + "npm:loose-envify" + ], + "lowercase-keys@2.0.0": [ + "npm:lowercase-keys" + ], + "lru-cache@10.4.3": [ + "npm:lru-cache@10.4.3" + ], + "lru-cache@11.2.2": [ + "npm:lru-cache@11.2.2" + ], + "lru-cache@5.1.1": [ + "npm:lru-cache" + ], + "lru-cache@7.18.3": [ + "npm:lru-cache@7.18.3" + ], + "lru.min@1.1.3": [ + "npm:lru.min" + ], + "lucide-react@0.577.0(react@19.2.4)": [ + "npm:lucide-react" + ], + "magic-regexp@0.10.0": [ + "npm:magic-regexp" + ], + "magic-string@0.30.21": [ + "npm:magic-string" + ], + "magicast@0.5.2": [ + "npm:magicast" + ], + "make-fetch-happen@14.0.3": [ + "npm:make-fetch-happen" + ], + "map-values-deep@1.0.2": [ + "npm:map-values-deep" + ], + "math-intrinsics@1.1.0": [ + "npm:math-intrinsics" + ], + "mdast-builder@1.1.1": [ + "npm:mdast-builder" + ], + "mdast-util-from-markdown@2.0.3": [ + "npm:mdast-util-from-markdown" + ], + "mdast-util-phrasing@4.1.0": [ + "npm:mdast-util-phrasing" + ], + "mdast-util-to-markdown@2.1.2": [ + "npm:mdast-util-to-markdown" + ], + "mdast-util-to-string@4.0.0": [ + "npm:mdast-util-to-string" + ], + "mdast-util-toc@7.1.0": [ + "npm:mdast-util-toc" + ], + "mdn-data@2.0.14": [ + "npm:mdn-data" + ], + "media-typer@1.1.0": [ + "npm:media-typer" + ], + "memoize-one@6.0.0": [ + "npm:memoize-one" + ], + "memorystream@0.3.1": [ + "npm:memorystream" + ], + "merge-anything@5.1.7": [ + "npm:merge-anything" + ], + "merge-descriptors@2.0.0": [ + "npm:merge-descriptors" + ], + "merge2@1.4.1": [ + "npm:merge2" + ], + "micromark-core-commonmark@2.0.3": [ + "npm:micromark-core-commonmark" + ], + "micromark-factory-destination@2.0.1": [ + "npm:micromark-factory-destination" + ], + "micromark-factory-label@2.0.1": [ + "npm:micromark-factory-label" + ], + "micromark-factory-space@2.0.1": [ + "npm:micromark-factory-space" + ], + "micromark-factory-title@2.0.1": [ + "npm:micromark-factory-title" + ], + "micromark-factory-whitespace@2.0.1": [ + "npm:micromark-factory-whitespace" + ], + "micromark-util-character@2.1.1": [ + "npm:micromark-util-character" + ], + "micromark-util-chunked@2.0.1": [ + "npm:micromark-util-chunked" + ], + "micromark-util-classify-character@2.0.1": [ + "npm:micromark-util-classify-character" + ], + "micromark-util-combine-extensions@2.0.1": [ + "npm:micromark-util-combine-extensions" + ], + "micromark-util-decode-numeric-character-reference@2.0.2": [ + "npm:micromark-util-decode-numeric-character-reference" + ], + "micromark-util-decode-string@2.0.1": [ + "npm:micromark-util-decode-string" + ], + "micromark-util-encode@2.0.1": [ + "npm:micromark-util-encode" + ], + "micromark-util-html-tag-name@2.0.1": [ + "npm:micromark-util-html-tag-name" + ], + "micromark-util-normalize-identifier@2.0.1": [ + "npm:micromark-util-normalize-identifier" + ], + "micromark-util-resolve-all@2.0.1": [ + "npm:micromark-util-resolve-all" + ], + "micromark-util-sanitize-uri@2.0.1": [ + "npm:micromark-util-sanitize-uri" + ], + "micromark-util-subtokenize@2.1.0": [ + "npm:micromark-util-subtokenize" + ], + "micromark-util-symbol@2.0.1": [ + "npm:micromark-util-symbol" + ], + "micromark-util-types@2.0.2": [ + "npm:micromark-util-types" + ], + "micromark@4.0.2": [ + "npm:micromark" + ], + "micromatch@4.0.8": [ + "npm:micromatch" + ], + "mime-db@1.52.0": [ + "npm:mime-db@1.52.0" + ], + "mime-db@1.54.0": [ + "npm:mime-db" + ], + "mime-types@2.1.35": [ + "npm:mime-types@2.1.35" + ], + "mime-types@3.0.2": [ + "npm:mime-types" + ], + "mime@1.6.0": [ + "npm:mime" + ], + "mime@3.0.0": [ + "npm:mime@3.0.0" + ], + "mimic-fn@2.1.0": [ + "npm:mimic-fn" + ], + "mimic-response@1.0.1": [ + "npm:mimic-response@1.0.1" + ], + "mimic-response@3.1.0": [ + "npm:mimic-response" + ], + "miniflare@4.20251217.0": [ + "npm:miniflare@4.20251217.0" + ], + "miniflare@4.20260317.1": [ + "npm:miniflare" + ], + "minimatch@10.2.3": [ + "npm:minimatch@10.2.3" + ], + "minimatch@10.2.4": [ + "npm:minimatch@10.2.4" + ], + "minimatch@3.1.5": [ + "npm:minimatch" + ], + "minimatch@5.1.9": [ + "npm:minimatch@5.1.9" + ], + "minimatch@8.0.4": [ + "npm:minimatch@8.0.4" + ], + "minimatch@9.0.5": [ + "npm:minimatch@9.0.5" + ], + "minimist@1.2.8": [ + "npm:minimist" + ], + "minipass-collect@2.0.1": [ + "npm:minipass-collect" + ], + "minipass-fetch@4.0.1": [ + "npm:minipass-fetch" + ], + "minipass-flush@1.0.5": [ + "npm:minipass-flush" + ], + "minipass-pipeline@1.2.4": [ + "npm:minipass-pipeline" + ], + "minipass-sized@1.0.3": [ + "npm:minipass-sized" + ], + "minipass@3.3.6": [ + "npm:minipass@3.3.6" + ], + "minipass@4.2.8": [ + "npm:minipass@4.2.8" + ], + "minipass@7.1.3": [ + "npm:minipass" + ], + "minizlib@3.1.0": [ + "npm:minizlib" + ], + "mitt@3.0.1": [ + "npm:mitt" + ], + "mkdirp-classic@0.5.3": [ + "npm:mkdirp-classic" + ], + "mlly@1.8.0": [ + "npm:mlly" + ], + "moo@0.5.2": [ + "npm:moo" + ], + "mri@1.2.0": [ + "npm:mri" + ], + "mrmime@2.0.1": [ + "npm:mrmime" + ], + "ms@2.1.3": [ + "npm:ms" + ], + "mute-stream@3.0.0": [ + "npm:mute-stream" + ], + "mysql2@3.15.3": [ + "npm:mysql2" + ], + "named-placeholders@1.1.3": [ + "npm:named-placeholders" + ], + "nan@2.23.0": [ + "npm:nan" + ], + "nanoid@3.3.11": [ + "npm:nanoid" + ], + "napi-build-utils@2.0.0": [ + "npm:napi-build-utils" + ], + "natural-compare@1.4.0": [ + "npm:natural-compare" + ], + "negotiator@1.0.0": [ + "npm:negotiator" + ], + "netmask@2.0.2": [ + "npm:netmask" + ], + "node-abi@3.78.0": [ + "npm:node-abi" + ], + "node-domexception@1.0.0": [ + "npm:node-domexception" + ], + "node-fetch-native@1.6.7": [ + "npm:node-fetch-native" + ], + "node-fetch@2.7.0(encoding@0.1.13)": [ + "npm:node-fetch@2.7.0" + ], + "node-fetch@3.3.2": [ + "npm:node-fetch" + ], + "node-gyp-build@4.8.4": [ + "npm:node-gyp-build" + ], + "node-gyp@11.5.0": [ + "npm:node-gyp" + ], + "node-mock-http@1.0.4": [ + "npm:node-mock-http" + ], + "node-releases@2.0.27": [ + "npm:node-releases" + ], + "nopt@8.1.0": [ + "npm:nopt" + ], + "normalize-url@6.1.0": [ + "npm:normalize-url" + ], + "npm-normalize-package-bin@4.0.0": [ + "npm:npm-normalize-package-bin" + ], + "npm-run-all2@8.0.4": [ + "npm:npm-run-all2" + ], + "npm-run-path@4.0.1": [ + "npm:npm-run-path@4.0.1" + ], + "npm-run-path@6.0.0": [ + "npm:npm-run-path" + ], + "nth-check@2.1.1": [ + "npm:nth-check" + ], + "null-prototype-object@1.2.5": [ + "npm:null-prototype-object" + ], + "nx@22.6.1": [ + "npm:nx" + ], + "nypm@0.6.2": [ + "npm:nypm" + ], + "oauth4webapi@3.8.2": [ + "npm:oauth4webapi" + ], + "object-assign@4.1.1": [ + "npm:object-assign" + ], + "object-inspect@1.13.4": [ + "npm:object-inspect" + ], + "object-keys@1.1.1": [ + "npm:object-keys" + ], + "object.assign@4.1.7": [ + "npm:object.assign" + ], + "object.entries@1.1.9": [ + "npm:object.entries" + ], + "object.fromentries@2.0.8": [ + "npm:object.fromentries" + ], + "object.values@1.2.1": [ + "npm:object.values" + ], + "obug@2.1.1": [ + "npm:obug" + ], + "ohash@2.0.11": [ + "npm:ohash" + ], + "on-exit-leak-free@2.1.2": [ + "npm:on-exit-leak-free" + ], + "on-finished@2.4.1": [ + "npm:on-finished" + ], + "once@1.4.0": [ + "npm:once" + ], + "onetime@5.1.2": [ + "npm:onetime" + ], + "open@8.4.2": [ + "npm:open" + ], + "opener@1.5.2": [ + "npm:opener" + ], + "optionator@0.9.4": [ + "npm:optionator" + ], + "ora@5.3.0": [ + "npm:ora" + ], + "own-keys@1.0.1": [ + "npm:own-keys" + ], + "oxc-parser@0.104.0": [ + "npm:oxc-parser" + ], + "oxc-resolver@11.19.1": [ + "npm:oxc-resolver" + ], + "oxc-walker@0.6.0(oxc-parser@0.104.0)": [ + "npm:oxc-walker" + ], + "oxlint-tsgolint@0.17.1": [ + "npm:oxlint-tsgolint" + ], + "oxlint@1.56.0(oxlint-tsgolint@0.17.1)": [ + "npm:oxlint" + ], + "p-cancelable@2.1.1": [ + "npm:p-cancelable" + ], + "p-limit@2.3.0": [ + "npm:p-limit@2.3.0" + ], + "p-limit@3.1.0": [ + "npm:p-limit@3.1.0" + ], + "p-limit@7.3.0": [ + "npm:p-limit" + ], + "p-locate@3.0.0": [ + "npm:p-locate@3.0.0" + ], + "p-locate@5.0.0": [ + "npm:p-locate" + ], + "p-map@7.0.3": [ + "npm:p-map" + ], + "p-reflect@2.1.0": [ + "npm:p-reflect" + ], + "p-retry@4.6.2": [ + "npm:p-retry" + ], + "p-timeout@4.1.0": [ + "npm:p-timeout" + ], + "p-try@2.2.0": [ + "npm:p-try" + ], + "pac-proxy-agent@7.2.0": [ + "npm:pac-proxy-agent" + ], + "pac-resolver@7.0.1": [ + "npm:pac-resolver" + ], + "package-json-from-dist@1.0.1": [ + "npm:package-json-from-dist" + ], + "package-manager-detector@1.6.0": [ + "npm:package-manager-detector" + ], + "parent-module@1.0.1": [ + "npm:parent-module" + ], + "parse-json@5.2.0": [ + "npm:parse-json" + ], + "parse-ms@2.1.0": [ + "npm:parse-ms@2.1.0" + ], + "parse-ms@4.0.0": [ + "npm:parse-ms" + ], + "parse5@7.3.0": [ + "npm:parse5" + ], + "parseurl@1.3.3": [ + "npm:parseurl" + ], + "path-browserify@1.0.1": [ + "npm:path-browserify" + ], + "path-exists@3.0.0": [ + "npm:path-exists@3.0.0" + ], + "path-exists@4.0.0": [ + "npm:path-exists" + ], + "path-key@3.1.1": [ + "npm:path-key" + ], + "path-key@4.0.0": [ + "npm:path-key@4.0.0" + ], + "path-parse@1.0.7": [ + "npm:path-parse" + ], + "path-scurry@1.11.1": [ + "npm:path-scurry@1.11.1" + ], + "path-scurry@2.0.2": [ + "npm:path-scurry" + ], + "path-to-regexp@6.1.0": [ + "npm:path-to-regexp@6.1.0" + ], + "path-to-regexp@6.3.0": [ + "npm:path-to-regexp@6.3.0", + "npm:path-to-regexp-updated" + ], + "path-to-regexp@8.3.0": [ + "npm:path-to-regexp" + ], + "pathe@2.0.3": [ + "npm:pathe" + ], + "pend@1.2.0": [ + "npm:pend" + ], + "perfect-debounce@1.0.0": [ + "npm:perfect-debounce" + ], + "picocolors@1.1.1": [ + "npm:picocolors" + ], + "picomatch@2.3.1": [ + "npm:picomatch@2.3.1" + ], + "picomatch@4.0.3": [ + "npm:picomatch" + ], + "pidtree@0.6.0": [ + "npm:pidtree" + ], + "pino-abstract-transport@3.0.0": [ + "npm:pino-abstract-transport" + ], + "pino-std-serializers@7.1.0": [ + "npm:pino-std-serializers" + ], + "pino@10.3.1": [ + "npm:pino" + ], + "pkg-types@1.3.1": [ + "npm:pkg-types@1.3.1" + ], + "pkg-types@2.3.0": [ + "npm:pkg-types" + ], + "pkg-up@3.1.0": [ + "npm:pkg-up" + ], + "portfinder@1.0.38": [ + "npm:portfinder" + ], + "possible-typed-array-names@1.1.0": [ + "npm:possible-typed-array-names" + ], + "postcss-calc@8.2.4(postcss@8.5.8)": [ + "npm:postcss-calc" + ], + "postcss-colormin@5.3.1(postcss@8.5.8)": [ + "npm:postcss-colormin" + ], + "postcss-convert-values@5.1.3(postcss@8.5.8)": [ + "npm:postcss-convert-values" + ], + "postcss-discard-comments@5.1.2(postcss@8.5.8)": [ + "npm:postcss-discard-comments" + ], + "postcss-discard-duplicates@5.1.0(postcss@8.5.8)": [ + "npm:postcss-discard-duplicates@5.1.0" + ], + "postcss-discard-duplicates@6.0.3(postcss@8.5.8)": [ + "npm:postcss-discard-duplicates" + ], + "postcss-discard-empty@5.1.1(postcss@8.5.8)": [ + "npm:postcss-discard-empty" + ], + "postcss-discard-overridden@5.1.0(postcss@8.5.8)": [ + "npm:postcss-discard-overridden" + ], + "postcss-js@4.1.0(postcss@8.5.8)": [ + "npm:postcss-js" + ], + "postcss-merge-longhand@5.1.7(postcss@8.5.8)": [ + "npm:postcss-merge-longhand" + ], + "postcss-merge-rules@5.1.4(postcss@8.5.8)": [ + "npm:postcss-merge-rules" + ], + "postcss-minify-font-values@5.1.0(postcss@8.5.8)": [ + "npm:postcss-minify-font-values" + ], + "postcss-minify-gradients@5.1.1(postcss@8.5.8)": [ + "npm:postcss-minify-gradients" + ], + "postcss-minify-params@5.1.4(postcss@8.5.8)": [ + "npm:postcss-minify-params" + ], + "postcss-minify-selectors@5.2.1(postcss@8.5.8)": [ + "npm:postcss-minify-selectors" + ], + "postcss-mixins@12.1.2(postcss@8.5.8)": [ + "npm:postcss-mixins" + ], + "postcss-nested@5.0.6(postcss@8.5.8)": [ + "npm:postcss-nested@5.0.6" + ], + "postcss-nested@7.0.2(postcss@8.5.8)": [ + "npm:postcss-nested" + ], + "postcss-normalize-charset@5.1.0(postcss@8.5.8)": [ + "npm:postcss-normalize-charset" + ], + "postcss-normalize-display-values@5.1.0(postcss@8.5.8)": [ + "npm:postcss-normalize-display-values" + ], + "postcss-normalize-positions@5.1.1(postcss@8.5.8)": [ + "npm:postcss-normalize-positions" + ], + "postcss-normalize-repeat-style@5.1.1(postcss@8.5.8)": [ + "npm:postcss-normalize-repeat-style" + ], + "postcss-normalize-string@5.1.0(postcss@8.5.8)": [ + "npm:postcss-normalize-string" + ], + "postcss-normalize-timing-functions@5.1.0(postcss@8.5.8)": [ + "npm:postcss-normalize-timing-functions" + ], + "postcss-normalize-unicode@5.1.1(postcss@8.5.8)": [ + "npm:postcss-normalize-unicode" + ], + "postcss-normalize-url@5.1.0(postcss@8.5.8)": [ + "npm:postcss-normalize-url" + ], + "postcss-normalize-whitespace@5.1.1(postcss@8.5.8)": [ + "npm:postcss-normalize-whitespace" + ], + "postcss-ordered-values@5.1.3(postcss@8.5.8)": [ + "npm:postcss-ordered-values" + ], + "postcss-preset-mantine@1.18.0(postcss@8.5.8)": [ + "npm:postcss-preset-mantine" + ], + "postcss-reduce-initial@5.1.2(postcss@8.5.8)": [ + "npm:postcss-reduce-initial" + ], + "postcss-reduce-transforms@5.1.0(postcss@8.5.8)": [ + "npm:postcss-reduce-transforms" + ], + "postcss-selector-parser@6.1.2": [ + "npm:postcss-selector-parser@6.1.2" + ], + "postcss-selector-parser@7.1.0": [ + "npm:postcss-selector-parser" + ], + "postcss-simple-vars@7.0.1(postcss@8.5.8)": [ + "npm:postcss-simple-vars" + ], + "postcss-svgo@5.1.0(postcss@8.5.8)": [ + "npm:postcss-svgo" + ], + "postcss-unique-selectors@5.1.1(postcss@8.5.8)": [ + "npm:postcss-unique-selectors" + ], + "postcss-value-parser@4.2.0": [ + "npm:postcss-value-parser" + ], + "postcss-values-parser@6.0.2(postcss@8.5.8)": [ + "npm:postcss-values-parser" + ], + "postcss@8.5.8": [ + "npm:postcss" + ], + "postgres@3.4.7": [ + "npm:postgres" + ], + "preact-render-to-string@6.5.11(preact@10.24.3)": [ + "npm:preact-render-to-string" + ], + "preact@10.24.3": [ + "npm:preact" + ], + "prebuild-install@7.1.3": [ + "npm:prebuild-install" + ], + "prelude-ls@1.2.1": [ + "npm:prelude-ls" + ], + "prettier-linter-helpers@1.0.1": [ + "npm:prettier-linter-helpers" + ], + "prettier@3.8.1": [ + "npm:prettier" + ], + "pretty-format@30.3.0": [ + "npm:pretty-format" + ], + "pretty-ms@7.0.1": [ + "npm:pretty-ms@7.0.1" + ], + "pretty-ms@9.3.0": [ + "npm:pretty-ms" + ], + "prism-themes@1.9.0": [ + "npm:prism-themes" + ], + "prisma@7.5.0(@types/react@19.2.14)(better-sqlite3@12.8.0)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)(typescript@6.0.2)": [ + "npm:prisma" + ], + "proc-log@5.0.0": [ + "npm:proc-log" + ], + "process-warning@4.0.1": [ + "npm:process-warning@4.0.1" + ], + "process-warning@5.0.0": [ + "npm:process-warning" + ], + "progress@2.0.3": [ + "npm:progress" + ], + "promise-retry@2.0.1": [ + "npm:promise-retry" + ], + "prop-types@15.8.1": [ + "npm:prop-types" + ], + "proper-lockfile@4.1.2": [ + "npm:proper-lockfile" + ], + "proxy-addr@2.0.7": [ + "npm:proxy-addr" + ], + "proxy-agent@6.5.0": [ + "npm:proxy-agent" + ], + "proxy-from-env@1.1.0": [ + "npm:proxy-from-env" + ], + "pump@3.0.3": [ + "npm:pump" + ], + "punycode-regex@1.0.1": [ + "npm:punycode-regex" + ], + "punycode@2.3.1": [ + "npm:punycode" + ], + "puppeteer-core@24.40.0": [ + "npm:puppeteer-core" + ], + "puppeteer@24.40.0(typescript@6.0.2)": [ + "npm:puppeteer" + ], + "pure-rand@6.1.0": [ + "npm:pure-rand" + ], + "qs@6.14.0": [ + "npm:qs" + ], + "quansync@1.0.0": [ + "npm:quansync" + ], + "queue-microtask@1.2.3": [ + "npm:queue-microtask" + ], + "quick-format-unescaped@4.0.4": [ + "npm:quick-format-unescaped" + ], + "quick-lru@5.1.1": [ + "npm:quick-lru" + ], + "quote-unquote@1.0.0": [ + "npm:quote-unquote" + ], + "radix3@1.1.2": [ + "npm:radix3" + ], + "range-parser@1.2.1": [ + "npm:range-parser" + ], + "raw-body@3.0.2": [ + "npm:raw-body" + ], + "rc9@2.1.2": [ + "npm:rc9" + ], + "rc@1.2.8": [ + "npm:rc" + ], + "re2@1.22.1": [ + "npm:re2" + ], + "react-dom@19.2.4(react@19.2.4)": [ + "npm:react-dom" + ], + "react-is@16.13.1": [ + "npm:react-is" + ], + "react-is@18.3.1": [ + "npm:react-is@18.3.1" + ], + "react-number-format@5.4.4(react-dom@19.2.4(react@19.2.4))(react@19.2.4)": [ + "npm:react-number-format" + ], + "react-remove-scroll-bar@2.3.8(@types/react@19.2.14)(react@19.2.4)": [ + "npm:react-remove-scroll-bar" + ], + "react-remove-scroll@2.7.1(@types/react@19.2.14)(react@19.2.4)": [ + "npm:react-remove-scroll" + ], + "react-streaming@0.4.16(react-dom@19.2.4(react@19.2.4))(react@19.2.4)": [ + "npm:react-streaming" + ], + "react-style-singleton@2.2.3(@types/react@19.2.14)(react@19.2.4)": [ + "npm:react-style-singleton" + ], + "react-textarea-autosize@8.5.9(@types/react@19.2.14)(react@19.2.4)": [ + "npm:react-textarea-autosize" + ], + "react@19.2.4": [ + "npm:react" + ], + "read-package-json-fast@4.0.0": [ + "npm:read-package-json-fast" + ], + "readable-stream@3.6.2": [ + "npm:readable-stream" + ], + "readdirp@4.1.2": [ + "npm:readdirp" + ], + "real-require@0.2.0": [ + "npm:real-require" + ], + "reflect.getprototypeof@1.0.10": [ + "npm:reflect.getprototypeof" + ], + "regexp-to-ast@0.5.0": [ + "npm:regexp-to-ast" + ], + "regexp-tree@0.1.27": [ + "npm:regexp-tree" + ], + "regexp.prototype.flags@1.5.4": [ + "npm:regexp.prototype.flags" + ], + "regexparam@3.0.0": [ + "npm:regexparam" + ], + "remeda@2.33.4": [ + "npm:remeda" + ], + "require-directory@2.1.1": [ + "npm:require-directory" + ], + "require-from-string@2.0.2": [ + "npm:require-from-string" + ], + "require-one-of@1.0.24": [ + "npm:require-one-of" + ], + "requires-port@1.0.0": [ + "npm:requires-port" + ], + "reselect@4.1.8": [ + "npm:reselect" + ], + "resolve-alpn@1.2.1": [ + "npm:resolve-alpn" + ], + "resolve-from@4.0.0": [ + "npm:resolve-from@4.0.0" + ], + "resolve-from@5.0.0": [ + "npm:resolve-from" + ], + "resolve-pkg-maps@1.0.0": [ + "npm:resolve-pkg-maps" + ], + "resolve.exports@2.0.3": [ + "npm:resolve.exports" + ], + "resolve@1.22.10": [ + "npm:resolve@1.22.10" + ], + "resolve@2.0.0-next.5": [ + "npm:resolve" + ], + "responselike@2.0.1": [ + "npm:responselike" + ], + "restore-cursor@3.1.0": [ + "npm:restore-cursor" + ], + "ret@0.5.0": [ + "npm:ret" + ], + "retry@0.12.0": [ + "npm:retry@0.12.0" + ], + "retry@0.13.1": [ + "npm:retry" + ], + "reusify@1.1.0": [ + "npm:reusify" + ], + "rfdc@1.4.1": [ + "npm:rfdc" + ], + "rimraf@6.1.3": [ + "npm:rimraf" + ], + "rolldown-plugin-dts@0.22.5(oxc-resolver@11.19.1)(rolldown@1.0.0-rc.9)(typescript@6.0.2)": [ + "npm:rolldown-plugin-dts" + ], + "rolldown@1.0.0-beta.51": [ + "npm:rolldown@1.0.0-beta.51" + ], + "rolldown@1.0.0-rc.11": [ + "npm:rolldown@1.0.0-rc.11" + ], + "rolldown@1.0.0-rc.9": [ + "npm:rolldown" + ], + "router@2.2.0": [ + "npm:router" + ], + "run-parallel@1.2.0": [ + "npm:run-parallel" + ], + "safe-array-concat@1.1.3": [ + "npm:safe-array-concat" + ], + "safe-buffer@5.1.2": [ + "npm:safe-buffer" + ], + "safe-buffer@5.2.1": [ + "npm:safe-buffer@5.2.1" + ], + "safe-push-apply@1.0.0": [ + "npm:safe-push-apply" + ], + "safe-regex-test@1.1.0": [ + "npm:safe-regex-test" + ], + "safe-regex2@5.0.0": [ + "npm:safe-regex2" + ], + "safe-stable-stringify@2.5.0": [ + "npm:safe-stable-stringify" + ], + "safer-buffer@2.1.2": [ + "npm:safer-buffer" + ], + "scheduler@0.27.0": [ + "npm:scheduler" + ], + "scule@1.3.0": [ + "npm:scule" + ], + "secure-compare@3.0.1": [ + "npm:secure-compare" + ], + "secure-json-parse@2.7.0": [ + "npm:secure-json-parse" + ], + "secure-json-parse@4.1.0": [ + "npm:secure-json-parse@4.1.0" + ], + "semver@6.3.1": [ + "npm:semver" + ], + "semver@7.7.4": [ + "npm:semver@7.7.4" + ], + "send@1.2.0": [ + "npm:send" + ], + "seq-queue@0.0.5": [ + "npm:seq-queue" + ], + "serialize-error@8.1.0": [ + "npm:serialize-error" + ], + "seroval-plugins@1.5.0(seroval@1.5.0)": [ + "npm:seroval-plugins" + ], + "seroval@1.5.0": [ + "npm:seroval" + ], + "serve-static@2.2.0": [ + "npm:serve-static" + ], + "set-cookie-parser@2.7.2": [ + "npm:set-cookie-parser" + ], + "set-function-length@1.2.2": [ + "npm:set-function-length" + ], + "set-function-name@2.0.2": [ + "npm:set-function-name" + ], + "set-proto@1.0.0": [ + "npm:set-proto" + ], + "setprototypeof@1.2.0": [ + "npm:setprototypeof" + ], + "shallow-equal@3.1.0": [ + "npm:shallow-equal" + ], + "sharp@0.33.5": [ + "npm:sharp@0.33.5" + ], + "sharp@0.34.5": [ + "npm:sharp" + ], + "shebang-command@2.0.0": [ + "npm:shebang-command" + ], + "shebang-regex@3.0.0": [ + "npm:shebang-regex" + ], + "shell-quote@1.8.3": [ + "npm:shell-quote" + ], + "side-channel-list@1.0.0": [ + "npm:side-channel-list" + ], + "side-channel-map@1.0.1": [ + "npm:side-channel-map" + ], + "side-channel-weakmap@1.0.2": [ + "npm:side-channel-weakmap" + ], + "side-channel@1.1.0": [ + "npm:side-channel" + ], + "siginfo@2.0.0": [ + "npm:siginfo" + ], + "signal-exit@3.0.7": [ + "npm:signal-exit@3.0.7" + ], + "signal-exit@4.1.0": [ + "npm:signal-exit" + ], + "simple-concat@1.0.1": [ + "npm:simple-concat" + ], + "simple-get@4.0.1": [ + "npm:simple-get" + ], + "simple-swizzle@0.2.4": [ + "npm:simple-swizzle" + ], + "sirv@3.0.2": [ + "npm:sirv" + ], + "slash@5.1.0": [ + "npm:slash" + ], + "smart-buffer@4.2.0": [ + "npm:smart-buffer" + ], + "smol-toml@1.5.2": [ + "npm:smol-toml" + ], + "socks-proxy-agent@8.0.5": [ + "npm:socks-proxy-agent" + ], + "socks@2.8.7": [ + "npm:socks" + ], + "solid-element@1.9.1(solid-js@1.9.11)": [ + "npm:solid-element" + ], + "solid-js@1.9.11": [ + "npm:solid-js" + ], + "solid-motionone@1.0.4(solid-js@1.9.11)": [ + "npm:solid-motionone" + ], + "solid-refresh@0.6.3(solid-js@1.9.11)": [ + "npm:solid-refresh" + ], + "sonic-boom@4.2.1": [ + "npm:sonic-boom" + ], + "source-map-js@1.2.1": [ + "npm:source-map-js" + ], + "source-map-support@0.5.21": [ + "npm:source-map-support" + ], + "source-map@0.6.1": [ + "npm:source-map" + ], + "source-map@0.7.6": [ + "npm:source-map@0.7.6" + ], + "split2@4.2.0": [ + "npm:split2" + ], + "sprintf-js@1.0.3": [ + "npm:sprintf-js" + ], + "sqlstring@2.3.3": [ + "npm:sqlstring" + ], + "squirrelly@9.1.0": [ + "npm:squirrelly" + ], + "srvx@0.9.8": [ + "npm:srvx" + ], + "ssri@12.0.0": [ + "npm:ssri" + ], + "stable@0.1.8": [ + "npm:stable" + ], + "stackback@0.0.2": [ + "npm:stackback" + ], + "standaloner@0.1.11(encoding@0.1.13)": [ + "npm:standaloner" + ], + "standaloner@0.2.2(encoding@0.1.13)": [ + "npm:standaloner@0.2.2" + ], + "statuses@2.0.2": [ + "npm:statuses" + ], + "std-env@3.10.0": [ + "npm:std-env@3.10.0" + ], + "std-env@4.0.0": [ + "npm:std-env" + ], + "stop-iteration-iterator@1.1.0": [ + "npm:stop-iteration-iterator" + ], + "stoppable@1.1.0": [ + "npm:stoppable" + ], + "streamx@2.23.0": [ + "npm:streamx" + ], + "string-width@4.2.3": [ + "npm:string-width", + "npm:string-width-cjs" + ], + "string-width@5.1.2": [ + "npm:string-width@5.1.2" + ], + "string.prototype.matchall@4.0.12": [ + "npm:string.prototype.matchall" + ], + "string.prototype.repeat@1.0.0": [ + "npm:string.prototype.repeat" + ], + "string.prototype.trim@1.2.10": [ + "npm:string.prototype.trim" + ], + "string.prototype.trimend@1.0.9": [ + "npm:string.prototype.trimend" + ], + "string.prototype.trimstart@1.0.8": [ + "npm:string.prototype.trimstart" + ], + "string_decoder@1.3.0": [ + "npm:string_decoder" + ], + "strip-ansi@6.0.1": [ + "npm:strip-ansi@6.0.1", + "npm:strip-ansi-cjs" + ], + "strip-ansi@7.1.2": [ + "npm:strip-ansi" + ], + "strip-bom@3.0.0": [ + "npm:strip-bom" + ], + "strip-final-newline@4.0.0": [ + "npm:strip-final-newline" + ], + "strip-json-comments@2.0.1": [ + "npm:strip-json-comments@2.0.1" + ], + "strip-json-comments@3.1.1": [ + "npm:strip-json-comments@3.1.1" + ], + "strip-json-comments@5.0.3": [ + "npm:strip-json-comments" + ], + "style-to-object@1.0.11": [ + "npm:style-to-object" + ], + "stylehacks@5.1.1(postcss@8.5.8)": [ + "npm:stylehacks" + ], + "sugarss@5.0.1(postcss@8.5.8)": [ + "npm:sugarss" + ], + "superlock@1.2.6": [ + "npm:superlock" + ], + "supports-color@10.2.2": [ + "npm:supports-color@10.2.2" + ], + "supports-color@7.2.0": [ + "npm:supports-color" + ], + "supports-preserve-symlinks-flag@1.0.0": [ + "npm:supports-preserve-symlinks-flag" + ], + "svg-gradient@1.0.4": [ + "npm:svg-gradient" + ], + "svgo@2.8.0": [ + "npm:svgo" + ], + "synckit@0.11.12": [ + "npm:synckit" + ], + "tabbable@6.2.0": [ + "npm:tabbable" + ], + "tailwind-merge@3.5.0": [ + "npm:tailwind-merge" + ], + "tailwindcss@4.2.2": [ + "npm:tailwindcss" + ], + "tapable@2.3.0": [ + "npm:tapable" + ], + "tar-fs@2.1.4": [ + "npm:tar-fs@2.1.4" + ], + "tar-fs@3.1.1": [ + "npm:tar-fs" + ], + "tar-stream@2.2.0": [ + "npm:tar-stream" + ], + "tar-stream@3.1.7": [ + "npm:tar-stream@3.1.7" + ], + "tar@7.5.1": [ + "npm:tar" + ], + "telefunc@0.2.19(@babel/core@7.29.0)(@babel/parser@7.29.0)(@babel/types@7.29.0)(react-streaming@0.4.16(react-dom@19.2.4(react@19.2.4))(react@19.2.4))(react@19.2.4)(vite@8.0.2(@types/node@20.19.37)(esbuild@0.27.4)(jiti@2.6.1)(sugarss@5.0.1(postcss@8.5.8))(tsx@4.21.0)(yaml@2.8.3))": [ + "npm:telefunc" + ], + "text-decoder@1.2.3": [ + "npm:text-decoder" + ], + "thread-stream@4.0.0": [ + "npm:thread-stream" + ], + "tinybench@2.9.0": [ + "npm:tinybench" + ], + "tinyexec@1.0.4": [ + "npm:tinyexec" + ], + "tinyglobby@0.2.15": [ + "npm:tinyglobby" + ], + "tinyrainbow@3.0.3": [ + "npm:tinyrainbow" + ], + "tlds@1.260.0": [ + "npm:tlds" + ], + "tldts-core@7.0.25": [ + "npm:tldts-core" + ], + "tldts-experimental@7.0.25": [ + "npm:tldts-experimental" + ], + "tldts@7.0.17": [ + "npm:tldts" + ], + "tmp@0.2.5": [ + "npm:tmp" + ], + "to-regex-range@5.0.1": [ + "npm:to-regex-range" + ], + "toad-cache@3.7.0": [ + "npm:toad-cache" + ], + "toidentifier@1.0.1": [ + "npm:toidentifier" + ], + "totalist@3.0.1": [ + "npm:totalist" + ], + "tough-cookie@6.0.0": [ + "npm:tough-cookie" + ], + "tr46@0.0.3": [ + "npm:tr46" + ], + "tree-kill@1.2.2": [ + "npm:tree-kill" + ], + "ts-api-utils@2.4.0(typescript@6.0.2)": [ + "npm:ts-api-utils" + ], + "ts-deepmerge@7.0.3": [ + "npm:ts-deepmerge" + ], + "ts-morph@26.0.0": [ + "npm:ts-morph" + ], + "tsconfig-paths@4.2.0": [ + "npm:tsconfig-paths" + ], + "tsdown@0.21.4(oxc-resolver@11.19.1)(synckit@0.11.12)(typescript@6.0.2)": [ + "npm:tsdown" + ], + "tslib@2.8.1": [ + "npm:tslib" + ], + "tsx@4.21.0": [ + "npm:tsx" + ], + "tunnel-agent@0.6.0": [ + "npm:tunnel-agent" + ], + "turbo@2.8.20": [ + "npm:turbo" + ], + "tw-animate-css@1.4.0": [ + "npm:tw-animate-css" + ], + "type-check@0.4.0": [ + "npm:type-check" + ], + "type-fest@0.20.2": [ + "npm:type-fest@0.20.2" + ], + "type-fest@4.41.0": [ + "npm:type-fest" + ], + "type-is@2.0.1": [ + "npm:type-is" + ], + "type-level-regexp@0.1.17": [ + "npm:type-level-regexp" + ], + "typed-array-buffer@1.0.3": [ + "npm:typed-array-buffer" + ], + "typed-array-byte-length@1.0.3": [ + "npm:typed-array-byte-length" + ], + "typed-array-byte-offset@1.0.4": [ + "npm:typed-array-byte-offset" + ], + "typed-array-length@1.0.7": [ + "npm:typed-array-length" + ], + "typed-query-selector@2.12.1": [ + "npm:typed-query-selector" + ], + "typescript-eslint@8.57.1(eslint@9.39.4(jiti@2.6.1))(typescript@6.0.2)": [ + "npm:typescript-eslint" + ], + "typescript@6.0.2": [ + "npm:typescript" + ], + "ufo@1.6.3": [ + "npm:ufo" + ], + "unbash@2.2.0": [ + "npm:unbash" + ], + "unbox-primitive@1.1.0": [ + "npm:unbox-primitive" + ], + "unconfig-core@7.5.0": [ + "npm:unconfig-core" + ], + "unconfig@7.5.0": [ + "npm:unconfig" + ], + "uncrypto@0.1.3": [ + "npm:uncrypto" + ], + "undici-types@6.21.0": [ + "npm:undici-types" + ], + "undici@7.14.0": [ + "npm:undici@7.14.0" + ], + "undici@7.24.4": [ + "npm:undici" + ], + "unenv@2.0.0-rc.24": [ + "npm:unenv" + ], + "unicorn-magic@0.3.0": [ + "npm:unicorn-magic@0.3.0" + ], + "unicorn-magic@0.4.0": [ + "npm:unicorn-magic" + ], + "union@0.5.0": [ + "npm:union" + ], + "unique-filename@4.0.0": [ + "npm:unique-filename" + ], + "unique-slug@5.0.0": [ + "npm:unique-slug" + ], + "unist-util-is@6.0.1": [ + "npm:unist-util-is" + ], + "unist-util-stringify-position@4.0.0": [ + "npm:unist-util-stringify-position" + ], + "unist-util-visit-parents@6.0.2": [ + "npm:unist-util-visit-parents" + ], + "unist-util-visit@5.0.0": [ + "npm:unist-util-visit" + ], + "unpipe@1.0.0": [ + "npm:unpipe" + ], + "unplugin-purge-polyfills@0.1.0": [ + "npm:unplugin-purge-polyfills" + ], + "unplugin@2.3.10": [ + "npm:unplugin" + ], + "unrun@0.2.32(synckit@0.11.12)": [ + "npm:unrun" + ], + "update-browserslist-db@1.2.2(browserslist@4.28.1)": [ + "npm:update-browserslist-db" + ], + "uri-js@4.4.1": [ + "npm:uri-js" + ], + "url-http@1.3.2": [ + "npm:url-http" + ], + "url-join@4.0.1": [ + "npm:url-join" + ], + "url-regex-safe@4.0.0(re2@1.22.1)": [ + "npm:url-regex-safe" + ], + "use-callback-ref@1.3.3(@types/react@19.2.14)(react@19.2.4)": [ + "npm:use-callback-ref" + ], + "use-composed-ref@1.4.0(@types/react@19.2.14)(react@19.2.4)": [ + "npm:use-composed-ref" + ], + "use-isomorphic-layout-effect@1.2.1(@types/react@19.2.14)(react@19.2.4)": [ + "npm:use-isomorphic-layout-effect" + ], + "use-latest@1.3.0(@types/react@19.2.14)(react@19.2.4)": [ + "npm:use-latest" + ], + "use-sidecar@1.1.3(@types/react@19.2.14)(react@19.2.4)": [ + "npm:use-sidecar" + ], + "util-deprecate@1.0.2": [ + "npm:util-deprecate" + ], + "valibot@1.2.0(typescript@6.0.2)": [ + "npm:valibot" + ], + "vary@1.1.2": [ + "npm:vary" + ], + "vike-photon@0.1.25(2d77ebadb3b09aa04683439197b7df8e)": [ + "npm:vike-photon" + ], + "vike-react@0.6.21(react-dom@19.2.4(react@19.2.4))(react@19.2.4)(vike@0.4.255(@types/node@20.19.37)(jiti@2.6.1)(react-streaming@0.4.16(react-dom@19.2.4(react@19.2.4))(react@19.2.4))(sugarss@5.0.1(postcss@8.5.8))(tsx@4.21.0)(yaml@2.8.3))": [ + "npm:vike-react" + ], + "vike-solid@0.8.1(solid-js@1.9.11)(vike@0.4.255(@types/node@20.19.37)(jiti@2.6.1)(react-streaming@0.4.16(react-dom@19.2.4(react@19.2.4))(react@19.2.4))(sugarss@5.0.1(postcss@8.5.8))(tsx@4.21.0)(yaml@2.8.3))(vite-plugin-solid@2.11.11(solid-js@1.9.11)(vite@8.0.2(@types/node@20.19.37)(esbuild@0.27.4)(jiti@2.6.1)(sugarss@5.0.1(postcss@8.5.8))(tsx@4.21.0)(yaml@2.8.3)))": [ + "npm:vike-solid" + ], + "vike-vue@0.9.11(vike@0.4.255(@types/node@20.19.37)(jiti@2.6.1)(react-streaming@0.4.16(react-dom@19.2.4(react@19.2.4))(react@19.2.4))(sugarss@5.0.1(postcss@8.5.8))(tsx@4.21.0)(yaml@2.8.3))(vue@3.5.30(typescript@6.0.2))": [ + "npm:vike-vue" + ], + "vike@0.4.255(@types/node@20.19.37)(jiti@2.6.1)(react-streaming@0.4.16(react-dom@19.2.4(react@19.2.4))(react@19.2.4))(sugarss@5.0.1(postcss@8.5.8))(tsx@4.21.0)(yaml@2.8.3)": [ + "npm:vike" + ], + "vite-plugin-compiled-react@1.3.1(@compiled/react@0.20.0(react@19.2.4))(@vitejs/plugin-react@6.0.1(vite@8.0.2(@types/node@20.19.37)(esbuild@0.27.4)(jiti@2.6.1)(sugarss@5.0.1(postcss@8.5.8))(tsx@4.21.0)(yaml@2.8.3)))(vite@8.0.2(@types/node@20.19.37)(esbuild@0.27.4)(jiti@2.6.1)(sugarss@5.0.1(postcss@8.5.8))(tsx@4.21.0)(yaml@2.8.3))": [ + "npm:vite-plugin-compiled-react" + ], + "vite-plugin-solid@2.11.11(solid-js@1.9.11)(vite@8.0.2(@types/node@20.19.37)(esbuild@0.27.4)(jiti@2.6.1)(sugarss@5.0.1(postcss@8.5.8))(tsx@4.21.0)(yaml@2.8.3))": [ + "npm:vite-plugin-solid" + ], + "vite-plugin-wasm@3.5.0(vite@8.0.2(@types/node@20.19.37)(esbuild@0.27.4)(jiti@2.6.1)(sugarss@5.0.1(postcss@8.5.8))(tsx@4.21.0)(yaml@2.8.3))": [ + "npm:vite-plugin-wasm" + ], + "vite@8.0.2(@types/node@20.19.37)(esbuild@0.27.4)(jiti@2.6.1)(sugarss@5.0.1(postcss@8.5.8))(tsx@4.21.0)(yaml@2.8.3)": [ + "npm:vite" + ], + "vitefu@1.1.1(vite@8.0.2(@types/node@20.19.37)(esbuild@0.27.4)(jiti@2.6.1)(sugarss@5.0.1(postcss@8.5.8))(tsx@4.21.0)(yaml@2.8.3))": [ + "npm:vitefu" + ], + "vitest@4.1.0(@types/node@20.19.37)(esbuild@0.27.4)(jiti@2.6.1)(sugarss@5.0.1(postcss@8.5.8))(tsx@4.21.0)(yaml@2.8.3)": [ + "npm:vitest" + ], + "vue-eslint-parser@10.4.0(eslint@9.39.4(jiti@2.6.1))": [ + "npm:vue-eslint-parser" + ], + "vue-gtag@3.7.0(vue@3.5.30(typescript@6.0.2))": [ + "npm:vue-gtag" + ], + "vue@3.5.30(typescript@6.0.2)": [ + "npm:vue" + ], + "walk-up-path@4.0.0": [ + "npm:walk-up-path" + ], + "wcwidth@1.0.1": [ + "npm:wcwidth" + ], + "web-streams-polyfill@3.3.3": [ + "npm:web-streams-polyfill" + ], + "webdriver-bidi-protocol@0.4.1": [ + "npm:webdriver-bidi-protocol" + ], + "webidl-conversions@3.0.1": [ + "npm:webidl-conversions" + ], + "webpack-virtual-modules@0.6.2": [ + "npm:webpack-virtual-modules" + ], + "whatwg-encoding@2.0.0": [ + "npm:whatwg-encoding" + ], + "whatwg-url@5.0.0": [ + "npm:whatwg-url" + ], + "which-boxed-primitive@1.1.1": [ + "npm:which-boxed-primitive" + ], + "which-builtin-type@1.2.1": [ + "npm:which-builtin-type" + ], + "which-collection@1.0.2": [ + "npm:which-collection" + ], + "which-typed-array@1.1.19": [ + "npm:which-typed-array" + ], + "which@2.0.2": [ + "npm:which@2.0.2" + ], + "which@5.0.0": [ + "npm:which@5.0.0" + ], + "which@6.0.1": [ + "npm:which" + ], + "whoops@5.1.0": [ + "npm:whoops" + ], + "why-is-node-running@2.3.0": [ + "npm:why-is-node-running" + ], + "word-wrap@1.2.5": [ + "npm:word-wrap" + ], + "workerd@1.20251217.0": [ + "npm:workerd@1.20251217.0" + ], + "workerd@1.20260317.1": [ + "npm:workerd" + ], + "wrangler@4.76.0(@cloudflare/workers-types@4.20260317.1)": [ + "npm:wrangler" + ], + "wrap-ansi@7.0.0": [ + "npm:wrap-ansi", + "npm:wrap-ansi-cjs" + ], + "wrap-ansi@8.1.0": [ + "npm:wrap-ansi@8.1.0" + ], + "wrappy@1.0.2": [ + "npm:wrappy" + ], + "ws@8.18.0": [ + "npm:ws" + ], + "ws@8.19.0": [ + "npm:ws@8.19.0" + ], + "xml-name-validator@4.0.0": [ + "npm:xml-name-validator" + ], + "y18n@5.0.8": [ + "npm:y18n" + ], + "yallist@3.1.1": [ + "npm:yallist" + ], + "yallist@4.0.0": [ + "npm:yallist@4.0.0" + ], + "yallist@5.0.0": [ + "npm:yallist@5.0.0" + ], + "yaml@2.8.3": [ + "npm:yaml" + ], + "yargs-parser@21.1.1": [ + "npm:yargs-parser" + ], + "yargs@17.7.2": [ + "npm:yargs" + ], + "yauzl@2.10.0": [ + "npm:yauzl" + ], + "yocto-queue@0.1.0": [ + "npm:yocto-queue@0.1.0" + ], + "yocto-queue@1.2.1": [ + "npm:yocto-queue" + ], + "yoctocolors@2.1.2": [ + "npm:yoctocolors" + ], + "youch-core@0.3.3": [ + "npm:youch-core" + ], + "youch@4.1.0-beta.10": [ + "npm:youch" + ], + "zeptomatch@2.1.0": [ + "npm:zeptomatch" + ], + "zod@3.22.3": [ + "npm:zod@3.22.3" + ], + "zod@3.25.76": [ + "npm:zod" + ], + "zod@4.3.6": [ + "npm:zod@4.3.6" + ], + "zwitch@2.0.4": [ + "npm:zwitch" + ], + "zx@8.8.5": [ + "npm:zx" + ] + } +} \ No newline at end of file diff --git a/.nx/workspace-data/project-graph.json b/.nx/workspace-data/project-graph.json new file mode 100644 index 000000000..6634d9069 --- /dev/null +++ b/.nx/workspace-data/project-graph.json @@ -0,0 +1,38442 @@ +{ + "nodes": { + "@batijs/google-analytics": { + "name": "@batijs/google-analytics", + "type": "app", + "data": { + "root": "boilerplates/google-analytics", + "name": "@batijs/google-analytics", + "tags": [ + "npm:private", + "type:boilerplate" + ], + "metadata": { + "targetGroups": { + "NPM Scripts": [ + "check-types", + "build" + ] + }, + "description": "", + "js": { + "packageName": "@batijs/google-analytics", + "packageVersion": "0.0.1", + "isInPackageManagerWorkspaces": true + } + }, + "targets": { + "check-types": { + "executor": "nx:run-script", + "options": { + "script": "check-types" + }, + "metadata": { + "scriptContent": "tsc --noEmit", + "runCommand": "pnpm run check-types" + }, + "configurations": {}, + "parallelism": true, + "cache": true + }, + "build": { + "executor": "nx:run-script", + "options": { + "script": "build" + }, + "metadata": { + "scriptContent": "bati-compile-boilerplate", + "runCommand": "pnpm run build" + }, + "configurations": {}, + "parallelism": true, + "cache": true, + "dependsOn": [ + "^build" + ], + "inputs": [ + "default", + "^default" + ], + "outputs": [ + "{projectRoot}/dist/**" + ] + } + }, + "implicitDependencies": [] + } + }, + "@batijs/create-app": { + "name": "@batijs/create-app", + "type": "lib", + "data": { + "root": "packages/create-batijs-app", + "name": "@batijs/create-app", + "tags": [ + "npm:public" + ], + "metadata": { + "targetGroups": {}, + "description": "Next-gen scaffolder. Get started with fully-functional apps, and choose any tool you want", + "js": { + "packageName": "@batijs/create-app", + "packageVersion": "0.0.599", + "isInPackageManagerWorkspaces": true + } + }, + "targets": {}, + "implicitDependencies": [] + } + }, + "@batijs/shared-server": { + "name": "@batijs/shared-server", + "type": "lib", + "data": { + "root": "boilerplates/shared-server", + "name": "@batijs/shared-server", + "tags": [ + "npm:private", + "type:boilerplate" + ], + "metadata": { + "targetGroups": { + "NPM Scripts": [ + "check-types", + "build" + ] + }, + "description": "", + "js": { + "packageName": "@batijs/shared-server", + "packageVersion": "0.0.1", + "packageExports": { + "./drizzle/dist/types/database/drizzle/db": { + "types": "./dist/types/drizzle/dist/types/database/drizzle/db.d.mts" + }, + "./server/create-todo-handler": { + "types": "./dist/types/server/create-todo-handler.d.mts" + }, + "./sqlite/dist/types/database/sqlite/db": { + "types": "./dist/types/sqlite/dist/types/database/sqlite/db.d.mts" + } + }, + "isInPackageManagerWorkspaces": true + } + }, + "targets": { + "check-types": { + "executor": "nx:run-script", + "options": { + "script": "check-types" + }, + "metadata": { + "scriptContent": "tsc --noEmit", + "runCommand": "pnpm run check-types" + }, + "configurations": {}, + "parallelism": true, + "cache": true + }, + "build": { + "executor": "nx:run-script", + "options": { + "script": "build" + }, + "metadata": { + "scriptContent": "bati-compile-boilerplate", + "runCommand": "pnpm run build" + }, + "configurations": {}, + "parallelism": true, + "cache": true, + "dependsOn": [ + "^build" + ], + "inputs": [ + "default", + "^default" + ], + "outputs": [ + "{projectRoot}/dist/**" + ] + } + }, + "implicitDependencies": [] + } + }, + "@batijs/plausible.io": { + "name": "@batijs/plausible.io", + "type": "app", + "data": { + "root": "boilerplates/plausible.io", + "name": "@batijs/plausible.io", + "tags": [ + "npm:private", + "type:boilerplate" + ], + "metadata": { + "targetGroups": { + "NPM Scripts": [ + "check-types", + "build" + ] + }, + "description": "", + "js": { + "packageName": "@batijs/plausible.io", + "packageVersion": "0.0.1", + "isInPackageManagerWorkspaces": true + } + }, + "targets": { + "check-types": { + "executor": "nx:run-script", + "options": { + "script": "check-types" + }, + "metadata": { + "scriptContent": "tsc --noEmit", + "runCommand": "pnpm run check-types" + }, + "configurations": {}, + "parallelism": true, + "cache": true + }, + "build": { + "executor": "nx:run-script", + "options": { + "script": "build" + }, + "metadata": { + "scriptContent": "bati-compile-boilerplate", + "runCommand": "pnpm run build" + }, + "configurations": {}, + "parallelism": true, + "cache": true, + "dependsOn": [ + "^build" + ], + "inputs": [ + "default", + "^default" + ], + "outputs": [ + "{projectRoot}/dist/**" + ] + } + }, + "implicitDependencies": [] + } + }, + "@batijs/react-sentry": { + "name": "@batijs/react-sentry", + "type": "lib", + "data": { + "root": "boilerplates/react-sentry", + "name": "@batijs/react-sentry", + "tags": [ + "npm:private", + "type:boilerplate" + ], + "metadata": { + "targetGroups": { + "NPM Scripts": [ + "check-types", + "build" + ] + }, + "description": "", + "js": { + "packageName": "@batijs/react-sentry", + "packageVersion": "0.0.1", + "packageExports": { + "./pages/sentry/+Page": { + "types": "./dist/types/pages/sentry/+Page.d.mts" + }, + "./sentry.browser.config": { + "types": "./dist/types/sentry.browser.config.d.mts" + } + }, + "isInPackageManagerWorkspaces": true + } + }, + "targets": { + "check-types": { + "executor": "nx:run-script", + "options": { + "script": "check-types" + }, + "metadata": { + "scriptContent": "tsc --noEmit", + "runCommand": "pnpm run check-types" + }, + "configurations": {}, + "parallelism": true, + "cache": true + }, + "build": { + "executor": "nx:run-script", + "options": { + "script": "build" + }, + "metadata": { + "scriptContent": "bati-compile-boilerplate", + "runCommand": "pnpm run build" + }, + "configurations": {}, + "parallelism": true, + "cache": true, + "dependsOn": [ + "^build" + ], + "inputs": [ + "default", + "^default" + ], + "outputs": [ + "{projectRoot}/dist/**" + ] + } + }, + "implicitDependencies": [] + } + }, + "@batijs/solid-sentry": { + "name": "@batijs/solid-sentry", + "type": "lib", + "data": { + "root": "boilerplates/solid-sentry", + "name": "@batijs/solid-sentry", + "tags": [ + "npm:private", + "type:boilerplate" + ], + "metadata": { + "targetGroups": { + "NPM Scripts": [ + "check-types", + "build" + ] + }, + "description": "", + "js": { + "packageName": "@batijs/solid-sentry", + "packageVersion": "0.0.1", + "packageExports": { + "./pages/sentry/+Page": { + "types": "./dist/types/pages/sentry/+Page.d.mts" + }, + "./sentry.browser.config": { + "types": "./dist/types/sentry.browser.config.d.mts" + } + }, + "isInPackageManagerWorkspaces": true + } + }, + "targets": { + "check-types": { + "executor": "nx:run-script", + "options": { + "script": "check-types" + }, + "metadata": { + "scriptContent": "tsc --noEmit", + "runCommand": "pnpm run check-types" + }, + "configurations": {}, + "parallelism": true, + "cache": true + }, + "build": { + "executor": "nx:run-script", + "options": { + "script": "build" + }, + "metadata": { + "scriptContent": "bati-compile-boilerplate", + "runCommand": "pnpm run build" + }, + "configurations": {}, + "parallelism": true, + "cache": true, + "dependsOn": [ + "^build" + ], + "inputs": [ + "default", + "^default" + ], + "outputs": [ + "{projectRoot}/dist/**" + ] + } + }, + "implicitDependencies": [] + } + }, + "@batijs/shared-todo": { + "name": "@batijs/shared-todo", + "type": "lib", + "data": { + "root": "boilerplates/shared-todo", + "name": "@batijs/shared-todo", + "tags": [ + "npm:private", + "type:boilerplate" + ], + "metadata": { + "targetGroups": { + "NPM Scripts": [ + "check-types", + "build" + ] + }, + "description": "", + "js": { + "packageName": "@batijs/shared-todo", + "packageVersion": "0.0.1", + "packageExports": { + "./pages/todo/+config": { + "types": "./dist/types/pages/todo/+config.d.mts" + }, + "./pages/todo/+data": { + "types": "./dist/types/pages/todo/+data.d.mts" + } + }, + "isInPackageManagerWorkspaces": true + } + }, + "targets": { + "check-types": { + "executor": "nx:run-script", + "options": { + "script": "check-types" + }, + "metadata": { + "scriptContent": "tsc --noEmit", + "runCommand": "pnpm run check-types" + }, + "configurations": {}, + "parallelism": true, + "cache": true + }, + "build": { + "executor": "nx:run-script", + "options": { + "script": "build" + }, + "metadata": { + "scriptContent": "bati-compile-boilerplate", + "runCommand": "pnpm run build" + }, + "configurations": {}, + "parallelism": true, + "cache": true, + "dependsOn": [ + "^build" + ], + "inputs": [ + "default", + "^default" + ], + "outputs": [ + "{projectRoot}/dist/**" + ] + } + }, + "implicitDependencies": [] + } + }, + "@batijs/tailwindcss": { + "name": "@batijs/tailwindcss", + "type": "app", + "data": { + "root": "boilerplates/tailwindcss", + "name": "@batijs/tailwindcss", + "tags": [ + "npm:private", + "type:boilerplate" + ], + "metadata": { + "targetGroups": { + "NPM Scripts": [ + "check-types", + "build" + ] + }, + "description": "", + "js": { + "packageName": "@batijs/tailwindcss", + "packageVersion": "0.0.1", + "isInPackageManagerWorkspaces": true + } + }, + "targets": { + "check-types": { + "executor": "nx:run-script", + "options": { + "script": "check-types" + }, + "metadata": { + "scriptContent": "tsc --noEmit", + "runCommand": "pnpm run check-types" + }, + "configurations": {}, + "parallelism": true, + "cache": true + }, + "build": { + "executor": "nx:run-script", + "options": { + "script": "build" + }, + "metadata": { + "scriptContent": "bati-compile-boilerplate", + "runCommand": "pnpm run build" + }, + "configurations": {}, + "parallelism": true, + "cache": true, + "dependsOn": [ + "^build" + ], + "inputs": [ + "default", + "^default" + ], + "outputs": [ + "{projectRoot}/dist/**" + ] + } + }, + "implicitDependencies": [] + } + }, + "@batijs/cloudflare": { + "name": "@batijs/cloudflare", + "type": "app", + "data": { + "root": "boilerplates/cloudflare", + "name": "@batijs/cloudflare", + "tags": [ + "npm:private", + "type:boilerplate" + ], + "metadata": { + "targetGroups": { + "NPM Scripts": [ + "check-types", + "build" + ] + }, + "description": "", + "js": { + "packageName": "@batijs/cloudflare", + "packageVersion": "0.0.1", + "isInPackageManagerWorkspaces": true + } + }, + "targets": { + "check-types": { + "executor": "nx:run-script", + "options": { + "script": "check-types" + }, + "metadata": { + "scriptContent": "tsc --noEmit", + "runCommand": "pnpm run check-types" + }, + "configurations": {}, + "parallelism": true, + "cache": true + }, + "build": { + "executor": "nx:run-script", + "options": { + "script": "build" + }, + "metadata": { + "scriptContent": "bati-compile-boilerplate", + "runCommand": "pnpm run build" + }, + "configurations": {}, + "parallelism": true, + "cache": true, + "dependsOn": [ + "^build" + ], + "inputs": [ + "default", + "^default" + ], + "outputs": [ + "{projectRoot}/dist/**" + ] + } + }, + "implicitDependencies": [] + } + }, + "@batijs/vue-sentry": { + "name": "@batijs/vue-sentry", + "type": "lib", + "data": { + "root": "boilerplates/vue-sentry", + "name": "@batijs/vue-sentry", + "tags": [ + "npm:private", + "type:boilerplate" + ], + "metadata": { + "targetGroups": { + "NPM Scripts": [ + "check-types", + "build" + ] + }, + "description": "", + "js": { + "packageName": "@batijs/vue-sentry", + "packageVersion": "0.0.1", + "packageExports": { + "./sentry.browser.config": { + "types": "./dist/types/sentry.browser.config.d.mts" + } + }, + "isInPackageManagerWorkspaces": true + } + }, + "targets": { + "check-types": { + "executor": "nx:run-script", + "options": { + "script": "check-types" + }, + "metadata": { + "scriptContent": "tsc --noEmit", + "runCommand": "pnpm run check-types" + }, + "configurations": {}, + "parallelism": true, + "cache": true + }, + "build": { + "executor": "nx:run-script", + "options": { + "script": "build" + }, + "metadata": { + "scriptContent": "bati-compile-boilerplate", + "runCommand": "pnpm run build" + }, + "configurations": {}, + "parallelism": true, + "cache": true, + "dependsOn": [ + "^build" + ], + "inputs": [ + "default", + "^default" + ], + "outputs": [ + "{projectRoot}/dist/**" + ] + } + }, + "implicitDependencies": [] + } + }, + "@batijs/d1-kysely": { + "name": "@batijs/d1-kysely", + "type": "app", + "data": { + "root": "boilerplates/d1-kysely", + "name": "@batijs/d1-kysely", + "tags": [ + "npm:private", + "type:boilerplate" + ], + "metadata": { + "targetGroups": { + "NPM Scripts": [ + "check-types", + "build" + ] + }, + "description": "", + "js": { + "packageName": "@batijs/d1-kysely", + "packageVersion": "0.0.1", + "isInPackageManagerWorkspaces": true + } + }, + "targets": { + "check-types": { + "executor": "nx:run-script", + "options": { + "script": "check-types" + }, + "metadata": { + "scriptContent": "tsc --noEmit", + "runCommand": "pnpm run check-types" + }, + "configurations": {}, + "parallelism": true, + "cache": true + }, + "build": { + "executor": "nx:run-script", + "options": { + "script": "build" + }, + "metadata": { + "scriptContent": "bati-compile-boilerplate", + "runCommand": "pnpm run build" + }, + "configurations": {}, + "parallelism": true, + "cache": true, + "dependsOn": [ + "^build" + ], + "inputs": [ + "default", + "^default" + ], + "outputs": [ + "{projectRoot}/dist/**" + ] + } + }, + "implicitDependencies": [] + } + }, + "@batijs/d1-sqlite": { + "name": "@batijs/d1-sqlite", + "type": "lib", + "data": { + "root": "boilerplates/d1-sqlite", + "name": "@batijs/d1-sqlite", + "tags": [ + "npm:private", + "type:boilerplate" + ], + "metadata": { + "targetGroups": { + "NPM Scripts": [ + "check-types", + "build" + ] + }, + "description": "", + "js": { + "packageName": "@batijs/d1-sqlite", + "packageVersion": "0.0.1", + "packageExports": { + "./database/d1/queries/todos": { + "types": "./dist/types/database/d1/queries/todos.d.mts" + } + }, + "isInPackageManagerWorkspaces": true + } + }, + "targets": { + "check-types": { + "executor": "nx:run-script", + "options": { + "script": "check-types" + }, + "metadata": { + "scriptContent": "tsc --noEmit", + "runCommand": "pnpm run check-types" + }, + "configurations": {}, + "parallelism": true, + "cache": true + }, + "build": { + "executor": "nx:run-script", + "options": { + "script": "build" + }, + "metadata": { + "scriptContent": "bati-compile-boilerplate", + "runCommand": "pnpm run build" + }, + "configurations": {}, + "parallelism": true, + "cache": true, + "dependsOn": [ + "^build" + ], + "inputs": [ + "default", + "^default" + ], + "outputs": [ + "{projectRoot}/dist/**" + ] + } + }, + "implicitDependencies": [] + } + }, + "@batijs/shadcn-ui": { + "name": "@batijs/shadcn-ui", + "type": "lib", + "data": { + "root": "boilerplates/shadcn-ui", + "name": "@batijs/shadcn-ui", + "tags": [ + "npm:private", + "type:boilerplate" + ], + "metadata": { + "targetGroups": { + "NPM Scripts": [ + "check-types", + "build" + ] + }, + "description": "", + "js": { + "packageName": "@batijs/shadcn-ui", + "packageVersion": "0.0.1", + "packageExports": { + "./lib/utils": { + "types": "./dist/types/lib/utils.d.mts" + } + }, + "isInPackageManagerWorkspaces": true + } + }, + "targets": { + "check-types": { + "executor": "nx:run-script", + "options": { + "script": "check-types" + }, + "metadata": { + "scriptContent": "tsc --noEmit", + "runCommand": "pnpm run check-types" + }, + "configurations": {}, + "parallelism": true, + "cache": true + }, + "build": { + "executor": "nx:run-script", + "options": { + "script": "build" + }, + "metadata": { + "scriptContent": "bati-compile-boilerplate", + "runCommand": "pnpm run build" + }, + "configurations": {}, + "parallelism": true, + "cache": true, + "dependsOn": [ + "^build" + ], + "inputs": [ + "default", + "^default" + ], + "outputs": [ + "{projectRoot}/dist/**" + ] + } + }, + "implicitDependencies": [] + } + }, + "@batijs/shared-db": { + "name": "@batijs/shared-db", + "type": "lib", + "data": { + "root": "boilerplates/shared-db", + "name": "@batijs/shared-db", + "tags": [ + "npm:private", + "type:boilerplate" + ], + "metadata": { + "targetGroups": { + "NPM Scripts": [ + "check-types", + "build" + ] + }, + "description": "", + "js": { + "packageName": "@batijs/shared-db", + "packageVersion": "0.0.1", + "packageExports": { + "./drizzle/dist/types/database/drizzle/db": { + "types": "./dist/types/drizzle/dist/types/database/drizzle/db.d.mts" + }, + "./server/db-middleware": { + "types": "./dist/types/server/db-middleware.d.mts" + }, + "./sqlite/dist/types/database/sqlite/db": { + "types": "./dist/types/sqlite/dist/types/database/sqlite/db.d.mts" + } + }, + "isInPackageManagerWorkspaces": true + } + }, + "targets": { + "check-types": { + "executor": "nx:run-script", + "options": { + "script": "check-types" + }, + "metadata": { + "scriptContent": "tsc --noEmit", + "runCommand": "pnpm run check-types" + }, + "configurations": {}, + "parallelism": true, + "cache": true + }, + "build": { + "executor": "nx:run-script", + "options": { + "script": "build" + }, + "metadata": { + "scriptContent": "bati-compile-boilerplate", + "runCommand": "pnpm run build" + }, + "configurations": {}, + "parallelism": true, + "cache": true, + "dependsOn": [ + "^build" + ], + "inputs": [ + "default", + "^default" + ], + "outputs": [ + "{projectRoot}/dist/**" + ] + } + }, + "implicitDependencies": [] + } + }, + "@batijs/storybook": { + "name": "@batijs/storybook", + "type": "app", + "data": { + "root": "boilerplates/storybook", + "name": "@batijs/storybook", + "tags": [ + "npm:private", + "type:boilerplate" + ], + "metadata": { + "targetGroups": { + "NPM Scripts": [ + "check-types", + "build" + ] + }, + "description": "", + "js": { + "packageName": "@batijs/storybook", + "packageVersion": "0.0.1", + "isInPackageManagerWorkspaces": true + } + }, + "targets": { + "check-types": { + "executor": "nx:run-script", + "options": { + "script": "check-types" + }, + "metadata": { + "scriptContent": "tsc --noEmit", + "runCommand": "pnpm run check-types" + }, + "configurations": {}, + "parallelism": true, + "cache": true + }, + "build": { + "executor": "nx:run-script", + "options": { + "script": "build" + }, + "metadata": { + "scriptContent": "bati-compile-boilerplate", + "runCommand": "pnpm run build" + }, + "configurations": {}, + "parallelism": true, + "cache": true, + "dependsOn": [ + "^build" + ], + "inputs": [ + "default", + "^default" + ], + "outputs": [ + "{projectRoot}/dist/**" + ] + } + }, + "implicitDependencies": [] + } + }, + "@batijs/compiled": { + "name": "@batijs/compiled", + "type": "app", + "data": { + "root": "boilerplates/compiled", + "name": "@batijs/compiled", + "tags": [ + "npm:private", + "type:boilerplate" + ], + "metadata": { + "targetGroups": { + "NPM Scripts": [ + "check-types", + "build" + ] + }, + "description": "", + "js": { + "packageName": "@batijs/compiled", + "packageVersion": "0.0.1", + "isInPackageManagerWorkspaces": true + } + }, + "targets": { + "check-types": { + "executor": "nx:run-script", + "options": { + "script": "check-types" + }, + "metadata": { + "scriptContent": "tsc --noEmit", + "runCommand": "pnpm run check-types" + }, + "configurations": {}, + "parallelism": true, + "cache": true + }, + "build": { + "executor": "nx:run-script", + "options": { + "script": "build" + }, + "metadata": { + "scriptContent": "bati-compile-boilerplate", + "runCommand": "pnpm run build" + }, + "configurations": {}, + "parallelism": true, + "cache": true, + "dependsOn": [ + "^build" + ], + "inputs": [ + "default", + "^default" + ], + "outputs": [ + "{projectRoot}/dist/**" + ] + } + }, + "implicitDependencies": [] + } + }, + "@batijs/prettier": { + "name": "@batijs/prettier", + "type": "app", + "data": { + "root": "boilerplates/prettier", + "name": "@batijs/prettier", + "tags": [ + "npm:private", + "type:boilerplate" + ], + "metadata": { + "targetGroups": { + "NPM Scripts": [ + "check-types", + "build" + ] + }, + "description": "", + "js": { + "packageName": "@batijs/prettier", + "packageVersion": "0.0.1", + "isInPackageManagerWorkspaces": true + } + }, + "targets": { + "check-types": { + "executor": "nx:run-script", + "options": { + "script": "check-types" + }, + "metadata": { + "scriptContent": "tsc --noEmit", + "runCommand": "pnpm run check-types" + }, + "configurations": {}, + "parallelism": true, + "cache": true + }, + "build": { + "executor": "nx:run-script", + "options": { + "script": "build" + }, + "metadata": { + "scriptContent": "bati-compile-boilerplate", + "runCommand": "pnpm run build" + }, + "configurations": {}, + "parallelism": true, + "cache": true, + "dependsOn": [ + "^build" + ], + "inputs": [ + "default", + "^default" + ], + "outputs": [ + "{projectRoot}/dist/**" + ] + } + }, + "implicitDependencies": [] + } + }, + "@batijs/telefunc": { + "name": "@batijs/telefunc", + "type": "lib", + "data": { + "root": "boilerplates/telefunc", + "name": "@batijs/telefunc", + "tags": [ + "npm:private", + "type:boilerplate" + ], + "metadata": { + "targetGroups": { + "NPM Scripts": [ + "check-types", + "build" + ] + }, + "description": "", + "js": { + "packageName": "@batijs/telefunc", + "packageVersion": "0.0.1", + "packageExports": { + "./pages/todo/TodoList.telefunc": { + "types": "./dist/types/pages/todo/TodoList.telefunc.d.mts" + }, + "./server/telefunc-handler": { + "types": "./dist/types/server/telefunc-handler.d.mts" + } + }, + "isInPackageManagerWorkspaces": true + } + }, + "targets": { + "check-types": { + "executor": "nx:run-script", + "options": { + "script": "check-types" + }, + "metadata": { + "scriptContent": "tsc --noEmit", + "runCommand": "pnpm run check-types" + }, + "configurations": {}, + "parallelism": true, + "cache": true + }, + "build": { + "executor": "nx:run-script", + "options": { + "script": "build" + }, + "metadata": { + "scriptContent": "bati-compile-boilerplate", + "runCommand": "pnpm run build" + }, + "configurations": {}, + "parallelism": true, + "cache": true, + "dependsOn": [ + "^build" + ], + "inputs": [ + "default", + "^default" + ], + "outputs": [ + "{projectRoot}/dist/**" + ] + } + }, + "implicitDependencies": [] + } + }, + "@batijs/drizzle": { + "name": "@batijs/drizzle", + "type": "lib", + "data": { + "root": "boilerplates/drizzle", + "name": "@batijs/drizzle", + "tags": [ + "npm:private", + "type:boilerplate" + ], + "metadata": { + "targetGroups": { + "NPM Scripts": [ + "check-types", + "build" + ] + }, + "description": "", + "js": { + "packageName": "@batijs/drizzle", + "packageVersion": "0.0.1", + "packageExports": { + "./database/drizzle/db": { + "types": "./dist/types/database/drizzle/db.d.mts" + }, + "./database/drizzle/queries/todos": { + "types": "./dist/types/database/drizzle/queries/todos.d.mts" + }, + "./database/drizzle/schema/todos": { + "types": "./dist/types/database/drizzle/schema/todos.d.mts" + }, + "./drizzle.config": { + "types": "./dist/types/drizzle.config.d.mts" + } + }, + "isInPackageManagerWorkspaces": true + } + }, + "targets": { + "check-types": { + "executor": "nx:run-script", + "options": { + "script": "check-types" + }, + "metadata": { + "scriptContent": "tsc --noEmit", + "runCommand": "pnpm run check-types" + }, + "configurations": {}, + "parallelism": true, + "cache": true + }, + "build": { + "executor": "nx:run-script", + "options": { + "script": "build" + }, + "metadata": { + "scriptContent": "bati-compile-boilerplate", + "runCommand": "pnpm run build" + }, + "configurations": {}, + "parallelism": true, + "cache": true, + "dependsOn": [ + "^build" + ], + "inputs": [ + "default", + "^default" + ], + "outputs": [ + "{projectRoot}/dist/**" + ] + } + }, + "implicitDependencies": [] + } + }, + "@batijs/express": { + "name": "@batijs/express", + "type": "lib", + "data": { + "root": "boilerplates/express", + "name": "@batijs/express", + "tags": [ + "npm:private", + "type:boilerplate" + ], + "metadata": { + "targetGroups": { + "NPM Scripts": [ + "check-types", + "build" + ] + }, + "description": "", + "js": { + "packageName": "@batijs/express", + "packageVersion": "0.0.1", + "packageExports": { + "./server/entry": { + "types": "./dist/types/server/entry.d.mts" + } + }, + "isInPackageManagerWorkspaces": true + } + }, + "targets": { + "check-types": { + "executor": "nx:run-script", + "options": { + "script": "check-types" + }, + "metadata": { + "scriptContent": "tsc --noEmit", + "runCommand": "pnpm run check-types" + }, + "configurations": {}, + "parallelism": true, + "cache": true + }, + "build": { + "executor": "nx:run-script", + "options": { + "script": "build" + }, + "metadata": { + "scriptContent": "bati-compile-boilerplate", + "runCommand": "pnpm run build" + }, + "configurations": {}, + "parallelism": true, + "cache": true, + "dependsOn": [ + "^build" + ], + "inputs": [ + "default", + "^default" + ], + "outputs": [ + "{projectRoot}/dist/**" + ] + } + }, + "implicitDependencies": [] + } + }, + "@batijs/fastify": { + "name": "@batijs/fastify", + "type": "lib", + "data": { + "root": "boilerplates/fastify", + "name": "@batijs/fastify", + "tags": [ + "npm:private", + "type:boilerplate" + ], + "metadata": { + "targetGroups": { + "NPM Scripts": [ + "check-types", + "build" + ] + }, + "description": "", + "js": { + "packageName": "@batijs/fastify", + "packageVersion": "0.0.1", + "packageExports": { + "./server/entry": { + "types": "./dist/types/server/entry.d.mts" + } + }, + "isInPackageManagerWorkspaces": true + } + }, + "targets": { + "check-types": { + "executor": "nx:run-script", + "options": { + "script": "check-types" + }, + "metadata": { + "scriptContent": "tsc --noEmit", + "runCommand": "pnpm run check-types" + }, + "configurations": {}, + "parallelism": true, + "cache": true + }, + "build": { + "executor": "nx:run-script", + "options": { + "script": "build" + }, + "metadata": { + "scriptContent": "bati-compile-boilerplate", + "runCommand": "pnpm run build" + }, + "configurations": {}, + "parallelism": true, + "cache": true, + "dependsOn": [ + "^build" + ], + "inputs": [ + "default", + "^default" + ], + "outputs": [ + "{projectRoot}/dist/**" + ] + } + }, + "implicitDependencies": [] + } + }, + "@batijs/mantine": { + "name": "@batijs/mantine", + "type": "lib", + "data": { + "root": "boilerplates/mantine", + "name": "@batijs/mantine", + "tags": [ + "npm:private", + "type:boilerplate" + ], + "metadata": { + "targetGroups": { + "NPM Scripts": [ + "check-types", + "build" + ] + }, + "description": "", + "js": { + "packageName": "@batijs/mantine", + "packageVersion": "0.0.1", + "packageExports": { + "./components/Link": { + "types": "./dist/types/components/Link.d.mts" + }, + "./pages/+Layout": { + "types": "./dist/types/pages/+Layout.d.mts" + } + }, + "isInPackageManagerWorkspaces": true + } + }, + "targets": { + "check-types": { + "executor": "nx:run-script", + "options": { + "script": "check-types" + }, + "metadata": { + "scriptContent": "tsc --noEmit", + "runCommand": "pnpm run check-types" + }, + "configurations": {}, + "parallelism": true, + "cache": true + }, + "build": { + "executor": "nx:run-script", + "options": { + "script": "build" + }, + "metadata": { + "scriptContent": "bati-compile-boilerplate", + "runCommand": "pnpm run build" + }, + "configurations": {}, + "parallelism": true, + "cache": true, + "dependsOn": [ + "^build" + ], + "inputs": [ + "default", + "^default" + ], + "outputs": [ + "{projectRoot}/dist/**" + ] + } + }, + "implicitDependencies": [] + } + }, + "@batijs/tests-utils": { + "name": "@batijs/tests-utils", + "type": "lib", + "data": { + "root": "packages/tests-utils", + "name": "@batijs/tests-utils", + "tags": [ + "npm:private" + ], + "metadata": { + "targetGroups": { + "NPM Scripts": [ + "check-types", + "build" + ] + }, + "description": "Next-gen scaffolder. Get started with fully-functional apps, and choose any tool you want", + "js": { + "packageName": "@batijs/tests-utils", + "packageVersion": "0.0.599", + "packageExports": { + ".": "./dist/index.js" + }, + "packageMain": "./dist/index.js", + "isInPackageManagerWorkspaces": true + } + }, + "targets": { + "check-types": { + "executor": "nx:run-script", + "options": { + "script": "check-types" + }, + "metadata": { + "scriptContent": "tsc --noEmit", + "runCommand": "pnpm run check-types" + }, + "configurations": {}, + "parallelism": true, + "cache": true + }, + "build": { + "executor": "nx:run-script", + "options": { + "script": "build" + }, + "metadata": { + "scriptContent": "tsdown", + "runCommand": "pnpm run build" + }, + "configurations": {}, + "parallelism": true, + "cache": true, + "dependsOn": [ + "^build" + ], + "inputs": [ + "default", + "^default" + ], + "outputs": [ + "{projectRoot}/dist/**" + ] + } + }, + "implicitDependencies": [] + } + }, + "@batijs/ts-rest": { + "name": "@batijs/ts-rest", + "type": "lib", + "data": { + "root": "boilerplates/ts-rest", + "name": "@batijs/ts-rest", + "tags": [ + "npm:private", + "type:boilerplate" + ], + "metadata": { + "targetGroups": { + "NPM Scripts": [ + "check-types", + "build" + ] + }, + "description": "", + "js": { + "packageName": "@batijs/ts-rest", + "packageVersion": "0.0.1", + "packageExports": { + "./server/ts-rest-handler": { + "types": "./dist/types/server/ts-rest-handler.d.mts" + }, + "./ts-rest/client": { + "types": "./dist/types/ts-rest/client.d.mts" + }, + "./ts-rest/contract": { + "types": "./dist/types/ts-rest/contract.d.mts" + } + }, + "isInPackageManagerWorkspaces": true + } + }, + "targets": { + "check-types": { + "executor": "nx:run-script", + "options": { + "script": "check-types" + }, + "metadata": { + "scriptContent": "tsc --noEmit", + "runCommand": "pnpm run check-types" + }, + "configurations": {}, + "parallelism": true, + "cache": true + }, + "build": { + "executor": "nx:run-script", + "options": { + "script": "build" + }, + "metadata": { + "scriptContent": "bati-compile-boilerplate", + "runCommand": "pnpm run build" + }, + "configurations": {}, + "parallelism": true, + "cache": true, + "dependsOn": [ + "^build" + ], + "inputs": [ + "default", + "^default" + ], + "outputs": [ + "{projectRoot}/dist/**" + ] + } + }, + "implicitDependencies": [] + } + }, + "create-vike": { + "name": "create-vike", + "type": "lib", + "data": { + "root": "packages/create-bati", + "name": "create-vike", + "tags": [ + "npm:public" + ], + "metadata": { + "targetGroups": {}, + "description": "Next-gen scaffolder. Get started with fully-functional apps, and choose any tool you want", + "js": { + "packageName": "create-vike", + "packageVersion": "0.0.599", + "isInPackageManagerWorkspaces": true + } + }, + "targets": {}, + "implicitDependencies": [] + } + }, + "@batijs/authjs": { + "name": "@batijs/authjs", + "type": "lib", + "data": { + "root": "boilerplates/authjs", + "name": "@batijs/authjs", + "tags": [ + "npm:private", + "type:boilerplate" + ], + "metadata": { + "targetGroups": { + "NPM Scripts": [ + "check-types", + "build" + ] + }, + "description": "", + "js": { + "packageName": "@batijs/authjs", + "packageVersion": "0.0.1", + "packageExports": { + "./server/authjs-handler": { + "types": "./dist/types/server/authjs-handler.d.mts" + } + }, + "isInPackageManagerWorkspaces": true + } + }, + "targets": { + "check-types": { + "executor": "nx:run-script", + "options": { + "script": "check-types" + }, + "metadata": { + "scriptContent": "tsc --noEmit", + "runCommand": "pnpm run check-types" + }, + "configurations": {}, + "parallelism": true, + "cache": true + }, + "build": { + "executor": "nx:run-script", + "options": { + "script": "build" + }, + "metadata": { + "scriptContent": "bati-compile-boilerplate", + "runCommand": "pnpm run build" + }, + "configurations": {}, + "parallelism": true, + "cache": true, + "dependsOn": [ + "^build" + ], + "inputs": [ + "default", + "^default" + ], + "outputs": [ + "{projectRoot}/dist/**" + ] + } + }, + "implicitDependencies": [] + } + }, + "@batijs/eslint": { + "name": "@batijs/eslint", + "type": "lib", + "data": { + "root": "boilerplates/eslint", + "name": "@batijs/eslint", + "tags": [ + "npm:private", + "type:boilerplate" + ], + "metadata": { + "targetGroups": { + "NPM Scripts": [ + "check-types", + "build" + ] + }, + "description": "", + "js": { + "packageName": "@batijs/eslint", + "packageVersion": "0.0.1", + "packageExports": { + "./eslint.config": { + "types": "./dist/types/eslint.config.d.mts" + } + }, + "isInPackageManagerWorkspaces": true + } + }, + "targets": { + "check-types": { + "executor": "nx:run-script", + "options": { + "script": "check-types" + }, + "metadata": { + "scriptContent": "tsc --noEmit", + "runCommand": "pnpm run check-types" + }, + "configurations": {}, + "parallelism": true, + "cache": true + }, + "build": { + "executor": "nx:run-script", + "options": { + "script": "build" + }, + "metadata": { + "scriptContent": "bati-compile-boilerplate", + "runCommand": "pnpm run build" + }, + "configurations": {}, + "parallelism": true, + "cache": true, + "dependsOn": [ + "^build" + ], + "inputs": [ + "default", + "^default" + ], + "outputs": [ + "{projectRoot}/dist/**" + ] + } + }, + "implicitDependencies": [] + } + }, + "@batijs/kysely": { + "name": "@batijs/kysely", + "type": "lib", + "data": { + "root": "boilerplates/kysely", + "name": "@batijs/kysely", + "tags": [ + "npm:private", + "type:boilerplate" + ], + "metadata": { + "targetGroups": { + "NPM Scripts": [ + "check-types", + "build" + ] + }, + "description": "", + "js": { + "packageName": "@batijs/kysely", + "packageVersion": "0.0.1", + "packageExports": { + "./database/kysely/db": { + "types": "./dist/types/database/kysely/db.d.mts" + }, + "./database/kysely/migrate": { + "types": "./dist/types/database/kysely/migrate.d.mts" + }, + "./database/kysely/migrations/001_create_todos_table": { + "types": "./dist/types/database/kysely/migrations/001_create_todos_table.d.mts" + }, + "./database/kysely/queries/todos": { + "types": "./dist/types/database/kysely/queries/todos.d.mts" + }, + "./database/kysely/types": { + "types": "./dist/types/database/kysely/types.d.mts" + } + }, + "isInPackageManagerWorkspaces": true + } + }, + "targets": { + "check-types": { + "executor": "nx:run-script", + "options": { + "script": "check-types" + }, + "metadata": { + "scriptContent": "tsc --noEmit", + "runCommand": "pnpm run check-types" + }, + "configurations": {}, + "parallelism": true, + "cache": true + }, + "build": { + "executor": "nx:run-script", + "options": { + "script": "build" + }, + "metadata": { + "scriptContent": "bati-compile-boilerplate", + "runCommand": "pnpm run build" + }, + "configurations": {}, + "parallelism": true, + "cache": true, + "dependsOn": [ + "^build" + ], + "inputs": [ + "default", + "^default" + ], + "outputs": [ + "{projectRoot}/dist/**" + ] + } + }, + "implicitDependencies": [] + } + }, + "@batijs/oxlint": { + "name": "@batijs/oxlint", + "type": "app", + "data": { + "root": "boilerplates/oxlint", + "name": "@batijs/oxlint", + "tags": [ + "npm:private", + "type:boilerplate" + ], + "metadata": { + "targetGroups": { + "NPM Scripts": [ + "check-types", + "build" + ] + }, + "description": "", + "js": { + "packageName": "@batijs/oxlint", + "packageVersion": "0.0.1", + "isInPackageManagerWorkspaces": true + } + }, + "targets": { + "check-types": { + "executor": "nx:run-script", + "options": { + "script": "check-types" + }, + "metadata": { + "scriptContent": "tsc --noEmit", + "runCommand": "pnpm run check-types" + }, + "configurations": {}, + "parallelism": true, + "cache": true + }, + "build": { + "executor": "nx:run-script", + "options": { + "script": "build" + }, + "metadata": { + "scriptContent": "bati-compile-boilerplate", + "runCommand": "pnpm run build" + }, + "configurations": {}, + "parallelism": true, + "cache": true, + "dependsOn": [ + "^build" + ], + "inputs": [ + "default", + "^default" + ], + "outputs": [ + "{projectRoot}/dist/**" + ] + } + }, + "implicitDependencies": [] + } + }, + "@batijs/photon": { + "name": "@batijs/photon", + "type": "app", + "data": { + "root": "boilerplates/photon", + "name": "@batijs/photon", + "tags": [ + "npm:private", + "type:boilerplate" + ], + "metadata": { + "targetGroups": { + "NPM Scripts": [ + "check-types", + "build" + ] + }, + "description": "", + "js": { + "packageName": "@batijs/photon", + "packageVersion": "0.0.1", + "isInPackageManagerWorkspaces": true + } + }, + "targets": { + "check-types": { + "executor": "nx:run-script", + "options": { + "script": "check-types" + }, + "metadata": { + "scriptContent": "tsc --noEmit", + "runCommand": "pnpm run check-types" + }, + "configurations": {}, + "parallelism": true, + "cache": true + }, + "build": { + "executor": "nx:run-script", + "options": { + "script": "build" + }, + "metadata": { + "scriptContent": "bati-compile-boilerplate", + "runCommand": "pnpm run build" + }, + "configurations": {}, + "parallelism": true, + "cache": true, + "dependsOn": [ + "^build" + ], + "inputs": [ + "default", + "^default" + ], + "outputs": [ + "{projectRoot}/dist/**" + ] + } + }, + "implicitDependencies": [] + } + }, + "@batijs/prisma": { + "name": "@batijs/prisma", + "type": "app", + "data": { + "root": "boilerplates/prisma", + "name": "@batijs/prisma", + "tags": [ + "npm:private", + "type:boilerplate" + ], + "metadata": { + "targetGroups": { + "NPM Scripts": [ + "check-types", + "build" + ] + }, + "description": "", + "js": { + "packageName": "@batijs/prisma", + "packageVersion": "0.0.1", + "isInPackageManagerWorkspaces": true + } + }, + "targets": { + "check-types": { + "executor": "nx:run-script", + "options": { + "script": "check-types" + }, + "metadata": { + "scriptContent": "tsc --noEmit", + "runCommand": "pnpm run check-types" + }, + "configurations": {}, + "parallelism": true, + "cache": true + }, + "build": { + "executor": "nx:run-script", + "options": { + "script": "build" + }, + "metadata": { + "scriptContent": "bati-compile-boilerplate", + "runCommand": "pnpm run build" + }, + "configurations": {}, + "parallelism": true, + "cache": true, + "dependsOn": [ + "^build" + ], + "inputs": [ + "default", + "^default" + ], + "outputs": [ + "{projectRoot}/dist/**" + ] + } + }, + "implicitDependencies": [] + } + }, + "@batijs/sentry": { + "name": "@batijs/sentry", + "type": "app", + "data": { + "root": "boilerplates/sentry", + "name": "@batijs/sentry", + "tags": [ + "npm:private", + "type:boilerplate" + ], + "metadata": { + "targetGroups": { + "NPM Scripts": [ + "check-types", + "build" + ] + }, + "description": "", + "js": { + "packageName": "@batijs/sentry", + "packageVersion": "0.0.1", + "isInPackageManagerWorkspaces": true + } + }, + "targets": { + "check-types": { + "executor": "nx:run-script", + "options": { + "script": "check-types" + }, + "metadata": { + "scriptContent": "tsc --noEmit", + "runCommand": "pnpm run check-types" + }, + "configurations": {}, + "parallelism": true, + "cache": true + }, + "build": { + "executor": "nx:run-script", + "options": { + "script": "build" + }, + "metadata": { + "scriptContent": "bati-compile-boilerplate", + "runCommand": "pnpm run build" + }, + "configurations": {}, + "parallelism": true, + "cache": true, + "dependsOn": [ + "^build" + ], + "inputs": [ + "default", + "^default" + ], + "outputs": [ + "{projectRoot}/dist/**" + ] + } + }, + "implicitDependencies": [] + } + }, + "@batijs/shared": { + "name": "@batijs/shared", + "type": "lib", + "data": { + "root": "boilerplates/shared", + "name": "@batijs/shared", + "tags": [ + "npm:private", + "type:boilerplate" + ], + "metadata": { + "targetGroups": { + "NPM Scripts": [ + "check-types", + "build" + ] + }, + "description": "", + "js": { + "packageName": "@batijs/shared", + "packageVersion": "0.0.1", + "packageExports": { + "./vite.config": { + "types": "./dist/types/vite.config.d.mts" + } + }, + "isInPackageManagerWorkspaces": true + } + }, + "targets": { + "check-types": { + "executor": "nx:run-script", + "options": { + "script": "check-types" + }, + "metadata": { + "scriptContent": "tsc --noEmit", + "runCommand": "pnpm run check-types" + }, + "configurations": {}, + "parallelism": true, + "cache": true + }, + "build": { + "executor": "nx:run-script", + "options": { + "script": "build" + }, + "metadata": { + "scriptContent": "bati-compile-boilerplate", + "runCommand": "pnpm run build" + }, + "configurations": {}, + "parallelism": true, + "cache": true, + "dependsOn": [ + "^build" + ], + "inputs": [ + "default", + "^default" + ], + "outputs": [ + "{projectRoot}/dist/**" + ] + } + }, + "implicitDependencies": [] + } + }, + "@batijs/sqlite": { + "name": "@batijs/sqlite", + "type": "lib", + "data": { + "root": "boilerplates/sqlite", + "name": "@batijs/sqlite", + "tags": [ + "npm:private", + "type:boilerplate" + ], + "metadata": { + "targetGroups": { + "NPM Scripts": [ + "check-types", + "build" + ] + }, + "description": "", + "js": { + "packageName": "@batijs/sqlite", + "packageVersion": "0.0.1", + "packageExports": { + "./database/sqlite/db": { + "types": "./dist/types/database/sqlite/db.d.mts" + }, + "./database/sqlite/queries/todos": { + "types": "./dist/types/database/sqlite/queries/todos.d.mts" + }, + "./database/sqlite/schema/all": { + "types": "./dist/types/database/sqlite/schema/all.d.mts" + }, + "./database/sqlite/schema/todos": { + "types": "./dist/types/database/sqlite/schema/todos.d.mts" + } + }, + "isInPackageManagerWorkspaces": true + } + }, + "targets": { + "check-types": { + "executor": "nx:run-script", + "options": { + "script": "check-types" + }, + "metadata": { + "scriptContent": "tsc --noEmit", + "runCommand": "pnpm run check-types" + }, + "configurations": {}, + "parallelism": true, + "cache": true + }, + "build": { + "executor": "nx:run-script", + "options": { + "script": "build" + }, + "metadata": { + "scriptContent": "bati-compile-boilerplate", + "runCommand": "pnpm run build" + }, + "configurations": {}, + "parallelism": true, + "cache": true, + "dependsOn": [ + "^build" + ], + "inputs": [ + "default", + "^default" + ], + "outputs": [ + "{projectRoot}/dist/**" + ] + } + }, + "implicitDependencies": [] + } + }, + "@batijs/vercel": { + "name": "@batijs/vercel", + "type": "app", + "data": { + "root": "boilerplates/vercel", + "name": "@batijs/vercel", + "tags": [ + "npm:private", + "type:boilerplate" + ], + "metadata": { + "targetGroups": { + "NPM Scripts": [ + "check-types", + "build" + ] + }, + "description": "", + "js": { + "packageName": "@batijs/vercel", + "packageVersion": "0.0.1", + "isInPackageManagerWorkspaces": true + } + }, + "targets": { + "check-types": { + "executor": "nx:run-script", + "options": { + "script": "check-types" + }, + "metadata": { + "scriptContent": "tsc --noEmit", + "runCommand": "pnpm run check-types" + }, + "configurations": {}, + "parallelism": true, + "cache": true + }, + "build": { + "executor": "nx:run-script", + "options": { + "script": "build" + }, + "metadata": { + "scriptContent": "bati-compile-boilerplate", + "runCommand": "pnpm run build" + }, + "configurations": {}, + "parallelism": true, + "cache": true, + "dependsOn": [ + "^build" + ], + "inputs": [ + "default", + "^default" + ], + "outputs": [ + "{projectRoot}/dist/**" + ] + } + }, + "implicitDependencies": [] + } + }, + "@batijs/auth0": { + "name": "@batijs/auth0", + "type": "app", + "data": { + "root": "boilerplates/auth0", + "name": "@batijs/auth0", + "tags": [ + "npm:private", + "type:boilerplate" + ], + "metadata": { + "targetGroups": { + "NPM Scripts": [ + "check-types", + "build" + ] + }, + "description": "", + "js": { + "packageName": "@batijs/auth0", + "packageVersion": "0.0.1", + "isInPackageManagerWorkspaces": true + } + }, + "targets": { + "check-types": { + "executor": "nx:run-script", + "options": { + "script": "check-types" + }, + "metadata": { + "scriptContent": "tsc --noEmit", + "runCommand": "pnpm run check-types" + }, + "configurations": {}, + "parallelism": true, + "cache": true + }, + "build": { + "executor": "nx:run-script", + "options": { + "script": "build" + }, + "metadata": { + "scriptContent": "bati-compile-boilerplate", + "runCommand": "pnpm run build" + }, + "configurations": {}, + "parallelism": true, + "cache": true, + "dependsOn": [ + "^build" + ], + "inputs": [ + "default", + "^default" + ], + "outputs": [ + "{projectRoot}/dist/**" + ] + } + }, + "implicitDependencies": [] + } + }, + "@batijs/biome": { + "name": "@batijs/biome", + "type": "app", + "data": { + "root": "boilerplates/biome", + "name": "@batijs/biome", + "tags": [ + "npm:private", + "type:boilerplate" + ], + "metadata": { + "targetGroups": { + "NPM Scripts": [ + "check-types", + "build" + ] + }, + "description": "", + "js": { + "packageName": "@batijs/biome", + "packageVersion": "0.0.1", + "isInPackageManagerWorkspaces": true + } + }, + "targets": { + "check-types": { + "executor": "nx:run-script", + "options": { + "script": "check-types" + }, + "metadata": { + "scriptContent": "tsc --noEmit", + "runCommand": "pnpm run check-types" + }, + "configurations": {}, + "parallelism": true, + "cache": true + }, + "build": { + "executor": "nx:run-script", + "options": { + "script": "build" + }, + "metadata": { + "scriptContent": "bati-compile-boilerplate", + "runCommand": "pnpm run build" + }, + "configurations": {}, + "parallelism": true, + "cache": true, + "dependsOn": [ + "^build" + ], + "inputs": [ + "default", + "^default" + ], + "outputs": [ + "{projectRoot}/dist/**" + ] + } + }, + "implicitDependencies": [] + } + }, + "@batijs/react": { + "name": "@batijs/react", + "type": "lib", + "data": { + "root": "boilerplates/react", + "name": "@batijs/react", + "tags": [ + "npm:private", + "type:boilerplate" + ], + "metadata": { + "targetGroups": { + "NPM Scripts": [ + "check-types", + "build" + ] + }, + "description": "", + "js": { + "packageName": "@batijs/react", + "packageVersion": "0.0.1", + "packageExports": { + "./components/Link": { + "types": "./dist/types/components/Link.d.mts" + }, + "./pages/_error/+Page": { + "types": "./dist/types/pages/_error/+Page.d.mts" + }, + "./pages/+config": { + "types": "./dist/types/pages/+config.d.mts" + }, + "./pages/+Head": { + "types": "./dist/types/pages/+Head.d.mts" + }, + "./pages/+Layout": { + "types": "./dist/types/pages/+Layout.d.mts" + }, + "./pages/+onPageTransitionEnd": { + "types": "./dist/types/pages/+onPageTransitionEnd.d.mts" + }, + "./pages/+onPageTransitionStart": { + "types": "./dist/types/pages/+onPageTransitionStart.d.mts" + }, + "./pages/index/+Page": { + "types": "./dist/types/pages/index/+Page.d.mts" + }, + "./pages/index/Counter": { + "types": "./dist/types/pages/index/Counter.d.mts" + }, + "./pages/star-wars/@id/+data": { + "types": "./dist/types/pages/star-wars/@id/+data.d.mts" + }, + "./pages/star-wars/@id/+Page": { + "types": "./dist/types/pages/star-wars/@id/+Page.d.mts" + }, + "./pages/star-wars/index/+data": { + "types": "./dist/types/pages/star-wars/index/+data.d.mts" + }, + "./pages/star-wars/index/+Page": { + "types": "./dist/types/pages/star-wars/index/+Page.d.mts" + }, + "./pages/star-wars/types": { + "types": "./dist/types/pages/star-wars/types.d.mts" + }, + "./pages/todo/+Page": { + "types": "./dist/types/pages/todo/+Page.d.mts" + }, + "./pages/todo/TodoList": { + "types": "./dist/types/pages/todo/TodoList.d.mts" + } + }, + "isInPackageManagerWorkspaces": true + } + }, + "targets": { + "check-types": { + "executor": "nx:run-script", + "options": { + "script": "check-types" + }, + "metadata": { + "scriptContent": "tsc --noEmit", + "runCommand": "pnpm run check-types" + }, + "configurations": {}, + "parallelism": true, + "cache": true + }, + "build": { + "executor": "nx:run-script", + "options": { + "script": "build" + }, + "metadata": { + "scriptContent": "bati-compile-boilerplate", + "runCommand": "pnpm run build" + }, + "configurations": {}, + "parallelism": true, + "cache": true, + "dependsOn": [ + "^build" + ], + "inputs": [ + "default", + "^default" + ], + "outputs": [ + "{projectRoot}/dist/**" + ] + } + }, + "implicitDependencies": [] + } + }, + "@batijs/solid": { + "name": "@batijs/solid", + "type": "lib", + "data": { + "root": "boilerplates/solid", + "name": "@batijs/solid", + "tags": [ + "npm:private", + "type:boilerplate" + ], + "metadata": { + "targetGroups": { + "NPM Scripts": [ + "check-types", + "build" + ] + }, + "description": "", + "js": { + "packageName": "@batijs/solid", + "packageVersion": "0.0.1", + "packageExports": { + "./components/Link": { + "types": "./dist/types/components/Link.d.mts" + }, + "./pages/_error/+Page": { + "types": "./dist/types/pages/_error/+Page.d.mts" + }, + "./pages/+config": { + "types": "./dist/types/pages/+config.d.mts" + }, + "./pages/+Head": { + "types": "./dist/types/pages/+Head.d.mts" + }, + "./pages/+Layout": { + "types": "./dist/types/pages/+Layout.d.mts" + }, + "./pages/+onPageTransitionEnd": { + "types": "./dist/types/pages/+onPageTransitionEnd.d.mts" + }, + "./pages/+onPageTransitionStart": { + "types": "./dist/types/pages/+onPageTransitionStart.d.mts" + }, + "./pages/index/+Page": { + "types": "./dist/types/pages/index/+Page.d.mts" + }, + "./pages/index/Counter": { + "types": "./dist/types/pages/index/Counter.d.mts" + }, + "./pages/star-wars/@id/+data": { + "types": "./dist/types/pages/star-wars/@id/+data.d.mts" + }, + "./pages/star-wars/@id/+Page": { + "types": "./dist/types/pages/star-wars/@id/+Page.d.mts" + }, + "./pages/star-wars/index/+data": { + "types": "./dist/types/pages/star-wars/index/+data.d.mts" + }, + "./pages/star-wars/index/+Page": { + "types": "./dist/types/pages/star-wars/index/+Page.d.mts" + }, + "./pages/star-wars/types": { + "types": "./dist/types/pages/star-wars/types.d.mts" + }, + "./pages/todo/+Page": { + "types": "./dist/types/pages/todo/+Page.d.mts" + }, + "./pages/todo/TodoList": { + "types": "./dist/types/pages/todo/TodoList.d.mts" + } + }, + "isInPackageManagerWorkspaces": true + } + }, + "targets": { + "check-types": { + "executor": "nx:run-script", + "options": { + "script": "check-types" + }, + "metadata": { + "scriptContent": "tsc --noEmit", + "runCommand": "pnpm run check-types" + }, + "configurations": {}, + "parallelism": true, + "cache": true + }, + "build": { + "executor": "nx:run-script", + "options": { + "script": "build" + }, + "metadata": { + "scriptContent": "bati-compile-boilerplate", + "runCommand": "pnpm run build" + }, + "configurations": {}, + "parallelism": true, + "cache": true, + "dependsOn": [ + "^build" + ], + "inputs": [ + "default", + "^default" + ], + "outputs": [ + "{projectRoot}/dist/**" + ] + } + }, + "implicitDependencies": [] + } + }, + "@batijs/features": { + "name": "@batijs/features", + "type": "lib", + "data": { + "root": "packages/features", + "name": "@batijs/features", + "tags": [ + "npm:public" + ], + "metadata": { + "targetGroups": { + "NPM Scripts": [ + "test", + "test:ci", + "prepublishOnly", + "build", + "watch" + ] + }, + "description": "", + "js": { + "packageName": "@batijs/features", + "packageVersion": "0.0.599", + "packageExports": { + ".": "./dist/index.js", + "./rules": "./dist/rules.js" + }, + "packageMain": "./dist/index.js", + "isInPackageManagerWorkspaces": true + } + }, + "targets": { + "test": { + "executor": "nx:run-script", + "options": { + "script": "test" + }, + "metadata": { + "scriptContent": "vitest run", + "runCommand": "pnpm run test" + }, + "configurations": {}, + "parallelism": true, + "cache": true, + "dependsOn": [ + "build" + ] + }, + "test:ci": { + "executor": "nx:run-script", + "options": { + "script": "test:ci" + }, + "metadata": { + "scriptContent": "vitest run", + "runCommand": "pnpm run test:ci" + }, + "configurations": {}, + "parallelism": true + }, + "prepublishOnly": { + "executor": "nx:run-script", + "options": { + "script": "prepublishOnly" + }, + "metadata": { + "scriptContent": "nx run-many --target=build", + "runCommand": "pnpm run prepublishOnly" + }, + "configurations": {}, + "parallelism": true + }, + "build": { + "executor": "nx:run-script", + "options": { + "script": "build" + }, + "metadata": { + "scriptContent": "tsdown", + "runCommand": "pnpm run build" + }, + "configurations": {}, + "parallelism": true, + "cache": true, + "dependsOn": [ + "^build" + ], + "inputs": [ + "default", + "^default" + ], + "outputs": [ + "{projectRoot}/dist/**" + ] + }, + "watch": { + "executor": "nx:run-script", + "options": { + "script": "watch" + }, + "metadata": { + "scriptContent": "tsdown --watch", + "runCommand": "pnpm run watch" + }, + "configurations": {}, + "parallelism": true + } + }, + "implicitDependencies": [] + } + }, + "@batijs/hono": { + "name": "@batijs/hono", + "type": "lib", + "data": { + "root": "boilerplates/hono", + "name": "@batijs/hono", + "tags": [ + "npm:private", + "type:boilerplate" + ], + "metadata": { + "targetGroups": { + "NPM Scripts": [ + "check-types", + "build" + ] + }, + "description": "", + "js": { + "packageName": "@batijs/hono", + "packageVersion": "0.0.1", + "packageExports": { + "./entry_aws_lambda": { + "types": "./dist/types/entry_aws_lambda.d.mts" + }, + "./server/entry": { + "types": "./dist/types/server/entry.d.mts" + } + }, + "isInPackageManagerWorkspaces": true + } + }, + "targets": { + "check-types": { + "executor": "nx:run-script", + "options": { + "script": "check-types" + }, + "metadata": { + "scriptContent": "tsc --noEmit", + "runCommand": "pnpm run check-types" + }, + "configurations": {}, + "parallelism": true, + "cache": true + }, + "build": { + "executor": "nx:run-script", + "options": { + "script": "build" + }, + "metadata": { + "scriptContent": "bati-compile-boilerplate", + "runCommand": "pnpm run build" + }, + "configurations": {}, + "parallelism": true, + "cache": true, + "dependsOn": [ + "^build" + ], + "inputs": [ + "default", + "^default" + ], + "outputs": [ + "{projectRoot}/dist/**" + ] + } + }, + "implicitDependencies": [] + } + }, + "@batijs/pnpm": { + "name": "@batijs/pnpm", + "type": "app", + "data": { + "root": "boilerplates/pnpm", + "name": "@batijs/pnpm", + "tags": [ + "npm:private", + "type:boilerplate" + ], + "metadata": { + "targetGroups": { + "NPM Scripts": [ + "check-types", + "build" + ] + }, + "description": "", + "js": { + "packageName": "@batijs/pnpm", + "packageVersion": "0.0.1", + "isInPackageManagerWorkspaces": true + } + }, + "targets": { + "check-types": { + "executor": "nx:run-script", + "options": { + "script": "check-types" + }, + "metadata": { + "scriptContent": "tsc --noEmit", + "runCommand": "pnpm run check-types" + }, + "configurations": {}, + "parallelism": true, + "cache": true + }, + "build": { + "executor": "nx:run-script", + "options": { + "script": "build" + }, + "metadata": { + "scriptContent": "bati-compile-boilerplate", + "runCommand": "pnpm run build" + }, + "configurations": {}, + "parallelism": true, + "cache": true, + "dependsOn": [ + "^build" + ], + "inputs": [ + "default", + "^default" + ], + "outputs": [ + "{projectRoot}/dist/**" + ] + } + }, + "implicitDependencies": [] + } + }, + "@batijs/trpc": { + "name": "@batijs/trpc", + "type": "lib", + "data": { + "root": "boilerplates/trpc", + "name": "@batijs/trpc", + "tags": [ + "npm:private", + "type:boilerplate" + ], + "metadata": { + "targetGroups": { + "NPM Scripts": [ + "check-types", + "build" + ] + }, + "description": "", + "js": { + "packageName": "@batijs/trpc", + "packageVersion": "0.0.1", + "packageExports": { + "./server/trpc-handler": { + "types": "./dist/types/server/trpc-handler.d.mts" + }, + "./trpc/client": { + "types": "./dist/types/trpc/client.d.mts" + }, + "./trpc/server": { + "types": "./dist/types/trpc/server.d.mts" + } + }, + "isInPackageManagerWorkspaces": true + } + }, + "targets": { + "check-types": { + "executor": "nx:run-script", + "options": { + "script": "check-types" + }, + "metadata": { + "scriptContent": "tsc --noEmit", + "runCommand": "pnpm run check-types" + }, + "configurations": {}, + "parallelism": true, + "cache": true + }, + "build": { + "executor": "nx:run-script", + "options": { + "script": "build" + }, + "metadata": { + "scriptContent": "bati-compile-boilerplate", + "runCommand": "pnpm run build" + }, + "configurations": {}, + "parallelism": true, + "cache": true, + "dependsOn": [ + "^build" + ], + "inputs": [ + "default", + "^default" + ], + "outputs": [ + "{projectRoot}/dist/**" + ] + } + }, + "implicitDependencies": [] + } + }, + "@batijs/aws": { + "name": "@batijs/aws", + "type": "lib", + "data": { + "root": "boilerplates/aws", + "name": "@batijs/aws", + "tags": [ + "npm:private", + "type:boilerplate" + ], + "metadata": { + "targetGroups": { + "NPM Scripts": [ + "check-types", + "build" + ] + }, + "description": "", + "js": { + "packageName": "@batijs/aws", + "packageVersion": "0.0.1", + "packageExports": { + "./cdk/bin/infrastructure": { + "types": "./dist/types/cdk/bin/infrastructure.d.mts" + }, + "./cdk/lib/vike-stack": { + "types": "./dist/types/cdk/lib/vike-stack.d.mts" + }, + "./tests/aws_handler.spec": { + "types": "./dist/types/tests/aws_handler.spec.d.mts" + }, + "./vitest.config": { + "types": "./dist/types/vitest.config.d.mts" + } + }, + "isInPackageManagerWorkspaces": true + } + }, + "targets": { + "check-types": { + "executor": "nx:run-script", + "options": { + "script": "check-types" + }, + "metadata": { + "scriptContent": "tsc --noEmit", + "runCommand": "pnpm run check-types" + }, + "configurations": {}, + "parallelism": true, + "cache": true + }, + "build": { + "executor": "nx:run-script", + "options": { + "script": "build" + }, + "metadata": { + "scriptContent": "bati-compile-boilerplate", + "runCommand": "pnpm run build" + }, + "configurations": {}, + "parallelism": true, + "cache": true, + "dependsOn": [ + "^build" + ], + "inputs": [ + "default", + "^default" + ], + "outputs": [ + "{projectRoot}/dist/**" + ] + } + }, + "implicitDependencies": [] + } + }, + "@batijs/compile": { + "name": "@batijs/compile", + "type": "lib", + "data": { + "root": "packages/compile", + "name": "@batijs/compile", + "tags": [ + "npm:private" + ], + "metadata": { + "targetGroups": { + "NPM Scripts": [ + "check-types", + "prepublishOnly", + "build" + ] + }, + "description": "", + "js": { + "packageName": "@batijs/compile", + "packageVersion": "0.0.599", + "isInPackageManagerWorkspaces": true + } + }, + "targets": { + "check-types": { + "executor": "nx:run-script", + "options": { + "script": "check-types" + }, + "metadata": { + "scriptContent": "tsc --noEmit", + "runCommand": "pnpm run check-types" + }, + "configurations": {}, + "parallelism": true, + "cache": true + }, + "prepublishOnly": { + "executor": "nx:run-script", + "options": { + "script": "prepublishOnly" + }, + "metadata": { + "scriptContent": "nx run-many --target=build", + "runCommand": "pnpm run prepublishOnly" + }, + "configurations": {}, + "parallelism": true + }, + "build": { + "executor": "nx:run-script", + "options": { + "script": "build" + }, + "metadata": { + "scriptContent": "tsdown", + "runCommand": "pnpm run build" + }, + "configurations": {}, + "parallelism": true, + "cache": true, + "dependsOn": [ + "^build" + ], + "inputs": [ + "default", + "^default" + ], + "outputs": [ + "{projectRoot}/dist/**" + ] + } + }, + "implicitDependencies": [] + } + }, + "@batijs/vue": { + "name": "@batijs/vue", + "type": "lib", + "data": { + "root": "boilerplates/vue", + "name": "@batijs/vue", + "tags": [ + "npm:private", + "type:boilerplate" + ], + "metadata": { + "targetGroups": { + "NPM Scripts": [ + "check-types", + "build" + ] + }, + "description": "", + "js": { + "packageName": "@batijs/vue", + "packageVersion": "0.0.1", + "packageExports": { + "./pages/+config": { + "types": "./dist/types/pages/+config.d.mts" + }, + "./pages/+onCreateApp": { + "types": "./dist/types/pages/+onCreateApp.d.mts" + }, + "./pages/+onPageTransitionEnd": { + "types": "./dist/types/pages/+onPageTransitionEnd.d.mts" + }, + "./pages/+onPageTransitionStart": { + "types": "./dist/types/pages/+onPageTransitionStart.d.mts" + }, + "./pages/star-wars/@id/+data": { + "types": "./dist/types/pages/star-wars/@id/+data.d.mts" + }, + "./pages/star-wars/index/+data": { + "types": "./dist/types/pages/star-wars/index/+data.d.mts" + }, + "./pages/star-wars/types": { + "types": "./dist/types/pages/star-wars/types.d.mts" + } + }, + "isInPackageManagerWorkspaces": true + } + }, + "targets": { + "check-types": { + "executor": "nx:run-script", + "options": { + "script": "check-types" + }, + "metadata": { + "scriptContent": "tsc --noEmit", + "runCommand": "pnpm run check-types" + }, + "configurations": {}, + "parallelism": true, + "cache": true + }, + "build": { + "executor": "nx:run-script", + "options": { + "script": "build" + }, + "metadata": { + "scriptContent": "bati-compile-boilerplate", + "runCommand": "pnpm run build" + }, + "configurations": {}, + "parallelism": true, + "cache": true, + "dependsOn": [ + "^build" + ], + "inputs": [ + "default", + "^default" + ], + "outputs": [ + "{projectRoot}/dist/**" + ] + } + }, + "implicitDependencies": [] + } + }, + "@batijs/d1": { + "name": "@batijs/d1", + "type": "lib", + "data": { + "root": "boilerplates/d1", + "name": "@batijs/d1", + "tags": [ + "npm:private", + "type:boilerplate" + ], + "metadata": { + "targetGroups": { + "NPM Scripts": [ + "check-types", + "build" + ] + }, + "description": "", + "js": { + "packageName": "@batijs/d1", + "packageVersion": "0.0.1", + "packageExports": { + "./database/d1/helpers": { + "types": "./dist/types/database/d1/helpers.d.mts" + } + }, + "isInPackageManagerWorkspaces": true + } + }, + "targets": { + "check-types": { + "executor": "nx:run-script", + "options": { + "script": "check-types" + }, + "metadata": { + "scriptContent": "tsc --noEmit", + "runCommand": "pnpm run check-types" + }, + "configurations": {}, + "parallelism": true, + "cache": true + }, + "build": { + "executor": "nx:run-script", + "options": { + "script": "build" + }, + "metadata": { + "scriptContent": "bati-compile-boilerplate", + "runCommand": "pnpm run build" + }, + "configurations": {}, + "parallelism": true, + "cache": true, + "dependsOn": [ + "^build" + ], + "inputs": [ + "default", + "^default" + ], + "outputs": [ + "{projectRoot}/dist/**" + ] + } + }, + "implicitDependencies": [] + } + }, + "@batijs/h3": { + "name": "@batijs/h3", + "type": "lib", + "data": { + "root": "boilerplates/h3", + "name": "@batijs/h3", + "tags": [ + "npm:private", + "type:boilerplate" + ], + "metadata": { + "targetGroups": { + "NPM Scripts": [ + "check-types", + "build" + ] + }, + "description": "", + "js": { + "packageName": "@batijs/h3", + "packageVersion": "0.0.1", + "packageExports": { + "./server/entry": { + "types": "./dist/types/server/entry.d.mts" + } + }, + "isInPackageManagerWorkspaces": true + } + }, + "targets": { + "check-types": { + "executor": "nx:run-script", + "options": { + "script": "check-types" + }, + "metadata": { + "scriptContent": "tsc --noEmit", + "runCommand": "pnpm run check-types" + }, + "configurations": {}, + "parallelism": true, + "cache": true + }, + "build": { + "executor": "nx:run-script", + "options": { + "script": "build" + }, + "metadata": { + "scriptContent": "bati-compile-boilerplate", + "runCommand": "pnpm run build" + }, + "configurations": {}, + "parallelism": true, + "cache": true, + "dependsOn": [ + "^build" + ], + "inputs": [ + "default", + "^default" + ], + "outputs": [ + "{projectRoot}/dist/**" + ] + } + }, + "implicitDependencies": [] + } + }, + "batijs": { + "name": "batijs", + "type": "lib", + "data": { + "root": "packages/batijs", + "name": "batijs", + "tags": [ + "npm:private" + ], + "metadata": { + "targetGroups": {}, + "description": "Next-gen scaffolder. Get started with fully-functional apps, and choose any tool you want", + "js": { + "packageName": "batijs", + "packageVersion": "0.0.599", + "isInPackageManagerWorkspaces": true + } + }, + "targets": {}, + "implicitDependencies": [] + } + }, + "@batijs/build": { + "name": "@batijs/build", + "type": "lib", + "data": { + "root": "packages/build", + "name": "@batijs/build", + "tags": [ + "npm:public" + ], + "metadata": { + "targetGroups": { + "NPM Scripts": [ + "check-types", + "prepublishOnly", + "build" + ] + }, + "description": "", + "js": { + "packageName": "@batijs/build", + "packageVersion": "0.0.599", + "packageExports": { + ".": "./dist/index.js" + }, + "packageMain": "./dist/index.js", + "isInPackageManagerWorkspaces": true + } + }, + "targets": { + "check-types": { + "executor": "nx:run-script", + "options": { + "script": "check-types" + }, + "metadata": { + "scriptContent": "tsc --noEmit", + "runCommand": "pnpm run check-types" + }, + "configurations": {}, + "parallelism": true, + "cache": true + }, + "prepublishOnly": { + "executor": "nx:run-script", + "options": { + "script": "prepublishOnly" + }, + "metadata": { + "scriptContent": "pnpm run build", + "runCommand": "pnpm run prepublishOnly" + }, + "configurations": {}, + "parallelism": true + }, + "build": { + "executor": "nx:run-script", + "options": { + "script": "build" + }, + "metadata": { + "scriptContent": "tsdown", + "runCommand": "pnpm run build" + }, + "configurations": {}, + "parallelism": true, + "cache": true, + "dependsOn": [ + "^build" + ], + "inputs": [ + "default", + "^default" + ], + "outputs": [ + "{projectRoot}/dist/**" + ] + } + }, + "implicitDependencies": [] + } + }, + "@batijs/tests": { + "name": "@batijs/tests", + "type": "app", + "data": { + "root": "packages/tests", + "name": "@batijs/tests", + "tags": [ + "npm:private" + ], + "metadata": { + "targetGroups": { + "NPM Scripts": [ + "check-types", + "start", + "test", + "test:e2e", + "build" + ] + }, + "description": "Next-gen scaffolder. Get started with fully-functional apps, and choose any tool you want", + "js": { + "packageName": "@batijs/tests", + "packageVersion": "0.0.599", + "isInPackageManagerWorkspaces": true + } + }, + "targets": { + "check-types": { + "executor": "nx:run-script", + "options": { + "script": "check-types" + }, + "metadata": { + "scriptContent": "tsc --noEmit", + "runCommand": "pnpm run check-types" + }, + "configurations": {}, + "parallelism": true, + "cache": true + }, + "start": { + "executor": "nx:run-script", + "options": { + "script": "start" + }, + "metadata": { + "scriptContent": "tsx src/index.ts", + "runCommand": "pnpm run start" + }, + "configurations": {}, + "parallelism": true + }, + "test": { + "executor": "nx:run-script", + "options": { + "script": "test" + }, + "metadata": { + "scriptContent": "vitest run", + "runCommand": "pnpm run test" + }, + "configurations": {}, + "parallelism": true, + "cache": true, + "dependsOn": [ + "build" + ] + }, + "test:e2e": { + "executor": "nx:run-script", + "options": { + "script": "test:e2e" + }, + "metadata": { + "scriptContent": "tsx src/index.ts", + "runCommand": "pnpm run test:e2e" + }, + "configurations": {}, + "parallelism": true + }, + "build": { + "executor": "nx:run-script", + "options": { + "script": "build" + }, + "metadata": { + "scriptContent": "tsdown", + "runCommand": "pnpm run build" + }, + "configurations": {}, + "parallelism": true, + "cache": true, + "dependsOn": [ + "^build" + ], + "inputs": [ + "default", + "^default" + ], + "outputs": [ + "{projectRoot}/dist/**" + ] + } + }, + "implicitDependencies": [] + } + }, + "@batijs/core": { + "name": "@batijs/core", + "type": "lib", + "data": { + "root": "packages/core", + "name": "@batijs/core", + "tags": [ + "npm:public" + ], + "metadata": { + "targetGroups": { + "NPM Scripts": [ + "check-types", + "vue", + "test", + "test:ci", + "build" + ] + }, + "description": "", + "js": { + "packageName": "@batijs/core", + "packageVersion": "0.0.599", + "packageExports": { + ".": "./dist/index.js", + "./config": "./dist/config.js", + "./types": { + "types": "./global.d.ts" + } + }, + "isInPackageManagerWorkspaces": true + } + }, + "targets": { + "check-types": { + "executor": "nx:run-script", + "options": { + "script": "check-types" + }, + "metadata": { + "scriptContent": "tsc --noEmit", + "runCommand": "pnpm run check-types" + }, + "configurations": {}, + "parallelism": true, + "cache": true + }, + "vue": { + "executor": "nx:run-script", + "options": { + "script": "vue" + }, + "metadata": { + "scriptContent": "tsx src/parse/linters/vue.ts", + "runCommand": "pnpm run vue" + }, + "configurations": {}, + "parallelism": true + }, + "test": { + "executor": "nx:run-script", + "options": { + "script": "test" + }, + "metadata": { + "scriptContent": "vitest run", + "runCommand": "pnpm run test" + }, + "configurations": {}, + "parallelism": true, + "cache": true, + "dependsOn": [ + "build" + ] + }, + "test:ci": { + "executor": "nx:run-script", + "options": { + "script": "test:ci" + }, + "metadata": { + "scriptContent": "vitest run", + "runCommand": "pnpm run test:ci" + }, + "configurations": {}, + "parallelism": true + }, + "build": { + "executor": "nx:run-script", + "options": { + "script": "build" + }, + "metadata": { + "scriptContent": "tsdown", + "runCommand": "pnpm run build" + }, + "configurations": {}, + "parallelism": true, + "cache": true, + "dependsOn": [ + "^build" + ], + "inputs": [ + "default", + "^default" + ], + "outputs": [ + "{projectRoot}/dist/**" + ] + } + }, + "implicitDependencies": [] + } + }, + "@batijs/cli": { + "name": "@batijs/cli", + "type": "lib", + "data": { + "root": "packages/cli", + "name": "@batijs/cli", + "tags": [ + "npm:public" + ], + "metadata": { + "targetGroups": { + "NPM Scripts": [ + "check-types", + "prepublishOnly", + "build" + ] + }, + "description": "Next-gen scaffolder. Get started with fully-functional apps, and choose any tool you want", + "js": { + "packageName": "@batijs/cli", + "packageVersion": "0.0.599", + "packageExports": { + ".": "./cli.js" + }, + "isInPackageManagerWorkspaces": true + } + }, + "targets": { + "check-types": { + "executor": "nx:run-script", + "options": { + "script": "check-types" + }, + "metadata": { + "scriptContent": "tsc --noEmit", + "runCommand": "pnpm run check-types" + }, + "configurations": {}, + "parallelism": true, + "cache": true + }, + "prepublishOnly": { + "executor": "nx:run-script", + "options": { + "script": "prepublishOnly" + }, + "metadata": { + "scriptContent": "nx run-many --target=build", + "runCommand": "pnpm run prepublishOnly" + }, + "configurations": {}, + "parallelism": true + }, + "build": { + "executor": "nx:run-script", + "options": { + "script": "build" + }, + "metadata": { + "scriptContent": "tsdown", + "runCommand": "pnpm run build" + }, + "configurations": {}, + "parallelism": true, + "cache": true, + "dependsOn": [ + "^build" + ], + "inputs": [ + "default", + "^default" + ], + "outputs": [ + "{projectRoot}/dist/**" + ] + } + }, + "implicitDependencies": [ + "@batijs/auth0", + "@batijs/authjs", + "@batijs/aws", + "@batijs/biome", + "@batijs/cloudflare", + "@batijs/compiled", + "@batijs/d1", + "@batijs/d1-kysely", + "@batijs/d1-sqlite", + "@batijs/drizzle", + "@batijs/eslint", + "@batijs/express", + "@batijs/fastify", + "@batijs/google-analytics", + "@batijs/h3", + "@batijs/hono", + "@batijs/kysely", + "@batijs/mantine", + "@batijs/oxlint", + "@batijs/photon", + "@batijs/plausible.io", + "@batijs/pnpm", + "@batijs/prettier", + "@batijs/prisma", + "@batijs/react", + "@batijs/react-sentry", + "@batijs/sentry", + "@batijs/shadcn-ui", + "@batijs/shared", + "@batijs/shared-db", + "@batijs/shared-server", + "@batijs/shared-todo", + "@batijs/solid", + "@batijs/solid-sentry", + "@batijs/sqlite", + "@batijs/storybook", + "@batijs/tailwindcss", + "@batijs/telefunc", + "@batijs/trpc", + "@batijs/ts-rest", + "@batijs/vercel", + "@batijs/vue", + "@batijs/vue-sentry" + ] + } + }, + "@batijs/elements": { + "name": "@batijs/elements", + "type": "lib", + "data": { + "root": "website", + "name": "@batijs/elements", + "tags": [ + "npm:public", + "npm:bati", + "npm:batijs", + "npm:vike" + ], + "metadata": { + "targetGroups": { + "NPM Scripts": [ + "dev", + "dev:widget", + "build:pages", + "build:widget", + "preview:widget", + "check-types", + "test", + "release-widget", + "release-widget:ci" + ] + }, + "description": "BatiJS website as Web Components", + "js": { + "packageName": "@batijs/elements", + "packageVersion": "0.0.56", + "packageMain": "dist/elements/full.js", + "isInPackageManagerWorkspaces": true + } + }, + "targets": { + "dev": { + "executor": "nx:run-script", + "options": { + "script": "dev" + }, + "metadata": { + "scriptContent": "vike dev", + "runCommand": "pnpm run dev" + }, + "configurations": {}, + "parallelism": true + }, + "dev:widget": { + "executor": "nx:run-script", + "options": { + "script": "dev:widget" + }, + "metadata": { + "scriptContent": "vite dev --mode widget", + "runCommand": "pnpm run dev:widget" + }, + "configurations": {}, + "parallelism": true + }, + "build:pages": { + "executor": "nx:run-script", + "options": { + "script": "build:pages" + }, + "metadata": { + "scriptContent": "vike build", + "runCommand": "pnpm run build:pages" + }, + "configurations": {}, + "parallelism": true + }, + "build:widget": { + "executor": "nx:run-script", + "options": { + "script": "build:widget" + }, + "metadata": { + "scriptContent": "vite build --mode widget", + "runCommand": "pnpm run build:widget" + }, + "configurations": {}, + "parallelism": true + }, + "preview:widget": { + "executor": "nx:run-script", + "options": { + "script": "preview:widget" + }, + "metadata": { + "scriptContent": "http-server .", + "runCommand": "pnpm run preview:widget" + }, + "configurations": {}, + "parallelism": true + }, + "check-types": { + "executor": "nx:run-script", + "options": { + "script": "check-types" + }, + "metadata": { + "scriptContent": "tsc --noEmit", + "runCommand": "pnpm run check-types" + }, + "configurations": {}, + "parallelism": true, + "cache": true + }, + "test": { + "executor": "nx:run-script", + "options": { + "script": "test" + }, + "metadata": { + "scriptContent": "tsc --noEmit", + "runCommand": "pnpm run test" + }, + "configurations": {}, + "parallelism": true, + "cache": true, + "dependsOn": [ + "build" + ] + }, + "release-widget": { + "executor": "nx:run-script", + "options": { + "script": "release-widget" + }, + "metadata": { + "scriptContent": "bumpp --no-tag && pnpm run build:widget && pnpm publish", + "runCommand": "pnpm run release-widget" + }, + "configurations": {}, + "parallelism": true + }, + "release-widget:ci": { + "executor": "nx:run-script", + "options": { + "script": "release-widget:ci" + }, + "metadata": { + "scriptContent": "bumpp --no-tag -y && pnpm run build:widget && pnpm publish", + "runCommand": "pnpm run release-widget:ci" + }, + "configurations": {}, + "parallelism": true + } + }, + "implicitDependencies": [] + } + } + }, + "externalNodes": { + "npm:@auth/core": { + "type": "npm", + "name": "npm:@auth/core", + "data": { + "version": "0.41.1", + "packageName": "@auth/core", + "hash": "sha512-t9cJ2zNYAdWMacGRMT6+r4xr1uybIdmYa49calBPeTqwgAFPV/88ac9TEvCR85pvATiSPt8VaNf+Gt24JIT/uw==" + } + }, + "npm:@aws-cdk/asset-awscli-v1": { + "type": "npm", + "name": "npm:@aws-cdk/asset-awscli-v1", + "data": { + "version": "2.2.263", + "packageName": "@aws-cdk/asset-awscli-v1", + "hash": "sha512-X9JvcJhYcb7PHs8R7m4zMablO5C9PGb/hYfLnxds9h/rKJu6l7MiXE/SabCibuehxPnuO/vk+sVVJiUWrccarQ==" + } + }, + "npm:@aws-cdk/asset-node-proxy-agent-v6": { + "type": "npm", + "name": "npm:@aws-cdk/asset-node-proxy-agent-v6", + "data": { + "version": "2.1.1", + "packageName": "@aws-cdk/asset-node-proxy-agent-v6", + "hash": "sha512-We4bmHaowOPHr+IQR4/FyTGjRfjgBj4ICMjtqmJeBDWad3Q/6St12NT07leNtyuukv2qMhtSZJQorD8KpKTwRA==" + } + }, + "npm:@aws-cdk/cloud-assembly-schema": { + "type": "npm", + "name": "npm:@aws-cdk/cloud-assembly-schema", + "data": { + "version": "52.2.0", + "packageName": "@aws-cdk/cloud-assembly-schema", + "hash": "sha512-ourZjixQ/UfsZc7gdk3vt1eHBODMUjQTYYYCY3ZX8fiXyHtWNDAYZPrXUK96jpCC2fLP+tfHTJrBjZ563pmcEw==" + } + }, + "npm:@babel/code-frame": { + "type": "npm", + "name": "npm:@babel/code-frame", + "data": { + "version": "7.29.0", + "packageName": "@babel/code-frame", + "hash": "sha512-9NhCeYjq9+3uxgdtp20LSiJXJvN0FeCtNGpJxuMFZ1Kv3cWUNb6DOhJwUvcVCzKGR66cw4njwM6hrJLqgOwbcw==" + } + }, + "npm:@babel/compat-data": { + "type": "npm", + "name": "npm:@babel/compat-data", + "data": { + "version": "7.28.6", + "packageName": "@babel/compat-data", + "hash": "sha512-2lfu57JtzctfIrcGMz992hyLlByuzgIk58+hhGCxjKZ3rWI82NnVLjXcaTqkI2NvlcvOskZaiZ5kjUALo3Lpxg==" + } + }, + "npm:@babel/core": { + "type": "npm", + "name": "npm:@babel/core", + "data": { + "version": "7.29.0", + "packageName": "@babel/core", + "hash": "sha512-CGOfOJqWjg2qW/Mb6zNsDm+u5vFQ8DxXfbM09z69p5Z6+mE1ikP2jUXw+j42Pf1XTYED2Rni5f95npYeuwMDQA==" + } + }, + "npm:@babel/generator": { + "type": "npm", + "name": "npm:@babel/generator", + "data": { + "version": "7.29.0", + "packageName": "@babel/generator", + "hash": "sha512-vSH118/wwM/pLR38g/Sgk05sNtro6TlTJKuiMXDaZqPUfjTFcudpCOt00IhOfj+1BFAX+UFAlzCU+6WXr3GLFQ==" + } + }, + "npm:@babel/generator@8.0.0-rc.2": { + "type": "npm", + "name": "npm:@babel/generator@8.0.0-rc.2", + "data": { + "version": "8.0.0-rc.2", + "packageName": "@babel/generator", + "hash": "sha512-oCQ1IKPwkzCeJzAPb7Fv8rQ9k5+1sG8mf2uoHiMInPYvkRfrDJxbTIbH51U+jstlkghus0vAi3EBvkfvEsYNLQ==" + } + }, + "npm:@babel/helper-annotate-as-pure": { + "type": "npm", + "name": "npm:@babel/helper-annotate-as-pure", + "data": { + "version": "7.27.3", + "packageName": "@babel/helper-annotate-as-pure", + "hash": "sha512-fXSwMQqitTGeHLBC08Eq5yXz2m37E4pJX1qAU1+2cNedz/ifv/bVXft90VeSav5nFO61EcNgwr0aJxbyPaWBPg==" + } + }, + "npm:@babel/helper-compilation-targets": { + "type": "npm", + "name": "npm:@babel/helper-compilation-targets", + "data": { + "version": "7.28.6", + "packageName": "@babel/helper-compilation-targets", + "hash": "sha512-JYtls3hqi15fcx5GaSNL7SCTJ2MNmjrkHXg4FSpOA/grxK8KwyZ5bubHsCq8FXCkua6xhuaaBit+3b7+VZRfcA==" + } + }, + "npm:@babel/helper-globals": { + "type": "npm", + "name": "npm:@babel/helper-globals", + "data": { + "version": "7.28.0", + "packageName": "@babel/helper-globals", + "hash": "sha512-+W6cISkXFa1jXsDEdYA8HeevQT/FULhxzR99pxphltZcVaugps53THCeiWA8SguxxpSp3gKPiuYfSWopkLQ4hw==" + } + }, + "npm:@babel/helper-module-imports@7.18.6": { + "type": "npm", + "name": "npm:@babel/helper-module-imports@7.18.6", + "data": { + "version": "7.18.6", + "packageName": "@babel/helper-module-imports", + "hash": "sha512-0NFvs3VkuSYbFi1x2Vd6tKrywq+z/cLeYC/RJNFrIX/30Bf5aiGYbtvGXolEktzJH8o5E5KJ3tT+nkxuuZFVlA==" + } + }, + "npm:@babel/helper-module-imports": { + "type": "npm", + "name": "npm:@babel/helper-module-imports", + "data": { + "version": "7.28.6", + "packageName": "@babel/helper-module-imports", + "hash": "sha512-l5XkZK7r7wa9LucGw9LwZyyCUscb4x37JWTPz7swwFE/0FMQAGpiWUZn8u9DzkSBWEcK25jmvubfpw2dnAMdbw==" + } + }, + "npm:@babel/helper-module-transforms": { + "type": "npm", + "name": "npm:@babel/helper-module-transforms", + "data": { + "version": "7.28.6", + "packageName": "@babel/helper-module-transforms", + "hash": "sha512-67oXFAYr2cDLDVGLXTEABjdBJZ6drElUSI7WKp70NrpyISso3plG9SAGEF6y7zbha/wOzUByWWTJvEDVNIUGcA==" + } + }, + "npm:@babel/helper-plugin-utils": { + "type": "npm", + "name": "npm:@babel/helper-plugin-utils", + "data": { + "version": "7.28.6", + "packageName": "@babel/helper-plugin-utils", + "hash": "sha512-S9gzZ/bz83GRysI7gAD4wPT/AI3uCnY+9xn+Mx/KPs2JwHJIz1W8PZkg2cqyt3RNOBM8ejcXhV6y8Og7ly/Dug==" + } + }, + "npm:@babel/helper-string-parser": { + "type": "npm", + "name": "npm:@babel/helper-string-parser", + "data": { + "version": "7.27.1", + "packageName": "@babel/helper-string-parser", + "hash": "sha512-qMlSxKbpRlAridDExk92nSobyDdpPijUq2DW6oDnUqd0iOGxmQjyqhMIihI9+zv4LPyZdRje2cavWPbCbWm3eA==" + } + }, + "npm:@babel/helper-string-parser@8.0.0-rc.3": { + "type": "npm", + "name": "npm:@babel/helper-string-parser@8.0.0-rc.3", + "data": { + "version": "8.0.0-rc.3", + "packageName": "@babel/helper-string-parser", + "hash": "sha512-AmwWFx1m8G/a5cXkxLxTiWl+YEoWuoFLUCwqMlNuWO1tqAYITQAbCRPUkyBHv1VOFgfjVOqEj6L3u15J5ZCzTA==" + } + }, + "npm:@babel/helper-validator-identifier": { + "type": "npm", + "name": "npm:@babel/helper-validator-identifier", + "data": { + "version": "7.28.5", + "packageName": "@babel/helper-validator-identifier", + "hash": "sha512-qSs4ifwzKJSV39ucNjsvc6WVHs6b7S03sOh2OcHF9UHfVPqWWALUsNUVzhSBiItjRZoLHx7nIarVjqKVusUZ1Q==" + } + }, + "npm:@babel/helper-validator-identifier@8.0.0-rc.2": { + "type": "npm", + "name": "npm:@babel/helper-validator-identifier@8.0.0-rc.2", + "data": { + "version": "8.0.0-rc.2", + "packageName": "@babel/helper-validator-identifier", + "hash": "sha512-xExUBkuXWJjVuIbO7z6q7/BA9bgfJDEhVL0ggrggLMbg0IzCUWGT1hZGE8qUH7Il7/RD/a6cZ3AAFrrlp1LF/A==" + } + }, + "npm:@babel/helper-validator-option": { + "type": "npm", + "name": "npm:@babel/helper-validator-option", + "data": { + "version": "7.27.1", + "packageName": "@babel/helper-validator-option", + "hash": "sha512-YvjJow9FxbhFFKDSuFnVCe2WxXk1zWc22fFePVNEaWJEu8IrZVlda6N0uHwzZrUM1il7NC9Mlp4MaJYbYd9JSg==" + } + }, + "npm:@babel/helpers": { + "type": "npm", + "name": "npm:@babel/helpers", + "data": { + "version": "7.28.6", + "packageName": "@babel/helpers", + "hash": "sha512-xOBvwq86HHdB7WUDTfKfT/Vuxh7gElQ+Sfti2Cy6yIWNW05P8iUslOVcZ4/sKbE+/jQaukQAdz/gf3724kYdqw==" + } + }, + "npm:@babel/parser": { + "type": "npm", + "name": "npm:@babel/parser", + "data": { + "version": "7.29.0", + "packageName": "@babel/parser", + "hash": "sha512-IyDgFV5GeDUVX4YdF/3CPULtVGSXXMLh1xVIgdCgxApktqnQV0r7/8Nqthg+8YLGaAtdyIlo2qIdZrbCv4+7ww==" + } + }, + "npm:@babel/parser@8.0.0-rc.2": { + "type": "npm", + "name": "npm:@babel/parser@8.0.0-rc.2", + "data": { + "version": "8.0.0-rc.2", + "packageName": "@babel/parser", + "hash": "sha512-29AhEtcq4x8Dp3T72qvUMZHx0OMXCj4Jy/TEReQa+KWLln524Cj1fWb3QFi0l/xSpptQBR6y9RNEXuxpFvwiUQ==" + } + }, + "npm:@babel/plugin-syntax-flow": { + "type": "npm", + "name": "npm:@babel/plugin-syntax-flow", + "data": { + "version": "7.28.6", + "packageName": "@babel/plugin-syntax-flow", + "hash": "sha512-D+OrJumc9McXNEBI/JmFnc/0uCM2/Y3PEBG3gfV3QIYkKv5pvnpzFrl1kYCrcHJP8nOeFB/SHi1IHz29pNGuew==" + } + }, + "npm:@babel/plugin-syntax-jsx": { + "type": "npm", + "name": "npm:@babel/plugin-syntax-jsx", + "data": { + "version": "7.28.6", + "packageName": "@babel/plugin-syntax-jsx", + "hash": "sha512-wgEmr06G6sIpqr8YDwA2dSRTE3bJ+V0IfpzfSY3Lfgd7YWOaAdlykvJi13ZKBt8cZHfgH1IXN+CL656W3uUa4w==" + } + }, + "npm:@babel/plugin-transform-flow-strip-types": { + "type": "npm", + "name": "npm:@babel/plugin-transform-flow-strip-types", + "data": { + "version": "7.27.1", + "packageName": "@babel/plugin-transform-flow-strip-types", + "hash": "sha512-G5eDKsu50udECw7DL2AcsysXiQyB7Nfg521t2OAJ4tbfTJ27doHLeF/vlI1NZGlLdbb/v+ibvtL1YBQqYOwJGg==" + } + }, + "npm:@babel/plugin-transform-react-jsx": { + "type": "npm", + "name": "npm:@babel/plugin-transform-react-jsx", + "data": { + "version": "7.28.6", + "packageName": "@babel/plugin-transform-react-jsx", + "hash": "sha512-61bxqhiRfAACulXSLd/GxqmAedUSrRZIu/cbaT18T1CetkTmtDN15it7i80ru4DVqRK1WMxQhXs+Lf9kajm5Ow==" + } + }, + "npm:@babel/runtime": { + "type": "npm", + "name": "npm:@babel/runtime", + "data": { + "version": "7.28.4", + "packageName": "@babel/runtime", + "hash": "sha512-Q/N6JNWvIvPnLDvjlE1OUBLPQHH6l3CltCEsHIujp45zQUSSh8K+gHnaEX45yAT1nyngnINhvWtzN+Nb9D8RAQ==" + } + }, + "npm:@babel/template": { + "type": "npm", + "name": "npm:@babel/template", + "data": { + "version": "7.28.6", + "packageName": "@babel/template", + "hash": "sha512-YA6Ma2KsCdGb+WC6UpBVFJGXL58MDA6oyONbjyF/+5sBgxY/dwkhLogbMT2GXXyU84/IhRw/2D1Os1B/giz+BQ==" + } + }, + "npm:@babel/traverse": { + "type": "npm", + "name": "npm:@babel/traverse", + "data": { + "version": "7.29.0", + "packageName": "@babel/traverse", + "hash": "sha512-4HPiQr0X7+waHfyXPZpWPfWL/J7dcN1mx9gL6WdQVMbPnF3+ZhSMs8tCxN7oHddJE9fhNE7+lxdnlyemKfJRuA==" + } + }, + "npm:@babel/types": { + "type": "npm", + "name": "npm:@babel/types", + "data": { + "version": "7.29.0", + "packageName": "@babel/types", + "hash": "sha512-LwdZHpScM4Qz8Xw2iKSzS+cfglZzJGvofQICy7W7v4caru4EaAmyUuO6BGrbyQ2mYV11W0U8j5mBhd14dd3B0A==" + } + }, + "npm:@babel/types@8.0.0-rc.2": { + "type": "npm", + "name": "npm:@babel/types@8.0.0-rc.2", + "data": { + "version": "8.0.0-rc.2", + "packageName": "@babel/types", + "hash": "sha512-91gAaWRznDwSX4E2tZ1YjBuIfnQVOFDCQ2r0Toby0gu4XEbyF623kXLMA8d4ZbCu+fINcrudkmEcwSUHgDDkNw==" + } + }, + "npm:@batijs/compile": { + "type": "npm", + "name": "npm:@batijs/compile", + "data": { + "version": "file:packages/compile", + "packageName": "@batijs/compile", + "hash": "8949708989012550123" + } + }, + "npm:@biomejs/biome": { + "type": "npm", + "name": "npm:@biomejs/biome", + "data": { + "version": "2.4.8", + "packageName": "@biomejs/biome", + "hash": "sha512-ponn0oKOky1oRXBV+rlSaUlixUxf1aZvWC19Z41zBfUOUesthrQqL3OtiAlSB1EjFjyWpn98Q64DHelhA6jNlA==" + } + }, + "npm:@biomejs/cli-darwin-arm64": { + "type": "npm", + "name": "npm:@biomejs/cli-darwin-arm64", + "data": { + "version": "2.4.8", + "packageName": "@biomejs/cli-darwin-arm64", + "hash": "sha512-ARx0tECE8I7S2C2yjnWYLNbBdDoPdq3oyNLhMglmuctThwUsuzFWRKrHmIGwIRWKz0Mat9DuzLEDp52hGnrxGQ==" + } + }, + "npm:@biomejs/cli-darwin-x64": { + "type": "npm", + "name": "npm:@biomejs/cli-darwin-x64", + "data": { + "version": "2.4.8", + "packageName": "@biomejs/cli-darwin-x64", + "hash": "sha512-Jg9/PsB9vDCJlANE8uhG7qDhb5w0Ix69D7XIIc8IfZPUoiPrbLm33k2Ig3NOJ/7nb3UbesFz3D1aDKm9DvzjhQ==" + } + }, + "npm:@biomejs/cli-linux-arm64-musl": { + "type": "npm", + "name": "npm:@biomejs/cli-linux-arm64-musl", + "data": { + "version": "2.4.8", + "packageName": "@biomejs/cli-linux-arm64-musl", + "hash": "sha512-Zo9OhBQDJ3IBGPlqHiTISloo5H0+FBIpemqIJdW/0edJ+gEcLR+MZeZozcUyz3o1nXkVA7++DdRKQT0599j9jA==" + } + }, + "npm:@biomejs/cli-linux-arm64": { + "type": "npm", + "name": "npm:@biomejs/cli-linux-arm64", + "data": { + "version": "2.4.8", + "packageName": "@biomejs/cli-linux-arm64", + "hash": "sha512-5CdrsJct76XG2hpKFwXnEtlT1p+4g4yV+XvvwBpzKsTNLO9c6iLlAxwcae2BJ7ekPGWjNGw9j09T5KGPKKxQig==" + } + }, + "npm:@biomejs/cli-linux-x64-musl": { + "type": "npm", + "name": "npm:@biomejs/cli-linux-x64-musl", + "data": { + "version": "2.4.8", + "packageName": "@biomejs/cli-linux-x64-musl", + "hash": "sha512-Gi8quv8MEuDdKaPFtS2XjEnMqODPsRg6POT6KhoP+VrkNb+T2ywunVB+TvOU0LX1jAZzfBr+3V1mIbBhzAMKvw==" + } + }, + "npm:@biomejs/cli-linux-x64": { + "type": "npm", + "name": "npm:@biomejs/cli-linux-x64", + "data": { + "version": "2.4.8", + "packageName": "@biomejs/cli-linux-x64", + "hash": "sha512-PdKXspVEaMCQLjtZCn6vfSck/li4KX9KGwSDbZdgIqlrizJ2MnMcE3TvHa2tVfXNmbjMikzcfJpuPWH695yJrw==" + } + }, + "npm:@biomejs/cli-win32-arm64": { + "type": "npm", + "name": "npm:@biomejs/cli-win32-arm64", + "data": { + "version": "2.4.8", + "packageName": "@biomejs/cli-win32-arm64", + "hash": "sha512-LoFatS0tnHv6KkCVpIy3qZCih+MxUMvdYiPWLHRri7mhi2vyOOs8OrbZBcLTUEWCS+ktO72nZMy4F96oMhkOHQ==" + } + }, + "npm:@biomejs/cli-win32-x64": { + "type": "npm", + "name": "npm:@biomejs/cli-win32-x64", + "data": { + "version": "2.4.8", + "packageName": "@biomejs/cli-win32-x64", + "hash": "sha512-vAn7iXDoUbqFXqVocuq1sMYAd33p8+mmurqJkWl6CtIhobd/O6moe4rY5AJvzbunn/qZCdiDVcveqtkFh1e7Hg==" + } + }, + "npm:@biomejs/wasm-nodejs": { + "type": "npm", + "name": "npm:@biomejs/wasm-nodejs", + "data": { + "version": "2.4.8", + "packageName": "@biomejs/wasm-nodejs", + "hash": "sha512-pTfObtbrSfifZqdEE75EQc6R6ZZ3K3dtuS4KqOsmOYz9on8b5RXpXEYRp/VR0MQ5NzRBk4UteKL8PMT4GKHHnw==" + } + }, + "npm:@brillout/import": { + "type": "npm", + "name": "npm:@brillout/import", + "data": { + "version": "0.2.6", + "packageName": "@brillout/import", + "hash": "sha512-1GUTmADc8trUC1YSW2lp9r6PmwluMoEyHajnE1kxVdbKGD0wJOlq/DvTWMUqLtBDCnQR+n//qgMtz6HwA/lotA==" + } + }, + "npm:@brillout/json-serializer": { + "type": "npm", + "name": "npm:@brillout/json-serializer", + "data": { + "version": "0.5.22", + "packageName": "@brillout/json-serializer", + "hash": "sha512-jzcOqcbysKICCeZNlwa755tffF+HfMj8G+ZSuvHe06aCpp4xQiU2D91RHFUeJpF0/RNyfa5uWZ0pRuvFoeoqow==" + } + }, + "npm:@brillout/libassert": { + "type": "npm", + "name": "npm:@brillout/libassert", + "data": { + "version": "0.5.8", + "packageName": "@brillout/libassert", + "hash": "sha512-u/fu+jTRUdNdbLONGq1plCfh+k2/XjSbGVTfnF3rHnSPZd+ABWp0XinR5ifrFkyGOzMbzv8IiQ44lZ4U6ZGrGA==" + } + }, + "npm:@brillout/picocolors": { + "type": "npm", + "name": "npm:@brillout/picocolors", + "data": { + "version": "1.0.30", + "packageName": "@brillout/picocolors", + "hash": "sha512-xJjdgyN1H0qh2nB2xlzazIipiDixuUd9oD5msh/Qv5bXJG9j8MSD/m4lREt6Z10ej6FF31b8vB4tdT7lDUbiyA==" + } + }, + "npm:@brillout/vite-plugin-server-entry": { + "type": "npm", + "name": "npm:@brillout/vite-plugin-server-entry", + "data": { + "version": "0.7.18", + "packageName": "@brillout/vite-plugin-server-entry", + "hash": "sha512-j3neG+vaIZ2AbP2/vGgaIyJwrFIxlK3xd3Ey2EGBswCvAGeI4QSSfXGbb7R3b3H8223PgTTsWOZuZH0Y8Ope2w==" + } + }, + "npm:@browserless/devices": { + "type": "npm", + "name": "npm:@browserless/devices", + "data": { + "version": "10.11.3", + "packageName": "@browserless/devices", + "hash": "sha512-EodVNBa9yLoR18gyuOeLiGRislxDmMLDF0GId9y0cei6lfUE4kW98RtdZwfMul+tVfffpyXK5/SYNbNO+33m5w==" + } + }, + "npm:@browserless/errors": { + "type": "npm", + "name": "npm:@browserless/errors", + "data": { + "version": "10.12.1", + "packageName": "@browserless/errors", + "hash": "sha512-qqbUbNeAFhCNihc4ZxYXKnBGfTP6+ZxqhhapVQz/BRwcEWnBlD6MT9Dgo5Anp7+CBKwWW4TQvkaa294LuuryYQ==" + } + }, + "npm:@browserless/goto": { + "type": "npm", + "name": "npm:@browserless/goto", + "data": { + "version": "10.11.4", + "packageName": "@browserless/goto", + "hash": "sha512-Cpf78Nc8xA6pJa1Jm6dH+uvpEklkkkkG/qYoi2pLK6Zfmv2H6RnirE/S3CSTnKMf97jtCd/JiCOJW3bX9M0bRA==" + } + }, + "npm:@browserless/pdf": { + "type": "npm", + "name": "npm:@browserless/pdf", + "data": { + "version": "10.12.5", + "packageName": "@browserless/pdf", + "hash": "sha512-dCLzs7q+G+17c942tjm1ZqjmLc8hoB/+ruDQjmHK1ERHd+2fKsanbCOAfV7wiBKChWKToldsG9STMV8ixGow1A==" + } + }, + "npm:@browserless/screenshot": { + "type": "npm", + "name": "npm:@browserless/screenshot", + "data": { + "version": "10.12.5", + "packageName": "@browserless/screenshot", + "hash": "sha512-9MtpHCFe1t9zaQY+kHuknpCQLYm85R/qNjgz/dNSWEjqN1PDpqnpeZqdFwdAnM1++6dpW85EYFIkyI6vpBHl3g==" + } + }, + "npm:@chevrotain/cst-dts-gen": { + "type": "npm", + "name": "npm:@chevrotain/cst-dts-gen", + "data": { + "version": "10.5.0", + "packageName": "@chevrotain/cst-dts-gen", + "hash": "sha512-lhmC/FyqQ2o7pGK4Om+hzuDrm9rhFYIJ/AXoQBeongmn870Xeb0L6oGEiuR8nohFNL5sMaQEJWCxr1oIVIVXrw==" + } + }, + "npm:@chevrotain/gast": { + "type": "npm", + "name": "npm:@chevrotain/gast", + "data": { + "version": "10.5.0", + "packageName": "@chevrotain/gast", + "hash": "sha512-pXdMJ9XeDAbgOWKuD1Fldz4ieCs6+nLNmyVhe2gZVqoO7v8HXuHYs5OV2EzUtbuai37TlOAQHrTDvxMnvMJz3A==" + } + }, + "npm:@chevrotain/types": { + "type": "npm", + "name": "npm:@chevrotain/types", + "data": { + "version": "10.5.0", + "packageName": "@chevrotain/types", + "hash": "sha512-f1MAia0x/pAVPWH/T73BJVyO2XU5tI4/iE7cnxb7tqdNTNhQI3Uq3XkqcoteTmD4t1aM0LbHCJOhgIDn07kl2A==" + } + }, + "npm:@chevrotain/utils": { + "type": "npm", + "name": "npm:@chevrotain/utils", + "data": { + "version": "10.5.0", + "packageName": "@chevrotain/utils", + "hash": "sha512-hBzuU5+JjB2cqNZyszkDHZgOSrUUT8V3dhgRl8Q9Gp6dAj/H5+KILGjbhDpc3Iy9qmqlm/akuOI2ut9VUtzJxQ==" + } + }, + "npm:@cloudflare/kv-asset-handler": { + "type": "npm", + "name": "npm:@cloudflare/kv-asset-handler", + "data": { + "version": "0.4.2", + "packageName": "@cloudflare/kv-asset-handler", + "hash": "sha512-SIOD2DxrRRwQ+jgzlXCqoEFiKOFqaPjhnNTGKXSRLvp1HiOvapLaFG2kEr9dYQTYe8rKrd9uvDUzmAITeNyaHQ==" + } + }, + "npm:@cloudflare/unenv-preset": { + "type": "npm", + "name": "npm:@cloudflare/unenv-preset", + "data": { + "version": "2.16.0", + "packageName": "@cloudflare/unenv-preset", + "hash": "sha512-8ovsRpwzPoEqPUzoErAYVv8l3FMZNeBVQfJTvtzP4AgLSRGZISRfuChFxHWUQd3n6cnrwkuTGxT+2cGo8EsyYg==" + } + }, + "npm:@cloudflare/unenv-preset@2.7.13": { + "type": "npm", + "name": "npm:@cloudflare/unenv-preset@2.7.13", + "data": { + "version": "2.7.13", + "packageName": "@cloudflare/unenv-preset", + "hash": "sha512-NulO1H8R/DzsJguLC0ndMuk4Ufv0KSlN+E54ay9rn9ZCQo0kpAPwwh3LhgpZ96a3Dr6L9LqW57M4CqC34iLOvw==" + } + }, + "npm:@cloudflare/vite-plugin": { + "type": "npm", + "name": "npm:@cloudflare/vite-plugin", + "data": { + "version": "1.19.0", + "packageName": "@cloudflare/vite-plugin", + "hash": "sha512-5WpXYB7vwLnqlMyGSrPOO0nKynbn/nA33VXRPQg3II7q3T/3GOACYq/pnv9WBfcq4OnTdehJFm72Zn+psfhBXQ==" + } + }, + "npm:@cloudflare/workerd-darwin-64@1.20251217.0": { + "type": "npm", + "name": "npm:@cloudflare/workerd-darwin-64@1.20251217.0", + "data": { + "version": "1.20251217.0", + "packageName": "@cloudflare/workerd-darwin-64", + "hash": "sha512-DN6vT+9ho61d/1/YuILW4VS+N1JBLaixWRL1vqNmhgbf8J8VHwWWotrRruEUYigJKx2yZyw6YsasE+yLXgx/Fw==" + } + }, + "npm:@cloudflare/workerd-darwin-64@1.20260317.1": { + "type": "npm", + "name": "npm:@cloudflare/workerd-darwin-64@1.20260317.1", + "data": { + "version": "1.20260317.1", + "packageName": "@cloudflare/workerd-darwin-64", + "hash": "sha512-8hjh3sPMwY8M/zedq3/sXoA2Q4BedlGufn3KOOleIG+5a4ReQKLlUah140D7J6zlKmYZAFMJ4tWC7hCuI/s79g==" + } + }, + "npm:@cloudflare/workerd-darwin-arm64@1.20251217.0": { + "type": "npm", + "name": "npm:@cloudflare/workerd-darwin-arm64@1.20251217.0", + "data": { + "version": "1.20251217.0", + "packageName": "@cloudflare/workerd-darwin-arm64", + "hash": "sha512-5nZOpRTkHmtcTc4Wbr1mj/O3dLb6aHZSiJuVBgtdbVcVmOXueSay3hnw1PXEyR+vpTKGUPkM+omUIslKHWnXDw==" + } + }, + "npm:@cloudflare/workerd-darwin-arm64@1.20260317.1": { + "type": "npm", + "name": "npm:@cloudflare/workerd-darwin-arm64@1.20260317.1", + "data": { + "version": "1.20260317.1", + "packageName": "@cloudflare/workerd-darwin-arm64", + "hash": "sha512-M/MnNyvO5HMgoIdr3QHjdCj2T1ki9gt0vIUnxYxBu9ISXS/jgtMl6chUVPJ7zHYBn9MyYr8ByeN6frjYxj0MGg==" + } + }, + "npm:@cloudflare/workerd-linux-64@1.20251217.0": { + "type": "npm", + "name": "npm:@cloudflare/workerd-linux-64@1.20251217.0", + "data": { + "version": "1.20251217.0", + "packageName": "@cloudflare/workerd-linux-64", + "hash": "sha512-uoPGhMaZVXPpCsU0oG3HQzyVpXCGi5rU+jcHRjUI7DXM4EwctBGvZ380Knkja36qtl+ZvSKVR1pUFSGdK+45Pg==" + } + }, + "npm:@cloudflare/workerd-linux-64": { + "type": "npm", + "name": "npm:@cloudflare/workerd-linux-64", + "data": { + "version": "1.20260317.1", + "packageName": "@cloudflare/workerd-linux-64", + "hash": "sha512-1ltuEjkRcS3fsVF7CxsKlWiRmzq2ZqMfqDN0qUOgbUwkpXsLVJsXmoblaLf5OP00ELlcgF0QsN0p2xPEua4Uug==" + } + }, + "npm:@cloudflare/workerd-linux-arm64@1.20251217.0": { + "type": "npm", + "name": "npm:@cloudflare/workerd-linux-arm64@1.20251217.0", + "data": { + "version": "1.20251217.0", + "packageName": "@cloudflare/workerd-linux-arm64", + "hash": "sha512-ixHnHKsiz1Xko+eDgCJOZ7EEUZKtmnYq3AjW3nkVcLFypSLks4C29E45zVewdaN4wq8sCLeyQCl6r1kS17+DQQ==" + } + }, + "npm:@cloudflare/workerd-linux-arm64@1.20260317.1": { + "type": "npm", + "name": "npm:@cloudflare/workerd-linux-arm64@1.20260317.1", + "data": { + "version": "1.20260317.1", + "packageName": "@cloudflare/workerd-linux-arm64", + "hash": "sha512-3QrNnPF1xlaNwkHpasvRvAMidOvQs2NhXQmALJrEfpIJ/IDL2la8g499yXp3eqhG3hVMCB07XVY149GTs42Xtw==" + } + }, + "npm:@cloudflare/workerd-windows-64@1.20251217.0": { + "type": "npm", + "name": "npm:@cloudflare/workerd-windows-64@1.20251217.0", + "data": { + "version": "1.20251217.0", + "packageName": "@cloudflare/workerd-windows-64", + "hash": "sha512-rP6USX+7ctynz3AtmKi+EvlLP3Xdr1ETrSdcnv693/I5QdUwBxq4yE1Lj6CV7GJizX6opXKYg8QMq0Q4eB9zRQ==" + } + }, + "npm:@cloudflare/workerd-windows-64@1.20260317.1": { + "type": "npm", + "name": "npm:@cloudflare/workerd-windows-64@1.20260317.1", + "data": { + "version": "1.20260317.1", + "packageName": "@cloudflare/workerd-windows-64", + "hash": "sha512-MfZTz+7LfuIpMGTa3RLXHX8Z/pnycZLItn94WRdHr8LPVet+C5/1Nzei399w/jr3+kzT4pDKk26JF/tlI5elpQ==" + } + }, + "npm:@cloudflare/workers-types": { + "type": "npm", + "name": "npm:@cloudflare/workers-types", + "data": { + "version": "4.20260317.1", + "packageName": "@cloudflare/workers-types", + "hash": "sha512-+G4eVwyCpm8Au1ex8vQBCuA9wnwqetz4tPNRoB/53qvktERWBRMQnrtvC1k584yRE3emMThtuY0gWshvSJ++PQ==" + } + }, + "npm:@compiled/babel-plugin-strip-runtime": { + "type": "npm", + "name": "npm:@compiled/babel-plugin-strip-runtime", + "data": { + "version": "0.37.1", + "packageName": "@compiled/babel-plugin-strip-runtime", + "hash": "sha512-GESC3QXGhLd5ULzAre8NvbFmrICqD/lUX4VBse00VZmSeMDgbMMetPwFn9mfPdwiUj9tLXNTVswJzyT3OWYwtA==" + } + }, + "npm:@compiled/babel-plugin": { + "type": "npm", + "name": "npm:@compiled/babel-plugin", + "data": { + "version": "0.37.1", + "packageName": "@compiled/babel-plugin", + "hash": "sha512-lZUBJnySZlOHq16EnAUqnmz0EfOkoeclpH1nXZzs4aCJN7NOosnr2UPLbJtAsPuNJ1P2zstMSDGntMKhKOcA8w==" + } + }, + "npm:@compiled/css": { + "type": "npm", + "name": "npm:@compiled/css", + "data": { + "version": "0.20.0", + "packageName": "@compiled/css", + "hash": "sha512-cgRIqM+VWrwiG2S6b9DMkKm9bO5zG8ZMWvU6MNoKzQtkOPFFQ/jU4McN+4ilahHoJxUlHhLE8NoF0qL2UwzH4w==" + } + }, + "npm:@compiled/react": { + "type": "npm", + "name": "npm:@compiled/react", + "data": { + "version": "0.20.0", + "packageName": "@compiled/react", + "hash": "sha512-mEJuYGFxIDST1H7CpksyE6a3HRVRQmeDal26O+bCHTEZlPp7iKvs5KD1FOmd2palng+S60dPFFG+UuoZDRILwA==" + } + }, + "npm:@compiled/utils": { + "type": "npm", + "name": "npm:@compiled/utils", + "data": { + "version": "0.13.2", + "packageName": "@compiled/utils", + "hash": "sha512-UZZv/P+pKN78BSvyu8lHO18sYS2XC1qB/Afi9ggol0wAJFY8eWrAoLvWzXDC6Pt495KOLqUX6HpWXQPyGF9ojA==" + } + }, + "npm:@cspotcode/source-map-support": { + "type": "npm", + "name": "npm:@cspotcode/source-map-support", + "data": { + "version": "0.8.1", + "packageName": "@cspotcode/source-map-support", + "hash": "sha512-IchNf6dN4tHoMFIn/7OE8LWZ19Y6q/67Bmf6vnGREv8RSbBVb9LPJxEcnwrcwX6ixSvaiGoomAUvu4YSxXrVgw==" + } + }, + "npm:@drizzle-team/brocli": { + "type": "npm", + "name": "npm:@drizzle-team/brocli", + "data": { + "version": "0.10.2", + "packageName": "@drizzle-team/brocli", + "hash": "sha512-z33Il7l5dKjUgGULTqBsQBQwckHh5AbIuxhdsIxDDiZAzBOrZO6q9ogcWC65kU382AfynTfgNumVcNIjuIua6w==" + } + }, + "npm:@duckduckgo/autoconsent": { + "type": "npm", + "name": "npm:@duckduckgo/autoconsent", + "data": { + "version": "14.56.0", + "packageName": "@duckduckgo/autoconsent", + "hash": "sha512-0gImNtILoEb4LtQkCXJ7pjwqV3lY4IG7sm9y+cbB218MqKKoMJ/zht9UEI0bJ2J2IZZ0GEcLQE9TsQ3AISFZ5Q==" + } + }, + "npm:@electric-sql/pglite-socket": { + "type": "npm", + "name": "npm:@electric-sql/pglite-socket", + "data": { + "version": "0.0.20", + "packageName": "@electric-sql/pglite-socket", + "hash": "sha512-J5nLGsicnD9wJHnno9r+DGxfcZWh+YJMCe0q/aCgtG6XOm9Z7fKeite8IZSNXgZeGltSigM9U/vAWZQWdgcSFg==" + } + }, + "npm:@electric-sql/pglite-tools": { + "type": "npm", + "name": "npm:@electric-sql/pglite-tools", + "data": { + "version": "0.2.20", + "packageName": "@electric-sql/pglite-tools", + "hash": "sha512-BK50ZnYa3IG7ztXhtgYf0Q7zijV32Iw1cYS8C+ThdQlwx12V5VZ9KRJ42y82Hyb4PkTxZQklVQA9JHyUlex33A==" + } + }, + "npm:@electric-sql/pglite": { + "type": "npm", + "name": "npm:@electric-sql/pglite", + "data": { + "version": "0.3.15", + "packageName": "@electric-sql/pglite", + "hash": "sha512-Cj++n1Mekf9ETfdc16TlDi+cDDQF0W7EcbyRHYOAeZdsAe8M/FJg18itDTSwyHfar2WIezawM9o0EKaRGVKygQ==" + } + }, + "npm:@emnapi/core": { + "type": "npm", + "name": "npm:@emnapi/core", + "data": { + "version": "1.7.1", + "packageName": "@emnapi/core", + "hash": "sha512-o1uhUASyo921r2XtHYOHy7gdkGLge8ghBEQHMWmyJFoXlpU58kIrhhN3w26lpQb6dspetweapMn2CSNwQ8I4wg==" + } + }, + "npm:@emnapi/runtime": { + "type": "npm", + "name": "npm:@emnapi/runtime", + "data": { + "version": "1.7.1", + "packageName": "@emnapi/runtime", + "hash": "sha512-PVtJr5CmLwYAU9PZDMITZoR5iAOShYREoR45EyyLrbntV50mdePTgUn4AmOw90Ifcj+x2kRjdzr1HP3RrNiHGA==" + } + }, + "npm:@emnapi/wasi-threads": { + "type": "npm", + "name": "npm:@emnapi/wasi-threads", + "data": { + "version": "1.1.0", + "packageName": "@emnapi/wasi-threads", + "hash": "sha512-WI0DdZ8xFSbgMjR1sFsKABJ/C5OnRrjT06JXbZKexJGrDuPTzZdDYfFlsgcCXCyf+suG5QU2e/y1Wo2V/OapLQ==" + } + }, + "npm:@emotion/is-prop-valid": { + "type": "npm", + "name": "npm:@emotion/is-prop-valid", + "data": { + "version": "1.4.0", + "packageName": "@emotion/is-prop-valid", + "hash": "sha512-QgD4fyscGcbbKwJmqNvUMSE02OsHUa+lAWKdEUIJKgqe5IwRSKd7+KhibEWdaKwgjLj0DRSHA9biAIqGBk05lw==" + } + }, + "npm:@emotion/memoize": { + "type": "npm", + "name": "npm:@emotion/memoize", + "data": { + "version": "0.9.0", + "packageName": "@emotion/memoize", + "hash": "sha512-30FAj7/EoJ5mwVPOWhAyCX+FPfMDrVecJAM+Iw9NRoSl4BBAQeqj4cApHHUXOVvIPgLVDsCFoz/hGD+5QQD1GQ==" + } + }, + "npm:@esbuild-kit/core-utils": { + "type": "npm", + "name": "npm:@esbuild-kit/core-utils", + "data": { + "version": "3.3.2", + "packageName": "@esbuild-kit/core-utils", + "hash": "sha512-sPRAnw9CdSsRmEtnsl2WXWdyquogVpB3yZ3dgwJfe8zrOzTsV7cJvmwrKVa+0ma5BoiGJ+BoqkMvawbayKUsqQ==" + } + }, + "npm:@esbuild-kit/esm-loader": { + "type": "npm", + "name": "npm:@esbuild-kit/esm-loader", + "data": { + "version": "2.6.5", + "packageName": "@esbuild-kit/esm-loader", + "hash": "sha512-FxEMIkJKnodyA1OaCUoEvbYRkoZlLZ4d/eXFu9Fh8CbBBgP5EmZxrfTRyN0qpXZ4vOvqnE5YdRdcrmUUXuU+dA==" + } + }, + "npm:@esbuild/aix-ppc64@0.25.12": { + "type": "npm", + "name": "npm:@esbuild/aix-ppc64@0.25.12", + "data": { + "version": "0.25.12", + "packageName": "@esbuild/aix-ppc64", + "hash": "sha512-Hhmwd6CInZ3dwpuGTF8fJG6yoWmsToE+vYgD4nytZVxcu1ulHpUQRAB1UJ8+N1Am3Mz4+xOByoQoSZf4D+CpkA==" + } + }, + "npm:@esbuild/aix-ppc64@0.27.3": { + "type": "npm", + "name": "npm:@esbuild/aix-ppc64@0.27.3", + "data": { + "version": "0.27.3", + "packageName": "@esbuild/aix-ppc64", + "hash": "sha512-9fJMTNFTWZMh5qwrBItuziu834eOCUcEqymSH7pY+zoMVEZg3gcPuBNxH1EvfVYe9h0x/Ptw8KBzv7qxb7l8dg==" + } + }, + "npm:@esbuild/aix-ppc64@0.27.4": { + "type": "npm", + "name": "npm:@esbuild/aix-ppc64@0.27.4", + "data": { + "version": "0.27.4", + "packageName": "@esbuild/aix-ppc64", + "hash": "sha512-cQPwL2mp2nSmHHJlCyoXgHGhbEPMrEEU5xhkcy3Hs/O7nGZqEpZ2sUtLaL9MORLtDfRvVl2/3PAuEkYZH0Ty8Q==" + } + }, + "npm:@esbuild/android-arm64@0.18.20": { + "type": "npm", + "name": "npm:@esbuild/android-arm64@0.18.20", + "data": { + "version": "0.18.20", + "packageName": "@esbuild/android-arm64", + "hash": "sha512-Nz4rJcchGDtENV0eMKUNa6L12zz2zBDXuhj/Vjh18zGqB44Bi7MBMSXjgunJgjRhCmKOjnPuZp4Mb6OKqtMHLQ==" + } + }, + "npm:@esbuild/android-arm64@0.25.12": { + "type": "npm", + "name": "npm:@esbuild/android-arm64@0.25.12", + "data": { + "version": "0.25.12", + "packageName": "@esbuild/android-arm64", + "hash": "sha512-6AAmLG7zwD1Z159jCKPvAxZd4y/VTO0VkprYy+3N2FtJ8+BQWFXU+OxARIwA46c5tdD9SsKGZ/1ocqBS/gAKHg==" + } + }, + "npm:@esbuild/android-arm64@0.27.3": { + "type": "npm", + "name": "npm:@esbuild/android-arm64@0.27.3", + "data": { + "version": "0.27.3", + "packageName": "@esbuild/android-arm64", + "hash": "sha512-YdghPYUmj/FX2SYKJ0OZxf+iaKgMsKHVPF1MAq/P8WirnSpCStzKJFjOjzsW0QQ7oIAiccHdcqjbHmJxRb/dmg==" + } + }, + "npm:@esbuild/android-arm64@0.27.4": { + "type": "npm", + "name": "npm:@esbuild/android-arm64@0.27.4", + "data": { + "version": "0.27.4", + "packageName": "@esbuild/android-arm64", + "hash": "sha512-gdLscB7v75wRfu7QSm/zg6Rx29VLdy9eTr2t44sfTW7CxwAtQghZ4ZnqHk3/ogz7xao0QAgrkradbBzcqFPasw==" + } + }, + "npm:@esbuild/android-arm@0.18.20": { + "type": "npm", + "name": "npm:@esbuild/android-arm@0.18.20", + "data": { + "version": "0.18.20", + "packageName": "@esbuild/android-arm", + "hash": "sha512-fyi7TDI/ijKKNZTUJAQqiG5T7YjJXgnzkURqmGj13C6dCqckZBLdl4h7bkhHt/t0WP+zO9/zwroDvANaOqO5Sw==" + } + }, + "npm:@esbuild/android-arm@0.25.12": { + "type": "npm", + "name": "npm:@esbuild/android-arm@0.25.12", + "data": { + "version": "0.25.12", + "packageName": "@esbuild/android-arm", + "hash": "sha512-VJ+sKvNA/GE7Ccacc9Cha7bpS8nyzVv0jdVgwNDaR4gDMC/2TTRc33Ip8qrNYUcpkOHUT5OZ0bUcNNVZQ9RLlg==" + } + }, + "npm:@esbuild/android-arm@0.27.3": { + "type": "npm", + "name": "npm:@esbuild/android-arm@0.27.3", + "data": { + "version": "0.27.3", + "packageName": "@esbuild/android-arm", + "hash": "sha512-i5D1hPY7GIQmXlXhs2w8AWHhenb00+GxjxRncS2ZM7YNVGNfaMxgzSGuO8o8SJzRc/oZwU2bcScvVERk03QhzA==" + } + }, + "npm:@esbuild/android-arm@0.27.4": { + "type": "npm", + "name": "npm:@esbuild/android-arm@0.27.4", + "data": { + "version": "0.27.4", + "packageName": "@esbuild/android-arm", + "hash": "sha512-X9bUgvxiC8CHAGKYufLIHGXPJWnr0OCdR0anD2e21vdvgCI8lIfqFbnoeOz7lBjdrAGUhqLZLcQo6MLhTO2DKQ==" + } + }, + "npm:@esbuild/android-x64@0.18.20": { + "type": "npm", + "name": "npm:@esbuild/android-x64@0.18.20", + "data": { + "version": "0.18.20", + "packageName": "@esbuild/android-x64", + "hash": "sha512-8GDdlePJA8D6zlZYJV/jnrRAi6rOiNaCC/JclcXpB+KIuvfBN4owLtgzY2bsxnx666XjJx2kDPUmnTtR8qKQUg==" + } + }, + "npm:@esbuild/android-x64@0.25.12": { + "type": "npm", + "name": "npm:@esbuild/android-x64@0.25.12", + "data": { + "version": "0.25.12", + "packageName": "@esbuild/android-x64", + "hash": "sha512-5jbb+2hhDHx5phYR2By8GTWEzn6I9UqR11Kwf22iKbNpYrsmRB18aX/9ivc5cabcUiAT/wM+YIZ6SG9QO6a8kg==" + } + }, + "npm:@esbuild/android-x64@0.27.3": { + "type": "npm", + "name": "npm:@esbuild/android-x64@0.27.3", + "data": { + "version": "0.27.3", + "packageName": "@esbuild/android-x64", + "hash": "sha512-IN/0BNTkHtk8lkOM8JWAYFg4ORxBkZQf9zXiEOfERX/CzxW3Vg1ewAhU7QSWQpVIzTW+b8Xy+lGzdYXV6UZObQ==" + } + }, + "npm:@esbuild/android-x64@0.27.4": { + "type": "npm", + "name": "npm:@esbuild/android-x64@0.27.4", + "data": { + "version": "0.27.4", + "packageName": "@esbuild/android-x64", + "hash": "sha512-PzPFnBNVF292sfpfhiyiXCGSn9HZg5BcAz+ivBuSsl6Rk4ga1oEXAamhOXRFyMcjwr2DVtm40G65N3GLeH1Lvw==" + } + }, + "npm:@esbuild/darwin-arm64@0.18.20": { + "type": "npm", + "name": "npm:@esbuild/darwin-arm64@0.18.20", + "data": { + "version": "0.18.20", + "packageName": "@esbuild/darwin-arm64", + "hash": "sha512-bxRHW5kHU38zS2lPTPOyuyTm+S+eobPUnTNkdJEfAddYgEcll4xkT8DB9d2008DtTbl7uJag2HuE5NZAZgnNEA==" + } + }, + "npm:@esbuild/darwin-arm64@0.25.12": { + "type": "npm", + "name": "npm:@esbuild/darwin-arm64@0.25.12", + "data": { + "version": "0.25.12", + "packageName": "@esbuild/darwin-arm64", + "hash": "sha512-N3zl+lxHCifgIlcMUP5016ESkeQjLj/959RxxNYIthIg+CQHInujFuXeWbWMgnTo4cp5XVHqFPmpyu9J65C1Yg==" + } + }, + "npm:@esbuild/darwin-arm64@0.27.3": { + "type": "npm", + "name": "npm:@esbuild/darwin-arm64@0.27.3", + "data": { + "version": "0.27.3", + "packageName": "@esbuild/darwin-arm64", + "hash": "sha512-Re491k7ByTVRy0t3EKWajdLIr0gz2kKKfzafkth4Q8A5n1xTHrkqZgLLjFEHVD+AXdUGgQMq+Godfq45mGpCKg==" + } + }, + "npm:@esbuild/darwin-arm64@0.27.4": { + "type": "npm", + "name": "npm:@esbuild/darwin-arm64@0.27.4", + "data": { + "version": "0.27.4", + "packageName": "@esbuild/darwin-arm64", + "hash": "sha512-b7xaGIwdJlht8ZFCvMkpDN6uiSmnxxK56N2GDTMYPr2/gzvfdQN8rTfBsvVKmIVY/X7EM+/hJKEIbbHs9oA4tQ==" + } + }, + "npm:@esbuild/darwin-x64@0.18.20": { + "type": "npm", + "name": "npm:@esbuild/darwin-x64@0.18.20", + "data": { + "version": "0.18.20", + "packageName": "@esbuild/darwin-x64", + "hash": "sha512-pc5gxlMDxzm513qPGbCbDukOdsGtKhfxD1zJKXjCCcU7ju50O7MeAZ8c4krSJcOIJGFR+qx21yMMVYwiQvyTyQ==" + } + }, + "npm:@esbuild/darwin-x64@0.25.12": { + "type": "npm", + "name": "npm:@esbuild/darwin-x64@0.25.12", + "data": { + "version": "0.25.12", + "packageName": "@esbuild/darwin-x64", + "hash": "sha512-HQ9ka4Kx21qHXwtlTUVbKJOAnmG1ipXhdWTmNXiPzPfWKpXqASVcWdnf2bnL73wgjNrFXAa3yYvBSd9pzfEIpA==" + } + }, + "npm:@esbuild/darwin-x64@0.27.3": { + "type": "npm", + "name": "npm:@esbuild/darwin-x64@0.27.3", + "data": { + "version": "0.27.3", + "packageName": "@esbuild/darwin-x64", + "hash": "sha512-vHk/hA7/1AckjGzRqi6wbo+jaShzRowYip6rt6q7VYEDX4LEy1pZfDpdxCBnGtl+A5zq8iXDcyuxwtv3hNtHFg==" + } + }, + "npm:@esbuild/darwin-x64@0.27.4": { + "type": "npm", + "name": "npm:@esbuild/darwin-x64@0.27.4", + "data": { + "version": "0.27.4", + "packageName": "@esbuild/darwin-x64", + "hash": "sha512-sR+OiKLwd15nmCdqpXMnuJ9W2kpy0KigzqScqHI3Hqwr7IXxBp3Yva+yJwoqh7rE8V77tdoheRYataNKL4QrPw==" + } + }, + "npm:@esbuild/freebsd-arm64@0.18.20": { + "type": "npm", + "name": "npm:@esbuild/freebsd-arm64@0.18.20", + "data": { + "version": "0.18.20", + "packageName": "@esbuild/freebsd-arm64", + "hash": "sha512-yqDQHy4QHevpMAaxhhIwYPMv1NECwOvIpGCZkECn8w2WFHXjEwrBn3CeNIYsibZ/iZEUemj++M26W3cNR5h+Tw==" + } + }, + "npm:@esbuild/freebsd-arm64@0.25.12": { + "type": "npm", + "name": "npm:@esbuild/freebsd-arm64@0.25.12", + "data": { + "version": "0.25.12", + "packageName": "@esbuild/freebsd-arm64", + "hash": "sha512-gA0Bx759+7Jve03K1S0vkOu5Lg/85dou3EseOGUes8flVOGxbhDDh/iZaoek11Y8mtyKPGF3vP8XhnkDEAmzeg==" + } + }, + "npm:@esbuild/freebsd-arm64@0.27.3": { + "type": "npm", + "name": "npm:@esbuild/freebsd-arm64@0.27.3", + "data": { + "version": "0.27.3", + "packageName": "@esbuild/freebsd-arm64", + "hash": "sha512-ipTYM2fjt3kQAYOvo6vcxJx3nBYAzPjgTCk7QEgZG8AUO3ydUhvelmhrbOheMnGOlaSFUoHXB6un+A7q4ygY9w==" + } + }, + "npm:@esbuild/freebsd-arm64@0.27.4": { + "type": "npm", + "name": "npm:@esbuild/freebsd-arm64@0.27.4", + "data": { + "version": "0.27.4", + "packageName": "@esbuild/freebsd-arm64", + "hash": "sha512-jnfpKe+p79tCnm4GVav68A7tUFeKQwQyLgESwEAUzyxk/TJr4QdGog9sqWNcUbr/bZt/O/HXouspuQDd9JxFSw==" + } + }, + "npm:@esbuild/freebsd-x64@0.18.20": { + "type": "npm", + "name": "npm:@esbuild/freebsd-x64@0.18.20", + "data": { + "version": "0.18.20", + "packageName": "@esbuild/freebsd-x64", + "hash": "sha512-tgWRPPuQsd3RmBZwarGVHZQvtzfEBOreNuxEMKFcd5DaDn2PbBxfwLcj4+aenoh7ctXcbXmOQIn8HI6mCSw5MQ==" + } + }, + "npm:@esbuild/freebsd-x64@0.25.12": { + "type": "npm", + "name": "npm:@esbuild/freebsd-x64@0.25.12", + "data": { + "version": "0.25.12", + "packageName": "@esbuild/freebsd-x64", + "hash": "sha512-TGbO26Yw2xsHzxtbVFGEXBFH0FRAP7gtcPE7P5yP7wGy7cXK2oO7RyOhL5NLiqTlBh47XhmIUXuGciXEqYFfBQ==" + } + }, + "npm:@esbuild/freebsd-x64@0.27.3": { + "type": "npm", + "name": "npm:@esbuild/freebsd-x64@0.27.3", + "data": { + "version": "0.27.3", + "packageName": "@esbuild/freebsd-x64", + "hash": "sha512-dDk0X87T7mI6U3K9VjWtHOXqwAMJBNN2r7bejDsc+j03SEjtD9HrOl8gVFByeM0aJksoUuUVU9TBaZa2rgj0oA==" + } + }, + "npm:@esbuild/freebsd-x64@0.27.4": { + "type": "npm", + "name": "npm:@esbuild/freebsd-x64@0.27.4", + "data": { + "version": "0.27.4", + "packageName": "@esbuild/freebsd-x64", + "hash": "sha512-2kb4ceA/CpfUrIcTUl1wrP/9ad9Atrp5J94Lq69w7UwOMolPIGrfLSvAKJp0RTvkPPyn6CIWrNy13kyLikZRZQ==" + } + }, + "npm:@esbuild/linux-arm64@0.18.20": { + "type": "npm", + "name": "npm:@esbuild/linux-arm64@0.18.20", + "data": { + "version": "0.18.20", + "packageName": "@esbuild/linux-arm64", + "hash": "sha512-2YbscF+UL7SQAVIpnWvYwM+3LskyDmPhe31pE7/aoTMFKKzIc9lLbyGUpmmb8a8AixOL61sQ/mFh3jEjHYFvdA==" + } + }, + "npm:@esbuild/linux-arm64@0.25.12": { + "type": "npm", + "name": "npm:@esbuild/linux-arm64@0.25.12", + "data": { + "version": "0.25.12", + "packageName": "@esbuild/linux-arm64", + "hash": "sha512-8bwX7a8FghIgrupcxb4aUmYDLp8pX06rGh5HqDT7bB+8Rdells6mHvrFHHW2JAOPZUbnjUpKTLg6ECyzvas2AQ==" + } + }, + "npm:@esbuild/linux-arm64@0.27.3": { + "type": "npm", + "name": "npm:@esbuild/linux-arm64@0.27.3", + "data": { + "version": "0.27.3", + "packageName": "@esbuild/linux-arm64", + "hash": "sha512-sZOuFz/xWnZ4KH3YfFrKCf1WyPZHakVzTiqji3WDc0BCl2kBwiJLCXpzLzUBLgmp4veFZdvN5ChW4Eq/8Fc2Fg==" + } + }, + "npm:@esbuild/linux-arm64@0.27.4": { + "type": "npm", + "name": "npm:@esbuild/linux-arm64@0.27.4", + "data": { + "version": "0.27.4", + "packageName": "@esbuild/linux-arm64", + "hash": "sha512-7nQOttdzVGth1iz57kxg9uCz57dxQLHWxopL6mYuYthohPKEK0vU0C3O21CcBK6KDlkYVcnDXY099HcCDXd9dA==" + } + }, + "npm:@esbuild/linux-arm@0.18.20": { + "type": "npm", + "name": "npm:@esbuild/linux-arm@0.18.20", + "data": { + "version": "0.18.20", + "packageName": "@esbuild/linux-arm", + "hash": "sha512-/5bHkMWnq1EgKr1V+Ybz3s1hWXok7mDFUMQ4cG10AfW3wL02PSZi5kFpYKrptDsgb2WAJIvRcDm+qIvXf/apvg==" + } + }, + "npm:@esbuild/linux-arm@0.25.12": { + "type": "npm", + "name": "npm:@esbuild/linux-arm@0.25.12", + "data": { + "version": "0.25.12", + "packageName": "@esbuild/linux-arm", + "hash": "sha512-lPDGyC1JPDou8kGcywY0YILzWlhhnRjdof3UlcoqYmS9El818LLfJJc3PXXgZHrHCAKs/Z2SeZtDJr5MrkxtOw==" + } + }, + "npm:@esbuild/linux-arm@0.27.3": { + "type": "npm", + "name": "npm:@esbuild/linux-arm@0.27.3", + "data": { + "version": "0.27.3", + "packageName": "@esbuild/linux-arm", + "hash": "sha512-s6nPv2QkSupJwLYyfS+gwdirm0ukyTFNl3KTgZEAiJDd+iHZcbTPPcWCcRYH+WlNbwChgH2QkE9NSlNrMT8Gfw==" + } + }, + "npm:@esbuild/linux-arm@0.27.4": { + "type": "npm", + "name": "npm:@esbuild/linux-arm@0.27.4", + "data": { + "version": "0.27.4", + "packageName": "@esbuild/linux-arm", + "hash": "sha512-aBYgcIxX/wd5n2ys0yESGeYMGF+pv6g0DhZr3G1ZG4jMfruU9Tl1i2Z+Wnj9/KjGz1lTLCcorqE2viePZqj4Eg==" + } + }, + "npm:@esbuild/linux-ia32@0.18.20": { + "type": "npm", + "name": "npm:@esbuild/linux-ia32@0.18.20", + "data": { + "version": "0.18.20", + "packageName": "@esbuild/linux-ia32", + "hash": "sha512-P4etWwq6IsReT0E1KHU40bOnzMHoH73aXp96Fs8TIT6z9Hu8G6+0SHSw9i2isWrD2nbx2qo5yUqACgdfVGx7TA==" + } + }, + "npm:@esbuild/linux-ia32@0.25.12": { + "type": "npm", + "name": "npm:@esbuild/linux-ia32@0.25.12", + "data": { + "version": "0.25.12", + "packageName": "@esbuild/linux-ia32", + "hash": "sha512-0y9KrdVnbMM2/vG8KfU0byhUN+EFCny9+8g202gYqSSVMonbsCfLjUO+rCci7pM0WBEtz+oK/PIwHkzxkyharA==" + } + }, + "npm:@esbuild/linux-ia32@0.27.3": { + "type": "npm", + "name": "npm:@esbuild/linux-ia32@0.27.3", + "data": { + "version": "0.27.3", + "packageName": "@esbuild/linux-ia32", + "hash": "sha512-yGlQYjdxtLdh0a3jHjuwOrxQjOZYD/C9PfdbgJJF3TIZWnm/tMd/RcNiLngiu4iwcBAOezdnSLAwQDPqTmtTYg==" + } + }, + "npm:@esbuild/linux-ia32@0.27.4": { + "type": "npm", + "name": "npm:@esbuild/linux-ia32@0.27.4", + "data": { + "version": "0.27.4", + "packageName": "@esbuild/linux-ia32", + "hash": "sha512-oPtixtAIzgvzYcKBQM/qZ3R+9TEUd1aNJQu0HhGyqtx6oS7qTpvjheIWBbes4+qu1bNlo2V4cbkISr8q6gRBFA==" + } + }, + "npm:@esbuild/linux-loong64@0.18.20": { + "type": "npm", + "name": "npm:@esbuild/linux-loong64@0.18.20", + "data": { + "version": "0.18.20", + "packageName": "@esbuild/linux-loong64", + "hash": "sha512-nXW8nqBTrOpDLPgPY9uV+/1DjxoQ7DoB2N8eocyq8I9XuqJ7BiAMDMf9n1xZM9TgW0J8zrquIb/A7s3BJv7rjg==" + } + }, + "npm:@esbuild/linux-loong64@0.25.12": { + "type": "npm", + "name": "npm:@esbuild/linux-loong64@0.25.12", + "data": { + "version": "0.25.12", + "packageName": "@esbuild/linux-loong64", + "hash": "sha512-h///Lr5a9rib/v1GGqXVGzjL4TMvVTv+s1DPoxQdz7l/AYv6LDSxdIwzxkrPW438oUXiDtwM10o9PmwS/6Z0Ng==" + } + }, + "npm:@esbuild/linux-loong64@0.27.3": { + "type": "npm", + "name": "npm:@esbuild/linux-loong64@0.27.3", + "data": { + "version": "0.27.3", + "packageName": "@esbuild/linux-loong64", + "hash": "sha512-WO60Sn8ly3gtzhyjATDgieJNet/KqsDlX5nRC5Y3oTFcS1l0KWba+SEa9Ja1GfDqSF1z6hif/SkpQJbL63cgOA==" + } + }, + "npm:@esbuild/linux-loong64@0.27.4": { + "type": "npm", + "name": "npm:@esbuild/linux-loong64@0.27.4", + "data": { + "version": "0.27.4", + "packageName": "@esbuild/linux-loong64", + "hash": "sha512-8mL/vh8qeCoRcFH2nM8wm5uJP+ZcVYGGayMavi8GmRJjuI3g1v6Z7Ni0JJKAJW+m0EtUuARb6Lmp4hMjzCBWzA==" + } + }, + "npm:@esbuild/linux-mips64el@0.18.20": { + "type": "npm", + "name": "npm:@esbuild/linux-mips64el@0.18.20", + "data": { + "version": "0.18.20", + "packageName": "@esbuild/linux-mips64el", + "hash": "sha512-d5NeaXZcHp8PzYy5VnXV3VSd2D328Zb+9dEq5HE6bw6+N86JVPExrA6O68OPwobntbNJ0pzCpUFZTo3w0GyetQ==" + } + }, + "npm:@esbuild/linux-mips64el@0.25.12": { + "type": "npm", + "name": "npm:@esbuild/linux-mips64el@0.25.12", + "data": { + "version": "0.25.12", + "packageName": "@esbuild/linux-mips64el", + "hash": "sha512-iyRrM1Pzy9GFMDLsXn1iHUm18nhKnNMWscjmp4+hpafcZjrr2WbT//d20xaGljXDBYHqRcl8HnxbX6uaA/eGVw==" + } + }, + "npm:@esbuild/linux-mips64el@0.27.3": { + "type": "npm", + "name": "npm:@esbuild/linux-mips64el@0.27.3", + "data": { + "version": "0.27.3", + "packageName": "@esbuild/linux-mips64el", + "hash": "sha512-APsymYA6sGcZ4pD6k+UxbDjOFSvPWyZhjaiPyl/f79xKxwTnrn5QUnXR5prvetuaSMsb4jgeHewIDCIWljrSxw==" + } + }, + "npm:@esbuild/linux-mips64el@0.27.4": { + "type": "npm", + "name": "npm:@esbuild/linux-mips64el@0.27.4", + "data": { + "version": "0.27.4", + "packageName": "@esbuild/linux-mips64el", + "hash": "sha512-1RdrWFFiiLIW7LQq9Q2NES+HiD4NyT8Itj9AUeCl0IVCA459WnPhREKgwrpaIfTOe+/2rdntisegiPWn/r/aAw==" + } + }, + "npm:@esbuild/linux-ppc64@0.18.20": { + "type": "npm", + "name": "npm:@esbuild/linux-ppc64@0.18.20", + "data": { + "version": "0.18.20", + "packageName": "@esbuild/linux-ppc64", + "hash": "sha512-WHPyeScRNcmANnLQkq6AfyXRFr5D6N2sKgkFo2FqguP44Nw2eyDlbTdZwd9GYk98DZG9QItIiTlFLHJHjxP3FA==" + } + }, + "npm:@esbuild/linux-ppc64@0.25.12": { + "type": "npm", + "name": "npm:@esbuild/linux-ppc64@0.25.12", + "data": { + "version": "0.25.12", + "packageName": "@esbuild/linux-ppc64", + "hash": "sha512-9meM/lRXxMi5PSUqEXRCtVjEZBGwB7P/D4yT8UG/mwIdze2aV4Vo6U5gD3+RsoHXKkHCfSxZKzmDssVlRj1QQA==" + } + }, + "npm:@esbuild/linux-ppc64@0.27.3": { + "type": "npm", + "name": "npm:@esbuild/linux-ppc64@0.27.3", + "data": { + "version": "0.27.3", + "packageName": "@esbuild/linux-ppc64", + "hash": "sha512-eizBnTeBefojtDb9nSh4vvVQ3V9Qf9Df01PfawPcRzJH4gFSgrObw+LveUyDoKU3kxi5+9RJTCWlj4FjYXVPEA==" + } + }, + "npm:@esbuild/linux-ppc64@0.27.4": { + "type": "npm", + "name": "npm:@esbuild/linux-ppc64@0.27.4", + "data": { + "version": "0.27.4", + "packageName": "@esbuild/linux-ppc64", + "hash": "sha512-tLCwNG47l3sd9lpfyx9LAGEGItCUeRCWeAx6x2Jmbav65nAwoPXfewtAdtbtit/pJFLUWOhpv0FpS6GQAmPrHA==" + } + }, + "npm:@esbuild/linux-riscv64@0.18.20": { + "type": "npm", + "name": "npm:@esbuild/linux-riscv64@0.18.20", + "data": { + "version": "0.18.20", + "packageName": "@esbuild/linux-riscv64", + "hash": "sha512-WSxo6h5ecI5XH34KC7w5veNnKkju3zBRLEQNY7mv5mtBmrP/MjNBCAlsM2u5hDBlS3NGcTQpoBvRzqBcRtpq1A==" + } + }, + "npm:@esbuild/linux-riscv64@0.25.12": { + "type": "npm", + "name": "npm:@esbuild/linux-riscv64@0.25.12", + "data": { + "version": "0.25.12", + "packageName": "@esbuild/linux-riscv64", + "hash": "sha512-Zr7KR4hgKUpWAwb1f3o5ygT04MzqVrGEGXGLnj15YQDJErYu/BGg+wmFlIDOdJp0PmB0lLvxFIOXZgFRrdjR0w==" + } + }, + "npm:@esbuild/linux-riscv64@0.27.3": { + "type": "npm", + "name": "npm:@esbuild/linux-riscv64@0.27.3", + "data": { + "version": "0.27.3", + "packageName": "@esbuild/linux-riscv64", + "hash": "sha512-3Emwh0r5wmfm3ssTWRQSyVhbOHvqegUDRd0WhmXKX2mkHJe1SFCMJhagUleMq+Uci34wLSipf8Lagt4LlpRFWQ==" + } + }, + "npm:@esbuild/linux-riscv64@0.27.4": { + "type": "npm", + "name": "npm:@esbuild/linux-riscv64@0.27.4", + "data": { + "version": "0.27.4", + "packageName": "@esbuild/linux-riscv64", + "hash": "sha512-BnASypppbUWyqjd1KIpU4AUBiIhVr6YlHx/cnPgqEkNoVOhHg+YiSVxM1RLfiy4t9cAulbRGTNCKOcqHrEQLIw==" + } + }, + "npm:@esbuild/linux-s390x@0.18.20": { + "type": "npm", + "name": "npm:@esbuild/linux-s390x@0.18.20", + "data": { + "version": "0.18.20", + "packageName": "@esbuild/linux-s390x", + "hash": "sha512-+8231GMs3mAEth6Ja1iK0a1sQ3ohfcpzpRLH8uuc5/KVDFneH6jtAJLFGafpzpMRO6DzJ6AvXKze9LfFMrIHVQ==" + } + }, + "npm:@esbuild/linux-s390x@0.25.12": { + "type": "npm", + "name": "npm:@esbuild/linux-s390x@0.25.12", + "data": { + "version": "0.25.12", + "packageName": "@esbuild/linux-s390x", + "hash": "sha512-MsKncOcgTNvdtiISc/jZs/Zf8d0cl/t3gYWX8J9ubBnVOwlk65UIEEvgBORTiljloIWnBzLs4qhzPkJcitIzIg==" + } + }, + "npm:@esbuild/linux-s390x@0.27.3": { + "type": "npm", + "name": "npm:@esbuild/linux-s390x@0.27.3", + "data": { + "version": "0.27.3", + "packageName": "@esbuild/linux-s390x", + "hash": "sha512-pBHUx9LzXWBc7MFIEEL0yD/ZVtNgLytvx60gES28GcWMqil8ElCYR4kvbV2BDqsHOvVDRrOxGySBM9Fcv744hw==" + } + }, + "npm:@esbuild/linux-s390x@0.27.4": { + "type": "npm", + "name": "npm:@esbuild/linux-s390x@0.27.4", + "data": { + "version": "0.27.4", + "packageName": "@esbuild/linux-s390x", + "hash": "sha512-+eUqgb/Z7vxVLezG8bVB9SfBie89gMueS+I0xYh2tJdw3vqA/0ImZJ2ROeWwVJN59ihBeZ7Tu92dF/5dy5FttA==" + } + }, + "npm:@esbuild/linux-x64@0.18.20": { + "type": "npm", + "name": "npm:@esbuild/linux-x64@0.18.20", + "data": { + "version": "0.18.20", + "packageName": "@esbuild/linux-x64", + "hash": "sha512-UYqiqemphJcNsFEskc73jQ7B9jgwjWrSayxawS6UVFZGWrAAtkzjxSqnoclCXxWtfwLdzU+vTpcNYhpn43uP1w==" + } + }, + "npm:@esbuild/linux-x64@0.25.12": { + "type": "npm", + "name": "npm:@esbuild/linux-x64@0.25.12", + "data": { + "version": "0.25.12", + "packageName": "@esbuild/linux-x64", + "hash": "sha512-uqZMTLr/zR/ed4jIGnwSLkaHmPjOjJvnm6TVVitAa08SLS9Z0VM8wIRx7gWbJB5/J54YuIMInDquWyYvQLZkgw==" + } + }, + "npm:@esbuild/linux-x64@0.27.3": { + "type": "npm", + "name": "npm:@esbuild/linux-x64@0.27.3", + "data": { + "version": "0.27.3", + "packageName": "@esbuild/linux-x64", + "hash": "sha512-Czi8yzXUWIQYAtL/2y6vogER8pvcsOsk5cpwL4Gk5nJqH5UZiVByIY8Eorm5R13gq+DQKYg0+JyQoytLQas4dA==" + } + }, + "npm:@esbuild/linux-x64": { + "type": "npm", + "name": "npm:@esbuild/linux-x64", + "data": { + "version": "0.27.4", + "packageName": "@esbuild/linux-x64", + "hash": "sha512-S5qOXrKV8BQEzJPVxAwnryi2+Iq5pB40gTEIT69BQONqR7JH1EPIcQ/Uiv9mCnn05jff9umq/5nqzxlqTOg9NA==" + } + }, + "npm:@esbuild/netbsd-arm64@0.25.12": { + "type": "npm", + "name": "npm:@esbuild/netbsd-arm64@0.25.12", + "data": { + "version": "0.25.12", + "packageName": "@esbuild/netbsd-arm64", + "hash": "sha512-xXwcTq4GhRM7J9A8Gv5boanHhRa/Q9KLVmcyXHCTaM4wKfIpWkdXiMog/KsnxzJ0A1+nD+zoecuzqPmCRyBGjg==" + } + }, + "npm:@esbuild/netbsd-arm64@0.27.3": { + "type": "npm", + "name": "npm:@esbuild/netbsd-arm64@0.27.3", + "data": { + "version": "0.27.3", + "packageName": "@esbuild/netbsd-arm64", + "hash": "sha512-sDpk0RgmTCR/5HguIZa9n9u+HVKf40fbEUt+iTzSnCaGvY9kFP0YKBWZtJaraonFnqef5SlJ8/TiPAxzyS+UoA==" + } + }, + "npm:@esbuild/netbsd-arm64@0.27.4": { + "type": "npm", + "name": "npm:@esbuild/netbsd-arm64@0.27.4", + "data": { + "version": "0.27.4", + "packageName": "@esbuild/netbsd-arm64", + "hash": "sha512-xHT8X4sb0GS8qTqiwzHqpY00C95DPAq7nAwX35Ie/s+LO9830hrMd3oX0ZMKLvy7vsonee73x0lmcdOVXFzd6Q==" + } + }, + "npm:@esbuild/netbsd-x64@0.18.20": { + "type": "npm", + "name": "npm:@esbuild/netbsd-x64@0.18.20", + "data": { + "version": "0.18.20", + "packageName": "@esbuild/netbsd-x64", + "hash": "sha512-iO1c++VP6xUBUmltHZoMtCUdPlnPGdBom6IrO4gyKPFFVBKioIImVooR5I83nTew5UOYrk3gIJhbZh8X44y06A==" + } + }, + "npm:@esbuild/netbsd-x64@0.25.12": { + "type": "npm", + "name": "npm:@esbuild/netbsd-x64@0.25.12", + "data": { + "version": "0.25.12", + "packageName": "@esbuild/netbsd-x64", + "hash": "sha512-Ld5pTlzPy3YwGec4OuHh1aCVCRvOXdH8DgRjfDy/oumVovmuSzWfnSJg+VtakB9Cm0gxNO9BzWkj6mtO1FMXkQ==" + } + }, + "npm:@esbuild/netbsd-x64@0.27.3": { + "type": "npm", + "name": "npm:@esbuild/netbsd-x64@0.27.3", + "data": { + "version": "0.27.3", + "packageName": "@esbuild/netbsd-x64", + "hash": "sha512-P14lFKJl/DdaE00LItAukUdZO5iqNH7+PjoBm+fLQjtxfcfFE20Xf5CrLsmZdq5LFFZzb5JMZ9grUwvtVYzjiA==" + } + }, + "npm:@esbuild/netbsd-x64@0.27.4": { + "type": "npm", + "name": "npm:@esbuild/netbsd-x64@0.27.4", + "data": { + "version": "0.27.4", + "packageName": "@esbuild/netbsd-x64", + "hash": "sha512-RugOvOdXfdyi5Tyv40kgQnI0byv66BFgAqjdgtAKqHoZTbTF2QqfQrFwa7cHEORJf6X2ht+l9ABLMP0dnKYsgg==" + } + }, + "npm:@esbuild/openbsd-arm64@0.25.12": { + "type": "npm", + "name": "npm:@esbuild/openbsd-arm64@0.25.12", + "data": { + "version": "0.25.12", + "packageName": "@esbuild/openbsd-arm64", + "hash": "sha512-fF96T6KsBo/pkQI950FARU9apGNTSlZGsv1jZBAlcLL1MLjLNIWPBkj5NlSz8aAzYKg+eNqknrUJ24QBybeR5A==" + } + }, + "npm:@esbuild/openbsd-arm64@0.27.3": { + "type": "npm", + "name": "npm:@esbuild/openbsd-arm64@0.27.3", + "data": { + "version": "0.27.3", + "packageName": "@esbuild/openbsd-arm64", + "hash": "sha512-AIcMP77AvirGbRl/UZFTq5hjXK+2wC7qFRGoHSDrZ5v5b8DK/GYpXW3CPRL53NkvDqb9D+alBiC/dV0Fb7eJcw==" + } + }, + "npm:@esbuild/openbsd-arm64@0.27.4": { + "type": "npm", + "name": "npm:@esbuild/openbsd-arm64@0.27.4", + "data": { + "version": "0.27.4", + "packageName": "@esbuild/openbsd-arm64", + "hash": "sha512-2MyL3IAaTX+1/qP0O1SwskwcwCoOI4kV2IBX1xYnDDqthmq5ArrW94qSIKCAuRraMgPOmG0RDTA74mzYNQA9ow==" + } + }, + "npm:@esbuild/openbsd-x64@0.18.20": { + "type": "npm", + "name": "npm:@esbuild/openbsd-x64@0.18.20", + "data": { + "version": "0.18.20", + "packageName": "@esbuild/openbsd-x64", + "hash": "sha512-e5e4YSsuQfX4cxcygw/UCPIEP6wbIL+se3sxPdCiMbFLBWu0eiZOJ7WoD+ptCLrmjZBK1Wk7I6D/I3NglUGOxg==" + } + }, + "npm:@esbuild/openbsd-x64@0.25.12": { + "type": "npm", + "name": "npm:@esbuild/openbsd-x64@0.25.12", + "data": { + "version": "0.25.12", + "packageName": "@esbuild/openbsd-x64", + "hash": "sha512-MZyXUkZHjQxUvzK7rN8DJ3SRmrVrke8ZyRusHlP+kuwqTcfWLyqMOE3sScPPyeIXN/mDJIfGXvcMqCgYKekoQw==" + } + }, + "npm:@esbuild/openbsd-x64@0.27.3": { + "type": "npm", + "name": "npm:@esbuild/openbsd-x64@0.27.3", + "data": { + "version": "0.27.3", + "packageName": "@esbuild/openbsd-x64", + "hash": "sha512-DnW2sRrBzA+YnE70LKqnM3P+z8vehfJWHXECbwBmH/CU51z6FiqTQTHFenPlHmo3a8UgpLyH3PT+87OViOh1AQ==" + } + }, + "npm:@esbuild/openbsd-x64@0.27.4": { + "type": "npm", + "name": "npm:@esbuild/openbsd-x64@0.27.4", + "data": { + "version": "0.27.4", + "packageName": "@esbuild/openbsd-x64", + "hash": "sha512-u8fg/jQ5aQDfsnIV6+KwLOf1CmJnfu1ShpwqdwC0uA7ZPwFws55Ngc12vBdeUdnuWoQYx/SOQLGDcdlfXhYmXQ==" + } + }, + "npm:@esbuild/openharmony-arm64@0.25.12": { + "type": "npm", + "name": "npm:@esbuild/openharmony-arm64@0.25.12", + "data": { + "version": "0.25.12", + "packageName": "@esbuild/openharmony-arm64", + "hash": "sha512-rm0YWsqUSRrjncSXGA7Zv78Nbnw4XL6/dzr20cyrQf7ZmRcsovpcRBdhD43Nuk3y7XIoW2OxMVvwuRvk9XdASg==" + } + }, + "npm:@esbuild/openharmony-arm64@0.27.3": { + "type": "npm", + "name": "npm:@esbuild/openharmony-arm64@0.27.3", + "data": { + "version": "0.27.3", + "packageName": "@esbuild/openharmony-arm64", + "hash": "sha512-NinAEgr/etERPTsZJ7aEZQvvg/A6IsZG/LgZy+81wON2huV7SrK3e63dU0XhyZP4RKGyTm7aOgmQk0bGp0fy2g==" + } + }, + "npm:@esbuild/openharmony-arm64@0.27.4": { + "type": "npm", + "name": "npm:@esbuild/openharmony-arm64@0.27.4", + "data": { + "version": "0.27.4", + "packageName": "@esbuild/openharmony-arm64", + "hash": "sha512-JkTZrl6VbyO8lDQO3yv26nNr2RM2yZzNrNHEsj9bm6dOwwu9OYN28CjzZkH57bh4w0I2F7IodpQvUAEd1mbWXg==" + } + }, + "npm:@esbuild/sunos-x64@0.18.20": { + "type": "npm", + "name": "npm:@esbuild/sunos-x64@0.18.20", + "data": { + "version": "0.18.20", + "packageName": "@esbuild/sunos-x64", + "hash": "sha512-kDbFRFp0YpTQVVrqUd5FTYmWo45zGaXe0X8E1G/LKFC0v8x0vWrhOWSLITcCn63lmZIxfOMXtCfti/RxN/0wnQ==" + } + }, + "npm:@esbuild/sunos-x64@0.25.12": { + "type": "npm", + "name": "npm:@esbuild/sunos-x64@0.25.12", + "data": { + "version": "0.25.12", + "packageName": "@esbuild/sunos-x64", + "hash": "sha512-3wGSCDyuTHQUzt0nV7bocDy72r2lI33QL3gkDNGkod22EsYl04sMf0qLb8luNKTOmgF/eDEDP5BFNwoBKH441w==" + } + }, + "npm:@esbuild/sunos-x64@0.27.3": { + "type": "npm", + "name": "npm:@esbuild/sunos-x64@0.27.3", + "data": { + "version": "0.27.3", + "packageName": "@esbuild/sunos-x64", + "hash": "sha512-PanZ+nEz+eWoBJ8/f8HKxTTD172SKwdXebZ0ndd953gt1HRBbhMsaNqjTyYLGLPdoWHy4zLU7bDVJztF5f3BHA==" + } + }, + "npm:@esbuild/sunos-x64@0.27.4": { + "type": "npm", + "name": "npm:@esbuild/sunos-x64@0.27.4", + "data": { + "version": "0.27.4", + "packageName": "@esbuild/sunos-x64", + "hash": "sha512-/gOzgaewZJfeJTlsWhvUEmUG4tWEY2Spp5M20INYRg2ZKl9QPO3QEEgPeRtLjEWSW8FilRNacPOg8R1uaYkA6g==" + } + }, + "npm:@esbuild/win32-arm64@0.18.20": { + "type": "npm", + "name": "npm:@esbuild/win32-arm64@0.18.20", + "data": { + "version": "0.18.20", + "packageName": "@esbuild/win32-arm64", + "hash": "sha512-ddYFR6ItYgoaq4v4JmQQaAI5s7npztfV4Ag6NrhiaW0RrnOXqBkgwZLofVTlq1daVTQNhtI5oieTvkRPfZrePg==" + } + }, + "npm:@esbuild/win32-arm64@0.25.12": { + "type": "npm", + "name": "npm:@esbuild/win32-arm64@0.25.12", + "data": { + "version": "0.25.12", + "packageName": "@esbuild/win32-arm64", + "hash": "sha512-rMmLrur64A7+DKlnSuwqUdRKyd3UE7oPJZmnljqEptesKM8wx9J8gx5u0+9Pq0fQQW8vqeKebwNXdfOyP+8Bsg==" + } + }, + "npm:@esbuild/win32-arm64@0.27.3": { + "type": "npm", + "name": "npm:@esbuild/win32-arm64@0.27.3", + "data": { + "version": "0.27.3", + "packageName": "@esbuild/win32-arm64", + "hash": "sha512-B2t59lWWYrbRDw/tjiWOuzSsFh1Y/E95ofKz7rIVYSQkUYBjfSgf6oeYPNWHToFRr2zx52JKApIcAS/D5TUBnA==" + } + }, + "npm:@esbuild/win32-arm64@0.27.4": { + "type": "npm", + "name": "npm:@esbuild/win32-arm64@0.27.4", + "data": { + "version": "0.27.4", + "packageName": "@esbuild/win32-arm64", + "hash": "sha512-Z9SExBg2y32smoDQdf1HRwHRt6vAHLXcxD2uGgO/v2jK7Y718Ix4ndsbNMU/+1Qiem9OiOdaqitioZwxivhXYg==" + } + }, + "npm:@esbuild/win32-ia32@0.18.20": { + "type": "npm", + "name": "npm:@esbuild/win32-ia32@0.18.20", + "data": { + "version": "0.18.20", + "packageName": "@esbuild/win32-ia32", + "hash": "sha512-Wv7QBi3ID/rROT08SABTS7eV4hX26sVduqDOTe1MvGMjNd3EjOz4b7zeexIR62GTIEKrfJXKL9LFxTYgkyeu7g==" + } + }, + "npm:@esbuild/win32-ia32@0.25.12": { + "type": "npm", + "name": "npm:@esbuild/win32-ia32@0.25.12", + "data": { + "version": "0.25.12", + "packageName": "@esbuild/win32-ia32", + "hash": "sha512-HkqnmmBoCbCwxUKKNPBixiWDGCpQGVsrQfJoVGYLPT41XWF8lHuE5N6WhVia2n4o5QK5M4tYr21827fNhi4byQ==" + } + }, + "npm:@esbuild/win32-ia32@0.27.3": { + "type": "npm", + "name": "npm:@esbuild/win32-ia32@0.27.3", + "data": { + "version": "0.27.3", + "packageName": "@esbuild/win32-ia32", + "hash": "sha512-QLKSFeXNS8+tHW7tZpMtjlNb7HKau0QDpwm49u0vUp9y1WOF+PEzkU84y9GqYaAVW8aH8f3GcBck26jh54cX4Q==" + } + }, + "npm:@esbuild/win32-ia32@0.27.4": { + "type": "npm", + "name": "npm:@esbuild/win32-ia32@0.27.4", + "data": { + "version": "0.27.4", + "packageName": "@esbuild/win32-ia32", + "hash": "sha512-DAyGLS0Jz5G5iixEbMHi5KdiApqHBWMGzTtMiJ72ZOLhbu/bzxgAe8Ue8CTS3n3HbIUHQz/L51yMdGMeoxXNJw==" + } + }, + "npm:@esbuild/win32-x64@0.18.20": { + "type": "npm", + "name": "npm:@esbuild/win32-x64@0.18.20", + "data": { + "version": "0.18.20", + "packageName": "@esbuild/win32-x64", + "hash": "sha512-kTdfRcSiDfQca/y9QIkng02avJ+NCaQvrMejlsB3RRv5sE9rRoeBPISaZpKxHELzRxZyLvNts1P27W3wV+8geQ==" + } + }, + "npm:@esbuild/win32-x64@0.25.12": { + "type": "npm", + "name": "npm:@esbuild/win32-x64@0.25.12", + "data": { + "version": "0.25.12", + "packageName": "@esbuild/win32-x64", + "hash": "sha512-alJC0uCZpTFrSL0CCDjcgleBXPnCrEAhTBILpeAp7M/OFgoqtAetfBzX0xM00MUsVVPpVjlPuMbREqnZCXaTnA==" + } + }, + "npm:@esbuild/win32-x64@0.27.3": { + "type": "npm", + "name": "npm:@esbuild/win32-x64@0.27.3", + "data": { + "version": "0.27.3", + "packageName": "@esbuild/win32-x64", + "hash": "sha512-4uJGhsxuptu3OcpVAzli+/gWusVGwZZHTlS63hh++ehExkVT8SgiEf7/uC/PclrPPkLhZqGgCTjd0VWLo6xMqA==" + } + }, + "npm:@esbuild/win32-x64@0.27.4": { + "type": "npm", + "name": "npm:@esbuild/win32-x64@0.27.4", + "data": { + "version": "0.27.4", + "packageName": "@esbuild/win32-x64", + "hash": "sha512-+knoa0BDoeXgkNvvV1vvbZX4+hizelrkwmGJBdT17t8FNPwG2lKemmuMZlmaNQ3ws3DKKCxpb4zRZEIp3UxFCg==" + } + }, + "npm:@eslint-community/eslint-utils": { + "type": "npm", + "name": "npm:@eslint-community/eslint-utils", + "data": { + "version": "4.9.1", + "packageName": "@eslint-community/eslint-utils", + "hash": "sha512-phrYmNiYppR7znFEdqgfWHXR6NCkZEK7hwWDHZUjit/2/U0r6XvkDl0SYnoM51Hq7FhCGdLDT6zxCCOY1hexsQ==" + } + }, + "npm:@eslint-community/regexpp": { + "type": "npm", + "name": "npm:@eslint-community/regexpp", + "data": { + "version": "4.12.2", + "packageName": "@eslint-community/regexpp", + "hash": "sha512-EriSTlt5OC9/7SXkRSCAhfSxxoSUgBm33OH+IkwbdpgoqsSsUg7y3uh+IICI/Qg4BBWr3U2i39RpmycbxMq4ew==" + } + }, + "npm:@eslint/config-array": { + "type": "npm", + "name": "npm:@eslint/config-array", + "data": { + "version": "0.21.2", + "packageName": "@eslint/config-array", + "hash": "sha512-nJl2KGTlrf9GjLimgIru+V/mzgSK0ABCDQRvxw5BjURL7WfH5uoWmizbH7QB6MmnMBd8cIC9uceWnezL1VZWWw==" + } + }, + "npm:@eslint/config-helpers": { + "type": "npm", + "name": "npm:@eslint/config-helpers", + "data": { + "version": "0.4.2", + "packageName": "@eslint/config-helpers", + "hash": "sha512-gBrxN88gOIf3R7ja5K9slwNayVcZgK6SOUORm2uBzTeIEfeVaIhOpCtTox3P6R7o2jLFwLFTLnC7kU/RGcYEgw==" + } + }, + "npm:@eslint/core": { + "type": "npm", + "name": "npm:@eslint/core", + "data": { + "version": "0.17.0", + "packageName": "@eslint/core", + "hash": "sha512-yL/sLrpmtDaFEiUj1osRP4TI2MDz1AddJL+jZ7KSqvBuliN4xqYY54IfdN8qD8Toa6g1iloph1fxQNkjOxrrpQ==" + } + }, + "npm:@eslint/eslintrc": { + "type": "npm", + "name": "npm:@eslint/eslintrc", + "data": { + "version": "3.3.5", + "packageName": "@eslint/eslintrc", + "hash": "sha512-4IlJx0X0qftVsN5E+/vGujTRIFtwuLbNsVUe7TO6zYPDR1O6nFwvwhIKEKSrl6dZchmYBITazxKoUYOjdtjlRg==" + } + }, + "npm:@eslint/js": { + "type": "npm", + "name": "npm:@eslint/js", + "data": { + "version": "9.39.4", + "packageName": "@eslint/js", + "hash": "sha512-nE7DEIchvtiFTwBw4Lfbu59PG+kCofhjsKaCWzxTpt4lfRjRMqG6uMBzKXuEcyXhOHoUp9riAm7/aWYGhXZ9cw==" + } + }, + "npm:@eslint/object-schema": { + "type": "npm", + "name": "npm:@eslint/object-schema", + "data": { + "version": "2.1.7", + "packageName": "@eslint/object-schema", + "hash": "sha512-VtAOaymWVfZcmZbp6E2mympDIHvyjXs/12LqWYjVw6qjrfF+VK+fyG33kChz3nnK+SU5/NeHOqrTEHS8sXO3OA==" + } + }, + "npm:@eslint/plugin-kit": { + "type": "npm", + "name": "npm:@eslint/plugin-kit", + "data": { + "version": "0.4.1", + "packageName": "@eslint/plugin-kit", + "hash": "sha512-43/qtrDUokr7LJqoF2c3+RInu/t4zfrpYdoSDfYyhg52rwLV6TnOvdG4fXm7IkSB3wErkcmJS9iEhjVtOSEjjA==" + } + }, + "npm:@fastify/ajv-compiler": { + "type": "npm", + "name": "npm:@fastify/ajv-compiler", + "data": { + "version": "4.0.5", + "packageName": "@fastify/ajv-compiler", + "hash": "sha512-KoWKW+MhvfTRWL4qrhUwAAZoaChluo0m0vbiJlGMt2GXvL4LVPQEjt8kSpHI3IBq5Rez8fg+XeH3cneztq+C7A==" + } + }, + "npm:@fastify/error": { + "type": "npm", + "name": "npm:@fastify/error", + "data": { + "version": "4.2.0", + "packageName": "@fastify/error", + "hash": "sha512-RSo3sVDXfHskiBZKBPRgnQTtIqpi/7zhJOEmAxCiBcM7d0uwdGdxLlsCaLzGs8v8NnxIRlfG0N51p5yFaOentQ==" + } + }, + "npm:@fastify/fast-json-stringify-compiler": { + "type": "npm", + "name": "npm:@fastify/fast-json-stringify-compiler", + "data": { + "version": "5.0.3", + "packageName": "@fastify/fast-json-stringify-compiler", + "hash": "sha512-uik7yYHkLr6fxd8hJSZ8c+xF4WafPK+XzneQDPU+D10r5X19GW8lJcom2YijX2+qtFF1ENJlHXKFM9ouXNJYgQ==" + } + }, + "npm:@fastify/forwarded": { + "type": "npm", + "name": "npm:@fastify/forwarded", + "data": { + "version": "3.0.1", + "packageName": "@fastify/forwarded", + "hash": "sha512-JqDochHFqXs3C3Ml3gOY58zM7OqO9ENqPo0UqAjAjH8L01fRZqwX9iLeX34//kiJubF7r2ZQHtBRU36vONbLlw==" + } + }, + "npm:@fastify/merge-json-schemas": { + "type": "npm", + "name": "npm:@fastify/merge-json-schemas", + "data": { + "version": "0.2.1", + "packageName": "@fastify/merge-json-schemas", + "hash": "sha512-OA3KGBCy6KtIvLf8DINC5880o5iBlDX4SxzLQS8HorJAbqluzLRn80UXU0bxZn7UOFhFgpRJDasfwn9nG4FG4A==" + } + }, + "npm:@fastify/proxy-addr": { + "type": "npm", + "name": "npm:@fastify/proxy-addr", + "data": { + "version": "5.1.0", + "packageName": "@fastify/proxy-addr", + "hash": "sha512-INS+6gh91cLUjB+PVHfu1UqcB76Sqtpyp7bnL+FYojhjygvOPA9ctiD/JDKsyD9Xgu4hUhCSJBPig/w7duNajw==" + } + }, + "npm:@floating-ui/core": { + "type": "npm", + "name": "npm:@floating-ui/core", + "data": { + "version": "1.7.5", + "packageName": "@floating-ui/core", + "hash": "sha512-1Ih4WTWyw0+lKyFMcBHGbb5U5FtuHJuujoyyr5zTaWS5EYMeT6Jb2AuDeftsCsEuchO+mM2ij5+q9crhydzLhQ==" + } + }, + "npm:@floating-ui/dom": { + "type": "npm", + "name": "npm:@floating-ui/dom", + "data": { + "version": "1.7.6", + "packageName": "@floating-ui/dom", + "hash": "sha512-9gZSAI5XM36880PPMm//9dfiEngYoC6Am2izES1FF406YFsjvyBMmeJ2g4SAju3xWwtuynNRFL2s9hgxpLI5SQ==" + } + }, + "npm:@floating-ui/react-dom": { + "type": "npm", + "name": "npm:@floating-ui/react-dom", + "data": { + "version": "2.1.6", + "packageName": "@floating-ui/react-dom", + "hash": "sha512-4JX6rEatQEvlmgU80wZyq9RT96HZJa88q8hp0pBd+LrczeDI4o6uA2M+uvxngVHo4Ihr8uibXxH6+70zhAFrVw==" + } + }, + "npm:@floating-ui/react": { + "type": "npm", + "name": "npm:@floating-ui/react", + "data": { + "version": "0.27.16", + "packageName": "@floating-ui/react", + "hash": "sha512-9O8N4SeG2z++TSM8QA/KTeKFBVCNEz/AGS7gWPJf6KFRzmRWixFRnCnkPHRDwSVZW6QPDO6uT0P2SpWNKCc9/g==" + } + }, + "npm:@floating-ui/utils": { + "type": "npm", + "name": "npm:@floating-ui/utils", + "data": { + "version": "0.2.11", + "packageName": "@floating-ui/utils", + "hash": "sha512-RiB/yIh78pcIxl6lLMG0CgBXAZ2Y0eVHqMPYugu+9U0AeT6YBeiJpf7lbdJNIugFP5SIjwNRgo4DhR1Qxi26Gg==" + } + }, + "npm:@ghostery/adblocker-content": { + "type": "npm", + "name": "npm:@ghostery/adblocker-content", + "data": { + "version": "2.14.1", + "packageName": "@ghostery/adblocker-content", + "hash": "sha512-hDE6RAL9xgQonJQiK1knOHy527PEwlAuvKaha4snE0XO6Vmtk0HThce1M2JFVRxGayWR3nTxoWbvEfGWXU7O/A==" + } + }, + "npm:@ghostery/adblocker-extended-selectors": { + "type": "npm", + "name": "npm:@ghostery/adblocker-extended-selectors", + "data": { + "version": "2.14.1", + "packageName": "@ghostery/adblocker-extended-selectors", + "hash": "sha512-3RARO2ukDrfwDqVEMD+HKZIwsM9QjjII+U1zqxhLXZ0dZRHjbtUHlZCsokqfjZ1JAa3ZVKcZrF0nZv5SA2LgyA==" + } + }, + "npm:@ghostery/adblocker-puppeteer": { + "type": "npm", + "name": "npm:@ghostery/adblocker-puppeteer", + "data": { + "version": "2.14.1", + "packageName": "@ghostery/adblocker-puppeteer", + "hash": "sha512-P7SuAWDkDMriOhtLrSMZIERV+kxc9ieFUhfkSEgXHtqieLizsNUeys9ltvtU7m75XX+RTvg6JY8DmwX0HIF/LQ==" + } + }, + "npm:@ghostery/adblocker": { + "type": "npm", + "name": "npm:@ghostery/adblocker", + "data": { + "version": "2.14.1", + "packageName": "@ghostery/adblocker", + "hash": "sha512-/cQTMJRd4/7zpgFHWqe+9wqiRPGTy+BhqfkxplvejPgq8d6spBjC6bSJV61rVHJZw5F4KOO5ReKOvuguaKG28A==" + } + }, + "npm:@ghostery/url-parser": { + "type": "npm", + "name": "npm:@ghostery/url-parser", + "data": { + "version": "1.3.1", + "packageName": "@ghostery/url-parser", + "hash": "sha512-QKqGi+7aDQ4RcyHyCwgEk6B9vWnsBP4Q7htaN0zPJV3ATqTKEQDtSTb9c/AN586oJUDs24YXKcwFYwNweY/YjQ==" + } + }, + "npm:@hono/node-server": { + "type": "npm", + "name": "npm:@hono/node-server", + "data": { + "version": "1.19.9", + "packageName": "@hono/node-server", + "hash": "sha512-vHL6w3ecZsky+8P5MD+eFfaGTyCeOHUIFYMGpQGbrBTSmNNoxv0if69rEZ5giu36weC5saFuznL411gRX7bJDw==" + } + }, + "npm:@humanfs/core": { + "type": "npm", + "name": "npm:@humanfs/core", + "data": { + "version": "0.19.1", + "packageName": "@humanfs/core", + "hash": "sha512-5DyQ4+1JEUzejeK1JGICcideyfUbGixgS9jNgex5nqkW+cY7WZhxBigmieN5Qnw9ZosSNVC9KQKyb+GUaGyKUA==" + } + }, + "npm:@humanfs/node": { + "type": "npm", + "name": "npm:@humanfs/node", + "data": { + "version": "0.16.7", + "packageName": "@humanfs/node", + "hash": "sha512-/zUx+yOsIrG4Y43Eh2peDeKCxlRt/gET6aHfaKpuq267qXdYDFViVHfMaLyygZOnl0kGWxFIgsBy8QFuTLUXEQ==" + } + }, + "npm:@humanwhocodes/module-importer": { + "type": "npm", + "name": "npm:@humanwhocodes/module-importer", + "data": { + "version": "1.0.1", + "packageName": "@humanwhocodes/module-importer", + "hash": "sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA==" + } + }, + "npm:@humanwhocodes/retry": { + "type": "npm", + "name": "npm:@humanwhocodes/retry", + "data": { + "version": "0.4.3", + "packageName": "@humanwhocodes/retry", + "hash": "sha512-bV0Tgo9K4hfPCek+aMAn81RppFKv2ySDQeMoSZuvTASywNTnVJCArCZE2FWqpvIatKu7VMRLWlR1EazvVhDyhQ==" + } + }, + "npm:@img/colour": { + "type": "npm", + "name": "npm:@img/colour", + "data": { + "version": "1.0.0", + "packageName": "@img/colour", + "hash": "sha512-A5P/LfWGFSl6nsckYtjw9da+19jB8hkJ6ACTGcDfEJ0aE+l2n2El7dsVM7UVHZQ9s2lmYMWlrS21YLy2IR1LUw==" + } + }, + "npm:@img/sharp-darwin-arm64@0.33.5": { + "type": "npm", + "name": "npm:@img/sharp-darwin-arm64@0.33.5", + "data": { + "version": "0.33.5", + "packageName": "@img/sharp-darwin-arm64", + "hash": "sha512-UT4p+iz/2H4twwAoLCqfA9UH5pI6DggwKEGuaPy7nCVQ8ZsiY5PIcrRvD1DzuY3qYL07NtIQcWnBSY/heikIFQ==" + } + }, + "npm:@img/sharp-darwin-arm64@0.34.5": { + "type": "npm", + "name": "npm:@img/sharp-darwin-arm64@0.34.5", + "data": { + "version": "0.34.5", + "packageName": "@img/sharp-darwin-arm64", + "hash": "sha512-imtQ3WMJXbMY4fxb/Ndp6HBTNVtWCUI0WdobyheGf5+ad6xX8VIDO8u2xE4qc/fr08CKG/7dDseFtn6M6g/r3w==" + } + }, + "npm:@img/sharp-darwin-x64@0.33.5": { + "type": "npm", + "name": "npm:@img/sharp-darwin-x64@0.33.5", + "data": { + "version": "0.33.5", + "packageName": "@img/sharp-darwin-x64", + "hash": "sha512-fyHac4jIc1ANYGRDxtiqelIbdWkIuQaI84Mv45KvGRRxSAa7o7d1ZKAOBaYbnepLC1WqxfpimdeWfvqqSGwR2Q==" + } + }, + "npm:@img/sharp-darwin-x64@0.34.5": { + "type": "npm", + "name": "npm:@img/sharp-darwin-x64@0.34.5", + "data": { + "version": "0.34.5", + "packageName": "@img/sharp-darwin-x64", + "hash": "sha512-YNEFAF/4KQ/PeW0N+r+aVVsoIY0/qxxikF2SWdp+NRkmMB7y9LBZAVqQ4yhGCm/H3H270OSykqmQMKLBhBJDEw==" + } + }, + "npm:@img/sharp-libvips-darwin-arm64@1.0.4": { + "type": "npm", + "name": "npm:@img/sharp-libvips-darwin-arm64@1.0.4", + "data": { + "version": "1.0.4", + "packageName": "@img/sharp-libvips-darwin-arm64", + "hash": "sha512-XblONe153h0O2zuFfTAbQYAX2JhYmDHeWikp1LM9Hul9gVPjFY427k6dFEcOL72O01QxQsWi761svJ/ev9xEDg==" + } + }, + "npm:@img/sharp-libvips-darwin-arm64@1.2.4": { + "type": "npm", + "name": "npm:@img/sharp-libvips-darwin-arm64@1.2.4", + "data": { + "version": "1.2.4", + "packageName": "@img/sharp-libvips-darwin-arm64", + "hash": "sha512-zqjjo7RatFfFoP0MkQ51jfuFZBnVE2pRiaydKJ1G/rHZvnsrHAOcQALIi9sA5co5xenQdTugCvtb1cuf78Vf4g==" + } + }, + "npm:@img/sharp-libvips-darwin-x64@1.0.4": { + "type": "npm", + "name": "npm:@img/sharp-libvips-darwin-x64@1.0.4", + "data": { + "version": "1.0.4", + "packageName": "@img/sharp-libvips-darwin-x64", + "hash": "sha512-xnGR8YuZYfJGmWPvmlunFaWJsb9T/AO2ykoP3Fz/0X5XV2aoYBPkX6xqCQvUTKKiLddarLaxpzNe+b1hjeWHAQ==" + } + }, + "npm:@img/sharp-libvips-darwin-x64@1.2.4": { + "type": "npm", + "name": "npm:@img/sharp-libvips-darwin-x64@1.2.4", + "data": { + "version": "1.2.4", + "packageName": "@img/sharp-libvips-darwin-x64", + "hash": "sha512-1IOd5xfVhlGwX+zXv2N93k0yMONvUlANylbJw1eTah8K/Jtpi15KC+WSiaX/nBmbm2HxRM1gZ0nSdjSsrZbGKg==" + } + }, + "npm:@img/sharp-libvips-linux-arm64@1.0.4": { + "type": "npm", + "name": "npm:@img/sharp-libvips-linux-arm64@1.0.4", + "data": { + "version": "1.0.4", + "packageName": "@img/sharp-libvips-linux-arm64", + "hash": "sha512-9B+taZ8DlyyqzZQnoeIvDVR/2F4EbMepXMc/NdVbkzsJbzkUjhXv/70GQJ7tdLA4YJgNP25zukcxpX2/SueNrA==" + } + }, + "npm:@img/sharp-libvips-linux-arm64@1.2.4": { + "type": "npm", + "name": "npm:@img/sharp-libvips-linux-arm64@1.2.4", + "data": { + "version": "1.2.4", + "packageName": "@img/sharp-libvips-linux-arm64", + "hash": "sha512-excjX8DfsIcJ10x1Kzr4RcWe1edC9PquDRRPx3YVCvQv+U5p7Yin2s32ftzikXojb1PIFc/9Mt28/y+iRklkrw==" + } + }, + "npm:@img/sharp-libvips-linux-arm@1.0.5": { + "type": "npm", + "name": "npm:@img/sharp-libvips-linux-arm@1.0.5", + "data": { + "version": "1.0.5", + "packageName": "@img/sharp-libvips-linux-arm", + "hash": "sha512-gvcC4ACAOPRNATg/ov8/MnbxFDJqf/pDePbBnuBDcjsI8PssmjoKMAz4LtLaVi+OnSb5FK/yIOamqDwGmXW32g==" + } + }, + "npm:@img/sharp-libvips-linux-arm@1.2.4": { + "type": "npm", + "name": "npm:@img/sharp-libvips-linux-arm@1.2.4", + "data": { + "version": "1.2.4", + "packageName": "@img/sharp-libvips-linux-arm", + "hash": "sha512-bFI7xcKFELdiNCVov8e44Ia4u2byA+l3XtsAj+Q8tfCwO6BQ8iDojYdvoPMqsKDkuoOo+X6HZA0s0q11ANMQ8A==" + } + }, + "npm:@img/sharp-libvips-linux-ppc64": { + "type": "npm", + "name": "npm:@img/sharp-libvips-linux-ppc64", + "data": { + "version": "1.2.4", + "packageName": "@img/sharp-libvips-linux-ppc64", + "hash": "sha512-FMuvGijLDYG6lW+b/UvyilUWu5Ayu+3r2d1S8notiGCIyYU/76eig1UfMmkZ7vwgOrzKzlQbFSuQfgm7GYUPpA==" + } + }, + "npm:@img/sharp-libvips-linux-riscv64": { + "type": "npm", + "name": "npm:@img/sharp-libvips-linux-riscv64", + "data": { + "version": "1.2.4", + "packageName": "@img/sharp-libvips-linux-riscv64", + "hash": "sha512-oVDbcR4zUC0ce82teubSm+x6ETixtKZBh/qbREIOcI3cULzDyb18Sr/Wcyx7NRQeQzOiHTNbZFF1UwPS2scyGA==" + } + }, + "npm:@img/sharp-libvips-linux-s390x@1.0.4": { + "type": "npm", + "name": "npm:@img/sharp-libvips-linux-s390x@1.0.4", + "data": { + "version": "1.0.4", + "packageName": "@img/sharp-libvips-linux-s390x", + "hash": "sha512-u7Wz6ntiSSgGSGcjZ55im6uvTrOxSIS8/dgoVMoiGE9I6JAfU50yH5BoDlYA1tcuGS7g/QNtetJnxA6QEsCVTA==" + } + }, + "npm:@img/sharp-libvips-linux-s390x@1.2.4": { + "type": "npm", + "name": "npm:@img/sharp-libvips-linux-s390x@1.2.4", + "data": { + "version": "1.2.4", + "packageName": "@img/sharp-libvips-linux-s390x", + "hash": "sha512-qmp9VrzgPgMoGZyPvrQHqk02uyjA0/QrTO26Tqk6l4ZV0MPWIW6LTkqOIov+J1yEu7MbFQaDpwdwJKhbJvuRxQ==" + } + }, + "npm:@img/sharp-libvips-linux-x64@1.0.4": { + "type": "npm", + "name": "npm:@img/sharp-libvips-linux-x64@1.0.4", + "data": { + "version": "1.0.4", + "packageName": "@img/sharp-libvips-linux-x64", + "hash": "sha512-MmWmQ3iPFZr0Iev+BAgVMb3ZyC4KeFc3jFxnNbEPas60e1cIfevbtuyf9nDGIzOaW9PdnDciJm+wFFaTlj5xYw==" + } + }, + "npm:@img/sharp-libvips-linux-x64": { + "type": "npm", + "name": "npm:@img/sharp-libvips-linux-x64", + "data": { + "version": "1.2.4", + "packageName": "@img/sharp-libvips-linux-x64", + "hash": "sha512-tJxiiLsmHc9Ax1bz3oaOYBURTXGIRDODBqhveVHonrHJ9/+k89qbLl0bcJns+e4t4rvaNBxaEZsFtSfAdquPrw==" + } + }, + "npm:@img/sharp-libvips-linuxmusl-arm64@1.0.4": { + "type": "npm", + "name": "npm:@img/sharp-libvips-linuxmusl-arm64@1.0.4", + "data": { + "version": "1.0.4", + "packageName": "@img/sharp-libvips-linuxmusl-arm64", + "hash": "sha512-9Ti+BbTYDcsbp4wfYib8Ctm1ilkugkA/uscUn6UXK1ldpC1JjiXbLfFZtRlBhjPZ5o1NCLiDbg8fhUPKStHoTA==" + } + }, + "npm:@img/sharp-libvips-linuxmusl-arm64@1.2.4": { + "type": "npm", + "name": "npm:@img/sharp-libvips-linuxmusl-arm64@1.2.4", + "data": { + "version": "1.2.4", + "packageName": "@img/sharp-libvips-linuxmusl-arm64", + "hash": "sha512-FVQHuwx1IIuNow9QAbYUzJ+En8KcVm9Lk5+uGUQJHaZmMECZmOlix9HnH7n1TRkXMS0pGxIJokIVB9SuqZGGXw==" + } + }, + "npm:@img/sharp-libvips-linuxmusl-x64@1.0.4": { + "type": "npm", + "name": "npm:@img/sharp-libvips-linuxmusl-x64@1.0.4", + "data": { + "version": "1.0.4", + "packageName": "@img/sharp-libvips-linuxmusl-x64", + "hash": "sha512-viYN1KX9m+/hGkJtvYYp+CCLgnJXwiQB39damAO7WMdKWlIhmYTfHjwSbQeUK/20vY154mwezd9HflVFM1wVSw==" + } + }, + "npm:@img/sharp-libvips-linuxmusl-x64": { + "type": "npm", + "name": "npm:@img/sharp-libvips-linuxmusl-x64", + "data": { + "version": "1.2.4", + "packageName": "@img/sharp-libvips-linuxmusl-x64", + "hash": "sha512-+LpyBk7L44ZIXwz/VYfglaX/okxezESc6UxDSoyo2Ks6Jxc4Y7sGjpgU9s4PMgqgjj1gZCylTieNamqA1MF7Dg==" + } + }, + "npm:@img/sharp-linux-arm64@0.33.5": { + "type": "npm", + "name": "npm:@img/sharp-linux-arm64@0.33.5", + "data": { + "version": "0.33.5", + "packageName": "@img/sharp-linux-arm64", + "hash": "sha512-JMVv+AMRyGOHtO1RFBiJy/MBsgz0x4AWrT6QoEVVTyh1E39TrCUpTRI7mx9VksGX4awWASxqCYLCV4wBZHAYxA==" + } + }, + "npm:@img/sharp-linux-arm64@0.34.5": { + "type": "npm", + "name": "npm:@img/sharp-linux-arm64@0.34.5", + "data": { + "version": "0.34.5", + "packageName": "@img/sharp-linux-arm64", + "hash": "sha512-bKQzaJRY/bkPOXyKx5EVup7qkaojECG6NLYswgktOZjaXecSAeCWiZwwiFf3/Y+O1HrauiE3FVsGxFg8c24rZg==" + } + }, + "npm:@img/sharp-linux-arm@0.33.5": { + "type": "npm", + "name": "npm:@img/sharp-linux-arm@0.33.5", + "data": { + "version": "0.33.5", + "packageName": "@img/sharp-linux-arm", + "hash": "sha512-JTS1eldqZbJxjvKaAkxhZmBqPRGmxgu+qFKSInv8moZ2AmT5Yib3EQ1c6gp493HvrvV8QgdOXdyaIBrhvFhBMQ==" + } + }, + "npm:@img/sharp-linux-arm@0.34.5": { + "type": "npm", + "name": "npm:@img/sharp-linux-arm@0.34.5", + "data": { + "version": "0.34.5", + "packageName": "@img/sharp-linux-arm", + "hash": "sha512-9dLqsvwtg1uuXBGZKsxem9595+ujv0sJ6Vi8wcTANSFpwV/GONat5eCkzQo/1O6zRIkh0m/8+5BjrRr7jDUSZw==" + } + }, + "npm:@img/sharp-linux-ppc64": { + "type": "npm", + "name": "npm:@img/sharp-linux-ppc64", + "data": { + "version": "0.34.5", + "packageName": "@img/sharp-linux-ppc64", + "hash": "sha512-7zznwNaqW6YtsfrGGDA6BRkISKAAE1Jo0QdpNYXNMHu2+0dTrPflTLNkpc8l7MUP5M16ZJcUvysVWWrMefZquA==" + } + }, + "npm:@img/sharp-linux-riscv64": { + "type": "npm", + "name": "npm:@img/sharp-linux-riscv64", + "data": { + "version": "0.34.5", + "packageName": "@img/sharp-linux-riscv64", + "hash": "sha512-51gJuLPTKa7piYPaVs8GmByo7/U7/7TZOq+cnXJIHZKavIRHAP77e3N2HEl3dgiqdD/w0yUfiJnII77PuDDFdw==" + } + }, + "npm:@img/sharp-linux-s390x@0.33.5": { + "type": "npm", + "name": "npm:@img/sharp-linux-s390x@0.33.5", + "data": { + "version": "0.33.5", + "packageName": "@img/sharp-linux-s390x", + "hash": "sha512-y/5PCd+mP4CA/sPDKl2961b+C9d+vPAveS33s6Z3zfASk2j5upL6fXVPZi7ztePZ5CuH+1kW8JtvxgbuXHRa4Q==" + } + }, + "npm:@img/sharp-linux-s390x@0.34.5": { + "type": "npm", + "name": "npm:@img/sharp-linux-s390x@0.34.5", + "data": { + "version": "0.34.5", + "packageName": "@img/sharp-linux-s390x", + "hash": "sha512-nQtCk0PdKfho3eC5MrbQoigJ2gd1CgddUMkabUj+rBevs8tZ2cULOx46E7oyX+04WGfABgIwmMC0VqieTiR4jg==" + } + }, + "npm:@img/sharp-linux-x64@0.33.5": { + "type": "npm", + "name": "npm:@img/sharp-linux-x64@0.33.5", + "data": { + "version": "0.33.5", + "packageName": "@img/sharp-linux-x64", + "hash": "sha512-opC+Ok5pRNAzuvq1AG0ar+1owsu842/Ab+4qvU879ippJBHvyY5n2mxF1izXqkPYlGuP/M556uh53jRLJmzTWA==" + } + }, + "npm:@img/sharp-linux-x64": { + "type": "npm", + "name": "npm:@img/sharp-linux-x64", + "data": { + "version": "0.34.5", + "packageName": "@img/sharp-linux-x64", + "hash": "sha512-MEzd8HPKxVxVenwAa+JRPwEC7QFjoPWuS5NZnBt6B3pu7EG2Ge0id1oLHZpPJdn3OQK+BQDiw9zStiHBTJQQQQ==" + } + }, + "npm:@img/sharp-linuxmusl-arm64@0.33.5": { + "type": "npm", + "name": "npm:@img/sharp-linuxmusl-arm64@0.33.5", + "data": { + "version": "0.33.5", + "packageName": "@img/sharp-linuxmusl-arm64", + "hash": "sha512-XrHMZwGQGvJg2V/oRSUfSAfjfPxO+4DkiRh6p2AFjLQztWUuY/o8Mq0eMQVIY7HJ1CDQUJlxGGZRw1a5bqmd1g==" + } + }, + "npm:@img/sharp-linuxmusl-arm64@0.34.5": { + "type": "npm", + "name": "npm:@img/sharp-linuxmusl-arm64@0.34.5", + "data": { + "version": "0.34.5", + "packageName": "@img/sharp-linuxmusl-arm64", + "hash": "sha512-fprJR6GtRsMt6Kyfq44IsChVZeGN97gTD331weR1ex1c1rypDEABN6Tm2xa1wE6lYb5DdEnk03NZPqA7Id21yg==" + } + }, + "npm:@img/sharp-linuxmusl-x64@0.33.5": { + "type": "npm", + "name": "npm:@img/sharp-linuxmusl-x64@0.33.5", + "data": { + "version": "0.33.5", + "packageName": "@img/sharp-linuxmusl-x64", + "hash": "sha512-WT+d/cgqKkkKySYmqoZ8y3pxx7lx9vVejxW/W4DOFMYVSkErR+w7mf2u8m/y4+xHe7yY9DAXQMWQhpnMuFfScw==" + } + }, + "npm:@img/sharp-linuxmusl-x64": { + "type": "npm", + "name": "npm:@img/sharp-linuxmusl-x64", + "data": { + "version": "0.34.5", + "packageName": "@img/sharp-linuxmusl-x64", + "hash": "sha512-Jg8wNT1MUzIvhBFxViqrEhWDGzqymo3sV7z7ZsaWbZNDLXRJZoRGrjulp60YYtV4wfY8VIKcWidjojlLcWrd8Q==" + } + }, + "npm:@img/sharp-wasm32@0.33.5": { + "type": "npm", + "name": "npm:@img/sharp-wasm32@0.33.5", + "data": { + "version": "0.33.5", + "packageName": "@img/sharp-wasm32", + "hash": "sha512-ykUW4LVGaMcU9lu9thv85CbRMAwfeadCJHRsg2GmeRa/cJxsVY9Rbd57JcMxBkKHag5U/x7TSBpScF4U8ElVzg==" + } + }, + "npm:@img/sharp-wasm32@0.34.5": { + "type": "npm", + "name": "npm:@img/sharp-wasm32@0.34.5", + "data": { + "version": "0.34.5", + "packageName": "@img/sharp-wasm32", + "hash": "sha512-OdWTEiVkY2PHwqkbBI8frFxQQFekHaSSkUIJkwzclWZe64O1X4UlUjqqqLaPbUpMOQk6FBu/HtlGXNblIs0huw==" + } + }, + "npm:@img/sharp-win32-arm64": { + "type": "npm", + "name": "npm:@img/sharp-win32-arm64", + "data": { + "version": "0.34.5", + "packageName": "@img/sharp-win32-arm64", + "hash": "sha512-WQ3AgWCWYSb2yt+IG8mnC6Jdk9Whs7O0gxphblsLvdhSpSTtmu69ZG1Gkb6NuvxsNACwiPV6cNSZNzt0KPsw7g==" + } + }, + "npm:@img/sharp-win32-ia32@0.33.5": { + "type": "npm", + "name": "npm:@img/sharp-win32-ia32@0.33.5", + "data": { + "version": "0.33.5", + "packageName": "@img/sharp-win32-ia32", + "hash": "sha512-T36PblLaTwuVJ/zw/LaH0PdZkRz5rd3SmMHX8GSmR7vtNSP5Z6bQkExdSK7xGWyxLw4sUknBuugTelgw2faBbQ==" + } + }, + "npm:@img/sharp-win32-ia32@0.34.5": { + "type": "npm", + "name": "npm:@img/sharp-win32-ia32@0.34.5", + "data": { + "version": "0.34.5", + "packageName": "@img/sharp-win32-ia32", + "hash": "sha512-FV9m/7NmeCmSHDD5j4+4pNI8Cp3aW+JvLoXcTUo0IqyjSfAZJ8dIUmijx1qaJsIiU+Hosw6xM5KijAWRJCSgNg==" + } + }, + "npm:@img/sharp-win32-x64@0.33.5": { + "type": "npm", + "name": "npm:@img/sharp-win32-x64@0.33.5", + "data": { + "version": "0.33.5", + "packageName": "@img/sharp-win32-x64", + "hash": "sha512-MpY/o8/8kj+EcnxwvrP4aTJSWw/aZ7JIGR4aBeZkZw5B7/Jn+tY9/VNwtcoGmdT7GfggGIU4kygOMSbYnOrAbg==" + } + }, + "npm:@img/sharp-win32-x64@0.34.5": { + "type": "npm", + "name": "npm:@img/sharp-win32-x64@0.34.5", + "data": { + "version": "0.34.5", + "packageName": "@img/sharp-win32-x64", + "hash": "sha512-+29YMsqY2/9eFEiW93eqWnuLcWcufowXewwSNIT6UwZdUUCrM3oFjMWH/Z6/TMmb4hlFenmfAVbpWeup2jryCw==" + } + }, + "npm:@inquirer/ansi": { + "type": "npm", + "name": "npm:@inquirer/ansi", + "data": { + "version": "2.0.4", + "packageName": "@inquirer/ansi", + "hash": "sha512-DpcZrQObd7S0R/U3bFdkcT5ebRwbTTC4D3tCc1vsJizmgPLxNJBo+AAFmrZwe8zk30P2QzgzGWZ3Q9uJwWuhIg==" + } + }, + "npm:@inquirer/checkbox": { + "type": "npm", + "name": "npm:@inquirer/checkbox", + "data": { + "version": "5.1.2", + "packageName": "@inquirer/checkbox", + "hash": "sha512-PubpMPO2nJgMufkoB3P2wwxNXEMUXnBIKi/ACzDUYfaoPuM7gSTmuxJeMscoLVEsR4qqrCMf5p0SiYGWnVJ8kw==" + } + }, + "npm:@inquirer/confirm": { + "type": "npm", + "name": "npm:@inquirer/confirm", + "data": { + "version": "6.0.10", + "packageName": "@inquirer/confirm", + "hash": "sha512-tiNyA73pgpQ0FQ7axqtoLUe4GDYjNCDcVsbgcA5anvwg2z6i+suEngLKKJrWKJolT//GFPZHwN30binDIHgSgQ==" + } + }, + "npm:@inquirer/core": { + "type": "npm", + "name": "npm:@inquirer/core", + "data": { + "version": "11.1.7", + "packageName": "@inquirer/core", + "hash": "sha512-1BiBNDk9btIwYIzNZpkikIHXWeNzNncJePPqwDyVMhXhD1ebqbpn1mKGctpoqAbzywZfdG0O4tvmsGIcOevAPQ==" + } + }, + "npm:@inquirer/editor": { + "type": "npm", + "name": "npm:@inquirer/editor", + "data": { + "version": "5.0.10", + "packageName": "@inquirer/editor", + "hash": "sha512-VJx4XyaKea7t8hEApTw5dxeIyMtWXre2OiyJcICCRZI4hkoHsMoCnl/KbUnJJExLbH9csLLHMVR144ZhFE1CwA==" + } + }, + "npm:@inquirer/expand": { + "type": "npm", + "name": "npm:@inquirer/expand", + "data": { + "version": "5.0.10", + "packageName": "@inquirer/expand", + "hash": "sha512-fC0UHJPXsTRvY2fObiwuQYaAnHrp3aDqfwKUJSdfpgv18QUG054ezGbaRNStk/BKD5IPijeMKWej8VV8O5Q/eQ==" + } + }, + "npm:@inquirer/external-editor": { + "type": "npm", + "name": "npm:@inquirer/external-editor", + "data": { + "version": "2.0.4", + "packageName": "@inquirer/external-editor", + "hash": "sha512-Prenuv9C1PHj2Itx0BcAOVBTonz02Hc2Nd2DbU67PdGUaqn0nPCnV34oDyyoaZHnmfRxkpuhh/u51ThkrO+RdA==" + } + }, + "npm:@inquirer/figures": { + "type": "npm", + "name": "npm:@inquirer/figures", + "data": { + "version": "2.0.4", + "packageName": "@inquirer/figures", + "hash": "sha512-eLBsjlS7rPS3WEhmOmh1znQ5IsQrxWzxWDxO51e4urv+iVrSnIHbq4zqJIOiyNdYLa+BVjwOtdetcQx1lWPpiQ==" + } + }, + "npm:@inquirer/input": { + "type": "npm", + "name": "npm:@inquirer/input", + "data": { + "version": "5.0.10", + "packageName": "@inquirer/input", + "hash": "sha512-nvZ6qEVeX/zVtZ1dY2hTGDQpVGD3R7MYPLODPgKO8Y+RAqxkrP3i/3NwF3fZpLdaMiNuK0z2NaYIx9tPwiSegQ==" + } + }, + "npm:@inquirer/number": { + "type": "npm", + "name": "npm:@inquirer/number", + "data": { + "version": "4.0.10", + "packageName": "@inquirer/number", + "hash": "sha512-Ht8OQstxiS3APMGjHV0aYAjRAysidWdwurWEo2i8yI5xbhOBWqizT0+MU1S2GCcuhIBg+3SgWVjEoXgfhY+XaA==" + } + }, + "npm:@inquirer/password": { + "type": "npm", + "name": "npm:@inquirer/password", + "data": { + "version": "5.0.10", + "packageName": "@inquirer/password", + "hash": "sha512-QbNyvIE8q2GTqKLYSsA8ATG+eETo+m31DSR0+AU7x3d2FhaTWzqQek80dj3JGTo743kQc6mhBR0erMjYw5jQ0A==" + } + }, + "npm:@inquirer/prompts": { + "type": "npm", + "name": "npm:@inquirer/prompts", + "data": { + "version": "8.3.2", + "packageName": "@inquirer/prompts", + "hash": "sha512-yFroiSj2iiBFlm59amdTvAcQFvWS6ph5oKESls/uqPBect7rTU2GbjyZO2DqxMGuIwVA8z0P4K6ViPcd/cp+0w==" + } + }, + "npm:@inquirer/rawlist": { + "type": "npm", + "name": "npm:@inquirer/rawlist", + "data": { + "version": "5.2.6", + "packageName": "@inquirer/rawlist", + "hash": "sha512-jfw0MLJ5TilNsa9zlJ6nmRM0ZFVZhhTICt4/6CU2Dv1ndY7l3sqqo1gIYZyMMDw0LvE1u1nzJNisfHEhJIxq5w==" + } + }, + "npm:@inquirer/search": { + "type": "npm", + "name": "npm:@inquirer/search", + "data": { + "version": "4.1.6", + "packageName": "@inquirer/search", + "hash": "sha512-3/6kTRae98hhDevENScy7cdFEuURnSpM3JbBNg8yfXLw88HgTOl+neUuy/l9W0No5NzGsLVydhBzTIxZP7yChQ==" + } + }, + "npm:@inquirer/select": { + "type": "npm", + "name": "npm:@inquirer/select", + "data": { + "version": "5.1.2", + "packageName": "@inquirer/select", + "hash": "sha512-kTK8YIkHV+f02y7bWCh7E0u2/11lul5WepVTclr3UMBtBr05PgcZNWfMa7FY57ihpQFQH/spLMHTcr0rXy50tA==" + } + }, + "npm:@inquirer/type": { + "type": "npm", + "name": "npm:@inquirer/type", + "data": { + "version": "4.0.4", + "packageName": "@inquirer/type", + "hash": "sha512-PamArxO3cFJZoOzspzo6cxVlLeIftyBsZw/S9bKY5DzxqJVZgjoj1oP8d0rskKtp7sZxBycsoer1g6UeJV1BBA==" + } + }, + "npm:@isaacs/cliui@8.0.2": { + "type": "npm", + "name": "npm:@isaacs/cliui@8.0.2", + "data": { + "version": "8.0.2", + "packageName": "@isaacs/cliui", + "hash": "sha512-O8jcjabXaleOG9DQ0+ARXWZBTfnP4WNAqzuiJK7ll44AmxGKv/J2M4TPjxjY3znBCfvBXFzucm1twdyFybFqEA==" + } + }, + "npm:@isaacs/cliui": { + "type": "npm", + "name": "npm:@isaacs/cliui", + "data": { + "version": "9.0.0", + "packageName": "@isaacs/cliui", + "hash": "sha512-AokJm4tuBHillT+FpMtxQ60n8ObyXBatq7jD2/JA9dxbDDokKQm8KMht5ibGzLVU9IJDIKK4TPKgMHEYMn3lMg==" + } + }, + "npm:@isaacs/fs-minipass": { + "type": "npm", + "name": "npm:@isaacs/fs-minipass", + "data": { + "version": "4.0.1", + "packageName": "@isaacs/fs-minipass", + "hash": "sha512-wgm9Ehl2jpeqP3zw/7mo3kRHFp5MEDhqAdwy1fTGkHAwnkGOVsgpvQhL8B5n1qlb01jV3n/bI0ZfZp5lWA1k4w==" + } + }, + "npm:@jest/diff-sequences": { + "type": "npm", + "name": "npm:@jest/diff-sequences", + "data": { + "version": "30.3.0", + "packageName": "@jest/diff-sequences", + "hash": "sha512-cG51MVnLq1ecVUaQ3fr6YuuAOitHK1S4WUJHnsPFE/quQr33ADUx1FfrTCpMCRxvy0Yr9BThKpDjSlcTi91tMA==" + } + }, + "npm:@jest/get-type": { + "type": "npm", + "name": "npm:@jest/get-type", + "data": { + "version": "30.1.0", + "packageName": "@jest/get-type", + "hash": "sha512-eMbZE2hUnx1WV0pmURZY9XoXPkUYjpc55mb0CrhtdWLtzMQPFvu/rZkTLZFTsdaVQa+Tr4eWAteqcUzoawq/uA==" + } + }, + "npm:@jest/schemas": { + "type": "npm", + "name": "npm:@jest/schemas", + "data": { + "version": "30.0.5", + "packageName": "@jest/schemas", + "hash": "sha512-DmdYgtezMkh3cpU8/1uyXakv3tJRcmcXxBOcO0tbaozPwpmh4YMsnWrQm9ZmZMfa5ocbxzbFk6O4bDPEc/iAnA==" + } + }, + "npm:@jridgewell/gen-mapping": { + "type": "npm", + "name": "npm:@jridgewell/gen-mapping", + "data": { + "version": "0.3.13", + "packageName": "@jridgewell/gen-mapping", + "hash": "sha512-2kkt/7niJ6MgEPxF0bYdQ6etZaA+fQvDcLKckhy1yIQOzaoKjBBjSj63/aLVjYE3qhRt5dvM+uUyfCg6UKCBbA==" + } + }, + "npm:@jridgewell/remapping": { + "type": "npm", + "name": "npm:@jridgewell/remapping", + "data": { + "version": "2.3.5", + "packageName": "@jridgewell/remapping", + "hash": "sha512-LI9u/+laYG4Ds1TDKSJW2YPrIlcVYOwi2fUC6xB43lueCjgxV4lffOCZCtYFiH6TNOX+tQKXx97T4IKHbhyHEQ==" + } + }, + "npm:@jridgewell/resolve-uri": { + "type": "npm", + "name": "npm:@jridgewell/resolve-uri", + "data": { + "version": "3.1.2", + "packageName": "@jridgewell/resolve-uri", + "hash": "sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw==" + } + }, + "npm:@jridgewell/sourcemap-codec": { + "type": "npm", + "name": "npm:@jridgewell/sourcemap-codec", + "data": { + "version": "1.5.5", + "packageName": "@jridgewell/sourcemap-codec", + "hash": "sha512-cYQ9310grqxueWbl+WuIUIaiUaDcj7WOq5fVhEljNVgRfOUhY9fy2zTvfoqWsnebh8Sl70VScFbICvJnLKB0Og==" + } + }, + "npm:@jridgewell/trace-mapping": { + "type": "npm", + "name": "npm:@jridgewell/trace-mapping", + "data": { + "version": "0.3.31", + "packageName": "@jridgewell/trace-mapping", + "hash": "sha512-zzNR+SdQSDJzc8joaeP8QQoCQr8NuYx2dIIytl1QeBEZHJ9uW6hebsrYgbz8hJwUQao3TWCMtmfV8Nu1twOLAw==" + } + }, + "npm:@jridgewell/trace-mapping@0.3.9": { + "type": "npm", + "name": "npm:@jridgewell/trace-mapping@0.3.9", + "data": { + "version": "0.3.9", + "packageName": "@jridgewell/trace-mapping", + "hash": "sha512-3Belt6tdc8bPgAtbcmdtNJlirVoTmEb5e2gC94PnkwEW9jI6CAHUeoG85tjWP5WquqfavoMtMwiG4P926ZKKuQ==" + } + }, + "npm:@kikobeats/content-type": { + "type": "npm", + "name": "npm:@kikobeats/content-type", + "data": { + "version": "1.0.3", + "packageName": "@kikobeats/content-type", + "hash": "sha512-5FJ7DRACUgopXmRomCLlncPMAEM3oj6r8jlTT4h/oagn9kdbXDdr3jF/Xaoqu2T1DPPqTBRQJw63QuCwhjb/PQ==" + } + }, + "npm:@kikobeats/time-span": { + "type": "npm", + "name": "npm:@kikobeats/time-span", + "data": { + "version": "1.0.11", + "packageName": "@kikobeats/time-span", + "hash": "sha512-S+msolgD9aPVoJ+ZomVD0WSKm+qJBKvJimzwq8dMvlGKbIPsAyEWhHHdSRuQT3g2VpDIctvbi9nU++kN/VPZaw==" + } + }, + "npm:@ltd/j-toml": { + "type": "npm", + "name": "npm:@ltd/j-toml", + "data": { + "version": "1.38.0", + "packageName": "@ltd/j-toml", + "hash": "sha512-lYtBcmvHustHQtg4X7TXUu1Xa/tbLC3p2wLvgQI+fWVySguVZJF60Snxijw5EiohumxZbR10kWYFFebh1zotiw==" + } + }, + "npm:@mantine/core": { + "type": "npm", + "name": "npm:@mantine/core", + "data": { + "version": "8.3.18", + "packageName": "@mantine/core", + "hash": "sha512-9tph1lTVogKPjTx02eUxDUOdXacPzK62UuSqb4TdGliI54/Xgxftq0Dfqu6XuhCxn9J5MDJaNiLDvL/1KRkYqA==" + } + }, + "npm:@mantine/hooks": { + "type": "npm", + "name": "npm:@mantine/hooks", + "data": { + "version": "8.3.18", + "packageName": "@mantine/hooks", + "hash": "sha512-QoWr9+S8gg5050TQ06aTSxtlpGjYOpIllRbjYYXlRvZeTsUqiTbVfvQROLexu4rEaK+yy9Wwriwl9PMRgbLqPw==" + } + }, + "npm:@manypkg/find-root": { + "type": "npm", + "name": "npm:@manypkg/find-root", + "data": { + "version": "3.1.0", + "packageName": "@manypkg/find-root", + "hash": "sha512-BcSqCyKhBVZ5YkSzOiheMCV41kqAFptW6xGqYSTjkVTl9XQpr+pqHhwgGCOHQtjDCv7Is6EFyA14Sm5GVbVABA==" + } + }, + "npm:@manypkg/tools": { + "type": "npm", + "name": "npm:@manypkg/tools", + "data": { + "version": "2.1.0", + "packageName": "@manypkg/tools", + "hash": "sha512-0FOIepYR4ugPYaHwK7hDeHDkfPOBVvayt9QpvRbi2LT/h2b0GaE/gM9Gag7fsnyYyNaTZ2IGyOuVg07IYepvYQ==" + } + }, + "npm:@mapbox/node-pre-gyp": { + "type": "npm", + "name": "npm:@mapbox/node-pre-gyp", + "data": { + "version": "2.0.0", + "packageName": "@mapbox/node-pre-gyp", + "hash": "sha512-llMXd39jtP0HpQLVI37Bf1m2ADlEb35GYSh1SDSLsBhR+5iCxiNGlT31yqbNtVHygHAtMy6dWFERpU2JgufhPg==" + } + }, + "npm:@motionone/animation": { + "type": "npm", + "name": "npm:@motionone/animation", + "data": { + "version": "10.18.0", + "packageName": "@motionone/animation", + "hash": "sha512-9z2p5GFGCm0gBsZbi8rVMOAJCtw1WqBTIPw3ozk06gDvZInBPIsQcHgYogEJ4yuHJ+akuW8g1SEIOpTOvYs8hw==" + } + }, + "npm:@motionone/dom": { + "type": "npm", + "name": "npm:@motionone/dom", + "data": { + "version": "10.18.0", + "packageName": "@motionone/dom", + "hash": "sha512-bKLP7E0eyO4B2UaHBBN55tnppwRnaE3KFfh3Ps9HhnAkar3Cb69kUCJY9as8LrccVYKgHA+JY5dOQqJLOPhF5A==" + } + }, + "npm:@motionone/easing": { + "type": "npm", + "name": "npm:@motionone/easing", + "data": { + "version": "10.18.0", + "packageName": "@motionone/easing", + "hash": "sha512-VcjByo7XpdLS4o9T8t99JtgxkdMcNWD3yHU/n6CLEz3bkmKDRZyYQ/wmSf6daum8ZXqfUAgFeCZSpJZIMxaCzg==" + } + }, + "npm:@motionone/generators": { + "type": "npm", + "name": "npm:@motionone/generators", + "data": { + "version": "10.18.0", + "packageName": "@motionone/generators", + "hash": "sha512-+qfkC2DtkDj4tHPu+AFKVfR/C30O1vYdvsGYaR13W/1cczPrrcjdvYCj0VLFuRMN+lP1xvpNZHCRNM4fBzn1jg==" + } + }, + "npm:@motionone/types": { + "type": "npm", + "name": "npm:@motionone/types", + "data": { + "version": "10.17.1", + "packageName": "@motionone/types", + "hash": "sha512-KaC4kgiODDz8hswCrS0btrVrzyU2CSQKO7Ps90ibBVSQmjkrt2teqta6/sOG59v7+dPnKMAg13jyqtMKV2yJ7A==" + } + }, + "npm:@motionone/utils": { + "type": "npm", + "name": "npm:@motionone/utils", + "data": { + "version": "10.18.0", + "packageName": "@motionone/utils", + "hash": "sha512-3XVF7sgyTSI2KWvTf6uLlBJ5iAgRgmvp3bpuOiQJvInd4nZ19ET8lX5unn30SlmRH7hXbBbH+Gxd0m0klJ3Xtw==" + } + }, + "npm:@mrleebo/prisma-ast": { + "type": "npm", + "name": "npm:@mrleebo/prisma-ast", + "data": { + "version": "0.13.1", + "packageName": "@mrleebo/prisma-ast", + "hash": "sha512-XyroGQXcHrZdvmrGJvsA9KNeOOgGMg1Vg9OlheUsBOSKznLMDl+YChxbkboRHvtFYJEMRYmlV3uoo/njCw05iw==" + } + }, + "npm:@napi-rs/wasm-runtime": { + "type": "npm", + "name": "npm:@napi-rs/wasm-runtime", + "data": { + "version": "0.2.4", + "packageName": "@napi-rs/wasm-runtime", + "hash": "sha512-9zESzOO5aDByvhIAsOy9TbpZ0Ur2AJbUI7UT73kcUTS2mxAMHOBaa1st/jAymNoCtvrit99kkzT1FZuXVcgfIQ==" + } + }, + "npm:@napi-rs/wasm-runtime@1.1.1": { + "type": "npm", + "name": "npm:@napi-rs/wasm-runtime@1.1.1", + "data": { + "version": "1.1.1", + "packageName": "@napi-rs/wasm-runtime", + "hash": "sha512-p64ah1M1ld8xjWv3qbvFwHiFVWrq1yFvV4f7w+mzaqiR4IlSgkqhcRdHwsGgomwzBH51sRY4NEowLxnaBjcW/A==" + } + }, + "npm:@nodelib/fs.scandir": { + "type": "npm", + "name": "npm:@nodelib/fs.scandir", + "data": { + "version": "2.1.5", + "packageName": "@nodelib/fs.scandir", + "hash": "sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==" + } + }, + "npm:@nodelib/fs.stat": { + "type": "npm", + "name": "npm:@nodelib/fs.stat", + "data": { + "version": "2.0.5", + "packageName": "@nodelib/fs.stat", + "hash": "sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==" + } + }, + "npm:@nodelib/fs.walk": { + "type": "npm", + "name": "npm:@nodelib/fs.walk", + "data": { + "version": "1.2.8", + "packageName": "@nodelib/fs.walk", + "hash": "sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==" + } + }, + "npm:@npmcli/agent": { + "type": "npm", + "name": "npm:@npmcli/agent", + "data": { + "version": "3.0.0", + "packageName": "@npmcli/agent", + "hash": "sha512-S79NdEgDQd/NGCay6TCoVzXSj74skRZIKJcpJjC5lOq34SZzyI6MqtiiWoiVWoVrTcGjNeC4ipbh1VIHlpfF5Q==" + } + }, + "npm:@npmcli/fs": { + "type": "npm", + "name": "npm:@npmcli/fs", + "data": { + "version": "4.0.0", + "packageName": "@npmcli/fs", + "hash": "sha512-/xGlezI6xfGO9NwuJlnwz/K14qD1kCSAGtacBHnGzeAIuJGazcp45KP5NuyARXoKb7cwulAGWVsbeSxdG/cb0Q==" + } + }, + "npm:@nx/nx-darwin-arm64": { + "type": "npm", + "name": "npm:@nx/nx-darwin-arm64", + "data": { + "version": "22.6.1", + "packageName": "@nx/nx-darwin-arm64", + "hash": "sha512-lixkEBGFdEsUiqEZg9LIyjfiTv12Sg1Es/yUgrdOQUAZu+5oiUPMoybyBwrvINl+fZw+PLh66jOmB4GSP2aUMQ==" + } + }, + "npm:@nx/nx-darwin-x64": { + "type": "npm", + "name": "npm:@nx/nx-darwin-x64", + "data": { + "version": "22.6.1", + "packageName": "@nx/nx-darwin-x64", + "hash": "sha512-HvgtOtuWnEf0dpfWb05N0ptdFg040YgzsKFhXg6+qaBJg5Hg0e0AXPKaSgh2PCqCIDlKu40YtwVgF7KXxXAGlA==" + } + }, + "npm:@nx/nx-freebsd-x64": { + "type": "npm", + "name": "npm:@nx/nx-freebsd-x64", + "data": { + "version": "22.6.1", + "packageName": "@nx/nx-freebsd-x64", + "hash": "sha512-g2wUltGX+7/+mdTV5d6ODa0ylrNu/krgb9YdrsbhW6oZeXYm2LeLOAnYqIlL/Kx140NLrb5Kcz7bi7JrBAw4Ow==" + } + }, + "npm:@nx/nx-linux-arm-gnueabihf": { + "type": "npm", + "name": "npm:@nx/nx-linux-arm-gnueabihf", + "data": { + "version": "22.6.1", + "packageName": "@nx/nx-linux-arm-gnueabihf", + "hash": "sha512-TTqisFPAPrj35EihvzotBbajS+0bX++PQggmRVmDmGwSTrpySRJwZnKNHYDqP6s9tigDvkNJOJftK+GkBEFRRA==" + } + }, + "npm:@nx/nx-linux-arm64-gnu": { + "type": "npm", + "name": "npm:@nx/nx-linux-arm64-gnu", + "data": { + "version": "22.6.1", + "packageName": "@nx/nx-linux-arm64-gnu", + "hash": "sha512-uIkPcanSTIcyh7/6LOoX0YpGO/7GkVhMRgyM9Mg/7ItFjCtRaeuPEPrJESsaNeB5zIVVhI4cXbGrM9NDnagiiw==" + } + }, + "npm:@nx/nx-linux-arm64-musl": { + "type": "npm", + "name": "npm:@nx/nx-linux-arm64-musl", + "data": { + "version": "22.6.1", + "packageName": "@nx/nx-linux-arm64-musl", + "hash": "sha512-eqkG8s/7remiRZ1Lo2zIrFLSNsQ/0x9fAj++CV1nqFE+rfykPQhC48F8pqsq6tUQpI5HqRQEfQgv4CnFNpLR+w==" + } + }, + "npm:@nx/nx-linux-x64-gnu": { + "type": "npm", + "name": "npm:@nx/nx-linux-x64-gnu", + "data": { + "version": "22.6.1", + "packageName": "@nx/nx-linux-x64-gnu", + "hash": "sha512-6DhSupCcDa6BYzQ48qsMK4LIdIO+y4E+4xuUBkX2YTGOZh58gctELCv7Gi6/FhiC8rzVzM7hDcygOvHCGc30zA==" + } + }, + "npm:@nx/nx-linux-x64-musl": { + "type": "npm", + "name": "npm:@nx/nx-linux-x64-musl", + "data": { + "version": "22.6.1", + "packageName": "@nx/nx-linux-x64-musl", + "hash": "sha512-QqtfaBhdfLRKGucpP8RSv7KJ51XRWpfUcXPhkb/1dKP/b9/Z0kpaCgczGHdrAtX9m6haWw+sQXYGxnStZIg/TQ==" + } + }, + "npm:@nx/nx-win32-arm64-msvc": { + "type": "npm", + "name": "npm:@nx/nx-win32-arm64-msvc", + "data": { + "version": "22.6.1", + "packageName": "@nx/nx-win32-arm64-msvc", + "hash": "sha512-8pTWXphY5IIgY3edZ5SfzP8yPjBqoAxRV5snAYDctF4e0OC1nDOUims70jLesMle8DTSWiHPSfbLVfp2HkU9WQ==" + } + }, + "npm:@nx/nx-win32-x64-msvc": { + "type": "npm", + "name": "npm:@nx/nx-win32-x64-msvc", + "data": { + "version": "22.6.1", + "packageName": "@nx/nx-win32-x64-msvc", + "hash": "sha512-XMYrtsR5O39uNR4fVpFs65rVB09FyLXvUM735r2rO7IUWWHxHWTAgVcc+gqQaAchBPqR9f1q+3u2i1Inub3Cdw==" + } + }, + "npm:@oxc-parser/binding-android-arm64": { + "type": "npm", + "name": "npm:@oxc-parser/binding-android-arm64", + "data": { + "version": "0.104.0", + "packageName": "@oxc-parser/binding-android-arm64", + "hash": "sha512-2a4tk6mtkPbGwT4Zi8pjOqMkmkrvc/Pussmas+uXoiCVv7sn7P7Jn93ATu/HK49dxIwvrvQCZ3BcS0KhAvKxlQ==" + } + }, + "npm:@oxc-parser/binding-darwin-arm64": { + "type": "npm", + "name": "npm:@oxc-parser/binding-darwin-arm64", + "data": { + "version": "0.104.0", + "packageName": "@oxc-parser/binding-darwin-arm64", + "hash": "sha512-qprm6/Hr35TSCkJoo+huRHq3siyqRyMBtNVNJQkJorZAGcffQTzzdhmzJnA7TQc+WnN36/Jq56D7/INu0/2knQ==" + } + }, + "npm:@oxc-parser/binding-darwin-x64": { + "type": "npm", + "name": "npm:@oxc-parser/binding-darwin-x64", + "data": { + "version": "0.104.0", + "packageName": "@oxc-parser/binding-darwin-x64", + "hash": "sha512-Xpu0l/l2zCUeheIrpu7dz6FxQ96W0f8Dq9rhYE1yLtTqQpMGhefnEV5Lr8qd15clwniZiKWZO6FGQawQ7npt3Q==" + } + }, + "npm:@oxc-parser/binding-freebsd-x64": { + "type": "npm", + "name": "npm:@oxc-parser/binding-freebsd-x64", + "data": { + "version": "0.104.0", + "packageName": "@oxc-parser/binding-freebsd-x64", + "hash": "sha512-I++fE3ZrhjtLzA0mqFcC/GuA6+dWNa/QkJJfm7sS4NGGQhipQQ2vikCK6jZK1YGIsbDFDrSoQCfA3tQfeK6pqg==" + } + }, + "npm:@oxc-parser/binding-linux-arm-gnueabihf": { + "type": "npm", + "name": "npm:@oxc-parser/binding-linux-arm-gnueabihf", + "data": { + "version": "0.104.0", + "packageName": "@oxc-parser/binding-linux-arm-gnueabihf", + "hash": "sha512-JkvwCNZm3ZwVG1r+c3LrcrxpJ1YXAtYEbVwOcwe+wh6LnltGoxEEZk7Zo9259jch8GiWW6AfRGDQY2FxzWJT7A==" + } + }, + "npm:@oxc-parser/binding-linux-arm64-gnu": { + "type": "npm", + "name": "npm:@oxc-parser/binding-linux-arm64-gnu", + "data": { + "version": "0.104.0", + "packageName": "@oxc-parser/binding-linux-arm64-gnu", + "hash": "sha512-CD9Tzp3dfMtujHikS0JwTIOaDUCBWItvziUTDYsMXrfVHjfSaGGsaKqIQmNsG1Qg7QdmtMZtMW0pQcHGZQ2OoA==" + } + }, + "npm:@oxc-parser/binding-linux-arm64-musl": { + "type": "npm", + "name": "npm:@oxc-parser/binding-linux-arm64-musl", + "data": { + "version": "0.104.0", + "packageName": "@oxc-parser/binding-linux-arm64-musl", + "hash": "sha512-lARUu7lrZ7CoAm2arLJQkq9Sem2NiC3DaphmPvlf2X+ngkWcYUCRxZanhe+++x/bVzKrwvxormC3IVaulP51mQ==" + } + }, + "npm:@oxc-parser/binding-linux-riscv64-gnu": { + "type": "npm", + "name": "npm:@oxc-parser/binding-linux-riscv64-gnu", + "data": { + "version": "0.104.0", + "packageName": "@oxc-parser/binding-linux-riscv64-gnu", + "hash": "sha512-hnPWrncj89/7AiMt19Juqpa04z8OpJrIf3/ToGkJafZ3A1ZN50atyNKQD5EmGs2/gdaFxF4hG3zUnLKhX9nTtQ==" + } + }, + "npm:@oxc-parser/binding-linux-s390x-gnu": { + "type": "npm", + "name": "npm:@oxc-parser/binding-linux-s390x-gnu", + "data": { + "version": "0.104.0", + "packageName": "@oxc-parser/binding-linux-s390x-gnu", + "hash": "sha512-VegcKzBgUoHQ/p5NyV+GrdEgJEXhX4AD+kCZng+viP/eNsZJgmp2K1jDBCeLSUZIdSmdldK5wlSma3Bf8MKcUQ==" + } + }, + "npm:@oxc-parser/binding-linux-x64-gnu": { + "type": "npm", + "name": "npm:@oxc-parser/binding-linux-x64-gnu", + "data": { + "version": "0.104.0", + "packageName": "@oxc-parser/binding-linux-x64-gnu", + "hash": "sha512-nDtCJIwaNgVNLR1EOgb1Xsz7VL3TOASLRbQEC+wLZycs3CCETlGNQht5OqwXPNjbem61kl4l8dvuEavu8BRT/Q==" + } + }, + "npm:@oxc-parser/binding-linux-x64-musl": { + "type": "npm", + "name": "npm:@oxc-parser/binding-linux-x64-musl", + "data": { + "version": "0.104.0", + "packageName": "@oxc-parser/binding-linux-x64-musl", + "hash": "sha512-E98MNPE3d88D2xUABQYWH2cYqLA/mmOM4XL3CZHaG5dM68sN3fzCyV0ryK5skq4hVK1L2e6jk79z5oLArsCYyA==" + } + }, + "npm:@oxc-parser/binding-openharmony-arm64": { + "type": "npm", + "name": "npm:@oxc-parser/binding-openharmony-arm64", + "data": { + "version": "0.104.0", + "packageName": "@oxc-parser/binding-openharmony-arm64", + "hash": "sha512-/FNOTg5tzlpB0hunjdI1AiJp2lC8NvBl0HpqMk0qp42KAK+yOe7nyw7XcNpMH7SvhmPe+R3oyJV8UQv953sCvA==" + } + }, + "npm:@oxc-parser/binding-wasm32-wasi": { + "type": "npm", + "name": "npm:@oxc-parser/binding-wasm32-wasi", + "data": { + "version": "0.104.0", + "packageName": "@oxc-parser/binding-wasm32-wasi", + "hash": "sha512-I+xnHDxkInzHBZV+YERIvvrt+GFwEBdgq/RUax5jLl8yHg5iPVq11qtGh3m+2v8zAjQXYPmBbcANNGWwgXqtWQ==" + } + }, + "npm:@oxc-parser/binding-win32-arm64-msvc": { + "type": "npm", + "name": "npm:@oxc-parser/binding-win32-arm64-msvc", + "data": { + "version": "0.104.0", + "packageName": "@oxc-parser/binding-win32-arm64-msvc", + "hash": "sha512-EWHVWfllZGTJFWfjfBKzvS/0uuw6/Z3+o598VTvySamy5fz2f4P1mNElvTi4tGGhbm1sGTYnYRNRW8XBAnGUGg==" + } + }, + "npm:@oxc-parser/binding-win32-x64-msvc": { + "type": "npm", + "name": "npm:@oxc-parser/binding-win32-x64-msvc", + "data": { + "version": "0.104.0", + "packageName": "@oxc-parser/binding-win32-x64-msvc", + "hash": "sha512-Nj7zeywIvxBRRd0I6NrdGufOOdiwQcAKnkRwtWo5dejPTmR1XM+9iRHJztoKacejW5+VOdEwQrfCjpa8MdLJBQ==" + } + }, + "npm:@oxc-project/types": { + "type": "npm", + "name": "npm:@oxc-project/types", + "data": { + "version": "0.104.0", + "packageName": "@oxc-project/types", + "hash": "sha512-We30k+29WpOerl3gCb1v8IFL4vmKTkghjist4TQ89yw7adGDCKFGf8+4mA4H3Ek5ajRzzBZ7BtGY8aIaOv9oFQ==" + } + }, + "npm:@oxc-project/types@0.115.0": { + "type": "npm", + "name": "npm:@oxc-project/types@0.115.0", + "data": { + "version": "0.115.0", + "packageName": "@oxc-project/types", + "hash": "sha512-4n91DKnebUS4yjUHl2g3/b2T+IUdCfmoZGhmwsovZCDaJSs+QkVAM+0AqqTxHSsHfeiMuueT75cZaZcT/m0pSw==" + } + }, + "npm:@oxc-project/types@0.122.0": { + "type": "npm", + "name": "npm:@oxc-project/types@0.122.0", + "data": { + "version": "0.122.0", + "packageName": "@oxc-project/types", + "hash": "sha512-oLAl5kBpV4w69UtFZ9xqcmTi+GENWOcPF7FCrczTiBbmC0ibXxCwyvZGbO39rCVEuLGAZM84DH0pUIyyv/YJzA==" + } + }, + "npm:@oxc-project/types@0.98.0": { + "type": "npm", + "name": "npm:@oxc-project/types@0.98.0", + "data": { + "version": "0.98.0", + "packageName": "@oxc-project/types", + "hash": "sha512-Vzmd6FsqVuz5HQVcRC/hrx7Ujo3WEVeQP7C2UNP5uy1hUY4SQvMB+93jxkI1KRHz9a/6cni3glPOtvteN+zpsw==" + } + }, + "npm:@oxc-resolver/binding-android-arm-eabi": { + "type": "npm", + "name": "npm:@oxc-resolver/binding-android-arm-eabi", + "data": { + "version": "11.19.1", + "packageName": "@oxc-resolver/binding-android-arm-eabi", + "hash": "sha512-aUs47y+xyXHUKlbhqHUjBABjvycq6YSD7bpxSW7vplUmdzAlJ93yXY6ZR0c1o1x5A/QKbENCvs3+NlY8IpIVzg==" + } + }, + "npm:@oxc-resolver/binding-android-arm64": { + "type": "npm", + "name": "npm:@oxc-resolver/binding-android-arm64", + "data": { + "version": "11.19.1", + "packageName": "@oxc-resolver/binding-android-arm64", + "hash": "sha512-oolbkRX+m7Pq2LNjr/kKgYeC7bRDMVTWPgxBGMjSpZi/+UskVo4jsMU3MLheZV55jL6c3rNelPl4oD60ggYmqA==" + } + }, + "npm:@oxc-resolver/binding-darwin-arm64": { + "type": "npm", + "name": "npm:@oxc-resolver/binding-darwin-arm64", + "data": { + "version": "11.19.1", + "packageName": "@oxc-resolver/binding-darwin-arm64", + "hash": "sha512-nUC6d2i3R5B12sUW4O646qD5cnMXf2oBGPLIIeaRfU9doJRORAbE2SGv4eW6rMqhD+G7nf2Y8TTJTLiiO3Q/dQ==" + } + }, + "npm:@oxc-resolver/binding-darwin-x64": { + "type": "npm", + "name": "npm:@oxc-resolver/binding-darwin-x64", + "data": { + "version": "11.19.1", + "packageName": "@oxc-resolver/binding-darwin-x64", + "hash": "sha512-cV50vE5+uAgNcFa3QY1JOeKDSkM/9ReIcc/9wn4TavhW/itkDGrXhw9jaKnkQnGbjJ198Yh5nbX/Gr2mr4Z5jQ==" + } + }, + "npm:@oxc-resolver/binding-freebsd-x64": { + "type": "npm", + "name": "npm:@oxc-resolver/binding-freebsd-x64", + "data": { + "version": "11.19.1", + "packageName": "@oxc-resolver/binding-freebsd-x64", + "hash": "sha512-xZOQiYGFxtk48PBKff+Zwoym7ScPAIVp4c14lfLxizO2LTTTJe5sx9vQNGrBymrf/vatSPNMD4FgsaaRigPkqw==" + } + }, + "npm:@oxc-resolver/binding-linux-arm-gnueabihf": { + "type": "npm", + "name": "npm:@oxc-resolver/binding-linux-arm-gnueabihf", + "data": { + "version": "11.19.1", + "packageName": "@oxc-resolver/binding-linux-arm-gnueabihf", + "hash": "sha512-lXZYWAC6kaGe/ky2su94e9jN9t6M0/6c+GrSlCqL//XO1cxi5lpAhnJYdyrKfm0ZEr/c7RNyAx3P7FSBcBd5+A==" + } + }, + "npm:@oxc-resolver/binding-linux-arm-musleabihf": { + "type": "npm", + "name": "npm:@oxc-resolver/binding-linux-arm-musleabihf", + "data": { + "version": "11.19.1", + "packageName": "@oxc-resolver/binding-linux-arm-musleabihf", + "hash": "sha512-veG1kKsuK5+t2IsO9q0DErYVSw2azvCVvWHnfTOS73WE0STdLLB7Q1bB9WR+yHPQM76ASkFyRbogWo1GR1+WbQ==" + } + }, + "npm:@oxc-resolver/binding-linux-arm64-gnu": { + "type": "npm", + "name": "npm:@oxc-resolver/binding-linux-arm64-gnu", + "data": { + "version": "11.19.1", + "packageName": "@oxc-resolver/binding-linux-arm64-gnu", + "hash": "sha512-heV2+jmXyYnUrpUXSPugqWDRpnsQcDm2AX4wzTuvgdlZfoNYO0O3W2AVpJYaDn9AG4JdM6Kxom8+foE7/BcSig==" + } + }, + "npm:@oxc-resolver/binding-linux-arm64-musl": { + "type": "npm", + "name": "npm:@oxc-resolver/binding-linux-arm64-musl", + "data": { + "version": "11.19.1", + "packageName": "@oxc-resolver/binding-linux-arm64-musl", + "hash": "sha512-jvo2Pjs1c9KPxMuMPIeQsgu0mOJF9rEb3y3TdpsrqwxRM+AN6/nDDwv45n5ZrUnQMsdBy5gIabioMKnQfWo9ew==" + } + }, + "npm:@oxc-resolver/binding-linux-ppc64-gnu": { + "type": "npm", + "name": "npm:@oxc-resolver/binding-linux-ppc64-gnu", + "data": { + "version": "11.19.1", + "packageName": "@oxc-resolver/binding-linux-ppc64-gnu", + "hash": "sha512-vLmdNxWCdN7Uo5suays6A/+ywBby2PWBBPXctWPg5V0+eVuzsJxgAn6MMB4mPlshskYbppjpN2Zg83ArHze9gQ==" + } + }, + "npm:@oxc-resolver/binding-linux-riscv64-gnu": { + "type": "npm", + "name": "npm:@oxc-resolver/binding-linux-riscv64-gnu", + "data": { + "version": "11.19.1", + "packageName": "@oxc-resolver/binding-linux-riscv64-gnu", + "hash": "sha512-/b+WgR+VTSBxzgOhDO7TlMXC1ufPIMR6Vj1zN+/x+MnyXGW7prTLzU9eW85Aj7Th7CCEG9ArCbTeqxCzFWdg2w==" + } + }, + "npm:@oxc-resolver/binding-linux-riscv64-musl": { + "type": "npm", + "name": "npm:@oxc-resolver/binding-linux-riscv64-musl", + "data": { + "version": "11.19.1", + "packageName": "@oxc-resolver/binding-linux-riscv64-musl", + "hash": "sha512-YlRdeWb9j42p29ROh+h4eg/OQ3dTJlpHSa+84pUM9+p6i3djtPz1q55yLJhgW9XfDch7FN1pQ/Vd6YP+xfRIuw==" + } + }, + "npm:@oxc-resolver/binding-linux-s390x-gnu": { + "type": "npm", + "name": "npm:@oxc-resolver/binding-linux-s390x-gnu", + "data": { + "version": "11.19.1", + "packageName": "@oxc-resolver/binding-linux-s390x-gnu", + "hash": "sha512-EDpafVOQWF8/MJynsjOGFThcqhRHy417sRyLfQmeiamJ8qVhSKAn2Dn2VVKUGCjVB9C46VGjhNo7nOPUi1x6uA==" + } + }, + "npm:@oxc-resolver/binding-linux-x64-gnu": { + "type": "npm", + "name": "npm:@oxc-resolver/binding-linux-x64-gnu", + "data": { + "version": "11.19.1", + "packageName": "@oxc-resolver/binding-linux-x64-gnu", + "hash": "sha512-NxjZe+rqWhr+RT8/Ik+5ptA3oz7tUw361Wa5RWQXKnfqwSSHdHyrw6IdcTfYuml9dM856AlKWZIUXDmA9kkiBQ==" + } + }, + "npm:@oxc-resolver/binding-linux-x64-musl": { + "type": "npm", + "name": "npm:@oxc-resolver/binding-linux-x64-musl", + "data": { + "version": "11.19.1", + "packageName": "@oxc-resolver/binding-linux-x64-musl", + "hash": "sha512-cM/hQwsO3ReJg5kR+SpI69DMfvNCp+A/eVR4b4YClE5bVZwz8rh2Nh05InhwI5HR/9cArbEkzMjcKgTHS6UaNw==" + } + }, + "npm:@oxc-resolver/binding-openharmony-arm64": { + "type": "npm", + "name": "npm:@oxc-resolver/binding-openharmony-arm64", + "data": { + "version": "11.19.1", + "packageName": "@oxc-resolver/binding-openharmony-arm64", + "hash": "sha512-QF080IowFB0+9Rh6RcD19bdgh49BpQHUW5TajG1qvWHvmrQznTZZjYlgE2ltLXyKY+qs4F/v5xuX1XS7Is+3qA==" + } + }, + "npm:@oxc-resolver/binding-wasm32-wasi": { + "type": "npm", + "name": "npm:@oxc-resolver/binding-wasm32-wasi", + "data": { + "version": "11.19.1", + "packageName": "@oxc-resolver/binding-wasm32-wasi", + "hash": "sha512-w8UCKhX826cP/ZLokXDS6+milN8y4X7zidsAttEdWlVoamTNf6lhBJldaWr3ukTDiye7s4HRcuPEPOXNC432Vg==" + } + }, + "npm:@oxc-resolver/binding-win32-arm64-msvc": { + "type": "npm", + "name": "npm:@oxc-resolver/binding-win32-arm64-msvc", + "data": { + "version": "11.19.1", + "packageName": "@oxc-resolver/binding-win32-arm64-msvc", + "hash": "sha512-nJ4AsUVZrVKwnU/QRdzPCCrO0TrabBqgJ8pJhXITdZGYOV28TIYystV1VFLbQ7DtAcaBHpocT5/ZJnF78YJPtQ==" + } + }, + "npm:@oxc-resolver/binding-win32-ia32-msvc": { + "type": "npm", + "name": "npm:@oxc-resolver/binding-win32-ia32-msvc", + "data": { + "version": "11.19.1", + "packageName": "@oxc-resolver/binding-win32-ia32-msvc", + "hash": "sha512-EW+ND5q2Tl+a3pH81l1QbfgbF3HmqgwLfDfVithRFheac8OTcnbXt/JxqD2GbDkb7xYEqy1zNaVFRr3oeG8npA==" + } + }, + "npm:@oxc-resolver/binding-win32-x64-msvc": { + "type": "npm", + "name": "npm:@oxc-resolver/binding-win32-x64-msvc", + "data": { + "version": "11.19.1", + "packageName": "@oxc-resolver/binding-win32-x64-msvc", + "hash": "sha512-6hIU3RQu45B+VNTY4Ru8ppFwjVS/S5qwYyGhBotmjxfEKk41I2DlGtRfGJndZ5+6lneE2pwloqunlOyZuX/XAw==" + } + }, + "npm:@oxlint-tsgolint/darwin-arm64": { + "type": "npm", + "name": "npm:@oxlint-tsgolint/darwin-arm64", + "data": { + "version": "0.17.1", + "packageName": "@oxlint-tsgolint/darwin-arm64", + "hash": "sha512-JNWNwyvSDcUQSBlQRl10XrCeNcN66TMvDw3gIDQeop5SNa1F7wFhsEx4zitYb7fGHwGh9095tsNttmuCaNXCbw==" + } + }, + "npm:@oxlint-tsgolint/darwin-x64": { + "type": "npm", + "name": "npm:@oxlint-tsgolint/darwin-x64", + "data": { + "version": "0.17.1", + "packageName": "@oxlint-tsgolint/darwin-x64", + "hash": "sha512-SluNf6CW88pgGPqQUGC5GoK5qESWo2ct1PRDbza3vbf9SK2npx3igvylGQIgE9qYYOcjgnVdLOJ0+q0gItgUmQ==" + } + }, + "npm:@oxlint-tsgolint/linux-arm64": { + "type": "npm", + "name": "npm:@oxlint-tsgolint/linux-arm64", + "data": { + "version": "0.17.1", + "packageName": "@oxlint-tsgolint/linux-arm64", + "hash": "sha512-BJxQ7/cdo2dNdGIBs2PIR6BaPA7cPfe+r1HE/uY+K7g2ygip+0LHB3GUO9GaNDZuWpsnDyjLYYowEGrVK8dokA==" + } + }, + "npm:@oxlint-tsgolint/linux-x64": { + "type": "npm", + "name": "npm:@oxlint-tsgolint/linux-x64", + "data": { + "version": "0.17.1", + "packageName": "@oxlint-tsgolint/linux-x64", + "hash": "sha512-s6UjmuaJbZ4zz/wJKdEw/s5mc0t41rgwxQJCSHPuzMumMK6ylrB7nydhDf8ObTtzhTIZdAS/2S/uayJmDcGbxw==" + } + }, + "npm:@oxlint-tsgolint/win32-arm64": { + "type": "npm", + "name": "npm:@oxlint-tsgolint/win32-arm64", + "data": { + "version": "0.17.1", + "packageName": "@oxlint-tsgolint/win32-arm64", + "hash": "sha512-EO/Oj0ixHX+UQdu9hM7YUzibZI888MvPUo/DF8lSxFBt4JNEt8qGkwJEbCYjB/1LhUNmPHzSw2Tr9dCFVfW9nw==" + } + }, + "npm:@oxlint-tsgolint/win32-x64": { + "type": "npm", + "name": "npm:@oxlint-tsgolint/win32-x64", + "data": { + "version": "0.17.1", + "packageName": "@oxlint-tsgolint/win32-x64", + "hash": "sha512-jhv7XktAJ1sMRSb//yDYTauFSZ06H81i2SLEBPaSUKxSKoPMK8p1ACUJlnmwZX2MgapRLEj1Ml22B6+HiM2YIA==" + } + }, + "npm:@oxlint/binding-android-arm-eabi": { + "type": "npm", + "name": "npm:@oxlint/binding-android-arm-eabi", + "data": { + "version": "1.56.0", + "packageName": "@oxlint/binding-android-arm-eabi", + "hash": "sha512-IyfYPthZyiSKwAv/dLjeO18SaK8MxLI9Yss2JrRDyweQAkuL3LhEy7pwIwI7uA3KQc1Vdn20kdmj3q0oUIQL6A==" + } + }, + "npm:@oxlint/binding-android-arm64": { + "type": "npm", + "name": "npm:@oxlint/binding-android-arm64", + "data": { + "version": "1.56.0", + "packageName": "@oxlint/binding-android-arm64", + "hash": "sha512-Ga5zYrzH6vc/VFxhn6MmyUnYEfy9vRpwTIks99mY3j6Nz30yYpIkWryI0QKPCgvGUtDSXVLEaMum5nA+WrNOSg==" + } + }, + "npm:@oxlint/binding-darwin-arm64": { + "type": "npm", + "name": "npm:@oxlint/binding-darwin-arm64", + "data": { + "version": "1.56.0", + "packageName": "@oxlint/binding-darwin-arm64", + "hash": "sha512-ogmbdJysnw/D4bDcpf1sPLpFThZ48lYp4aKYm10Z/6Nh1SON6NtnNhTNOlhEY296tDFItsZUz+2tgcSYqh8Eyw==" + } + }, + "npm:@oxlint/binding-darwin-x64": { + "type": "npm", + "name": "npm:@oxlint/binding-darwin-x64", + "data": { + "version": "1.56.0", + "packageName": "@oxlint/binding-darwin-x64", + "hash": "sha512-x8QE1h+RAtQ2g+3KPsP6Fk/tdz6zJQUv5c7fTrJxXV3GHOo+Ry5p/PsogU4U+iUZg0rj6hS+E4xi+mnwwlDCWQ==" + } + }, + "npm:@oxlint/binding-freebsd-x64": { + "type": "npm", + "name": "npm:@oxlint/binding-freebsd-x64", + "data": { + "version": "1.56.0", + "packageName": "@oxlint/binding-freebsd-x64", + "hash": "sha512-6G+WMZvwJpMvY7my+/SHEjb7BTk/PFbePqLpmVmUJRIsJMy/UlyYqjpuh0RCgYYkPLcnXm1rUM04kbTk8yS1Yg==" + } + }, + "npm:@oxlint/binding-linux-arm-gnueabihf": { + "type": "npm", + "name": "npm:@oxlint/binding-linux-arm-gnueabihf", + "data": { + "version": "1.56.0", + "packageName": "@oxlint/binding-linux-arm-gnueabihf", + "hash": "sha512-YYHBsk/sl7fYwQOok+6W5lBPeUEvisznV/HZD2IfZmF3Bns6cPC3Z0vCtSEOaAWTjYWN3jVsdu55jMxKlsdlhg==" + } + }, + "npm:@oxlint/binding-linux-arm-musleabihf": { + "type": "npm", + "name": "npm:@oxlint/binding-linux-arm-musleabihf", + "data": { + "version": "1.56.0", + "packageName": "@oxlint/binding-linux-arm-musleabihf", + "hash": "sha512-+AZK8rOUr78y8WT6XkDb04IbMRqauNV+vgT6f8ZLOH8wnpQ9i7Nol0XLxAu+Cq7Sb+J9wC0j6Km5hG8rj47/yQ==" + } + }, + "npm:@oxlint/binding-linux-arm64-gnu": { + "type": "npm", + "name": "npm:@oxlint/binding-linux-arm64-gnu", + "data": { + "version": "1.56.0", + "packageName": "@oxlint/binding-linux-arm64-gnu", + "hash": "sha512-urse2SnugwJRojUkGSSeH2LPMaje5Q50yQtvtL9HFckiyeqXzoFwOAZqD5TR29R2lq7UHidfFDM9EGcchcbb8A==" + } + }, + "npm:@oxlint/binding-linux-arm64-musl": { + "type": "npm", + "name": "npm:@oxlint/binding-linux-arm64-musl", + "data": { + "version": "1.56.0", + "packageName": "@oxlint/binding-linux-arm64-musl", + "hash": "sha512-rkTZkBfJ4TYLjansjSzL6mgZOdN5IvUnSq3oNJSLwBcNvy3dlgQtpHPrRxrCEbbcp7oQ6If0tkNaqfOsphYZ9g==" + } + }, + "npm:@oxlint/binding-linux-ppc64-gnu": { + "type": "npm", + "name": "npm:@oxlint/binding-linux-ppc64-gnu", + "data": { + "version": "1.56.0", + "packageName": "@oxlint/binding-linux-ppc64-gnu", + "hash": "sha512-uqL1kMH3u69/e1CH2EJhP3CP28jw2ExLsku4o8RVAZ7fySo9zOyI2fy9pVlTAp4voBLVgzndXi3SgtdyCTa2aA==" + } + }, + "npm:@oxlint/binding-linux-riscv64-gnu": { + "type": "npm", + "name": "npm:@oxlint/binding-linux-riscv64-gnu", + "data": { + "version": "1.56.0", + "packageName": "@oxlint/binding-linux-riscv64-gnu", + "hash": "sha512-j0CcMBOgV6KsRaBdsebIeiy7hCjEvq2KdEsiULf2LZqAq0v1M1lWjelhCV57LxsqaIGChXFuFJ0RiFrSRHPhSg==" + } + }, + "npm:@oxlint/binding-linux-riscv64-musl": { + "type": "npm", + "name": "npm:@oxlint/binding-linux-riscv64-musl", + "data": { + "version": "1.56.0", + "packageName": "@oxlint/binding-linux-riscv64-musl", + "hash": "sha512-7VDOiL8cDG3DQ/CY3yKjbV1c4YPvc4vH8qW09Vv+5ukq3l/Kcyr6XGCd5NvxUmxqDb2vjMpM+eW/4JrEEsUetA==" + } + }, + "npm:@oxlint/binding-linux-s390x-gnu": { + "type": "npm", + "name": "npm:@oxlint/binding-linux-s390x-gnu", + "data": { + "version": "1.56.0", + "packageName": "@oxlint/binding-linux-s390x-gnu", + "hash": "sha512-JGRpX0M+ikD3WpwJ7vKcHKV6Kg0dT52BW2Eu2BupXotYeqGXBrbY+QPkAyKO6MNgKozyTNaRh3r7g+VWgyAQYQ==" + } + }, + "npm:@oxlint/binding-linux-x64-gnu": { + "type": "npm", + "name": "npm:@oxlint/binding-linux-x64-gnu", + "data": { + "version": "1.56.0", + "packageName": "@oxlint/binding-linux-x64-gnu", + "hash": "sha512-dNaICPvtmuxFP/VbqdofrLqdS3bM/AKJN3LMJD52si44ea7Be1cBk6NpfIahaysG9Uo+L98QKddU9CD5L8UHnQ==" + } + }, + "npm:@oxlint/binding-linux-x64-musl": { + "type": "npm", + "name": "npm:@oxlint/binding-linux-x64-musl", + "data": { + "version": "1.56.0", + "packageName": "@oxlint/binding-linux-x64-musl", + "hash": "sha512-pF1vOtM+GuXmbklM1hV8WMsn6tCNPvkUzklj/Ej98JhlanbmA2RB1BILgOpwSuCTRTIYx2MXssmEyQQ90QF5aA==" + } + }, + "npm:@oxlint/binding-openharmony-arm64": { + "type": "npm", + "name": "npm:@oxlint/binding-openharmony-arm64", + "data": { + "version": "1.56.0", + "packageName": "@oxlint/binding-openharmony-arm64", + "hash": "sha512-bp8NQ4RE6fDIFLa4bdBiOA+TAvkNkg+rslR+AvvjlLTYXLy9/uKAYLQudaQouWihLD/hgkrXIKKzXi5IXOewwg==" + } + }, + "npm:@oxlint/binding-win32-arm64-msvc": { + "type": "npm", + "name": "npm:@oxlint/binding-win32-arm64-msvc", + "data": { + "version": "1.56.0", + "packageName": "@oxlint/binding-win32-arm64-msvc", + "hash": "sha512-PxT4OJDfMOQBzo3OlzFb9gkoSD+n8qSBxyVq2wQSZIHFQYGEqIRTo9M0ZStvZm5fdhMqaVYpOnJvH2hUMEDk/g==" + } + }, + "npm:@oxlint/binding-win32-ia32-msvc": { + "type": "npm", + "name": "npm:@oxlint/binding-win32-ia32-msvc", + "data": { + "version": "1.56.0", + "packageName": "@oxlint/binding-win32-ia32-msvc", + "hash": "sha512-PTRy6sIEPqy2x8PTP1baBNReN/BNEFmde0L+mYeHmjXE1Vlcc9+I5nsqENsB2yAm5wLkzPoTNCMY/7AnabT4/A==" + } + }, + "npm:@oxlint/binding-win32-x64-msvc": { + "type": "npm", + "name": "npm:@oxlint/binding-win32-x64-msvc", + "data": { + "version": "1.56.0", + "packageName": "@oxlint/binding-win32-x64-msvc", + "hash": "sha512-ZHa0clocjLmIDr+1LwoWtxRcoYniAvERotvwKUYKhH41NVfl0Y4LNbyQkwMZzwDvKklKGvGZ5+DAG58/Ik47tQ==" + } + }, + "npm:@panva/hkdf": { + "type": "npm", + "name": "npm:@panva/hkdf", + "data": { + "version": "1.2.1", + "packageName": "@panva/hkdf", + "hash": "sha512-6oclG6Y3PiDFcoyk8srjLfVKyMfVCKJ27JwNPViuXziFpmdz+MZnZN/aKY0JGXgYuO/VghU0jcOAZgWXZ1Dmrw==" + } + }, + "npm:@photonjs/cloudflare": { + "type": "npm", + "name": "npm:@photonjs/cloudflare", + "data": { + "version": "0.1.13", + "packageName": "@photonjs/cloudflare", + "hash": "sha512-gyu26ZIEJTLVU47U3OC7iqsT6tvp5qpk1KtTT0zCGpTInTc5p7s3db7xAzq+egZ09SSrU+SbQpoYAlAboLaryA==" + } + }, + "npm:@photonjs/core": { + "type": "npm", + "name": "npm:@photonjs/core", + "data": { + "version": "0.1.21", + "packageName": "@photonjs/core", + "hash": "sha512-dfAUHhWGsKYPNAKqBaOfvGPKOm6l80yWJ3dq1vSG4GICa5ZJemM1xK5JRJhT1lZD4rEHPOJfQncZ8LHiMPivcg==" + } + }, + "npm:@photonjs/express": { + "type": "npm", + "name": "npm:@photonjs/express", + "data": { + "version": "0.1.13", + "packageName": "@photonjs/express", + "hash": "sha512-3PQUhwH6jtoaCFzKB8MWLcNLgEb2vDis1x5wms6ixcHbiacUiVsCO5aMTZv96+SFd5XfLe7MzsVIazM6RLBZpA==" + } + }, + "npm:@photonjs/fastify": { + "type": "npm", + "name": "npm:@photonjs/fastify", + "data": { + "version": "0.1.12", + "packageName": "@photonjs/fastify", + "hash": "sha512-L5Keb7z0D1VL5aAaanwYCRp0RpmOZDeVW2gWhQRB8WL1E6NuEAJP/bmTyGlEjNNM/jPw19f5wlGa2erE/oICww==" + } + }, + "npm:@photonjs/h3": { + "type": "npm", + "name": "npm:@photonjs/h3", + "data": { + "version": "0.1.12", + "packageName": "@photonjs/h3", + "hash": "sha512-kszTOtsHIHP3loYXxpVqFHFqmtU8adw41c6Xvg+pJ2/2LkMus71PIZ5UHpPzacD/JB5AkPFd5IPNYwA97d+sew==" + } + }, + "npm:@photonjs/hono": { + "type": "npm", + "name": "npm:@photonjs/hono", + "data": { + "version": "0.1.12", + "packageName": "@photonjs/hono", + "hash": "sha512-S/fiW3H5ivgayfLbr2cXQQdXZ82olMwLPBbKF4I/6nNH29s2+/nvsH4kswjVg8+ZVJ/WDibO1tCensbknEvM3w==" + } + }, + "npm:@photonjs/runtime": { + "type": "npm", + "name": "npm:@photonjs/runtime", + "data": { + "version": "0.1.16", + "packageName": "@photonjs/runtime", + "hash": "sha512-04ejZcSfQ3f16cpv22tJyJbqGMepuhpg2NBVoxK8YOiJltkBK1fF5lY/EORTF8ZTxYd1M2HGvn0ZfCAlTfZmng==" + } + }, + "npm:@photonjs/srvx": { + "type": "npm", + "name": "npm:@photonjs/srvx", + "data": { + "version": "0.1.12", + "packageName": "@photonjs/srvx", + "hash": "sha512-UT/ukFPdmLsEm6Z5kKIl2DXhayxP0braPBcKRZ4bE1l2sFpN67/54JlZXyFgS/Qdmuo3Hpn94sDIX9uoEBVlGQ==" + } + }, + "npm:@photonjs/vercel": { + "type": "npm", + "name": "npm:@photonjs/vercel", + "data": { + "version": "0.1.22", + "packageName": "@photonjs/vercel", + "hash": "sha512-D+1rl94Jh/d54TwoMf+h9VlV3ITRt18Tdxc9BepSIIc7/tqHm88K9bPBzrAVQ7I+clI/0o2N7ZVVkp1hqDASQQ==" + } + }, + "npm:@pinojs/redact": { + "type": "npm", + "name": "npm:@pinojs/redact", + "data": { + "version": "0.4.0", + "packageName": "@pinojs/redact", + "hash": "sha512-k2ENnmBugE/rzQfEcdWHcCY+/FM3VLzH9cYEsbdsoqrvzAKRhUZeRNhAZvB8OitQJ1TBed3yqWtdjzS6wJKBwg==" + } + }, + "npm:@pkgjs/parseargs": { + "type": "npm", + "name": "npm:@pkgjs/parseargs", + "data": { + "version": "0.11.0", + "packageName": "@pkgjs/parseargs", + "hash": "sha512-+1VkjdD0QBLPodGrJUeqarH8VAIvQODIbwh9XpP5Syisf7YoQgsJKPNFoqqLQlu+VQ/tVSshMR6loPMn8U+dPg==" + } + }, + "npm:@pkgr/core": { + "type": "npm", + "name": "npm:@pkgr/core", + "data": { + "version": "0.2.9", + "packageName": "@pkgr/core", + "hash": "sha512-QNqXyfVS2wm9hweSYD2O7F0G06uurj9kZ96TRQE5Y9hU7+tgdZwIkbAKc5Ocy1HxEY2kuDQa6cQ1WRs/O5LFKA==" + } + }, + "npm:@polka/url": { + "type": "npm", + "name": "npm:@polka/url", + "data": { + "version": "1.0.0-next.29", + "packageName": "@polka/url", + "hash": "sha512-wwQAWhWSuHaag8c4q/KN/vCoeOJYshAIvMQwD4GpSb3OiZklFfvAgmj0VCBBImRpuF/aFgIRzllXlVX93Jevww==" + } + }, + "npm:@poppinss/colors": { + "type": "npm", + "name": "npm:@poppinss/colors", + "data": { + "version": "4.1.5", + "packageName": "@poppinss/colors", + "hash": "sha512-FvdDqtcRCtz6hThExcFOgW0cWX+xwSMWcRuQe5ZEb2m7cVQOAVZOIMt+/v9RxGiD9/OY16qJBXK4CVKWAPalBw==" + } + }, + "npm:@poppinss/dumper": { + "type": "npm", + "name": "npm:@poppinss/dumper", + "data": { + "version": "0.6.4", + "packageName": "@poppinss/dumper", + "hash": "sha512-iG0TIdqv8xJ3Lt9O8DrPRxw1MRLjNpoqiSGU03P/wNLP/s0ra0udPJ1J2Tx5M0J3H/cVyEgpbn8xUKRY9j59kQ==" + } + }, + "npm:@poppinss/exception": { + "type": "npm", + "name": "npm:@poppinss/exception", + "data": { + "version": "1.2.2", + "packageName": "@poppinss/exception", + "hash": "sha512-m7bpKCD4QMlFCjA/nKTs23fuvoVFoA83brRKmObCUNmi/9tVu8Ve3w4YQAnJu4q3Tjf5fr685HYIC/IA2zHRSg==" + } + }, + "npm:@prisma/client-runtime-utils": { + "type": "npm", + "name": "npm:@prisma/client-runtime-utils", + "data": { + "version": "7.5.0", + "packageName": "@prisma/client-runtime-utils", + "hash": "sha512-KnJ2b4Si/pcWEtK68uM+h0h1oh80CZt2suhLTVuLaSKg4n58Q9jBF/A42Kw6Ma+aThy1yAhfDeTC0JvEmeZnFQ==" + } + }, + "npm:@prisma/client": { + "type": "npm", + "name": "npm:@prisma/client", + "data": { + "version": "7.5.0", + "packageName": "@prisma/client", + "hash": "sha512-h4hF9ctp+kSRs7ENHGsFQmHAgHcfkOCxbYt6Ti9Xi8x7D+kP4tTi9x51UKmiTH/OqdyJAO+8V+r+JA5AWdav7w==" + } + }, + "npm:@prisma/config": { + "type": "npm", + "name": "npm:@prisma/config", + "data": { + "version": "7.5.0", + "packageName": "@prisma/config", + "hash": "sha512-1J/9YEX7A889xM46PYg9e8VAuSL1IUmXJW3tEhMv7XQHDWlfC9YSkIw9sTYRaq5GswGlxZ+GnnyiNsUZ9JJhSQ==" + } + }, + "npm:@prisma/debug@7.2.0": { + "type": "npm", + "name": "npm:@prisma/debug@7.2.0", + "data": { + "version": "7.2.0", + "packageName": "@prisma/debug", + "hash": "sha512-YSGTiSlBAVJPzX4ONZmMotL+ozJwQjRmZweQNIq/ER0tQJKJynNkRB3kyvt37eOfsbMCXk3gnLF6J9OJ4QWftw==" + } + }, + "npm:@prisma/debug": { + "type": "npm", + "name": "npm:@prisma/debug", + "data": { + "version": "7.5.0", + "packageName": "@prisma/debug", + "hash": "sha512-163+nffny0JoPEkDhfNco0vcuT3ymIJc9+WX7MHSQhfkeKUmKe9/wqvGk5SjppT93DtBjVwr5HPJYlXbzm6qtg==" + } + }, + "npm:@prisma/dev": { + "type": "npm", + "name": "npm:@prisma/dev", + "data": { + "version": "0.20.0", + "packageName": "@prisma/dev", + "hash": "sha512-ovlBYwWor0OzG+yH4J3Ot+AneD818BttLA+Ii7wjbcLHUrnC4tbUPVGyNd3c/+71KETPKZfjhkTSpdS15dmXNQ==" + } + }, + "npm:@prisma/engines-version": { + "type": "npm", + "name": "npm:@prisma/engines-version", + "data": { + "version": "7.5.0-15.280c870be64f457428992c43c1f6d557fab6e29e", + "packageName": "@prisma/engines-version", + "hash": "sha512-E+iRV/vbJLl8iGjVr6g/TEWokA+gjkV/doZkaQN1i/ULVdDwGnPJDfLUIFGS3BVwlG/m6L8T4x1x5isl8hGMxA==" + } + }, + "npm:@prisma/engines": { + "type": "npm", + "name": "npm:@prisma/engines", + "data": { + "version": "7.5.0", + "packageName": "@prisma/engines", + "hash": "sha512-ondGRhzoaVpRWvFaQ5wH5zS1BIbhzbKqczKjCn6j3L0Zfe/LInjcEg8+xtB49AuZBX30qyx1ZtGoootUohz2pw==" + } + }, + "npm:@prisma/fetch-engine": { + "type": "npm", + "name": "npm:@prisma/fetch-engine", + "data": { + "version": "7.5.0", + "packageName": "@prisma/fetch-engine", + "hash": "sha512-kZCl2FV54qnyrVdnII8MI6qvt7HfU6Cbiz8dZ8PXz4f4lbSw45jEB9/gEMK2SGdiNhBKyk/Wv95uthoLhGMLYA==" + } + }, + "npm:@prisma/get-platform": { + "type": "npm", + "name": "npm:@prisma/get-platform", + "data": { + "version": "7.2.0", + "packageName": "@prisma/get-platform", + "hash": "sha512-k1V0l0Td1732EHpAfi2eySTezyllok9dXb6UQanajkJQzPUGi3vO2z7jdkz67SypFTdmbnyGYxvEvYZdZsMAVA==" + } + }, + "npm:@prisma/get-platform@7.5.0": { + "type": "npm", + "name": "npm:@prisma/get-platform@7.5.0", + "data": { + "version": "7.5.0", + "packageName": "@prisma/get-platform", + "hash": "sha512-7I+2y1nu/gkEKSiHHbcZ1HPe/euGdEqJZxEEMT0246q4De1+hla0ZzlTgvaT9dHcVCgLSuCG8v39db5qUUWNgw==" + } + }, + "npm:@prisma/query-plan-executor": { + "type": "npm", + "name": "npm:@prisma/query-plan-executor", + "data": { + "version": "7.2.0", + "packageName": "@prisma/query-plan-executor", + "hash": "sha512-EOZmNzcV8uJ0mae3DhTsiHgoNCuu1J9mULQpGCh62zN3PxPTd+qI9tJvk5jOst8WHKQNwJWR3b39t0XvfBB0WQ==" + } + }, + "npm:@prisma/studio-core": { + "type": "npm", + "name": "npm:@prisma/studio-core", + "data": { + "version": "0.21.1", + "packageName": "@prisma/studio-core", + "hash": "sha512-bOGqG/eMQtKC0XVvcVLRmhWWzm/I+0QUWqAEhEBtetpuS3k3V4IWqKGUONkAIT223DNXJMxMtZp36b1FmcdPeg==" + } + }, + "npm:@puppeteer/browsers": { + "type": "npm", + "name": "npm:@puppeteer/browsers", + "data": { + "version": "2.13.0", + "packageName": "@puppeteer/browsers", + "hash": "sha512-46BZJYJjc/WwmKjsvDFykHtXrtomsCIrwYQPOP7VfMJoZY2bsDF9oROBABR3paDjDcmkUye1Pb1BqdcdiipaWA==" + } + }, + "npm:@quansync/fs": { + "type": "npm", + "name": "npm:@quansync/fs", + "data": { + "version": "1.0.0", + "packageName": "@quansync/fs", + "hash": "sha512-4TJ3DFtlf1L5LDMaM6CanJ/0lckGNtJcMjQ1NAV6zDmA0tEHKZtxNKin8EgPaVX1YzljbxckyT2tJrpQKAtngQ==" + } + }, + "npm:@radix-ui/react-icons": { + "type": "npm", + "name": "npm:@radix-ui/react-icons", + "data": { + "version": "1.3.2", + "packageName": "@radix-ui/react-icons", + "hash": "sha512-fyQIhGDhzfc9pK2kH6Pl9c4BDJGfMkPqkyIgYDthyNYoNg3wVhoJMMh19WS4Up/1KMPFVpNsT2q3WmXn2N1m6g==" + } + }, + "npm:@remix-run/node-fetch-server": { + "type": "npm", + "name": "npm:@remix-run/node-fetch-server", + "data": { + "version": "0.8.1", + "packageName": "@remix-run/node-fetch-server", + "hash": "sha512-J1dev372wtJqmqn9U/qbpbZxbJSQrogNN2+Qv1lKlpATpe/WQ9aCZfl/xSb9d2Rgh1IyLSvNxZAXPZxruO6Xig==" + } + }, + "npm:@remusao/guess-url-type": { + "type": "npm", + "name": "npm:@remusao/guess-url-type", + "data": { + "version": "2.1.0", + "packageName": "@remusao/guess-url-type", + "hash": "sha512-zI3dlTUxpjvx2GCxp9nLOSK5yEIqDCpxlAVGwb2Y49RKkS72oeNaxxo+VWS5+XQ5+Mf8Zfp9ZXIlk+G5eoEN8A==" + } + }, + "npm:@remusao/small": { + "type": "npm", + "name": "npm:@remusao/small", + "data": { + "version": "2.1.0", + "packageName": "@remusao/small", + "hash": "sha512-Y1kyjZp7JU7dXdyOdxHVNfoTr1XLZJTyQP36/esZUU/WRWq9XY0PV2HsE3CsIHuaTf4pvgWv2pvzvnZ//UHIJQ==" + } + }, + "npm:@remusao/smaz-compress": { + "type": "npm", + "name": "npm:@remusao/smaz-compress", + "data": { + "version": "2.2.0", + "packageName": "@remusao/smaz-compress", + "hash": "sha512-TXpTPgILRUYOt2rEe0+9PC12xULPvBqeMpmipzB9A7oM4fa9Ztvy9lLYzPTd7tiQEeoNa1pmxihpKfJtsxnM/w==" + } + }, + "npm:@remusao/smaz-decompress": { + "type": "npm", + "name": "npm:@remusao/smaz-decompress", + "data": { + "version": "2.2.0", + "packageName": "@remusao/smaz-decompress", + "hash": "sha512-ERAPwxPaA0/yg4hkNU7T2S+lnp9jj1sApcQMtOyROvOQyo+Zuh6Hn/oRcXr8mmjlYzyRaC7E6r3mT1nrdHR6pg==" + } + }, + "npm:@remusao/smaz": { + "type": "npm", + "name": "npm:@remusao/smaz", + "data": { + "version": "2.2.0", + "packageName": "@remusao/smaz", + "hash": "sha512-eSd3Qs0ELP/e7tU1SI5RWXcCn9KjDgvBY+KtWbL4i2QvvHhJOfdIt4v0AA3S5BbLWAr5dCEC7C4LUfogDm6q/Q==" + } + }, + "npm:@remusao/trie": { + "type": "npm", + "name": "npm:@remusao/trie", + "data": { + "version": "2.1.0", + "packageName": "@remusao/trie", + "hash": "sha512-Er3Q8q0/2OcCJPQYJOPLmCuqO0wu7cav3SPtpjlxSbjFi1x+A1pZkkLD6c9q2rGEkGW/tkrRzfrhNMt8VQjzXg==" + } + }, + "npm:@rolldown/binding-android-arm64@1.0.0-beta.51": { + "type": "npm", + "name": "npm:@rolldown/binding-android-arm64@1.0.0-beta.51", + "data": { + "version": "1.0.0-beta.51", + "packageName": "@rolldown/binding-android-arm64", + "hash": "sha512-Ctn8FUXKWWQI9pWC61P1yumS9WjQtelNS9riHwV7oCkknPGaAry4o7eFx2KgoLMnI2BgFJYpW7Im8/zX3BuONg==" + } + }, + "npm:@rolldown/binding-android-arm64@1.0.0-rc.11": { + "type": "npm", + "name": "npm:@rolldown/binding-android-arm64@1.0.0-rc.11", + "data": { + "version": "1.0.0-rc.11", + "packageName": "@rolldown/binding-android-arm64", + "hash": "sha512-SJ+/g+xNnOh6NqYxD0V3uVN4W3VfnrGsC9/hoglicgTNfABFG9JjISvkkU0dNY84MNHLWyOgxP9v9Y9pX4S7+A==" + } + }, + "npm:@rolldown/binding-android-arm64@1.0.0-rc.9": { + "type": "npm", + "name": "npm:@rolldown/binding-android-arm64@1.0.0-rc.9", + "data": { + "version": "1.0.0-rc.9", + "packageName": "@rolldown/binding-android-arm64", + "hash": "sha512-lcJL0bN5hpgJfSIz/8PIf02irmyL43P+j1pTCfbD1DbLkmGRuFIA4DD3B3ZOvGqG0XiVvRznbKtN0COQVaKUTg==" + } + }, + "npm:@rolldown/binding-darwin-arm64@1.0.0-beta.51": { + "type": "npm", + "name": "npm:@rolldown/binding-darwin-arm64@1.0.0-beta.51", + "data": { + "version": "1.0.0-beta.51", + "packageName": "@rolldown/binding-darwin-arm64", + "hash": "sha512-EL1aRW2Oq15ShUEkBPsDtLMO8GTqfb/ktM/dFaVzXKQiEE96Ss6nexMgfgQrg8dGnNpndFyffVDb5IdSibsu1g==" + } + }, + "npm:@rolldown/binding-darwin-arm64@1.0.0-rc.11": { + "type": "npm", + "name": "npm:@rolldown/binding-darwin-arm64@1.0.0-rc.11", + "data": { + "version": "1.0.0-rc.11", + "packageName": "@rolldown/binding-darwin-arm64", + "hash": "sha512-7WQgR8SfOPwmDZGFkThUvsmd/nwAWv91oCO4I5LS7RKrssPZmOt7jONN0cW17ydGC1n/+puol1IpoieKqQidmg==" + } + }, + "npm:@rolldown/binding-darwin-arm64@1.0.0-rc.9": { + "type": "npm", + "name": "npm:@rolldown/binding-darwin-arm64@1.0.0-rc.9", + "data": { + "version": "1.0.0-rc.9", + "packageName": "@rolldown/binding-darwin-arm64", + "hash": "sha512-J7Zk3kLYFsLtuH6U+F4pS2sYVzac0qkjcO5QxHS7OS7yZu2LRs+IXo+uvJ/mvpyUljDJ3LROZPoQfgBIpCMhdQ==" + } + }, + "npm:@rolldown/binding-darwin-x64@1.0.0-beta.51": { + "type": "npm", + "name": "npm:@rolldown/binding-darwin-x64@1.0.0-beta.51", + "data": { + "version": "1.0.0-beta.51", + "packageName": "@rolldown/binding-darwin-x64", + "hash": "sha512-uGtYKlFen9pMIPvkHPWZVDtmYhMQi5g5Ddsndg1gf3atScKYKYgs5aDP4DhHeTwGXQglhfBG7lEaOIZ4UAIWww==" + } + }, + "npm:@rolldown/binding-darwin-x64@1.0.0-rc.11": { + "type": "npm", + "name": "npm:@rolldown/binding-darwin-x64@1.0.0-rc.11", + "data": { + "version": "1.0.0-rc.11", + "packageName": "@rolldown/binding-darwin-x64", + "hash": "sha512-39Ks6UvIHq4rEogIfQBoBRusj0Q0nPVWIvqmwBLaT6aqQGIakHdESBVOPRRLacy4WwUPIx4ZKzfZ9PMW+IeyUQ==" + } + }, + "npm:@rolldown/binding-darwin-x64@1.0.0-rc.9": { + "type": "npm", + "name": "npm:@rolldown/binding-darwin-x64@1.0.0-rc.9", + "data": { + "version": "1.0.0-rc.9", + "packageName": "@rolldown/binding-darwin-x64", + "hash": "sha512-iwtmmghy8nhfRGeNAIltcNXzD0QMNaaA5U/NyZc1Ia4bxrzFByNMDoppoC+hl7cDiUq5/1CnFthpT9n+UtfFyg==" + } + }, + "npm:@rolldown/binding-freebsd-x64@1.0.0-beta.51": { + "type": "npm", + "name": "npm:@rolldown/binding-freebsd-x64@1.0.0-beta.51", + "data": { + "version": "1.0.0-beta.51", + "packageName": "@rolldown/binding-freebsd-x64", + "hash": "sha512-JRoVTQtHYbZj1P07JLiuTuXjiBtIa7ag7/qgKA6CIIXnAcdl4LrOf7nfDuHPJcuRKaP5dzecMgY99itvWfmUFQ==" + } + }, + "npm:@rolldown/binding-freebsd-x64@1.0.0-rc.11": { + "type": "npm", + "name": "npm:@rolldown/binding-freebsd-x64@1.0.0-rc.11", + "data": { + "version": "1.0.0-rc.11", + "packageName": "@rolldown/binding-freebsd-x64", + "hash": "sha512-jfsm0ZHfhiqrvWjJAmzsqiIFPz5e7mAoCOPBNTcNgkiid/LaFKiq92+0ojH+nmJmKYkre4t71BWXUZDNp7vsag==" + } + }, + "npm:@rolldown/binding-freebsd-x64@1.0.0-rc.9": { + "type": "npm", + "name": "npm:@rolldown/binding-freebsd-x64@1.0.0-rc.9", + "data": { + "version": "1.0.0-rc.9", + "packageName": "@rolldown/binding-freebsd-x64", + "hash": "sha512-DLFYI78SCiZr5VvdEplsVC2Vx53lnA4/Ga5C65iyldMVaErr86aiqCoNBLl92PXPfDtUYjUh+xFFor40ueNs4Q==" + } + }, + "npm:@rolldown/binding-linux-arm-gnueabihf@1.0.0-beta.51": { + "type": "npm", + "name": "npm:@rolldown/binding-linux-arm-gnueabihf@1.0.0-beta.51", + "data": { + "version": "1.0.0-beta.51", + "packageName": "@rolldown/binding-linux-arm-gnueabihf", + "hash": "sha512-BKATVnpPZ0TYBW9XfDwyd4kPGgvf964HiotIwUgpMrFOFYWqpZ+9ONNzMV4UFAYC7Hb5C2qgYQk/qj2OnAd4RQ==" + } + }, + "npm:@rolldown/binding-linux-arm-gnueabihf@1.0.0-rc.11": { + "type": "npm", + "name": "npm:@rolldown/binding-linux-arm-gnueabihf@1.0.0-rc.11", + "data": { + "version": "1.0.0-rc.11", + "packageName": "@rolldown/binding-linux-arm-gnueabihf", + "hash": "sha512-zjQaUtSyq1nVe3nxmlSCuR96T1LPlpvmJ0SZy0WJFEsV4kFbXcq2u68L4E6O0XeFj4aex9bEauqjW8UQBeAvfQ==" + } + }, + "npm:@rolldown/binding-linux-arm-gnueabihf@1.0.0-rc.9": { + "type": "npm", + "name": "npm:@rolldown/binding-linux-arm-gnueabihf@1.0.0-rc.9", + "data": { + "version": "1.0.0-rc.9", + "packageName": "@rolldown/binding-linux-arm-gnueabihf", + "hash": "sha512-CsjTmTwd0Hri6iTw/DRMK7kOZ7FwAkrO4h8YWKoX/kcj833e4coqo2wzIFywtch/8Eb5enQ/lwLM7w6JX1W5RQ==" + } + }, + "npm:@rolldown/binding-linux-arm64-gnu@1.0.0-beta.51": { + "type": "npm", + "name": "npm:@rolldown/binding-linux-arm64-gnu@1.0.0-beta.51", + "data": { + "version": "1.0.0-beta.51", + "packageName": "@rolldown/binding-linux-arm64-gnu", + "hash": "sha512-xLd7da5jkfbVsBCm1buIRdWtuXY8+hU3+6ESXY/Tk5X5DPHaifrUblhYDgmA34dQt6WyNC2kfXGgrduPEvDI6Q==" + } + }, + "npm:@rolldown/binding-linux-arm64-gnu@1.0.0-rc.11": { + "type": "npm", + "name": "npm:@rolldown/binding-linux-arm64-gnu@1.0.0-rc.11", + "data": { + "version": "1.0.0-rc.11", + "packageName": "@rolldown/binding-linux-arm64-gnu", + "hash": "sha512-WMW1yE6IOnehTcFE9eipFkm3XN63zypWlrJQ2iF7NrQ9b2LDRjumFoOGJE8RJJTJCTBAdmLMnJ8uVitACUUo1Q==" + } + }, + "npm:@rolldown/binding-linux-arm64-gnu@1.0.0-rc.9": { + "type": "npm", + "name": "npm:@rolldown/binding-linux-arm64-gnu@1.0.0-rc.9", + "data": { + "version": "1.0.0-rc.9", + "packageName": "@rolldown/binding-linux-arm64-gnu", + "hash": "sha512-2x9O2JbSPxpxMDhP9Z74mahAStibTlrBMW0520+epJH5sac7/LwZW5Bmg/E6CXuEF53JJFW509uP+lSedaUNxg==" + } + }, + "npm:@rolldown/binding-linux-arm64-musl@1.0.0-beta.51": { + "type": "npm", + "name": "npm:@rolldown/binding-linux-arm64-musl@1.0.0-beta.51", + "data": { + "version": "1.0.0-beta.51", + "packageName": "@rolldown/binding-linux-arm64-musl", + "hash": "sha512-EQFXTgHxxTzv3t5EmjUP/DfxzFYx9sMndfLsYaAY4DWF6KsK1fXGYsiupif6qPTViPC9eVmRm78q0pZU/kuIPg==" + } + }, + "npm:@rolldown/binding-linux-arm64-musl@1.0.0-rc.11": { + "type": "npm", + "name": "npm:@rolldown/binding-linux-arm64-musl@1.0.0-rc.11", + "data": { + "version": "1.0.0-rc.11", + "packageName": "@rolldown/binding-linux-arm64-musl", + "hash": "sha512-jfndI9tsfm4APzjNt6QdBkYwre5lRPUgHeDHoI7ydKUuJvz3lZeCfMsI56BZj+7BYqiKsJm7cfd/6KYV7ubrBg==" + } + }, + "npm:@rolldown/binding-linux-arm64-musl@1.0.0-rc.9": { + "type": "npm", + "name": "npm:@rolldown/binding-linux-arm64-musl@1.0.0-rc.9", + "data": { + "version": "1.0.0-rc.9", + "packageName": "@rolldown/binding-linux-arm64-musl", + "hash": "sha512-JA1QRW31ogheAIRhIg9tjMfsYbglXXYGNPLdPEYrwFxdbkQCAzvpSCSHCDWNl4hTtrol8WeboCSEpjdZK8qrCg==" + } + }, + "npm:@rolldown/binding-linux-ppc64-gnu@1.0.0-rc.11": { + "type": "npm", + "name": "npm:@rolldown/binding-linux-ppc64-gnu@1.0.0-rc.11", + "data": { + "version": "1.0.0-rc.11", + "packageName": "@rolldown/binding-linux-ppc64-gnu", + "hash": "sha512-ZlFgw46NOAGMgcdvdYwAGu2Q+SLFA9LzbJLW+iyMOJyhj5wk6P3KEE9Gct4xWwSzFoPI7JCdYmYMzVtlgQ+zfw==" + } + }, + "npm:@rolldown/binding-linux-ppc64-gnu@1.0.0-rc.9": { + "type": "npm", + "name": "npm:@rolldown/binding-linux-ppc64-gnu@1.0.0-rc.9", + "data": { + "version": "1.0.0-rc.9", + "packageName": "@rolldown/binding-linux-ppc64-gnu", + "hash": "sha512-aOKU9dJheda8Kj8Y3w9gnt9QFOO+qKPAl8SWd7JPHP+Cu0EuDAE5wokQubLzIDQWg2myXq2XhTpOVS07qqvT+w==" + } + }, + "npm:@rolldown/binding-linux-s390x-gnu@1.0.0-rc.11": { + "type": "npm", + "name": "npm:@rolldown/binding-linux-s390x-gnu@1.0.0-rc.11", + "data": { + "version": "1.0.0-rc.11", + "packageName": "@rolldown/binding-linux-s390x-gnu", + "hash": "sha512-hIOYmuT6ofM4K04XAZd3OzMySEO4K0/nc9+jmNcxNAxRi6c5UWpqfw3KMFV4MVFWL+jQsSh+bGw2VqmaPMTLyw==" + } + }, + "npm:@rolldown/binding-linux-s390x-gnu@1.0.0-rc.9": { + "type": "npm", + "name": "npm:@rolldown/binding-linux-s390x-gnu@1.0.0-rc.9", + "data": { + "version": "1.0.0-rc.9", + "packageName": "@rolldown/binding-linux-s390x-gnu", + "hash": "sha512-OalO94fqj7IWRn3VdXWty75jC5dk4C197AWEuMhIpvVv2lw9fiPhud0+bW2ctCxb3YoBZor71QHbY+9/WToadA==" + } + }, + "npm:@rolldown/binding-linux-x64-gnu@1.0.0-beta.51": { + "type": "npm", + "name": "npm:@rolldown/binding-linux-x64-gnu@1.0.0-beta.51", + "data": { + "version": "1.0.0-beta.51", + "packageName": "@rolldown/binding-linux-x64-gnu", + "hash": "sha512-p5P6Xpa68w3yFaAdSzIZJbj+AfuDnMDqNSeglBXM7UlJT14Q4zwK+rV+8Mhp9MiUb4XFISZtbI/seBprhkQbiQ==" + } + }, + "npm:@rolldown/binding-linux-x64-gnu": { + "type": "npm", + "name": "npm:@rolldown/binding-linux-x64-gnu", + "data": { + "version": "1.0.0-rc.11", + "packageName": "@rolldown/binding-linux-x64-gnu", + "hash": "sha512-qXBQQO9OvkjjQPLdUVr7Nr2t3QTZI7s4KZtfw7HzBgjbmAPSFwSv4rmET9lLSgq3rH/ndA3ngv3Qb8l2njoPNA==" + } + }, + "npm:@rolldown/binding-linux-x64-gnu@1.0.0-rc.9": { + "type": "npm", + "name": "npm:@rolldown/binding-linux-x64-gnu@1.0.0-rc.9", + "data": { + "version": "1.0.0-rc.9", + "packageName": "@rolldown/binding-linux-x64-gnu", + "hash": "sha512-cVEl1vZtBsBZna3YMjGXNvnYYrOJ7RzuWvZU0ffvJUexWkukMaDuGhUXn0rjnV0ptzGVkvc+vW9Yqy6h8YX4pg==" + } + }, + "npm:@rolldown/binding-linux-x64-musl@1.0.0-beta.51": { + "type": "npm", + "name": "npm:@rolldown/binding-linux-x64-musl@1.0.0-beta.51", + "data": { + "version": "1.0.0-beta.51", + "packageName": "@rolldown/binding-linux-x64-musl", + "hash": "sha512-sNVVyLa8HB8wkFipdfz1s6i0YWinwpbMWk5hO5S+XAYH2UH67YzUT13gs6wZTKg2x/3gtgXzYnHyF5wMIqoDAw==" + } + }, + "npm:@rolldown/binding-linux-x64-musl": { + "type": "npm", + "name": "npm:@rolldown/binding-linux-x64-musl", + "data": { + "version": "1.0.0-rc.11", + "packageName": "@rolldown/binding-linux-x64-musl", + "hash": "sha512-/tpFfoSTzUkH9LPY+cYbqZBDyyX62w5fICq9qzsHLL8uTI6BHip3Q9Uzft0wylk/i8OOwKik8OxW+QAhDmzwmg==" + } + }, + "npm:@rolldown/binding-linux-x64-musl@1.0.0-rc.9": { + "type": "npm", + "name": "npm:@rolldown/binding-linux-x64-musl@1.0.0-rc.9", + "data": { + "version": "1.0.0-rc.9", + "packageName": "@rolldown/binding-linux-x64-musl", + "hash": "sha512-UzYnKCIIc4heAKgI4PZ3dfBGUZefGCJ1TPDuLHoCzgrMYPb5Rv6TLFuYtyM4rWyHM7hymNdsg5ik2C+UD9VDbA==" + } + }, + "npm:@rolldown/binding-openharmony-arm64@1.0.0-beta.51": { + "type": "npm", + "name": "npm:@rolldown/binding-openharmony-arm64@1.0.0-beta.51", + "data": { + "version": "1.0.0-beta.51", + "packageName": "@rolldown/binding-openharmony-arm64", + "hash": "sha512-e/JMTz9Q8+T3g/deEi8DK44sFWZWGKr9AOCW5e8C8SCVWzAXqYXAG7FXBWBNzWEZK0Rcwo9TQHTQ9Q0gXgdCaA==" + } + }, + "npm:@rolldown/binding-openharmony-arm64@1.0.0-rc.11": { + "type": "npm", + "name": "npm:@rolldown/binding-openharmony-arm64@1.0.0-rc.11", + "data": { + "version": "1.0.0-rc.11", + "packageName": "@rolldown/binding-openharmony-arm64", + "hash": "sha512-mcp3Rio2w72IvdZG0oQ4bM2c2oumtwHfUfKncUM6zGgz0KgPz4YmDPQfnXEiY5t3+KD/i8HG2rOB/LxdmieK2g==" + } + }, + "npm:@rolldown/binding-openharmony-arm64@1.0.0-rc.9": { + "type": "npm", + "name": "npm:@rolldown/binding-openharmony-arm64@1.0.0-rc.9", + "data": { + "version": "1.0.0-rc.9", + "packageName": "@rolldown/binding-openharmony-arm64", + "hash": "sha512-+6zoiF+RRyf5cdlFQP7nm58mq7+/2PFaY2DNQeD4B87N36JzfF/l9mdBkkmTvSYcYPE8tMh/o3cRlsx1ldLfog==" + } + }, + "npm:@rolldown/binding-wasm32-wasi@1.0.0-beta.51": { + "type": "npm", + "name": "npm:@rolldown/binding-wasm32-wasi@1.0.0-beta.51", + "data": { + "version": "1.0.0-beta.51", + "packageName": "@rolldown/binding-wasm32-wasi", + "hash": "sha512-We3LWqSu6J9s5Y0MK+N7fUiiu37aBGPG3Pc347EoaROuAwkCS2u9xJ5dpIyLW4B49CIbS3KaPmn4kTgPb3EyPw==" + } + }, + "npm:@rolldown/binding-wasm32-wasi@1.0.0-rc.11": { + "type": "npm", + "name": "npm:@rolldown/binding-wasm32-wasi@1.0.0-rc.11", + "data": { + "version": "1.0.0-rc.11", + "packageName": "@rolldown/binding-wasm32-wasi", + "hash": "sha512-LXk5Hii1Ph9asuGRjBuz8TUxdc1lWzB7nyfdoRgI0WGPZKmCxvlKk8KfYysqtr4MfGElu/f/pEQRh8fcEgkrWw==" + } + }, + "npm:@rolldown/binding-wasm32-wasi@1.0.0-rc.9": { + "type": "npm", + "name": "npm:@rolldown/binding-wasm32-wasi@1.0.0-rc.9", + "data": { + "version": "1.0.0-rc.9", + "packageName": "@rolldown/binding-wasm32-wasi", + "hash": "sha512-rgFN6sA/dyebil3YTlL2evvi/M+ivhfnyxec7AccTpRPccno/rPoNlqybEZQBkcbZu8Hy+eqNJCqfBR8P7Pg8g==" + } + }, + "npm:@rolldown/binding-win32-arm64-msvc@1.0.0-beta.51": { + "type": "npm", + "name": "npm:@rolldown/binding-win32-arm64-msvc@1.0.0-beta.51", + "data": { + "version": "1.0.0-beta.51", + "packageName": "@rolldown/binding-win32-arm64-msvc", + "hash": "sha512-fj56buHRuMM+r/cb6ZYfNjNvO/0xeFybI6cTkTROJatdP4fvmQ1NS8D/Lm10FCSDEOkqIz8hK3TGpbAThbPHsA==" + } + }, + "npm:@rolldown/binding-win32-arm64-msvc@1.0.0-rc.11": { + "type": "npm", + "name": "npm:@rolldown/binding-win32-arm64-msvc@1.0.0-rc.11", + "data": { + "version": "1.0.0-rc.11", + "packageName": "@rolldown/binding-win32-arm64-msvc", + "hash": "sha512-dDwf5otnx0XgRY1yqxOC4ITizcdzS/8cQ3goOWv3jFAo4F+xQYni+hnMuO6+LssHHdJW7+OCVL3CoU4ycnh35Q==" + } + }, + "npm:@rolldown/binding-win32-arm64-msvc@1.0.0-rc.9": { + "type": "npm", + "name": "npm:@rolldown/binding-win32-arm64-msvc@1.0.0-rc.9", + "data": { + "version": "1.0.0-rc.9", + "packageName": "@rolldown/binding-win32-arm64-msvc", + "hash": "sha512-lHVNUG/8nlF1IQk1C0Ci574qKYyty2goMiPlRqkC5R+3LkXDkL5Dhx8ytbxq35m+pkHVIvIxviD+TWLdfeuadA==" + } + }, + "npm:@rolldown/binding-win32-ia32-msvc": { + "type": "npm", + "name": "npm:@rolldown/binding-win32-ia32-msvc", + "data": { + "version": "1.0.0-beta.51", + "packageName": "@rolldown/binding-win32-ia32-msvc", + "hash": "sha512-fkqEqaeEx8AySXiDm54b/RdINb3C0VovzJA3osMhZsbn6FoD73H0AOIiaVAtGr6x63hefruVKTX8irAm4Jkt2w==" + } + }, + "npm:@rolldown/binding-win32-x64-msvc@1.0.0-beta.51": { + "type": "npm", + "name": "npm:@rolldown/binding-win32-x64-msvc@1.0.0-beta.51", + "data": { + "version": "1.0.0-beta.51", + "packageName": "@rolldown/binding-win32-x64-msvc", + "hash": "sha512-CWuLG/HMtrVcjKGa0C4GnuxONrku89g0+CsH8nT0SNhOtREXuzwgjIXNJImpE/A/DMf9JF+1Xkrq/YRr+F/rCg==" + } + }, + "npm:@rolldown/binding-win32-x64-msvc@1.0.0-rc.11": { + "type": "npm", + "name": "npm:@rolldown/binding-win32-x64-msvc@1.0.0-rc.11", + "data": { + "version": "1.0.0-rc.11", + "packageName": "@rolldown/binding-win32-x64-msvc", + "hash": "sha512-LN4/skhSggybX71ews7dAj6r2geaMJfm3kMbK2KhFMg9B10AZXnKoLCVVgzhMHL0S+aKtr4p8QbAW8k+w95bAA==" + } + }, + "npm:@rolldown/binding-win32-x64-msvc@1.0.0-rc.9": { + "type": "npm", + "name": "npm:@rolldown/binding-win32-x64-msvc@1.0.0-rc.9", + "data": { + "version": "1.0.0-rc.9", + "packageName": "@rolldown/binding-win32-x64-msvc", + "hash": "sha512-G0oA4+w1iY5AGi5HcDTxWsoxF509hrFIPB2rduV5aDqS9FtDg1CAfa7V34qImbjfhIcA8C+RekocJZA96EarwQ==" + } + }, + "npm:@rolldown/pluginutils@1.0.0-beta.51": { + "type": "npm", + "name": "npm:@rolldown/pluginutils@1.0.0-beta.51", + "data": { + "version": "1.0.0-beta.51", + "packageName": "@rolldown/pluginutils", + "hash": "sha512-51/8cNXMrqWqX3o8DZidhwz1uYq0BhHDDSfVygAND1Skx5s1TDw3APSSxCMcFFedwgqGcx34gRouwY+m404BBQ==" + } + }, + "npm:@rolldown/pluginutils@1.0.0-rc.11": { + "type": "npm", + "name": "npm:@rolldown/pluginutils@1.0.0-rc.11", + "data": { + "version": "1.0.0-rc.11", + "packageName": "@rolldown/pluginutils", + "hash": "sha512-xQO9vbwBecJRv9EUcQ/y0dzSTJgA7Q6UVN7xp6B81+tBGSLVAK03yJ9NkJaUA7JFD91kbjxRSC/mDnmvXzbHoQ==" + } + }, + "npm:@rolldown/pluginutils@1.0.0-rc.2": { + "type": "npm", + "name": "npm:@rolldown/pluginutils@1.0.0-rc.2", + "data": { + "version": "1.0.0-rc.2", + "packageName": "@rolldown/pluginutils", + "hash": "sha512-izyXV/v+cHiRfozX62W9htOAvwMo4/bXKDrQ+vom1L1qRuexPock/7VZDAhnpHCLNejd3NJ6hiab+tO0D44Rgw==" + } + }, + "npm:@rolldown/pluginutils": { + "type": "npm", + "name": "npm:@rolldown/pluginutils", + "data": { + "version": "1.0.0-rc.7", + "packageName": "@rolldown/pluginutils", + "hash": "sha512-qujRfC8sFVInYSPPMLQByRh7zhwkGFS4+tyMQ83srV1qrxL4g8E2tyxVVyxd0+8QeBM1mIk9KbWxkegRr76XzA==" + } + }, + "npm:@rolldown/pluginutils@1.0.0-rc.9": { + "type": "npm", + "name": "npm:@rolldown/pluginutils@1.0.0-rc.9", + "data": { + "version": "1.0.0-rc.9", + "packageName": "@rolldown/pluginutils", + "hash": "sha512-w6oiRWgEBl04QkFZgmW+jnU1EC9b57Oihi2ot3HNWIQRqgHp5PnYDia5iZ5FF7rpa4EQdiqMDXjlqKGXBhsoXw==" + } + }, + "npm:@rollup/pluginutils": { + "type": "npm", + "name": "npm:@rollup/pluginutils", + "data": { + "version": "5.3.0", + "packageName": "@rollup/pluginutils", + "hash": "sha512-5EdhGZtnu3V88ces7s53hhfK5KSASnJZv8Lulpc04cWO3REESroJXg73DFsOmgbU2BhwV0E20bu2IDZb3VKW4Q==" + } + }, + "npm:@sec-ant/readable-stream": { + "type": "npm", + "name": "npm:@sec-ant/readable-stream", + "data": { + "version": "0.4.1", + "packageName": "@sec-ant/readable-stream", + "hash": "sha512-831qok9r2t8AlxLko40y2ebgSDhenenCatLVeW/uBtnHPyhHOvG0C7TvfgecV+wHzIm5KUICgzmVpWS+IMEAeg==" + } + }, + "npm:@sentry-internal/browser-utils": { + "type": "npm", + "name": "npm:@sentry-internal/browser-utils", + "data": { + "version": "10.45.0", + "packageName": "@sentry-internal/browser-utils", + "hash": "sha512-ZPZpeIarXKScvquGx2AfNKcYiVNDA4wegMmjyGVsTA2JPmP0TrJoO3UybJS6KGDeee8V3I3EfD/ruauMm7jOFQ==" + } + }, + "npm:@sentry-internal/feedback": { + "type": "npm", + "name": "npm:@sentry-internal/feedback", + "data": { + "version": "10.45.0", + "packageName": "@sentry-internal/feedback", + "hash": "sha512-vCSurazFVq7RUeYiM5X326jA5gOVrWYD6lYX2fbjBOMcyCEhDnveNxMT62zKkZDyNT/jyD194nz/cjntBUkyWA==" + } + }, + "npm:@sentry-internal/replay-canvas": { + "type": "npm", + "name": "npm:@sentry-internal/replay-canvas", + "data": { + "version": "10.45.0", + "packageName": "@sentry-internal/replay-canvas", + "hash": "sha512-nvq/AocdZTuD7y0KSiWi3gVaY0s5HOFy86mC/v1kDZmT/jsBAzN5LDkk/f1FvsWma1peqQmpUqxvhC+YIW294Q==" + } + }, + "npm:@sentry-internal/replay": { + "type": "npm", + "name": "npm:@sentry-internal/replay", + "data": { + "version": "10.45.0", + "packageName": "@sentry-internal/replay", + "hash": "sha512-vjosRoGA1bzhVAEO1oce+CsRdd70quzBeo7WvYqpcUnoLe/Rv8qpOMqWX3j26z7XfFHMExWQNQeLxmtYOArvlw==" + } + }, + "npm:@sentry/babel-plugin-component-annotate": { + "type": "npm", + "name": "npm:@sentry/babel-plugin-component-annotate", + "data": { + "version": "5.1.1", + "packageName": "@sentry/babel-plugin-component-annotate", + "hash": "sha512-x2wEpBHwsTyTF2rWsLKJlzrRF1TTIGOfX+ngdE+Yd5DBkoS58HwQv824QOviPGQRla4/ypISqAXzjdDPL/zalg==" + } + }, + "npm:@sentry/browser": { + "type": "npm", + "name": "npm:@sentry/browser", + "data": { + "version": "10.45.0", + "packageName": "@sentry/browser", + "hash": "sha512-e/a8UMiQhqqv706McSIcG6XK+AoQf9INthi2pD+giZfNRTzXTdqHzUT5OIO5hg8Am6eF63nDJc+vrYNPhzs51Q==" + } + }, + "npm:@sentry/bundler-plugin-core": { + "type": "npm", + "name": "npm:@sentry/bundler-plugin-core", + "data": { + "version": "5.1.1", + "packageName": "@sentry/bundler-plugin-core", + "hash": "sha512-F+itpwR9DyQR7gEkrXd2tigREPTvtF5lC8qu6e4anxXYRTui1+dVR0fXNwjpyAZMhIesLfXRN7WY7ggdj7hi0Q==" + } + }, + "npm:@sentry/cli-darwin": { + "type": "npm", + "name": "npm:@sentry/cli-darwin", + "data": { + "version": "2.58.5", + "packageName": "@sentry/cli-darwin", + "hash": "sha512-lYrNzenZFJftfwSya7gwrHGxtE+Kob/e1sr9lmHMFOd4utDlmq0XFDllmdZAMf21fxcPRI1GL28ejZ3bId01fQ==" + } + }, + "npm:@sentry/cli-linux-arm64": { + "type": "npm", + "name": "npm:@sentry/cli-linux-arm64", + "data": { + "version": "2.58.5", + "packageName": "@sentry/cli-linux-arm64", + "hash": "sha512-/4gywFeBqRB6tR/iGMRAJ3HRqY6Z7Yp4l8ZCbl0TDLAfHNxu7schEw4tSnm2/Hh9eNMiOVy4z58uzAWlZXAYBQ==" + } + }, + "npm:@sentry/cli-linux-arm": { + "type": "npm", + "name": "npm:@sentry/cli-linux-arm", + "data": { + "version": "2.58.5", + "packageName": "@sentry/cli-linux-arm", + "hash": "sha512-KtHweSIomYL4WVDrBrYSYJricKAAzxUgX86kc6OnlikbyOhoK6Fy8Vs6vwd52P6dvWPjgrMpUYjW2M5pYXQDUw==" + } + }, + "npm:@sentry/cli-linux-i686": { + "type": "npm", + "name": "npm:@sentry/cli-linux-i686", + "data": { + "version": "2.58.5", + "packageName": "@sentry/cli-linux-i686", + "hash": "sha512-G7261dkmyxqlMdyvyP06b+RTIVzp1gZNgglj5UksxSouSUqRd/46W/2pQeOMPhloDYo9yLtCN2YFb3Mw4aUsWw==" + } + }, + "npm:@sentry/cli-linux-x64": { + "type": "npm", + "name": "npm:@sentry/cli-linux-x64", + "data": { + "version": "2.58.5", + "packageName": "@sentry/cli-linux-x64", + "hash": "sha512-rP04494RSmt86xChkQ+ecBNRYSPbyXc4u0IA7R7N1pSLCyO74e5w5Al+LnAq35cMfVbZgz5Sm0iGLjyiUu4I1g==" + } + }, + "npm:@sentry/cli-win32-arm64": { + "type": "npm", + "name": "npm:@sentry/cli-win32-arm64", + "data": { + "version": "2.58.5", + "packageName": "@sentry/cli-win32-arm64", + "hash": "sha512-AOJ2nCXlQL1KBaCzv38m3i2VmSHNurUpm7xVKd6yAHX+ZoVBI8VT0EgvwmtJR2TY2N2hNCC7UrgRmdUsQ152bA==" + } + }, + "npm:@sentry/cli-win32-i686": { + "type": "npm", + "name": "npm:@sentry/cli-win32-i686", + "data": { + "version": "2.58.5", + "packageName": "@sentry/cli-win32-i686", + "hash": "sha512-EsuboLSOnlrN7MMPJ1eFvfMDm+BnzOaSWl8eYhNo8W/BIrmNgpRUdBwnWn9Q2UOjJj5ZopukmsiMYtU/D7ml9g==" + } + }, + "npm:@sentry/cli-win32-x64": { + "type": "npm", + "name": "npm:@sentry/cli-win32-x64", + "data": { + "version": "2.58.5", + "packageName": "@sentry/cli-win32-x64", + "hash": "sha512-IZf+XIMiQwj+5NzqbOQfywlOitmCV424Vtf9c+ep61AaVScUFD1TSrQbOcJJv5xGxhlxNOMNgMeZhdexdzrKZg==" + } + }, + "npm:@sentry/cli": { + "type": "npm", + "name": "npm:@sentry/cli", + "data": { + "version": "2.58.5", + "packageName": "@sentry/cli", + "hash": "sha512-tavJ7yGUZV+z3Ct2/ZB6mg339i08sAk6HDkgqmSRuQEu2iLS5sl9HIvuXfM6xjv8fwlgFOSy++WNABNAcGHUbg==" + } + }, + "npm:@sentry/core": { + "type": "npm", + "name": "npm:@sentry/core", + "data": { + "version": "10.45.0", + "packageName": "@sentry/core", + "hash": "sha512-s69UXxvefeQxuZ5nY7/THtTrIEvJxNVCp3ns4kwoCw1qMpgpvn/296WCKVmM7MiwnaAdzEKnAvLAwaxZc2nM7Q==" + } + }, + "npm:@sentry/react": { + "type": "npm", + "name": "npm:@sentry/react", + "data": { + "version": "10.45.0", + "packageName": "@sentry/react", + "hash": "sha512-jLezuxi4BUIU3raKyAPR5xMbQG/nhwnWmKo5p11NCbLmWzkS+lxoyDTUB4B8TAKZLfdtdkKLOn1S0tFc8vbUHw==" + } + }, + "npm:@sentry/rollup-plugin": { + "type": "npm", + "name": "npm:@sentry/rollup-plugin", + "data": { + "version": "5.1.1", + "packageName": "@sentry/rollup-plugin", + "hash": "sha512-1d5NkdRR6aKWBP7czkY8sFFWiKnfmfRpQOj+m9bJTsyTjbMiEQJst6315w5pCVlRItPhBqpAraqAhutZFgvyVg==" + } + }, + "npm:@sentry/solid": { + "type": "npm", + "name": "npm:@sentry/solid", + "data": { + "version": "10.45.0", + "packageName": "@sentry/solid", + "hash": "sha512-dhdFrlCHeA39ukkXTGI6ltW3z5flMI3zeRT54+q/e700VR7802OpojHJlboz1YB5wStH+grhVnxf7p0UZyz7Nw==" + } + }, + "npm:@sentry/vite-plugin": { + "type": "npm", + "name": "npm:@sentry/vite-plugin", + "data": { + "version": "5.1.1", + "packageName": "@sentry/vite-plugin", + "hash": "sha512-i6NWUDi2SDikfSUeMJvJTRdwEKYSfTd+mvBO2Ja51S1YK+hnickBuDfD+RvPerIXLuyRu3GamgNPbNqgCGUg/Q==" + } + }, + "npm:@sentry/vue": { + "type": "npm", + "name": "npm:@sentry/vue", + "data": { + "version": "10.45.0", + "packageName": "@sentry/vue", + "hash": "sha512-p6ghTgQtiCBZ+Yw0B2xmC69S8AdCRRsYvbTHW7MJYspwNnJDs7rqgCBqOxNhvr3tsKdDuEOEHLtf/5hbKi+8xQ==" + } + }, + "npm:@sinclair/typebox": { + "type": "npm", + "name": "npm:@sinclair/typebox", + "data": { + "version": "0.34.48", + "packageName": "@sinclair/typebox", + "hash": "sha512-kKJTNuK3AQOrgjjotVxMrCn1sUJwM76wMszfq1kdU4uYVJjvEWuFQ6HgvLt4Xz3fSmZlTOxJ/Ie13KnIcWQXFA==" + } + }, + "npm:@sindresorhus/is": { + "type": "npm", + "name": "npm:@sindresorhus/is", + "data": { + "version": "4.6.0", + "packageName": "@sindresorhus/is", + "hash": "sha512-t09vSN3MdfsyCHoFcTRCH/iUtG7OJ0CsjzB8cjAmKc/va/kIgeDI/TxsigdncE/4be734m0cvIYwNaV4i2XqAw==" + } + }, + "npm:@sindresorhus/is@7.1.0": { + "type": "npm", + "name": "npm:@sindresorhus/is@7.1.0", + "data": { + "version": "7.1.0", + "packageName": "@sindresorhus/is", + "hash": "sha512-7F/yz2IphV39hiS2zB4QYVkivrptHHh0K8qJJd9HhuWSdvf8AN7NpebW3CcDZDBQsUPMoDKWsY2WWgW7bqOcfA==" + } + }, + "npm:@sindresorhus/merge-streams": { + "type": "npm", + "name": "npm:@sindresorhus/merge-streams", + "data": { + "version": "4.0.0", + "packageName": "@sindresorhus/merge-streams", + "hash": "sha512-tlqY9xq5ukxTUZBmoOp+m61cqwQD5pHJtFY3Mn8CA8ps6yghLH/Hw8UPdqg4OLmFW3IFlcXnQNmo/dh8HzXYIQ==" + } + }, + "npm:@solid-primitives/props": { + "type": "npm", + "name": "npm:@solid-primitives/props", + "data": { + "version": "3.2.2", + "packageName": "@solid-primitives/props", + "hash": "sha512-lZOTwFJajBrshSyg14nBMEP0h8MXzPowGO0s3OeiR3z6nXHTfj0FhzDtJMv+VYoRJKQHG2QRnJTgCzK6erARAw==" + } + }, + "npm:@solid-primitives/refs": { + "type": "npm", + "name": "npm:@solid-primitives/refs", + "data": { + "version": "1.1.2", + "packageName": "@solid-primitives/refs", + "hash": "sha512-K7tf2thy7L+YJjdqXspXOg5xvNEOH8tgEWsp0+1mQk3obHBRD6hEjYZk7p7FlJphSZImS35je3UfmWuD7MhDfg==" + } + }, + "npm:@solid-primitives/scheduled": { + "type": "npm", + "name": "npm:@solid-primitives/scheduled", + "data": { + "version": "1.5.3", + "packageName": "@solid-primitives/scheduled", + "hash": "sha512-oNwLE6E6lxJAWrc8QXuwM0k2oU1BnANnkChwMw82aK1j3+mWGJkG1IFe5gCwbV+afYmjI76t9JJV3md/8tLw+g==" + } + }, + "npm:@solid-primitives/transition-group": { + "type": "npm", + "name": "npm:@solid-primitives/transition-group", + "data": { + "version": "1.1.2", + "packageName": "@solid-primitives/transition-group", + "hash": "sha512-gnHS0OmcdjeoHN9n7Khu8KNrOlRc8a2weETDt2YT6o1zeW/XtUC6Db3Q9pkMU/9cCKdEmN4b0a/41MKAHRhzWA==" + } + }, + "npm:@solid-primitives/utils": { + "type": "npm", + "name": "npm:@solid-primitives/utils", + "data": { + "version": "6.3.2", + "packageName": "@solid-primitives/utils", + "hash": "sha512-hZ/M/qr25QOCcwDPOHtGjxTD8w2mNyVAYvcfgwzBHq2RwNqHNdDNsMZYap20+ruRwW4A3Cdkczyoz0TSxLCAPQ==" + } + }, + "npm:@speed-highlight/core": { + "type": "npm", + "name": "npm:@speed-highlight/core", + "data": { + "version": "1.2.7", + "packageName": "@speed-highlight/core", + "hash": "sha512-0dxmVj4gxg3Jg879kvFS/msl4s9F3T9UXC1InxgOf7t5NvcPD97u/WTA5vL/IxWHMn7qSxBozqrnnE2wvl1m8g==" + } + }, + "npm:@stackblitz/sdk": { + "type": "npm", + "name": "npm:@stackblitz/sdk", + "data": { + "version": "1.11.0", + "packageName": "@stackblitz/sdk", + "hash": "sha512-DFQGANNkEZRzFk1/rDP6TcFdM82ycHE+zfl9C/M/jXlH68jiqHWHFMQURLELoD8koxvu/eW5uhg94NSAZlYrUQ==" + } + }, + "npm:@standard-schema/spec": { + "type": "npm", + "name": "npm:@standard-schema/spec", + "data": { + "version": "1.1.0", + "packageName": "@standard-schema/spec", + "hash": "sha512-l2aFy5jALhniG5HgqrD6jXLi/rUWrKvqN/qJx6yoJsgKhblVd+iqqU4RCXavm/jPityDo5TCvKMnpjKnOriy0w==" + } + }, + "npm:@szmarczak/http-timer": { + "type": "npm", + "name": "npm:@szmarczak/http-timer", + "data": { + "version": "4.0.6", + "packageName": "@szmarczak/http-timer", + "hash": "sha512-4BAffykYOgO+5nzBWYwE3W90sBgLJoUPRWWcL8wlyiM8IB8ipJz3UMJ9KXQd1RKQXpKp8Tutn80HZtWsu2u76w==" + } + }, + "npm:@tailwindcss/node": { + "type": "npm", + "name": "npm:@tailwindcss/node", + "data": { + "version": "4.2.2", + "packageName": "@tailwindcss/node", + "hash": "sha512-pXS+wJ2gZpVXqFaUEjojq7jzMpTGf8rU6ipJz5ovJV6PUGmlJ+jvIwGrzdHdQ80Sg+wmQxUFuoW1UAAwHNEdFA==" + } + }, + "npm:@tailwindcss/oxide-android-arm64": { + "type": "npm", + "name": "npm:@tailwindcss/oxide-android-arm64", + "data": { + "version": "4.2.2", + "packageName": "@tailwindcss/oxide-android-arm64", + "hash": "sha512-dXGR1n+P3B6748jZO/SvHZq7qBOqqzQ+yFrXpoOWWALWndF9MoSKAT3Q0fYgAzYzGhxNYOoysRvYlpixRBBoDg==" + } + }, + "npm:@tailwindcss/oxide-darwin-arm64": { + "type": "npm", + "name": "npm:@tailwindcss/oxide-darwin-arm64", + "data": { + "version": "4.2.2", + "packageName": "@tailwindcss/oxide-darwin-arm64", + "hash": "sha512-iq9Qjr6knfMpZHj55/37ouZeykwbDqF21gPFtfnhCCKGDcPI/21FKC9XdMO/XyBM7qKORx6UIhGgg6jLl7BZlg==" + } + }, + "npm:@tailwindcss/oxide-darwin-x64": { + "type": "npm", + "name": "npm:@tailwindcss/oxide-darwin-x64", + "data": { + "version": "4.2.2", + "packageName": "@tailwindcss/oxide-darwin-x64", + "hash": "sha512-BlR+2c3nzc8f2G639LpL89YY4bdcIdUmiOOkv2GQv4/4M0vJlpXEa0JXNHhCHU7VWOKWT/CjqHdTP8aUuDJkuw==" + } + }, + "npm:@tailwindcss/oxide-freebsd-x64": { + "type": "npm", + "name": "npm:@tailwindcss/oxide-freebsd-x64", + "data": { + "version": "4.2.2", + "packageName": "@tailwindcss/oxide-freebsd-x64", + "hash": "sha512-YUqUgrGMSu2CDO82hzlQ5qSb5xmx3RUrke/QgnoEx7KvmRJHQuZHZmZTLSuuHwFf0DJPybFMXMYf+WJdxHy/nQ==" + } + }, + "npm:@tailwindcss/oxide-linux-arm-gnueabihf": { + "type": "npm", + "name": "npm:@tailwindcss/oxide-linux-arm-gnueabihf", + "data": { + "version": "4.2.2", + "packageName": "@tailwindcss/oxide-linux-arm-gnueabihf", + "hash": "sha512-FPdhvsW6g06T9BWT0qTwiVZYE2WIFo2dY5aCSpjG/S/u1tby+wXoslXS0kl3/KXnULlLr1E3NPRRw0g7t2kgaQ==" + } + }, + "npm:@tailwindcss/oxide-linux-arm64-gnu": { + "type": "npm", + "name": "npm:@tailwindcss/oxide-linux-arm64-gnu", + "data": { + "version": "4.2.2", + "packageName": "@tailwindcss/oxide-linux-arm64-gnu", + "hash": "sha512-4og1V+ftEPXGttOO7eCmW7VICmzzJWgMx+QXAJRAhjrSjumCwWqMfkDrNu1LXEQzNAwz28NCUpucgQPrR4S2yw==" + } + }, + "npm:@tailwindcss/oxide-linux-arm64-musl": { + "type": "npm", + "name": "npm:@tailwindcss/oxide-linux-arm64-musl", + "data": { + "version": "4.2.2", + "packageName": "@tailwindcss/oxide-linux-arm64-musl", + "hash": "sha512-oCfG/mS+/+XRlwNjnsNLVwnMWYH7tn/kYPsNPh+JSOMlnt93mYNCKHYzylRhI51X+TbR+ufNhhKKzm6QkqX8ag==" + } + }, + "npm:@tailwindcss/oxide-linux-x64-gnu": { + "type": "npm", + "name": "npm:@tailwindcss/oxide-linux-x64-gnu", + "data": { + "version": "4.2.2", + "packageName": "@tailwindcss/oxide-linux-x64-gnu", + "hash": "sha512-rTAGAkDgqbXHNp/xW0iugLVmX62wOp2PoE39BTCGKjv3Iocf6AFbRP/wZT/kuCxC9QBh9Pu8XPkv/zCZB2mcMg==" + } + }, + "npm:@tailwindcss/oxide-linux-x64-musl": { + "type": "npm", + "name": "npm:@tailwindcss/oxide-linux-x64-musl", + "data": { + "version": "4.2.2", + "packageName": "@tailwindcss/oxide-linux-x64-musl", + "hash": "sha512-XW3t3qwbIwiSyRCggeO2zxe3KWaEbM0/kW9e8+0XpBgyKU4ATYzcVSMKteZJ1iukJ3HgHBjbg9P5YPRCVUxlnQ==" + } + }, + "npm:@tailwindcss/oxide-wasm32-wasi": { + "type": "npm", + "name": "npm:@tailwindcss/oxide-wasm32-wasi", + "data": { + "version": "4.2.2", + "packageName": "@tailwindcss/oxide-wasm32-wasi", + "hash": "sha512-eKSztKsmEsn1O5lJ4ZAfyn41NfG7vzCg496YiGtMDV86jz1q/irhms5O0VrY6ZwTUkFy/EKG3RfWgxSI3VbZ8Q==" + } + }, + "npm:@tailwindcss/oxide-win32-arm64-msvc": { + "type": "npm", + "name": "npm:@tailwindcss/oxide-win32-arm64-msvc", + "data": { + "version": "4.2.2", + "packageName": "@tailwindcss/oxide-win32-arm64-msvc", + "hash": "sha512-qPmaQM4iKu5mxpsrWZMOZRgZv1tOZpUm+zdhhQP0VhJfyGGO3aUKdbh3gDZc/dPLQwW4eSqWGrrcWNBZWUWaXQ==" + } + }, + "npm:@tailwindcss/oxide-win32-x64-msvc": { + "type": "npm", + "name": "npm:@tailwindcss/oxide-win32-x64-msvc", + "data": { + "version": "4.2.2", + "packageName": "@tailwindcss/oxide-win32-x64-msvc", + "hash": "sha512-1T/37VvI7WyH66b+vqHj/cLwnCxt7Qt3WFu5Q8hk65aOvlwAhs7rAp1VkulBJw/N4tMirXjVnylTR72uI0HGcA==" + } + }, + "npm:@tailwindcss/oxide": { + "type": "npm", + "name": "npm:@tailwindcss/oxide", + "data": { + "version": "4.2.2", + "packageName": "@tailwindcss/oxide", + "hash": "sha512-qEUA07+E5kehxYp9BVMpq9E8vnJuBHfJEC0vPC5e7iL/hw7HR61aDKoVoKzrG+QKp56vhNZe4qwkRmMC0zDLvg==" + } + }, + "npm:@tailwindcss/vite": { + "type": "npm", + "name": "npm:@tailwindcss/vite", + "data": { + "version": "4.2.2", + "packageName": "@tailwindcss/vite", + "hash": "sha512-mEiF5HO1QqCLXoNEfXVA1Tzo+cYsrqV7w9Juj2wdUFyW07JRenqMG225MvPwr3ZD9N1bFQj46X7r33iHxLUW0w==" + } + }, + "npm:@tootallnate/quickjs-emscripten": { + "type": "npm", + "name": "npm:@tootallnate/quickjs-emscripten", + "data": { + "version": "0.23.0", + "packageName": "@tootallnate/quickjs-emscripten", + "hash": "sha512-C5Mc6rdnsaJDjO3UpGW/CQTHtCKaYlScZTly4JIu97Jxo/odCiH0ITnDXSJPTOrEKk/ycSZ0AOgTmkDtkOsvIA==" + } + }, + "npm:@trpc/client": { + "type": "npm", + "name": "npm:@trpc/client", + "data": { + "version": "11.14.1", + "packageName": "@trpc/client", + "hash": "sha512-zjIq7JGm50/hIfo7/WR2BQEyngB0SDVlHJi9J3o5cLrOhUAxArYC6F8xpch1a1vatsN9rkayc6hJ3OXHDUOWow==" + } + }, + "npm:@trpc/server": { + "type": "npm", + "name": "npm:@trpc/server", + "data": { + "version": "11.14.1", + "packageName": "@trpc/server", + "hash": "sha512-5sl9cpbrFm1mnDW0/SoOSQBNmwj+cal/JDUNLmLBp1thPvsbN7UerTZjeyLu0BCNxG/FKhnF12BgqYY8SEtCWw==" + } + }, + "npm:@trysound/sax": { + "type": "npm", + "name": "npm:@trysound/sax", + "data": { + "version": "0.2.0", + "packageName": "@trysound/sax", + "hash": "sha512-L7z9BgrNEcYyUYtF+HaEfiS5ebkh9jXqbszz7pC0hRBPaatV0XjSD3+eHrpqFemQfgwiFF0QPIarnIihIDn7OA==" + } + }, + "npm:@ts-morph/common": { + "type": "npm", + "name": "npm:@ts-morph/common", + "data": { + "version": "0.27.0", + "packageName": "@ts-morph/common", + "hash": "sha512-Wf29UqxWDpc+i61k3oIOzcUfQt79PIT9y/MWfAGlrkjg6lBC1hwDECLXPVJAhWjiGbfBCxZd65F/LIZF3+jeJQ==" + } + }, + "npm:@ts-rest/core": { + "type": "npm", + "name": "npm:@ts-rest/core", + "data": { + "version": "3.52.1", + "packageName": "@ts-rest/core", + "hash": "sha512-tAjz7Kxq/grJodcTA1Anop4AVRDlD40fkksEV5Mmal88VoZeRKAG8oMHsDwdwPZz+B/zgnz0q2sF+cm5M7Bc7g==" + } + }, + "npm:@ts-rest/serverless": { + "type": "npm", + "name": "npm:@ts-rest/serverless", + "data": { + "version": "3.52.1", + "packageName": "@ts-rest/serverless", + "hash": "sha512-9lz6SVC/zOjR7Q70Uige1i4fgSLS5cPpei/ocBgdwhc/TJhKWTMQog2IQX3pT2nIA4B4QvZ54YyrBkSiwbrGPw==" + } + }, + "npm:@turbo/darwin-64": { + "type": "npm", + "name": "npm:@turbo/darwin-64", + "data": { + "version": "2.8.20", + "packageName": "@turbo/darwin-64", + "hash": "sha512-FQ9EX1xMU5nbwjxXxM3yU88AQQ6Sqc6S44exPRroMcx9XZHqqppl5ymJF0Ig/z3nvQNwDmz1Gsnvxubo+nXWjQ==" + } + }, + "npm:@turbo/darwin-arm64": { + "type": "npm", + "name": "npm:@turbo/darwin-arm64", + "data": { + "version": "2.8.20", + "packageName": "@turbo/darwin-arm64", + "hash": "sha512-Gpyh9ATFGThD6/s9L95YWY54cizg/VRWl2B67h0yofG8BpHf67DFAh9nuJVKG7bY0+SBJDAo5cMur+wOl9YOYw==" + } + }, + "npm:@turbo/linux-64": { + "type": "npm", + "name": "npm:@turbo/linux-64", + "data": { + "version": "2.8.20", + "packageName": "@turbo/linux-64", + "hash": "sha512-p2QxWUYyYUgUFG0b0kR+pPi8t7c9uaVlRtjTTI1AbCvVqkpjUfCcReBn6DgG/Hu8xrWdKLuyQFaLYFzQskZbcA==" + } + }, + "npm:@turbo/linux-arm64": { + "type": "npm", + "name": "npm:@turbo/linux-arm64", + "data": { + "version": "2.8.20", + "packageName": "@turbo/linux-arm64", + "hash": "sha512-Gn5yjlZGLRZWarLWqdQzv0wMqyBNIdq1QLi48F1oY5Lo9kiohuf7BPQWtWxeNVS2NgJ1+nb/DzK1JduYC4AWOA==" + } + }, + "npm:@turbo/windows-64": { + "type": "npm", + "name": "npm:@turbo/windows-64", + "data": { + "version": "2.8.20", + "packageName": "@turbo/windows-64", + "hash": "sha512-vyaDpYk/8T6Qz5V/X+ihKvKFEZFUoC0oxYpC1sZanK6gaESJlmV3cMRT3Qhcg4D2VxvtC2Jjs9IRkrZGL+exLw==" + } + }, + "npm:@turbo/windows-arm64": { + "type": "npm", + "name": "npm:@turbo/windows-arm64", + "data": { + "version": "2.8.20", + "packageName": "@turbo/windows-arm64", + "hash": "sha512-voicVULvUV5yaGXo0Iue13BcHGYW3u0VgqSbfQwBaHbpj1zLjYV4KIe+7fYIo6DO8FVUJzxFps3ODCQG/Wy2Qw==" + } + }, + "npm:@tybys/wasm-util@0.10.1": { + "type": "npm", + "name": "npm:@tybys/wasm-util@0.10.1", + "data": { + "version": "0.10.1", + "packageName": "@tybys/wasm-util", + "hash": "sha512-9tTaPJLSiejZKx+Bmog4uSubteqTvFrVrURwkmHixBo0G4seD0zUxp98E1DzUBJxLQ3NPwXrGKDiVjwx/DpPsg==" + } + }, + "npm:@tybys/wasm-util": { + "type": "npm", + "name": "npm:@tybys/wasm-util", + "data": { + "version": "0.9.0", + "packageName": "@tybys/wasm-util", + "hash": "sha512-6+7nlbMVX/PVDCwaIQ8nTOPveOcFLSt8GcXdx8hD0bt39uWxYT88uXzqTd4fTvqta7oeUJqudepapKNt2DYJFw==" + } + }, + "npm:@types/aws-lambda": { + "type": "npm", + "name": "npm:@types/aws-lambda", + "data": { + "version": "8.10.161", + "packageName": "@types/aws-lambda", + "hash": "sha512-rUYdp+MQwSFocxIOcSsYSF3YYYC/uUpMbCY/mbO21vGqfrEYvNSoPyKYDj6RhXXpPfS0KstW9RwG3qXh9sL7FQ==" + } + }, + "npm:@types/babel__core": { + "type": "npm", + "name": "npm:@types/babel__core", + "data": { + "version": "7.20.5", + "packageName": "@types/babel__core", + "hash": "sha512-qoQprZvz5wQFJwMDqeseRXWv3rqMvhgpbXFfVyWhbx9X47POIA6i/+dXefEmZKoAgOaTdaIgNSMqMIU61yRyzA==" + } + }, + "npm:@types/babel__generator": { + "type": "npm", + "name": "npm:@types/babel__generator", + "data": { + "version": "7.27.0", + "packageName": "@types/babel__generator", + "hash": "sha512-ufFd2Xi92OAVPYsy+P4n7/U7e68fex0+Ee8gSG9KX7eo084CWiQ4sdxktvdl0bOPupXtVJPY19zk6EwWqUQ8lg==" + } + }, + "npm:@types/babel__template": { + "type": "npm", + "name": "npm:@types/babel__template", + "data": { + "version": "7.4.4", + "packageName": "@types/babel__template", + "hash": "sha512-h/NUaSyG5EyxBIp8YRxo4RMe2/qQgvyowRwVMzhYhBCONbW8PUsg4lkFMrhgZhUe5z3L3MiLDuvyJ/CaPa2A8A==" + } + }, + "npm:@types/babel__traverse": { + "type": "npm", + "name": "npm:@types/babel__traverse", + "data": { + "version": "7.28.0", + "packageName": "@types/babel__traverse", + "hash": "sha512-8PvcXf70gTDZBgt9ptxJ8elBeBjcLOAcOtoO/mPJjtji1+CdGbHgm77om1GrsPxsiE+uXIpNSK64UYaIwQXd4Q==" + } + }, + "npm:@types/better-sqlite3": { + "type": "npm", + "name": "npm:@types/better-sqlite3", + "data": { + "version": "7.6.13", + "packageName": "@types/better-sqlite3", + "hash": "sha512-NMv9ASNARoKksWtsq/SHakpYAYnhBrQgGD8zkLYk/jaK8jUGn08CfEdTRgYhMypUQAfzSP8W6gNLe0q19/t4VA==" + } + }, + "npm:@types/body-parser": { + "type": "npm", + "name": "npm:@types/body-parser", + "data": { + "version": "1.19.6", + "packageName": "@types/body-parser", + "hash": "sha512-HLFeCYgz89uk22N5Qg3dvGvsv46B8GLvKKo1zKG4NybA8U2DiEO3w9lqGg29t/tfLRJpJ6iQxnVw4OnB7MoM9g==" + } + }, + "npm:@types/cacheable-request": { + "type": "npm", + "name": "npm:@types/cacheable-request", + "data": { + "version": "6.0.3", + "packageName": "@types/cacheable-request", + "hash": "sha512-IQ3EbTzGxIigb1I3qPZc1rWJnH0BmSKv5QYTalEwweFvyBDLSAe24zP0le/hyi7ecGfZVlIVAg4BZqb8WBwKqw==" + } + }, + "npm:@types/chai": { + "type": "npm", + "name": "npm:@types/chai", + "data": { + "version": "5.2.2", + "packageName": "@types/chai", + "hash": "sha512-8kB30R7Hwqf40JPiKhVzodJs2Qc1ZJ5zuT3uzw5Hq/dhNCl3G3l83jfpdI1e20BP348+fV7VIL/+FxaXkqBmWg==" + } + }, + "npm:@types/connect": { + "type": "npm", + "name": "npm:@types/connect", + "data": { + "version": "3.4.38", + "packageName": "@types/connect", + "hash": "sha512-K6uROf1LD88uDQqJCktA4yzL1YYAK6NgfsI0v/mTgyPKWsX1CnJ0XPSDhViejru1GcRkLWb8RlzFYJRqGUbaug==" + } + }, + "npm:@types/debug": { + "type": "npm", + "name": "npm:@types/debug", + "data": { + "version": "4.1.12", + "packageName": "@types/debug", + "hash": "sha512-vIChWdVG3LG1SMxEvI/AK+FWJthlrqlTu7fbrlywTkkaONwk/UAGaULXRlf8vkzFBLVm0zkMdCquhL5aOjhXPQ==" + } + }, + "npm:@types/deep-eql": { + "type": "npm", + "name": "npm:@types/deep-eql", + "data": { + "version": "4.0.2", + "packageName": "@types/deep-eql", + "hash": "sha512-c9h9dVVMigMPc4bwTvC5dxqtqJZwQPePsWjPlpSOnojbor6pGqdk541lfA7AqFQr5pB1BRdq0juY9db81BwyFw==" + } + }, + "npm:@types/eslint": { + "type": "npm", + "name": "npm:@types/eslint", + "data": { + "version": "9.6.1", + "packageName": "@types/eslint", + "hash": "sha512-FXx2pKgId/WyYo2jXw63kk7/+TY7u7AziEJxJAnSFzHlqTAS3Ync6SvgYAN/k4/PQpnnVuzoMuVnByKK2qp0ag==" + } + }, + "npm:@types/estree": { + "type": "npm", + "name": "npm:@types/estree", + "data": { + "version": "1.0.8", + "packageName": "@types/estree", + "hash": "sha512-dWHzHa2WqEXI/O1E9OjrocMTKJl2mSrEolh1Iomrv6U+JuNwaHXsXx9bLu5gG7BUWFIN0skIQJQ/L1rIex4X6w==" + } + }, + "npm:@types/express-serve-static-core": { + "type": "npm", + "name": "npm:@types/express-serve-static-core", + "data": { + "version": "5.1.0", + "packageName": "@types/express-serve-static-core", + "hash": "sha512-jnHMsrd0Mwa9Cf4IdOzbz543y4XJepXrbia2T4b6+spXC2We3t1y6K44D3mR8XMFSXMCf3/l7rCgddfx7UNVBA==" + } + }, + "npm:@types/express": { + "type": "npm", + "name": "npm:@types/express", + "data": { + "version": "5.0.6", + "packageName": "@types/express", + "hash": "sha512-sKYVuV7Sv9fbPIt/442koC7+IIwK5olP1KWeD88e/idgoJqDm3JV/YUiPwkoKK92ylff2MGxSz1CSjsXelx0YA==" + } + }, + "npm:@types/http-cache-semantics": { + "type": "npm", + "name": "npm:@types/http-cache-semantics", + "data": { + "version": "4.0.4", + "packageName": "@types/http-cache-semantics", + "hash": "sha512-1m0bIFVc7eJWyve9S0RnuRgcQqF/Xd5QsUZAZeQFr1Q3/p9JWoQQEqmVy+DPTNpGXwhgIetAoYF8JSc33q29QA==" + } + }, + "npm:@types/http-errors": { + "type": "npm", + "name": "npm:@types/http-errors", + "data": { + "version": "2.0.5", + "packageName": "@types/http-errors", + "hash": "sha512-r8Tayk8HJnX0FztbZN7oVqGccWgw98T/0neJphO91KkmOzug1KkofZURD4UaD5uH8AqcFLfdPErnBod0u71/qg==" + } + }, + "npm:@types/jsesc": { + "type": "npm", + "name": "npm:@types/jsesc", + "data": { + "version": "2.5.1", + "packageName": "@types/jsesc", + "hash": "sha512-9VN+6yxLOPLOav+7PwjZbxiID2bVaeq0ED4qSQmdQTdjnXJSaCVKTR58t15oqH1H5t8Ng2ZX1SabJVoN9Q34bw==" + } + }, + "npm:@types/json-schema": { + "type": "npm", + "name": "npm:@types/json-schema", + "data": { + "version": "7.0.15", + "packageName": "@types/json-schema", + "hash": "sha512-5+fP8P8MFNC+AyZCDxrB2pkZFPGzqQWUzpSeuuVLvm8VMcorNYavBqoFcxK8bQz4Qsbn4oUEEem4wDLfcysGHA==" + } + }, + "npm:@types/keyv": { + "type": "npm", + "name": "npm:@types/keyv", + "data": { + "version": "3.1.4", + "packageName": "@types/keyv", + "hash": "sha512-BQ5aZNSCpj7D6K2ksrRCTmKRLEpnPvWDiLPfoGyhZ++8YtiK9d/3DBKPJgry359X/P1PfruyYwvnvwFjuEiEIg==" + } + }, + "npm:@types/mdast": { + "type": "npm", + "name": "npm:@types/mdast", + "data": { + "version": "4.0.4", + "packageName": "@types/mdast", + "hash": "sha512-kGaNbPh1k7AFzgpud/gMdvIm5xuECykRR+JnWKQno9TAXVa6WIVCGTPvYGekIDL4uwCZQSYbUxNBSb1aUo79oA==" + } + }, + "npm:@types/ms": { + "type": "npm", + "name": "npm:@types/ms", + "data": { + "version": "2.1.0", + "packageName": "@types/ms", + "hash": "sha512-GsCCIZDE/p3i96vtEqx+7dBUGXrc7zeSK3wwPHIaRThS+9OhWIXRqzs4d6k1SVU8g91DrNRWxWUGhp5KXQb2VA==" + } + }, + "npm:@types/node": { + "type": "npm", + "name": "npm:@types/node", + "data": { + "version": "20.19.37", + "packageName": "@types/node", + "hash": "sha512-8kzdPJ3FsNsVIurqBs7oodNnCEVbni9yUEkaHbgptDACOPW04jimGagZ51E6+lXUwJjgnBw+hyko/lkFWCldqw==" + } + }, + "npm:@types/qs": { + "type": "npm", + "name": "npm:@types/qs", + "data": { + "version": "6.14.0", + "packageName": "@types/qs", + "hash": "sha512-eOunJqu0K1923aExK6y8p6fsihYEn/BYuQ4g0CxAAgFc4b/ZLN4CrsRZ55srTdqoiLzU2B2evC+apEIxprEzkQ==" + } + }, + "npm:@types/range-parser": { + "type": "npm", + "name": "npm:@types/range-parser", + "data": { + "version": "1.2.7", + "packageName": "@types/range-parser", + "hash": "sha512-hKormJbkJqzQGhziax5PItDUTMAM9uE2XXQmM37dyd4hVM+5aVl7oVxMVUiVQn2oCQFN/LKCZdvSM0pFRqbSmQ==" + } + }, + "npm:@types/react-dom": { + "type": "npm", + "name": "npm:@types/react-dom", + "data": { + "version": "19.2.3", + "packageName": "@types/react-dom", + "hash": "sha512-jp2L/eY6fn+KgVVQAOqYItbF0VY/YApe5Mz2F0aykSO8gx31bYCZyvSeYxCHKvzHG5eZjc+zyaS5BrBWya2+kQ==" + } + }, + "npm:@types/react": { + "type": "npm", + "name": "npm:@types/react", + "data": { + "version": "19.2.14", + "packageName": "@types/react", + "hash": "sha512-ilcTH/UniCkMdtexkoCN0bI7pMcJDvmQFPvuPvmEaYA/NSfFTAgdUSLAoVjaRJm7+6PvcM+q1zYOwS4wTYMF9w==" + } + }, + "npm:@types/responselike": { + "type": "npm", + "name": "npm:@types/responselike", + "data": { + "version": "1.0.3", + "packageName": "@types/responselike", + "hash": "sha512-H/+L+UkTV33uf49PH5pCAUBVPNj2nDBXTN+qS1dOwyyg24l3CcicicCA7ca+HMvJBZcFgl5r8e+RR6elsb4Lyw==" + } + }, + "npm:@types/retry": { + "type": "npm", + "name": "npm:@types/retry", + "data": { + "version": "0.12.0", + "packageName": "@types/retry", + "hash": "sha512-wWKOClTTiizcZhXnPY4wikVAwmdYHp8q6DmC+EJUzAMsycb7HB32Kh9RN4+0gExjmPmZSAQjgURXIGATPegAvA==" + } + }, + "npm:@types/send": { + "type": "npm", + "name": "npm:@types/send", + "data": { + "version": "1.2.0", + "packageName": "@types/send", + "hash": "sha512-zBF6vZJn1IaMpg3xUF25VK3gd3l8zwE0ZLRX7dsQyQi+jp4E8mMDJNGDYnYse+bQhYwWERTxVwHpi3dMOq7RKQ==" + } + }, + "npm:@types/serve-static": { + "type": "npm", + "name": "npm:@types/serve-static", + "data": { + "version": "2.2.0", + "packageName": "@types/serve-static", + "hash": "sha512-8mam4H1NHLtu7nmtalF7eyBH14QyOASmcxHhSfEoRyr0nP/YdoesEtU+uSRvMe96TW/HPTtkoKqQLl53N7UXMQ==" + } + }, + "npm:@types/ungap__structured-clone": { + "type": "npm", + "name": "npm:@types/ungap__structured-clone", + "data": { + "version": "1.2.0", + "packageName": "@types/ungap__structured-clone", + "hash": "sha512-ZoaihZNLeZSxESbk9PUAPZOlSpcKx81I1+4emtULDVmBLkYutTcMlCj2K9VNlf9EWODxdO6gkAqEaLorXwZQVA==" + } + }, + "npm:@types/unist": { + "type": "npm", + "name": "npm:@types/unist", + "data": { + "version": "2.0.11", + "packageName": "@types/unist", + "hash": "sha512-CmBKiL6NNo/OqgmMn95Fk9Whlp2mtvIv+KNpQKN2F4SjvrEesubTRWGYSg+BnWZOnlCaSTU1sMpsBOzgbYhnsA==" + } + }, + "npm:@types/unist@3.0.3": { + "type": "npm", + "name": "npm:@types/unist@3.0.3", + "data": { + "version": "3.0.3", + "packageName": "@types/unist", + "hash": "sha512-ko/gIFJRv177XgZsZcBwnqJN5x/Gien8qNOn0D5bQU/zAzVf9Zt3BlcUiLqhV9y4ARk0GbT3tnUiPNgnTXzc/Q==" + } + }, + "npm:@types/which": { + "type": "npm", + "name": "npm:@types/which", + "data": { + "version": "3.0.4", + "packageName": "@types/which", + "hash": "sha512-liyfuo/106JdlgSchJzXEQCVArk0CvevqPote8F8HgWgJ3dRCcTHgJIsLDuee0kxk/mhbInzIZk3QWSZJ8R+2w==" + } + }, + "npm:@types/yauzl": { + "type": "npm", + "name": "npm:@types/yauzl", + "data": { + "version": "2.10.3", + "packageName": "@types/yauzl", + "hash": "sha512-oJoftv0LSuaDZE3Le4DbKX+KS9G36NzOeSap90UIK0yMA/NhKJhqlSGtNDORNRaIbQfzjXDrQa0ytJ6mNRGz/Q==" + } + }, + "npm:@typescript-eslint/eslint-plugin": { + "type": "npm", + "name": "npm:@typescript-eslint/eslint-plugin", + "data": { + "version": "8.57.1", + "packageName": "@typescript-eslint/eslint-plugin", + "hash": "sha512-Gn3aqnvNl4NGc6x3/Bqk1AOn0thyTU9bqDRhiRnUWezgvr2OnhYCWCgC8zXXRVqBsIL1pSDt7T9nJUe0oM0kDQ==" + } + }, + "npm:@typescript-eslint/parser": { + "type": "npm", + "name": "npm:@typescript-eslint/parser", + "data": { + "version": "8.57.1", + "packageName": "@typescript-eslint/parser", + "hash": "sha512-k4eNDan0EIMTT/dUKc/g+rsJ6wcHYhNPdY19VoX/EOtaAG8DLtKCykhrUnuHPYvinn5jhAPgD2Qw9hXBwrahsw==" + } + }, + "npm:@typescript-eslint/project-service": { + "type": "npm", + "name": "npm:@typescript-eslint/project-service", + "data": { + "version": "8.57.1", + "packageName": "@typescript-eslint/project-service", + "hash": "sha512-vx1F37BRO1OftsYlmG9xay1TqnjNVlqALymwWVuYTdo18XuKxtBpCj1QlzNIEHlvlB27osvXFWptYiEWsVdYsg==" + } + }, + "npm:@typescript-eslint/scope-manager": { + "type": "npm", + "name": "npm:@typescript-eslint/scope-manager", + "data": { + "version": "8.57.1", + "packageName": "@typescript-eslint/scope-manager", + "hash": "sha512-hs/QcpCwlwT2L5S+3fT6gp0PabyGk4Q0Rv2doJXA0435/OpnSR3VRgvrp8Xdoc3UAYSg9cyUjTeFXZEPg/3OKg==" + } + }, + "npm:@typescript-eslint/tsconfig-utils": { + "type": "npm", + "name": "npm:@typescript-eslint/tsconfig-utils", + "data": { + "version": "8.57.1", + "packageName": "@typescript-eslint/tsconfig-utils", + "hash": "sha512-0lgOZB8cl19fHO4eI46YUx2EceQqhgkPSuCGLlGi79L2jwYY1cxeYc1Nae8Aw1xjgW3PKVDLlr3YJ6Bxx8HkWg==" + } + }, + "npm:@typescript-eslint/type-utils": { + "type": "npm", + "name": "npm:@typescript-eslint/type-utils", + "data": { + "version": "8.57.1", + "packageName": "@typescript-eslint/type-utils", + "hash": "sha512-+Bwwm0ScukFdyoJsh2u6pp4S9ktegF98pYUU0hkphOOqdMB+1sNQhIz8y5E9+4pOioZijrkfNO/HUJVAFFfPKA==" + } + }, + "npm:@typescript-eslint/types": { + "type": "npm", + "name": "npm:@typescript-eslint/types", + "data": { + "version": "8.57.1", + "packageName": "@typescript-eslint/types", + "hash": "sha512-S29BOBPJSFUiblEl6RzPPjJt6w25A6XsBqRVDt53tA/tlL8q7ceQNZHTjPeONt/3S7KRI4quk+yP9jK2WjBiPQ==" + } + }, + "npm:@typescript-eslint/typescript-estree": { + "type": "npm", + "name": "npm:@typescript-eslint/typescript-estree", + "data": { + "version": "8.57.1", + "packageName": "@typescript-eslint/typescript-estree", + "hash": "sha512-ybe2hS9G6pXpqGtPli9Gx9quNV0TWLOmh58ADlmZe9DguLq0tiAKVjirSbtM1szG6+QH6rVXyU6GTLQbWnMY+g==" + } + }, + "npm:@typescript-eslint/utils": { + "type": "npm", + "name": "npm:@typescript-eslint/utils", + "data": { + "version": "8.57.1", + "packageName": "@typescript-eslint/utils", + "hash": "sha512-XUNSJ/lEVFttPMMoDVA2r2bwrl8/oPx8cURtczkSEswY5T3AeLmCy+EKWQNdL4u0MmAHOjcWrqJp2cdvgjn8dQ==" + } + }, + "npm:@typescript-eslint/visitor-keys": { + "type": "npm", + "name": "npm:@typescript-eslint/visitor-keys", + "data": { + "version": "8.57.1", + "packageName": "@typescript-eslint/visitor-keys", + "hash": "sha512-YWnmJkXbofiz9KbnbbwuA2rpGkFPLbAIetcCNO6mJ8gdhdZ/v7WDXsoGFAJuM6ikUFKTlSQnjWnVO4ux+UzS6A==" + } + }, + "npm:@ungap/structured-clone": { + "type": "npm", + "name": "npm:@ungap/structured-clone", + "data": { + "version": "1.3.0", + "packageName": "@ungap/structured-clone", + "hash": "sha512-WmoN8qaIAo7WTYWbAZuG8PYEhn5fkz7dZrqTBZ7dtt//lL2Gwms1IcnQ5yHqjDfX8Ft5j4YzDM23f87zBfDe9g==" + } + }, + "npm:@universal-middleware/cloudflare": { + "type": "npm", + "name": "npm:@universal-middleware/cloudflare", + "data": { + "version": "0.4.10", + "packageName": "@universal-middleware/cloudflare", + "hash": "sha512-ZY+N0KKoH+H+BB3wsaD5yqTiiFtX7uklPyCBqGLqEijOtZA5ZgFIExfWDjiIUjezUBAbRB8kUZ/WlPITY+hyTg==" + } + }, + "npm:@universal-middleware/compress": { + "type": "npm", + "name": "npm:@universal-middleware/compress", + "data": { + "version": "0.2.35", + "packageName": "@universal-middleware/compress", + "hash": "sha512-uLwwPtGLlK6KCYG5SksLdifOFhx6O10hArtz7PaD2hbqRE+IiWa1zntDCtKIkOHhA8Upz2koIbScyRpY/z/a3w==" + } + }, + "npm:@universal-middleware/core": { + "type": "npm", + "name": "npm:@universal-middleware/core", + "data": { + "version": "0.4.17", + "packageName": "@universal-middleware/core", + "hash": "sha512-q+/nXW9DQ94RtmlghC57DhwEvjrqxX57EtU40iaM3U+eYTKc+FVnEdlpdrYX8kCAdEU7zVBLBlFgJre+VrXoUg==" + } + }, + "npm:@universal-middleware/express": { + "type": "npm", + "name": "npm:@universal-middleware/express", + "data": { + "version": "0.4.22", + "packageName": "@universal-middleware/express", + "hash": "sha512-4aIrnK52NJmYKokZnwpWja/vT2m/HoZ8zxQyYLdokkSQdx0B1k1VsmYGeWENvpDQBgLjnfyvDzyaxch6Tib/hA==" + } + }, + "npm:@universal-middleware/fastify": { + "type": "npm", + "name": "npm:@universal-middleware/fastify", + "data": { + "version": "0.5.22", + "packageName": "@universal-middleware/fastify", + "hash": "sha512-6axgXhhi69V4RHh6DjUxRmWnRN8U9cW/Ro/1lB0weTe4Y07pI/9603XGcg9iNltbqEhjRvK+Jch3WwwIfVdIBg==" + } + }, + "npm:@universal-middleware/h3": { + "type": "npm", + "name": "npm:@universal-middleware/h3", + "data": { + "version": "0.4.15", + "packageName": "@universal-middleware/h3", + "hash": "sha512-IdoQ9cHSQEh7R1MtUppstuOrKLo//6hFv1AdVx0fyqCOELk0+rGH63VJ2MjnA26/xqysqrbjkiNQilBucAyfxw==" + } + }, + "npm:@universal-middleware/hono": { + "type": "npm", + "name": "npm:@universal-middleware/hono", + "data": { + "version": "0.4.18", + "packageName": "@universal-middleware/hono", + "hash": "sha512-RpnX8hKh2zx7hwVYzI32DjvH7KBYpt7MLIHWYw9QBSEzpD1ErqL+SpkvvlJaINjFs+sYJKH5IOoL53uHCL5alw==" + } + }, + "npm:@universal-middleware/sirv": { + "type": "npm", + "name": "npm:@universal-middleware/sirv", + "data": { + "version": "0.1.25", + "packageName": "@universal-middleware/sirv", + "hash": "sha512-yjOJE/PmEFfTPYOpwXzZyGnDRZOvDphMrsNLaNkdNVlCBFnTLEGIJP9WnsOKNr65iyqFkMXzXvmyZd65RlN8yg==" + } + }, + "npm:@universal-middleware/srvx": { + "type": "npm", + "name": "npm:@universal-middleware/srvx", + "data": { + "version": "0.1.1", + "packageName": "@universal-middleware/srvx", + "hash": "sha512-nTy4BZvaEI+rFO8sWEVvZrZWwFuqEXlXPNvIBAfl16+nKcorwiwm1x+qzuDrSqLd/kr5LSsGR3/KenTvESS9dQ==" + } + }, + "npm:@universal-middleware/vercel": { + "type": "npm", + "name": "npm:@universal-middleware/vercel", + "data": { + "version": "0.4.29", + "packageName": "@universal-middleware/vercel", + "hash": "sha512-w/2/cPat0MnKAI6w5I8OTYZSGCOLRe/yAGsPqfUyQtubuSpOpXnv/ELwC6iXO6EIoZcI9kCkO/Eucjuv55V6Xw==" + } + }, + "npm:@vercel/build-utils": { + "type": "npm", + "name": "npm:@vercel/build-utils", + "data": { + "version": "13.2.4", + "packageName": "@vercel/build-utils", + "hash": "sha512-12m+8Z+wsxJUoWZ+JQqRk8v1O0ioJhGYWz+yStW8abuzfNz75QW2rRcbn0hSHuF8c7b3D2papmMdh94kSSYQEw==" + } + }, + "npm:@vercel/nft@0.30.4": { + "type": "npm", + "name": "npm:@vercel/nft@0.30.4", + "data": { + "version": "0.30.4", + "packageName": "@vercel/nft", + "hash": "sha512-wE6eAGSXScra60N2l6jWvNtVK0m+sh873CpfZW4KI2v8EHuUQp+mSEi4T+IcdPCSEDgCdAS/7bizbhQlkjzrSA==" + } + }, + "npm:@vercel/nft": { + "type": "npm", + "name": "npm:@vercel/nft", + "data": { + "version": "1.1.1", + "packageName": "@vercel/nft", + "hash": "sha512-mKMGa7CEUcXU75474kOeqHbtvK1kAcu4wiahhmlUenB5JbTQB8wVlDI8CyHR3rpGo0qlzoRWqcDzI41FUoBJCA==" + } + }, + "npm:@vercel/routing-utils": { + "type": "npm", + "name": "npm:@vercel/routing-utils", + "data": { + "version": "5.3.1", + "packageName": "@vercel/routing-utils", + "hash": "sha512-HlqFRdB6Dm20xgEWtEatchf9X28NifweXPdDoEGyj5ItngaiqpywtkgkuiAk3xK9eAu2oXM36wEJbDDTxMblUg==" + } + }, + "npm:@vikejs/biome-config": { + "type": "npm", + "name": "npm:@vikejs/biome-config", + "data": { + "version": "2.0.1", + "packageName": "@vikejs/biome-config", + "hash": "sha512-kqVIZSWS7WCwTJYSzPnrhq3k+OdsOD67BM+lYtOaxkmoMfmtjz00ckGvFO8PxF8GJGeKTu7S/+pL6YmxC/Ht3Q==" + } + }, + "npm:@vite-plugin-vercel/schemas": { + "type": "npm", + "name": "npm:@vite-plugin-vercel/schemas", + "data": { + "version": "1.1.0", + "packageName": "@vite-plugin-vercel/schemas", + "hash": "sha512-Vl7r+Itu7oS2/Ypo0wyPOB87AHdoU4EsmDNkSjTeKc7wl9xxHafCMd2Uc9qLOcX0tlDtcwJkjvB4A//ObqL8/w==" + } + }, + "npm:@vitejs/plugin-react": { + "type": "npm", + "name": "npm:@vitejs/plugin-react", + "data": { + "version": "6.0.1", + "packageName": "@vitejs/plugin-react", + "hash": "sha512-l9X/E3cDb+xY3SWzlG1MOGt2usfEHGMNIaegaUGFsLkb3RCn/k8/TOXBcab+OndDI4TBtktT8/9BwwW8Vi9KUQ==" + } + }, + "npm:@vitejs/plugin-vue": { + "type": "npm", + "name": "npm:@vitejs/plugin-vue", + "data": { + "version": "6.0.5", + "packageName": "@vitejs/plugin-vue", + "hash": "sha512-bL3AxKuQySfk1iGcBsQnoRVexTPJq0Z/ixFVM8OhVJAP6ZXXXLtM7NFKWhLl30Kg7uTBqIaPXbh+nuQCuBDedg==" + } + }, + "npm:@vitest/expect": { + "type": "npm", + "name": "npm:@vitest/expect", + "data": { + "version": "4.1.0", + "packageName": "@vitest/expect", + "hash": "sha512-EIxG7k4wlWweuCLG9Y5InKFwpMEOyrMb6ZJ1ihYu02LVj/bzUwn2VMU+13PinsjRW75XnITeFrQBMH5+dLvCDA==" + } + }, + "npm:@vitest/mocker": { + "type": "npm", + "name": "npm:@vitest/mocker", + "data": { + "version": "4.1.0", + "packageName": "@vitest/mocker", + "hash": "sha512-evxREh+Hork43+Y4IOhTo+h5lGmVRyjqI739Rz4RlUPqwrkFFDF6EMvOOYjTx4E8Tl6gyCLRL8Mu7Ry12a13Tw==" + } + }, + "npm:@vitest/pretty-format": { + "type": "npm", + "name": "npm:@vitest/pretty-format", + "data": { + "version": "4.1.0", + "packageName": "@vitest/pretty-format", + "hash": "sha512-3RZLZlh88Ib0J7NQTRATfc/3ZPOnSUn2uDBUoGNn5T36+bALixmzphN26OUD3LRXWkJu4H0s5vvUeqBiw+kS0A==" + } + }, + "npm:@vitest/runner": { + "type": "npm", + "name": "npm:@vitest/runner", + "data": { + "version": "4.1.0", + "packageName": "@vitest/runner", + "hash": "sha512-Duvx2OzQ7d6OjchL+trw+aSrb9idh7pnNfxrklo14p3zmNL4qPCDeIJAK+eBKYjkIwG96Bc6vYuxhqDXQOWpoQ==" + } + }, + "npm:@vitest/snapshot": { + "type": "npm", + "name": "npm:@vitest/snapshot", + "data": { + "version": "4.1.0", + "packageName": "@vitest/snapshot", + "hash": "sha512-0Vy9euT1kgsnj1CHttwi9i9o+4rRLEaPRSOJ5gyv579GJkNpgJK+B4HSv/rAWixx2wdAFci1X4CEPjiu2bXIMg==" + } + }, + "npm:@vitest/spy": { + "type": "npm", + "name": "npm:@vitest/spy", + "data": { + "version": "4.1.0", + "packageName": "@vitest/spy", + "hash": "sha512-pz77k+PgNpyMDv2FV6qmk5ZVau6c3R8HC8v342T2xlFxQKTrSeYw9waIJG8KgV9fFwAtTu4ceRzMivPTH6wSxw==" + } + }, + "npm:@vitest/utils": { + "type": "npm", + "name": "npm:@vitest/utils", + "data": { + "version": "4.1.0", + "packageName": "@vitest/utils", + "hash": "sha512-XfPXT6a8TZY3dcGY8EdwsBulFCIw+BeeX0RZn2x/BtiY/75YGh8FeWGG8QISN/WhaqSrE2OrlDgtF8q5uhOTmw==" + } + }, + "npm:@vue/compiler-core": { + "type": "npm", + "name": "npm:@vue/compiler-core", + "data": { + "version": "3.5.30", + "packageName": "@vue/compiler-core", + "hash": "sha512-s3DfdZkcu/qExZ+td75015ljzHc6vE+30cFMGRPROYjqkroYI5NV2X1yAMX9UeyBNWB9MxCfPcsjpLS11nzkkw==" + } + }, + "npm:@vue/compiler-dom": { + "type": "npm", + "name": "npm:@vue/compiler-dom", + "data": { + "version": "3.5.30", + "packageName": "@vue/compiler-dom", + "hash": "sha512-eCFYESUEVYHhiMuK4SQTldO3RYxyMR/UQL4KdGD1Yrkfdx4m/HYuZ9jSfPdA+nWJY34VWndiYdW/wZXyiPEB9g==" + } + }, + "npm:@vue/compiler-sfc": { + "type": "npm", + "name": "npm:@vue/compiler-sfc", + "data": { + "version": "3.5.30", + "packageName": "@vue/compiler-sfc", + "hash": "sha512-LqmFPDn89dtU9vI3wHJnwaV6GfTRD87AjWpTWpyrdVOObVtjIuSeZr181z5C4PmVx/V3j2p+0f7edFKGRMpQ5A==" + } + }, + "npm:@vue/compiler-ssr": { + "type": "npm", + "name": "npm:@vue/compiler-ssr", + "data": { + "version": "3.5.30", + "packageName": "@vue/compiler-ssr", + "hash": "sha512-NsYK6OMTnx109PSL2IAyf62JP6EUdk4Dmj6AkWcJGBvN0dQoMYtVekAmdqgTtWQgEJo+Okstbf/1p7qZr5H+bA==" + } + }, + "npm:@vue/reactivity": { + "type": "npm", + "name": "npm:@vue/reactivity", + "data": { + "version": "3.5.30", + "packageName": "@vue/reactivity", + "hash": "sha512-179YNgKATuwj9gB+66snskRDOitDiuOZqkYia7mHKJaidOMo/WJxHKF8DuGc4V4XbYTJANlfEKb0yxTQotnx4Q==" + } + }, + "npm:@vue/runtime-core": { + "type": "npm", + "name": "npm:@vue/runtime-core", + "data": { + "version": "3.5.30", + "packageName": "@vue/runtime-core", + "hash": "sha512-e0Z+8PQsUTdwV8TtEsLzUM7SzC7lQwYKePydb7K2ZnmS6jjND+WJXkmmfh/swYzRyfP1EY3fpdesyYoymCzYfg==" + } + }, + "npm:@vue/runtime-dom": { + "type": "npm", + "name": "npm:@vue/runtime-dom", + "data": { + "version": "3.5.30", + "packageName": "@vue/runtime-dom", + "hash": "sha512-2UIGakjU4WSQ0T4iwDEW0W7vQj6n7AFn7taqZ9Cvm0Q/RA2FFOziLESrDL4GmtI1wV3jXg5nMoJSYO66egDUBw==" + } + }, + "npm:@vue/server-renderer": { + "type": "npm", + "name": "npm:@vue/server-renderer", + "data": { + "version": "3.5.30", + "packageName": "@vue/server-renderer", + "hash": "sha512-v+R34icapydRwbZRD0sXwtHqrQJv38JuMB4JxbOxd8NEpGLny7cncMp53W9UH/zo4j8eDHjQ1dEJXwzFQknjtQ==" + } + }, + "npm:@vue/shared": { + "type": "npm", + "name": "npm:@vue/shared", + "data": { + "version": "3.5.30", + "packageName": "@vue/shared", + "hash": "sha512-YXgQ7JjaO18NeK2K9VTbDHaFy62WrObMa6XERNfNOkAhD1F1oDSf3ZJ7K6GqabZ0BvSDHajp8qfS5Sa2I9n8uQ==" + } + }, + "npm:@yarnpkg/lockfile": { + "type": "npm", + "name": "npm:@yarnpkg/lockfile", + "data": { + "version": "1.1.0", + "packageName": "@yarnpkg/lockfile", + "hash": "sha512-GpSwvyXOcOOlV70vbnzjj4fW5xW/FdUF6nQEt1ENy7m4ZCczi1+/buVUPAqmGfqznsORNFzUMjctTIp8a9tuCQ==" + } + }, + "npm:@yarnpkg/parsers": { + "type": "npm", + "name": "npm:@yarnpkg/parsers", + "data": { + "version": "3.0.2", + "packageName": "@yarnpkg/parsers", + "hash": "sha512-/HcYgtUSiJiot/XWGLOlGxPYUG65+/31V8oqk17vZLW1xlCoR4PampyePljOxY2n8/3jz9+tIFzICsyGujJZoA==" + } + }, + "npm:@zkochan/js-yaml": { + "type": "npm", + "name": "npm:@zkochan/js-yaml", + "data": { + "version": "0.0.7", + "packageName": "@zkochan/js-yaml", + "hash": "sha512-nrUSn7hzt7J6JWgWGz78ZYI8wj+gdIJdk0Ynjpp8l+trkn58Uqsf6RYrYkEK+3X18EX+TNdtJI0WxAtc+L84SQ==" + } + }, + "npm:abbrev": { + "type": "npm", + "name": "npm:abbrev", + "data": { + "version": "3.0.1", + "packageName": "abbrev", + "hash": "sha512-AO2ac6pjRB3SJmGJo+v5/aK6Omggp6fsLrs6wN9bd35ulu4cCwaAU9+7ZhXjeqHVkaHThLuzH0nZr0YpCDhygg==" + } + }, + "npm:abstract-logging": { + "type": "npm", + "name": "npm:abstract-logging", + "data": { + "version": "2.0.1", + "packageName": "abstract-logging", + "hash": "sha512-2BjRTZxTPvheOvGbBslFSYOUkr+SjPtOnrLP33f+VIWLzezQpZcqVg7ja3L4dBXmzzgwT+a029jRx5PCi3JuiA==" + } + }, + "npm:accepts": { + "type": "npm", + "name": "npm:accepts", + "data": { + "version": "2.0.0", + "packageName": "accepts", + "hash": "sha512-5cvg6CtKwfgdmVqY1WIiXKc3Q1bkRqGLi+2W/6ao+6Y7gu/RCwRuAhGEzh5B4KlszSuTLgZYuqFqo5bImjNKng==" + } + }, + "npm:acorn-import-attributes": { + "type": "npm", + "name": "npm:acorn-import-attributes", + "data": { + "version": "1.9.5", + "packageName": "acorn-import-attributes", + "hash": "sha512-n02Vykv5uA3eHGM/Z2dQrcD56kL8TyDb2p1+0P83PClMnC/nc+anbQRhIOWnSq4Ke/KvDPrY3C9hDtC/A3eHnQ==" + } + }, + "npm:acorn-jsx": { + "type": "npm", + "name": "npm:acorn-jsx", + "data": { + "version": "5.3.2", + "packageName": "acorn-jsx", + "hash": "sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==" + } + }, + "npm:acorn-walk": { + "type": "npm", + "name": "npm:acorn-walk", + "data": { + "version": "8.3.2", + "packageName": "acorn-walk", + "hash": "sha512-cjkyv4OtNCIeqhHrfS81QWXoCBPExR/J62oyEqepVw8WaQeSqpW2uhuLPh1m9eWhDuOo/jUXVTlifvesOWp/4A==" + } + }, + "npm:acorn@8.14.0": { + "type": "npm", + "name": "npm:acorn@8.14.0", + "data": { + "version": "8.14.0", + "packageName": "acorn", + "hash": "sha512-cl669nCJTZBsL97OF4kUQm5g5hC2uihk0NxY3WENAC0TYdILVkAyHymAntgxGkl7K+t0cXIrH5siy5S4XkFycA==" + } + }, + "npm:acorn": { + "type": "npm", + "name": "npm:acorn", + "data": { + "version": "8.16.0", + "packageName": "acorn", + "hash": "sha512-UVJyE9MttOsBQIDKw1skb9nAwQuR5wuGD3+82K6JgJlm/Y+KI92oNsMNGZCYdDsVtRHSak0pcV5Dno5+4jh9sw==" + } + }, + "npm:agent-base@6.0.2": { + "type": "npm", + "name": "npm:agent-base@6.0.2", + "data": { + "version": "6.0.2", + "packageName": "agent-base", + "hash": "sha512-RZNwNclF7+MS/8bDg70amg32dyeZGZxiDuQmZxKLAlQjr3jGyLx+4Kkk58UO7D2QdgFIQCovuSuZESne6RG6XQ==" + } + }, + "npm:agent-base": { + "type": "npm", + "name": "npm:agent-base", + "data": { + "version": "7.1.4", + "packageName": "agent-base", + "hash": "sha512-MnA+YT8fwfJPgBx3m60MNqakm30XOkyIoH1y6huTQvC0PwZG7ki8NacLBcrPbNoo8vEZy7Jpuk7+jMO+CUovTQ==" + } + }, + "npm:ajv-formats": { + "type": "npm", + "name": "npm:ajv-formats", + "data": { + "version": "3.0.1", + "packageName": "ajv-formats", + "hash": "sha512-8iUql50EUR+uUcdRQ3HDqa6EVyo3docL8g5WJ3FNcWmu62IbkGUue/pEyLBW8VGKKucTPgqeks4fIU1DA4yowQ==" + } + }, + "npm:ajv": { + "type": "npm", + "name": "npm:ajv", + "data": { + "version": "6.14.0", + "packageName": "ajv", + "hash": "sha512-IWrosm/yrn43eiKqkfkHis7QioDleaXQHdDVPKg0FSwwd/DuvyX79TZnFOnYpB7dcsFAMmtFztZuXPDvSePkFw==" + } + }, + "npm:ajv@8.18.0": { + "type": "npm", + "name": "npm:ajv@8.18.0", + "data": { + "version": "8.18.0", + "packageName": "ajv", + "hash": "sha512-PlXPeEWMXMZ7sPYOHqmDyCJzcfNrUr3fGNKtezX14ykXOEIvyK81d+qydx89KY5O71FKMPaQ2vBfBFI5NHR63A==" + } + }, + "npm:ansi-colors": { + "type": "npm", + "name": "npm:ansi-colors", + "data": { + "version": "4.1.3", + "packageName": "ansi-colors", + "hash": "sha512-/6w/C21Pm1A7aZitlI5Ni/2J6FFQN8i1Cvz3kHABAAbw93v/NlvKdVOqz7CCWz/3iv/JplRSEEZ83XION15ovw==" + } + }, + "npm:ansi-regex@5.0.1": { + "type": "npm", + "name": "npm:ansi-regex@5.0.1", + "data": { + "version": "5.0.1", + "packageName": "ansi-regex", + "hash": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==" + } + }, + "npm:ansi-regex": { + "type": "npm", + "name": "npm:ansi-regex", + "data": { + "version": "6.2.2", + "packageName": "ansi-regex", + "hash": "sha512-Bq3SmSpyFHaWjPk8If9yc6svM8c56dB5BAtW4Qbw5jHTwwXXcTLoRMkpDJp6VL0XzlWaCHTXrkFURMYmD0sLqg==" + } + }, + "npm:ansi-styles@4.3.0": { + "type": "npm", + "name": "npm:ansi-styles@4.3.0", + "data": { + "version": "4.3.0", + "packageName": "ansi-styles", + "hash": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==" + } + }, + "npm:ansi-styles@5.2.0": { + "type": "npm", + "name": "npm:ansi-styles@5.2.0", + "data": { + "version": "5.2.0", + "packageName": "ansi-styles", + "hash": "sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA==" + } + }, + "npm:ansi-styles": { + "type": "npm", + "name": "npm:ansi-styles", + "data": { + "version": "6.2.3", + "packageName": "ansi-styles", + "hash": "sha512-4Dj6M28JB+oAH8kFkTLUo+a2jwOFkuqb3yucU0CANcRRUbxS0cP0nZYCGjcc3BNXwRIsUVmDGgzawme7zvJHvg==" + } + }, + "npm:ansis": { + "type": "npm", + "name": "npm:ansis", + "data": { + "version": "4.2.0", + "packageName": "ansis", + "hash": "sha512-HqZ5rWlFjGiV0tDm3UxxgNRqsOTniqoKZu0pIAfh7TZQMGuZK+hH0drySty0si0QXj1ieop4+SkSfPZBPPkHig==" + } + }, + "npm:argparse@1.0.10": { + "type": "npm", + "name": "npm:argparse@1.0.10", + "data": { + "version": "1.0.10", + "packageName": "argparse", + "hash": "sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==" + } + }, + "npm:argparse": { + "type": "npm", + "name": "npm:argparse", + "data": { + "version": "2.0.1", + "packageName": "argparse", + "hash": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==" + } + }, + "npm:args-tokenizer": { + "type": "npm", + "name": "npm:args-tokenizer", + "data": { + "version": "0.3.0", + "packageName": "args-tokenizer", + "hash": "sha512-xXAd7G2Mll5W8uo37GETpQ2VrE84M181Z7ugHFGQnJZ50M2mbOv0osSZ9VsSgPfJQ+LVG0prSi0th+ELMsno7Q==" + } + }, + "npm:array-buffer-byte-length": { + "type": "npm", + "name": "npm:array-buffer-byte-length", + "data": { + "version": "1.0.2", + "packageName": "array-buffer-byte-length", + "hash": "sha512-LHE+8BuR7RYGDKvnrmcuSq3tDcKv9OFEXQt/HpbZhY7V6h0zlUXutnAD82GiFx9rdieCMjkvtcsPqBwgUl1Iiw==" + } + }, + "npm:array-includes": { + "type": "npm", + "name": "npm:array-includes", + "data": { + "version": "3.1.9", + "packageName": "array-includes", + "hash": "sha512-FmeCCAenzH0KH381SPT5FZmiA/TmpndpcaShhfgEN9eCVjnFBqq3l1xrI42y8+PPLI6hypzou4GXw00WHmPBLQ==" + } + }, + "npm:array.prototype.findlast": { + "type": "npm", + "name": "npm:array.prototype.findlast", + "data": { + "version": "1.2.5", + "packageName": "array.prototype.findlast", + "hash": "sha512-CVvd6FHg1Z3POpBLxO6E6zr+rSKEQ9L6rZHAaY7lLfhKsWYUBBOuMs0e9o24oopj6H+geRCX0YJ+TJLBK2eHyQ==" + } + }, + "npm:array.prototype.flat": { + "type": "npm", + "name": "npm:array.prototype.flat", + "data": { + "version": "1.3.3", + "packageName": "array.prototype.flat", + "hash": "sha512-rwG/ja1neyLqCuGZ5YYrznA62D4mZXg0i1cIskIUKSiqF3Cje9/wXAls9B9s1Wa2fomMsIv8czB8jZcPmxCXFg==" + } + }, + "npm:array.prototype.flatmap": { + "type": "npm", + "name": "npm:array.prototype.flatmap", + "data": { + "version": "1.3.3", + "packageName": "array.prototype.flatmap", + "hash": "sha512-Y7Wt51eKJSyi80hFrJCePGGNo5ktJCslFuboqJsbf57CCPcm5zztluPlc4/aD8sWsKvlwatezpV4U1efk8kpjg==" + } + }, + "npm:array.prototype.tosorted": { + "type": "npm", + "name": "npm:array.prototype.tosorted", + "data": { + "version": "1.1.4", + "packageName": "array.prototype.tosorted", + "hash": "sha512-p6Fx8B7b7ZhL/gmUsAy0D15WhvDccw3mnGNbZpi3pmeJdxtWsj2jEaI4Y6oo3XiHfzuSgPwKc04MYt6KgvC/wA==" + } + }, + "npm:arraybuffer.prototype.slice": { + "type": "npm", + "name": "npm:arraybuffer.prototype.slice", + "data": { + "version": "1.0.4", + "packageName": "arraybuffer.prototype.slice", + "hash": "sha512-BNoCY6SXXPQ7gF2opIP4GBE+Xw7U+pHMYKuzjgCN3GwiaIR09UUeKfheyIry77QtrCBlC0KK0q5/TER/tYh3PQ==" + } + }, + "npm:ast-kit": { + "type": "npm", + "name": "npm:ast-kit", + "data": { + "version": "3.0.0-beta.1", + "packageName": "ast-kit", + "hash": "sha512-trmleAnZ2PxN/loHWVhhx1qeOHSRXq4TDsBBxq3GqeJitfk3+jTQ+v/C1km/KYq9M7wKqCewMh+/NAvVH7m+bw==" + } + }, + "npm:ast-types": { + "type": "npm", + "name": "npm:ast-types", + "data": { + "version": "0.13.4", + "packageName": "ast-types", + "hash": "sha512-x1FCFnFifvYDDzTaLII71vG5uvDwgtmDTEVWAxrgeiR8VjMONcCXJx7E+USjDtHlwFmt9MysbqgF9b9Vjr6w+w==" + } + }, + "npm:async-function": { + "type": "npm", + "name": "npm:async-function", + "data": { + "version": "1.0.0", + "packageName": "async-function", + "hash": "sha512-hsU18Ae8CDTR6Kgu9DYf0EbCr/a5iGL0rytQDobUcdpYOKokk8LEjVphnXkDkgpi0wYVsqrXuP0bZxJaTqdgoA==" + } + }, + "npm:async-sema": { + "type": "npm", + "name": "npm:async-sema", + "data": { + "version": "3.1.1", + "packageName": "async-sema", + "hash": "sha512-tLRNUXati5MFePdAk8dw7Qt7DpxPB60ofAgn8WRhW6a2rcimZnYBP9oxHiv0OHy+Wz7kPMG+t4LGdt31+4EmGg==" + } + }, + "npm:async": { + "type": "npm", + "name": "npm:async", + "data": { + "version": "3.2.6", + "packageName": "async", + "hash": "sha512-htCUDlxyyCLMgaM3xXg0C0LW2xqfuQ6p05pCEIsXuyQ+a1koYKTuBMzRNwmybfLgvJDMd0r1LTn4+E0Ti6C2AA==" + } + }, + "npm:asynckit": { + "type": "npm", + "name": "npm:asynckit", + "data": { + "version": "0.4.0", + "packageName": "asynckit", + "hash": "sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q==" + } + }, + "npm:atomic-sleep": { + "type": "npm", + "name": "npm:atomic-sleep", + "data": { + "version": "1.0.0", + "packageName": "atomic-sleep", + "hash": "sha512-kNOjDqAh7px0XWNI+4QbzoiR/nTkHAWNud2uvnJquD1/x5a7EQZMJT0AczqK0Qn67oY/TTQ1LbUKajZpp3I9tQ==" + } + }, + "npm:attributes-parser": { + "type": "npm", + "name": "npm:attributes-parser", + "data": { + "version": "2.2.3", + "packageName": "attributes-parser", + "hash": "sha512-zjOUWt95la8AdUO+kP1GBOonWrV5jy9NjJP+z9tva/DSA6FIzGKcN/gk3tdqQf/pOeB8dkyd3FCPrjhELMmrkg==" + } + }, + "npm:automad-prism-themes": { + "type": "npm", + "name": "npm:automad-prism-themes", + "data": { + "version": "0.3.7", + "packageName": "automad-prism-themes", + "hash": "sha512-iTe1K6OCNJqilDapONlBQrbmQZO1u7JiJbEAJxfWUs0rGYxwyvpFmEiQ1TgZ0CmhYAYRtM1/ZT6GXbPeyw/XPg==" + } + }, + "npm:autoprefixer": { + "type": "npm", + "name": "npm:autoprefixer", + "data": { + "version": "10.4.27", + "packageName": "autoprefixer", + "hash": "sha512-NP9APE+tO+LuJGn7/9+cohklunJsXWiaWEfV3si4Gi/XHDwVNgkwr1J3RQYFIvPy76GmJ9/bW8vyoU1LcxwKHA==" + } + }, + "npm:available-typed-arrays": { + "type": "npm", + "name": "npm:available-typed-arrays", + "data": { + "version": "1.0.7", + "packageName": "available-typed-arrays", + "hash": "sha512-wvUjBtSGN7+7SjNpq/9M2Tg350UZD3q62IFZLbRAR1bSMlCo1ZaeW+BJ+D090e4hIIZLBcTDWe4Mh4jvUDajzQ==" + } + }, + "npm:avvio": { + "type": "npm", + "name": "npm:avvio", + "data": { + "version": "9.2.0", + "packageName": "avvio", + "hash": "sha512-2t/sy01ArdHHE0vRH5Hsay+RtCZt3dLPji7W7/MMOCEgze5b7SNDC4j5H6FnVgPkI1MTNFGzHdHrVXDDl7QSSQ==" + } + }, + "npm:aws-cdk-lib": { + "type": "npm", + "name": "npm:aws-cdk-lib", + "data": { + "version": "2.244.0", + "packageName": "aws-cdk-lib", + "hash": "sha512-j5FVeZv5W+v6j6OnW8RjoN04T+8pYvDJJV7yXhhj4IiGDKPgMH3fflQLQXJousd2QQk+nSAjghDVJcrZ4GFyGA==" + } + }, + "npm:aws-cdk": { + "type": "npm", + "name": "npm:aws-cdk", + "data": { + "version": "2.1112.0", + "packageName": "aws-cdk", + "hash": "sha512-IYUbsd9tpBQRqEO2evWsG+p2ZNa6wG5/sJvmWaqo45V1ep8BW+mrf+jEpFLD9uDPXqRA57EZGVGils7QLbOhNA==" + } + }, + "npm:aws-ssl-profiles": { + "type": "npm", + "name": "npm:aws-ssl-profiles", + "data": { + "version": "1.1.2", + "packageName": "aws-ssl-profiles", + "hash": "sha512-NZKeq9AfyQvEeNlN0zSYAaWrmBffJh3IELMZfRpJVWgrpEbtEpnjvzqBPf+mxoI287JohRDoa+/nsfqqiZmF6g==" + } + }, + "npm:axios": { + "type": "npm", + "name": "npm:axios", + "data": { + "version": "1.13.6", + "packageName": "axios", + "hash": "sha512-ChTCHMouEe2kn713WHbQGcuYrr6fXTBiu460OTwWrWob16g1bXn4vtz07Ope7ewMozJAnEquLk5lWQWtBig9DQ==" + } + }, + "npm:b4a": { + "type": "npm", + "name": "npm:b4a", + "data": { + "version": "1.7.3", + "packageName": "b4a", + "hash": "sha512-5Q2mfq2WfGuFp3uS//0s6baOJLMoVduPYVeNmDYxu5OUA1/cBfvr2RIS7vi62LdNj/urk1hfmj867I3qt6uZ7Q==" + } + }, + "npm:babel-plugin-jsx-dom-expressions": { + "type": "npm", + "name": "npm:babel-plugin-jsx-dom-expressions", + "data": { + "version": "0.40.3", + "packageName": "babel-plugin-jsx-dom-expressions", + "hash": "sha512-5HOwwt0BYiv/zxl7j8Pf2bGL6rDXfV6nUhLs8ygBX+EFJXzBPHM/euj9j/6deMZ6wa52Wb2PBaAV5U/jKwIY1w==" + } + }, + "npm:babel-plugin-module-resolver": { + "type": "npm", + "name": "npm:babel-plugin-module-resolver", + "data": { + "version": "5.0.2", + "packageName": "babel-plugin-module-resolver", + "hash": "sha512-9KtaCazHee2xc0ibfqsDeamwDps6FZNo5S0Q81dUqEuFzVwPhcT4J5jOqIVvgCA3Q/wO9hKYxN/Ds3tIsp5ygg==" + } + }, + "npm:babel-preset-solid": { + "type": "npm", + "name": "npm:babel-preset-solid", + "data": { + "version": "1.9.10", + "packageName": "babel-preset-solid", + "hash": "sha512-HCelrgua/Y+kqO8RyL04JBWS/cVdrtUv/h45GntgQY+cJl4eBcKkCDV3TdMjtKx1nXwRaR9QXslM/Npm1dxdZQ==" + } + }, + "npm:balanced-match": { + "type": "npm", + "name": "npm:balanced-match", + "data": { + "version": "1.0.2", + "packageName": "balanced-match", + "hash": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==" + } + }, + "npm:balanced-match@4.0.2": { + "type": "npm", + "name": "npm:balanced-match@4.0.2", + "data": { + "version": "4.0.2", + "packageName": "balanced-match", + "hash": "sha512-x0K50QvKQ97fdEz2kPehIerj+YTeptKF9hyYkKf6egnwmMWAkADiO0QCzSp0R5xN8FTZgYaBfSaue46Ej62nMg==" + } + }, + "npm:bare-events": { + "type": "npm", + "name": "npm:bare-events", + "data": { + "version": "2.8.0", + "packageName": "bare-events", + "hash": "sha512-AOhh6Bg5QmFIXdViHbMc2tLDsBIRxdkIaIddPslJF9Z5De3APBScuqGP2uThXnIpqFrgoxMNC6km7uXNIMLHXA==" + } + }, + "npm:bare-fs": { + "type": "npm", + "name": "npm:bare-fs", + "data": { + "version": "4.4.11", + "packageName": "bare-fs", + "hash": "sha512-Bejmm9zRMvMTRoHS+2adgmXw1ANZnCNx+B5dgZpGwlP1E3x6Yuxea8RToddHUbWtVV0iUMWqsgZr8+jcgUI2SA==" + } + }, + "npm:bare-os": { + "type": "npm", + "name": "npm:bare-os", + "data": { + "version": "3.6.2", + "packageName": "bare-os", + "hash": "sha512-T+V1+1srU2qYNBmJCXZkUY5vQ0B4FSlL3QDROnKQYOqeiQR8UbjNHlPa+TIbM4cuidiN9GaTaOZgSEgsvPbh5A==" + } + }, + "npm:bare-path": { + "type": "npm", + "name": "npm:bare-path", + "data": { + "version": "3.0.0", + "packageName": "bare-path", + "hash": "sha512-tyfW2cQcB5NN8Saijrhqn0Zh7AnFNsnczRcuWODH0eYAXBsJ5gVxAUuNr7tsHSC6IZ77cA0SitzT+s47kot8Mw==" + } + }, + "npm:bare-stream": { + "type": "npm", + "name": "npm:bare-stream", + "data": { + "version": "2.7.0", + "packageName": "bare-stream", + "hash": "sha512-oyXQNicV1y8nc2aKffH+BUHFRXmx6VrPzlnaEvMhram0nPBrKcEdcyBg5r08D0i8VxngHFAiVyn1QKXpSG0B8A==" + } + }, + "npm:bare-url": { + "type": "npm", + "name": "npm:bare-url", + "data": { + "version": "2.3.0", + "packageName": "bare-url", + "hash": "sha512-c+RCqMSZbkz97Mw1LWR0gcOqwK82oyYKfLoHJ8k13ybi1+I80ffdDzUy0TdAburdrR/kI0/VuN8YgEnJqX+Nyw==" + } + }, + "npm:base64-js": { + "type": "npm", + "name": "npm:base64-js", + "data": { + "version": "1.5.1", + "packageName": "base64-js", + "hash": "sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==" + } + }, + "npm:baseline-browser-mapping": { + "type": "npm", + "name": "npm:baseline-browser-mapping", + "data": { + "version": "2.9.7", + "packageName": "baseline-browser-mapping", + "hash": "sha512-k9xFKplee6KIio3IDbwj+uaCLpqzOwakOgmqzPezM0sFJlFKcg30vk2wOiAJtkTSfx0SSQDSe8q+mWA/fSH5Zg==" + } + }, + "npm:basic-auth": { + "type": "npm", + "name": "npm:basic-auth", + "data": { + "version": "2.0.1", + "packageName": "basic-auth", + "hash": "sha512-NF+epuEdnUYVlGuhaxbbq+dvJttwLnGY+YixlXlME5KpQ5W3CnXA5cVTneY3SPbPDRkcjMbifrwmFYcClgOZeg==" + } + }, + "npm:basic-ftp": { + "type": "npm", + "name": "npm:basic-ftp", + "data": { + "version": "5.0.5", + "packageName": "basic-ftp", + "hash": "sha512-4Bcg1P8xhUuqcii/S0Z9wiHIrQVPMermM1any+MX5GeGD7faD3/msQUDGLol9wOcz4/jbg/WJnGqoJF6LiBdtg==" + } + }, + "npm:better-sqlite3": { + "type": "npm", + "name": "npm:better-sqlite3", + "data": { + "version": "12.8.0", + "packageName": "better-sqlite3", + "hash": "sha512-RxD2Vd96sQDjQr20kdP+F+dK/1OUNiVOl200vKBZY8u0vTwysfolF6Hq+3ZK2+h8My9YvZhHsF+RSGZW2VYrPQ==" + } + }, + "npm:bindings": { + "type": "npm", + "name": "npm:bindings", + "data": { + "version": "1.5.0", + "packageName": "bindings", + "hash": "sha512-p2q/t/mhvuOj/UeLlV6566GD/guowlr0hHxClI0W9m7MWYkL1F0hLo+0Aexs9HSPCtR1SXQ0TD3MMKrXZajbiQ==" + } + }, + "npm:birpc": { + "type": "npm", + "name": "npm:birpc", + "data": { + "version": "4.0.0", + "packageName": "birpc", + "hash": "sha512-LShSxJP0KTmd101b6DRyGBj57LZxSDYWKitQNW/mi8GRMvZb078Uf9+pveax1DrVL89vm7mWe+TovdI/UDOuPw==" + } + }, + "npm:bl": { + "type": "npm", + "name": "npm:bl", + "data": { + "version": "4.1.0", + "packageName": "bl", + "hash": "sha512-1W07cM9gS6DcLperZfFSj+bWLtaPGSOHWhPiGzXmvVJbRLdG82sH/Kn8EtW1VqWVA54AKf2h5k5BbnIbwF3h6w==" + } + }, + "npm:blake3-wasm": { + "type": "npm", + "name": "npm:blake3-wasm", + "data": { + "version": "2.1.5", + "packageName": "blake3-wasm", + "hash": "sha512-F1+K8EbfOZE49dtoPtmxUQrpXaBIl3ICvasLh+nJta0xkz+9kF/7uet9fLnwKqhDrmj6g+6K3Tw9yQPUg2ka5g==" + } + }, + "npm:body-parser": { + "type": "npm", + "name": "npm:body-parser", + "data": { + "version": "2.2.1", + "packageName": "body-parser", + "hash": "sha512-nfDwkulwiZYQIGwxdy0RUmowMhKcFVcYXUU7m4QlKYim1rUtg83xm2yjZ40QjDuc291AJjjeSc9b++AWHSgSHw==" + } + }, + "npm:boolbase": { + "type": "npm", + "name": "npm:boolbase", + "data": { + "version": "1.0.0", + "packageName": "boolbase", + "hash": "sha512-JZOSA7Mo9sNGB8+UjSgzdLtokWAky1zbztM3WRLCbZ70/3cTANmQmOdR7y2g+J0e2WXywy1yS468tY+IruqEww==" + } + }, + "npm:brace-expansion@1.1.12": { + "type": "npm", + "name": "npm:brace-expansion@1.1.12", + "data": { + "version": "1.1.12", + "packageName": "brace-expansion", + "hash": "sha512-9T9UjW3r0UW5c1Q7GTwllptXwhvYmEzFhzMfZ9H7FQWt+uZePjZPjBP/W1ZEyZ1twGWom5/56TF4lPcqjnDHcg==" + } + }, + "npm:brace-expansion@2.0.2": { + "type": "npm", + "name": "npm:brace-expansion@2.0.2", + "data": { + "version": "2.0.2", + "packageName": "brace-expansion", + "hash": "sha512-Jt0vHyM+jmUBqojB7E1NIYadt0vI0Qxjxd2TErW94wDz+E2LAm5vKMXXwg6ZZBTHPuUlDgQHKXvjGBdfcF1ZDQ==" + } + }, + "npm:brace-expansion": { + "type": "npm", + "name": "npm:brace-expansion", + "data": { + "version": "5.0.2", + "packageName": "brace-expansion", + "hash": "sha512-Pdk8c9poy+YhOgVWw1JNN22/HcivgKWwpxKq04M/jTmHyCZn12WPJebZxdjSa5TmBqISrUSgNYU3eRORljfCCw==" + } + }, + "npm:braces": { + "type": "npm", + "name": "npm:braces", + "data": { + "version": "3.0.3", + "packageName": "braces", + "hash": "sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA==" + } + }, + "npm:browserless": { + "type": "npm", + "name": "npm:browserless", + "data": { + "version": "10.12.5", + "packageName": "browserless", + "hash": "sha512-7FZIdkSDYfIIcLyGOnqVYwLURVArQzhZQ5KrLXJFb9Hnc0Hfg11LI3Rak7K6WD6PGw45SzeJRxPc7np3bSLWnw==" + } + }, + "npm:browserslist": { + "type": "npm", + "name": "npm:browserslist", + "data": { + "version": "4.28.1", + "packageName": "browserslist", + "hash": "sha512-ZC5Bd0LgJXgwGqUknZY/vkUQ04r8NXnJZ3yYi4vDmSiZmC/pdSN0NbNRPxZpbtO4uAfDUAFffO8IZoM3Gj8IkA==" + } + }, + "npm:buffer-crc32": { + "type": "npm", + "name": "npm:buffer-crc32", + "data": { + "version": "0.2.13", + "packageName": "buffer-crc32", + "hash": "sha512-VO9Ht/+p3SN7SKWqcrgEzjGbRSJYTx+Q1pTQC0wrWqHx0vpJraQ6GtHx8tvcg1rlK1byhU5gccxgOgj7B0TDkQ==" + } + }, + "npm:buffer-from": { + "type": "npm", + "name": "npm:buffer-from", + "data": { + "version": "1.1.2", + "packageName": "buffer-from", + "hash": "sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ==" + } + }, + "npm:buffer": { + "type": "npm", + "name": "npm:buffer", + "data": { + "version": "5.7.1", + "packageName": "buffer", + "hash": "sha512-EHcyIPBQ4BSGlvjB16k5KgAJ27CIsHY/2JBmCRReo48y9rQ3MaUzWX3KVlBa4U7MyX02HdVj0K7C3WaB3ju7FQ==" + } + }, + "npm:bumpp": { + "type": "npm", + "name": "npm:bumpp", + "data": { + "version": "11.0.1", + "packageName": "bumpp", + "hash": "sha512-X0ti27I/ewsx/u0EJSyl0IZWWOE95q+wIpAG/60kc5gqMNR4a23YJdd3lL7JsBN11TgLbCM4KpfGMuFfdigb4g==" + } + }, + "npm:bytes": { + "type": "npm", + "name": "npm:bytes", + "data": { + "version": "3.1.2", + "packageName": "bytes", + "hash": "sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg==" + } + }, + "npm:c12": { + "type": "npm", + "name": "npm:c12", + "data": { + "version": "3.1.0", + "packageName": "c12", + "hash": "sha512-uWoS8OU1MEIsOv8p/5a82c3H31LsWVR5qiyXVfBNOzfffjUWtPnhAb4BYI2uG2HfGmZmFjCtui5XNWaps+iFuw==" + } + }, + "npm:cac@6.7.14": { + "type": "npm", + "name": "npm:cac@6.7.14", + "data": { + "version": "6.7.14", + "packageName": "cac", + "hash": "sha512-b6Ilus+c3RrdDk+JhLKUAQfzzgLEPy6wcXqS7f/xe1EETvsDP6GORG7SFuOs6cID5YkqchW/LXZbX5bc8j7ZcQ==" + } + }, + "npm:cac": { + "type": "npm", + "name": "npm:cac", + "data": { + "version": "7.0.0", + "packageName": "cac", + "hash": "sha512-tixWYgm5ZoOD+3g6UTea91eow5z6AAHaho3g0V9CNSNb45gM8SmflpAc+GRd1InC4AqN/07Unrgp56Y94N9hJQ==" + } + }, + "npm:cacache": { + "type": "npm", + "name": "npm:cacache", + "data": { + "version": "19.0.1", + "packageName": "cacache", + "hash": "sha512-hdsUxulXCi5STId78vRVYEtDAjq99ICAUktLTeTYsLoTE6Z8dS0c8pWNCxwdrk9YfJeobDZc2Y186hD/5ZQgFQ==" + } + }, + "npm:cacheable-lookup": { + "type": "npm", + "name": "npm:cacheable-lookup", + "data": { + "version": "5.0.4", + "packageName": "cacheable-lookup", + "hash": "sha512-2/kNscPhpcxrOigMZzbiWF7dz8ilhb/nIHU3EyZiXWXpeq/au8qJ8VhdftMkty3n7Gj6HIGalQG8oiBNB3AJgA==" + } + }, + "npm:cacheable-request": { + "type": "npm", + "name": "npm:cacheable-request", + "data": { + "version": "7.0.4", + "packageName": "cacheable-request", + "hash": "sha512-v+p6ongsrp0yTGbJXjgxPow2+DL93DASP4kXCDKb8/bwRtt9OEF3whggkkDkGNzgcWy2XaF4a8nZglC7uElscg==" + } + }, + "npm:call-bind-apply-helpers": { + "type": "npm", + "name": "npm:call-bind-apply-helpers", + "data": { + "version": "1.0.2", + "packageName": "call-bind-apply-helpers", + "hash": "sha512-Sp1ablJ0ivDkSzjcaJdxEunN5/XvksFJ2sMBFfq6x0ryhQV/2b/KwFe21cMpmHtPOSij8K99/wSfoEuTObmuMQ==" + } + }, + "npm:call-bind": { + "type": "npm", + "name": "npm:call-bind", + "data": { + "version": "1.0.8", + "packageName": "call-bind", + "hash": "sha512-oKlSFMcMwpUg2ednkhQ454wfWiU/ul3CkJe/PEHcTKuiX6RpbehUiFMXu13HalGZxfUwCQzZG747YXBn1im9ww==" + } + }, + "npm:call-bound": { + "type": "npm", + "name": "npm:call-bound", + "data": { + "version": "1.0.4", + "packageName": "call-bound", + "hash": "sha512-+ys997U96po4Kx/ABpBCqhA9EuxJaQWDQg7295H4hBphv3IZg0boBKuwYpt4YXp6MZ5AmZQnU/tyMTlRpaSejg==" + } + }, + "npm:callsites": { + "type": "npm", + "name": "npm:callsites", + "data": { + "version": "3.1.0", + "packageName": "callsites", + "hash": "sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==" + } + }, + "npm:camelcase-css": { + "type": "npm", + "name": "npm:camelcase-css", + "data": { + "version": "2.0.1", + "packageName": "camelcase-css", + "hash": "sha512-QOSvevhslijgYwRx6Rv7zKdMF8lbRmx+uQGx2+vDc+KI/eBnsy9kit5aj23AgGu3pa4t9AgwbnXWqS+iOY+2aA==" + } + }, + "npm:caniuse-api": { + "type": "npm", + "name": "npm:caniuse-api", + "data": { + "version": "3.0.0", + "packageName": "caniuse-api", + "hash": "sha512-bsTwuIg/BZZK/vreVTYYbSWoe2F+71P7K5QGEX+pT250DZbfU1MQ5prOKpPR+LL6uWKK3KMwMCAS74QB3Um1uw==" + } + }, + "npm:caniuse-lite": { + "type": "npm", + "name": "npm:caniuse-lite", + "data": { + "version": "1.0.30001775", + "packageName": "caniuse-lite", + "hash": "sha512-s3Qv7Lht9zbVKE9XoTyRG6wVDCKdtOFIjBGg3+Yhn6JaytuNKPIjBMTMIY1AnOH3seL5mvF+x33oGAyK3hVt3A==" + } + }, + "npm:cdk": { + "type": "npm", + "name": "npm:cdk", + "data": { + "version": "2.1112.0", + "packageName": "cdk", + "hash": "sha512-a9asUnTapvEldOntOH7GZISwmYcr12HJas4v7183hWX0iZ8/Cb31IyPr9L5sz2tP6a9OugA45AXkjFgTCjH2+g==" + } + }, + "npm:chai": { + "type": "npm", + "name": "npm:chai", + "data": { + "version": "6.2.2", + "packageName": "chai", + "hash": "sha512-NUPRluOfOiTKBKvWPtSD4PhFvWCqOi0BGStNWs57X9js7XGTprSmFoz5F0tWhR4WPjNeR9jXqdC7/UpSJTnlRg==" + } + }, + "npm:chalk": { + "type": "npm", + "name": "npm:chalk", + "data": { + "version": "4.1.2", + "packageName": "chalk", + "hash": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==" + } + }, + "npm:character-entities": { + "type": "npm", + "name": "npm:character-entities", + "data": { + "version": "2.0.2", + "packageName": "character-entities", + "hash": "sha512-shx7oQ0Awen/BRIdkjkvz54PnEEI/EjwXDSIZp86/KKdbafHh1Df/RYGBhn4hbe2+uKC9FnT5UCEdyPz3ai9hQ==" + } + }, + "npm:chardet": { + "type": "npm", + "name": "npm:chardet", + "data": { + "version": "2.1.1", + "packageName": "chardet", + "hash": "sha512-PsezH1rqdV9VvyNhxxOW32/d75r01NY7TQCmOqomRo15ZSOKbpTFVsfjghxo6JloQUCGnH4k1LGu0R4yCLlWQQ==" + } + }, + "npm:chevrotain": { + "type": "npm", + "name": "npm:chevrotain", + "data": { + "version": "10.5.0", + "packageName": "chevrotain", + "hash": "sha512-Pkv5rBY3+CsHOYfV5g/Vs5JY9WTHHDEKOlohI2XeygaZhUeqhAlldZ8Hz9cRmxu709bvS08YzxHdTPHhffc13A==" + } + }, + "npm:chokidar": { + "type": "npm", + "name": "npm:chokidar", + "data": { + "version": "4.0.3", + "packageName": "chokidar", + "hash": "sha512-Qgzu8kfBvo+cA4962jnP1KkS6Dop5NS6g7R5LFYJr4b8Ub94PPQXUksCw9PvXoeXPRRddRNC5C1JQUR2SMGtnA==" + } + }, + "npm:chownr": { + "type": "npm", + "name": "npm:chownr", + "data": { + "version": "1.1.4", + "packageName": "chownr", + "hash": "sha512-jJ0bqzaylmJtVnNgzTeSOs8DPavpbYgEr/b0YL8/2GO3xJEhInFmhKMUnEJQjZumK7KXGFhUy89PrsJWlakBVg==" + } + }, + "npm:chownr@3.0.0": { + "type": "npm", + "name": "npm:chownr@3.0.0", + "data": { + "version": "3.0.0", + "packageName": "chownr", + "hash": "sha512-+IxzY9BZOQd/XuYPRmrvEVjF/nqj5kgT4kEq7VofrDoM1MxoRjEWkrCC3EtLi59TVawxTAn+orJwFQcrqEN1+g==" + } + }, + "npm:chromium-bidi": { + "type": "npm", + "name": "npm:chromium-bidi", + "data": { + "version": "14.0.0", + "packageName": "chromium-bidi", + "hash": "sha512-9gYlLtS6tStdRWzrtXaTMnqcM4dudNegMXJxkR0I/CXObHalYeYcAMPrL19eroNZHtJ8DQmu1E+ZNOYu/IXMXw==" + } + }, + "npm:citty@0.1.6": { + "type": "npm", + "name": "npm:citty@0.1.6", + "data": { + "version": "0.1.6", + "packageName": "citty", + "hash": "sha512-tskPPKEs8D2KPafUypv2gxwJP8h/OaJmC82QQGGDQcHvXX43xF2VDACcJVmZ0EuSxkpO9Kc4MlrA3q0+FG58AQ==" + } + }, + "npm:citty": { + "type": "npm", + "name": "npm:citty", + "data": { + "version": "0.2.1", + "packageName": "citty", + "hash": "sha512-kEV95lFBhQgtogAPlQfJJ0WGVSokvLr/UEoFPiKKOXF7pl98HfUVUD0ejsuTCld/9xH9vogSywZ5KqHzXrZpqg==" + } + }, + "npm:class-variance-authority": { + "type": "npm", + "name": "npm:class-variance-authority", + "data": { + "version": "0.7.1", + "packageName": "class-variance-authority", + "hash": "sha512-Ka+9Trutv7G8M6WT6SeiRWz792K5qEqIGEGzXKhAE6xOWAY6pPH8U+9IY3oCMv6kqTmLsv7Xh/2w2RigkePMsg==" + } + }, + "npm:cli-cursor": { + "type": "npm", + "name": "npm:cli-cursor", + "data": { + "version": "3.1.0", + "packageName": "cli-cursor", + "hash": "sha512-I/zHAwsKf9FqGoXM4WWRACob9+SNukZTd94DWF57E4toouRulbCxcUh6RKUEOQlYTHJnzkPMySvPNaaSLNfLZw==" + } + }, + "npm:cli-spinners": { + "type": "npm", + "name": "npm:cli-spinners", + "data": { + "version": "2.6.1", + "packageName": "cli-spinners", + "hash": "sha512-x/5fWmGMnbKQAaNwN+UZlV79qBLM9JFnJuJ03gIi5whrob0xV0ofNVHy9DhwGdsMJQc2OKv0oGmLzvaqvAVv+g==" + } + }, + "npm:cli-width": { + "type": "npm", + "name": "npm:cli-width", + "data": { + "version": "4.1.0", + "packageName": "cli-width", + "hash": "sha512-ouuZd4/dm2Sw5Gmqy6bGyNNNe1qt9RpmxveLSO7KcgsTnU7RXfsw+/bukWGo1abgBiMAic068rclZsO4IWmmxQ==" + } + }, + "npm:cliui": { + "type": "npm", + "name": "npm:cliui", + "data": { + "version": "8.0.1", + "packageName": "cliui", + "hash": "sha512-BSeNnyus75C4//NQ9gQt1/csTXyo/8Sb+afLAkzAptFuMsod9HFokGNudZpi/oQV73hnVK+sR+5PVRMd+Dr7YQ==" + } + }, + "npm:clone-response": { + "type": "npm", + "name": "npm:clone-response", + "data": { + "version": "1.0.3", + "packageName": "clone-response", + "hash": "sha512-ROoL94jJH2dUVML2Y/5PEDNaSHgeOdSDicUyS7izcF63G6sTc/FTjLub4b8Il9S8S0beOfYt0TaA5qvFK+w0wA==" + } + }, + "npm:clone": { + "type": "npm", + "name": "npm:clone", + "data": { + "version": "1.0.4", + "packageName": "clone", + "hash": "sha512-JQHZ2QMW6l3aH/j6xCqQThY/9OH4D/9ls34cgkUBiEeocRTU04tHfKPBsUK1PqZCUQM7GiA0IIXJSuXHI64Kbg==" + } + }, + "npm:clsx": { + "type": "npm", + "name": "npm:clsx", + "data": { + "version": "2.1.1", + "packageName": "clsx", + "hash": "sha512-eYm0QWBtUrBWZWG0d386OGAw16Z995PiOVo2B7bjWSbHedGl5e0ZWaq65kOGgUSNesEIDkB9ISbTg/JK9dhCZA==" + } + }, + "npm:code-block-writer": { + "type": "npm", + "name": "npm:code-block-writer", + "data": { + "version": "13.0.3", + "packageName": "code-block-writer", + "hash": "sha512-Oofo0pq3IKnsFtuHqSF7TqBfr71aeyZDVJ0HpmqB7FBM2qEigL0iPONSCZSO9pE9dZTAxANe5XHG9Uy0YMv8cg==" + } + }, + "npm:color-convert": { + "type": "npm", + "name": "npm:color-convert", + "data": { + "version": "2.0.1", + "packageName": "color-convert", + "hash": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==" + } + }, + "npm:color-name": { + "type": "npm", + "name": "npm:color-name", + "data": { + "version": "1.1.4", + "packageName": "color-name", + "hash": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" + } + }, + "npm:color-string": { + "type": "npm", + "name": "npm:color-string", + "data": { + "version": "1.9.1", + "packageName": "color-string", + "hash": "sha512-shrVawQFojnZv6xM40anx4CkoDP+fZsw/ZerEMsW/pyzsRbElpsL/DBVW7q3ExxwusdNXI3lXpuhEZkzs8p5Eg==" + } + }, + "npm:color": { + "type": "npm", + "name": "npm:color", + "data": { + "version": "4.2.3", + "packageName": "color", + "hash": "sha512-1rXeuUUiGGrykh+CeBdu5Ie7OJwinCgQY0bc7GCRxy5xVHy+moaqkpL/jqQq0MtQOeYcrqEz4abc5f0KtU7W4A==" + } + }, + "npm:colord": { + "type": "npm", + "name": "npm:colord", + "data": { + "version": "2.9.3", + "packageName": "colord", + "hash": "sha512-jeC1axXpnb0/2nn/Y1LPuLdgXBLH7aDcHu4KEKfqw3CUhX7ZpfBSlPKyqXE6btIgEzfWtrX3/tyBCaCvXvMkOw==" + } + }, + "npm:colorette": { + "type": "npm", + "name": "npm:colorette", + "data": { + "version": "2.0.20", + "packageName": "colorette", + "hash": "sha512-IfEDxwoWIjkeXL1eXcDiow4UbKjhLdq6/EuSVR9GMN7KVH3r9gQ83e73hsz1Nd1T3ijd5xv1wcWRYO+D6kCI2w==" + } + }, + "npm:combined-stream": { + "type": "npm", + "name": "npm:combined-stream", + "data": { + "version": "1.0.8", + "packageName": "combined-stream", + "hash": "sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==" + } + }, + "npm:commander": { + "type": "npm", + "name": "npm:commander", + "data": { + "version": "7.2.0", + "packageName": "commander", + "hash": "sha512-QrWXB+ZQSVPmIWIhtEO9H+gwHaMGYiF5ChvoJ+K9ZGHG/sVsa6yiesAD1GC/x46sET00Xlwo1u49RVVVzvcSkw==" + } + }, + "npm:component-register": { + "type": "npm", + "name": "npm:component-register", + "data": { + "version": "0.8.8", + "packageName": "component-register", + "hash": "sha512-djhwcxjY+X9dacaYUEOkOm7tda8uOEDiMDigWysu3xv54M8o6XDlsjR1qt5Y8QLGiKg51fqXFIR2HUTmt9ys0Q==" + } + }, + "npm:concat-map": { + "type": "npm", + "name": "npm:concat-map", + "data": { + "version": "0.0.1", + "packageName": "concat-map", + "hash": "sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==" + } + }, + "npm:confbox@0.1.8": { + "type": "npm", + "name": "npm:confbox@0.1.8", + "data": { + "version": "0.1.8", + "packageName": "confbox", + "hash": "sha512-RMtmw0iFkeR4YV+fUOSucriAQNb9g8zFR52MWCtl+cCZOFRNL6zeB395vPzFhEjjn4fMxXudmELnl/KF/WrK6w==" + } + }, + "npm:confbox": { + "type": "npm", + "name": "npm:confbox", + "data": { + "version": "0.2.2", + "packageName": "confbox", + "hash": "sha512-1NB+BKqhtNipMsov4xI/NnhCKp9XG9NamYp5PVm9klAT0fsrNPjaFICsCFhNhwZJKNh7zB/3q8qXz0E9oaMNtQ==" + } + }, + "npm:consola": { + "type": "npm", + "name": "npm:consola", + "data": { + "version": "3.4.2", + "packageName": "consola", + "hash": "sha512-5IKcdX0nnYavi6G7TtOhwkYzyjfJlatbjMjuLSfE2kYT5pMDOilZ4OvMhi637CcDICTmz3wARPoyhqyX1Y+XvA==" + } + }, + "npm:constructs": { + "type": "npm", + "name": "npm:constructs", + "data": { + "version": "10.5.1", + "packageName": "constructs", + "hash": "sha512-f/TfFXiS3G/yVIXDjOQn9oTlyu9Wo7Fxyjj7lb8r92iO81jR2uST+9MstxZTmDGx/CgIbxCXkFXgupnLTNxQZg==" + } + }, + "npm:content-disposition": { + "type": "npm", + "name": "npm:content-disposition", + "data": { + "version": "1.0.1", + "packageName": "content-disposition", + "hash": "sha512-oIXISMynqSqm241k6kcQ5UwttDILMK4BiurCfGEREw6+X9jkkpEe5T9FZaApyLGGOnFuyMWZpdolTXMtvEJ08Q==" + } + }, + "npm:content-type": { + "type": "npm", + "name": "npm:content-type", + "data": { + "version": "1.0.5", + "packageName": "content-type", + "hash": "sha512-nTjqfcBFEipKdXCv4YDQWCfmcLZKm81ldF0pAopTvyrFGVbcR6P/VAAd5G7N+0tTr8QqiU0tFadD6FK4NtJwOA==" + } + }, + "npm:convert-route": { + "type": "npm", + "name": "npm:convert-route", + "data": { + "version": "0.1.2", + "packageName": "convert-route", + "hash": "sha512-KSp+HiFELyZGWsrderXM0EjVo8Hj2eDT2LvJXNz9vnK6BVgEvlhREkAYz1oV6bx3ulhXvOtuRyE94BovdPigCQ==" + } + }, + "npm:convert-source-map": { + "type": "npm", + "name": "npm:convert-source-map", + "data": { + "version": "2.0.0", + "packageName": "convert-source-map", + "hash": "sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg==" + } + }, + "npm:cookie-es": { + "type": "npm", + "name": "npm:cookie-es", + "data": { + "version": "1.2.2", + "packageName": "cookie-es", + "hash": "sha512-+W7VmiVINB+ywl1HGXJXmrqkOhpKrIiVZV6tQuV54ZyQC7MMuBt81Vc336GMLoHBq5hV/F9eXgt5Mnx0Rha5Fg==" + } + }, + "npm:cookie-signature": { + "type": "npm", + "name": "npm:cookie-signature", + "data": { + "version": "1.2.2", + "packageName": "cookie-signature", + "hash": "sha512-D76uU73ulSXrD1UXF4KE2TMxVVwhsnCgfAyTg9k8P6KGZjlXKrOLe4dJQKI3Bxi5wjesZoFXJWElNWBjPZMbhg==" + } + }, + "npm:cookie": { + "type": "npm", + "name": "npm:cookie", + "data": { + "version": "0.7.2", + "packageName": "cookie", + "hash": "sha512-yki5XnKuf750l50uGTllt6kKILY4nQ1eNIQatoXEByZ5dWgnKqbnqmTrBE5B4N7lrMJKQ2ytWMiTO2o0v6Ew/w==" + } + }, + "npm:cookie@1.1.1": { + "type": "npm", + "name": "npm:cookie@1.1.1", + "data": { + "version": "1.1.1", + "packageName": "cookie", + "hash": "sha512-ei8Aos7ja0weRpFzJnEA9UHJ/7XQmqglbRwnf2ATjcB9Wq874VKH9kfjjirM6UhU2/E5fFYadylyhFldcqSidQ==" + } + }, + "npm:corser": { + "type": "npm", + "name": "npm:corser", + "data": { + "version": "2.0.1", + "packageName": "corser", + "hash": "sha512-utCYNzRSQIZNPIcGZdQc92UVJYAhtGAteCFg0yRaFm8f0P+CPtyGyHXJcGXnffjCybUCEx3FQ2G7U3/o9eIkVQ==" + } + }, + "npm:cosmiconfig": { + "type": "npm", + "name": "npm:cosmiconfig", + "data": { + "version": "9.0.0", + "packageName": "cosmiconfig", + "hash": "sha512-itvL5h8RETACmOTFc4UfIyB2RfEHi71Ax6E/PivVxq9NseKbOWpeyHEOIbmAw1rs8Ak0VursQNww7lf7YtUwzg==" + } + }, + "npm:cross-spawn": { + "type": "npm", + "name": "npm:cross-spawn", + "data": { + "version": "7.0.6", + "packageName": "cross-spawn", + "hash": "sha512-uV2QOWP2nWzsy2aMp8aRibhi9dlzF5Hgh5SHaB9OiTGEyDTiJJyx0uy51QXdyWbtAHNua4XJzUKca3OzKUd3vA==" + } + }, + "npm:crossws": { + "type": "npm", + "name": "npm:crossws", + "data": { + "version": "0.3.5", + "packageName": "crossws", + "hash": "sha512-ojKiDvcmByhwa8YYqbQI/hg7MEU0NC03+pSdEq4ZUnZR9xXpwk7E43SMNGkn+JxJGPFtNvQ48+vV2p+P1ml5PA==" + } + }, + "npm:css-declaration-sorter": { + "type": "npm", + "name": "npm:css-declaration-sorter", + "data": { + "version": "6.4.1", + "packageName": "css-declaration-sorter", + "hash": "sha512-rtdthzxKuyq6IzqX6jEcIzQF/YqccluefyCYheovBOLhFT/drQA9zj/UbRAa9J7C0o6EG6u3E6g+vKkay7/k3g==" + } + }, + "npm:css-select": { + "type": "npm", + "name": "npm:css-select", + "data": { + "version": "4.3.0", + "packageName": "css-select", + "hash": "sha512-wPpOYtnsVontu2mODhA19JrqWxNsfdatRKd64kmpRbQgh1KtItko5sTnEpPdpSaJszTOhEMlF/RPz28qj4HqhQ==" + } + }, + "npm:css-tree": { + "type": "npm", + "name": "npm:css-tree", + "data": { + "version": "1.1.3", + "packageName": "css-tree", + "hash": "sha512-tRpdppF7TRazZrjJ6v3stzv93qxRcSsFmW6cX0Zm2NVKpxE1WV1HblnghVv9TreireHkqI/VDEsfolRF1p6y7Q==" + } + }, + "npm:css-what": { + "type": "npm", + "name": "npm:css-what", + "data": { + "version": "6.2.2", + "packageName": "css-what", + "hash": "sha512-u/O3vwbptzhMs3L1fQE82ZSLHQQfto5gyZzwteVIEyeaY5Fc7R4dapF/BvRoSYFeqfBk4m0V1Vafq5Pjv25wvA==" + } + }, + "npm:cssesc": { + "type": "npm", + "name": "npm:cssesc", + "data": { + "version": "3.0.0", + "packageName": "cssesc", + "hash": "sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg==" + } + }, + "npm:cssnano-preset-default": { + "type": "npm", + "name": "npm:cssnano-preset-default", + "data": { + "version": "5.2.14", + "packageName": "cssnano-preset-default", + "hash": "sha512-t0SFesj/ZV2OTylqQVOrFgEh5uanxbO6ZAdeCrNsUQ6fVuXwYTxJPNAGvGTxHbD68ldIJNec7PyYZDBrfDQ+6A==" + } + }, + "npm:cssnano-utils": { + "type": "npm", + "name": "npm:cssnano-utils", + "data": { + "version": "3.1.0", + "packageName": "cssnano-utils", + "hash": "sha512-JQNR19/YZhz4psLX/rQ9M83e3z2Wf/HdJbryzte4a3NSuafyp9w/I4U+hx5C2S9g41qlstH7DEWnZaaj83OuEA==" + } + }, + "npm:csso": { + "type": "npm", + "name": "npm:csso", + "data": { + "version": "4.2.0", + "packageName": "csso", + "hash": "sha512-wvlcdIbf6pwKEk7vHj8/Bkc0B4ylXZruLvOgs9doS5eOsOpuodOV2zJChSpkp+pRpYQLQMeF04nr3Z68Sta9jA==" + } + }, + "npm:csstype": { + "type": "npm", + "name": "npm:csstype", + "data": { + "version": "3.2.3", + "packageName": "csstype", + "hash": "sha512-z1HGKcYy2xA8AGQfwrn0PAy+PB7X/GSj3UVJW9qKyn43xWa+gl5nXmU4qqLMRzWVLFC8KusUX8T/0kCiOYpAIQ==" + } + }, + "npm:daisyui": { + "type": "npm", + "name": "npm:daisyui", + "data": { + "version": "5.5.19", + "packageName": "daisyui", + "hash": "sha512-pbFAkl1VCEh/MPCeclKL61I/MqRIFFhNU7yiXoDDRapXN4/qNCoMxeCCswyxEEhqL5eiTTfwHvucFtOE71C9sA==" + } + }, + "npm:data-uri-to-buffer": { + "type": "npm", + "name": "npm:data-uri-to-buffer", + "data": { + "version": "4.0.1", + "packageName": "data-uri-to-buffer", + "hash": "sha512-0R9ikRb668HB7QDxT1vkpuUBtqc53YyAwMwGeUFKRojY/NWKvdZ+9UYtRfGmhqNbRkTSVpMbmyhXipFFv2cb/A==" + } + }, + "npm:data-uri-to-buffer@6.0.2": { + "type": "npm", + "name": "npm:data-uri-to-buffer@6.0.2", + "data": { + "version": "6.0.2", + "packageName": "data-uri-to-buffer", + "hash": "sha512-7hvf7/GW8e86rW0ptuwS3OcBGDjIi6SZva7hCyWC0yYry2cOPmLIjXAUHI6DK2HsnwJd9ifmt57i8eV2n4YNpw==" + } + }, + "npm:data-view-buffer": { + "type": "npm", + "name": "npm:data-view-buffer", + "data": { + "version": "1.0.2", + "packageName": "data-view-buffer", + "hash": "sha512-EmKO5V3OLXh1rtK2wgXRansaK1/mtVdTUEiEI0W8RkvgT05kfxaH29PliLnpLP73yYO6142Q72QNa8Wx/A5CqQ==" + } + }, + "npm:data-view-byte-length": { + "type": "npm", + "name": "npm:data-view-byte-length", + "data": { + "version": "1.0.2", + "packageName": "data-view-byte-length", + "hash": "sha512-tuhGbE6CfTM9+5ANGf+oQb72Ky/0+s3xKUpHvShfiz2RxMFgFPjsXuRLBVMtvMs15awe45SRb83D6wH4ew6wlQ==" + } + }, + "npm:data-view-byte-offset": { + "type": "npm", + "name": "npm:data-view-byte-offset", + "data": { + "version": "1.0.1", + "packageName": "data-view-byte-offset", + "hash": "sha512-BS8PfmtDGnrgYdOonGZQdLZslWIeCGFP9tpan0hi1Co2Zr2NKADsvGYA8XxuG/4UWgJ6Cjtv+YJnB6MM69QGlQ==" + } + }, + "npm:debug-logfmt": { + "type": "npm", + "name": "npm:debug-logfmt", + "data": { + "version": "1.4.8", + "packageName": "debug-logfmt", + "hash": "sha512-tdHndIqcBCy5vEjDBCcyv9FnCkn38QrPRP0Q5B5qi+0S2Lgc6JOPjy2ozsLt00qslzJVbxoO2W05PXNYNB0IMQ==" + } + }, + "npm:debug": { + "type": "npm", + "name": "npm:debug", + "data": { + "version": "4.4.3", + "packageName": "debug", + "hash": "sha512-RGwwWnwQvkVfavKVt22FGLw+xYSdzARwm0ru6DhTVA3umU5hZc28V3kO4stgYryrTlLpuvgI9GiijltAjNbcqA==" + } + }, + "npm:decode-named-character-reference": { + "type": "npm", + "name": "npm:decode-named-character-reference", + "data": { + "version": "1.2.0", + "packageName": "decode-named-character-reference", + "hash": "sha512-c6fcElNV6ShtZXmsgNgFFV5tVX2PaV4g+MOAkb8eXHvn6sryJBrZa9r0zV6+dtTyoCKxtDy5tyQ5ZwQuidtd+Q==" + } + }, + "npm:decompress-response": { + "type": "npm", + "name": "npm:decompress-response", + "data": { + "version": "6.0.0", + "packageName": "decompress-response", + "hash": "sha512-aW35yZM6Bb/4oJlZncMH2LCoZtJXTRxES17vE3hoRiowU2kWHaJKFkSBDnDR+cm9J+9QhXmREyIfv0pji9ejCQ==" + } + }, + "npm:deep-extend": { + "type": "npm", + "name": "npm:deep-extend", + "data": { + "version": "0.6.0", + "packageName": "deep-extend", + "hash": "sha512-LOHxIOaPYdHlJRtCQfDIVZtfw/ufM8+rVj649RIHzcm/vGwQRXFt6OPqIFWsm2XEMrNIEtWR64sY1LEKD2vAOA==" + } + }, + "npm:deep-is": { + "type": "npm", + "name": "npm:deep-is", + "data": { + "version": "0.1.4", + "packageName": "deep-is", + "hash": "sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==" + } + }, + "npm:deepmerge-ts": { + "type": "npm", + "name": "npm:deepmerge-ts", + "data": { + "version": "7.1.5", + "packageName": "deepmerge-ts", + "hash": "sha512-HOJkrhaYsweh+W+e74Yn7YStZOilkoPb6fycpwNLKzSPtruFs48nYis0zy5yJz1+ktUhHxoRDJ27RQAWLIJVJw==" + } + }, + "npm:defaults": { + "type": "npm", + "name": "npm:defaults", + "data": { + "version": "1.0.4", + "packageName": "defaults", + "hash": "sha512-eFuaLoy/Rxalv2kr+lqMlUnrDWV+3j4pljOIJgLIhI058IQfWJ7vXhyEIHu+HtC738klGALYxOKDO0bQP3tg8A==" + } + }, + "npm:defer-to-connect": { + "type": "npm", + "name": "npm:defer-to-connect", + "data": { + "version": "2.0.1", + "packageName": "defer-to-connect", + "hash": "sha512-4tvttepXG1VaYGrRibk5EwJd1t4udunSOVMdLSAL6mId1ix438oPwPZMALY41FCijukO1L0twNcGsdzS7dHgDg==" + } + }, + "npm:define-data-property": { + "type": "npm", + "name": "npm:define-data-property", + "data": { + "version": "1.1.4", + "packageName": "define-data-property", + "hash": "sha512-rBMvIzlpA8v6E+SJZoo++HAYqsLrkg7MSfIinMPFhmkorw7X+dOXVJQs+QT69zGkzMyfDnIMN2Wid1+NbL3T+A==" + } + }, + "npm:define-lazy-prop": { + "type": "npm", + "name": "npm:define-lazy-prop", + "data": { + "version": "2.0.0", + "packageName": "define-lazy-prop", + "hash": "sha512-Ds09qNh8yw3khSjiJjiUInaGX9xlqZDY7JVryGxdxV7NPeuqQfplOpQ66yJFZut3jLa5zOwkXw1g9EI2uKh4Og==" + } + }, + "npm:define-properties": { + "type": "npm", + "name": "npm:define-properties", + "data": { + "version": "1.2.1", + "packageName": "define-properties", + "hash": "sha512-8QmQKqEASLd5nx0U1B1okLElbUuuttJ/AnYmRXbbbGDWh6uS208EjD4Xqq/I9wK7u0v6O08XhTWnt5XtEbR6Dg==" + } + }, + "npm:defu": { + "type": "npm", + "name": "npm:defu", + "data": { + "version": "6.1.4", + "packageName": "defu", + "hash": "sha512-mEQCMmwJu317oSz8CwdIOdwf3xMif1ttiM8LTufzc3g6kR+9Pe236twL8j3IYT1F7GfRgGcW6MWxzZjLIkuHIg==" + } + }, + "npm:degenerator": { + "type": "npm", + "name": "npm:degenerator", + "data": { + "version": "5.0.1", + "packageName": "degenerator", + "hash": "sha512-TllpMR/t0M5sqCXfj85i4XaAzxmS5tVA16dqvdkMwGmzI+dXLXnw3J+3Vdv7VKw+ThlTMboK6i9rnZ6Nntj5CQ==" + } + }, + "npm:delayed-stream": { + "type": "npm", + "name": "npm:delayed-stream", + "data": { + "version": "1.0.0", + "packageName": "delayed-stream", + "hash": "sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ==" + } + }, + "npm:denque": { + "type": "npm", + "name": "npm:denque", + "data": { + "version": "2.1.0", + "packageName": "denque", + "hash": "sha512-HVQE3AAb/pxF8fQAoiqpvg9i3evqug3hoiwakOyZAwJm+6vZehbkYXZ0l4JxS+I3QxM97v5aaRNhj8v5oBhekw==" + } + }, + "npm:depd": { + "type": "npm", + "name": "npm:depd", + "data": { + "version": "2.0.0", + "packageName": "depd", + "hash": "sha512-g7nH6P6dyDioJogAAGprGpCtVImJhpPk/roCzdb3fIh61/s/nPsfR6onyMwkCAR/OlC3yBC0lESvUoQEAssIrw==" + } + }, + "npm:dequal": { + "type": "npm", + "name": "npm:dequal", + "data": { + "version": "2.0.3", + "packageName": "dequal", + "hash": "sha512-0je+qPKHEMohvfRTCEo3CrPG6cAzAYgmzKyxRiYSSDkS6eGJdyVJm7WaYA5ECaAD9wLB2T4EEeymA5aFVcYXCA==" + } + }, + "npm:destr": { + "type": "npm", + "name": "npm:destr", + "data": { + "version": "2.0.5", + "packageName": "destr", + "hash": "sha512-ugFTXCtDZunbzasqBxrK93Ik/DRYsO6S/fedkWEMKqt04xZ4csmnmwGDBAb07QWNaGMAmnTIemsYZCksjATwsA==" + } + }, + "npm:detect-libc": { + "type": "npm", + "name": "npm:detect-libc", + "data": { + "version": "2.1.2", + "packageName": "detect-libc", + "hash": "sha512-Btj2BOOO83o3WyH59e8MgXsxEQVcarkUOpEYrubB0urwnN10yQ364rsiByU11nZlqWYZm05i/of7io4mzihBtQ==" + } + }, + "npm:detect-node-es": { + "type": "npm", + "name": "npm:detect-node-es", + "data": { + "version": "1.1.0", + "packageName": "detect-node-es", + "hash": "sha512-ypdmJU/TbBby2Dxibuv7ZLW3Bs1QEmM7nHjEANfohJLvE0XVujisn1qPJcZxg+qDucsr+bP6fLD1rPS3AhJ7EQ==" + } + }, + "npm:devlop": { + "type": "npm", + "name": "npm:devlop", + "data": { + "version": "1.1.0", + "packageName": "devlop", + "hash": "sha512-RWmIqhcFf1lRYBvNmr7qTNuyCt/7/ns2jbpp1+PalgE/rDQcBT0fioSMUpJ93irlUhC5hrg4cYqe6U+0ImW0rA==" + } + }, + "npm:devtools-protocol": { + "type": "npm", + "name": "npm:devtools-protocol", + "data": { + "version": "0.0.1581282", + "packageName": "devtools-protocol", + "hash": "sha512-nv7iKtNZQshSW2hKzYNr46nM/Cfh5SEvE2oV0/SEGgc9XupIY5ggf84Cz8eJIkBce7S3bmTAauFD6aysMpnqsQ==" + } + }, + "npm:didyoumean3": { + "type": "npm", + "name": "npm:didyoumean3", + "data": { + "version": "1.2.5", + "packageName": "didyoumean3", + "hash": "sha512-ROol2k9IQ04NjrCiB98knunQ1cOmoXdYaGFjMfDIcXl9PuaxNVHxAZrG163aWkrRq5jIL+LatmqCgPasOvRwSQ==" + } + }, + "npm:doctrine": { + "type": "npm", + "name": "npm:doctrine", + "data": { + "version": "2.1.0", + "packageName": "doctrine", + "hash": "sha512-35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw==" + } + }, + "npm:dom-serializer": { + "type": "npm", + "name": "npm:dom-serializer", + "data": { + "version": "1.4.1", + "packageName": "dom-serializer", + "hash": "sha512-VHwB3KfrcOOkelEG2ZOfxqLZdfkil8PtJi4P8N2MMXucZq2yLp75ClViUlOVwyoHEDjYU433Aq+5zWP61+RGag==" + } + }, + "npm:domelementtype": { + "type": "npm", + "name": "npm:domelementtype", + "data": { + "version": "2.3.0", + "packageName": "domelementtype", + "hash": "sha512-OLETBj6w0OsagBwdXnPdN0cnMfF9opN69co+7ZrbfPGrdpPVNBUj02spi6B1N7wChLQiPn4CSH/zJvXw56gmHw==" + } + }, + "npm:domhandler": { + "type": "npm", + "name": "npm:domhandler", + "data": { + "version": "4.3.1", + "packageName": "domhandler", + "hash": "sha512-GrwoxYN+uWlzO8uhUXRl0P+kHE4GtVPfYzVLcUxPL7KNdHKj66vvlhiweIHqYYXWlw+T8iLMp42Lm67ghw4WMQ==" + } + }, + "npm:domutils": { + "type": "npm", + "name": "npm:domutils", + "data": { + "version": "2.8.0", + "packageName": "domutils", + "hash": "sha512-w96Cjofp72M5IIhpjgobBimYEfoPjx1Vx0BSX9P30WBdZW2WIKU0T1Bd0kz2eNZ9ikjKgHbEyKx8BB6H1L3h3A==" + } + }, + "npm:dotenv-expand": { + "type": "npm", + "name": "npm:dotenv-expand", + "data": { + "version": "11.0.7", + "packageName": "dotenv-expand", + "hash": "sha512-zIHwmZPRshsCdpMDyVsqGmgyP0yT8GAgXUnkdAoJisxvf33k7yO6OuoKmcTGuXPWSsm8Oh88nZicRLA9Y0rUeA==" + } + }, + "npm:dotenv@16.4.7": { + "type": "npm", + "name": "npm:dotenv@16.4.7", + "data": { + "version": "16.4.7", + "packageName": "dotenv", + "hash": "sha512-47qPchRCykZC03FhkYAhrvwU4xDBFIj1QPqaarj6mdM/hgUzfPHcpkHJOn3mJAufFeeAxAzeGsr5X0M4k6fLZQ==" + } + }, + "npm:dotenv@16.6.1": { + "type": "npm", + "name": "npm:dotenv@16.6.1", + "data": { + "version": "16.6.1", + "packageName": "dotenv", + "hash": "sha512-uBq4egWHTcTt33a72vpSG0z3HnPuIl6NqYcTrKEg2azoEyl2hpW0zqlxysq2pK9HlDIHyHyakeYaYnSAwd8bow==" + } + }, + "npm:dotenv": { + "type": "npm", + "name": "npm:dotenv", + "data": { + "version": "17.3.1", + "packageName": "dotenv", + "hash": "sha512-IO8C/dzEb6O3F9/twg6ZLXz164a2fhTnEWb95H23Dm4OuN+92NmEAlTrupP9VW6Jm3sO26tQlqyvyi4CsnY9GA==" + } + }, + "npm:drizzle-kit": { + "type": "npm", + "name": "npm:drizzle-kit", + "data": { + "version": "0.31.10", + "packageName": "drizzle-kit", + "hash": "sha512-7OZcmQUrdGI+DUNNsKBn1aW8qSoKuTH7d0mYgSP8bAzdFzKoovxEFnoGQp2dVs82EOJeYycqRtciopszwUf8bw==" + } + }, + "npm:drizzle-orm": { + "type": "npm", + "name": "npm:drizzle-orm", + "data": { + "version": "0.45.1", + "packageName": "drizzle-orm", + "hash": "sha512-Te0FOdKIistGNPMq2jscdqngBRfBpC8uMFVwqjf6gtTVJHIQ/dosgV/CLBU2N4ZJBsXL5savCba9b0YJskKdcA==" + } + }, + "npm:dts-resolver": { + "type": "npm", + "name": "npm:dts-resolver", + "data": { + "version": "2.1.3", + "packageName": "dts-resolver", + "hash": "sha512-bihc7jPC90VrosXNzK0LTE2cuLP6jr0Ro8jk+kMugHReJVLIpHz/xadeq3MhuwyO4TD4OA3L1Q8pBBFRc08Tsw==" + } + }, + "npm:dunder-proto": { + "type": "npm", + "name": "npm:dunder-proto", + "data": { + "version": "1.0.1", + "packageName": "dunder-proto", + "hash": "sha512-KIN/nDJBQRcXw0MLVhZE9iQHmG68qAVIBg9CqmUYjmQIhgij9U5MFvrqkUL5FbtyyzZuOeOt0zdeRe4UY7ct+A==" + } + }, + "npm:eastasianwidth": { + "type": "npm", + "name": "npm:eastasianwidth", + "data": { + "version": "0.2.0", + "packageName": "eastasianwidth", + "hash": "sha512-I88TYZWc9XiYHRQ4/3c5rjjfgkjhLyW2luGIheGERbNQ6OY7yTybanSpDXZa8y7VUP9YmDcYa+eyq4ca7iLqWA==" + } + }, + "npm:ee-first": { + "type": "npm", + "name": "npm:ee-first", + "data": { + "version": "1.1.1", + "packageName": "ee-first", + "hash": "sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow==" + } + }, + "npm:effect": { + "type": "npm", + "name": "npm:effect", + "data": { + "version": "3.18.4", + "packageName": "effect", + "hash": "sha512-b1LXQJLe9D11wfnOKAk3PKxuqYshQ0Heez+y5pnkd3jLj1yx9QhM72zZ9uUrOQyNvrs2GZZd/3maL0ZV18YuDA==" + } + }, + "npm:ejs": { + "type": "npm", + "name": "npm:ejs", + "data": { + "version": "3.1.10", + "packageName": "ejs", + "hash": "sha512-UeJmFfOrAQS8OJWPZ4qtgHyWExa088/MtK5UEyoJGFH67cDEXkZSviOiKRCZ4Xij0zxI3JECgYs3oKx+AizQBA==" + } + }, + "npm:electron-to-chromium": { + "type": "npm", + "name": "npm:electron-to-chromium", + "data": { + "version": "1.5.267", + "packageName": "electron-to-chromium", + "hash": "sha512-0Drusm6MVRXSOJpGbaSVgcQsuB4hEkMpHXaVstcPmhu5LIedxs1xNK/nIxmQIU/RPC0+1/o0AVZfBTkTNJOdUw==" + } + }, + "npm:emoji-regex": { + "type": "npm", + "name": "npm:emoji-regex", + "data": { + "version": "8.0.0", + "packageName": "emoji-regex", + "hash": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==" + } + }, + "npm:emoji-regex@9.2.2": { + "type": "npm", + "name": "npm:emoji-regex@9.2.2", + "data": { + "version": "9.2.2", + "packageName": "emoji-regex", + "hash": "sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==" + } + }, + "npm:empathic": { + "type": "npm", + "name": "npm:empathic", + "data": { + "version": "2.0.0", + "packageName": "empathic", + "hash": "sha512-i6UzDscO/XfAcNYD75CfICkmfLedpyPDdozrLMmQc5ORaQcdMoc21OnlEylMIqI7U8eniKrPMxxtj8k0vhmJhA==" + } + }, + "npm:encodeurl": { + "type": "npm", + "name": "npm:encodeurl", + "data": { + "version": "2.0.0", + "packageName": "encodeurl", + "hash": "sha512-Q0n9HRi4m6JuGIV1eFlmvJB7ZEVxu93IrMyiMsGC0lrMJMWzRgx6WGquyfQgZVb31vhGgXnfmPNNXmxnOkRBrg==" + } + }, + "npm:encoding": { + "type": "npm", + "name": "npm:encoding", + "data": { + "version": "0.1.13", + "packageName": "encoding", + "hash": "sha512-ETBauow1T35Y/WZMkio9jiM0Z5xjHHmJ4XmjZOq1l/dXz3lr2sRn87nJy20RupqSh1F2m3HHPSp8ShIPQJrJ3A==" + } + }, + "npm:end-of-stream": { + "type": "npm", + "name": "npm:end-of-stream", + "data": { + "version": "1.4.5", + "packageName": "end-of-stream", + "hash": "sha512-ooEGc6HP26xXq/N+GCGOT0JKCLDGrq2bQUZrQ7gyrJiZANJ/8YDTxTpQBXGMn+WbIQXNVpyWymm7KYVICQnyOg==" + } + }, + "npm:enhanced-resolve": { + "type": "npm", + "name": "npm:enhanced-resolve", + "data": { + "version": "5.19.0", + "packageName": "enhanced-resolve", + "hash": "sha512-phv3E1Xl4tQOShqSte26C7Fl84EwUdZsyOuSSk9qtAGyyQs2s3jJzComh+Abf4g187lUUAvH+H26omrqia2aGg==" + } + }, + "npm:enquirer": { + "type": "npm", + "name": "npm:enquirer", + "data": { + "version": "2.3.6", + "packageName": "enquirer", + "hash": "sha512-yjNnPr315/FjS4zIsUxYguYUPP2e1NK4d7E7ZOLiyYCcbFBiTMyID+2wvm2w6+pZ/odMA7cRkjhsPbltwBOrLg==" + } + }, + "npm:ensure-error": { + "type": "npm", + "name": "npm:ensure-error", + "data": { + "version": "3.0.1", + "packageName": "ensure-error", + "hash": "sha512-J2e5Z3sgnA8en6+alf2VkO5cRwe75hHgSw0rJiMn5CEE4Yyw6GSgH31IBgwN9lugeCuPKHzuOF3X/RozAFsuhQ==" + } + }, + "npm:entities@2.2.0": { + "type": "npm", + "name": "npm:entities@2.2.0", + "data": { + "version": "2.2.0", + "packageName": "entities", + "hash": "sha512-p92if5Nz619I0w+akJrLZH0MX0Pb5DX39XOwQTtXSdQQOaYH03S1uIQp4mhOZtAXrxq4ViO67YTiLBo2638o9A==" + } + }, + "npm:entities@6.0.1": { + "type": "npm", + "name": "npm:entities@6.0.1", + "data": { + "version": "6.0.1", + "packageName": "entities", + "hash": "sha512-aN97NXWF6AWBTahfVOIrB/NShkzi5H7F9r1s9mD3cDj4Ko5f2qhhVoYMibXF7GlLveb/D2ioWay8lxI97Ven3g==" + } + }, + "npm:entities": { + "type": "npm", + "name": "npm:entities", + "data": { + "version": "7.0.1", + "packageName": "entities", + "hash": "sha512-TWrgLOFUQTH994YUyl1yT4uyavY5nNB5muff+RtWaqNVCAK408b5ZnnbNAUEWLTCpum9w6arT70i1XdQ4UeOPA==" + } + }, + "npm:env-paths": { + "type": "npm", + "name": "npm:env-paths", + "data": { + "version": "2.2.1", + "packageName": "env-paths", + "hash": "sha512-+h1lkLKhZMTYjog1VEpJNG7NZJWcuc2DDk/qsqSTRRCOXiLjeQ1d1/udrUGhqMxUgAlwKNZ0cf2uqan5GLuS2A==" + } + }, + "npm:err-code": { + "type": "npm", + "name": "npm:err-code", + "data": { + "version": "2.0.3", + "packageName": "err-code", + "hash": "sha512-2bmlRpNKBxT/CRmPOlyISQpNj+qSeYvcym/uT0Jx2bMOlKLtSy1ZmLuVxSEKKyor/N5yhvp/ZiG1oE3DEYMSFA==" + } + }, + "npm:error-ex": { + "type": "npm", + "name": "npm:error-ex", + "data": { + "version": "1.3.4", + "packageName": "error-ex", + "hash": "sha512-sqQamAnR14VgCr1A618A3sGrygcpK+HEbenA/HiEAkkUwcZIIB/tgWqHFxWgOyDh4nB4JCRimh79dR5Ywc9MDQ==" + } + }, + "npm:error-stack-parser-es": { + "type": "npm", + "name": "npm:error-stack-parser-es", + "data": { + "version": "1.0.5", + "packageName": "error-stack-parser-es", + "hash": "sha512-5qucVt2XcuGMcEGgWI7i+yZpmpByQ8J1lHhcL7PwqCwu9FPP3VUXzT4ltHe5i2z9dePwEHcDVOAfSnHsOlCXRA==" + } + }, + "npm:es-abstract": { + "type": "npm", + "name": "npm:es-abstract", + "data": { + "version": "1.24.0", + "packageName": "es-abstract", + "hash": "sha512-WSzPgsdLtTcQwm4CROfS5ju2Wa1QQcVeT37jFjYzdFz1r9ahadC8B8/a4qxJxM+09F18iumCdRmlr96ZYkQvEg==" + } + }, + "npm:es-define-property": { + "type": "npm", + "name": "npm:es-define-property", + "data": { + "version": "1.0.1", + "packageName": "es-define-property", + "hash": "sha512-e3nRfgfUZ4rNGL232gUgX06QNyyez04KdjFrF+LTRoOXmrOgFKDg4BCdsjW8EnT69eqdYGmRpJwiPVYNrCaW3g==" + } + }, + "npm:es-errors": { + "type": "npm", + "name": "npm:es-errors", + "data": { + "version": "1.3.0", + "packageName": "es-errors", + "hash": "sha512-Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw==" + } + }, + "npm:es-iterator-helpers": { + "type": "npm", + "name": "npm:es-iterator-helpers", + "data": { + "version": "1.2.1", + "packageName": "es-iterator-helpers", + "hash": "sha512-uDn+FE1yrDzyC0pCo961B2IHbdM8y/ACZsKD4dG6WqrjV53BADjwa7D+1aom2rsNVfLyDgU/eigvlJGJ08OQ4w==" + } + }, + "npm:es-module-lexer": { + "type": "npm", + "name": "npm:es-module-lexer", + "data": { + "version": "1.7.0", + "packageName": "es-module-lexer", + "hash": "sha512-jEQoCwk8hyb2AZziIOLhDqpm5+2ww5uIE6lkO/6jcOCusfk6LhMHpXXfBLXTZ7Ydyt0j4VoUQv6uGNYbdW+kBA==" + } + }, + "npm:es-module-lexer@2.0.0": { + "type": "npm", + "name": "npm:es-module-lexer@2.0.0", + "data": { + "version": "2.0.0", + "packageName": "es-module-lexer", + "hash": "sha512-5POEcUuZybH7IdmGsD8wlf0AI55wMecM9rVBTI/qEAy2c1kTOm3DjFYjrBdI2K3BaJjJYfYFeRtM0t9ssnRuxw==" + } + }, + "npm:es-object-atoms": { + "type": "npm", + "name": "npm:es-object-atoms", + "data": { + "version": "1.1.1", + "packageName": "es-object-atoms", + "hash": "sha512-FGgH2h8zKNim9ljj7dankFPcICIK9Cp5bm+c2gQSYePhpaG5+esrLODihIorn+Pe6FGJzWhXQotPv73jTaldXA==" + } + }, + "npm:es-set-tostringtag": { + "type": "npm", + "name": "npm:es-set-tostringtag", + "data": { + "version": "2.1.0", + "packageName": "es-set-tostringtag", + "hash": "sha512-j6vWzfrGVfyXxge+O0x5sh6cvxAog0a/4Rdd2K36zCMV5eJ+/+tOAngRO8cODMNWbVRdVlmGZQL2YS3yR8bIUA==" + } + }, + "npm:es-shim-unscopables": { + "type": "npm", + "name": "npm:es-shim-unscopables", + "data": { + "version": "1.1.0", + "packageName": "es-shim-unscopables", + "hash": "sha512-d9T8ucsEhh8Bi1woXCf+TIKDIROLG5WCkxg8geBCbvk22kzwC5G2OnXVMO6FUsvQlgUUXQ2itephWDLqDzbeCw==" + } + }, + "npm:es-to-primitive": { + "type": "npm", + "name": "npm:es-to-primitive", + "data": { + "version": "1.3.0", + "packageName": "es-to-primitive", + "hash": "sha512-w+5mJ3GuFL+NjVtJlvydShqE1eN3h3PbI7/5LAsYJP/2qtuMXjfL2LpHSRqo4b4eSF5K/DH1JXKUAHSB2UW50g==" + } + }, + "npm:esbuild@0.18.20": { + "type": "npm", + "name": "npm:esbuild@0.18.20", + "data": { + "version": "0.18.20", + "packageName": "esbuild", + "hash": "sha512-ceqxoedUrcayh7Y7ZX6NdbbDzGROiyVBgC4PriJThBKSVPWnnFHZAkfI1lJT8QFkOwH4qOS2SJkS4wvpGl8BpA==" + } + }, + "npm:esbuild@0.25.12": { + "type": "npm", + "name": "npm:esbuild@0.25.12", + "data": { + "version": "0.25.12", + "packageName": "esbuild", + "hash": "sha512-bbPBYYrtZbkt6Os6FiTLCTFxvq4tt3JKall1vRwshA3fdVztsLAatFaZobhkBC8/BrPetoa0oksYoKXoG4ryJg==" + } + }, + "npm:esbuild@0.27.3": { + "type": "npm", + "name": "npm:esbuild@0.27.3", + "data": { + "version": "0.27.3", + "packageName": "esbuild", + "hash": "sha512-8VwMnyGCONIs6cWue2IdpHxHnAjzxnw2Zr7MkVxB2vjmQ2ivqGFb4LEG3SMnv0Gb2F/G/2yA8zUaiL1gywDCCg==" + } + }, + "npm:esbuild": { + "type": "npm", + "name": "npm:esbuild", + "data": { + "version": "0.27.4", + "packageName": "esbuild", + "hash": "sha512-Rq4vbHnYkK5fws5NF7MYTU68FPRE1ajX7heQ/8QXXWqNgqqJ/GkmmyxIzUnf2Sr/bakf8l54716CcMGHYhMrrQ==" + } + }, + "npm:escalade": { + "type": "npm", + "name": "npm:escalade", + "data": { + "version": "3.2.0", + "packageName": "escalade", + "hash": "sha512-WUj2qlxaQtO4g6Pq5c29GTcWGDyd8itL8zTlipgECz3JesAiiOKotd8JU6otB3PACgG6xkJUyVhboMS+bje/jA==" + } + }, + "npm:escape-html": { + "type": "npm", + "name": "npm:escape-html", + "data": { + "version": "1.0.3", + "packageName": "escape-html", + "hash": "sha512-NiSupZ4OeuGwr68lGIeym/ksIZMJodUGOSCZ/FSnTxcrekbvqrgdUxlJOMpijaKZVjAJrWrGs/6Jy8OMuyj9ow==" + } + }, + "npm:escape-string-regexp@1.0.5": { + "type": "npm", + "name": "npm:escape-string-regexp@1.0.5", + "data": { + "version": "1.0.5", + "packageName": "escape-string-regexp", + "hash": "sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==" + } + }, + "npm:escape-string-regexp": { + "type": "npm", + "name": "npm:escape-string-regexp", + "data": { + "version": "4.0.0", + "packageName": "escape-string-regexp", + "hash": "sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==" + } + }, + "npm:escodegen": { + "type": "npm", + "name": "npm:escodegen", + "data": { + "version": "2.1.0", + "packageName": "escodegen", + "hash": "sha512-2NlIDTwUWJN0mRPQOdtQBzbUHvdGY2P1VXSyU83Q3xKxM7WHX2Ql8dKq782Q9TgQUNOLEzEYu9bzLNj1q88I5w==" + } + }, + "npm:eslint-config-prettier": { + "type": "npm", + "name": "npm:eslint-config-prettier", + "data": { + "version": "10.1.8", + "packageName": "eslint-config-prettier", + "hash": "sha512-82GZUjRS0p/jganf6q1rEO25VSoHH0hKPCTrgillPjdI/3bgBhAE1QzHrHTizjpRvy6pGAvKjDJtk2pF9NDq8w==" + } + }, + "npm:eslint-plugin-prettier": { + "type": "npm", + "name": "npm:eslint-plugin-prettier", + "data": { + "version": "5.5.5", + "packageName": "eslint-plugin-prettier", + "hash": "sha512-hscXkbqUZ2sPithAuLm5MXL+Wph+U7wHngPBv9OMWwlP8iaflyxpjTYZkmdgB4/vPIhemRlBEoLrH7UC1n7aUw==" + } + }, + "npm:eslint-plugin-react": { + "type": "npm", + "name": "npm:eslint-plugin-react", + "data": { + "version": "7.37.5", + "packageName": "eslint-plugin-react", + "hash": "sha512-Qteup0SqU15kdocexFNAJMvCJEfa2xUKNV4CC1xsVMrIIqEy3SQ/rqyxCWNzfrd3/ldy6HMlD2e0JDVpDg2qIA==" + } + }, + "npm:eslint-plugin-solid": { + "type": "npm", + "name": "npm:eslint-plugin-solid", + "data": { + "version": "0.14.5", + "packageName": "eslint-plugin-solid", + "hash": "sha512-nfuYK09ah5aJG/oEN6P1qziy1zLgW4PDWe75VNPi4CEFYk1x2AEqwFeQfEPR7gNn0F2jOeqKhx2E+5oNCOBYWQ==" + } + }, + "npm:eslint-plugin-vue": { + "type": "npm", + "name": "npm:eslint-plugin-vue", + "data": { + "version": "10.8.0", + "packageName": "eslint-plugin-vue", + "hash": "sha512-f1J/tcbnrpgC8suPN5AtdJ5MQjuXbSU9pGRSSYAuF3SHoiYCOdEX6O22pLaRyLHXvDcOe+O5ENgc1owQ587agA==" + } + }, + "npm:eslint-rule-composer": { + "type": "npm", + "name": "npm:eslint-rule-composer", + "data": { + "version": "0.3.0", + "packageName": "eslint-rule-composer", + "hash": "sha512-bt+Sh8CtDmn2OajxvNO+BX7Wn4CIWMpTRm3MaiKPCQcnnlm0CS2mhui6QaoeQugs+3Kj2ESKEEGJUdVafwhiCg==" + } + }, + "npm:eslint-scope": { + "type": "npm", + "name": "npm:eslint-scope", + "data": { + "version": "8.4.0", + "packageName": "eslint-scope", + "hash": "sha512-sNXOfKCn74rt8RICKMvJS7XKV/Xk9kA7DyJr8mJik3S7Cwgy3qlkkmyS2uQB3jiJg6VNdZd/pDBJu0nvG2NlTg==" + } + }, + "npm:eslint-visitor-keys@3.4.3": { + "type": "npm", + "name": "npm:eslint-visitor-keys@3.4.3", + "data": { + "version": "3.4.3", + "packageName": "eslint-visitor-keys", + "hash": "sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag==" + } + }, + "npm:eslint-visitor-keys": { + "type": "npm", + "name": "npm:eslint-visitor-keys", + "data": { + "version": "4.2.1", + "packageName": "eslint-visitor-keys", + "hash": "sha512-Uhdk5sfqcee/9H/rCOJikYz67o0a2Tw2hGRPOG2Y1R2dg7brRe1uG0yaNQDHu+TO/uQPF/5eCapvYSmHUjt7JQ==" + } + }, + "npm:eslint-visitor-keys@5.0.1": { + "type": "npm", + "name": "npm:eslint-visitor-keys@5.0.1", + "data": { + "version": "5.0.1", + "packageName": "eslint-visitor-keys", + "hash": "sha512-tD40eHxA35h0PEIZNeIjkHoDR4YjjJp34biM0mDvplBe//mB+IHCqHDGV7pxF+7MklTvighcCPPZC7ynWyjdTA==" + } + }, + "npm:eslint": { + "type": "npm", + "name": "npm:eslint", + "data": { + "version": "9.39.4", + "packageName": "eslint", + "hash": "sha512-XoMjdBOwe/esVgEvLmNsD3IRHkm7fbKIUGvrleloJXUZgDHig2IPWNniv+GwjyJXzuNqVjlr5+4yVUZjycJwfQ==" + } + }, + "npm:espree@10.4.0": { + "type": "npm", + "name": "npm:espree@10.4.0", + "data": { + "version": "10.4.0", + "packageName": "espree", + "hash": "sha512-j6PAQ2uUr79PZhBjP5C5fhl8e39FmRnOjsD5lGnWrFU8i2G776tBK7+nP8KuQUTTyAZUwfQqXAgrVH5MbH9CYQ==" + } + }, + "npm:espree": { + "type": "npm", + "name": "npm:espree", + "data": { + "version": "11.2.0", + "packageName": "espree", + "hash": "sha512-7p3DrVEIopW1B1avAGLuCSh1jubc01H2JHc8B4qqGblmg5gI9yumBgACjWo4JlIc04ufug4xJ3SQI8HkS/Rgzw==" + } + }, + "npm:esprima": { + "type": "npm", + "name": "npm:esprima", + "data": { + "version": "4.0.1", + "packageName": "esprima", + "hash": "sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==" + } + }, + "npm:esquery": { + "type": "npm", + "name": "npm:esquery", + "data": { + "version": "1.6.0", + "packageName": "esquery", + "hash": "sha512-ca9pw9fomFcKPvFLXhBKUK90ZvGibiGOvRJNbjljY7s7uq/5YO4BOzcYtJqExdx99rF6aAcnRxHmcUHcz6sQsg==" + } + }, + "npm:esrecurse": { + "type": "npm", + "name": "npm:esrecurse", + "data": { + "version": "4.3.0", + "packageName": "esrecurse", + "hash": "sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==" + } + }, + "npm:estraverse": { + "type": "npm", + "name": "npm:estraverse", + "data": { + "version": "5.3.0", + "packageName": "estraverse", + "hash": "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==" + } + }, + "npm:estree-walker@2.0.2": { + "type": "npm", + "name": "npm:estree-walker@2.0.2", + "data": { + "version": "2.0.2", + "packageName": "estree-walker", + "hash": "sha512-Rfkk/Mp/DL7JVje3u18FxFujQlTNR2q6QfMSMB7AvCBx91NGj/ba3kCfza0f6dVDbw7YlRf/nDrn7pQrCCyQ/w==" + } + }, + "npm:estree-walker": { + "type": "npm", + "name": "npm:estree-walker", + "data": { + "version": "3.0.3", + "packageName": "estree-walker", + "hash": "sha512-7RUKfXgSMMkzt6ZuXmqapOurLGPPfgj6l9uRZ7lRGolvk0y2yocc35LdcxKC5PQZdn2DMqioAQ2NoWcrTKmm6g==" + } + }, + "npm:esutils": { + "type": "npm", + "name": "npm:esutils", + "data": { + "version": "2.0.3", + "packageName": "esutils", + "hash": "sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==" + } + }, + "npm:etag": { + "type": "npm", + "name": "npm:etag", + "data": { + "version": "1.8.1", + "packageName": "etag", + "hash": "sha512-aIL5Fx7mawVa300al2BnEE4iNvo1qETxLrPI/o05L7z6go7fCw1J6EQmbK4FmJ2AS7kgVF/KEZWufBfdClMcPg==" + } + }, + "npm:eventemitter3": { + "type": "npm", + "name": "npm:eventemitter3", + "data": { + "version": "4.0.7", + "packageName": "eventemitter3", + "hash": "sha512-8guHBZCwKnFhYdHr2ysuRWErTwhoN2X8XELRlrRwpmfeY2jjuUN4taQMsULKUVo1K4DvZl+0pgfyoysHxvmvEw==" + } + }, + "npm:events-universal": { + "type": "npm", + "name": "npm:events-universal", + "data": { + "version": "1.0.1", + "packageName": "events-universal", + "hash": "sha512-LUd5euvbMLpwOF8m6ivPCbhQeSiYVNb8Vs0fQ8QjXo0JTkEHpz8pxdQf0gStltaPpw0Cca8b39KxvK9cfKRiAw==" + } + }, + "npm:execa": { + "type": "npm", + "name": "npm:execa", + "data": { + "version": "9.6.1", + "packageName": "execa", + "hash": "sha512-9Be3ZoN4LmYR90tUoVu2te2BsbzHfhJyfEiAVfz7N5/zv+jduIfLrV2xdQXOHbaD6KgpGdO9PRPM1Y4Q9QkPkA==" + } + }, + "npm:exit-hook": { + "type": "npm", + "name": "npm:exit-hook", + "data": { + "version": "2.2.1", + "packageName": "exit-hook", + "hash": "sha512-eNTPlAD67BmP31LDINZ3U7HSF8l57TxOY2PmBJ1shpCvpnxBF93mWCE8YHBnXs8qiUZJc9WDcWIeC3a2HIAMfw==" + } + }, + "npm:expand-template": { + "type": "npm", + "name": "npm:expand-template", + "data": { + "version": "2.0.3", + "packageName": "expand-template", + "hash": "sha512-XYfuKMvj4O35f/pOXLObndIRvyQ+/+6AhODh+OKWj9S9498pHHn/IMszH+gt0fBCRWMNfk1ZSp5x3AifmnI2vg==" + } + }, + "npm:expect-type": { + "type": "npm", + "name": "npm:expect-type", + "data": { + "version": "1.3.0", + "packageName": "expect-type", + "hash": "sha512-knvyeauYhqjOYvQ66MznSMs83wmHrCycNEN6Ao+2AeYEfxUIkuiVxdEa1qlGEPK+We3n0THiDciYSsCcgW/DoA==" + } + }, + "npm:exponential-backoff": { + "type": "npm", + "name": "npm:exponential-backoff", + "data": { + "version": "3.1.3", + "packageName": "exponential-backoff", + "hash": "sha512-ZgEeZXj30q+I0EN+CbSSpIyPaJ5HVQD18Z1m+u1FXbAeT94mr1zw50q4q6jiiC447Nl/YTcIYSAftiGqetwXCA==" + } + }, + "npm:express": { + "type": "npm", + "name": "npm:express", + "data": { + "version": "5.2.1", + "packageName": "express", + "hash": "sha512-hIS4idWWai69NezIdRt2xFVofaF4j+6INOpJlVOLDO8zXGpUVEVzIYk12UUi2JzjEzWL3IOAxcTubgz9Po0yXw==" + } + }, + "npm:exsolve": { + "type": "npm", + "name": "npm:exsolve", + "data": { + "version": "1.0.8", + "packageName": "exsolve", + "hash": "sha512-LmDxfWXwcTArk8fUEnOfSZpHOJ6zOMUJKOtFLFqJLoKJetuQG874Uc7/Kki7zFLzYybmZhp1M7+98pfMqeX8yA==" + } + }, + "npm:extract-zip": { + "type": "npm", + "name": "npm:extract-zip", + "data": { + "version": "2.0.1", + "packageName": "extract-zip", + "hash": "sha512-GDhU9ntwuKyGXdZBUgTIe+vXnWj0fppUEtMDL0+idd5Sta8TGpHssn/eusA9mrPr9qNDym6SxAYZjNvCn/9RBg==" + } + }, + "npm:fast-check": { + "type": "npm", + "name": "npm:fast-check", + "data": { + "version": "3.23.2", + "packageName": "fast-check", + "hash": "sha512-h5+1OzzfCC3Ef7VbtKdcv7zsstUQwUDlYpUTvjeUsJAssPgLn7QzbboPtL5ro04Mq0rPOsMzl7q5hIbRs2wD1A==" + } + }, + "npm:fast-decode-uri-component": { + "type": "npm", + "name": "npm:fast-decode-uri-component", + "data": { + "version": "1.0.1", + "packageName": "fast-decode-uri-component", + "hash": "sha512-WKgKWg5eUxvRZGwW8FvfbaH7AXSh2cL+3j5fMGzUMCxWBJ3dV3a7Wz8y2f/uQ0e3B6WmodD3oS54jTQ9HVTIIg==" + } + }, + "npm:fast-deep-equal": { + "type": "npm", + "name": "npm:fast-deep-equal", + "data": { + "version": "3.1.3", + "packageName": "fast-deep-equal", + "hash": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==" + } + }, + "npm:fast-diff": { + "type": "npm", + "name": "npm:fast-diff", + "data": { + "version": "1.3.0", + "packageName": "fast-diff", + "hash": "sha512-VxPP4NqbUjj6MaAOafWeUn2cXWLcCtljklUtZf0Ind4XQ+QPtmA0b18zZy0jIQx+ExRVCR/ZQpBmik5lXshNsw==" + } + }, + "npm:fast-fifo": { + "type": "npm", + "name": "npm:fast-fifo", + "data": { + "version": "1.3.2", + "packageName": "fast-fifo", + "hash": "sha512-/d9sfos4yxzpwkDkuN7k2SqFKtYNmCTzgfEpz82x34IM9/zc8KGxQoXg1liNC/izpRM/MBdt44Nmx41ZWqk+FQ==" + } + }, + "npm:fast-glob": { + "type": "npm", + "name": "npm:fast-glob", + "data": { + "version": "3.3.3", + "packageName": "fast-glob", + "hash": "sha512-7MptL8U0cqcFdzIzwOTHoilX9x5BrNqye7Z/LuC7kCMRio1EMSyqRK3BEAUD7sXRq4iT4AzTVuZdhgQ2TCvYLg==" + } + }, + "npm:fast-json-stable-stringify": { + "type": "npm", + "name": "npm:fast-json-stable-stringify", + "data": { + "version": "2.1.0", + "packageName": "fast-json-stable-stringify", + "hash": "sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==" + } + }, + "npm:fast-json-stringify": { + "type": "npm", + "name": "npm:fast-json-stringify", + "data": { + "version": "6.3.0", + "packageName": "fast-json-stringify", + "hash": "sha512-oRCntNDY/329HJPlmdNLIdogNtt6Vyjb1WuT01Soss3slIdyUp8kAcDU3saQTOquEK8KFVfwIIF7FebxUAu+yA==" + } + }, + "npm:fast-levenshtein": { + "type": "npm", + "name": "npm:fast-levenshtein", + "data": { + "version": "2.0.6", + "packageName": "fast-levenshtein", + "hash": "sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==" + } + }, + "npm:fast-querystring": { + "type": "npm", + "name": "npm:fast-querystring", + "data": { + "version": "1.1.2", + "packageName": "fast-querystring", + "hash": "sha512-g6KuKWmFXc0fID8WWH0jit4g0AGBoJhCkJMb1RmbsSEUNvQ+ZC8D6CUZ+GtF8nMzSPXnhiePyyqqipzNNEnHjg==" + } + }, + "npm:fast-string-truncated-width": { + "type": "npm", + "name": "npm:fast-string-truncated-width", + "data": { + "version": "3.0.3", + "packageName": "fast-string-truncated-width", + "hash": "sha512-0jjjIEL6+0jag3l2XWWizO64/aZVtpiGE3t0Zgqxv0DPuxiMjvB3M24fCyhZUO4KomJQPj3LTSUnDP3GpdwC0g==" + } + }, + "npm:fast-string-width": { + "type": "npm", + "name": "npm:fast-string-width", + "data": { + "version": "3.0.2", + "packageName": "fast-string-width", + "hash": "sha512-gX8LrtNEI5hq8DVUfRQMbr5lpaS4nMIWV+7XEbXk2b8kiQIizgnlr12B4dA3ZEx3308ze0O4Q1R+cHts8kyUJg==" + } + }, + "npm:fast-uri": { + "type": "npm", + "name": "npm:fast-uri", + "data": { + "version": "3.1.0", + "packageName": "fast-uri", + "hash": "sha512-iPeeDKJSWf4IEOasVVrknXpaBV0IApz/gp7S2bb7Z4Lljbl2MGJRqInZiUrQwV16cpzw/D3S5j5Julj/gT52AA==" + } + }, + "npm:fast-wrap-ansi": { + "type": "npm", + "name": "npm:fast-wrap-ansi", + "data": { + "version": "0.2.0", + "packageName": "fast-wrap-ansi", + "hash": "sha512-rLV8JHxTyhVmFYhBJuMujcrHqOT2cnO5Zxj37qROj23CP39GXubJRBUFF0z8KFK77Uc0SukZUf7JZhsVEQ6n8w==" + } + }, + "npm:fastify-plugin": { + "type": "npm", + "name": "npm:fastify-plugin", + "data": { + "version": "5.1.0", + "packageName": "fastify-plugin", + "hash": "sha512-FAIDA8eovSt5qcDgcBvDuX/v0Cjz0ohGhENZ/wpc3y+oZCY2afZ9Baqql3g/lC+OHRnciQol4ww7tuthOb9idw==" + } + }, + "npm:fastify-raw-body": { + "type": "npm", + "name": "npm:fastify-raw-body", + "data": { + "version": "5.0.0", + "packageName": "fastify-raw-body", + "hash": "sha512-2qfoaQ3BQDhZ1gtbkKZd6n0kKxJISJGM6u/skD9ljdWItAscjXrtZ1lnjr7PavmXX9j4EyCPmBDiIsLn07d5vA==" + } + }, + "npm:fastify": { + "type": "npm", + "name": "npm:fastify", + "data": { + "version": "5.8.2", + "packageName": "fastify", + "hash": "sha512-lZmt3navvZG915IE+f7/TIVamxIwmBd+OMB+O9WBzcpIwOo6F0LTh0sluoMFk5VkrKTvvrwIaoJPkir4Z+jtAg==" + } + }, + "npm:fastq": { + "type": "npm", + "name": "npm:fastq", + "data": { + "version": "1.20.1", + "packageName": "fastq", + "hash": "sha512-GGToxJ/w1x32s/D2EKND7kTil4n8OVk/9mycTc4VDza13lOvpUZTGX3mFSCtV9ksdGBVzvsyAVLM6mHFThxXxw==" + } + }, + "npm:fd-package-json": { + "type": "npm", + "name": "npm:fd-package-json", + "data": { + "version": "2.0.0", + "packageName": "fd-package-json", + "hash": "sha512-jKmm9YtsNXN789RS/0mSzOC1NUq9mkVd65vbSSVsKdjGvYXBuE4oWe2QOEoFeRmJg+lPuZxpmrfFclNhoRMneQ==" + } + }, + "npm:fd-slicer": { + "type": "npm", + "name": "npm:fd-slicer", + "data": { + "version": "1.1.0", + "packageName": "fd-slicer", + "hash": "sha512-cE1qsB/VwyQozZ+q1dGxR8LBYNZeofhEdUNGSMbQD3Gw2lAzX9Zb3uIU6Ebc/Fmyjo9AWWfnn0AUCHqtevs/8g==" + } + }, + "npm:fdir": { + "type": "npm", + "name": "npm:fdir", + "data": { + "version": "6.5.0", + "packageName": "fdir", + "hash": "sha512-tIbYtZbucOs0BRGqPJkshJUYdL+SDH7dVM8gjy+ERp3WAUjLEFJE+02kanyHtwjWOnwrKYBiwAmM0p4kLJAnXg==" + } + }, + "npm:fetch-blob": { + "type": "npm", + "name": "npm:fetch-blob", + "data": { + "version": "3.2.0", + "packageName": "fetch-blob", + "hash": "sha512-7yAQpD2UMJzLi1Dqv7qFYnPbaPx7ZfFK6PiIxQ4PfkGPyNyl2Ugx+a/umUonmKqjhM4DnfbMvdX6otXq83soQQ==" + } + }, + "npm:figures@3.2.0": { + "type": "npm", + "name": "npm:figures@3.2.0", + "data": { + "version": "3.2.0", + "packageName": "figures", + "hash": "sha512-yaduQFRKLXYOGgEn6AZau90j3ggSOyiqXU0F9JZfeXYhNa+Jk4X+s45A2zg5jns87GAFa34BBm2kXw4XpNcbdg==" + } + }, + "npm:figures": { + "type": "npm", + "name": "npm:figures", + "data": { + "version": "6.1.0", + "packageName": "figures", + "hash": "sha512-d+l3qxjSesT4V7v2fh+QnmFnUWv9lSpjarhShNTgBOfA0ttejbQUAlHLitbjkoRiDulW0OPoQPYIGhIC8ohejg==" + } + }, + "npm:file-entry-cache": { + "type": "npm", + "name": "npm:file-entry-cache", + "data": { + "version": "8.0.0", + "packageName": "file-entry-cache", + "hash": "sha512-XXTUwCvisa5oacNGRP9SfNtYBNAMi+RPwBFmblZEF7N7swHYQS6/Zfk7SRwx4D5j3CH211YNRco1DEMNVfZCnQ==" + } + }, + "npm:file-uri-to-path": { + "type": "npm", + "name": "npm:file-uri-to-path", + "data": { + "version": "1.0.0", + "packageName": "file-uri-to-path", + "hash": "sha512-0Zt+s3L7Vf1biwWZ29aARiVYLx7iMGnEUl9x33fbB/j3jR81u/O2LbqK+Bm1CDSNDKVtJ/YjwY7TUd5SkeLQLw==" + } + }, + "npm:filelist": { + "type": "npm", + "name": "npm:filelist", + "data": { + "version": "1.0.6", + "packageName": "filelist", + "hash": "sha512-5giy2PkLYY1cP39p17Ech+2xlpTRL9HLspOfEgm0L6CwBXBTgsK5ou0JtzYuepxkaQ/tvhCFIJ5uXo0OrM2DxA==" + } + }, + "npm:fill-range": { + "type": "npm", + "name": "npm:fill-range", + "data": { + "version": "7.1.1", + "packageName": "fill-range", + "hash": "sha512-YsGpe3WHLK8ZYi4tWDg2Jy3ebRz2rXowDxnld4bkQB00cc/1Zw9AWnC0i9ztDJitivtQvaI9KaLyKrc+hBW0yg==" + } + }, + "npm:finalhandler": { + "type": "npm", + "name": "npm:finalhandler", + "data": { + "version": "2.1.1", + "packageName": "finalhandler", + "hash": "sha512-S8KoZgRZN+a5rNwqTxlZZePjT/4cnm0ROV70LedRHZ0p8u9fRID0hJUZQpkKLzro8LfmC8sx23bY6tVNxv8pQA==" + } + }, + "npm:find-babel-config": { + "type": "npm", + "name": "npm:find-babel-config", + "data": { + "version": "2.1.2", + "packageName": "find-babel-config", + "hash": "sha512-ZfZp1rQyp4gyuxqt1ZqjFGVeVBvmpURMqdIWXbPRfB97Bf6BzdK/xSIbylEINzQ0kB5tlDQfn9HkNXXWsqTqLg==" + } + }, + "npm:find-my-way": { + "type": "npm", + "name": "npm:find-my-way", + "data": { + "version": "9.5.0", + "packageName": "find-my-way", + "hash": "sha512-VW2RfnmscZO5KgBY5XVyKREMW5nMZcxDy+buTOsL+zIPnBlbKm+00sgzoQzq1EVh4aALZLfKdwv6atBGcjvjrQ==" + } + }, + "npm:find-up@3.0.0": { + "type": "npm", + "name": "npm:find-up@3.0.0", + "data": { + "version": "3.0.0", + "packageName": "find-up", + "hash": "sha512-1yD6RmLI1XBfxugvORwlck6f75tYL+iR0jqwsOrOxMZyGYqUuDhJ0l4AXdO1iX/FTs9cBAMEk1gWSEx1kSbylg==" + } + }, + "npm:find-up": { + "type": "npm", + "name": "npm:find-up", + "data": { + "version": "5.0.0", + "packageName": "find-up", + "hash": "sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==" + } + }, + "npm:flat-cache": { + "type": "npm", + "name": "npm:flat-cache", + "data": { + "version": "4.0.1", + "packageName": "flat-cache", + "hash": "sha512-f7ccFPK3SXFHpx15UIGyRJ/FJQctuKZ0zVuN3frBo4HnK3cay9VEW0R6yPYFHC0AgqhukPzKjq22t5DmAyqGyw==" + } + }, + "npm:flat": { + "type": "npm", + "name": "npm:flat", + "data": { + "version": "5.0.2", + "packageName": "flat", + "hash": "sha512-b6suED+5/3rTpUBdG1gupIl8MPFCAMA0QXwmljLhvCUKcUvdE4gWky9zpuGCcXHOsz4J9wPGNWq6OKpmIzz3hQ==" + } + }, + "npm:flatted": { + "type": "npm", + "name": "npm:flatted", + "data": { + "version": "3.3.3", + "packageName": "flatted", + "hash": "sha512-GX+ysw4PBCz0PzosHDepZGANEuFCMLrnRTiEy9McGjmkCQYwRq4A/X786G/fjM/+OjsWSU1ZrY5qyARZmO/uwg==" + } + }, + "npm:follow-redirects": { + "type": "npm", + "name": "npm:follow-redirects", + "data": { + "version": "1.15.11", + "packageName": "follow-redirects", + "hash": "sha512-deG2P0JfjrTxl50XGCDyfI97ZGVCxIpfKYmfyrQ54n5FO/0gfIES8C/Psl6kWVDolizcaaxZJnTS0QSMxvnsBQ==" + } + }, + "npm:for-each": { + "type": "npm", + "name": "npm:for-each", + "data": { + "version": "0.3.5", + "packageName": "for-each", + "hash": "sha512-dKx12eRCVIzqCxFGplyFKJMPvLEWgmNtUrpTiJIR5u97zEhRG8ySrtboPHZXx7daLxQVrl643cTzbab2tkQjxg==" + } + }, + "npm:foreground-child": { + "type": "npm", + "name": "npm:foreground-child", + "data": { + "version": "3.3.1", + "packageName": "foreground-child", + "hash": "sha512-gIXjKqtFuWEgzFRJA9WCQeSJLZDjgJUOMCMzxtvFq/37KojM1BFGufqsCy0r4qSQmYLsZYMeyRqzIWOMup03sw==" + } + }, + "npm:form-data": { + "type": "npm", + "name": "npm:form-data", + "data": { + "version": "4.0.5", + "packageName": "form-data", + "hash": "sha512-8RipRLol37bNs2bhoV67fiTEvdTrbMUYcFTiy3+wuuOnUog2QBHCZWXDRijWQfAkhBj2Uf5UnVaiWwA5vdd82w==" + } + }, + "npm:formatly": { + "type": "npm", + "name": "npm:formatly", + "data": { + "version": "0.3.0", + "packageName": "formatly", + "hash": "sha512-9XNj/o4wrRFyhSMJOvsuyMwy8aUfBaZ1VrqHVfohyXf0Sw0e+yfKG+xZaY3arGCOMdwFsqObtzVOc1gU9KiT9w==" + } + }, + "npm:formdata-polyfill": { + "type": "npm", + "name": "npm:formdata-polyfill", + "data": { + "version": "4.0.10", + "packageName": "formdata-polyfill", + "hash": "sha512-buewHzMvYL29jdeQTVILecSaZKnt/RJWjoZCF5OW60Z67/GmSLBkOFM7qh1PI3zFNtJbaZL5eQu1vLfazOwj4g==" + } + }, + "npm:forwarded": { + "type": "npm", + "name": "npm:forwarded", + "data": { + "version": "0.2.0", + "packageName": "forwarded", + "hash": "sha512-buRG0fpBtRHSTCOASe6hD258tEubFoRLb4ZNA6NxMVHNw2gOcwHo9wyablzMzOA5z9xA9L1KNjk/Nt6MT9aYow==" + } + }, + "npm:fraction.js": { + "type": "npm", + "name": "npm:fraction.js", + "data": { + "version": "5.3.4", + "packageName": "fraction.js", + "hash": "sha512-1X1NTtiJphryn/uLQz3whtY6jK3fTqoE3ohKs0tT+Ujr1W59oopxmoEh7Lu5p6vBaPbgoM0bzveAW4Qi5RyWDQ==" + } + }, + "npm:fresh": { + "type": "npm", + "name": "npm:fresh", + "data": { + "version": "2.0.0", + "packageName": "fresh", + "hash": "sha512-Rx/WycZ60HOaqLKAi6cHRKKI7zxWbJ31MhntmtwMoaTeF7XFH9hhBp8vITaMidfljRQ6eYWCKkaTK+ykVJHP2A==" + } + }, + "npm:front-matter": { + "type": "npm", + "name": "npm:front-matter", + "data": { + "version": "4.0.2", + "packageName": "front-matter", + "hash": "sha512-I8ZuJ/qG92NWX8i5x1Y8qyj3vizhXS31OxjKDu3LKP+7/qBgfIKValiZIEwoVoJKUHlhWtYrktkxV1XsX+pPlg==" + } + }, + "npm:fs-constants": { + "type": "npm", + "name": "npm:fs-constants", + "data": { + "version": "1.0.0", + "packageName": "fs-constants", + "hash": "sha512-y6OAwoSIf7FyjMIv94u+b5rdheZEjzR63GTyZJm5qh4Bi+2YgwLCcI/fPFZkL5PSixOt6ZNKm+w+Hfp/Bciwow==" + } + }, + "npm:fs-minipass": { + "type": "npm", + "name": "npm:fs-minipass", + "data": { + "version": "3.0.3", + "packageName": "fs-minipass", + "hash": "sha512-XUBA9XClHbnJWSfBzjkm6RvPsyg3sryZt06BEQoXcF7EK/xpGaQYJgQKDJSUH5SGZ76Y7pFx1QBnXz09rU5Fbw==" + } + }, + "npm:fs.realpath": { + "type": "npm", + "name": "npm:fs.realpath", + "data": { + "version": "1.0.0", + "packageName": "fs.realpath", + "hash": "sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==" + } + }, + "npm:fsevents": { + "type": "npm", + "name": "npm:fsevents", + "data": { + "version": "2.3.3", + "packageName": "fsevents", + "hash": "sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==" + } + }, + "npm:function-bind": { + "type": "npm", + "name": "npm:function-bind", + "data": { + "version": "1.1.2", + "packageName": "function-bind", + "hash": "sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==" + } + }, + "npm:function.prototype.name": { + "type": "npm", + "name": "npm:function.prototype.name", + "data": { + "version": "1.1.8", + "packageName": "function.prototype.name", + "hash": "sha512-e5iwyodOHhbMr/yNrc7fDYG4qlbIvI5gajyzPnb5TCwyhjApznQh1BMFou9b30SevY43gCJKXycoCBjMbsuW0Q==" + } + }, + "npm:functions-have-names": { + "type": "npm", + "name": "npm:functions-have-names", + "data": { + "version": "1.2.3", + "packageName": "functions-have-names", + "hash": "sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ==" + } + }, + "npm:generate-function": { + "type": "npm", + "name": "npm:generate-function", + "data": { + "version": "2.3.1", + "packageName": "generate-function", + "hash": "sha512-eeB5GfMNeevm/GRYq20ShmsaGcmI81kIX2K9XQx5miC8KdHaC6Jm0qQ8ZNeGOi7wYB8OsdxKs+Y2oVuTFuVwKQ==" + } + }, + "npm:generator-function": { + "type": "npm", + "name": "npm:generator-function", + "data": { + "version": "2.0.1", + "packageName": "generator-function", + "hash": "sha512-SFdFmIJi+ybC0vjlHN0ZGVGHc3lgE0DxPAT0djjVg+kjOnSqclqmj0KQ7ykTOLP6YxoqOvuAODGdcHJn+43q3g==" + } + }, + "npm:gensync": { + "type": "npm", + "name": "npm:gensync", + "data": { + "version": "1.0.0-beta.2", + "packageName": "gensync", + "hash": "sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==" + } + }, + "npm:get-caller-file": { + "type": "npm", + "name": "npm:get-caller-file", + "data": { + "version": "2.0.5", + "packageName": "get-caller-file", + "hash": "sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==" + } + }, + "npm:get-intrinsic": { + "type": "npm", + "name": "npm:get-intrinsic", + "data": { + "version": "1.3.0", + "packageName": "get-intrinsic", + "hash": "sha512-9fSjSaos/fRIVIp+xSJlE6lfwhES7LNtKaCBIamHsjr2na1BiABJPo0mOjjz8GJDURarmCPGqaiVg5mfjb98CQ==" + } + }, + "npm:get-nonce": { + "type": "npm", + "name": "npm:get-nonce", + "data": { + "version": "1.0.1", + "packageName": "get-nonce", + "hash": "sha512-FJhYRoDaiatfEkUK8HKlicmu/3SGFD51q3itKDGoSTysQJBnfOcxU5GxnhE1E6soB76MbT0MBtnKJuXyAx+96Q==" + } + }, + "npm:get-port-please": { + "type": "npm", + "name": "npm:get-port-please", + "data": { + "version": "3.2.0", + "packageName": "get-port-please", + "hash": "sha512-I9QVvBw5U/hw3RmWpYKRumUeaDgxTPd401x364rLmWBJcOQ753eov1eTgzDqRG9bqFIfDc7gfzcQEWrUri3o1A==" + } + }, + "npm:get-port": { + "type": "npm", + "name": "npm:get-port", + "data": { + "version": "7.2.0", + "packageName": "get-port", + "hash": "sha512-afP4W205ONCuMoPBqcR6PSXnzX35KTcJygfJfcp+QY+uwm3p20p1YczWXhlICIzGMCxYBQcySEcOgsJcrkyobg==" + } + }, + "npm:get-proto": { + "type": "npm", + "name": "npm:get-proto", + "data": { + "version": "1.0.1", + "packageName": "get-proto", + "hash": "sha512-sTSfBjoXBp89JvIKIefqw7U2CCebsc74kiY6awiGogKtoSGbgjYE/G/+l9sF3MWFPNc9IcoOC4ODfKHfxFmp0g==" + } + }, + "npm:get-stream@5.2.0": { + "type": "npm", + "name": "npm:get-stream@5.2.0", + "data": { + "version": "5.2.0", + "packageName": "get-stream", + "hash": "sha512-nBF+F1rAZVCu/p7rjzgA+Yb4lfYXrpl7a6VmJrU8wF9I1CKvP/QwPNZHnOlwbTkY6dvtFIzFMSyQXbLoTQPRpA==" + } + }, + "npm:get-stream": { + "type": "npm", + "name": "npm:get-stream", + "data": { + "version": "9.0.1", + "packageName": "get-stream", + "hash": "sha512-kVCxPF3vQM/N0B1PmoqVUqgHP+EeVjmZSQn+1oCRPxd2P21P2F19lIgbR3HBosbB1PUhOAoctJnfEn2GbN2eZA==" + } + }, + "npm:get-symbol-description": { + "type": "npm", + "name": "npm:get-symbol-description", + "data": { + "version": "1.1.0", + "packageName": "get-symbol-description", + "hash": "sha512-w9UMqWwJxHNOvoNzSJ2oPF5wvYcvP7jUvYzhp67yEhTi17ZDBBC1z9pTdGuzjD+EFIqLSYRweZjqfiPzQ06Ebg==" + } + }, + "npm:get-tsconfig": { + "type": "npm", + "name": "npm:get-tsconfig", + "data": { + "version": "4.13.7", + "packageName": "get-tsconfig", + "hash": "sha512-7tN6rFgBlMgpBML5j8typ92BKFi2sFQvIdpAqLA2beia5avZDrMs0FLZiM5etShWq5irVyGcGMEA1jcDaK7A/Q==" + } + }, + "npm:get-uri": { + "type": "npm", + "name": "npm:get-uri", + "data": { + "version": "6.0.5", + "packageName": "get-uri", + "hash": "sha512-b1O07XYq8eRuVzBNgJLstU6FYc1tS6wnMtF1I1D9lE8LxZSOGZ7LhxN54yPP6mGw5f2CkXY2BQUL9Fx41qvcIg==" + } + }, + "npm:giget": { + "type": "npm", + "name": "npm:giget", + "data": { + "version": "2.0.0", + "packageName": "giget", + "hash": "sha512-L5bGsVkxJbJgdnwyuheIunkGatUF/zssUoxxjACCseZYAVbaqdh9Tsmmlkl8vYan09H7sbvKt4pS8GqKLBrEzA==" + } + }, + "npm:github-from-package": { + "type": "npm", + "name": "npm:github-from-package", + "data": { + "version": "0.0.0", + "packageName": "github-from-package", + "hash": "sha512-SyHy3T1v2NUXn29OsWdxmK6RwHD+vkj3v8en8AOBZ1wBQ/hCAQ5bAQTD02kW4W9tUp/3Qh6J8r9EvntiyCmOOw==" + } + }, + "npm:github-slugger": { + "type": "npm", + "name": "npm:github-slugger", + "data": { + "version": "2.0.0", + "packageName": "github-slugger", + "hash": "sha512-IaOQ9puYtjrkq7Y0Ygl9KDZnrf/aiUJYUpVf89y8kyaxbRG7Y1SrX/jaumrv81vc61+kiMempujsM3Yw7w5qcw==" + } + }, + "npm:glob-parent@5.1.2": { + "type": "npm", + "name": "npm:glob-parent@5.1.2", + "data": { + "version": "5.1.2", + "packageName": "glob-parent", + "hash": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==" + } + }, + "npm:glob-parent": { + "type": "npm", + "name": "npm:glob-parent", + "data": { + "version": "6.0.2", + "packageName": "glob-parent", + "hash": "sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==" + } + }, + "npm:glob-to-regexp": { + "type": "npm", + "name": "npm:glob-to-regexp", + "data": { + "version": "0.4.1", + "packageName": "glob-to-regexp", + "hash": "sha512-lkX1HJXwyMcprw/5YUZc2s7DrpAiHB21/V+E1rHUrVNokkvB6bqMzT0VfV6/86ZNabt1k14YOIaT7nDvOX3Iiw==" + } + }, + "npm:glob@10.5.0": { + "type": "npm", + "name": "npm:glob@10.5.0", + "data": { + "version": "10.5.0", + "packageName": "glob", + "hash": "sha512-DfXN8DfhJ7NH3Oe7cFmu3NCu1wKbkReJ8TorzSAFbSKrlNaQSKfIzqYqVY8zlbs2NLBbWpRiU52GX2PbaBVNkg==" + } + }, + "npm:glob": { + "type": "npm", + "name": "npm:glob", + "data": { + "version": "13.0.6", + "packageName": "glob", + "hash": "sha512-Wjlyrolmm8uDpm/ogGyXZXb1Z+Ca2B8NbJwqBVg0axK9GbBeoS7yGV6vjXnYdGm6X53iehEuxxbyiKp8QmN4Vw==" + } + }, + "npm:glob@9.3.5": { + "type": "npm", + "name": "npm:glob@9.3.5", + "data": { + "version": "9.3.5", + "packageName": "glob", + "hash": "sha512-e1LleDykUz2Iu+MTYdkSsuWX8lvAjAcs0Xef0lNIu0S2wOAzuTxCJtcd9S3cijlwYF18EsU3rzb8jPVobxDh9Q==" + } + }, + "npm:globals@14.0.0": { + "type": "npm", + "name": "npm:globals@14.0.0", + "data": { + "version": "14.0.0", + "packageName": "globals", + "hash": "sha512-oahGvuMGQlPw/ivIYBjVSrWAfWLBeku5tpPE2fOPLi+WHffIWbuh2tCjhyQhTBPMf5E9jDEH4FOmTYgYwbKwtQ==" + } + }, + "npm:globals": { + "type": "npm", + "name": "npm:globals", + "data": { + "version": "17.4.0", + "packageName": "globals", + "hash": "sha512-hjrNztw/VajQwOLsMNT1cbJiH2muO3OROCHnbehc8eY5JyD2gqz4AcMHPqgaOR59DjgUjYAYLeH699g/eWi2jw==" + } + }, + "npm:globalthis": { + "type": "npm", + "name": "npm:globalthis", + "data": { + "version": "1.0.4", + "packageName": "globalthis", + "hash": "sha512-DpLKbNU4WylpxJykQujfCcwYWiV/Jhm50Goo0wrVILAv5jOr9d+H+UR3PhSCD2rCCEIg0uc+G+muBTwD54JhDQ==" + } + }, + "npm:globby": { + "type": "npm", + "name": "npm:globby", + "data": { + "version": "16.1.1", + "packageName": "globby", + "hash": "sha512-dW7vl+yiAJSp6aCekaVnVJxurRv7DCOLyXqEG3RYMYUg7AuJ2jCqPkZTA8ooqC2vtnkaMcV5WfFBMuEnTu1OQg==" + } + }, + "npm:gopd": { + "type": "npm", + "name": "npm:gopd", + "data": { + "version": "1.2.0", + "packageName": "gopd", + "hash": "sha512-ZUKRh6/kUFoAiTAtTYPZJ3hw9wNxx+BIBOijnlG9PnrJsCcSjs1wyyD6vJpaYtgnzDrKYRSqf3OO6Rfa93xsRg==" + } + }, + "npm:got": { + "type": "npm", + "name": "npm:got", + "data": { + "version": "11.8.6", + "packageName": "got", + "hash": "sha512-6tfZ91bOr7bOXnK7PRDCGBLa1H4U080YHNaAQ2KsMGlLEzRbk44nsZF2E1IeRc3vtJHPVbKCYgdFbaGO2ljd8g==" + } + }, + "npm:graceful-fs": { + "type": "npm", + "name": "npm:graceful-fs", + "data": { + "version": "4.2.11", + "packageName": "graceful-fs", + "hash": "sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==" + } + }, + "npm:gradient-parser": { + "type": "npm", + "name": "npm:gradient-parser", + "data": { + "version": "1.1.1", + "packageName": "gradient-parser", + "hash": "sha512-Hu0YfNU+38EsTmnUfLXUKFMXq9yz7htGYpF4x+dlbBhUCvIvzLt0yVLT/gJRmvLKFJdqNFrz4eKkIUjIXSr7Tw==" + } + }, + "npm:grammex": { + "type": "npm", + "name": "npm:grammex", + "data": { + "version": "3.1.12", + "packageName": "grammex", + "hash": "sha512-6ufJOsSA7LcQehIJNCO7HIBykfM7DXQual0Ny780/DEcJIpBlHRvcqEBWGPYd7hrXL2GJ3oJI1MIhaXjWmLQOQ==" + } + }, + "npm:graphmatch": { + "type": "npm", + "name": "npm:graphmatch", + "data": { + "version": "1.1.0", + "packageName": "graphmatch", + "hash": "sha512-0E62MaTW5rPZVRLyIJZG/YejmdA/Xr1QydHEw3Vt+qOKkMIOE8WDLc9ZX2bmAjtJFZcId4lEdrdmASsEy7D1QA==" + } + }, + "npm:h3": { + "type": "npm", + "name": "npm:h3", + "data": { + "version": "1.15.10", + "packageName": "h3", + "hash": "sha512-YzJeWSkDZxAhvmp8dexjRK5hxziRO7I9m0N53WhvYL5NiWfkUkzssVzY9jvGu0HBoLFW6+duYmNSn6MaZBCCtg==" + } + }, + "npm:has-bigints": { + "type": "npm", + "name": "npm:has-bigints", + "data": { + "version": "1.1.0", + "packageName": "has-bigints", + "hash": "sha512-R3pbpkcIqv2Pm3dUwgjclDRVmWpTJW2DcMzcIhEXEx1oh/CEMObMm3KLmRJOdvhM7o4uQBnwr8pzRK2sJWIqfg==" + } + }, + "npm:has-flag": { + "type": "npm", + "name": "npm:has-flag", + "data": { + "version": "4.0.0", + "packageName": "has-flag", + "hash": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==" + } + }, + "npm:has-property-descriptors": { + "type": "npm", + "name": "npm:has-property-descriptors", + "data": { + "version": "1.0.2", + "packageName": "has-property-descriptors", + "hash": "sha512-55JNKuIW+vq4Ke1BjOTjM2YctQIvCT7GFzHwmfZPGo5wnrgkid0YQtnAleFSqumZm4az3n2BS+erby5ipJdgrg==" + } + }, + "npm:has-proto": { + "type": "npm", + "name": "npm:has-proto", + "data": { + "version": "1.2.0", + "packageName": "has-proto", + "hash": "sha512-KIL7eQPfHQRC8+XluaIw7BHUwwqL19bQn4hzNgdr+1wXoU0KKj6rufu47lhY7KbJR2C6T6+PfyN0Ea7wkSS+qQ==" + } + }, + "npm:has-symbols": { + "type": "npm", + "name": "npm:has-symbols", + "data": { + "version": "1.1.0", + "packageName": "has-symbols", + "hash": "sha512-1cDNdwJ2Jaohmb3sg4OmKaMBwuC48sYni5HUw2DvsC8LjGTLK9h+eb1X6RyuOHe4hT0ULCW68iomhjUoKUqlPQ==" + } + }, + "npm:has-tostringtag": { + "type": "npm", + "name": "npm:has-tostringtag", + "data": { + "version": "1.0.2", + "packageName": "has-tostringtag", + "hash": "sha512-NqADB8VjPFLM2V0VvHUewwwsw0ZWBaIdgo+ieHtK3hasLz4qeCRjYcqfB6AQrBggRKppKF8L52/VqdVsO47Dlw==" + } + }, + "npm:hasown": { + "type": "npm", + "name": "npm:hasown", + "data": { + "version": "2.0.2", + "packageName": "hasown", + "hash": "sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ==" + } + }, + "npm:he": { + "type": "npm", + "name": "npm:he", + "data": { + "version": "1.2.0", + "packageName": "he", + "hash": "sha512-F/1DnUGPopORZi0ni+CvrCgHQ5FyEAHRLSApuYWMmrbSwoN2Mn/7k+Gl38gJnR7yyDZk6WLXwiGod1JOWNDKGw==" + } + }, + "npm:hey-listen": { + "type": "npm", + "name": "npm:hey-listen", + "data": { + "version": "1.0.8", + "packageName": "hey-listen", + "hash": "sha512-COpmrF2NOg4TBWUJ5UVyaCU2A88wEMkUPK4hNqyCkqHbxT92BbvfjoSozkAIIm6XhicGlJHhFdullInrdhwU8Q==" + } + }, + "npm:hono@4.11.4": { + "type": "npm", + "name": "npm:hono@4.11.4", + "data": { + "version": "4.11.4", + "packageName": "hono", + "hash": "sha512-U7tt8JsyrxSRKspfhtLET79pU8K+tInj5QZXs1jSugO1Vq5dFj3kmZsRldo29mTBfcjDRVRXrEZ6LS63Cog9ZA==" + } + }, + "npm:hono": { + "type": "npm", + "name": "npm:hono", + "data": { + "version": "4.12.8", + "packageName": "hono", + "hash": "sha512-VJCEvtrezO1IAR+kqEYnxUOoStaQPGrCmX3j4wDTNOcD1uRPFpGlwQUIW8niPuvHXaTUxeOUl5MMDGrl+tmO9A==" + } + }, + "npm:hookable": { + "type": "npm", + "name": "npm:hookable", + "data": { + "version": "6.1.0", + "packageName": "hookable", + "hash": "sha512-ZoKZSJgu8voGK2geJS+6YtYjvIzu9AOM/KZXsBxr83uhLL++e9pEv/dlgwgy3dvHg06kTz6JOh1hk3C8Ceiymw==" + } + }, + "npm:html-encoding-sniffer": { + "type": "npm", + "name": "npm:html-encoding-sniffer", + "data": { + "version": "3.0.0", + "packageName": "html-encoding-sniffer", + "hash": "sha512-oWv4T4yJ52iKrufjnyZPkrN0CH3QnrUqdB6In1g5Fe1mia8GmF36gnfNySxoZtxD5+NmYw1EElVXiBk93UeskA==" + } + }, + "npm:html-entities": { + "type": "npm", + "name": "npm:html-entities", + "data": { + "version": "2.3.3", + "packageName": "html-entities", + "hash": "sha512-DV5Ln36z34NNTDgnz0EWGBLZENelNAtkiFA4kyNOG2tDI6Mz1uSWiq1wAKdyjnJwyDiDO7Fa2SO1CTxPXL8VxA==" + } + }, + "npm:html-tags": { + "type": "npm", + "name": "npm:html-tags", + "data": { + "version": "3.3.1", + "packageName": "html-tags", + "hash": "sha512-ztqyC3kLto0e9WbNp0aeP+M3kTt+nbaIveGmUxAtZa+8iFgKLUOD4YKM5j+f3QD89bra7UeumolZHKuOXnTmeQ==" + } + }, + "npm:http-cache-semantics": { + "type": "npm", + "name": "npm:http-cache-semantics", + "data": { + "version": "4.2.0", + "packageName": "http-cache-semantics", + "hash": "sha512-dTxcvPXqPvXBQpq5dUr6mEMJX4oIEFv6bwom3FDwKRDsuIjjJGANqhBuoAn9c1RQJIdAKav33ED65E2ys+87QQ==" + } + }, + "npm:http-errors": { + "type": "npm", + "name": "npm:http-errors", + "data": { + "version": "2.0.1", + "packageName": "http-errors", + "hash": "sha512-4FbRdAX+bSdmo4AUFuS0WNiPz8NgFt+r8ThgNWmlrjQjt1Q7ZR9+zTlce2859x4KSXrwIsaeTqDoKQmtP8pLmQ==" + } + }, + "npm:http-proxy-agent": { + "type": "npm", + "name": "npm:http-proxy-agent", + "data": { + "version": "7.0.2", + "packageName": "http-proxy-agent", + "hash": "sha512-T1gkAiYYDWYx3V5Bmyu7HcfcvL7mUrTWiM6yOfa3PIphViJ/gFPbvidQ+veqSOHci/PxBcDabeUNCzpOODJZig==" + } + }, + "npm:http-proxy": { + "type": "npm", + "name": "npm:http-proxy", + "data": { + "version": "1.18.1", + "packageName": "http-proxy", + "hash": "sha512-7mz/721AbnJwIVbnaSv1Cz3Am0ZLT/UBwkC92VlxhXv/k/BBQfM2fXElQNC27BVGr0uwUpplYPQM9LnaBMR5NQ==" + } + }, + "npm:http-server": { + "type": "npm", + "name": "npm:http-server", + "data": { + "version": "14.1.1", + "packageName": "http-server", + "hash": "sha512-+cbxadF40UXd9T01zUHgA+rlo2Bg1Srer4+B4NwIHdaGxAGGv59nYRnGGDJ9LBk7alpS0US+J+bLLdQOOkJq4A==" + } + }, + "npm:http-status-codes": { + "type": "npm", + "name": "npm:http-status-codes", + "data": { + "version": "2.3.0", + "packageName": "http-status-codes", + "hash": "sha512-RJ8XvFvpPM/Dmc5SV+dC4y5PCeOhT3x1Hq0NU3rjGeg5a/CqlhZ7uudknPwZFz4aeAXDcbAyaeP7GAo9lvngtA==" + } + }, + "npm:http2-wrapper": { + "type": "npm", + "name": "npm:http2-wrapper", + "data": { + "version": "1.0.3", + "packageName": "http2-wrapper", + "hash": "sha512-V+23sDMr12Wnz7iTcDeJr3O6AIxlnvT/bmaAAAP/Xda35C90p9599p0F1eHR/N1KILWSoWVAiOMFjBBXaXSMxg==" + } + }, + "npm:https-proxy-agent": { + "type": "npm", + "name": "npm:https-proxy-agent", + "data": { + "version": "5.0.1", + "packageName": "https-proxy-agent", + "hash": "sha512-dFcAjpTQFgoLMzC2VwU+C/CbS7uRL0lWmxDITmqm7C+7F0Odmj6s9l6alZc6AELXhrnggM2CeWSXHGOdX2YtwA==" + } + }, + "npm:https-proxy-agent@7.0.6": { + "type": "npm", + "name": "npm:https-proxy-agent@7.0.6", + "data": { + "version": "7.0.6", + "packageName": "https-proxy-agent", + "hash": "sha512-vK9P5/iUfdl95AI+JVyUuIcVtd4ofvtrOr3HNtM2yxC9bnMbEdp3x01OhQNnjb8IJYi38VlTE3mBXwcfvywuSw==" + } + }, + "npm:human-signals": { + "type": "npm", + "name": "npm:human-signals", + "data": { + "version": "8.0.1", + "packageName": "human-signals", + "hash": "sha512-eKCa6bwnJhvxj14kZk5NCPc6Hb6BdsU9DZcOnmQKSnO1VKrfV0zCvtttPZUsBvjmNDn8rpcJfpwSYnHBjc95MQ==" + } + }, + "npm:humanize-list": { + "type": "npm", + "name": "npm:humanize-list", + "data": { + "version": "1.0.1", + "packageName": "humanize-list", + "hash": "sha512-4+p3fCRF21oUqxhK0yZ6yaSP/H5/wZumc7q1fH99RkW7Q13aAxDeP78BKjoR+6y+kaHqKF/JWuQhsNuuI2NKtA==" + } + }, + "npm:iconv-lite": { + "type": "npm", + "name": "npm:iconv-lite", + "data": { + "version": "0.6.3", + "packageName": "iconv-lite", + "hash": "sha512-4fCk79wshMdzMp2rH06qWrJE4iolqLhCUH+OiuIgU++RB0+94NlDL81atO7GX55uUKueo0txHNtvEyI6D7WdMw==" + } + }, + "npm:iconv-lite@0.7.2": { + "type": "npm", + "name": "npm:iconv-lite@0.7.2", + "data": { + "version": "0.7.2", + "packageName": "iconv-lite", + "hash": "sha512-im9DjEDQ55s9fL4EYzOAv0yMqmMBSZp6G0VvFyTMPKWxiSBHUj9NW/qqLmXUwXrrM7AvqSlTCfvqRb0cM8yYqw==" + } + }, + "npm:ieee754": { + "type": "npm", + "name": "npm:ieee754", + "data": { + "version": "1.2.1", + "packageName": "ieee754", + "hash": "sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==" + } + }, + "npm:ignore": { + "type": "npm", + "name": "npm:ignore", + "data": { + "version": "5.3.2", + "packageName": "ignore", + "hash": "sha512-hsBTNUqQTDwkWtcdYI2i06Y/nUBEsNEDJKjWdigLvegy8kDuJAS8uRlpkkcQpyEXL0Z/pjDy5HBmMjRCJ2gq+g==" + } + }, + "npm:ignore@7.0.5": { + "type": "npm", + "name": "npm:ignore@7.0.5", + "data": { + "version": "7.0.5", + "packageName": "ignore", + "hash": "sha512-Hs59xBNfUIunMFgWAbGX5cq6893IbWg4KnrjbYwX3tx0ztorVgTDA6B2sxf8ejHJ4wz8BqGUMYlnzNBer5NvGg==" + } + }, + "npm:import-fresh": { + "type": "npm", + "name": "npm:import-fresh", + "data": { + "version": "3.3.1", + "packageName": "import-fresh", + "hash": "sha512-TR3KfrTZTYLPB6jUjfx6MF9WcWrHL9su5TObK4ZkYgBdWKPOFoSoQIdEuTuR82pmtxH2spWG9h6etwfr1pLBqQ==" + } + }, + "npm:import-without-cache": { + "type": "npm", + "name": "npm:import-without-cache", + "data": { + "version": "0.2.5", + "packageName": "import-without-cache", + "hash": "sha512-B6Lc2s6yApwnD2/pMzFh/d5AVjdsDXjgkeJ766FmFuJELIGHNycKRj+l3A39yZPM4CchqNCB4RITEAYB1KUM6A==" + } + }, + "npm:imurmurhash": { + "type": "npm", + "name": "npm:imurmurhash", + "data": { + "version": "0.1.4", + "packageName": "imurmurhash", + "hash": "sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==" + } + }, + "npm:inherits": { + "type": "npm", + "name": "npm:inherits", + "data": { + "version": "2.0.4", + "packageName": "inherits", + "hash": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==" + } + }, + "npm:ini": { + "type": "npm", + "name": "npm:ini", + "data": { + "version": "1.3.8", + "packageName": "ini", + "hash": "sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew==" + } + }, + "npm:inline-style-parser": { + "type": "npm", + "name": "npm:inline-style-parser", + "data": { + "version": "0.2.4", + "packageName": "inline-style-parser", + "hash": "sha512-0aO8FkhNZlj/ZIbNi7Lxxr12obT7cL1moPfE4tg1LkX7LlLfC6DeX4l2ZEud1ukP9jNQyNnfzQVqwbwmAATY4Q==" + } + }, + "npm:install-artifact-from-github": { + "type": "npm", + "name": "npm:install-artifact-from-github", + "data": { + "version": "1.4.0", + "packageName": "install-artifact-from-github", + "hash": "sha512-+y6WywKZREw5rq7U2jvr2nmZpT7cbWbQQ0N/qfcseYnzHFz2cZz1Et52oY+XttYuYeTkI8Y+R2JNWj68MpQFSg==" + } + }, + "npm:internal-slot": { + "type": "npm", + "name": "npm:internal-slot", + "data": { + "version": "1.1.0", + "packageName": "internal-slot", + "hash": "sha512-4gd7VpWNQNB4UKKCFFVcp1AVv+FMOgs9NKzjHKusc8jTMhd5eL1NqQqOpE0KzMds804/yHlglp3uxgluOqAPLw==" + } + }, + "npm:ip-address": { + "type": "npm", + "name": "npm:ip-address", + "data": { + "version": "10.0.1", + "packageName": "ip-address", + "hash": "sha512-NWv9YLW4PoW2B7xtzaS3NCot75m6nK7Icdv0o3lfMceJVRfSoQwqD4wEH5rLwoKJwUiZ/rfpiVBhnaF0FK4HoA==" + } + }, + "npm:ip-regex": { + "type": "npm", + "name": "npm:ip-regex", + "data": { + "version": "4.3.0", + "packageName": "ip-regex", + "hash": "sha512-B9ZWJxHHOHUhUjCPrMpLD4xEq35bUTClHM1S6CBU5ixQnkZmwipwgc96vAd7AAGM9TGHvJR+Uss+/Ak6UphK+Q==" + } + }, + "npm:ipaddr.js@1.9.1": { + "type": "npm", + "name": "npm:ipaddr.js@1.9.1", + "data": { + "version": "1.9.1", + "packageName": "ipaddr.js", + "hash": "sha512-0KI/607xoxSToH7GjN1FfSbLoU0+btTicjsQSWQlh/hZykN8KpmMf7uYwPW3R+akZ6R/w18ZlXSHBYXiYUPO3g==" + } + }, + "npm:ipaddr.js": { + "type": "npm", + "name": "npm:ipaddr.js", + "data": { + "version": "2.3.0", + "packageName": "ipaddr.js", + "hash": "sha512-Zv/pA+ciVFbCSBBjGfaKUya/CcGmUHzTydLMaTwrUUEM2DIEO3iZvueGxmacvmN50fGpGVKeTXpb2LcYQxeVdg==" + } + }, + "npm:iron-webcrypto": { + "type": "npm", + "name": "npm:iron-webcrypto", + "data": { + "version": "1.2.1", + "packageName": "iron-webcrypto", + "hash": "sha512-feOM6FaSr6rEABp/eDfVseKyTMDt+KGpeB35SkVn9Tyn0CqvVsY3EwI0v5i8nMHyJnzCIQf7nsy3p41TPkJZhg==" + } + }, + "npm:is-array-buffer": { + "type": "npm", + "name": "npm:is-array-buffer", + "data": { + "version": "3.0.5", + "packageName": "is-array-buffer", + "hash": "sha512-DDfANUiiG2wC1qawP66qlTugJeL5HyzMpfr8lLK+jMQirGzNod0B12cFB/9q838Ru27sBwfw78/rdoU7RERz6A==" + } + }, + "npm:is-arrayish": { + "type": "npm", + "name": "npm:is-arrayish", + "data": { + "version": "0.2.1", + "packageName": "is-arrayish", + "hash": "sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg==" + } + }, + "npm:is-arrayish@0.3.4": { + "type": "npm", + "name": "npm:is-arrayish@0.3.4", + "data": { + "version": "0.3.4", + "packageName": "is-arrayish", + "hash": "sha512-m6UrgzFVUYawGBh1dUsWR5M2Clqic9RVXC/9f8ceNlv2IcO9j9J/z8UoCLPqtsPBFNzEpfR3xftohbfqDx8EQA==" + } + }, + "npm:is-async-function": { + "type": "npm", + "name": "npm:is-async-function", + "data": { + "version": "2.1.1", + "packageName": "is-async-function", + "hash": "sha512-9dgM/cZBnNvjzaMYHVoxxfPj2QXt22Ev7SuuPrs+xav0ukGB0S6d4ydZdEiM48kLx5kDV+QBPrpVnFyefL8kkQ==" + } + }, + "npm:is-bigint": { + "type": "npm", + "name": "npm:is-bigint", + "data": { + "version": "1.1.0", + "packageName": "is-bigint", + "hash": "sha512-n4ZT37wG78iz03xPRKJrHTdZbe3IicyucEtdRsV5yglwc3GyUfbAfpSeD0FJ41NbUNSt5wbhqfp1fS+BgnvDFQ==" + } + }, + "npm:is-boolean-object": { + "type": "npm", + "name": "npm:is-boolean-object", + "data": { + "version": "1.2.2", + "packageName": "is-boolean-object", + "hash": "sha512-wa56o2/ElJMYqjCjGkXri7it5FbebW5usLw/nPmCMs5DeZ7eziSYZhSmPRn0txqeW4LnAmQQU7FgqLpsEFKM4A==" + } + }, + "npm:is-callable": { + "type": "npm", + "name": "npm:is-callable", + "data": { + "version": "1.2.7", + "packageName": "is-callable", + "hash": "sha512-1BC0BVFhS/p0qtw6enp8e+8OD0UrK0oFLztSjNzhcKA3WDuJxxAPXzPuPtKkjEY9UUoEWlX/8fgKeu2S8i9JTA==" + } + }, + "npm:is-core-module": { + "type": "npm", + "name": "npm:is-core-module", + "data": { + "version": "2.16.1", + "packageName": "is-core-module", + "hash": "sha512-UfoeMA6fIJ8wTYFEUjelnaGI67v6+N7qXJEvQuIGa99l4xsCruSYOVSQ0uPANn4dAzm8lkYPaKLrrijLq7x23w==" + } + }, + "npm:is-data-view": { + "type": "npm", + "name": "npm:is-data-view", + "data": { + "version": "1.0.2", + "packageName": "is-data-view", + "hash": "sha512-RKtWF8pGmS87i2D6gqQu/l7EYRlVdfzemCJN/P3UOs//x1QE7mfhvzHIApBTRf7axvT6DMGwSwBXYCT0nfB9xw==" + } + }, + "npm:is-date-object": { + "type": "npm", + "name": "npm:is-date-object", + "data": { + "version": "1.1.0", + "packageName": "is-date-object", + "hash": "sha512-PwwhEakHVKTdRNVOw+/Gyh0+MzlCl4R6qKvkhuvLtPMggI1WAHt9sOwZxQLSGpUaDnrdyDsomoRgNnCfKNSXXg==" + } + }, + "npm:is-docker": { + "type": "npm", + "name": "npm:is-docker", + "data": { + "version": "2.2.1", + "packageName": "is-docker", + "hash": "sha512-F+i2BKsFrH66iaUFc0woD8sLy8getkwTwtOBjvs56Cx4CgJDeKQeqfz8wAYiSb8JOprWhHH5p77PbmYCvvUuXQ==" + } + }, + "npm:is-extglob": { + "type": "npm", + "name": "npm:is-extglob", + "data": { + "version": "2.1.1", + "packageName": "is-extglob", + "hash": "sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==" + } + }, + "npm:is-finalizationregistry": { + "type": "npm", + "name": "npm:is-finalizationregistry", + "data": { + "version": "1.1.1", + "packageName": "is-finalizationregistry", + "hash": "sha512-1pC6N8qWJbWoPtEjgcL2xyhQOP491EQjeUo3qTKcmV8YSDDJrOepfG8pcC7h/QgnQHYSv0mJ3Z/ZWxmatVrysg==" + } + }, + "npm:is-fullwidth-code-point": { + "type": "npm", + "name": "npm:is-fullwidth-code-point", + "data": { + "version": "3.0.0", + "packageName": "is-fullwidth-code-point", + "hash": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==" + } + }, + "npm:is-generator-function": { + "type": "npm", + "name": "npm:is-generator-function", + "data": { + "version": "1.1.2", + "packageName": "is-generator-function", + "hash": "sha512-upqt1SkGkODW9tsGNG5mtXTXtECizwtS2kA161M+gJPc1xdb/Ax629af6YrTwcOeQHbewrPNlE5Dx7kzvXTizA==" + } + }, + "npm:is-glob": { + "type": "npm", + "name": "npm:is-glob", + "data": { + "version": "4.0.3", + "packageName": "is-glob", + "hash": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==" + } + }, + "npm:is-html-content": { + "type": "npm", + "name": "npm:is-html-content", + "data": { + "version": "1.0.0", + "packageName": "is-html-content", + "hash": "sha512-GhUQOpN/YQ65rybhJ77MjabmrY39IZ/OHiKJZPC+WPg6KytNaqKlbs1tNizJ0Aluz4MOuAV9ItVSBKIZTAx0Iw==" + } + }, + "npm:is-html": { + "type": "npm", + "name": "npm:is-html", + "data": { + "version": "2.0.0", + "packageName": "is-html", + "hash": "sha512-S+OpgB5i7wzIue/YSE5hg0e5ZYfG3hhpNh9KGl6ayJ38p7ED6wxQLd1TV91xHpcTvw90KMJ9EwN3F/iNflHBVg==" + } + }, + "npm:is-interactive": { + "type": "npm", + "name": "npm:is-interactive", + "data": { + "version": "1.0.0", + "packageName": "is-interactive", + "hash": "sha512-2HvIEKRoqS62guEC+qBjpvRubdX910WCMuJTZ+I9yvqKU2/12eSL549HMwtabb4oupdj2sMP50k+XJfB/8JE6w==" + } + }, + "npm:is-map": { + "type": "npm", + "name": "npm:is-map", + "data": { + "version": "2.0.3", + "packageName": "is-map", + "hash": "sha512-1Qed0/Hr2m+YqxnM09CjA2d/i6YZNfF6R2oRAOj36eUdS6qIV/huPJNSEpKbupewFs+ZsJlxsjjPbc0/afW6Lw==" + } + }, + "npm:is-negative-zero": { + "type": "npm", + "name": "npm:is-negative-zero", + "data": { + "version": "2.0.3", + "packageName": "is-negative-zero", + "hash": "sha512-5KoIu2Ngpyek75jXodFvnafB6DJgr3u8uuK0LEZJjrU19DrMD3EVERaR8sjz8CCGgpZvxPl9SuE1GMVPFHx1mw==" + } + }, + "npm:is-number-object": { + "type": "npm", + "name": "npm:is-number-object", + "data": { + "version": "1.1.1", + "packageName": "is-number-object", + "hash": "sha512-lZhclumE1G6VYD8VHe35wFaIif+CTy5SJIi5+3y4psDgWu4wPDoBhF8NxUOinEc7pHgiTsT6MaBb92rKhhD+Xw==" + } + }, + "npm:is-number": { + "type": "npm", + "name": "npm:is-number", + "data": { + "version": "7.0.0", + "packageName": "is-number", + "hash": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==" + } + }, + "npm:is-path-inside": { + "type": "npm", + "name": "npm:is-path-inside", + "data": { + "version": "4.0.0", + "packageName": "is-path-inside", + "hash": "sha512-lJJV/5dYS+RcL8uQdBDW9c9uWFLLBNRyFhnAKXw5tVqLlKZ4RMGZKv+YQ/IA3OhD+RpbJa1LLFM1FQPGyIXvOA==" + } + }, + "npm:is-plain-obj": { + "type": "npm", + "name": "npm:is-plain-obj", + "data": { + "version": "4.1.0", + "packageName": "is-plain-obj", + "hash": "sha512-+Pgi+vMuUNkJyExiMBt5IlFoMyKnr5zhJ4Uspz58WOhBF5QoIZkFyNHIbBAtHwzVAgk5RtndVNsDRN61/mmDqg==" + } + }, + "npm:is-promise": { + "type": "npm", + "name": "npm:is-promise", + "data": { + "version": "4.0.0", + "packageName": "is-promise", + "hash": "sha512-hvpoI6korhJMnej285dSg6nu1+e6uxs7zG3BYAm5byqDsgJNWwxzM6z6iZiAgQR4TJ30JmBTOwqZUw3WlyH3AQ==" + } + }, + "npm:is-property": { + "type": "npm", + "name": "npm:is-property", + "data": { + "version": "1.0.2", + "packageName": "is-property", + "hash": "sha512-Ks/IoX00TtClbGQr4TWXemAnktAQvYB7HzcCxDGqEZU6oCmb2INHuOoKxbtR+HFkmYWBKv/dOZtGRiAjDhj92g==" + } + }, + "npm:is-regex": { + "type": "npm", + "name": "npm:is-regex", + "data": { + "version": "1.2.1", + "packageName": "is-regex", + "hash": "sha512-MjYsKHO5O7mCsmRGxWcLWheFqN9DJ/2TmngvjKXihe6efViPqc274+Fx/4fYj/r03+ESvBdTXK0V6tA3rgez1g==" + } + }, + "npm:is-set": { + "type": "npm", + "name": "npm:is-set", + "data": { + "version": "2.0.3", + "packageName": "is-set", + "hash": "sha512-iPAjerrse27/ygGLxw+EBR9agv9Y6uLeYVJMu+QNCoouJ1/1ri0mGrcWpfCqFZuzzx3WjtwxG098X+n4OuRkPg==" + } + }, + "npm:is-shared-array-buffer": { + "type": "npm", + "name": "npm:is-shared-array-buffer", + "data": { + "version": "1.0.4", + "packageName": "is-shared-array-buffer", + "hash": "sha512-ISWac8drv4ZGfwKl5slpHG9OwPNty4jOWPRIhBpxOoD+hqITiwuipOQ2bNthAzwA3B4fIjO4Nln74N0S9byq8A==" + } + }, + "npm:is-stream": { + "type": "npm", + "name": "npm:is-stream", + "data": { + "version": "4.0.1", + "packageName": "is-stream", + "hash": "sha512-Dnz92NInDqYckGEUJv689RbRiTSEHCQ7wOVeALbkOz999YpqT46yMRIGtSNl2iCL1waAZSx40+h59NV/EwzV/A==" + } + }, + "npm:is-string": { + "type": "npm", + "name": "npm:is-string", + "data": { + "version": "1.1.1", + "packageName": "is-string", + "hash": "sha512-BtEeSsoaQjlSPBemMQIrY1MY0uM6vnS1g5fmufYOtnxLGUZM2178PKbhsk7Ffv58IX+ZtcvoGwccYsh0PglkAA==" + } + }, + "npm:is-symbol": { + "type": "npm", + "name": "npm:is-symbol", + "data": { + "version": "1.1.1", + "packageName": "is-symbol", + "hash": "sha512-9gGx6GTtCQM73BgmHQXfDmLtfjjTUDSyoxTCbp5WtoixAhfgsDirWIcVQ/IHpvI5Vgd5i/J5F7B9cN/WlVbC/w==" + } + }, + "npm:is-typed-array": { + "type": "npm", + "name": "npm:is-typed-array", + "data": { + "version": "1.1.15", + "packageName": "is-typed-array", + "hash": "sha512-p3EcsicXjit7SaskXHs1hA91QxgTw46Fv6EFKKGS5DRFLD8yKnohjF3hxoju94b/OcMZoQukzpPpBE9uLVKzgQ==" + } + }, + "npm:is-unicode-supported@0.1.0": { + "type": "npm", + "name": "npm:is-unicode-supported@0.1.0", + "data": { + "version": "0.1.0", + "packageName": "is-unicode-supported", + "hash": "sha512-knxG2q4UC3u8stRGyAVJCOdxFmv5DZiRcdlIaAQXAbSfJya+OhopNotLQrstBhququ4ZpuKbDc/8S6mgXgPFPw==" + } + }, + "npm:is-unicode-supported": { + "type": "npm", + "name": "npm:is-unicode-supported", + "data": { + "version": "2.1.0", + "packageName": "is-unicode-supported", + "hash": "sha512-mE00Gnza5EEB3Ds0HfMyllZzbBrmLOX3vfWoj9A9PEnTfratQ/BcaJOuMhnkhjXvb2+FkY3VuHqtAGpTPmglFQ==" + } + }, + "npm:is-url-http": { + "type": "npm", + "name": "npm:is-url-http", + "data": { + "version": "2.3.13", + "packageName": "is-url-http", + "hash": "sha512-DUPPybagMEVM0W968iMk0J4ztU72/HOuwMs04Kd8SCDQ/CEV31SdudlOR7qn4zMXmJuLN6+Ak5K60tcVE8tlRA==" + } + }, + "npm:is-url-superb": { + "type": "npm", + "name": "npm:is-url-superb", + "data": { + "version": "4.0.0", + "packageName": "is-url-superb", + "hash": "sha512-GI+WjezhPPcbM+tqE9LnmsY5qqjwHzTvjJ36wxYX5ujNXefSUJ/T17r5bqDV8yLhcgB59KTPNOc9O9cmHTPWsA==" + } + }, + "npm:is-weakmap": { + "type": "npm", + "name": "npm:is-weakmap", + "data": { + "version": "2.0.2", + "packageName": "is-weakmap", + "hash": "sha512-K5pXYOm9wqY1RgjpL3YTkF39tni1XajUIkawTLUo9EZEVUFga5gSQJF8nNS7ZwJQ02y+1YCNYcMh+HIf1ZqE+w==" + } + }, + "npm:is-weakref": { + "type": "npm", + "name": "npm:is-weakref", + "data": { + "version": "1.1.1", + "packageName": "is-weakref", + "hash": "sha512-6i9mGWSlqzNMEqpCp93KwRS1uUOodk2OJ6b+sq7ZPDSy2WuI5NFIxp/254TytR8ftefexkWn5xNiHUNpPOfSew==" + } + }, + "npm:is-weakset": { + "type": "npm", + "name": "npm:is-weakset", + "data": { + "version": "2.0.4", + "packageName": "is-weakset", + "hash": "sha512-mfcwb6IzQyOKTs84CQMrOwW4gQcaTOAWJ0zzJCl2WSPDrWk/OzDaImWFH3djXhb24g4eudZfLRozAvPGw4d9hQ==" + } + }, + "npm:is-what": { + "type": "npm", + "name": "npm:is-what", + "data": { + "version": "4.1.16", + "packageName": "is-what", + "hash": "sha512-ZhMwEosbFJkA0YhFnNDgTM4ZxDRsS6HqTo7qsZM08fehyRYIYa0yHu5R6mgo1n/8MgaPBXiPimPD77baVFYg+A==" + } + }, + "npm:is-wsl": { + "type": "npm", + "name": "npm:is-wsl", + "data": { + "version": "2.2.0", + "packageName": "is-wsl", + "hash": "sha512-fKzAra0rGJUUBwGBgNkHZuToZcn+TtXHpeCgmkMJMMYx1sQDYaCSyjJBSCa2nH1DGm7s3n1oBnohoVTBaN7Lww==" + } + }, + "npm:isarray": { + "type": "npm", + "name": "npm:isarray", + "data": { + "version": "2.0.5", + "packageName": "isarray", + "hash": "sha512-xHjhDr3cNBK0BzdUJSPXZntQUx/mwMS5Rw4A7lPJ90XGAO6ISP/ePDNuo0vhqOZU+UD5JoodwCAAoZQd3FeAKw==" + } + }, + "npm:isbot-fast": { + "type": "npm", + "name": "npm:isbot-fast", + "data": { + "version": "1.2.0", + "packageName": "isbot-fast", + "hash": "sha512-twjuQzy2gKMDVfKGQyQqrx6Uy4opu/fiVUTTpdqtFsd7OQijIp5oXvb27n5EemYXaijh5fomndJt/SPRLsEdSg==" + } + }, + "npm:isexe@2.0.0": { + "type": "npm", + "name": "npm:isexe@2.0.0", + "data": { + "version": "2.0.0", + "packageName": "isexe", + "hash": "sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==" + } + }, + "npm:isexe@3.1.1": { + "type": "npm", + "name": "npm:isexe@3.1.1", + "data": { + "version": "3.1.1", + "packageName": "isexe", + "hash": "sha512-LpB/54B+/2J5hqQ7imZHfdU31OlgQqx7ZicVlkm9kzg9/w8GKLEcFfJl/t7DCEDueOyBAD6zCCwTO6Fzs0NoEQ==" + } + }, + "npm:isexe": { + "type": "npm", + "name": "npm:isexe", + "data": { + "version": "4.0.0", + "packageName": "isexe", + "hash": "sha512-FFUtZMpoZ8RqHS3XeXEmHWLA4thH+ZxCv2lOiPIn1Xc7CxrqhWzNSDzD+/chS/zbYezmiwWLdQC09JdQKmthOw==" + } + }, + "npm:iterator.prototype": { + "type": "npm", + "name": "npm:iterator.prototype", + "data": { + "version": "1.1.5", + "packageName": "iterator.prototype", + "hash": "sha512-H0dkQoCa3b2VEeKQBOxFph+JAbcrQdE7KC0UkqwpLmv2EC4P41QXP+rqo9wYodACiG5/WM5s9oDApTU8utwj9g==" + } + }, + "npm:itty-router": { + "type": "npm", + "name": "npm:itty-router", + "data": { + "version": "5.0.22", + "packageName": "itty-router", + "hash": "sha512-9hmdGErWdYDOurGYxSbqLhy4EFReIwk71hMZTJ5b+zfa2zjMNV1ftFno2b8VjAQvX615gNB8Qxbl9JMRqHnIVA==" + } + }, + "npm:jackspeak@3.4.3": { + "type": "npm", + "name": "npm:jackspeak@3.4.3", + "data": { + "version": "3.4.3", + "packageName": "jackspeak", + "hash": "sha512-OGlZQpz2yfahA/Rd1Y8Cd9SIEsqvXkLVoSw/cgwhnhFMDbsQFeZYoJJ7bIZBS9BcamUW96asq/npPWugM+RQBw==" + } + }, + "npm:jackspeak": { + "type": "npm", + "name": "npm:jackspeak", + "data": { + "version": "4.2.3", + "packageName": "jackspeak", + "hash": "sha512-ykkVRwrYvFm1nb2AJfKKYPr0emF6IiXDYUaFx4Zn9ZuIH7MrzEZ3sD5RlqGXNRpHtvUHJyOnCEFxOlNDtGo7wg==" + } + }, + "npm:jake": { + "type": "npm", + "name": "npm:jake", + "data": { + "version": "10.9.4", + "packageName": "jake", + "hash": "sha512-wpHYzhxiVQL+IV05BLE2Xn34zW1S223hvjtqk0+gsPrwd/8JNLXJgZZM/iPFsYc1xyphF+6M6EvdE5E9MBGkDA==" + } + }, + "npm:jest-diff": { + "type": "npm", + "name": "npm:jest-diff", + "data": { + "version": "30.3.0", + "packageName": "jest-diff", + "hash": "sha512-n3q4PDQjS4LrKxfWB3Z5KNk1XjXtZTBwQp71OP0Jo03Z6V60x++K5L8k6ZrW8MY8pOFylZvHM0zsjS1RqlHJZQ==" + } + }, + "npm:jiti": { + "type": "npm", + "name": "npm:jiti", + "data": { + "version": "2.6.1", + "packageName": "jiti", + "hash": "sha512-ekilCSN1jwRvIbgeg/57YFh8qQDNbwDb9xT/qu2DAHbFFZUicIl4ygVaAvzveMhMVr3LnpSKTNnwt8PoOfmKhQ==" + } + }, + "npm:jju": { + "type": "npm", + "name": "npm:jju", + "data": { + "version": "1.4.0", + "packageName": "jju", + "hash": "sha512-8wb9Yw966OSxApiCt0K3yNJL8pnNeIv+OEq2YMidz4FKP6nonSRoOXc80iXY4JaN2FC11B9qsNmDsm+ZOfMROA==" + } + }, + "npm:jose": { + "type": "npm", + "name": "npm:jose", + "data": { + "version": "6.1.0", + "packageName": "jose", + "hash": "sha512-TTQJyoEoKcC1lscpVDCSsVgYzUDg/0Bt3WE//WiTPK6uOCQC2KZS4MpugbMWt/zyjkopgZoXhZuCi00gLudfUA==" + } + }, + "npm:js-tokens": { + "type": "npm", + "name": "npm:js-tokens", + "data": { + "version": "4.0.0", + "packageName": "js-tokens", + "hash": "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==" + } + }, + "npm:js-yaml@3.14.2": { + "type": "npm", + "name": "npm:js-yaml@3.14.2", + "data": { + "version": "3.14.2", + "packageName": "js-yaml", + "hash": "sha512-PMSmkqxr106Xa156c2M265Z+FTrPl+oxd/rgOQy2tijQeK5TxQ43psO1ZCwhVOSdnn+RzkzlRz/eY4BgJBYVpg==" + } + }, + "npm:js-yaml": { + "type": "npm", + "name": "npm:js-yaml", + "data": { + "version": "4.1.1", + "packageName": "js-yaml", + "hash": "sha512-qQKT4zQxXl8lLwBtHMWwaTcGfFOZviOJet3Oy/xmGk2gZH677CJM9EvtfdSkgWcATZhj/55JZ0rmy3myCT5lsA==" + } + }, + "npm:jsesc": { + "type": "npm", + "name": "npm:jsesc", + "data": { + "version": "3.1.0", + "packageName": "jsesc", + "hash": "sha512-/sM3dO2FOzXjKQhJuo0Q173wf2KOo8t4I8vHy6lF9poUp7bKT0/NHE8fPX23PwfhnykfqnC2xRxOnVw5XuGIaA==" + } + }, + "npm:json-buffer": { + "type": "npm", + "name": "npm:json-buffer", + "data": { + "version": "3.0.1", + "packageName": "json-buffer", + "hash": "sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ==" + } + }, + "npm:json-loose": { + "type": "npm", + "name": "npm:json-loose", + "data": { + "version": "1.2.4", + "packageName": "json-loose", + "hash": "sha512-lwMWNC5pvVI33rhYWmAsmtICWE2IH7euDY/iIPeMFE5AuzAifYgqQrjqSMzwbrFV6MWPs41XD+CajElHI4cZMQ==" + } + }, + "npm:json-parse-even-better-errors@2.3.1": { + "type": "npm", + "name": "npm:json-parse-even-better-errors@2.3.1", + "data": { + "version": "2.3.1", + "packageName": "json-parse-even-better-errors", + "hash": "sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w==" + } + }, + "npm:json-parse-even-better-errors": { + "type": "npm", + "name": "npm:json-parse-even-better-errors", + "data": { + "version": "4.0.0", + "packageName": "json-parse-even-better-errors", + "hash": "sha512-lR4MXjGNgkJc7tkQ97kb2nuEMnNCyU//XYVH0MKTGcXEiSudQ5MKGKen3C5QubYy0vmq+JGitUg92uuywGEwIA==" + } + }, + "npm:json-schema-ref-resolver": { + "type": "npm", + "name": "npm:json-schema-ref-resolver", + "data": { + "version": "3.0.0", + "packageName": "json-schema-ref-resolver", + "hash": "sha512-hOrZIVL5jyYFjzk7+y7n5JDzGlU8rfWDuYyHwGa2WA8/pcmMHezp2xsVwxrebD/Q9t8Nc5DboieySDpCp4WG4A==" + } + }, + "npm:json-schema-traverse": { + "type": "npm", + "name": "npm:json-schema-traverse", + "data": { + "version": "0.4.1", + "packageName": "json-schema-traverse", + "hash": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==" + } + }, + "npm:json-schema-traverse@1.0.0": { + "type": "npm", + "name": "npm:json-schema-traverse@1.0.0", + "data": { + "version": "1.0.0", + "packageName": "json-schema-traverse", + "hash": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==" + } + }, + "npm:json-stable-stringify-without-jsonify": { + "type": "npm", + "name": "npm:json-stable-stringify-without-jsonify", + "data": { + "version": "1.0.1", + "packageName": "json-stable-stringify-without-jsonify", + "hash": "sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==" + } + }, + "npm:json5": { + "type": "npm", + "name": "npm:json5", + "data": { + "version": "2.2.3", + "packageName": "json5", + "hash": "sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==" + } + }, + "npm:jsonc-parser@3.2.0": { + "type": "npm", + "name": "npm:jsonc-parser@3.2.0", + "data": { + "version": "3.2.0", + "packageName": "jsonc-parser", + "hash": "sha512-gfFQZrcTc8CnKXp6Y4/CBT3fTc0OVuDofpre4aEeEpSBPV5X5v4+Vmx+8snU7RLPrNHPKSgLxGo9YuQzz20o+w==" + } + }, + "npm:jsonc-parser": { + "type": "npm", + "name": "npm:jsonc-parser", + "data": { + "version": "3.3.1", + "packageName": "jsonc-parser", + "hash": "sha512-HUgH65KyejrUFPvHFPbqOY0rsFip3Bo5wb4ngvdi1EpCYWUQDC5V+Y7mZws+DLkr4M//zQJoanu1SP+87Dv1oQ==" + } + }, + "npm:jsx-ast-utils": { + "type": "npm", + "name": "npm:jsx-ast-utils", + "data": { + "version": "3.3.5", + "packageName": "jsx-ast-utils", + "hash": "sha512-ZZow9HBI5O6EPgSJLUb8n2NKgmVWTwCvHGwFuJlMjvLFqlGG6pjirPhtdsseaLZjSibD8eegzmYpUZwoIlj2cQ==" + } + }, + "npm:kebab-case": { + "type": "npm", + "name": "npm:kebab-case", + "data": { + "version": "1.0.2", + "packageName": "kebab-case", + "hash": "sha512-7n6wXq4gNgBELfDCpzKc+mRrZFs7D+wgfF5WRFLNAr4DA/qtr9Js8uOAVAfHhuLMfAcQ0pRKqbpjx+TcJVdE1Q==" + } + }, + "npm:keyv": { + "type": "npm", + "name": "npm:keyv", + "data": { + "version": "4.5.4", + "packageName": "keyv", + "hash": "sha512-oxVHkHR/EJf2CNXnWxRLW6mg7JyCCUcG0DtEGmL2ctUo1PNTin1PUil+r/+4r5MpVgC/fn1kjsx7mjSujKqIpw==" + } + }, + "npm:kill-process-group": { + "type": "npm", + "name": "npm:kill-process-group", + "data": { + "version": "1.0.13", + "packageName": "kill-process-group", + "hash": "sha512-BbOC8H7O8mvETYdkp2t5B3TmhNkwbFXUAb6by48wBei0bbUHXXEaD+80uOaTGAmeuSq37P6CUYHetsK5xB2vCA==" + } + }, + "npm:kleur": { + "type": "npm", + "name": "npm:kleur", + "data": { + "version": "4.1.5", + "packageName": "kleur", + "hash": "sha512-o+NO+8WrRiQEE4/7nwRJhN1HWpVmJm511pBHUxPLtp0BUISzlBplORYSmTclCnJvQq2tKu/sgl3xVpkc7ZWuQQ==" + } + }, + "npm:knip": { + "type": "npm", + "name": "npm:knip", + "data": { + "version": "5.88.1", + "packageName": "knip", + "hash": "sha512-tpy5o7zu1MjawVkLPuahymVJekYY3kYjvzcoInhIchgePxTlo+api90tBv2KfhAIe5uXh+mez1tAfmbv8/TiZg==" + } + }, + "npm:known-css-properties": { + "type": "npm", + "name": "npm:known-css-properties", + "data": { + "version": "0.30.0", + "packageName": "known-css-properties", + "hash": "sha512-VSWXYUnsPu9+WYKkfmJyLKtIvaRJi1kXUqVmBACORXZQxT5oZDsoZ2vQP+bQFDnWtpI/4eq3MLoRMjI2fnLzTQ==" + } + }, + "npm:kysely-d1": { + "type": "npm", + "name": "npm:kysely-d1", + "data": { + "version": "0.4.0", + "packageName": "kysely-d1", + "hash": "sha512-wUcVvQNtm30OTfuo7Ad5vYJ1qHqPXOCZc+zWchVKNyuvqY3u8OuGw4gmUx1Ypdx2wRVFLHVQC9I7v0pTmF7Nkw==" + } + }, + "npm:kysely": { + "type": "npm", + "name": "npm:kysely", + "data": { + "version": "0.28.14", + "packageName": "kysely", + "hash": "sha512-SU3lgh0rPvq7upc6vvdVrCsSMUG1h3ChvHVOY7wJ2fw4C9QEB7X3d5eyYEyULUX7UQtxZJtZXGuT6U2US72UYA==" + } + }, + "npm:levn": { + "type": "npm", + "name": "npm:levn", + "data": { + "version": "0.4.1", + "packageName": "levn", + "hash": "sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==" + } + }, + "npm:light-my-request": { + "type": "npm", + "name": "npm:light-my-request", + "data": { + "version": "6.6.0", + "packageName": "light-my-request", + "hash": "sha512-CHYbu8RtboSIoVsHZ6Ye4cj4Aw/yg2oAFimlF7mNvfDV192LR7nDiKtSIfCuLT7KokPSTn/9kfVLm5OGN0A28A==" + } + }, + "npm:lightningcss-android-arm64": { + "type": "npm", + "name": "npm:lightningcss-android-arm64", + "data": { + "version": "1.32.0", + "packageName": "lightningcss-android-arm64", + "hash": "sha512-YK7/ClTt4kAK0vo6w3X+Pnm0D2cf2vPHbhOXdoNti1Ga0al1P4TBZhwjATvjNwLEBCnKvjJc2jQgHXH0NEwlAg==" + } + }, + "npm:lightningcss-darwin-arm64": { + "type": "npm", + "name": "npm:lightningcss-darwin-arm64", + "data": { + "version": "1.32.0", + "packageName": "lightningcss-darwin-arm64", + "hash": "sha512-RzeG9Ju5bag2Bv1/lwlVJvBE3q6TtXskdZLLCyfg5pt+HLz9BqlICO7LZM7VHNTTn/5PRhHFBSjk5lc4cmscPQ==" + } + }, + "npm:lightningcss-darwin-x64": { + "type": "npm", + "name": "npm:lightningcss-darwin-x64", + "data": { + "version": "1.32.0", + "packageName": "lightningcss-darwin-x64", + "hash": "sha512-U+QsBp2m/s2wqpUYT/6wnlagdZbtZdndSmut/NJqlCcMLTWp5muCrID+K5UJ6jqD2BFshejCYXniPDbNh73V8w==" + } + }, + "npm:lightningcss-freebsd-x64": { + "type": "npm", + "name": "npm:lightningcss-freebsd-x64", + "data": { + "version": "1.32.0", + "packageName": "lightningcss-freebsd-x64", + "hash": "sha512-JCTigedEksZk3tHTTthnMdVfGf61Fky8Ji2E4YjUTEQX14xiy/lTzXnu1vwiZe3bYe0q+SpsSH/CTeDXK6WHig==" + } + }, + "npm:lightningcss-linux-arm-gnueabihf": { + "type": "npm", + "name": "npm:lightningcss-linux-arm-gnueabihf", + "data": { + "version": "1.32.0", + "packageName": "lightningcss-linux-arm-gnueabihf", + "hash": "sha512-x6rnnpRa2GL0zQOkt6rts3YDPzduLpWvwAF6EMhXFVZXD4tPrBkEFqzGowzCsIWsPjqSK+tyNEODUBXeeVHSkw==" + } + }, + "npm:lightningcss-linux-arm64-gnu": { + "type": "npm", + "name": "npm:lightningcss-linux-arm64-gnu", + "data": { + "version": "1.32.0", + "packageName": "lightningcss-linux-arm64-gnu", + "hash": "sha512-0nnMyoyOLRJXfbMOilaSRcLH3Jw5z9HDNGfT/gwCPgaDjnx0i8w7vBzFLFR1f6CMLKF8gVbebmkUN3fa/kQJpQ==" + } + }, + "npm:lightningcss-linux-arm64-musl": { + "type": "npm", + "name": "npm:lightningcss-linux-arm64-musl", + "data": { + "version": "1.32.0", + "packageName": "lightningcss-linux-arm64-musl", + "hash": "sha512-UpQkoenr4UJEzgVIYpI80lDFvRmPVg6oqboNHfoH4CQIfNA+HOrZ7Mo7KZP02dC6LjghPQJeBsvXhJod/wnIBg==" + } + }, + "npm:lightningcss-linux-x64-gnu": { + "type": "npm", + "name": "npm:lightningcss-linux-x64-gnu", + "data": { + "version": "1.32.0", + "packageName": "lightningcss-linux-x64-gnu", + "hash": "sha512-V7Qr52IhZmdKPVr+Vtw8o+WLsQJYCTd8loIfpDaMRWGUZfBOYEJeyJIkqGIDMZPwPx24pUMfwSxxI8phr/MbOA==" + } + }, + "npm:lightningcss-linux-x64-musl": { + "type": "npm", + "name": "npm:lightningcss-linux-x64-musl", + "data": { + "version": "1.32.0", + "packageName": "lightningcss-linux-x64-musl", + "hash": "sha512-bYcLp+Vb0awsiXg/80uCRezCYHNg1/l3mt0gzHnWV9XP1W5sKa5/TCdGWaR/zBM2PeF/HbsQv/j2URNOiVuxWg==" + } + }, + "npm:lightningcss-win32-arm64-msvc": { + "type": "npm", + "name": "npm:lightningcss-win32-arm64-msvc", + "data": { + "version": "1.32.0", + "packageName": "lightningcss-win32-arm64-msvc", + "hash": "sha512-8SbC8BR40pS6baCM8sbtYDSwEVQd4JlFTOlaD3gWGHfThTcABnNDBda6eTZeqbofalIJhFx0qKzgHJmcPTnGdw==" + } + }, + "npm:lightningcss-win32-x64-msvc": { + "type": "npm", + "name": "npm:lightningcss-win32-x64-msvc", + "data": { + "version": "1.32.0", + "packageName": "lightningcss-win32-x64-msvc", + "hash": "sha512-Amq9B/SoZYdDi1kFrojnoqPLxYhQ4Wo5XiL8EVJrVsB8ARoC1PWW6VGtT0WKCemjy8aC+louJnjS7U18x3b06Q==" + } + }, + "npm:lightningcss": { + "type": "npm", + "name": "npm:lightningcss", + "data": { + "version": "1.32.0", + "packageName": "lightningcss", + "hash": "sha512-NXYBzinNrblfraPGyrbPoD19C1h9lfI/1mzgWYvXUTe414Gz/X1FD2XBZSZM7rRTrMA8JL3OtAaGifrIKhQ5yQ==" + } + }, + "npm:lilconfig": { + "type": "npm", + "name": "npm:lilconfig", + "data": { + "version": "2.1.0", + "packageName": "lilconfig", + "hash": "sha512-utWOt/GHzuUxnLKxB6dk81RoOeoNeHgbrXiuGk4yyF5qlRz+iIVWu56E2fqGHFrXz0QNUhLB/8nKqvRH66JKGQ==" + } + }, + "npm:lines-and-columns@1.2.4": { + "type": "npm", + "name": "npm:lines-and-columns@1.2.4", + "data": { + "version": "1.2.4", + "packageName": "lines-and-columns", + "hash": "sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==" + } + }, + "npm:lines-and-columns": { + "type": "npm", + "name": "npm:lines-and-columns", + "data": { + "version": "2.0.3", + "packageName": "lines-and-columns", + "hash": "sha512-cNOjgCnLB+FnvWWtyRTzmB3POJ+cXxTA81LoW7u8JdmhfXzriropYwpjShnz1QLLWsQwY7nIxoDmcPTwphDK9w==" + } + }, + "npm:locate-path@3.0.0": { + "type": "npm", + "name": "npm:locate-path@3.0.0", + "data": { + "version": "3.0.0", + "packageName": "locate-path", + "hash": "sha512-7AO748wWnIhNqAuaty2ZWHkQHRSNfPVIsPIfwEOWO22AmaoVrWavlOcMR5nzTLNYvp36X220/maaRsrec1G65A==" + } + }, + "npm:locate-path": { + "type": "npm", + "name": "npm:locate-path", + "data": { + "version": "6.0.0", + "packageName": "locate-path", + "hash": "sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==" + } + }, + "npm:lodash.memoize": { + "type": "npm", + "name": "npm:lodash.memoize", + "data": { + "version": "4.1.2", + "packageName": "lodash.memoize", + "hash": "sha512-t7j+NzmgnQzTAYXcsHYLgimltOV1MXHtlOWf6GjL9Kj8GK5FInw5JotxvbOs+IvV1/Dzo04/fCGfLVs7aXb4Ag==" + } + }, + "npm:lodash.merge": { + "type": "npm", + "name": "npm:lodash.merge", + "data": { + "version": "4.6.2", + "packageName": "lodash.merge", + "hash": "sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==" + } + }, + "npm:lodash.uniq": { + "type": "npm", + "name": "npm:lodash.uniq", + "data": { + "version": "4.5.0", + "packageName": "lodash.uniq", + "hash": "sha512-xfBaXQd9ryd9dlSDvnvI0lvxfLJlYAZzXomUYzLKtUeOQvOP5piqAWuGtrhWeqaXK9hhoM/iyJc5AV+XfsX3HQ==" + } + }, + "npm:lodash@4.17.21": { + "type": "npm", + "name": "npm:lodash@4.17.21", + "data": { + "version": "4.17.21", + "packageName": "lodash", + "hash": "sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==" + } + }, + "npm:lodash": { + "type": "npm", + "name": "npm:lodash", + "data": { + "version": "4.17.23", + "packageName": "lodash", + "hash": "sha512-LgVTMpQtIopCi79SJeDiP0TfWi5CNEc/L/aRdTh3yIvmZXTnheWpKjSZhnvMl8iXbC1tFg9gdHHDMLoV7CnG+w==" + } + }, + "npm:log-symbols": { + "type": "npm", + "name": "npm:log-symbols", + "data": { + "version": "4.1.0", + "packageName": "log-symbols", + "hash": "sha512-8XPvpAA8uyhfteu8pIvQxpJZ7SYYdpUivZpGy6sFsBuKRY/7rQGavedeB8aK+Zkyq6upMFVL/9AW6vOYzfRyLg==" + } + }, + "npm:long": { + "type": "npm", + "name": "npm:long", + "data": { + "version": "5.3.2", + "packageName": "long", + "hash": "sha512-mNAgZ1GmyNhD7AuqnTG3/VQ26o760+ZYBPKjPvugO8+nLbYfX6TVpJPseBvopbdY+qpZ/lKUnmEc1LeZYS3QAA==" + } + }, + "npm:longest-streak": { + "type": "npm", + "name": "npm:longest-streak", + "data": { + "version": "3.1.0", + "packageName": "longest-streak", + "hash": "sha512-9Ri+o0JYgehTaVBBDoMqIl8GXtbWg711O3srftcHhZ0dqnETqLaoIK0x17fUw9rFSlK/0NlsKe0Ahhyl5pXE2g==" + } + }, + "npm:loose-envify": { + "type": "npm", + "name": "npm:loose-envify", + "data": { + "version": "1.4.0", + "packageName": "loose-envify", + "hash": "sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==" + } + }, + "npm:lowercase-keys": { + "type": "npm", + "name": "npm:lowercase-keys", + "data": { + "version": "2.0.0", + "packageName": "lowercase-keys", + "hash": "sha512-tqNXrS78oMOE73NMxK4EMLQsQowWf8jKooH9g7xPavRT706R6bkQJ6DY2Te7QukaZsulxa30wQ7bk0pm4XiHmA==" + } + }, + "npm:lru-cache@10.4.3": { + "type": "npm", + "name": "npm:lru-cache@10.4.3", + "data": { + "version": "10.4.3", + "packageName": "lru-cache", + "hash": "sha512-JNAzZcXrCt42VGLuYz0zfAzDfAvJWW6AfYlDBQyDV5DClI2m5sAmK+OIO7s59XfsRsWHp02jAJrRadPRGTt6SQ==" + } + }, + "npm:lru-cache@11.2.2": { + "type": "npm", + "name": "npm:lru-cache@11.2.2", + "data": { + "version": "11.2.2", + "packageName": "lru-cache", + "hash": "sha512-F9ODfyqML2coTIsQpSkRHnLSZMtkU8Q+mSfcaIyKwy58u+8k5nvAYeiNhsyMARvzNcXJ9QfWVrcPsC9e9rAxtg==" + } + }, + "npm:lru-cache": { + "type": "npm", + "name": "npm:lru-cache", + "data": { + "version": "5.1.1", + "packageName": "lru-cache", + "hash": "sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==" + } + }, + "npm:lru-cache@7.18.3": { + "type": "npm", + "name": "npm:lru-cache@7.18.3", + "data": { + "version": "7.18.3", + "packageName": "lru-cache", + "hash": "sha512-jumlc0BIUrS3qJGgIkWZsyfAM7NCWiBcCDhnd+3NNM5KbBmLTgHVfWBcg6W+rLUsIpzpERPsvwUP7CckAQSOoA==" + } + }, + "npm:lru.min": { + "type": "npm", + "name": "npm:lru.min", + "data": { + "version": "1.1.3", + "packageName": "lru.min", + "hash": "sha512-Lkk/vx6ak3rYkRR0Nhu4lFUT2VDnQSxBe8Hbl7f36358p6ow8Bnvr8lrLt98H8J1aGxfhbX4Fs5tYg2+FTwr5Q==" + } + }, + "npm:lucide-react": { + "type": "npm", + "name": "npm:lucide-react", + "data": { + "version": "0.577.0", + "packageName": "lucide-react", + "hash": "sha512-4LjoFv2eEPwYDPg/CUdBJQSDfPyzXCRrVW1X7jrx/trgxnxkHFjnVZINbzvzxjN70dxychOfg+FTYwBiS3pQ5A==" + } + }, + "npm:magic-regexp": { + "type": "npm", + "name": "npm:magic-regexp", + "data": { + "version": "0.10.0", + "packageName": "magic-regexp", + "hash": "sha512-Uly1Bu4lO1hwHUW0CQeSWuRtzCMNO00CmXtS8N6fyvB3B979GOEEeAkiTUDsmbYLAbvpUS/Kt5c4ibosAzVyVg==" + } + }, + "npm:magic-string": { + "type": "npm", + "name": "npm:magic-string", + "data": { + "version": "0.30.21", + "packageName": "magic-string", + "hash": "sha512-vd2F4YUyEXKGcLHoq+TEyCjxueSeHnFxyyjNp80yg0XV4vUhnDer/lvvlqM/arB5bXQN5K2/3oinyCRyx8T2CQ==" + } + }, + "npm:magicast": { + "type": "npm", + "name": "npm:magicast", + "data": { + "version": "0.5.2", + "packageName": "magicast", + "hash": "sha512-E3ZJh4J3S9KfwdjZhe2afj6R9lGIN5Pher1pF39UGrXRqq/VDaGVIGN13BjHd2u8B61hArAGOnso7nBOouW3TQ==" + } + }, + "npm:make-fetch-happen": { + "type": "npm", + "name": "npm:make-fetch-happen", + "data": { + "version": "14.0.3", + "packageName": "make-fetch-happen", + "hash": "sha512-QMjGbFTP0blj97EeidG5hk/QhKQ3T4ICckQGLgz38QF7Vgbk6e6FTARN8KhKxyBbWn8R0HU+bnw8aSoFPD4qtQ==" + } + }, + "npm:map-values-deep": { + "type": "npm", + "name": "npm:map-values-deep", + "data": { + "version": "1.0.2", + "packageName": "map-values-deep", + "hash": "sha512-br+tp4aANql3WnpDRjD14H7hHopPlJRnzCL0ZlGCRHAQZTU0g0x1rUQFq/ikb3zZQK+lW2AG7RJi+CFfQ8kSPA==" + } + }, + "npm:math-intrinsics": { + "type": "npm", + "name": "npm:math-intrinsics", + "data": { + "version": "1.1.0", + "packageName": "math-intrinsics", + "hash": "sha512-/IXtbwEk5HTPyEwyKX6hGkYXxM9nbj64B+ilVJnC/R6B0pH5G4V3b0pVbL7DBj4tkhBAppbQUlf6F6Xl9LHu1g==" + } + }, + "npm:mdast-builder": { + "type": "npm", + "name": "npm:mdast-builder", + "data": { + "version": "1.1.1", + "packageName": "mdast-builder", + "hash": "sha512-a3KBk/LmYD6wKsWi8WJrGU/rXR4yuF4Men0JO0z6dSZCm5FrXXWTRDjqK0vGSqa+1M6p9edeuypZAZAzSehTUw==" + } + }, + "npm:mdast-util-from-markdown": { + "type": "npm", + "name": "npm:mdast-util-from-markdown", + "data": { + "version": "2.0.3", + "packageName": "mdast-util-from-markdown", + "hash": "sha512-W4mAWTvSlKvf8L6J+VN9yLSqQ9AOAAvHuoDAmPkz4dHf553m5gVj2ejadHJhoJmcmxEnOv6Pa8XJhpxE93kb8Q==" + } + }, + "npm:mdast-util-phrasing": { + "type": "npm", + "name": "npm:mdast-util-phrasing", + "data": { + "version": "4.1.0", + "packageName": "mdast-util-phrasing", + "hash": "sha512-TqICwyvJJpBwvGAMZjj4J2n0X8QWp21b9l0o7eXyVJ25YNWYbJDVIyD1bZXE6WtV6RmKJVYmQAKWa0zWOABz2w==" + } + }, + "npm:mdast-util-to-markdown": { + "type": "npm", + "name": "npm:mdast-util-to-markdown", + "data": { + "version": "2.1.2", + "packageName": "mdast-util-to-markdown", + "hash": "sha512-xj68wMTvGXVOKonmog6LwyJKrYXZPvlwabaryTjLh9LuvovB/KAH+kvi8Gjj+7rJjsFi23nkUxRQv1KqSroMqA==" + } + }, + "npm:mdast-util-to-string": { + "type": "npm", + "name": "npm:mdast-util-to-string", + "data": { + "version": "4.0.0", + "packageName": "mdast-util-to-string", + "hash": "sha512-0H44vDimn51F0YwvxSJSm0eCDOJTRlmN0R1yBh4HLj9wiV1Dn0QoXGbvFAWj2hSItVTlCmBF1hqKlIyUBVFLPg==" + } + }, + "npm:mdast-util-toc": { + "type": "npm", + "name": "npm:mdast-util-toc", + "data": { + "version": "7.1.0", + "packageName": "mdast-util-toc", + "hash": "sha512-2TVKotOQzqdY7THOdn2gGzS9d1Sdd66bvxUyw3aNpWfcPXCLYSJCCgfPy30sEtuzkDraJgqF35dzgmz6xlvH/w==" + } + }, + "npm:mdn-data": { + "type": "npm", + "name": "npm:mdn-data", + "data": { + "version": "2.0.14", + "packageName": "mdn-data", + "hash": "sha512-dn6wd0uw5GsdswPFfsgMp5NSB0/aDe6fK94YJV/AJDYXL6HVLWBsxeq7js7Ad+mU2K9LAlwpk6kN2D5mwCPVow==" + } + }, + "npm:media-typer": { + "type": "npm", + "name": "npm:media-typer", + "data": { + "version": "1.1.0", + "packageName": "media-typer", + "hash": "sha512-aisnrDP4GNe06UcKFnV5bfMNPBUw4jsLGaWwWfnH3v02GnBuXX2MCVn5RbrWo0j3pczUilYblq7fQ7Nw2t5XKw==" + } + }, + "npm:memoize-one": { + "type": "npm", + "name": "npm:memoize-one", + "data": { + "version": "6.0.0", + "packageName": "memoize-one", + "hash": "sha512-rkpe71W0N0c0Xz6QD0eJETuWAJGnJ9afsl1srmwPrI+yBCkge5EycXXbYRyvL29zZVUWQCY7InPRCv3GDXuZNw==" + } + }, + "npm:memorystream": { + "type": "npm", + "name": "npm:memorystream", + "data": { + "version": "0.3.1", + "packageName": "memorystream", + "hash": "sha512-S3UwM3yj5mtUSEfP41UZmt/0SCoVYUcU1rkXv+BQ5Ig8ndL4sPoJNBUJERafdPb5jjHJGuMgytgKvKIf58XNBw==" + } + }, + "npm:merge-anything": { + "type": "npm", + "name": "npm:merge-anything", + "data": { + "version": "5.1.7", + "packageName": "merge-anything", + "hash": "sha512-eRtbOb1N5iyH0tkQDAoQ4Ipsp/5qSR79Dzrz8hEPxRX10RWWR/iQXdoKmBSRCThY1Fh5EhISDtpSc93fpxUniQ==" + } + }, + "npm:merge-descriptors": { + "type": "npm", + "name": "npm:merge-descriptors", + "data": { + "version": "2.0.0", + "packageName": "merge-descriptors", + "hash": "sha512-Snk314V5ayFLhp3fkUREub6WtjBfPdCPY1Ln8/8munuLuiYhsABgBVWsozAG+MWMbVEvcdcpbi9R7ww22l9Q3g==" + } + }, + "npm:merge2": { + "type": "npm", + "name": "npm:merge2", + "data": { + "version": "1.4.1", + "packageName": "merge2", + "hash": "sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==" + } + }, + "npm:micromark-core-commonmark": { + "type": "npm", + "name": "npm:micromark-core-commonmark", + "data": { + "version": "2.0.3", + "packageName": "micromark-core-commonmark", + "hash": "sha512-RDBrHEMSxVFLg6xvnXmb1Ayr2WzLAWjeSATAoxwKYJV94TeNavgoIdA0a9ytzDSVzBy2YKFK+emCPOEibLeCrg==" + } + }, + "npm:micromark-factory-destination": { + "type": "npm", + "name": "npm:micromark-factory-destination", + "data": { + "version": "2.0.1", + "packageName": "micromark-factory-destination", + "hash": "sha512-Xe6rDdJlkmbFRExpTOmRj9N3MaWmbAgdpSrBQvCFqhezUn4AHqJHbaEnfbVYYiexVSs//tqOdY/DxhjdCiJnIA==" + } + }, + "npm:micromark-factory-label": { + "type": "npm", + "name": "npm:micromark-factory-label", + "data": { + "version": "2.0.1", + "packageName": "micromark-factory-label", + "hash": "sha512-VFMekyQExqIW7xIChcXn4ok29YE3rnuyveW3wZQWWqF4Nv9Wk5rgJ99KzPvHjkmPXF93FXIbBp6YdW3t71/7Vg==" + } + }, + "npm:micromark-factory-space": { + "type": "npm", + "name": "npm:micromark-factory-space", + "data": { + "version": "2.0.1", + "packageName": "micromark-factory-space", + "hash": "sha512-zRkxjtBxxLd2Sc0d+fbnEunsTj46SWXgXciZmHq0kDYGnck/ZSGj9/wULTV95uoeYiK5hRXP2mJ98Uo4cq/LQg==" + } + }, + "npm:micromark-factory-title": { + "type": "npm", + "name": "npm:micromark-factory-title", + "data": { + "version": "2.0.1", + "packageName": "micromark-factory-title", + "hash": "sha512-5bZ+3CjhAd9eChYTHsjy6TGxpOFSKgKKJPJxr293jTbfry2KDoWkhBb6TcPVB4NmzaPhMs1Frm9AZH7OD4Cjzw==" + } + }, + "npm:micromark-factory-whitespace": { + "type": "npm", + "name": "npm:micromark-factory-whitespace", + "data": { + "version": "2.0.1", + "packageName": "micromark-factory-whitespace", + "hash": "sha512-Ob0nuZ3PKt/n0hORHyvoD9uZhr+Za8sFoP+OnMcnWK5lngSzALgQYKMr9RJVOWLqQYuyn6ulqGWSXdwf6F80lQ==" + } + }, + "npm:micromark-util-character": { + "type": "npm", + "name": "npm:micromark-util-character", + "data": { + "version": "2.1.1", + "packageName": "micromark-util-character", + "hash": "sha512-wv8tdUTJ3thSFFFJKtpYKOYiGP2+v96Hvk4Tu8KpCAsTMs6yi+nVmGh1syvSCsaxz45J6Jbw+9DD6g97+NV67Q==" + } + }, + "npm:micromark-util-chunked": { + "type": "npm", + "name": "npm:micromark-util-chunked", + "data": { + "version": "2.0.1", + "packageName": "micromark-util-chunked", + "hash": "sha512-QUNFEOPELfmvv+4xiNg2sRYeS/P84pTW0TCgP5zc9FpXetHY0ab7SxKyAQCNCc1eK0459uoLI1y5oO5Vc1dbhA==" + } + }, + "npm:micromark-util-classify-character": { + "type": "npm", + "name": "npm:micromark-util-classify-character", + "data": { + "version": "2.0.1", + "packageName": "micromark-util-classify-character", + "hash": "sha512-K0kHzM6afW/MbeWYWLjoHQv1sgg2Q9EccHEDzSkxiP/EaagNzCm7T/WMKZ3rjMbvIpvBiZgwR3dKMygtA4mG1Q==" + } + }, + "npm:micromark-util-combine-extensions": { + "type": "npm", + "name": "npm:micromark-util-combine-extensions", + "data": { + "version": "2.0.1", + "packageName": "micromark-util-combine-extensions", + "hash": "sha512-OnAnH8Ujmy59JcyZw8JSbK9cGpdVY44NKgSM7E9Eh7DiLS2E9RNQf0dONaGDzEG9yjEl5hcqeIsj4hfRkLH/Bg==" + } + }, + "npm:micromark-util-decode-numeric-character-reference": { + "type": "npm", + "name": "npm:micromark-util-decode-numeric-character-reference", + "data": { + "version": "2.0.2", + "packageName": "micromark-util-decode-numeric-character-reference", + "hash": "sha512-ccUbYk6CwVdkmCQMyr64dXz42EfHGkPQlBj5p7YVGzq8I7CtjXZJrubAYezf7Rp+bjPseiROqe7G6foFd+lEuw==" + } + }, + "npm:micromark-util-decode-string": { + "type": "npm", + "name": "npm:micromark-util-decode-string", + "data": { + "version": "2.0.1", + "packageName": "micromark-util-decode-string", + "hash": "sha512-nDV/77Fj6eH1ynwscYTOsbK7rR//Uj0bZXBwJZRfaLEJ1iGBR6kIfNmlNqaqJf649EP0F3NWNdeJi03elllNUQ==" + } + }, + "npm:micromark-util-encode": { + "type": "npm", + "name": "npm:micromark-util-encode", + "data": { + "version": "2.0.1", + "packageName": "micromark-util-encode", + "hash": "sha512-c3cVx2y4KqUnwopcO9b/SCdo2O67LwJJ/UyqGfbigahfegL9myoEFoDYZgkT7f36T0bLrM9hZTAaAyH+PCAXjw==" + } + }, + "npm:micromark-util-html-tag-name": { + "type": "npm", + "name": "npm:micromark-util-html-tag-name", + "data": { + "version": "2.0.1", + "packageName": "micromark-util-html-tag-name", + "hash": "sha512-2cNEiYDhCWKI+Gs9T0Tiysk136SnR13hhO8yW6BGNyhOC4qYFnwF1nKfD3HFAIXA5c45RrIG1ub11GiXeYd1xA==" + } + }, + "npm:micromark-util-normalize-identifier": { + "type": "npm", + "name": "npm:micromark-util-normalize-identifier", + "data": { + "version": "2.0.1", + "packageName": "micromark-util-normalize-identifier", + "hash": "sha512-sxPqmo70LyARJs0w2UclACPUUEqltCkJ6PhKdMIDuJ3gSf/Q+/GIe3WKl0Ijb/GyH9lOpUkRAO2wp0GVkLvS9Q==" + } + }, + "npm:micromark-util-resolve-all": { + "type": "npm", + "name": "npm:micromark-util-resolve-all", + "data": { + "version": "2.0.1", + "packageName": "micromark-util-resolve-all", + "hash": "sha512-VdQyxFWFT2/FGJgwQnJYbe1jjQoNTS4RjglmSjTUlpUMa95Htx9NHeYW4rGDJzbjvCsl9eLjMQwGeElsqmzcHg==" + } + }, + "npm:micromark-util-sanitize-uri": { + "type": "npm", + "name": "npm:micromark-util-sanitize-uri", + "data": { + "version": "2.0.1", + "packageName": "micromark-util-sanitize-uri", + "hash": "sha512-9N9IomZ/YuGGZZmQec1MbgxtlgougxTodVwDzzEouPKo3qFWvymFHWcnDi2vzV1ff6kas9ucW+o3yzJK9YB1AQ==" + } + }, + "npm:micromark-util-subtokenize": { + "type": "npm", + "name": "npm:micromark-util-subtokenize", + "data": { + "version": "2.1.0", + "packageName": "micromark-util-subtokenize", + "hash": "sha512-XQLu552iSctvnEcgXw6+Sx75GflAPNED1qx7eBJ+wydBb2KCbRZe+NwvIEEMM83uml1+2WSXpBAcp9IUCgCYWA==" + } + }, + "npm:micromark-util-symbol": { + "type": "npm", + "name": "npm:micromark-util-symbol", + "data": { + "version": "2.0.1", + "packageName": "micromark-util-symbol", + "hash": "sha512-vs5t8Apaud9N28kgCrRUdEed4UJ+wWNvicHLPxCa9ENlYuAY31M0ETy5y1vA33YoNPDFTghEbnh6efaE8h4x0Q==" + } + }, + "npm:micromark-util-types": { + "type": "npm", + "name": "npm:micromark-util-types", + "data": { + "version": "2.0.2", + "packageName": "micromark-util-types", + "hash": "sha512-Yw0ECSpJoViF1qTU4DC6NwtC4aWGt1EkzaQB8KPPyCRR8z9TWeV0HbEFGTO+ZY1wB22zmxnJqhPyTpOVCpeHTA==" + } + }, + "npm:micromark": { + "type": "npm", + "name": "npm:micromark", + "data": { + "version": "4.0.2", + "packageName": "micromark", + "hash": "sha512-zpe98Q6kvavpCr1NPVSCMebCKfD7CA2NqZ+rykeNhONIJBpc1tFKt9hucLGwha3jNTNI8lHpctWJWoimVF4PfA==" + } + }, + "npm:micromatch": { + "type": "npm", + "name": "npm:micromatch", + "data": { + "version": "4.0.8", + "packageName": "micromatch", + "hash": "sha512-PXwfBhYu0hBCPw8Dn0E+WDYb7af3dSLVWKi3HGv84IdF4TyFoC0ysxFd0Goxw7nSv4T/PzEJQxsYsEiFCKo2BA==" + } + }, + "npm:mime-db@1.52.0": { + "type": "npm", + "name": "npm:mime-db@1.52.0", + "data": { + "version": "1.52.0", + "packageName": "mime-db", + "hash": "sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==" + } + }, + "npm:mime-db": { + "type": "npm", + "name": "npm:mime-db", + "data": { + "version": "1.54.0", + "packageName": "mime-db", + "hash": "sha512-aU5EJuIN2WDemCcAp2vFBfp/m4EAhWJnUNSSw0ixs7/kXbd6Pg64EmwJkNdFhB8aWt1sH2CTXrLxo/iAGV3oPQ==" + } + }, + "npm:mime-types@2.1.35": { + "type": "npm", + "name": "npm:mime-types@2.1.35", + "data": { + "version": "2.1.35", + "packageName": "mime-types", + "hash": "sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==" + } + }, + "npm:mime-types": { + "type": "npm", + "name": "npm:mime-types", + "data": { + "version": "3.0.2", + "packageName": "mime-types", + "hash": "sha512-Lbgzdk0h4juoQ9fCKXW4by0UJqj+nOOrI9MJ1sSj4nI8aI2eo1qmvQEie4VD1glsS250n15LsWsYtCugiStS5A==" + } + }, + "npm:mime": { + "type": "npm", + "name": "npm:mime", + "data": { + "version": "1.6.0", + "packageName": "mime", + "hash": "sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg==" + } + }, + "npm:mime@3.0.0": { + "type": "npm", + "name": "npm:mime@3.0.0", + "data": { + "version": "3.0.0", + "packageName": "mime", + "hash": "sha512-jSCU7/VB1loIWBZe14aEYHU/+1UMEHoaO7qxCOVJOw9GgH72VAWppxNcjU+x9a2k3GSIBXNKxXQFqRvvZ7vr3A==" + } + }, + "npm:mimic-fn": { + "type": "npm", + "name": "npm:mimic-fn", + "data": { + "version": "2.1.0", + "packageName": "mimic-fn", + "hash": "sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==" + } + }, + "npm:mimic-response@1.0.1": { + "type": "npm", + "name": "npm:mimic-response@1.0.1", + "data": { + "version": "1.0.1", + "packageName": "mimic-response", + "hash": "sha512-j5EctnkH7amfV/q5Hgmoal1g2QHFJRraOtmx0JpIqkxhBhI/lJSl1nMpQ45hVarwNETOoWEimndZ4QK0RHxuxQ==" + } + }, + "npm:mimic-response": { + "type": "npm", + "name": "npm:mimic-response", + "data": { + "version": "3.1.0", + "packageName": "mimic-response", + "hash": "sha512-z0yWI+4FDrrweS8Zmt4Ej5HdJmky15+L2e6Wgn3+iK5fWzb6T3fhNFq2+MeTRb064c6Wr4N/wv0DzQTjNzHNGQ==" + } + }, + "npm:miniflare@4.20251217.0": { + "type": "npm", + "name": "npm:miniflare@4.20251217.0", + "data": { + "version": "4.20251217.0", + "packageName": "miniflare", + "hash": "sha512-8xsTQbPS6YV+ABZl9qiJIbsum6hbpbhqiyKpOVdzZrhK+1N8EFpT8R6aBZff7kezGmxYZSntjgjqTwJmj3JLgA==" + } + }, + "npm:miniflare": { + "type": "npm", + "name": "npm:miniflare", + "data": { + "version": "4.20260317.1", + "packageName": "miniflare", + "hash": "sha512-A3csI1HXEIfqe3oscgpoRMHdYlkReQKPH/g5JE53vFSjoM6YIAOGAzyDNeYffwd9oQkPWDj9xER8+vpxei8klA==" + } + }, + "npm:minimatch@10.2.3": { + "type": "npm", + "name": "npm:minimatch@10.2.3", + "data": { + "version": "10.2.3", + "packageName": "minimatch", + "hash": "sha512-Rwi3pnapEqirPSbWbrZaa6N3nmqq4Xer/2XooiOKyV3q12ML06f7MOuc5DVH8ONZIFhwIYQ3yzPH4nt7iWHaTg==" + } + }, + "npm:minimatch@10.2.4": { + "type": "npm", + "name": "npm:minimatch@10.2.4", + "data": { + "version": "10.2.4", + "packageName": "minimatch", + "hash": "sha512-oRjTw/97aTBN0RHbYCdtF1MQfvusSIBQM0IZEgzl6426+8jSC0nF1a/GmnVLpfB9yyr6g6FTqWqiZVbxrtaCIg==" + } + }, + "npm:minimatch": { + "type": "npm", + "name": "npm:minimatch", + "data": { + "version": "3.1.5", + "packageName": "minimatch", + "hash": "sha512-VgjWUsnnT6n+NUk6eZq77zeFdpW2LWDzP6zFGrCbHXiYNul5Dzqk2HHQ5uFH2DNW5Xbp8+jVzaeNt94ssEEl4w==" + } + }, + "npm:minimatch@5.1.9": { + "type": "npm", + "name": "npm:minimatch@5.1.9", + "data": { + "version": "5.1.9", + "packageName": "minimatch", + "hash": "sha512-7o1wEA2RyMP7Iu7GNba9vc0RWWGACJOCZBJX2GJWip0ikV+wcOsgVuY9uE8CPiyQhkGFSlhuSkZPavN7u1c2Fw==" + } + }, + "npm:minimatch@8.0.4": { + "type": "npm", + "name": "npm:minimatch@8.0.4", + "data": { + "version": "8.0.4", + "packageName": "minimatch", + "hash": "sha512-W0Wvr9HyFXZRGIDgCicunpQ299OKXs9RgZfaukz4qAW/pJhcpUfupc9c+OObPOFueNy8VSrZgEmDtk6Kh4WzDA==" + } + }, + "npm:minimatch@9.0.5": { + "type": "npm", + "name": "npm:minimatch@9.0.5", + "data": { + "version": "9.0.5", + "packageName": "minimatch", + "hash": "sha512-G6T0ZX48xgozx7587koeX9Ys2NYy6Gmv//P89sEte9V9whIapMNF4idKxnW2QtCcLiTWlb/wfCabAtAFWhhBow==" + } + }, + "npm:minimist": { + "type": "npm", + "name": "npm:minimist", + "data": { + "version": "1.2.8", + "packageName": "minimist", + "hash": "sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==" + } + }, + "npm:minipass-collect": { + "type": "npm", + "name": "npm:minipass-collect", + "data": { + "version": "2.0.1", + "packageName": "minipass-collect", + "hash": "sha512-D7V8PO9oaz7PWGLbCACuI1qEOsq7UKfLotx/C0Aet43fCUB/wfQ7DYeq2oR/svFJGYDHPr38SHATeaj/ZoKHKw==" + } + }, + "npm:minipass-fetch": { + "type": "npm", + "name": "npm:minipass-fetch", + "data": { + "version": "4.0.1", + "packageName": "minipass-fetch", + "hash": "sha512-j7U11C5HXigVuutxebFadoYBbd7VSdZWggSe64NVdvWNBqGAiXPL2QVCehjmw7lY1oF9gOllYbORh+hiNgfPgQ==" + } + }, + "npm:minipass-flush": { + "type": "npm", + "name": "npm:minipass-flush", + "data": { + "version": "1.0.5", + "packageName": "minipass-flush", + "hash": "sha512-JmQSYYpPUqX5Jyn1mXaRwOda1uQ8HP5KAT/oDSLCzt1BYRhQU0/hDtsB1ufZfEEzMZ9aAVmsBw8+FWsIXlClWw==" + } + }, + "npm:minipass-pipeline": { + "type": "npm", + "name": "npm:minipass-pipeline", + "data": { + "version": "1.2.4", + "packageName": "minipass-pipeline", + "hash": "sha512-xuIq7cIOt09RPRJ19gdi4b+RiNvDFYe5JH+ggNvBqGqpQXcru3PcRmOZuHBKWK1Txf9+cQ+HMVN4d6z46LZP7A==" + } + }, + "npm:minipass-sized": { + "type": "npm", + "name": "npm:minipass-sized", + "data": { + "version": "1.0.3", + "packageName": "minipass-sized", + "hash": "sha512-MbkQQ2CTiBMlA2Dm/5cY+9SWFEN8pzzOXi6rlM5Xxq0Yqbda5ZQy9sU75a673FE9ZK0Zsbr6Y5iP6u9nktfg2g==" + } + }, + "npm:minipass@3.3.6": { + "type": "npm", + "name": "npm:minipass@3.3.6", + "data": { + "version": "3.3.6", + "packageName": "minipass", + "hash": "sha512-DxiNidxSEK+tHG6zOIklvNOwm3hvCrbUrdtzY74U6HKTJxvIDfOUL5W5P2Ghd3DTkhhKPYGqeNUIh5qcM4YBfw==" + } + }, + "npm:minipass@4.2.8": { + "type": "npm", + "name": "npm:minipass@4.2.8", + "data": { + "version": "4.2.8", + "packageName": "minipass", + "hash": "sha512-fNzuVyifolSLFL4NzpF+wEF4qrgqaaKX0haXPQEdQ7NKAN+WecoKMHV09YcuL/DHxrUsYQOK3MiuDf7Ip2OXfQ==" + } + }, + "npm:minipass": { + "type": "npm", + "name": "npm:minipass", + "data": { + "version": "7.1.3", + "packageName": "minipass", + "hash": "sha512-tEBHqDnIoM/1rXME1zgka9g6Q2lcoCkxHLuc7ODJ5BxbP5d4c2Z5cGgtXAku59200Cx7diuHTOYfSBD8n6mm8A==" + } + }, + "npm:minizlib": { + "type": "npm", + "name": "npm:minizlib", + "data": { + "version": "3.1.0", + "packageName": "minizlib", + "hash": "sha512-KZxYo1BUkWD2TVFLr0MQoM8vUUigWD3LlD83a/75BqC+4qE0Hb1Vo5v1FgcfaNXvfXzr+5EhQ6ing/CaBijTlw==" + } + }, + "npm:mitt": { + "type": "npm", + "name": "npm:mitt", + "data": { + "version": "3.0.1", + "packageName": "mitt", + "hash": "sha512-vKivATfr97l2/QBCYAkXYDbrIWPM2IIKEl7YPhjCvKlG3kE2gm+uBo6nEXK3M5/Ffh/FLpKExzOQ3JJoJGFKBw==" + } + }, + "npm:mkdirp-classic": { + "type": "npm", + "name": "npm:mkdirp-classic", + "data": { + "version": "0.5.3", + "packageName": "mkdirp-classic", + "hash": "sha512-gKLcREMhtuZRwRAfqP3RFW+TK4JqApVBtOIftVgjuABpAtpxhPGaDcfvbhNvD0B8iD1oUr/txX35NjcaY6Ns/A==" + } + }, + "npm:mlly": { + "type": "npm", + "name": "npm:mlly", + "data": { + "version": "1.8.0", + "packageName": "mlly", + "hash": "sha512-l8D9ODSRWLe2KHJSifWGwBqpTZXIXTeo8mlKjY+E2HAakaTeNpqAyBZ8GSqLzHgw4XmHmC8whvpjJNMbFZN7/g==" + } + }, + "npm:moo": { + "type": "npm", + "name": "npm:moo", + "data": { + "version": "0.5.2", + "packageName": "moo", + "hash": "sha512-iSAJLHYKnX41mKcJKjqvnAN9sf0LMDTXDEvFv+ffuRR9a1MIuXLjMNL6EsnDHSkKLTWNqQQ5uo61P4EbU4NU+Q==" + } + }, + "npm:mri": { + "type": "npm", + "name": "npm:mri", + "data": { + "version": "1.2.0", + "packageName": "mri", + "hash": "sha512-tzzskb3bG8LvYGFF/mDTpq3jpI6Q9wc3LEmBaghu+DdCssd1FakN7Bc0hVNmEyGq1bq3RgfkCb3cmQLpNPOroA==" + } + }, + "npm:mrmime": { + "type": "npm", + "name": "npm:mrmime", + "data": { + "version": "2.0.1", + "packageName": "mrmime", + "hash": "sha512-Y3wQdFg2Va6etvQ5I82yUhGdsKrcYox6p7FfL1LbK2J4V01F9TGlepTIhnK24t7koZibmg82KGglhA1XK5IsLQ==" + } + }, + "npm:ms": { + "type": "npm", + "name": "npm:ms", + "data": { + "version": "2.1.3", + "packageName": "ms", + "hash": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==" + } + }, + "npm:mute-stream": { + "type": "npm", + "name": "npm:mute-stream", + "data": { + "version": "3.0.0", + "packageName": "mute-stream", + "hash": "sha512-dkEJPVvun4FryqBmZ5KhDo0K9iDXAwn08tMLDinNdRBNPcYEDiWYysLcc6k3mjTMlbP9KyylvRpd4wFtwrT9rw==" + } + }, + "npm:mysql2": { + "type": "npm", + "name": "npm:mysql2", + "data": { + "version": "3.15.3", + "packageName": "mysql2", + "hash": "sha512-FBrGau0IXmuqg4haEZRBfHNWB5mUARw6hNwPDXXGg0XzVJ50mr/9hb267lvpVMnhZ1FON3qNd4Xfcez1rbFwSg==" + } + }, + "npm:named-placeholders": { + "type": "npm", + "name": "npm:named-placeholders", + "data": { + "version": "1.1.3", + "packageName": "named-placeholders", + "hash": "sha512-eLoBxg6wE/rZkJPhU/xRX1WTpkFEwDJEN96oxFrTsqBdbT5ec295Q+CoHrL9IT0DipqKhmGcaZmwOt8OON5x1w==" + } + }, + "npm:nan": { + "type": "npm", + "name": "npm:nan", + "data": { + "version": "2.23.0", + "packageName": "nan", + "hash": "sha512-1UxuyYGdoQHcGg87Lkqm3FzefucTa0NAiOcuRsDmysep3c1LVCRK2krrUDafMWtjSG04htvAmvg96+SDknOmgQ==" + } + }, + "npm:nanoid": { + "type": "npm", + "name": "npm:nanoid", + "data": { + "version": "3.3.11", + "packageName": "nanoid", + "hash": "sha512-N8SpfPUnUp1bK+PMYW8qSWdl9U+wwNWI4QKxOYDy9JAro3WMX7p2OeVRF9v+347pnakNevPmiHhNmZ2HbFA76w==" + } + }, + "npm:napi-build-utils": { + "type": "npm", + "name": "npm:napi-build-utils", + "data": { + "version": "2.0.0", + "packageName": "napi-build-utils", + "hash": "sha512-GEbrYkbfF7MoNaoh2iGG84Mnf/WZfB0GdGEsM8wz7Expx/LlWf5U8t9nvJKXSp3qr5IsEbK04cBGhol/KwOsWA==" + } + }, + "npm:natural-compare": { + "type": "npm", + "name": "npm:natural-compare", + "data": { + "version": "1.4.0", + "packageName": "natural-compare", + "hash": "sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==" + } + }, + "npm:negotiator": { + "type": "npm", + "name": "npm:negotiator", + "data": { + "version": "1.0.0", + "packageName": "negotiator", + "hash": "sha512-8Ofs/AUQh8MaEcrlq5xOX0CQ9ypTF5dl78mjlMNfOK08fzpgTHQRQPBxcPlEtIw0yRpws+Zo/3r+5WRby7u3Gg==" + } + }, + "npm:netmask": { + "type": "npm", + "name": "npm:netmask", + "data": { + "version": "2.0.2", + "packageName": "netmask", + "hash": "sha512-dBpDMdxv9Irdq66304OLfEmQ9tbNRFnFTuZiLo+bD+r332bBmMJ8GBLXklIXXgxd3+v9+KUnZaUR5PJMa75Gsg==" + } + }, + "npm:node-abi": { + "type": "npm", + "name": "npm:node-abi", + "data": { + "version": "3.78.0", + "packageName": "node-abi", + "hash": "sha512-E2wEyrgX/CqvicaQYU3Ze1PFGjc4QYPGsjUrlYkqAE0WjHEZwgOsGMPMzkMse4LjJbDmaEuDX3CM036j5K2DSQ==" + } + }, + "npm:node-domexception": { + "type": "npm", + "name": "npm:node-domexception", + "data": { + "version": "1.0.0", + "packageName": "node-domexception", + "hash": "sha512-/jKZoMpw0F8GRwl4/eLROPA3cfcXtLApP0QzLmUT/HuPCZWyB7IY9ZrMeKw2O/nFIqPQB3PVM9aYm0F312AXDQ==" + } + }, + "npm:node-fetch-native": { + "type": "npm", + "name": "npm:node-fetch-native", + "data": { + "version": "1.6.7", + "packageName": "node-fetch-native", + "hash": "sha512-g9yhqoedzIUm0nTnTqAQvueMPVOuIY16bqgAJJC8XOOubYFNwz6IER9qs0Gq2Xd0+CecCKFjtdDTMA4u4xG06Q==" + } + }, + "npm:node-fetch@2.7.0": { + "type": "npm", + "name": "npm:node-fetch@2.7.0", + "data": { + "version": "2.7.0", + "packageName": "node-fetch", + "hash": "sha512-c4FRfUm/dbcWZ7U+1Wq0AwCyFL+3nt2bEw05wfxSz+DWpWsitgmSgYmy2dQdWyKC1694ELPqMs/YzUSNozLt8A==" + } + }, + "npm:node-fetch": { + "type": "npm", + "name": "npm:node-fetch", + "data": { + "version": "3.3.2", + "packageName": "node-fetch", + "hash": "sha512-dRB78srN/l6gqWulah9SrxeYnxeddIG30+GOqK/9OlLVyLg3HPnr6SqOWTWOXKRwC2eGYCkZ59NNuSgvSrpgOA==" + } + }, + "npm:node-gyp-build": { + "type": "npm", + "name": "npm:node-gyp-build", + "data": { + "version": "4.8.4", + "packageName": "node-gyp-build", + "hash": "sha512-LA4ZjwlnUblHVgq0oBF3Jl/6h/Nvs5fzBLwdEF4nuxnFdsfajde4WfxtJr3CaiH+F6ewcIB/q4jQ4UzPyid+CQ==" + } + }, + "npm:node-gyp": { + "type": "npm", + "name": "npm:node-gyp", + "data": { + "version": "11.5.0", + "packageName": "node-gyp", + "hash": "sha512-ra7Kvlhxn5V9Slyus0ygMa2h+UqExPqUIkfk7Pc8QTLT956JLSy51uWFwHtIYy0vI8cB4BDhc/S03+880My/LQ==" + } + }, + "npm:node-mock-http": { + "type": "npm", + "name": "npm:node-mock-http", + "data": { + "version": "1.0.4", + "packageName": "node-mock-http", + "hash": "sha512-8DY+kFsDkNXy1sJglUfuODx1/opAGJGyrTuFqEoN90oRc2Vk0ZbD4K2qmKXBBEhZQzdKHIVfEJpDU8Ak2NJEvQ==" + } + }, + "npm:node-releases": { + "type": "npm", + "name": "npm:node-releases", + "data": { + "version": "2.0.27", + "packageName": "node-releases", + "hash": "sha512-nmh3lCkYZ3grZvqcCH+fjmQ7X+H0OeZgP40OierEaAptX4XofMh5kwNbWh7lBduUzCcV/8kZ+NDLCwm2iorIlA==" + } + }, + "npm:nopt": { + "type": "npm", + "name": "npm:nopt", + "data": { + "version": "8.1.0", + "packageName": "nopt", + "hash": "sha512-ieGu42u/Qsa4TFktmaKEwM6MQH0pOWnaB3htzh0JRtx84+Mebc0cbZYN5bC+6WTZ4+77xrL9Pn5m7CV6VIkV7A==" + } + }, + "npm:normalize-url": { + "type": "npm", + "name": "npm:normalize-url", + "data": { + "version": "6.1.0", + "packageName": "normalize-url", + "hash": "sha512-DlL+XwOy3NxAQ8xuC0okPgK46iuVNAK01YN7RueYBqqFeGsBjV9XmCAzAdgt+667bCl5kPh9EqKKDwnaPG1I7A==" + } + }, + "npm:npm-normalize-package-bin": { + "type": "npm", + "name": "npm:npm-normalize-package-bin", + "data": { + "version": "4.0.0", + "packageName": "npm-normalize-package-bin", + "hash": "sha512-TZKxPvItzai9kN9H/TkmCtx/ZN/hvr3vUycjlfmH0ootY9yFBzNOpiXAdIn1Iteqsvk4lQn6B5PTrt+n6h8k/w==" + } + }, + "npm:npm-run-all2": { + "type": "npm", + "name": "npm:npm-run-all2", + "data": { + "version": "8.0.4", + "packageName": "npm-run-all2", + "hash": "sha512-wdbB5My48XKp2ZfJUlhnLVihzeuA1hgBnqB2J9ahV77wLS+/YAJAlN8I+X3DIFIPZ3m5L7nplmlbhNiFDmXRDA==" + } + }, + "npm:npm-run-path@4.0.1": { + "type": "npm", + "name": "npm:npm-run-path@4.0.1", + "data": { + "version": "4.0.1", + "packageName": "npm-run-path", + "hash": "sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw==" + } + }, + "npm:npm-run-path": { + "type": "npm", + "name": "npm:npm-run-path", + "data": { + "version": "6.0.0", + "packageName": "npm-run-path", + "hash": "sha512-9qny7Z9DsQU8Ou39ERsPU4OZQlSTP47ShQzuKZ6PRXpYLtIFgl/DEBYEXKlvcEa+9tHVcK8CF81Y2V72qaZhWA==" + } + }, + "npm:nth-check": { + "type": "npm", + "name": "npm:nth-check", + "data": { + "version": "2.1.1", + "packageName": "nth-check", + "hash": "sha512-lqjrjmaOoAnWfMmBPL+XNnynZh2+swxiX3WUE0s4yEHI6m+AwrK2UZOimIRl3X/4QctVqS8AiZjFqyOGrMXb/w==" + } + }, + "npm:null-prototype-object": { + "type": "npm", + "name": "npm:null-prototype-object", + "data": { + "version": "1.2.5", + "packageName": "null-prototype-object", + "hash": "sha512-YAPMPwBVlXXmIx/eIHx/KwIL1Bsd8I+YHQdFpW0Ydvez6vu5Bx2CaP4GrEnH5c1huVWZD9MqEuFwAJoBMm5LJQ==" + } + }, + "npm:nx": { + "type": "npm", + "name": "npm:nx", + "data": { + "version": "22.6.1", + "packageName": "nx", + "hash": "sha512-b4eo52o5aCVt3oG6LPYvD2Cul3JFBMgr2p9OjMBIo6oU6QfSR693H2/UuUMepLtO6jcIniPKOcIrf6Ue8aXAww==" + } + }, + "npm:nypm": { + "type": "npm", + "name": "npm:nypm", + "data": { + "version": "0.6.2", + "packageName": "nypm", + "hash": "sha512-7eM+hpOtrKrBDCh7Ypu2lJ9Z7PNZBdi/8AT3AX8xoCj43BBVHD0hPSTEvMtkMpfs8FCqBGhxB+uToIQimA111g==" + } + }, + "npm:oauth4webapi": { + "type": "npm", + "name": "npm:oauth4webapi", + "data": { + "version": "3.8.2", + "packageName": "oauth4webapi", + "hash": "sha512-FzZZ+bht5X0FKe7Mwz3DAVAmlH1BV5blSak/lHMBKz0/EBMhX6B10GlQYI51+oRp8ObJaX0g6pXrAxZh5s8rjw==" + } + }, + "npm:object-assign": { + "type": "npm", + "name": "npm:object-assign", + "data": { + "version": "4.1.1", + "packageName": "object-assign", + "hash": "sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==" + } + }, + "npm:object-inspect": { + "type": "npm", + "name": "npm:object-inspect", + "data": { + "version": "1.13.4", + "packageName": "object-inspect", + "hash": "sha512-W67iLl4J2EXEGTbfeHCffrjDfitvLANg0UlX3wFUUSTx92KXRFegMHUVgSqE+wvhAbi4WqjGg9czysTV2Epbew==" + } + }, + "npm:object-keys": { + "type": "npm", + "name": "npm:object-keys", + "data": { + "version": "1.1.1", + "packageName": "object-keys", + "hash": "sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==" + } + }, + "npm:object.assign": { + "type": "npm", + "name": "npm:object.assign", + "data": { + "version": "4.1.7", + "packageName": "object.assign", + "hash": "sha512-nK28WOo+QIjBkDduTINE4JkF/UJJKyf2EJxvJKfblDpyg0Q+pkOHNTL0Qwy6NP6FhE/EnzV73BxxqcJaXY9anw==" + } + }, + "npm:object.entries": { + "type": "npm", + "name": "npm:object.entries", + "data": { + "version": "1.1.9", + "packageName": "object.entries", + "hash": "sha512-8u/hfXFRBD1O0hPUjioLhoWFHRmt6tKA4/vZPyckBr18l1KE9uHrFaFaUi8MDRTpi4uak2goyPTSNJLXX2k2Hw==" + } + }, + "npm:object.fromentries": { + "type": "npm", + "name": "npm:object.fromentries", + "data": { + "version": "2.0.8", + "packageName": "object.fromentries", + "hash": "sha512-k6E21FzySsSK5a21KRADBd/NGneRegFO5pLHfdQLpRDETUNJueLXs3WCzyQ3tFRDYgbq3KHGXfTbi2bs8WQ6rQ==" + } + }, + "npm:object.values": { + "type": "npm", + "name": "npm:object.values", + "data": { + "version": "1.2.1", + "packageName": "object.values", + "hash": "sha512-gXah6aZrcUxjWg2zR2MwouP2eHlCBzdV4pygudehaKXSGW4v2AsRQUK+lwwXhii6KFZcunEnmSUoYp5CXibxtA==" + } + }, + "npm:obug": { + "type": "npm", + "name": "npm:obug", + "data": { + "version": "2.1.1", + "packageName": "obug", + "hash": "sha512-uTqF9MuPraAQ+IsnPf366RG4cP9RtUi7MLO1N3KEc+wb0a6yKpeL0lmk2IB1jY5KHPAlTc6T/JRdC/YqxHNwkQ==" + } + }, + "npm:ohash": { + "type": "npm", + "name": "npm:ohash", + "data": { + "version": "2.0.11", + "packageName": "ohash", + "hash": "sha512-RdR9FQrFwNBNXAr4GixM8YaRZRJ5PUWbKYbE5eOsrwAjJW0q2REGcf79oYPsLyskQCZG1PLN+S/K1V00joZAoQ==" + } + }, + "npm:on-exit-leak-free": { + "type": "npm", + "name": "npm:on-exit-leak-free", + "data": { + "version": "2.1.2", + "packageName": "on-exit-leak-free", + "hash": "sha512-0eJJY6hXLGf1udHwfNftBqH+g73EU4B504nZeKpz1sYRKafAghwxEJunB2O7rDZkL4PGfsMVnTXZ2EjibbqcsA==" + } + }, + "npm:on-finished": { + "type": "npm", + "name": "npm:on-finished", + "data": { + "version": "2.4.1", + "packageName": "on-finished", + "hash": "sha512-oVlzkg3ENAhCk2zdv7IJwd/QUD4z2RxRwpkcGY8psCVcCYZNq4wYnVWALHM+brtuJjePWiYF/ClmuDr8Ch5+kg==" + } + }, + "npm:once": { + "type": "npm", + "name": "npm:once", + "data": { + "version": "1.4.0", + "packageName": "once", + "hash": "sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==" + } + }, + "npm:onetime": { + "type": "npm", + "name": "npm:onetime", + "data": { + "version": "5.1.2", + "packageName": "onetime", + "hash": "sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg==" + } + }, + "npm:open": { + "type": "npm", + "name": "npm:open", + "data": { + "version": "8.4.2", + "packageName": "open", + "hash": "sha512-7x81NCL719oNbsq/3mh+hVrAWmFuEYUqrq/Iw3kUzH8ReypT9QQ0BLoJS7/G9k6N81XjW4qHWtjWwe/9eLy1EQ==" + } + }, + "npm:opener": { + "type": "npm", + "name": "npm:opener", + "data": { + "version": "1.5.2", + "packageName": "opener", + "hash": "sha512-ur5UIdyw5Y7yEj9wLzhqXiy6GZ3Mwx0yGI+5sMn2r0N0v3cKJvUmFH5yPP+WXh9e0xfyzyJX95D8l088DNFj7A==" + } + }, + "npm:optionator": { + "type": "npm", + "name": "npm:optionator", + "data": { + "version": "0.9.4", + "packageName": "optionator", + "hash": "sha512-6IpQ7mKUxRcZNLIObR0hz7lxsapSSIYNZJwXPGeF0mTVqGKFIXj1DQcMoT22S3ROcLyY/rz0PWaWZ9ayWmad9g==" + } + }, + "npm:ora": { + "type": "npm", + "name": "npm:ora", + "data": { + "version": "5.3.0", + "packageName": "ora", + "hash": "sha512-zAKMgGXUim0Jyd6CXK9lraBnD3H5yPGBPPOkC23a2BG6hsm4Zu6OQSjQuEtV0BHDf4aKHcUFvJiGRrFuW3MG8g==" + } + }, + "npm:own-keys": { + "type": "npm", + "name": "npm:own-keys", + "data": { + "version": "1.0.1", + "packageName": "own-keys", + "hash": "sha512-qFOyK5PjiWZd+QQIh+1jhdb9LpxTF0qs7Pm8o5QHYZ0M3vKqSqzsZaEB6oWlxZ+q2sJBMI/Ktgd2N5ZwQoRHfg==" + } + }, + "npm:oxc-parser": { + "type": "npm", + "name": "npm:oxc-parser", + "data": { + "version": "0.104.0", + "packageName": "oxc-parser", + "hash": "sha512-sIEpobLwe7KhW1JdTvBJkNDgjJarHNsx+Q37iRNyASvmlDOD+f8Qirvwp6nFNz7Q5q3JcsJ1dpKM+oMPTDF/dw==" + } + }, + "npm:oxc-resolver": { + "type": "npm", + "name": "npm:oxc-resolver", + "data": { + "version": "11.19.1", + "packageName": "oxc-resolver", + "hash": "sha512-qE/CIg/spwrTBFt5aKmwe3ifeDdLfA2NESN30E42X/lII5ClF8V7Wt6WIJhcGZjp0/Q+nQ+9vgxGk//xZNX2hg==" + } + }, + "npm:oxc-walker": { + "type": "npm", + "name": "npm:oxc-walker", + "data": { + "version": "0.6.0", + "packageName": "oxc-walker", + "hash": "sha512-BA3hlxq5+Sgzp7TCQF52XDXCK5mwoIZuIuxv/+JuuTzOs2RXkLqWZgZ69d8pJDDjnL7wiREZTWHBzFp/UWH88Q==" + } + }, + "npm:oxlint-tsgolint": { + "type": "npm", + "name": "npm:oxlint-tsgolint", + "data": { + "version": "0.17.1", + "packageName": "oxlint-tsgolint", + "hash": "sha512-gJc7hb1ZQFbWjRDYpu1XG+5IRdr1S/Jz/W2ohcpaqIXuDmHU0ujGiM0x05J0nIfwMF3HOEcANi/+j6T0Uecdpg==" + } + }, + "npm:oxlint": { + "type": "npm", + "name": "npm:oxlint", + "data": { + "version": "1.56.0", + "packageName": "oxlint", + "hash": "sha512-Q+5Mj5PVaH/R6/fhMMFzw4dT+KPB+kQW4kaL8FOIq7tfhlnEVp6+3lcWqFruuTNlUo9srZUW3qH7Id4pskeR6g==" + } + }, + "npm:p-cancelable": { + "type": "npm", + "name": "npm:p-cancelable", + "data": { + "version": "2.1.1", + "packageName": "p-cancelable", + "hash": "sha512-BZOr3nRQHOntUjTrH8+Lh54smKHoHyur8We1V8DSMVrl5A2malOOwuJRnKRDjSnkoeBh4at6BwEnb5I7Jl31wg==" + } + }, + "npm:p-limit@2.3.0": { + "type": "npm", + "name": "npm:p-limit@2.3.0", + "data": { + "version": "2.3.0", + "packageName": "p-limit", + "hash": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==" + } + }, + "npm:p-limit@3.1.0": { + "type": "npm", + "name": "npm:p-limit@3.1.0", + "data": { + "version": "3.1.0", + "packageName": "p-limit", + "hash": "sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==" + } + }, + "npm:p-limit": { + "type": "npm", + "name": "npm:p-limit", + "data": { + "version": "7.3.0", + "packageName": "p-limit", + "hash": "sha512-7cIXg/Z0M5WZRblrsOla88S4wAK+zOQQWeBYfV3qJuJXMr+LnbYjaadrFaS0JILfEDPVqHyKnZ1Z/1d6J9VVUw==" + } + }, + "npm:p-locate@3.0.0": { + "type": "npm", + "name": "npm:p-locate@3.0.0", + "data": { + "version": "3.0.0", + "packageName": "p-locate", + "hash": "sha512-x+12w/To+4GFfgJhBEpiDcLozRJGegY+Ei7/z0tSLkMmxGZNybVMSfWj9aJn8Z5Fc7dBUNJOOVgPv2H7IwulSQ==" + } + }, + "npm:p-locate": { + "type": "npm", + "name": "npm:p-locate", + "data": { + "version": "5.0.0", + "packageName": "p-locate", + "hash": "sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==" + } + }, + "npm:p-map": { + "type": "npm", + "name": "npm:p-map", + "data": { + "version": "7.0.3", + "packageName": "p-map", + "hash": "sha512-VkndIv2fIB99swvQoA65bm+fsmt6UNdGeIB0oxBs+WhAhdh08QA04JXpI7rbB9r08/nkbysKoya9rtDERYOYMA==" + } + }, + "npm:p-reflect": { + "type": "npm", + "name": "npm:p-reflect", + "data": { + "version": "2.1.0", + "packageName": "p-reflect", + "hash": "sha512-paHV8NUz8zDHu5lhr/ngGWQiW067DK/+IbJ+RfZ4k+s8y4EKyYCz8pGYWjxCg35eHztpJAt+NUgvN4L+GCbPlg==" + } + }, + "npm:p-retry": { + "type": "npm", + "name": "npm:p-retry", + "data": { + "version": "4.6.2", + "packageName": "p-retry", + "hash": "sha512-312Id396EbJdvRONlngUx0NydfrIQ5lsYu0znKVUzVvArzEIt08V1qhtyESbGVd1FGX7UKtiFp5uwKZdM8wIuQ==" + } + }, + "npm:p-timeout": { + "type": "npm", + "name": "npm:p-timeout", + "data": { + "version": "4.1.0", + "packageName": "p-timeout", + "hash": "sha512-+/wmHtzJuWii1sXn3HCuH/FTwGhrp4tmJTxSKJbfS+vkipci6osxXM5mY0jUiRzWKMTgUT8l7HFbeSwZAynqHw==" + } + }, + "npm:p-try": { + "type": "npm", + "name": "npm:p-try", + "data": { + "version": "2.2.0", + "packageName": "p-try", + "hash": "sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==" + } + }, + "npm:pac-proxy-agent": { + "type": "npm", + "name": "npm:pac-proxy-agent", + "data": { + "version": "7.2.0", + "packageName": "pac-proxy-agent", + "hash": "sha512-TEB8ESquiLMc0lV8vcd5Ql/JAKAoyzHFXaStwjkzpOpC5Yv+pIzLfHvjTSdf3vpa2bMiUQrg9i6276yn8666aA==" + } + }, + "npm:pac-resolver": { + "type": "npm", + "name": "npm:pac-resolver", + "data": { + "version": "7.0.1", + "packageName": "pac-resolver", + "hash": "sha512-5NPgf87AT2STgwa2ntRMr45jTKrYBGkVU36yT0ig/n/GMAa3oPqhZfIQ2kMEimReg0+t9kZViDVZ83qfVUlckg==" + } + }, + "npm:package-json-from-dist": { + "type": "npm", + "name": "npm:package-json-from-dist", + "data": { + "version": "1.0.1", + "packageName": "package-json-from-dist", + "hash": "sha512-UEZIS3/by4OC8vL3P2dTXRETpebLI2NiI5vIrjaD/5UtrkFX/tNbwjTSRAGC/+7CAo2pIcBaRgWmcBBHcsaCIw==" + } + }, + "npm:package-manager-detector": { + "type": "npm", + "name": "npm:package-manager-detector", + "data": { + "version": "1.6.0", + "packageName": "package-manager-detector", + "hash": "sha512-61A5ThoTiDG/C8s8UMZwSorAGwMJ0ERVGj2OjoW5pAalsNOg15+iQiPzrLJ4jhZ1HJzmC2PIHT2oEiH3R5fzNA==" + } + }, + "npm:parent-module": { + "type": "npm", + "name": "npm:parent-module", + "data": { + "version": "1.0.1", + "packageName": "parent-module", + "hash": "sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==" + } + }, + "npm:parse-json": { + "type": "npm", + "name": "npm:parse-json", + "data": { + "version": "5.2.0", + "packageName": "parse-json", + "hash": "sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg==" + } + }, + "npm:parse-ms@2.1.0": { + "type": "npm", + "name": "npm:parse-ms@2.1.0", + "data": { + "version": "2.1.0", + "packageName": "parse-ms", + "hash": "sha512-kHt7kzLoS9VBZfUsiKjv43mr91ea+U05EyKkEtqp7vNbHxmaVuEqN7XxeEVnGrMtYOAxGrDElSi96K7EgO1zCA==" + } + }, + "npm:parse-ms": { + "type": "npm", + "name": "npm:parse-ms", + "data": { + "version": "4.0.0", + "packageName": "parse-ms", + "hash": "sha512-TXfryirbmq34y8QBwgqCVLi+8oA3oWx2eAnSn62ITyEhEYaWRlVZ2DvMM9eZbMs/RfxPu/PK/aBLyGj4IrqMHw==" + } + }, + "npm:parse5": { + "type": "npm", + "name": "npm:parse5", + "data": { + "version": "7.3.0", + "packageName": "parse5", + "hash": "sha512-IInvU7fabl34qmi9gY8XOVxhYyMyuH2xUNpb2q8/Y+7552KlejkRvqvD19nMoUW/uQGGbqNpA6Tufu5FL5BZgw==" + } + }, + "npm:parseurl": { + "type": "npm", + "name": "npm:parseurl", + "data": { + "version": "1.3.3", + "packageName": "parseurl", + "hash": "sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ==" + } + }, + "npm:path-browserify": { + "type": "npm", + "name": "npm:path-browserify", + "data": { + "version": "1.0.1", + "packageName": "path-browserify", + "hash": "sha512-b7uo2UCUOYZcnF/3ID0lulOJi/bafxa1xPe7ZPsammBSpjSWQkjNxlt635YGS2MiR9GjvuXCtz2emr3jbsz98g==" + } + }, + "npm:path-exists@3.0.0": { + "type": "npm", + "name": "npm:path-exists@3.0.0", + "data": { + "version": "3.0.0", + "packageName": "path-exists", + "hash": "sha512-bpC7GYwiDYQ4wYLe+FA8lhRjhQCMcQGuSgGGqDkg/QerRWw9CmGRT0iSOVRSZJ29NMLZgIzqaljJ63oaL4NIJQ==" + } + }, + "npm:path-exists": { + "type": "npm", + "name": "npm:path-exists", + "data": { + "version": "4.0.0", + "packageName": "path-exists", + "hash": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==" + } + }, + "npm:path-key": { + "type": "npm", + "name": "npm:path-key", + "data": { + "version": "3.1.1", + "packageName": "path-key", + "hash": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==" + } + }, + "npm:path-key@4.0.0": { + "type": "npm", + "name": "npm:path-key@4.0.0", + "data": { + "version": "4.0.0", + "packageName": "path-key", + "hash": "sha512-haREypq7xkM7ErfgIyA0z+Bj4AGKlMSdlQE2jvJo6huWD1EdkKYV+G/T4nq0YEF2vgTT8kqMFKo1uHn950r4SQ==" + } + }, + "npm:path-parse": { + "type": "npm", + "name": "npm:path-parse", + "data": { + "version": "1.0.7", + "packageName": "path-parse", + "hash": "sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==" + } + }, + "npm:path-scurry@1.11.1": { + "type": "npm", + "name": "npm:path-scurry@1.11.1", + "data": { + "version": "1.11.1", + "packageName": "path-scurry", + "hash": "sha512-Xa4Nw17FS9ApQFJ9umLiJS4orGjm7ZzwUrwamcGQuHSzDyth9boKDaycYdDcZDuqYATXw4HFXgaqWTctW/v1HA==" + } + }, + "npm:path-scurry": { + "type": "npm", + "name": "npm:path-scurry", + "data": { + "version": "2.0.2", + "packageName": "path-scurry", + "hash": "sha512-3O/iVVsJAPsOnpwWIeD+d6z/7PmqApyQePUtCndjatj/9I5LylHvt5qluFaBT3I5h3r1ejfR056c+FCv+NnNXg==" + } + }, + "npm:path-to-regexp@6.1.0": { + "type": "npm", + "name": "npm:path-to-regexp@6.1.0", + "data": { + "version": "6.1.0", + "packageName": "path-to-regexp", + "hash": "sha512-h9DqehX3zZZDCEm+xbfU0ZmwCGFCAAraPJWMXJ4+v32NjZJilVg3k1TcKsRgIb8IQ/izZSaydDc1OhJCZvs2Dw==" + } + }, + "npm:path-to-regexp@6.3.0": { + "type": "npm", + "name": "npm:path-to-regexp@6.3.0", + "data": { + "version": "6.3.0", + "packageName": "path-to-regexp", + "hash": "sha512-Yhpw4T9C6hPpgPeA28us07OJeqZ5EzQTkbfwuhsUg0c237RomFoETJgmp2sa3F/41gfLE6G5cqcYwznmeEeOlQ==" + } + }, + "npm:path-to-regexp": { + "type": "npm", + "name": "npm:path-to-regexp", + "data": { + "version": "8.3.0", + "packageName": "path-to-regexp", + "hash": "sha512-7jdwVIRtsP8MYpdXSwOS0YdD0Du+qOoF/AEPIt88PcCFrZCzx41oxku1jD88hZBwbNUIEfpqvuhjFaMAqMTWnA==" + } + }, + "npm:path-to-regexp-updated": { + "type": "npm", + "name": "npm:path-to-regexp-updated", + "data": { + "version": "npm:path-to-regexp@6.3.0", + "packageName": "path-to-regexp-updated", + "hash": "sha512-Yhpw4T9C6hPpgPeA28us07OJeqZ5EzQTkbfwuhsUg0c237RomFoETJgmp2sa3F/41gfLE6G5cqcYwznmeEeOlQ==" + } + }, + "npm:pathe": { + "type": "npm", + "name": "npm:pathe", + "data": { + "version": "2.0.3", + "packageName": "pathe", + "hash": "sha512-WUjGcAqP1gQacoQe+OBJsFA7Ld4DyXuUIjZ5cc75cLHvJ7dtNsTugphxIADwspS+AraAUePCKrSVtPLFj/F88w==" + } + }, + "npm:pend": { + "type": "npm", + "name": "npm:pend", + "data": { + "version": "1.2.0", + "packageName": "pend", + "hash": "sha512-F3asv42UuXchdzt+xXqfW1OGlVBe+mxa2mqI0pg5yAHZPvFmY3Y6drSf/GQ1A86WgWEN9Kzh/WrgKa6iGcHXLg==" + } + }, + "npm:perfect-debounce": { + "type": "npm", + "name": "npm:perfect-debounce", + "data": { + "version": "1.0.0", + "packageName": "perfect-debounce", + "hash": "sha512-xCy9V055GLEqoFaHoC1SoLIaLmWctgCUaBaWxDZ7/Zx4CTyX7cJQLJOok/orfjZAh9kEYpjJa4d0KcJmCbctZA==" + } + }, + "npm:picocolors": { + "type": "npm", + "name": "npm:picocolors", + "data": { + "version": "1.1.1", + "packageName": "picocolors", + "hash": "sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==" + } + }, + "npm:picomatch@2.3.1": { + "type": "npm", + "name": "npm:picomatch@2.3.1", + "data": { + "version": "2.3.1", + "packageName": "picomatch", + "hash": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==" + } + }, + "npm:picomatch": { + "type": "npm", + "name": "npm:picomatch", + "data": { + "version": "4.0.3", + "packageName": "picomatch", + "hash": "sha512-5gTmgEY/sqK6gFXLIsQNH19lWb4ebPDLA4SdLP7dsWkIXHWlG66oPuVvXSGFPppYZz8ZDZq0dYYrbHfBCVUb1Q==" + } + }, + "npm:pidtree": { + "type": "npm", + "name": "npm:pidtree", + "data": { + "version": "0.6.0", + "packageName": "pidtree", + "hash": "sha512-eG2dWTVw5bzqGRztnHExczNxt5VGsE6OwTeCG3fdUf9KBsZzO3R5OIIIzWR+iZA0NtZ+RDVdaoE2dK1cn6jH4g==" + } + }, + "npm:pino-abstract-transport": { + "type": "npm", + "name": "npm:pino-abstract-transport", + "data": { + "version": "3.0.0", + "packageName": "pino-abstract-transport", + "hash": "sha512-wlfUczU+n7Hy/Ha5j9a/gZNy7We5+cXp8YL+X+PG8S0KXxw7n/JXA3c46Y0zQznIJ83URJiwy7Lh56WLokNuxg==" + } + }, + "npm:pino-std-serializers": { + "type": "npm", + "name": "npm:pino-std-serializers", + "data": { + "version": "7.1.0", + "packageName": "pino-std-serializers", + "hash": "sha512-BndPH67/JxGExRgiX1dX0w1FvZck5Wa4aal9198SrRhZjH3GxKQUKIBnYJTdj2HDN3UQAS06HlfcSbQj2OHmaw==" + } + }, + "npm:pino": { + "type": "npm", + "name": "npm:pino", + "data": { + "version": "10.3.1", + "packageName": "pino", + "hash": "sha512-r34yH/GlQpKZbU1BvFFqOjhISRo1MNx1tWYsYvmj6KIRHSPMT2+yHOEb1SG6NMvRoHRF0a07kCOox/9yakl1vg==" + } + }, + "npm:pkg-types@1.3.1": { + "type": "npm", + "name": "npm:pkg-types@1.3.1", + "data": { + "version": "1.3.1", + "packageName": "pkg-types", + "hash": "sha512-/Jm5M4RvtBFVkKWRu2BLUTNP8/M2a+UwuAX+ae4770q1qVGtfjG+WTCupoZixokjmHiry8uI+dlY8KXYV5HVVQ==" + } + }, + "npm:pkg-types": { + "type": "npm", + "name": "npm:pkg-types", + "data": { + "version": "2.3.0", + "packageName": "pkg-types", + "hash": "sha512-SIqCzDRg0s9npO5XQ3tNZioRY1uK06lA41ynBC1YmFTmnY6FjUjVt6s4LoADmwoig1qqD0oK8h1p/8mlMx8Oig==" + } + }, + "npm:pkg-up": { + "type": "npm", + "name": "npm:pkg-up", + "data": { + "version": "3.1.0", + "packageName": "pkg-up", + "hash": "sha512-nDywThFk1i4BQK4twPQ6TA4RT8bDY96yeuCVBWL3ePARCiEKDRSrNGbFIgUJpLp+XeIR65v8ra7WuJOFUBtkMA==" + } + }, + "npm:portfinder": { + "type": "npm", + "name": "npm:portfinder", + "data": { + "version": "1.0.38", + "packageName": "portfinder", + "hash": "sha512-rEwq/ZHlJIKw++XtLAO8PPuOQA/zaPJOZJ37BVuN97nLpMJeuDVLVGRwbFoBgLudgdTMP2hdRJP++H+8QOA3vg==" + } + }, + "npm:possible-typed-array-names": { + "type": "npm", + "name": "npm:possible-typed-array-names", + "data": { + "version": "1.1.0", + "packageName": "possible-typed-array-names", + "hash": "sha512-/+5VFTchJDoVj3bhoqi6UeymcD00DAwb1nJwamzPvHEszJ4FpF6SNNbUbOS8yI56qHzdV8eK0qEfOSiodkTdxg==" + } + }, + "npm:postcss-calc": { + "type": "npm", + "name": "npm:postcss-calc", + "data": { + "version": "8.2.4", + "packageName": "postcss-calc", + "hash": "sha512-SmWMSJmB8MRnnULldx0lQIyhSNvuDl9HfrZkaqqE/WHAhToYsAvDq+yAsA/kIyINDszOp3Rh0GFoNuH5Ypsm3Q==" + } + }, + "npm:postcss-colormin": { + "type": "npm", + "name": "npm:postcss-colormin", + "data": { + "version": "5.3.1", + "packageName": "postcss-colormin", + "hash": "sha512-UsWQG0AqTFQmpBegeLLc1+c3jIqBNB0zlDGRWR+dQ3pRKJL1oeMzyqmH3o2PIfn9MBdNrVPWhDbT769LxCTLJQ==" + } + }, + "npm:postcss-convert-values": { + "type": "npm", + "name": "npm:postcss-convert-values", + "data": { + "version": "5.1.3", + "packageName": "postcss-convert-values", + "hash": "sha512-82pC1xkJZtcJEfiLw6UXnXVXScgtBrjlO5CBmuDQc+dlb88ZYheFsjTn40+zBVi3DkfF7iezO0nJUPLcJK3pvA==" + } + }, + "npm:postcss-discard-comments": { + "type": "npm", + "name": "npm:postcss-discard-comments", + "data": { + "version": "5.1.2", + "packageName": "postcss-discard-comments", + "hash": "sha512-+L8208OVbHVF2UQf1iDmRcbdjJkuBF6IS29yBDSiWUIzpYaAhtNl6JYnYm12FnkeCwQqF5LeklOu6rAqgfBZqQ==" + } + }, + "npm:postcss-discard-duplicates@5.1.0": { + "type": "npm", + "name": "npm:postcss-discard-duplicates@5.1.0", + "data": { + "version": "5.1.0", + "packageName": "postcss-discard-duplicates", + "hash": "sha512-zmX3IoSI2aoenxHV6C7plngHWWhUOV3sP1T8y2ifzxzbtnuhk1EdPwm0S1bIUNaJ2eNbWeGLEwzw8huPD67aQw==" + } + }, + "npm:postcss-discard-duplicates": { + "type": "npm", + "name": "npm:postcss-discard-duplicates", + "data": { + "version": "6.0.3", + "packageName": "postcss-discard-duplicates", + "hash": "sha512-+JA0DCvc5XvFAxwx6f/e68gQu/7Z9ud584VLmcgto28eB8FqSFZwtrLwB5Kcp70eIoWP/HXqz4wpo8rD8gpsTw==" + } + }, + "npm:postcss-discard-empty": { + "type": "npm", + "name": "npm:postcss-discard-empty", + "data": { + "version": "5.1.1", + "packageName": "postcss-discard-empty", + "hash": "sha512-zPz4WljiSuLWsI0ir4Mcnr4qQQ5e1Ukc3i7UfE2XcrwKK2LIPIqE5jxMRxO6GbI3cv//ztXDsXwEWT3BHOGh3A==" + } + }, + "npm:postcss-discard-overridden": { + "type": "npm", + "name": "npm:postcss-discard-overridden", + "data": { + "version": "5.1.0", + "packageName": "postcss-discard-overridden", + "hash": "sha512-21nOL7RqWR1kasIVdKs8HNqQJhFxLsyRfAnUDm4Fe4t4mCWL9OJiHvlHPjcd8zc5Myu89b/7wZDnOSjFgeWRtw==" + } + }, + "npm:postcss-js": { + "type": "npm", + "name": "npm:postcss-js", + "data": { + "version": "4.1.0", + "packageName": "postcss-js", + "hash": "sha512-oIAOTqgIo7q2EOwbhb8UalYePMvYoIeRY2YKntdpFQXNosSu3vLrniGgmH9OKs/qAkfoj5oB3le/7mINW1LCfw==" + } + }, + "npm:postcss-merge-longhand": { + "type": "npm", + "name": "npm:postcss-merge-longhand", + "data": { + "version": "5.1.7", + "packageName": "postcss-merge-longhand", + "hash": "sha512-YCI9gZB+PLNskrK0BB3/2OzPnGhPkBEwmwhfYk1ilBHYVAZB7/tkTHFBAnCrvBBOmeYyMYw3DMjT55SyxMBzjQ==" + } + }, + "npm:postcss-merge-rules": { + "type": "npm", + "name": "npm:postcss-merge-rules", + "data": { + "version": "5.1.4", + "packageName": "postcss-merge-rules", + "hash": "sha512-0R2IuYpgU93y9lhVbO/OylTtKMVcHb67zjWIfCiKR9rWL3GUk1677LAqD/BcHizukdZEjT8Ru3oHRoAYoJy44g==" + } + }, + "npm:postcss-minify-font-values": { + "type": "npm", + "name": "npm:postcss-minify-font-values", + "data": { + "version": "5.1.0", + "packageName": "postcss-minify-font-values", + "hash": "sha512-el3mYTgx13ZAPPirSVsHqFzl+BBBDrXvbySvPGFnQcTI4iNslrPaFq4muTkLZmKlGk4gyFAYUBMH30+HurREyA==" + } + }, + "npm:postcss-minify-gradients": { + "type": "npm", + "name": "npm:postcss-minify-gradients", + "data": { + "version": "5.1.1", + "packageName": "postcss-minify-gradients", + "hash": "sha512-VGvXMTpCEo4qHTNSa9A0a3D+dxGFZCYwR6Jokk+/3oB6flu2/PnPXAh2x7x52EkY5xlIHLm+Le8tJxe/7TNhzw==" + } + }, + "npm:postcss-minify-params": { + "type": "npm", + "name": "npm:postcss-minify-params", + "data": { + "version": "5.1.4", + "packageName": "postcss-minify-params", + "hash": "sha512-+mePA3MgdmVmv6g+30rn57USjOGSAyuxUmkfiWpzalZ8aiBkdPYjXWtHuwJGm1v5Ojy0Z0LaSYhHaLJQB0P8Jw==" + } + }, + "npm:postcss-minify-selectors": { + "type": "npm", + "name": "npm:postcss-minify-selectors", + "data": { + "version": "5.2.1", + "packageName": "postcss-minify-selectors", + "hash": "sha512-nPJu7OjZJTsVUmPdm2TcaiohIwxP+v8ha9NehQ2ye9szv4orirRU3SDdtUmKH+10nzn0bAyOXZ0UEr7OpvLehg==" + } + }, + "npm:postcss-mixins": { + "type": "npm", + "name": "npm:postcss-mixins", + "data": { + "version": "12.1.2", + "packageName": "postcss-mixins", + "hash": "sha512-90pSxmZVfbX9e5xCv7tI5RV1mnjdf16y89CJKbf/hD7GyOz1FCxcYMl8ZYA8Hc56dbApTKKmU9HfvgfWdCxlwg==" + } + }, + "npm:postcss-nested@5.0.6": { + "type": "npm", + "name": "npm:postcss-nested@5.0.6", + "data": { + "version": "5.0.6", + "packageName": "postcss-nested", + "hash": "sha512-rKqm2Fk0KbA8Vt3AdGN0FB9OBOMDVajMG6ZCf/GoHgdxUJ4sBFp0A/uMIRm+MJUdo33YXEtjqIz8u7DAp8B7DA==" + } + }, + "npm:postcss-nested": { + "type": "npm", + "name": "npm:postcss-nested", + "data": { + "version": "7.0.2", + "packageName": "postcss-nested", + "hash": "sha512-5osppouFc0VR9/VYzYxO03VaDa3e8F23Kfd6/9qcZTUI8P58GIYlArOET2Wq0ywSl2o2PjELhYOFI4W7l5QHKw==" + } + }, + "npm:postcss-normalize-charset": { + "type": "npm", + "name": "npm:postcss-normalize-charset", + "data": { + "version": "5.1.0", + "packageName": "postcss-normalize-charset", + "hash": "sha512-mSgUJ+pd/ldRGVx26p2wz9dNZ7ji6Pn8VWBajMXFf8jk7vUoSrZ2lt/wZR7DtlZYKesmZI680qjr2CeFF2fbUg==" + } + }, + "npm:postcss-normalize-display-values": { + "type": "npm", + "name": "npm:postcss-normalize-display-values", + "data": { + "version": "5.1.0", + "packageName": "postcss-normalize-display-values", + "hash": "sha512-WP4KIM4o2dazQXWmFaqMmcvsKmhdINFblgSeRgn8BJ6vxaMyaJkwAzpPpuvSIoG/rmX3M+IrRZEz2H0glrQNEA==" + } + }, + "npm:postcss-normalize-positions": { + "type": "npm", + "name": "npm:postcss-normalize-positions", + "data": { + "version": "5.1.1", + "packageName": "postcss-normalize-positions", + "hash": "sha512-6UpCb0G4eofTCQLFVuI3EVNZzBNPiIKcA1AKVka+31fTVySphr3VUgAIULBhxZkKgwLImhzMR2Bw1ORK+37INg==" + } + }, + "npm:postcss-normalize-repeat-style": { + "type": "npm", + "name": "npm:postcss-normalize-repeat-style", + "data": { + "version": "5.1.1", + "packageName": "postcss-normalize-repeat-style", + "hash": "sha512-mFpLspGWkQtBcWIRFLmewo8aC3ImN2i/J3v8YCFUwDnPu3Xz4rLohDO26lGjwNsQxB3YF0KKRwspGzE2JEuS0g==" + } + }, + "npm:postcss-normalize-string": { + "type": "npm", + "name": "npm:postcss-normalize-string", + "data": { + "version": "5.1.0", + "packageName": "postcss-normalize-string", + "hash": "sha512-oYiIJOf4T9T1N4i+abeIc7Vgm/xPCGih4bZz5Nm0/ARVJ7K6xrDlLwvwqOydvyL3RHNf8qZk6vo3aatiw/go3w==" + } + }, + "npm:postcss-normalize-timing-functions": { + "type": "npm", + "name": "npm:postcss-normalize-timing-functions", + "data": { + "version": "5.1.0", + "packageName": "postcss-normalize-timing-functions", + "hash": "sha512-DOEkzJ4SAXv5xkHl0Wa9cZLF3WCBhF3o1SKVxKQAa+0pYKlueTpCgvkFAHfk+Y64ezX9+nITGrDZeVGgITJXjg==" + } + }, + "npm:postcss-normalize-unicode": { + "type": "npm", + "name": "npm:postcss-normalize-unicode", + "data": { + "version": "5.1.1", + "packageName": "postcss-normalize-unicode", + "hash": "sha512-qnCL5jzkNUmKVhZoENp1mJiGNPcsJCs1aaRmURmeJGES23Z/ajaln+EPTD+rBeNkSryI+2WTdW+lwcVdOikrpA==" + } + }, + "npm:postcss-normalize-url": { + "type": "npm", + "name": "npm:postcss-normalize-url", + "data": { + "version": "5.1.0", + "packageName": "postcss-normalize-url", + "hash": "sha512-5upGeDO+PVthOxSmds43ZeMeZfKH+/DKgGRD7TElkkyS46JXAUhMzIKiCa7BabPeIy3AQcTkXwVVN7DbqsiCew==" + } + }, + "npm:postcss-normalize-whitespace": { + "type": "npm", + "name": "npm:postcss-normalize-whitespace", + "data": { + "version": "5.1.1", + "packageName": "postcss-normalize-whitespace", + "hash": "sha512-83ZJ4t3NUDETIHTa3uEg6asWjSBYL5EdkVB0sDncx9ERzOKBVJIUeDO9RyA9Zwtig8El1d79HBp0JEi8wvGQnA==" + } + }, + "npm:postcss-ordered-values": { + "type": "npm", + "name": "npm:postcss-ordered-values", + "data": { + "version": "5.1.3", + "packageName": "postcss-ordered-values", + "hash": "sha512-9UO79VUhPwEkzbb3RNpqqghc6lcYej1aveQteWY+4POIwlqkYE21HKWaLDF6lWNuqCobEAyTovVhtI32Rbv2RQ==" + } + }, + "npm:postcss-preset-mantine": { + "type": "npm", + "name": "npm:postcss-preset-mantine", + "data": { + "version": "1.18.0", + "packageName": "postcss-preset-mantine", + "hash": "sha512-sP6/s1oC7cOtBdl4mw/IRKmKvYTuzpRrH/vT6v9enMU/EQEQ31eQnHcWtFghOXLH87AAthjL/Q75rLmin1oZoA==" + } + }, + "npm:postcss-reduce-initial": { + "type": "npm", + "name": "npm:postcss-reduce-initial", + "data": { + "version": "5.1.2", + "packageName": "postcss-reduce-initial", + "hash": "sha512-dE/y2XRaqAi6OvjzD22pjTUQ8eOfc6m/natGHgKFBK9DxFmIm69YmaRVQrGgFlEfc1HePIurY0TmDeROK05rIg==" + } + }, + "npm:postcss-reduce-transforms": { + "type": "npm", + "name": "npm:postcss-reduce-transforms", + "data": { + "version": "5.1.0", + "packageName": "postcss-reduce-transforms", + "hash": "sha512-2fbdbmgir5AvpW9RLtdONx1QoYG2/EtqpNQbFASDlixBbAYuTcJ0dECwlqNqH7VbaUnEnh8SrxOe2sRIn24XyQ==" + } + }, + "npm:postcss-selector-parser@6.1.2": { + "type": "npm", + "name": "npm:postcss-selector-parser@6.1.2", + "data": { + "version": "6.1.2", + "packageName": "postcss-selector-parser", + "hash": "sha512-Q8qQfPiZ+THO/3ZrOrO0cJJKfpYCagtMUkXbnEfmgUjwXg6z/WBeOyS9APBBPCTSiDV+s4SwQGu8yFsiMRIudg==" + } + }, + "npm:postcss-selector-parser": { + "type": "npm", + "name": "npm:postcss-selector-parser", + "data": { + "version": "7.1.0", + "packageName": "postcss-selector-parser", + "hash": "sha512-8sLjZwK0R+JlxlYcTuVnyT2v+htpdrjDOKuMcOVdYjt52Lh8hWRYpxBPoKx/Zg+bcjc3wx6fmQevMmUztS/ccA==" + } + }, + "npm:postcss-simple-vars": { + "type": "npm", + "name": "npm:postcss-simple-vars", + "data": { + "version": "7.0.1", + "packageName": "postcss-simple-vars", + "hash": "sha512-5GLLXaS8qmzHMOjVxqkk1TZPf1jMqesiI7qLhnlyERalG0sMbHIbJqrcnrpmZdKCLglHnRHoEBB61RtGTsj++A==" + } + }, + "npm:postcss-svgo": { + "type": "npm", + "name": "npm:postcss-svgo", + "data": { + "version": "5.1.0", + "packageName": "postcss-svgo", + "hash": "sha512-D75KsH1zm5ZrHyxPakAxJWtkyXew5qwS70v56exwvw542d9CRtTo78K0WeFxZB4G7JXKKMbEZtZayTGdIky/eA==" + } + }, + "npm:postcss-unique-selectors": { + "type": "npm", + "name": "npm:postcss-unique-selectors", + "data": { + "version": "5.1.1", + "packageName": "postcss-unique-selectors", + "hash": "sha512-5JiODlELrz8L2HwxfPnhOWZYWDxVHWL83ufOv84NrcgipI7TaeRsatAhK4Tr2/ZiYldpK/wBvw5BD3qfaK96GA==" + } + }, + "npm:postcss-value-parser": { + "type": "npm", + "name": "npm:postcss-value-parser", + "data": { + "version": "4.2.0", + "packageName": "postcss-value-parser", + "hash": "sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==" + } + }, + "npm:postcss-values-parser": { + "type": "npm", + "name": "npm:postcss-values-parser", + "data": { + "version": "6.0.2", + "packageName": "postcss-values-parser", + "hash": "sha512-YLJpK0N1brcNJrs9WatuJFtHaV9q5aAOj+S4DI5S7jgHlRfm0PIbDCAFRYMQD5SHq7Fy6xsDhyutgS0QOAs0qw==" + } + }, + "npm:postcss": { + "type": "npm", + "name": "npm:postcss", + "data": { + "version": "8.5.8", + "packageName": "postcss", + "hash": "sha512-OW/rX8O/jXnm82Ey1k44pObPtdblfiuWnrd8X7GJ7emImCOstunGbXUpp7HdBrFQX6rJzn3sPT397Wp5aCwCHg==" + } + }, + "npm:postgres": { + "type": "npm", + "name": "npm:postgres", + "data": { + "version": "3.4.7", + "packageName": "postgres", + "hash": "sha512-Jtc2612XINuBjIl/QTWsV5UvE8UHuNblcO3vVADSrKsrc6RqGX6lOW1cEo3CM2v0XG4Nat8nI+YM7/f26VxXLw==" + } + }, + "npm:preact-render-to-string": { + "type": "npm", + "name": "npm:preact-render-to-string", + "data": { + "version": "6.5.11", + "packageName": "preact-render-to-string", + "hash": "sha512-ubnauqoGczeGISiOh6RjX0/cdaF8v/oDXIjO85XALCQjwQP+SB4RDXXtvZ6yTYSjG+PC1QRP2AhPgCEsM2EvUw==" + } + }, + "npm:preact": { + "type": "npm", + "name": "npm:preact", + "data": { + "version": "10.24.3", + "packageName": "preact", + "hash": "sha512-Z2dPnBnMUfyQfSQ+GBdsGa16hz35YmLmtTLhM169uW944hYL6xzTYkJjC07j+Wosz733pMWx0fgON3JNw1jJQA==" + } + }, + "npm:prebuild-install": { + "type": "npm", + "name": "npm:prebuild-install", + "data": { + "version": "7.1.3", + "packageName": "prebuild-install", + "hash": "sha512-8Mf2cbV7x1cXPUILADGI3wuhfqWvtiLA1iclTDbFRZkgRQS0NqsPZphna9V+HyTEadheuPmjaJMsbzKQFOzLug==" + } + }, + "npm:prelude-ls": { + "type": "npm", + "name": "npm:prelude-ls", + "data": { + "version": "1.2.1", + "packageName": "prelude-ls", + "hash": "sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==" + } + }, + "npm:prettier-linter-helpers": { + "type": "npm", + "name": "npm:prettier-linter-helpers", + "data": { + "version": "1.0.1", + "packageName": "prettier-linter-helpers", + "hash": "sha512-SxToR7P8Y2lWmv/kTzVLC1t/GDI2WGjMwNhLLE9qtH8Q13C+aEmuRlzDst4Up4s0Wc8sF2M+J57iB3cMLqftfg==" + } + }, + "npm:prettier": { + "type": "npm", + "name": "npm:prettier", + "data": { + "version": "3.8.1", + "packageName": "prettier", + "hash": "sha512-UOnG6LftzbdaHZcKoPFtOcCKztrQ57WkHDeRD9t/PTQtmT0NHSeWWepj6pS0z/N7+08BHFDQVUrfmfMRcZwbMg==" + } + }, + "npm:pretty-format": { + "type": "npm", + "name": "npm:pretty-format", + "data": { + "version": "30.3.0", + "packageName": "pretty-format", + "hash": "sha512-oG4T3wCbfeuvljnyAzhBvpN45E8iOTXCU/TD3zXW80HA3dQ4ahdqMkWGiPWZvjpQwlbyHrPTWUAqUzGzv4l1JQ==" + } + }, + "npm:pretty-ms@7.0.1": { + "type": "npm", + "name": "npm:pretty-ms@7.0.1", + "data": { + "version": "7.0.1", + "packageName": "pretty-ms", + "hash": "sha512-973driJZvxiGOQ5ONsFhOF/DtzPMOMtgC11kCpUrPGMTgqp2q/1gwzCquocrN33is0VZ5GFHXZYMM9l6h67v2Q==" + } + }, + "npm:pretty-ms": { + "type": "npm", + "name": "npm:pretty-ms", + "data": { + "version": "9.3.0", + "packageName": "pretty-ms", + "hash": "sha512-gjVS5hOP+M3wMm5nmNOucbIrqudzs9v/57bWRHQWLYklXqoXKrVfYW2W9+glfGsqtPgpiz5WwyEEB+ksXIx3gQ==" + } + }, + "npm:prism-themes": { + "type": "npm", + "name": "npm:prism-themes", + "data": { + "version": "1.9.0", + "packageName": "prism-themes", + "hash": "sha512-tX2AYsehKDw1EORwBps+WhBFKc2kxfoFpQAjxBndbZKr4fRmMkv47XN0BghC/K1qwodB1otbe4oF23vUTFDokw==" + } + }, + "npm:prisma": { + "type": "npm", + "name": "npm:prisma", + "data": { + "version": "7.5.0", + "packageName": "prisma", + "hash": "sha512-n30qZpWehaYQzigLjmuPisyEsvOzHt7bZeRyg8gZ5DvJo9FGjD+gNaY59Ns3hlLD5/jZH5GBeftIss0jDbUoLg==" + } + }, + "npm:proc-log": { + "type": "npm", + "name": "npm:proc-log", + "data": { + "version": "5.0.0", + "packageName": "proc-log", + "hash": "sha512-Azwzvl90HaF0aCz1JrDdXQykFakSSNPaPoiZ9fm5qJIMHioDZEi7OAdRwSm6rSoPtY3Qutnm3L7ogmg3dc+wbQ==" + } + }, + "npm:process-warning@4.0.1": { + "type": "npm", + "name": "npm:process-warning@4.0.1", + "data": { + "version": "4.0.1", + "packageName": "process-warning", + "hash": "sha512-3c2LzQ3rY9d0hc1emcsHhfT9Jwz0cChib/QN89oME2R451w5fy3f0afAhERFZAwrbDU43wk12d0ORBpDVME50Q==" + } + }, + "npm:process-warning": { + "type": "npm", + "name": "npm:process-warning", + "data": { + "version": "5.0.0", + "packageName": "process-warning", + "hash": "sha512-a39t9ApHNx2L4+HBnQKqxxHNs1r7KF+Intd8Q/g1bUh6q0WIp9voPXJ/x0j+ZL45KF1pJd9+q2jLIRMfvEshkA==" + } + }, + "npm:progress": { + "type": "npm", + "name": "npm:progress", + "data": { + "version": "2.0.3", + "packageName": "progress", + "hash": "sha512-7PiHtLll5LdnKIMw100I+8xJXR5gW2QwWYkT6iJva0bXitZKa/XMrSbdmg3r2Xnaidz9Qumd0VPaMrZlF9V9sA==" + } + }, + "npm:promise-retry": { + "type": "npm", + "name": "npm:promise-retry", + "data": { + "version": "2.0.1", + "packageName": "promise-retry", + "hash": "sha512-y+WKFlBR8BGXnsNlIHFGPZmyDf3DFMoLhaflAnyZgV6rG6xu+JwesTo2Q9R6XwYmtmwAFCkAk3e35jEdoeh/3g==" + } + }, + "npm:prop-types": { + "type": "npm", + "name": "npm:prop-types", + "data": { + "version": "15.8.1", + "packageName": "prop-types", + "hash": "sha512-oj87CgZICdulUohogVAR7AjlC0327U4el4L6eAvOqCeudMDVU0NThNaV+b9Df4dXgSP1gXMTnPdhfe/2qDH5cg==" + } + }, + "npm:proper-lockfile": { + "type": "npm", + "name": "npm:proper-lockfile", + "data": { + "version": "4.1.2", + "packageName": "proper-lockfile", + "hash": "sha512-TjNPblN4BwAWMXU8s9AEz4JmQxnD1NNL7bNOY/AKUzyamc379FWASUhc/K1pL2noVb+XmZKLL68cjzLsiOAMaA==" + } + }, + "npm:proxy-addr": { + "type": "npm", + "name": "npm:proxy-addr", + "data": { + "version": "2.0.7", + "packageName": "proxy-addr", + "hash": "sha512-llQsMLSUDUPT44jdrU/O37qlnifitDP+ZwrmmZcoSKyLKvtZxpyV0n2/bD/N4tBAAZ/gJEdZU7KMraoK1+XYAg==" + } + }, + "npm:proxy-agent": { + "type": "npm", + "name": "npm:proxy-agent", + "data": { + "version": "6.5.0", + "packageName": "proxy-agent", + "hash": "sha512-TmatMXdr2KlRiA2CyDu8GqR8EjahTG3aY3nXjdzFyoZbmB8hrBsTyMezhULIXKnC0jpfjlmiZ3+EaCzoInSu/A==" + } + }, + "npm:proxy-from-env": { + "type": "npm", + "name": "npm:proxy-from-env", + "data": { + "version": "1.1.0", + "packageName": "proxy-from-env", + "hash": "sha512-D+zkORCbA9f1tdWRK0RaCR3GPv50cMxcrz4X8k5LTSUD1Dkw47mKJEZQNunItRTkWwgtaUSo1RVFRIG9ZXiFYg==" + } + }, + "npm:pump": { + "type": "npm", + "name": "npm:pump", + "data": { + "version": "3.0.3", + "packageName": "pump", + "hash": "sha512-todwxLMY7/heScKmntwQG8CXVkWUOdYxIvY2s0VWAAMh/nd8SoYiRaKjlr7+iCs984f2P8zvrfWcDDYVb73NfA==" + } + }, + "npm:punycode-regex": { + "type": "npm", + "name": "npm:punycode-regex", + "data": { + "version": "1.0.1", + "packageName": "punycode-regex", + "hash": "sha512-6twir6Wqa80MGTpqRMxxwWNHHdgQI+UC81g8YyYDY7UYiPIVQ20ZlskmXOWIq195eRzyGzyD3qT645OTz9AAZA==" + } + }, + "npm:punycode": { + "type": "npm", + "name": "npm:punycode", + "data": { + "version": "2.3.1", + "packageName": "punycode", + "hash": "sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg==" + } + }, + "npm:puppeteer-core": { + "type": "npm", + "name": "npm:puppeteer-core", + "data": { + "version": "24.40.0", + "packageName": "puppeteer-core", + "hash": "sha512-MWL3XbUCfVgGR0gRsidzT6oKJT2QydPLhMITU6HoVWiiv4gkb6gJi3pcdAa8q4HwjBTbqISOWVP4aJiiyUJvag==" + } + }, + "npm:puppeteer": { + "type": "npm", + "name": "npm:puppeteer", + "data": { + "version": "24.40.0", + "packageName": "puppeteer", + "hash": "sha512-IxQbDq93XHVVLWHrAkFP7F7iHvb9o0mgfsSIMlhHb+JM+JjM1V4v4MNSQfcRWJopx9dsNOr9adYv0U5fm9BJBQ==" + } + }, + "npm:pure-rand": { + "type": "npm", + "name": "npm:pure-rand", + "data": { + "version": "6.1.0", + "packageName": "pure-rand", + "hash": "sha512-bVWawvoZoBYpp6yIoQtQXHZjmz35RSVHnUOTefl8Vcjr8snTPY1wnpSPMWekcFwbxI6gtmT7rSYPFvz71ldiOA==" + } + }, + "npm:qs": { + "type": "npm", + "name": "npm:qs", + "data": { + "version": "6.14.0", + "packageName": "qs", + "hash": "sha512-YWWTjgABSKcvs/nWBi9PycY/JiPJqOD4JA6o9Sej2AtvSGarXxKC3OQSk4pAarbdQlKAh5D4FCQkJNkW+GAn3w==" + } + }, + "npm:quansync": { + "type": "npm", + "name": "npm:quansync", + "data": { + "version": "1.0.0", + "packageName": "quansync", + "hash": "sha512-5xZacEEufv3HSTPQuchrvV6soaiACMFnq1H8wkVioctoH3TRha9Sz66lOxRwPK/qZj7HPiSveih9yAyh98gvqA==" + } + }, + "npm:queue-microtask": { + "type": "npm", + "name": "npm:queue-microtask", + "data": { + "version": "1.2.3", + "packageName": "queue-microtask", + "hash": "sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==" + } + }, + "npm:quick-format-unescaped": { + "type": "npm", + "name": "npm:quick-format-unescaped", + "data": { + "version": "4.0.4", + "packageName": "quick-format-unescaped", + "hash": "sha512-tYC1Q1hgyRuHgloV/YXs2w15unPVh8qfu/qCTfhTYamaw7fyhumKa2yGpdSo87vY32rIclj+4fWYQXUMs9EHvg==" + } + }, + "npm:quick-lru": { + "type": "npm", + "name": "npm:quick-lru", + "data": { + "version": "5.1.1", + "packageName": "quick-lru", + "hash": "sha512-WuyALRjWPDGtt/wzJiadO5AXY+8hZ80hVpe6MyivgraREW751X3SbhRvG3eLKOYN+8VEvqLcf3wdnt44Z4S4SA==" + } + }, + "npm:quote-unquote": { + "type": "npm", + "name": "npm:quote-unquote", + "data": { + "version": "1.0.0", + "packageName": "quote-unquote", + "hash": "sha512-twwRO/ilhlG/FIgYeKGFqyHhoEhqgnKVkcmqMKi2r524gz3ZbDTcyFt38E9xjJI2vT+KbRNHVbnJ/e0I25Azwg==" + } + }, + "npm:radix3": { + "type": "npm", + "name": "npm:radix3", + "data": { + "version": "1.1.2", + "packageName": "radix3", + "hash": "sha512-b484I/7b8rDEdSDKckSSBA8knMpcdsXudlE/LNL639wFoHKwLbEkQFZHWEYwDC0wa0FKUcCY+GAF73Z7wxNVFA==" + } + }, + "npm:range-parser": { + "type": "npm", + "name": "npm:range-parser", + "data": { + "version": "1.2.1", + "packageName": "range-parser", + "hash": "sha512-Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg==" + } + }, + "npm:raw-body": { + "type": "npm", + "name": "npm:raw-body", + "data": { + "version": "3.0.2", + "packageName": "raw-body", + "hash": "sha512-K5zQjDllxWkf7Z5xJdV0/B0WTNqx6vxG70zJE4N0kBs4LovmEYWJzQGxC9bS9RAKu3bgM40lrd5zoLJ12MQ5BA==" + } + }, + "npm:rc9": { + "type": "npm", + "name": "npm:rc9", + "data": { + "version": "2.1.2", + "packageName": "rc9", + "hash": "sha512-btXCnMmRIBINM2LDZoEmOogIZU7Qe7zn4BpomSKZ/ykbLObuBdvG+mFq11DL6fjH1DRwHhrlgtYWG96bJiC7Cg==" + } + }, + "npm:rc": { + "type": "npm", + "name": "npm:rc", + "data": { + "version": "1.2.8", + "packageName": "rc", + "hash": "sha512-y3bGgqKj3QBdxLbLkomlohkvsA8gdAiUQlSBJnBhfn+BPxg4bc62d8TcBW15wavDfgexCgccckhcZvywyQYPOw==" + } + }, + "npm:re2": { + "type": "npm", + "name": "npm:re2", + "data": { + "version": "1.22.1", + "packageName": "re2", + "hash": "sha512-E4J0EtgyNLdIr0wTg0dQPefuiqNY29KaLacytiUAYYRzxCG+zOkWoUygt1rI+TA1LrhN49/njrfSO1DHtVC5Vw==" + } + }, + "npm:react-dom": { + "type": "npm", + "name": "npm:react-dom", + "data": { + "version": "19.2.4", + "packageName": "react-dom", + "hash": "sha512-AXJdLo8kgMbimY95O2aKQqsz2iWi9jMgKJhRBAxECE4IFxfcazB2LmzloIoibJI3C12IlY20+KFaLv+71bUJeQ==" + } + }, + "npm:react-is": { + "type": "npm", + "name": "npm:react-is", + "data": { + "version": "16.13.1", + "packageName": "react-is", + "hash": "sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ==" + } + }, + "npm:react-is@18.3.1": { + "type": "npm", + "name": "npm:react-is@18.3.1", + "data": { + "version": "18.3.1", + "packageName": "react-is", + "hash": "sha512-/LLMVyas0ljjAtoYiPqYiL8VWXzUUdThrmU5+n20DZv+a+ClRoevUzw5JxU+Ieh5/c87ytoTBV9G1FiKfNJdmg==" + } + }, + "npm:react-number-format": { + "type": "npm", + "name": "npm:react-number-format", + "data": { + "version": "5.4.4", + "packageName": "react-number-format", + "hash": "sha512-wOmoNZoOpvMminhifQYiYSTCLUDOiUbBunrMrMjA+dV52sY+vck1S4UhR6PkgnoCquvvMSeJjErXZ4qSaWCliA==" + } + }, + "npm:react-remove-scroll-bar": { + "type": "npm", + "name": "npm:react-remove-scroll-bar", + "data": { + "version": "2.3.8", + "packageName": "react-remove-scroll-bar", + "hash": "sha512-9r+yi9+mgU33AKcj6IbT9oRCO78WriSj6t/cF8DWBZJ9aOGPOTEDvdUDz1FwKim7QXWwmHqtdHnRJfhAxEG46Q==" + } + }, + "npm:react-remove-scroll": { + "type": "npm", + "name": "npm:react-remove-scroll", + "data": { + "version": "2.7.1", + "packageName": "react-remove-scroll", + "hash": "sha512-HpMh8+oahmIdOuS5aFKKY6Pyog+FNaZV/XyJOq7b4YFwsFHe5yYfdbIalI4k3vU2nSDql7YskmUseHsRrJqIPA==" + } + }, + "npm:react-streaming": { + "type": "npm", + "name": "npm:react-streaming", + "data": { + "version": "0.4.16", + "packageName": "react-streaming", + "hash": "sha512-qaDUklKjpmPStven+MvFFk3SWN+UaeIugBNwKgd97UPIR8IMUzk68gIg2iPR1fN7+HkrpLmTVwZE9dGoLZTcCA==" + } + }, + "npm:react-style-singleton": { + "type": "npm", + "name": "npm:react-style-singleton", + "data": { + "version": "2.2.3", + "packageName": "react-style-singleton", + "hash": "sha512-b6jSvxvVnyptAiLjbkWLE/lOnR4lfTtDAl+eUC7RZy+QQWc6wRzIV2CE6xBuMmDxc2qIihtDCZD5NPOFl7fRBQ==" + } + }, + "npm:react-textarea-autosize": { + "type": "npm", + "name": "npm:react-textarea-autosize", + "data": { + "version": "8.5.9", + "packageName": "react-textarea-autosize", + "hash": "sha512-U1DGlIQN5AwgjTyOEnI1oCcMuEr1pv1qOtklB2l4nyMGbHzWrI0eFsYK0zos2YWqAolJyG0IWJaqWmWj5ETh0A==" + } + }, + "npm:react": { + "type": "npm", + "name": "npm:react", + "data": { + "version": "19.2.4", + "packageName": "react", + "hash": "sha512-9nfp2hYpCwOjAN+8TZFGhtWEwgvWHXqESH8qT89AT/lWklpLON22Lc8pEtnpsZz7VmawabSU0gCjnj8aC0euHQ==" + } + }, + "npm:read-package-json-fast": { + "type": "npm", + "name": "npm:read-package-json-fast", + "data": { + "version": "4.0.0", + "packageName": "read-package-json-fast", + "hash": "sha512-qpt8EwugBWDw2cgE2W+/3oxC+KTez2uSVR8JU9Q36TXPAGCaozfQUs59v4j4GFpWTaw0i6hAZSvOmu1J0uOEUg==" + } + }, + "npm:readable-stream": { + "type": "npm", + "name": "npm:readable-stream", + "data": { + "version": "3.6.2", + "packageName": "readable-stream", + "hash": "sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==" + } + }, + "npm:readdirp": { + "type": "npm", + "name": "npm:readdirp", + "data": { + "version": "4.1.2", + "packageName": "readdirp", + "hash": "sha512-GDhwkLfywWL2s6vEjyhri+eXmfH6j1L7JE27WhqLeYzoh/A3DBaYGEj2H/HFZCn/kMfim73FXxEJTw06WtxQwg==" + } + }, + "npm:real-require": { + "type": "npm", + "name": "npm:real-require", + "data": { + "version": "0.2.0", + "packageName": "real-require", + "hash": "sha512-57frrGM/OCTLqLOAh0mhVA9VBMHd+9U7Zb2THMGdBUoZVOtGbJzjxsYGDJ3A9AYYCP4hn6y1TVbaOfzWtm5GFg==" + } + }, + "npm:reflect.getprototypeof": { + "type": "npm", + "name": "npm:reflect.getprototypeof", + "data": { + "version": "1.0.10", + "packageName": "reflect.getprototypeof", + "hash": "sha512-00o4I+DVrefhv+nX0ulyi3biSHCPDe+yLv5o/p6d/UVlirijB8E16FtfwSAi4g3tcqrQ4lRAqQSoFEZJehYEcw==" + } + }, + "npm:regexp-to-ast": { + "type": "npm", + "name": "npm:regexp-to-ast", + "data": { + "version": "0.5.0", + "packageName": "regexp-to-ast", + "hash": "sha512-tlbJqcMHnPKI9zSrystikWKwHkBqu2a/Sgw01h3zFjvYrMxEDYHzzoMZnUrbIfpTFEsoRnnviOXNCzFiSc54Qw==" + } + }, + "npm:regexp-tree": { + "type": "npm", + "name": "npm:regexp-tree", + "data": { + "version": "0.1.27", + "packageName": "regexp-tree", + "hash": "sha512-iETxpjK6YoRWJG5o6hXLwvjYAoW+FEZn9os0PD/b6AP6xQwsa/Y7lCVgIixBbUPMfhu+i2LtdeAqVTgGlQarfA==" + } + }, + "npm:regexp.prototype.flags": { + "type": "npm", + "name": "npm:regexp.prototype.flags", + "data": { + "version": "1.5.4", + "packageName": "regexp.prototype.flags", + "hash": "sha512-dYqgNSZbDwkaJ2ceRd9ojCGjBq+mOm9LmtXnAnEGyHhN/5R7iDW2TRw3h+o/jCFxus3P2LfWIIiwowAjANm7IA==" + } + }, + "npm:regexparam": { + "type": "npm", + "name": "npm:regexparam", + "data": { + "version": "3.0.0", + "packageName": "regexparam", + "hash": "sha512-RSYAtP31mvYLkAHrOlh25pCNQ5hWnT106VukGaaFfuJrZFkGRX5GhUAdPqpSDXxOhA2c4akmRuplv1mRqnBn6Q==" + } + }, + "npm:remeda": { + "type": "npm", + "name": "npm:remeda", + "data": { + "version": "2.33.4", + "packageName": "remeda", + "hash": "sha512-ygHswjlc/opg2VrtiYvUOPLjxjtdKvjGz1/plDhkG66hjNjFr1xmfrs2ClNFo/E6TyUFiwYNh53bKV26oBoMGQ==" + } + }, + "npm:require-directory": { + "type": "npm", + "name": "npm:require-directory", + "data": { + "version": "2.1.1", + "packageName": "require-directory", + "hash": "sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q==" + } + }, + "npm:require-from-string": { + "type": "npm", + "name": "npm:require-from-string", + "data": { + "version": "2.0.2", + "packageName": "require-from-string", + "hash": "sha512-Xf0nWe6RseziFMu+Ap9biiUbmplq6S9/p+7w7YXP/JBHhrUDDUhwa+vANyubuqfZWTveU//DYVGsDG7RKL/vEw==" + } + }, + "npm:require-one-of": { + "type": "npm", + "name": "npm:require-one-of", + "data": { + "version": "1.0.24", + "packageName": "require-one-of", + "hash": "sha512-aaj1WcxnuPnyTDH89d9dCret7OF+mYBed5imq+eotBeJ7wd2X3w6llRB7CTQ3Qsl3FAIoobDrRSEekUKHSDqKQ==" + } + }, + "npm:requires-port": { + "type": "npm", + "name": "npm:requires-port", + "data": { + "version": "1.0.0", + "packageName": "requires-port", + "hash": "sha512-KigOCHcocU3XODJxsu8i/j8T9tzT4adHiecwORRQ0ZZFcp7ahwXuRU1m+yuO90C5ZUyGeGfocHDI14M3L3yDAQ==" + } + }, + "npm:reselect": { + "type": "npm", + "name": "npm:reselect", + "data": { + "version": "4.1.8", + "packageName": "reselect", + "hash": "sha512-ab9EmR80F/zQTMNeneUr4cv+jSwPJgIlvEmVwLerwrWVbpLlBuls9XHzIeTFy4cegU2NHBp3va0LKOzU5qFEYQ==" + } + }, + "npm:resolve-alpn": { + "type": "npm", + "name": "npm:resolve-alpn", + "data": { + "version": "1.2.1", + "packageName": "resolve-alpn", + "hash": "sha512-0a1F4l73/ZFZOakJnQ3FvkJ2+gSTQWz/r2KE5OdDY0TxPm5h4GkqkWWfM47T7HsbnOtcJVEF4epCVy6u7Q3K+g==" + } + }, + "npm:resolve-from@4.0.0": { + "type": "npm", + "name": "npm:resolve-from@4.0.0", + "data": { + "version": "4.0.0", + "packageName": "resolve-from", + "hash": "sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==" + } + }, + "npm:resolve-from": { + "type": "npm", + "name": "npm:resolve-from", + "data": { + "version": "5.0.0", + "packageName": "resolve-from", + "hash": "sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw==" + } + }, + "npm:resolve-pkg-maps": { + "type": "npm", + "name": "npm:resolve-pkg-maps", + "data": { + "version": "1.0.0", + "packageName": "resolve-pkg-maps", + "hash": "sha512-seS2Tj26TBVOC2NIc2rOe2y2ZO7efxITtLZcGSOnHHNOQ7CkiUBfw0Iw2ck6xkIhPwLhKNLS8BO+hEpngQlqzw==" + } + }, + "npm:resolve.exports": { + "type": "npm", + "name": "npm:resolve.exports", + "data": { + "version": "2.0.3", + "packageName": "resolve.exports", + "hash": "sha512-OcXjMsGdhL4XnbShKpAcSqPMzQoYkYyhbEaeSko47MjRP9NfEQMhZkXL1DoFlt9LWQn4YttrdnV6X2OiyzBi+A==" + } + }, + "npm:resolve@1.22.10": { + "type": "npm", + "name": "npm:resolve@1.22.10", + "data": { + "version": "1.22.10", + "packageName": "resolve", + "hash": "sha512-NPRy+/ncIMeDlTAsuqwKIiferiawhefFJtkNSW0qZJEqMEb+qBt/77B/jGeeek+F0uOeN05CDa6HXbbIgtVX4w==" + } + }, + "npm:resolve": { + "type": "npm", + "name": "npm:resolve", + "data": { + "version": "2.0.0-next.5", + "packageName": "resolve", + "hash": "sha512-U7WjGVG9sH8tvjW5SmGbQuui75FiyjAX72HX15DwBBwF9dNiQZRQAg9nnPhYy+TUnE0+VcrttuvNI8oSxZcocA==" + } + }, + "npm:responselike": { + "type": "npm", + "name": "npm:responselike", + "data": { + "version": "2.0.1", + "packageName": "responselike", + "hash": "sha512-4gl03wn3hj1HP3yzgdI7d3lCkF95F21Pz4BPGvKHinyQzALR5CapwC8yIi0Rh58DEMQ/SguC03wFj2k0M/mHhw==" + } + }, + "npm:restore-cursor": { + "type": "npm", + "name": "npm:restore-cursor", + "data": { + "version": "3.1.0", + "packageName": "restore-cursor", + "hash": "sha512-l+sSefzHpj5qimhFSE5a8nufZYAM3sBSVMAPtYkmC+4EH2anSGaEMXSD0izRQbu9nfyQ9y5JrVmp7E8oZrUjvA==" + } + }, + "npm:ret": { + "type": "npm", + "name": "npm:ret", + "data": { + "version": "0.5.0", + "packageName": "ret", + "hash": "sha512-I1XxrZSQ+oErkRR4jYbAyEEu2I0avBvvMM5JN+6EBprOGRCs63ENqZ3vjavq8fBw2+62G5LF5XelKwuJpcvcxw==" + } + }, + "npm:retry@0.12.0": { + "type": "npm", + "name": "npm:retry@0.12.0", + "data": { + "version": "0.12.0", + "packageName": "retry", + "hash": "sha512-9LkiTwjUh6rT555DtE9rTX+BKByPfrMzEAtnlEtdEwr3Nkffwiihqe2bWADg+OQRjt9gl6ICdmB/ZFDCGAtSow==" + } + }, + "npm:retry": { + "type": "npm", + "name": "npm:retry", + "data": { + "version": "0.13.1", + "packageName": "retry", + "hash": "sha512-XQBQ3I8W1Cge0Seh+6gjj03LbmRFWuoszgK9ooCpwYIrhhoO80pfq4cUkU5DkknwfOfFteRwlZ56PYOGYyFWdg==" + } + }, + "npm:reusify": { + "type": "npm", + "name": "npm:reusify", + "data": { + "version": "1.1.0", + "packageName": "reusify", + "hash": "sha512-g6QUff04oZpHs0eG5p83rFLhHeV00ug/Yf9nZM6fLeUrPguBTkTQOdpAWWspMh55TZfVQDPaN3NQJfbVRAxdIw==" + } + }, + "npm:rfdc": { + "type": "npm", + "name": "npm:rfdc", + "data": { + "version": "1.4.1", + "packageName": "rfdc", + "hash": "sha512-q1b3N5QkRUWUl7iyylaaj3kOpIT0N2i9MqIEQXP73GVsN9cw3fdx8X63cEmWhJGi2PPCF23Ijp7ktmd39rawIA==" + } + }, + "npm:rimraf": { + "type": "npm", + "name": "npm:rimraf", + "data": { + "version": "6.1.3", + "packageName": "rimraf", + "hash": "sha512-LKg+Cr2ZF61fkcaK1UdkH2yEBBKnYjTyWzTJT6KNPcSPaiT7HSdhtMXQuN5wkTX0Xu72KQ1l8S42rlmexS2hSA==" + } + }, + "npm:rolldown-plugin-dts": { + "type": "npm", + "name": "npm:rolldown-plugin-dts", + "data": { + "version": "0.22.5", + "packageName": "rolldown-plugin-dts", + "hash": "sha512-M/HXfM4cboo+jONx9Z0X+CUf3B5tCi7ni+kR5fUW50Fp9AlZk0oVLesibGWgCXDKFp5lpgQ9yhKoImUFjl3VZw==" + } + }, + "npm:rolldown@1.0.0-beta.51": { + "type": "npm", + "name": "npm:rolldown@1.0.0-beta.51", + "data": { + "version": "1.0.0-beta.51", + "packageName": "rolldown", + "hash": "sha512-ZRLgPlS91l4JztLYEZnmMcd3Umcla1hkXJgiEiR4HloRJBBoeaX8qogTu5Jfu36rRMVLndzqYv0h+M5gJAkUfg==" + } + }, + "npm:rolldown@1.0.0-rc.11": { + "type": "npm", + "name": "npm:rolldown@1.0.0-rc.11", + "data": { + "version": "1.0.0-rc.11", + "packageName": "rolldown", + "hash": "sha512-NRjoKMusSjfRbSYiH3VSumlkgFe7kYAa3pzVOsVYVFY3zb5d7nS+a3KGQ7hJKXuYWbzJKPVQ9Wxq2UvyK+ENpw==" + } + }, + "npm:rolldown": { + "type": "npm", + "name": "npm:rolldown", + "data": { + "version": "1.0.0-rc.9", + "packageName": "rolldown", + "hash": "sha512-9EbgWge7ZH+yqb4d2EnELAntgPTWbfL8ajiTW+SyhJEC4qhBbkCKbqFV4Ge4zmu5ziQuVbWxb/XwLZ+RIO7E8Q==" + } + }, + "npm:router": { + "type": "npm", + "name": "npm:router", + "data": { + "version": "2.2.0", + "packageName": "router", + "hash": "sha512-nLTrUKm2UyiL7rlhapu/Zl45FwNgkZGaCpZbIHajDYgwlJCOzLSk+cIPAnsEqV955GjILJnKbdQC1nVPz+gAYQ==" + } + }, + "npm:run-parallel": { + "type": "npm", + "name": "npm:run-parallel", + "data": { + "version": "1.2.0", + "packageName": "run-parallel", + "hash": "sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==" + } + }, + "npm:safe-array-concat": { + "type": "npm", + "name": "npm:safe-array-concat", + "data": { + "version": "1.1.3", + "packageName": "safe-array-concat", + "hash": "sha512-AURm5f0jYEOydBj7VQlVvDrjeFgthDdEF5H1dP+6mNpoXOMo1quQqJ4wvJDyRZ9+pO3kGWoOdmV08cSv2aJV6Q==" + } + }, + "npm:safe-buffer": { + "type": "npm", + "name": "npm:safe-buffer", + "data": { + "version": "5.1.2", + "packageName": "safe-buffer", + "hash": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==" + } + }, + "npm:safe-buffer@5.2.1": { + "type": "npm", + "name": "npm:safe-buffer@5.2.1", + "data": { + "version": "5.2.1", + "packageName": "safe-buffer", + "hash": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==" + } + }, + "npm:safe-push-apply": { + "type": "npm", + "name": "npm:safe-push-apply", + "data": { + "version": "1.0.0", + "packageName": "safe-push-apply", + "hash": "sha512-iKE9w/Z7xCzUMIZqdBsp6pEQvwuEebH4vdpjcDWnyzaI6yl6O9FHvVpmGelvEHNsoY6wGblkxR6Zty/h00WiSA==" + } + }, + "npm:safe-regex-test": { + "type": "npm", + "name": "npm:safe-regex-test", + "data": { + "version": "1.1.0", + "packageName": "safe-regex-test", + "hash": "sha512-x/+Cz4YrimQxQccJf5mKEbIa1NzeCRNI5Ecl/ekmlYaampdNLPalVyIcCZNNH3MvmqBugV5TMYZXv0ljslUlaw==" + } + }, + "npm:safe-regex2": { + "type": "npm", + "name": "npm:safe-regex2", + "data": { + "version": "5.0.0", + "packageName": "safe-regex2", + "hash": "sha512-YwJwe5a51WlK7KbOJREPdjNrpViQBI3p4T50lfwPuDhZnE3XGVTlGvi+aolc5+RvxDD6bnUmjVsU9n1eboLUYw==" + } + }, + "npm:safe-stable-stringify": { + "type": "npm", + "name": "npm:safe-stable-stringify", + "data": { + "version": "2.5.0", + "packageName": "safe-stable-stringify", + "hash": "sha512-b3rppTKm9T+PsVCBEOUR46GWI7fdOs00VKZ1+9c1EWDaDMvjQc6tUwuFyIprgGgTcWoVHSKrU8H31ZHA2e0RHA==" + } + }, + "npm:safer-buffer": { + "type": "npm", + "name": "npm:safer-buffer", + "data": { + "version": "2.1.2", + "packageName": "safer-buffer", + "hash": "sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==" + } + }, + "npm:scheduler": { + "type": "npm", + "name": "npm:scheduler", + "data": { + "version": "0.27.0", + "packageName": "scheduler", + "hash": "sha512-eNv+WrVbKu1f3vbYJT/xtiF5syA5HPIMtf9IgY/nKg0sWqzAUEvqY/xm7OcZc/qafLx/iO9FgOmeSAp4v5ti/Q==" + } + }, + "npm:scule": { + "type": "npm", + "name": "npm:scule", + "data": { + "version": "1.3.0", + "packageName": "scule", + "hash": "sha512-6FtHJEvt+pVMIB9IBY+IcCJ6Z5f1iQnytgyfKMhDKgmzYG+TeH/wx1y3l27rshSbLiSanrR9ffZDrEsmjlQF2g==" + } + }, + "npm:secure-compare": { + "type": "npm", + "name": "npm:secure-compare", + "data": { + "version": "3.0.1", + "packageName": "secure-compare", + "hash": "sha512-AckIIV90rPDcBcglUwXPF3kg0P0qmPsPXAj6BBEENQE1p5yA1xfmDJzfi1Tappj37Pv2mVbKpL3Z1T+Nn7k1Qw==" + } + }, + "npm:secure-json-parse": { + "type": "npm", + "name": "npm:secure-json-parse", + "data": { + "version": "2.7.0", + "packageName": "secure-json-parse", + "hash": "sha512-6aU+Rwsezw7VR8/nyvKTx8QpWH9FrcYiXXlqC4z5d5XQBDRqtbfsRjnwGyqbi3gddNtWHuEk9OANUotL26qKUw==" + } + }, + "npm:secure-json-parse@4.1.0": { + "type": "npm", + "name": "npm:secure-json-parse@4.1.0", + "data": { + "version": "4.1.0", + "packageName": "secure-json-parse", + "hash": "sha512-l4KnYfEyqYJxDwlNVyRfO2E4NTHfMKAWdUuA8J0yve2Dz/E/PdBepY03RvyJpssIpRFwJoCD55wA+mEDs6ByWA==" + } + }, + "npm:semver": { + "type": "npm", + "name": "npm:semver", + "data": { + "version": "6.3.1", + "packageName": "semver", + "hash": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==" + } + }, + "npm:semver@7.7.4": { + "type": "npm", + "name": "npm:semver@7.7.4", + "data": { + "version": "7.7.4", + "packageName": "semver", + "hash": "sha512-vFKC2IEtQnVhpT78h1Yp8wzwrf8CM+MzKMHGJZfBtzhZNycRFnXsHk6E5TxIkkMsgNS7mdX3AGB7x2QM2di4lA==" + } + }, + "npm:send": { + "type": "npm", + "name": "npm:send", + "data": { + "version": "1.2.0", + "packageName": "send", + "hash": "sha512-uaW0WwXKpL9blXE2o0bRhoL2EGXIrZxQ2ZQ4mgcfoBxdFmQold+qWsD2jLrfZ0trjKL6vOw0j//eAwcALFjKSw==" + } + }, + "npm:seq-queue": { + "type": "npm", + "name": "npm:seq-queue", + "data": { + "version": "0.0.5", + "packageName": "seq-queue", + "hash": "sha512-hr3Wtp/GZIc/6DAGPDcV4/9WoZhjrkXsi5B/07QgX8tsdc6ilr7BFM6PM6rbdAX1kFSDYeZGLipIZZKyQP0O5Q==" + } + }, + "npm:serialize-error": { + "type": "npm", + "name": "npm:serialize-error", + "data": { + "version": "8.1.0", + "packageName": "serialize-error", + "hash": "sha512-3NnuWfM6vBYoy5gZFvHiYsVbafvI9vZv/+jlIigFn4oP4zjNPK3LhcY0xSCgeb1a5L8jO71Mit9LlNoi2UfDDQ==" + } + }, + "npm:seroval-plugins": { + "type": "npm", + "name": "npm:seroval-plugins", + "data": { + "version": "1.5.0", + "packageName": "seroval-plugins", + "hash": "sha512-EAHqADIQondwRZIdeW2I636zgsODzoBDwb3PT/+7TLDWyw1Dy/Xv7iGUIEXXav7usHDE9HVhOU61irI3EnyyHA==" + } + }, + "npm:seroval": { + "type": "npm", + "name": "npm:seroval", + "data": { + "version": "1.5.0", + "packageName": "seroval", + "hash": "sha512-OE4cvmJ1uSPrKorFIH9/w/Qwuvi/IMcGbv5RKgcJ/zjA/IohDLU6SVaxFN9FwajbP7nsX0dQqMDes1whk3y+yw==" + } + }, + "npm:serve-static": { + "type": "npm", + "name": "npm:serve-static", + "data": { + "version": "2.2.0", + "packageName": "serve-static", + "hash": "sha512-61g9pCh0Vnh7IutZjtLGGpTA355+OPn2TyDv/6ivP2h/AdAVX9azsoxmg2/M6nZeQZNYBEwIcsne1mJd9oQItQ==" + } + }, + "npm:set-cookie-parser": { + "type": "npm", + "name": "npm:set-cookie-parser", + "data": { + "version": "2.7.2", + "packageName": "set-cookie-parser", + "hash": "sha512-oeM1lpU/UvhTxw+g3cIfxXHyJRc/uidd3yK1P242gzHds0udQBYzs3y8j4gCCW+ZJ7ad0yctld8RYO+bdurlvw==" + } + }, + "npm:set-function-length": { + "type": "npm", + "name": "npm:set-function-length", + "data": { + "version": "1.2.2", + "packageName": "set-function-length", + "hash": "sha512-pgRc4hJ4/sNjWCSS9AmnS40x3bNMDTknHgL5UaMBTMyJnU90EgWh1Rz+MC9eFu4BuN/UwZjKQuY/1v3rM7HMfg==" + } + }, + "npm:set-function-name": { + "type": "npm", + "name": "npm:set-function-name", + "data": { + "version": "2.0.2", + "packageName": "set-function-name", + "hash": "sha512-7PGFlmtwsEADb0WYyvCMa1t+yke6daIG4Wirafur5kcf+MhUnPms1UeR0CKQdTZD81yESwMHbtn+TR+dMviakQ==" + } + }, + "npm:set-proto": { + "type": "npm", + "name": "npm:set-proto", + "data": { + "version": "1.0.0", + "packageName": "set-proto", + "hash": "sha512-RJRdvCo6IAnPdsvP/7m6bsQqNnn1FCBX5ZNtFL98MmFF/4xAIJTIg1YbHW5DC2W5SKZanrC6i4HsJqlajw/dZw==" + } + }, + "npm:setprototypeof": { + "type": "npm", + "name": "npm:setprototypeof", + "data": { + "version": "1.2.0", + "packageName": "setprototypeof", + "hash": "sha512-E5LDX7Wrp85Kil5bhZv46j8jOeboKq5JMmYM3gVGdGH8xFpPWXUMsNrlODCrkoxMEeNi/XZIwuRvY4XNwYMJpw==" + } + }, + "npm:shallow-equal": { + "type": "npm", + "name": "npm:shallow-equal", + "data": { + "version": "3.1.0", + "packageName": "shallow-equal", + "hash": "sha512-pfVOw8QZIXpMbhBWvzBISicvToTiM5WBF1EeAUZDDSb5Dt29yl4AYbyywbJFSEsRUMr7gJaxqCdr4L3tQf9wVg==" + } + }, + "npm:sharp@0.33.5": { + "type": "npm", + "name": "npm:sharp@0.33.5", + "data": { + "version": "0.33.5", + "packageName": "sharp", + "hash": "sha512-haPVm1EkS9pgvHrQ/F3Xy+hgcuMV0Wm9vfIBSiwZ05k+xgb0PkBQpGsAA/oWdDobNaZTH5ppvHtzCFbnSEwHVw==" + } + }, + "npm:sharp": { + "type": "npm", + "name": "npm:sharp", + "data": { + "version": "0.34.5", + "packageName": "sharp", + "hash": "sha512-Ou9I5Ft9WNcCbXrU9cMgPBcCK8LiwLqcbywW3t4oDV37n1pzpuNLsYiAV8eODnjbtQlSDwZ2cUEeQz4E54Hltg==" + } + }, + "npm:shebang-command": { + "type": "npm", + "name": "npm:shebang-command", + "data": { + "version": "2.0.0", + "packageName": "shebang-command", + "hash": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==" + } + }, + "npm:shebang-regex": { + "type": "npm", + "name": "npm:shebang-regex", + "data": { + "version": "3.0.0", + "packageName": "shebang-regex", + "hash": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==" + } + }, + "npm:shell-quote": { + "type": "npm", + "name": "npm:shell-quote", + "data": { + "version": "1.8.3", + "packageName": "shell-quote", + "hash": "sha512-ObmnIF4hXNg1BqhnHmgbDETF8dLPCggZWBjkQfhZpbszZnYur5DUljTcCHii5LC3J5E0yeO/1LIMyH+UvHQgyw==" + } + }, + "npm:side-channel-list": { + "type": "npm", + "name": "npm:side-channel-list", + "data": { + "version": "1.0.0", + "packageName": "side-channel-list", + "hash": "sha512-FCLHtRD/gnpCiCHEiJLOwdmFP+wzCmDEkc9y7NsYxeF4u7Btsn1ZuwgwJGxImImHicJArLP4R0yX4c2KCrMrTA==" + } + }, + "npm:side-channel-map": { + "type": "npm", + "name": "npm:side-channel-map", + "data": { + "version": "1.0.1", + "packageName": "side-channel-map", + "hash": "sha512-VCjCNfgMsby3tTdo02nbjtM/ewra6jPHmpThenkTYh8pG9ucZ/1P8So4u4FGBek/BjpOVsDCMoLA/iuBKIFXRA==" + } + }, + "npm:side-channel-weakmap": { + "type": "npm", + "name": "npm:side-channel-weakmap", + "data": { + "version": "1.0.2", + "packageName": "side-channel-weakmap", + "hash": "sha512-WPS/HvHQTYnHisLo9McqBHOJk2FkHO/tlpvldyrnem4aeQp4hai3gythswg6p01oSoTl58rcpiFAjF2br2Ak2A==" + } + }, + "npm:side-channel": { + "type": "npm", + "name": "npm:side-channel", + "data": { + "version": "1.1.0", + "packageName": "side-channel", + "hash": "sha512-ZX99e6tRweoUXqR+VBrslhda51Nh5MTQwou5tnUDgbtyM0dBgmhEDtWGP/xbKn6hqfPRHujUNwz5fy/wbbhnpw==" + } + }, + "npm:siginfo": { + "type": "npm", + "name": "npm:siginfo", + "data": { + "version": "2.0.0", + "packageName": "siginfo", + "hash": "sha512-ybx0WO1/8bSBLEWXZvEd7gMW3Sn3JFlW3TvX1nREbDLRNQNaeNN8WK0meBwPdAaOI7TtRRRJn/Es1zhrrCHu7g==" + } + }, + "npm:signal-exit@3.0.7": { + "type": "npm", + "name": "npm:signal-exit@3.0.7", + "data": { + "version": "3.0.7", + "packageName": "signal-exit", + "hash": "sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==" + } + }, + "npm:signal-exit": { + "type": "npm", + "name": "npm:signal-exit", + "data": { + "version": "4.1.0", + "packageName": "signal-exit", + "hash": "sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==" + } + }, + "npm:simple-concat": { + "type": "npm", + "name": "npm:simple-concat", + "data": { + "version": "1.0.1", + "packageName": "simple-concat", + "hash": "sha512-cSFtAPtRhljv69IK0hTVZQ+OfE9nePi/rtJmw5UjHeVyVroEqJXP1sFztKUy1qU+xvz3u/sfYJLa947b7nAN2Q==" + } + }, + "npm:simple-get": { + "type": "npm", + "name": "npm:simple-get", + "data": { + "version": "4.0.1", + "packageName": "simple-get", + "hash": "sha512-brv7p5WgH0jmQJr1ZDDfKDOSeWWg+OVypG99A/5vYGPqJ6pxiaHLy8nxtFjBA7oMa01ebA9gfh1uMCFqOuXxvA==" + } + }, + "npm:simple-swizzle": { + "type": "npm", + "name": "npm:simple-swizzle", + "data": { + "version": "0.2.4", + "packageName": "simple-swizzle", + "hash": "sha512-nAu1WFPQSMNr2Zn9PGSZK9AGn4t/y97lEm+MXTtUDwfP0ksAIX4nO+6ruD9Jwut4C49SB1Ws+fbXsm/yScWOHw==" + } + }, + "npm:sirv": { + "type": "npm", + "name": "npm:sirv", + "data": { + "version": "3.0.2", + "packageName": "sirv", + "hash": "sha512-2wcC/oGxHis/BoHkkPwldgiPSYcpZK3JU28WoMVv55yHJgcZ8rlXvuG9iZggz+sU1d4bRgIGASwyWqjxu3FM0g==" + } + }, + "npm:slash": { + "type": "npm", + "name": "npm:slash", + "data": { + "version": "5.1.0", + "packageName": "slash", + "hash": "sha512-ZA6oR3T/pEyuqwMgAKT0/hAv8oAXckzbkmR0UkUosQ+Mc4RxGoJkRmwHgHufaenlyAgE1Mxgpdcrf75y6XcnDg==" + } + }, + "npm:smart-buffer": { + "type": "npm", + "name": "npm:smart-buffer", + "data": { + "version": "4.2.0", + "packageName": "smart-buffer", + "hash": "sha512-94hK0Hh8rPqQl2xXc3HsaBoOXKV20MToPkcXvwbISWLEs+64sBq5kFgn2kJDHb1Pry9yrP0dxrCI9RRci7RXKg==" + } + }, + "npm:smol-toml": { + "type": "npm", + "name": "npm:smol-toml", + "data": { + "version": "1.5.2", + "packageName": "smol-toml", + "hash": "sha512-QlaZEqcAH3/RtNyet1IPIYPsEWAaYyXXv1Krsi+1L/QHppjX4Ifm8MQsBISz9vE8cHicIq3clogsheili5vhaQ==" + } + }, + "npm:socks-proxy-agent": { + "type": "npm", + "name": "npm:socks-proxy-agent", + "data": { + "version": "8.0.5", + "packageName": "socks-proxy-agent", + "hash": "sha512-HehCEsotFqbPW9sJ8WVYB6UbmIMv7kUUORIF2Nncq4VQvBfNBLibW9YZR5dlYCSUhwcD628pRllm7n+E+YTzJw==" + } + }, + "npm:socks": { + "type": "npm", + "name": "npm:socks", + "data": { + "version": "2.8.7", + "packageName": "socks", + "hash": "sha512-HLpt+uLy/pxB+bum/9DzAgiKS8CX1EvbWxI4zlmgGCExImLdiad2iCwXT5Z4c9c3Eq8rP2318mPW2c+QbtjK8A==" + } + }, + "npm:solid-element": { + "type": "npm", + "name": "npm:solid-element", + "data": { + "version": "1.9.1", + "packageName": "solid-element", + "hash": "sha512-baJy6Qz27oAUgkPlqOf3Y+7RsBiuVQrS51Nrh1ddDbrqrNPvJbIvehpUsTzLNFb2ZHIoHuNnDg330go/ZKcRdg==" + } + }, + "npm:solid-js": { + "type": "npm", + "name": "npm:solid-js", + "data": { + "version": "1.9.11", + "packageName": "solid-js", + "hash": "sha512-WEJtcc5mkh/BnHA6Yrg4whlF8g6QwpmXXRg4P2ztPmcKeHHlH4+djYecBLhSpecZY2RRECXYUwIc/C2r3yzQ4Q==" + } + }, + "npm:solid-motionone": { + "type": "npm", + "name": "npm:solid-motionone", + "data": { + "version": "1.0.4", + "packageName": "solid-motionone", + "hash": "sha512-aqEjgecoO9raDFznu/dEci7ORSmA26Kjj9J4Cn1Gyr0GZuOVdvsNxdxClTL9J40Aq/uYFx4GLwC8n70fMLHiuA==" + } + }, + "npm:solid-refresh": { + "type": "npm", + "name": "npm:solid-refresh", + "data": { + "version": "0.6.3", + "packageName": "solid-refresh", + "hash": "sha512-F3aPsX6hVw9ttm5LYlth8Q15x6MlI/J3Dn+o3EQyRTtTxidepSTwAYdozt01/YA+7ObcciagGEyXIopGZzQtbA==" + } + }, + "npm:sonic-boom": { + "type": "npm", + "name": "npm:sonic-boom", + "data": { + "version": "4.2.1", + "packageName": "sonic-boom", + "hash": "sha512-w6AxtubXa2wTXAUsZMMWERrsIRAdrK0Sc+FUytWvYAhBJLyuI4llrMIC1DtlNSdI99EI86KZum2MMq3EAZlF9Q==" + } + }, + "npm:source-map-js": { + "type": "npm", + "name": "npm:source-map-js", + "data": { + "version": "1.2.1", + "packageName": "source-map-js", + "hash": "sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA==" + } + }, + "npm:source-map-support": { + "type": "npm", + "name": "npm:source-map-support", + "data": { + "version": "0.5.21", + "packageName": "source-map-support", + "hash": "sha512-uBHU3L3czsIyYXKX88fdrGovxdSCoTGDRZ6SYXtSRxLZUzHg5P/66Ht6uoUlHu9EZod+inXhKo3qQgwXUT/y1w==" + } + }, + "npm:source-map": { + "type": "npm", + "name": "npm:source-map", + "data": { + "version": "0.6.1", + "packageName": "source-map", + "hash": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==" + } + }, + "npm:source-map@0.7.6": { + "type": "npm", + "name": "npm:source-map@0.7.6", + "data": { + "version": "0.7.6", + "packageName": "source-map", + "hash": "sha512-i5uvt8C3ikiWeNZSVZNWcfZPItFQOsYTUAOkcUPGd8DqDy1uOUikjt5dG+uRlwyvR108Fb9DOd4GvXfT0N2/uQ==" + } + }, + "npm:split2": { + "type": "npm", + "name": "npm:split2", + "data": { + "version": "4.2.0", + "packageName": "split2", + "hash": "sha512-UcjcJOWknrNkF6PLX83qcHM6KHgVKNkV62Y8a5uYDVv9ydGQVwAHMKqHdJje1VTWpljG0WYpCDhrCdAOYH4TWg==" + } + }, + "npm:sprintf-js": { + "type": "npm", + "name": "npm:sprintf-js", + "data": { + "version": "1.0.3", + "packageName": "sprintf-js", + "hash": "sha512-D9cPgkvLlV3t3IzL0D0YLvGA9Ahk4PcvVwUbN0dSGr1aP0Nrt4AEnTUbuGvquEC0mA64Gqt1fzirlRs5ibXx8g==" + } + }, + "npm:sqlstring": { + "type": "npm", + "name": "npm:sqlstring", + "data": { + "version": "2.3.3", + "packageName": "sqlstring", + "hash": "sha512-qC9iz2FlN7DQl3+wjwn3802RTyjCx7sDvfQEXchwa6CWOx07/WVfh91gBmQ9fahw8snwGEWU3xGzOt4tFyHLxg==" + } + }, + "npm:squirrelly": { + "type": "npm", + "name": "npm:squirrelly", + "data": { + "version": "9.1.0", + "packageName": "squirrelly", + "hash": "sha512-kvjFqb7qzC4gX4lkqSaU8QPvUHhDLMiDpxpz7a66vjTH0JtjLJqAXbPrc7ST61EefuuuW05sne2rjGskunrF2A==" + } + }, + "npm:srvx": { + "type": "npm", + "name": "npm:srvx", + "data": { + "version": "0.9.8", + "packageName": "srvx", + "hash": "sha512-RZaxTKJEE/14HYn8COLuUOJAt0U55N9l1Xf6jj+T0GoA01EUH1Xz5JtSUOI+EHn+AEgPCVn7gk6jHJffrr06fQ==" + } + }, + "npm:ssri": { + "type": "npm", + "name": "npm:ssri", + "data": { + "version": "12.0.0", + "packageName": "ssri", + "hash": "sha512-S7iGNosepx9RadX82oimUkvr0Ct7IjJbEbs4mJcTxst8um95J3sDYU1RBEOvdu6oL1Wek2ODI5i4MAw+dZ6cAQ==" + } + }, + "npm:stable": { + "type": "npm", + "name": "npm:stable", + "data": { + "version": "0.1.8", + "packageName": "stable", + "hash": "sha512-ji9qxRnOVfcuLDySj9qzhGSEFVobyt1kIOSkj1qZzYLzq7Tos/oUUWvotUPQLlrsidqsK6tBH89Bc9kL5zHA6w==" + } + }, + "npm:stackback": { + "type": "npm", + "name": "npm:stackback", + "data": { + "version": "0.0.2", + "packageName": "stackback", + "hash": "sha512-1XMJE5fQo1jGH6Y/7ebnwPOBEkIEnT4QF32d5R1+VXdXveM0IBMJt8zfaxX1P3QhVwrYe+576+jkANtSS2mBbw==" + } + }, + "npm:standaloner": { + "type": "npm", + "name": "npm:standaloner", + "data": { + "version": "0.1.11", + "packageName": "standaloner", + "hash": "sha512-JeLFj5rKTmy3UJj7/oGUVnmFaBIWmJQVP5Hv3s2D6Ju8kVPZYbGxOhMQS45QiEr2V0ngI83d/Vv4Zh62Ojs/rQ==" + } + }, + "npm:standaloner@0.2.2": { + "type": "npm", + "name": "npm:standaloner@0.2.2", + "data": { + "version": "0.2.2", + "packageName": "standaloner", + "hash": "sha512-u2petNp6YcEvRM96SIynC/ly4UI3EsevXGzdUcdAmXn7vA7iFaQCLd5+uyWRc7wSUsHfXck6VLEPrmI03Uy5Ug==" + } + }, + "npm:statuses": { + "type": "npm", + "name": "npm:statuses", + "data": { + "version": "2.0.2", + "packageName": "statuses", + "hash": "sha512-DvEy55V3DB7uknRo+4iOGT5fP1slR8wQohVdknigZPMpMstaKJQWhwiYBACJE3Ul2pTnATihhBYnRhZQHGBiRw==" + } + }, + "npm:std-env@3.10.0": { + "type": "npm", + "name": "npm:std-env@3.10.0", + "data": { + "version": "3.10.0", + "packageName": "std-env", + "hash": "sha512-5GS12FdOZNliM5mAOxFRg7Ir0pWz8MdpYm6AY6VPkGpbA7ZzmbzNcBJQ0GPvvyWgcY7QAhCgf9Uy89I03faLkg==" + } + }, + "npm:std-env": { + "type": "npm", + "name": "npm:std-env", + "data": { + "version": "4.0.0", + "packageName": "std-env", + "hash": "sha512-zUMPtQ/HBY3/50VbpkupYHbRroTRZJPRLvreamgErJVys0ceuzMkD44J/QjqhHjOzK42GQ3QZIeFG1OYfOtKqQ==" + } + }, + "npm:stop-iteration-iterator": { + "type": "npm", + "name": "npm:stop-iteration-iterator", + "data": { + "version": "1.1.0", + "packageName": "stop-iteration-iterator", + "hash": "sha512-eLoXW/DHyl62zxY4SCaIgnRhuMr6ri4juEYARS8E6sCEqzKpOiE521Ucofdx+KnDZl5xmvGYaaKCk5FEOxJCoQ==" + } + }, + "npm:stoppable": { + "type": "npm", + "name": "npm:stoppable", + "data": { + "version": "1.1.0", + "packageName": "stoppable", + "hash": "sha512-KXDYZ9dszj6bzvnEMRYvxgeTHU74QBFL54XKtP3nyMuJ81CFYtABZ3bAzL2EdFUaEwJOBOgENyFj3R7oTzDyyw==" + } + }, + "npm:streamx": { + "type": "npm", + "name": "npm:streamx", + "data": { + "version": "2.23.0", + "packageName": "streamx", + "hash": "sha512-kn+e44esVfn2Fa/O0CPFcex27fjIL6MkVae0Mm6q+E6f0hWv578YCERbv+4m02cjxvDsPKLnmxral/rR6lBMAg==" + } + }, + "npm:string-width": { + "type": "npm", + "name": "npm:string-width", + "data": { + "version": "4.2.3", + "packageName": "string-width", + "hash": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==" + } + }, + "npm:string-width@5.1.2": { + "type": "npm", + "name": "npm:string-width@5.1.2", + "data": { + "version": "5.1.2", + "packageName": "string-width", + "hash": "sha512-HnLOCR3vjcY8beoNLtcjZ5/nxn2afmME6lhrDrebokqMap+XbeW8n9TXpPDOqdGK5qcI3oT0GKTW6wC7EMiVqA==" + } + }, + "npm:string-width-cjs": { + "type": "npm", + "name": "npm:string-width-cjs", + "data": { + "version": "npm:string-width@4.2.3", + "packageName": "string-width-cjs", + "hash": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==" + } + }, + "npm:string.prototype.matchall": { + "type": "npm", + "name": "npm:string.prototype.matchall", + "data": { + "version": "4.0.12", + "packageName": "string.prototype.matchall", + "hash": "sha512-6CC9uyBL+/48dYizRf7H7VAYCMCNTBeM78x/VTUe9bFEaxBepPJDa1Ow99LqI/1yF7kuy7Q3cQsYMrcjGUcskA==" + } + }, + "npm:string.prototype.repeat": { + "type": "npm", + "name": "npm:string.prototype.repeat", + "data": { + "version": "1.0.0", + "packageName": "string.prototype.repeat", + "hash": "sha512-0u/TldDbKD8bFCQ/4f5+mNRrXwZ8hg2w7ZR8wa16e8z9XpePWl3eGEcUD0OXpEH/VJH/2G3gjUtR3ZOiBe2S/w==" + } + }, + "npm:string.prototype.trim": { + "type": "npm", + "name": "npm:string.prototype.trim", + "data": { + "version": "1.2.10", + "packageName": "string.prototype.trim", + "hash": "sha512-Rs66F0P/1kedk5lyYyH9uBzuiI/kNRmwJAR9quK6VOtIpZ2G+hMZd+HQbbv25MgCA6gEffoMZYxlTod4WcdrKA==" + } + }, + "npm:string.prototype.trimend": { + "type": "npm", + "name": "npm:string.prototype.trimend", + "data": { + "version": "1.0.9", + "packageName": "string.prototype.trimend", + "hash": "sha512-G7Ok5C6E/j4SGfyLCloXTrngQIQU3PWtXGst3yM7Bea9FRURf1S42ZHlZZtsNque2FN2PoUhfZXYLNWwEr4dLQ==" + } + }, + "npm:string.prototype.trimstart": { + "type": "npm", + "name": "npm:string.prototype.trimstart", + "data": { + "version": "1.0.8", + "packageName": "string.prototype.trimstart", + "hash": "sha512-UXSH262CSZY1tfu3G3Secr6uGLCFVPMhIqHjlgCUtCCcgihYc/xKs9djMTMUOb2j1mVSeU8EU6NWc/iQKU6Gfg==" + } + }, + "npm:string_decoder": { + "type": "npm", + "name": "npm:string_decoder", + "data": { + "version": "1.3.0", + "packageName": "string_decoder", + "hash": "sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA==" + } + }, + "npm:strip-ansi@6.0.1": { + "type": "npm", + "name": "npm:strip-ansi@6.0.1", + "data": { + "version": "6.0.1", + "packageName": "strip-ansi", + "hash": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==" + } + }, + "npm:strip-ansi": { + "type": "npm", + "name": "npm:strip-ansi", + "data": { + "version": "7.1.2", + "packageName": "strip-ansi", + "hash": "sha512-gmBGslpoQJtgnMAvOVqGZpEz9dyoKTCzy2nfz/n8aIFhN/jCE/rCmcxabB6jOOHV+0WNnylOxaxBQPSvcWklhA==" + } + }, + "npm:strip-ansi-cjs": { + "type": "npm", + "name": "npm:strip-ansi-cjs", + "data": { + "version": "npm:strip-ansi@6.0.1", + "packageName": "strip-ansi-cjs", + "hash": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==" + } + }, + "npm:strip-bom": { + "type": "npm", + "name": "npm:strip-bom", + "data": { + "version": "3.0.0", + "packageName": "strip-bom", + "hash": "sha512-vavAMRXOgBVNF6nyEEmL3DBK19iRpDcoIwW+swQ+CbGiu7lju6t+JklA1MHweoWtadgt4ISVUsXLyDq34ddcwA==" + } + }, + "npm:strip-final-newline": { + "type": "npm", + "name": "npm:strip-final-newline", + "data": { + "version": "4.0.0", + "packageName": "strip-final-newline", + "hash": "sha512-aulFJcD6YK8V1G7iRB5tigAP4TsHBZZrOV8pjV++zdUwmeV8uzbY7yn6h9MswN62adStNZFuCIx4haBnRuMDaw==" + } + }, + "npm:strip-json-comments@2.0.1": { + "type": "npm", + "name": "npm:strip-json-comments@2.0.1", + "data": { + "version": "2.0.1", + "packageName": "strip-json-comments", + "hash": "sha512-4gB8na07fecVVkOI6Rs4e7T6NOTki5EmL7TUduTs6bu3EdnSycntVJ4re8kgZA+wx9IueI2Y11bfbgwtzuE0KQ==" + } + }, + "npm:strip-json-comments@3.1.1": { + "type": "npm", + "name": "npm:strip-json-comments@3.1.1", + "data": { + "version": "3.1.1", + "packageName": "strip-json-comments", + "hash": "sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==" + } + }, + "npm:strip-json-comments": { + "type": "npm", + "name": "npm:strip-json-comments", + "data": { + "version": "5.0.3", + "packageName": "strip-json-comments", + "hash": "sha512-1tB5mhVo7U+ETBKNf92xT4hrQa3pm0MZ0PQvuDnWgAAGHDsfp4lPSpiS6psrSiet87wyGPh9ft6wmhOMQ0hDiw==" + } + }, + "npm:style-to-object": { + "type": "npm", + "name": "npm:style-to-object", + "data": { + "version": "1.0.11", + "packageName": "style-to-object", + "hash": "sha512-5A560JmXr7wDyGLK12Nq/EYS38VkGlglVzkis1JEdbGWSnbQIEhZzTJhzURXN5/8WwwFCs/f/VVcmkTppbXLow==" + } + }, + "npm:stylehacks": { + "type": "npm", + "name": "npm:stylehacks", + "data": { + "version": "5.1.1", + "packageName": "stylehacks", + "hash": "sha512-sBpcd5Hx7G6seo7b1LkpttvTz7ikD0LlH5RmdcBNb6fFR0Fl7LQwHDFr300q4cwUqi+IYrFGmsIHieMBfnN/Bw==" + } + }, + "npm:sugarss": { + "type": "npm", + "name": "npm:sugarss", + "data": { + "version": "5.0.1", + "packageName": "sugarss", + "hash": "sha512-ctS5RYCBVvPoZAnzIaX5QSShK8ZiZxD5HUqSxlusvEMC+QZQIPCPOIJg6aceFX+K2rf4+SH89eu++h1Zmsr2nw==" + } + }, + "npm:superlock": { + "type": "npm", + "name": "npm:superlock", + "data": { + "version": "1.2.6", + "packageName": "superlock", + "hash": "sha512-V8XeWhjfZK1YA80gEGppesCtwXwGaqqoy1IoPRCZaap+sSgsDtRatAQlEfwoyHaHuR/ZR9KIk7JEpY96oRJ7TA==" + } + }, + "npm:supports-color@10.2.2": { + "type": "npm", + "name": "npm:supports-color@10.2.2", + "data": { + "version": "10.2.2", + "packageName": "supports-color", + "hash": "sha512-SS+jx45GF1QjgEXQx4NJZV9ImqmO2NPz5FNsIHrsDjh2YsHnawpan7SNQ1o8NuhrbHZy9AZhIoCUiCeaW/C80g==" + } + }, + "npm:supports-color": { + "type": "npm", + "name": "npm:supports-color", + "data": { + "version": "7.2.0", + "packageName": "supports-color", + "hash": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==" + } + }, + "npm:supports-preserve-symlinks-flag": { + "type": "npm", + "name": "npm:supports-preserve-symlinks-flag", + "data": { + "version": "1.0.0", + "packageName": "supports-preserve-symlinks-flag", + "hash": "sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==" + } + }, + "npm:svg-gradient": { + "type": "npm", + "name": "npm:svg-gradient", + "data": { + "version": "1.0.4", + "packageName": "svg-gradient", + "hash": "sha512-ugzdjn3dVLI3NG/UXzgL8hRcFS1Dwcj/EzXJ04F6EGgHGc5BbCGND3MhLcYsHeUICoUBnzbTXgNUKK2wMPm10Q==" + } + }, + "npm:svgo": { + "type": "npm", + "name": "npm:svgo", + "data": { + "version": "2.8.0", + "packageName": "svgo", + "hash": "sha512-+N/Q9kV1+F+UeWYoSiULYo4xYSDQlTgb+ayMobAXPwMnLvop7oxKMo9OzIrX5x3eS4L4f2UHhc9axXwY8DpChg==" + } + }, + "npm:synckit": { + "type": "npm", + "name": "npm:synckit", + "data": { + "version": "0.11.12", + "packageName": "synckit", + "hash": "sha512-Bh7QjT8/SuKUIfObSXNHNSK6WHo6J1tHCqJsuaFDP7gP0fkzSfTxI8y85JrppZ0h8l0maIgc2tfuZQ6/t3GtnQ==" + } + }, + "npm:tabbable": { + "type": "npm", + "name": "npm:tabbable", + "data": { + "version": "6.2.0", + "packageName": "tabbable", + "hash": "sha512-Cat63mxsVJlzYvN51JmVXIgNoUokrIaT2zLclCXjRd8boZ0004U4KCs/sToJ75C6sdlByWxpYnb5Boif1VSFew==" + } + }, + "npm:tailwind-merge": { + "type": "npm", + "name": "npm:tailwind-merge", + "data": { + "version": "3.5.0", + "packageName": "tailwind-merge", + "hash": "sha512-I8K9wewnVDkL1NTGoqWmVEIlUcB9gFriAEkXkfCjX5ib8ezGxtR3xD7iZIxrfArjEsH7F1CHD4RFUtxefdqV/A==" + } + }, + "npm:tailwindcss": { + "type": "npm", + "name": "npm:tailwindcss", + "data": { + "version": "4.2.2", + "packageName": "tailwindcss", + "hash": "sha512-KWBIxs1Xb6NoLdMVqhbhgwZf2PGBpPEiwOqgI4pFIYbNTfBXiKYyWoTsXgBQ9WFg/OlhnvHaY+AEpW7wSmFo2Q==" + } + }, + "npm:tapable": { + "type": "npm", + "name": "npm:tapable", + "data": { + "version": "2.3.0", + "packageName": "tapable", + "hash": "sha512-g9ljZiwki/LfxmQADO3dEY1CbpmXT5Hm2fJ+QaGKwSXUylMybePR7/67YW7jOrrvjEgL1Fmz5kzyAjWVWLlucg==" + } + }, + "npm:tar-fs@2.1.4": { + "type": "npm", + "name": "npm:tar-fs@2.1.4", + "data": { + "version": "2.1.4", + "packageName": "tar-fs", + "hash": "sha512-mDAjwmZdh7LTT6pNleZ05Yt65HC3E+NiQzl672vQG38jIrehtJk/J3mNwIg+vShQPcLF/LV7CMnDW6vjj6sfYQ==" + } + }, + "npm:tar-fs": { + "type": "npm", + "name": "npm:tar-fs", + "data": { + "version": "3.1.1", + "packageName": "tar-fs", + "hash": "sha512-LZA0oaPOc2fVo82Txf3gw+AkEd38szODlptMYejQUhndHMLQ9M059uXR+AfS7DNo0NpINvSqDsvyaCrBVkptWg==" + } + }, + "npm:tar-stream": { + "type": "npm", + "name": "npm:tar-stream", + "data": { + "version": "2.2.0", + "packageName": "tar-stream", + "hash": "sha512-ujeqbceABgwMZxEJnk2HDY2DlnUZ+9oEcb1KzTVfYHio0UE6dG71n60d8D2I4qNvleWrrXpmjpt7vZeF1LnMZQ==" + } + }, + "npm:tar-stream@3.1.7": { + "type": "npm", + "name": "npm:tar-stream@3.1.7", + "data": { + "version": "3.1.7", + "packageName": "tar-stream", + "hash": "sha512-qJj60CXt7IU1Ffyc3NJMjh6EkuCFej46zUqJ4J7pqYlThyd9bO0XBTmcOIhSzZJVWfsLks0+nle/j538YAW9RQ==" + } + }, + "npm:tar": { + "type": "npm", + "name": "npm:tar", + "data": { + "version": "7.5.1", + "packageName": "tar", + "hash": "sha512-nlGpxf+hv0v7GkWBK2V9spgactGOp0qvfWRxUMjqHyzrt3SgwE48DIv/FhqPHJYLHpgW1opq3nERbz5Anq7n1g==" + } + }, + "npm:telefunc": { + "type": "npm", + "name": "npm:telefunc", + "data": { + "version": "0.2.19", + "packageName": "telefunc", + "hash": "sha512-bCN3OtmAsRGXrsz23BFUENGSSOXJ3+5GEu5VTWGeWNw+bnWNkoR7h24zEmvlwbYi7g7mtzGndsdEVIhoA2R87g==" + } + }, + "npm:text-decoder": { + "type": "npm", + "name": "npm:text-decoder", + "data": { + "version": "1.2.3", + "packageName": "text-decoder", + "hash": "sha512-3/o9z3X0X0fTupwsYvR03pJ/DjWuqqrfwBgTQzdWDiQSm9KitAyz/9WqsT2JQW7KV2m+bC2ol/zqpW37NHxLaA==" + } + }, + "npm:thread-stream": { + "type": "npm", + "name": "npm:thread-stream", + "data": { + "version": "4.0.0", + "packageName": "thread-stream", + "hash": "sha512-4iMVL6HAINXWf1ZKZjIPcz5wYaOdPhtO8ATvZ+Xqp3BTdaqtAwQkNmKORqcIo5YkQqGXq5cwfswDwMqqQNrpJA==" + } + }, + "npm:tinybench": { + "type": "npm", + "name": "npm:tinybench", + "data": { + "version": "2.9.0", + "packageName": "tinybench", + "hash": "sha512-0+DUvqWMValLmha6lr4kD8iAMK1HzV0/aKnCtWb9v9641TnP/MFb7Pc2bxoxQjTXAErryXVgUOfv2YqNllqGeg==" + } + }, + "npm:tinyexec": { + "type": "npm", + "name": "npm:tinyexec", + "data": { + "version": "1.0.4", + "packageName": "tinyexec", + "hash": "sha512-u9r3uZC0bdpGOXtlxUIdwf9pkmvhqJdrVCH9fapQtgy/OeTTMZ1nqH7agtvEfmGui6e1XxjcdrlxvxJvc3sMqw==" + } + }, + "npm:tinyglobby": { + "type": "npm", + "name": "npm:tinyglobby", + "data": { + "version": "0.2.15", + "packageName": "tinyglobby", + "hash": "sha512-j2Zq4NyQYG5XMST4cbs02Ak8iJUdxRM0XI5QyxXuZOzKOINmWurp3smXu3y5wDcJrptwpSjgXHzIQxR0omXljQ==" + } + }, + "npm:tinyrainbow": { + "type": "npm", + "name": "npm:tinyrainbow", + "data": { + "version": "3.0.3", + "packageName": "tinyrainbow", + "hash": "sha512-PSkbLUoxOFRzJYjjxHJt9xro7D+iilgMX/C9lawzVuYiIdcihh9DXmVibBe8lmcFrRi/VzlPjBxbN7rH24q8/Q==" + } + }, + "npm:tlds": { + "type": "npm", + "name": "npm:tlds", + "data": { + "version": "1.260.0", + "packageName": "tlds", + "hash": "sha512-78+28EWBhCEE7qlyaHA9OR3IPvbCLiDh3Ckla593TksfFc9vfTsgvH7eS+dr3o9qr31gwGbogcI16yN91PoRjQ==" + } + }, + "npm:tldts-core": { + "type": "npm", + "name": "npm:tldts-core", + "data": { + "version": "7.0.25", + "packageName": "tldts-core", + "hash": "sha512-ZjCZK0rppSBu7rjHYDYsEaMOIbbT+nWF57hKkv4IUmZWBNrBWBOjIElc0mKRgLM8bm7x/BBlof6t2gi/Oq/Asw==" + } + }, + "npm:tldts-experimental": { + "type": "npm", + "name": "npm:tldts-experimental", + "data": { + "version": "7.0.25", + "packageName": "tldts-experimental", + "hash": "sha512-rFB8lPWHAf4II9+Zdlc6dwcJLIe6sqEzndcjfbcv9PdsFTlNYBgRI4y9aJzo7VMHvg/GRaUlFK+qZUyKpcE6zA==" + } + }, + "npm:tldts": { + "type": "npm", + "name": "npm:tldts", + "data": { + "version": "7.0.17", + "packageName": "tldts", + "hash": "sha512-Y1KQBgDd/NUc+LfOtKS6mNsC9CCaH+m2P1RoIZy7RAPo3C3/t8X45+zgut31cRZtZ3xKPjfn3TkGTrctC2TQIQ==" + } + }, + "npm:tmp": { + "type": "npm", + "name": "npm:tmp", + "data": { + "version": "0.2.5", + "packageName": "tmp", + "hash": "sha512-voyz6MApa1rQGUxT3E+BK7/ROe8itEx7vD8/HEvt4xwXucvQ5G5oeEiHkmHZJuBO21RpOf+YYm9MOivj709jow==" + } + }, + "npm:to-regex-range": { + "type": "npm", + "name": "npm:to-regex-range", + "data": { + "version": "5.0.1", + "packageName": "to-regex-range", + "hash": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==" + } + }, + "npm:toad-cache": { + "type": "npm", + "name": "npm:toad-cache", + "data": { + "version": "3.7.0", + "packageName": "toad-cache", + "hash": "sha512-/m8M+2BJUpoJdgAHoG+baCwBT+tf2VraSfkBgl0Y00qIWt41DJ8R5B8nsEw0I58YwF5IZH6z24/2TobDKnqSWw==" + } + }, + "npm:toidentifier": { + "type": "npm", + "name": "npm:toidentifier", + "data": { + "version": "1.0.1", + "packageName": "toidentifier", + "hash": "sha512-o5sSPKEkg/DIQNmH43V0/uerLrpzVedkUh8tGNvaeXpfpuwjKenlSox/2O/BTlZUtEe+JG7s5YhEz608PlAHRA==" + } + }, + "npm:totalist": { + "type": "npm", + "name": "npm:totalist", + "data": { + "version": "3.0.1", + "packageName": "totalist", + "hash": "sha512-sf4i37nQ2LBx4m3wB74y+ubopq6W/dIzXg0FDGjsYnZHVa1Da8FH853wlL2gtUhg+xJXjfk3kUZS3BRoQeoQBQ==" + } + }, + "npm:tough-cookie": { + "type": "npm", + "name": "npm:tough-cookie", + "data": { + "version": "6.0.0", + "packageName": "tough-cookie", + "hash": "sha512-kXuRi1mtaKMrsLUxz3sQYvVl37B0Ns6MzfrtV5DvJceE9bPyspOqk9xxv7XbZWcfLWbFmm997vl83qUWVJA64w==" + } + }, + "npm:tr46": { + "type": "npm", + "name": "npm:tr46", + "data": { + "version": "0.0.3", + "packageName": "tr46", + "hash": "sha512-N3WMsuqV66lT30CrXNbEjx4GEwlow3v6rr4mCcv6prnfwhS01rkgyFdjPNBYd9br7LpXV1+Emh01fHnq2Gdgrw==" + } + }, + "npm:tree-kill": { + "type": "npm", + "name": "npm:tree-kill", + "data": { + "version": "1.2.2", + "packageName": "tree-kill", + "hash": "sha512-L0Orpi8qGpRG//Nd+H90vFB+3iHnue1zSSGmNOOCh1GLJ7rUKVwV2HvijphGQS2UmhUZewS9VgvxYIdgr+fG1A==" + } + }, + "npm:ts-api-utils": { + "type": "npm", + "name": "npm:ts-api-utils", + "data": { + "version": "2.4.0", + "packageName": "ts-api-utils", + "hash": "sha512-3TaVTaAv2gTiMB35i3FiGJaRfwb3Pyn/j3m/bfAvGe8FB7CF6u+LMYqYlDh7reQf7UNvoTvdfAqHGmPGOSsPmA==" + } + }, + "npm:ts-deepmerge": { + "type": "npm", + "name": "npm:ts-deepmerge", + "data": { + "version": "7.0.3", + "packageName": "ts-deepmerge", + "hash": "sha512-Du/ZW2RfwV/D4cmA5rXafYjBQVuvu4qGiEEla4EmEHVHgRdx68Gftx7i66jn2bzHPwSVZY36Ae6OuDn9el4ZKA==" + } + }, + "npm:ts-morph": { + "type": "npm", + "name": "npm:ts-morph", + "data": { + "version": "26.0.0", + "packageName": "ts-morph", + "hash": "sha512-ztMO++owQnz8c/gIENcM9XfCEzgoGphTv+nKpYNM1bgsdOVC/jRZuEBf6N+mLLDNg68Kl+GgUZfOySaRiG1/Ug==" + } + }, + "npm:tsconfig-paths": { + "type": "npm", + "name": "npm:tsconfig-paths", + "data": { + "version": "4.2.0", + "packageName": "tsconfig-paths", + "hash": "sha512-NoZ4roiN7LnbKn9QqE1amc9DJfzvZXxF4xDavcOWt1BPkdx+m+0gJuPM+S0vCe7zTJMYUP0R8pO2XMr+Y8oLIg==" + } + }, + "npm:tsdown": { + "type": "npm", + "name": "npm:tsdown", + "data": { + "version": "0.21.4", + "packageName": "tsdown", + "hash": "sha512-Q/kBi8SXkr4X6JI/NAZKZY1UuiEcbuXtIskL4tZCsgpDiEPM/2W6lC+OonNA31S+V3KsWedFvbFDBs23hvt+Aw==" + } + }, + "npm:tslib": { + "type": "npm", + "name": "npm:tslib", + "data": { + "version": "2.8.1", + "packageName": "tslib", + "hash": "sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w==" + } + }, + "npm:tsx": { + "type": "npm", + "name": "npm:tsx", + "data": { + "version": "4.21.0", + "packageName": "tsx", + "hash": "sha512-5C1sg4USs1lfG0GFb2RLXsdpXqBSEhAaA/0kPL01wxzpMqLILNxIxIOKiILz+cdg/pLnOUxFYOR5yhHU666wbw==" + } + }, + "npm:tunnel-agent": { + "type": "npm", + "name": "npm:tunnel-agent", + "data": { + "version": "0.6.0", + "packageName": "tunnel-agent", + "hash": "sha512-McnNiV1l8RYeY8tBgEpuodCC1mLUdbSN+CYBL7kJsJNInOP8UjDDEwdk6Mw60vdLLrr5NHKZhMAOSrR2NZuQ+w==" + } + }, + "npm:turbo": { + "type": "npm", + "name": "npm:turbo", + "data": { + "version": "2.8.20", + "packageName": "turbo", + "hash": "sha512-Rb4qk5YT8RUwwdXtkLpkVhNEe/lor6+WV7S5tTlLpxSz6MjV5Qi8jGNn4gS6NAvrYGA/rNrE6YUQM85sCZUDbQ==" + } + }, + "npm:tw-animate-css": { + "type": "npm", + "name": "npm:tw-animate-css", + "data": { + "version": "1.4.0", + "packageName": "tw-animate-css", + "hash": "sha512-7bziOlRqH0hJx80h/3mbicLW7o8qLsH5+RaLR2t+OHM3D0JlWGODQKQ4cxbK7WlvmUxpcj6Kgu6EKqjrGFe3QQ==" + } + }, + "npm:type-check": { + "type": "npm", + "name": "npm:type-check", + "data": { + "version": "0.4.0", + "packageName": "type-check", + "hash": "sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==" + } + }, + "npm:type-fest@0.20.2": { + "type": "npm", + "name": "npm:type-fest@0.20.2", + "data": { + "version": "0.20.2", + "packageName": "type-fest", + "hash": "sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==" + } + }, + "npm:type-fest": { + "type": "npm", + "name": "npm:type-fest", + "data": { + "version": "4.41.0", + "packageName": "type-fest", + "hash": "sha512-TeTSQ6H5YHvpqVwBRcnLDCBnDOHWYu7IvGbHT6N8AOymcr9PJGjc1GTtiWZTYg0NCgYwvnYWEkVChQAr9bjfwA==" + } + }, + "npm:type-is": { + "type": "npm", + "name": "npm:type-is", + "data": { + "version": "2.0.1", + "packageName": "type-is", + "hash": "sha512-OZs6gsjF4vMp32qrCbiVSkrFmXtG/AZhY3t0iAMrMBiAZyV9oALtXO8hsrHbMXF9x6L3grlFuwW2oAz7cav+Gw==" + } + }, + "npm:type-level-regexp": { + "type": "npm", + "name": "npm:type-level-regexp", + "data": { + "version": "0.1.17", + "packageName": "type-level-regexp", + "hash": "sha512-wTk4DH3cxwk196uGLK/E9pE45aLfeKJacKmcEgEOA/q5dnPGNxXt0cfYdFxb57L+sEpf1oJH4Dnx/pnRcku9jg==" + } + }, + "npm:typed-array-buffer": { + "type": "npm", + "name": "npm:typed-array-buffer", + "data": { + "version": "1.0.3", + "packageName": "typed-array-buffer", + "hash": "sha512-nAYYwfY3qnzX30IkA6AQZjVbtK6duGontcQm1WSG1MD94YLqK0515GNApXkoxKOWMusVssAHWLh9SeaoefYFGw==" + } + }, + "npm:typed-array-byte-length": { + "type": "npm", + "name": "npm:typed-array-byte-length", + "data": { + "version": "1.0.3", + "packageName": "typed-array-byte-length", + "hash": "sha512-BaXgOuIxz8n8pIq3e7Atg/7s+DpiYrxn4vdot3w9KbnBhcRQq6o3xemQdIfynqSeXeDrF32x+WvfzmOjPiY9lg==" + } + }, + "npm:typed-array-byte-offset": { + "type": "npm", + "name": "npm:typed-array-byte-offset", + "data": { + "version": "1.0.4", + "packageName": "typed-array-byte-offset", + "hash": "sha512-bTlAFB/FBYMcuX81gbL4OcpH5PmlFHqlCCpAl8AlEzMz5k53oNDvN8p1PNOWLEmI2x4orp3raOFB51tv9X+MFQ==" + } + }, + "npm:typed-array-length": { + "type": "npm", + "name": "npm:typed-array-length", + "data": { + "version": "1.0.7", + "packageName": "typed-array-length", + "hash": "sha512-3KS2b+kL7fsuk/eJZ7EQdnEmQoaho/r6KUef7hxvltNA5DR8NAUM+8wJMbJyZ4G9/7i3v5zPBIMN5aybAh2/Jg==" + } + }, + "npm:typed-query-selector": { + "type": "npm", + "name": "npm:typed-query-selector", + "data": { + "version": "2.12.1", + "packageName": "typed-query-selector", + "hash": "sha512-uzR+FzI8qrUEIu96oaeBJmd9E7CFEiQ3goA5qCVgc4s5llSubcfGHq9yUstZx/k4s9dXHVKsE35YWoFyvEqEHA==" + } + }, + "npm:typescript-eslint": { + "type": "npm", + "name": "npm:typescript-eslint", + "data": { + "version": "8.57.1", + "packageName": "typescript-eslint", + "hash": "sha512-fLvZWf+cAGw3tqMCYzGIU6yR8K+Y9NT2z23RwOjlNFF2HwSB3KhdEFI5lSBv8tNmFkkBShSjsCjzx1vahZfISA==" + } + }, + "npm:typescript": { + "type": "npm", + "name": "npm:typescript", + "data": { + "version": "6.0.2", + "packageName": "typescript", + "hash": "sha512-bGdAIrZ0wiGDo5l8c++HWtbaNCWTS4UTv7RaTH/ThVIgjkveJt83m74bBHMJkuCbslY8ixgLBVZJIOiQlQTjfQ==" + } + }, + "npm:ufo": { + "type": "npm", + "name": "npm:ufo", + "data": { + "version": "1.6.3", + "packageName": "ufo", + "hash": "sha512-yDJTmhydvl5lJzBmy/hyOAA0d+aqCBuwl818haVdYCRrWV84o7YyeVm4QlVHStqNrrJSTb6jKuFAVqAFsr+K3Q==" + } + }, + "npm:unbash": { + "type": "npm", + "name": "npm:unbash", + "data": { + "version": "2.2.0", + "packageName": "unbash", + "hash": "sha512-X2wH19RAPZE3+ldGicOkoj/SIA83OIxcJ6Cuaw23hf8Xc6fQpvZXY0SftE2JgS0QhYLUG4uwodSI3R53keyh7w==" + } + }, + "npm:unbox-primitive": { + "type": "npm", + "name": "npm:unbox-primitive", + "data": { + "version": "1.1.0", + "packageName": "unbox-primitive", + "hash": "sha512-nWJ91DjeOkej/TA8pXQ3myruKpKEYgqvpw9lz4OPHj/NWFNluYrjbz9j01CJ8yKQd2g4jFoOkINCTW2I5LEEyw==" + } + }, + "npm:unconfig-core": { + "type": "npm", + "name": "npm:unconfig-core", + "data": { + "version": "7.5.0", + "packageName": "unconfig-core", + "hash": "sha512-Su3FauozOGP44ZmKdHy2oE6LPjk51M/TRRjHv2HNCWiDvfvCoxC2lno6jevMA91MYAdCdwP05QnWdWpSbncX/w==" + } + }, + "npm:unconfig": { + "type": "npm", + "name": "npm:unconfig", + "data": { + "version": "7.5.0", + "packageName": "unconfig", + "hash": "sha512-oi8Qy2JV4D3UQ0PsopR28CzdQ3S/5A1zwsUwp/rosSbfhJ5z7b90bIyTwi/F7hCLD4SGcZVjDzd4XoUQcEanvA==" + } + }, + "npm:uncrypto": { + "type": "npm", + "name": "npm:uncrypto", + "data": { + "version": "0.1.3", + "packageName": "uncrypto", + "hash": "sha512-Ql87qFHB3s/De2ClA9e0gsnS6zXG27SkTiSJwjCc9MebbfapQfuPzumMIUMi38ezPZVNFcHI9sUIepeQfw8J8Q==" + } + }, + "npm:undici-types": { + "type": "npm", + "name": "npm:undici-types", + "data": { + "version": "6.21.0", + "packageName": "undici-types", + "hash": "sha512-iwDZqg0QAGrg9Rav5H4n0M64c3mkR59cJ6wQp+7C4nI0gsmExaedaYLNO44eT4AtBBwjbTiGPMlt2Md0T9H9JQ==" + } + }, + "npm:undici@7.14.0": { + "type": "npm", + "name": "npm:undici@7.14.0", + "data": { + "version": "7.14.0", + "packageName": "undici", + "hash": "sha512-Vqs8HTzjpQXZeXdpsfChQTlafcMQaaIwnGwLam1wudSSjlJeQ3bw1j+TLPePgrCnCpUXx7Ba5Pdpf5OBih62NQ==" + } + }, + "npm:undici": { + "type": "npm", + "name": "npm:undici", + "data": { + "version": "7.24.4", + "packageName": "undici", + "hash": "sha512-BM/JzwwaRXxrLdElV2Uo6cTLEjhSb3WXboncJamZ15NgUURmvlXvxa6xkwIOILIjPNo9i8ku136ZvWV0Uly8+w==" + } + }, + "npm:unenv": { + "type": "npm", + "name": "npm:unenv", + "data": { + "version": "2.0.0-rc.24", + "packageName": "unenv", + "hash": "sha512-i7qRCmY42zmCwnYlh9H2SvLEypEFGye5iRmEMKjcGi7zk9UquigRjFtTLz0TYqr0ZGLZhaMHl/foy1bZR+Cwlw==" + } + }, + "npm:unicorn-magic@0.3.0": { + "type": "npm", + "name": "npm:unicorn-magic@0.3.0", + "data": { + "version": "0.3.0", + "packageName": "unicorn-magic", + "hash": "sha512-+QBBXBCvifc56fsbuxZQ6Sic3wqqc3WWaqxs58gvJrcOuN83HGTCwz3oS5phzU9LthRNE9VrJCFCLUgHeeFnfA==" + } + }, + "npm:unicorn-magic": { + "type": "npm", + "name": "npm:unicorn-magic", + "data": { + "version": "0.4.0", + "packageName": "unicorn-magic", + "hash": "sha512-wH590V9VNgYH9g3lH9wWjTrUoKsjLF6sGLjhR4sH1LWpLmCOH0Zf7PukhDA8BiS7KHe4oPNkcTHqYkj7SOGUOw==" + } + }, + "npm:union": { + "type": "npm", + "name": "npm:union", + "data": { + "version": "0.5.0", + "packageName": "union", + "hash": "sha512-N6uOhuW6zO95P3Mel2I2zMsbsanvvtgn6jVqJv4vbVcz/JN0OkL9suomjQGmWtxJQXOCqUJvquc1sMeNz/IwlA==" + } + }, + "npm:unique-filename": { + "type": "npm", + "name": "npm:unique-filename", + "data": { + "version": "4.0.0", + "packageName": "unique-filename", + "hash": "sha512-XSnEewXmQ+veP7xX2dS5Q4yZAvO40cBN2MWkJ7D/6sW4Dg6wYBNwM1Vrnz1FhH5AdeLIlUXRI9e28z1YZi71NQ==" + } + }, + "npm:unique-slug": { + "type": "npm", + "name": "npm:unique-slug", + "data": { + "version": "5.0.0", + "packageName": "unique-slug", + "hash": "sha512-9OdaqO5kwqR+1kVgHAhsp5vPNU0hnxRa26rBFNfNgM7M6pNtgzeBn3s/xbyCQL3dcjzOatcef6UUHpB/6MaETg==" + } + }, + "npm:unist-util-is": { + "type": "npm", + "name": "npm:unist-util-is", + "data": { + "version": "6.0.1", + "packageName": "unist-util-is", + "hash": "sha512-LsiILbtBETkDz8I9p1dQ0uyRUWuaQzd/cuEeS1hoRSyW5E5XGmTzlwY1OrNzzakGowI9Dr/I8HVaw4hTtnxy8g==" + } + }, + "npm:unist-util-stringify-position": { + "type": "npm", + "name": "npm:unist-util-stringify-position", + "data": { + "version": "4.0.0", + "packageName": "unist-util-stringify-position", + "hash": "sha512-0ASV06AAoKCDkS2+xw5RXJywruurpbC4JZSm7nr7MOt1ojAzvyyaO+UxZf18j8FCF6kmzCZKcAgN/yu2gm2XgQ==" + } + }, + "npm:unist-util-visit-parents": { + "type": "npm", + "name": "npm:unist-util-visit-parents", + "data": { + "version": "6.0.2", + "packageName": "unist-util-visit-parents", + "hash": "sha512-goh1s1TBrqSqukSc8wrjwWhL0hiJxgA8m4kFxGlQ+8FYQ3C/m11FcTs4YYem7V664AhHVvgoQLk890Ssdsr2IQ==" + } + }, + "npm:unist-util-visit": { + "type": "npm", + "name": "npm:unist-util-visit", + "data": { + "version": "5.0.0", + "packageName": "unist-util-visit", + "hash": "sha512-MR04uvD+07cwl/yhVuVWAtw+3GOR/knlL55Nd/wAdblk27GCVt3lqpTivy/tkJcZoNPzTwS1Y+KMojlLDhoTzg==" + } + }, + "npm:unpipe": { + "type": "npm", + "name": "npm:unpipe", + "data": { + "version": "1.0.0", + "packageName": "unpipe", + "hash": "sha512-pjy2bYhSsufwWlKwPc+l3cN7+wuJlK6uz0YdJEOlQDbl6jo/YlPi4mb8agUkVC8BF7V8NuzeyPNqRksA3hztKQ==" + } + }, + "npm:unplugin-purge-polyfills": { + "type": "npm", + "name": "npm:unplugin-purge-polyfills", + "data": { + "version": "0.1.0", + "packageName": "unplugin-purge-polyfills", + "hash": "sha512-dHahgAhuzaHZHU65oY7BU24vqH/AtcXppdH1B1SmrBeglyX7NOBtkryjp2F8mOD4tL2RVxfAc41JRqRKTAeAkA==" + } + }, + "npm:unplugin": { + "type": "npm", + "name": "npm:unplugin", + "data": { + "version": "2.3.10", + "packageName": "unplugin", + "hash": "sha512-6NCPkv1ClwH+/BGE9QeoTIl09nuiAt0gS28nn1PvYXsGKRwM2TCbFA2QiilmehPDTXIe684k4rZI1yl3A1PCUw==" + } + }, + "npm:unrun": { + "type": "npm", + "name": "npm:unrun", + "data": { + "version": "0.2.32", + "packageName": "unrun", + "hash": "sha512-opd3z6791rf281JdByf0RdRQrpcc7WyzqittqIXodM/5meNWdTwrVxeyzbaCp4/Rgls/um14oUaif1gomO8YGg==" + } + }, + "npm:update-browserslist-db": { + "type": "npm", + "name": "npm:update-browserslist-db", + "data": { + "version": "1.2.2", + "packageName": "update-browserslist-db", + "hash": "sha512-E85pfNzMQ9jpKkA7+TJAi4TJN+tBCuWh5rUcS/sv6cFi+1q9LYDwDI5dpUL0u/73EElyQ8d3TEaeW4sPedBqYA==" + } + }, + "npm:uri-js": { + "type": "npm", + "name": "npm:uri-js", + "data": { + "version": "4.4.1", + "packageName": "uri-js", + "hash": "sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==" + } + }, + "npm:url-http": { + "type": "npm", + "name": "npm:url-http", + "data": { + "version": "1.3.2", + "packageName": "url-http", + "hash": "sha512-w2ooUk48t/nTJE7axsVsj+pretcM0FA1NdoUg5/H68OWj12bE8pbS6+JvqaGiU9TBaruWUDomZyC/uriT9bFNQ==" + } + }, + "npm:url-join": { + "type": "npm", + "name": "npm:url-join", + "data": { + "version": "4.0.1", + "packageName": "url-join", + "hash": "sha512-jk1+QP6ZJqyOiuEI9AEWQfju/nB2Pw466kbA0LEZljHwKeMgd9WrAEgEGxjPDD2+TNbbb37rTyhEfrCXfuKXnA==" + } + }, + "npm:url-regex-safe": { + "type": "npm", + "name": "npm:url-regex-safe", + "data": { + "version": "4.0.0", + "packageName": "url-regex-safe", + "hash": "sha512-BrnFCWKNFrFnRzKD66NtJqQepfJrUHNPvPxE5y5NSAhXBb4OlobQjt7907Jm4ItPiXaeX+dDWMkcnOd4jR9N8A==" + } + }, + "npm:use-callback-ref": { + "type": "npm", + "name": "npm:use-callback-ref", + "data": { + "version": "1.3.3", + "packageName": "use-callback-ref", + "hash": "sha512-jQL3lRnocaFtu3V00JToYz/4QkNWswxijDaCVNZRiRTO3HQDLsdu1ZtmIUvV4yPp+rvWm5j0y0TG/S61cuijTg==" + } + }, + "npm:use-composed-ref": { + "type": "npm", + "name": "npm:use-composed-ref", + "data": { + "version": "1.4.0", + "packageName": "use-composed-ref", + "hash": "sha512-djviaxuOOh7wkj0paeO1Q/4wMZ8Zrnag5H6yBvzN7AKKe8beOaED9SF5/ByLqsku8NP4zQqsvM2u3ew/tJK8/w==" + } + }, + "npm:use-isomorphic-layout-effect": { + "type": "npm", + "name": "npm:use-isomorphic-layout-effect", + "data": { + "version": "1.2.1", + "packageName": "use-isomorphic-layout-effect", + "hash": "sha512-tpZZ+EX0gaghDAiFR37hj5MgY6ZN55kLiPkJsKxBMZ6GZdOSPJXiOzPM984oPYZ5AnehYx5WQp1+ME8I/P/pRA==" + } + }, + "npm:use-latest": { + "type": "npm", + "name": "npm:use-latest", + "data": { + "version": "1.3.0", + "packageName": "use-latest", + "hash": "sha512-mhg3xdm9NaM8q+gLT8KryJPnRFOz1/5XPBhmDEVZK1webPzDjrPk7f/mbpeLqTgB9msytYWANxgALOCJKnLvcQ==" + } + }, + "npm:use-sidecar": { + "type": "npm", + "name": "npm:use-sidecar", + "data": { + "version": "1.1.3", + "packageName": "use-sidecar", + "hash": "sha512-Fedw0aZvkhynoPYlA5WXrMCAMm+nSWdZt6lzJQ7Ok8S6Q+VsHmHpRWndVRJ8Be0ZbkfPc5LRYH+5XrzXcEeLRQ==" + } + }, + "npm:util-deprecate": { + "type": "npm", + "name": "npm:util-deprecate", + "data": { + "version": "1.0.2", + "packageName": "util-deprecate", + "hash": "sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==" + } + }, + "npm:valibot": { + "type": "npm", + "name": "npm:valibot", + "data": { + "version": "1.2.0", + "packageName": "valibot", + "hash": "sha512-mm1rxUsmOxzrwnX5arGS+U4T25RdvpPjPN4yR0u9pUBov9+zGVtO84tif1eY4r6zWxVxu3KzIyknJy3rxfRZZg==" + } + }, + "npm:vary": { + "type": "npm", + "name": "npm:vary", + "data": { + "version": "1.1.2", + "packageName": "vary", + "hash": "sha512-BNGbWLfd0eUPabhkXUVm0j8uuvREyTh5ovRa/dyow/BqAbZJyC+5fU+IzQOzmAKzYqYRAISoRhdQr3eIZ/PXqg==" + } + }, + "npm:vike-photon": { + "type": "npm", + "name": "npm:vike-photon", + "data": { + "version": "0.1.25", + "packageName": "vike-photon", + "hash": "sha512-vvK2cDmhG+VKijg4Ec1Fq3ZlNplOj/OjI7i1wSp2QPtDUbCZhzKObvM3ZLGTTDkf6fEas0mPXGqLRyRnD0yyuA==" + } + }, + "npm:vike-react": { + "type": "npm", + "name": "npm:vike-react", + "data": { + "version": "0.6.21", + "packageName": "vike-react", + "hash": "sha512-mZyskc8xXJbUbK8/Lsztgd0MhrCxnQjHhCpruMVokA+jJC1uuZEAgwoO5Fptoiyqm2pjDfqtAGDw+1pZ97d9OA==" + } + }, + "npm:vike-solid": { + "type": "npm", + "name": "npm:vike-solid", + "data": { + "version": "0.8.1", + "packageName": "vike-solid", + "hash": "sha512-Zn2wmRmf+KnXb8HYF452kztkwPHiPxwTtthTdCgNXcLWxi8udP1vbkCyXZ1IXJkE0cQtonpqhLviBiotEIh6UA==" + } + }, + "npm:vike-vue": { + "type": "npm", + "name": "npm:vike-vue", + "data": { + "version": "0.9.11", + "packageName": "vike-vue", + "hash": "sha512-Ujcu7NG/ZFsiAgEomA0PtuHFg0J/BMcol/QHiDzaIlov2JSiDfapyBLidrPVTrHwLHvmeCnxa4ruVqG+/Vj1XA==" + } + }, + "npm:vike": { + "type": "npm", + "name": "npm:vike", + "data": { + "version": "0.4.255", + "packageName": "vike", + "hash": "sha512-pVRovPzIcxPiSg1nkkHg0+PGDc+qMupHw/xgWCvmJHhHO0qfuQ6UgiMq+OdEKB9q64NJJ6uuDXDtpVgvmYUu3w==" + } + }, + "npm:vite-plugin-compiled-react": { + "type": "npm", + "name": "npm:vite-plugin-compiled-react", + "data": { + "version": "1.3.1", + "packageName": "vite-plugin-compiled-react", + "hash": "sha512-RewxZHCMTnxC1Zi1UPMSTh0JSEqFAkVYaalkpmfecefv62VfJ3zq+NTiRuQOzsRGBfWQlKdgdvsDgkZMxVJokQ==" + } + }, + "npm:vite-plugin-solid": { + "type": "npm", + "name": "npm:vite-plugin-solid", + "data": { + "version": "2.11.11", + "packageName": "vite-plugin-solid", + "hash": "sha512-YMZCXsLw9kyuvQFEdwLP27fuTQJLmjNoHy90AOJnbRuJ6DwShUxKFo38gdFrWn9v11hnGicKCZEaeI/TFs6JKw==" + } + }, + "npm:vite-plugin-wasm": { + "type": "npm", + "name": "npm:vite-plugin-wasm", + "data": { + "version": "3.5.0", + "packageName": "vite-plugin-wasm", + "hash": "sha512-X5VWgCnqiQEGb+omhlBVsvTfxikKtoOgAzQ95+BZ8gQ+VfMHIjSHr0wyvXFQCa0eKQ0fKyaL0kWcEnYqBac4lQ==" + } + }, + "npm:vite": { + "type": "npm", + "name": "npm:vite", + "data": { + "version": "8.0.2", + "packageName": "vite", + "hash": "sha512-1gFhNi+bHhRE/qKZOJXACm6tX4bA3Isy9KuKF15AgSRuRazNBOJfdDemPBU16/mpMxApDPrWvZ08DcLPEoRnuA==" + } + }, + "npm:vitefu": { + "type": "npm", + "name": "npm:vitefu", + "data": { + "version": "1.1.1", + "packageName": "vitefu", + "hash": "sha512-B/Fegf3i8zh0yFbpzZ21amWzHmuNlLlmJT6n7bu5e+pCHUKQIfXSYokrqOBGEMMe9UG2sostKQF9mml/vYaWJQ==" + } + }, + "npm:vitest": { + "type": "npm", + "name": "npm:vitest", + "data": { + "version": "4.1.0", + "packageName": "vitest", + "hash": "sha512-YbDrMF9jM2Lqc++2530UourxZHmkKLxrs4+mYhEwqWS97WJ7wOYEkcr+QfRgJ3PW9wz3odRijLZjHEaRLTNbqw==" + } + }, + "npm:vue-eslint-parser": { + "type": "npm", + "name": "npm:vue-eslint-parser", + "data": { + "version": "10.4.0", + "packageName": "vue-eslint-parser", + "hash": "sha512-Vxi9pJdbN3ZnVGLODVtZ7y4Y2kzAAE2Cm0CZ3ZDRvydVYxZ6VrnBhLikBsRS+dpwj4Jv4UCv21PTEwF5rQ9WXg==" + } + }, + "npm:vue-gtag": { + "type": "npm", + "name": "npm:vue-gtag", + "data": { + "version": "3.7.0", + "packageName": "vue-gtag", + "hash": "sha512-o/ng/NjiVgEnOBZlSnWyg9IsVzIXUWmSuwbd+lGRX/T/h8gxdYN1IMcz5MT8e7o6GYhextvWpsupVAsWbYb+Gg==" + } + }, + "npm:vue": { + "type": "npm", + "name": "npm:vue", + "data": { + "version": "3.5.30", + "packageName": "vue", + "hash": "sha512-hTHLc6VNZyzzEH/l7PFGjpcTvUgiaPK5mdLkbjrTeWSRcEfxFrv56g/XckIYlE9ckuobsdwqd5mk2g1sBkMewg==" + } + }, + "npm:walk-up-path": { + "type": "npm", + "name": "npm:walk-up-path", + "data": { + "version": "4.0.0", + "packageName": "walk-up-path", + "hash": "sha512-3hu+tD8YzSLGuFYtPRb48vdhKMi0KQV5sn+uWr8+7dMEq/2G/dtLrdDinkLjqq5TIbIBjYJ4Ax/n3YiaW7QM8A==" + } + }, + "npm:wcwidth": { + "type": "npm", + "name": "npm:wcwidth", + "data": { + "version": "1.0.1", + "packageName": "wcwidth", + "hash": "sha512-XHPEwS0q6TaxcvG85+8EYkbiCux2XtWG2mkc47Ng2A77BQu9+DqIOJldST4HgPkuea7dvKSj5VgX3P1d4rW8Tg==" + } + }, + "npm:web-streams-polyfill": { + "type": "npm", + "name": "npm:web-streams-polyfill", + "data": { + "version": "3.3.3", + "packageName": "web-streams-polyfill", + "hash": "sha512-d2JWLCivmZYTSIoge9MsgFCZrt571BikcWGYkjC1khllbTeDlGqZ2D8vD8E/lJa8WGWbb7Plm8/XJYV7IJHZZw==" + } + }, + "npm:webdriver-bidi-protocol": { + "type": "npm", + "name": "npm:webdriver-bidi-protocol", + "data": { + "version": "0.4.1", + "packageName": "webdriver-bidi-protocol", + "hash": "sha512-ARrjNjtWRRs2w4Tk7nqrf2gBI0QXWuOmMCx2hU+1jUt6d00MjMxURrhxhGbrsoiZKJrhTSTzbIrc554iKI10qw==" + } + }, + "npm:webidl-conversions": { + "type": "npm", + "name": "npm:webidl-conversions", + "data": { + "version": "3.0.1", + "packageName": "webidl-conversions", + "hash": "sha512-2JAn3z8AR6rjK8Sm8orRC0h/bcl/DqL7tRPdGZ4I1CjdF+EaMLmYxBHyXuKL849eucPFhvBoxMsflfOb8kxaeQ==" + } + }, + "npm:webpack-virtual-modules": { + "type": "npm", + "name": "npm:webpack-virtual-modules", + "data": { + "version": "0.6.2", + "packageName": "webpack-virtual-modules", + "hash": "sha512-66/V2i5hQanC51vBQKPH4aI8NMAcBW59FVBs+rC7eGHupMyfn34q7rZIE+ETlJ+XTevqfUhVVBgSUNSW2flEUQ==" + } + }, + "npm:whatwg-encoding": { + "type": "npm", + "name": "npm:whatwg-encoding", + "data": { + "version": "2.0.0", + "packageName": "whatwg-encoding", + "hash": "sha512-p41ogyeMUrw3jWclHWTQg1k05DSVXPLcVxRTYsXUk+ZooOCZLcoYgPZ/HL/D/N+uQPOtcp1me1WhBEaX02mhWg==" + } + }, + "npm:whatwg-url": { + "type": "npm", + "name": "npm:whatwg-url", + "data": { + "version": "5.0.0", + "packageName": "whatwg-url", + "hash": "sha512-saE57nupxk6v3HY35+jzBwYa0rKSy0XR8JSxZPwgLr7ys0IBzhGviA1/TUGJLmSVqs8pb9AnvICXEuOHLprYTw==" + } + }, + "npm:which-boxed-primitive": { + "type": "npm", + "name": "npm:which-boxed-primitive", + "data": { + "version": "1.1.1", + "packageName": "which-boxed-primitive", + "hash": "sha512-TbX3mj8n0odCBFVlY8AxkqcHASw3L60jIuF8jFP78az3C2YhmGvqbHBpAjTRH2/xqYunrJ9g1jSyjCjpoWzIAA==" + } + }, + "npm:which-builtin-type": { + "type": "npm", + "name": "npm:which-builtin-type", + "data": { + "version": "1.2.1", + "packageName": "which-builtin-type", + "hash": "sha512-6iBczoX+kDQ7a3+YJBnh3T+KZRxM/iYNPXicqk66/Qfm1b93iu+yOImkg0zHbj5LNOcNv1TEADiZ0xa34B4q6Q==" + } + }, + "npm:which-collection": { + "type": "npm", + "name": "npm:which-collection", + "data": { + "version": "1.0.2", + "packageName": "which-collection", + "hash": "sha512-K4jVyjnBdgvc86Y6BkaLZEN933SwYOuBFkdmBu9ZfkcAbdVbpITnDmjvZ/aQjRXQrv5EPkTnD1s39GiiqbngCw==" + } + }, + "npm:which-typed-array": { + "type": "npm", + "name": "npm:which-typed-array", + "data": { + "version": "1.1.19", + "packageName": "which-typed-array", + "hash": "sha512-rEvr90Bck4WZt9HHFC4DJMsjvu7x+r6bImz0/BrbWb7A2djJ8hnZMrWnHo9F8ssv0OMErasDhftrfROTyqSDrw==" + } + }, + "npm:which@2.0.2": { + "type": "npm", + "name": "npm:which@2.0.2", + "data": { + "version": "2.0.2", + "packageName": "which", + "hash": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==" + } + }, + "npm:which@5.0.0": { + "type": "npm", + "name": "npm:which@5.0.0", + "data": { + "version": "5.0.0", + "packageName": "which", + "hash": "sha512-JEdGzHwwkrbWoGOlIHqQ5gtprKGOenpDHpxE9zVR1bWbOtYRyPPHMe9FaP6x61CmNaTThSkb0DAJte5jD+DmzQ==" + } + }, + "npm:which": { + "type": "npm", + "name": "npm:which", + "data": { + "version": "6.0.1", + "packageName": "which", + "hash": "sha512-oGLe46MIrCRqX7ytPUf66EAYvdeMIZYn3WaocqqKZAxrBpkqHfL/qvTyJ/bTk5+AqHCjXmrv3CEWgy368zhRUg==" + } + }, + "npm:whoops": { + "type": "npm", + "name": "npm:whoops", + "data": { + "version": "5.1.0", + "packageName": "whoops", + "hash": "sha512-JVrjrkswIIaFcZ4DZRHObijOhhXIcADrup/USchmrHo6p8PZcU3TmILSHqs/7d2GrWN17uTKScik/7Mq0wBkMA==" + } + }, + "npm:why-is-node-running": { + "type": "npm", + "name": "npm:why-is-node-running", + "data": { + "version": "2.3.0", + "packageName": "why-is-node-running", + "hash": "sha512-hUrmaWBdVDcxvYqnyh09zunKzROWjbZTiNy8dBEjkS7ehEDQibXJ7XvlmtbwuTclUiIyN+CyXQD4Vmko8fNm8w==" + } + }, + "npm:word-wrap": { + "type": "npm", + "name": "npm:word-wrap", + "data": { + "version": "1.2.5", + "packageName": "word-wrap", + "hash": "sha512-BN22B5eaMMI9UMtjrGd5g5eCYPpCPDUy0FJXbYsaT5zYxjFOckS53SQDE3pWkVoWpHXVb3BrYcEN4Twa55B5cA==" + } + }, + "npm:workerd@1.20251217.0": { + "type": "npm", + "name": "npm:workerd@1.20251217.0", + "data": { + "version": "1.20251217.0", + "packageName": "workerd", + "hash": "sha512-s3mHDSWwHTduyY8kpHOsl27ZJ4ziDBJlc18PfBvNMqNnhO7yBeemlxH7bo7yQyU1foJrIZ6IENHDDg0Z9N8zQA==" + } + }, + "npm:workerd": { + "type": "npm", + "name": "npm:workerd", + "data": { + "version": "1.20260317.1", + "packageName": "workerd", + "hash": "sha512-ZuEq1OdrJBS+NV+L5HMYPCzVn49a2O60slQiiLpG44jqtlOo+S167fWC76kEXteXLLLydeuRrluRel7WdOUa4g==" + } + }, + "npm:wrangler": { + "type": "npm", + "name": "npm:wrangler", + "data": { + "version": "4.76.0", + "packageName": "wrangler", + "hash": "sha512-Wan+CU5a0tu4HIxGOrzjNbkmxCT27HUmzrMj6kc7aoAnjSLv50Ggcn2Ant7wNQrD6xW3g31phKupZJgTZ8wZfQ==" + } + }, + "npm:wrap-ansi": { + "type": "npm", + "name": "npm:wrap-ansi", + "data": { + "version": "7.0.0", + "packageName": "wrap-ansi", + "hash": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==" + } + }, + "npm:wrap-ansi@8.1.0": { + "type": "npm", + "name": "npm:wrap-ansi@8.1.0", + "data": { + "version": "8.1.0", + "packageName": "wrap-ansi", + "hash": "sha512-si7QWI6zUMq56bESFvagtmzMdGOtoxfR+Sez11Mobfc7tm+VkUckk9bW2UeffTGVUbOksxmSw0AA2gs8g71NCQ==" + } + }, + "npm:wrap-ansi-cjs": { + "type": "npm", + "name": "npm:wrap-ansi-cjs", + "data": { + "version": "npm:wrap-ansi@7.0.0", + "packageName": "wrap-ansi-cjs", + "hash": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==" + } + }, + "npm:wrappy": { + "type": "npm", + "name": "npm:wrappy", + "data": { + "version": "1.0.2", + "packageName": "wrappy", + "hash": "sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==" + } + }, + "npm:ws": { + "type": "npm", + "name": "npm:ws", + "data": { + "version": "8.18.0", + "packageName": "ws", + "hash": "sha512-8VbfWfHLbbwu3+N6OKsOMpBdT4kXPDDB9cJk2bJ6mh9ucxdlnNvH1e+roYkKmN9Nxw2yjz7VzeO9oOz2zJ04Pw==" + } + }, + "npm:ws@8.19.0": { + "type": "npm", + "name": "npm:ws@8.19.0", + "data": { + "version": "8.19.0", + "packageName": "ws", + "hash": "sha512-blAT2mjOEIi0ZzruJfIhb3nps74PRWTCz1IjglWEEpQl5XS/UNama6u2/rjFkDDouqr4L67ry+1aGIALViWjDg==" + } + }, + "npm:xml-name-validator": { + "type": "npm", + "name": "npm:xml-name-validator", + "data": { + "version": "4.0.0", + "packageName": "xml-name-validator", + "hash": "sha512-ICP2e+jsHvAj2E2lIHxa5tjXRlKDJo4IdvPvCXbXQGdzSfmSpNVyIKMvoZHjDY9DP0zV17iI85o90vRFXNccRw==" + } + }, + "npm:y18n": { + "type": "npm", + "name": "npm:y18n", + "data": { + "version": "5.0.8", + "packageName": "y18n", + "hash": "sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA==" + } + }, + "npm:yallist": { + "type": "npm", + "name": "npm:yallist", + "data": { + "version": "3.1.1", + "packageName": "yallist", + "hash": "sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==" + } + }, + "npm:yallist@4.0.0": { + "type": "npm", + "name": "npm:yallist@4.0.0", + "data": { + "version": "4.0.0", + "packageName": "yallist", + "hash": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==" + } + }, + "npm:yallist@5.0.0": { + "type": "npm", + "name": "npm:yallist@5.0.0", + "data": { + "version": "5.0.0", + "packageName": "yallist", + "hash": "sha512-YgvUTfwqyc7UXVMrB+SImsVYSmTS8X/tSrtdNZMImM+n7+QTriRXyXim0mBrTXNeqzVF0KWGgHPeiyViFFrNDw==" + } + }, + "npm:yaml": { + "type": "npm", + "name": "npm:yaml", + "data": { + "version": "2.8.3", + "packageName": "yaml", + "hash": "sha512-AvbaCLOO2Otw/lW5bmh9d/WEdcDFdQp2Z2ZUH3pX9U2ihyUY0nvLv7J6TrWowklRGPYbB/IuIMfYgxaCPg5Bpg==" + } + }, + "npm:yargs-parser": { + "type": "npm", + "name": "npm:yargs-parser", + "data": { + "version": "21.1.1", + "packageName": "yargs-parser", + "hash": "sha512-tVpsJW7DdjecAiFpbIB1e3qxIQsE6NoPc5/eTdrbbIC4h0LVsWhnoa3g+m2HclBIujHzsxZ4VJVA+GUuc2/LBw==" + } + }, + "npm:yargs": { + "type": "npm", + "name": "npm:yargs", + "data": { + "version": "17.7.2", + "packageName": "yargs", + "hash": "sha512-7dSzzRQ++CKnNI/krKnYRV7JKKPUXMEh61soaHKg9mrWEhzFWhFnxPxGl+69cD1Ou63C13NUPCnmIcrvqCuM6w==" + } + }, + "npm:yauzl": { + "type": "npm", + "name": "npm:yauzl", + "data": { + "version": "2.10.0", + "packageName": "yauzl", + "hash": "sha512-p4a9I6X6nu6IhoGmBqAcbJy1mlC4j27vEPZX9F4L4/vZT3Lyq1VkFHw/V/PUcB9Buo+DG3iHkT0x3Qya58zc3g==" + } + }, + "npm:yocto-queue@0.1.0": { + "type": "npm", + "name": "npm:yocto-queue@0.1.0", + "data": { + "version": "0.1.0", + "packageName": "yocto-queue", + "hash": "sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==" + } + }, + "npm:yocto-queue": { + "type": "npm", + "name": "npm:yocto-queue", + "data": { + "version": "1.2.1", + "packageName": "yocto-queue", + "hash": "sha512-AyeEbWOu/TAXdxlV9wmGcR0+yh2j3vYPGOECcIj2S7MkrLyC7ne+oye2BKTItt0ii2PHk4cDy+95+LshzbXnGg==" + } + }, + "npm:yoctocolors": { + "type": "npm", + "name": "npm:yoctocolors", + "data": { + "version": "2.1.2", + "packageName": "yoctocolors", + "hash": "sha512-CzhO+pFNo8ajLM2d2IW/R93ipy99LWjtwblvC1RsoSUMZgyLbYFr221TnSNT7GjGdYui6P459mw9JH/g/zW2ug==" + } + }, + "npm:youch-core": { + "type": "npm", + "name": "npm:youch-core", + "data": { + "version": "0.3.3", + "packageName": "youch-core", + "hash": "sha512-ho7XuGjLaJ2hWHoK8yFnsUGy2Y5uDpqSTq1FkHLK4/oqKtyUU1AFbOOxY4IpC9f0fTLjwYbslUz0Po5BpD1wrA==" + } + }, + "npm:youch": { + "type": "npm", + "name": "npm:youch", + "data": { + "version": "4.1.0-beta.10", + "packageName": "youch", + "hash": "sha512-rLfVLB4FgQneDr0dv1oddCVZmKjcJ6yX6mS4pU82Mq/Dt9a3cLZQ62pDBL4AUO+uVrCvtWz3ZFUL2HFAFJ/BXQ==" + } + }, + "npm:zeptomatch": { + "type": "npm", + "name": "npm:zeptomatch", + "data": { + "version": "2.1.0", + "packageName": "zeptomatch", + "hash": "sha512-KiGErG2J0G82LSpniV0CtIzjlJ10E04j02VOudJsPyPwNZgGnRKQy7I1R7GMyg/QswnE4l7ohSGrQbQbjXPPDA==" + } + }, + "npm:zod@3.22.3": { + "type": "npm", + "name": "npm:zod@3.22.3", + "data": { + "version": "3.22.3", + "packageName": "zod", + "hash": "sha512-EjIevzuJRiRPbVH4mGc8nApb/lVLKVpmUhAaR5R5doKGfAnGJ6Gr3CViAVjP+4FWSxCsybeWQdcgCtbX+7oZug==" + } + }, + "npm:zod": { + "type": "npm", + "name": "npm:zod", + "data": { + "version": "3.25.76", + "packageName": "zod", + "hash": "sha512-gzUt/qt81nXsFGKIFcC3YnfEAx5NkunCfnDlvuBSSFS02bcXu4Lmea0AFIUwbLWxWPx3d9p8S5QoaujKcNQxcQ==" + } + }, + "npm:zod@4.3.6": { + "type": "npm", + "name": "npm:zod@4.3.6", + "data": { + "version": "4.3.6", + "packageName": "zod", + "hash": "sha512-rftlrkhHZOcjDwkGlnUtZZkvaPHCsDATp4pGpuOOMDaTdDDXF91wuVDJoWoPsKX/3YPQ5fHuF3STjcYyKr+Qhg==" + } + }, + "npm:zwitch": { + "type": "npm", + "name": "npm:zwitch", + "data": { + "version": "2.0.4", + "packageName": "zwitch", + "hash": "sha512-bXE4cR/kVZhKZX/RjPEflHaKVhUVl85noU3v6b8apfQEc1x4A+zBxjZ4lN8LqGd6WZ3dl98pY4o717VFmoPp+A==" + } + }, + "npm:zx": { + "type": "npm", + "name": "npm:zx", + "data": { + "version": "8.8.5", + "packageName": "zx", + "hash": "sha512-SNgDF5L0gfN7FwVOdEFguY3orU5AkfFZm9B5YSHog/UDHv+lvmd82ZAsOenOkQixigwH2+yyH198AwNdKhj+RA==" + } + } + }, + "dependencies": { + "@batijs/google-analytics": [ + { + "source": "@batijs/google-analytics", + "target": "@batijs/compile", + "type": "static" + }, + { + "source": "@batijs/google-analytics", + "target": "npm:@types/node", + "type": "static" + }, + { + "source": "@batijs/google-analytics", + "target": "@batijs/core", + "type": "static" + } + ], + "@batijs/create-app": [ + { + "source": "@batijs/create-app", + "target": "@batijs/cli", + "type": "static" + } + ], + "@batijs/shared-server": [ + { + "source": "@batijs/shared-server", + "target": "@batijs/compile", + "type": "static" + }, + { + "source": "@batijs/shared-server", + "target": "npm:@types/node", + "type": "static" + }, + { + "source": "@batijs/shared-server", + "target": "npm:@universal-middleware/core", + "type": "static" + }, + { + "source": "@batijs/shared-server", + "target": "npm:vike", + "type": "static" + }, + { + "source": "@batijs/shared-server", + "target": "npm:vite", + "type": "static" + } + ], + "@batijs/plausible.io": [ + { + "source": "@batijs/plausible.io", + "target": "@batijs/compile", + "type": "static" + }, + { + "source": "@batijs/plausible.io", + "target": "npm:@types/node", + "type": "static" + }, + { + "source": "@batijs/plausible.io", + "target": "@batijs/core", + "type": "static" + } + ], + "@batijs/react-sentry": [ + { + "source": "@batijs/react-sentry", + "target": "@batijs/compile", + "type": "static" + }, + { + "source": "@batijs/react-sentry", + "target": "npm:@sentry/react", + "type": "static" + }, + { + "source": "@batijs/react-sentry", + "target": "npm:@types/node", + "type": "static" + }, + { + "source": "@batijs/react-sentry", + "target": "npm:@types/react", + "type": "static" + }, + { + "source": "@batijs/react-sentry", + "target": "npm:@types/react-dom", + "type": "static" + }, + { + "source": "@batijs/react-sentry", + "target": "npm:react", + "type": "static" + }, + { + "source": "@batijs/react-sentry", + "target": "npm:react-dom", + "type": "static" + }, + { + "source": "@batijs/react-sentry", + "target": "npm:vite", + "type": "static" + }, + { + "source": "@batijs/react-sentry", + "target": "@batijs/core", + "type": "static" + } + ], + "@batijs/solid-sentry": [ + { + "source": "@batijs/solid-sentry", + "target": "@batijs/compile", + "type": "static" + }, + { + "source": "@batijs/solid-sentry", + "target": "npm:@sentry/solid", + "type": "static" + }, + { + "source": "@batijs/solid-sentry", + "target": "npm:@types/node", + "type": "static" + }, + { + "source": "@batijs/solid-sentry", + "target": "npm:solid-js", + "type": "static" + }, + { + "source": "@batijs/solid-sentry", + "target": "npm:vike-solid", + "type": "static" + }, + { + "source": "@batijs/solid-sentry", + "target": "npm:vite", + "type": "static" + }, + { + "source": "@batijs/solid-sentry", + "target": "@batijs/core", + "type": "static" + } + ], + "@batijs/shared-todo": [ + { + "source": "@batijs/shared-todo", + "target": "@batijs/compile", + "type": "static" + }, + { + "source": "@batijs/shared-todo", + "target": "npm:@types/node", + "type": "static" + }, + { + "source": "@batijs/shared-todo", + "target": "npm:vike", + "type": "static" + }, + { + "source": "@batijs/shared-todo", + "target": "@batijs/core", + "type": "static" + } + ], + "@batijs/tailwindcss": [ + { + "source": "@batijs/tailwindcss", + "target": "@batijs/compile", + "type": "static" + }, + { + "source": "@batijs/tailwindcss", + "target": "npm:@tailwindcss/vite", + "type": "static" + }, + { + "source": "@batijs/tailwindcss", + "target": "npm:@types/node", + "type": "static" + }, + { + "source": "@batijs/tailwindcss", + "target": "npm:autoprefixer", + "type": "static" + }, + { + "source": "@batijs/tailwindcss", + "target": "npm:daisyui", + "type": "static" + }, + { + "source": "@batijs/tailwindcss", + "target": "npm:tailwindcss", + "type": "static" + }, + { + "source": "@batijs/tailwindcss", + "target": "npm:vike", + "type": "static" + }, + { + "source": "@batijs/tailwindcss", + "target": "npm:vite", + "type": "static" + }, + { + "source": "@batijs/tailwindcss", + "target": "@batijs/core", + "type": "static" + } + ], + "@batijs/cloudflare": [ + { + "source": "@batijs/cloudflare", + "target": "@batijs/compile", + "type": "static" + }, + { + "source": "@batijs/cloudflare", + "target": "npm:@photonjs/cloudflare", + "type": "static" + }, + { + "source": "@batijs/cloudflare", + "target": "npm:@types/node", + "type": "static" + }, + { + "source": "@batijs/cloudflare", + "target": "npm:wrangler", + "type": "static" + }, + { + "source": "@batijs/cloudflare", + "target": "@batijs/core", + "type": "static" + } + ], + "@batijs/vue-sentry": [ + { + "source": "@batijs/vue-sentry", + "target": "@batijs/compile", + "type": "static" + }, + { + "source": "@batijs/vue-sentry", + "target": "npm:@sentry/vue", + "type": "static" + }, + { + "source": "@batijs/vue-sentry", + "target": "npm:@types/node", + "type": "static" + }, + { + "source": "@batijs/vue-sentry", + "target": "npm:vike-vue", + "type": "static" + }, + { + "source": "@batijs/vue-sentry", + "target": "npm:vite", + "type": "static" + }, + { + "source": "@batijs/vue-sentry", + "target": "npm:vue", + "type": "static" + }, + { + "source": "@batijs/vue-sentry", + "target": "@batijs/core", + "type": "static" + } + ], + "@batijs/d1-kysely": [ + { + "source": "@batijs/d1-kysely", + "target": "@batijs/compile", + "type": "static" + }, + { + "source": "@batijs/d1-kysely", + "target": "npm:@types/node", + "type": "static" + }, + { + "source": "@batijs/d1-kysely", + "target": "@batijs/core", + "type": "static" + } + ], + "@batijs/d1-sqlite": [ + { + "source": "@batijs/d1-sqlite", + "target": "@batijs/compile", + "type": "static" + }, + { + "source": "@batijs/d1-sqlite", + "target": "npm:@types/node", + "type": "static" + }, + { + "source": "@batijs/d1-sqlite", + "target": "npm:@universal-middleware/core", + "type": "static" + }, + { + "source": "@batijs/d1-sqlite", + "target": "npm:vike", + "type": "static" + }, + { + "source": "@batijs/d1-sqlite", + "target": "@batijs/core", + "type": "static" + } + ], + "@batijs/shadcn-ui": [ + { + "source": "@batijs/shadcn-ui", + "target": "@batijs/compile", + "type": "static" + }, + { + "source": "@batijs/shadcn-ui", + "target": "npm:@radix-ui/react-icons", + "type": "static" + }, + { + "source": "@batijs/shadcn-ui", + "target": "npm:@types/node", + "type": "static" + }, + { + "source": "@batijs/shadcn-ui", + "target": "npm:autoprefixer", + "type": "static" + }, + { + "source": "@batijs/shadcn-ui", + "target": "npm:class-variance-authority", + "type": "static" + }, + { + "source": "@batijs/shadcn-ui", + "target": "npm:clsx", + "type": "static" + }, + { + "source": "@batijs/shadcn-ui", + "target": "npm:lucide-react", + "type": "static" + }, + { + "source": "@batijs/shadcn-ui", + "target": "npm:tailwind-merge", + "type": "static" + }, + { + "source": "@batijs/shadcn-ui", + "target": "npm:tailwindcss", + "type": "static" + }, + { + "source": "@batijs/shadcn-ui", + "target": "npm:tw-animate-css", + "type": "static" + }, + { + "source": "@batijs/shadcn-ui", + "target": "@batijs/core", + "type": "static" + } + ], + "@batijs/shared-db": [ + { + "source": "@batijs/shared-db", + "target": "@batijs/compile", + "type": "static" + }, + { + "source": "@batijs/shared-db", + "target": "npm:@types/node", + "type": "static" + }, + { + "source": "@batijs/shared-db", + "target": "npm:@universal-middleware/core", + "type": "static" + }, + { + "source": "@batijs/shared-db", + "target": "@batijs/core", + "type": "static" + } + ], + "@batijs/storybook": [ + { + "source": "@batijs/storybook", + "target": "@batijs/compile", + "type": "static" + }, + { + "source": "@batijs/storybook", + "target": "npm:@types/node", + "type": "static" + }, + { + "source": "@batijs/storybook", + "target": "@batijs/core", + "type": "static" + } + ], + "@batijs/compiled": [ + { + "source": "@batijs/compiled", + "target": "@batijs/compile", + "type": "static" + }, + { + "source": "@batijs/compiled", + "target": "npm:@types/node", + "type": "static" + }, + { + "source": "@batijs/compiled", + "target": "npm:vite", + "type": "static" + }, + { + "source": "@batijs/compiled", + "target": "npm:vite-plugin-compiled-react", + "type": "static" + }, + { + "source": "@batijs/compiled", + "target": "@batijs/core", + "type": "static" + }, + { + "source": "@batijs/compiled", + "target": "npm:@compiled/react", + "type": "static" + } + ], + "@batijs/prettier": [ + { + "source": "@batijs/prettier", + "target": "@batijs/compile", + "type": "static" + }, + { + "source": "@batijs/prettier", + "target": "npm:@types/node", + "type": "static" + }, + { + "source": "@batijs/prettier", + "target": "npm:prettier", + "type": "static" + }, + { + "source": "@batijs/prettier", + "target": "@batijs/core", + "type": "static" + } + ], + "@batijs/telefunc": [ + { + "source": "@batijs/telefunc", + "target": "@batijs/compile", + "type": "static" + }, + { + "source": "@batijs/telefunc", + "target": "npm:@types/node", + "type": "static" + }, + { + "source": "@batijs/telefunc", + "target": "npm:@universal-middleware/core", + "type": "static" + }, + { + "source": "@batijs/telefunc", + "target": "npm:telefunc", + "type": "static" + }, + { + "source": "@batijs/telefunc", + "target": "npm:vike", + "type": "static" + }, + { + "source": "@batijs/telefunc", + "target": "npm:vite", + "type": "static" + }, + { + "source": "@batijs/telefunc", + "target": "@batijs/core", + "type": "static" + } + ], + "@batijs/drizzle": [ + { + "source": "@batijs/drizzle", + "target": "@batijs/compile", + "type": "static" + }, + { + "source": "@batijs/drizzle", + "target": "npm:@types/better-sqlite3", + "type": "static" + }, + { + "source": "@batijs/drizzle", + "target": "npm:@types/node", + "type": "static" + }, + { + "source": "@batijs/drizzle", + "target": "npm:better-sqlite3", + "type": "static" + }, + { + "source": "@batijs/drizzle", + "target": "npm:dotenv", + "type": "static" + }, + { + "source": "@batijs/drizzle", + "target": "npm:drizzle-kit", + "type": "static" + }, + { + "source": "@batijs/drizzle", + "target": "npm:drizzle-orm", + "type": "static" + }, + { + "source": "@batijs/drizzle", + "target": "@batijs/core", + "type": "static" + } + ], + "@batijs/express": [ + { + "source": "@batijs/express", + "target": "npm:@auth/core", + "type": "static" + }, + { + "source": "@batijs/express", + "target": "@batijs/compile", + "type": "static" + }, + { + "source": "@batijs/express", + "target": "npm:@photonjs/express", + "type": "static" + }, + { + "source": "@batijs/express", + "target": "npm:@trpc/server", + "type": "static" + }, + { + "source": "@batijs/express", + "target": "npm:@types/express", + "type": "static" + }, + { + "source": "@batijs/express", + "target": "npm:@types/node", + "type": "static" + }, + { + "source": "@batijs/express", + "target": "npm:dotenv", + "type": "static" + }, + { + "source": "@batijs/express", + "target": "npm:express", + "type": "static" + }, + { + "source": "@batijs/express", + "target": "npm:telefunc", + "type": "static" + }, + { + "source": "@batijs/express", + "target": "npm:vike", + "type": "static" + }, + { + "source": "@batijs/express", + "target": "npm:vite", + "type": "static" + }, + { + "source": "@batijs/express", + "target": "@batijs/core", + "type": "static" + } + ], + "@batijs/fastify": [ + { + "source": "@batijs/fastify", + "target": "npm:@auth/core", + "type": "static" + }, + { + "source": "@batijs/fastify", + "target": "@batijs/compile", + "type": "static" + }, + { + "source": "@batijs/fastify", + "target": "npm:@photonjs/fastify", + "type": "static" + }, + { + "source": "@batijs/fastify", + "target": "npm:@trpc/server", + "type": "static" + }, + { + "source": "@batijs/fastify", + "target": "npm:@types/express", + "type": "static" + }, + { + "source": "@batijs/fastify", + "target": "npm:@types/node", + "type": "static" + }, + { + "source": "@batijs/fastify", + "target": "npm:dotenv", + "type": "static" + }, + { + "source": "@batijs/fastify", + "target": "npm:fastify", + "type": "static" + }, + { + "source": "@batijs/fastify", + "target": "npm:fastify-raw-body", + "type": "static" + }, + { + "source": "@batijs/fastify", + "target": "npm:telefunc", + "type": "static" + }, + { + "source": "@batijs/fastify", + "target": "npm:vike", + "type": "static" + }, + { + "source": "@batijs/fastify", + "target": "npm:vite", + "type": "static" + }, + { + "source": "@batijs/fastify", + "target": "@batijs/core", + "type": "static" + } + ], + "@batijs/mantine": [ + { + "source": "@batijs/mantine", + "target": "@batijs/compile", + "type": "static" + }, + { + "source": "@batijs/mantine", + "target": "npm:@mantine/core", + "type": "static" + }, + { + "source": "@batijs/mantine", + "target": "npm:@mantine/hooks", + "type": "static" + }, + { + "source": "@batijs/mantine", + "target": "npm:@types/node", + "type": "static" + }, + { + "source": "@batijs/mantine", + "target": "npm:@types/react", + "type": "static" + }, + { + "source": "@batijs/mantine", + "target": "npm:@types/react-dom", + "type": "static" + }, + { + "source": "@batijs/mantine", + "target": "npm:postcss", + "type": "static" + }, + { + "source": "@batijs/mantine", + "target": "npm:postcss-preset-mantine", + "type": "static" + }, + { + "source": "@batijs/mantine", + "target": "npm:postcss-simple-vars", + "type": "static" + }, + { + "source": "@batijs/mantine", + "target": "npm:react", + "type": "static" + }, + { + "source": "@batijs/mantine", + "target": "npm:react-dom", + "type": "static" + }, + { + "source": "@batijs/mantine", + "target": "npm:vike-react", + "type": "static" + }, + { + "source": "@batijs/mantine", + "target": "npm:vite", + "type": "static" + }, + { + "source": "@batijs/mantine", + "target": "npm:vite-plugin-compiled-react", + "type": "static" + }, + { + "source": "@batijs/mantine", + "target": "@batijs/core", + "type": "static" + } + ], + "@batijs/tests-utils": [ + { + "source": "@batijs/tests-utils", + "target": "npm:@types/node", + "type": "static" + }, + { + "source": "@batijs/tests-utils", + "target": "npm:@types/which", + "type": "static" + }, + { + "source": "@batijs/tests-utils", + "target": "npm:tsdown", + "type": "static" + }, + { + "source": "@batijs/tests-utils", + "target": "npm:tsx", + "type": "static" + }, + { + "source": "@batijs/tests-utils", + "target": "npm:typescript", + "type": "static" + }, + { + "source": "@batijs/tests-utils", + "target": "npm:get-port", + "type": "static" + }, + { + "source": "@batijs/tests-utils", + "target": "npm:node-fetch", + "type": "static" + }, + { + "source": "@batijs/tests-utils", + "target": "npm:vitest", + "type": "static" + }, + { + "source": "@batijs/tests-utils", + "target": "npm:which", + "type": "static" + }, + { + "source": "@batijs/tests-utils", + "target": "npm:zx", + "type": "static" + } + ], + "@batijs/ts-rest": [ + { + "source": "@batijs/ts-rest", + "target": "@batijs/compile", + "type": "static" + }, + { + "source": "@batijs/ts-rest", + "target": "npm:@ts-rest/core", + "type": "static" + }, + { + "source": "@batijs/ts-rest", + "target": "npm:@ts-rest/serverless", + "type": "static" + }, + { + "source": "@batijs/ts-rest", + "target": "npm:@types/node", + "type": "static" + }, + { + "source": "@batijs/ts-rest", + "target": "npm:@universal-middleware/core", + "type": "static" + }, + { + "source": "@batijs/ts-rest", + "target": "npm:zod", + "type": "static" + }, + { + "source": "@batijs/ts-rest", + "target": "@batijs/core", + "type": "static" + } + ], + "create-vike": [ + { + "source": "create-vike", + "target": "@batijs/cli", + "type": "static" + } + ], + "@batijs/authjs": [ + { + "source": "@batijs/authjs", + "target": "npm:@auth/core", + "type": "static" + }, + { + "source": "@batijs/authjs", + "target": "@batijs/compile", + "type": "static" + }, + { + "source": "@batijs/authjs", + "target": "npm:@types/node", + "type": "static" + }, + { + "source": "@batijs/authjs", + "target": "npm:@universal-middleware/core", + "type": "static" + }, + { + "source": "@batijs/authjs", + "target": "@batijs/core", + "type": "static" + } + ], + "@batijs/eslint": [ + { + "source": "@batijs/eslint", + "target": "@batijs/compile", + "type": "static" + }, + { + "source": "@batijs/eslint", + "target": "npm:@eslint/js", + "type": "static" + }, + { + "source": "@batijs/eslint", + "target": "npm:eslint", + "type": "static" + }, + { + "source": "@batijs/eslint", + "target": "npm:eslint-config-prettier", + "type": "static" + }, + { + "source": "@batijs/eslint", + "target": "npm:eslint-plugin-prettier", + "type": "static" + }, + { + "source": "@batijs/eslint", + "target": "npm:eslint-plugin-react", + "type": "static" + }, + { + "source": "@batijs/eslint", + "target": "npm:eslint-plugin-solid", + "type": "static" + }, + { + "source": "@batijs/eslint", + "target": "npm:eslint-plugin-vue", + "type": "static" + }, + { + "source": "@batijs/eslint", + "target": "npm:globals", + "type": "static" + }, + { + "source": "@batijs/eslint", + "target": "npm:typescript-eslint", + "type": "static" + }, + { + "source": "@batijs/eslint", + "target": "npm:vue-eslint-parser", + "type": "static" + }, + { + "source": "@batijs/eslint", + "target": "@batijs/core", + "type": "static" + } + ], + "@batijs/kysely": [ + { + "source": "@batijs/kysely", + "target": "@batijs/compile", + "type": "static" + }, + { + "source": "@batijs/kysely", + "target": "npm:@cloudflare/workers-types", + "type": "static" + }, + { + "source": "@batijs/kysely", + "target": "npm:@types/better-sqlite3", + "type": "static" + }, + { + "source": "@batijs/kysely", + "target": "npm:@types/node", + "type": "static" + }, + { + "source": "@batijs/kysely", + "target": "npm:better-sqlite3", + "type": "static" + }, + { + "source": "@batijs/kysely", + "target": "npm:dotenv", + "type": "static" + }, + { + "source": "@batijs/kysely", + "target": "npm:kysely", + "type": "static" + }, + { + "source": "@batijs/kysely", + "target": "npm:kysely-d1", + "type": "static" + }, + { + "source": "@batijs/kysely", + "target": "npm:tsx", + "type": "static" + }, + { + "source": "@batijs/kysely", + "target": "@batijs/core", + "type": "static" + } + ], + "@batijs/oxlint": [ + { + "source": "@batijs/oxlint", + "target": "@batijs/compile", + "type": "static" + }, + { + "source": "@batijs/oxlint", + "target": "npm:@types/node", + "type": "static" + }, + { + "source": "@batijs/oxlint", + "target": "npm:oxlint", + "type": "static" + }, + { + "source": "@batijs/oxlint", + "target": "npm:oxlint-tsgolint", + "type": "static" + }, + { + "source": "@batijs/oxlint", + "target": "@batijs/core", + "type": "static" + } + ], + "@batijs/photon": [ + { + "source": "@batijs/photon", + "target": "@batijs/compile", + "type": "static" + }, + { + "source": "@batijs/photon", + "target": "npm:@types/node", + "type": "static" + }, + { + "source": "@batijs/photon", + "target": "npm:vike-photon", + "type": "static" + }, + { + "source": "@batijs/photon", + "target": "@batijs/core", + "type": "static" + } + ], + "@batijs/prisma": [ + { + "source": "@batijs/prisma", + "target": "@batijs/compile", + "type": "static" + }, + { + "source": "@batijs/prisma", + "target": "npm:@prisma/client", + "type": "static" + }, + { + "source": "@batijs/prisma", + "target": "npm:@types/node", + "type": "static" + }, + { + "source": "@batijs/prisma", + "target": "npm:colorette", + "type": "static" + }, + { + "source": "@batijs/prisma", + "target": "npm:prisma", + "type": "static" + }, + { + "source": "@batijs/prisma", + "target": "@batijs/core", + "type": "static" + } + ], + "@batijs/sentry": [ + { + "source": "@batijs/sentry", + "target": "@batijs/compile", + "type": "static" + }, + { + "source": "@batijs/sentry", + "target": "npm:@sentry/vite-plugin", + "type": "static" + }, + { + "source": "@batijs/sentry", + "target": "npm:@types/node", + "type": "static" + }, + { + "source": "@batijs/sentry", + "target": "npm:vite", + "type": "static" + }, + { + "source": "@batijs/sentry", + "target": "@batijs/core", + "type": "static" + } + ], + "@batijs/shared": [ + { + "source": "@batijs/shared", + "target": "@batijs/compile", + "type": "static" + }, + { + "source": "@batijs/shared", + "target": "npm:@types/node", + "type": "static" + }, + { + "source": "@batijs/shared", + "target": "npm:vike", + "type": "static" + }, + { + "source": "@batijs/shared", + "target": "npm:vite", + "type": "static" + } + ], + "@batijs/sqlite": [ + { + "source": "@batijs/sqlite", + "target": "@batijs/compile", + "type": "static" + }, + { + "source": "@batijs/sqlite", + "target": "npm:@types/better-sqlite3", + "type": "static" + }, + { + "source": "@batijs/sqlite", + "target": "npm:@types/node", + "type": "static" + }, + { + "source": "@batijs/sqlite", + "target": "npm:better-sqlite3", + "type": "static" + }, + { + "source": "@batijs/sqlite", + "target": "npm:dotenv", + "type": "static" + }, + { + "source": "@batijs/sqlite", + "target": "npm:tsx", + "type": "static" + }, + { + "source": "@batijs/sqlite", + "target": "@batijs/core", + "type": "static" + } + ], + "@batijs/vercel": [ + { + "source": "@batijs/vercel", + "target": "@batijs/compile", + "type": "static" + }, + { + "source": "@batijs/vercel", + "target": "npm:@photonjs/vercel", + "type": "static" + }, + { + "source": "@batijs/vercel", + "target": "npm:@types/node", + "type": "static" + }, + { + "source": "@batijs/vercel", + "target": "npm:h3", + "type": "static" + }, + { + "source": "@batijs/vercel", + "target": "npm:vike", + "type": "static" + }, + { + "source": "@batijs/vercel", + "target": "npm:vite", + "type": "static" + }, + { + "source": "@batijs/vercel", + "target": "@batijs/core", + "type": "static" + } + ], + "@batijs/auth0": [ + { + "source": "@batijs/auth0", + "target": "@batijs/compile", + "type": "static" + }, + { + "source": "@batijs/auth0", + "target": "npm:@types/node", + "type": "static" + }, + { + "source": "@batijs/auth0", + "target": "@batijs/core", + "type": "static" + } + ], + "@batijs/biome": [ + { + "source": "@batijs/biome", + "target": "@batijs/compile", + "type": "static" + }, + { + "source": "@batijs/biome", + "target": "npm:@biomejs/biome", + "type": "static" + }, + { + "source": "@batijs/biome", + "target": "npm:@biomejs/wasm-nodejs", + "type": "static" + }, + { + "source": "@batijs/biome", + "target": "npm:@types/node", + "type": "static" + }, + { + "source": "@batijs/biome", + "target": "@batijs/core", + "type": "static" + } + ], + "@batijs/react": [ + { + "source": "@batijs/react", + "target": "npm:@babel/core", + "type": "static" + }, + { + "source": "@batijs/react", + "target": "npm:@babel/plugin-syntax-flow", + "type": "static" + }, + { + "source": "@batijs/react", + "target": "npm:@babel/plugin-transform-react-jsx", + "type": "static" + }, + { + "source": "@batijs/react", + "target": "@batijs/compile", + "type": "static" + }, + { + "source": "@batijs/react", + "target": "npm:@mantine/core", + "type": "static" + }, + { + "source": "@batijs/react", + "target": "npm:@types/node", + "type": "static" + }, + { + "source": "@batijs/react", + "target": "npm:@types/react", + "type": "static" + }, + { + "source": "@batijs/react", + "target": "npm:@types/react-dom", + "type": "static" + }, + { + "source": "@batijs/react", + "target": "npm:@vitejs/plugin-react", + "type": "static" + }, + { + "source": "@batijs/react", + "target": "npm:react", + "type": "static" + }, + { + "source": "@batijs/react", + "target": "npm:react-dom", + "type": "static" + }, + { + "source": "@batijs/react", + "target": "npm:tailwindcss", + "type": "static" + }, + { + "source": "@batijs/react", + "target": "npm:typescript", + "type": "static" + }, + { + "source": "@batijs/react", + "target": "npm:vike", + "type": "static" + }, + { + "source": "@batijs/react", + "target": "npm:vike-photon", + "type": "static" + }, + { + "source": "@batijs/react", + "target": "npm:vike-react", + "type": "static" + }, + { + "source": "@batijs/react", + "target": "npm:vite", + "type": "static" + }, + { + "source": "@batijs/react", + "target": "npm:vite-plugin-compiled-react", + "type": "static" + }, + { + "source": "@batijs/react", + "target": "@batijs/core", + "type": "static" + } + ], + "@batijs/solid": [ + { + "source": "@batijs/solid", + "target": "@batijs/compile", + "type": "static" + }, + { + "source": "@batijs/solid", + "target": "npm:@types/node", + "type": "static" + }, + { + "source": "@batijs/solid", + "target": "npm:solid-js", + "type": "static" + }, + { + "source": "@batijs/solid", + "target": "npm:tailwindcss", + "type": "static" + }, + { + "source": "@batijs/solid", + "target": "npm:typescript", + "type": "static" + }, + { + "source": "@batijs/solid", + "target": "npm:vike", + "type": "static" + }, + { + "source": "@batijs/solid", + "target": "npm:vike-photon", + "type": "static" + }, + { + "source": "@batijs/solid", + "target": "npm:vike-solid", + "type": "static" + }, + { + "source": "@batijs/solid", + "target": "npm:vite", + "type": "static" + }, + { + "source": "@batijs/solid", + "target": "npm:vite-plugin-solid", + "type": "static" + }, + { + "source": "@batijs/solid", + "target": "@batijs/core", + "type": "static" + } + ], + "@batijs/features": [ + { + "source": "@batijs/features", + "target": "npm:@types/node", + "type": "static" + }, + { + "source": "@batijs/features", + "target": "npm:tsdown", + "type": "static" + }, + { + "source": "@batijs/features", + "target": "npm:vitest", + "type": "static" + } + ], + "@batijs/hono": [ + { + "source": "@batijs/hono", + "target": "npm:@auth/core", + "type": "static" + }, + { + "source": "@batijs/hono", + "target": "@batijs/compile", + "type": "static" + }, + { + "source": "@batijs/hono", + "target": "npm:@photonjs/hono", + "type": "static" + }, + { + "source": "@batijs/hono", + "target": "npm:@trpc/server", + "type": "static" + }, + { + "source": "@batijs/hono", + "target": "npm:@types/aws-lambda", + "type": "static" + }, + { + "source": "@batijs/hono", + "target": "npm:@types/node", + "type": "static" + }, + { + "source": "@batijs/hono", + "target": "npm:dotenv", + "type": "static" + }, + { + "source": "@batijs/hono", + "target": "npm:hono", + "type": "static" + }, + { + "source": "@batijs/hono", + "target": "npm:telefunc", + "type": "static" + }, + { + "source": "@batijs/hono", + "target": "npm:vike", + "type": "static" + }, + { + "source": "@batijs/hono", + "target": "npm:vike-photon", + "type": "static" + }, + { + "source": "@batijs/hono", + "target": "npm:vite", + "type": "static" + }, + { + "source": "@batijs/hono", + "target": "@batijs/core", + "type": "static" + } + ], + "@batijs/pnpm": [ + { + "source": "@batijs/pnpm", + "target": "@batijs/compile", + "type": "static" + }, + { + "source": "@batijs/pnpm", + "target": "npm:@types/node", + "type": "static" + }, + { + "source": "@batijs/pnpm", + "target": "@batijs/core", + "type": "static" + } + ], + "@batijs/trpc": [ + { + "source": "@batijs/trpc", + "target": "@batijs/compile", + "type": "static" + }, + { + "source": "@batijs/trpc", + "target": "npm:@trpc/client", + "type": "static" + }, + { + "source": "@batijs/trpc", + "target": "npm:@trpc/server", + "type": "static" + }, + { + "source": "@batijs/trpc", + "target": "npm:@types/node", + "type": "static" + }, + { + "source": "@batijs/trpc", + "target": "npm:@universal-middleware/core", + "type": "static" + }, + { + "source": "@batijs/trpc", + "target": "npm:vite", + "type": "static" + }, + { + "source": "@batijs/trpc", + "target": "@batijs/core", + "type": "static" + } + ], + "@batijs/aws": [ + { + "source": "@batijs/aws", + "target": "@batijs/compile", + "type": "static" + }, + { + "source": "@batijs/aws", + "target": "npm:@types/node", + "type": "static" + }, + { + "source": "@batijs/aws", + "target": "npm:@types/which", + "type": "static" + }, + { + "source": "@batijs/aws", + "target": "npm:aws-cdk", + "type": "static" + }, + { + "source": "@batijs/aws", + "target": "npm:aws-cdk-lib", + "type": "static" + }, + { + "source": "@batijs/aws", + "target": "npm:cdk", + "type": "static" + }, + { + "source": "@batijs/aws", + "target": "npm:constructs", + "type": "static" + }, + { + "source": "@batijs/aws", + "target": "npm:esbuild", + "type": "static" + }, + { + "source": "@batijs/aws", + "target": "npm:npm-run-all2", + "type": "static" + }, + { + "source": "@batijs/aws", + "target": "npm:source-map-support", + "type": "static" + }, + { + "source": "@batijs/aws", + "target": "npm:tsx", + "type": "static" + }, + { + "source": "@batijs/aws", + "target": "npm:typescript", + "type": "static" + }, + { + "source": "@batijs/aws", + "target": "npm:vitest", + "type": "static" + }, + { + "source": "@batijs/aws", + "target": "npm:which", + "type": "static" + }, + { + "source": "@batijs/aws", + "target": "@batijs/core", + "type": "static" + } + ], + "@batijs/compile": [ + { + "source": "@batijs/compile", + "target": "npm:@types/node", + "type": "static" + }, + { + "source": "@batijs/compile", + "target": "npm:typescript", + "type": "static" + }, + { + "source": "@batijs/compile", + "target": "npm:unplugin-purge-polyfills", + "type": "static" + }, + { + "source": "@batijs/compile", + "target": "npm:globby", + "type": "static" + }, + { + "source": "@batijs/compile", + "target": "npm:tsdown", + "type": "static" + } + ], + "@batijs/vue": [ + { + "source": "@batijs/vue", + "target": "@batijs/compile", + "type": "static" + }, + { + "source": "@batijs/vue", + "target": "@batijs/tailwindcss", + "type": "static" + }, + { + "source": "@batijs/vue", + "target": "npm:@types/node", + "type": "static" + }, + { + "source": "@batijs/vue", + "target": "npm:@vitejs/plugin-vue", + "type": "static" + }, + { + "source": "@batijs/vue", + "target": "npm:tailwindcss", + "type": "static" + }, + { + "source": "@batijs/vue", + "target": "npm:typescript", + "type": "static" + }, + { + "source": "@batijs/vue", + "target": "npm:vike", + "type": "static" + }, + { + "source": "@batijs/vue", + "target": "npm:vike-photon", + "type": "static" + }, + { + "source": "@batijs/vue", + "target": "npm:vike-vue", + "type": "static" + }, + { + "source": "@batijs/vue", + "target": "npm:vite", + "type": "static" + }, + { + "source": "@batijs/vue", + "target": "npm:vue", + "type": "static" + }, + { + "source": "@batijs/vue", + "target": "npm:vue-gtag", + "type": "static" + }, + { + "source": "@batijs/vue", + "target": "@batijs/core", + "type": "static" + } + ], + "@batijs/d1": [ + { + "source": "@batijs/d1", + "target": "@batijs/compile", + "type": "static" + }, + { + "source": "@batijs/d1", + "target": "npm:@types/node", + "type": "static" + }, + { + "source": "@batijs/d1", + "target": "npm:@universal-middleware/core", + "type": "static" + }, + { + "source": "@batijs/d1", + "target": "npm:vike", + "type": "static" + }, + { + "source": "@batijs/d1", + "target": "npm:wrangler", + "type": "static" + }, + { + "source": "@batijs/d1", + "target": "@batijs/core", + "type": "static" + } + ], + "@batijs/h3": [ + { + "source": "@batijs/h3", + "target": "npm:@auth/core", + "type": "static" + }, + { + "source": "@batijs/h3", + "target": "@batijs/compile", + "type": "static" + }, + { + "source": "@batijs/h3", + "target": "npm:@photonjs/h3", + "type": "static" + }, + { + "source": "@batijs/h3", + "target": "npm:@trpc/server", + "type": "static" + }, + { + "source": "@batijs/h3", + "target": "npm:@types/express", + "type": "static" + }, + { + "source": "@batijs/h3", + "target": "npm:@types/node", + "type": "static" + }, + { + "source": "@batijs/h3", + "target": "npm:@universal-middleware/core", + "type": "static" + }, + { + "source": "@batijs/h3", + "target": "npm:dotenv", + "type": "static" + }, + { + "source": "@batijs/h3", + "target": "npm:h3", + "type": "static" + }, + { + "source": "@batijs/h3", + "target": "npm:telefunc", + "type": "static" + }, + { + "source": "@batijs/h3", + "target": "npm:vike", + "type": "static" + }, + { + "source": "@batijs/h3", + "target": "npm:vike-photon", + "type": "static" + }, + { + "source": "@batijs/h3", + "target": "npm:vite", + "type": "static" + }, + { + "source": "@batijs/h3", + "target": "@batijs/core", + "type": "static" + } + ], + "batijs": [ + { + "source": "batijs", + "target": "@batijs/cli", + "type": "static" + } + ], + "@batijs/build": [ + { + "source": "@batijs/build", + "target": "@batijs/core", + "type": "static" + }, + { + "source": "@batijs/build", + "target": "@batijs/compile", + "type": "static" + }, + { + "source": "@batijs/build", + "target": "@batijs/features", + "type": "static" + }, + { + "source": "@batijs/build", + "target": "npm:@types/node", + "type": "static" + }, + { + "source": "@batijs/build", + "target": "npm:tsdown", + "type": "static" + } + ], + "@batijs/tests": [ + { + "source": "@batijs/tests", + "target": "@batijs/core", + "type": "static" + }, + { + "source": "@batijs/tests", + "target": "@batijs/features", + "type": "static" + }, + { + "source": "@batijs/tests", + "target": "@batijs/tests-utils", + "type": "static" + }, + { + "source": "@batijs/tests", + "target": "npm:@types/node", + "type": "static" + }, + { + "source": "@batijs/tests", + "target": "npm:@types/which", + "type": "static" + }, + { + "source": "@batijs/tests", + "target": "npm:dotenv", + "type": "static" + }, + { + "source": "@batijs/tests", + "target": "npm:fast-glob", + "type": "static" + }, + { + "source": "@batijs/tests", + "target": "npm:knip", + "type": "static" + }, + { + "source": "@batijs/tests", + "target": "npm:mri", + "type": "static" + }, + { + "source": "@batijs/tests", + "target": "npm:p-limit", + "type": "static" + }, + { + "source": "@batijs/tests", + "target": "npm:tsdown", + "type": "static" + }, + { + "source": "@batijs/tests", + "target": "npm:tsx", + "type": "static" + }, + { + "source": "@batijs/tests", + "target": "npm:turbo", + "type": "static" + }, + { + "source": "@batijs/tests", + "target": "npm:typescript", + "type": "static" + }, + { + "source": "@batijs/tests", + "target": "npm:vitest", + "type": "static" + }, + { + "source": "@batijs/tests", + "target": "npm:yaml", + "type": "static" + } + ], + "@batijs/core": [ + { + "source": "@batijs/core", + "target": "@batijs/features", + "type": "static" + }, + { + "source": "@batijs/core", + "target": "npm:@types/eslint", + "type": "static" + }, + { + "source": "@batijs/core", + "target": "npm:@types/estree", + "type": "static" + }, + { + "source": "@batijs/core", + "target": "npm:@types/node", + "type": "static" + }, + { + "source": "@batijs/core", + "target": "npm:@types/which", + "type": "static" + }, + { + "source": "@batijs/core", + "target": "npm:@typescript-eslint/parser", + "type": "static" + }, + { + "source": "@batijs/core", + "target": "npm:@typescript-eslint/utils", + "type": "static" + }, + { + "source": "@batijs/core", + "target": "npm:attributes-parser", + "type": "static" + }, + { + "source": "@batijs/core", + "target": "npm:colorette", + "type": "static" + }, + { + "source": "@batijs/core", + "target": "npm:esbuild", + "type": "static" + }, + { + "source": "@batijs/core", + "target": "npm:eslint", + "type": "static" + }, + { + "source": "@batijs/core", + "target": "npm:eslint-plugin-solid", + "type": "static" + }, + { + "source": "@batijs/core", + "target": "npm:eslint-rule-composer", + "type": "static" + }, + { + "source": "@batijs/core", + "target": "npm:espree", + "type": "static" + }, + { + "source": "@batijs/core", + "target": "npm:magicast", + "type": "static" + }, + { + "source": "@batijs/core", + "target": "npm:mdast-builder", + "type": "static" + }, + { + "source": "@batijs/core", + "target": "npm:mdast-util-from-markdown", + "type": "static" + }, + { + "source": "@batijs/core", + "target": "npm:mdast-util-to-markdown", + "type": "static" + }, + { + "source": "@batijs/core", + "target": "npm:mdast-util-to-string", + "type": "static" + }, + { + "source": "@batijs/core", + "target": "npm:mdast-util-toc", + "type": "static" + }, + { + "source": "@batijs/core", + "target": "npm:prettier", + "type": "static" + }, + { + "source": "@batijs/core", + "target": "npm:squirrelly", + "type": "static" + }, + { + "source": "@batijs/core", + "target": "npm:tsdown", + "type": "static" + }, + { + "source": "@batijs/core", + "target": "npm:tsx", + "type": "static" + }, + { + "source": "@batijs/core", + "target": "npm:typescript", + "type": "static" + }, + { + "source": "@batijs/core", + "target": "npm:unplugin-purge-polyfills", + "type": "static" + }, + { + "source": "@batijs/core", + "target": "npm:vitest", + "type": "static" + }, + { + "source": "@batijs/core", + "target": "npm:vue-eslint-parser", + "type": "static" + }, + { + "source": "@batijs/core", + "target": "npm:which", + "type": "static" + }, + { + "source": "@batijs/core", + "target": "npm:yaml", + "type": "static" + } + ], + "@batijs/cli": [ + { + "source": "@batijs/cli", + "target": "@batijs/auth0", + "type": "implicit" + }, + { + "source": "@batijs/cli", + "target": "@batijs/authjs", + "type": "implicit" + }, + { + "source": "@batijs/cli", + "target": "@batijs/aws", + "type": "implicit" + }, + { + "source": "@batijs/cli", + "target": "@batijs/biome", + "type": "implicit" + }, + { + "source": "@batijs/cli", + "target": "@batijs/cloudflare", + "type": "implicit" + }, + { + "source": "@batijs/cli", + "target": "@batijs/compiled", + "type": "implicit" + }, + { + "source": "@batijs/cli", + "target": "@batijs/d1", + "type": "implicit" + }, + { + "source": "@batijs/cli", + "target": "@batijs/d1-kysely", + "type": "implicit" + }, + { + "source": "@batijs/cli", + "target": "@batijs/d1-sqlite", + "type": "implicit" + }, + { + "source": "@batijs/cli", + "target": "@batijs/drizzle", + "type": "implicit" + }, + { + "source": "@batijs/cli", + "target": "@batijs/eslint", + "type": "implicit" + }, + { + "source": "@batijs/cli", + "target": "@batijs/express", + "type": "implicit" + }, + { + "source": "@batijs/cli", + "target": "@batijs/fastify", + "type": "implicit" + }, + { + "source": "@batijs/cli", + "target": "@batijs/google-analytics", + "type": "implicit" + }, + { + "source": "@batijs/cli", + "target": "@batijs/h3", + "type": "implicit" + }, + { + "source": "@batijs/cli", + "target": "@batijs/hono", + "type": "implicit" + }, + { + "source": "@batijs/cli", + "target": "@batijs/kysely", + "type": "implicit" + }, + { + "source": "@batijs/cli", + "target": "@batijs/mantine", + "type": "implicit" + }, + { + "source": "@batijs/cli", + "target": "@batijs/oxlint", + "type": "implicit" + }, + { + "source": "@batijs/cli", + "target": "@batijs/photon", + "type": "implicit" + }, + { + "source": "@batijs/cli", + "target": "@batijs/plausible.io", + "type": "implicit" + }, + { + "source": "@batijs/cli", + "target": "@batijs/pnpm", + "type": "implicit" + }, + { + "source": "@batijs/cli", + "target": "@batijs/prettier", + "type": "implicit" + }, + { + "source": "@batijs/cli", + "target": "@batijs/prisma", + "type": "implicit" + }, + { + "source": "@batijs/cli", + "target": "@batijs/react", + "type": "implicit" + }, + { + "source": "@batijs/cli", + "target": "@batijs/react-sentry", + "type": "implicit" + }, + { + "source": "@batijs/cli", + "target": "@batijs/sentry", + "type": "implicit" + }, + { + "source": "@batijs/cli", + "target": "@batijs/shadcn-ui", + "type": "implicit" + }, + { + "source": "@batijs/cli", + "target": "@batijs/shared", + "type": "implicit" + }, + { + "source": "@batijs/cli", + "target": "@batijs/shared-db", + "type": "implicit" + }, + { + "source": "@batijs/cli", + "target": "@batijs/shared-server", + "type": "implicit" + }, + { + "source": "@batijs/cli", + "target": "@batijs/shared-todo", + "type": "implicit" + }, + { + "source": "@batijs/cli", + "target": "@batijs/solid", + "type": "implicit" + }, + { + "source": "@batijs/cli", + "target": "@batijs/solid-sentry", + "type": "implicit" + }, + { + "source": "@batijs/cli", + "target": "@batijs/sqlite", + "type": "implicit" + }, + { + "source": "@batijs/cli", + "target": "@batijs/storybook", + "type": "implicit" + }, + { + "source": "@batijs/cli", + "target": "@batijs/tailwindcss", + "type": "implicit" + }, + { + "source": "@batijs/cli", + "target": "@batijs/telefunc", + "type": "implicit" + }, + { + "source": "@batijs/cli", + "target": "@batijs/trpc", + "type": "implicit" + }, + { + "source": "@batijs/cli", + "target": "@batijs/ts-rest", + "type": "implicit" + }, + { + "source": "@batijs/cli", + "target": "@batijs/vercel", + "type": "implicit" + }, + { + "source": "@batijs/cli", + "target": "@batijs/vue", + "type": "implicit" + }, + { + "source": "@batijs/cli", + "target": "@batijs/vue-sentry", + "type": "implicit" + }, + { + "source": "@batijs/cli", + "target": "@batijs/build", + "type": "static" + }, + { + "source": "@batijs/cli", + "target": "@batijs/compile", + "type": "static" + }, + { + "source": "@batijs/cli", + "target": "npm:@inquirer/prompts", + "type": "static" + }, + { + "source": "@batijs/cli", + "target": "npm:@types/node", + "type": "static" + }, + { + "source": "@batijs/cli", + "target": "npm:@types/which", + "type": "static" + }, + { + "source": "@batijs/cli", + "target": "npm:citty", + "type": "static" + }, + { + "source": "@batijs/cli", + "target": "npm:colorette", + "type": "static" + }, + { + "source": "@batijs/cli", + "target": "npm:esbuild", + "type": "static" + }, + { + "source": "@batijs/cli", + "target": "npm:execa", + "type": "static" + }, + { + "source": "@batijs/cli", + "target": "npm:scule", + "type": "static" + }, + { + "source": "@batijs/cli", + "target": "npm:tsdown", + "type": "static" + }, + { + "source": "@batijs/cli", + "target": "npm:typescript", + "type": "static" + }, + { + "source": "@batijs/cli", + "target": "npm:unplugin-purge-polyfills", + "type": "static" + }, + { + "source": "@batijs/cli", + "target": "npm:vite", + "type": "static" + }, + { + "source": "@batijs/cli", + "target": "@batijs/core", + "type": "static" + }, + { + "source": "@batijs/cli", + "target": "@batijs/features", + "type": "static" + } + ], + "@batijs/elements": [ + { + "source": "@batijs/elements", + "target": "npm:@babel/core", + "type": "static" + }, + { + "source": "@batijs/elements", + "target": "@batijs/features", + "type": "static" + }, + { + "source": "@batijs/elements", + "target": "npm:@floating-ui/dom", + "type": "static" + }, + { + "source": "@batijs/elements", + "target": "npm:@floating-ui/utils", + "type": "static" + }, + { + "source": "@batijs/elements", + "target": "npm:@solid-primitives/scheduled", + "type": "static" + }, + { + "source": "@batijs/elements", + "target": "npm:@stackblitz/sdk", + "type": "static" + }, + { + "source": "@batijs/elements", + "target": "npm:@tailwindcss/vite", + "type": "static" + }, + { + "source": "@batijs/elements", + "target": "npm:babel-preset-solid", + "type": "static" + }, + { + "source": "@batijs/elements", + "target": "npm:bumpp", + "type": "static" + }, + { + "source": "@batijs/elements", + "target": "npm:clsx", + "type": "static" + }, + { + "source": "@batijs/elements", + "target": "npm:daisyui", + "type": "static" + }, + { + "source": "@batijs/elements", + "target": "npm:esbuild", + "type": "static" + }, + { + "source": "@batijs/elements", + "target": "npm:http-server", + "type": "static" + }, + { + "source": "@batijs/elements", + "target": "npm:solid-element", + "type": "static" + }, + { + "source": "@batijs/elements", + "target": "npm:solid-js", + "type": "static" + }, + { + "source": "@batijs/elements", + "target": "npm:solid-motionone", + "type": "static" + }, + { + "source": "@batijs/elements", + "target": "npm:tailwindcss", + "type": "static" + }, + { + "source": "@batijs/elements", + "target": "npm:tslib", + "type": "static" + }, + { + "source": "@batijs/elements", + "target": "npm:typescript", + "type": "static" + }, + { + "source": "@batijs/elements", + "target": "npm:vike", + "type": "static" + }, + { + "source": "@batijs/elements", + "target": "npm:vike-solid", + "type": "static" + }, + { + "source": "@batijs/elements", + "target": "npm:vite", + "type": "static" + }, + { + "source": "@batijs/elements", + "target": "npm:vite-plugin-solid", + "type": "static" + } + ], + "npm:@auth/core": [ + { + "source": "npm:@auth/core", + "target": "npm:@panva/hkdf", + "type": "static" + }, + { + "source": "npm:@auth/core", + "target": "npm:jose", + "type": "static" + }, + { + "source": "npm:@auth/core", + "target": "npm:oauth4webapi", + "type": "static" + }, + { + "source": "npm:@auth/core", + "target": "npm:preact", + "type": "static" + }, + { + "source": "npm:@auth/core", + "target": "npm:preact-render-to-string", + "type": "static" + } + ], + "npm:@babel/code-frame": [ + { + "source": "npm:@babel/code-frame", + "target": "npm:@babel/helper-validator-identifier", + "type": "static" + }, + { + "source": "npm:@babel/code-frame", + "target": "npm:js-tokens", + "type": "static" + }, + { + "source": "npm:@babel/code-frame", + "target": "npm:picocolors", + "type": "static" + } + ], + "npm:@babel/core": [ + { + "source": "npm:@babel/core", + "target": "npm:@babel/code-frame", + "type": "static" + }, + { + "source": "npm:@babel/core", + "target": "npm:@babel/generator", + "type": "static" + }, + { + "source": "npm:@babel/core", + "target": "npm:@babel/helper-compilation-targets", + "type": "static" + }, + { + "source": "npm:@babel/core", + "target": "npm:@babel/helper-module-transforms", + "type": "static" + }, + { + "source": "npm:@babel/core", + "target": "npm:@babel/helpers", + "type": "static" + }, + { + "source": "npm:@babel/core", + "target": "npm:@babel/parser", + "type": "static" + }, + { + "source": "npm:@babel/core", + "target": "npm:@babel/template", + "type": "static" + }, + { + "source": "npm:@babel/core", + "target": "npm:@babel/traverse", + "type": "static" + }, + { + "source": "npm:@babel/core", + "target": "npm:@babel/types", + "type": "static" + }, + { + "source": "npm:@babel/core", + "target": "npm:@jridgewell/remapping", + "type": "static" + }, + { + "source": "npm:@babel/core", + "target": "npm:convert-source-map", + "type": "static" + }, + { + "source": "npm:@babel/core", + "target": "npm:debug", + "type": "static" + }, + { + "source": "npm:@babel/core", + "target": "npm:gensync", + "type": "static" + }, + { + "source": "npm:@babel/core", + "target": "npm:json5", + "type": "static" + }, + { + "source": "npm:@babel/core", + "target": "npm:semver", + "type": "static" + } + ], + "npm:@babel/generator": [ + { + "source": "npm:@babel/generator", + "target": "npm:@babel/parser", + "type": "static" + }, + { + "source": "npm:@babel/generator", + "target": "npm:@babel/types", + "type": "static" + }, + { + "source": "npm:@babel/generator", + "target": "npm:@jridgewell/gen-mapping", + "type": "static" + }, + { + "source": "npm:@babel/generator", + "target": "npm:@jridgewell/trace-mapping", + "type": "static" + }, + { + "source": "npm:@babel/generator", + "target": "npm:jsesc", + "type": "static" + } + ], + "npm:@babel/generator@8.0.0-rc.2": [ + { + "source": "npm:@babel/generator@8.0.0-rc.2", + "target": "npm:@babel/parser@8.0.0-rc.2", + "type": "static" + }, + { + "source": "npm:@babel/generator@8.0.0-rc.2", + "target": "npm:@babel/types@8.0.0-rc.2", + "type": "static" + }, + { + "source": "npm:@babel/generator@8.0.0-rc.2", + "target": "npm:@jridgewell/gen-mapping", + "type": "static" + }, + { + "source": "npm:@babel/generator@8.0.0-rc.2", + "target": "npm:@jridgewell/trace-mapping", + "type": "static" + }, + { + "source": "npm:@babel/generator@8.0.0-rc.2", + "target": "npm:@types/jsesc", + "type": "static" + }, + { + "source": "npm:@babel/generator@8.0.0-rc.2", + "target": "npm:jsesc", + "type": "static" + } + ], + "npm:@babel/helper-annotate-as-pure": [ + { + "source": "npm:@babel/helper-annotate-as-pure", + "target": "npm:@babel/types", + "type": "static" + } + ], + "npm:@babel/helper-compilation-targets": [ + { + "source": "npm:@babel/helper-compilation-targets", + "target": "npm:@babel/compat-data", + "type": "static" + }, + { + "source": "npm:@babel/helper-compilation-targets", + "target": "npm:@babel/helper-validator-option", + "type": "static" + }, + { + "source": "npm:@babel/helper-compilation-targets", + "target": "npm:browserslist", + "type": "static" + }, + { + "source": "npm:@babel/helper-compilation-targets", + "target": "npm:lru-cache", + "type": "static" + }, + { + "source": "npm:@babel/helper-compilation-targets", + "target": "npm:semver", + "type": "static" + } + ], + "npm:@babel/helper-module-imports@7.18.6": [ + { + "source": "npm:@babel/helper-module-imports@7.18.6", + "target": "npm:@babel/types", + "type": "static" + } + ], + "npm:@babel/helper-module-imports": [ + { + "source": "npm:@babel/helper-module-imports", + "target": "npm:@babel/traverse", + "type": "static" + }, + { + "source": "npm:@babel/helper-module-imports", + "target": "npm:@babel/types", + "type": "static" + } + ], + "npm:@babel/helper-module-transforms": [ + { + "source": "npm:@babel/helper-module-transforms", + "target": "npm:@babel/core", + "type": "static" + }, + { + "source": "npm:@babel/helper-module-transforms", + "target": "npm:@babel/helper-module-imports", + "type": "static" + }, + { + "source": "npm:@babel/helper-module-transforms", + "target": "npm:@babel/helper-validator-identifier", + "type": "static" + }, + { + "source": "npm:@babel/helper-module-transforms", + "target": "npm:@babel/traverse", + "type": "static" + } + ], + "npm:@babel/helpers": [ + { + "source": "npm:@babel/helpers", + "target": "npm:@babel/template", + "type": "static" + }, + { + "source": "npm:@babel/helpers", + "target": "npm:@babel/types", + "type": "static" + } + ], + "npm:@babel/parser": [ + { + "source": "npm:@babel/parser", + "target": "npm:@babel/types", + "type": "static" + } + ], + "npm:@babel/parser@8.0.0-rc.2": [ + { + "source": "npm:@babel/parser@8.0.0-rc.2", + "target": "npm:@babel/types@8.0.0-rc.2", + "type": "static" + } + ], + "npm:@babel/plugin-syntax-flow": [ + { + "source": "npm:@babel/plugin-syntax-flow", + "target": "npm:@babel/core", + "type": "static" + }, + { + "source": "npm:@babel/plugin-syntax-flow", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + } + ], + "npm:@babel/plugin-syntax-jsx": [ + { + "source": "npm:@babel/plugin-syntax-jsx", + "target": "npm:@babel/core", + "type": "static" + }, + { + "source": "npm:@babel/plugin-syntax-jsx", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + } + ], + "npm:@babel/plugin-transform-flow-strip-types": [ + { + "source": "npm:@babel/plugin-transform-flow-strip-types", + "target": "npm:@babel/core", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-flow-strip-types", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-flow-strip-types", + "target": "npm:@babel/plugin-syntax-flow", + "type": "static" + } + ], + "npm:@babel/plugin-transform-react-jsx": [ + { + "source": "npm:@babel/plugin-transform-react-jsx", + "target": "npm:@babel/core", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-react-jsx", + "target": "npm:@babel/helper-annotate-as-pure", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-react-jsx", + "target": "npm:@babel/helper-module-imports", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-react-jsx", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-react-jsx", + "target": "npm:@babel/plugin-syntax-jsx", + "type": "static" + }, + { + "source": "npm:@babel/plugin-transform-react-jsx", + "target": "npm:@babel/types", + "type": "static" + } + ], + "npm:@babel/template": [ + { + "source": "npm:@babel/template", + "target": "npm:@babel/code-frame", + "type": "static" + }, + { + "source": "npm:@babel/template", + "target": "npm:@babel/parser", + "type": "static" + }, + { + "source": "npm:@babel/template", + "target": "npm:@babel/types", + "type": "static" + } + ], + "npm:@babel/traverse": [ + { + "source": "npm:@babel/traverse", + "target": "npm:@babel/code-frame", + "type": "static" + }, + { + "source": "npm:@babel/traverse", + "target": "npm:@babel/generator", + "type": "static" + }, + { + "source": "npm:@babel/traverse", + "target": "npm:@babel/helper-globals", + "type": "static" + }, + { + "source": "npm:@babel/traverse", + "target": "npm:@babel/parser", + "type": "static" + }, + { + "source": "npm:@babel/traverse", + "target": "npm:@babel/template", + "type": "static" + }, + { + "source": "npm:@babel/traverse", + "target": "npm:@babel/types", + "type": "static" + }, + { + "source": "npm:@babel/traverse", + "target": "npm:debug", + "type": "static" + } + ], + "npm:@babel/types": [ + { + "source": "npm:@babel/types", + "target": "npm:@babel/helper-string-parser", + "type": "static" + }, + { + "source": "npm:@babel/types", + "target": "npm:@babel/helper-validator-identifier", + "type": "static" + } + ], + "npm:@babel/types@8.0.0-rc.2": [ + { + "source": "npm:@babel/types@8.0.0-rc.2", + "target": "npm:@babel/helper-string-parser@8.0.0-rc.3", + "type": "static" + }, + { + "source": "npm:@babel/types@8.0.0-rc.2", + "target": "npm:@babel/helper-validator-identifier@8.0.0-rc.2", + "type": "static" + } + ], + "npm:@batijs/compile": [ + { + "source": "npm:@batijs/compile", + "target": "npm:globby", + "type": "static" + }, + { + "source": "npm:@batijs/compile", + "target": "npm:tsdown", + "type": "static" + } + ], + "npm:@biomejs/biome": [ + { + "source": "npm:@biomejs/biome", + "target": "npm:@biomejs/cli-darwin-arm64", + "type": "static" + }, + { + "source": "npm:@biomejs/biome", + "target": "npm:@biomejs/cli-darwin-x64", + "type": "static" + }, + { + "source": "npm:@biomejs/biome", + "target": "npm:@biomejs/cli-linux-arm64", + "type": "static" + }, + { + "source": "npm:@biomejs/biome", + "target": "npm:@biomejs/cli-linux-arm64-musl", + "type": "static" + }, + { + "source": "npm:@biomejs/biome", + "target": "npm:@biomejs/cli-linux-x64", + "type": "static" + }, + { + "source": "npm:@biomejs/biome", + "target": "npm:@biomejs/cli-linux-x64-musl", + "type": "static" + }, + { + "source": "npm:@biomejs/biome", + "target": "npm:@biomejs/cli-win32-arm64", + "type": "static" + }, + { + "source": "npm:@biomejs/biome", + "target": "npm:@biomejs/cli-win32-x64", + "type": "static" + } + ], + "npm:@brillout/vite-plugin-server-entry": [ + { + "source": "npm:@brillout/vite-plugin-server-entry", + "target": "npm:@brillout/import", + "type": "static" + }, + { + "source": "npm:@brillout/vite-plugin-server-entry", + "target": "npm:@brillout/picocolors", + "type": "static" + } + ], + "npm:@browserless/devices": [ + { + "source": "npm:@browserless/devices", + "target": "npm:didyoumean3", + "type": "static" + }, + { + "source": "npm:@browserless/devices", + "target": "npm:memoize-one", + "type": "static" + }, + { + "source": "npm:@browserless/devices", + "target": "npm:require-one-of", + "type": "static" + } + ], + "npm:@browserless/errors": [ + { + "source": "npm:@browserless/errors", + "target": "npm:debug-logfmt", + "type": "static" + }, + { + "source": "npm:@browserless/errors", + "target": "npm:ensure-error", + "type": "static" + }, + { + "source": "npm:@browserless/errors", + "target": "npm:serialize-error", + "type": "static" + }, + { + "source": "npm:@browserless/errors", + "target": "npm:whoops", + "type": "static" + } + ], + "npm:@browserless/goto": [ + { + "source": "npm:@browserless/goto", + "target": "npm:@browserless/devices", + "type": "static" + }, + { + "source": "npm:@browserless/goto", + "target": "npm:@duckduckgo/autoconsent", + "type": "static" + }, + { + "source": "npm:@browserless/goto", + "target": "npm:@ghostery/adblocker-puppeteer", + "type": "static" + }, + { + "source": "npm:@browserless/goto", + "target": "npm:debug-logfmt", + "type": "static" + }, + { + "source": "npm:@browserless/goto", + "target": "npm:got", + "type": "static" + }, + { + "source": "npm:@browserless/goto", + "target": "npm:is-url-http", + "type": "static" + }, + { + "source": "npm:@browserless/goto", + "target": "npm:p-reflect", + "type": "static" + }, + { + "source": "npm:@browserless/goto", + "target": "npm:p-timeout", + "type": "static" + }, + { + "source": "npm:@browserless/goto", + "target": "npm:shallow-equal", + "type": "static" + }, + { + "source": "npm:@browserless/goto", + "target": "npm:tough-cookie", + "type": "static" + } + ], + "npm:@browserless/pdf": [ + { + "source": "npm:@browserless/pdf", + "target": "npm:@browserless/goto", + "type": "static" + }, + { + "source": "npm:@browserless/pdf", + "target": "npm:@browserless/screenshot", + "type": "static" + }, + { + "source": "npm:@browserless/pdf", + "target": "npm:@kikobeats/time-span", + "type": "static" + }, + { + "source": "npm:@browserless/pdf", + "target": "npm:debug-logfmt", + "type": "static" + }, + { + "source": "npm:@browserless/pdf", + "target": "npm:pretty-ms@7.0.1", + "type": "static" + } + ], + "npm:@browserless/screenshot": [ + { + "source": "npm:@browserless/screenshot", + "target": "npm:@browserless/goto", + "type": "static" + }, + { + "source": "npm:@browserless/screenshot", + "target": "npm:@kikobeats/content-type", + "type": "static" + }, + { + "source": "npm:@browserless/screenshot", + "target": "npm:@kikobeats/time-span", + "type": "static" + }, + { + "source": "npm:@browserless/screenshot", + "target": "npm:automad-prism-themes", + "type": "static" + }, + { + "source": "npm:@browserless/screenshot", + "target": "npm:debug-logfmt", + "type": "static" + }, + { + "source": "npm:@browserless/screenshot", + "target": "npm:got", + "type": "static" + }, + { + "source": "npm:@browserless/screenshot", + "target": "npm:is-html-content", + "type": "static" + }, + { + "source": "npm:@browserless/screenshot", + "target": "npm:is-url-http", + "type": "static" + }, + { + "source": "npm:@browserless/screenshot", + "target": "npm:lodash", + "type": "static" + }, + { + "source": "npm:@browserless/screenshot", + "target": "npm:map-values-deep", + "type": "static" + }, + { + "source": "npm:@browserless/screenshot", + "target": "npm:mime@3.0.0", + "type": "static" + }, + { + "source": "npm:@browserless/screenshot", + "target": "npm:null-prototype-object", + "type": "static" + }, + { + "source": "npm:@browserless/screenshot", + "target": "npm:p-reflect", + "type": "static" + }, + { + "source": "npm:@browserless/screenshot", + "target": "npm:pretty-ms@7.0.1", + "type": "static" + }, + { + "source": "npm:@browserless/screenshot", + "target": "npm:prism-themes", + "type": "static" + }, + { + "source": "npm:@browserless/screenshot", + "target": "npm:sharp", + "type": "static" + }, + { + "source": "npm:@browserless/screenshot", + "target": "npm:svg-gradient", + "type": "static" + } + ], + "npm:@chevrotain/cst-dts-gen": [ + { + "source": "npm:@chevrotain/cst-dts-gen", + "target": "npm:@chevrotain/gast", + "type": "static" + }, + { + "source": "npm:@chevrotain/cst-dts-gen", + "target": "npm:@chevrotain/types", + "type": "static" + }, + { + "source": "npm:@chevrotain/cst-dts-gen", + "target": "npm:lodash@4.17.21", + "type": "static" + } + ], + "npm:@chevrotain/gast": [ + { + "source": "npm:@chevrotain/gast", + "target": "npm:@chevrotain/types", + "type": "static" + }, + { + "source": "npm:@chevrotain/gast", + "target": "npm:lodash@4.17.21", + "type": "static" + } + ], + "npm:@cloudflare/unenv-preset": [ + { + "source": "npm:@cloudflare/unenv-preset", + "target": "npm:unenv", + "type": "static" + }, + { + "source": "npm:@cloudflare/unenv-preset", + "target": "npm:workerd", + "type": "static" + } + ], + "npm:@cloudflare/unenv-preset@2.7.13": [ + { + "source": "npm:@cloudflare/unenv-preset@2.7.13", + "target": "npm:unenv", + "type": "static" + }, + { + "source": "npm:@cloudflare/unenv-preset@2.7.13", + "target": "npm:workerd", + "type": "static" + } + ], + "npm:@cloudflare/vite-plugin": [ + { + "source": "npm:@cloudflare/vite-plugin", + "target": "npm:@cloudflare/unenv-preset@2.7.13", + "type": "static" + }, + { + "source": "npm:@cloudflare/vite-plugin", + "target": "npm:@remix-run/node-fetch-server", + "type": "static" + }, + { + "source": "npm:@cloudflare/vite-plugin", + "target": "npm:defu", + "type": "static" + }, + { + "source": "npm:@cloudflare/vite-plugin", + "target": "npm:get-port", + "type": "static" + }, + { + "source": "npm:@cloudflare/vite-plugin", + "target": "npm:miniflare@4.20251217.0", + "type": "static" + }, + { + "source": "npm:@cloudflare/vite-plugin", + "target": "npm:picocolors", + "type": "static" + }, + { + "source": "npm:@cloudflare/vite-plugin", + "target": "npm:tinyglobby", + "type": "static" + }, + { + "source": "npm:@cloudflare/vite-plugin", + "target": "npm:unenv", + "type": "static" + }, + { + "source": "npm:@cloudflare/vite-plugin", + "target": "npm:vite", + "type": "static" + }, + { + "source": "npm:@cloudflare/vite-plugin", + "target": "npm:wrangler", + "type": "static" + }, + { + "source": "npm:@cloudflare/vite-plugin", + "target": "npm:ws", + "type": "static" + } + ], + "npm:@compiled/babel-plugin-strip-runtime": [ + { + "source": "npm:@compiled/babel-plugin-strip-runtime", + "target": "npm:@babel/core", + "type": "static" + }, + { + "source": "npm:@compiled/babel-plugin-strip-runtime", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@compiled/babel-plugin-strip-runtime", + "target": "npm:@babel/template", + "type": "static" + }, + { + "source": "npm:@compiled/babel-plugin-strip-runtime", + "target": "npm:@babel/traverse", + "type": "static" + }, + { + "source": "npm:@compiled/babel-plugin-strip-runtime", + "target": "npm:@babel/types", + "type": "static" + }, + { + "source": "npm:@compiled/babel-plugin-strip-runtime", + "target": "npm:@compiled/css", + "type": "static" + }, + { + "source": "npm:@compiled/babel-plugin-strip-runtime", + "target": "npm:@compiled/utils", + "type": "static" + } + ], + "npm:@compiled/babel-plugin": [ + { + "source": "npm:@compiled/babel-plugin", + "target": "npm:@babel/core", + "type": "static" + }, + { + "source": "npm:@compiled/babel-plugin", + "target": "npm:@babel/generator", + "type": "static" + }, + { + "source": "npm:@compiled/babel-plugin", + "target": "npm:@babel/helper-plugin-utils", + "type": "static" + }, + { + "source": "npm:@compiled/babel-plugin", + "target": "npm:@babel/parser", + "type": "static" + }, + { + "source": "npm:@compiled/babel-plugin", + "target": "npm:@babel/plugin-syntax-jsx", + "type": "static" + }, + { + "source": "npm:@compiled/babel-plugin", + "target": "npm:@babel/plugin-transform-flow-strip-types", + "type": "static" + }, + { + "source": "npm:@compiled/babel-plugin", + "target": "npm:@babel/template", + "type": "static" + }, + { + "source": "npm:@compiled/babel-plugin", + "target": "npm:@babel/traverse", + "type": "static" + }, + { + "source": "npm:@compiled/babel-plugin", + "target": "npm:@babel/types", + "type": "static" + }, + { + "source": "npm:@compiled/babel-plugin", + "target": "npm:@compiled/css", + "type": "static" + }, + { + "source": "npm:@compiled/babel-plugin", + "target": "npm:@compiled/utils", + "type": "static" + }, + { + "source": "npm:@compiled/babel-plugin", + "target": "npm:@emotion/is-prop-valid", + "type": "static" + }, + { + "source": "npm:@compiled/babel-plugin", + "target": "npm:resolve@1.22.10", + "type": "static" + } + ], + "npm:@compiled/css": [ + { + "source": "npm:@compiled/css", + "target": "npm:@compiled/utils", + "type": "static" + }, + { + "source": "npm:@compiled/css", + "target": "npm:autoprefixer", + "type": "static" + }, + { + "source": "npm:@compiled/css", + "target": "npm:cssnano-preset-default", + "type": "static" + }, + { + "source": "npm:@compiled/css", + "target": "npm:postcss", + "type": "static" + }, + { + "source": "npm:@compiled/css", + "target": "npm:postcss-discard-duplicates", + "type": "static" + }, + { + "source": "npm:@compiled/css", + "target": "npm:postcss-nested@5.0.6", + "type": "static" + }, + { + "source": "npm:@compiled/css", + "target": "npm:postcss-normalize-whitespace", + "type": "static" + }, + { + "source": "npm:@compiled/css", + "target": "npm:postcss-selector-parser@6.1.2", + "type": "static" + }, + { + "source": "npm:@compiled/css", + "target": "npm:postcss-values-parser", + "type": "static" + } + ], + "npm:@compiled/react": [ + { + "source": "npm:@compiled/react", + "target": "npm:csstype", + "type": "static" + }, + { + "source": "npm:@compiled/react", + "target": "npm:react", + "type": "static" + } + ], + "npm:@compiled/utils": [ + { + "source": "npm:@compiled/utils", + "target": "npm:convert-source-map", + "type": "static" + }, + { + "source": "npm:@compiled/utils", + "target": "npm:source-map@0.7.6", + "type": "static" + } + ], + "npm:@cspotcode/source-map-support": [ + { + "source": "npm:@cspotcode/source-map-support", + "target": "npm:@jridgewell/trace-mapping@0.3.9", + "type": "static" + } + ], + "npm:@duckduckgo/autoconsent": [ + { + "source": "npm:@duckduckgo/autoconsent", + "target": "npm:@ghostery/adblocker", + "type": "static" + }, + { + "source": "npm:@duckduckgo/autoconsent", + "target": "npm:@ghostery/adblocker-content", + "type": "static" + }, + { + "source": "npm:@duckduckgo/autoconsent", + "target": "npm:tldts-experimental", + "type": "static" + } + ], + "npm:@electric-sql/pglite-socket": [ + { + "source": "npm:@electric-sql/pglite-socket", + "target": "npm:@electric-sql/pglite", + "type": "static" + } + ], + "npm:@electric-sql/pglite-tools": [ + { + "source": "npm:@electric-sql/pglite-tools", + "target": "npm:@electric-sql/pglite", + "type": "static" + } + ], + "npm:@emnapi/core": [ + { + "source": "npm:@emnapi/core", + "target": "npm:@emnapi/wasi-threads", + "type": "static" + }, + { + "source": "npm:@emnapi/core", + "target": "npm:tslib", + "type": "static" + } + ], + "npm:@emnapi/runtime": [ + { + "source": "npm:@emnapi/runtime", + "target": "npm:tslib", + "type": "static" + } + ], + "npm:@emnapi/wasi-threads": [ + { + "source": "npm:@emnapi/wasi-threads", + "target": "npm:tslib", + "type": "static" + } + ], + "npm:@emotion/is-prop-valid": [ + { + "source": "npm:@emotion/is-prop-valid", + "target": "npm:@emotion/memoize", + "type": "static" + } + ], + "npm:@esbuild-kit/core-utils": [ + { + "source": "npm:@esbuild-kit/core-utils", + "target": "npm:esbuild@0.18.20", + "type": "static" + }, + { + "source": "npm:@esbuild-kit/core-utils", + "target": "npm:source-map-support", + "type": "static" + } + ], + "npm:@esbuild-kit/esm-loader": [ + { + "source": "npm:@esbuild-kit/esm-loader", + "target": "npm:@esbuild-kit/core-utils", + "type": "static" + }, + { + "source": "npm:@esbuild-kit/esm-loader", + "target": "npm:get-tsconfig", + "type": "static" + } + ], + "npm:@eslint-community/eslint-utils": [ + { + "source": "npm:@eslint-community/eslint-utils", + "target": "npm:eslint", + "type": "static" + }, + { + "source": "npm:@eslint-community/eslint-utils", + "target": "npm:eslint-visitor-keys@3.4.3", + "type": "static" + } + ], + "npm:@eslint/config-array": [ + { + "source": "npm:@eslint/config-array", + "target": "npm:@eslint/object-schema", + "type": "static" + }, + { + "source": "npm:@eslint/config-array", + "target": "npm:debug", + "type": "static" + }, + { + "source": "npm:@eslint/config-array", + "target": "npm:minimatch", + "type": "static" + } + ], + "npm:@eslint/config-helpers": [ + { + "source": "npm:@eslint/config-helpers", + "target": "npm:@eslint/core", + "type": "static" + } + ], + "npm:@eslint/core": [ + { + "source": "npm:@eslint/core", + "target": "npm:@types/json-schema", + "type": "static" + } + ], + "npm:@eslint/eslintrc": [ + { + "source": "npm:@eslint/eslintrc", + "target": "npm:ajv", + "type": "static" + }, + { + "source": "npm:@eslint/eslintrc", + "target": "npm:debug", + "type": "static" + }, + { + "source": "npm:@eslint/eslintrc", + "target": "npm:espree@10.4.0", + "type": "static" + }, + { + "source": "npm:@eslint/eslintrc", + "target": "npm:globals@14.0.0", + "type": "static" + }, + { + "source": "npm:@eslint/eslintrc", + "target": "npm:ignore", + "type": "static" + }, + { + "source": "npm:@eslint/eslintrc", + "target": "npm:import-fresh", + "type": "static" + }, + { + "source": "npm:@eslint/eslintrc", + "target": "npm:js-yaml", + "type": "static" + }, + { + "source": "npm:@eslint/eslintrc", + "target": "npm:minimatch", + "type": "static" + }, + { + "source": "npm:@eslint/eslintrc", + "target": "npm:strip-json-comments@3.1.1", + "type": "static" + } + ], + "npm:@eslint/plugin-kit": [ + { + "source": "npm:@eslint/plugin-kit", + "target": "npm:@eslint/core", + "type": "static" + }, + { + "source": "npm:@eslint/plugin-kit", + "target": "npm:levn", + "type": "static" + } + ], + "npm:@fastify/ajv-compiler": [ + { + "source": "npm:@fastify/ajv-compiler", + "target": "npm:ajv@8.18.0", + "type": "static" + }, + { + "source": "npm:@fastify/ajv-compiler", + "target": "npm:ajv-formats", + "type": "static" + }, + { + "source": "npm:@fastify/ajv-compiler", + "target": "npm:fast-uri", + "type": "static" + } + ], + "npm:@fastify/fast-json-stringify-compiler": [ + { + "source": "npm:@fastify/fast-json-stringify-compiler", + "target": "npm:fast-json-stringify", + "type": "static" + } + ], + "npm:@fastify/merge-json-schemas": [ + { + "source": "npm:@fastify/merge-json-schemas", + "target": "npm:dequal", + "type": "static" + } + ], + "npm:@fastify/proxy-addr": [ + { + "source": "npm:@fastify/proxy-addr", + "target": "npm:@fastify/forwarded", + "type": "static" + }, + { + "source": "npm:@fastify/proxy-addr", + "target": "npm:ipaddr.js", + "type": "static" + } + ], + "npm:@floating-ui/core": [ + { + "source": "npm:@floating-ui/core", + "target": "npm:@floating-ui/utils", + "type": "static" + } + ], + "npm:@floating-ui/dom": [ + { + "source": "npm:@floating-ui/dom", + "target": "npm:@floating-ui/core", + "type": "static" + }, + { + "source": "npm:@floating-ui/dom", + "target": "npm:@floating-ui/utils", + "type": "static" + } + ], + "npm:@floating-ui/react-dom": [ + { + "source": "npm:@floating-ui/react-dom", + "target": "npm:@floating-ui/dom", + "type": "static" + }, + { + "source": "npm:@floating-ui/react-dom", + "target": "npm:react", + "type": "static" + }, + { + "source": "npm:@floating-ui/react-dom", + "target": "npm:react-dom", + "type": "static" + } + ], + "npm:@floating-ui/react": [ + { + "source": "npm:@floating-ui/react", + "target": "npm:@floating-ui/react-dom", + "type": "static" + }, + { + "source": "npm:@floating-ui/react", + "target": "npm:@floating-ui/utils", + "type": "static" + }, + { + "source": "npm:@floating-ui/react", + "target": "npm:react", + "type": "static" + }, + { + "source": "npm:@floating-ui/react", + "target": "npm:react-dom", + "type": "static" + }, + { + "source": "npm:@floating-ui/react", + "target": "npm:tabbable", + "type": "static" + } + ], + "npm:@ghostery/adblocker-content": [ + { + "source": "npm:@ghostery/adblocker-content", + "target": "npm:@ghostery/adblocker-extended-selectors", + "type": "static" + } + ], + "npm:@ghostery/adblocker-puppeteer": [ + { + "source": "npm:@ghostery/adblocker-puppeteer", + "target": "npm:@ghostery/adblocker", + "type": "static" + }, + { + "source": "npm:@ghostery/adblocker-puppeteer", + "target": "npm:@ghostery/adblocker-content", + "type": "static" + }, + { + "source": "npm:@ghostery/adblocker-puppeteer", + "target": "npm:puppeteer", + "type": "static" + }, + { + "source": "npm:@ghostery/adblocker-puppeteer", + "target": "npm:tldts-experimental", + "type": "static" + } + ], + "npm:@ghostery/adblocker": [ + { + "source": "npm:@ghostery/adblocker", + "target": "npm:@ghostery/adblocker-content", + "type": "static" + }, + { + "source": "npm:@ghostery/adblocker", + "target": "npm:@ghostery/adblocker-extended-selectors", + "type": "static" + }, + { + "source": "npm:@ghostery/adblocker", + "target": "npm:@ghostery/url-parser", + "type": "static" + }, + { + "source": "npm:@ghostery/adblocker", + "target": "npm:@remusao/guess-url-type", + "type": "static" + }, + { + "source": "npm:@ghostery/adblocker", + "target": "npm:@remusao/small", + "type": "static" + }, + { + "source": "npm:@ghostery/adblocker", + "target": "npm:@remusao/smaz", + "type": "static" + }, + { + "source": "npm:@ghostery/adblocker", + "target": "npm:tldts-experimental", + "type": "static" + } + ], + "npm:@ghostery/url-parser": [ + { + "source": "npm:@ghostery/url-parser", + "target": "npm:tldts-experimental", + "type": "static" + } + ], + "npm:@hono/node-server": [ + { + "source": "npm:@hono/node-server", + "target": "npm:hono@4.11.4", + "type": "static" + }, + { + "source": "npm:@hono/node-server", + "target": "npm:hono", + "type": "static" + } + ], + "npm:@humanfs/node": [ + { + "source": "npm:@humanfs/node", + "target": "npm:@humanfs/core", + "type": "static" + }, + { + "source": "npm:@humanfs/node", + "target": "npm:@humanwhocodes/retry", + "type": "static" + } + ], + "npm:@img/sharp-darwin-arm64@0.33.5": [ + { + "source": "npm:@img/sharp-darwin-arm64@0.33.5", + "target": "npm:@img/sharp-libvips-darwin-arm64@1.0.4", + "type": "static" + } + ], + "npm:@img/sharp-darwin-arm64@0.34.5": [ + { + "source": "npm:@img/sharp-darwin-arm64@0.34.5", + "target": "npm:@img/sharp-libvips-darwin-arm64@1.2.4", + "type": "static" + } + ], + "npm:@img/sharp-darwin-x64@0.33.5": [ + { + "source": "npm:@img/sharp-darwin-x64@0.33.5", + "target": "npm:@img/sharp-libvips-darwin-x64@1.0.4", + "type": "static" + } + ], + "npm:@img/sharp-darwin-x64@0.34.5": [ + { + "source": "npm:@img/sharp-darwin-x64@0.34.5", + "target": "npm:@img/sharp-libvips-darwin-x64@1.2.4", + "type": "static" + } + ], + "npm:@img/sharp-linux-arm64@0.33.5": [ + { + "source": "npm:@img/sharp-linux-arm64@0.33.5", + "target": "npm:@img/sharp-libvips-linux-arm64@1.0.4", + "type": "static" + } + ], + "npm:@img/sharp-linux-arm64@0.34.5": [ + { + "source": "npm:@img/sharp-linux-arm64@0.34.5", + "target": "npm:@img/sharp-libvips-linux-arm64@1.2.4", + "type": "static" + } + ], + "npm:@img/sharp-linux-arm@0.33.5": [ + { + "source": "npm:@img/sharp-linux-arm@0.33.5", + "target": "npm:@img/sharp-libvips-linux-arm@1.0.5", + "type": "static" + } + ], + "npm:@img/sharp-linux-arm@0.34.5": [ + { + "source": "npm:@img/sharp-linux-arm@0.34.5", + "target": "npm:@img/sharp-libvips-linux-arm@1.2.4", + "type": "static" + } + ], + "npm:@img/sharp-linux-ppc64": [ + { + "source": "npm:@img/sharp-linux-ppc64", + "target": "npm:@img/sharp-libvips-linux-ppc64", + "type": "static" + } + ], + "npm:@img/sharp-linux-riscv64": [ + { + "source": "npm:@img/sharp-linux-riscv64", + "target": "npm:@img/sharp-libvips-linux-riscv64", + "type": "static" + } + ], + "npm:@img/sharp-linux-s390x@0.33.5": [ + { + "source": "npm:@img/sharp-linux-s390x@0.33.5", + "target": "npm:@img/sharp-libvips-linux-s390x@1.0.4", + "type": "static" + } + ], + "npm:@img/sharp-linux-s390x@0.34.5": [ + { + "source": "npm:@img/sharp-linux-s390x@0.34.5", + "target": "npm:@img/sharp-libvips-linux-s390x@1.2.4", + "type": "static" + } + ], + "npm:@img/sharp-linux-x64@0.33.5": [ + { + "source": "npm:@img/sharp-linux-x64@0.33.5", + "target": "npm:@img/sharp-libvips-linux-x64@1.0.4", + "type": "static" + } + ], + "npm:@img/sharp-linux-x64": [ + { + "source": "npm:@img/sharp-linux-x64", + "target": "npm:@img/sharp-libvips-linux-x64", + "type": "static" + } + ], + "npm:@img/sharp-linuxmusl-arm64@0.33.5": [ + { + "source": "npm:@img/sharp-linuxmusl-arm64@0.33.5", + "target": "npm:@img/sharp-libvips-linuxmusl-arm64@1.0.4", + "type": "static" + } + ], + "npm:@img/sharp-linuxmusl-arm64@0.34.5": [ + { + "source": "npm:@img/sharp-linuxmusl-arm64@0.34.5", + "target": "npm:@img/sharp-libvips-linuxmusl-arm64@1.2.4", + "type": "static" + } + ], + "npm:@img/sharp-linuxmusl-x64@0.33.5": [ + { + "source": "npm:@img/sharp-linuxmusl-x64@0.33.5", + "target": "npm:@img/sharp-libvips-linuxmusl-x64@1.0.4", + "type": "static" + } + ], + "npm:@img/sharp-linuxmusl-x64": [ + { + "source": "npm:@img/sharp-linuxmusl-x64", + "target": "npm:@img/sharp-libvips-linuxmusl-x64", + "type": "static" + } + ], + "npm:@img/sharp-wasm32@0.33.5": [ + { + "source": "npm:@img/sharp-wasm32@0.33.5", + "target": "npm:@emnapi/runtime", + "type": "static" + } + ], + "npm:@img/sharp-wasm32@0.34.5": [ + { + "source": "npm:@img/sharp-wasm32@0.34.5", + "target": "npm:@emnapi/runtime", + "type": "static" + } + ], + "npm:@inquirer/checkbox": [ + { + "source": "npm:@inquirer/checkbox", + "target": "npm:@inquirer/ansi", + "type": "static" + }, + { + "source": "npm:@inquirer/checkbox", + "target": "npm:@inquirer/core", + "type": "static" + }, + { + "source": "npm:@inquirer/checkbox", + "target": "npm:@inquirer/figures", + "type": "static" + }, + { + "source": "npm:@inquirer/checkbox", + "target": "npm:@inquirer/type", + "type": "static" + }, + { + "source": "npm:@inquirer/checkbox", + "target": "npm:@types/node", + "type": "static" + } + ], + "npm:@inquirer/confirm": [ + { + "source": "npm:@inquirer/confirm", + "target": "npm:@inquirer/core", + "type": "static" + }, + { + "source": "npm:@inquirer/confirm", + "target": "npm:@inquirer/type", + "type": "static" + }, + { + "source": "npm:@inquirer/confirm", + "target": "npm:@types/node", + "type": "static" + } + ], + "npm:@inquirer/core": [ + { + "source": "npm:@inquirer/core", + "target": "npm:@inquirer/ansi", + "type": "static" + }, + { + "source": "npm:@inquirer/core", + "target": "npm:@inquirer/figures", + "type": "static" + }, + { + "source": "npm:@inquirer/core", + "target": "npm:@inquirer/type", + "type": "static" + }, + { + "source": "npm:@inquirer/core", + "target": "npm:cli-width", + "type": "static" + }, + { + "source": "npm:@inquirer/core", + "target": "npm:fast-wrap-ansi", + "type": "static" + }, + { + "source": "npm:@inquirer/core", + "target": "npm:mute-stream", + "type": "static" + }, + { + "source": "npm:@inquirer/core", + "target": "npm:signal-exit", + "type": "static" + }, + { + "source": "npm:@inquirer/core", + "target": "npm:@types/node", + "type": "static" + } + ], + "npm:@inquirer/editor": [ + { + "source": "npm:@inquirer/editor", + "target": "npm:@inquirer/core", + "type": "static" + }, + { + "source": "npm:@inquirer/editor", + "target": "npm:@inquirer/external-editor", + "type": "static" + }, + { + "source": "npm:@inquirer/editor", + "target": "npm:@inquirer/type", + "type": "static" + }, + { + "source": "npm:@inquirer/editor", + "target": "npm:@types/node", + "type": "static" + } + ], + "npm:@inquirer/expand": [ + { + "source": "npm:@inquirer/expand", + "target": "npm:@inquirer/core", + "type": "static" + }, + { + "source": "npm:@inquirer/expand", + "target": "npm:@inquirer/type", + "type": "static" + }, + { + "source": "npm:@inquirer/expand", + "target": "npm:@types/node", + "type": "static" + } + ], + "npm:@inquirer/external-editor": [ + { + "source": "npm:@inquirer/external-editor", + "target": "npm:chardet", + "type": "static" + }, + { + "source": "npm:@inquirer/external-editor", + "target": "npm:iconv-lite@0.7.2", + "type": "static" + }, + { + "source": "npm:@inquirer/external-editor", + "target": "npm:@types/node", + "type": "static" + } + ], + "npm:@inquirer/input": [ + { + "source": "npm:@inquirer/input", + "target": "npm:@inquirer/core", + "type": "static" + }, + { + "source": "npm:@inquirer/input", + "target": "npm:@inquirer/type", + "type": "static" + }, + { + "source": "npm:@inquirer/input", + "target": "npm:@types/node", + "type": "static" + } + ], + "npm:@inquirer/number": [ + { + "source": "npm:@inquirer/number", + "target": "npm:@inquirer/core", + "type": "static" + }, + { + "source": "npm:@inquirer/number", + "target": "npm:@inquirer/type", + "type": "static" + }, + { + "source": "npm:@inquirer/number", + "target": "npm:@types/node", + "type": "static" + } + ], + "npm:@inquirer/password": [ + { + "source": "npm:@inquirer/password", + "target": "npm:@inquirer/ansi", + "type": "static" + }, + { + "source": "npm:@inquirer/password", + "target": "npm:@inquirer/core", + "type": "static" + }, + { + "source": "npm:@inquirer/password", + "target": "npm:@inquirer/type", + "type": "static" + }, + { + "source": "npm:@inquirer/password", + "target": "npm:@types/node", + "type": "static" + } + ], + "npm:@inquirer/prompts": [ + { + "source": "npm:@inquirer/prompts", + "target": "npm:@inquirer/checkbox", + "type": "static" + }, + { + "source": "npm:@inquirer/prompts", + "target": "npm:@inquirer/confirm", + "type": "static" + }, + { + "source": "npm:@inquirer/prompts", + "target": "npm:@inquirer/editor", + "type": "static" + }, + { + "source": "npm:@inquirer/prompts", + "target": "npm:@inquirer/expand", + "type": "static" + }, + { + "source": "npm:@inquirer/prompts", + "target": "npm:@inquirer/input", + "type": "static" + }, + { + "source": "npm:@inquirer/prompts", + "target": "npm:@inquirer/number", + "type": "static" + }, + { + "source": "npm:@inquirer/prompts", + "target": "npm:@inquirer/password", + "type": "static" + }, + { + "source": "npm:@inquirer/prompts", + "target": "npm:@inquirer/rawlist", + "type": "static" + }, + { + "source": "npm:@inquirer/prompts", + "target": "npm:@inquirer/search", + "type": "static" + }, + { + "source": "npm:@inquirer/prompts", + "target": "npm:@inquirer/select", + "type": "static" + }, + { + "source": "npm:@inquirer/prompts", + "target": "npm:@types/node", + "type": "static" + } + ], + "npm:@inquirer/rawlist": [ + { + "source": "npm:@inquirer/rawlist", + "target": "npm:@inquirer/core", + "type": "static" + }, + { + "source": "npm:@inquirer/rawlist", + "target": "npm:@inquirer/type", + "type": "static" + }, + { + "source": "npm:@inquirer/rawlist", + "target": "npm:@types/node", + "type": "static" + } + ], + "npm:@inquirer/search": [ + { + "source": "npm:@inquirer/search", + "target": "npm:@inquirer/core", + "type": "static" + }, + { + "source": "npm:@inquirer/search", + "target": "npm:@inquirer/figures", + "type": "static" + }, + { + "source": "npm:@inquirer/search", + "target": "npm:@inquirer/type", + "type": "static" + }, + { + "source": "npm:@inquirer/search", + "target": "npm:@types/node", + "type": "static" + } + ], + "npm:@inquirer/select": [ + { + "source": "npm:@inquirer/select", + "target": "npm:@inquirer/ansi", + "type": "static" + }, + { + "source": "npm:@inquirer/select", + "target": "npm:@inquirer/core", + "type": "static" + }, + { + "source": "npm:@inquirer/select", + "target": "npm:@inquirer/figures", + "type": "static" + }, + { + "source": "npm:@inquirer/select", + "target": "npm:@inquirer/type", + "type": "static" + }, + { + "source": "npm:@inquirer/select", + "target": "npm:@types/node", + "type": "static" + } + ], + "npm:@inquirer/type": [ + { + "source": "npm:@inquirer/type", + "target": "npm:@types/node", + "type": "static" + } + ], + "npm:@isaacs/cliui@8.0.2": [ + { + "source": "npm:@isaacs/cliui@8.0.2", + "target": "npm:string-width@5.1.2", + "type": "static" + }, + { + "source": "npm:@isaacs/cliui@8.0.2", + "target": "npm:string-width-cjs", + "type": "static" + }, + { + "source": "npm:@isaacs/cliui@8.0.2", + "target": "npm:strip-ansi", + "type": "static" + }, + { + "source": "npm:@isaacs/cliui@8.0.2", + "target": "npm:strip-ansi-cjs", + "type": "static" + }, + { + "source": "npm:@isaacs/cliui@8.0.2", + "target": "npm:wrap-ansi@8.1.0", + "type": "static" + }, + { + "source": "npm:@isaacs/cliui@8.0.2", + "target": "npm:wrap-ansi-cjs", + "type": "static" + } + ], + "npm:@isaacs/fs-minipass": [ + { + "source": "npm:@isaacs/fs-minipass", + "target": "npm:minipass", + "type": "static" + } + ], + "npm:@jest/schemas": [ + { + "source": "npm:@jest/schemas", + "target": "npm:@sinclair/typebox", + "type": "static" + } + ], + "npm:@jridgewell/gen-mapping": [ + { + "source": "npm:@jridgewell/gen-mapping", + "target": "npm:@jridgewell/sourcemap-codec", + "type": "static" + }, + { + "source": "npm:@jridgewell/gen-mapping", + "target": "npm:@jridgewell/trace-mapping", + "type": "static" + } + ], + "npm:@jridgewell/remapping": [ + { + "source": "npm:@jridgewell/remapping", + "target": "npm:@jridgewell/gen-mapping", + "type": "static" + }, + { + "source": "npm:@jridgewell/remapping", + "target": "npm:@jridgewell/trace-mapping", + "type": "static" + } + ], + "npm:@jridgewell/trace-mapping": [ + { + "source": "npm:@jridgewell/trace-mapping", + "target": "npm:@jridgewell/resolve-uri", + "type": "static" + }, + { + "source": "npm:@jridgewell/trace-mapping", + "target": "npm:@jridgewell/sourcemap-codec", + "type": "static" + } + ], + "npm:@jridgewell/trace-mapping@0.3.9": [ + { + "source": "npm:@jridgewell/trace-mapping@0.3.9", + "target": "npm:@jridgewell/resolve-uri", + "type": "static" + }, + { + "source": "npm:@jridgewell/trace-mapping@0.3.9", + "target": "npm:@jridgewell/sourcemap-codec", + "type": "static" + } + ], + "npm:@mantine/core": [ + { + "source": "npm:@mantine/core", + "target": "npm:@floating-ui/react", + "type": "static" + }, + { + "source": "npm:@mantine/core", + "target": "npm:@mantine/hooks", + "type": "static" + }, + { + "source": "npm:@mantine/core", + "target": "npm:clsx", + "type": "static" + }, + { + "source": "npm:@mantine/core", + "target": "npm:react", + "type": "static" + }, + { + "source": "npm:@mantine/core", + "target": "npm:react-dom", + "type": "static" + }, + { + "source": "npm:@mantine/core", + "target": "npm:react-number-format", + "type": "static" + }, + { + "source": "npm:@mantine/core", + "target": "npm:react-remove-scroll", + "type": "static" + }, + { + "source": "npm:@mantine/core", + "target": "npm:react-textarea-autosize", + "type": "static" + }, + { + "source": "npm:@mantine/core", + "target": "npm:type-fest", + "type": "static" + } + ], + "npm:@mantine/hooks": [ + { + "source": "npm:@mantine/hooks", + "target": "npm:react", + "type": "static" + } + ], + "npm:@manypkg/find-root": [ + { + "source": "npm:@manypkg/find-root", + "target": "npm:@manypkg/tools", + "type": "static" + } + ], + "npm:@manypkg/tools": [ + { + "source": "npm:@manypkg/tools", + "target": "npm:jju", + "type": "static" + }, + { + "source": "npm:@manypkg/tools", + "target": "npm:js-yaml", + "type": "static" + }, + { + "source": "npm:@manypkg/tools", + "target": "npm:tinyglobby", + "type": "static" + } + ], + "npm:@mapbox/node-pre-gyp": [ + { + "source": "npm:@mapbox/node-pre-gyp", + "target": "npm:consola", + "type": "static" + }, + { + "source": "npm:@mapbox/node-pre-gyp", + "target": "npm:detect-libc", + "type": "static" + }, + { + "source": "npm:@mapbox/node-pre-gyp", + "target": "npm:https-proxy-agent@7.0.6", + "type": "static" + }, + { + "source": "npm:@mapbox/node-pre-gyp", + "target": "npm:node-fetch@2.7.0", + "type": "static" + }, + { + "source": "npm:@mapbox/node-pre-gyp", + "target": "npm:nopt", + "type": "static" + }, + { + "source": "npm:@mapbox/node-pre-gyp", + "target": "npm:semver@7.7.4", + "type": "static" + }, + { + "source": "npm:@mapbox/node-pre-gyp", + "target": "npm:tar", + "type": "static" + } + ], + "npm:@motionone/animation": [ + { + "source": "npm:@motionone/animation", + "target": "npm:@motionone/easing", + "type": "static" + }, + { + "source": "npm:@motionone/animation", + "target": "npm:@motionone/types", + "type": "static" + }, + { + "source": "npm:@motionone/animation", + "target": "npm:@motionone/utils", + "type": "static" + }, + { + "source": "npm:@motionone/animation", + "target": "npm:tslib", + "type": "static" + } + ], + "npm:@motionone/dom": [ + { + "source": "npm:@motionone/dom", + "target": "npm:@motionone/animation", + "type": "static" + }, + { + "source": "npm:@motionone/dom", + "target": "npm:@motionone/generators", + "type": "static" + }, + { + "source": "npm:@motionone/dom", + "target": "npm:@motionone/types", + "type": "static" + }, + { + "source": "npm:@motionone/dom", + "target": "npm:@motionone/utils", + "type": "static" + }, + { + "source": "npm:@motionone/dom", + "target": "npm:hey-listen", + "type": "static" + }, + { + "source": "npm:@motionone/dom", + "target": "npm:tslib", + "type": "static" + } + ], + "npm:@motionone/easing": [ + { + "source": "npm:@motionone/easing", + "target": "npm:@motionone/utils", + "type": "static" + }, + { + "source": "npm:@motionone/easing", + "target": "npm:tslib", + "type": "static" + } + ], + "npm:@motionone/generators": [ + { + "source": "npm:@motionone/generators", + "target": "npm:@motionone/types", + "type": "static" + }, + { + "source": "npm:@motionone/generators", + "target": "npm:@motionone/utils", + "type": "static" + }, + { + "source": "npm:@motionone/generators", + "target": "npm:tslib", + "type": "static" + } + ], + "npm:@motionone/utils": [ + { + "source": "npm:@motionone/utils", + "target": "npm:@motionone/types", + "type": "static" + }, + { + "source": "npm:@motionone/utils", + "target": "npm:hey-listen", + "type": "static" + }, + { + "source": "npm:@motionone/utils", + "target": "npm:tslib", + "type": "static" + } + ], + "npm:@mrleebo/prisma-ast": [ + { + "source": "npm:@mrleebo/prisma-ast", + "target": "npm:chevrotain", + "type": "static" + }, + { + "source": "npm:@mrleebo/prisma-ast", + "target": "npm:lilconfig", + "type": "static" + } + ], + "npm:@napi-rs/wasm-runtime": [ + { + "source": "npm:@napi-rs/wasm-runtime", + "target": "npm:@emnapi/core", + "type": "static" + }, + { + "source": "npm:@napi-rs/wasm-runtime", + "target": "npm:@emnapi/runtime", + "type": "static" + }, + { + "source": "npm:@napi-rs/wasm-runtime", + "target": "npm:@tybys/wasm-util", + "type": "static" + } + ], + "npm:@napi-rs/wasm-runtime@1.1.1": [ + { + "source": "npm:@napi-rs/wasm-runtime@1.1.1", + "target": "npm:@emnapi/core", + "type": "static" + }, + { + "source": "npm:@napi-rs/wasm-runtime@1.1.1", + "target": "npm:@emnapi/runtime", + "type": "static" + }, + { + "source": "npm:@napi-rs/wasm-runtime@1.1.1", + "target": "npm:@tybys/wasm-util@0.10.1", + "type": "static" + } + ], + "npm:@nodelib/fs.scandir": [ + { + "source": "npm:@nodelib/fs.scandir", + "target": "npm:@nodelib/fs.stat", + "type": "static" + }, + { + "source": "npm:@nodelib/fs.scandir", + "target": "npm:run-parallel", + "type": "static" + } + ], + "npm:@nodelib/fs.walk": [ + { + "source": "npm:@nodelib/fs.walk", + "target": "npm:@nodelib/fs.scandir", + "type": "static" + }, + { + "source": "npm:@nodelib/fs.walk", + "target": "npm:fastq", + "type": "static" + } + ], + "npm:@npmcli/agent": [ + { + "source": "npm:@npmcli/agent", + "target": "npm:agent-base", + "type": "static" + }, + { + "source": "npm:@npmcli/agent", + "target": "npm:http-proxy-agent", + "type": "static" + }, + { + "source": "npm:@npmcli/agent", + "target": "npm:https-proxy-agent@7.0.6", + "type": "static" + }, + { + "source": "npm:@npmcli/agent", + "target": "npm:lru-cache@10.4.3", + "type": "static" + }, + { + "source": "npm:@npmcli/agent", + "target": "npm:socks-proxy-agent", + "type": "static" + } + ], + "npm:@npmcli/fs": [ + { + "source": "npm:@npmcli/fs", + "target": "npm:semver@7.7.4", + "type": "static" + } + ], + "npm:@oxc-parser/binding-wasm32-wasi": [ + { + "source": "npm:@oxc-parser/binding-wasm32-wasi", + "target": "npm:@napi-rs/wasm-runtime@1.1.1", + "type": "static" + } + ], + "npm:@oxc-resolver/binding-wasm32-wasi": [ + { + "source": "npm:@oxc-resolver/binding-wasm32-wasi", + "target": "npm:@napi-rs/wasm-runtime@1.1.1", + "type": "static" + } + ], + "npm:@photonjs/cloudflare": [ + { + "source": "npm:@photonjs/cloudflare", + "target": "npm:@cloudflare/vite-plugin", + "type": "static" + }, + { + "source": "npm:@photonjs/cloudflare", + "target": "npm:@photonjs/core", + "type": "static" + }, + { + "source": "npm:@photonjs/cloudflare", + "target": "npm:@universal-middleware/cloudflare", + "type": "static" + } + ], + "npm:@photonjs/core": [ + { + "source": "npm:@photonjs/core", + "target": "npm:@brillout/vite-plugin-server-entry", + "type": "static" + }, + { + "source": "npm:@photonjs/core", + "target": "npm:@universal-middleware/cloudflare", + "type": "static" + }, + { + "source": "npm:@photonjs/core", + "target": "npm:@universal-middleware/compress", + "type": "static" + }, + { + "source": "npm:@photonjs/core", + "target": "npm:@universal-middleware/core", + "type": "static" + }, + { + "source": "npm:@photonjs/core", + "target": "npm:@universal-middleware/express", + "type": "static" + }, + { + "source": "npm:@photonjs/core", + "target": "npm:@universal-middleware/sirv", + "type": "static" + }, + { + "source": "npm:@photonjs/core", + "target": "npm:estree-walker", + "type": "static" + }, + { + "source": "npm:@photonjs/core", + "target": "npm:ts-deepmerge", + "type": "static" + }, + { + "source": "npm:@photonjs/core", + "target": "npm:zod@4.3.6", + "type": "static" + }, + { + "source": "npm:@photonjs/core", + "target": "npm:vite", + "type": "static" + } + ], + "npm:@photonjs/express": [ + { + "source": "npm:@photonjs/express", + "target": "npm:@photonjs/core", + "type": "static" + }, + { + "source": "npm:@photonjs/express", + "target": "npm:@universal-middleware/express", + "type": "static" + }, + { + "source": "npm:@photonjs/express", + "target": "npm:vite", + "type": "static" + } + ], + "npm:@photonjs/fastify": [ + { + "source": "npm:@photonjs/fastify", + "target": "npm:@photonjs/core", + "type": "static" + }, + { + "source": "npm:@photonjs/fastify", + "target": "npm:@universal-middleware/fastify", + "type": "static" + }, + { + "source": "npm:@photonjs/fastify", + "target": "npm:vite", + "type": "static" + } + ], + "npm:@photonjs/h3": [ + { + "source": "npm:@photonjs/h3", + "target": "npm:@photonjs/core", + "type": "static" + }, + { + "source": "npm:@photonjs/h3", + "target": "npm:@universal-middleware/h3", + "type": "static" + }, + { + "source": "npm:@photonjs/h3", + "target": "npm:vite", + "type": "static" + } + ], + "npm:@photonjs/hono": [ + { + "source": "npm:@photonjs/hono", + "target": "npm:@photonjs/core", + "type": "static" + }, + { + "source": "npm:@photonjs/hono", + "target": "npm:@universal-middleware/hono", + "type": "static" + }, + { + "source": "npm:@photonjs/hono", + "target": "npm:@hono/node-server", + "type": "static" + }, + { + "source": "npm:@photonjs/hono", + "target": "npm:vite", + "type": "static" + } + ], + "npm:@photonjs/runtime": [ + { + "source": "npm:@photonjs/runtime", + "target": "npm:@photonjs/core", + "type": "static" + }, + { + "source": "npm:@photonjs/runtime", + "target": "npm:@photonjs/srvx", + "type": "static" + }, + { + "source": "npm:@photonjs/runtime", + "target": "npm:@universal-middleware/core", + "type": "static" + }, + { + "source": "npm:@photonjs/runtime", + "target": "npm:@universal-middleware/sirv", + "type": "static" + }, + { + "source": "npm:@photonjs/runtime", + "target": "npm:srvx", + "type": "static" + }, + { + "source": "npm:@photonjs/runtime", + "target": "npm:standaloner", + "type": "static" + }, + { + "source": "npm:@photonjs/runtime", + "target": "npm:vite", + "type": "static" + } + ], + "npm:@photonjs/srvx": [ + { + "source": "npm:@photonjs/srvx", + "target": "npm:@photonjs/core", + "type": "static" + }, + { + "source": "npm:@photonjs/srvx", + "target": "npm:@universal-middleware/srvx", + "type": "static" + }, + { + "source": "npm:@photonjs/srvx", + "target": "npm:vite", + "type": "static" + } + ], + "npm:@photonjs/vercel": [ + { + "source": "npm:@photonjs/vercel", + "target": "npm:@brillout/libassert", + "type": "static" + }, + { + "source": "npm:@photonjs/vercel", + "target": "npm:@manypkg/find-root", + "type": "static" + }, + { + "source": "npm:@photonjs/vercel", + "target": "npm:@photonjs/core", + "type": "static" + }, + { + "source": "npm:@photonjs/vercel", + "target": "npm:@photonjs/runtime", + "type": "static" + }, + { + "source": "npm:@photonjs/vercel", + "target": "npm:@universal-middleware/core", + "type": "static" + }, + { + "source": "npm:@photonjs/vercel", + "target": "npm:@universal-middleware/vercel", + "type": "static" + }, + { + "source": "npm:@photonjs/vercel", + "target": "npm:@vercel/build-utils", + "type": "static" + }, + { + "source": "npm:@photonjs/vercel", + "target": "npm:@vercel/nft", + "type": "static" + }, + { + "source": "npm:@photonjs/vercel", + "target": "npm:@vercel/routing-utils", + "type": "static" + }, + { + "source": "npm:@photonjs/vercel", + "target": "npm:@vite-plugin-vercel/schemas", + "type": "static" + }, + { + "source": "npm:@photonjs/vercel", + "target": "npm:convert-route", + "type": "static" + }, + { + "source": "npm:@photonjs/vercel", + "target": "npm:esbuild", + "type": "static" + }, + { + "source": "npm:@photonjs/vercel", + "target": "npm:fast-glob", + "type": "static" + }, + { + "source": "npm:@photonjs/vercel", + "target": "npm:magicast", + "type": "static" + }, + { + "source": "npm:@photonjs/vercel", + "target": "npm:path-to-regexp", + "type": "static" + }, + { + "source": "npm:@photonjs/vercel", + "target": "npm:strip-ansi", + "type": "static" + }, + { + "source": "npm:@photonjs/vercel", + "target": "npm:vite", + "type": "static" + }, + { + "source": "npm:@photonjs/vercel", + "target": "npm:vite-plugin-wasm", + "type": "static" + } + ], + "npm:@poppinss/colors": [ + { + "source": "npm:@poppinss/colors", + "target": "npm:kleur", + "type": "static" + } + ], + "npm:@poppinss/dumper": [ + { + "source": "npm:@poppinss/dumper", + "target": "npm:@poppinss/colors", + "type": "static" + }, + { + "source": "npm:@poppinss/dumper", + "target": "npm:@sindresorhus/is@7.1.0", + "type": "static" + }, + { + "source": "npm:@poppinss/dumper", + "target": "npm:supports-color@10.2.2", + "type": "static" + } + ], + "npm:@prisma/client": [ + { + "source": "npm:@prisma/client", + "target": "npm:@prisma/client-runtime-utils", + "type": "static" + }, + { + "source": "npm:@prisma/client", + "target": "npm:prisma", + "type": "static" + }, + { + "source": "npm:@prisma/client", + "target": "npm:typescript", + "type": "static" + } + ], + "npm:@prisma/config": [ + { + "source": "npm:@prisma/config", + "target": "npm:c12", + "type": "static" + }, + { + "source": "npm:@prisma/config", + "target": "npm:deepmerge-ts", + "type": "static" + }, + { + "source": "npm:@prisma/config", + "target": "npm:effect", + "type": "static" + }, + { + "source": "npm:@prisma/config", + "target": "npm:empathic", + "type": "static" + } + ], + "npm:@prisma/dev": [ + { + "source": "npm:@prisma/dev", + "target": "npm:@electric-sql/pglite", + "type": "static" + }, + { + "source": "npm:@prisma/dev", + "target": "npm:@electric-sql/pglite-socket", + "type": "static" + }, + { + "source": "npm:@prisma/dev", + "target": "npm:@electric-sql/pglite-tools", + "type": "static" + }, + { + "source": "npm:@prisma/dev", + "target": "npm:@hono/node-server", + "type": "static" + }, + { + "source": "npm:@prisma/dev", + "target": "npm:@mrleebo/prisma-ast", + "type": "static" + }, + { + "source": "npm:@prisma/dev", + "target": "npm:@prisma/get-platform", + "type": "static" + }, + { + "source": "npm:@prisma/dev", + "target": "npm:@prisma/query-plan-executor", + "type": "static" + }, + { + "source": "npm:@prisma/dev", + "target": "npm:foreground-child", + "type": "static" + }, + { + "source": "npm:@prisma/dev", + "target": "npm:get-port-please", + "type": "static" + }, + { + "source": "npm:@prisma/dev", + "target": "npm:hono@4.11.4", + "type": "static" + }, + { + "source": "npm:@prisma/dev", + "target": "npm:http-status-codes", + "type": "static" + }, + { + "source": "npm:@prisma/dev", + "target": "npm:pathe", + "type": "static" + }, + { + "source": "npm:@prisma/dev", + "target": "npm:proper-lockfile", + "type": "static" + }, + { + "source": "npm:@prisma/dev", + "target": "npm:remeda", + "type": "static" + }, + { + "source": "npm:@prisma/dev", + "target": "npm:std-env@3.10.0", + "type": "static" + }, + { + "source": "npm:@prisma/dev", + "target": "npm:valibot", + "type": "static" + }, + { + "source": "npm:@prisma/dev", + "target": "npm:zeptomatch", + "type": "static" + } + ], + "npm:@prisma/engines": [ + { + "source": "npm:@prisma/engines", + "target": "npm:@prisma/debug", + "type": "static" + }, + { + "source": "npm:@prisma/engines", + "target": "npm:@prisma/engines-version", + "type": "static" + }, + { + "source": "npm:@prisma/engines", + "target": "npm:@prisma/fetch-engine", + "type": "static" + }, + { + "source": "npm:@prisma/engines", + "target": "npm:@prisma/get-platform@7.5.0", + "type": "static" + } + ], + "npm:@prisma/fetch-engine": [ + { + "source": "npm:@prisma/fetch-engine", + "target": "npm:@prisma/debug", + "type": "static" + }, + { + "source": "npm:@prisma/fetch-engine", + "target": "npm:@prisma/engines-version", + "type": "static" + }, + { + "source": "npm:@prisma/fetch-engine", + "target": "npm:@prisma/get-platform@7.5.0", + "type": "static" + } + ], + "npm:@prisma/get-platform": [ + { + "source": "npm:@prisma/get-platform", + "target": "npm:@prisma/debug@7.2.0", + "type": "static" + } + ], + "npm:@prisma/get-platform@7.5.0": [ + { + "source": "npm:@prisma/get-platform@7.5.0", + "target": "npm:@prisma/debug", + "type": "static" + } + ], + "npm:@prisma/studio-core": [ + { + "source": "npm:@prisma/studio-core", + "target": "npm:@types/react", + "type": "static" + }, + { + "source": "npm:@prisma/studio-core", + "target": "npm:react", + "type": "static" + }, + { + "source": "npm:@prisma/studio-core", + "target": "npm:react-dom", + "type": "static" + } + ], + "npm:@puppeteer/browsers": [ + { + "source": "npm:@puppeteer/browsers", + "target": "npm:debug", + "type": "static" + }, + { + "source": "npm:@puppeteer/browsers", + "target": "npm:extract-zip", + "type": "static" + }, + { + "source": "npm:@puppeteer/browsers", + "target": "npm:progress", + "type": "static" + }, + { + "source": "npm:@puppeteer/browsers", + "target": "npm:proxy-agent", + "type": "static" + }, + { + "source": "npm:@puppeteer/browsers", + "target": "npm:semver@7.7.4", + "type": "static" + }, + { + "source": "npm:@puppeteer/browsers", + "target": "npm:tar-fs", + "type": "static" + }, + { + "source": "npm:@puppeteer/browsers", + "target": "npm:yargs", + "type": "static" + } + ], + "npm:@quansync/fs": [ + { + "source": "npm:@quansync/fs", + "target": "npm:quansync", + "type": "static" + } + ], + "npm:@radix-ui/react-icons": [ + { + "source": "npm:@radix-ui/react-icons", + "target": "npm:react", + "type": "static" + } + ], + "npm:@remusao/smaz-compress": [ + { + "source": "npm:@remusao/smaz-compress", + "target": "npm:@remusao/trie", + "type": "static" + } + ], + "npm:@remusao/smaz": [ + { + "source": "npm:@remusao/smaz", + "target": "npm:@remusao/smaz-compress", + "type": "static" + }, + { + "source": "npm:@remusao/smaz", + "target": "npm:@remusao/smaz-decompress", + "type": "static" + } + ], + "npm:@rolldown/binding-wasm32-wasi@1.0.0-beta.51": [ + { + "source": "npm:@rolldown/binding-wasm32-wasi@1.0.0-beta.51", + "target": "npm:@napi-rs/wasm-runtime@1.1.1", + "type": "static" + } + ], + "npm:@rolldown/binding-wasm32-wasi@1.0.0-rc.11": [ + { + "source": "npm:@rolldown/binding-wasm32-wasi@1.0.0-rc.11", + "target": "npm:@napi-rs/wasm-runtime@1.1.1", + "type": "static" + } + ], + "npm:@rolldown/binding-wasm32-wasi@1.0.0-rc.9": [ + { + "source": "npm:@rolldown/binding-wasm32-wasi@1.0.0-rc.9", + "target": "npm:@napi-rs/wasm-runtime@1.1.1", + "type": "static" + } + ], + "npm:@rollup/pluginutils": [ + { + "source": "npm:@rollup/pluginutils", + "target": "npm:@types/estree", + "type": "static" + }, + { + "source": "npm:@rollup/pluginutils", + "target": "npm:estree-walker@2.0.2", + "type": "static" + }, + { + "source": "npm:@rollup/pluginutils", + "target": "npm:picomatch", + "type": "static" + } + ], + "npm:@sentry-internal/browser-utils": [ + { + "source": "npm:@sentry-internal/browser-utils", + "target": "npm:@sentry/core", + "type": "static" + } + ], + "npm:@sentry-internal/feedback": [ + { + "source": "npm:@sentry-internal/feedback", + "target": "npm:@sentry/core", + "type": "static" + } + ], + "npm:@sentry-internal/replay-canvas": [ + { + "source": "npm:@sentry-internal/replay-canvas", + "target": "npm:@sentry-internal/replay", + "type": "static" + }, + { + "source": "npm:@sentry-internal/replay-canvas", + "target": "npm:@sentry/core", + "type": "static" + } + ], + "npm:@sentry-internal/replay": [ + { + "source": "npm:@sentry-internal/replay", + "target": "npm:@sentry-internal/browser-utils", + "type": "static" + }, + { + "source": "npm:@sentry-internal/replay", + "target": "npm:@sentry/core", + "type": "static" + } + ], + "npm:@sentry/browser": [ + { + "source": "npm:@sentry/browser", + "target": "npm:@sentry-internal/browser-utils", + "type": "static" + }, + { + "source": "npm:@sentry/browser", + "target": "npm:@sentry-internal/feedback", + "type": "static" + }, + { + "source": "npm:@sentry/browser", + "target": "npm:@sentry-internal/replay", + "type": "static" + }, + { + "source": "npm:@sentry/browser", + "target": "npm:@sentry-internal/replay-canvas", + "type": "static" + }, + { + "source": "npm:@sentry/browser", + "target": "npm:@sentry/core", + "type": "static" + } + ], + "npm:@sentry/bundler-plugin-core": [ + { + "source": "npm:@sentry/bundler-plugin-core", + "target": "npm:@babel/core", + "type": "static" + }, + { + "source": "npm:@sentry/bundler-plugin-core", + "target": "npm:@sentry/babel-plugin-component-annotate", + "type": "static" + }, + { + "source": "npm:@sentry/bundler-plugin-core", + "target": "npm:@sentry/cli", + "type": "static" + }, + { + "source": "npm:@sentry/bundler-plugin-core", + "target": "npm:dotenv@16.6.1", + "type": "static" + }, + { + "source": "npm:@sentry/bundler-plugin-core", + "target": "npm:find-up", + "type": "static" + }, + { + "source": "npm:@sentry/bundler-plugin-core", + "target": "npm:glob", + "type": "static" + }, + { + "source": "npm:@sentry/bundler-plugin-core", + "target": "npm:magic-string", + "type": "static" + } + ], + "npm:@sentry/cli": [ + { + "source": "npm:@sentry/cli", + "target": "npm:https-proxy-agent", + "type": "static" + }, + { + "source": "npm:@sentry/cli", + "target": "npm:node-fetch@2.7.0", + "type": "static" + }, + { + "source": "npm:@sentry/cli", + "target": "npm:progress", + "type": "static" + }, + { + "source": "npm:@sentry/cli", + "target": "npm:proxy-from-env", + "type": "static" + }, + { + "source": "npm:@sentry/cli", + "target": "npm:which@2.0.2", + "type": "static" + }, + { + "source": "npm:@sentry/cli", + "target": "npm:@sentry/cli-darwin", + "type": "static" + }, + { + "source": "npm:@sentry/cli", + "target": "npm:@sentry/cli-linux-arm", + "type": "static" + }, + { + "source": "npm:@sentry/cli", + "target": "npm:@sentry/cli-linux-arm64", + "type": "static" + }, + { + "source": "npm:@sentry/cli", + "target": "npm:@sentry/cli-linux-i686", + "type": "static" + }, + { + "source": "npm:@sentry/cli", + "target": "npm:@sentry/cli-linux-x64", + "type": "static" + }, + { + "source": "npm:@sentry/cli", + "target": "npm:@sentry/cli-win32-arm64", + "type": "static" + }, + { + "source": "npm:@sentry/cli", + "target": "npm:@sentry/cli-win32-i686", + "type": "static" + }, + { + "source": "npm:@sentry/cli", + "target": "npm:@sentry/cli-win32-x64", + "type": "static" + } + ], + "npm:@sentry/react": [ + { + "source": "npm:@sentry/react", + "target": "npm:@sentry/browser", + "type": "static" + }, + { + "source": "npm:@sentry/react", + "target": "npm:@sentry/core", + "type": "static" + }, + { + "source": "npm:@sentry/react", + "target": "npm:react", + "type": "static" + } + ], + "npm:@sentry/rollup-plugin": [ + { + "source": "npm:@sentry/rollup-plugin", + "target": "npm:@sentry/bundler-plugin-core", + "type": "static" + }, + { + "source": "npm:@sentry/rollup-plugin", + "target": "npm:magic-string", + "type": "static" + } + ], + "npm:@sentry/solid": [ + { + "source": "npm:@sentry/solid", + "target": "npm:@sentry/browser", + "type": "static" + }, + { + "source": "npm:@sentry/solid", + "target": "npm:@sentry/core", + "type": "static" + }, + { + "source": "npm:@sentry/solid", + "target": "npm:solid-js", + "type": "static" + } + ], + "npm:@sentry/vite-plugin": [ + { + "source": "npm:@sentry/vite-plugin", + "target": "npm:@sentry/bundler-plugin-core", + "type": "static" + }, + { + "source": "npm:@sentry/vite-plugin", + "target": "npm:@sentry/rollup-plugin", + "type": "static" + } + ], + "npm:@sentry/vue": [ + { + "source": "npm:@sentry/vue", + "target": "npm:@sentry/browser", + "type": "static" + }, + { + "source": "npm:@sentry/vue", + "target": "npm:@sentry/core", + "type": "static" + }, + { + "source": "npm:@sentry/vue", + "target": "npm:vue", + "type": "static" + } + ], + "npm:@solid-primitives/props": [ + { + "source": "npm:@solid-primitives/props", + "target": "npm:@solid-primitives/utils", + "type": "static" + }, + { + "source": "npm:@solid-primitives/props", + "target": "npm:solid-js", + "type": "static" + } + ], + "npm:@solid-primitives/refs": [ + { + "source": "npm:@solid-primitives/refs", + "target": "npm:@solid-primitives/utils", + "type": "static" + }, + { + "source": "npm:@solid-primitives/refs", + "target": "npm:solid-js", + "type": "static" + } + ], + "npm:@solid-primitives/scheduled": [ + { + "source": "npm:@solid-primitives/scheduled", + "target": "npm:solid-js", + "type": "static" + } + ], + "npm:@solid-primitives/transition-group": [ + { + "source": "npm:@solid-primitives/transition-group", + "target": "npm:solid-js", + "type": "static" + } + ], + "npm:@solid-primitives/utils": [ + { + "source": "npm:@solid-primitives/utils", + "target": "npm:solid-js", + "type": "static" + } + ], + "npm:@szmarczak/http-timer": [ + { + "source": "npm:@szmarczak/http-timer", + "target": "npm:defer-to-connect", + "type": "static" + } + ], + "npm:@tailwindcss/node": [ + { + "source": "npm:@tailwindcss/node", + "target": "npm:@jridgewell/remapping", + "type": "static" + }, + { + "source": "npm:@tailwindcss/node", + "target": "npm:enhanced-resolve", + "type": "static" + }, + { + "source": "npm:@tailwindcss/node", + "target": "npm:jiti", + "type": "static" + }, + { + "source": "npm:@tailwindcss/node", + "target": "npm:lightningcss", + "type": "static" + }, + { + "source": "npm:@tailwindcss/node", + "target": "npm:magic-string", + "type": "static" + }, + { + "source": "npm:@tailwindcss/node", + "target": "npm:source-map-js", + "type": "static" + }, + { + "source": "npm:@tailwindcss/node", + "target": "npm:tailwindcss", + "type": "static" + } + ], + "npm:@tailwindcss/oxide": [ + { + "source": "npm:@tailwindcss/oxide", + "target": "npm:@tailwindcss/oxide-android-arm64", + "type": "static" + }, + { + "source": "npm:@tailwindcss/oxide", + "target": "npm:@tailwindcss/oxide-darwin-arm64", + "type": "static" + }, + { + "source": "npm:@tailwindcss/oxide", + "target": "npm:@tailwindcss/oxide-darwin-x64", + "type": "static" + }, + { + "source": "npm:@tailwindcss/oxide", + "target": "npm:@tailwindcss/oxide-freebsd-x64", + "type": "static" + }, + { + "source": "npm:@tailwindcss/oxide", + "target": "npm:@tailwindcss/oxide-linux-arm-gnueabihf", + "type": "static" + }, + { + "source": "npm:@tailwindcss/oxide", + "target": "npm:@tailwindcss/oxide-linux-arm64-gnu", + "type": "static" + }, + { + "source": "npm:@tailwindcss/oxide", + "target": "npm:@tailwindcss/oxide-linux-arm64-musl", + "type": "static" + }, + { + "source": "npm:@tailwindcss/oxide", + "target": "npm:@tailwindcss/oxide-linux-x64-gnu", + "type": "static" + }, + { + "source": "npm:@tailwindcss/oxide", + "target": "npm:@tailwindcss/oxide-linux-x64-musl", + "type": "static" + }, + { + "source": "npm:@tailwindcss/oxide", + "target": "npm:@tailwindcss/oxide-wasm32-wasi", + "type": "static" + }, + { + "source": "npm:@tailwindcss/oxide", + "target": "npm:@tailwindcss/oxide-win32-arm64-msvc", + "type": "static" + }, + { + "source": "npm:@tailwindcss/oxide", + "target": "npm:@tailwindcss/oxide-win32-x64-msvc", + "type": "static" + } + ], + "npm:@tailwindcss/vite": [ + { + "source": "npm:@tailwindcss/vite", + "target": "npm:@tailwindcss/node", + "type": "static" + }, + { + "source": "npm:@tailwindcss/vite", + "target": "npm:@tailwindcss/oxide", + "type": "static" + }, + { + "source": "npm:@tailwindcss/vite", + "target": "npm:tailwindcss", + "type": "static" + }, + { + "source": "npm:@tailwindcss/vite", + "target": "npm:vite", + "type": "static" + } + ], + "npm:@trpc/client": [ + { + "source": "npm:@trpc/client", + "target": "npm:@trpc/server", + "type": "static" + }, + { + "source": "npm:@trpc/client", + "target": "npm:typescript", + "type": "static" + } + ], + "npm:@trpc/server": [ + { + "source": "npm:@trpc/server", + "target": "npm:typescript", + "type": "static" + } + ], + "npm:@ts-morph/common": [ + { + "source": "npm:@ts-morph/common", + "target": "npm:fast-glob", + "type": "static" + }, + { + "source": "npm:@ts-morph/common", + "target": "npm:minimatch@10.2.3", + "type": "static" + }, + { + "source": "npm:@ts-morph/common", + "target": "npm:path-browserify", + "type": "static" + } + ], + "npm:@ts-rest/core": [ + { + "source": "npm:@ts-rest/core", + "target": "npm:@types/node", + "type": "static" + }, + { + "source": "npm:@ts-rest/core", + "target": "npm:zod", + "type": "static" + } + ], + "npm:@ts-rest/serverless": [ + { + "source": "npm:@ts-rest/serverless", + "target": "npm:@ts-rest/core", + "type": "static" + }, + { + "source": "npm:@ts-rest/serverless", + "target": "npm:itty-router", + "type": "static" + }, + { + "source": "npm:@ts-rest/serverless", + "target": "npm:@types/aws-lambda", + "type": "static" + }, + { + "source": "npm:@ts-rest/serverless", + "target": "npm:zod", + "type": "static" + } + ], + "npm:@tybys/wasm-util@0.10.1": [ + { + "source": "npm:@tybys/wasm-util@0.10.1", + "target": "npm:tslib", + "type": "static" + } + ], + "npm:@tybys/wasm-util": [ + { + "source": "npm:@tybys/wasm-util", + "target": "npm:tslib", + "type": "static" + } + ], + "npm:@types/babel__core": [ + { + "source": "npm:@types/babel__core", + "target": "npm:@babel/parser", + "type": "static" + }, + { + "source": "npm:@types/babel__core", + "target": "npm:@babel/types", + "type": "static" + }, + { + "source": "npm:@types/babel__core", + "target": "npm:@types/babel__generator", + "type": "static" + }, + { + "source": "npm:@types/babel__core", + "target": "npm:@types/babel__template", + "type": "static" + }, + { + "source": "npm:@types/babel__core", + "target": "npm:@types/babel__traverse", + "type": "static" + } + ], + "npm:@types/babel__generator": [ + { + "source": "npm:@types/babel__generator", + "target": "npm:@babel/types", + "type": "static" + } + ], + "npm:@types/babel__template": [ + { + "source": "npm:@types/babel__template", + "target": "npm:@babel/parser", + "type": "static" + }, + { + "source": "npm:@types/babel__template", + "target": "npm:@babel/types", + "type": "static" + } + ], + "npm:@types/babel__traverse": [ + { + "source": "npm:@types/babel__traverse", + "target": "npm:@babel/types", + "type": "static" + } + ], + "npm:@types/better-sqlite3": [ + { + "source": "npm:@types/better-sqlite3", + "target": "npm:@types/node", + "type": "static" + } + ], + "npm:@types/body-parser": [ + { + "source": "npm:@types/body-parser", + "target": "npm:@types/connect", + "type": "static" + }, + { + "source": "npm:@types/body-parser", + "target": "npm:@types/node", + "type": "static" + } + ], + "npm:@types/cacheable-request": [ + { + "source": "npm:@types/cacheable-request", + "target": "npm:@types/http-cache-semantics", + "type": "static" + }, + { + "source": "npm:@types/cacheable-request", + "target": "npm:@types/keyv", + "type": "static" + }, + { + "source": "npm:@types/cacheable-request", + "target": "npm:@types/node", + "type": "static" + }, + { + "source": "npm:@types/cacheable-request", + "target": "npm:@types/responselike", + "type": "static" + } + ], + "npm:@types/chai": [ + { + "source": "npm:@types/chai", + "target": "npm:@types/deep-eql", + "type": "static" + } + ], + "npm:@types/connect": [ + { + "source": "npm:@types/connect", + "target": "npm:@types/node", + "type": "static" + } + ], + "npm:@types/debug": [ + { + "source": "npm:@types/debug", + "target": "npm:@types/ms", + "type": "static" + } + ], + "npm:@types/eslint": [ + { + "source": "npm:@types/eslint", + "target": "npm:@types/estree", + "type": "static" + }, + { + "source": "npm:@types/eslint", + "target": "npm:@types/json-schema", + "type": "static" + } + ], + "npm:@types/express-serve-static-core": [ + { + "source": "npm:@types/express-serve-static-core", + "target": "npm:@types/node", + "type": "static" + }, + { + "source": "npm:@types/express-serve-static-core", + "target": "npm:@types/qs", + "type": "static" + }, + { + "source": "npm:@types/express-serve-static-core", + "target": "npm:@types/range-parser", + "type": "static" + }, + { + "source": "npm:@types/express-serve-static-core", + "target": "npm:@types/send", + "type": "static" + } + ], + "npm:@types/express": [ + { + "source": "npm:@types/express", + "target": "npm:@types/body-parser", + "type": "static" + }, + { + "source": "npm:@types/express", + "target": "npm:@types/express-serve-static-core", + "type": "static" + }, + { + "source": "npm:@types/express", + "target": "npm:@types/serve-static", + "type": "static" + } + ], + "npm:@types/keyv": [ + { + "source": "npm:@types/keyv", + "target": "npm:@types/node", + "type": "static" + } + ], + "npm:@types/mdast": [ + { + "source": "npm:@types/mdast", + "target": "npm:@types/unist@3.0.3", + "type": "static" + } + ], + "npm:@types/node": [ + { + "source": "npm:@types/node", + "target": "npm:undici-types", + "type": "static" + } + ], + "npm:@types/react-dom": [ + { + "source": "npm:@types/react-dom", + "target": "npm:@types/react", + "type": "static" + } + ], + "npm:@types/react": [ + { + "source": "npm:@types/react", + "target": "npm:csstype", + "type": "static" + } + ], + "npm:@types/responselike": [ + { + "source": "npm:@types/responselike", + "target": "npm:@types/node", + "type": "static" + } + ], + "npm:@types/send": [ + { + "source": "npm:@types/send", + "target": "npm:@types/node", + "type": "static" + } + ], + "npm:@types/serve-static": [ + { + "source": "npm:@types/serve-static", + "target": "npm:@types/http-errors", + "type": "static" + }, + { + "source": "npm:@types/serve-static", + "target": "npm:@types/node", + "type": "static" + } + ], + "npm:@types/yauzl": [ + { + "source": "npm:@types/yauzl", + "target": "npm:@types/node", + "type": "static" + } + ], + "npm:@typescript-eslint/eslint-plugin": [ + { + "source": "npm:@typescript-eslint/eslint-plugin", + "target": "npm:@eslint-community/regexpp", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/eslint-plugin", + "target": "npm:@typescript-eslint/parser", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/eslint-plugin", + "target": "npm:@typescript-eslint/scope-manager", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/eslint-plugin", + "target": "npm:@typescript-eslint/type-utils", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/eslint-plugin", + "target": "npm:@typescript-eslint/utils", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/eslint-plugin", + "target": "npm:@typescript-eslint/visitor-keys", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/eslint-plugin", + "target": "npm:eslint", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/eslint-plugin", + "target": "npm:ignore@7.0.5", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/eslint-plugin", + "target": "npm:natural-compare", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/eslint-plugin", + "target": "npm:ts-api-utils", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/eslint-plugin", + "target": "npm:typescript", + "type": "static" + } + ], + "npm:@typescript-eslint/parser": [ + { + "source": "npm:@typescript-eslint/parser", + "target": "npm:@typescript-eslint/scope-manager", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/parser", + "target": "npm:@typescript-eslint/types", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/parser", + "target": "npm:@typescript-eslint/typescript-estree", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/parser", + "target": "npm:@typescript-eslint/visitor-keys", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/parser", + "target": "npm:debug", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/parser", + "target": "npm:eslint", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/parser", + "target": "npm:typescript", + "type": "static" + } + ], + "npm:@typescript-eslint/project-service": [ + { + "source": "npm:@typescript-eslint/project-service", + "target": "npm:@typescript-eslint/tsconfig-utils", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/project-service", + "target": "npm:@typescript-eslint/types", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/project-service", + "target": "npm:debug", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/project-service", + "target": "npm:typescript", + "type": "static" + } + ], + "npm:@typescript-eslint/scope-manager": [ + { + "source": "npm:@typescript-eslint/scope-manager", + "target": "npm:@typescript-eslint/types", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/scope-manager", + "target": "npm:@typescript-eslint/visitor-keys", + "type": "static" + } + ], + "npm:@typescript-eslint/tsconfig-utils": [ + { + "source": "npm:@typescript-eslint/tsconfig-utils", + "target": "npm:typescript", + "type": "static" + } + ], + "npm:@typescript-eslint/type-utils": [ + { + "source": "npm:@typescript-eslint/type-utils", + "target": "npm:@typescript-eslint/types", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/type-utils", + "target": "npm:@typescript-eslint/typescript-estree", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/type-utils", + "target": "npm:@typescript-eslint/utils", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/type-utils", + "target": "npm:debug", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/type-utils", + "target": "npm:eslint", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/type-utils", + "target": "npm:ts-api-utils", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/type-utils", + "target": "npm:typescript", + "type": "static" + } + ], + "npm:@typescript-eslint/typescript-estree": [ + { + "source": "npm:@typescript-eslint/typescript-estree", + "target": "npm:@typescript-eslint/project-service", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/typescript-estree", + "target": "npm:@typescript-eslint/tsconfig-utils", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/typescript-estree", + "target": "npm:@typescript-eslint/types", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/typescript-estree", + "target": "npm:@typescript-eslint/visitor-keys", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/typescript-estree", + "target": "npm:debug", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/typescript-estree", + "target": "npm:minimatch@10.2.3", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/typescript-estree", + "target": "npm:semver@7.7.4", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/typescript-estree", + "target": "npm:tinyglobby", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/typescript-estree", + "target": "npm:ts-api-utils", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/typescript-estree", + "target": "npm:typescript", + "type": "static" + } + ], + "npm:@typescript-eslint/utils": [ + { + "source": "npm:@typescript-eslint/utils", + "target": "npm:@eslint-community/eslint-utils", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/utils", + "target": "npm:@typescript-eslint/scope-manager", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/utils", + "target": "npm:@typescript-eslint/types", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/utils", + "target": "npm:@typescript-eslint/typescript-estree", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/utils", + "target": "npm:eslint", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/utils", + "target": "npm:typescript", + "type": "static" + } + ], + "npm:@typescript-eslint/visitor-keys": [ + { + "source": "npm:@typescript-eslint/visitor-keys", + "target": "npm:@typescript-eslint/types", + "type": "static" + }, + { + "source": "npm:@typescript-eslint/visitor-keys", + "target": "npm:eslint-visitor-keys@5.0.1", + "type": "static" + } + ], + "npm:@universal-middleware/cloudflare": [ + { + "source": "npm:@universal-middleware/cloudflare", + "target": "npm:@universal-middleware/core", + "type": "static" + } + ], + "npm:@universal-middleware/core": [ + { + "source": "npm:@universal-middleware/core", + "target": "npm:regexparam", + "type": "static" + }, + { + "source": "npm:@universal-middleware/core", + "target": "npm:tough-cookie", + "type": "static" + }, + { + "source": "npm:@universal-middleware/core", + "target": "npm:@cloudflare/workers-types", + "type": "static" + }, + { + "source": "npm:@universal-middleware/core", + "target": "npm:@types/express", + "type": "static" + }, + { + "source": "npm:@universal-middleware/core", + "target": "npm:fastify", + "type": "static" + }, + { + "source": "npm:@universal-middleware/core", + "target": "npm:h3", + "type": "static" + }, + { + "source": "npm:@universal-middleware/core", + "target": "npm:hono", + "type": "static" + }, + { + "source": "npm:@universal-middleware/core", + "target": "npm:srvx", + "type": "static" + } + ], + "npm:@universal-middleware/express": [ + { + "source": "npm:@universal-middleware/express", + "target": "npm:@universal-middleware/core", + "type": "static" + } + ], + "npm:@universal-middleware/fastify": [ + { + "source": "npm:@universal-middleware/fastify", + "target": "npm:@universal-middleware/core", + "type": "static" + }, + { + "source": "npm:@universal-middleware/fastify", + "target": "npm:@universal-middleware/express", + "type": "static" + }, + { + "source": "npm:@universal-middleware/fastify", + "target": "npm:fastify-raw-body", + "type": "static" + } + ], + "npm:@universal-middleware/h3": [ + { + "source": "npm:@universal-middleware/h3", + "target": "npm:@universal-middleware/core", + "type": "static" + } + ], + "npm:@universal-middleware/hono": [ + { + "source": "npm:@universal-middleware/hono", + "target": "npm:@universal-middleware/core", + "type": "static" + } + ], + "npm:@universal-middleware/sirv": [ + { + "source": "npm:@universal-middleware/sirv", + "target": "npm:mrmime", + "type": "static" + }, + { + "source": "npm:@universal-middleware/sirv", + "target": "npm:totalist", + "type": "static" + } + ], + "npm:@universal-middleware/srvx": [ + { + "source": "npm:@universal-middleware/srvx", + "target": "npm:@universal-middleware/core", + "type": "static" + } + ], + "npm:@universal-middleware/vercel": [ + { + "source": "npm:@universal-middleware/vercel", + "target": "npm:@universal-middleware/core", + "type": "static" + }, + { + "source": "npm:@universal-middleware/vercel", + "target": "npm:@universal-middleware/express", + "type": "static" + }, + { + "source": "npm:@universal-middleware/vercel", + "target": "npm:@universal-middleware/h3", + "type": "static" + }, + { + "source": "npm:@universal-middleware/vercel", + "target": "npm:express", + "type": "static" + }, + { + "source": "npm:@universal-middleware/vercel", + "target": "npm:fastify", + "type": "static" + }, + { + "source": "npm:@universal-middleware/vercel", + "target": "npm:h3", + "type": "static" + }, + { + "source": "npm:@universal-middleware/vercel", + "target": "npm:hono", + "type": "static" + }, + { + "source": "npm:@universal-middleware/vercel", + "target": "npm:srvx", + "type": "static" + } + ], + "npm:@vercel/nft@0.30.4": [ + { + "source": "npm:@vercel/nft@0.30.4", + "target": "npm:@mapbox/node-pre-gyp", + "type": "static" + }, + { + "source": "npm:@vercel/nft@0.30.4", + "target": "npm:@rollup/pluginutils", + "type": "static" + }, + { + "source": "npm:@vercel/nft@0.30.4", + "target": "npm:acorn", + "type": "static" + }, + { + "source": "npm:@vercel/nft@0.30.4", + "target": "npm:acorn-import-attributes", + "type": "static" + }, + { + "source": "npm:@vercel/nft@0.30.4", + "target": "npm:async-sema", + "type": "static" + }, + { + "source": "npm:@vercel/nft@0.30.4", + "target": "npm:bindings", + "type": "static" + }, + { + "source": "npm:@vercel/nft@0.30.4", + "target": "npm:estree-walker@2.0.2", + "type": "static" + }, + { + "source": "npm:@vercel/nft@0.30.4", + "target": "npm:glob@10.5.0", + "type": "static" + }, + { + "source": "npm:@vercel/nft@0.30.4", + "target": "npm:graceful-fs", + "type": "static" + }, + { + "source": "npm:@vercel/nft@0.30.4", + "target": "npm:node-gyp-build", + "type": "static" + }, + { + "source": "npm:@vercel/nft@0.30.4", + "target": "npm:picomatch", + "type": "static" + }, + { + "source": "npm:@vercel/nft@0.30.4", + "target": "npm:resolve-from", + "type": "static" + } + ], + "npm:@vercel/nft": [ + { + "source": "npm:@vercel/nft", + "target": "npm:@mapbox/node-pre-gyp", + "type": "static" + }, + { + "source": "npm:@vercel/nft", + "target": "npm:@rollup/pluginutils", + "type": "static" + }, + { + "source": "npm:@vercel/nft", + "target": "npm:acorn", + "type": "static" + }, + { + "source": "npm:@vercel/nft", + "target": "npm:acorn-import-attributes", + "type": "static" + }, + { + "source": "npm:@vercel/nft", + "target": "npm:async-sema", + "type": "static" + }, + { + "source": "npm:@vercel/nft", + "target": "npm:bindings", + "type": "static" + }, + { + "source": "npm:@vercel/nft", + "target": "npm:estree-walker@2.0.2", + "type": "static" + }, + { + "source": "npm:@vercel/nft", + "target": "npm:glob", + "type": "static" + }, + { + "source": "npm:@vercel/nft", + "target": "npm:graceful-fs", + "type": "static" + }, + { + "source": "npm:@vercel/nft", + "target": "npm:node-gyp-build", + "type": "static" + }, + { + "source": "npm:@vercel/nft", + "target": "npm:picomatch", + "type": "static" + }, + { + "source": "npm:@vercel/nft", + "target": "npm:resolve-from", + "type": "static" + } + ], + "npm:@vercel/routing-utils": [ + { + "source": "npm:@vercel/routing-utils", + "target": "npm:path-to-regexp@6.1.0", + "type": "static" + }, + { + "source": "npm:@vercel/routing-utils", + "target": "npm:path-to-regexp-updated", + "type": "static" + }, + { + "source": "npm:@vercel/routing-utils", + "target": "npm:ajv", + "type": "static" + } + ], + "npm:@vikejs/biome-config": [ + { + "source": "npm:@vikejs/biome-config", + "target": "npm:@biomejs/biome", + "type": "static" + } + ], + "npm:@vite-plugin-vercel/schemas": [ + { + "source": "npm:@vite-plugin-vercel/schemas", + "target": "npm:zod@4.3.6", + "type": "static" + } + ], + "npm:@vitejs/plugin-react": [ + { + "source": "npm:@vitejs/plugin-react", + "target": "npm:@rolldown/pluginutils", + "type": "static" + }, + { + "source": "npm:@vitejs/plugin-react", + "target": "npm:vite", + "type": "static" + } + ], + "npm:@vitejs/plugin-vue": [ + { + "source": "npm:@vitejs/plugin-vue", + "target": "npm:@rolldown/pluginutils@1.0.0-rc.2", + "type": "static" + }, + { + "source": "npm:@vitejs/plugin-vue", + "target": "npm:vite", + "type": "static" + }, + { + "source": "npm:@vitejs/plugin-vue", + "target": "npm:vue", + "type": "static" + } + ], + "npm:@vitest/expect": [ + { + "source": "npm:@vitest/expect", + "target": "npm:@standard-schema/spec", + "type": "static" + }, + { + "source": "npm:@vitest/expect", + "target": "npm:@types/chai", + "type": "static" + }, + { + "source": "npm:@vitest/expect", + "target": "npm:@vitest/spy", + "type": "static" + }, + { + "source": "npm:@vitest/expect", + "target": "npm:@vitest/utils", + "type": "static" + }, + { + "source": "npm:@vitest/expect", + "target": "npm:chai", + "type": "static" + }, + { + "source": "npm:@vitest/expect", + "target": "npm:tinyrainbow", + "type": "static" + } + ], + "npm:@vitest/mocker": [ + { + "source": "npm:@vitest/mocker", + "target": "npm:@vitest/spy", + "type": "static" + }, + { + "source": "npm:@vitest/mocker", + "target": "npm:estree-walker", + "type": "static" + }, + { + "source": "npm:@vitest/mocker", + "target": "npm:magic-string", + "type": "static" + }, + { + "source": "npm:@vitest/mocker", + "target": "npm:vite", + "type": "static" + } + ], + "npm:@vitest/pretty-format": [ + { + "source": "npm:@vitest/pretty-format", + "target": "npm:tinyrainbow", + "type": "static" + } + ], + "npm:@vitest/runner": [ + { + "source": "npm:@vitest/runner", + "target": "npm:@vitest/utils", + "type": "static" + }, + { + "source": "npm:@vitest/runner", + "target": "npm:pathe", + "type": "static" + } + ], + "npm:@vitest/snapshot": [ + { + "source": "npm:@vitest/snapshot", + "target": "npm:@vitest/pretty-format", + "type": "static" + }, + { + "source": "npm:@vitest/snapshot", + "target": "npm:@vitest/utils", + "type": "static" + }, + { + "source": "npm:@vitest/snapshot", + "target": "npm:magic-string", + "type": "static" + }, + { + "source": "npm:@vitest/snapshot", + "target": "npm:pathe", + "type": "static" + } + ], + "npm:@vitest/utils": [ + { + "source": "npm:@vitest/utils", + "target": "npm:@vitest/pretty-format", + "type": "static" + }, + { + "source": "npm:@vitest/utils", + "target": "npm:convert-source-map", + "type": "static" + }, + { + "source": "npm:@vitest/utils", + "target": "npm:tinyrainbow", + "type": "static" + } + ], + "npm:@vue/compiler-core": [ + { + "source": "npm:@vue/compiler-core", + "target": "npm:@babel/parser", + "type": "static" + }, + { + "source": "npm:@vue/compiler-core", + "target": "npm:@vue/shared", + "type": "static" + }, + { + "source": "npm:@vue/compiler-core", + "target": "npm:entities", + "type": "static" + }, + { + "source": "npm:@vue/compiler-core", + "target": "npm:estree-walker@2.0.2", + "type": "static" + }, + { + "source": "npm:@vue/compiler-core", + "target": "npm:source-map-js", + "type": "static" + } + ], + "npm:@vue/compiler-dom": [ + { + "source": "npm:@vue/compiler-dom", + "target": "npm:@vue/compiler-core", + "type": "static" + }, + { + "source": "npm:@vue/compiler-dom", + "target": "npm:@vue/shared", + "type": "static" + } + ], + "npm:@vue/compiler-sfc": [ + { + "source": "npm:@vue/compiler-sfc", + "target": "npm:@babel/parser", + "type": "static" + }, + { + "source": "npm:@vue/compiler-sfc", + "target": "npm:@vue/compiler-core", + "type": "static" + }, + { + "source": "npm:@vue/compiler-sfc", + "target": "npm:@vue/compiler-dom", + "type": "static" + }, + { + "source": "npm:@vue/compiler-sfc", + "target": "npm:@vue/compiler-ssr", + "type": "static" + }, + { + "source": "npm:@vue/compiler-sfc", + "target": "npm:@vue/shared", + "type": "static" + }, + { + "source": "npm:@vue/compiler-sfc", + "target": "npm:estree-walker@2.0.2", + "type": "static" + }, + { + "source": "npm:@vue/compiler-sfc", + "target": "npm:magic-string", + "type": "static" + }, + { + "source": "npm:@vue/compiler-sfc", + "target": "npm:postcss", + "type": "static" + }, + { + "source": "npm:@vue/compiler-sfc", + "target": "npm:source-map-js", + "type": "static" + } + ], + "npm:@vue/compiler-ssr": [ + { + "source": "npm:@vue/compiler-ssr", + "target": "npm:@vue/compiler-dom", + "type": "static" + }, + { + "source": "npm:@vue/compiler-ssr", + "target": "npm:@vue/shared", + "type": "static" + } + ], + "npm:@vue/reactivity": [ + { + "source": "npm:@vue/reactivity", + "target": "npm:@vue/shared", + "type": "static" + } + ], + "npm:@vue/runtime-core": [ + { + "source": "npm:@vue/runtime-core", + "target": "npm:@vue/reactivity", + "type": "static" + }, + { + "source": "npm:@vue/runtime-core", + "target": "npm:@vue/shared", + "type": "static" + } + ], + "npm:@vue/runtime-dom": [ + { + "source": "npm:@vue/runtime-dom", + "target": "npm:@vue/reactivity", + "type": "static" + }, + { + "source": "npm:@vue/runtime-dom", + "target": "npm:@vue/runtime-core", + "type": "static" + }, + { + "source": "npm:@vue/runtime-dom", + "target": "npm:@vue/shared", + "type": "static" + }, + { + "source": "npm:@vue/runtime-dom", + "target": "npm:csstype", + "type": "static" + } + ], + "npm:@vue/server-renderer": [ + { + "source": "npm:@vue/server-renderer", + "target": "npm:@vue/compiler-ssr", + "type": "static" + }, + { + "source": "npm:@vue/server-renderer", + "target": "npm:@vue/shared", + "type": "static" + }, + { + "source": "npm:@vue/server-renderer", + "target": "npm:vue", + "type": "static" + } + ], + "npm:@yarnpkg/parsers": [ + { + "source": "npm:@yarnpkg/parsers", + "target": "npm:js-yaml@3.14.2", + "type": "static" + }, + { + "source": "npm:@yarnpkg/parsers", + "target": "npm:tslib", + "type": "static" + } + ], + "npm:@zkochan/js-yaml": [ + { + "source": "npm:@zkochan/js-yaml", + "target": "npm:argparse", + "type": "static" + } + ], + "npm:accepts": [ + { + "source": "npm:accepts", + "target": "npm:mime-types", + "type": "static" + }, + { + "source": "npm:accepts", + "target": "npm:negotiator", + "type": "static" + } + ], + "npm:acorn-import-attributes": [ + { + "source": "npm:acorn-import-attributes", + "target": "npm:acorn", + "type": "static" + } + ], + "npm:acorn-jsx": [ + { + "source": "npm:acorn-jsx", + "target": "npm:acorn", + "type": "static" + } + ], + "npm:agent-base@6.0.2": [ + { + "source": "npm:agent-base@6.0.2", + "target": "npm:debug", + "type": "static" + } + ], + "npm:ajv-formats": [ + { + "source": "npm:ajv-formats", + "target": "npm:ajv@8.18.0", + "type": "static" + } + ], + "npm:ajv": [ + { + "source": "npm:ajv", + "target": "npm:fast-deep-equal", + "type": "static" + }, + { + "source": "npm:ajv", + "target": "npm:fast-json-stable-stringify", + "type": "static" + }, + { + "source": "npm:ajv", + "target": "npm:json-schema-traverse", + "type": "static" + }, + { + "source": "npm:ajv", + "target": "npm:uri-js", + "type": "static" + } + ], + "npm:ajv@8.18.0": [ + { + "source": "npm:ajv@8.18.0", + "target": "npm:fast-deep-equal", + "type": "static" + }, + { + "source": "npm:ajv@8.18.0", + "target": "npm:fast-uri", + "type": "static" + }, + { + "source": "npm:ajv@8.18.0", + "target": "npm:json-schema-traverse@1.0.0", + "type": "static" + }, + { + "source": "npm:ajv@8.18.0", + "target": "npm:require-from-string", + "type": "static" + } + ], + "npm:ansi-styles@4.3.0": [ + { + "source": "npm:ansi-styles@4.3.0", + "target": "npm:color-convert", + "type": "static" + } + ], + "npm:argparse@1.0.10": [ + { + "source": "npm:argparse@1.0.10", + "target": "npm:sprintf-js", + "type": "static" + } + ], + "npm:array-buffer-byte-length": [ + { + "source": "npm:array-buffer-byte-length", + "target": "npm:call-bound", + "type": "static" + }, + { + "source": "npm:array-buffer-byte-length", + "target": "npm:is-array-buffer", + "type": "static" + } + ], + "npm:array-includes": [ + { + "source": "npm:array-includes", + "target": "npm:call-bind", + "type": "static" + }, + { + "source": "npm:array-includes", + "target": "npm:call-bound", + "type": "static" + }, + { + "source": "npm:array-includes", + "target": "npm:define-properties", + "type": "static" + }, + { + "source": "npm:array-includes", + "target": "npm:es-abstract", + "type": "static" + }, + { + "source": "npm:array-includes", + "target": "npm:es-object-atoms", + "type": "static" + }, + { + "source": "npm:array-includes", + "target": "npm:get-intrinsic", + "type": "static" + }, + { + "source": "npm:array-includes", + "target": "npm:is-string", + "type": "static" + }, + { + "source": "npm:array-includes", + "target": "npm:math-intrinsics", + "type": "static" + } + ], + "npm:array.prototype.findlast": [ + { + "source": "npm:array.prototype.findlast", + "target": "npm:call-bind", + "type": "static" + }, + { + "source": "npm:array.prototype.findlast", + "target": "npm:define-properties", + "type": "static" + }, + { + "source": "npm:array.prototype.findlast", + "target": "npm:es-abstract", + "type": "static" + }, + { + "source": "npm:array.prototype.findlast", + "target": "npm:es-errors", + "type": "static" + }, + { + "source": "npm:array.prototype.findlast", + "target": "npm:es-object-atoms", + "type": "static" + }, + { + "source": "npm:array.prototype.findlast", + "target": "npm:es-shim-unscopables", + "type": "static" + } + ], + "npm:array.prototype.flat": [ + { + "source": "npm:array.prototype.flat", + "target": "npm:call-bind", + "type": "static" + }, + { + "source": "npm:array.prototype.flat", + "target": "npm:define-properties", + "type": "static" + }, + { + "source": "npm:array.prototype.flat", + "target": "npm:es-abstract", + "type": "static" + }, + { + "source": "npm:array.prototype.flat", + "target": "npm:es-shim-unscopables", + "type": "static" + } + ], + "npm:array.prototype.flatmap": [ + { + "source": "npm:array.prototype.flatmap", + "target": "npm:call-bind", + "type": "static" + }, + { + "source": "npm:array.prototype.flatmap", + "target": "npm:define-properties", + "type": "static" + }, + { + "source": "npm:array.prototype.flatmap", + "target": "npm:es-abstract", + "type": "static" + }, + { + "source": "npm:array.prototype.flatmap", + "target": "npm:es-shim-unscopables", + "type": "static" + } + ], + "npm:array.prototype.tosorted": [ + { + "source": "npm:array.prototype.tosorted", + "target": "npm:call-bind", + "type": "static" + }, + { + "source": "npm:array.prototype.tosorted", + "target": "npm:define-properties", + "type": "static" + }, + { + "source": "npm:array.prototype.tosorted", + "target": "npm:es-abstract", + "type": "static" + }, + { + "source": "npm:array.prototype.tosorted", + "target": "npm:es-errors", + "type": "static" + }, + { + "source": "npm:array.prototype.tosorted", + "target": "npm:es-shim-unscopables", + "type": "static" + } + ], + "npm:arraybuffer.prototype.slice": [ + { + "source": "npm:arraybuffer.prototype.slice", + "target": "npm:array-buffer-byte-length", + "type": "static" + }, + { + "source": "npm:arraybuffer.prototype.slice", + "target": "npm:call-bind", + "type": "static" + }, + { + "source": "npm:arraybuffer.prototype.slice", + "target": "npm:define-properties", + "type": "static" + }, + { + "source": "npm:arraybuffer.prototype.slice", + "target": "npm:es-abstract", + "type": "static" + }, + { + "source": "npm:arraybuffer.prototype.slice", + "target": "npm:es-errors", + "type": "static" + }, + { + "source": "npm:arraybuffer.prototype.slice", + "target": "npm:get-intrinsic", + "type": "static" + }, + { + "source": "npm:arraybuffer.prototype.slice", + "target": "npm:is-array-buffer", + "type": "static" + } + ], + "npm:ast-kit": [ + { + "source": "npm:ast-kit", + "target": "npm:@babel/parser@8.0.0-rc.2", + "type": "static" + }, + { + "source": "npm:ast-kit", + "target": "npm:estree-walker", + "type": "static" + }, + { + "source": "npm:ast-kit", + "target": "npm:pathe", + "type": "static" + } + ], + "npm:ast-types": [ + { + "source": "npm:ast-types", + "target": "npm:tslib", + "type": "static" + } + ], + "npm:attributes-parser": [ + { + "source": "npm:attributes-parser", + "target": "npm:json-loose", + "type": "static" + } + ], + "npm:autoprefixer": [ + { + "source": "npm:autoprefixer", + "target": "npm:browserslist", + "type": "static" + }, + { + "source": "npm:autoprefixer", + "target": "npm:caniuse-lite", + "type": "static" + }, + { + "source": "npm:autoprefixer", + "target": "npm:fraction.js", + "type": "static" + }, + { + "source": "npm:autoprefixer", + "target": "npm:picocolors", + "type": "static" + }, + { + "source": "npm:autoprefixer", + "target": "npm:postcss", + "type": "static" + }, + { + "source": "npm:autoprefixer", + "target": "npm:postcss-value-parser", + "type": "static" + } + ], + "npm:available-typed-arrays": [ + { + "source": "npm:available-typed-arrays", + "target": "npm:possible-typed-array-names", + "type": "static" + } + ], + "npm:avvio": [ + { + "source": "npm:avvio", + "target": "npm:@fastify/error", + "type": "static" + }, + { + "source": "npm:avvio", + "target": "npm:fastq", + "type": "static" + } + ], + "npm:aws-cdk-lib": [ + { + "source": "npm:aws-cdk-lib", + "target": "npm:@aws-cdk/asset-awscli-v1", + "type": "static" + }, + { + "source": "npm:aws-cdk-lib", + "target": "npm:@aws-cdk/asset-node-proxy-agent-v6", + "type": "static" + }, + { + "source": "npm:aws-cdk-lib", + "target": "npm:@aws-cdk/cloud-assembly-schema", + "type": "static" + }, + { + "source": "npm:aws-cdk-lib", + "target": "npm:constructs", + "type": "static" + } + ], + "npm:axios": [ + { + "source": "npm:axios", + "target": "npm:follow-redirects", + "type": "static" + }, + { + "source": "npm:axios", + "target": "npm:form-data", + "type": "static" + }, + { + "source": "npm:axios", + "target": "npm:proxy-from-env", + "type": "static" + } + ], + "npm:babel-plugin-jsx-dom-expressions": [ + { + "source": "npm:babel-plugin-jsx-dom-expressions", + "target": "npm:@babel/core", + "type": "static" + }, + { + "source": "npm:babel-plugin-jsx-dom-expressions", + "target": "npm:@babel/helper-module-imports@7.18.6", + "type": "static" + }, + { + "source": "npm:babel-plugin-jsx-dom-expressions", + "target": "npm:@babel/plugin-syntax-jsx", + "type": "static" + }, + { + "source": "npm:babel-plugin-jsx-dom-expressions", + "target": "npm:@babel/types", + "type": "static" + }, + { + "source": "npm:babel-plugin-jsx-dom-expressions", + "target": "npm:html-entities", + "type": "static" + }, + { + "source": "npm:babel-plugin-jsx-dom-expressions", + "target": "npm:parse5", + "type": "static" + } + ], + "npm:babel-plugin-module-resolver": [ + { + "source": "npm:babel-plugin-module-resolver", + "target": "npm:find-babel-config", + "type": "static" + }, + { + "source": "npm:babel-plugin-module-resolver", + "target": "npm:glob@9.3.5", + "type": "static" + }, + { + "source": "npm:babel-plugin-module-resolver", + "target": "npm:pkg-up", + "type": "static" + }, + { + "source": "npm:babel-plugin-module-resolver", + "target": "npm:reselect", + "type": "static" + }, + { + "source": "npm:babel-plugin-module-resolver", + "target": "npm:resolve@1.22.10", + "type": "static" + } + ], + "npm:babel-preset-solid": [ + { + "source": "npm:babel-preset-solid", + "target": "npm:@babel/core", + "type": "static" + }, + { + "source": "npm:babel-preset-solid", + "target": "npm:babel-plugin-jsx-dom-expressions", + "type": "static" + }, + { + "source": "npm:babel-preset-solid", + "target": "npm:solid-js", + "type": "static" + } + ], + "npm:balanced-match@4.0.2": [ + { + "source": "npm:balanced-match@4.0.2", + "target": "npm:jackspeak", + "type": "static" + } + ], + "npm:bare-fs": [ + { + "source": "npm:bare-fs", + "target": "npm:bare-events", + "type": "static" + }, + { + "source": "npm:bare-fs", + "target": "npm:bare-path", + "type": "static" + }, + { + "source": "npm:bare-fs", + "target": "npm:bare-stream", + "type": "static" + }, + { + "source": "npm:bare-fs", + "target": "npm:bare-url", + "type": "static" + }, + { + "source": "npm:bare-fs", + "target": "npm:fast-fifo", + "type": "static" + } + ], + "npm:bare-path": [ + { + "source": "npm:bare-path", + "target": "npm:bare-os", + "type": "static" + } + ], + "npm:bare-stream": [ + { + "source": "npm:bare-stream", + "target": "npm:streamx", + "type": "static" + }, + { + "source": "npm:bare-stream", + "target": "npm:bare-events", + "type": "static" + } + ], + "npm:bare-url": [ + { + "source": "npm:bare-url", + "target": "npm:bare-path", + "type": "static" + } + ], + "npm:basic-auth": [ + { + "source": "npm:basic-auth", + "target": "npm:safe-buffer", + "type": "static" + } + ], + "npm:better-sqlite3": [ + { + "source": "npm:better-sqlite3", + "target": "npm:bindings", + "type": "static" + }, + { + "source": "npm:better-sqlite3", + "target": "npm:prebuild-install", + "type": "static" + } + ], + "npm:bindings": [ + { + "source": "npm:bindings", + "target": "npm:file-uri-to-path", + "type": "static" + } + ], + "npm:bl": [ + { + "source": "npm:bl", + "target": "npm:buffer", + "type": "static" + }, + { + "source": "npm:bl", + "target": "npm:inherits", + "type": "static" + }, + { + "source": "npm:bl", + "target": "npm:readable-stream", + "type": "static" + } + ], + "npm:body-parser": [ + { + "source": "npm:body-parser", + "target": "npm:bytes", + "type": "static" + }, + { + "source": "npm:body-parser", + "target": "npm:content-type", + "type": "static" + }, + { + "source": "npm:body-parser", + "target": "npm:debug", + "type": "static" + }, + { + "source": "npm:body-parser", + "target": "npm:http-errors", + "type": "static" + }, + { + "source": "npm:body-parser", + "target": "npm:iconv-lite@0.7.2", + "type": "static" + }, + { + "source": "npm:body-parser", + "target": "npm:on-finished", + "type": "static" + }, + { + "source": "npm:body-parser", + "target": "npm:qs", + "type": "static" + }, + { + "source": "npm:body-parser", + "target": "npm:raw-body", + "type": "static" + }, + { + "source": "npm:body-parser", + "target": "npm:type-is", + "type": "static" + } + ], + "npm:brace-expansion@1.1.12": [ + { + "source": "npm:brace-expansion@1.1.12", + "target": "npm:balanced-match", + "type": "static" + }, + { + "source": "npm:brace-expansion@1.1.12", + "target": "npm:concat-map", + "type": "static" + } + ], + "npm:brace-expansion@2.0.2": [ + { + "source": "npm:brace-expansion@2.0.2", + "target": "npm:balanced-match", + "type": "static" + } + ], + "npm:brace-expansion": [ + { + "source": "npm:brace-expansion", + "target": "npm:balanced-match@4.0.2", + "type": "static" + } + ], + "npm:braces": [ + { + "source": "npm:braces", + "target": "npm:fill-range", + "type": "static" + } + ], + "npm:browserless": [ + { + "source": "npm:browserless", + "target": "npm:@browserless/errors", + "type": "static" + }, + { + "source": "npm:browserless", + "target": "npm:@browserless/goto", + "type": "static" + }, + { + "source": "npm:browserless", + "target": "npm:@browserless/pdf", + "type": "static" + }, + { + "source": "npm:browserless", + "target": "npm:@browserless/screenshot", + "type": "static" + }, + { + "source": "npm:browserless", + "target": "npm:debug-logfmt", + "type": "static" + }, + { + "source": "npm:browserless", + "target": "npm:kill-process-group", + "type": "static" + }, + { + "source": "npm:browserless", + "target": "npm:p-reflect", + "type": "static" + }, + { + "source": "npm:browserless", + "target": "npm:p-retry", + "type": "static" + }, + { + "source": "npm:browserless", + "target": "npm:p-timeout", + "type": "static" + }, + { + "source": "npm:browserless", + "target": "npm:require-one-of", + "type": "static" + }, + { + "source": "npm:browserless", + "target": "npm:superlock", + "type": "static" + } + ], + "npm:browserslist": [ + { + "source": "npm:browserslist", + "target": "npm:baseline-browser-mapping", + "type": "static" + }, + { + "source": "npm:browserslist", + "target": "npm:caniuse-lite", + "type": "static" + }, + { + "source": "npm:browserslist", + "target": "npm:electron-to-chromium", + "type": "static" + }, + { + "source": "npm:browserslist", + "target": "npm:node-releases", + "type": "static" + }, + { + "source": "npm:browserslist", + "target": "npm:update-browserslist-db", + "type": "static" + } + ], + "npm:buffer": [ + { + "source": "npm:buffer", + "target": "npm:base64-js", + "type": "static" + }, + { + "source": "npm:buffer", + "target": "npm:ieee754", + "type": "static" + } + ], + "npm:bumpp": [ + { + "source": "npm:bumpp", + "target": "npm:args-tokenizer", + "type": "static" + }, + { + "source": "npm:bumpp", + "target": "npm:cac", + "type": "static" + }, + { + "source": "npm:bumpp", + "target": "npm:jsonc-parser", + "type": "static" + }, + { + "source": "npm:bumpp", + "target": "npm:package-manager-detector", + "type": "static" + }, + { + "source": "npm:bumpp", + "target": "npm:semver@7.7.4", + "type": "static" + }, + { + "source": "npm:bumpp", + "target": "npm:tinyexec", + "type": "static" + }, + { + "source": "npm:bumpp", + "target": "npm:tinyglobby", + "type": "static" + }, + { + "source": "npm:bumpp", + "target": "npm:unconfig", + "type": "static" + }, + { + "source": "npm:bumpp", + "target": "npm:yaml", + "type": "static" + } + ], + "npm:c12": [ + { + "source": "npm:c12", + "target": "npm:chokidar", + "type": "static" + }, + { + "source": "npm:c12", + "target": "npm:confbox", + "type": "static" + }, + { + "source": "npm:c12", + "target": "npm:defu", + "type": "static" + }, + { + "source": "npm:c12", + "target": "npm:dotenv@16.6.1", + "type": "static" + }, + { + "source": "npm:c12", + "target": "npm:exsolve", + "type": "static" + }, + { + "source": "npm:c12", + "target": "npm:giget", + "type": "static" + }, + { + "source": "npm:c12", + "target": "npm:jiti", + "type": "static" + }, + { + "source": "npm:c12", + "target": "npm:ohash", + "type": "static" + }, + { + "source": "npm:c12", + "target": "npm:pathe", + "type": "static" + }, + { + "source": "npm:c12", + "target": "npm:perfect-debounce", + "type": "static" + }, + { + "source": "npm:c12", + "target": "npm:pkg-types", + "type": "static" + }, + { + "source": "npm:c12", + "target": "npm:rc9", + "type": "static" + } + ], + "npm:cacache": [ + { + "source": "npm:cacache", + "target": "npm:@npmcli/fs", + "type": "static" + }, + { + "source": "npm:cacache", + "target": "npm:fs-minipass", + "type": "static" + }, + { + "source": "npm:cacache", + "target": "npm:glob@10.5.0", + "type": "static" + }, + { + "source": "npm:cacache", + "target": "npm:lru-cache@10.4.3", + "type": "static" + }, + { + "source": "npm:cacache", + "target": "npm:minipass", + "type": "static" + }, + { + "source": "npm:cacache", + "target": "npm:minipass-collect", + "type": "static" + }, + { + "source": "npm:cacache", + "target": "npm:minipass-flush", + "type": "static" + }, + { + "source": "npm:cacache", + "target": "npm:minipass-pipeline", + "type": "static" + }, + { + "source": "npm:cacache", + "target": "npm:p-map", + "type": "static" + }, + { + "source": "npm:cacache", + "target": "npm:ssri", + "type": "static" + }, + { + "source": "npm:cacache", + "target": "npm:tar", + "type": "static" + }, + { + "source": "npm:cacache", + "target": "npm:unique-filename", + "type": "static" + } + ], + "npm:cacheable-request": [ + { + "source": "npm:cacheable-request", + "target": "npm:clone-response", + "type": "static" + }, + { + "source": "npm:cacheable-request", + "target": "npm:get-stream@5.2.0", + "type": "static" + }, + { + "source": "npm:cacheable-request", + "target": "npm:http-cache-semantics", + "type": "static" + }, + { + "source": "npm:cacheable-request", + "target": "npm:keyv", + "type": "static" + }, + { + "source": "npm:cacheable-request", + "target": "npm:lowercase-keys", + "type": "static" + }, + { + "source": "npm:cacheable-request", + "target": "npm:normalize-url", + "type": "static" + }, + { + "source": "npm:cacheable-request", + "target": "npm:responselike", + "type": "static" + } + ], + "npm:call-bind-apply-helpers": [ + { + "source": "npm:call-bind-apply-helpers", + "target": "npm:es-errors", + "type": "static" + }, + { + "source": "npm:call-bind-apply-helpers", + "target": "npm:function-bind", + "type": "static" + } + ], + "npm:call-bind": [ + { + "source": "npm:call-bind", + "target": "npm:call-bind-apply-helpers", + "type": "static" + }, + { + "source": "npm:call-bind", + "target": "npm:es-define-property", + "type": "static" + }, + { + "source": "npm:call-bind", + "target": "npm:get-intrinsic", + "type": "static" + }, + { + "source": "npm:call-bind", + "target": "npm:set-function-length", + "type": "static" + } + ], + "npm:call-bound": [ + { + "source": "npm:call-bound", + "target": "npm:call-bind-apply-helpers", + "type": "static" + }, + { + "source": "npm:call-bound", + "target": "npm:get-intrinsic", + "type": "static" + } + ], + "npm:caniuse-api": [ + { + "source": "npm:caniuse-api", + "target": "npm:browserslist", + "type": "static" + }, + { + "source": "npm:caniuse-api", + "target": "npm:caniuse-lite", + "type": "static" + }, + { + "source": "npm:caniuse-api", + "target": "npm:lodash.memoize", + "type": "static" + }, + { + "source": "npm:caniuse-api", + "target": "npm:lodash.uniq", + "type": "static" + } + ], + "npm:cdk": [ + { + "source": "npm:cdk", + "target": "npm:aws-cdk", + "type": "static" + } + ], + "npm:chalk": [ + { + "source": "npm:chalk", + "target": "npm:ansi-styles@4.3.0", + "type": "static" + }, + { + "source": "npm:chalk", + "target": "npm:supports-color", + "type": "static" + } + ], + "npm:chevrotain": [ + { + "source": "npm:chevrotain", + "target": "npm:@chevrotain/cst-dts-gen", + "type": "static" + }, + { + "source": "npm:chevrotain", + "target": "npm:@chevrotain/gast", + "type": "static" + }, + { + "source": "npm:chevrotain", + "target": "npm:@chevrotain/types", + "type": "static" + }, + { + "source": "npm:chevrotain", + "target": "npm:@chevrotain/utils", + "type": "static" + }, + { + "source": "npm:chevrotain", + "target": "npm:lodash@4.17.21", + "type": "static" + }, + { + "source": "npm:chevrotain", + "target": "npm:regexp-to-ast", + "type": "static" + } + ], + "npm:chokidar": [ + { + "source": "npm:chokidar", + "target": "npm:readdirp", + "type": "static" + } + ], + "npm:chromium-bidi": [ + { + "source": "npm:chromium-bidi", + "target": "npm:devtools-protocol", + "type": "static" + }, + { + "source": "npm:chromium-bidi", + "target": "npm:mitt", + "type": "static" + }, + { + "source": "npm:chromium-bidi", + "target": "npm:zod", + "type": "static" + } + ], + "npm:citty@0.1.6": [ + { + "source": "npm:citty@0.1.6", + "target": "npm:consola", + "type": "static" + } + ], + "npm:class-variance-authority": [ + { + "source": "npm:class-variance-authority", + "target": "npm:clsx", + "type": "static" + } + ], + "npm:cli-cursor": [ + { + "source": "npm:cli-cursor", + "target": "npm:restore-cursor", + "type": "static" + } + ], + "npm:cliui": [ + { + "source": "npm:cliui", + "target": "npm:string-width", + "type": "static" + }, + { + "source": "npm:cliui", + "target": "npm:strip-ansi@6.0.1", + "type": "static" + }, + { + "source": "npm:cliui", + "target": "npm:wrap-ansi", + "type": "static" + } + ], + "npm:clone-response": [ + { + "source": "npm:clone-response", + "target": "npm:mimic-response@1.0.1", + "type": "static" + } + ], + "npm:color-convert": [ + { + "source": "npm:color-convert", + "target": "npm:color-name", + "type": "static" + } + ], + "npm:color-string": [ + { + "source": "npm:color-string", + "target": "npm:color-name", + "type": "static" + }, + { + "source": "npm:color-string", + "target": "npm:simple-swizzle", + "type": "static" + } + ], + "npm:color": [ + { + "source": "npm:color", + "target": "npm:color-convert", + "type": "static" + }, + { + "source": "npm:color", + "target": "npm:color-string", + "type": "static" + } + ], + "npm:combined-stream": [ + { + "source": "npm:combined-stream", + "target": "npm:delayed-stream", + "type": "static" + } + ], + "npm:cosmiconfig": [ + { + "source": "npm:cosmiconfig", + "target": "npm:env-paths", + "type": "static" + }, + { + "source": "npm:cosmiconfig", + "target": "npm:import-fresh", + "type": "static" + }, + { + "source": "npm:cosmiconfig", + "target": "npm:js-yaml", + "type": "static" + }, + { + "source": "npm:cosmiconfig", + "target": "npm:parse-json", + "type": "static" + }, + { + "source": "npm:cosmiconfig", + "target": "npm:typescript", + "type": "static" + } + ], + "npm:cross-spawn": [ + { + "source": "npm:cross-spawn", + "target": "npm:path-key", + "type": "static" + }, + { + "source": "npm:cross-spawn", + "target": "npm:shebang-command", + "type": "static" + }, + { + "source": "npm:cross-spawn", + "target": "npm:which@2.0.2", + "type": "static" + } + ], + "npm:crossws": [ + { + "source": "npm:crossws", + "target": "npm:uncrypto", + "type": "static" + } + ], + "npm:css-declaration-sorter": [ + { + "source": "npm:css-declaration-sorter", + "target": "npm:postcss", + "type": "static" + } + ], + "npm:css-select": [ + { + "source": "npm:css-select", + "target": "npm:boolbase", + "type": "static" + }, + { + "source": "npm:css-select", + "target": "npm:css-what", + "type": "static" + }, + { + "source": "npm:css-select", + "target": "npm:domhandler", + "type": "static" + }, + { + "source": "npm:css-select", + "target": "npm:domutils", + "type": "static" + }, + { + "source": "npm:css-select", + "target": "npm:nth-check", + "type": "static" + } + ], + "npm:css-tree": [ + { + "source": "npm:css-tree", + "target": "npm:mdn-data", + "type": "static" + }, + { + "source": "npm:css-tree", + "target": "npm:source-map", + "type": "static" + } + ], + "npm:cssnano-preset-default": [ + { + "source": "npm:cssnano-preset-default", + "target": "npm:css-declaration-sorter", + "type": "static" + }, + { + "source": "npm:cssnano-preset-default", + "target": "npm:cssnano-utils", + "type": "static" + }, + { + "source": "npm:cssnano-preset-default", + "target": "npm:postcss", + "type": "static" + }, + { + "source": "npm:cssnano-preset-default", + "target": "npm:postcss-calc", + "type": "static" + }, + { + "source": "npm:cssnano-preset-default", + "target": "npm:postcss-colormin", + "type": "static" + }, + { + "source": "npm:cssnano-preset-default", + "target": "npm:postcss-convert-values", + "type": "static" + }, + { + "source": "npm:cssnano-preset-default", + "target": "npm:postcss-discard-comments", + "type": "static" + }, + { + "source": "npm:cssnano-preset-default", + "target": "npm:postcss-discard-duplicates@5.1.0", + "type": "static" + }, + { + "source": "npm:cssnano-preset-default", + "target": "npm:postcss-discard-empty", + "type": "static" + }, + { + "source": "npm:cssnano-preset-default", + "target": "npm:postcss-discard-overridden", + "type": "static" + }, + { + "source": "npm:cssnano-preset-default", + "target": "npm:postcss-merge-longhand", + "type": "static" + }, + { + "source": "npm:cssnano-preset-default", + "target": "npm:postcss-merge-rules", + "type": "static" + }, + { + "source": "npm:cssnano-preset-default", + "target": "npm:postcss-minify-font-values", + "type": "static" + }, + { + "source": "npm:cssnano-preset-default", + "target": "npm:postcss-minify-gradients", + "type": "static" + }, + { + "source": "npm:cssnano-preset-default", + "target": "npm:postcss-minify-params", + "type": "static" + }, + { + "source": "npm:cssnano-preset-default", + "target": "npm:postcss-minify-selectors", + "type": "static" + }, + { + "source": "npm:cssnano-preset-default", + "target": "npm:postcss-normalize-charset", + "type": "static" + }, + { + "source": "npm:cssnano-preset-default", + "target": "npm:postcss-normalize-display-values", + "type": "static" + }, + { + "source": "npm:cssnano-preset-default", + "target": "npm:postcss-normalize-positions", + "type": "static" + }, + { + "source": "npm:cssnano-preset-default", + "target": "npm:postcss-normalize-repeat-style", + "type": "static" + }, + { + "source": "npm:cssnano-preset-default", + "target": "npm:postcss-normalize-string", + "type": "static" + }, + { + "source": "npm:cssnano-preset-default", + "target": "npm:postcss-normalize-timing-functions", + "type": "static" + }, + { + "source": "npm:cssnano-preset-default", + "target": "npm:postcss-normalize-unicode", + "type": "static" + }, + { + "source": "npm:cssnano-preset-default", + "target": "npm:postcss-normalize-url", + "type": "static" + }, + { + "source": "npm:cssnano-preset-default", + "target": "npm:postcss-normalize-whitespace", + "type": "static" + }, + { + "source": "npm:cssnano-preset-default", + "target": "npm:postcss-ordered-values", + "type": "static" + }, + { + "source": "npm:cssnano-preset-default", + "target": "npm:postcss-reduce-initial", + "type": "static" + }, + { + "source": "npm:cssnano-preset-default", + "target": "npm:postcss-reduce-transforms", + "type": "static" + }, + { + "source": "npm:cssnano-preset-default", + "target": "npm:postcss-svgo", + "type": "static" + }, + { + "source": "npm:cssnano-preset-default", + "target": "npm:postcss-unique-selectors", + "type": "static" + } + ], + "npm:cssnano-utils": [ + { + "source": "npm:cssnano-utils", + "target": "npm:postcss", + "type": "static" + } + ], + "npm:csso": [ + { + "source": "npm:csso", + "target": "npm:css-tree", + "type": "static" + } + ], + "npm:data-view-buffer": [ + { + "source": "npm:data-view-buffer", + "target": "npm:call-bound", + "type": "static" + }, + { + "source": "npm:data-view-buffer", + "target": "npm:es-errors", + "type": "static" + }, + { + "source": "npm:data-view-buffer", + "target": "npm:is-data-view", + "type": "static" + } + ], + "npm:data-view-byte-length": [ + { + "source": "npm:data-view-byte-length", + "target": "npm:call-bound", + "type": "static" + }, + { + "source": "npm:data-view-byte-length", + "target": "npm:es-errors", + "type": "static" + }, + { + "source": "npm:data-view-byte-length", + "target": "npm:is-data-view", + "type": "static" + } + ], + "npm:data-view-byte-offset": [ + { + "source": "npm:data-view-byte-offset", + "target": "npm:call-bound", + "type": "static" + }, + { + "source": "npm:data-view-byte-offset", + "target": "npm:es-errors", + "type": "static" + }, + { + "source": "npm:data-view-byte-offset", + "target": "npm:is-data-view", + "type": "static" + } + ], + "npm:debug-logfmt": [ + { + "source": "npm:debug-logfmt", + "target": "npm:@kikobeats/time-span", + "type": "static" + }, + { + "source": "npm:debug-logfmt", + "target": "npm:null-prototype-object", + "type": "static" + }, + { + "source": "npm:debug-logfmt", + "target": "npm:pretty-ms@7.0.1", + "type": "static" + } + ], + "npm:debug": [ + { + "source": "npm:debug", + "target": "npm:ms", + "type": "static" + } + ], + "npm:decode-named-character-reference": [ + { + "source": "npm:decode-named-character-reference", + "target": "npm:character-entities", + "type": "static" + } + ], + "npm:decompress-response": [ + { + "source": "npm:decompress-response", + "target": "npm:mimic-response", + "type": "static" + } + ], + "npm:defaults": [ + { + "source": "npm:defaults", + "target": "npm:clone", + "type": "static" + } + ], + "npm:define-data-property": [ + { + "source": "npm:define-data-property", + "target": "npm:es-define-property", + "type": "static" + }, + { + "source": "npm:define-data-property", + "target": "npm:es-errors", + "type": "static" + }, + { + "source": "npm:define-data-property", + "target": "npm:gopd", + "type": "static" + } + ], + "npm:define-properties": [ + { + "source": "npm:define-properties", + "target": "npm:define-data-property", + "type": "static" + }, + { + "source": "npm:define-properties", + "target": "npm:has-property-descriptors", + "type": "static" + }, + { + "source": "npm:define-properties", + "target": "npm:object-keys", + "type": "static" + } + ], + "npm:degenerator": [ + { + "source": "npm:degenerator", + "target": "npm:ast-types", + "type": "static" + }, + { + "source": "npm:degenerator", + "target": "npm:escodegen", + "type": "static" + }, + { + "source": "npm:degenerator", + "target": "npm:esprima", + "type": "static" + } + ], + "npm:devlop": [ + { + "source": "npm:devlop", + "target": "npm:dequal", + "type": "static" + } + ], + "npm:doctrine": [ + { + "source": "npm:doctrine", + "target": "npm:esutils", + "type": "static" + } + ], + "npm:dom-serializer": [ + { + "source": "npm:dom-serializer", + "target": "npm:domelementtype", + "type": "static" + }, + { + "source": "npm:dom-serializer", + "target": "npm:domhandler", + "type": "static" + }, + { + "source": "npm:dom-serializer", + "target": "npm:entities@2.2.0", + "type": "static" + } + ], + "npm:domhandler": [ + { + "source": "npm:domhandler", + "target": "npm:domelementtype", + "type": "static" + } + ], + "npm:domutils": [ + { + "source": "npm:domutils", + "target": "npm:dom-serializer", + "type": "static" + }, + { + "source": "npm:domutils", + "target": "npm:domelementtype", + "type": "static" + }, + { + "source": "npm:domutils", + "target": "npm:domhandler", + "type": "static" + } + ], + "npm:dotenv-expand": [ + { + "source": "npm:dotenv-expand", + "target": "npm:dotenv@16.6.1", + "type": "static" + } + ], + "npm:drizzle-kit": [ + { + "source": "npm:drizzle-kit", + "target": "npm:@drizzle-team/brocli", + "type": "static" + }, + { + "source": "npm:drizzle-kit", + "target": "npm:@esbuild-kit/esm-loader", + "type": "static" + }, + { + "source": "npm:drizzle-kit", + "target": "npm:esbuild@0.25.12", + "type": "static" + }, + { + "source": "npm:drizzle-kit", + "target": "npm:tsx", + "type": "static" + } + ], + "npm:drizzle-orm": [ + { + "source": "npm:drizzle-orm", + "target": "npm:@cloudflare/workers-types", + "type": "static" + }, + { + "source": "npm:drizzle-orm", + "target": "npm:@electric-sql/pglite", + "type": "static" + }, + { + "source": "npm:drizzle-orm", + "target": "npm:@prisma/client", + "type": "static" + }, + { + "source": "npm:drizzle-orm", + "target": "npm:@types/better-sqlite3", + "type": "static" + }, + { + "source": "npm:drizzle-orm", + "target": "npm:better-sqlite3", + "type": "static" + }, + { + "source": "npm:drizzle-orm", + "target": "npm:kysely", + "type": "static" + }, + { + "source": "npm:drizzle-orm", + "target": "npm:mysql2", + "type": "static" + }, + { + "source": "npm:drizzle-orm", + "target": "npm:postgres", + "type": "static" + }, + { + "source": "npm:drizzle-orm", + "target": "npm:prisma", + "type": "static" + } + ], + "npm:dts-resolver": [ + { + "source": "npm:dts-resolver", + "target": "npm:oxc-resolver", + "type": "static" + } + ], + "npm:dunder-proto": [ + { + "source": "npm:dunder-proto", + "target": "npm:call-bind-apply-helpers", + "type": "static" + }, + { + "source": "npm:dunder-proto", + "target": "npm:es-errors", + "type": "static" + }, + { + "source": "npm:dunder-proto", + "target": "npm:gopd", + "type": "static" + } + ], + "npm:effect": [ + { + "source": "npm:effect", + "target": "npm:@standard-schema/spec", + "type": "static" + }, + { + "source": "npm:effect", + "target": "npm:fast-check", + "type": "static" + } + ], + "npm:ejs": [ + { + "source": "npm:ejs", + "target": "npm:jake", + "type": "static" + } + ], + "npm:encoding": [ + { + "source": "npm:encoding", + "target": "npm:iconv-lite", + "type": "static" + } + ], + "npm:end-of-stream": [ + { + "source": "npm:end-of-stream", + "target": "npm:once", + "type": "static" + } + ], + "npm:enhanced-resolve": [ + { + "source": "npm:enhanced-resolve", + "target": "npm:graceful-fs", + "type": "static" + }, + { + "source": "npm:enhanced-resolve", + "target": "npm:tapable", + "type": "static" + } + ], + "npm:enquirer": [ + { + "source": "npm:enquirer", + "target": "npm:ansi-colors", + "type": "static" + } + ], + "npm:error-ex": [ + { + "source": "npm:error-ex", + "target": "npm:is-arrayish", + "type": "static" + } + ], + "npm:es-abstract": [ + { + "source": "npm:es-abstract", + "target": "npm:array-buffer-byte-length", + "type": "static" + }, + { + "source": "npm:es-abstract", + "target": "npm:arraybuffer.prototype.slice", + "type": "static" + }, + { + "source": "npm:es-abstract", + "target": "npm:available-typed-arrays", + "type": "static" + }, + { + "source": "npm:es-abstract", + "target": "npm:call-bind", + "type": "static" + }, + { + "source": "npm:es-abstract", + "target": "npm:call-bound", + "type": "static" + }, + { + "source": "npm:es-abstract", + "target": "npm:data-view-buffer", + "type": "static" + }, + { + "source": "npm:es-abstract", + "target": "npm:data-view-byte-length", + "type": "static" + }, + { + "source": "npm:es-abstract", + "target": "npm:data-view-byte-offset", + "type": "static" + }, + { + "source": "npm:es-abstract", + "target": "npm:es-define-property", + "type": "static" + }, + { + "source": "npm:es-abstract", + "target": "npm:es-errors", + "type": "static" + }, + { + "source": "npm:es-abstract", + "target": "npm:es-object-atoms", + "type": "static" + }, + { + "source": "npm:es-abstract", + "target": "npm:es-set-tostringtag", + "type": "static" + }, + { + "source": "npm:es-abstract", + "target": "npm:es-to-primitive", + "type": "static" + }, + { + "source": "npm:es-abstract", + "target": "npm:function.prototype.name", + "type": "static" + }, + { + "source": "npm:es-abstract", + "target": "npm:get-intrinsic", + "type": "static" + }, + { + "source": "npm:es-abstract", + "target": "npm:get-proto", + "type": "static" + }, + { + "source": "npm:es-abstract", + "target": "npm:get-symbol-description", + "type": "static" + }, + { + "source": "npm:es-abstract", + "target": "npm:globalthis", + "type": "static" + }, + { + "source": "npm:es-abstract", + "target": "npm:gopd", + "type": "static" + }, + { + "source": "npm:es-abstract", + "target": "npm:has-property-descriptors", + "type": "static" + }, + { + "source": "npm:es-abstract", + "target": "npm:has-proto", + "type": "static" + }, + { + "source": "npm:es-abstract", + "target": "npm:has-symbols", + "type": "static" + }, + { + "source": "npm:es-abstract", + "target": "npm:hasown", + "type": "static" + }, + { + "source": "npm:es-abstract", + "target": "npm:internal-slot", + "type": "static" + }, + { + "source": "npm:es-abstract", + "target": "npm:is-array-buffer", + "type": "static" + }, + { + "source": "npm:es-abstract", + "target": "npm:is-callable", + "type": "static" + }, + { + "source": "npm:es-abstract", + "target": "npm:is-data-view", + "type": "static" + }, + { + "source": "npm:es-abstract", + "target": "npm:is-negative-zero", + "type": "static" + }, + { + "source": "npm:es-abstract", + "target": "npm:is-regex", + "type": "static" + }, + { + "source": "npm:es-abstract", + "target": "npm:is-set", + "type": "static" + }, + { + "source": "npm:es-abstract", + "target": "npm:is-shared-array-buffer", + "type": "static" + }, + { + "source": "npm:es-abstract", + "target": "npm:is-string", + "type": "static" + }, + { + "source": "npm:es-abstract", + "target": "npm:is-typed-array", + "type": "static" + }, + { + "source": "npm:es-abstract", + "target": "npm:is-weakref", + "type": "static" + }, + { + "source": "npm:es-abstract", + "target": "npm:math-intrinsics", + "type": "static" + }, + { + "source": "npm:es-abstract", + "target": "npm:object-inspect", + "type": "static" + }, + { + "source": "npm:es-abstract", + "target": "npm:object-keys", + "type": "static" + }, + { + "source": "npm:es-abstract", + "target": "npm:object.assign", + "type": "static" + }, + { + "source": "npm:es-abstract", + "target": "npm:own-keys", + "type": "static" + }, + { + "source": "npm:es-abstract", + "target": "npm:regexp.prototype.flags", + "type": "static" + }, + { + "source": "npm:es-abstract", + "target": "npm:safe-array-concat", + "type": "static" + }, + { + "source": "npm:es-abstract", + "target": "npm:safe-push-apply", + "type": "static" + }, + { + "source": "npm:es-abstract", + "target": "npm:safe-regex-test", + "type": "static" + }, + { + "source": "npm:es-abstract", + "target": "npm:set-proto", + "type": "static" + }, + { + "source": "npm:es-abstract", + "target": "npm:stop-iteration-iterator", + "type": "static" + }, + { + "source": "npm:es-abstract", + "target": "npm:string.prototype.trim", + "type": "static" + }, + { + "source": "npm:es-abstract", + "target": "npm:string.prototype.trimend", + "type": "static" + }, + { + "source": "npm:es-abstract", + "target": "npm:string.prototype.trimstart", + "type": "static" + }, + { + "source": "npm:es-abstract", + "target": "npm:typed-array-buffer", + "type": "static" + }, + { + "source": "npm:es-abstract", + "target": "npm:typed-array-byte-length", + "type": "static" + }, + { + "source": "npm:es-abstract", + "target": "npm:typed-array-byte-offset", + "type": "static" + }, + { + "source": "npm:es-abstract", + "target": "npm:typed-array-length", + "type": "static" + }, + { + "source": "npm:es-abstract", + "target": "npm:unbox-primitive", + "type": "static" + }, + { + "source": "npm:es-abstract", + "target": "npm:which-typed-array", + "type": "static" + } + ], + "npm:es-iterator-helpers": [ + { + "source": "npm:es-iterator-helpers", + "target": "npm:call-bind", + "type": "static" + }, + { + "source": "npm:es-iterator-helpers", + "target": "npm:call-bound", + "type": "static" + }, + { + "source": "npm:es-iterator-helpers", + "target": "npm:define-properties", + "type": "static" + }, + { + "source": "npm:es-iterator-helpers", + "target": "npm:es-abstract", + "type": "static" + }, + { + "source": "npm:es-iterator-helpers", + "target": "npm:es-errors", + "type": "static" + }, + { + "source": "npm:es-iterator-helpers", + "target": "npm:es-set-tostringtag", + "type": "static" + }, + { + "source": "npm:es-iterator-helpers", + "target": "npm:function-bind", + "type": "static" + }, + { + "source": "npm:es-iterator-helpers", + "target": "npm:get-intrinsic", + "type": "static" + }, + { + "source": "npm:es-iterator-helpers", + "target": "npm:globalthis", + "type": "static" + }, + { + "source": "npm:es-iterator-helpers", + "target": "npm:gopd", + "type": "static" + }, + { + "source": "npm:es-iterator-helpers", + "target": "npm:has-property-descriptors", + "type": "static" + }, + { + "source": "npm:es-iterator-helpers", + "target": "npm:has-proto", + "type": "static" + }, + { + "source": "npm:es-iterator-helpers", + "target": "npm:has-symbols", + "type": "static" + }, + { + "source": "npm:es-iterator-helpers", + "target": "npm:internal-slot", + "type": "static" + }, + { + "source": "npm:es-iterator-helpers", + "target": "npm:iterator.prototype", + "type": "static" + }, + { + "source": "npm:es-iterator-helpers", + "target": "npm:safe-array-concat", + "type": "static" + } + ], + "npm:es-object-atoms": [ + { + "source": "npm:es-object-atoms", + "target": "npm:es-errors", + "type": "static" + } + ], + "npm:es-set-tostringtag": [ + { + "source": "npm:es-set-tostringtag", + "target": "npm:es-errors", + "type": "static" + }, + { + "source": "npm:es-set-tostringtag", + "target": "npm:get-intrinsic", + "type": "static" + }, + { + "source": "npm:es-set-tostringtag", + "target": "npm:has-tostringtag", + "type": "static" + }, + { + "source": "npm:es-set-tostringtag", + "target": "npm:hasown", + "type": "static" + } + ], + "npm:es-shim-unscopables": [ + { + "source": "npm:es-shim-unscopables", + "target": "npm:hasown", + "type": "static" + } + ], + "npm:es-to-primitive": [ + { + "source": "npm:es-to-primitive", + "target": "npm:is-callable", + "type": "static" + }, + { + "source": "npm:es-to-primitive", + "target": "npm:is-date-object", + "type": "static" + }, + { + "source": "npm:es-to-primitive", + "target": "npm:is-symbol", + "type": "static" + } + ], + "npm:esbuild@0.18.20": [ + { + "source": "npm:esbuild@0.18.20", + "target": "npm:@esbuild/android-arm@0.18.20", + "type": "static" + }, + { + "source": "npm:esbuild@0.18.20", + "target": "npm:@esbuild/android-arm64@0.18.20", + "type": "static" + }, + { + "source": "npm:esbuild@0.18.20", + "target": "npm:@esbuild/android-x64@0.18.20", + "type": "static" + }, + { + "source": "npm:esbuild@0.18.20", + "target": "npm:@esbuild/darwin-arm64@0.18.20", + "type": "static" + }, + { + "source": "npm:esbuild@0.18.20", + "target": "npm:@esbuild/darwin-x64@0.18.20", + "type": "static" + }, + { + "source": "npm:esbuild@0.18.20", + "target": "npm:@esbuild/freebsd-arm64@0.18.20", + "type": "static" + }, + { + "source": "npm:esbuild@0.18.20", + "target": "npm:@esbuild/freebsd-x64@0.18.20", + "type": "static" + }, + { + "source": "npm:esbuild@0.18.20", + "target": "npm:@esbuild/linux-arm@0.18.20", + "type": "static" + }, + { + "source": "npm:esbuild@0.18.20", + "target": "npm:@esbuild/linux-arm64@0.18.20", + "type": "static" + }, + { + "source": "npm:esbuild@0.18.20", + "target": "npm:@esbuild/linux-ia32@0.18.20", + "type": "static" + }, + { + "source": "npm:esbuild@0.18.20", + "target": "npm:@esbuild/linux-loong64@0.18.20", + "type": "static" + }, + { + "source": "npm:esbuild@0.18.20", + "target": "npm:@esbuild/linux-mips64el@0.18.20", + "type": "static" + }, + { + "source": "npm:esbuild@0.18.20", + "target": "npm:@esbuild/linux-ppc64@0.18.20", + "type": "static" + }, + { + "source": "npm:esbuild@0.18.20", + "target": "npm:@esbuild/linux-riscv64@0.18.20", + "type": "static" + }, + { + "source": "npm:esbuild@0.18.20", + "target": "npm:@esbuild/linux-s390x@0.18.20", + "type": "static" + }, + { + "source": "npm:esbuild@0.18.20", + "target": "npm:@esbuild/linux-x64@0.18.20", + "type": "static" + }, + { + "source": "npm:esbuild@0.18.20", + "target": "npm:@esbuild/netbsd-x64@0.18.20", + "type": "static" + }, + { + "source": "npm:esbuild@0.18.20", + "target": "npm:@esbuild/openbsd-x64@0.18.20", + "type": "static" + }, + { + "source": "npm:esbuild@0.18.20", + "target": "npm:@esbuild/sunos-x64@0.18.20", + "type": "static" + }, + { + "source": "npm:esbuild@0.18.20", + "target": "npm:@esbuild/win32-arm64@0.18.20", + "type": "static" + }, + { + "source": "npm:esbuild@0.18.20", + "target": "npm:@esbuild/win32-ia32@0.18.20", + "type": "static" + }, + { + "source": "npm:esbuild@0.18.20", + "target": "npm:@esbuild/win32-x64@0.18.20", + "type": "static" + } + ], + "npm:esbuild@0.25.12": [ + { + "source": "npm:esbuild@0.25.12", + "target": "npm:@esbuild/aix-ppc64@0.25.12", + "type": "static" + }, + { + "source": "npm:esbuild@0.25.12", + "target": "npm:@esbuild/android-arm@0.25.12", + "type": "static" + }, + { + "source": "npm:esbuild@0.25.12", + "target": "npm:@esbuild/android-arm64@0.25.12", + "type": "static" + }, + { + "source": "npm:esbuild@0.25.12", + "target": "npm:@esbuild/android-x64@0.25.12", + "type": "static" + }, + { + "source": "npm:esbuild@0.25.12", + "target": "npm:@esbuild/darwin-arm64@0.25.12", + "type": "static" + }, + { + "source": "npm:esbuild@0.25.12", + "target": "npm:@esbuild/darwin-x64@0.25.12", + "type": "static" + }, + { + "source": "npm:esbuild@0.25.12", + "target": "npm:@esbuild/freebsd-arm64@0.25.12", + "type": "static" + }, + { + "source": "npm:esbuild@0.25.12", + "target": "npm:@esbuild/freebsd-x64@0.25.12", + "type": "static" + }, + { + "source": "npm:esbuild@0.25.12", + "target": "npm:@esbuild/linux-arm@0.25.12", + "type": "static" + }, + { + "source": "npm:esbuild@0.25.12", + "target": "npm:@esbuild/linux-arm64@0.25.12", + "type": "static" + }, + { + "source": "npm:esbuild@0.25.12", + "target": "npm:@esbuild/linux-ia32@0.25.12", + "type": "static" + }, + { + "source": "npm:esbuild@0.25.12", + "target": "npm:@esbuild/linux-loong64@0.25.12", + "type": "static" + }, + { + "source": "npm:esbuild@0.25.12", + "target": "npm:@esbuild/linux-mips64el@0.25.12", + "type": "static" + }, + { + "source": "npm:esbuild@0.25.12", + "target": "npm:@esbuild/linux-ppc64@0.25.12", + "type": "static" + }, + { + "source": "npm:esbuild@0.25.12", + "target": "npm:@esbuild/linux-riscv64@0.25.12", + "type": "static" + }, + { + "source": "npm:esbuild@0.25.12", + "target": "npm:@esbuild/linux-s390x@0.25.12", + "type": "static" + }, + { + "source": "npm:esbuild@0.25.12", + "target": "npm:@esbuild/linux-x64@0.25.12", + "type": "static" + }, + { + "source": "npm:esbuild@0.25.12", + "target": "npm:@esbuild/netbsd-arm64@0.25.12", + "type": "static" + }, + { + "source": "npm:esbuild@0.25.12", + "target": "npm:@esbuild/netbsd-x64@0.25.12", + "type": "static" + }, + { + "source": "npm:esbuild@0.25.12", + "target": "npm:@esbuild/openbsd-arm64@0.25.12", + "type": "static" + }, + { + "source": "npm:esbuild@0.25.12", + "target": "npm:@esbuild/openbsd-x64@0.25.12", + "type": "static" + }, + { + "source": "npm:esbuild@0.25.12", + "target": "npm:@esbuild/openharmony-arm64@0.25.12", + "type": "static" + }, + { + "source": "npm:esbuild@0.25.12", + "target": "npm:@esbuild/sunos-x64@0.25.12", + "type": "static" + }, + { + "source": "npm:esbuild@0.25.12", + "target": "npm:@esbuild/win32-arm64@0.25.12", + "type": "static" + }, + { + "source": "npm:esbuild@0.25.12", + "target": "npm:@esbuild/win32-ia32@0.25.12", + "type": "static" + }, + { + "source": "npm:esbuild@0.25.12", + "target": "npm:@esbuild/win32-x64@0.25.12", + "type": "static" + } + ], + "npm:esbuild@0.27.3": [ + { + "source": "npm:esbuild@0.27.3", + "target": "npm:@esbuild/aix-ppc64@0.27.3", + "type": "static" + }, + { + "source": "npm:esbuild@0.27.3", + "target": "npm:@esbuild/android-arm@0.27.3", + "type": "static" + }, + { + "source": "npm:esbuild@0.27.3", + "target": "npm:@esbuild/android-arm64@0.27.3", + "type": "static" + }, + { + "source": "npm:esbuild@0.27.3", + "target": "npm:@esbuild/android-x64@0.27.3", + "type": "static" + }, + { + "source": "npm:esbuild@0.27.3", + "target": "npm:@esbuild/darwin-arm64@0.27.3", + "type": "static" + }, + { + "source": "npm:esbuild@0.27.3", + "target": "npm:@esbuild/darwin-x64@0.27.3", + "type": "static" + }, + { + "source": "npm:esbuild@0.27.3", + "target": "npm:@esbuild/freebsd-arm64@0.27.3", + "type": "static" + }, + { + "source": "npm:esbuild@0.27.3", + "target": "npm:@esbuild/freebsd-x64@0.27.3", + "type": "static" + }, + { + "source": "npm:esbuild@0.27.3", + "target": "npm:@esbuild/linux-arm@0.27.3", + "type": "static" + }, + { + "source": "npm:esbuild@0.27.3", + "target": "npm:@esbuild/linux-arm64@0.27.3", + "type": "static" + }, + { + "source": "npm:esbuild@0.27.3", + "target": "npm:@esbuild/linux-ia32@0.27.3", + "type": "static" + }, + { + "source": "npm:esbuild@0.27.3", + "target": "npm:@esbuild/linux-loong64@0.27.3", + "type": "static" + }, + { + "source": "npm:esbuild@0.27.3", + "target": "npm:@esbuild/linux-mips64el@0.27.3", + "type": "static" + }, + { + "source": "npm:esbuild@0.27.3", + "target": "npm:@esbuild/linux-ppc64@0.27.3", + "type": "static" + }, + { + "source": "npm:esbuild@0.27.3", + "target": "npm:@esbuild/linux-riscv64@0.27.3", + "type": "static" + }, + { + "source": "npm:esbuild@0.27.3", + "target": "npm:@esbuild/linux-s390x@0.27.3", + "type": "static" + }, + { + "source": "npm:esbuild@0.27.3", + "target": "npm:@esbuild/linux-x64@0.27.3", + "type": "static" + }, + { + "source": "npm:esbuild@0.27.3", + "target": "npm:@esbuild/netbsd-arm64@0.27.3", + "type": "static" + }, + { + "source": "npm:esbuild@0.27.3", + "target": "npm:@esbuild/netbsd-x64@0.27.3", + "type": "static" + }, + { + "source": "npm:esbuild@0.27.3", + "target": "npm:@esbuild/openbsd-arm64@0.27.3", + "type": "static" + }, + { + "source": "npm:esbuild@0.27.3", + "target": "npm:@esbuild/openbsd-x64@0.27.3", + "type": "static" + }, + { + "source": "npm:esbuild@0.27.3", + "target": "npm:@esbuild/openharmony-arm64@0.27.3", + "type": "static" + }, + { + "source": "npm:esbuild@0.27.3", + "target": "npm:@esbuild/sunos-x64@0.27.3", + "type": "static" + }, + { + "source": "npm:esbuild@0.27.3", + "target": "npm:@esbuild/win32-arm64@0.27.3", + "type": "static" + }, + { + "source": "npm:esbuild@0.27.3", + "target": "npm:@esbuild/win32-ia32@0.27.3", + "type": "static" + }, + { + "source": "npm:esbuild@0.27.3", + "target": "npm:@esbuild/win32-x64@0.27.3", + "type": "static" + } + ], + "npm:esbuild": [ + { + "source": "npm:esbuild", + "target": "npm:@esbuild/aix-ppc64@0.27.4", + "type": "static" + }, + { + "source": "npm:esbuild", + "target": "npm:@esbuild/android-arm@0.27.4", + "type": "static" + }, + { + "source": "npm:esbuild", + "target": "npm:@esbuild/android-arm64@0.27.4", + "type": "static" + }, + { + "source": "npm:esbuild", + "target": "npm:@esbuild/android-x64@0.27.4", + "type": "static" + }, + { + "source": "npm:esbuild", + "target": "npm:@esbuild/darwin-arm64@0.27.4", + "type": "static" + }, + { + "source": "npm:esbuild", + "target": "npm:@esbuild/darwin-x64@0.27.4", + "type": "static" + }, + { + "source": "npm:esbuild", + "target": "npm:@esbuild/freebsd-arm64@0.27.4", + "type": "static" + }, + { + "source": "npm:esbuild", + "target": "npm:@esbuild/freebsd-x64@0.27.4", + "type": "static" + }, + { + "source": "npm:esbuild", + "target": "npm:@esbuild/linux-arm@0.27.4", + "type": "static" + }, + { + "source": "npm:esbuild", + "target": "npm:@esbuild/linux-arm64@0.27.4", + "type": "static" + }, + { + "source": "npm:esbuild", + "target": "npm:@esbuild/linux-ia32@0.27.4", + "type": "static" + }, + { + "source": "npm:esbuild", + "target": "npm:@esbuild/linux-loong64@0.27.4", + "type": "static" + }, + { + "source": "npm:esbuild", + "target": "npm:@esbuild/linux-mips64el@0.27.4", + "type": "static" + }, + { + "source": "npm:esbuild", + "target": "npm:@esbuild/linux-ppc64@0.27.4", + "type": "static" + }, + { + "source": "npm:esbuild", + "target": "npm:@esbuild/linux-riscv64@0.27.4", + "type": "static" + }, + { + "source": "npm:esbuild", + "target": "npm:@esbuild/linux-s390x@0.27.4", + "type": "static" + }, + { + "source": "npm:esbuild", + "target": "npm:@esbuild/linux-x64", + "type": "static" + }, + { + "source": "npm:esbuild", + "target": "npm:@esbuild/netbsd-arm64@0.27.4", + "type": "static" + }, + { + "source": "npm:esbuild", + "target": "npm:@esbuild/netbsd-x64@0.27.4", + "type": "static" + }, + { + "source": "npm:esbuild", + "target": "npm:@esbuild/openbsd-arm64@0.27.4", + "type": "static" + }, + { + "source": "npm:esbuild", + "target": "npm:@esbuild/openbsd-x64@0.27.4", + "type": "static" + }, + { + "source": "npm:esbuild", + "target": "npm:@esbuild/openharmony-arm64@0.27.4", + "type": "static" + }, + { + "source": "npm:esbuild", + "target": "npm:@esbuild/sunos-x64@0.27.4", + "type": "static" + }, + { + "source": "npm:esbuild", + "target": "npm:@esbuild/win32-arm64@0.27.4", + "type": "static" + }, + { + "source": "npm:esbuild", + "target": "npm:@esbuild/win32-ia32@0.27.4", + "type": "static" + }, + { + "source": "npm:esbuild", + "target": "npm:@esbuild/win32-x64@0.27.4", + "type": "static" + } + ], + "npm:escodegen": [ + { + "source": "npm:escodegen", + "target": "npm:esprima", + "type": "static" + }, + { + "source": "npm:escodegen", + "target": "npm:estraverse", + "type": "static" + }, + { + "source": "npm:escodegen", + "target": "npm:esutils", + "type": "static" + }, + { + "source": "npm:escodegen", + "target": "npm:source-map", + "type": "static" + } + ], + "npm:eslint-config-prettier": [ + { + "source": "npm:eslint-config-prettier", + "target": "npm:eslint", + "type": "static" + } + ], + "npm:eslint-plugin-prettier": [ + { + "source": "npm:eslint-plugin-prettier", + "target": "npm:eslint", + "type": "static" + }, + { + "source": "npm:eslint-plugin-prettier", + "target": "npm:prettier", + "type": "static" + }, + { + "source": "npm:eslint-plugin-prettier", + "target": "npm:prettier-linter-helpers", + "type": "static" + }, + { + "source": "npm:eslint-plugin-prettier", + "target": "npm:synckit", + "type": "static" + }, + { + "source": "npm:eslint-plugin-prettier", + "target": "npm:@types/eslint", + "type": "static" + }, + { + "source": "npm:eslint-plugin-prettier", + "target": "npm:eslint-config-prettier", + "type": "static" + } + ], + "npm:eslint-plugin-react": [ + { + "source": "npm:eslint-plugin-react", + "target": "npm:array-includes", + "type": "static" + }, + { + "source": "npm:eslint-plugin-react", + "target": "npm:array.prototype.findlast", + "type": "static" + }, + { + "source": "npm:eslint-plugin-react", + "target": "npm:array.prototype.flatmap", + "type": "static" + }, + { + "source": "npm:eslint-plugin-react", + "target": "npm:array.prototype.tosorted", + "type": "static" + }, + { + "source": "npm:eslint-plugin-react", + "target": "npm:doctrine", + "type": "static" + }, + { + "source": "npm:eslint-plugin-react", + "target": "npm:es-iterator-helpers", + "type": "static" + }, + { + "source": "npm:eslint-plugin-react", + "target": "npm:eslint", + "type": "static" + }, + { + "source": "npm:eslint-plugin-react", + "target": "npm:estraverse", + "type": "static" + }, + { + "source": "npm:eslint-plugin-react", + "target": "npm:hasown", + "type": "static" + }, + { + "source": "npm:eslint-plugin-react", + "target": "npm:jsx-ast-utils", + "type": "static" + }, + { + "source": "npm:eslint-plugin-react", + "target": "npm:minimatch", + "type": "static" + }, + { + "source": "npm:eslint-plugin-react", + "target": "npm:object.entries", + "type": "static" + }, + { + "source": "npm:eslint-plugin-react", + "target": "npm:object.fromentries", + "type": "static" + }, + { + "source": "npm:eslint-plugin-react", + "target": "npm:object.values", + "type": "static" + }, + { + "source": "npm:eslint-plugin-react", + "target": "npm:prop-types", + "type": "static" + }, + { + "source": "npm:eslint-plugin-react", + "target": "npm:resolve", + "type": "static" + }, + { + "source": "npm:eslint-plugin-react", + "target": "npm:semver", + "type": "static" + }, + { + "source": "npm:eslint-plugin-react", + "target": "npm:string.prototype.matchall", + "type": "static" + }, + { + "source": "npm:eslint-plugin-react", + "target": "npm:string.prototype.repeat", + "type": "static" + } + ], + "npm:eslint-plugin-solid": [ + { + "source": "npm:eslint-plugin-solid", + "target": "npm:@typescript-eslint/utils", + "type": "static" + }, + { + "source": "npm:eslint-plugin-solid", + "target": "npm:eslint", + "type": "static" + }, + { + "source": "npm:eslint-plugin-solid", + "target": "npm:estraverse", + "type": "static" + }, + { + "source": "npm:eslint-plugin-solid", + "target": "npm:is-html", + "type": "static" + }, + { + "source": "npm:eslint-plugin-solid", + "target": "npm:kebab-case", + "type": "static" + }, + { + "source": "npm:eslint-plugin-solid", + "target": "npm:known-css-properties", + "type": "static" + }, + { + "source": "npm:eslint-plugin-solid", + "target": "npm:style-to-object", + "type": "static" + }, + { + "source": "npm:eslint-plugin-solid", + "target": "npm:typescript", + "type": "static" + } + ], + "npm:eslint-plugin-vue": [ + { + "source": "npm:eslint-plugin-vue", + "target": "npm:@eslint-community/eslint-utils", + "type": "static" + }, + { + "source": "npm:eslint-plugin-vue", + "target": "npm:eslint", + "type": "static" + }, + { + "source": "npm:eslint-plugin-vue", + "target": "npm:natural-compare", + "type": "static" + }, + { + "source": "npm:eslint-plugin-vue", + "target": "npm:nth-check", + "type": "static" + }, + { + "source": "npm:eslint-plugin-vue", + "target": "npm:postcss-selector-parser", + "type": "static" + }, + { + "source": "npm:eslint-plugin-vue", + "target": "npm:semver@7.7.4", + "type": "static" + }, + { + "source": "npm:eslint-plugin-vue", + "target": "npm:vue-eslint-parser", + "type": "static" + }, + { + "source": "npm:eslint-plugin-vue", + "target": "npm:xml-name-validator", + "type": "static" + }, + { + "source": "npm:eslint-plugin-vue", + "target": "npm:@typescript-eslint/parser", + "type": "static" + } + ], + "npm:eslint-scope": [ + { + "source": "npm:eslint-scope", + "target": "npm:esrecurse", + "type": "static" + }, + { + "source": "npm:eslint-scope", + "target": "npm:estraverse", + "type": "static" + } + ], + "npm:eslint": [ + { + "source": "npm:eslint", + "target": "npm:@eslint-community/eslint-utils", + "type": "static" + }, + { + "source": "npm:eslint", + "target": "npm:@eslint-community/regexpp", + "type": "static" + }, + { + "source": "npm:eslint", + "target": "npm:@eslint/config-array", + "type": "static" + }, + { + "source": "npm:eslint", + "target": "npm:@eslint/config-helpers", + "type": "static" + }, + { + "source": "npm:eslint", + "target": "npm:@eslint/core", + "type": "static" + }, + { + "source": "npm:eslint", + "target": "npm:@eslint/eslintrc", + "type": "static" + }, + { + "source": "npm:eslint", + "target": "npm:@eslint/js", + "type": "static" + }, + { + "source": "npm:eslint", + "target": "npm:@eslint/plugin-kit", + "type": "static" + }, + { + "source": "npm:eslint", + "target": "npm:@humanfs/node", + "type": "static" + }, + { + "source": "npm:eslint", + "target": "npm:@humanwhocodes/module-importer", + "type": "static" + }, + { + "source": "npm:eslint", + "target": "npm:@humanwhocodes/retry", + "type": "static" + }, + { + "source": "npm:eslint", + "target": "npm:@types/estree", + "type": "static" + }, + { + "source": "npm:eslint", + "target": "npm:ajv", + "type": "static" + }, + { + "source": "npm:eslint", + "target": "npm:chalk", + "type": "static" + }, + { + "source": "npm:eslint", + "target": "npm:cross-spawn", + "type": "static" + }, + { + "source": "npm:eslint", + "target": "npm:debug", + "type": "static" + }, + { + "source": "npm:eslint", + "target": "npm:escape-string-regexp", + "type": "static" + }, + { + "source": "npm:eslint", + "target": "npm:eslint-scope", + "type": "static" + }, + { + "source": "npm:eslint", + "target": "npm:eslint-visitor-keys", + "type": "static" + }, + { + "source": "npm:eslint", + "target": "npm:espree@10.4.0", + "type": "static" + }, + { + "source": "npm:eslint", + "target": "npm:esquery", + "type": "static" + }, + { + "source": "npm:eslint", + "target": "npm:esutils", + "type": "static" + }, + { + "source": "npm:eslint", + "target": "npm:fast-deep-equal", + "type": "static" + }, + { + "source": "npm:eslint", + "target": "npm:file-entry-cache", + "type": "static" + }, + { + "source": "npm:eslint", + "target": "npm:find-up", + "type": "static" + }, + { + "source": "npm:eslint", + "target": "npm:glob-parent", + "type": "static" + }, + { + "source": "npm:eslint", + "target": "npm:ignore", + "type": "static" + }, + { + "source": "npm:eslint", + "target": "npm:imurmurhash", + "type": "static" + }, + { + "source": "npm:eslint", + "target": "npm:is-glob", + "type": "static" + }, + { + "source": "npm:eslint", + "target": "npm:json-stable-stringify-without-jsonify", + "type": "static" + }, + { + "source": "npm:eslint", + "target": "npm:lodash.merge", + "type": "static" + }, + { + "source": "npm:eslint", + "target": "npm:minimatch", + "type": "static" + }, + { + "source": "npm:eslint", + "target": "npm:natural-compare", + "type": "static" + }, + { + "source": "npm:eslint", + "target": "npm:optionator", + "type": "static" + }, + { + "source": "npm:eslint", + "target": "npm:jiti", + "type": "static" + } + ], + "npm:espree@10.4.0": [ + { + "source": "npm:espree@10.4.0", + "target": "npm:acorn", + "type": "static" + }, + { + "source": "npm:espree@10.4.0", + "target": "npm:acorn-jsx", + "type": "static" + }, + { + "source": "npm:espree@10.4.0", + "target": "npm:eslint-visitor-keys", + "type": "static" + } + ], + "npm:espree": [ + { + "source": "npm:espree", + "target": "npm:acorn", + "type": "static" + }, + { + "source": "npm:espree", + "target": "npm:acorn-jsx", + "type": "static" + }, + { + "source": "npm:espree", + "target": "npm:eslint-visitor-keys@5.0.1", + "type": "static" + } + ], + "npm:esquery": [ + { + "source": "npm:esquery", + "target": "npm:estraverse", + "type": "static" + } + ], + "npm:esrecurse": [ + { + "source": "npm:esrecurse", + "target": "npm:estraverse", + "type": "static" + } + ], + "npm:estree-walker": [ + { + "source": "npm:estree-walker", + "target": "npm:@types/estree", + "type": "static" + } + ], + "npm:events-universal": [ + { + "source": "npm:events-universal", + "target": "npm:bare-events", + "type": "static" + } + ], + "npm:execa": [ + { + "source": "npm:execa", + "target": "npm:@sindresorhus/merge-streams", + "type": "static" + }, + { + "source": "npm:execa", + "target": "npm:cross-spawn", + "type": "static" + }, + { + "source": "npm:execa", + "target": "npm:figures", + "type": "static" + }, + { + "source": "npm:execa", + "target": "npm:get-stream", + "type": "static" + }, + { + "source": "npm:execa", + "target": "npm:human-signals", + "type": "static" + }, + { + "source": "npm:execa", + "target": "npm:is-plain-obj", + "type": "static" + }, + { + "source": "npm:execa", + "target": "npm:is-stream", + "type": "static" + }, + { + "source": "npm:execa", + "target": "npm:npm-run-path", + "type": "static" + }, + { + "source": "npm:execa", + "target": "npm:pretty-ms", + "type": "static" + }, + { + "source": "npm:execa", + "target": "npm:signal-exit", + "type": "static" + }, + { + "source": "npm:execa", + "target": "npm:strip-final-newline", + "type": "static" + }, + { + "source": "npm:execa", + "target": "npm:yoctocolors", + "type": "static" + } + ], + "npm:express": [ + { + "source": "npm:express", + "target": "npm:accepts", + "type": "static" + }, + { + "source": "npm:express", + "target": "npm:body-parser", + "type": "static" + }, + { + "source": "npm:express", + "target": "npm:content-disposition", + "type": "static" + }, + { + "source": "npm:express", + "target": "npm:content-type", + "type": "static" + }, + { + "source": "npm:express", + "target": "npm:cookie", + "type": "static" + }, + { + "source": "npm:express", + "target": "npm:cookie-signature", + "type": "static" + }, + { + "source": "npm:express", + "target": "npm:debug", + "type": "static" + }, + { + "source": "npm:express", + "target": "npm:depd", + "type": "static" + }, + { + "source": "npm:express", + "target": "npm:encodeurl", + "type": "static" + }, + { + "source": "npm:express", + "target": "npm:escape-html", + "type": "static" + }, + { + "source": "npm:express", + "target": "npm:etag", + "type": "static" + }, + { + "source": "npm:express", + "target": "npm:finalhandler", + "type": "static" + }, + { + "source": "npm:express", + "target": "npm:fresh", + "type": "static" + }, + { + "source": "npm:express", + "target": "npm:http-errors", + "type": "static" + }, + { + "source": "npm:express", + "target": "npm:merge-descriptors", + "type": "static" + }, + { + "source": "npm:express", + "target": "npm:mime-types", + "type": "static" + }, + { + "source": "npm:express", + "target": "npm:on-finished", + "type": "static" + }, + { + "source": "npm:express", + "target": "npm:once", + "type": "static" + }, + { + "source": "npm:express", + "target": "npm:parseurl", + "type": "static" + }, + { + "source": "npm:express", + "target": "npm:proxy-addr", + "type": "static" + }, + { + "source": "npm:express", + "target": "npm:qs", + "type": "static" + }, + { + "source": "npm:express", + "target": "npm:range-parser", + "type": "static" + }, + { + "source": "npm:express", + "target": "npm:router", + "type": "static" + }, + { + "source": "npm:express", + "target": "npm:send", + "type": "static" + }, + { + "source": "npm:express", + "target": "npm:serve-static", + "type": "static" + }, + { + "source": "npm:express", + "target": "npm:statuses", + "type": "static" + }, + { + "source": "npm:express", + "target": "npm:type-is", + "type": "static" + }, + { + "source": "npm:express", + "target": "npm:vary", + "type": "static" + } + ], + "npm:extract-zip": [ + { + "source": "npm:extract-zip", + "target": "npm:debug", + "type": "static" + }, + { + "source": "npm:extract-zip", + "target": "npm:get-stream@5.2.0", + "type": "static" + }, + { + "source": "npm:extract-zip", + "target": "npm:yauzl", + "type": "static" + }, + { + "source": "npm:extract-zip", + "target": "npm:@types/yauzl", + "type": "static" + } + ], + "npm:fast-check": [ + { + "source": "npm:fast-check", + "target": "npm:pure-rand", + "type": "static" + } + ], + "npm:fast-glob": [ + { + "source": "npm:fast-glob", + "target": "npm:@nodelib/fs.stat", + "type": "static" + }, + { + "source": "npm:fast-glob", + "target": "npm:@nodelib/fs.walk", + "type": "static" + }, + { + "source": "npm:fast-glob", + "target": "npm:glob-parent@5.1.2", + "type": "static" + }, + { + "source": "npm:fast-glob", + "target": "npm:merge2", + "type": "static" + }, + { + "source": "npm:fast-glob", + "target": "npm:micromatch", + "type": "static" + } + ], + "npm:fast-json-stringify": [ + { + "source": "npm:fast-json-stringify", + "target": "npm:@fastify/merge-json-schemas", + "type": "static" + }, + { + "source": "npm:fast-json-stringify", + "target": "npm:ajv@8.18.0", + "type": "static" + }, + { + "source": "npm:fast-json-stringify", + "target": "npm:ajv-formats", + "type": "static" + }, + { + "source": "npm:fast-json-stringify", + "target": "npm:fast-uri", + "type": "static" + }, + { + "source": "npm:fast-json-stringify", + "target": "npm:json-schema-ref-resolver", + "type": "static" + }, + { + "source": "npm:fast-json-stringify", + "target": "npm:rfdc", + "type": "static" + } + ], + "npm:fast-querystring": [ + { + "source": "npm:fast-querystring", + "target": "npm:fast-decode-uri-component", + "type": "static" + } + ], + "npm:fast-string-width": [ + { + "source": "npm:fast-string-width", + "target": "npm:fast-string-truncated-width", + "type": "static" + } + ], + "npm:fast-wrap-ansi": [ + { + "source": "npm:fast-wrap-ansi", + "target": "npm:fast-string-width", + "type": "static" + } + ], + "npm:fastify-raw-body": [ + { + "source": "npm:fastify-raw-body", + "target": "npm:fastify-plugin", + "type": "static" + }, + { + "source": "npm:fastify-raw-body", + "target": "npm:raw-body", + "type": "static" + }, + { + "source": "npm:fastify-raw-body", + "target": "npm:secure-json-parse", + "type": "static" + } + ], + "npm:fastify": [ + { + "source": "npm:fastify", + "target": "npm:@fastify/ajv-compiler", + "type": "static" + }, + { + "source": "npm:fastify", + "target": "npm:@fastify/error", + "type": "static" + }, + { + "source": "npm:fastify", + "target": "npm:@fastify/fast-json-stringify-compiler", + "type": "static" + }, + { + "source": "npm:fastify", + "target": "npm:@fastify/proxy-addr", + "type": "static" + }, + { + "source": "npm:fastify", + "target": "npm:abstract-logging", + "type": "static" + }, + { + "source": "npm:fastify", + "target": "npm:avvio", + "type": "static" + }, + { + "source": "npm:fastify", + "target": "npm:fast-json-stringify", + "type": "static" + }, + { + "source": "npm:fastify", + "target": "npm:find-my-way", + "type": "static" + }, + { + "source": "npm:fastify", + "target": "npm:light-my-request", + "type": "static" + }, + { + "source": "npm:fastify", + "target": "npm:pino", + "type": "static" + }, + { + "source": "npm:fastify", + "target": "npm:process-warning", + "type": "static" + }, + { + "source": "npm:fastify", + "target": "npm:rfdc", + "type": "static" + }, + { + "source": "npm:fastify", + "target": "npm:secure-json-parse@4.1.0", + "type": "static" + }, + { + "source": "npm:fastify", + "target": "npm:semver@7.7.4", + "type": "static" + }, + { + "source": "npm:fastify", + "target": "npm:toad-cache", + "type": "static" + } + ], + "npm:fastq": [ + { + "source": "npm:fastq", + "target": "npm:reusify", + "type": "static" + } + ], + "npm:fd-package-json": [ + { + "source": "npm:fd-package-json", + "target": "npm:walk-up-path", + "type": "static" + } + ], + "npm:fd-slicer": [ + { + "source": "npm:fd-slicer", + "target": "npm:pend", + "type": "static" + } + ], + "npm:fdir": [ + { + "source": "npm:fdir", + "target": "npm:picomatch", + "type": "static" + } + ], + "npm:fetch-blob": [ + { + "source": "npm:fetch-blob", + "target": "npm:node-domexception", + "type": "static" + }, + { + "source": "npm:fetch-blob", + "target": "npm:web-streams-polyfill", + "type": "static" + } + ], + "npm:figures@3.2.0": [ + { + "source": "npm:figures@3.2.0", + "target": "npm:escape-string-regexp@1.0.5", + "type": "static" + } + ], + "npm:figures": [ + { + "source": "npm:figures", + "target": "npm:is-unicode-supported", + "type": "static" + } + ], + "npm:file-entry-cache": [ + { + "source": "npm:file-entry-cache", + "target": "npm:flat-cache", + "type": "static" + } + ], + "npm:filelist": [ + { + "source": "npm:filelist", + "target": "npm:minimatch@5.1.9", + "type": "static" + } + ], + "npm:fill-range": [ + { + "source": "npm:fill-range", + "target": "npm:to-regex-range", + "type": "static" + } + ], + "npm:finalhandler": [ + { + "source": "npm:finalhandler", + "target": "npm:debug", + "type": "static" + }, + { + "source": "npm:finalhandler", + "target": "npm:encodeurl", + "type": "static" + }, + { + "source": "npm:finalhandler", + "target": "npm:escape-html", + "type": "static" + }, + { + "source": "npm:finalhandler", + "target": "npm:on-finished", + "type": "static" + }, + { + "source": "npm:finalhandler", + "target": "npm:parseurl", + "type": "static" + }, + { + "source": "npm:finalhandler", + "target": "npm:statuses", + "type": "static" + } + ], + "npm:find-babel-config": [ + { + "source": "npm:find-babel-config", + "target": "npm:json5", + "type": "static" + } + ], + "npm:find-my-way": [ + { + "source": "npm:find-my-way", + "target": "npm:fast-deep-equal", + "type": "static" + }, + { + "source": "npm:find-my-way", + "target": "npm:fast-querystring", + "type": "static" + }, + { + "source": "npm:find-my-way", + "target": "npm:safe-regex2", + "type": "static" + } + ], + "npm:find-up@3.0.0": [ + { + "source": "npm:find-up@3.0.0", + "target": "npm:locate-path@3.0.0", + "type": "static" + } + ], + "npm:find-up": [ + { + "source": "npm:find-up", + "target": "npm:locate-path", + "type": "static" + }, + { + "source": "npm:find-up", + "target": "npm:path-exists", + "type": "static" + } + ], + "npm:flat-cache": [ + { + "source": "npm:flat-cache", + "target": "npm:flatted", + "type": "static" + }, + { + "source": "npm:flat-cache", + "target": "npm:keyv", + "type": "static" + } + ], + "npm:for-each": [ + { + "source": "npm:for-each", + "target": "npm:is-callable", + "type": "static" + } + ], + "npm:foreground-child": [ + { + "source": "npm:foreground-child", + "target": "npm:cross-spawn", + "type": "static" + }, + { + "source": "npm:foreground-child", + "target": "npm:signal-exit", + "type": "static" + } + ], + "npm:form-data": [ + { + "source": "npm:form-data", + "target": "npm:asynckit", + "type": "static" + }, + { + "source": "npm:form-data", + "target": "npm:combined-stream", + "type": "static" + }, + { + "source": "npm:form-data", + "target": "npm:es-set-tostringtag", + "type": "static" + }, + { + "source": "npm:form-data", + "target": "npm:hasown", + "type": "static" + }, + { + "source": "npm:form-data", + "target": "npm:mime-types@2.1.35", + "type": "static" + } + ], + "npm:formatly": [ + { + "source": "npm:formatly", + "target": "npm:fd-package-json", + "type": "static" + } + ], + "npm:formdata-polyfill": [ + { + "source": "npm:formdata-polyfill", + "target": "npm:fetch-blob", + "type": "static" + } + ], + "npm:front-matter": [ + { + "source": "npm:front-matter", + "target": "npm:js-yaml@3.14.2", + "type": "static" + } + ], + "npm:fs-minipass": [ + { + "source": "npm:fs-minipass", + "target": "npm:minipass", + "type": "static" + } + ], + "npm:function.prototype.name": [ + { + "source": "npm:function.prototype.name", + "target": "npm:call-bind", + "type": "static" + }, + { + "source": "npm:function.prototype.name", + "target": "npm:call-bound", + "type": "static" + }, + { + "source": "npm:function.prototype.name", + "target": "npm:define-properties", + "type": "static" + }, + { + "source": "npm:function.prototype.name", + "target": "npm:functions-have-names", + "type": "static" + }, + { + "source": "npm:function.prototype.name", + "target": "npm:hasown", + "type": "static" + }, + { + "source": "npm:function.prototype.name", + "target": "npm:is-callable", + "type": "static" + } + ], + "npm:generate-function": [ + { + "source": "npm:generate-function", + "target": "npm:is-property", + "type": "static" + } + ], + "npm:get-intrinsic": [ + { + "source": "npm:get-intrinsic", + "target": "npm:call-bind-apply-helpers", + "type": "static" + }, + { + "source": "npm:get-intrinsic", + "target": "npm:es-define-property", + "type": "static" + }, + { + "source": "npm:get-intrinsic", + "target": "npm:es-errors", + "type": "static" + }, + { + "source": "npm:get-intrinsic", + "target": "npm:es-object-atoms", + "type": "static" + }, + { + "source": "npm:get-intrinsic", + "target": "npm:function-bind", + "type": "static" + }, + { + "source": "npm:get-intrinsic", + "target": "npm:get-proto", + "type": "static" + }, + { + "source": "npm:get-intrinsic", + "target": "npm:gopd", + "type": "static" + }, + { + "source": "npm:get-intrinsic", + "target": "npm:has-symbols", + "type": "static" + }, + { + "source": "npm:get-intrinsic", + "target": "npm:hasown", + "type": "static" + }, + { + "source": "npm:get-intrinsic", + "target": "npm:math-intrinsics", + "type": "static" + } + ], + "npm:get-proto": [ + { + "source": "npm:get-proto", + "target": "npm:dunder-proto", + "type": "static" + }, + { + "source": "npm:get-proto", + "target": "npm:es-object-atoms", + "type": "static" + } + ], + "npm:get-stream@5.2.0": [ + { + "source": "npm:get-stream@5.2.0", + "target": "npm:pump", + "type": "static" + } + ], + "npm:get-stream": [ + { + "source": "npm:get-stream", + "target": "npm:@sec-ant/readable-stream", + "type": "static" + }, + { + "source": "npm:get-stream", + "target": "npm:is-stream", + "type": "static" + } + ], + "npm:get-symbol-description": [ + { + "source": "npm:get-symbol-description", + "target": "npm:call-bound", + "type": "static" + }, + { + "source": "npm:get-symbol-description", + "target": "npm:es-errors", + "type": "static" + }, + { + "source": "npm:get-symbol-description", + "target": "npm:get-intrinsic", + "type": "static" + } + ], + "npm:get-tsconfig": [ + { + "source": "npm:get-tsconfig", + "target": "npm:resolve-pkg-maps", + "type": "static" + } + ], + "npm:get-uri": [ + { + "source": "npm:get-uri", + "target": "npm:basic-ftp", + "type": "static" + }, + { + "source": "npm:get-uri", + "target": "npm:data-uri-to-buffer@6.0.2", + "type": "static" + }, + { + "source": "npm:get-uri", + "target": "npm:debug", + "type": "static" + } + ], + "npm:giget": [ + { + "source": "npm:giget", + "target": "npm:citty@0.1.6", + "type": "static" + }, + { + "source": "npm:giget", + "target": "npm:consola", + "type": "static" + }, + { + "source": "npm:giget", + "target": "npm:defu", + "type": "static" + }, + { + "source": "npm:giget", + "target": "npm:node-fetch-native", + "type": "static" + }, + { + "source": "npm:giget", + "target": "npm:nypm", + "type": "static" + }, + { + "source": "npm:giget", + "target": "npm:pathe", + "type": "static" + } + ], + "npm:glob-parent@5.1.2": [ + { + "source": "npm:glob-parent@5.1.2", + "target": "npm:is-glob", + "type": "static" + } + ], + "npm:glob-parent": [ + { + "source": "npm:glob-parent", + "target": "npm:is-glob", + "type": "static" + } + ], + "npm:glob@10.5.0": [ + { + "source": "npm:glob@10.5.0", + "target": "npm:foreground-child", + "type": "static" + }, + { + "source": "npm:glob@10.5.0", + "target": "npm:jackspeak@3.4.3", + "type": "static" + }, + { + "source": "npm:glob@10.5.0", + "target": "npm:minimatch@9.0.5", + "type": "static" + }, + { + "source": "npm:glob@10.5.0", + "target": "npm:minipass", + "type": "static" + }, + { + "source": "npm:glob@10.5.0", + "target": "npm:package-json-from-dist", + "type": "static" + }, + { + "source": "npm:glob@10.5.0", + "target": "npm:path-scurry@1.11.1", + "type": "static" + } + ], + "npm:glob": [ + { + "source": "npm:glob", + "target": "npm:minimatch@10.2.3", + "type": "static" + }, + { + "source": "npm:glob", + "target": "npm:minipass", + "type": "static" + }, + { + "source": "npm:glob", + "target": "npm:path-scurry", + "type": "static" + } + ], + "npm:glob@9.3.5": [ + { + "source": "npm:glob@9.3.5", + "target": "npm:fs.realpath", + "type": "static" + }, + { + "source": "npm:glob@9.3.5", + "target": "npm:minimatch@8.0.4", + "type": "static" + }, + { + "source": "npm:glob@9.3.5", + "target": "npm:minipass@4.2.8", + "type": "static" + }, + { + "source": "npm:glob@9.3.5", + "target": "npm:path-scurry@1.11.1", + "type": "static" + } + ], + "npm:globalthis": [ + { + "source": "npm:globalthis", + "target": "npm:define-properties", + "type": "static" + }, + { + "source": "npm:globalthis", + "target": "npm:gopd", + "type": "static" + } + ], + "npm:globby": [ + { + "source": "npm:globby", + "target": "npm:@sindresorhus/merge-streams", + "type": "static" + }, + { + "source": "npm:globby", + "target": "npm:fast-glob", + "type": "static" + }, + { + "source": "npm:globby", + "target": "npm:ignore@7.0.5", + "type": "static" + }, + { + "source": "npm:globby", + "target": "npm:is-path-inside", + "type": "static" + }, + { + "source": "npm:globby", + "target": "npm:slash", + "type": "static" + }, + { + "source": "npm:globby", + "target": "npm:unicorn-magic", + "type": "static" + } + ], + "npm:got": [ + { + "source": "npm:got", + "target": "npm:@sindresorhus/is", + "type": "static" + }, + { + "source": "npm:got", + "target": "npm:@szmarczak/http-timer", + "type": "static" + }, + { + "source": "npm:got", + "target": "npm:@types/cacheable-request", + "type": "static" + }, + { + "source": "npm:got", + "target": "npm:@types/responselike", + "type": "static" + }, + { + "source": "npm:got", + "target": "npm:cacheable-lookup", + "type": "static" + }, + { + "source": "npm:got", + "target": "npm:cacheable-request", + "type": "static" + }, + { + "source": "npm:got", + "target": "npm:decompress-response", + "type": "static" + }, + { + "source": "npm:got", + "target": "npm:http2-wrapper", + "type": "static" + }, + { + "source": "npm:got", + "target": "npm:lowercase-keys", + "type": "static" + }, + { + "source": "npm:got", + "target": "npm:p-cancelable", + "type": "static" + }, + { + "source": "npm:got", + "target": "npm:responselike", + "type": "static" + } + ], + "npm:h3": [ + { + "source": "npm:h3", + "target": "npm:cookie-es", + "type": "static" + }, + { + "source": "npm:h3", + "target": "npm:crossws", + "type": "static" + }, + { + "source": "npm:h3", + "target": "npm:defu", + "type": "static" + }, + { + "source": "npm:h3", + "target": "npm:destr", + "type": "static" + }, + { + "source": "npm:h3", + "target": "npm:iron-webcrypto", + "type": "static" + }, + { + "source": "npm:h3", + "target": "npm:node-mock-http", + "type": "static" + }, + { + "source": "npm:h3", + "target": "npm:radix3", + "type": "static" + }, + { + "source": "npm:h3", + "target": "npm:ufo", + "type": "static" + }, + { + "source": "npm:h3", + "target": "npm:uncrypto", + "type": "static" + } + ], + "npm:has-property-descriptors": [ + { + "source": "npm:has-property-descriptors", + "target": "npm:es-define-property", + "type": "static" + } + ], + "npm:has-proto": [ + { + "source": "npm:has-proto", + "target": "npm:dunder-proto", + "type": "static" + } + ], + "npm:has-tostringtag": [ + { + "source": "npm:has-tostringtag", + "target": "npm:has-symbols", + "type": "static" + } + ], + "npm:hasown": [ + { + "source": "npm:hasown", + "target": "npm:function-bind", + "type": "static" + } + ], + "npm:html-encoding-sniffer": [ + { + "source": "npm:html-encoding-sniffer", + "target": "npm:whatwg-encoding", + "type": "static" + } + ], + "npm:http-errors": [ + { + "source": "npm:http-errors", + "target": "npm:depd", + "type": "static" + }, + { + "source": "npm:http-errors", + "target": "npm:inherits", + "type": "static" + }, + { + "source": "npm:http-errors", + "target": "npm:setprototypeof", + "type": "static" + }, + { + "source": "npm:http-errors", + "target": "npm:statuses", + "type": "static" + }, + { + "source": "npm:http-errors", + "target": "npm:toidentifier", + "type": "static" + } + ], + "npm:http-proxy-agent": [ + { + "source": "npm:http-proxy-agent", + "target": "npm:agent-base", + "type": "static" + }, + { + "source": "npm:http-proxy-agent", + "target": "npm:debug", + "type": "static" + } + ], + "npm:http-proxy": [ + { + "source": "npm:http-proxy", + "target": "npm:eventemitter3", + "type": "static" + }, + { + "source": "npm:http-proxy", + "target": "npm:follow-redirects", + "type": "static" + }, + { + "source": "npm:http-proxy", + "target": "npm:requires-port", + "type": "static" + } + ], + "npm:http-server": [ + { + "source": "npm:http-server", + "target": "npm:basic-auth", + "type": "static" + }, + { + "source": "npm:http-server", + "target": "npm:chalk", + "type": "static" + }, + { + "source": "npm:http-server", + "target": "npm:corser", + "type": "static" + }, + { + "source": "npm:http-server", + "target": "npm:he", + "type": "static" + }, + { + "source": "npm:http-server", + "target": "npm:html-encoding-sniffer", + "type": "static" + }, + { + "source": "npm:http-server", + "target": "npm:http-proxy", + "type": "static" + }, + { + "source": "npm:http-server", + "target": "npm:mime", + "type": "static" + }, + { + "source": "npm:http-server", + "target": "npm:minimist", + "type": "static" + }, + { + "source": "npm:http-server", + "target": "npm:opener", + "type": "static" + }, + { + "source": "npm:http-server", + "target": "npm:portfinder", + "type": "static" + }, + { + "source": "npm:http-server", + "target": "npm:secure-compare", + "type": "static" + }, + { + "source": "npm:http-server", + "target": "npm:union", + "type": "static" + }, + { + "source": "npm:http-server", + "target": "npm:url-join", + "type": "static" + } + ], + "npm:http2-wrapper": [ + { + "source": "npm:http2-wrapper", + "target": "npm:quick-lru", + "type": "static" + }, + { + "source": "npm:http2-wrapper", + "target": "npm:resolve-alpn", + "type": "static" + } + ], + "npm:https-proxy-agent": [ + { + "source": "npm:https-proxy-agent", + "target": "npm:agent-base@6.0.2", + "type": "static" + }, + { + "source": "npm:https-proxy-agent", + "target": "npm:debug", + "type": "static" + } + ], + "npm:https-proxy-agent@7.0.6": [ + { + "source": "npm:https-proxy-agent@7.0.6", + "target": "npm:agent-base", + "type": "static" + }, + { + "source": "npm:https-proxy-agent@7.0.6", + "target": "npm:debug", + "type": "static" + } + ], + "npm:iconv-lite": [ + { + "source": "npm:iconv-lite", + "target": "npm:safer-buffer", + "type": "static" + } + ], + "npm:iconv-lite@0.7.2": [ + { + "source": "npm:iconv-lite@0.7.2", + "target": "npm:safer-buffer", + "type": "static" + } + ], + "npm:import-fresh": [ + { + "source": "npm:import-fresh", + "target": "npm:parent-module", + "type": "static" + }, + { + "source": "npm:import-fresh", + "target": "npm:resolve-from@4.0.0", + "type": "static" + } + ], + "npm:internal-slot": [ + { + "source": "npm:internal-slot", + "target": "npm:es-errors", + "type": "static" + }, + { + "source": "npm:internal-slot", + "target": "npm:hasown", + "type": "static" + }, + { + "source": "npm:internal-slot", + "target": "npm:side-channel", + "type": "static" + } + ], + "npm:is-array-buffer": [ + { + "source": "npm:is-array-buffer", + "target": "npm:call-bind", + "type": "static" + }, + { + "source": "npm:is-array-buffer", + "target": "npm:call-bound", + "type": "static" + }, + { + "source": "npm:is-array-buffer", + "target": "npm:get-intrinsic", + "type": "static" + } + ], + "npm:is-async-function": [ + { + "source": "npm:is-async-function", + "target": "npm:async-function", + "type": "static" + }, + { + "source": "npm:is-async-function", + "target": "npm:call-bound", + "type": "static" + }, + { + "source": "npm:is-async-function", + "target": "npm:get-proto", + "type": "static" + }, + { + "source": "npm:is-async-function", + "target": "npm:has-tostringtag", + "type": "static" + }, + { + "source": "npm:is-async-function", + "target": "npm:safe-regex-test", + "type": "static" + } + ], + "npm:is-bigint": [ + { + "source": "npm:is-bigint", + "target": "npm:has-bigints", + "type": "static" + } + ], + "npm:is-boolean-object": [ + { + "source": "npm:is-boolean-object", + "target": "npm:call-bound", + "type": "static" + }, + { + "source": "npm:is-boolean-object", + "target": "npm:has-tostringtag", + "type": "static" + } + ], + "npm:is-core-module": [ + { + "source": "npm:is-core-module", + "target": "npm:hasown", + "type": "static" + } + ], + "npm:is-data-view": [ + { + "source": "npm:is-data-view", + "target": "npm:call-bound", + "type": "static" + }, + { + "source": "npm:is-data-view", + "target": "npm:get-intrinsic", + "type": "static" + }, + { + "source": "npm:is-data-view", + "target": "npm:is-typed-array", + "type": "static" + } + ], + "npm:is-date-object": [ + { + "source": "npm:is-date-object", + "target": "npm:call-bound", + "type": "static" + }, + { + "source": "npm:is-date-object", + "target": "npm:has-tostringtag", + "type": "static" + } + ], + "npm:is-finalizationregistry": [ + { + "source": "npm:is-finalizationregistry", + "target": "npm:call-bound", + "type": "static" + } + ], + "npm:is-generator-function": [ + { + "source": "npm:is-generator-function", + "target": "npm:call-bound", + "type": "static" + }, + { + "source": "npm:is-generator-function", + "target": "npm:generator-function", + "type": "static" + }, + { + "source": "npm:is-generator-function", + "target": "npm:get-proto", + "type": "static" + }, + { + "source": "npm:is-generator-function", + "target": "npm:has-tostringtag", + "type": "static" + }, + { + "source": "npm:is-generator-function", + "target": "npm:safe-regex-test", + "type": "static" + } + ], + "npm:is-glob": [ + { + "source": "npm:is-glob", + "target": "npm:is-extglob", + "type": "static" + } + ], + "npm:is-html": [ + { + "source": "npm:is-html", + "target": "npm:html-tags", + "type": "static" + } + ], + "npm:is-number-object": [ + { + "source": "npm:is-number-object", + "target": "npm:call-bound", + "type": "static" + }, + { + "source": "npm:is-number-object", + "target": "npm:has-tostringtag", + "type": "static" + } + ], + "npm:is-regex": [ + { + "source": "npm:is-regex", + "target": "npm:call-bound", + "type": "static" + }, + { + "source": "npm:is-regex", + "target": "npm:gopd", + "type": "static" + }, + { + "source": "npm:is-regex", + "target": "npm:has-tostringtag", + "type": "static" + }, + { + "source": "npm:is-regex", + "target": "npm:hasown", + "type": "static" + } + ], + "npm:is-shared-array-buffer": [ + { + "source": "npm:is-shared-array-buffer", + "target": "npm:call-bound", + "type": "static" + } + ], + "npm:is-string": [ + { + "source": "npm:is-string", + "target": "npm:call-bound", + "type": "static" + }, + { + "source": "npm:is-string", + "target": "npm:has-tostringtag", + "type": "static" + } + ], + "npm:is-symbol": [ + { + "source": "npm:is-symbol", + "target": "npm:call-bound", + "type": "static" + }, + { + "source": "npm:is-symbol", + "target": "npm:has-symbols", + "type": "static" + }, + { + "source": "npm:is-symbol", + "target": "npm:safe-regex-test", + "type": "static" + } + ], + "npm:is-typed-array": [ + { + "source": "npm:is-typed-array", + "target": "npm:which-typed-array", + "type": "static" + } + ], + "npm:is-url-http": [ + { + "source": "npm:is-url-http", + "target": "npm:url-http", + "type": "static" + } + ], + "npm:is-weakref": [ + { + "source": "npm:is-weakref", + "target": "npm:call-bound", + "type": "static" + } + ], + "npm:is-weakset": [ + { + "source": "npm:is-weakset", + "target": "npm:call-bound", + "type": "static" + }, + { + "source": "npm:is-weakset", + "target": "npm:get-intrinsic", + "type": "static" + } + ], + "npm:is-wsl": [ + { + "source": "npm:is-wsl", + "target": "npm:is-docker", + "type": "static" + } + ], + "npm:iterator.prototype": [ + { + "source": "npm:iterator.prototype", + "target": "npm:define-data-property", + "type": "static" + }, + { + "source": "npm:iterator.prototype", + "target": "npm:es-object-atoms", + "type": "static" + }, + { + "source": "npm:iterator.prototype", + "target": "npm:get-intrinsic", + "type": "static" + }, + { + "source": "npm:iterator.prototype", + "target": "npm:get-proto", + "type": "static" + }, + { + "source": "npm:iterator.prototype", + "target": "npm:has-symbols", + "type": "static" + }, + { + "source": "npm:iterator.prototype", + "target": "npm:set-function-name", + "type": "static" + } + ], + "npm:jackspeak@3.4.3": [ + { + "source": "npm:jackspeak@3.4.3", + "target": "npm:@isaacs/cliui@8.0.2", + "type": "static" + }, + { + "source": "npm:jackspeak@3.4.3", + "target": "npm:@pkgjs/parseargs", + "type": "static" + } + ], + "npm:jackspeak": [ + { + "source": "npm:jackspeak", + "target": "npm:@isaacs/cliui", + "type": "static" + } + ], + "npm:jake": [ + { + "source": "npm:jake", + "target": "npm:async", + "type": "static" + }, + { + "source": "npm:jake", + "target": "npm:filelist", + "type": "static" + }, + { + "source": "npm:jake", + "target": "npm:picocolors", + "type": "static" + } + ], + "npm:jest-diff": [ + { + "source": "npm:jest-diff", + "target": "npm:@jest/diff-sequences", + "type": "static" + }, + { + "source": "npm:jest-diff", + "target": "npm:@jest/get-type", + "type": "static" + }, + { + "source": "npm:jest-diff", + "target": "npm:chalk", + "type": "static" + }, + { + "source": "npm:jest-diff", + "target": "npm:pretty-format", + "type": "static" + } + ], + "npm:js-yaml@3.14.2": [ + { + "source": "npm:js-yaml@3.14.2", + "target": "npm:argparse@1.0.10", + "type": "static" + }, + { + "source": "npm:js-yaml@3.14.2", + "target": "npm:esprima", + "type": "static" + } + ], + "npm:js-yaml": [ + { + "source": "npm:js-yaml", + "target": "npm:argparse", + "type": "static" + } + ], + "npm:json-loose": [ + { + "source": "npm:json-loose", + "target": "npm:moo", + "type": "static" + } + ], + "npm:json-schema-ref-resolver": [ + { + "source": "npm:json-schema-ref-resolver", + "target": "npm:dequal", + "type": "static" + } + ], + "npm:jsx-ast-utils": [ + { + "source": "npm:jsx-ast-utils", + "target": "npm:array-includes", + "type": "static" + }, + { + "source": "npm:jsx-ast-utils", + "target": "npm:array.prototype.flat", + "type": "static" + }, + { + "source": "npm:jsx-ast-utils", + "target": "npm:object.assign", + "type": "static" + }, + { + "source": "npm:jsx-ast-utils", + "target": "npm:object.values", + "type": "static" + } + ], + "npm:keyv": [ + { + "source": "npm:keyv", + "target": "npm:json-buffer", + "type": "static" + } + ], + "npm:knip": [ + { + "source": "npm:knip", + "target": "npm:@nodelib/fs.walk", + "type": "static" + }, + { + "source": "npm:knip", + "target": "npm:@types/node", + "type": "static" + }, + { + "source": "npm:knip", + "target": "npm:fast-glob", + "type": "static" + }, + { + "source": "npm:knip", + "target": "npm:formatly", + "type": "static" + }, + { + "source": "npm:knip", + "target": "npm:jiti", + "type": "static" + }, + { + "source": "npm:knip", + "target": "npm:minimist", + "type": "static" + }, + { + "source": "npm:knip", + "target": "npm:oxc-resolver", + "type": "static" + }, + { + "source": "npm:knip", + "target": "npm:picocolors", + "type": "static" + }, + { + "source": "npm:knip", + "target": "npm:picomatch", + "type": "static" + }, + { + "source": "npm:knip", + "target": "npm:smol-toml", + "type": "static" + }, + { + "source": "npm:knip", + "target": "npm:strip-json-comments", + "type": "static" + }, + { + "source": "npm:knip", + "target": "npm:typescript", + "type": "static" + }, + { + "source": "npm:knip", + "target": "npm:unbash", + "type": "static" + }, + { + "source": "npm:knip", + "target": "npm:yaml", + "type": "static" + }, + { + "source": "npm:knip", + "target": "npm:zod@4.3.6", + "type": "static" + } + ], + "npm:kysely-d1": [ + { + "source": "npm:kysely-d1", + "target": "npm:kysely", + "type": "static" + } + ], + "npm:levn": [ + { + "source": "npm:levn", + "target": "npm:prelude-ls", + "type": "static" + }, + { + "source": "npm:levn", + "target": "npm:type-check", + "type": "static" + } + ], + "npm:light-my-request": [ + { + "source": "npm:light-my-request", + "target": "npm:cookie@1.1.1", + "type": "static" + }, + { + "source": "npm:light-my-request", + "target": "npm:process-warning@4.0.1", + "type": "static" + }, + { + "source": "npm:light-my-request", + "target": "npm:set-cookie-parser", + "type": "static" + } + ], + "npm:lightningcss": [ + { + "source": "npm:lightningcss", + "target": "npm:detect-libc", + "type": "static" + }, + { + "source": "npm:lightningcss", + "target": "npm:lightningcss-android-arm64", + "type": "static" + }, + { + "source": "npm:lightningcss", + "target": "npm:lightningcss-darwin-arm64", + "type": "static" + }, + { + "source": "npm:lightningcss", + "target": "npm:lightningcss-darwin-x64", + "type": "static" + }, + { + "source": "npm:lightningcss", + "target": "npm:lightningcss-freebsd-x64", + "type": "static" + }, + { + "source": "npm:lightningcss", + "target": "npm:lightningcss-linux-arm-gnueabihf", + "type": "static" + }, + { + "source": "npm:lightningcss", + "target": "npm:lightningcss-linux-arm64-gnu", + "type": "static" + }, + { + "source": "npm:lightningcss", + "target": "npm:lightningcss-linux-arm64-musl", + "type": "static" + }, + { + "source": "npm:lightningcss", + "target": "npm:lightningcss-linux-x64-gnu", + "type": "static" + }, + { + "source": "npm:lightningcss", + "target": "npm:lightningcss-linux-x64-musl", + "type": "static" + }, + { + "source": "npm:lightningcss", + "target": "npm:lightningcss-win32-arm64-msvc", + "type": "static" + }, + { + "source": "npm:lightningcss", + "target": "npm:lightningcss-win32-x64-msvc", + "type": "static" + } + ], + "npm:locate-path@3.0.0": [ + { + "source": "npm:locate-path@3.0.0", + "target": "npm:p-locate@3.0.0", + "type": "static" + }, + { + "source": "npm:locate-path@3.0.0", + "target": "npm:path-exists@3.0.0", + "type": "static" + } + ], + "npm:locate-path": [ + { + "source": "npm:locate-path", + "target": "npm:p-locate", + "type": "static" + } + ], + "npm:log-symbols": [ + { + "source": "npm:log-symbols", + "target": "npm:chalk", + "type": "static" + }, + { + "source": "npm:log-symbols", + "target": "npm:is-unicode-supported@0.1.0", + "type": "static" + } + ], + "npm:loose-envify": [ + { + "source": "npm:loose-envify", + "target": "npm:js-tokens", + "type": "static" + } + ], + "npm:lru-cache": [ + { + "source": "npm:lru-cache", + "target": "npm:yallist", + "type": "static" + } + ], + "npm:lucide-react": [ + { + "source": "npm:lucide-react", + "target": "npm:react", + "type": "static" + } + ], + "npm:magic-regexp": [ + { + "source": "npm:magic-regexp", + "target": "npm:estree-walker", + "type": "static" + }, + { + "source": "npm:magic-regexp", + "target": "npm:magic-string", + "type": "static" + }, + { + "source": "npm:magic-regexp", + "target": "npm:mlly", + "type": "static" + }, + { + "source": "npm:magic-regexp", + "target": "npm:regexp-tree", + "type": "static" + }, + { + "source": "npm:magic-regexp", + "target": "npm:type-level-regexp", + "type": "static" + }, + { + "source": "npm:magic-regexp", + "target": "npm:ufo", + "type": "static" + }, + { + "source": "npm:magic-regexp", + "target": "npm:unplugin", + "type": "static" + } + ], + "npm:magic-string": [ + { + "source": "npm:magic-string", + "target": "npm:@jridgewell/sourcemap-codec", + "type": "static" + } + ], + "npm:magicast": [ + { + "source": "npm:magicast", + "target": "npm:@babel/parser", + "type": "static" + }, + { + "source": "npm:magicast", + "target": "npm:@babel/types", + "type": "static" + }, + { + "source": "npm:magicast", + "target": "npm:source-map-js", + "type": "static" + } + ], + "npm:make-fetch-happen": [ + { + "source": "npm:make-fetch-happen", + "target": "npm:@npmcli/agent", + "type": "static" + }, + { + "source": "npm:make-fetch-happen", + "target": "npm:cacache", + "type": "static" + }, + { + "source": "npm:make-fetch-happen", + "target": "npm:http-cache-semantics", + "type": "static" + }, + { + "source": "npm:make-fetch-happen", + "target": "npm:minipass", + "type": "static" + }, + { + "source": "npm:make-fetch-happen", + "target": "npm:minipass-fetch", + "type": "static" + }, + { + "source": "npm:make-fetch-happen", + "target": "npm:minipass-flush", + "type": "static" + }, + { + "source": "npm:make-fetch-happen", + "target": "npm:minipass-pipeline", + "type": "static" + }, + { + "source": "npm:make-fetch-happen", + "target": "npm:negotiator", + "type": "static" + }, + { + "source": "npm:make-fetch-happen", + "target": "npm:proc-log", + "type": "static" + }, + { + "source": "npm:make-fetch-happen", + "target": "npm:promise-retry", + "type": "static" + }, + { + "source": "npm:make-fetch-happen", + "target": "npm:ssri", + "type": "static" + } + ], + "npm:mdast-builder": [ + { + "source": "npm:mdast-builder", + "target": "npm:@types/unist", + "type": "static" + } + ], + "npm:mdast-util-from-markdown": [ + { + "source": "npm:mdast-util-from-markdown", + "target": "npm:@types/mdast", + "type": "static" + }, + { + "source": "npm:mdast-util-from-markdown", + "target": "npm:@types/unist@3.0.3", + "type": "static" + }, + { + "source": "npm:mdast-util-from-markdown", + "target": "npm:decode-named-character-reference", + "type": "static" + }, + { + "source": "npm:mdast-util-from-markdown", + "target": "npm:devlop", + "type": "static" + }, + { + "source": "npm:mdast-util-from-markdown", + "target": "npm:mdast-util-to-string", + "type": "static" + }, + { + "source": "npm:mdast-util-from-markdown", + "target": "npm:micromark", + "type": "static" + }, + { + "source": "npm:mdast-util-from-markdown", + "target": "npm:micromark-util-decode-numeric-character-reference", + "type": "static" + }, + { + "source": "npm:mdast-util-from-markdown", + "target": "npm:micromark-util-decode-string", + "type": "static" + }, + { + "source": "npm:mdast-util-from-markdown", + "target": "npm:micromark-util-normalize-identifier", + "type": "static" + }, + { + "source": "npm:mdast-util-from-markdown", + "target": "npm:micromark-util-symbol", + "type": "static" + }, + { + "source": "npm:mdast-util-from-markdown", + "target": "npm:micromark-util-types", + "type": "static" + }, + { + "source": "npm:mdast-util-from-markdown", + "target": "npm:unist-util-stringify-position", + "type": "static" + } + ], + "npm:mdast-util-phrasing": [ + { + "source": "npm:mdast-util-phrasing", + "target": "npm:@types/mdast", + "type": "static" + }, + { + "source": "npm:mdast-util-phrasing", + "target": "npm:unist-util-is", + "type": "static" + } + ], + "npm:mdast-util-to-markdown": [ + { + "source": "npm:mdast-util-to-markdown", + "target": "npm:@types/mdast", + "type": "static" + }, + { + "source": "npm:mdast-util-to-markdown", + "target": "npm:@types/unist@3.0.3", + "type": "static" + }, + { + "source": "npm:mdast-util-to-markdown", + "target": "npm:longest-streak", + "type": "static" + }, + { + "source": "npm:mdast-util-to-markdown", + "target": "npm:mdast-util-phrasing", + "type": "static" + }, + { + "source": "npm:mdast-util-to-markdown", + "target": "npm:mdast-util-to-string", + "type": "static" + }, + { + "source": "npm:mdast-util-to-markdown", + "target": "npm:micromark-util-classify-character", + "type": "static" + }, + { + "source": "npm:mdast-util-to-markdown", + "target": "npm:micromark-util-decode-string", + "type": "static" + }, + { + "source": "npm:mdast-util-to-markdown", + "target": "npm:unist-util-visit", + "type": "static" + }, + { + "source": "npm:mdast-util-to-markdown", + "target": "npm:zwitch", + "type": "static" + } + ], + "npm:mdast-util-to-string": [ + { + "source": "npm:mdast-util-to-string", + "target": "npm:@types/mdast", + "type": "static" + } + ], + "npm:mdast-util-toc": [ + { + "source": "npm:mdast-util-toc", + "target": "npm:@types/mdast", + "type": "static" + }, + { + "source": "npm:mdast-util-toc", + "target": "npm:@types/ungap__structured-clone", + "type": "static" + }, + { + "source": "npm:mdast-util-toc", + "target": "npm:@ungap/structured-clone", + "type": "static" + }, + { + "source": "npm:mdast-util-toc", + "target": "npm:github-slugger", + "type": "static" + }, + { + "source": "npm:mdast-util-toc", + "target": "npm:mdast-util-to-string", + "type": "static" + }, + { + "source": "npm:mdast-util-toc", + "target": "npm:unist-util-is", + "type": "static" + }, + { + "source": "npm:mdast-util-toc", + "target": "npm:unist-util-visit", + "type": "static" + } + ], + "npm:merge-anything": [ + { + "source": "npm:merge-anything", + "target": "npm:is-what", + "type": "static" + } + ], + "npm:micromark-core-commonmark": [ + { + "source": "npm:micromark-core-commonmark", + "target": "npm:decode-named-character-reference", + "type": "static" + }, + { + "source": "npm:micromark-core-commonmark", + "target": "npm:devlop", + "type": "static" + }, + { + "source": "npm:micromark-core-commonmark", + "target": "npm:micromark-factory-destination", + "type": "static" + }, + { + "source": "npm:micromark-core-commonmark", + "target": "npm:micromark-factory-label", + "type": "static" + }, + { + "source": "npm:micromark-core-commonmark", + "target": "npm:micromark-factory-space", + "type": "static" + }, + { + "source": "npm:micromark-core-commonmark", + "target": "npm:micromark-factory-title", + "type": "static" + }, + { + "source": "npm:micromark-core-commonmark", + "target": "npm:micromark-factory-whitespace", + "type": "static" + }, + { + "source": "npm:micromark-core-commonmark", + "target": "npm:micromark-util-character", + "type": "static" + }, + { + "source": "npm:micromark-core-commonmark", + "target": "npm:micromark-util-chunked", + "type": "static" + }, + { + "source": "npm:micromark-core-commonmark", + "target": "npm:micromark-util-classify-character", + "type": "static" + }, + { + "source": "npm:micromark-core-commonmark", + "target": "npm:micromark-util-html-tag-name", + "type": "static" + }, + { + "source": "npm:micromark-core-commonmark", + "target": "npm:micromark-util-normalize-identifier", + "type": "static" + }, + { + "source": "npm:micromark-core-commonmark", + "target": "npm:micromark-util-resolve-all", + "type": "static" + }, + { + "source": "npm:micromark-core-commonmark", + "target": "npm:micromark-util-subtokenize", + "type": "static" + }, + { + "source": "npm:micromark-core-commonmark", + "target": "npm:micromark-util-symbol", + "type": "static" + }, + { + "source": "npm:micromark-core-commonmark", + "target": "npm:micromark-util-types", + "type": "static" + } + ], + "npm:micromark-factory-destination": [ + { + "source": "npm:micromark-factory-destination", + "target": "npm:micromark-util-character", + "type": "static" + }, + { + "source": "npm:micromark-factory-destination", + "target": "npm:micromark-util-symbol", + "type": "static" + }, + { + "source": "npm:micromark-factory-destination", + "target": "npm:micromark-util-types", + "type": "static" + } + ], + "npm:micromark-factory-label": [ + { + "source": "npm:micromark-factory-label", + "target": "npm:devlop", + "type": "static" + }, + { + "source": "npm:micromark-factory-label", + "target": "npm:micromark-util-character", + "type": "static" + }, + { + "source": "npm:micromark-factory-label", + "target": "npm:micromark-util-symbol", + "type": "static" + }, + { + "source": "npm:micromark-factory-label", + "target": "npm:micromark-util-types", + "type": "static" + } + ], + "npm:micromark-factory-space": [ + { + "source": "npm:micromark-factory-space", + "target": "npm:micromark-util-character", + "type": "static" + }, + { + "source": "npm:micromark-factory-space", + "target": "npm:micromark-util-types", + "type": "static" + } + ], + "npm:micromark-factory-title": [ + { + "source": "npm:micromark-factory-title", + "target": "npm:micromark-factory-space", + "type": "static" + }, + { + "source": "npm:micromark-factory-title", + "target": "npm:micromark-util-character", + "type": "static" + }, + { + "source": "npm:micromark-factory-title", + "target": "npm:micromark-util-symbol", + "type": "static" + }, + { + "source": "npm:micromark-factory-title", + "target": "npm:micromark-util-types", + "type": "static" + } + ], + "npm:micromark-factory-whitespace": [ + { + "source": "npm:micromark-factory-whitespace", + "target": "npm:micromark-factory-space", + "type": "static" + }, + { + "source": "npm:micromark-factory-whitespace", + "target": "npm:micromark-util-character", + "type": "static" + }, + { + "source": "npm:micromark-factory-whitespace", + "target": "npm:micromark-util-symbol", + "type": "static" + }, + { + "source": "npm:micromark-factory-whitespace", + "target": "npm:micromark-util-types", + "type": "static" + } + ], + "npm:micromark-util-character": [ + { + "source": "npm:micromark-util-character", + "target": "npm:micromark-util-symbol", + "type": "static" + }, + { + "source": "npm:micromark-util-character", + "target": "npm:micromark-util-types", + "type": "static" + } + ], + "npm:micromark-util-chunked": [ + { + "source": "npm:micromark-util-chunked", + "target": "npm:micromark-util-symbol", + "type": "static" + } + ], + "npm:micromark-util-classify-character": [ + { + "source": "npm:micromark-util-classify-character", + "target": "npm:micromark-util-character", + "type": "static" + }, + { + "source": "npm:micromark-util-classify-character", + "target": "npm:micromark-util-symbol", + "type": "static" + }, + { + "source": "npm:micromark-util-classify-character", + "target": "npm:micromark-util-types", + "type": "static" + } + ], + "npm:micromark-util-combine-extensions": [ + { + "source": "npm:micromark-util-combine-extensions", + "target": "npm:micromark-util-chunked", + "type": "static" + }, + { + "source": "npm:micromark-util-combine-extensions", + "target": "npm:micromark-util-types", + "type": "static" + } + ], + "npm:micromark-util-decode-numeric-character-reference": [ + { + "source": "npm:micromark-util-decode-numeric-character-reference", + "target": "npm:micromark-util-symbol", + "type": "static" + } + ], + "npm:micromark-util-decode-string": [ + { + "source": "npm:micromark-util-decode-string", + "target": "npm:decode-named-character-reference", + "type": "static" + }, + { + "source": "npm:micromark-util-decode-string", + "target": "npm:micromark-util-character", + "type": "static" + }, + { + "source": "npm:micromark-util-decode-string", + "target": "npm:micromark-util-decode-numeric-character-reference", + "type": "static" + }, + { + "source": "npm:micromark-util-decode-string", + "target": "npm:micromark-util-symbol", + "type": "static" + } + ], + "npm:micromark-util-normalize-identifier": [ + { + "source": "npm:micromark-util-normalize-identifier", + "target": "npm:micromark-util-symbol", + "type": "static" + } + ], + "npm:micromark-util-resolve-all": [ + { + "source": "npm:micromark-util-resolve-all", + "target": "npm:micromark-util-types", + "type": "static" + } + ], + "npm:micromark-util-sanitize-uri": [ + { + "source": "npm:micromark-util-sanitize-uri", + "target": "npm:micromark-util-character", + "type": "static" + }, + { + "source": "npm:micromark-util-sanitize-uri", + "target": "npm:micromark-util-encode", + "type": "static" + }, + { + "source": "npm:micromark-util-sanitize-uri", + "target": "npm:micromark-util-symbol", + "type": "static" + } + ], + "npm:micromark-util-subtokenize": [ + { + "source": "npm:micromark-util-subtokenize", + "target": "npm:devlop", + "type": "static" + }, + { + "source": "npm:micromark-util-subtokenize", + "target": "npm:micromark-util-chunked", + "type": "static" + }, + { + "source": "npm:micromark-util-subtokenize", + "target": "npm:micromark-util-symbol", + "type": "static" + }, + { + "source": "npm:micromark-util-subtokenize", + "target": "npm:micromark-util-types", + "type": "static" + } + ], + "npm:micromark": [ + { + "source": "npm:micromark", + "target": "npm:@types/debug", + "type": "static" + }, + { + "source": "npm:micromark", + "target": "npm:debug", + "type": "static" + }, + { + "source": "npm:micromark", + "target": "npm:decode-named-character-reference", + "type": "static" + }, + { + "source": "npm:micromark", + "target": "npm:devlop", + "type": "static" + }, + { + "source": "npm:micromark", + "target": "npm:micromark-core-commonmark", + "type": "static" + }, + { + "source": "npm:micromark", + "target": "npm:micromark-factory-space", + "type": "static" + }, + { + "source": "npm:micromark", + "target": "npm:micromark-util-character", + "type": "static" + }, + { + "source": "npm:micromark", + "target": "npm:micromark-util-chunked", + "type": "static" + }, + { + "source": "npm:micromark", + "target": "npm:micromark-util-combine-extensions", + "type": "static" + }, + { + "source": "npm:micromark", + "target": "npm:micromark-util-decode-numeric-character-reference", + "type": "static" + }, + { + "source": "npm:micromark", + "target": "npm:micromark-util-encode", + "type": "static" + }, + { + "source": "npm:micromark", + "target": "npm:micromark-util-normalize-identifier", + "type": "static" + }, + { + "source": "npm:micromark", + "target": "npm:micromark-util-resolve-all", + "type": "static" + }, + { + "source": "npm:micromark", + "target": "npm:micromark-util-sanitize-uri", + "type": "static" + }, + { + "source": "npm:micromark", + "target": "npm:micromark-util-subtokenize", + "type": "static" + }, + { + "source": "npm:micromark", + "target": "npm:micromark-util-symbol", + "type": "static" + }, + { + "source": "npm:micromark", + "target": "npm:micromark-util-types", + "type": "static" + } + ], + "npm:micromatch": [ + { + "source": "npm:micromatch", + "target": "npm:braces", + "type": "static" + }, + { + "source": "npm:micromatch", + "target": "npm:picomatch@2.3.1", + "type": "static" + } + ], + "npm:mime-types@2.1.35": [ + { + "source": "npm:mime-types@2.1.35", + "target": "npm:mime-db@1.52.0", + "type": "static" + } + ], + "npm:mime-types": [ + { + "source": "npm:mime-types", + "target": "npm:mime-db", + "type": "static" + } + ], + "npm:miniflare@4.20251217.0": [ + { + "source": "npm:miniflare@4.20251217.0", + "target": "npm:@cspotcode/source-map-support", + "type": "static" + }, + { + "source": "npm:miniflare@4.20251217.0", + "target": "npm:acorn@8.14.0", + "type": "static" + }, + { + "source": "npm:miniflare@4.20251217.0", + "target": "npm:acorn-walk", + "type": "static" + }, + { + "source": "npm:miniflare@4.20251217.0", + "target": "npm:exit-hook", + "type": "static" + }, + { + "source": "npm:miniflare@4.20251217.0", + "target": "npm:glob-to-regexp", + "type": "static" + }, + { + "source": "npm:miniflare@4.20251217.0", + "target": "npm:sharp@0.33.5", + "type": "static" + }, + { + "source": "npm:miniflare@4.20251217.0", + "target": "npm:stoppable", + "type": "static" + }, + { + "source": "npm:miniflare@4.20251217.0", + "target": "npm:undici@7.14.0", + "type": "static" + }, + { + "source": "npm:miniflare@4.20251217.0", + "target": "npm:workerd@1.20251217.0", + "type": "static" + }, + { + "source": "npm:miniflare@4.20251217.0", + "target": "npm:ws", + "type": "static" + }, + { + "source": "npm:miniflare@4.20251217.0", + "target": "npm:youch", + "type": "static" + }, + { + "source": "npm:miniflare@4.20251217.0", + "target": "npm:zod@3.22.3", + "type": "static" + } + ], + "npm:miniflare": [ + { + "source": "npm:miniflare", + "target": "npm:@cspotcode/source-map-support", + "type": "static" + }, + { + "source": "npm:miniflare", + "target": "npm:sharp", + "type": "static" + }, + { + "source": "npm:miniflare", + "target": "npm:undici", + "type": "static" + }, + { + "source": "npm:miniflare", + "target": "npm:workerd", + "type": "static" + }, + { + "source": "npm:miniflare", + "target": "npm:ws", + "type": "static" + }, + { + "source": "npm:miniflare", + "target": "npm:youch", + "type": "static" + } + ], + "npm:minimatch@10.2.3": [ + { + "source": "npm:minimatch@10.2.3", + "target": "npm:brace-expansion", + "type": "static" + } + ], + "npm:minimatch@10.2.4": [ + { + "source": "npm:minimatch@10.2.4", + "target": "npm:brace-expansion", + "type": "static" + } + ], + "npm:minimatch": [ + { + "source": "npm:minimatch", + "target": "npm:brace-expansion@1.1.12", + "type": "static" + } + ], + "npm:minimatch@5.1.9": [ + { + "source": "npm:minimatch@5.1.9", + "target": "npm:brace-expansion@2.0.2", + "type": "static" + } + ], + "npm:minimatch@8.0.4": [ + { + "source": "npm:minimatch@8.0.4", + "target": "npm:brace-expansion@2.0.2", + "type": "static" + } + ], + "npm:minimatch@9.0.5": [ + { + "source": "npm:minimatch@9.0.5", + "target": "npm:brace-expansion@2.0.2", + "type": "static" + } + ], + "npm:minipass-collect": [ + { + "source": "npm:minipass-collect", + "target": "npm:minipass", + "type": "static" + } + ], + "npm:minipass-fetch": [ + { + "source": "npm:minipass-fetch", + "target": "npm:minipass", + "type": "static" + }, + { + "source": "npm:minipass-fetch", + "target": "npm:minipass-sized", + "type": "static" + }, + { + "source": "npm:minipass-fetch", + "target": "npm:minizlib", + "type": "static" + }, + { + "source": "npm:minipass-fetch", + "target": "npm:encoding", + "type": "static" + } + ], + "npm:minipass-flush": [ + { + "source": "npm:minipass-flush", + "target": "npm:minipass@3.3.6", + "type": "static" + } + ], + "npm:minipass-pipeline": [ + { + "source": "npm:minipass-pipeline", + "target": "npm:minipass@3.3.6", + "type": "static" + } + ], + "npm:minipass-sized": [ + { + "source": "npm:minipass-sized", + "target": "npm:minipass@3.3.6", + "type": "static" + } + ], + "npm:minipass@3.3.6": [ + { + "source": "npm:minipass@3.3.6", + "target": "npm:yallist@4.0.0", + "type": "static" + } + ], + "npm:minizlib": [ + { + "source": "npm:minizlib", + "target": "npm:minipass", + "type": "static" + } + ], + "npm:mlly": [ + { + "source": "npm:mlly", + "target": "npm:acorn", + "type": "static" + }, + { + "source": "npm:mlly", + "target": "npm:pathe", + "type": "static" + }, + { + "source": "npm:mlly", + "target": "npm:pkg-types@1.3.1", + "type": "static" + }, + { + "source": "npm:mlly", + "target": "npm:ufo", + "type": "static" + } + ], + "npm:mysql2": [ + { + "source": "npm:mysql2", + "target": "npm:aws-ssl-profiles", + "type": "static" + }, + { + "source": "npm:mysql2", + "target": "npm:denque", + "type": "static" + }, + { + "source": "npm:mysql2", + "target": "npm:generate-function", + "type": "static" + }, + { + "source": "npm:mysql2", + "target": "npm:iconv-lite@0.7.2", + "type": "static" + }, + { + "source": "npm:mysql2", + "target": "npm:long", + "type": "static" + }, + { + "source": "npm:mysql2", + "target": "npm:lru.min", + "type": "static" + }, + { + "source": "npm:mysql2", + "target": "npm:named-placeholders", + "type": "static" + }, + { + "source": "npm:mysql2", + "target": "npm:seq-queue", + "type": "static" + }, + { + "source": "npm:mysql2", + "target": "npm:sqlstring", + "type": "static" + } + ], + "npm:named-placeholders": [ + { + "source": "npm:named-placeholders", + "target": "npm:lru-cache@7.18.3", + "type": "static" + } + ], + "npm:node-abi": [ + { + "source": "npm:node-abi", + "target": "npm:semver@7.7.4", + "type": "static" + } + ], + "npm:node-fetch@2.7.0": [ + { + "source": "npm:node-fetch@2.7.0", + "target": "npm:whatwg-url", + "type": "static" + }, + { + "source": "npm:node-fetch@2.7.0", + "target": "npm:encoding", + "type": "static" + } + ], + "npm:node-fetch": [ + { + "source": "npm:node-fetch", + "target": "npm:data-uri-to-buffer", + "type": "static" + }, + { + "source": "npm:node-fetch", + "target": "npm:fetch-blob", + "type": "static" + }, + { + "source": "npm:node-fetch", + "target": "npm:formdata-polyfill", + "type": "static" + } + ], + "npm:node-gyp": [ + { + "source": "npm:node-gyp", + "target": "npm:env-paths", + "type": "static" + }, + { + "source": "npm:node-gyp", + "target": "npm:exponential-backoff", + "type": "static" + }, + { + "source": "npm:node-gyp", + "target": "npm:graceful-fs", + "type": "static" + }, + { + "source": "npm:node-gyp", + "target": "npm:make-fetch-happen", + "type": "static" + }, + { + "source": "npm:node-gyp", + "target": "npm:nopt", + "type": "static" + }, + { + "source": "npm:node-gyp", + "target": "npm:proc-log", + "type": "static" + }, + { + "source": "npm:node-gyp", + "target": "npm:semver@7.7.4", + "type": "static" + }, + { + "source": "npm:node-gyp", + "target": "npm:tar", + "type": "static" + }, + { + "source": "npm:node-gyp", + "target": "npm:tinyglobby", + "type": "static" + }, + { + "source": "npm:node-gyp", + "target": "npm:which@5.0.0", + "type": "static" + } + ], + "npm:nopt": [ + { + "source": "npm:nopt", + "target": "npm:abbrev", + "type": "static" + } + ], + "npm:npm-run-all2": [ + { + "source": "npm:npm-run-all2", + "target": "npm:ansi-styles", + "type": "static" + }, + { + "source": "npm:npm-run-all2", + "target": "npm:cross-spawn", + "type": "static" + }, + { + "source": "npm:npm-run-all2", + "target": "npm:memorystream", + "type": "static" + }, + { + "source": "npm:npm-run-all2", + "target": "npm:picomatch", + "type": "static" + }, + { + "source": "npm:npm-run-all2", + "target": "npm:pidtree", + "type": "static" + }, + { + "source": "npm:npm-run-all2", + "target": "npm:read-package-json-fast", + "type": "static" + }, + { + "source": "npm:npm-run-all2", + "target": "npm:shell-quote", + "type": "static" + }, + { + "source": "npm:npm-run-all2", + "target": "npm:which@5.0.0", + "type": "static" + } + ], + "npm:npm-run-path@4.0.1": [ + { + "source": "npm:npm-run-path@4.0.1", + "target": "npm:path-key", + "type": "static" + } + ], + "npm:npm-run-path": [ + { + "source": "npm:npm-run-path", + "target": "npm:path-key@4.0.0", + "type": "static" + }, + { + "source": "npm:npm-run-path", + "target": "npm:unicorn-magic@0.3.0", + "type": "static" + } + ], + "npm:nth-check": [ + { + "source": "npm:nth-check", + "target": "npm:boolbase", + "type": "static" + } + ], + "npm:nx": [ + { + "source": "npm:nx", + "target": "npm:@ltd/j-toml", + "type": "static" + }, + { + "source": "npm:nx", + "target": "npm:@napi-rs/wasm-runtime", + "type": "static" + }, + { + "source": "npm:nx", + "target": "npm:@yarnpkg/lockfile", + "type": "static" + }, + { + "source": "npm:nx", + "target": "npm:@yarnpkg/parsers", + "type": "static" + }, + { + "source": "npm:nx", + "target": "npm:@zkochan/js-yaml", + "type": "static" + }, + { + "source": "npm:nx", + "target": "npm:axios", + "type": "static" + }, + { + "source": "npm:nx", + "target": "npm:cli-cursor", + "type": "static" + }, + { + "source": "npm:nx", + "target": "npm:cli-spinners", + "type": "static" + }, + { + "source": "npm:nx", + "target": "npm:cliui", + "type": "static" + }, + { + "source": "npm:nx", + "target": "npm:dotenv@16.4.7", + "type": "static" + }, + { + "source": "npm:nx", + "target": "npm:dotenv-expand", + "type": "static" + }, + { + "source": "npm:nx", + "target": "npm:ejs", + "type": "static" + }, + { + "source": "npm:nx", + "target": "npm:enquirer", + "type": "static" + }, + { + "source": "npm:nx", + "target": "npm:figures@3.2.0", + "type": "static" + }, + { + "source": "npm:nx", + "target": "npm:flat", + "type": "static" + }, + { + "source": "npm:nx", + "target": "npm:front-matter", + "type": "static" + }, + { + "source": "npm:nx", + "target": "npm:ignore@7.0.5", + "type": "static" + }, + { + "source": "npm:nx", + "target": "npm:jest-diff", + "type": "static" + }, + { + "source": "npm:nx", + "target": "npm:jsonc-parser@3.2.0", + "type": "static" + }, + { + "source": "npm:nx", + "target": "npm:lines-and-columns", + "type": "static" + }, + { + "source": "npm:nx", + "target": "npm:minimatch@10.2.4", + "type": "static" + }, + { + "source": "npm:nx", + "target": "npm:npm-run-path@4.0.1", + "type": "static" + }, + { + "source": "npm:nx", + "target": "npm:open", + "type": "static" + }, + { + "source": "npm:nx", + "target": "npm:ora", + "type": "static" + }, + { + "source": "npm:nx", + "target": "npm:picocolors", + "type": "static" + }, + { + "source": "npm:nx", + "target": "npm:resolve.exports", + "type": "static" + }, + { + "source": "npm:nx", + "target": "npm:semver@7.7.4", + "type": "static" + }, + { + "source": "npm:nx", + "target": "npm:string-width", + "type": "static" + }, + { + "source": "npm:nx", + "target": "npm:tar-stream", + "type": "static" + }, + { + "source": "npm:nx", + "target": "npm:tmp", + "type": "static" + }, + { + "source": "npm:nx", + "target": "npm:tree-kill", + "type": "static" + }, + { + "source": "npm:nx", + "target": "npm:tsconfig-paths", + "type": "static" + }, + { + "source": "npm:nx", + "target": "npm:tslib", + "type": "static" + }, + { + "source": "npm:nx", + "target": "npm:yaml", + "type": "static" + }, + { + "source": "npm:nx", + "target": "npm:yargs", + "type": "static" + }, + { + "source": "npm:nx", + "target": "npm:yargs-parser", + "type": "static" + }, + { + "source": "npm:nx", + "target": "npm:@nx/nx-darwin-arm64", + "type": "static" + }, + { + "source": "npm:nx", + "target": "npm:@nx/nx-darwin-x64", + "type": "static" + }, + { + "source": "npm:nx", + "target": "npm:@nx/nx-freebsd-x64", + "type": "static" + }, + { + "source": "npm:nx", + "target": "npm:@nx/nx-linux-arm-gnueabihf", + "type": "static" + }, + { + "source": "npm:nx", + "target": "npm:@nx/nx-linux-arm64-gnu", + "type": "static" + }, + { + "source": "npm:nx", + "target": "npm:@nx/nx-linux-arm64-musl", + "type": "static" + }, + { + "source": "npm:nx", + "target": "npm:@nx/nx-linux-x64-gnu", + "type": "static" + }, + { + "source": "npm:nx", + "target": "npm:@nx/nx-linux-x64-musl", + "type": "static" + }, + { + "source": "npm:nx", + "target": "npm:@nx/nx-win32-arm64-msvc", + "type": "static" + }, + { + "source": "npm:nx", + "target": "npm:@nx/nx-win32-x64-msvc", + "type": "static" + } + ], + "npm:nypm": [ + { + "source": "npm:nypm", + "target": "npm:citty@0.1.6", + "type": "static" + }, + { + "source": "npm:nypm", + "target": "npm:consola", + "type": "static" + }, + { + "source": "npm:nypm", + "target": "npm:pathe", + "type": "static" + }, + { + "source": "npm:nypm", + "target": "npm:pkg-types", + "type": "static" + }, + { + "source": "npm:nypm", + "target": "npm:tinyexec", + "type": "static" + } + ], + "npm:object.assign": [ + { + "source": "npm:object.assign", + "target": "npm:call-bind", + "type": "static" + }, + { + "source": "npm:object.assign", + "target": "npm:call-bound", + "type": "static" + }, + { + "source": "npm:object.assign", + "target": "npm:define-properties", + "type": "static" + }, + { + "source": "npm:object.assign", + "target": "npm:es-object-atoms", + "type": "static" + }, + { + "source": "npm:object.assign", + "target": "npm:has-symbols", + "type": "static" + }, + { + "source": "npm:object.assign", + "target": "npm:object-keys", + "type": "static" + } + ], + "npm:object.entries": [ + { + "source": "npm:object.entries", + "target": "npm:call-bind", + "type": "static" + }, + { + "source": "npm:object.entries", + "target": "npm:call-bound", + "type": "static" + }, + { + "source": "npm:object.entries", + "target": "npm:define-properties", + "type": "static" + }, + { + "source": "npm:object.entries", + "target": "npm:es-object-atoms", + "type": "static" + } + ], + "npm:object.fromentries": [ + { + "source": "npm:object.fromentries", + "target": "npm:call-bind", + "type": "static" + }, + { + "source": "npm:object.fromentries", + "target": "npm:define-properties", + "type": "static" + }, + { + "source": "npm:object.fromentries", + "target": "npm:es-abstract", + "type": "static" + }, + { + "source": "npm:object.fromentries", + "target": "npm:es-object-atoms", + "type": "static" + } + ], + "npm:object.values": [ + { + "source": "npm:object.values", + "target": "npm:call-bind", + "type": "static" + }, + { + "source": "npm:object.values", + "target": "npm:call-bound", + "type": "static" + }, + { + "source": "npm:object.values", + "target": "npm:define-properties", + "type": "static" + }, + { + "source": "npm:object.values", + "target": "npm:es-object-atoms", + "type": "static" + } + ], + "npm:on-finished": [ + { + "source": "npm:on-finished", + "target": "npm:ee-first", + "type": "static" + } + ], + "npm:once": [ + { + "source": "npm:once", + "target": "npm:wrappy", + "type": "static" + } + ], + "npm:onetime": [ + { + "source": "npm:onetime", + "target": "npm:mimic-fn", + "type": "static" + } + ], + "npm:open": [ + { + "source": "npm:open", + "target": "npm:define-lazy-prop", + "type": "static" + }, + { + "source": "npm:open", + "target": "npm:is-docker", + "type": "static" + }, + { + "source": "npm:open", + "target": "npm:is-wsl", + "type": "static" + } + ], + "npm:optionator": [ + { + "source": "npm:optionator", + "target": "npm:deep-is", + "type": "static" + }, + { + "source": "npm:optionator", + "target": "npm:fast-levenshtein", + "type": "static" + }, + { + "source": "npm:optionator", + "target": "npm:levn", + "type": "static" + }, + { + "source": "npm:optionator", + "target": "npm:prelude-ls", + "type": "static" + }, + { + "source": "npm:optionator", + "target": "npm:type-check", + "type": "static" + }, + { + "source": "npm:optionator", + "target": "npm:word-wrap", + "type": "static" + } + ], + "npm:ora": [ + { + "source": "npm:ora", + "target": "npm:bl", + "type": "static" + }, + { + "source": "npm:ora", + "target": "npm:chalk", + "type": "static" + }, + { + "source": "npm:ora", + "target": "npm:cli-cursor", + "type": "static" + }, + { + "source": "npm:ora", + "target": "npm:cli-spinners", + "type": "static" + }, + { + "source": "npm:ora", + "target": "npm:is-interactive", + "type": "static" + }, + { + "source": "npm:ora", + "target": "npm:log-symbols", + "type": "static" + }, + { + "source": "npm:ora", + "target": "npm:strip-ansi@6.0.1", + "type": "static" + }, + { + "source": "npm:ora", + "target": "npm:wcwidth", + "type": "static" + } + ], + "npm:own-keys": [ + { + "source": "npm:own-keys", + "target": "npm:get-intrinsic", + "type": "static" + }, + { + "source": "npm:own-keys", + "target": "npm:object-keys", + "type": "static" + }, + { + "source": "npm:own-keys", + "target": "npm:safe-push-apply", + "type": "static" + } + ], + "npm:oxc-parser": [ + { + "source": "npm:oxc-parser", + "target": "npm:@oxc-project/types", + "type": "static" + }, + { + "source": "npm:oxc-parser", + "target": "npm:@oxc-parser/binding-android-arm64", + "type": "static" + }, + { + "source": "npm:oxc-parser", + "target": "npm:@oxc-parser/binding-darwin-arm64", + "type": "static" + }, + { + "source": "npm:oxc-parser", + "target": "npm:@oxc-parser/binding-darwin-x64", + "type": "static" + }, + { + "source": "npm:oxc-parser", + "target": "npm:@oxc-parser/binding-freebsd-x64", + "type": "static" + }, + { + "source": "npm:oxc-parser", + "target": "npm:@oxc-parser/binding-linux-arm-gnueabihf", + "type": "static" + }, + { + "source": "npm:oxc-parser", + "target": "npm:@oxc-parser/binding-linux-arm64-gnu", + "type": "static" + }, + { + "source": "npm:oxc-parser", + "target": "npm:@oxc-parser/binding-linux-arm64-musl", + "type": "static" + }, + { + "source": "npm:oxc-parser", + "target": "npm:@oxc-parser/binding-linux-riscv64-gnu", + "type": "static" + }, + { + "source": "npm:oxc-parser", + "target": "npm:@oxc-parser/binding-linux-s390x-gnu", + "type": "static" + }, + { + "source": "npm:oxc-parser", + "target": "npm:@oxc-parser/binding-linux-x64-gnu", + "type": "static" + }, + { + "source": "npm:oxc-parser", + "target": "npm:@oxc-parser/binding-linux-x64-musl", + "type": "static" + }, + { + "source": "npm:oxc-parser", + "target": "npm:@oxc-parser/binding-openharmony-arm64", + "type": "static" + }, + { + "source": "npm:oxc-parser", + "target": "npm:@oxc-parser/binding-wasm32-wasi", + "type": "static" + }, + { + "source": "npm:oxc-parser", + "target": "npm:@oxc-parser/binding-win32-arm64-msvc", + "type": "static" + }, + { + "source": "npm:oxc-parser", + "target": "npm:@oxc-parser/binding-win32-x64-msvc", + "type": "static" + } + ], + "npm:oxc-resolver": [ + { + "source": "npm:oxc-resolver", + "target": "npm:@oxc-resolver/binding-android-arm-eabi", + "type": "static" + }, + { + "source": "npm:oxc-resolver", + "target": "npm:@oxc-resolver/binding-android-arm64", + "type": "static" + }, + { + "source": "npm:oxc-resolver", + "target": "npm:@oxc-resolver/binding-darwin-arm64", + "type": "static" + }, + { + "source": "npm:oxc-resolver", + "target": "npm:@oxc-resolver/binding-darwin-x64", + "type": "static" + }, + { + "source": "npm:oxc-resolver", + "target": "npm:@oxc-resolver/binding-freebsd-x64", + "type": "static" + }, + { + "source": "npm:oxc-resolver", + "target": "npm:@oxc-resolver/binding-linux-arm-gnueabihf", + "type": "static" + }, + { + "source": "npm:oxc-resolver", + "target": "npm:@oxc-resolver/binding-linux-arm-musleabihf", + "type": "static" + }, + { + "source": "npm:oxc-resolver", + "target": "npm:@oxc-resolver/binding-linux-arm64-gnu", + "type": "static" + }, + { + "source": "npm:oxc-resolver", + "target": "npm:@oxc-resolver/binding-linux-arm64-musl", + "type": "static" + }, + { + "source": "npm:oxc-resolver", + "target": "npm:@oxc-resolver/binding-linux-ppc64-gnu", + "type": "static" + }, + { + "source": "npm:oxc-resolver", + "target": "npm:@oxc-resolver/binding-linux-riscv64-gnu", + "type": "static" + }, + { + "source": "npm:oxc-resolver", + "target": "npm:@oxc-resolver/binding-linux-riscv64-musl", + "type": "static" + }, + { + "source": "npm:oxc-resolver", + "target": "npm:@oxc-resolver/binding-linux-s390x-gnu", + "type": "static" + }, + { + "source": "npm:oxc-resolver", + "target": "npm:@oxc-resolver/binding-linux-x64-gnu", + "type": "static" + }, + { + "source": "npm:oxc-resolver", + "target": "npm:@oxc-resolver/binding-linux-x64-musl", + "type": "static" + }, + { + "source": "npm:oxc-resolver", + "target": "npm:@oxc-resolver/binding-openharmony-arm64", + "type": "static" + }, + { + "source": "npm:oxc-resolver", + "target": "npm:@oxc-resolver/binding-wasm32-wasi", + "type": "static" + }, + { + "source": "npm:oxc-resolver", + "target": "npm:@oxc-resolver/binding-win32-arm64-msvc", + "type": "static" + }, + { + "source": "npm:oxc-resolver", + "target": "npm:@oxc-resolver/binding-win32-ia32-msvc", + "type": "static" + }, + { + "source": "npm:oxc-resolver", + "target": "npm:@oxc-resolver/binding-win32-x64-msvc", + "type": "static" + } + ], + "npm:oxc-walker": [ + { + "source": "npm:oxc-walker", + "target": "npm:magic-regexp", + "type": "static" + }, + { + "source": "npm:oxc-walker", + "target": "npm:oxc-parser", + "type": "static" + } + ], + "npm:oxlint-tsgolint": [ + { + "source": "npm:oxlint-tsgolint", + "target": "npm:@oxlint-tsgolint/darwin-arm64", + "type": "static" + }, + { + "source": "npm:oxlint-tsgolint", + "target": "npm:@oxlint-tsgolint/darwin-x64", + "type": "static" + }, + { + "source": "npm:oxlint-tsgolint", + "target": "npm:@oxlint-tsgolint/linux-arm64", + "type": "static" + }, + { + "source": "npm:oxlint-tsgolint", + "target": "npm:@oxlint-tsgolint/linux-x64", + "type": "static" + }, + { + "source": "npm:oxlint-tsgolint", + "target": "npm:@oxlint-tsgolint/win32-arm64", + "type": "static" + }, + { + "source": "npm:oxlint-tsgolint", + "target": "npm:@oxlint-tsgolint/win32-x64", + "type": "static" + } + ], + "npm:oxlint": [ + { + "source": "npm:oxlint", + "target": "npm:@oxlint/binding-android-arm-eabi", + "type": "static" + }, + { + "source": "npm:oxlint", + "target": "npm:@oxlint/binding-android-arm64", + "type": "static" + }, + { + "source": "npm:oxlint", + "target": "npm:@oxlint/binding-darwin-arm64", + "type": "static" + }, + { + "source": "npm:oxlint", + "target": "npm:@oxlint/binding-darwin-x64", + "type": "static" + }, + { + "source": "npm:oxlint", + "target": "npm:@oxlint/binding-freebsd-x64", + "type": "static" + }, + { + "source": "npm:oxlint", + "target": "npm:@oxlint/binding-linux-arm-gnueabihf", + "type": "static" + }, + { + "source": "npm:oxlint", + "target": "npm:@oxlint/binding-linux-arm-musleabihf", + "type": "static" + }, + { + "source": "npm:oxlint", + "target": "npm:@oxlint/binding-linux-arm64-gnu", + "type": "static" + }, + { + "source": "npm:oxlint", + "target": "npm:@oxlint/binding-linux-arm64-musl", + "type": "static" + }, + { + "source": "npm:oxlint", + "target": "npm:@oxlint/binding-linux-ppc64-gnu", + "type": "static" + }, + { + "source": "npm:oxlint", + "target": "npm:@oxlint/binding-linux-riscv64-gnu", + "type": "static" + }, + { + "source": "npm:oxlint", + "target": "npm:@oxlint/binding-linux-riscv64-musl", + "type": "static" + }, + { + "source": "npm:oxlint", + "target": "npm:@oxlint/binding-linux-s390x-gnu", + "type": "static" + }, + { + "source": "npm:oxlint", + "target": "npm:@oxlint/binding-linux-x64-gnu", + "type": "static" + }, + { + "source": "npm:oxlint", + "target": "npm:@oxlint/binding-linux-x64-musl", + "type": "static" + }, + { + "source": "npm:oxlint", + "target": "npm:@oxlint/binding-openharmony-arm64", + "type": "static" + }, + { + "source": "npm:oxlint", + "target": "npm:@oxlint/binding-win32-arm64-msvc", + "type": "static" + }, + { + "source": "npm:oxlint", + "target": "npm:@oxlint/binding-win32-ia32-msvc", + "type": "static" + }, + { + "source": "npm:oxlint", + "target": "npm:@oxlint/binding-win32-x64-msvc", + "type": "static" + }, + { + "source": "npm:oxlint", + "target": "npm:oxlint-tsgolint", + "type": "static" + } + ], + "npm:p-limit@2.3.0": [ + { + "source": "npm:p-limit@2.3.0", + "target": "npm:p-try", + "type": "static" + } + ], + "npm:p-limit@3.1.0": [ + { + "source": "npm:p-limit@3.1.0", + "target": "npm:yocto-queue@0.1.0", + "type": "static" + } + ], + "npm:p-limit": [ + { + "source": "npm:p-limit", + "target": "npm:yocto-queue", + "type": "static" + } + ], + "npm:p-locate@3.0.0": [ + { + "source": "npm:p-locate@3.0.0", + "target": "npm:p-limit@2.3.0", + "type": "static" + } + ], + "npm:p-locate": [ + { + "source": "npm:p-locate", + "target": "npm:p-limit@3.1.0", + "type": "static" + } + ], + "npm:p-retry": [ + { + "source": "npm:p-retry", + "target": "npm:@types/retry", + "type": "static" + }, + { + "source": "npm:p-retry", + "target": "npm:retry", + "type": "static" + } + ], + "npm:pac-proxy-agent": [ + { + "source": "npm:pac-proxy-agent", + "target": "npm:@tootallnate/quickjs-emscripten", + "type": "static" + }, + { + "source": "npm:pac-proxy-agent", + "target": "npm:agent-base", + "type": "static" + }, + { + "source": "npm:pac-proxy-agent", + "target": "npm:debug", + "type": "static" + }, + { + "source": "npm:pac-proxy-agent", + "target": "npm:get-uri", + "type": "static" + }, + { + "source": "npm:pac-proxy-agent", + "target": "npm:http-proxy-agent", + "type": "static" + }, + { + "source": "npm:pac-proxy-agent", + "target": "npm:https-proxy-agent@7.0.6", + "type": "static" + }, + { + "source": "npm:pac-proxy-agent", + "target": "npm:pac-resolver", + "type": "static" + }, + { + "source": "npm:pac-proxy-agent", + "target": "npm:socks-proxy-agent", + "type": "static" + } + ], + "npm:pac-resolver": [ + { + "source": "npm:pac-resolver", + "target": "npm:degenerator", + "type": "static" + }, + { + "source": "npm:pac-resolver", + "target": "npm:netmask", + "type": "static" + } + ], + "npm:parent-module": [ + { + "source": "npm:parent-module", + "target": "npm:callsites", + "type": "static" + } + ], + "npm:parse-json": [ + { + "source": "npm:parse-json", + "target": "npm:@babel/code-frame", + "type": "static" + }, + { + "source": "npm:parse-json", + "target": "npm:error-ex", + "type": "static" + }, + { + "source": "npm:parse-json", + "target": "npm:json-parse-even-better-errors@2.3.1", + "type": "static" + }, + { + "source": "npm:parse-json", + "target": "npm:lines-and-columns@1.2.4", + "type": "static" + } + ], + "npm:parse5": [ + { + "source": "npm:parse5", + "target": "npm:entities@6.0.1", + "type": "static" + } + ], + "npm:path-scurry@1.11.1": [ + { + "source": "npm:path-scurry@1.11.1", + "target": "npm:lru-cache@10.4.3", + "type": "static" + }, + { + "source": "npm:path-scurry@1.11.1", + "target": "npm:minipass", + "type": "static" + } + ], + "npm:path-scurry": [ + { + "source": "npm:path-scurry", + "target": "npm:lru-cache@11.2.2", + "type": "static" + }, + { + "source": "npm:path-scurry", + "target": "npm:minipass", + "type": "static" + } + ], + "npm:pino-abstract-transport": [ + { + "source": "npm:pino-abstract-transport", + "target": "npm:split2", + "type": "static" + } + ], + "npm:pino": [ + { + "source": "npm:pino", + "target": "npm:@pinojs/redact", + "type": "static" + }, + { + "source": "npm:pino", + "target": "npm:atomic-sleep", + "type": "static" + }, + { + "source": "npm:pino", + "target": "npm:on-exit-leak-free", + "type": "static" + }, + { + "source": "npm:pino", + "target": "npm:pino-abstract-transport", + "type": "static" + }, + { + "source": "npm:pino", + "target": "npm:pino-std-serializers", + "type": "static" + }, + { + "source": "npm:pino", + "target": "npm:process-warning", + "type": "static" + }, + { + "source": "npm:pino", + "target": "npm:quick-format-unescaped", + "type": "static" + }, + { + "source": "npm:pino", + "target": "npm:real-require", + "type": "static" + }, + { + "source": "npm:pino", + "target": "npm:safe-stable-stringify", + "type": "static" + }, + { + "source": "npm:pino", + "target": "npm:sonic-boom", + "type": "static" + }, + { + "source": "npm:pino", + "target": "npm:thread-stream", + "type": "static" + } + ], + "npm:pkg-types@1.3.1": [ + { + "source": "npm:pkg-types@1.3.1", + "target": "npm:confbox@0.1.8", + "type": "static" + }, + { + "source": "npm:pkg-types@1.3.1", + "target": "npm:mlly", + "type": "static" + }, + { + "source": "npm:pkg-types@1.3.1", + "target": "npm:pathe", + "type": "static" + } + ], + "npm:pkg-types": [ + { + "source": "npm:pkg-types", + "target": "npm:confbox", + "type": "static" + }, + { + "source": "npm:pkg-types", + "target": "npm:exsolve", + "type": "static" + }, + { + "source": "npm:pkg-types", + "target": "npm:pathe", + "type": "static" + } + ], + "npm:pkg-up": [ + { + "source": "npm:pkg-up", + "target": "npm:find-up@3.0.0", + "type": "static" + } + ], + "npm:portfinder": [ + { + "source": "npm:portfinder", + "target": "npm:async", + "type": "static" + }, + { + "source": "npm:portfinder", + "target": "npm:debug", + "type": "static" + } + ], + "npm:postcss-calc": [ + { + "source": "npm:postcss-calc", + "target": "npm:postcss", + "type": "static" + }, + { + "source": "npm:postcss-calc", + "target": "npm:postcss-selector-parser@6.1.2", + "type": "static" + }, + { + "source": "npm:postcss-calc", + "target": "npm:postcss-value-parser", + "type": "static" + } + ], + "npm:postcss-colormin": [ + { + "source": "npm:postcss-colormin", + "target": "npm:browserslist", + "type": "static" + }, + { + "source": "npm:postcss-colormin", + "target": "npm:caniuse-api", + "type": "static" + }, + { + "source": "npm:postcss-colormin", + "target": "npm:colord", + "type": "static" + }, + { + "source": "npm:postcss-colormin", + "target": "npm:postcss", + "type": "static" + }, + { + "source": "npm:postcss-colormin", + "target": "npm:postcss-value-parser", + "type": "static" + } + ], + "npm:postcss-convert-values": [ + { + "source": "npm:postcss-convert-values", + "target": "npm:browserslist", + "type": "static" + }, + { + "source": "npm:postcss-convert-values", + "target": "npm:postcss", + "type": "static" + }, + { + "source": "npm:postcss-convert-values", + "target": "npm:postcss-value-parser", + "type": "static" + } + ], + "npm:postcss-discard-comments": [ + { + "source": "npm:postcss-discard-comments", + "target": "npm:postcss", + "type": "static" + } + ], + "npm:postcss-discard-duplicates@5.1.0": [ + { + "source": "npm:postcss-discard-duplicates@5.1.0", + "target": "npm:postcss", + "type": "static" + } + ], + "npm:postcss-discard-duplicates": [ + { + "source": "npm:postcss-discard-duplicates", + "target": "npm:postcss", + "type": "static" + } + ], + "npm:postcss-discard-empty": [ + { + "source": "npm:postcss-discard-empty", + "target": "npm:postcss", + "type": "static" + } + ], + "npm:postcss-discard-overridden": [ + { + "source": "npm:postcss-discard-overridden", + "target": "npm:postcss", + "type": "static" + } + ], + "npm:postcss-js": [ + { + "source": "npm:postcss-js", + "target": "npm:camelcase-css", + "type": "static" + }, + { + "source": "npm:postcss-js", + "target": "npm:postcss", + "type": "static" + } + ], + "npm:postcss-merge-longhand": [ + { + "source": "npm:postcss-merge-longhand", + "target": "npm:postcss", + "type": "static" + }, + { + "source": "npm:postcss-merge-longhand", + "target": "npm:postcss-value-parser", + "type": "static" + }, + { + "source": "npm:postcss-merge-longhand", + "target": "npm:stylehacks", + "type": "static" + } + ], + "npm:postcss-merge-rules": [ + { + "source": "npm:postcss-merge-rules", + "target": "npm:browserslist", + "type": "static" + }, + { + "source": "npm:postcss-merge-rules", + "target": "npm:caniuse-api", + "type": "static" + }, + { + "source": "npm:postcss-merge-rules", + "target": "npm:cssnano-utils", + "type": "static" + }, + { + "source": "npm:postcss-merge-rules", + "target": "npm:postcss", + "type": "static" + }, + { + "source": "npm:postcss-merge-rules", + "target": "npm:postcss-selector-parser@6.1.2", + "type": "static" + } + ], + "npm:postcss-minify-font-values": [ + { + "source": "npm:postcss-minify-font-values", + "target": "npm:postcss", + "type": "static" + }, + { + "source": "npm:postcss-minify-font-values", + "target": "npm:postcss-value-parser", + "type": "static" + } + ], + "npm:postcss-minify-gradients": [ + { + "source": "npm:postcss-minify-gradients", + "target": "npm:colord", + "type": "static" + }, + { + "source": "npm:postcss-minify-gradients", + "target": "npm:cssnano-utils", + "type": "static" + }, + { + "source": "npm:postcss-minify-gradients", + "target": "npm:postcss", + "type": "static" + }, + { + "source": "npm:postcss-minify-gradients", + "target": "npm:postcss-value-parser", + "type": "static" + } + ], + "npm:postcss-minify-params": [ + { + "source": "npm:postcss-minify-params", + "target": "npm:browserslist", + "type": "static" + }, + { + "source": "npm:postcss-minify-params", + "target": "npm:cssnano-utils", + "type": "static" + }, + { + "source": "npm:postcss-minify-params", + "target": "npm:postcss", + "type": "static" + }, + { + "source": "npm:postcss-minify-params", + "target": "npm:postcss-value-parser", + "type": "static" + } + ], + "npm:postcss-minify-selectors": [ + { + "source": "npm:postcss-minify-selectors", + "target": "npm:postcss", + "type": "static" + }, + { + "source": "npm:postcss-minify-selectors", + "target": "npm:postcss-selector-parser@6.1.2", + "type": "static" + } + ], + "npm:postcss-mixins": [ + { + "source": "npm:postcss-mixins", + "target": "npm:postcss", + "type": "static" + }, + { + "source": "npm:postcss-mixins", + "target": "npm:postcss-js", + "type": "static" + }, + { + "source": "npm:postcss-mixins", + "target": "npm:postcss-simple-vars", + "type": "static" + }, + { + "source": "npm:postcss-mixins", + "target": "npm:sugarss", + "type": "static" + }, + { + "source": "npm:postcss-mixins", + "target": "npm:tinyglobby", + "type": "static" + } + ], + "npm:postcss-nested@5.0.6": [ + { + "source": "npm:postcss-nested@5.0.6", + "target": "npm:postcss", + "type": "static" + }, + { + "source": "npm:postcss-nested@5.0.6", + "target": "npm:postcss-selector-parser@6.1.2", + "type": "static" + } + ], + "npm:postcss-nested": [ + { + "source": "npm:postcss-nested", + "target": "npm:postcss", + "type": "static" + }, + { + "source": "npm:postcss-nested", + "target": "npm:postcss-selector-parser", + "type": "static" + } + ], + "npm:postcss-normalize-charset": [ + { + "source": "npm:postcss-normalize-charset", + "target": "npm:postcss", + "type": "static" + } + ], + "npm:postcss-normalize-display-values": [ + { + "source": "npm:postcss-normalize-display-values", + "target": "npm:postcss", + "type": "static" + }, + { + "source": "npm:postcss-normalize-display-values", + "target": "npm:postcss-value-parser", + "type": "static" + } + ], + "npm:postcss-normalize-positions": [ + { + "source": "npm:postcss-normalize-positions", + "target": "npm:postcss", + "type": "static" + }, + { + "source": "npm:postcss-normalize-positions", + "target": "npm:postcss-value-parser", + "type": "static" + } + ], + "npm:postcss-normalize-repeat-style": [ + { + "source": "npm:postcss-normalize-repeat-style", + "target": "npm:postcss", + "type": "static" + }, + { + "source": "npm:postcss-normalize-repeat-style", + "target": "npm:postcss-value-parser", + "type": "static" + } + ], + "npm:postcss-normalize-string": [ + { + "source": "npm:postcss-normalize-string", + "target": "npm:postcss", + "type": "static" + }, + { + "source": "npm:postcss-normalize-string", + "target": "npm:postcss-value-parser", + "type": "static" + } + ], + "npm:postcss-normalize-timing-functions": [ + { + "source": "npm:postcss-normalize-timing-functions", + "target": "npm:postcss", + "type": "static" + }, + { + "source": "npm:postcss-normalize-timing-functions", + "target": "npm:postcss-value-parser", + "type": "static" + } + ], + "npm:postcss-normalize-unicode": [ + { + "source": "npm:postcss-normalize-unicode", + "target": "npm:browserslist", + "type": "static" + }, + { + "source": "npm:postcss-normalize-unicode", + "target": "npm:postcss", + "type": "static" + }, + { + "source": "npm:postcss-normalize-unicode", + "target": "npm:postcss-value-parser", + "type": "static" + } + ], + "npm:postcss-normalize-url": [ + { + "source": "npm:postcss-normalize-url", + "target": "npm:normalize-url", + "type": "static" + }, + { + "source": "npm:postcss-normalize-url", + "target": "npm:postcss", + "type": "static" + }, + { + "source": "npm:postcss-normalize-url", + "target": "npm:postcss-value-parser", + "type": "static" + } + ], + "npm:postcss-normalize-whitespace": [ + { + "source": "npm:postcss-normalize-whitespace", + "target": "npm:postcss", + "type": "static" + }, + { + "source": "npm:postcss-normalize-whitespace", + "target": "npm:postcss-value-parser", + "type": "static" + } + ], + "npm:postcss-ordered-values": [ + { + "source": "npm:postcss-ordered-values", + "target": "npm:cssnano-utils", + "type": "static" + }, + { + "source": "npm:postcss-ordered-values", + "target": "npm:postcss", + "type": "static" + }, + { + "source": "npm:postcss-ordered-values", + "target": "npm:postcss-value-parser", + "type": "static" + } + ], + "npm:postcss-preset-mantine": [ + { + "source": "npm:postcss-preset-mantine", + "target": "npm:postcss", + "type": "static" + }, + { + "source": "npm:postcss-preset-mantine", + "target": "npm:postcss-mixins", + "type": "static" + }, + { + "source": "npm:postcss-preset-mantine", + "target": "npm:postcss-nested", + "type": "static" + } + ], + "npm:postcss-reduce-initial": [ + { + "source": "npm:postcss-reduce-initial", + "target": "npm:browserslist", + "type": "static" + }, + { + "source": "npm:postcss-reduce-initial", + "target": "npm:caniuse-api", + "type": "static" + }, + { + "source": "npm:postcss-reduce-initial", + "target": "npm:postcss", + "type": "static" + } + ], + "npm:postcss-reduce-transforms": [ + { + "source": "npm:postcss-reduce-transforms", + "target": "npm:postcss", + "type": "static" + }, + { + "source": "npm:postcss-reduce-transforms", + "target": "npm:postcss-value-parser", + "type": "static" + } + ], + "npm:postcss-selector-parser@6.1.2": [ + { + "source": "npm:postcss-selector-parser@6.1.2", + "target": "npm:cssesc", + "type": "static" + }, + { + "source": "npm:postcss-selector-parser@6.1.2", + "target": "npm:util-deprecate", + "type": "static" + } + ], + "npm:postcss-selector-parser": [ + { + "source": "npm:postcss-selector-parser", + "target": "npm:cssesc", + "type": "static" + }, + { + "source": "npm:postcss-selector-parser", + "target": "npm:util-deprecate", + "type": "static" + } + ], + "npm:postcss-simple-vars": [ + { + "source": "npm:postcss-simple-vars", + "target": "npm:postcss", + "type": "static" + } + ], + "npm:postcss-svgo": [ + { + "source": "npm:postcss-svgo", + "target": "npm:postcss", + "type": "static" + }, + { + "source": "npm:postcss-svgo", + "target": "npm:postcss-value-parser", + "type": "static" + }, + { + "source": "npm:postcss-svgo", + "target": "npm:svgo", + "type": "static" + } + ], + "npm:postcss-unique-selectors": [ + { + "source": "npm:postcss-unique-selectors", + "target": "npm:postcss", + "type": "static" + }, + { + "source": "npm:postcss-unique-selectors", + "target": "npm:postcss-selector-parser@6.1.2", + "type": "static" + } + ], + "npm:postcss-values-parser": [ + { + "source": "npm:postcss-values-parser", + "target": "npm:color-name", + "type": "static" + }, + { + "source": "npm:postcss-values-parser", + "target": "npm:is-url-superb", + "type": "static" + }, + { + "source": "npm:postcss-values-parser", + "target": "npm:postcss", + "type": "static" + }, + { + "source": "npm:postcss-values-parser", + "target": "npm:quote-unquote", + "type": "static" + } + ], + "npm:postcss": [ + { + "source": "npm:postcss", + "target": "npm:nanoid", + "type": "static" + }, + { + "source": "npm:postcss", + "target": "npm:picocolors", + "type": "static" + }, + { + "source": "npm:postcss", + "target": "npm:source-map-js", + "type": "static" + } + ], + "npm:preact-render-to-string": [ + { + "source": "npm:preact-render-to-string", + "target": "npm:preact", + "type": "static" + } + ], + "npm:prebuild-install": [ + { + "source": "npm:prebuild-install", + "target": "npm:detect-libc", + "type": "static" + }, + { + "source": "npm:prebuild-install", + "target": "npm:expand-template", + "type": "static" + }, + { + "source": "npm:prebuild-install", + "target": "npm:github-from-package", + "type": "static" + }, + { + "source": "npm:prebuild-install", + "target": "npm:minimist", + "type": "static" + }, + { + "source": "npm:prebuild-install", + "target": "npm:mkdirp-classic", + "type": "static" + }, + { + "source": "npm:prebuild-install", + "target": "npm:napi-build-utils", + "type": "static" + }, + { + "source": "npm:prebuild-install", + "target": "npm:node-abi", + "type": "static" + }, + { + "source": "npm:prebuild-install", + "target": "npm:pump", + "type": "static" + }, + { + "source": "npm:prebuild-install", + "target": "npm:rc", + "type": "static" + }, + { + "source": "npm:prebuild-install", + "target": "npm:simple-get", + "type": "static" + }, + { + "source": "npm:prebuild-install", + "target": "npm:tar-fs@2.1.4", + "type": "static" + }, + { + "source": "npm:prebuild-install", + "target": "npm:tunnel-agent", + "type": "static" + } + ], + "npm:prettier-linter-helpers": [ + { + "source": "npm:prettier-linter-helpers", + "target": "npm:fast-diff", + "type": "static" + } + ], + "npm:pretty-format": [ + { + "source": "npm:pretty-format", + "target": "npm:@jest/schemas", + "type": "static" + }, + { + "source": "npm:pretty-format", + "target": "npm:ansi-styles@5.2.0", + "type": "static" + }, + { + "source": "npm:pretty-format", + "target": "npm:react-is@18.3.1", + "type": "static" + } + ], + "npm:pretty-ms@7.0.1": [ + { + "source": "npm:pretty-ms@7.0.1", + "target": "npm:parse-ms@2.1.0", + "type": "static" + } + ], + "npm:pretty-ms": [ + { + "source": "npm:pretty-ms", + "target": "npm:parse-ms", + "type": "static" + } + ], + "npm:prisma": [ + { + "source": "npm:prisma", + "target": "npm:@prisma/config", + "type": "static" + }, + { + "source": "npm:prisma", + "target": "npm:@prisma/dev", + "type": "static" + }, + { + "source": "npm:prisma", + "target": "npm:@prisma/engines", + "type": "static" + }, + { + "source": "npm:prisma", + "target": "npm:@prisma/studio-core", + "type": "static" + }, + { + "source": "npm:prisma", + "target": "npm:mysql2", + "type": "static" + }, + { + "source": "npm:prisma", + "target": "npm:postgres", + "type": "static" + }, + { + "source": "npm:prisma", + "target": "npm:better-sqlite3", + "type": "static" + }, + { + "source": "npm:prisma", + "target": "npm:typescript", + "type": "static" + } + ], + "npm:promise-retry": [ + { + "source": "npm:promise-retry", + "target": "npm:err-code", + "type": "static" + }, + { + "source": "npm:promise-retry", + "target": "npm:retry@0.12.0", + "type": "static" + } + ], + "npm:prop-types": [ + { + "source": "npm:prop-types", + "target": "npm:loose-envify", + "type": "static" + }, + { + "source": "npm:prop-types", + "target": "npm:object-assign", + "type": "static" + }, + { + "source": "npm:prop-types", + "target": "npm:react-is", + "type": "static" + } + ], + "npm:proper-lockfile": [ + { + "source": "npm:proper-lockfile", + "target": "npm:graceful-fs", + "type": "static" + }, + { + "source": "npm:proper-lockfile", + "target": "npm:retry@0.12.0", + "type": "static" + }, + { + "source": "npm:proper-lockfile", + "target": "npm:signal-exit@3.0.7", + "type": "static" + } + ], + "npm:proxy-addr": [ + { + "source": "npm:proxy-addr", + "target": "npm:forwarded", + "type": "static" + }, + { + "source": "npm:proxy-addr", + "target": "npm:ipaddr.js@1.9.1", + "type": "static" + } + ], + "npm:proxy-agent": [ + { + "source": "npm:proxy-agent", + "target": "npm:agent-base", + "type": "static" + }, + { + "source": "npm:proxy-agent", + "target": "npm:debug", + "type": "static" + }, + { + "source": "npm:proxy-agent", + "target": "npm:http-proxy-agent", + "type": "static" + }, + { + "source": "npm:proxy-agent", + "target": "npm:https-proxy-agent@7.0.6", + "type": "static" + }, + { + "source": "npm:proxy-agent", + "target": "npm:lru-cache@7.18.3", + "type": "static" + }, + { + "source": "npm:proxy-agent", + "target": "npm:pac-proxy-agent", + "type": "static" + }, + { + "source": "npm:proxy-agent", + "target": "npm:proxy-from-env", + "type": "static" + }, + { + "source": "npm:proxy-agent", + "target": "npm:socks-proxy-agent", + "type": "static" + } + ], + "npm:pump": [ + { + "source": "npm:pump", + "target": "npm:end-of-stream", + "type": "static" + }, + { + "source": "npm:pump", + "target": "npm:once", + "type": "static" + } + ], + "npm:puppeteer-core": [ + { + "source": "npm:puppeteer-core", + "target": "npm:@puppeteer/browsers", + "type": "static" + }, + { + "source": "npm:puppeteer-core", + "target": "npm:chromium-bidi", + "type": "static" + }, + { + "source": "npm:puppeteer-core", + "target": "npm:debug", + "type": "static" + }, + { + "source": "npm:puppeteer-core", + "target": "npm:devtools-protocol", + "type": "static" + }, + { + "source": "npm:puppeteer-core", + "target": "npm:typed-query-selector", + "type": "static" + }, + { + "source": "npm:puppeteer-core", + "target": "npm:webdriver-bidi-protocol", + "type": "static" + }, + { + "source": "npm:puppeteer-core", + "target": "npm:ws@8.19.0", + "type": "static" + } + ], + "npm:puppeteer": [ + { + "source": "npm:puppeteer", + "target": "npm:@puppeteer/browsers", + "type": "static" + }, + { + "source": "npm:puppeteer", + "target": "npm:chromium-bidi", + "type": "static" + }, + { + "source": "npm:puppeteer", + "target": "npm:cosmiconfig", + "type": "static" + }, + { + "source": "npm:puppeteer", + "target": "npm:devtools-protocol", + "type": "static" + }, + { + "source": "npm:puppeteer", + "target": "npm:puppeteer-core", + "type": "static" + }, + { + "source": "npm:puppeteer", + "target": "npm:typed-query-selector", + "type": "static" + } + ], + "npm:qs": [ + { + "source": "npm:qs", + "target": "npm:side-channel", + "type": "static" + } + ], + "npm:raw-body": [ + { + "source": "npm:raw-body", + "target": "npm:bytes", + "type": "static" + }, + { + "source": "npm:raw-body", + "target": "npm:http-errors", + "type": "static" + }, + { + "source": "npm:raw-body", + "target": "npm:iconv-lite@0.7.2", + "type": "static" + }, + { + "source": "npm:raw-body", + "target": "npm:unpipe", + "type": "static" + } + ], + "npm:rc9": [ + { + "source": "npm:rc9", + "target": "npm:defu", + "type": "static" + }, + { + "source": "npm:rc9", + "target": "npm:destr", + "type": "static" + } + ], + "npm:rc": [ + { + "source": "npm:rc", + "target": "npm:deep-extend", + "type": "static" + }, + { + "source": "npm:rc", + "target": "npm:ini", + "type": "static" + }, + { + "source": "npm:rc", + "target": "npm:minimist", + "type": "static" + }, + { + "source": "npm:rc", + "target": "npm:strip-json-comments@2.0.1", + "type": "static" + } + ], + "npm:re2": [ + { + "source": "npm:re2", + "target": "npm:install-artifact-from-github", + "type": "static" + }, + { + "source": "npm:re2", + "target": "npm:nan", + "type": "static" + }, + { + "source": "npm:re2", + "target": "npm:node-gyp", + "type": "static" + } + ], + "npm:react-dom": [ + { + "source": "npm:react-dom", + "target": "npm:react", + "type": "static" + }, + { + "source": "npm:react-dom", + "target": "npm:scheduler", + "type": "static" + } + ], + "npm:react-number-format": [ + { + "source": "npm:react-number-format", + "target": "npm:react", + "type": "static" + }, + { + "source": "npm:react-number-format", + "target": "npm:react-dom", + "type": "static" + } + ], + "npm:react-remove-scroll-bar": [ + { + "source": "npm:react-remove-scroll-bar", + "target": "npm:react", + "type": "static" + }, + { + "source": "npm:react-remove-scroll-bar", + "target": "npm:react-style-singleton", + "type": "static" + }, + { + "source": "npm:react-remove-scroll-bar", + "target": "npm:tslib", + "type": "static" + }, + { + "source": "npm:react-remove-scroll-bar", + "target": "npm:@types/react", + "type": "static" + } + ], + "npm:react-remove-scroll": [ + { + "source": "npm:react-remove-scroll", + "target": "npm:react", + "type": "static" + }, + { + "source": "npm:react-remove-scroll", + "target": "npm:react-remove-scroll-bar", + "type": "static" + }, + { + "source": "npm:react-remove-scroll", + "target": "npm:react-style-singleton", + "type": "static" + }, + { + "source": "npm:react-remove-scroll", + "target": "npm:tslib", + "type": "static" + }, + { + "source": "npm:react-remove-scroll", + "target": "npm:use-callback-ref", + "type": "static" + }, + { + "source": "npm:react-remove-scroll", + "target": "npm:use-sidecar", + "type": "static" + }, + { + "source": "npm:react-remove-scroll", + "target": "npm:@types/react", + "type": "static" + } + ], + "npm:react-streaming": [ + { + "source": "npm:react-streaming", + "target": "npm:@brillout/import", + "type": "static" + }, + { + "source": "npm:react-streaming", + "target": "npm:@brillout/json-serializer", + "type": "static" + }, + { + "source": "npm:react-streaming", + "target": "npm:@brillout/picocolors", + "type": "static" + }, + { + "source": "npm:react-streaming", + "target": "npm:isbot-fast", + "type": "static" + }, + { + "source": "npm:react-streaming", + "target": "npm:react", + "type": "static" + }, + { + "source": "npm:react-streaming", + "target": "npm:react-dom", + "type": "static" + } + ], + "npm:react-style-singleton": [ + { + "source": "npm:react-style-singleton", + "target": "npm:get-nonce", + "type": "static" + }, + { + "source": "npm:react-style-singleton", + "target": "npm:react", + "type": "static" + }, + { + "source": "npm:react-style-singleton", + "target": "npm:tslib", + "type": "static" + }, + { + "source": "npm:react-style-singleton", + "target": "npm:@types/react", + "type": "static" + } + ], + "npm:react-textarea-autosize": [ + { + "source": "npm:react-textarea-autosize", + "target": "npm:@babel/runtime", + "type": "static" + }, + { + "source": "npm:react-textarea-autosize", + "target": "npm:react", + "type": "static" + }, + { + "source": "npm:react-textarea-autosize", + "target": "npm:use-composed-ref", + "type": "static" + }, + { + "source": "npm:react-textarea-autosize", + "target": "npm:use-latest", + "type": "static" + } + ], + "npm:read-package-json-fast": [ + { + "source": "npm:read-package-json-fast", + "target": "npm:json-parse-even-better-errors", + "type": "static" + }, + { + "source": "npm:read-package-json-fast", + "target": "npm:npm-normalize-package-bin", + "type": "static" + } + ], + "npm:readable-stream": [ + { + "source": "npm:readable-stream", + "target": "npm:inherits", + "type": "static" + }, + { + "source": "npm:readable-stream", + "target": "npm:string_decoder", + "type": "static" + }, + { + "source": "npm:readable-stream", + "target": "npm:util-deprecate", + "type": "static" + } + ], + "npm:reflect.getprototypeof": [ + { + "source": "npm:reflect.getprototypeof", + "target": "npm:call-bind", + "type": "static" + }, + { + "source": "npm:reflect.getprototypeof", + "target": "npm:define-properties", + "type": "static" + }, + { + "source": "npm:reflect.getprototypeof", + "target": "npm:es-abstract", + "type": "static" + }, + { + "source": "npm:reflect.getprototypeof", + "target": "npm:es-errors", + "type": "static" + }, + { + "source": "npm:reflect.getprototypeof", + "target": "npm:es-object-atoms", + "type": "static" + }, + { + "source": "npm:reflect.getprototypeof", + "target": "npm:get-intrinsic", + "type": "static" + }, + { + "source": "npm:reflect.getprototypeof", + "target": "npm:get-proto", + "type": "static" + }, + { + "source": "npm:reflect.getprototypeof", + "target": "npm:which-builtin-type", + "type": "static" + } + ], + "npm:regexp.prototype.flags": [ + { + "source": "npm:regexp.prototype.flags", + "target": "npm:call-bind", + "type": "static" + }, + { + "source": "npm:regexp.prototype.flags", + "target": "npm:define-properties", + "type": "static" + }, + { + "source": "npm:regexp.prototype.flags", + "target": "npm:es-errors", + "type": "static" + }, + { + "source": "npm:regexp.prototype.flags", + "target": "npm:get-proto", + "type": "static" + }, + { + "source": "npm:regexp.prototype.flags", + "target": "npm:gopd", + "type": "static" + }, + { + "source": "npm:regexp.prototype.flags", + "target": "npm:set-function-name", + "type": "static" + } + ], + "npm:require-one-of": [ + { + "source": "npm:require-one-of", + "target": "npm:debug", + "type": "static" + }, + { + "source": "npm:require-one-of", + "target": "npm:humanize-list", + "type": "static" + }, + { + "source": "npm:require-one-of", + "target": "npm:null-prototype-object", + "type": "static" + }, + { + "source": "npm:require-one-of", + "target": "npm:resolve-from", + "type": "static" + } + ], + "npm:resolve@1.22.10": [ + { + "source": "npm:resolve@1.22.10", + "target": "npm:is-core-module", + "type": "static" + }, + { + "source": "npm:resolve@1.22.10", + "target": "npm:path-parse", + "type": "static" + }, + { + "source": "npm:resolve@1.22.10", + "target": "npm:supports-preserve-symlinks-flag", + "type": "static" + } + ], + "npm:resolve": [ + { + "source": "npm:resolve", + "target": "npm:is-core-module", + "type": "static" + }, + { + "source": "npm:resolve", + "target": "npm:path-parse", + "type": "static" + }, + { + "source": "npm:resolve", + "target": "npm:supports-preserve-symlinks-flag", + "type": "static" + } + ], + "npm:responselike": [ + { + "source": "npm:responselike", + "target": "npm:lowercase-keys", + "type": "static" + } + ], + "npm:restore-cursor": [ + { + "source": "npm:restore-cursor", + "target": "npm:onetime", + "type": "static" + }, + { + "source": "npm:restore-cursor", + "target": "npm:signal-exit@3.0.7", + "type": "static" + } + ], + "npm:rimraf": [ + { + "source": "npm:rimraf", + "target": "npm:glob", + "type": "static" + }, + { + "source": "npm:rimraf", + "target": "npm:package-json-from-dist", + "type": "static" + } + ], + "npm:rolldown-plugin-dts": [ + { + "source": "npm:rolldown-plugin-dts", + "target": "npm:@babel/generator@8.0.0-rc.2", + "type": "static" + }, + { + "source": "npm:rolldown-plugin-dts", + "target": "npm:@babel/helper-validator-identifier@8.0.0-rc.2", + "type": "static" + }, + { + "source": "npm:rolldown-plugin-dts", + "target": "npm:@babel/parser@8.0.0-rc.2", + "type": "static" + }, + { + "source": "npm:rolldown-plugin-dts", + "target": "npm:@babel/types@8.0.0-rc.2", + "type": "static" + }, + { + "source": "npm:rolldown-plugin-dts", + "target": "npm:ast-kit", + "type": "static" + }, + { + "source": "npm:rolldown-plugin-dts", + "target": "npm:birpc", + "type": "static" + }, + { + "source": "npm:rolldown-plugin-dts", + "target": "npm:dts-resolver", + "type": "static" + }, + { + "source": "npm:rolldown-plugin-dts", + "target": "npm:get-tsconfig", + "type": "static" + }, + { + "source": "npm:rolldown-plugin-dts", + "target": "npm:obug", + "type": "static" + }, + { + "source": "npm:rolldown-plugin-dts", + "target": "npm:rolldown", + "type": "static" + }, + { + "source": "npm:rolldown-plugin-dts", + "target": "npm:typescript", + "type": "static" + } + ], + "npm:rolldown@1.0.0-beta.51": [ + { + "source": "npm:rolldown@1.0.0-beta.51", + "target": "npm:@oxc-project/types@0.98.0", + "type": "static" + }, + { + "source": "npm:rolldown@1.0.0-beta.51", + "target": "npm:@rolldown/pluginutils@1.0.0-beta.51", + "type": "static" + }, + { + "source": "npm:rolldown@1.0.0-beta.51", + "target": "npm:@rolldown/binding-android-arm64@1.0.0-beta.51", + "type": "static" + }, + { + "source": "npm:rolldown@1.0.0-beta.51", + "target": "npm:@rolldown/binding-darwin-arm64@1.0.0-beta.51", + "type": "static" + }, + { + "source": "npm:rolldown@1.0.0-beta.51", + "target": "npm:@rolldown/binding-darwin-x64@1.0.0-beta.51", + "type": "static" + }, + { + "source": "npm:rolldown@1.0.0-beta.51", + "target": "npm:@rolldown/binding-freebsd-x64@1.0.0-beta.51", + "type": "static" + }, + { + "source": "npm:rolldown@1.0.0-beta.51", + "target": "npm:@rolldown/binding-linux-arm-gnueabihf@1.0.0-beta.51", + "type": "static" + }, + { + "source": "npm:rolldown@1.0.0-beta.51", + "target": "npm:@rolldown/binding-linux-arm64-gnu@1.0.0-beta.51", + "type": "static" + }, + { + "source": "npm:rolldown@1.0.0-beta.51", + "target": "npm:@rolldown/binding-linux-arm64-musl@1.0.0-beta.51", + "type": "static" + }, + { + "source": "npm:rolldown@1.0.0-beta.51", + "target": "npm:@rolldown/binding-linux-x64-gnu@1.0.0-beta.51", + "type": "static" + }, + { + "source": "npm:rolldown@1.0.0-beta.51", + "target": "npm:@rolldown/binding-linux-x64-musl@1.0.0-beta.51", + "type": "static" + }, + { + "source": "npm:rolldown@1.0.0-beta.51", + "target": "npm:@rolldown/binding-openharmony-arm64@1.0.0-beta.51", + "type": "static" + }, + { + "source": "npm:rolldown@1.0.0-beta.51", + "target": "npm:@rolldown/binding-wasm32-wasi@1.0.0-beta.51", + "type": "static" + }, + { + "source": "npm:rolldown@1.0.0-beta.51", + "target": "npm:@rolldown/binding-win32-arm64-msvc@1.0.0-beta.51", + "type": "static" + }, + { + "source": "npm:rolldown@1.0.0-beta.51", + "target": "npm:@rolldown/binding-win32-ia32-msvc", + "type": "static" + }, + { + "source": "npm:rolldown@1.0.0-beta.51", + "target": "npm:@rolldown/binding-win32-x64-msvc@1.0.0-beta.51", + "type": "static" + } + ], + "npm:rolldown@1.0.0-rc.11": [ + { + "source": "npm:rolldown@1.0.0-rc.11", + "target": "npm:@oxc-project/types@0.122.0", + "type": "static" + }, + { + "source": "npm:rolldown@1.0.0-rc.11", + "target": "npm:@rolldown/pluginutils@1.0.0-rc.11", + "type": "static" + }, + { + "source": "npm:rolldown@1.0.0-rc.11", + "target": "npm:@rolldown/binding-android-arm64@1.0.0-rc.11", + "type": "static" + }, + { + "source": "npm:rolldown@1.0.0-rc.11", + "target": "npm:@rolldown/binding-darwin-arm64@1.0.0-rc.11", + "type": "static" + }, + { + "source": "npm:rolldown@1.0.0-rc.11", + "target": "npm:@rolldown/binding-darwin-x64@1.0.0-rc.11", + "type": "static" + }, + { + "source": "npm:rolldown@1.0.0-rc.11", + "target": "npm:@rolldown/binding-freebsd-x64@1.0.0-rc.11", + "type": "static" + }, + { + "source": "npm:rolldown@1.0.0-rc.11", + "target": "npm:@rolldown/binding-linux-arm-gnueabihf@1.0.0-rc.11", + "type": "static" + }, + { + "source": "npm:rolldown@1.0.0-rc.11", + "target": "npm:@rolldown/binding-linux-arm64-gnu@1.0.0-rc.11", + "type": "static" + }, + { + "source": "npm:rolldown@1.0.0-rc.11", + "target": "npm:@rolldown/binding-linux-arm64-musl@1.0.0-rc.11", + "type": "static" + }, + { + "source": "npm:rolldown@1.0.0-rc.11", + "target": "npm:@rolldown/binding-linux-ppc64-gnu@1.0.0-rc.11", + "type": "static" + }, + { + "source": "npm:rolldown@1.0.0-rc.11", + "target": "npm:@rolldown/binding-linux-s390x-gnu@1.0.0-rc.11", + "type": "static" + }, + { + "source": "npm:rolldown@1.0.0-rc.11", + "target": "npm:@rolldown/binding-linux-x64-gnu", + "type": "static" + }, + { + "source": "npm:rolldown@1.0.0-rc.11", + "target": "npm:@rolldown/binding-linux-x64-musl", + "type": "static" + }, + { + "source": "npm:rolldown@1.0.0-rc.11", + "target": "npm:@rolldown/binding-openharmony-arm64@1.0.0-rc.11", + "type": "static" + }, + { + "source": "npm:rolldown@1.0.0-rc.11", + "target": "npm:@rolldown/binding-wasm32-wasi@1.0.0-rc.11", + "type": "static" + }, + { + "source": "npm:rolldown@1.0.0-rc.11", + "target": "npm:@rolldown/binding-win32-arm64-msvc@1.0.0-rc.11", + "type": "static" + }, + { + "source": "npm:rolldown@1.0.0-rc.11", + "target": "npm:@rolldown/binding-win32-x64-msvc@1.0.0-rc.11", + "type": "static" + } + ], + "npm:rolldown": [ + { + "source": "npm:rolldown", + "target": "npm:@oxc-project/types@0.115.0", + "type": "static" + }, + { + "source": "npm:rolldown", + "target": "npm:@rolldown/pluginutils@1.0.0-rc.9", + "type": "static" + }, + { + "source": "npm:rolldown", + "target": "npm:@rolldown/binding-android-arm64@1.0.0-rc.9", + "type": "static" + }, + { + "source": "npm:rolldown", + "target": "npm:@rolldown/binding-darwin-arm64@1.0.0-rc.9", + "type": "static" + }, + { + "source": "npm:rolldown", + "target": "npm:@rolldown/binding-darwin-x64@1.0.0-rc.9", + "type": "static" + }, + { + "source": "npm:rolldown", + "target": "npm:@rolldown/binding-freebsd-x64@1.0.0-rc.9", + "type": "static" + }, + { + "source": "npm:rolldown", + "target": "npm:@rolldown/binding-linux-arm-gnueabihf@1.0.0-rc.9", + "type": "static" + }, + { + "source": "npm:rolldown", + "target": "npm:@rolldown/binding-linux-arm64-gnu@1.0.0-rc.9", + "type": "static" + }, + { + "source": "npm:rolldown", + "target": "npm:@rolldown/binding-linux-arm64-musl@1.0.0-rc.9", + "type": "static" + }, + { + "source": "npm:rolldown", + "target": "npm:@rolldown/binding-linux-ppc64-gnu@1.0.0-rc.9", + "type": "static" + }, + { + "source": "npm:rolldown", + "target": "npm:@rolldown/binding-linux-s390x-gnu@1.0.0-rc.9", + "type": "static" + }, + { + "source": "npm:rolldown", + "target": "npm:@rolldown/binding-linux-x64-gnu@1.0.0-rc.9", + "type": "static" + }, + { + "source": "npm:rolldown", + "target": "npm:@rolldown/binding-linux-x64-musl@1.0.0-rc.9", + "type": "static" + }, + { + "source": "npm:rolldown", + "target": "npm:@rolldown/binding-openharmony-arm64@1.0.0-rc.9", + "type": "static" + }, + { + "source": "npm:rolldown", + "target": "npm:@rolldown/binding-wasm32-wasi@1.0.0-rc.9", + "type": "static" + }, + { + "source": "npm:rolldown", + "target": "npm:@rolldown/binding-win32-arm64-msvc@1.0.0-rc.9", + "type": "static" + }, + { + "source": "npm:rolldown", + "target": "npm:@rolldown/binding-win32-x64-msvc@1.0.0-rc.9", + "type": "static" + } + ], + "npm:router": [ + { + "source": "npm:router", + "target": "npm:debug", + "type": "static" + }, + { + "source": "npm:router", + "target": "npm:depd", + "type": "static" + }, + { + "source": "npm:router", + "target": "npm:is-promise", + "type": "static" + }, + { + "source": "npm:router", + "target": "npm:parseurl", + "type": "static" + }, + { + "source": "npm:router", + "target": "npm:path-to-regexp", + "type": "static" + } + ], + "npm:run-parallel": [ + { + "source": "npm:run-parallel", + "target": "npm:queue-microtask", + "type": "static" + } + ], + "npm:safe-array-concat": [ + { + "source": "npm:safe-array-concat", + "target": "npm:call-bind", + "type": "static" + }, + { + "source": "npm:safe-array-concat", + "target": "npm:call-bound", + "type": "static" + }, + { + "source": "npm:safe-array-concat", + "target": "npm:get-intrinsic", + "type": "static" + }, + { + "source": "npm:safe-array-concat", + "target": "npm:has-symbols", + "type": "static" + }, + { + "source": "npm:safe-array-concat", + "target": "npm:isarray", + "type": "static" + } + ], + "npm:safe-push-apply": [ + { + "source": "npm:safe-push-apply", + "target": "npm:es-errors", + "type": "static" + }, + { + "source": "npm:safe-push-apply", + "target": "npm:isarray", + "type": "static" + } + ], + "npm:safe-regex-test": [ + { + "source": "npm:safe-regex-test", + "target": "npm:call-bound", + "type": "static" + }, + { + "source": "npm:safe-regex-test", + "target": "npm:es-errors", + "type": "static" + }, + { + "source": "npm:safe-regex-test", + "target": "npm:is-regex", + "type": "static" + } + ], + "npm:safe-regex2": [ + { + "source": "npm:safe-regex2", + "target": "npm:ret", + "type": "static" + } + ], + "npm:send": [ + { + "source": "npm:send", + "target": "npm:debug", + "type": "static" + }, + { + "source": "npm:send", + "target": "npm:encodeurl", + "type": "static" + }, + { + "source": "npm:send", + "target": "npm:escape-html", + "type": "static" + }, + { + "source": "npm:send", + "target": "npm:etag", + "type": "static" + }, + { + "source": "npm:send", + "target": "npm:fresh", + "type": "static" + }, + { + "source": "npm:send", + "target": "npm:http-errors", + "type": "static" + }, + { + "source": "npm:send", + "target": "npm:mime-types", + "type": "static" + }, + { + "source": "npm:send", + "target": "npm:ms", + "type": "static" + }, + { + "source": "npm:send", + "target": "npm:on-finished", + "type": "static" + }, + { + "source": "npm:send", + "target": "npm:range-parser", + "type": "static" + }, + { + "source": "npm:send", + "target": "npm:statuses", + "type": "static" + } + ], + "npm:serialize-error": [ + { + "source": "npm:serialize-error", + "target": "npm:type-fest@0.20.2", + "type": "static" + } + ], + "npm:seroval-plugins": [ + { + "source": "npm:seroval-plugins", + "target": "npm:seroval", + "type": "static" + } + ], + "npm:serve-static": [ + { + "source": "npm:serve-static", + "target": "npm:encodeurl", + "type": "static" + }, + { + "source": "npm:serve-static", + "target": "npm:escape-html", + "type": "static" + }, + { + "source": "npm:serve-static", + "target": "npm:parseurl", + "type": "static" + }, + { + "source": "npm:serve-static", + "target": "npm:send", + "type": "static" + } + ], + "npm:set-function-length": [ + { + "source": "npm:set-function-length", + "target": "npm:define-data-property", + "type": "static" + }, + { + "source": "npm:set-function-length", + "target": "npm:es-errors", + "type": "static" + }, + { + "source": "npm:set-function-length", + "target": "npm:function-bind", + "type": "static" + }, + { + "source": "npm:set-function-length", + "target": "npm:get-intrinsic", + "type": "static" + }, + { + "source": "npm:set-function-length", + "target": "npm:gopd", + "type": "static" + }, + { + "source": "npm:set-function-length", + "target": "npm:has-property-descriptors", + "type": "static" + } + ], + "npm:set-function-name": [ + { + "source": "npm:set-function-name", + "target": "npm:define-data-property", + "type": "static" + }, + { + "source": "npm:set-function-name", + "target": "npm:es-errors", + "type": "static" + }, + { + "source": "npm:set-function-name", + "target": "npm:functions-have-names", + "type": "static" + }, + { + "source": "npm:set-function-name", + "target": "npm:has-property-descriptors", + "type": "static" + } + ], + "npm:set-proto": [ + { + "source": "npm:set-proto", + "target": "npm:dunder-proto", + "type": "static" + }, + { + "source": "npm:set-proto", + "target": "npm:es-errors", + "type": "static" + }, + { + "source": "npm:set-proto", + "target": "npm:es-object-atoms", + "type": "static" + } + ], + "npm:sharp@0.33.5": [ + { + "source": "npm:sharp@0.33.5", + "target": "npm:color", + "type": "static" + }, + { + "source": "npm:sharp@0.33.5", + "target": "npm:detect-libc", + "type": "static" + }, + { + "source": "npm:sharp@0.33.5", + "target": "npm:semver@7.7.4", + "type": "static" + }, + { + "source": "npm:sharp@0.33.5", + "target": "npm:@img/sharp-darwin-arm64@0.33.5", + "type": "static" + }, + { + "source": "npm:sharp@0.33.5", + "target": "npm:@img/sharp-darwin-x64@0.33.5", + "type": "static" + }, + { + "source": "npm:sharp@0.33.5", + "target": "npm:@img/sharp-libvips-darwin-arm64@1.0.4", + "type": "static" + }, + { + "source": "npm:sharp@0.33.5", + "target": "npm:@img/sharp-libvips-darwin-x64@1.0.4", + "type": "static" + }, + { + "source": "npm:sharp@0.33.5", + "target": "npm:@img/sharp-libvips-linux-arm@1.0.5", + "type": "static" + }, + { + "source": "npm:sharp@0.33.5", + "target": "npm:@img/sharp-libvips-linux-arm64@1.0.4", + "type": "static" + }, + { + "source": "npm:sharp@0.33.5", + "target": "npm:@img/sharp-libvips-linux-s390x@1.0.4", + "type": "static" + }, + { + "source": "npm:sharp@0.33.5", + "target": "npm:@img/sharp-libvips-linux-x64@1.0.4", + "type": "static" + }, + { + "source": "npm:sharp@0.33.5", + "target": "npm:@img/sharp-libvips-linuxmusl-arm64@1.0.4", + "type": "static" + }, + { + "source": "npm:sharp@0.33.5", + "target": "npm:@img/sharp-libvips-linuxmusl-x64@1.0.4", + "type": "static" + }, + { + "source": "npm:sharp@0.33.5", + "target": "npm:@img/sharp-linux-arm@0.33.5", + "type": "static" + }, + { + "source": "npm:sharp@0.33.5", + "target": "npm:@img/sharp-linux-arm64@0.33.5", + "type": "static" + }, + { + "source": "npm:sharp@0.33.5", + "target": "npm:@img/sharp-linux-s390x@0.33.5", + "type": "static" + }, + { + "source": "npm:sharp@0.33.5", + "target": "npm:@img/sharp-linux-x64@0.33.5", + "type": "static" + }, + { + "source": "npm:sharp@0.33.5", + "target": "npm:@img/sharp-linuxmusl-arm64@0.33.5", + "type": "static" + }, + { + "source": "npm:sharp@0.33.5", + "target": "npm:@img/sharp-linuxmusl-x64@0.33.5", + "type": "static" + }, + { + "source": "npm:sharp@0.33.5", + "target": "npm:@img/sharp-wasm32@0.33.5", + "type": "static" + }, + { + "source": "npm:sharp@0.33.5", + "target": "npm:@img/sharp-win32-ia32@0.33.5", + "type": "static" + }, + { + "source": "npm:sharp@0.33.5", + "target": "npm:@img/sharp-win32-x64@0.33.5", + "type": "static" + } + ], + "npm:sharp": [ + { + "source": "npm:sharp", + "target": "npm:@img/colour", + "type": "static" + }, + { + "source": "npm:sharp", + "target": "npm:detect-libc", + "type": "static" + }, + { + "source": "npm:sharp", + "target": "npm:semver@7.7.4", + "type": "static" + }, + { + "source": "npm:sharp", + "target": "npm:@img/sharp-darwin-arm64@0.34.5", + "type": "static" + }, + { + "source": "npm:sharp", + "target": "npm:@img/sharp-darwin-x64@0.34.5", + "type": "static" + }, + { + "source": "npm:sharp", + "target": "npm:@img/sharp-libvips-darwin-arm64@1.2.4", + "type": "static" + }, + { + "source": "npm:sharp", + "target": "npm:@img/sharp-libvips-darwin-x64@1.2.4", + "type": "static" + }, + { + "source": "npm:sharp", + "target": "npm:@img/sharp-libvips-linux-arm@1.2.4", + "type": "static" + }, + { + "source": "npm:sharp", + "target": "npm:@img/sharp-libvips-linux-arm64@1.2.4", + "type": "static" + }, + { + "source": "npm:sharp", + "target": "npm:@img/sharp-libvips-linux-ppc64", + "type": "static" + }, + { + "source": "npm:sharp", + "target": "npm:@img/sharp-libvips-linux-riscv64", + "type": "static" + }, + { + "source": "npm:sharp", + "target": "npm:@img/sharp-libvips-linux-s390x@1.2.4", + "type": "static" + }, + { + "source": "npm:sharp", + "target": "npm:@img/sharp-libvips-linux-x64", + "type": "static" + }, + { + "source": "npm:sharp", + "target": "npm:@img/sharp-libvips-linuxmusl-arm64@1.2.4", + "type": "static" + }, + { + "source": "npm:sharp", + "target": "npm:@img/sharp-libvips-linuxmusl-x64", + "type": "static" + }, + { + "source": "npm:sharp", + "target": "npm:@img/sharp-linux-arm@0.34.5", + "type": "static" + }, + { + "source": "npm:sharp", + "target": "npm:@img/sharp-linux-arm64@0.34.5", + "type": "static" + }, + { + "source": "npm:sharp", + "target": "npm:@img/sharp-linux-ppc64", + "type": "static" + }, + { + "source": "npm:sharp", + "target": "npm:@img/sharp-linux-riscv64", + "type": "static" + }, + { + "source": "npm:sharp", + "target": "npm:@img/sharp-linux-s390x@0.34.5", + "type": "static" + }, + { + "source": "npm:sharp", + "target": "npm:@img/sharp-linux-x64", + "type": "static" + }, + { + "source": "npm:sharp", + "target": "npm:@img/sharp-linuxmusl-arm64@0.34.5", + "type": "static" + }, + { + "source": "npm:sharp", + "target": "npm:@img/sharp-linuxmusl-x64", + "type": "static" + }, + { + "source": "npm:sharp", + "target": "npm:@img/sharp-wasm32@0.34.5", + "type": "static" + }, + { + "source": "npm:sharp", + "target": "npm:@img/sharp-win32-arm64", + "type": "static" + }, + { + "source": "npm:sharp", + "target": "npm:@img/sharp-win32-ia32@0.34.5", + "type": "static" + }, + { + "source": "npm:sharp", + "target": "npm:@img/sharp-win32-x64@0.34.5", + "type": "static" + } + ], + "npm:shebang-command": [ + { + "source": "npm:shebang-command", + "target": "npm:shebang-regex", + "type": "static" + } + ], + "npm:side-channel-list": [ + { + "source": "npm:side-channel-list", + "target": "npm:es-errors", + "type": "static" + }, + { + "source": "npm:side-channel-list", + "target": "npm:object-inspect", + "type": "static" + } + ], + "npm:side-channel-map": [ + { + "source": "npm:side-channel-map", + "target": "npm:call-bound", + "type": "static" + }, + { + "source": "npm:side-channel-map", + "target": "npm:es-errors", + "type": "static" + }, + { + "source": "npm:side-channel-map", + "target": "npm:get-intrinsic", + "type": "static" + }, + { + "source": "npm:side-channel-map", + "target": "npm:object-inspect", + "type": "static" + } + ], + "npm:side-channel-weakmap": [ + { + "source": "npm:side-channel-weakmap", + "target": "npm:call-bound", + "type": "static" + }, + { + "source": "npm:side-channel-weakmap", + "target": "npm:es-errors", + "type": "static" + }, + { + "source": "npm:side-channel-weakmap", + "target": "npm:get-intrinsic", + "type": "static" + }, + { + "source": "npm:side-channel-weakmap", + "target": "npm:object-inspect", + "type": "static" + }, + { + "source": "npm:side-channel-weakmap", + "target": "npm:side-channel-map", + "type": "static" + } + ], + "npm:side-channel": [ + { + "source": "npm:side-channel", + "target": "npm:es-errors", + "type": "static" + }, + { + "source": "npm:side-channel", + "target": "npm:object-inspect", + "type": "static" + }, + { + "source": "npm:side-channel", + "target": "npm:side-channel-list", + "type": "static" + }, + { + "source": "npm:side-channel", + "target": "npm:side-channel-map", + "type": "static" + }, + { + "source": "npm:side-channel", + "target": "npm:side-channel-weakmap", + "type": "static" + } + ], + "npm:simple-get": [ + { + "source": "npm:simple-get", + "target": "npm:decompress-response", + "type": "static" + }, + { + "source": "npm:simple-get", + "target": "npm:once", + "type": "static" + }, + { + "source": "npm:simple-get", + "target": "npm:simple-concat", + "type": "static" + } + ], + "npm:simple-swizzle": [ + { + "source": "npm:simple-swizzle", + "target": "npm:is-arrayish@0.3.4", + "type": "static" + } + ], + "npm:sirv": [ + { + "source": "npm:sirv", + "target": "npm:@polka/url", + "type": "static" + }, + { + "source": "npm:sirv", + "target": "npm:mrmime", + "type": "static" + }, + { + "source": "npm:sirv", + "target": "npm:totalist", + "type": "static" + } + ], + "npm:socks-proxy-agent": [ + { + "source": "npm:socks-proxy-agent", + "target": "npm:agent-base", + "type": "static" + }, + { + "source": "npm:socks-proxy-agent", + "target": "npm:debug", + "type": "static" + }, + { + "source": "npm:socks-proxy-agent", + "target": "npm:socks", + "type": "static" + } + ], + "npm:socks": [ + { + "source": "npm:socks", + "target": "npm:ip-address", + "type": "static" + }, + { + "source": "npm:socks", + "target": "npm:smart-buffer", + "type": "static" + } + ], + "npm:solid-element": [ + { + "source": "npm:solid-element", + "target": "npm:component-register", + "type": "static" + }, + { + "source": "npm:solid-element", + "target": "npm:solid-js", + "type": "static" + } + ], + "npm:solid-js": [ + { + "source": "npm:solid-js", + "target": "npm:csstype", + "type": "static" + }, + { + "source": "npm:solid-js", + "target": "npm:seroval", + "type": "static" + }, + { + "source": "npm:solid-js", + "target": "npm:seroval-plugins", + "type": "static" + } + ], + "npm:solid-motionone": [ + { + "source": "npm:solid-motionone", + "target": "npm:@motionone/dom", + "type": "static" + }, + { + "source": "npm:solid-motionone", + "target": "npm:@motionone/utils", + "type": "static" + }, + { + "source": "npm:solid-motionone", + "target": "npm:@solid-primitives/props", + "type": "static" + }, + { + "source": "npm:solid-motionone", + "target": "npm:@solid-primitives/refs", + "type": "static" + }, + { + "source": "npm:solid-motionone", + "target": "npm:@solid-primitives/transition-group", + "type": "static" + }, + { + "source": "npm:solid-motionone", + "target": "npm:csstype", + "type": "static" + }, + { + "source": "npm:solid-motionone", + "target": "npm:solid-js", + "type": "static" + } + ], + "npm:solid-refresh": [ + { + "source": "npm:solid-refresh", + "target": "npm:@babel/generator", + "type": "static" + }, + { + "source": "npm:solid-refresh", + "target": "npm:@babel/helper-module-imports", + "type": "static" + }, + { + "source": "npm:solid-refresh", + "target": "npm:@babel/types", + "type": "static" + }, + { + "source": "npm:solid-refresh", + "target": "npm:solid-js", + "type": "static" + } + ], + "npm:sonic-boom": [ + { + "source": "npm:sonic-boom", + "target": "npm:atomic-sleep", + "type": "static" + } + ], + "npm:source-map-support": [ + { + "source": "npm:source-map-support", + "target": "npm:buffer-from", + "type": "static" + }, + { + "source": "npm:source-map-support", + "target": "npm:source-map", + "type": "static" + } + ], + "npm:ssri": [ + { + "source": "npm:ssri", + "target": "npm:minipass", + "type": "static" + } + ], + "npm:standaloner": [ + { + "source": "npm:standaloner", + "target": "npm:@vercel/nft@0.30.4", + "type": "static" + }, + { + "source": "npm:standaloner", + "target": "npm:acorn", + "type": "static" + }, + { + "source": "npm:standaloner", + "target": "npm:estree-walker", + "type": "static" + }, + { + "source": "npm:standaloner", + "target": "npm:magic-string", + "type": "static" + }, + { + "source": "npm:standaloner", + "target": "npm:rolldown@1.0.0-beta.51", + "type": "static" + } + ], + "npm:standaloner@0.2.2": [ + { + "source": "npm:standaloner@0.2.2", + "target": "npm:@vercel/nft", + "type": "static" + }, + { + "source": "npm:standaloner@0.2.2", + "target": "npm:acorn", + "type": "static" + }, + { + "source": "npm:standaloner@0.2.2", + "target": "npm:estree-walker", + "type": "static" + }, + { + "source": "npm:standaloner@0.2.2", + "target": "npm:magic-string", + "type": "static" + }, + { + "source": "npm:standaloner@0.2.2", + "target": "npm:p-limit", + "type": "static" + }, + { + "source": "npm:standaloner@0.2.2", + "target": "npm:rolldown@1.0.0-beta.51", + "type": "static" + } + ], + "npm:stop-iteration-iterator": [ + { + "source": "npm:stop-iteration-iterator", + "target": "npm:es-errors", + "type": "static" + }, + { + "source": "npm:stop-iteration-iterator", + "target": "npm:internal-slot", + "type": "static" + } + ], + "npm:streamx": [ + { + "source": "npm:streamx", + "target": "npm:events-universal", + "type": "static" + }, + { + "source": "npm:streamx", + "target": "npm:fast-fifo", + "type": "static" + }, + { + "source": "npm:streamx", + "target": "npm:text-decoder", + "type": "static" + } + ], + "npm:string-width": [ + { + "source": "npm:string-width", + "target": "npm:emoji-regex", + "type": "static" + }, + { + "source": "npm:string-width", + "target": "npm:is-fullwidth-code-point", + "type": "static" + }, + { + "source": "npm:string-width", + "target": "npm:strip-ansi@6.0.1", + "type": "static" + } + ], + "npm:string-width-cjs": [ + { + "source": "npm:string-width-cjs", + "target": "npm:emoji-regex", + "type": "static" + }, + { + "source": "npm:string-width-cjs", + "target": "npm:is-fullwidth-code-point", + "type": "static" + }, + { + "source": "npm:string-width-cjs", + "target": "npm:strip-ansi@6.0.1", + "type": "static" + } + ], + "npm:string-width@5.1.2": [ + { + "source": "npm:string-width@5.1.2", + "target": "npm:eastasianwidth", + "type": "static" + }, + { + "source": "npm:string-width@5.1.2", + "target": "npm:emoji-regex@9.2.2", + "type": "static" + }, + { + "source": "npm:string-width@5.1.2", + "target": "npm:strip-ansi", + "type": "static" + } + ], + "npm:string.prototype.matchall": [ + { + "source": "npm:string.prototype.matchall", + "target": "npm:call-bind", + "type": "static" + }, + { + "source": "npm:string.prototype.matchall", + "target": "npm:call-bound", + "type": "static" + }, + { + "source": "npm:string.prototype.matchall", + "target": "npm:define-properties", + "type": "static" + }, + { + "source": "npm:string.prototype.matchall", + "target": "npm:es-abstract", + "type": "static" + }, + { + "source": "npm:string.prototype.matchall", + "target": "npm:es-errors", + "type": "static" + }, + { + "source": "npm:string.prototype.matchall", + "target": "npm:es-object-atoms", + "type": "static" + }, + { + "source": "npm:string.prototype.matchall", + "target": "npm:get-intrinsic", + "type": "static" + }, + { + "source": "npm:string.prototype.matchall", + "target": "npm:gopd", + "type": "static" + }, + { + "source": "npm:string.prototype.matchall", + "target": "npm:has-symbols", + "type": "static" + }, + { + "source": "npm:string.prototype.matchall", + "target": "npm:internal-slot", + "type": "static" + }, + { + "source": "npm:string.prototype.matchall", + "target": "npm:regexp.prototype.flags", + "type": "static" + }, + { + "source": "npm:string.prototype.matchall", + "target": "npm:set-function-name", + "type": "static" + }, + { + "source": "npm:string.prototype.matchall", + "target": "npm:side-channel", + "type": "static" + } + ], + "npm:string.prototype.repeat": [ + { + "source": "npm:string.prototype.repeat", + "target": "npm:define-properties", + "type": "static" + }, + { + "source": "npm:string.prototype.repeat", + "target": "npm:es-abstract", + "type": "static" + } + ], + "npm:string.prototype.trim": [ + { + "source": "npm:string.prototype.trim", + "target": "npm:call-bind", + "type": "static" + }, + { + "source": "npm:string.prototype.trim", + "target": "npm:call-bound", + "type": "static" + }, + { + "source": "npm:string.prototype.trim", + "target": "npm:define-data-property", + "type": "static" + }, + { + "source": "npm:string.prototype.trim", + "target": "npm:define-properties", + "type": "static" + }, + { + "source": "npm:string.prototype.trim", + "target": "npm:es-abstract", + "type": "static" + }, + { + "source": "npm:string.prototype.trim", + "target": "npm:es-object-atoms", + "type": "static" + }, + { + "source": "npm:string.prototype.trim", + "target": "npm:has-property-descriptors", + "type": "static" + } + ], + "npm:string.prototype.trimend": [ + { + "source": "npm:string.prototype.trimend", + "target": "npm:call-bind", + "type": "static" + }, + { + "source": "npm:string.prototype.trimend", + "target": "npm:call-bound", + "type": "static" + }, + { + "source": "npm:string.prototype.trimend", + "target": "npm:define-properties", + "type": "static" + }, + { + "source": "npm:string.prototype.trimend", + "target": "npm:es-object-atoms", + "type": "static" + } + ], + "npm:string.prototype.trimstart": [ + { + "source": "npm:string.prototype.trimstart", + "target": "npm:call-bind", + "type": "static" + }, + { + "source": "npm:string.prototype.trimstart", + "target": "npm:define-properties", + "type": "static" + }, + { + "source": "npm:string.prototype.trimstart", + "target": "npm:es-object-atoms", + "type": "static" + } + ], + "npm:string_decoder": [ + { + "source": "npm:string_decoder", + "target": "npm:safe-buffer@5.2.1", + "type": "static" + } + ], + "npm:strip-ansi@6.0.1": [ + { + "source": "npm:strip-ansi@6.0.1", + "target": "npm:ansi-regex@5.0.1", + "type": "static" + } + ], + "npm:strip-ansi-cjs": [ + { + "source": "npm:strip-ansi-cjs", + "target": "npm:ansi-regex@5.0.1", + "type": "static" + } + ], + "npm:strip-ansi": [ + { + "source": "npm:strip-ansi", + "target": "npm:ansi-regex", + "type": "static" + } + ], + "npm:style-to-object": [ + { + "source": "npm:style-to-object", + "target": "npm:inline-style-parser", + "type": "static" + } + ], + "npm:stylehacks": [ + { + "source": "npm:stylehacks", + "target": "npm:browserslist", + "type": "static" + }, + { + "source": "npm:stylehacks", + "target": "npm:postcss", + "type": "static" + }, + { + "source": "npm:stylehacks", + "target": "npm:postcss-selector-parser@6.1.2", + "type": "static" + } + ], + "npm:sugarss": [ + { + "source": "npm:sugarss", + "target": "npm:postcss", + "type": "static" + } + ], + "npm:supports-color": [ + { + "source": "npm:supports-color", + "target": "npm:has-flag", + "type": "static" + } + ], + "npm:svg-gradient": [ + { + "source": "npm:svg-gradient", + "target": "npm:gradient-parser", + "type": "static" + }, + { + "source": "npm:svg-gradient", + "target": "npm:whoops", + "type": "static" + } + ], + "npm:svgo": [ + { + "source": "npm:svgo", + "target": "npm:@trysound/sax", + "type": "static" + }, + { + "source": "npm:svgo", + "target": "npm:commander", + "type": "static" + }, + { + "source": "npm:svgo", + "target": "npm:css-select", + "type": "static" + }, + { + "source": "npm:svgo", + "target": "npm:css-tree", + "type": "static" + }, + { + "source": "npm:svgo", + "target": "npm:csso", + "type": "static" + }, + { + "source": "npm:svgo", + "target": "npm:picocolors", + "type": "static" + }, + { + "source": "npm:svgo", + "target": "npm:stable", + "type": "static" + } + ], + "npm:synckit": [ + { + "source": "npm:synckit", + "target": "npm:@pkgr/core", + "type": "static" + } + ], + "npm:tar-fs@2.1.4": [ + { + "source": "npm:tar-fs@2.1.4", + "target": "npm:chownr", + "type": "static" + }, + { + "source": "npm:tar-fs@2.1.4", + "target": "npm:mkdirp-classic", + "type": "static" + }, + { + "source": "npm:tar-fs@2.1.4", + "target": "npm:pump", + "type": "static" + }, + { + "source": "npm:tar-fs@2.1.4", + "target": "npm:tar-stream", + "type": "static" + } + ], + "npm:tar-fs": [ + { + "source": "npm:tar-fs", + "target": "npm:pump", + "type": "static" + }, + { + "source": "npm:tar-fs", + "target": "npm:tar-stream@3.1.7", + "type": "static" + }, + { + "source": "npm:tar-fs", + "target": "npm:bare-fs", + "type": "static" + }, + { + "source": "npm:tar-fs", + "target": "npm:bare-path", + "type": "static" + } + ], + "npm:tar-stream": [ + { + "source": "npm:tar-stream", + "target": "npm:bl", + "type": "static" + }, + { + "source": "npm:tar-stream", + "target": "npm:end-of-stream", + "type": "static" + }, + { + "source": "npm:tar-stream", + "target": "npm:fs-constants", + "type": "static" + }, + { + "source": "npm:tar-stream", + "target": "npm:inherits", + "type": "static" + }, + { + "source": "npm:tar-stream", + "target": "npm:readable-stream", + "type": "static" + } + ], + "npm:tar-stream@3.1.7": [ + { + "source": "npm:tar-stream@3.1.7", + "target": "npm:b4a", + "type": "static" + }, + { + "source": "npm:tar-stream@3.1.7", + "target": "npm:fast-fifo", + "type": "static" + }, + { + "source": "npm:tar-stream@3.1.7", + "target": "npm:streamx", + "type": "static" + } + ], + "npm:tar": [ + { + "source": "npm:tar", + "target": "npm:@isaacs/fs-minipass", + "type": "static" + }, + { + "source": "npm:tar", + "target": "npm:chownr@3.0.0", + "type": "static" + }, + { + "source": "npm:tar", + "target": "npm:minipass", + "type": "static" + }, + { + "source": "npm:tar", + "target": "npm:minizlib", + "type": "static" + }, + { + "source": "npm:tar", + "target": "npm:yallist@5.0.0", + "type": "static" + } + ], + "npm:telefunc": [ + { + "source": "npm:telefunc", + "target": "npm:@brillout/import", + "type": "static" + }, + { + "source": "npm:telefunc", + "target": "npm:@brillout/json-serializer", + "type": "static" + }, + { + "source": "npm:telefunc", + "target": "npm:@brillout/picocolors", + "type": "static" + }, + { + "source": "npm:telefunc", + "target": "npm:@brillout/vite-plugin-server-entry", + "type": "static" + }, + { + "source": "npm:telefunc", + "target": "npm:es-module-lexer", + "type": "static" + }, + { + "source": "npm:telefunc", + "target": "npm:magic-string", + "type": "static" + }, + { + "source": "npm:telefunc", + "target": "npm:ts-morph", + "type": "static" + }, + { + "source": "npm:telefunc", + "target": "npm:@babel/core", + "type": "static" + }, + { + "source": "npm:telefunc", + "target": "npm:@babel/parser", + "type": "static" + }, + { + "source": "npm:telefunc", + "target": "npm:@babel/types", + "type": "static" + }, + { + "source": "npm:telefunc", + "target": "npm:react", + "type": "static" + }, + { + "source": "npm:telefunc", + "target": "npm:react-streaming", + "type": "static" + }, + { + "source": "npm:telefunc", + "target": "npm:vite", + "type": "static" + } + ], + "npm:text-decoder": [ + { + "source": "npm:text-decoder", + "target": "npm:b4a", + "type": "static" + } + ], + "npm:thread-stream": [ + { + "source": "npm:thread-stream", + "target": "npm:real-require", + "type": "static" + } + ], + "npm:tinyglobby": [ + { + "source": "npm:tinyglobby", + "target": "npm:fdir", + "type": "static" + }, + { + "source": "npm:tinyglobby", + "target": "npm:picomatch", + "type": "static" + } + ], + "npm:tldts-experimental": [ + { + "source": "npm:tldts-experimental", + "target": "npm:tldts-core", + "type": "static" + } + ], + "npm:tldts": [ + { + "source": "npm:tldts", + "target": "npm:tldts-core", + "type": "static" + } + ], + "npm:to-regex-range": [ + { + "source": "npm:to-regex-range", + "target": "npm:is-number", + "type": "static" + } + ], + "npm:tough-cookie": [ + { + "source": "npm:tough-cookie", + "target": "npm:tldts", + "type": "static" + } + ], + "npm:ts-api-utils": [ + { + "source": "npm:ts-api-utils", + "target": "npm:typescript", + "type": "static" + } + ], + "npm:ts-morph": [ + { + "source": "npm:ts-morph", + "target": "npm:@ts-morph/common", + "type": "static" + }, + { + "source": "npm:ts-morph", + "target": "npm:code-block-writer", + "type": "static" + } + ], + "npm:tsconfig-paths": [ + { + "source": "npm:tsconfig-paths", + "target": "npm:json5", + "type": "static" + }, + { + "source": "npm:tsconfig-paths", + "target": "npm:minimist", + "type": "static" + }, + { + "source": "npm:tsconfig-paths", + "target": "npm:strip-bom", + "type": "static" + } + ], + "npm:tsdown": [ + { + "source": "npm:tsdown", + "target": "npm:ansis", + "type": "static" + }, + { + "source": "npm:tsdown", + "target": "npm:cac", + "type": "static" + }, + { + "source": "npm:tsdown", + "target": "npm:defu", + "type": "static" + }, + { + "source": "npm:tsdown", + "target": "npm:empathic", + "type": "static" + }, + { + "source": "npm:tsdown", + "target": "npm:hookable", + "type": "static" + }, + { + "source": "npm:tsdown", + "target": "npm:import-without-cache", + "type": "static" + }, + { + "source": "npm:tsdown", + "target": "npm:obug", + "type": "static" + }, + { + "source": "npm:tsdown", + "target": "npm:picomatch", + "type": "static" + }, + { + "source": "npm:tsdown", + "target": "npm:rolldown", + "type": "static" + }, + { + "source": "npm:tsdown", + "target": "npm:rolldown-plugin-dts", + "type": "static" + }, + { + "source": "npm:tsdown", + "target": "npm:semver@7.7.4", + "type": "static" + }, + { + "source": "npm:tsdown", + "target": "npm:tinyexec", + "type": "static" + }, + { + "source": "npm:tsdown", + "target": "npm:tinyglobby", + "type": "static" + }, + { + "source": "npm:tsdown", + "target": "npm:tree-kill", + "type": "static" + }, + { + "source": "npm:tsdown", + "target": "npm:unconfig-core", + "type": "static" + }, + { + "source": "npm:tsdown", + "target": "npm:unrun", + "type": "static" + }, + { + "source": "npm:tsdown", + "target": "npm:typescript", + "type": "static" + } + ], + "npm:tsx": [ + { + "source": "npm:tsx", + "target": "npm:esbuild", + "type": "static" + }, + { + "source": "npm:tsx", + "target": "npm:get-tsconfig", + "type": "static" + }, + { + "source": "npm:tsx", + "target": "npm:fsevents", + "type": "static" + } + ], + "npm:tunnel-agent": [ + { + "source": "npm:tunnel-agent", + "target": "npm:safe-buffer@5.2.1", + "type": "static" + } + ], + "npm:turbo": [ + { + "source": "npm:turbo", + "target": "npm:@turbo/darwin-64", + "type": "static" + }, + { + "source": "npm:turbo", + "target": "npm:@turbo/darwin-arm64", + "type": "static" + }, + { + "source": "npm:turbo", + "target": "npm:@turbo/linux-64", + "type": "static" + }, + { + "source": "npm:turbo", + "target": "npm:@turbo/linux-arm64", + "type": "static" + }, + { + "source": "npm:turbo", + "target": "npm:@turbo/windows-64", + "type": "static" + }, + { + "source": "npm:turbo", + "target": "npm:@turbo/windows-arm64", + "type": "static" + } + ], + "npm:type-check": [ + { + "source": "npm:type-check", + "target": "npm:prelude-ls", + "type": "static" + } + ], + "npm:type-is": [ + { + "source": "npm:type-is", + "target": "npm:content-type", + "type": "static" + }, + { + "source": "npm:type-is", + "target": "npm:media-typer", + "type": "static" + }, + { + "source": "npm:type-is", + "target": "npm:mime-types", + "type": "static" + } + ], + "npm:typed-array-buffer": [ + { + "source": "npm:typed-array-buffer", + "target": "npm:call-bound", + "type": "static" + }, + { + "source": "npm:typed-array-buffer", + "target": "npm:es-errors", + "type": "static" + }, + { + "source": "npm:typed-array-buffer", + "target": "npm:is-typed-array", + "type": "static" + } + ], + "npm:typed-array-byte-length": [ + { + "source": "npm:typed-array-byte-length", + "target": "npm:call-bind", + "type": "static" + }, + { + "source": "npm:typed-array-byte-length", + "target": "npm:for-each", + "type": "static" + }, + { + "source": "npm:typed-array-byte-length", + "target": "npm:gopd", + "type": "static" + }, + { + "source": "npm:typed-array-byte-length", + "target": "npm:has-proto", + "type": "static" + }, + { + "source": "npm:typed-array-byte-length", + "target": "npm:is-typed-array", + "type": "static" + } + ], + "npm:typed-array-byte-offset": [ + { + "source": "npm:typed-array-byte-offset", + "target": "npm:available-typed-arrays", + "type": "static" + }, + { + "source": "npm:typed-array-byte-offset", + "target": "npm:call-bind", + "type": "static" + }, + { + "source": "npm:typed-array-byte-offset", + "target": "npm:for-each", + "type": "static" + }, + { + "source": "npm:typed-array-byte-offset", + "target": "npm:gopd", + "type": "static" + }, + { + "source": "npm:typed-array-byte-offset", + "target": "npm:has-proto", + "type": "static" + }, + { + "source": "npm:typed-array-byte-offset", + "target": "npm:is-typed-array", + "type": "static" + }, + { + "source": "npm:typed-array-byte-offset", + "target": "npm:reflect.getprototypeof", + "type": "static" + } + ], + "npm:typed-array-length": [ + { + "source": "npm:typed-array-length", + "target": "npm:call-bind", + "type": "static" + }, + { + "source": "npm:typed-array-length", + "target": "npm:for-each", + "type": "static" + }, + { + "source": "npm:typed-array-length", + "target": "npm:gopd", + "type": "static" + }, + { + "source": "npm:typed-array-length", + "target": "npm:is-typed-array", + "type": "static" + }, + { + "source": "npm:typed-array-length", + "target": "npm:possible-typed-array-names", + "type": "static" + }, + { + "source": "npm:typed-array-length", + "target": "npm:reflect.getprototypeof", + "type": "static" + } + ], + "npm:typescript-eslint": [ + { + "source": "npm:typescript-eslint", + "target": "npm:@typescript-eslint/eslint-plugin", + "type": "static" + }, + { + "source": "npm:typescript-eslint", + "target": "npm:@typescript-eslint/parser", + "type": "static" + }, + { + "source": "npm:typescript-eslint", + "target": "npm:@typescript-eslint/typescript-estree", + "type": "static" + }, + { + "source": "npm:typescript-eslint", + "target": "npm:@typescript-eslint/utils", + "type": "static" + }, + { + "source": "npm:typescript-eslint", + "target": "npm:eslint", + "type": "static" + }, + { + "source": "npm:typescript-eslint", + "target": "npm:typescript", + "type": "static" + } + ], + "npm:unbox-primitive": [ + { + "source": "npm:unbox-primitive", + "target": "npm:call-bound", + "type": "static" + }, + { + "source": "npm:unbox-primitive", + "target": "npm:has-bigints", + "type": "static" + }, + { + "source": "npm:unbox-primitive", + "target": "npm:has-symbols", + "type": "static" + }, + { + "source": "npm:unbox-primitive", + "target": "npm:which-boxed-primitive", + "type": "static" + } + ], + "npm:unconfig-core": [ + { + "source": "npm:unconfig-core", + "target": "npm:@quansync/fs", + "type": "static" + }, + { + "source": "npm:unconfig-core", + "target": "npm:quansync", + "type": "static" + } + ], + "npm:unconfig": [ + { + "source": "npm:unconfig", + "target": "npm:@quansync/fs", + "type": "static" + }, + { + "source": "npm:unconfig", + "target": "npm:defu", + "type": "static" + }, + { + "source": "npm:unconfig", + "target": "npm:jiti", + "type": "static" + }, + { + "source": "npm:unconfig", + "target": "npm:quansync", + "type": "static" + }, + { + "source": "npm:unconfig", + "target": "npm:unconfig-core", + "type": "static" + } + ], + "npm:unenv": [ + { + "source": "npm:unenv", + "target": "npm:pathe", + "type": "static" + } + ], + "npm:union": [ + { + "source": "npm:union", + "target": "npm:qs", + "type": "static" + } + ], + "npm:unique-filename": [ + { + "source": "npm:unique-filename", + "target": "npm:unique-slug", + "type": "static" + } + ], + "npm:unique-slug": [ + { + "source": "npm:unique-slug", + "target": "npm:imurmurhash", + "type": "static" + } + ], + "npm:unist-util-is": [ + { + "source": "npm:unist-util-is", + "target": "npm:@types/unist@3.0.3", + "type": "static" + } + ], + "npm:unist-util-stringify-position": [ + { + "source": "npm:unist-util-stringify-position", + "target": "npm:@types/unist@3.0.3", + "type": "static" + } + ], + "npm:unist-util-visit-parents": [ + { + "source": "npm:unist-util-visit-parents", + "target": "npm:@types/unist@3.0.3", + "type": "static" + }, + { + "source": "npm:unist-util-visit-parents", + "target": "npm:unist-util-is", + "type": "static" + } + ], + "npm:unist-util-visit": [ + { + "source": "npm:unist-util-visit", + "target": "npm:@types/unist@3.0.3", + "type": "static" + }, + { + "source": "npm:unist-util-visit", + "target": "npm:unist-util-is", + "type": "static" + }, + { + "source": "npm:unist-util-visit", + "target": "npm:unist-util-visit-parents", + "type": "static" + } + ], + "npm:unplugin-purge-polyfills": [ + { + "source": "npm:unplugin-purge-polyfills", + "target": "npm:defu", + "type": "static" + }, + { + "source": "npm:unplugin-purge-polyfills", + "target": "npm:magic-string", + "type": "static" + }, + { + "source": "npm:unplugin-purge-polyfills", + "target": "npm:mlly", + "type": "static" + }, + { + "source": "npm:unplugin-purge-polyfills", + "target": "npm:unplugin", + "type": "static" + } + ], + "npm:unplugin": [ + { + "source": "npm:unplugin", + "target": "npm:@jridgewell/remapping", + "type": "static" + }, + { + "source": "npm:unplugin", + "target": "npm:acorn", + "type": "static" + }, + { + "source": "npm:unplugin", + "target": "npm:picomatch", + "type": "static" + }, + { + "source": "npm:unplugin", + "target": "npm:webpack-virtual-modules", + "type": "static" + } + ], + "npm:unrun": [ + { + "source": "npm:unrun", + "target": "npm:rolldown", + "type": "static" + }, + { + "source": "npm:unrun", + "target": "npm:synckit", + "type": "static" + } + ], + "npm:update-browserslist-db": [ + { + "source": "npm:update-browserslist-db", + "target": "npm:browserslist", + "type": "static" + }, + { + "source": "npm:update-browserslist-db", + "target": "npm:escalade", + "type": "static" + }, + { + "source": "npm:update-browserslist-db", + "target": "npm:picocolors", + "type": "static" + } + ], + "npm:uri-js": [ + { + "source": "npm:uri-js", + "target": "npm:punycode", + "type": "static" + } + ], + "npm:url-http": [ + { + "source": "npm:url-http", + "target": "npm:punycode-regex", + "type": "static" + }, + { + "source": "npm:url-http", + "target": "npm:re2", + "type": "static" + }, + { + "source": "npm:url-http", + "target": "npm:url-regex-safe", + "type": "static" + } + ], + "npm:url-regex-safe": [ + { + "source": "npm:url-regex-safe", + "target": "npm:ip-regex", + "type": "static" + }, + { + "source": "npm:url-regex-safe", + "target": "npm:tlds", + "type": "static" + }, + { + "source": "npm:url-regex-safe", + "target": "npm:re2", + "type": "static" + } + ], + "npm:use-callback-ref": [ + { + "source": "npm:use-callback-ref", + "target": "npm:react", + "type": "static" + }, + { + "source": "npm:use-callback-ref", + "target": "npm:tslib", + "type": "static" + }, + { + "source": "npm:use-callback-ref", + "target": "npm:@types/react", + "type": "static" + } + ], + "npm:use-composed-ref": [ + { + "source": "npm:use-composed-ref", + "target": "npm:react", + "type": "static" + }, + { + "source": "npm:use-composed-ref", + "target": "npm:@types/react", + "type": "static" + } + ], + "npm:use-isomorphic-layout-effect": [ + { + "source": "npm:use-isomorphic-layout-effect", + "target": "npm:react", + "type": "static" + }, + { + "source": "npm:use-isomorphic-layout-effect", + "target": "npm:@types/react", + "type": "static" + } + ], + "npm:use-latest": [ + { + "source": "npm:use-latest", + "target": "npm:react", + "type": "static" + }, + { + "source": "npm:use-latest", + "target": "npm:use-isomorphic-layout-effect", + "type": "static" + }, + { + "source": "npm:use-latest", + "target": "npm:@types/react", + "type": "static" + } + ], + "npm:use-sidecar": [ + { + "source": "npm:use-sidecar", + "target": "npm:detect-node-es", + "type": "static" + }, + { + "source": "npm:use-sidecar", + "target": "npm:react", + "type": "static" + }, + { + "source": "npm:use-sidecar", + "target": "npm:tslib", + "type": "static" + }, + { + "source": "npm:use-sidecar", + "target": "npm:@types/react", + "type": "static" + } + ], + "npm:valibot": [ + { + "source": "npm:valibot", + "target": "npm:typescript", + "type": "static" + } + ], + "npm:vike-photon": [ + { + "source": "npm:vike-photon", + "target": "npm:@brillout/picocolors", + "type": "static" + }, + { + "source": "npm:vike-photon", + "target": "npm:@brillout/vite-plugin-server-entry", + "type": "static" + }, + { + "source": "npm:vike-photon", + "target": "npm:@photonjs/core", + "type": "static" + }, + { + "source": "npm:vike-photon", + "target": "npm:@photonjs/runtime", + "type": "static" + }, + { + "source": "npm:vike-photon", + "target": "npm:@universal-middleware/compress", + "type": "static" + }, + { + "source": "npm:vike-photon", + "target": "npm:@universal-middleware/core", + "type": "static" + }, + { + "source": "npm:vike-photon", + "target": "npm:@universal-middleware/sirv", + "type": "static" + }, + { + "source": "npm:vike-photon", + "target": "npm:pkg-types", + "type": "static" + }, + { + "source": "npm:vike-photon", + "target": "npm:standaloner@0.2.2", + "type": "static" + }, + { + "source": "npm:vike-photon", + "target": "npm:vike", + "type": "static" + }, + { + "source": "npm:vike-photon", + "target": "npm:@photonjs/cloudflare", + "type": "static" + }, + { + "source": "npm:vike-photon", + "target": "npm:@photonjs/vercel", + "type": "static" + }, + { + "source": "npm:vike-photon", + "target": "npm:vite", + "type": "static" + } + ], + "npm:vike-react": [ + { + "source": "npm:vike-react", + "target": "npm:react", + "type": "static" + }, + { + "source": "npm:vike-react", + "target": "npm:react-dom", + "type": "static" + }, + { + "source": "npm:vike-react", + "target": "npm:react-streaming", + "type": "static" + }, + { + "source": "npm:vike-react", + "target": "npm:vike", + "type": "static" + } + ], + "npm:vike-solid": [ + { + "source": "npm:vike-solid", + "target": "npm:isbot-fast", + "type": "static" + }, + { + "source": "npm:vike-solid", + "target": "npm:solid-js", + "type": "static" + }, + { + "source": "npm:vike-solid", + "target": "npm:vike", + "type": "static" + }, + { + "source": "npm:vike-solid", + "target": "npm:vite-plugin-solid", + "type": "static" + } + ], + "npm:vike-vue": [ + { + "source": "npm:vike-vue", + "target": "npm:magic-string", + "type": "static" + }, + { + "source": "npm:vike-vue", + "target": "npm:oxc-parser", + "type": "static" + }, + { + "source": "npm:vike-vue", + "target": "npm:oxc-walker", + "type": "static" + }, + { + "source": "npm:vike-vue", + "target": "npm:vike", + "type": "static" + }, + { + "source": "npm:vike-vue", + "target": "npm:vue", + "type": "static" + } + ], + "npm:vike": [ + { + "source": "npm:vike", + "target": "npm:@babel/core", + "type": "static" + }, + { + "source": "npm:vike", + "target": "npm:@babel/types", + "type": "static" + }, + { + "source": "npm:vike", + "target": "npm:@brillout/import", + "type": "static" + }, + { + "source": "npm:vike", + "target": "npm:@brillout/json-serializer", + "type": "static" + }, + { + "source": "npm:vike", + "target": "npm:@brillout/picocolors", + "type": "static" + }, + { + "source": "npm:vike", + "target": "npm:@brillout/vite-plugin-server-entry", + "type": "static" + }, + { + "source": "npm:vike", + "target": "npm:cac@6.7.14", + "type": "static" + }, + { + "source": "npm:vike", + "target": "npm:es-module-lexer", + "type": "static" + }, + { + "source": "npm:vike", + "target": "npm:esbuild", + "type": "static" + }, + { + "source": "npm:vike", + "target": "npm:json5", + "type": "static" + }, + { + "source": "npm:vike", + "target": "npm:magic-string", + "type": "static" + }, + { + "source": "npm:vike", + "target": "npm:picomatch", + "type": "static" + }, + { + "source": "npm:vike", + "target": "npm:semver@7.7.4", + "type": "static" + }, + { + "source": "npm:vike", + "target": "npm:sirv", + "type": "static" + }, + { + "source": "npm:vike", + "target": "npm:source-map-support", + "type": "static" + }, + { + "source": "npm:vike", + "target": "npm:tinyglobby", + "type": "static" + }, + { + "source": "npm:vike", + "target": "npm:vite", + "type": "static" + }, + { + "source": "npm:vike", + "target": "npm:react-streaming", + "type": "static" + } + ], + "npm:vite-plugin-compiled-react": [ + { + "source": "npm:vite-plugin-compiled-react", + "target": "npm:@babel/types", + "type": "static" + }, + { + "source": "npm:vite-plugin-compiled-react", + "target": "npm:@compiled/babel-plugin", + "type": "static" + }, + { + "source": "npm:vite-plugin-compiled-react", + "target": "npm:@compiled/babel-plugin-strip-runtime", + "type": "static" + }, + { + "source": "npm:vite-plugin-compiled-react", + "target": "npm:@compiled/react", + "type": "static" + }, + { + "source": "npm:vite-plugin-compiled-react", + "target": "npm:@vitejs/plugin-react", + "type": "static" + }, + { + "source": "npm:vite-plugin-compiled-react", + "target": "npm:babel-plugin-module-resolver", + "type": "static" + }, + { + "source": "npm:vite-plugin-compiled-react", + "target": "npm:vite", + "type": "static" + } + ], + "npm:vite-plugin-solid": [ + { + "source": "npm:vite-plugin-solid", + "target": "npm:@babel/core", + "type": "static" + }, + { + "source": "npm:vite-plugin-solid", + "target": "npm:@types/babel__core", + "type": "static" + }, + { + "source": "npm:vite-plugin-solid", + "target": "npm:babel-preset-solid", + "type": "static" + }, + { + "source": "npm:vite-plugin-solid", + "target": "npm:merge-anything", + "type": "static" + }, + { + "source": "npm:vite-plugin-solid", + "target": "npm:solid-js", + "type": "static" + }, + { + "source": "npm:vite-plugin-solid", + "target": "npm:solid-refresh", + "type": "static" + }, + { + "source": "npm:vite-plugin-solid", + "target": "npm:vite", + "type": "static" + }, + { + "source": "npm:vite-plugin-solid", + "target": "npm:vitefu", + "type": "static" + } + ], + "npm:vite-plugin-wasm": [ + { + "source": "npm:vite-plugin-wasm", + "target": "npm:vite", + "type": "static" + } + ], + "npm:vite": [ + { + "source": "npm:vite", + "target": "npm:lightningcss", + "type": "static" + }, + { + "source": "npm:vite", + "target": "npm:picomatch", + "type": "static" + }, + { + "source": "npm:vite", + "target": "npm:postcss", + "type": "static" + }, + { + "source": "npm:vite", + "target": "npm:rolldown@1.0.0-rc.11", + "type": "static" + }, + { + "source": "npm:vite", + "target": "npm:tinyglobby", + "type": "static" + }, + { + "source": "npm:vite", + "target": "npm:@types/node", + "type": "static" + }, + { + "source": "npm:vite", + "target": "npm:esbuild", + "type": "static" + }, + { + "source": "npm:vite", + "target": "npm:fsevents", + "type": "static" + }, + { + "source": "npm:vite", + "target": "npm:jiti", + "type": "static" + }, + { + "source": "npm:vite", + "target": "npm:sugarss", + "type": "static" + }, + { + "source": "npm:vite", + "target": "npm:tsx", + "type": "static" + }, + { + "source": "npm:vite", + "target": "npm:yaml", + "type": "static" + } + ], + "npm:vitefu": [ + { + "source": "npm:vitefu", + "target": "npm:vite", + "type": "static" + } + ], + "npm:vitest": [ + { + "source": "npm:vitest", + "target": "npm:@vitest/expect", + "type": "static" + }, + { + "source": "npm:vitest", + "target": "npm:@vitest/mocker", + "type": "static" + }, + { + "source": "npm:vitest", + "target": "npm:@vitest/pretty-format", + "type": "static" + }, + { + "source": "npm:vitest", + "target": "npm:@vitest/runner", + "type": "static" + }, + { + "source": "npm:vitest", + "target": "npm:@vitest/snapshot", + "type": "static" + }, + { + "source": "npm:vitest", + "target": "npm:@vitest/spy", + "type": "static" + }, + { + "source": "npm:vitest", + "target": "npm:@vitest/utils", + "type": "static" + }, + { + "source": "npm:vitest", + "target": "npm:es-module-lexer@2.0.0", + "type": "static" + }, + { + "source": "npm:vitest", + "target": "npm:expect-type", + "type": "static" + }, + { + "source": "npm:vitest", + "target": "npm:magic-string", + "type": "static" + }, + { + "source": "npm:vitest", + "target": "npm:obug", + "type": "static" + }, + { + "source": "npm:vitest", + "target": "npm:pathe", + "type": "static" + }, + { + "source": "npm:vitest", + "target": "npm:picomatch", + "type": "static" + }, + { + "source": "npm:vitest", + "target": "npm:std-env", + "type": "static" + }, + { + "source": "npm:vitest", + "target": "npm:tinybench", + "type": "static" + }, + { + "source": "npm:vitest", + "target": "npm:tinyexec", + "type": "static" + }, + { + "source": "npm:vitest", + "target": "npm:tinyglobby", + "type": "static" + }, + { + "source": "npm:vitest", + "target": "npm:tinyrainbow", + "type": "static" + }, + { + "source": "npm:vitest", + "target": "npm:vite", + "type": "static" + }, + { + "source": "npm:vitest", + "target": "npm:why-is-node-running", + "type": "static" + }, + { + "source": "npm:vitest", + "target": "npm:@types/node", + "type": "static" + } + ], + "npm:vue-eslint-parser": [ + { + "source": "npm:vue-eslint-parser", + "target": "npm:debug", + "type": "static" + }, + { + "source": "npm:vue-eslint-parser", + "target": "npm:eslint", + "type": "static" + }, + { + "source": "npm:vue-eslint-parser", + "target": "npm:eslint-scope", + "type": "static" + }, + { + "source": "npm:vue-eslint-parser", + "target": "npm:eslint-visitor-keys@5.0.1", + "type": "static" + }, + { + "source": "npm:vue-eslint-parser", + "target": "npm:espree", + "type": "static" + }, + { + "source": "npm:vue-eslint-parser", + "target": "npm:esquery", + "type": "static" + }, + { + "source": "npm:vue-eslint-parser", + "target": "npm:semver@7.7.4", + "type": "static" + } + ], + "npm:vue-gtag": [ + { + "source": "npm:vue-gtag", + "target": "npm:vue", + "type": "static" + } + ], + "npm:vue": [ + { + "source": "npm:vue", + "target": "npm:@vue/compiler-dom", + "type": "static" + }, + { + "source": "npm:vue", + "target": "npm:@vue/compiler-sfc", + "type": "static" + }, + { + "source": "npm:vue", + "target": "npm:@vue/runtime-dom", + "type": "static" + }, + { + "source": "npm:vue", + "target": "npm:@vue/server-renderer", + "type": "static" + }, + { + "source": "npm:vue", + "target": "npm:@vue/shared", + "type": "static" + }, + { + "source": "npm:vue", + "target": "npm:typescript", + "type": "static" + } + ], + "npm:wcwidth": [ + { + "source": "npm:wcwidth", + "target": "npm:defaults", + "type": "static" + } + ], + "npm:whatwg-encoding": [ + { + "source": "npm:whatwg-encoding", + "target": "npm:iconv-lite", + "type": "static" + } + ], + "npm:whatwg-url": [ + { + "source": "npm:whatwg-url", + "target": "npm:tr46", + "type": "static" + }, + { + "source": "npm:whatwg-url", + "target": "npm:webidl-conversions", + "type": "static" + } + ], + "npm:which-boxed-primitive": [ + { + "source": "npm:which-boxed-primitive", + "target": "npm:is-bigint", + "type": "static" + }, + { + "source": "npm:which-boxed-primitive", + "target": "npm:is-boolean-object", + "type": "static" + }, + { + "source": "npm:which-boxed-primitive", + "target": "npm:is-number-object", + "type": "static" + }, + { + "source": "npm:which-boxed-primitive", + "target": "npm:is-string", + "type": "static" + }, + { + "source": "npm:which-boxed-primitive", + "target": "npm:is-symbol", + "type": "static" + } + ], + "npm:which-builtin-type": [ + { + "source": "npm:which-builtin-type", + "target": "npm:call-bound", + "type": "static" + }, + { + "source": "npm:which-builtin-type", + "target": "npm:function.prototype.name", + "type": "static" + }, + { + "source": "npm:which-builtin-type", + "target": "npm:has-tostringtag", + "type": "static" + }, + { + "source": "npm:which-builtin-type", + "target": "npm:is-async-function", + "type": "static" + }, + { + "source": "npm:which-builtin-type", + "target": "npm:is-date-object", + "type": "static" + }, + { + "source": "npm:which-builtin-type", + "target": "npm:is-finalizationregistry", + "type": "static" + }, + { + "source": "npm:which-builtin-type", + "target": "npm:is-generator-function", + "type": "static" + }, + { + "source": "npm:which-builtin-type", + "target": "npm:is-regex", + "type": "static" + }, + { + "source": "npm:which-builtin-type", + "target": "npm:is-weakref", + "type": "static" + }, + { + "source": "npm:which-builtin-type", + "target": "npm:isarray", + "type": "static" + }, + { + "source": "npm:which-builtin-type", + "target": "npm:which-boxed-primitive", + "type": "static" + }, + { + "source": "npm:which-builtin-type", + "target": "npm:which-collection", + "type": "static" + }, + { + "source": "npm:which-builtin-type", + "target": "npm:which-typed-array", + "type": "static" + } + ], + "npm:which-collection": [ + { + "source": "npm:which-collection", + "target": "npm:is-map", + "type": "static" + }, + { + "source": "npm:which-collection", + "target": "npm:is-set", + "type": "static" + }, + { + "source": "npm:which-collection", + "target": "npm:is-weakmap", + "type": "static" + }, + { + "source": "npm:which-collection", + "target": "npm:is-weakset", + "type": "static" + } + ], + "npm:which-typed-array": [ + { + "source": "npm:which-typed-array", + "target": "npm:available-typed-arrays", + "type": "static" + }, + { + "source": "npm:which-typed-array", + "target": "npm:call-bind", + "type": "static" + }, + { + "source": "npm:which-typed-array", + "target": "npm:call-bound", + "type": "static" + }, + { + "source": "npm:which-typed-array", + "target": "npm:for-each", + "type": "static" + }, + { + "source": "npm:which-typed-array", + "target": "npm:get-proto", + "type": "static" + }, + { + "source": "npm:which-typed-array", + "target": "npm:gopd", + "type": "static" + }, + { + "source": "npm:which-typed-array", + "target": "npm:has-tostringtag", + "type": "static" + } + ], + "npm:which@2.0.2": [ + { + "source": "npm:which@2.0.2", + "target": "npm:isexe@2.0.0", + "type": "static" + } + ], + "npm:which@5.0.0": [ + { + "source": "npm:which@5.0.0", + "target": "npm:isexe@3.1.1", + "type": "static" + } + ], + "npm:which": [ + { + "source": "npm:which", + "target": "npm:isexe", + "type": "static" + } + ], + "npm:why-is-node-running": [ + { + "source": "npm:why-is-node-running", + "target": "npm:siginfo", + "type": "static" + }, + { + "source": "npm:why-is-node-running", + "target": "npm:stackback", + "type": "static" + } + ], + "npm:workerd@1.20251217.0": [ + { + "source": "npm:workerd@1.20251217.0", + "target": "npm:@cloudflare/workerd-darwin-64@1.20251217.0", + "type": "static" + }, + { + "source": "npm:workerd@1.20251217.0", + "target": "npm:@cloudflare/workerd-darwin-arm64@1.20251217.0", + "type": "static" + }, + { + "source": "npm:workerd@1.20251217.0", + "target": "npm:@cloudflare/workerd-linux-64@1.20251217.0", + "type": "static" + }, + { + "source": "npm:workerd@1.20251217.0", + "target": "npm:@cloudflare/workerd-linux-arm64@1.20251217.0", + "type": "static" + }, + { + "source": "npm:workerd@1.20251217.0", + "target": "npm:@cloudflare/workerd-windows-64@1.20251217.0", + "type": "static" + } + ], + "npm:workerd": [ + { + "source": "npm:workerd", + "target": "npm:@cloudflare/workerd-darwin-64@1.20260317.1", + "type": "static" + }, + { + "source": "npm:workerd", + "target": "npm:@cloudflare/workerd-darwin-arm64@1.20260317.1", + "type": "static" + }, + { + "source": "npm:workerd", + "target": "npm:@cloudflare/workerd-linux-64", + "type": "static" + }, + { + "source": "npm:workerd", + "target": "npm:@cloudflare/workerd-linux-arm64@1.20260317.1", + "type": "static" + }, + { + "source": "npm:workerd", + "target": "npm:@cloudflare/workerd-windows-64@1.20260317.1", + "type": "static" + } + ], + "npm:wrangler": [ + { + "source": "npm:wrangler", + "target": "npm:@cloudflare/kv-asset-handler", + "type": "static" + }, + { + "source": "npm:wrangler", + "target": "npm:@cloudflare/unenv-preset", + "type": "static" + }, + { + "source": "npm:wrangler", + "target": "npm:blake3-wasm", + "type": "static" + }, + { + "source": "npm:wrangler", + "target": "npm:esbuild@0.27.3", + "type": "static" + }, + { + "source": "npm:wrangler", + "target": "npm:miniflare", + "type": "static" + }, + { + "source": "npm:wrangler", + "target": "npm:path-to-regexp@6.3.0", + "type": "static" + }, + { + "source": "npm:wrangler", + "target": "npm:unenv", + "type": "static" + }, + { + "source": "npm:wrangler", + "target": "npm:workerd", + "type": "static" + }, + { + "source": "npm:wrangler", + "target": "npm:@cloudflare/workers-types", + "type": "static" + }, + { + "source": "npm:wrangler", + "target": "npm:fsevents", + "type": "static" + } + ], + "npm:wrap-ansi": [ + { + "source": "npm:wrap-ansi", + "target": "npm:ansi-styles@4.3.0", + "type": "static" + }, + { + "source": "npm:wrap-ansi", + "target": "npm:string-width", + "type": "static" + }, + { + "source": "npm:wrap-ansi", + "target": "npm:strip-ansi@6.0.1", + "type": "static" + } + ], + "npm:wrap-ansi-cjs": [ + { + "source": "npm:wrap-ansi-cjs", + "target": "npm:ansi-styles@4.3.0", + "type": "static" + }, + { + "source": "npm:wrap-ansi-cjs", + "target": "npm:string-width", + "type": "static" + }, + { + "source": "npm:wrap-ansi-cjs", + "target": "npm:strip-ansi@6.0.1", + "type": "static" + } + ], + "npm:wrap-ansi@8.1.0": [ + { + "source": "npm:wrap-ansi@8.1.0", + "target": "npm:ansi-styles", + "type": "static" + }, + { + "source": "npm:wrap-ansi@8.1.0", + "target": "npm:string-width@5.1.2", + "type": "static" + }, + { + "source": "npm:wrap-ansi@8.1.0", + "target": "npm:strip-ansi", + "type": "static" + } + ], + "npm:yargs": [ + { + "source": "npm:yargs", + "target": "npm:cliui", + "type": "static" + }, + { + "source": "npm:yargs", + "target": "npm:escalade", + "type": "static" + }, + { + "source": "npm:yargs", + "target": "npm:get-caller-file", + "type": "static" + }, + { + "source": "npm:yargs", + "target": "npm:require-directory", + "type": "static" + }, + { + "source": "npm:yargs", + "target": "npm:string-width", + "type": "static" + }, + { + "source": "npm:yargs", + "target": "npm:y18n", + "type": "static" + }, + { + "source": "npm:yargs", + "target": "npm:yargs-parser", + "type": "static" + } + ], + "npm:yauzl": [ + { + "source": "npm:yauzl", + "target": "npm:buffer-crc32", + "type": "static" + }, + { + "source": "npm:yauzl", + "target": "npm:fd-slicer", + "type": "static" + } + ], + "npm:youch-core": [ + { + "source": "npm:youch-core", + "target": "npm:@poppinss/exception", + "type": "static" + }, + { + "source": "npm:youch-core", + "target": "npm:error-stack-parser-es", + "type": "static" + } + ], + "npm:youch": [ + { + "source": "npm:youch", + "target": "npm:@poppinss/colors", + "type": "static" + }, + { + "source": "npm:youch", + "target": "npm:@poppinss/dumper", + "type": "static" + }, + { + "source": "npm:youch", + "target": "npm:@speed-highlight/core", + "type": "static" + }, + { + "source": "npm:youch", + "target": "npm:cookie@1.1.1", + "type": "static" + }, + { + "source": "npm:youch", + "target": "npm:youch-core", + "type": "static" + } + ], + "npm:zeptomatch": [ + { + "source": "npm:zeptomatch", + "target": "npm:grammex", + "type": "static" + }, + { + "source": "npm:zeptomatch", + "target": "npm:graphmatch", + "type": "static" + } + ] + }, + "version": "6.0", + "errors": [], + "computedAt": 1774449441474 +} \ No newline at end of file diff --git a/.nx/workspace-data/project-graph.lock b/.nx/workspace-data/project-graph.lock new file mode 100644 index 000000000..e69de29bb diff --git a/.nx/workspace-data/source-maps.json b/.nx/workspace-data/source-maps.json new file mode 100644 index 000000000..a87b720be --- /dev/null +++ b/.nx/workspace-data/source-maps.json @@ -0,0 +1,8346 @@ +{ + "boilerplates/auth0": { + "root": [ + "boilerplates/auth0/package.json", + "nx/core/package-json" + ], + "name": [ + "boilerplates/auth0/package.json", + "nx/core/package-json" + ], + "tags": [ + "boilerplates/auth0/package.json", + "nx/core/package-json" + ], + "tags.npm:private": [ + "boilerplates/auth0/package.json", + "nx/core/package-json" + ], + "tags.type:boilerplate": [ + "boilerplates/auth0/package.json", + "nx/core/package-json" + ], + "metadata.targetGroups": [ + "boilerplates/auth0/package.json", + "nx/core/package-json" + ], + "metadata.targetGroups.NPM Scripts": [ + "boilerplates/auth0/package.json", + "nx/core/package-json" + ], + "metadata.targetGroups.NPM Scripts.0": [ + "boilerplates/auth0/package.json", + "nx/core/package-json" + ], + "metadata.targetGroups.NPM Scripts.1": [ + "boilerplates/auth0/package.json", + "nx/core/package-json" + ], + "metadata.description": [ + "boilerplates/auth0/package.json", + "nx/core/package-json" + ], + "metadata.js": [ + "boilerplates/auth0/package.json", + "nx/core/package-json" + ], + "metadata.js.packageName": [ + "boilerplates/auth0/package.json", + "nx/core/package-json" + ], + "metadata.js.packageVersion": [ + "boilerplates/auth0/package.json", + "nx/core/package-json" + ], + "metadata.js.isInPackageManagerWorkspaces": [ + "boilerplates/auth0/package.json", + "nx/core/package-json" + ], + "targets": [ + "boilerplates/auth0/package.json", + "nx/core/package-json" + ], + "targets.check-types": [ + "boilerplates/auth0/package.json", + "nx/core/package-json" + ], + "targets.check-types.executor": [ + "boilerplates/auth0/package.json", + "nx/core/package-json" + ], + "targets.check-types.options": [ + "boilerplates/auth0/package.json", + "nx/core/package-json" + ], + "targets.check-types.metadata": [ + "boilerplates/auth0/package.json", + "nx/core/package-json" + ], + "targets.check-types.options.script": [ + "boilerplates/auth0/package.json", + "nx/core/package-json" + ], + "targets.check-types.metadata.scriptContent": [ + "boilerplates/auth0/package.json", + "nx/core/package-json" + ], + "targets.check-types.metadata.runCommand": [ + "boilerplates/auth0/package.json", + "nx/core/package-json" + ], + "targets.build": [ + "boilerplates/auth0/package.json", + "nx/core/package-json" + ], + "targets.build.executor": [ + "boilerplates/auth0/package.json", + "nx/core/package-json" + ], + "targets.build.options": [ + "boilerplates/auth0/package.json", + "nx/core/package-json" + ], + "targets.build.metadata": [ + "boilerplates/auth0/package.json", + "nx/core/package-json" + ], + "targets.build.options.script": [ + "boilerplates/auth0/package.json", + "nx/core/package-json" + ], + "targets.build.metadata.scriptContent": [ + "boilerplates/auth0/package.json", + "nx/core/package-json" + ], + "targets.build.metadata.runCommand": [ + "boilerplates/auth0/package.json", + "nx/core/package-json" + ], + "targets.check-types.cache": [ + "nx.json", + "nx/target-defaults" + ], + "targets.check-types.parallelism": [ + "nx.json", + "nx/target-defaults" + ], + "targets.build.cache": [ + "nx.json", + "nx/target-defaults" + ], + "targets.build.dependsOn": [ + "nx.json", + "nx/target-defaults" + ], + "targets.build.inputs": [ + "nx.json", + "nx/target-defaults" + ], + "targets.build.outputs": [ + "nx.json", + "nx/target-defaults" + ], + "targets.build.parallelism": [ + "nx.json", + "nx/target-defaults" + ] + }, + "boilerplates/authjs": { + "root": [ + "boilerplates/authjs/package.json", + "nx/core/package-json" + ], + "name": [ + "boilerplates/authjs/package.json", + "nx/core/package-json" + ], + "tags": [ + "boilerplates/authjs/package.json", + "nx/core/package-json" + ], + "tags.npm:private": [ + "boilerplates/authjs/package.json", + "nx/core/package-json" + ], + "tags.type:boilerplate": [ + "boilerplates/authjs/package.json", + "nx/core/package-json" + ], + "metadata.targetGroups": [ + "boilerplates/authjs/package.json", + "nx/core/package-json" + ], + "metadata.targetGroups.NPM Scripts": [ + "boilerplates/authjs/package.json", + "nx/core/package-json" + ], + "metadata.targetGroups.NPM Scripts.0": [ + "boilerplates/authjs/package.json", + "nx/core/package-json" + ], + "metadata.targetGroups.NPM Scripts.1": [ + "boilerplates/authjs/package.json", + "nx/core/package-json" + ], + "metadata.description": [ + "boilerplates/authjs/package.json", + "nx/core/package-json" + ], + "metadata.js": [ + "boilerplates/authjs/package.json", + "nx/core/package-json" + ], + "metadata.js.packageName": [ + "boilerplates/authjs/package.json", + "nx/core/package-json" + ], + "metadata.js.packageVersion": [ + "boilerplates/authjs/package.json", + "nx/core/package-json" + ], + "metadata.js.packageExports": [ + "boilerplates/authjs/package.json", + "nx/core/package-json" + ], + "metadata.js.isInPackageManagerWorkspaces": [ + "boilerplates/authjs/package.json", + "nx/core/package-json" + ], + "targets": [ + "boilerplates/authjs/package.json", + "nx/core/package-json" + ], + "targets.check-types": [ + "boilerplates/authjs/package.json", + "nx/core/package-json" + ], + "targets.check-types.executor": [ + "boilerplates/authjs/package.json", + "nx/core/package-json" + ], + "targets.check-types.options": [ + "boilerplates/authjs/package.json", + "nx/core/package-json" + ], + "targets.check-types.metadata": [ + "boilerplates/authjs/package.json", + "nx/core/package-json" + ], + "targets.check-types.options.script": [ + "boilerplates/authjs/package.json", + "nx/core/package-json" + ], + "targets.check-types.metadata.scriptContent": [ + "boilerplates/authjs/package.json", + "nx/core/package-json" + ], + "targets.check-types.metadata.runCommand": [ + "boilerplates/authjs/package.json", + "nx/core/package-json" + ], + "targets.build": [ + "boilerplates/authjs/package.json", + "nx/core/package-json" + ], + "targets.build.executor": [ + "boilerplates/authjs/package.json", + "nx/core/package-json" + ], + "targets.build.options": [ + "boilerplates/authjs/package.json", + "nx/core/package-json" + ], + "targets.build.metadata": [ + "boilerplates/authjs/package.json", + "nx/core/package-json" + ], + "targets.build.options.script": [ + "boilerplates/authjs/package.json", + "nx/core/package-json" + ], + "targets.build.metadata.scriptContent": [ + "boilerplates/authjs/package.json", + "nx/core/package-json" + ], + "targets.build.metadata.runCommand": [ + "boilerplates/authjs/package.json", + "nx/core/package-json" + ], + "targets.check-types.cache": [ + "nx.json", + "nx/target-defaults" + ], + "targets.check-types.parallelism": [ + "nx.json", + "nx/target-defaults" + ], + "targets.build.cache": [ + "nx.json", + "nx/target-defaults" + ], + "targets.build.dependsOn": [ + "nx.json", + "nx/target-defaults" + ], + "targets.build.inputs": [ + "nx.json", + "nx/target-defaults" + ], + "targets.build.outputs": [ + "nx.json", + "nx/target-defaults" + ], + "targets.build.parallelism": [ + "nx.json", + "nx/target-defaults" + ] + }, + "boilerplates/aws": { + "root": [ + "boilerplates/aws/package.json", + "nx/core/package-json" + ], + "name": [ + "boilerplates/aws/package.json", + "nx/core/package-json" + ], + "tags": [ + "boilerplates/aws/package.json", + "nx/core/package-json" + ], + "tags.npm:private": [ + "boilerplates/aws/package.json", + "nx/core/package-json" + ], + "tags.type:boilerplate": [ + "boilerplates/aws/package.json", + "nx/core/package-json" + ], + "metadata.targetGroups": [ + "boilerplates/aws/package.json", + "nx/core/package-json" + ], + "metadata.targetGroups.NPM Scripts": [ + "boilerplates/aws/package.json", + "nx/core/package-json" + ], + "metadata.targetGroups.NPM Scripts.0": [ + "boilerplates/aws/package.json", + "nx/core/package-json" + ], + "metadata.targetGroups.NPM Scripts.1": [ + "boilerplates/aws/package.json", + "nx/core/package-json" + ], + "metadata.description": [ + "boilerplates/aws/package.json", + "nx/core/package-json" + ], + "metadata.js": [ + "boilerplates/aws/package.json", + "nx/core/package-json" + ], + "metadata.js.packageName": [ + "boilerplates/aws/package.json", + "nx/core/package-json" + ], + "metadata.js.packageVersion": [ + "boilerplates/aws/package.json", + "nx/core/package-json" + ], + "metadata.js.packageExports": [ + "boilerplates/aws/package.json", + "nx/core/package-json" + ], + "metadata.js.isInPackageManagerWorkspaces": [ + "boilerplates/aws/package.json", + "nx/core/package-json" + ], + "targets": [ + "boilerplates/aws/package.json", + "nx/core/package-json" + ], + "targets.check-types": [ + "boilerplates/aws/package.json", + "nx/core/package-json" + ], + "targets.check-types.executor": [ + "boilerplates/aws/package.json", + "nx/core/package-json" + ], + "targets.check-types.options": [ + "boilerplates/aws/package.json", + "nx/core/package-json" + ], + "targets.check-types.metadata": [ + "boilerplates/aws/package.json", + "nx/core/package-json" + ], + "targets.check-types.options.script": [ + "boilerplates/aws/package.json", + "nx/core/package-json" + ], + "targets.check-types.metadata.scriptContent": [ + "boilerplates/aws/package.json", + "nx/core/package-json" + ], + "targets.check-types.metadata.runCommand": [ + "boilerplates/aws/package.json", + "nx/core/package-json" + ], + "targets.build": [ + "boilerplates/aws/package.json", + "nx/core/package-json" + ], + "targets.build.executor": [ + "boilerplates/aws/package.json", + "nx/core/package-json" + ], + "targets.build.options": [ + "boilerplates/aws/package.json", + "nx/core/package-json" + ], + "targets.build.metadata": [ + "boilerplates/aws/package.json", + "nx/core/package-json" + ], + "targets.build.options.script": [ + "boilerplates/aws/package.json", + "nx/core/package-json" + ], + "targets.build.metadata.scriptContent": [ + "boilerplates/aws/package.json", + "nx/core/package-json" + ], + "targets.build.metadata.runCommand": [ + "boilerplates/aws/package.json", + "nx/core/package-json" + ], + "targets.check-types.cache": [ + "nx.json", + "nx/target-defaults" + ], + "targets.check-types.parallelism": [ + "nx.json", + "nx/target-defaults" + ], + "targets.build.cache": [ + "nx.json", + "nx/target-defaults" + ], + "targets.build.dependsOn": [ + "nx.json", + "nx/target-defaults" + ], + "targets.build.inputs": [ + "nx.json", + "nx/target-defaults" + ], + "targets.build.outputs": [ + "nx.json", + "nx/target-defaults" + ], + "targets.build.parallelism": [ + "nx.json", + "nx/target-defaults" + ] + }, + "boilerplates/biome": { + "root": [ + "boilerplates/biome/package.json", + "nx/core/package-json" + ], + "name": [ + "boilerplates/biome/package.json", + "nx/core/package-json" + ], + "tags": [ + "boilerplates/biome/package.json", + "nx/core/package-json" + ], + "tags.npm:private": [ + "boilerplates/biome/package.json", + "nx/core/package-json" + ], + "tags.type:boilerplate": [ + "boilerplates/biome/package.json", + "nx/core/package-json" + ], + "metadata.targetGroups": [ + "boilerplates/biome/package.json", + "nx/core/package-json" + ], + "metadata.targetGroups.NPM Scripts": [ + "boilerplates/biome/package.json", + "nx/core/package-json" + ], + "metadata.targetGroups.NPM Scripts.0": [ + "boilerplates/biome/package.json", + "nx/core/package-json" + ], + "metadata.targetGroups.NPM Scripts.1": [ + "boilerplates/biome/package.json", + "nx/core/package-json" + ], + "metadata.description": [ + "boilerplates/biome/package.json", + "nx/core/package-json" + ], + "metadata.js": [ + "boilerplates/biome/package.json", + "nx/core/package-json" + ], + "metadata.js.packageName": [ + "boilerplates/biome/package.json", + "nx/core/package-json" + ], + "metadata.js.packageVersion": [ + "boilerplates/biome/package.json", + "nx/core/package-json" + ], + "metadata.js.isInPackageManagerWorkspaces": [ + "boilerplates/biome/package.json", + "nx/core/package-json" + ], + "targets": [ + "boilerplates/biome/package.json", + "nx/core/package-json" + ], + "targets.check-types": [ + "boilerplates/biome/package.json", + "nx/core/package-json" + ], + "targets.check-types.executor": [ + "boilerplates/biome/package.json", + "nx/core/package-json" + ], + "targets.check-types.options": [ + "boilerplates/biome/package.json", + "nx/core/package-json" + ], + "targets.check-types.metadata": [ + "boilerplates/biome/package.json", + "nx/core/package-json" + ], + "targets.check-types.options.script": [ + "boilerplates/biome/package.json", + "nx/core/package-json" + ], + "targets.check-types.metadata.scriptContent": [ + "boilerplates/biome/package.json", + "nx/core/package-json" + ], + "targets.check-types.metadata.runCommand": [ + "boilerplates/biome/package.json", + "nx/core/package-json" + ], + "targets.build": [ + "boilerplates/biome/package.json", + "nx/core/package-json" + ], + "targets.build.executor": [ + "boilerplates/biome/package.json", + "nx/core/package-json" + ], + "targets.build.options": [ + "boilerplates/biome/package.json", + "nx/core/package-json" + ], + "targets.build.metadata": [ + "boilerplates/biome/package.json", + "nx/core/package-json" + ], + "targets.build.options.script": [ + "boilerplates/biome/package.json", + "nx/core/package-json" + ], + "targets.build.metadata.scriptContent": [ + "boilerplates/biome/package.json", + "nx/core/package-json" + ], + "targets.build.metadata.runCommand": [ + "boilerplates/biome/package.json", + "nx/core/package-json" + ], + "targets.check-types.cache": [ + "nx.json", + "nx/target-defaults" + ], + "targets.check-types.parallelism": [ + "nx.json", + "nx/target-defaults" + ], + "targets.build.cache": [ + "nx.json", + "nx/target-defaults" + ], + "targets.build.dependsOn": [ + "nx.json", + "nx/target-defaults" + ], + "targets.build.inputs": [ + "nx.json", + "nx/target-defaults" + ], + "targets.build.outputs": [ + "nx.json", + "nx/target-defaults" + ], + "targets.build.parallelism": [ + "nx.json", + "nx/target-defaults" + ] + }, + "boilerplates/cloudflare": { + "root": [ + "boilerplates/cloudflare/package.json", + "nx/core/package-json" + ], + "name": [ + "boilerplates/cloudflare/package.json", + "nx/core/package-json" + ], + "tags": [ + "boilerplates/cloudflare/package.json", + "nx/core/package-json" + ], + "tags.npm:private": [ + "boilerplates/cloudflare/package.json", + "nx/core/package-json" + ], + "tags.type:boilerplate": [ + "boilerplates/cloudflare/package.json", + "nx/core/package-json" + ], + "metadata.targetGroups": [ + "boilerplates/cloudflare/package.json", + "nx/core/package-json" + ], + "metadata.targetGroups.NPM Scripts": [ + "boilerplates/cloudflare/package.json", + "nx/core/package-json" + ], + "metadata.targetGroups.NPM Scripts.0": [ + "boilerplates/cloudflare/package.json", + "nx/core/package-json" + ], + "metadata.targetGroups.NPM Scripts.1": [ + "boilerplates/cloudflare/package.json", + "nx/core/package-json" + ], + "metadata.description": [ + "boilerplates/cloudflare/package.json", + "nx/core/package-json" + ], + "metadata.js": [ + "boilerplates/cloudflare/package.json", + "nx/core/package-json" + ], + "metadata.js.packageName": [ + "boilerplates/cloudflare/package.json", + "nx/core/package-json" + ], + "metadata.js.packageVersion": [ + "boilerplates/cloudflare/package.json", + "nx/core/package-json" + ], + "metadata.js.isInPackageManagerWorkspaces": [ + "boilerplates/cloudflare/package.json", + "nx/core/package-json" + ], + "targets": [ + "boilerplates/cloudflare/package.json", + "nx/core/package-json" + ], + "targets.check-types": [ + "boilerplates/cloudflare/package.json", + "nx/core/package-json" + ], + "targets.check-types.executor": [ + "boilerplates/cloudflare/package.json", + "nx/core/package-json" + ], + "targets.check-types.options": [ + "boilerplates/cloudflare/package.json", + "nx/core/package-json" + ], + "targets.check-types.metadata": [ + "boilerplates/cloudflare/package.json", + "nx/core/package-json" + ], + "targets.check-types.options.script": [ + "boilerplates/cloudflare/package.json", + "nx/core/package-json" + ], + "targets.check-types.metadata.scriptContent": [ + "boilerplates/cloudflare/package.json", + "nx/core/package-json" + ], + "targets.check-types.metadata.runCommand": [ + "boilerplates/cloudflare/package.json", + "nx/core/package-json" + ], + "targets.build": [ + "boilerplates/cloudflare/package.json", + "nx/core/package-json" + ], + "targets.build.executor": [ + "boilerplates/cloudflare/package.json", + "nx/core/package-json" + ], + "targets.build.options": [ + "boilerplates/cloudflare/package.json", + "nx/core/package-json" + ], + "targets.build.metadata": [ + "boilerplates/cloudflare/package.json", + "nx/core/package-json" + ], + "targets.build.options.script": [ + "boilerplates/cloudflare/package.json", + "nx/core/package-json" + ], + "targets.build.metadata.scriptContent": [ + "boilerplates/cloudflare/package.json", + "nx/core/package-json" + ], + "targets.build.metadata.runCommand": [ + "boilerplates/cloudflare/package.json", + "nx/core/package-json" + ], + "targets.check-types.cache": [ + "nx.json", + "nx/target-defaults" + ], + "targets.check-types.parallelism": [ + "nx.json", + "nx/target-defaults" + ], + "targets.build.cache": [ + "nx.json", + "nx/target-defaults" + ], + "targets.build.dependsOn": [ + "nx.json", + "nx/target-defaults" + ], + "targets.build.inputs": [ + "nx.json", + "nx/target-defaults" + ], + "targets.build.outputs": [ + "nx.json", + "nx/target-defaults" + ], + "targets.build.parallelism": [ + "nx.json", + "nx/target-defaults" + ] + }, + "boilerplates/compiled": { + "root": [ + "boilerplates/compiled/package.json", + "nx/core/package-json" + ], + "name": [ + "boilerplates/compiled/package.json", + "nx/core/package-json" + ], + "tags": [ + "boilerplates/compiled/package.json", + "nx/core/package-json" + ], + "tags.npm:private": [ + "boilerplates/compiled/package.json", + "nx/core/package-json" + ], + "tags.type:boilerplate": [ + "boilerplates/compiled/package.json", + "nx/core/package-json" + ], + "metadata.targetGroups": [ + "boilerplates/compiled/package.json", + "nx/core/package-json" + ], + "metadata.targetGroups.NPM Scripts": [ + "boilerplates/compiled/package.json", + "nx/core/package-json" + ], + "metadata.targetGroups.NPM Scripts.0": [ + "boilerplates/compiled/package.json", + "nx/core/package-json" + ], + "metadata.targetGroups.NPM Scripts.1": [ + "boilerplates/compiled/package.json", + "nx/core/package-json" + ], + "metadata.description": [ + "boilerplates/compiled/package.json", + "nx/core/package-json" + ], + "metadata.js": [ + "boilerplates/compiled/package.json", + "nx/core/package-json" + ], + "metadata.js.packageName": [ + "boilerplates/compiled/package.json", + "nx/core/package-json" + ], + "metadata.js.packageVersion": [ + "boilerplates/compiled/package.json", + "nx/core/package-json" + ], + "metadata.js.isInPackageManagerWorkspaces": [ + "boilerplates/compiled/package.json", + "nx/core/package-json" + ], + "targets": [ + "boilerplates/compiled/package.json", + "nx/core/package-json" + ], + "targets.check-types": [ + "boilerplates/compiled/package.json", + "nx/core/package-json" + ], + "targets.check-types.executor": [ + "boilerplates/compiled/package.json", + "nx/core/package-json" + ], + "targets.check-types.options": [ + "boilerplates/compiled/package.json", + "nx/core/package-json" + ], + "targets.check-types.metadata": [ + "boilerplates/compiled/package.json", + "nx/core/package-json" + ], + "targets.check-types.options.script": [ + "boilerplates/compiled/package.json", + "nx/core/package-json" + ], + "targets.check-types.metadata.scriptContent": [ + "boilerplates/compiled/package.json", + "nx/core/package-json" + ], + "targets.check-types.metadata.runCommand": [ + "boilerplates/compiled/package.json", + "nx/core/package-json" + ], + "targets.build": [ + "boilerplates/compiled/package.json", + "nx/core/package-json" + ], + "targets.build.executor": [ + "boilerplates/compiled/package.json", + "nx/core/package-json" + ], + "targets.build.options": [ + "boilerplates/compiled/package.json", + "nx/core/package-json" + ], + "targets.build.metadata": [ + "boilerplates/compiled/package.json", + "nx/core/package-json" + ], + "targets.build.options.script": [ + "boilerplates/compiled/package.json", + "nx/core/package-json" + ], + "targets.build.metadata.scriptContent": [ + "boilerplates/compiled/package.json", + "nx/core/package-json" + ], + "targets.build.metadata.runCommand": [ + "boilerplates/compiled/package.json", + "nx/core/package-json" + ], + "targets.check-types.cache": [ + "nx.json", + "nx/target-defaults" + ], + "targets.check-types.parallelism": [ + "nx.json", + "nx/target-defaults" + ], + "targets.build.cache": [ + "nx.json", + "nx/target-defaults" + ], + "targets.build.dependsOn": [ + "nx.json", + "nx/target-defaults" + ], + "targets.build.inputs": [ + "nx.json", + "nx/target-defaults" + ], + "targets.build.outputs": [ + "nx.json", + "nx/target-defaults" + ], + "targets.build.parallelism": [ + "nx.json", + "nx/target-defaults" + ] + }, + "boilerplates/d1": { + "root": [ + "boilerplates/d1/package.json", + "nx/core/package-json" + ], + "name": [ + "boilerplates/d1/package.json", + "nx/core/package-json" + ], + "tags": [ + "boilerplates/d1/package.json", + "nx/core/package-json" + ], + "tags.npm:private": [ + "boilerplates/d1/package.json", + "nx/core/package-json" + ], + "tags.type:boilerplate": [ + "boilerplates/d1/package.json", + "nx/core/package-json" + ], + "metadata.targetGroups": [ + "boilerplates/d1/package.json", + "nx/core/package-json" + ], + "metadata.targetGroups.NPM Scripts": [ + "boilerplates/d1/package.json", + "nx/core/package-json" + ], + "metadata.targetGroups.NPM Scripts.0": [ + "boilerplates/d1/package.json", + "nx/core/package-json" + ], + "metadata.targetGroups.NPM Scripts.1": [ + "boilerplates/d1/package.json", + "nx/core/package-json" + ], + "metadata.description": [ + "boilerplates/d1/package.json", + "nx/core/package-json" + ], + "metadata.js": [ + "boilerplates/d1/package.json", + "nx/core/package-json" + ], + "metadata.js.packageName": [ + "boilerplates/d1/package.json", + "nx/core/package-json" + ], + "metadata.js.packageVersion": [ + "boilerplates/d1/package.json", + "nx/core/package-json" + ], + "metadata.js.packageExports": [ + "boilerplates/d1/package.json", + "nx/core/package-json" + ], + "metadata.js.isInPackageManagerWorkspaces": [ + "boilerplates/d1/package.json", + "nx/core/package-json" + ], + "targets": [ + "boilerplates/d1/package.json", + "nx/core/package-json" + ], + "targets.check-types": [ + "boilerplates/d1/package.json", + "nx/core/package-json" + ], + "targets.check-types.executor": [ + "boilerplates/d1/package.json", + "nx/core/package-json" + ], + "targets.check-types.options": [ + "boilerplates/d1/package.json", + "nx/core/package-json" + ], + "targets.check-types.metadata": [ + "boilerplates/d1/package.json", + "nx/core/package-json" + ], + "targets.check-types.options.script": [ + "boilerplates/d1/package.json", + "nx/core/package-json" + ], + "targets.check-types.metadata.scriptContent": [ + "boilerplates/d1/package.json", + "nx/core/package-json" + ], + "targets.check-types.metadata.runCommand": [ + "boilerplates/d1/package.json", + "nx/core/package-json" + ], + "targets.build": [ + "boilerplates/d1/package.json", + "nx/core/package-json" + ], + "targets.build.executor": [ + "boilerplates/d1/package.json", + "nx/core/package-json" + ], + "targets.build.options": [ + "boilerplates/d1/package.json", + "nx/core/package-json" + ], + "targets.build.metadata": [ + "boilerplates/d1/package.json", + "nx/core/package-json" + ], + "targets.build.options.script": [ + "boilerplates/d1/package.json", + "nx/core/package-json" + ], + "targets.build.metadata.scriptContent": [ + "boilerplates/d1/package.json", + "nx/core/package-json" + ], + "targets.build.metadata.runCommand": [ + "boilerplates/d1/package.json", + "nx/core/package-json" + ], + "targets.check-types.cache": [ + "nx.json", + "nx/target-defaults" + ], + "targets.check-types.parallelism": [ + "nx.json", + "nx/target-defaults" + ], + "targets.build.cache": [ + "nx.json", + "nx/target-defaults" + ], + "targets.build.dependsOn": [ + "nx.json", + "nx/target-defaults" + ], + "targets.build.inputs": [ + "nx.json", + "nx/target-defaults" + ], + "targets.build.outputs": [ + "nx.json", + "nx/target-defaults" + ], + "targets.build.parallelism": [ + "nx.json", + "nx/target-defaults" + ] + }, + "boilerplates/d1-kysely": { + "root": [ + "boilerplates/d1-kysely/package.json", + "nx/core/package-json" + ], + "name": [ + "boilerplates/d1-kysely/package.json", + "nx/core/package-json" + ], + "tags": [ + "boilerplates/d1-kysely/package.json", + "nx/core/package-json" + ], + "tags.npm:private": [ + "boilerplates/d1-kysely/package.json", + "nx/core/package-json" + ], + "tags.type:boilerplate": [ + "boilerplates/d1-kysely/package.json", + "nx/core/package-json" + ], + "metadata.targetGroups": [ + "boilerplates/d1-kysely/package.json", + "nx/core/package-json" + ], + "metadata.targetGroups.NPM Scripts": [ + "boilerplates/d1-kysely/package.json", + "nx/core/package-json" + ], + "metadata.targetGroups.NPM Scripts.0": [ + "boilerplates/d1-kysely/package.json", + "nx/core/package-json" + ], + "metadata.targetGroups.NPM Scripts.1": [ + "boilerplates/d1-kysely/package.json", + "nx/core/package-json" + ], + "metadata.description": [ + "boilerplates/d1-kysely/package.json", + "nx/core/package-json" + ], + "metadata.js": [ + "boilerplates/d1-kysely/package.json", + "nx/core/package-json" + ], + "metadata.js.packageName": [ + "boilerplates/d1-kysely/package.json", + "nx/core/package-json" + ], + "metadata.js.packageVersion": [ + "boilerplates/d1-kysely/package.json", + "nx/core/package-json" + ], + "metadata.js.isInPackageManagerWorkspaces": [ + "boilerplates/d1-kysely/package.json", + "nx/core/package-json" + ], + "targets": [ + "boilerplates/d1-kysely/package.json", + "nx/core/package-json" + ], + "targets.check-types": [ + "boilerplates/d1-kysely/package.json", + "nx/core/package-json" + ], + "targets.check-types.executor": [ + "boilerplates/d1-kysely/package.json", + "nx/core/package-json" + ], + "targets.check-types.options": [ + "boilerplates/d1-kysely/package.json", + "nx/core/package-json" + ], + "targets.check-types.metadata": [ + "boilerplates/d1-kysely/package.json", + "nx/core/package-json" + ], + "targets.check-types.options.script": [ + "boilerplates/d1-kysely/package.json", + "nx/core/package-json" + ], + "targets.check-types.metadata.scriptContent": [ + "boilerplates/d1-kysely/package.json", + "nx/core/package-json" + ], + "targets.check-types.metadata.runCommand": [ + "boilerplates/d1-kysely/package.json", + "nx/core/package-json" + ], + "targets.build": [ + "boilerplates/d1-kysely/package.json", + "nx/core/package-json" + ], + "targets.build.executor": [ + "boilerplates/d1-kysely/package.json", + "nx/core/package-json" + ], + "targets.build.options": [ + "boilerplates/d1-kysely/package.json", + "nx/core/package-json" + ], + "targets.build.metadata": [ + "boilerplates/d1-kysely/package.json", + "nx/core/package-json" + ], + "targets.build.options.script": [ + "boilerplates/d1-kysely/package.json", + "nx/core/package-json" + ], + "targets.build.metadata.scriptContent": [ + "boilerplates/d1-kysely/package.json", + "nx/core/package-json" + ], + "targets.build.metadata.runCommand": [ + "boilerplates/d1-kysely/package.json", + "nx/core/package-json" + ], + "targets.check-types.cache": [ + "nx.json", + "nx/target-defaults" + ], + "targets.check-types.parallelism": [ + "nx.json", + "nx/target-defaults" + ], + "targets.build.cache": [ + "nx.json", + "nx/target-defaults" + ], + "targets.build.dependsOn": [ + "nx.json", + "nx/target-defaults" + ], + "targets.build.inputs": [ + "nx.json", + "nx/target-defaults" + ], + "targets.build.outputs": [ + "nx.json", + "nx/target-defaults" + ], + "targets.build.parallelism": [ + "nx.json", + "nx/target-defaults" + ] + }, + "boilerplates/d1-sqlite": { + "root": [ + "boilerplates/d1-sqlite/package.json", + "nx/core/package-json" + ], + "name": [ + "boilerplates/d1-sqlite/package.json", + "nx/core/package-json" + ], + "tags": [ + "boilerplates/d1-sqlite/package.json", + "nx/core/package-json" + ], + "tags.npm:private": [ + "boilerplates/d1-sqlite/package.json", + "nx/core/package-json" + ], + "tags.type:boilerplate": [ + "boilerplates/d1-sqlite/package.json", + "nx/core/package-json" + ], + "metadata.targetGroups": [ + "boilerplates/d1-sqlite/package.json", + "nx/core/package-json" + ], + "metadata.targetGroups.NPM Scripts": [ + "boilerplates/d1-sqlite/package.json", + "nx/core/package-json" + ], + "metadata.targetGroups.NPM Scripts.0": [ + "boilerplates/d1-sqlite/package.json", + "nx/core/package-json" + ], + "metadata.targetGroups.NPM Scripts.1": [ + "boilerplates/d1-sqlite/package.json", + "nx/core/package-json" + ], + "metadata.description": [ + "boilerplates/d1-sqlite/package.json", + "nx/core/package-json" + ], + "metadata.js": [ + "boilerplates/d1-sqlite/package.json", + "nx/core/package-json" + ], + "metadata.js.packageName": [ + "boilerplates/d1-sqlite/package.json", + "nx/core/package-json" + ], + "metadata.js.packageVersion": [ + "boilerplates/d1-sqlite/package.json", + "nx/core/package-json" + ], + "metadata.js.packageExports": [ + "boilerplates/d1-sqlite/package.json", + "nx/core/package-json" + ], + "metadata.js.isInPackageManagerWorkspaces": [ + "boilerplates/d1-sqlite/package.json", + "nx/core/package-json" + ], + "targets": [ + "boilerplates/d1-sqlite/package.json", + "nx/core/package-json" + ], + "targets.check-types": [ + "boilerplates/d1-sqlite/package.json", + "nx/core/package-json" + ], + "targets.check-types.executor": [ + "boilerplates/d1-sqlite/package.json", + "nx/core/package-json" + ], + "targets.check-types.options": [ + "boilerplates/d1-sqlite/package.json", + "nx/core/package-json" + ], + "targets.check-types.metadata": [ + "boilerplates/d1-sqlite/package.json", + "nx/core/package-json" + ], + "targets.check-types.options.script": [ + "boilerplates/d1-sqlite/package.json", + "nx/core/package-json" + ], + "targets.check-types.metadata.scriptContent": [ + "boilerplates/d1-sqlite/package.json", + "nx/core/package-json" + ], + "targets.check-types.metadata.runCommand": [ + "boilerplates/d1-sqlite/package.json", + "nx/core/package-json" + ], + "targets.build": [ + "boilerplates/d1-sqlite/package.json", + "nx/core/package-json" + ], + "targets.build.executor": [ + "boilerplates/d1-sqlite/package.json", + "nx/core/package-json" + ], + "targets.build.options": [ + "boilerplates/d1-sqlite/package.json", + "nx/core/package-json" + ], + "targets.build.metadata": [ + "boilerplates/d1-sqlite/package.json", + "nx/core/package-json" + ], + "targets.build.options.script": [ + "boilerplates/d1-sqlite/package.json", + "nx/core/package-json" + ], + "targets.build.metadata.scriptContent": [ + "boilerplates/d1-sqlite/package.json", + "nx/core/package-json" + ], + "targets.build.metadata.runCommand": [ + "boilerplates/d1-sqlite/package.json", + "nx/core/package-json" + ], + "targets.check-types.cache": [ + "nx.json", + "nx/target-defaults" + ], + "targets.check-types.parallelism": [ + "nx.json", + "nx/target-defaults" + ], + "targets.build.cache": [ + "nx.json", + "nx/target-defaults" + ], + "targets.build.dependsOn": [ + "nx.json", + "nx/target-defaults" + ], + "targets.build.inputs": [ + "nx.json", + "nx/target-defaults" + ], + "targets.build.outputs": [ + "nx.json", + "nx/target-defaults" + ], + "targets.build.parallelism": [ + "nx.json", + "nx/target-defaults" + ] + }, + "boilerplates/drizzle": { + "root": [ + "boilerplates/drizzle/package.json", + "nx/core/package-json" + ], + "name": [ + "boilerplates/drizzle/package.json", + "nx/core/package-json" + ], + "tags": [ + "boilerplates/drizzle/package.json", + "nx/core/package-json" + ], + "tags.npm:private": [ + "boilerplates/drizzle/package.json", + "nx/core/package-json" + ], + "tags.type:boilerplate": [ + "boilerplates/drizzle/package.json", + "nx/core/package-json" + ], + "metadata.targetGroups": [ + "boilerplates/drizzle/package.json", + "nx/core/package-json" + ], + "metadata.targetGroups.NPM Scripts": [ + "boilerplates/drizzle/package.json", + "nx/core/package-json" + ], + "metadata.targetGroups.NPM Scripts.0": [ + "boilerplates/drizzle/package.json", + "nx/core/package-json" + ], + "metadata.targetGroups.NPM Scripts.1": [ + "boilerplates/drizzle/package.json", + "nx/core/package-json" + ], + "metadata.description": [ + "boilerplates/drizzle/package.json", + "nx/core/package-json" + ], + "metadata.js": [ + "boilerplates/drizzle/package.json", + "nx/core/package-json" + ], + "metadata.js.packageName": [ + "boilerplates/drizzle/package.json", + "nx/core/package-json" + ], + "metadata.js.packageVersion": [ + "boilerplates/drizzle/package.json", + "nx/core/package-json" + ], + "metadata.js.packageExports": [ + "boilerplates/drizzle/package.json", + "nx/core/package-json" + ], + "metadata.js.isInPackageManagerWorkspaces": [ + "boilerplates/drizzle/package.json", + "nx/core/package-json" + ], + "targets": [ + "boilerplates/drizzle/package.json", + "nx/core/package-json" + ], + "targets.check-types": [ + "boilerplates/drizzle/package.json", + "nx/core/package-json" + ], + "targets.check-types.executor": [ + "boilerplates/drizzle/package.json", + "nx/core/package-json" + ], + "targets.check-types.options": [ + "boilerplates/drizzle/package.json", + "nx/core/package-json" + ], + "targets.check-types.metadata": [ + "boilerplates/drizzle/package.json", + "nx/core/package-json" + ], + "targets.check-types.options.script": [ + "boilerplates/drizzle/package.json", + "nx/core/package-json" + ], + "targets.check-types.metadata.scriptContent": [ + "boilerplates/drizzle/package.json", + "nx/core/package-json" + ], + "targets.check-types.metadata.runCommand": [ + "boilerplates/drizzle/package.json", + "nx/core/package-json" + ], + "targets.build": [ + "boilerplates/drizzle/package.json", + "nx/core/package-json" + ], + "targets.build.executor": [ + "boilerplates/drizzle/package.json", + "nx/core/package-json" + ], + "targets.build.options": [ + "boilerplates/drizzle/package.json", + "nx/core/package-json" + ], + "targets.build.metadata": [ + "boilerplates/drizzle/package.json", + "nx/core/package-json" + ], + "targets.build.options.script": [ + "boilerplates/drizzle/package.json", + "nx/core/package-json" + ], + "targets.build.metadata.scriptContent": [ + "boilerplates/drizzle/package.json", + "nx/core/package-json" + ], + "targets.build.metadata.runCommand": [ + "boilerplates/drizzle/package.json", + "nx/core/package-json" + ], + "targets.check-types.cache": [ + "nx.json", + "nx/target-defaults" + ], + "targets.check-types.parallelism": [ + "nx.json", + "nx/target-defaults" + ], + "targets.build.cache": [ + "nx.json", + "nx/target-defaults" + ], + "targets.build.dependsOn": [ + "nx.json", + "nx/target-defaults" + ], + "targets.build.inputs": [ + "nx.json", + "nx/target-defaults" + ], + "targets.build.outputs": [ + "nx.json", + "nx/target-defaults" + ], + "targets.build.parallelism": [ + "nx.json", + "nx/target-defaults" + ] + }, + "boilerplates/eslint": { + "root": [ + "boilerplates/eslint/package.json", + "nx/core/package-json" + ], + "name": [ + "boilerplates/eslint/package.json", + "nx/core/package-json" + ], + "tags": [ + "boilerplates/eslint/package.json", + "nx/core/package-json" + ], + "tags.npm:private": [ + "boilerplates/eslint/package.json", + "nx/core/package-json" + ], + "tags.type:boilerplate": [ + "boilerplates/eslint/package.json", + "nx/core/package-json" + ], + "metadata.targetGroups": [ + "boilerplates/eslint/package.json", + "nx/core/package-json" + ], + "metadata.targetGroups.NPM Scripts": [ + "boilerplates/eslint/package.json", + "nx/core/package-json" + ], + "metadata.targetGroups.NPM Scripts.0": [ + "boilerplates/eslint/package.json", + "nx/core/package-json" + ], + "metadata.targetGroups.NPM Scripts.1": [ + "boilerplates/eslint/package.json", + "nx/core/package-json" + ], + "metadata.description": [ + "boilerplates/eslint/package.json", + "nx/core/package-json" + ], + "metadata.js": [ + "boilerplates/eslint/package.json", + "nx/core/package-json" + ], + "metadata.js.packageName": [ + "boilerplates/eslint/package.json", + "nx/core/package-json" + ], + "metadata.js.packageVersion": [ + "boilerplates/eslint/package.json", + "nx/core/package-json" + ], + "metadata.js.packageExports": [ + "boilerplates/eslint/package.json", + "nx/core/package-json" + ], + "metadata.js.isInPackageManagerWorkspaces": [ + "boilerplates/eslint/package.json", + "nx/core/package-json" + ], + "targets": [ + "boilerplates/eslint/package.json", + "nx/core/package-json" + ], + "targets.check-types": [ + "boilerplates/eslint/package.json", + "nx/core/package-json" + ], + "targets.check-types.executor": [ + "boilerplates/eslint/package.json", + "nx/core/package-json" + ], + "targets.check-types.options": [ + "boilerplates/eslint/package.json", + "nx/core/package-json" + ], + "targets.check-types.metadata": [ + "boilerplates/eslint/package.json", + "nx/core/package-json" + ], + "targets.check-types.options.script": [ + "boilerplates/eslint/package.json", + "nx/core/package-json" + ], + "targets.check-types.metadata.scriptContent": [ + "boilerplates/eslint/package.json", + "nx/core/package-json" + ], + "targets.check-types.metadata.runCommand": [ + "boilerplates/eslint/package.json", + "nx/core/package-json" + ], + "targets.build": [ + "boilerplates/eslint/package.json", + "nx/core/package-json" + ], + "targets.build.executor": [ + "boilerplates/eslint/package.json", + "nx/core/package-json" + ], + "targets.build.options": [ + "boilerplates/eslint/package.json", + "nx/core/package-json" + ], + "targets.build.metadata": [ + "boilerplates/eslint/package.json", + "nx/core/package-json" + ], + "targets.build.options.script": [ + "boilerplates/eslint/package.json", + "nx/core/package-json" + ], + "targets.build.metadata.scriptContent": [ + "boilerplates/eslint/package.json", + "nx/core/package-json" + ], + "targets.build.metadata.runCommand": [ + "boilerplates/eslint/package.json", + "nx/core/package-json" + ], + "targets.check-types.cache": [ + "nx.json", + "nx/target-defaults" + ], + "targets.check-types.parallelism": [ + "nx.json", + "nx/target-defaults" + ], + "targets.build.cache": [ + "nx.json", + "nx/target-defaults" + ], + "targets.build.dependsOn": [ + "nx.json", + "nx/target-defaults" + ], + "targets.build.inputs": [ + "nx.json", + "nx/target-defaults" + ], + "targets.build.outputs": [ + "nx.json", + "nx/target-defaults" + ], + "targets.build.parallelism": [ + "nx.json", + "nx/target-defaults" + ] + }, + "boilerplates/express": { + "root": [ + "boilerplates/express/package.json", + "nx/core/package-json" + ], + "name": [ + "boilerplates/express/package.json", + "nx/core/package-json" + ], + "tags": [ + "boilerplates/express/package.json", + "nx/core/package-json" + ], + "tags.npm:private": [ + "boilerplates/express/package.json", + "nx/core/package-json" + ], + "tags.type:boilerplate": [ + "boilerplates/express/package.json", + "nx/core/package-json" + ], + "metadata.targetGroups": [ + "boilerplates/express/package.json", + "nx/core/package-json" + ], + "metadata.targetGroups.NPM Scripts": [ + "boilerplates/express/package.json", + "nx/core/package-json" + ], + "metadata.targetGroups.NPM Scripts.0": [ + "boilerplates/express/package.json", + "nx/core/package-json" + ], + "metadata.targetGroups.NPM Scripts.1": [ + "boilerplates/express/package.json", + "nx/core/package-json" + ], + "metadata.description": [ + "boilerplates/express/package.json", + "nx/core/package-json" + ], + "metadata.js": [ + "boilerplates/express/package.json", + "nx/core/package-json" + ], + "metadata.js.packageName": [ + "boilerplates/express/package.json", + "nx/core/package-json" + ], + "metadata.js.packageVersion": [ + "boilerplates/express/package.json", + "nx/core/package-json" + ], + "metadata.js.packageExports": [ + "boilerplates/express/package.json", + "nx/core/package-json" + ], + "metadata.js.isInPackageManagerWorkspaces": [ + "boilerplates/express/package.json", + "nx/core/package-json" + ], + "targets": [ + "boilerplates/express/package.json", + "nx/core/package-json" + ], + "targets.check-types": [ + "boilerplates/express/package.json", + "nx/core/package-json" + ], + "targets.check-types.executor": [ + "boilerplates/express/package.json", + "nx/core/package-json" + ], + "targets.check-types.options": [ + "boilerplates/express/package.json", + "nx/core/package-json" + ], + "targets.check-types.metadata": [ + "boilerplates/express/package.json", + "nx/core/package-json" + ], + "targets.check-types.options.script": [ + "boilerplates/express/package.json", + "nx/core/package-json" + ], + "targets.check-types.metadata.scriptContent": [ + "boilerplates/express/package.json", + "nx/core/package-json" + ], + "targets.check-types.metadata.runCommand": [ + "boilerplates/express/package.json", + "nx/core/package-json" + ], + "targets.build": [ + "boilerplates/express/package.json", + "nx/core/package-json" + ], + "targets.build.executor": [ + "boilerplates/express/package.json", + "nx/core/package-json" + ], + "targets.build.options": [ + "boilerplates/express/package.json", + "nx/core/package-json" + ], + "targets.build.metadata": [ + "boilerplates/express/package.json", + "nx/core/package-json" + ], + "targets.build.options.script": [ + "boilerplates/express/package.json", + "nx/core/package-json" + ], + "targets.build.metadata.scriptContent": [ + "boilerplates/express/package.json", + "nx/core/package-json" + ], + "targets.build.metadata.runCommand": [ + "boilerplates/express/package.json", + "nx/core/package-json" + ], + "targets.check-types.cache": [ + "nx.json", + "nx/target-defaults" + ], + "targets.check-types.parallelism": [ + "nx.json", + "nx/target-defaults" + ], + "targets.build.cache": [ + "nx.json", + "nx/target-defaults" + ], + "targets.build.dependsOn": [ + "nx.json", + "nx/target-defaults" + ], + "targets.build.inputs": [ + "nx.json", + "nx/target-defaults" + ], + "targets.build.outputs": [ + "nx.json", + "nx/target-defaults" + ], + "targets.build.parallelism": [ + "nx.json", + "nx/target-defaults" + ] + }, + "boilerplates/fastify": { + "root": [ + "boilerplates/fastify/package.json", + "nx/core/package-json" + ], + "name": [ + "boilerplates/fastify/package.json", + "nx/core/package-json" + ], + "tags": [ + "boilerplates/fastify/package.json", + "nx/core/package-json" + ], + "tags.npm:private": [ + "boilerplates/fastify/package.json", + "nx/core/package-json" + ], + "tags.type:boilerplate": [ + "boilerplates/fastify/package.json", + "nx/core/package-json" + ], + "metadata.targetGroups": [ + "boilerplates/fastify/package.json", + "nx/core/package-json" + ], + "metadata.targetGroups.NPM Scripts": [ + "boilerplates/fastify/package.json", + "nx/core/package-json" + ], + "metadata.targetGroups.NPM Scripts.0": [ + "boilerplates/fastify/package.json", + "nx/core/package-json" + ], + "metadata.targetGroups.NPM Scripts.1": [ + "boilerplates/fastify/package.json", + "nx/core/package-json" + ], + "metadata.description": [ + "boilerplates/fastify/package.json", + "nx/core/package-json" + ], + "metadata.js": [ + "boilerplates/fastify/package.json", + "nx/core/package-json" + ], + "metadata.js.packageName": [ + "boilerplates/fastify/package.json", + "nx/core/package-json" + ], + "metadata.js.packageVersion": [ + "boilerplates/fastify/package.json", + "nx/core/package-json" + ], + "metadata.js.packageExports": [ + "boilerplates/fastify/package.json", + "nx/core/package-json" + ], + "metadata.js.isInPackageManagerWorkspaces": [ + "boilerplates/fastify/package.json", + "nx/core/package-json" + ], + "targets": [ + "boilerplates/fastify/package.json", + "nx/core/package-json" + ], + "targets.check-types": [ + "boilerplates/fastify/package.json", + "nx/core/package-json" + ], + "targets.check-types.executor": [ + "boilerplates/fastify/package.json", + "nx/core/package-json" + ], + "targets.check-types.options": [ + "boilerplates/fastify/package.json", + "nx/core/package-json" + ], + "targets.check-types.metadata": [ + "boilerplates/fastify/package.json", + "nx/core/package-json" + ], + "targets.check-types.options.script": [ + "boilerplates/fastify/package.json", + "nx/core/package-json" + ], + "targets.check-types.metadata.scriptContent": [ + "boilerplates/fastify/package.json", + "nx/core/package-json" + ], + "targets.check-types.metadata.runCommand": [ + "boilerplates/fastify/package.json", + "nx/core/package-json" + ], + "targets.build": [ + "boilerplates/fastify/package.json", + "nx/core/package-json" + ], + "targets.build.executor": [ + "boilerplates/fastify/package.json", + "nx/core/package-json" + ], + "targets.build.options": [ + "boilerplates/fastify/package.json", + "nx/core/package-json" + ], + "targets.build.metadata": [ + "boilerplates/fastify/package.json", + "nx/core/package-json" + ], + "targets.build.options.script": [ + "boilerplates/fastify/package.json", + "nx/core/package-json" + ], + "targets.build.metadata.scriptContent": [ + "boilerplates/fastify/package.json", + "nx/core/package-json" + ], + "targets.build.metadata.runCommand": [ + "boilerplates/fastify/package.json", + "nx/core/package-json" + ], + "targets.check-types.cache": [ + "nx.json", + "nx/target-defaults" + ], + "targets.check-types.parallelism": [ + "nx.json", + "nx/target-defaults" + ], + "targets.build.cache": [ + "nx.json", + "nx/target-defaults" + ], + "targets.build.dependsOn": [ + "nx.json", + "nx/target-defaults" + ], + "targets.build.inputs": [ + "nx.json", + "nx/target-defaults" + ], + "targets.build.outputs": [ + "nx.json", + "nx/target-defaults" + ], + "targets.build.parallelism": [ + "nx.json", + "nx/target-defaults" + ] + }, + "boilerplates/google-analytics": { + "root": [ + "boilerplates/google-analytics/package.json", + "nx/core/package-json" + ], + "name": [ + "boilerplates/google-analytics/package.json", + "nx/core/package-json" + ], + "tags": [ + "boilerplates/google-analytics/package.json", + "nx/core/package-json" + ], + "tags.npm:private": [ + "boilerplates/google-analytics/package.json", + "nx/core/package-json" + ], + "tags.type:boilerplate": [ + "boilerplates/google-analytics/package.json", + "nx/core/package-json" + ], + "metadata.targetGroups": [ + "boilerplates/google-analytics/package.json", + "nx/core/package-json" + ], + "metadata.targetGroups.NPM Scripts": [ + "boilerplates/google-analytics/package.json", + "nx/core/package-json" + ], + "metadata.targetGroups.NPM Scripts.0": [ + "boilerplates/google-analytics/package.json", + "nx/core/package-json" + ], + "metadata.targetGroups.NPM Scripts.1": [ + "boilerplates/google-analytics/package.json", + "nx/core/package-json" + ], + "metadata.description": [ + "boilerplates/google-analytics/package.json", + "nx/core/package-json" + ], + "metadata.js": [ + "boilerplates/google-analytics/package.json", + "nx/core/package-json" + ], + "metadata.js.packageName": [ + "boilerplates/google-analytics/package.json", + "nx/core/package-json" + ], + "metadata.js.packageVersion": [ + "boilerplates/google-analytics/package.json", + "nx/core/package-json" + ], + "metadata.js.isInPackageManagerWorkspaces": [ + "boilerplates/google-analytics/package.json", + "nx/core/package-json" + ], + "targets": [ + "boilerplates/google-analytics/package.json", + "nx/core/package-json" + ], + "targets.check-types": [ + "boilerplates/google-analytics/package.json", + "nx/core/package-json" + ], + "targets.check-types.executor": [ + "boilerplates/google-analytics/package.json", + "nx/core/package-json" + ], + "targets.check-types.options": [ + "boilerplates/google-analytics/package.json", + "nx/core/package-json" + ], + "targets.check-types.metadata": [ + "boilerplates/google-analytics/package.json", + "nx/core/package-json" + ], + "targets.check-types.options.script": [ + "boilerplates/google-analytics/package.json", + "nx/core/package-json" + ], + "targets.check-types.metadata.scriptContent": [ + "boilerplates/google-analytics/package.json", + "nx/core/package-json" + ], + "targets.check-types.metadata.runCommand": [ + "boilerplates/google-analytics/package.json", + "nx/core/package-json" + ], + "targets.build": [ + "boilerplates/google-analytics/package.json", + "nx/core/package-json" + ], + "targets.build.executor": [ + "boilerplates/google-analytics/package.json", + "nx/core/package-json" + ], + "targets.build.options": [ + "boilerplates/google-analytics/package.json", + "nx/core/package-json" + ], + "targets.build.metadata": [ + "boilerplates/google-analytics/package.json", + "nx/core/package-json" + ], + "targets.build.options.script": [ + "boilerplates/google-analytics/package.json", + "nx/core/package-json" + ], + "targets.build.metadata.scriptContent": [ + "boilerplates/google-analytics/package.json", + "nx/core/package-json" + ], + "targets.build.metadata.runCommand": [ + "boilerplates/google-analytics/package.json", + "nx/core/package-json" + ], + "targets.check-types.cache": [ + "nx.json", + "nx/target-defaults" + ], + "targets.check-types.parallelism": [ + "nx.json", + "nx/target-defaults" + ], + "targets.build.cache": [ + "nx.json", + "nx/target-defaults" + ], + "targets.build.dependsOn": [ + "nx.json", + "nx/target-defaults" + ], + "targets.build.inputs": [ + "nx.json", + "nx/target-defaults" + ], + "targets.build.outputs": [ + "nx.json", + "nx/target-defaults" + ], + "targets.build.parallelism": [ + "nx.json", + "nx/target-defaults" + ] + }, + "boilerplates/h3": { + "root": [ + "boilerplates/h3/package.json", + "nx/core/package-json" + ], + "name": [ + "boilerplates/h3/package.json", + "nx/core/package-json" + ], + "tags": [ + "boilerplates/h3/package.json", + "nx/core/package-json" + ], + "tags.npm:private": [ + "boilerplates/h3/package.json", + "nx/core/package-json" + ], + "tags.type:boilerplate": [ + "boilerplates/h3/package.json", + "nx/core/package-json" + ], + "metadata.targetGroups": [ + "boilerplates/h3/package.json", + "nx/core/package-json" + ], + "metadata.targetGroups.NPM Scripts": [ + "boilerplates/h3/package.json", + "nx/core/package-json" + ], + "metadata.targetGroups.NPM Scripts.0": [ + "boilerplates/h3/package.json", + "nx/core/package-json" + ], + "metadata.targetGroups.NPM Scripts.1": [ + "boilerplates/h3/package.json", + "nx/core/package-json" + ], + "metadata.description": [ + "boilerplates/h3/package.json", + "nx/core/package-json" + ], + "metadata.js": [ + "boilerplates/h3/package.json", + "nx/core/package-json" + ], + "metadata.js.packageName": [ + "boilerplates/h3/package.json", + "nx/core/package-json" + ], + "metadata.js.packageVersion": [ + "boilerplates/h3/package.json", + "nx/core/package-json" + ], + "metadata.js.packageExports": [ + "boilerplates/h3/package.json", + "nx/core/package-json" + ], + "metadata.js.isInPackageManagerWorkspaces": [ + "boilerplates/h3/package.json", + "nx/core/package-json" + ], + "targets": [ + "boilerplates/h3/package.json", + "nx/core/package-json" + ], + "targets.check-types": [ + "boilerplates/h3/package.json", + "nx/core/package-json" + ], + "targets.check-types.executor": [ + "boilerplates/h3/package.json", + "nx/core/package-json" + ], + "targets.check-types.options": [ + "boilerplates/h3/package.json", + "nx/core/package-json" + ], + "targets.check-types.metadata": [ + "boilerplates/h3/package.json", + "nx/core/package-json" + ], + "targets.check-types.options.script": [ + "boilerplates/h3/package.json", + "nx/core/package-json" + ], + "targets.check-types.metadata.scriptContent": [ + "boilerplates/h3/package.json", + "nx/core/package-json" + ], + "targets.check-types.metadata.runCommand": [ + "boilerplates/h3/package.json", + "nx/core/package-json" + ], + "targets.build": [ + "boilerplates/h3/package.json", + "nx/core/package-json" + ], + "targets.build.executor": [ + "boilerplates/h3/package.json", + "nx/core/package-json" + ], + "targets.build.options": [ + "boilerplates/h3/package.json", + "nx/core/package-json" + ], + "targets.build.metadata": [ + "boilerplates/h3/package.json", + "nx/core/package-json" + ], + "targets.build.options.script": [ + "boilerplates/h3/package.json", + "nx/core/package-json" + ], + "targets.build.metadata.scriptContent": [ + "boilerplates/h3/package.json", + "nx/core/package-json" + ], + "targets.build.metadata.runCommand": [ + "boilerplates/h3/package.json", + "nx/core/package-json" + ], + "targets.check-types.cache": [ + "nx.json", + "nx/target-defaults" + ], + "targets.check-types.parallelism": [ + "nx.json", + "nx/target-defaults" + ], + "targets.build.cache": [ + "nx.json", + "nx/target-defaults" + ], + "targets.build.dependsOn": [ + "nx.json", + "nx/target-defaults" + ], + "targets.build.inputs": [ + "nx.json", + "nx/target-defaults" + ], + "targets.build.outputs": [ + "nx.json", + "nx/target-defaults" + ], + "targets.build.parallelism": [ + "nx.json", + "nx/target-defaults" + ] + }, + "boilerplates/hono": { + "root": [ + "boilerplates/hono/package.json", + "nx/core/package-json" + ], + "name": [ + "boilerplates/hono/package.json", + "nx/core/package-json" + ], + "tags": [ + "boilerplates/hono/package.json", + "nx/core/package-json" + ], + "tags.npm:private": [ + "boilerplates/hono/package.json", + "nx/core/package-json" + ], + "tags.type:boilerplate": [ + "boilerplates/hono/package.json", + "nx/core/package-json" + ], + "metadata.targetGroups": [ + "boilerplates/hono/package.json", + "nx/core/package-json" + ], + "metadata.targetGroups.NPM Scripts": [ + "boilerplates/hono/package.json", + "nx/core/package-json" + ], + "metadata.targetGroups.NPM Scripts.0": [ + "boilerplates/hono/package.json", + "nx/core/package-json" + ], + "metadata.targetGroups.NPM Scripts.1": [ + "boilerplates/hono/package.json", + "nx/core/package-json" + ], + "metadata.description": [ + "boilerplates/hono/package.json", + "nx/core/package-json" + ], + "metadata.js": [ + "boilerplates/hono/package.json", + "nx/core/package-json" + ], + "metadata.js.packageName": [ + "boilerplates/hono/package.json", + "nx/core/package-json" + ], + "metadata.js.packageVersion": [ + "boilerplates/hono/package.json", + "nx/core/package-json" + ], + "metadata.js.packageExports": [ + "boilerplates/hono/package.json", + "nx/core/package-json" + ], + "metadata.js.isInPackageManagerWorkspaces": [ + "boilerplates/hono/package.json", + "nx/core/package-json" + ], + "targets": [ + "boilerplates/hono/package.json", + "nx/core/package-json" + ], + "targets.check-types": [ + "boilerplates/hono/package.json", + "nx/core/package-json" + ], + "targets.check-types.executor": [ + "boilerplates/hono/package.json", + "nx/core/package-json" + ], + "targets.check-types.options": [ + "boilerplates/hono/package.json", + "nx/core/package-json" + ], + "targets.check-types.metadata": [ + "boilerplates/hono/package.json", + "nx/core/package-json" + ], + "targets.check-types.options.script": [ + "boilerplates/hono/package.json", + "nx/core/package-json" + ], + "targets.check-types.metadata.scriptContent": [ + "boilerplates/hono/package.json", + "nx/core/package-json" + ], + "targets.check-types.metadata.runCommand": [ + "boilerplates/hono/package.json", + "nx/core/package-json" + ], + "targets.build": [ + "boilerplates/hono/package.json", + "nx/core/package-json" + ], + "targets.build.executor": [ + "boilerplates/hono/package.json", + "nx/core/package-json" + ], + "targets.build.options": [ + "boilerplates/hono/package.json", + "nx/core/package-json" + ], + "targets.build.metadata": [ + "boilerplates/hono/package.json", + "nx/core/package-json" + ], + "targets.build.options.script": [ + "boilerplates/hono/package.json", + "nx/core/package-json" + ], + "targets.build.metadata.scriptContent": [ + "boilerplates/hono/package.json", + "nx/core/package-json" + ], + "targets.build.metadata.runCommand": [ + "boilerplates/hono/package.json", + "nx/core/package-json" + ], + "targets.check-types.cache": [ + "nx.json", + "nx/target-defaults" + ], + "targets.check-types.parallelism": [ + "nx.json", + "nx/target-defaults" + ], + "targets.build.cache": [ + "nx.json", + "nx/target-defaults" + ], + "targets.build.dependsOn": [ + "nx.json", + "nx/target-defaults" + ], + "targets.build.inputs": [ + "nx.json", + "nx/target-defaults" + ], + "targets.build.outputs": [ + "nx.json", + "nx/target-defaults" + ], + "targets.build.parallelism": [ + "nx.json", + "nx/target-defaults" + ] + }, + "boilerplates/kysely": { + "root": [ + "boilerplates/kysely/package.json", + "nx/core/package-json" + ], + "name": [ + "boilerplates/kysely/package.json", + "nx/core/package-json" + ], + "tags": [ + "boilerplates/kysely/package.json", + "nx/core/package-json" + ], + "tags.npm:private": [ + "boilerplates/kysely/package.json", + "nx/core/package-json" + ], + "tags.type:boilerplate": [ + "boilerplates/kysely/package.json", + "nx/core/package-json" + ], + "metadata.targetGroups": [ + "boilerplates/kysely/package.json", + "nx/core/package-json" + ], + "metadata.targetGroups.NPM Scripts": [ + "boilerplates/kysely/package.json", + "nx/core/package-json" + ], + "metadata.targetGroups.NPM Scripts.0": [ + "boilerplates/kysely/package.json", + "nx/core/package-json" + ], + "metadata.targetGroups.NPM Scripts.1": [ + "boilerplates/kysely/package.json", + "nx/core/package-json" + ], + "metadata.description": [ + "boilerplates/kysely/package.json", + "nx/core/package-json" + ], + "metadata.js": [ + "boilerplates/kysely/package.json", + "nx/core/package-json" + ], + "metadata.js.packageName": [ + "boilerplates/kysely/package.json", + "nx/core/package-json" + ], + "metadata.js.packageVersion": [ + "boilerplates/kysely/package.json", + "nx/core/package-json" + ], + "metadata.js.packageExports": [ + "boilerplates/kysely/package.json", + "nx/core/package-json" + ], + "metadata.js.isInPackageManagerWorkspaces": [ + "boilerplates/kysely/package.json", + "nx/core/package-json" + ], + "targets": [ + "boilerplates/kysely/package.json", + "nx/core/package-json" + ], + "targets.check-types": [ + "boilerplates/kysely/package.json", + "nx/core/package-json" + ], + "targets.check-types.executor": [ + "boilerplates/kysely/package.json", + "nx/core/package-json" + ], + "targets.check-types.options": [ + "boilerplates/kysely/package.json", + "nx/core/package-json" + ], + "targets.check-types.metadata": [ + "boilerplates/kysely/package.json", + "nx/core/package-json" + ], + "targets.check-types.options.script": [ + "boilerplates/kysely/package.json", + "nx/core/package-json" + ], + "targets.check-types.metadata.scriptContent": [ + "boilerplates/kysely/package.json", + "nx/core/package-json" + ], + "targets.check-types.metadata.runCommand": [ + "boilerplates/kysely/package.json", + "nx/core/package-json" + ], + "targets.build": [ + "boilerplates/kysely/package.json", + "nx/core/package-json" + ], + "targets.build.executor": [ + "boilerplates/kysely/package.json", + "nx/core/package-json" + ], + "targets.build.options": [ + "boilerplates/kysely/package.json", + "nx/core/package-json" + ], + "targets.build.metadata": [ + "boilerplates/kysely/package.json", + "nx/core/package-json" + ], + "targets.build.options.script": [ + "boilerplates/kysely/package.json", + "nx/core/package-json" + ], + "targets.build.metadata.scriptContent": [ + "boilerplates/kysely/package.json", + "nx/core/package-json" + ], + "targets.build.metadata.runCommand": [ + "boilerplates/kysely/package.json", + "nx/core/package-json" + ], + "targets.check-types.cache": [ + "nx.json", + "nx/target-defaults" + ], + "targets.check-types.parallelism": [ + "nx.json", + "nx/target-defaults" + ], + "targets.build.cache": [ + "nx.json", + "nx/target-defaults" + ], + "targets.build.dependsOn": [ + "nx.json", + "nx/target-defaults" + ], + "targets.build.inputs": [ + "nx.json", + "nx/target-defaults" + ], + "targets.build.outputs": [ + "nx.json", + "nx/target-defaults" + ], + "targets.build.parallelism": [ + "nx.json", + "nx/target-defaults" + ] + }, + "boilerplates/mantine": { + "root": [ + "boilerplates/mantine/package.json", + "nx/core/package-json" + ], + "name": [ + "boilerplates/mantine/package.json", + "nx/core/package-json" + ], + "tags": [ + "boilerplates/mantine/package.json", + "nx/core/package-json" + ], + "tags.npm:private": [ + "boilerplates/mantine/package.json", + "nx/core/package-json" + ], + "tags.type:boilerplate": [ + "boilerplates/mantine/package.json", + "nx/core/package-json" + ], + "metadata.targetGroups": [ + "boilerplates/mantine/package.json", + "nx/core/package-json" + ], + "metadata.targetGroups.NPM Scripts": [ + "boilerplates/mantine/package.json", + "nx/core/package-json" + ], + "metadata.targetGroups.NPM Scripts.0": [ + "boilerplates/mantine/package.json", + "nx/core/package-json" + ], + "metadata.targetGroups.NPM Scripts.1": [ + "boilerplates/mantine/package.json", + "nx/core/package-json" + ], + "metadata.description": [ + "boilerplates/mantine/package.json", + "nx/core/package-json" + ], + "metadata.js": [ + "boilerplates/mantine/package.json", + "nx/core/package-json" + ], + "metadata.js.packageName": [ + "boilerplates/mantine/package.json", + "nx/core/package-json" + ], + "metadata.js.packageVersion": [ + "boilerplates/mantine/package.json", + "nx/core/package-json" + ], + "metadata.js.packageExports": [ + "boilerplates/mantine/package.json", + "nx/core/package-json" + ], + "metadata.js.isInPackageManagerWorkspaces": [ + "boilerplates/mantine/package.json", + "nx/core/package-json" + ], + "targets": [ + "boilerplates/mantine/package.json", + "nx/core/package-json" + ], + "targets.check-types": [ + "boilerplates/mantine/package.json", + "nx/core/package-json" + ], + "targets.check-types.executor": [ + "boilerplates/mantine/package.json", + "nx/core/package-json" + ], + "targets.check-types.options": [ + "boilerplates/mantine/package.json", + "nx/core/package-json" + ], + "targets.check-types.metadata": [ + "boilerplates/mantine/package.json", + "nx/core/package-json" + ], + "targets.check-types.options.script": [ + "boilerplates/mantine/package.json", + "nx/core/package-json" + ], + "targets.check-types.metadata.scriptContent": [ + "boilerplates/mantine/package.json", + "nx/core/package-json" + ], + "targets.check-types.metadata.runCommand": [ + "boilerplates/mantine/package.json", + "nx/core/package-json" + ], + "targets.build": [ + "boilerplates/mantine/package.json", + "nx/core/package-json" + ], + "targets.build.executor": [ + "boilerplates/mantine/package.json", + "nx/core/package-json" + ], + "targets.build.options": [ + "boilerplates/mantine/package.json", + "nx/core/package-json" + ], + "targets.build.metadata": [ + "boilerplates/mantine/package.json", + "nx/core/package-json" + ], + "targets.build.options.script": [ + "boilerplates/mantine/package.json", + "nx/core/package-json" + ], + "targets.build.metadata.scriptContent": [ + "boilerplates/mantine/package.json", + "nx/core/package-json" + ], + "targets.build.metadata.runCommand": [ + "boilerplates/mantine/package.json", + "nx/core/package-json" + ], + "targets.check-types.cache": [ + "nx.json", + "nx/target-defaults" + ], + "targets.check-types.parallelism": [ + "nx.json", + "nx/target-defaults" + ], + "targets.build.cache": [ + "nx.json", + "nx/target-defaults" + ], + "targets.build.dependsOn": [ + "nx.json", + "nx/target-defaults" + ], + "targets.build.inputs": [ + "nx.json", + "nx/target-defaults" + ], + "targets.build.outputs": [ + "nx.json", + "nx/target-defaults" + ], + "targets.build.parallelism": [ + "nx.json", + "nx/target-defaults" + ] + }, + "boilerplates/oxlint": { + "root": [ + "boilerplates/oxlint/package.json", + "nx/core/package-json" + ], + "name": [ + "boilerplates/oxlint/package.json", + "nx/core/package-json" + ], + "tags": [ + "boilerplates/oxlint/package.json", + "nx/core/package-json" + ], + "tags.npm:private": [ + "boilerplates/oxlint/package.json", + "nx/core/package-json" + ], + "tags.type:boilerplate": [ + "boilerplates/oxlint/package.json", + "nx/core/package-json" + ], + "metadata.targetGroups": [ + "boilerplates/oxlint/package.json", + "nx/core/package-json" + ], + "metadata.targetGroups.NPM Scripts": [ + "boilerplates/oxlint/package.json", + "nx/core/package-json" + ], + "metadata.targetGroups.NPM Scripts.0": [ + "boilerplates/oxlint/package.json", + "nx/core/package-json" + ], + "metadata.targetGroups.NPM Scripts.1": [ + "boilerplates/oxlint/package.json", + "nx/core/package-json" + ], + "metadata.description": [ + "boilerplates/oxlint/package.json", + "nx/core/package-json" + ], + "metadata.js": [ + "boilerplates/oxlint/package.json", + "nx/core/package-json" + ], + "metadata.js.packageName": [ + "boilerplates/oxlint/package.json", + "nx/core/package-json" + ], + "metadata.js.packageVersion": [ + "boilerplates/oxlint/package.json", + "nx/core/package-json" + ], + "metadata.js.isInPackageManagerWorkspaces": [ + "boilerplates/oxlint/package.json", + "nx/core/package-json" + ], + "targets": [ + "boilerplates/oxlint/package.json", + "nx/core/package-json" + ], + "targets.check-types": [ + "boilerplates/oxlint/package.json", + "nx/core/package-json" + ], + "targets.check-types.executor": [ + "boilerplates/oxlint/package.json", + "nx/core/package-json" + ], + "targets.check-types.options": [ + "boilerplates/oxlint/package.json", + "nx/core/package-json" + ], + "targets.check-types.metadata": [ + "boilerplates/oxlint/package.json", + "nx/core/package-json" + ], + "targets.check-types.options.script": [ + "boilerplates/oxlint/package.json", + "nx/core/package-json" + ], + "targets.check-types.metadata.scriptContent": [ + "boilerplates/oxlint/package.json", + "nx/core/package-json" + ], + "targets.check-types.metadata.runCommand": [ + "boilerplates/oxlint/package.json", + "nx/core/package-json" + ], + "targets.build": [ + "boilerplates/oxlint/package.json", + "nx/core/package-json" + ], + "targets.build.executor": [ + "boilerplates/oxlint/package.json", + "nx/core/package-json" + ], + "targets.build.options": [ + "boilerplates/oxlint/package.json", + "nx/core/package-json" + ], + "targets.build.metadata": [ + "boilerplates/oxlint/package.json", + "nx/core/package-json" + ], + "targets.build.options.script": [ + "boilerplates/oxlint/package.json", + "nx/core/package-json" + ], + "targets.build.metadata.scriptContent": [ + "boilerplates/oxlint/package.json", + "nx/core/package-json" + ], + "targets.build.metadata.runCommand": [ + "boilerplates/oxlint/package.json", + "nx/core/package-json" + ], + "targets.check-types.cache": [ + "nx.json", + "nx/target-defaults" + ], + "targets.check-types.parallelism": [ + "nx.json", + "nx/target-defaults" + ], + "targets.build.cache": [ + "nx.json", + "nx/target-defaults" + ], + "targets.build.dependsOn": [ + "nx.json", + "nx/target-defaults" + ], + "targets.build.inputs": [ + "nx.json", + "nx/target-defaults" + ], + "targets.build.outputs": [ + "nx.json", + "nx/target-defaults" + ], + "targets.build.parallelism": [ + "nx.json", + "nx/target-defaults" + ] + }, + "boilerplates/photon": { + "root": [ + "boilerplates/photon/package.json", + "nx/core/package-json" + ], + "name": [ + "boilerplates/photon/package.json", + "nx/core/package-json" + ], + "tags": [ + "boilerplates/photon/package.json", + "nx/core/package-json" + ], + "tags.npm:private": [ + "boilerplates/photon/package.json", + "nx/core/package-json" + ], + "tags.type:boilerplate": [ + "boilerplates/photon/package.json", + "nx/core/package-json" + ], + "metadata.targetGroups": [ + "boilerplates/photon/package.json", + "nx/core/package-json" + ], + "metadata.targetGroups.NPM Scripts": [ + "boilerplates/photon/package.json", + "nx/core/package-json" + ], + "metadata.targetGroups.NPM Scripts.0": [ + "boilerplates/photon/package.json", + "nx/core/package-json" + ], + "metadata.targetGroups.NPM Scripts.1": [ + "boilerplates/photon/package.json", + "nx/core/package-json" + ], + "metadata.description": [ + "boilerplates/photon/package.json", + "nx/core/package-json" + ], + "metadata.js": [ + "boilerplates/photon/package.json", + "nx/core/package-json" + ], + "metadata.js.packageName": [ + "boilerplates/photon/package.json", + "nx/core/package-json" + ], + "metadata.js.packageVersion": [ + "boilerplates/photon/package.json", + "nx/core/package-json" + ], + "metadata.js.isInPackageManagerWorkspaces": [ + "boilerplates/photon/package.json", + "nx/core/package-json" + ], + "targets": [ + "boilerplates/photon/package.json", + "nx/core/package-json" + ], + "targets.check-types": [ + "boilerplates/photon/package.json", + "nx/core/package-json" + ], + "targets.check-types.executor": [ + "boilerplates/photon/package.json", + "nx/core/package-json" + ], + "targets.check-types.options": [ + "boilerplates/photon/package.json", + "nx/core/package-json" + ], + "targets.check-types.metadata": [ + "boilerplates/photon/package.json", + "nx/core/package-json" + ], + "targets.check-types.options.script": [ + "boilerplates/photon/package.json", + "nx/core/package-json" + ], + "targets.check-types.metadata.scriptContent": [ + "boilerplates/photon/package.json", + "nx/core/package-json" + ], + "targets.check-types.metadata.runCommand": [ + "boilerplates/photon/package.json", + "nx/core/package-json" + ], + "targets.build": [ + "boilerplates/photon/package.json", + "nx/core/package-json" + ], + "targets.build.executor": [ + "boilerplates/photon/package.json", + "nx/core/package-json" + ], + "targets.build.options": [ + "boilerplates/photon/package.json", + "nx/core/package-json" + ], + "targets.build.metadata": [ + "boilerplates/photon/package.json", + "nx/core/package-json" + ], + "targets.build.options.script": [ + "boilerplates/photon/package.json", + "nx/core/package-json" + ], + "targets.build.metadata.scriptContent": [ + "boilerplates/photon/package.json", + "nx/core/package-json" + ], + "targets.build.metadata.runCommand": [ + "boilerplates/photon/package.json", + "nx/core/package-json" + ], + "targets.check-types.cache": [ + "nx.json", + "nx/target-defaults" + ], + "targets.check-types.parallelism": [ + "nx.json", + "nx/target-defaults" + ], + "targets.build.cache": [ + "nx.json", + "nx/target-defaults" + ], + "targets.build.dependsOn": [ + "nx.json", + "nx/target-defaults" + ], + "targets.build.inputs": [ + "nx.json", + "nx/target-defaults" + ], + "targets.build.outputs": [ + "nx.json", + "nx/target-defaults" + ], + "targets.build.parallelism": [ + "nx.json", + "nx/target-defaults" + ] + }, + "boilerplates/plausible.io": { + "root": [ + "boilerplates/plausible.io/package.json", + "nx/core/package-json" + ], + "name": [ + "boilerplates/plausible.io/package.json", + "nx/core/package-json" + ], + "tags": [ + "boilerplates/plausible.io/package.json", + "nx/core/package-json" + ], + "tags.npm:private": [ + "boilerplates/plausible.io/package.json", + "nx/core/package-json" + ], + "tags.type:boilerplate": [ + "boilerplates/plausible.io/package.json", + "nx/core/package-json" + ], + "metadata.targetGroups": [ + "boilerplates/plausible.io/package.json", + "nx/core/package-json" + ], + "metadata.targetGroups.NPM Scripts": [ + "boilerplates/plausible.io/package.json", + "nx/core/package-json" + ], + "metadata.targetGroups.NPM Scripts.0": [ + "boilerplates/plausible.io/package.json", + "nx/core/package-json" + ], + "metadata.targetGroups.NPM Scripts.1": [ + "boilerplates/plausible.io/package.json", + "nx/core/package-json" + ], + "metadata.description": [ + "boilerplates/plausible.io/package.json", + "nx/core/package-json" + ], + "metadata.js": [ + "boilerplates/plausible.io/package.json", + "nx/core/package-json" + ], + "metadata.js.packageName": [ + "boilerplates/plausible.io/package.json", + "nx/core/package-json" + ], + "metadata.js.packageVersion": [ + "boilerplates/plausible.io/package.json", + "nx/core/package-json" + ], + "metadata.js.isInPackageManagerWorkspaces": [ + "boilerplates/plausible.io/package.json", + "nx/core/package-json" + ], + "targets": [ + "boilerplates/plausible.io/package.json", + "nx/core/package-json" + ], + "targets.check-types": [ + "boilerplates/plausible.io/package.json", + "nx/core/package-json" + ], + "targets.check-types.executor": [ + "boilerplates/plausible.io/package.json", + "nx/core/package-json" + ], + "targets.check-types.options": [ + "boilerplates/plausible.io/package.json", + "nx/core/package-json" + ], + "targets.check-types.metadata": [ + "boilerplates/plausible.io/package.json", + "nx/core/package-json" + ], + "targets.check-types.options.script": [ + "boilerplates/plausible.io/package.json", + "nx/core/package-json" + ], + "targets.check-types.metadata.scriptContent": [ + "boilerplates/plausible.io/package.json", + "nx/core/package-json" + ], + "targets.check-types.metadata.runCommand": [ + "boilerplates/plausible.io/package.json", + "nx/core/package-json" + ], + "targets.build": [ + "boilerplates/plausible.io/package.json", + "nx/core/package-json" + ], + "targets.build.executor": [ + "boilerplates/plausible.io/package.json", + "nx/core/package-json" + ], + "targets.build.options": [ + "boilerplates/plausible.io/package.json", + "nx/core/package-json" + ], + "targets.build.metadata": [ + "boilerplates/plausible.io/package.json", + "nx/core/package-json" + ], + "targets.build.options.script": [ + "boilerplates/plausible.io/package.json", + "nx/core/package-json" + ], + "targets.build.metadata.scriptContent": [ + "boilerplates/plausible.io/package.json", + "nx/core/package-json" + ], + "targets.build.metadata.runCommand": [ + "boilerplates/plausible.io/package.json", + "nx/core/package-json" + ], + "targets.check-types.cache": [ + "nx.json", + "nx/target-defaults" + ], + "targets.check-types.parallelism": [ + "nx.json", + "nx/target-defaults" + ], + "targets.build.cache": [ + "nx.json", + "nx/target-defaults" + ], + "targets.build.dependsOn": [ + "nx.json", + "nx/target-defaults" + ], + "targets.build.inputs": [ + "nx.json", + "nx/target-defaults" + ], + "targets.build.outputs": [ + "nx.json", + "nx/target-defaults" + ], + "targets.build.parallelism": [ + "nx.json", + "nx/target-defaults" + ] + }, + "boilerplates/pnpm": { + "root": [ + "boilerplates/pnpm/package.json", + "nx/core/package-json" + ], + "name": [ + "boilerplates/pnpm/package.json", + "nx/core/package-json" + ], + "tags": [ + "boilerplates/pnpm/package.json", + "nx/core/package-json" + ], + "tags.npm:private": [ + "boilerplates/pnpm/package.json", + "nx/core/package-json" + ], + "tags.type:boilerplate": [ + "boilerplates/pnpm/package.json", + "nx/core/package-json" + ], + "metadata.targetGroups": [ + "boilerplates/pnpm/package.json", + "nx/core/package-json" + ], + "metadata.targetGroups.NPM Scripts": [ + "boilerplates/pnpm/package.json", + "nx/core/package-json" + ], + "metadata.targetGroups.NPM Scripts.0": [ + "boilerplates/pnpm/package.json", + "nx/core/package-json" + ], + "metadata.targetGroups.NPM Scripts.1": [ + "boilerplates/pnpm/package.json", + "nx/core/package-json" + ], + "metadata.description": [ + "boilerplates/pnpm/package.json", + "nx/core/package-json" + ], + "metadata.js": [ + "boilerplates/pnpm/package.json", + "nx/core/package-json" + ], + "metadata.js.packageName": [ + "boilerplates/pnpm/package.json", + "nx/core/package-json" + ], + "metadata.js.packageVersion": [ + "boilerplates/pnpm/package.json", + "nx/core/package-json" + ], + "metadata.js.isInPackageManagerWorkspaces": [ + "boilerplates/pnpm/package.json", + "nx/core/package-json" + ], + "targets": [ + "boilerplates/pnpm/package.json", + "nx/core/package-json" + ], + "targets.check-types": [ + "boilerplates/pnpm/package.json", + "nx/core/package-json" + ], + "targets.check-types.executor": [ + "boilerplates/pnpm/package.json", + "nx/core/package-json" + ], + "targets.check-types.options": [ + "boilerplates/pnpm/package.json", + "nx/core/package-json" + ], + "targets.check-types.metadata": [ + "boilerplates/pnpm/package.json", + "nx/core/package-json" + ], + "targets.check-types.options.script": [ + "boilerplates/pnpm/package.json", + "nx/core/package-json" + ], + "targets.check-types.metadata.scriptContent": [ + "boilerplates/pnpm/package.json", + "nx/core/package-json" + ], + "targets.check-types.metadata.runCommand": [ + "boilerplates/pnpm/package.json", + "nx/core/package-json" + ], + "targets.build": [ + "boilerplates/pnpm/package.json", + "nx/core/package-json" + ], + "targets.build.executor": [ + "boilerplates/pnpm/package.json", + "nx/core/package-json" + ], + "targets.build.options": [ + "boilerplates/pnpm/package.json", + "nx/core/package-json" + ], + "targets.build.metadata": [ + "boilerplates/pnpm/package.json", + "nx/core/package-json" + ], + "targets.build.options.script": [ + "boilerplates/pnpm/package.json", + "nx/core/package-json" + ], + "targets.build.metadata.scriptContent": [ + "boilerplates/pnpm/package.json", + "nx/core/package-json" + ], + "targets.build.metadata.runCommand": [ + "boilerplates/pnpm/package.json", + "nx/core/package-json" + ], + "targets.check-types.cache": [ + "nx.json", + "nx/target-defaults" + ], + "targets.check-types.parallelism": [ + "nx.json", + "nx/target-defaults" + ], + "targets.build.cache": [ + "nx.json", + "nx/target-defaults" + ], + "targets.build.dependsOn": [ + "nx.json", + "nx/target-defaults" + ], + "targets.build.inputs": [ + "nx.json", + "nx/target-defaults" + ], + "targets.build.outputs": [ + "nx.json", + "nx/target-defaults" + ], + "targets.build.parallelism": [ + "nx.json", + "nx/target-defaults" + ] + }, + "boilerplates/prettier": { + "root": [ + "boilerplates/prettier/package.json", + "nx/core/package-json" + ], + "name": [ + "boilerplates/prettier/package.json", + "nx/core/package-json" + ], + "tags": [ + "boilerplates/prettier/package.json", + "nx/core/package-json" + ], + "tags.npm:private": [ + "boilerplates/prettier/package.json", + "nx/core/package-json" + ], + "tags.type:boilerplate": [ + "boilerplates/prettier/package.json", + "nx/core/package-json" + ], + "metadata.targetGroups": [ + "boilerplates/prettier/package.json", + "nx/core/package-json" + ], + "metadata.targetGroups.NPM Scripts": [ + "boilerplates/prettier/package.json", + "nx/core/package-json" + ], + "metadata.targetGroups.NPM Scripts.0": [ + "boilerplates/prettier/package.json", + "nx/core/package-json" + ], + "metadata.targetGroups.NPM Scripts.1": [ + "boilerplates/prettier/package.json", + "nx/core/package-json" + ], + "metadata.description": [ + "boilerplates/prettier/package.json", + "nx/core/package-json" + ], + "metadata.js": [ + "boilerplates/prettier/package.json", + "nx/core/package-json" + ], + "metadata.js.packageName": [ + "boilerplates/prettier/package.json", + "nx/core/package-json" + ], + "metadata.js.packageVersion": [ + "boilerplates/prettier/package.json", + "nx/core/package-json" + ], + "metadata.js.isInPackageManagerWorkspaces": [ + "boilerplates/prettier/package.json", + "nx/core/package-json" + ], + "targets": [ + "boilerplates/prettier/package.json", + "nx/core/package-json" + ], + "targets.check-types": [ + "boilerplates/prettier/package.json", + "nx/core/package-json" + ], + "targets.check-types.executor": [ + "boilerplates/prettier/package.json", + "nx/core/package-json" + ], + "targets.check-types.options": [ + "boilerplates/prettier/package.json", + "nx/core/package-json" + ], + "targets.check-types.metadata": [ + "boilerplates/prettier/package.json", + "nx/core/package-json" + ], + "targets.check-types.options.script": [ + "boilerplates/prettier/package.json", + "nx/core/package-json" + ], + "targets.check-types.metadata.scriptContent": [ + "boilerplates/prettier/package.json", + "nx/core/package-json" + ], + "targets.check-types.metadata.runCommand": [ + "boilerplates/prettier/package.json", + "nx/core/package-json" + ], + "targets.build": [ + "boilerplates/prettier/package.json", + "nx/core/package-json" + ], + "targets.build.executor": [ + "boilerplates/prettier/package.json", + "nx/core/package-json" + ], + "targets.build.options": [ + "boilerplates/prettier/package.json", + "nx/core/package-json" + ], + "targets.build.metadata": [ + "boilerplates/prettier/package.json", + "nx/core/package-json" + ], + "targets.build.options.script": [ + "boilerplates/prettier/package.json", + "nx/core/package-json" + ], + "targets.build.metadata.scriptContent": [ + "boilerplates/prettier/package.json", + "nx/core/package-json" + ], + "targets.build.metadata.runCommand": [ + "boilerplates/prettier/package.json", + "nx/core/package-json" + ], + "targets.check-types.cache": [ + "nx.json", + "nx/target-defaults" + ], + "targets.check-types.parallelism": [ + "nx.json", + "nx/target-defaults" + ], + "targets.build.cache": [ + "nx.json", + "nx/target-defaults" + ], + "targets.build.dependsOn": [ + "nx.json", + "nx/target-defaults" + ], + "targets.build.inputs": [ + "nx.json", + "nx/target-defaults" + ], + "targets.build.outputs": [ + "nx.json", + "nx/target-defaults" + ], + "targets.build.parallelism": [ + "nx.json", + "nx/target-defaults" + ] + }, + "boilerplates/prisma": { + "root": [ + "boilerplates/prisma/package.json", + "nx/core/package-json" + ], + "name": [ + "boilerplates/prisma/package.json", + "nx/core/package-json" + ], + "tags": [ + "boilerplates/prisma/package.json", + "nx/core/package-json" + ], + "tags.npm:private": [ + "boilerplates/prisma/package.json", + "nx/core/package-json" + ], + "tags.type:boilerplate": [ + "boilerplates/prisma/package.json", + "nx/core/package-json" + ], + "metadata.targetGroups": [ + "boilerplates/prisma/package.json", + "nx/core/package-json" + ], + "metadata.targetGroups.NPM Scripts": [ + "boilerplates/prisma/package.json", + "nx/core/package-json" + ], + "metadata.targetGroups.NPM Scripts.0": [ + "boilerplates/prisma/package.json", + "nx/core/package-json" + ], + "metadata.targetGroups.NPM Scripts.1": [ + "boilerplates/prisma/package.json", + "nx/core/package-json" + ], + "metadata.description": [ + "boilerplates/prisma/package.json", + "nx/core/package-json" + ], + "metadata.js": [ + "boilerplates/prisma/package.json", + "nx/core/package-json" + ], + "metadata.js.packageName": [ + "boilerplates/prisma/package.json", + "nx/core/package-json" + ], + "metadata.js.packageVersion": [ + "boilerplates/prisma/package.json", + "nx/core/package-json" + ], + "metadata.js.isInPackageManagerWorkspaces": [ + "boilerplates/prisma/package.json", + "nx/core/package-json" + ], + "targets": [ + "boilerplates/prisma/package.json", + "nx/core/package-json" + ], + "targets.check-types": [ + "boilerplates/prisma/package.json", + "nx/core/package-json" + ], + "targets.check-types.executor": [ + "boilerplates/prisma/package.json", + "nx/core/package-json" + ], + "targets.check-types.options": [ + "boilerplates/prisma/package.json", + "nx/core/package-json" + ], + "targets.check-types.metadata": [ + "boilerplates/prisma/package.json", + "nx/core/package-json" + ], + "targets.check-types.options.script": [ + "boilerplates/prisma/package.json", + "nx/core/package-json" + ], + "targets.check-types.metadata.scriptContent": [ + "boilerplates/prisma/package.json", + "nx/core/package-json" + ], + "targets.check-types.metadata.runCommand": [ + "boilerplates/prisma/package.json", + "nx/core/package-json" + ], + "targets.build": [ + "boilerplates/prisma/package.json", + "nx/core/package-json" + ], + "targets.build.executor": [ + "boilerplates/prisma/package.json", + "nx/core/package-json" + ], + "targets.build.options": [ + "boilerplates/prisma/package.json", + "nx/core/package-json" + ], + "targets.build.metadata": [ + "boilerplates/prisma/package.json", + "nx/core/package-json" + ], + "targets.build.options.script": [ + "boilerplates/prisma/package.json", + "nx/core/package-json" + ], + "targets.build.metadata.scriptContent": [ + "boilerplates/prisma/package.json", + "nx/core/package-json" + ], + "targets.build.metadata.runCommand": [ + "boilerplates/prisma/package.json", + "nx/core/package-json" + ], + "targets.check-types.cache": [ + "nx.json", + "nx/target-defaults" + ], + "targets.check-types.parallelism": [ + "nx.json", + "nx/target-defaults" + ], + "targets.build.cache": [ + "nx.json", + "nx/target-defaults" + ], + "targets.build.dependsOn": [ + "nx.json", + "nx/target-defaults" + ], + "targets.build.inputs": [ + "nx.json", + "nx/target-defaults" + ], + "targets.build.outputs": [ + "nx.json", + "nx/target-defaults" + ], + "targets.build.parallelism": [ + "nx.json", + "nx/target-defaults" + ] + }, + "boilerplates/react": { + "root": [ + "boilerplates/react/package.json", + "nx/core/package-json" + ], + "name": [ + "boilerplates/react/package.json", + "nx/core/package-json" + ], + "tags": [ + "boilerplates/react/package.json", + "nx/core/package-json" + ], + "tags.npm:private": [ + "boilerplates/react/package.json", + "nx/core/package-json" + ], + "tags.type:boilerplate": [ + "boilerplates/react/package.json", + "nx/core/package-json" + ], + "metadata.targetGroups": [ + "boilerplates/react/package.json", + "nx/core/package-json" + ], + "metadata.targetGroups.NPM Scripts": [ + "boilerplates/react/package.json", + "nx/core/package-json" + ], + "metadata.targetGroups.NPM Scripts.0": [ + "boilerplates/react/package.json", + "nx/core/package-json" + ], + "metadata.targetGroups.NPM Scripts.1": [ + "boilerplates/react/package.json", + "nx/core/package-json" + ], + "metadata.description": [ + "boilerplates/react/package.json", + "nx/core/package-json" + ], + "metadata.js": [ + "boilerplates/react/package.json", + "nx/core/package-json" + ], + "metadata.js.packageName": [ + "boilerplates/react/package.json", + "nx/core/package-json" + ], + "metadata.js.packageVersion": [ + "boilerplates/react/package.json", + "nx/core/package-json" + ], + "metadata.js.packageExports": [ + "boilerplates/react/package.json", + "nx/core/package-json" + ], + "metadata.js.isInPackageManagerWorkspaces": [ + "boilerplates/react/package.json", + "nx/core/package-json" + ], + "targets": [ + "boilerplates/react/package.json", + "nx/core/package-json" + ], + "targets.check-types": [ + "boilerplates/react/package.json", + "nx/core/package-json" + ], + "targets.check-types.executor": [ + "boilerplates/react/package.json", + "nx/core/package-json" + ], + "targets.check-types.options": [ + "boilerplates/react/package.json", + "nx/core/package-json" + ], + "targets.check-types.metadata": [ + "boilerplates/react/package.json", + "nx/core/package-json" + ], + "targets.check-types.options.script": [ + "boilerplates/react/package.json", + "nx/core/package-json" + ], + "targets.check-types.metadata.scriptContent": [ + "boilerplates/react/package.json", + "nx/core/package-json" + ], + "targets.check-types.metadata.runCommand": [ + "boilerplates/react/package.json", + "nx/core/package-json" + ], + "targets.build": [ + "boilerplates/react/package.json", + "nx/core/package-json" + ], + "targets.build.executor": [ + "boilerplates/react/package.json", + "nx/core/package-json" + ], + "targets.build.options": [ + "boilerplates/react/package.json", + "nx/core/package-json" + ], + "targets.build.metadata": [ + "boilerplates/react/package.json", + "nx/core/package-json" + ], + "targets.build.options.script": [ + "boilerplates/react/package.json", + "nx/core/package-json" + ], + "targets.build.metadata.scriptContent": [ + "boilerplates/react/package.json", + "nx/core/package-json" + ], + "targets.build.metadata.runCommand": [ + "boilerplates/react/package.json", + "nx/core/package-json" + ], + "targets.check-types.cache": [ + "nx.json", + "nx/target-defaults" + ], + "targets.check-types.parallelism": [ + "nx.json", + "nx/target-defaults" + ], + "targets.build.cache": [ + "nx.json", + "nx/target-defaults" + ], + "targets.build.dependsOn": [ + "nx.json", + "nx/target-defaults" + ], + "targets.build.inputs": [ + "nx.json", + "nx/target-defaults" + ], + "targets.build.outputs": [ + "nx.json", + "nx/target-defaults" + ], + "targets.build.parallelism": [ + "nx.json", + "nx/target-defaults" + ] + }, + "boilerplates/react-sentry": { + "root": [ + "boilerplates/react-sentry/package.json", + "nx/core/package-json" + ], + "name": [ + "boilerplates/react-sentry/package.json", + "nx/core/package-json" + ], + "tags": [ + "boilerplates/react-sentry/package.json", + "nx/core/package-json" + ], + "tags.npm:private": [ + "boilerplates/react-sentry/package.json", + "nx/core/package-json" + ], + "tags.type:boilerplate": [ + "boilerplates/react-sentry/package.json", + "nx/core/package-json" + ], + "metadata.targetGroups": [ + "boilerplates/react-sentry/package.json", + "nx/core/package-json" + ], + "metadata.targetGroups.NPM Scripts": [ + "boilerplates/react-sentry/package.json", + "nx/core/package-json" + ], + "metadata.targetGroups.NPM Scripts.0": [ + "boilerplates/react-sentry/package.json", + "nx/core/package-json" + ], + "metadata.targetGroups.NPM Scripts.1": [ + "boilerplates/react-sentry/package.json", + "nx/core/package-json" + ], + "metadata.description": [ + "boilerplates/react-sentry/package.json", + "nx/core/package-json" + ], + "metadata.js": [ + "boilerplates/react-sentry/package.json", + "nx/core/package-json" + ], + "metadata.js.packageName": [ + "boilerplates/react-sentry/package.json", + "nx/core/package-json" + ], + "metadata.js.packageVersion": [ + "boilerplates/react-sentry/package.json", + "nx/core/package-json" + ], + "metadata.js.packageExports": [ + "boilerplates/react-sentry/package.json", + "nx/core/package-json" + ], + "metadata.js.isInPackageManagerWorkspaces": [ + "boilerplates/react-sentry/package.json", + "nx/core/package-json" + ], + "targets": [ + "boilerplates/react-sentry/package.json", + "nx/core/package-json" + ], + "targets.check-types": [ + "boilerplates/react-sentry/package.json", + "nx/core/package-json" + ], + "targets.check-types.executor": [ + "boilerplates/react-sentry/package.json", + "nx/core/package-json" + ], + "targets.check-types.options": [ + "boilerplates/react-sentry/package.json", + "nx/core/package-json" + ], + "targets.check-types.metadata": [ + "boilerplates/react-sentry/package.json", + "nx/core/package-json" + ], + "targets.check-types.options.script": [ + "boilerplates/react-sentry/package.json", + "nx/core/package-json" + ], + "targets.check-types.metadata.scriptContent": [ + "boilerplates/react-sentry/package.json", + "nx/core/package-json" + ], + "targets.check-types.metadata.runCommand": [ + "boilerplates/react-sentry/package.json", + "nx/core/package-json" + ], + "targets.build": [ + "boilerplates/react-sentry/package.json", + "nx/core/package-json" + ], + "targets.build.executor": [ + "boilerplates/react-sentry/package.json", + "nx/core/package-json" + ], + "targets.build.options": [ + "boilerplates/react-sentry/package.json", + "nx/core/package-json" + ], + "targets.build.metadata": [ + "boilerplates/react-sentry/package.json", + "nx/core/package-json" + ], + "targets.build.options.script": [ + "boilerplates/react-sentry/package.json", + "nx/core/package-json" + ], + "targets.build.metadata.scriptContent": [ + "boilerplates/react-sentry/package.json", + "nx/core/package-json" + ], + "targets.build.metadata.runCommand": [ + "boilerplates/react-sentry/package.json", + "nx/core/package-json" + ], + "targets.check-types.cache": [ + "nx.json", + "nx/target-defaults" + ], + "targets.check-types.parallelism": [ + "nx.json", + "nx/target-defaults" + ], + "targets.build.cache": [ + "nx.json", + "nx/target-defaults" + ], + "targets.build.dependsOn": [ + "nx.json", + "nx/target-defaults" + ], + "targets.build.inputs": [ + "nx.json", + "nx/target-defaults" + ], + "targets.build.outputs": [ + "nx.json", + "nx/target-defaults" + ], + "targets.build.parallelism": [ + "nx.json", + "nx/target-defaults" + ] + }, + "boilerplates/sentry": { + "root": [ + "boilerplates/sentry/package.json", + "nx/core/package-json" + ], + "name": [ + "boilerplates/sentry/package.json", + "nx/core/package-json" + ], + "tags": [ + "boilerplates/sentry/package.json", + "nx/core/package-json" + ], + "tags.npm:private": [ + "boilerplates/sentry/package.json", + "nx/core/package-json" + ], + "tags.type:boilerplate": [ + "boilerplates/sentry/package.json", + "nx/core/package-json" + ], + "metadata.targetGroups": [ + "boilerplates/sentry/package.json", + "nx/core/package-json" + ], + "metadata.targetGroups.NPM Scripts": [ + "boilerplates/sentry/package.json", + "nx/core/package-json" + ], + "metadata.targetGroups.NPM Scripts.0": [ + "boilerplates/sentry/package.json", + "nx/core/package-json" + ], + "metadata.targetGroups.NPM Scripts.1": [ + "boilerplates/sentry/package.json", + "nx/core/package-json" + ], + "metadata.description": [ + "boilerplates/sentry/package.json", + "nx/core/package-json" + ], + "metadata.js": [ + "boilerplates/sentry/package.json", + "nx/core/package-json" + ], + "metadata.js.packageName": [ + "boilerplates/sentry/package.json", + "nx/core/package-json" + ], + "metadata.js.packageVersion": [ + "boilerplates/sentry/package.json", + "nx/core/package-json" + ], + "metadata.js.isInPackageManagerWorkspaces": [ + "boilerplates/sentry/package.json", + "nx/core/package-json" + ], + "targets": [ + "boilerplates/sentry/package.json", + "nx/core/package-json" + ], + "targets.check-types": [ + "boilerplates/sentry/package.json", + "nx/core/package-json" + ], + "targets.check-types.executor": [ + "boilerplates/sentry/package.json", + "nx/core/package-json" + ], + "targets.check-types.options": [ + "boilerplates/sentry/package.json", + "nx/core/package-json" + ], + "targets.check-types.metadata": [ + "boilerplates/sentry/package.json", + "nx/core/package-json" + ], + "targets.check-types.options.script": [ + "boilerplates/sentry/package.json", + "nx/core/package-json" + ], + "targets.check-types.metadata.scriptContent": [ + "boilerplates/sentry/package.json", + "nx/core/package-json" + ], + "targets.check-types.metadata.runCommand": [ + "boilerplates/sentry/package.json", + "nx/core/package-json" + ], + "targets.build": [ + "boilerplates/sentry/package.json", + "nx/core/package-json" + ], + "targets.build.executor": [ + "boilerplates/sentry/package.json", + "nx/core/package-json" + ], + "targets.build.options": [ + "boilerplates/sentry/package.json", + "nx/core/package-json" + ], + "targets.build.metadata": [ + "boilerplates/sentry/package.json", + "nx/core/package-json" + ], + "targets.build.options.script": [ + "boilerplates/sentry/package.json", + "nx/core/package-json" + ], + "targets.build.metadata.scriptContent": [ + "boilerplates/sentry/package.json", + "nx/core/package-json" + ], + "targets.build.metadata.runCommand": [ + "boilerplates/sentry/package.json", + "nx/core/package-json" + ], + "targets.check-types.cache": [ + "nx.json", + "nx/target-defaults" + ], + "targets.check-types.parallelism": [ + "nx.json", + "nx/target-defaults" + ], + "targets.build.cache": [ + "nx.json", + "nx/target-defaults" + ], + "targets.build.dependsOn": [ + "nx.json", + "nx/target-defaults" + ], + "targets.build.inputs": [ + "nx.json", + "nx/target-defaults" + ], + "targets.build.outputs": [ + "nx.json", + "nx/target-defaults" + ], + "targets.build.parallelism": [ + "nx.json", + "nx/target-defaults" + ] + }, + "boilerplates/shadcn-ui": { + "root": [ + "boilerplates/shadcn-ui/package.json", + "nx/core/package-json" + ], + "name": [ + "boilerplates/shadcn-ui/package.json", + "nx/core/package-json" + ], + "tags": [ + "boilerplates/shadcn-ui/package.json", + "nx/core/package-json" + ], + "tags.npm:private": [ + "boilerplates/shadcn-ui/package.json", + "nx/core/package-json" + ], + "tags.type:boilerplate": [ + "boilerplates/shadcn-ui/package.json", + "nx/core/package-json" + ], + "metadata.targetGroups": [ + "boilerplates/shadcn-ui/package.json", + "nx/core/package-json" + ], + "metadata.targetGroups.NPM Scripts": [ + "boilerplates/shadcn-ui/package.json", + "nx/core/package-json" + ], + "metadata.targetGroups.NPM Scripts.0": [ + "boilerplates/shadcn-ui/package.json", + "nx/core/package-json" + ], + "metadata.targetGroups.NPM Scripts.1": [ + "boilerplates/shadcn-ui/package.json", + "nx/core/package-json" + ], + "metadata.description": [ + "boilerplates/shadcn-ui/package.json", + "nx/core/package-json" + ], + "metadata.js": [ + "boilerplates/shadcn-ui/package.json", + "nx/core/package-json" + ], + "metadata.js.packageName": [ + "boilerplates/shadcn-ui/package.json", + "nx/core/package-json" + ], + "metadata.js.packageVersion": [ + "boilerplates/shadcn-ui/package.json", + "nx/core/package-json" + ], + "metadata.js.packageExports": [ + "boilerplates/shadcn-ui/package.json", + "nx/core/package-json" + ], + "metadata.js.isInPackageManagerWorkspaces": [ + "boilerplates/shadcn-ui/package.json", + "nx/core/package-json" + ], + "targets": [ + "boilerplates/shadcn-ui/package.json", + "nx/core/package-json" + ], + "targets.check-types": [ + "boilerplates/shadcn-ui/package.json", + "nx/core/package-json" + ], + "targets.check-types.executor": [ + "boilerplates/shadcn-ui/package.json", + "nx/core/package-json" + ], + "targets.check-types.options": [ + "boilerplates/shadcn-ui/package.json", + "nx/core/package-json" + ], + "targets.check-types.metadata": [ + "boilerplates/shadcn-ui/package.json", + "nx/core/package-json" + ], + "targets.check-types.options.script": [ + "boilerplates/shadcn-ui/package.json", + "nx/core/package-json" + ], + "targets.check-types.metadata.scriptContent": [ + "boilerplates/shadcn-ui/package.json", + "nx/core/package-json" + ], + "targets.check-types.metadata.runCommand": [ + "boilerplates/shadcn-ui/package.json", + "nx/core/package-json" + ], + "targets.build": [ + "boilerplates/shadcn-ui/package.json", + "nx/core/package-json" + ], + "targets.build.executor": [ + "boilerplates/shadcn-ui/package.json", + "nx/core/package-json" + ], + "targets.build.options": [ + "boilerplates/shadcn-ui/package.json", + "nx/core/package-json" + ], + "targets.build.metadata": [ + "boilerplates/shadcn-ui/package.json", + "nx/core/package-json" + ], + "targets.build.options.script": [ + "boilerplates/shadcn-ui/package.json", + "nx/core/package-json" + ], + "targets.build.metadata.scriptContent": [ + "boilerplates/shadcn-ui/package.json", + "nx/core/package-json" + ], + "targets.build.metadata.runCommand": [ + "boilerplates/shadcn-ui/package.json", + "nx/core/package-json" + ], + "targets.check-types.cache": [ + "nx.json", + "nx/target-defaults" + ], + "targets.check-types.parallelism": [ + "nx.json", + "nx/target-defaults" + ], + "targets.build.cache": [ + "nx.json", + "nx/target-defaults" + ], + "targets.build.dependsOn": [ + "nx.json", + "nx/target-defaults" + ], + "targets.build.inputs": [ + "nx.json", + "nx/target-defaults" + ], + "targets.build.outputs": [ + "nx.json", + "nx/target-defaults" + ], + "targets.build.parallelism": [ + "nx.json", + "nx/target-defaults" + ] + }, + "boilerplates/shared": { + "root": [ + "boilerplates/shared/package.json", + "nx/core/package-json" + ], + "name": [ + "boilerplates/shared/package.json", + "nx/core/package-json" + ], + "tags": [ + "boilerplates/shared/package.json", + "nx/core/package-json" + ], + "tags.npm:private": [ + "boilerplates/shared/package.json", + "nx/core/package-json" + ], + "tags.type:boilerplate": [ + "boilerplates/shared/package.json", + "nx/core/package-json" + ], + "metadata.targetGroups": [ + "boilerplates/shared/package.json", + "nx/core/package-json" + ], + "metadata.targetGroups.NPM Scripts": [ + "boilerplates/shared/package.json", + "nx/core/package-json" + ], + "metadata.targetGroups.NPM Scripts.0": [ + "boilerplates/shared/package.json", + "nx/core/package-json" + ], + "metadata.targetGroups.NPM Scripts.1": [ + "boilerplates/shared/package.json", + "nx/core/package-json" + ], + "metadata.description": [ + "boilerplates/shared/package.json", + "nx/core/package-json" + ], + "metadata.js": [ + "boilerplates/shared/package.json", + "nx/core/package-json" + ], + "metadata.js.packageName": [ + "boilerplates/shared/package.json", + "nx/core/package-json" + ], + "metadata.js.packageVersion": [ + "boilerplates/shared/package.json", + "nx/core/package-json" + ], + "metadata.js.packageExports": [ + "boilerplates/shared/package.json", + "nx/core/package-json" + ], + "metadata.js.isInPackageManagerWorkspaces": [ + "boilerplates/shared/package.json", + "nx/core/package-json" + ], + "targets": [ + "boilerplates/shared/package.json", + "nx/core/package-json" + ], + "targets.check-types": [ + "boilerplates/shared/package.json", + "nx/core/package-json" + ], + "targets.check-types.executor": [ + "boilerplates/shared/package.json", + "nx/core/package-json" + ], + "targets.check-types.options": [ + "boilerplates/shared/package.json", + "nx/core/package-json" + ], + "targets.check-types.metadata": [ + "boilerplates/shared/package.json", + "nx/core/package-json" + ], + "targets.check-types.options.script": [ + "boilerplates/shared/package.json", + "nx/core/package-json" + ], + "targets.check-types.metadata.scriptContent": [ + "boilerplates/shared/package.json", + "nx/core/package-json" + ], + "targets.check-types.metadata.runCommand": [ + "boilerplates/shared/package.json", + "nx/core/package-json" + ], + "targets.build": [ + "boilerplates/shared/package.json", + "nx/core/package-json" + ], + "targets.build.executor": [ + "boilerplates/shared/package.json", + "nx/core/package-json" + ], + "targets.build.options": [ + "boilerplates/shared/package.json", + "nx/core/package-json" + ], + "targets.build.metadata": [ + "boilerplates/shared/package.json", + "nx/core/package-json" + ], + "targets.build.options.script": [ + "boilerplates/shared/package.json", + "nx/core/package-json" + ], + "targets.build.metadata.scriptContent": [ + "boilerplates/shared/package.json", + "nx/core/package-json" + ], + "targets.build.metadata.runCommand": [ + "boilerplates/shared/package.json", + "nx/core/package-json" + ], + "targets.check-types.cache": [ + "nx.json", + "nx/target-defaults" + ], + "targets.check-types.parallelism": [ + "nx.json", + "nx/target-defaults" + ], + "targets.build.cache": [ + "nx.json", + "nx/target-defaults" + ], + "targets.build.dependsOn": [ + "nx.json", + "nx/target-defaults" + ], + "targets.build.inputs": [ + "nx.json", + "nx/target-defaults" + ], + "targets.build.outputs": [ + "nx.json", + "nx/target-defaults" + ], + "targets.build.parallelism": [ + "nx.json", + "nx/target-defaults" + ] + }, + "boilerplates/shared-db": { + "root": [ + "boilerplates/shared-db/package.json", + "nx/core/package-json" + ], + "name": [ + "boilerplates/shared-db/package.json", + "nx/core/package-json" + ], + "tags": [ + "boilerplates/shared-db/package.json", + "nx/core/package-json" + ], + "tags.npm:private": [ + "boilerplates/shared-db/package.json", + "nx/core/package-json" + ], + "tags.type:boilerplate": [ + "boilerplates/shared-db/package.json", + "nx/core/package-json" + ], + "metadata.targetGroups": [ + "boilerplates/shared-db/package.json", + "nx/core/package-json" + ], + "metadata.targetGroups.NPM Scripts": [ + "boilerplates/shared-db/package.json", + "nx/core/package-json" + ], + "metadata.targetGroups.NPM Scripts.0": [ + "boilerplates/shared-db/package.json", + "nx/core/package-json" + ], + "metadata.targetGroups.NPM Scripts.1": [ + "boilerplates/shared-db/package.json", + "nx/core/package-json" + ], + "metadata.description": [ + "boilerplates/shared-db/package.json", + "nx/core/package-json" + ], + "metadata.js": [ + "boilerplates/shared-db/package.json", + "nx/core/package-json" + ], + "metadata.js.packageName": [ + "boilerplates/shared-db/package.json", + "nx/core/package-json" + ], + "metadata.js.packageVersion": [ + "boilerplates/shared-db/package.json", + "nx/core/package-json" + ], + "metadata.js.packageExports": [ + "boilerplates/shared-db/package.json", + "nx/core/package-json" + ], + "metadata.js.isInPackageManagerWorkspaces": [ + "boilerplates/shared-db/package.json", + "nx/core/package-json" + ], + "targets": [ + "boilerplates/shared-db/package.json", + "nx/core/package-json" + ], + "targets.check-types": [ + "boilerplates/shared-db/package.json", + "nx/core/package-json" + ], + "targets.check-types.executor": [ + "boilerplates/shared-db/package.json", + "nx/core/package-json" + ], + "targets.check-types.options": [ + "boilerplates/shared-db/package.json", + "nx/core/package-json" + ], + "targets.check-types.metadata": [ + "boilerplates/shared-db/package.json", + "nx/core/package-json" + ], + "targets.check-types.options.script": [ + "boilerplates/shared-db/package.json", + "nx/core/package-json" + ], + "targets.check-types.metadata.scriptContent": [ + "boilerplates/shared-db/package.json", + "nx/core/package-json" + ], + "targets.check-types.metadata.runCommand": [ + "boilerplates/shared-db/package.json", + "nx/core/package-json" + ], + "targets.build": [ + "boilerplates/shared-db/package.json", + "nx/core/package-json" + ], + "targets.build.executor": [ + "boilerplates/shared-db/package.json", + "nx/core/package-json" + ], + "targets.build.options": [ + "boilerplates/shared-db/package.json", + "nx/core/package-json" + ], + "targets.build.metadata": [ + "boilerplates/shared-db/package.json", + "nx/core/package-json" + ], + "targets.build.options.script": [ + "boilerplates/shared-db/package.json", + "nx/core/package-json" + ], + "targets.build.metadata.scriptContent": [ + "boilerplates/shared-db/package.json", + "nx/core/package-json" + ], + "targets.build.metadata.runCommand": [ + "boilerplates/shared-db/package.json", + "nx/core/package-json" + ], + "targets.check-types.cache": [ + "nx.json", + "nx/target-defaults" + ], + "targets.check-types.parallelism": [ + "nx.json", + "nx/target-defaults" + ], + "targets.build.cache": [ + "nx.json", + "nx/target-defaults" + ], + "targets.build.dependsOn": [ + "nx.json", + "nx/target-defaults" + ], + "targets.build.inputs": [ + "nx.json", + "nx/target-defaults" + ], + "targets.build.outputs": [ + "nx.json", + "nx/target-defaults" + ], + "targets.build.parallelism": [ + "nx.json", + "nx/target-defaults" + ] + }, + "boilerplates/shared-server": { + "root": [ + "boilerplates/shared-server/package.json", + "nx/core/package-json" + ], + "name": [ + "boilerplates/shared-server/package.json", + "nx/core/package-json" + ], + "tags": [ + "boilerplates/shared-server/package.json", + "nx/core/package-json" + ], + "tags.npm:private": [ + "boilerplates/shared-server/package.json", + "nx/core/package-json" + ], + "tags.type:boilerplate": [ + "boilerplates/shared-server/package.json", + "nx/core/package-json" + ], + "metadata.targetGroups": [ + "boilerplates/shared-server/package.json", + "nx/core/package-json" + ], + "metadata.targetGroups.NPM Scripts": [ + "boilerplates/shared-server/package.json", + "nx/core/package-json" + ], + "metadata.targetGroups.NPM Scripts.0": [ + "boilerplates/shared-server/package.json", + "nx/core/package-json" + ], + "metadata.targetGroups.NPM Scripts.1": [ + "boilerplates/shared-server/package.json", + "nx/core/package-json" + ], + "metadata.description": [ + "boilerplates/shared-server/package.json", + "nx/core/package-json" + ], + "metadata.js": [ + "boilerplates/shared-server/package.json", + "nx/core/package-json" + ], + "metadata.js.packageName": [ + "boilerplates/shared-server/package.json", + "nx/core/package-json" + ], + "metadata.js.packageVersion": [ + "boilerplates/shared-server/package.json", + "nx/core/package-json" + ], + "metadata.js.packageExports": [ + "boilerplates/shared-server/package.json", + "nx/core/package-json" + ], + "metadata.js.isInPackageManagerWorkspaces": [ + "boilerplates/shared-server/package.json", + "nx/core/package-json" + ], + "targets": [ + "boilerplates/shared-server/package.json", + "nx/core/package-json" + ], + "targets.check-types": [ + "boilerplates/shared-server/package.json", + "nx/core/package-json" + ], + "targets.check-types.executor": [ + "boilerplates/shared-server/package.json", + "nx/core/package-json" + ], + "targets.check-types.options": [ + "boilerplates/shared-server/package.json", + "nx/core/package-json" + ], + "targets.check-types.metadata": [ + "boilerplates/shared-server/package.json", + "nx/core/package-json" + ], + "targets.check-types.options.script": [ + "boilerplates/shared-server/package.json", + "nx/core/package-json" + ], + "targets.check-types.metadata.scriptContent": [ + "boilerplates/shared-server/package.json", + "nx/core/package-json" + ], + "targets.check-types.metadata.runCommand": [ + "boilerplates/shared-server/package.json", + "nx/core/package-json" + ], + "targets.build": [ + "boilerplates/shared-server/package.json", + "nx/core/package-json" + ], + "targets.build.executor": [ + "boilerplates/shared-server/package.json", + "nx/core/package-json" + ], + "targets.build.options": [ + "boilerplates/shared-server/package.json", + "nx/core/package-json" + ], + "targets.build.metadata": [ + "boilerplates/shared-server/package.json", + "nx/core/package-json" + ], + "targets.build.options.script": [ + "boilerplates/shared-server/package.json", + "nx/core/package-json" + ], + "targets.build.metadata.scriptContent": [ + "boilerplates/shared-server/package.json", + "nx/core/package-json" + ], + "targets.build.metadata.runCommand": [ + "boilerplates/shared-server/package.json", + "nx/core/package-json" + ], + "targets.check-types.cache": [ + "nx.json", + "nx/target-defaults" + ], + "targets.check-types.parallelism": [ + "nx.json", + "nx/target-defaults" + ], + "targets.build.cache": [ + "nx.json", + "nx/target-defaults" + ], + "targets.build.dependsOn": [ + "nx.json", + "nx/target-defaults" + ], + "targets.build.inputs": [ + "nx.json", + "nx/target-defaults" + ], + "targets.build.outputs": [ + "nx.json", + "nx/target-defaults" + ], + "targets.build.parallelism": [ + "nx.json", + "nx/target-defaults" + ] + }, + "boilerplates/shared-todo": { + "root": [ + "boilerplates/shared-todo/package.json", + "nx/core/package-json" + ], + "name": [ + "boilerplates/shared-todo/package.json", + "nx/core/package-json" + ], + "tags": [ + "boilerplates/shared-todo/package.json", + "nx/core/package-json" + ], + "tags.npm:private": [ + "boilerplates/shared-todo/package.json", + "nx/core/package-json" + ], + "tags.type:boilerplate": [ + "boilerplates/shared-todo/package.json", + "nx/core/package-json" + ], + "metadata.targetGroups": [ + "boilerplates/shared-todo/package.json", + "nx/core/package-json" + ], + "metadata.targetGroups.NPM Scripts": [ + "boilerplates/shared-todo/package.json", + "nx/core/package-json" + ], + "metadata.targetGroups.NPM Scripts.0": [ + "boilerplates/shared-todo/package.json", + "nx/core/package-json" + ], + "metadata.targetGroups.NPM Scripts.1": [ + "boilerplates/shared-todo/package.json", + "nx/core/package-json" + ], + "metadata.description": [ + "boilerplates/shared-todo/package.json", + "nx/core/package-json" + ], + "metadata.js": [ + "boilerplates/shared-todo/package.json", + "nx/core/package-json" + ], + "metadata.js.packageName": [ + "boilerplates/shared-todo/package.json", + "nx/core/package-json" + ], + "metadata.js.packageVersion": [ + "boilerplates/shared-todo/package.json", + "nx/core/package-json" + ], + "metadata.js.packageExports": [ + "boilerplates/shared-todo/package.json", + "nx/core/package-json" + ], + "metadata.js.isInPackageManagerWorkspaces": [ + "boilerplates/shared-todo/package.json", + "nx/core/package-json" + ], + "targets": [ + "boilerplates/shared-todo/package.json", + "nx/core/package-json" + ], + "targets.check-types": [ + "boilerplates/shared-todo/package.json", + "nx/core/package-json" + ], + "targets.check-types.executor": [ + "boilerplates/shared-todo/package.json", + "nx/core/package-json" + ], + "targets.check-types.options": [ + "boilerplates/shared-todo/package.json", + "nx/core/package-json" + ], + "targets.check-types.metadata": [ + "boilerplates/shared-todo/package.json", + "nx/core/package-json" + ], + "targets.check-types.options.script": [ + "boilerplates/shared-todo/package.json", + "nx/core/package-json" + ], + "targets.check-types.metadata.scriptContent": [ + "boilerplates/shared-todo/package.json", + "nx/core/package-json" + ], + "targets.check-types.metadata.runCommand": [ + "boilerplates/shared-todo/package.json", + "nx/core/package-json" + ], + "targets.build": [ + "boilerplates/shared-todo/package.json", + "nx/core/package-json" + ], + "targets.build.executor": [ + "boilerplates/shared-todo/package.json", + "nx/core/package-json" + ], + "targets.build.options": [ + "boilerplates/shared-todo/package.json", + "nx/core/package-json" + ], + "targets.build.metadata": [ + "boilerplates/shared-todo/package.json", + "nx/core/package-json" + ], + "targets.build.options.script": [ + "boilerplates/shared-todo/package.json", + "nx/core/package-json" + ], + "targets.build.metadata.scriptContent": [ + "boilerplates/shared-todo/package.json", + "nx/core/package-json" + ], + "targets.build.metadata.runCommand": [ + "boilerplates/shared-todo/package.json", + "nx/core/package-json" + ], + "targets.check-types.cache": [ + "nx.json", + "nx/target-defaults" + ], + "targets.check-types.parallelism": [ + "nx.json", + "nx/target-defaults" + ], + "targets.build.cache": [ + "nx.json", + "nx/target-defaults" + ], + "targets.build.dependsOn": [ + "nx.json", + "nx/target-defaults" + ], + "targets.build.inputs": [ + "nx.json", + "nx/target-defaults" + ], + "targets.build.outputs": [ + "nx.json", + "nx/target-defaults" + ], + "targets.build.parallelism": [ + "nx.json", + "nx/target-defaults" + ] + }, + "boilerplates/solid": { + "root": [ + "boilerplates/solid/package.json", + "nx/core/package-json" + ], + "name": [ + "boilerplates/solid/package.json", + "nx/core/package-json" + ], + "tags": [ + "boilerplates/solid/package.json", + "nx/core/package-json" + ], + "tags.npm:private": [ + "boilerplates/solid/package.json", + "nx/core/package-json" + ], + "tags.type:boilerplate": [ + "boilerplates/solid/package.json", + "nx/core/package-json" + ], + "metadata.targetGroups": [ + "boilerplates/solid/package.json", + "nx/core/package-json" + ], + "metadata.targetGroups.NPM Scripts": [ + "boilerplates/solid/package.json", + "nx/core/package-json" + ], + "metadata.targetGroups.NPM Scripts.0": [ + "boilerplates/solid/package.json", + "nx/core/package-json" + ], + "metadata.targetGroups.NPM Scripts.1": [ + "boilerplates/solid/package.json", + "nx/core/package-json" + ], + "metadata.description": [ + "boilerplates/solid/package.json", + "nx/core/package-json" + ], + "metadata.js": [ + "boilerplates/solid/package.json", + "nx/core/package-json" + ], + "metadata.js.packageName": [ + "boilerplates/solid/package.json", + "nx/core/package-json" + ], + "metadata.js.packageVersion": [ + "boilerplates/solid/package.json", + "nx/core/package-json" + ], + "metadata.js.packageExports": [ + "boilerplates/solid/package.json", + "nx/core/package-json" + ], + "metadata.js.isInPackageManagerWorkspaces": [ + "boilerplates/solid/package.json", + "nx/core/package-json" + ], + "targets": [ + "boilerplates/solid/package.json", + "nx/core/package-json" + ], + "targets.check-types": [ + "boilerplates/solid/package.json", + "nx/core/package-json" + ], + "targets.check-types.executor": [ + "boilerplates/solid/package.json", + "nx/core/package-json" + ], + "targets.check-types.options": [ + "boilerplates/solid/package.json", + "nx/core/package-json" + ], + "targets.check-types.metadata": [ + "boilerplates/solid/package.json", + "nx/core/package-json" + ], + "targets.check-types.options.script": [ + "boilerplates/solid/package.json", + "nx/core/package-json" + ], + "targets.check-types.metadata.scriptContent": [ + "boilerplates/solid/package.json", + "nx/core/package-json" + ], + "targets.check-types.metadata.runCommand": [ + "boilerplates/solid/package.json", + "nx/core/package-json" + ], + "targets.build": [ + "boilerplates/solid/package.json", + "nx/core/package-json" + ], + "targets.build.executor": [ + "boilerplates/solid/package.json", + "nx/core/package-json" + ], + "targets.build.options": [ + "boilerplates/solid/package.json", + "nx/core/package-json" + ], + "targets.build.metadata": [ + "boilerplates/solid/package.json", + "nx/core/package-json" + ], + "targets.build.options.script": [ + "boilerplates/solid/package.json", + "nx/core/package-json" + ], + "targets.build.metadata.scriptContent": [ + "boilerplates/solid/package.json", + "nx/core/package-json" + ], + "targets.build.metadata.runCommand": [ + "boilerplates/solid/package.json", + "nx/core/package-json" + ], + "targets.check-types.cache": [ + "nx.json", + "nx/target-defaults" + ], + "targets.check-types.parallelism": [ + "nx.json", + "nx/target-defaults" + ], + "targets.build.cache": [ + "nx.json", + "nx/target-defaults" + ], + "targets.build.dependsOn": [ + "nx.json", + "nx/target-defaults" + ], + "targets.build.inputs": [ + "nx.json", + "nx/target-defaults" + ], + "targets.build.outputs": [ + "nx.json", + "nx/target-defaults" + ], + "targets.build.parallelism": [ + "nx.json", + "nx/target-defaults" + ] + }, + "boilerplates/solid-sentry": { + "root": [ + "boilerplates/solid-sentry/package.json", + "nx/core/package-json" + ], + "name": [ + "boilerplates/solid-sentry/package.json", + "nx/core/package-json" + ], + "tags": [ + "boilerplates/solid-sentry/package.json", + "nx/core/package-json" + ], + "tags.npm:private": [ + "boilerplates/solid-sentry/package.json", + "nx/core/package-json" + ], + "tags.type:boilerplate": [ + "boilerplates/solid-sentry/package.json", + "nx/core/package-json" + ], + "metadata.targetGroups": [ + "boilerplates/solid-sentry/package.json", + "nx/core/package-json" + ], + "metadata.targetGroups.NPM Scripts": [ + "boilerplates/solid-sentry/package.json", + "nx/core/package-json" + ], + "metadata.targetGroups.NPM Scripts.0": [ + "boilerplates/solid-sentry/package.json", + "nx/core/package-json" + ], + "metadata.targetGroups.NPM Scripts.1": [ + "boilerplates/solid-sentry/package.json", + "nx/core/package-json" + ], + "metadata.description": [ + "boilerplates/solid-sentry/package.json", + "nx/core/package-json" + ], + "metadata.js": [ + "boilerplates/solid-sentry/package.json", + "nx/core/package-json" + ], + "metadata.js.packageName": [ + "boilerplates/solid-sentry/package.json", + "nx/core/package-json" + ], + "metadata.js.packageVersion": [ + "boilerplates/solid-sentry/package.json", + "nx/core/package-json" + ], + "metadata.js.packageExports": [ + "boilerplates/solid-sentry/package.json", + "nx/core/package-json" + ], + "metadata.js.isInPackageManagerWorkspaces": [ + "boilerplates/solid-sentry/package.json", + "nx/core/package-json" + ], + "targets": [ + "boilerplates/solid-sentry/package.json", + "nx/core/package-json" + ], + "targets.check-types": [ + "boilerplates/solid-sentry/package.json", + "nx/core/package-json" + ], + "targets.check-types.executor": [ + "boilerplates/solid-sentry/package.json", + "nx/core/package-json" + ], + "targets.check-types.options": [ + "boilerplates/solid-sentry/package.json", + "nx/core/package-json" + ], + "targets.check-types.metadata": [ + "boilerplates/solid-sentry/package.json", + "nx/core/package-json" + ], + "targets.check-types.options.script": [ + "boilerplates/solid-sentry/package.json", + "nx/core/package-json" + ], + "targets.check-types.metadata.scriptContent": [ + "boilerplates/solid-sentry/package.json", + "nx/core/package-json" + ], + "targets.check-types.metadata.runCommand": [ + "boilerplates/solid-sentry/package.json", + "nx/core/package-json" + ], + "targets.build": [ + "boilerplates/solid-sentry/package.json", + "nx/core/package-json" + ], + "targets.build.executor": [ + "boilerplates/solid-sentry/package.json", + "nx/core/package-json" + ], + "targets.build.options": [ + "boilerplates/solid-sentry/package.json", + "nx/core/package-json" + ], + "targets.build.metadata": [ + "boilerplates/solid-sentry/package.json", + "nx/core/package-json" + ], + "targets.build.options.script": [ + "boilerplates/solid-sentry/package.json", + "nx/core/package-json" + ], + "targets.build.metadata.scriptContent": [ + "boilerplates/solid-sentry/package.json", + "nx/core/package-json" + ], + "targets.build.metadata.runCommand": [ + "boilerplates/solid-sentry/package.json", + "nx/core/package-json" + ], + "targets.check-types.cache": [ + "nx.json", + "nx/target-defaults" + ], + "targets.check-types.parallelism": [ + "nx.json", + "nx/target-defaults" + ], + "targets.build.cache": [ + "nx.json", + "nx/target-defaults" + ], + "targets.build.dependsOn": [ + "nx.json", + "nx/target-defaults" + ], + "targets.build.inputs": [ + "nx.json", + "nx/target-defaults" + ], + "targets.build.outputs": [ + "nx.json", + "nx/target-defaults" + ], + "targets.build.parallelism": [ + "nx.json", + "nx/target-defaults" + ] + }, + "boilerplates/sqlite": { + "root": [ + "boilerplates/sqlite/package.json", + "nx/core/package-json" + ], + "name": [ + "boilerplates/sqlite/package.json", + "nx/core/package-json" + ], + "tags": [ + "boilerplates/sqlite/package.json", + "nx/core/package-json" + ], + "tags.npm:private": [ + "boilerplates/sqlite/package.json", + "nx/core/package-json" + ], + "tags.type:boilerplate": [ + "boilerplates/sqlite/package.json", + "nx/core/package-json" + ], + "metadata.targetGroups": [ + "boilerplates/sqlite/package.json", + "nx/core/package-json" + ], + "metadata.targetGroups.NPM Scripts": [ + "boilerplates/sqlite/package.json", + "nx/core/package-json" + ], + "metadata.targetGroups.NPM Scripts.0": [ + "boilerplates/sqlite/package.json", + "nx/core/package-json" + ], + "metadata.targetGroups.NPM Scripts.1": [ + "boilerplates/sqlite/package.json", + "nx/core/package-json" + ], + "metadata.description": [ + "boilerplates/sqlite/package.json", + "nx/core/package-json" + ], + "metadata.js": [ + "boilerplates/sqlite/package.json", + "nx/core/package-json" + ], + "metadata.js.packageName": [ + "boilerplates/sqlite/package.json", + "nx/core/package-json" + ], + "metadata.js.packageVersion": [ + "boilerplates/sqlite/package.json", + "nx/core/package-json" + ], + "metadata.js.packageExports": [ + "boilerplates/sqlite/package.json", + "nx/core/package-json" + ], + "metadata.js.isInPackageManagerWorkspaces": [ + "boilerplates/sqlite/package.json", + "nx/core/package-json" + ], + "targets": [ + "boilerplates/sqlite/package.json", + "nx/core/package-json" + ], + "targets.check-types": [ + "boilerplates/sqlite/package.json", + "nx/core/package-json" + ], + "targets.check-types.executor": [ + "boilerplates/sqlite/package.json", + "nx/core/package-json" + ], + "targets.check-types.options": [ + "boilerplates/sqlite/package.json", + "nx/core/package-json" + ], + "targets.check-types.metadata": [ + "boilerplates/sqlite/package.json", + "nx/core/package-json" + ], + "targets.check-types.options.script": [ + "boilerplates/sqlite/package.json", + "nx/core/package-json" + ], + "targets.check-types.metadata.scriptContent": [ + "boilerplates/sqlite/package.json", + "nx/core/package-json" + ], + "targets.check-types.metadata.runCommand": [ + "boilerplates/sqlite/package.json", + "nx/core/package-json" + ], + "targets.build": [ + "boilerplates/sqlite/package.json", + "nx/core/package-json" + ], + "targets.build.executor": [ + "boilerplates/sqlite/package.json", + "nx/core/package-json" + ], + "targets.build.options": [ + "boilerplates/sqlite/package.json", + "nx/core/package-json" + ], + "targets.build.metadata": [ + "boilerplates/sqlite/package.json", + "nx/core/package-json" + ], + "targets.build.options.script": [ + "boilerplates/sqlite/package.json", + "nx/core/package-json" + ], + "targets.build.metadata.scriptContent": [ + "boilerplates/sqlite/package.json", + "nx/core/package-json" + ], + "targets.build.metadata.runCommand": [ + "boilerplates/sqlite/package.json", + "nx/core/package-json" + ], + "targets.check-types.cache": [ + "nx.json", + "nx/target-defaults" + ], + "targets.check-types.parallelism": [ + "nx.json", + "nx/target-defaults" + ], + "targets.build.cache": [ + "nx.json", + "nx/target-defaults" + ], + "targets.build.dependsOn": [ + "nx.json", + "nx/target-defaults" + ], + "targets.build.inputs": [ + "nx.json", + "nx/target-defaults" + ], + "targets.build.outputs": [ + "nx.json", + "nx/target-defaults" + ], + "targets.build.parallelism": [ + "nx.json", + "nx/target-defaults" + ] + }, + "boilerplates/storybook": { + "root": [ + "boilerplates/storybook/package.json", + "nx/core/package-json" + ], + "name": [ + "boilerplates/storybook/package.json", + "nx/core/package-json" + ], + "tags": [ + "boilerplates/storybook/package.json", + "nx/core/package-json" + ], + "tags.npm:private": [ + "boilerplates/storybook/package.json", + "nx/core/package-json" + ], + "tags.type:boilerplate": [ + "boilerplates/storybook/package.json", + "nx/core/package-json" + ], + "metadata.targetGroups": [ + "boilerplates/storybook/package.json", + "nx/core/package-json" + ], + "metadata.targetGroups.NPM Scripts": [ + "boilerplates/storybook/package.json", + "nx/core/package-json" + ], + "metadata.targetGroups.NPM Scripts.0": [ + "boilerplates/storybook/package.json", + "nx/core/package-json" + ], + "metadata.targetGroups.NPM Scripts.1": [ + "boilerplates/storybook/package.json", + "nx/core/package-json" + ], + "metadata.description": [ + "boilerplates/storybook/package.json", + "nx/core/package-json" + ], + "metadata.js": [ + "boilerplates/storybook/package.json", + "nx/core/package-json" + ], + "metadata.js.packageName": [ + "boilerplates/storybook/package.json", + "nx/core/package-json" + ], + "metadata.js.packageVersion": [ + "boilerplates/storybook/package.json", + "nx/core/package-json" + ], + "metadata.js.isInPackageManagerWorkspaces": [ + "boilerplates/storybook/package.json", + "nx/core/package-json" + ], + "targets": [ + "boilerplates/storybook/package.json", + "nx/core/package-json" + ], + "targets.check-types": [ + "boilerplates/storybook/package.json", + "nx/core/package-json" + ], + "targets.check-types.executor": [ + "boilerplates/storybook/package.json", + "nx/core/package-json" + ], + "targets.check-types.options": [ + "boilerplates/storybook/package.json", + "nx/core/package-json" + ], + "targets.check-types.metadata": [ + "boilerplates/storybook/package.json", + "nx/core/package-json" + ], + "targets.check-types.options.script": [ + "boilerplates/storybook/package.json", + "nx/core/package-json" + ], + "targets.check-types.metadata.scriptContent": [ + "boilerplates/storybook/package.json", + "nx/core/package-json" + ], + "targets.check-types.metadata.runCommand": [ + "boilerplates/storybook/package.json", + "nx/core/package-json" + ], + "targets.build": [ + "boilerplates/storybook/package.json", + "nx/core/package-json" + ], + "targets.build.executor": [ + "boilerplates/storybook/package.json", + "nx/core/package-json" + ], + "targets.build.options": [ + "boilerplates/storybook/package.json", + "nx/core/package-json" + ], + "targets.build.metadata": [ + "boilerplates/storybook/package.json", + "nx/core/package-json" + ], + "targets.build.options.script": [ + "boilerplates/storybook/package.json", + "nx/core/package-json" + ], + "targets.build.metadata.scriptContent": [ + "boilerplates/storybook/package.json", + "nx/core/package-json" + ], + "targets.build.metadata.runCommand": [ + "boilerplates/storybook/package.json", + "nx/core/package-json" + ], + "targets.check-types.cache": [ + "nx.json", + "nx/target-defaults" + ], + "targets.check-types.parallelism": [ + "nx.json", + "nx/target-defaults" + ], + "targets.build.cache": [ + "nx.json", + "nx/target-defaults" + ], + "targets.build.dependsOn": [ + "nx.json", + "nx/target-defaults" + ], + "targets.build.inputs": [ + "nx.json", + "nx/target-defaults" + ], + "targets.build.outputs": [ + "nx.json", + "nx/target-defaults" + ], + "targets.build.parallelism": [ + "nx.json", + "nx/target-defaults" + ] + }, + "boilerplates/tailwindcss": { + "root": [ + "boilerplates/tailwindcss/package.json", + "nx/core/package-json" + ], + "name": [ + "boilerplates/tailwindcss/package.json", + "nx/core/package-json" + ], + "tags": [ + "boilerplates/tailwindcss/package.json", + "nx/core/package-json" + ], + "tags.npm:private": [ + "boilerplates/tailwindcss/package.json", + "nx/core/package-json" + ], + "tags.type:boilerplate": [ + "boilerplates/tailwindcss/package.json", + "nx/core/package-json" + ], + "metadata.targetGroups": [ + "boilerplates/tailwindcss/package.json", + "nx/core/package-json" + ], + "metadata.targetGroups.NPM Scripts": [ + "boilerplates/tailwindcss/package.json", + "nx/core/package-json" + ], + "metadata.targetGroups.NPM Scripts.0": [ + "boilerplates/tailwindcss/package.json", + "nx/core/package-json" + ], + "metadata.targetGroups.NPM Scripts.1": [ + "boilerplates/tailwindcss/package.json", + "nx/core/package-json" + ], + "metadata.description": [ + "boilerplates/tailwindcss/package.json", + "nx/core/package-json" + ], + "metadata.js": [ + "boilerplates/tailwindcss/package.json", + "nx/core/package-json" + ], + "metadata.js.packageName": [ + "boilerplates/tailwindcss/package.json", + "nx/core/package-json" + ], + "metadata.js.packageVersion": [ + "boilerplates/tailwindcss/package.json", + "nx/core/package-json" + ], + "metadata.js.isInPackageManagerWorkspaces": [ + "boilerplates/tailwindcss/package.json", + "nx/core/package-json" + ], + "targets": [ + "boilerplates/tailwindcss/package.json", + "nx/core/package-json" + ], + "targets.check-types": [ + "boilerplates/tailwindcss/package.json", + "nx/core/package-json" + ], + "targets.check-types.executor": [ + "boilerplates/tailwindcss/package.json", + "nx/core/package-json" + ], + "targets.check-types.options": [ + "boilerplates/tailwindcss/package.json", + "nx/core/package-json" + ], + "targets.check-types.metadata": [ + "boilerplates/tailwindcss/package.json", + "nx/core/package-json" + ], + "targets.check-types.options.script": [ + "boilerplates/tailwindcss/package.json", + "nx/core/package-json" + ], + "targets.check-types.metadata.scriptContent": [ + "boilerplates/tailwindcss/package.json", + "nx/core/package-json" + ], + "targets.check-types.metadata.runCommand": [ + "boilerplates/tailwindcss/package.json", + "nx/core/package-json" + ], + "targets.build": [ + "boilerplates/tailwindcss/package.json", + "nx/core/package-json" + ], + "targets.build.executor": [ + "boilerplates/tailwindcss/package.json", + "nx/core/package-json" + ], + "targets.build.options": [ + "boilerplates/tailwindcss/package.json", + "nx/core/package-json" + ], + "targets.build.metadata": [ + "boilerplates/tailwindcss/package.json", + "nx/core/package-json" + ], + "targets.build.options.script": [ + "boilerplates/tailwindcss/package.json", + "nx/core/package-json" + ], + "targets.build.metadata.scriptContent": [ + "boilerplates/tailwindcss/package.json", + "nx/core/package-json" + ], + "targets.build.metadata.runCommand": [ + "boilerplates/tailwindcss/package.json", + "nx/core/package-json" + ], + "targets.check-types.cache": [ + "nx.json", + "nx/target-defaults" + ], + "targets.check-types.parallelism": [ + "nx.json", + "nx/target-defaults" + ], + "targets.build.cache": [ + "nx.json", + "nx/target-defaults" + ], + "targets.build.dependsOn": [ + "nx.json", + "nx/target-defaults" + ], + "targets.build.inputs": [ + "nx.json", + "nx/target-defaults" + ], + "targets.build.outputs": [ + "nx.json", + "nx/target-defaults" + ], + "targets.build.parallelism": [ + "nx.json", + "nx/target-defaults" + ] + }, + "boilerplates/telefunc": { + "root": [ + "boilerplates/telefunc/package.json", + "nx/core/package-json" + ], + "name": [ + "boilerplates/telefunc/package.json", + "nx/core/package-json" + ], + "tags": [ + "boilerplates/telefunc/package.json", + "nx/core/package-json" + ], + "tags.npm:private": [ + "boilerplates/telefunc/package.json", + "nx/core/package-json" + ], + "tags.type:boilerplate": [ + "boilerplates/telefunc/package.json", + "nx/core/package-json" + ], + "metadata.targetGroups": [ + "boilerplates/telefunc/package.json", + "nx/core/package-json" + ], + "metadata.targetGroups.NPM Scripts": [ + "boilerplates/telefunc/package.json", + "nx/core/package-json" + ], + "metadata.targetGroups.NPM Scripts.0": [ + "boilerplates/telefunc/package.json", + "nx/core/package-json" + ], + "metadata.targetGroups.NPM Scripts.1": [ + "boilerplates/telefunc/package.json", + "nx/core/package-json" + ], + "metadata.description": [ + "boilerplates/telefunc/package.json", + "nx/core/package-json" + ], + "metadata.js": [ + "boilerplates/telefunc/package.json", + "nx/core/package-json" + ], + "metadata.js.packageName": [ + "boilerplates/telefunc/package.json", + "nx/core/package-json" + ], + "metadata.js.packageVersion": [ + "boilerplates/telefunc/package.json", + "nx/core/package-json" + ], + "metadata.js.packageExports": [ + "boilerplates/telefunc/package.json", + "nx/core/package-json" + ], + "metadata.js.isInPackageManagerWorkspaces": [ + "boilerplates/telefunc/package.json", + "nx/core/package-json" + ], + "targets": [ + "boilerplates/telefunc/package.json", + "nx/core/package-json" + ], + "targets.check-types": [ + "boilerplates/telefunc/package.json", + "nx/core/package-json" + ], + "targets.check-types.executor": [ + "boilerplates/telefunc/package.json", + "nx/core/package-json" + ], + "targets.check-types.options": [ + "boilerplates/telefunc/package.json", + "nx/core/package-json" + ], + "targets.check-types.metadata": [ + "boilerplates/telefunc/package.json", + "nx/core/package-json" + ], + "targets.check-types.options.script": [ + "boilerplates/telefunc/package.json", + "nx/core/package-json" + ], + "targets.check-types.metadata.scriptContent": [ + "boilerplates/telefunc/package.json", + "nx/core/package-json" + ], + "targets.check-types.metadata.runCommand": [ + "boilerplates/telefunc/package.json", + "nx/core/package-json" + ], + "targets.build": [ + "boilerplates/telefunc/package.json", + "nx/core/package-json" + ], + "targets.build.executor": [ + "boilerplates/telefunc/package.json", + "nx/core/package-json" + ], + "targets.build.options": [ + "boilerplates/telefunc/package.json", + "nx/core/package-json" + ], + "targets.build.metadata": [ + "boilerplates/telefunc/package.json", + "nx/core/package-json" + ], + "targets.build.options.script": [ + "boilerplates/telefunc/package.json", + "nx/core/package-json" + ], + "targets.build.metadata.scriptContent": [ + "boilerplates/telefunc/package.json", + "nx/core/package-json" + ], + "targets.build.metadata.runCommand": [ + "boilerplates/telefunc/package.json", + "nx/core/package-json" + ], + "targets.check-types.cache": [ + "nx.json", + "nx/target-defaults" + ], + "targets.check-types.parallelism": [ + "nx.json", + "nx/target-defaults" + ], + "targets.build.cache": [ + "nx.json", + "nx/target-defaults" + ], + "targets.build.dependsOn": [ + "nx.json", + "nx/target-defaults" + ], + "targets.build.inputs": [ + "nx.json", + "nx/target-defaults" + ], + "targets.build.outputs": [ + "nx.json", + "nx/target-defaults" + ], + "targets.build.parallelism": [ + "nx.json", + "nx/target-defaults" + ] + }, + "boilerplates/trpc": { + "root": [ + "boilerplates/trpc/package.json", + "nx/core/package-json" + ], + "name": [ + "boilerplates/trpc/package.json", + "nx/core/package-json" + ], + "tags": [ + "boilerplates/trpc/package.json", + "nx/core/package-json" + ], + "tags.npm:private": [ + "boilerplates/trpc/package.json", + "nx/core/package-json" + ], + "tags.type:boilerplate": [ + "boilerplates/trpc/package.json", + "nx/core/package-json" + ], + "metadata.targetGroups": [ + "boilerplates/trpc/package.json", + "nx/core/package-json" + ], + "metadata.targetGroups.NPM Scripts": [ + "boilerplates/trpc/package.json", + "nx/core/package-json" + ], + "metadata.targetGroups.NPM Scripts.0": [ + "boilerplates/trpc/package.json", + "nx/core/package-json" + ], + "metadata.targetGroups.NPM Scripts.1": [ + "boilerplates/trpc/package.json", + "nx/core/package-json" + ], + "metadata.description": [ + "boilerplates/trpc/package.json", + "nx/core/package-json" + ], + "metadata.js": [ + "boilerplates/trpc/package.json", + "nx/core/package-json" + ], + "metadata.js.packageName": [ + "boilerplates/trpc/package.json", + "nx/core/package-json" + ], + "metadata.js.packageVersion": [ + "boilerplates/trpc/package.json", + "nx/core/package-json" + ], + "metadata.js.packageExports": [ + "boilerplates/trpc/package.json", + "nx/core/package-json" + ], + "metadata.js.isInPackageManagerWorkspaces": [ + "boilerplates/trpc/package.json", + "nx/core/package-json" + ], + "targets": [ + "boilerplates/trpc/package.json", + "nx/core/package-json" + ], + "targets.check-types": [ + "boilerplates/trpc/package.json", + "nx/core/package-json" + ], + "targets.check-types.executor": [ + "boilerplates/trpc/package.json", + "nx/core/package-json" + ], + "targets.check-types.options": [ + "boilerplates/trpc/package.json", + "nx/core/package-json" + ], + "targets.check-types.metadata": [ + "boilerplates/trpc/package.json", + "nx/core/package-json" + ], + "targets.check-types.options.script": [ + "boilerplates/trpc/package.json", + "nx/core/package-json" + ], + "targets.check-types.metadata.scriptContent": [ + "boilerplates/trpc/package.json", + "nx/core/package-json" + ], + "targets.check-types.metadata.runCommand": [ + "boilerplates/trpc/package.json", + "nx/core/package-json" + ], + "targets.build": [ + "boilerplates/trpc/package.json", + "nx/core/package-json" + ], + "targets.build.executor": [ + "boilerplates/trpc/package.json", + "nx/core/package-json" + ], + "targets.build.options": [ + "boilerplates/trpc/package.json", + "nx/core/package-json" + ], + "targets.build.metadata": [ + "boilerplates/trpc/package.json", + "nx/core/package-json" + ], + "targets.build.options.script": [ + "boilerplates/trpc/package.json", + "nx/core/package-json" + ], + "targets.build.metadata.scriptContent": [ + "boilerplates/trpc/package.json", + "nx/core/package-json" + ], + "targets.build.metadata.runCommand": [ + "boilerplates/trpc/package.json", + "nx/core/package-json" + ], + "targets.check-types.cache": [ + "nx.json", + "nx/target-defaults" + ], + "targets.check-types.parallelism": [ + "nx.json", + "nx/target-defaults" + ], + "targets.build.cache": [ + "nx.json", + "nx/target-defaults" + ], + "targets.build.dependsOn": [ + "nx.json", + "nx/target-defaults" + ], + "targets.build.inputs": [ + "nx.json", + "nx/target-defaults" + ], + "targets.build.outputs": [ + "nx.json", + "nx/target-defaults" + ], + "targets.build.parallelism": [ + "nx.json", + "nx/target-defaults" + ] + }, + "boilerplates/ts-rest": { + "root": [ + "boilerplates/ts-rest/package.json", + "nx/core/package-json" + ], + "name": [ + "boilerplates/ts-rest/package.json", + "nx/core/package-json" + ], + "tags": [ + "boilerplates/ts-rest/package.json", + "nx/core/package-json" + ], + "tags.npm:private": [ + "boilerplates/ts-rest/package.json", + "nx/core/package-json" + ], + "tags.type:boilerplate": [ + "boilerplates/ts-rest/package.json", + "nx/core/package-json" + ], + "metadata.targetGroups": [ + "boilerplates/ts-rest/package.json", + "nx/core/package-json" + ], + "metadata.targetGroups.NPM Scripts": [ + "boilerplates/ts-rest/package.json", + "nx/core/package-json" + ], + "metadata.targetGroups.NPM Scripts.0": [ + "boilerplates/ts-rest/package.json", + "nx/core/package-json" + ], + "metadata.targetGroups.NPM Scripts.1": [ + "boilerplates/ts-rest/package.json", + "nx/core/package-json" + ], + "metadata.description": [ + "boilerplates/ts-rest/package.json", + "nx/core/package-json" + ], + "metadata.js": [ + "boilerplates/ts-rest/package.json", + "nx/core/package-json" + ], + "metadata.js.packageName": [ + "boilerplates/ts-rest/package.json", + "nx/core/package-json" + ], + "metadata.js.packageVersion": [ + "boilerplates/ts-rest/package.json", + "nx/core/package-json" + ], + "metadata.js.packageExports": [ + "boilerplates/ts-rest/package.json", + "nx/core/package-json" + ], + "metadata.js.isInPackageManagerWorkspaces": [ + "boilerplates/ts-rest/package.json", + "nx/core/package-json" + ], + "targets": [ + "boilerplates/ts-rest/package.json", + "nx/core/package-json" + ], + "targets.check-types": [ + "boilerplates/ts-rest/package.json", + "nx/core/package-json" + ], + "targets.check-types.executor": [ + "boilerplates/ts-rest/package.json", + "nx/core/package-json" + ], + "targets.check-types.options": [ + "boilerplates/ts-rest/package.json", + "nx/core/package-json" + ], + "targets.check-types.metadata": [ + "boilerplates/ts-rest/package.json", + "nx/core/package-json" + ], + "targets.check-types.options.script": [ + "boilerplates/ts-rest/package.json", + "nx/core/package-json" + ], + "targets.check-types.metadata.scriptContent": [ + "boilerplates/ts-rest/package.json", + "nx/core/package-json" + ], + "targets.check-types.metadata.runCommand": [ + "boilerplates/ts-rest/package.json", + "nx/core/package-json" + ], + "targets.build": [ + "boilerplates/ts-rest/package.json", + "nx/core/package-json" + ], + "targets.build.executor": [ + "boilerplates/ts-rest/package.json", + "nx/core/package-json" + ], + "targets.build.options": [ + "boilerplates/ts-rest/package.json", + "nx/core/package-json" + ], + "targets.build.metadata": [ + "boilerplates/ts-rest/package.json", + "nx/core/package-json" + ], + "targets.build.options.script": [ + "boilerplates/ts-rest/package.json", + "nx/core/package-json" + ], + "targets.build.metadata.scriptContent": [ + "boilerplates/ts-rest/package.json", + "nx/core/package-json" + ], + "targets.build.metadata.runCommand": [ + "boilerplates/ts-rest/package.json", + "nx/core/package-json" + ], + "targets.check-types.cache": [ + "nx.json", + "nx/target-defaults" + ], + "targets.check-types.parallelism": [ + "nx.json", + "nx/target-defaults" + ], + "targets.build.cache": [ + "nx.json", + "nx/target-defaults" + ], + "targets.build.dependsOn": [ + "nx.json", + "nx/target-defaults" + ], + "targets.build.inputs": [ + "nx.json", + "nx/target-defaults" + ], + "targets.build.outputs": [ + "nx.json", + "nx/target-defaults" + ], + "targets.build.parallelism": [ + "nx.json", + "nx/target-defaults" + ] + }, + "boilerplates/vercel": { + "root": [ + "boilerplates/vercel/package.json", + "nx/core/package-json" + ], + "name": [ + "boilerplates/vercel/package.json", + "nx/core/package-json" + ], + "tags": [ + "boilerplates/vercel/package.json", + "nx/core/package-json" + ], + "tags.npm:private": [ + "boilerplates/vercel/package.json", + "nx/core/package-json" + ], + "tags.type:boilerplate": [ + "boilerplates/vercel/package.json", + "nx/core/package-json" + ], + "metadata.targetGroups": [ + "boilerplates/vercel/package.json", + "nx/core/package-json" + ], + "metadata.targetGroups.NPM Scripts": [ + "boilerplates/vercel/package.json", + "nx/core/package-json" + ], + "metadata.targetGroups.NPM Scripts.0": [ + "boilerplates/vercel/package.json", + "nx/core/package-json" + ], + "metadata.targetGroups.NPM Scripts.1": [ + "boilerplates/vercel/package.json", + "nx/core/package-json" + ], + "metadata.description": [ + "boilerplates/vercel/package.json", + "nx/core/package-json" + ], + "metadata.js": [ + "boilerplates/vercel/package.json", + "nx/core/package-json" + ], + "metadata.js.packageName": [ + "boilerplates/vercel/package.json", + "nx/core/package-json" + ], + "metadata.js.packageVersion": [ + "boilerplates/vercel/package.json", + "nx/core/package-json" + ], + "metadata.js.isInPackageManagerWorkspaces": [ + "boilerplates/vercel/package.json", + "nx/core/package-json" + ], + "targets": [ + "boilerplates/vercel/package.json", + "nx/core/package-json" + ], + "targets.check-types": [ + "boilerplates/vercel/package.json", + "nx/core/package-json" + ], + "targets.check-types.executor": [ + "boilerplates/vercel/package.json", + "nx/core/package-json" + ], + "targets.check-types.options": [ + "boilerplates/vercel/package.json", + "nx/core/package-json" + ], + "targets.check-types.metadata": [ + "boilerplates/vercel/package.json", + "nx/core/package-json" + ], + "targets.check-types.options.script": [ + "boilerplates/vercel/package.json", + "nx/core/package-json" + ], + "targets.check-types.metadata.scriptContent": [ + "boilerplates/vercel/package.json", + "nx/core/package-json" + ], + "targets.check-types.metadata.runCommand": [ + "boilerplates/vercel/package.json", + "nx/core/package-json" + ], + "targets.build": [ + "boilerplates/vercel/package.json", + "nx/core/package-json" + ], + "targets.build.executor": [ + "boilerplates/vercel/package.json", + "nx/core/package-json" + ], + "targets.build.options": [ + "boilerplates/vercel/package.json", + "nx/core/package-json" + ], + "targets.build.metadata": [ + "boilerplates/vercel/package.json", + "nx/core/package-json" + ], + "targets.build.options.script": [ + "boilerplates/vercel/package.json", + "nx/core/package-json" + ], + "targets.build.metadata.scriptContent": [ + "boilerplates/vercel/package.json", + "nx/core/package-json" + ], + "targets.build.metadata.runCommand": [ + "boilerplates/vercel/package.json", + "nx/core/package-json" + ], + "targets.check-types.cache": [ + "nx.json", + "nx/target-defaults" + ], + "targets.check-types.parallelism": [ + "nx.json", + "nx/target-defaults" + ], + "targets.build.cache": [ + "nx.json", + "nx/target-defaults" + ], + "targets.build.dependsOn": [ + "nx.json", + "nx/target-defaults" + ], + "targets.build.inputs": [ + "nx.json", + "nx/target-defaults" + ], + "targets.build.outputs": [ + "nx.json", + "nx/target-defaults" + ], + "targets.build.parallelism": [ + "nx.json", + "nx/target-defaults" + ] + }, + "boilerplates/vue": { + "root": [ + "boilerplates/vue/package.json", + "nx/core/package-json" + ], + "name": [ + "boilerplates/vue/package.json", + "nx/core/package-json" + ], + "tags": [ + "boilerplates/vue/package.json", + "nx/core/package-json" + ], + "tags.npm:private": [ + "boilerplates/vue/package.json", + "nx/core/package-json" + ], + "tags.type:boilerplate": [ + "boilerplates/vue/package.json", + "nx/core/package-json" + ], + "metadata.targetGroups": [ + "boilerplates/vue/package.json", + "nx/core/package-json" + ], + "metadata.targetGroups.NPM Scripts": [ + "boilerplates/vue/package.json", + "nx/core/package-json" + ], + "metadata.targetGroups.NPM Scripts.0": [ + "boilerplates/vue/package.json", + "nx/core/package-json" + ], + "metadata.targetGroups.NPM Scripts.1": [ + "boilerplates/vue/package.json", + "nx/core/package-json" + ], + "metadata.description": [ + "boilerplates/vue/package.json", + "nx/core/package-json" + ], + "metadata.js": [ + "boilerplates/vue/package.json", + "nx/core/package-json" + ], + "metadata.js.packageName": [ + "boilerplates/vue/package.json", + "nx/core/package-json" + ], + "metadata.js.packageVersion": [ + "boilerplates/vue/package.json", + "nx/core/package-json" + ], + "metadata.js.packageExports": [ + "boilerplates/vue/package.json", + "nx/core/package-json" + ], + "metadata.js.isInPackageManagerWorkspaces": [ + "boilerplates/vue/package.json", + "nx/core/package-json" + ], + "targets": [ + "boilerplates/vue/package.json", + "nx/core/package-json" + ], + "targets.check-types": [ + "boilerplates/vue/package.json", + "nx/core/package-json" + ], + "targets.check-types.executor": [ + "boilerplates/vue/package.json", + "nx/core/package-json" + ], + "targets.check-types.options": [ + "boilerplates/vue/package.json", + "nx/core/package-json" + ], + "targets.check-types.metadata": [ + "boilerplates/vue/package.json", + "nx/core/package-json" + ], + "targets.check-types.options.script": [ + "boilerplates/vue/package.json", + "nx/core/package-json" + ], + "targets.check-types.metadata.scriptContent": [ + "boilerplates/vue/package.json", + "nx/core/package-json" + ], + "targets.check-types.metadata.runCommand": [ + "boilerplates/vue/package.json", + "nx/core/package-json" + ], + "targets.build": [ + "boilerplates/vue/package.json", + "nx/core/package-json" + ], + "targets.build.executor": [ + "boilerplates/vue/package.json", + "nx/core/package-json" + ], + "targets.build.options": [ + "boilerplates/vue/package.json", + "nx/core/package-json" + ], + "targets.build.metadata": [ + "boilerplates/vue/package.json", + "nx/core/package-json" + ], + "targets.build.options.script": [ + "boilerplates/vue/package.json", + "nx/core/package-json" + ], + "targets.build.metadata.scriptContent": [ + "boilerplates/vue/package.json", + "nx/core/package-json" + ], + "targets.build.metadata.runCommand": [ + "boilerplates/vue/package.json", + "nx/core/package-json" + ], + "targets.check-types.cache": [ + "nx.json", + "nx/target-defaults" + ], + "targets.check-types.parallelism": [ + "nx.json", + "nx/target-defaults" + ], + "targets.build.cache": [ + "nx.json", + "nx/target-defaults" + ], + "targets.build.dependsOn": [ + "nx.json", + "nx/target-defaults" + ], + "targets.build.inputs": [ + "nx.json", + "nx/target-defaults" + ], + "targets.build.outputs": [ + "nx.json", + "nx/target-defaults" + ], + "targets.build.parallelism": [ + "nx.json", + "nx/target-defaults" + ] + }, + "boilerplates/vue-sentry": { + "root": [ + "boilerplates/vue-sentry/package.json", + "nx/core/package-json" + ], + "name": [ + "boilerplates/vue-sentry/package.json", + "nx/core/package-json" + ], + "tags": [ + "boilerplates/vue-sentry/package.json", + "nx/core/package-json" + ], + "tags.npm:private": [ + "boilerplates/vue-sentry/package.json", + "nx/core/package-json" + ], + "tags.type:boilerplate": [ + "boilerplates/vue-sentry/package.json", + "nx/core/package-json" + ], + "metadata.targetGroups": [ + "boilerplates/vue-sentry/package.json", + "nx/core/package-json" + ], + "metadata.targetGroups.NPM Scripts": [ + "boilerplates/vue-sentry/package.json", + "nx/core/package-json" + ], + "metadata.targetGroups.NPM Scripts.0": [ + "boilerplates/vue-sentry/package.json", + "nx/core/package-json" + ], + "metadata.targetGroups.NPM Scripts.1": [ + "boilerplates/vue-sentry/package.json", + "nx/core/package-json" + ], + "metadata.description": [ + "boilerplates/vue-sentry/package.json", + "nx/core/package-json" + ], + "metadata.js": [ + "boilerplates/vue-sentry/package.json", + "nx/core/package-json" + ], + "metadata.js.packageName": [ + "boilerplates/vue-sentry/package.json", + "nx/core/package-json" + ], + "metadata.js.packageVersion": [ + "boilerplates/vue-sentry/package.json", + "nx/core/package-json" + ], + "metadata.js.packageExports": [ + "boilerplates/vue-sentry/package.json", + "nx/core/package-json" + ], + "metadata.js.isInPackageManagerWorkspaces": [ + "boilerplates/vue-sentry/package.json", + "nx/core/package-json" + ], + "targets": [ + "boilerplates/vue-sentry/package.json", + "nx/core/package-json" + ], + "targets.check-types": [ + "boilerplates/vue-sentry/package.json", + "nx/core/package-json" + ], + "targets.check-types.executor": [ + "boilerplates/vue-sentry/package.json", + "nx/core/package-json" + ], + "targets.check-types.options": [ + "boilerplates/vue-sentry/package.json", + "nx/core/package-json" + ], + "targets.check-types.metadata": [ + "boilerplates/vue-sentry/package.json", + "nx/core/package-json" + ], + "targets.check-types.options.script": [ + "boilerplates/vue-sentry/package.json", + "nx/core/package-json" + ], + "targets.check-types.metadata.scriptContent": [ + "boilerplates/vue-sentry/package.json", + "nx/core/package-json" + ], + "targets.check-types.metadata.runCommand": [ + "boilerplates/vue-sentry/package.json", + "nx/core/package-json" + ], + "targets.build": [ + "boilerplates/vue-sentry/package.json", + "nx/core/package-json" + ], + "targets.build.executor": [ + "boilerplates/vue-sentry/package.json", + "nx/core/package-json" + ], + "targets.build.options": [ + "boilerplates/vue-sentry/package.json", + "nx/core/package-json" + ], + "targets.build.metadata": [ + "boilerplates/vue-sentry/package.json", + "nx/core/package-json" + ], + "targets.build.options.script": [ + "boilerplates/vue-sentry/package.json", + "nx/core/package-json" + ], + "targets.build.metadata.scriptContent": [ + "boilerplates/vue-sentry/package.json", + "nx/core/package-json" + ], + "targets.build.metadata.runCommand": [ + "boilerplates/vue-sentry/package.json", + "nx/core/package-json" + ], + "targets.check-types.cache": [ + "nx.json", + "nx/target-defaults" + ], + "targets.check-types.parallelism": [ + "nx.json", + "nx/target-defaults" + ], + "targets.build.cache": [ + "nx.json", + "nx/target-defaults" + ], + "targets.build.dependsOn": [ + "nx.json", + "nx/target-defaults" + ], + "targets.build.inputs": [ + "nx.json", + "nx/target-defaults" + ], + "targets.build.outputs": [ + "nx.json", + "nx/target-defaults" + ], + "targets.build.parallelism": [ + "nx.json", + "nx/target-defaults" + ] + }, + "packages/batijs": { + "root": [ + "packages/batijs/package.json", + "nx/core/package-json" + ], + "name": [ + "packages/batijs/package.json", + "nx/core/package-json" + ], + "tags": [ + "packages/batijs/package.json", + "nx/core/package-json" + ], + "tags.npm:private": [ + "packages/batijs/package.json", + "nx/core/package-json" + ], + "metadata.targetGroups": [ + "packages/batijs/package.json", + "nx/core/package-json" + ], + "metadata.description": [ + "packages/batijs/package.json", + "nx/core/package-json" + ], + "metadata.js": [ + "packages/batijs/package.json", + "nx/core/package-json" + ], + "metadata.js.packageName": [ + "packages/batijs/package.json", + "nx/core/package-json" + ], + "metadata.js.packageVersion": [ + "packages/batijs/package.json", + "nx/core/package-json" + ], + "metadata.js.isInPackageManagerWorkspaces": [ + "packages/batijs/package.json", + "nx/core/package-json" + ], + "targets": [ + "packages/batijs/package.json", + "nx/core/package-json" + ] + }, + "packages/build": { + "root": [ + "packages/build/package.json", + "nx/core/package-json" + ], + "name": [ + "packages/build/package.json", + "nx/core/package-json" + ], + "tags": [ + "packages/build/package.json", + "nx/core/package-json" + ], + "tags.npm:public": [ + "packages/build/package.json", + "nx/core/package-json" + ], + "metadata.targetGroups": [ + "packages/build/package.json", + "nx/core/package-json" + ], + "metadata.targetGroups.NPM Scripts": [ + "packages/build/package.json", + "nx/core/package-json" + ], + "metadata.targetGroups.NPM Scripts.0": [ + "packages/build/package.json", + "nx/core/package-json" + ], + "metadata.targetGroups.NPM Scripts.1": [ + "packages/build/package.json", + "nx/core/package-json" + ], + "metadata.targetGroups.NPM Scripts.2": [ + "packages/build/package.json", + "nx/core/package-json" + ], + "metadata.description": [ + "packages/build/package.json", + "nx/core/package-json" + ], + "metadata.js": [ + "packages/build/package.json", + "nx/core/package-json" + ], + "metadata.js.packageName": [ + "packages/build/package.json", + "nx/core/package-json" + ], + "metadata.js.packageVersion": [ + "packages/build/package.json", + "nx/core/package-json" + ], + "metadata.js.packageExports": [ + "packages/build/package.json", + "nx/core/package-json" + ], + "metadata.js.packageMain": [ + "packages/build/package.json", + "nx/core/package-json" + ], + "metadata.js.isInPackageManagerWorkspaces": [ + "packages/build/package.json", + "nx/core/package-json" + ], + "targets": [ + "packages/build/package.json", + "nx/core/package-json" + ], + "targets.check-types": [ + "packages/build/package.json", + "nx/core/package-json" + ], + "targets.check-types.executor": [ + "packages/build/package.json", + "nx/core/package-json" + ], + "targets.check-types.options": [ + "packages/build/package.json", + "nx/core/package-json" + ], + "targets.check-types.metadata": [ + "packages/build/package.json", + "nx/core/package-json" + ], + "targets.check-types.options.script": [ + "packages/build/package.json", + "nx/core/package-json" + ], + "targets.check-types.metadata.scriptContent": [ + "packages/build/package.json", + "nx/core/package-json" + ], + "targets.check-types.metadata.runCommand": [ + "packages/build/package.json", + "nx/core/package-json" + ], + "targets.prepublishOnly": [ + "packages/build/package.json", + "nx/core/package-json" + ], + "targets.prepublishOnly.executor": [ + "packages/build/package.json", + "nx/core/package-json" + ], + "targets.prepublishOnly.options": [ + "packages/build/package.json", + "nx/core/package-json" + ], + "targets.prepublishOnly.metadata": [ + "packages/build/package.json", + "nx/core/package-json" + ], + "targets.prepublishOnly.options.script": [ + "packages/build/package.json", + "nx/core/package-json" + ], + "targets.prepublishOnly.metadata.scriptContent": [ + "packages/build/package.json", + "nx/core/package-json" + ], + "targets.prepublishOnly.metadata.runCommand": [ + "packages/build/package.json", + "nx/core/package-json" + ], + "targets.build": [ + "packages/build/package.json", + "nx/core/package-json" + ], + "targets.build.executor": [ + "packages/build/package.json", + "nx/core/package-json" + ], + "targets.build.options": [ + "packages/build/package.json", + "nx/core/package-json" + ], + "targets.build.metadata": [ + "packages/build/package.json", + "nx/core/package-json" + ], + "targets.build.options.script": [ + "packages/build/package.json", + "nx/core/package-json" + ], + "targets.build.metadata.scriptContent": [ + "packages/build/package.json", + "nx/core/package-json" + ], + "targets.build.metadata.runCommand": [ + "packages/build/package.json", + "nx/core/package-json" + ], + "targets.check-types.cache": [ + "nx.json", + "nx/target-defaults" + ], + "targets.check-types.parallelism": [ + "nx.json", + "nx/target-defaults" + ], + "targets.build.cache": [ + "nx.json", + "nx/target-defaults" + ], + "targets.build.dependsOn": [ + "nx.json", + "nx/target-defaults" + ], + "targets.build.inputs": [ + "nx.json", + "nx/target-defaults" + ], + "targets.build.outputs": [ + "nx.json", + "nx/target-defaults" + ], + "targets.build.parallelism": [ + "nx.json", + "nx/target-defaults" + ] + }, + "packages/cli": { + "root": [ + "packages/cli/project.json", + "nx/core/project-json" + ], + "name": [ + "packages/cli/project.json", + "nx/core/project-json" + ], + "tags": [ + "packages/cli/package.json", + "nx/core/package-json" + ], + "tags.npm:public": [ + "packages/cli/package.json", + "nx/core/package-json" + ], + "metadata.targetGroups": [ + "packages/cli/package.json", + "nx/core/package-json" + ], + "metadata.targetGroups.NPM Scripts": [ + "packages/cli/package.json", + "nx/core/package-json" + ], + "metadata.targetGroups.NPM Scripts.0": [ + "packages/cli/package.json", + "nx/core/package-json" + ], + "metadata.targetGroups.NPM Scripts.1": [ + "packages/cli/package.json", + "nx/core/package-json" + ], + "metadata.targetGroups.NPM Scripts.2": [ + "packages/cli/package.json", + "nx/core/package-json" + ], + "metadata.description": [ + "packages/cli/package.json", + "nx/core/package-json" + ], + "metadata.js": [ + "packages/cli/package.json", + "nx/core/package-json" + ], + "metadata.js.packageName": [ + "packages/cli/package.json", + "nx/core/package-json" + ], + "metadata.js.packageVersion": [ + "packages/cli/package.json", + "nx/core/package-json" + ], + "metadata.js.packageExports": [ + "packages/cli/package.json", + "nx/core/package-json" + ], + "metadata.js.isInPackageManagerWorkspaces": [ + "packages/cli/package.json", + "nx/core/package-json" + ], + "targets": [ + "packages/cli/package.json", + "nx/core/package-json" + ], + "targets.check-types": [ + "packages/cli/package.json", + "nx/core/package-json" + ], + "targets.check-types.executor": [ + "packages/cli/package.json", + "nx/core/package-json" + ], + "targets.check-types.options": [ + "packages/cli/package.json", + "nx/core/package-json" + ], + "targets.check-types.metadata": [ + "packages/cli/package.json", + "nx/core/package-json" + ], + "targets.check-types.options.script": [ + "packages/cli/package.json", + "nx/core/package-json" + ], + "targets.check-types.metadata.scriptContent": [ + "packages/cli/package.json", + "nx/core/package-json" + ], + "targets.check-types.metadata.runCommand": [ + "packages/cli/package.json", + "nx/core/package-json" + ], + "targets.prepublishOnly": [ + "packages/cli/package.json", + "nx/core/package-json" + ], + "targets.prepublishOnly.executor": [ + "packages/cli/package.json", + "nx/core/package-json" + ], + "targets.prepublishOnly.options": [ + "packages/cli/package.json", + "nx/core/package-json" + ], + "targets.prepublishOnly.metadata": [ + "packages/cli/package.json", + "nx/core/package-json" + ], + "targets.prepublishOnly.options.script": [ + "packages/cli/package.json", + "nx/core/package-json" + ], + "targets.prepublishOnly.metadata.scriptContent": [ + "packages/cli/package.json", + "nx/core/package-json" + ], + "targets.prepublishOnly.metadata.runCommand": [ + "packages/cli/package.json", + "nx/core/package-json" + ], + "targets.build": [ + "packages/cli/package.json", + "nx/core/package-json" + ], + "targets.build.executor": [ + "packages/cli/package.json", + "nx/core/package-json" + ], + "targets.build.options": [ + "packages/cli/package.json", + "nx/core/package-json" + ], + "targets.build.metadata": [ + "packages/cli/package.json", + "nx/core/package-json" + ], + "targets.build.options.script": [ + "packages/cli/package.json", + "nx/core/package-json" + ], + "targets.build.metadata.scriptContent": [ + "packages/cli/package.json", + "nx/core/package-json" + ], + "targets.build.metadata.runCommand": [ + "packages/cli/package.json", + "nx/core/package-json" + ], + "implicitDependencies": [ + "packages/cli/project.json", + "nx/core/project-json" + ], + "implicitDependencies.tag:type:boilerplate": [ + "packages/cli/project.json", + "nx/core/project-json" + ], + "targets.check-types.cache": [ + "nx.json", + "nx/target-defaults" + ], + "targets.check-types.parallelism": [ + "nx.json", + "nx/target-defaults" + ], + "targets.build.cache": [ + "nx.json", + "nx/target-defaults" + ], + "targets.build.dependsOn": [ + "nx.json", + "nx/target-defaults" + ], + "targets.build.inputs": [ + "nx.json", + "nx/target-defaults" + ], + "targets.build.outputs": [ + "nx.json", + "nx/target-defaults" + ], + "targets.build.parallelism": [ + "nx.json", + "nx/target-defaults" + ] + }, + "packages/compile": { + "root": [ + "packages/compile/package.json", + "nx/core/package-json" + ], + "name": [ + "packages/compile/package.json", + "nx/core/package-json" + ], + "tags": [ + "packages/compile/package.json", + "nx/core/package-json" + ], + "tags.npm:private": [ + "packages/compile/package.json", + "nx/core/package-json" + ], + "metadata.targetGroups": [ + "packages/compile/package.json", + "nx/core/package-json" + ], + "metadata.targetGroups.NPM Scripts": [ + "packages/compile/package.json", + "nx/core/package-json" + ], + "metadata.targetGroups.NPM Scripts.0": [ + "packages/compile/package.json", + "nx/core/package-json" + ], + "metadata.targetGroups.NPM Scripts.1": [ + "packages/compile/package.json", + "nx/core/package-json" + ], + "metadata.targetGroups.NPM Scripts.2": [ + "packages/compile/package.json", + "nx/core/package-json" + ], + "metadata.description": [ + "packages/compile/package.json", + "nx/core/package-json" + ], + "metadata.js": [ + "packages/compile/package.json", + "nx/core/package-json" + ], + "metadata.js.packageName": [ + "packages/compile/package.json", + "nx/core/package-json" + ], + "metadata.js.packageVersion": [ + "packages/compile/package.json", + "nx/core/package-json" + ], + "metadata.js.isInPackageManagerWorkspaces": [ + "packages/compile/package.json", + "nx/core/package-json" + ], + "targets": [ + "packages/compile/package.json", + "nx/core/package-json" + ], + "targets.check-types": [ + "packages/compile/package.json", + "nx/core/package-json" + ], + "targets.check-types.executor": [ + "packages/compile/package.json", + "nx/core/package-json" + ], + "targets.check-types.options": [ + "packages/compile/package.json", + "nx/core/package-json" + ], + "targets.check-types.metadata": [ + "packages/compile/package.json", + "nx/core/package-json" + ], + "targets.check-types.options.script": [ + "packages/compile/package.json", + "nx/core/package-json" + ], + "targets.check-types.metadata.scriptContent": [ + "packages/compile/package.json", + "nx/core/package-json" + ], + "targets.check-types.metadata.runCommand": [ + "packages/compile/package.json", + "nx/core/package-json" + ], + "targets.prepublishOnly": [ + "packages/compile/package.json", + "nx/core/package-json" + ], + "targets.prepublishOnly.executor": [ + "packages/compile/package.json", + "nx/core/package-json" + ], + "targets.prepublishOnly.options": [ + "packages/compile/package.json", + "nx/core/package-json" + ], + "targets.prepublishOnly.metadata": [ + "packages/compile/package.json", + "nx/core/package-json" + ], + "targets.prepublishOnly.options.script": [ + "packages/compile/package.json", + "nx/core/package-json" + ], + "targets.prepublishOnly.metadata.scriptContent": [ + "packages/compile/package.json", + "nx/core/package-json" + ], + "targets.prepublishOnly.metadata.runCommand": [ + "packages/compile/package.json", + "nx/core/package-json" + ], + "targets.build": [ + "packages/compile/package.json", + "nx/core/package-json" + ], + "targets.build.executor": [ + "packages/compile/package.json", + "nx/core/package-json" + ], + "targets.build.options": [ + "packages/compile/package.json", + "nx/core/package-json" + ], + "targets.build.metadata": [ + "packages/compile/package.json", + "nx/core/package-json" + ], + "targets.build.options.script": [ + "packages/compile/package.json", + "nx/core/package-json" + ], + "targets.build.metadata.scriptContent": [ + "packages/compile/package.json", + "nx/core/package-json" + ], + "targets.build.metadata.runCommand": [ + "packages/compile/package.json", + "nx/core/package-json" + ], + "targets.check-types.cache": [ + "nx.json", + "nx/target-defaults" + ], + "targets.check-types.parallelism": [ + "nx.json", + "nx/target-defaults" + ], + "targets.build.cache": [ + "nx.json", + "nx/target-defaults" + ], + "targets.build.dependsOn": [ + "nx.json", + "nx/target-defaults" + ], + "targets.build.inputs": [ + "nx.json", + "nx/target-defaults" + ], + "targets.build.outputs": [ + "nx.json", + "nx/target-defaults" + ], + "targets.build.parallelism": [ + "nx.json", + "nx/target-defaults" + ] + }, + "packages/core": { + "root": [ + "packages/core/package.json", + "nx/core/package-json" + ], + "name": [ + "packages/core/package.json", + "nx/core/package-json" + ], + "tags": [ + "packages/core/package.json", + "nx/core/package-json" + ], + "tags.npm:public": [ + "packages/core/package.json", + "nx/core/package-json" + ], + "metadata.targetGroups": [ + "packages/core/package.json", + "nx/core/package-json" + ], + "metadata.targetGroups.NPM Scripts": [ + "packages/core/package.json", + "nx/core/package-json" + ], + "metadata.targetGroups.NPM Scripts.0": [ + "packages/core/package.json", + "nx/core/package-json" + ], + "metadata.targetGroups.NPM Scripts.1": [ + "packages/core/package.json", + "nx/core/package-json" + ], + "metadata.targetGroups.NPM Scripts.2": [ + "packages/core/package.json", + "nx/core/package-json" + ], + "metadata.targetGroups.NPM Scripts.3": [ + "packages/core/package.json", + "nx/core/package-json" + ], + "metadata.targetGroups.NPM Scripts.4": [ + "packages/core/package.json", + "nx/core/package-json" + ], + "metadata.description": [ + "packages/core/package.json", + "nx/core/package-json" + ], + "metadata.js": [ + "packages/core/package.json", + "nx/core/package-json" + ], + "metadata.js.packageName": [ + "packages/core/package.json", + "nx/core/package-json" + ], + "metadata.js.packageVersion": [ + "packages/core/package.json", + "nx/core/package-json" + ], + "metadata.js.packageExports": [ + "packages/core/package.json", + "nx/core/package-json" + ], + "metadata.js.isInPackageManagerWorkspaces": [ + "packages/core/package.json", + "nx/core/package-json" + ], + "targets": [ + "packages/core/package.json", + "nx/core/package-json" + ], + "targets.check-types": [ + "packages/core/package.json", + "nx/core/package-json" + ], + "targets.check-types.executor": [ + "packages/core/package.json", + "nx/core/package-json" + ], + "targets.check-types.options": [ + "packages/core/package.json", + "nx/core/package-json" + ], + "targets.check-types.metadata": [ + "packages/core/package.json", + "nx/core/package-json" + ], + "targets.check-types.options.script": [ + "packages/core/package.json", + "nx/core/package-json" + ], + "targets.check-types.metadata.scriptContent": [ + "packages/core/package.json", + "nx/core/package-json" + ], + "targets.check-types.metadata.runCommand": [ + "packages/core/package.json", + "nx/core/package-json" + ], + "targets.vue": [ + "packages/core/package.json", + "nx/core/package-json" + ], + "targets.vue.executor": [ + "packages/core/package.json", + "nx/core/package-json" + ], + "targets.vue.options": [ + "packages/core/package.json", + "nx/core/package-json" + ], + "targets.vue.metadata": [ + "packages/core/package.json", + "nx/core/package-json" + ], + "targets.vue.options.script": [ + "packages/core/package.json", + "nx/core/package-json" + ], + "targets.vue.metadata.scriptContent": [ + "packages/core/package.json", + "nx/core/package-json" + ], + "targets.vue.metadata.runCommand": [ + "packages/core/package.json", + "nx/core/package-json" + ], + "targets.test": [ + "packages/core/package.json", + "nx/core/package-json" + ], + "targets.test.executor": [ + "packages/core/package.json", + "nx/core/package-json" + ], + "targets.test.options": [ + "packages/core/package.json", + "nx/core/package-json" + ], + "targets.test.metadata": [ + "packages/core/package.json", + "nx/core/package-json" + ], + "targets.test.options.script": [ + "packages/core/package.json", + "nx/core/package-json" + ], + "targets.test.metadata.scriptContent": [ + "packages/core/package.json", + "nx/core/package-json" + ], + "targets.test.metadata.runCommand": [ + "packages/core/package.json", + "nx/core/package-json" + ], + "targets.test:ci": [ + "packages/core/package.json", + "nx/core/package-json" + ], + "targets.test:ci.executor": [ + "packages/core/package.json", + "nx/core/package-json" + ], + "targets.test:ci.options": [ + "packages/core/package.json", + "nx/core/package-json" + ], + "targets.test:ci.metadata": [ + "packages/core/package.json", + "nx/core/package-json" + ], + "targets.test:ci.options.script": [ + "packages/core/package.json", + "nx/core/package-json" + ], + "targets.test:ci.metadata.scriptContent": [ + "packages/core/package.json", + "nx/core/package-json" + ], + "targets.test:ci.metadata.runCommand": [ + "packages/core/package.json", + "nx/core/package-json" + ], + "targets.build": [ + "packages/core/package.json", + "nx/core/package-json" + ], + "targets.build.executor": [ + "packages/core/package.json", + "nx/core/package-json" + ], + "targets.build.options": [ + "packages/core/package.json", + "nx/core/package-json" + ], + "targets.build.metadata": [ + "packages/core/package.json", + "nx/core/package-json" + ], + "targets.build.options.script": [ + "packages/core/package.json", + "nx/core/package-json" + ], + "targets.build.metadata.scriptContent": [ + "packages/core/package.json", + "nx/core/package-json" + ], + "targets.build.metadata.runCommand": [ + "packages/core/package.json", + "nx/core/package-json" + ], + "targets.check-types.cache": [ + "nx.json", + "nx/target-defaults" + ], + "targets.check-types.parallelism": [ + "nx.json", + "nx/target-defaults" + ], + "targets.test.cache": [ + "nx.json", + "nx/target-defaults" + ], + "targets.test.dependsOn": [ + "nx.json", + "nx/target-defaults" + ], + "targets.test.parallelism": [ + "nx.json", + "nx/target-defaults" + ], + "targets.build.cache": [ + "nx.json", + "nx/target-defaults" + ], + "targets.build.dependsOn": [ + "nx.json", + "nx/target-defaults" + ], + "targets.build.inputs": [ + "nx.json", + "nx/target-defaults" + ], + "targets.build.outputs": [ + "nx.json", + "nx/target-defaults" + ], + "targets.build.parallelism": [ + "nx.json", + "nx/target-defaults" + ] + }, + "packages/create-bati": { + "root": [ + "packages/create-bati/package.json", + "nx/core/package-json" + ], + "name": [ + "packages/create-bati/package.json", + "nx/core/package-json" + ], + "tags": [ + "packages/create-bati/package.json", + "nx/core/package-json" + ], + "tags.npm:public": [ + "packages/create-bati/package.json", + "nx/core/package-json" + ], + "metadata.targetGroups": [ + "packages/create-bati/package.json", + "nx/core/package-json" + ], + "metadata.description": [ + "packages/create-bati/package.json", + "nx/core/package-json" + ], + "metadata.js": [ + "packages/create-bati/package.json", + "nx/core/package-json" + ], + "metadata.js.packageName": [ + "packages/create-bati/package.json", + "nx/core/package-json" + ], + "metadata.js.packageVersion": [ + "packages/create-bati/package.json", + "nx/core/package-json" + ], + "metadata.js.isInPackageManagerWorkspaces": [ + "packages/create-bati/package.json", + "nx/core/package-json" + ], + "targets": [ + "packages/create-bati/package.json", + "nx/core/package-json" + ] + }, + "packages/create-batijs-app": { + "root": [ + "packages/create-batijs-app/package.json", + "nx/core/package-json" + ], + "name": [ + "packages/create-batijs-app/package.json", + "nx/core/package-json" + ], + "tags": [ + "packages/create-batijs-app/package.json", + "nx/core/package-json" + ], + "tags.npm:public": [ + "packages/create-batijs-app/package.json", + "nx/core/package-json" + ], + "metadata.targetGroups": [ + "packages/create-batijs-app/package.json", + "nx/core/package-json" + ], + "metadata.description": [ + "packages/create-batijs-app/package.json", + "nx/core/package-json" + ], + "metadata.js": [ + "packages/create-batijs-app/package.json", + "nx/core/package-json" + ], + "metadata.js.packageName": [ + "packages/create-batijs-app/package.json", + "nx/core/package-json" + ], + "metadata.js.packageVersion": [ + "packages/create-batijs-app/package.json", + "nx/core/package-json" + ], + "metadata.js.isInPackageManagerWorkspaces": [ + "packages/create-batijs-app/package.json", + "nx/core/package-json" + ], + "targets": [ + "packages/create-batijs-app/package.json", + "nx/core/package-json" + ] + }, + "packages/features": { + "root": [ + "packages/features/package.json", + "nx/core/package-json" + ], + "name": [ + "packages/features/package.json", + "nx/core/package-json" + ], + "tags": [ + "packages/features/package.json", + "nx/core/package-json" + ], + "tags.npm:public": [ + "packages/features/package.json", + "nx/core/package-json" + ], + "metadata.targetGroups": [ + "packages/features/package.json", + "nx/core/package-json" + ], + "metadata.targetGroups.NPM Scripts": [ + "packages/features/package.json", + "nx/core/package-json" + ], + "metadata.targetGroups.NPM Scripts.0": [ + "packages/features/package.json", + "nx/core/package-json" + ], + "metadata.targetGroups.NPM Scripts.1": [ + "packages/features/package.json", + "nx/core/package-json" + ], + "metadata.targetGroups.NPM Scripts.2": [ + "packages/features/package.json", + "nx/core/package-json" + ], + "metadata.targetGroups.NPM Scripts.3": [ + "packages/features/package.json", + "nx/core/package-json" + ], + "metadata.targetGroups.NPM Scripts.4": [ + "packages/features/package.json", + "nx/core/package-json" + ], + "metadata.description": [ + "packages/features/package.json", + "nx/core/package-json" + ], + "metadata.js": [ + "packages/features/package.json", + "nx/core/package-json" + ], + "metadata.js.packageName": [ + "packages/features/package.json", + "nx/core/package-json" + ], + "metadata.js.packageVersion": [ + "packages/features/package.json", + "nx/core/package-json" + ], + "metadata.js.packageExports": [ + "packages/features/package.json", + "nx/core/package-json" + ], + "metadata.js.packageMain": [ + "packages/features/package.json", + "nx/core/package-json" + ], + "metadata.js.isInPackageManagerWorkspaces": [ + "packages/features/package.json", + "nx/core/package-json" + ], + "targets": [ + "packages/features/package.json", + "nx/core/package-json" + ], + "targets.test": [ + "packages/features/package.json", + "nx/core/package-json" + ], + "targets.test.executor": [ + "packages/features/package.json", + "nx/core/package-json" + ], + "targets.test.options": [ + "packages/features/package.json", + "nx/core/package-json" + ], + "targets.test.metadata": [ + "packages/features/package.json", + "nx/core/package-json" + ], + "targets.test.options.script": [ + "packages/features/package.json", + "nx/core/package-json" + ], + "targets.test.metadata.scriptContent": [ + "packages/features/package.json", + "nx/core/package-json" + ], + "targets.test.metadata.runCommand": [ + "packages/features/package.json", + "nx/core/package-json" + ], + "targets.test:ci": [ + "packages/features/package.json", + "nx/core/package-json" + ], + "targets.test:ci.executor": [ + "packages/features/package.json", + "nx/core/package-json" + ], + "targets.test:ci.options": [ + "packages/features/package.json", + "nx/core/package-json" + ], + "targets.test:ci.metadata": [ + "packages/features/package.json", + "nx/core/package-json" + ], + "targets.test:ci.options.script": [ + "packages/features/package.json", + "nx/core/package-json" + ], + "targets.test:ci.metadata.scriptContent": [ + "packages/features/package.json", + "nx/core/package-json" + ], + "targets.test:ci.metadata.runCommand": [ + "packages/features/package.json", + "nx/core/package-json" + ], + "targets.prepublishOnly": [ + "packages/features/package.json", + "nx/core/package-json" + ], + "targets.prepublishOnly.executor": [ + "packages/features/package.json", + "nx/core/package-json" + ], + "targets.prepublishOnly.options": [ + "packages/features/package.json", + "nx/core/package-json" + ], + "targets.prepublishOnly.metadata": [ + "packages/features/package.json", + "nx/core/package-json" + ], + "targets.prepublishOnly.options.script": [ + "packages/features/package.json", + "nx/core/package-json" + ], + "targets.prepublishOnly.metadata.scriptContent": [ + "packages/features/package.json", + "nx/core/package-json" + ], + "targets.prepublishOnly.metadata.runCommand": [ + "packages/features/package.json", + "nx/core/package-json" + ], + "targets.build": [ + "packages/features/package.json", + "nx/core/package-json" + ], + "targets.build.executor": [ + "packages/features/package.json", + "nx/core/package-json" + ], + "targets.build.options": [ + "packages/features/package.json", + "nx/core/package-json" + ], + "targets.build.metadata": [ + "packages/features/package.json", + "nx/core/package-json" + ], + "targets.build.options.script": [ + "packages/features/package.json", + "nx/core/package-json" + ], + "targets.build.metadata.scriptContent": [ + "packages/features/package.json", + "nx/core/package-json" + ], + "targets.build.metadata.runCommand": [ + "packages/features/package.json", + "nx/core/package-json" + ], + "targets.watch": [ + "packages/features/package.json", + "nx/core/package-json" + ], + "targets.watch.executor": [ + "packages/features/package.json", + "nx/core/package-json" + ], + "targets.watch.options": [ + "packages/features/package.json", + "nx/core/package-json" + ], + "targets.watch.metadata": [ + "packages/features/package.json", + "nx/core/package-json" + ], + "targets.watch.options.script": [ + "packages/features/package.json", + "nx/core/package-json" + ], + "targets.watch.metadata.scriptContent": [ + "packages/features/package.json", + "nx/core/package-json" + ], + "targets.watch.metadata.runCommand": [ + "packages/features/package.json", + "nx/core/package-json" + ], + "targets.test.cache": [ + "nx.json", + "nx/target-defaults" + ], + "targets.test.dependsOn": [ + "nx.json", + "nx/target-defaults" + ], + "targets.test.parallelism": [ + "nx.json", + "nx/target-defaults" + ], + "targets.build.cache": [ + "nx.json", + "nx/target-defaults" + ], + "targets.build.dependsOn": [ + "nx.json", + "nx/target-defaults" + ], + "targets.build.inputs": [ + "nx.json", + "nx/target-defaults" + ], + "targets.build.outputs": [ + "nx.json", + "nx/target-defaults" + ], + "targets.build.parallelism": [ + "nx.json", + "nx/target-defaults" + ] + }, + "packages/tests": { + "root": [ + "packages/tests/package.json", + "nx/core/package-json" + ], + "name": [ + "packages/tests/package.json", + "nx/core/package-json" + ], + "tags": [ + "packages/tests/package.json", + "nx/core/package-json" + ], + "tags.npm:private": [ + "packages/tests/package.json", + "nx/core/package-json" + ], + "metadata.targetGroups": [ + "packages/tests/package.json", + "nx/core/package-json" + ], + "metadata.targetGroups.NPM Scripts": [ + "packages/tests/package.json", + "nx/core/package-json" + ], + "metadata.targetGroups.NPM Scripts.0": [ + "packages/tests/package.json", + "nx/core/package-json" + ], + "metadata.targetGroups.NPM Scripts.1": [ + "packages/tests/package.json", + "nx/core/package-json" + ], + "metadata.targetGroups.NPM Scripts.2": [ + "packages/tests/package.json", + "nx/core/package-json" + ], + "metadata.targetGroups.NPM Scripts.3": [ + "packages/tests/package.json", + "nx/core/package-json" + ], + "metadata.targetGroups.NPM Scripts.4": [ + "packages/tests/package.json", + "nx/core/package-json" + ], + "metadata.description": [ + "packages/tests/package.json", + "nx/core/package-json" + ], + "metadata.js": [ + "packages/tests/package.json", + "nx/core/package-json" + ], + "metadata.js.packageName": [ + "packages/tests/package.json", + "nx/core/package-json" + ], + "metadata.js.packageVersion": [ + "packages/tests/package.json", + "nx/core/package-json" + ], + "metadata.js.isInPackageManagerWorkspaces": [ + "packages/tests/package.json", + "nx/core/package-json" + ], + "targets": [ + "packages/tests/package.json", + "nx/core/package-json" + ], + "targets.check-types": [ + "packages/tests/package.json", + "nx/core/package-json" + ], + "targets.check-types.executor": [ + "packages/tests/package.json", + "nx/core/package-json" + ], + "targets.check-types.options": [ + "packages/tests/package.json", + "nx/core/package-json" + ], + "targets.check-types.metadata": [ + "packages/tests/package.json", + "nx/core/package-json" + ], + "targets.check-types.options.script": [ + "packages/tests/package.json", + "nx/core/package-json" + ], + "targets.check-types.metadata.scriptContent": [ + "packages/tests/package.json", + "nx/core/package-json" + ], + "targets.check-types.metadata.runCommand": [ + "packages/tests/package.json", + "nx/core/package-json" + ], + "targets.start": [ + "packages/tests/package.json", + "nx/core/package-json" + ], + "targets.start.executor": [ + "packages/tests/package.json", + "nx/core/package-json" + ], + "targets.start.options": [ + "packages/tests/package.json", + "nx/core/package-json" + ], + "targets.start.metadata": [ + "packages/tests/package.json", + "nx/core/package-json" + ], + "targets.start.options.script": [ + "packages/tests/package.json", + "nx/core/package-json" + ], + "targets.start.metadata.scriptContent": [ + "packages/tests/package.json", + "nx/core/package-json" + ], + "targets.start.metadata.runCommand": [ + "packages/tests/package.json", + "nx/core/package-json" + ], + "targets.test": [ + "packages/tests/package.json", + "nx/core/package-json" + ], + "targets.test.executor": [ + "packages/tests/package.json", + "nx/core/package-json" + ], + "targets.test.options": [ + "packages/tests/package.json", + "nx/core/package-json" + ], + "targets.test.metadata": [ + "packages/tests/package.json", + "nx/core/package-json" + ], + "targets.test.options.script": [ + "packages/tests/package.json", + "nx/core/package-json" + ], + "targets.test.metadata.scriptContent": [ + "packages/tests/package.json", + "nx/core/package-json" + ], + "targets.test.metadata.runCommand": [ + "packages/tests/package.json", + "nx/core/package-json" + ], + "targets.test:e2e": [ + "packages/tests/package.json", + "nx/core/package-json" + ], + "targets.test:e2e.executor": [ + "packages/tests/package.json", + "nx/core/package-json" + ], + "targets.test:e2e.options": [ + "packages/tests/package.json", + "nx/core/package-json" + ], + "targets.test:e2e.metadata": [ + "packages/tests/package.json", + "nx/core/package-json" + ], + "targets.test:e2e.options.script": [ + "packages/tests/package.json", + "nx/core/package-json" + ], + "targets.test:e2e.metadata.scriptContent": [ + "packages/tests/package.json", + "nx/core/package-json" + ], + "targets.test:e2e.metadata.runCommand": [ + "packages/tests/package.json", + "nx/core/package-json" + ], + "targets.build": [ + "packages/tests/package.json", + "nx/core/package-json" + ], + "targets.build.executor": [ + "packages/tests/package.json", + "nx/core/package-json" + ], + "targets.build.options": [ + "packages/tests/package.json", + "nx/core/package-json" + ], + "targets.build.metadata": [ + "packages/tests/package.json", + "nx/core/package-json" + ], + "targets.build.options.script": [ + "packages/tests/package.json", + "nx/core/package-json" + ], + "targets.build.metadata.scriptContent": [ + "packages/tests/package.json", + "nx/core/package-json" + ], + "targets.build.metadata.runCommand": [ + "packages/tests/package.json", + "nx/core/package-json" + ], + "targets.check-types.cache": [ + "nx.json", + "nx/target-defaults" + ], + "targets.check-types.parallelism": [ + "nx.json", + "nx/target-defaults" + ], + "targets.test.cache": [ + "nx.json", + "nx/target-defaults" + ], + "targets.test.dependsOn": [ + "nx.json", + "nx/target-defaults" + ], + "targets.test.parallelism": [ + "nx.json", + "nx/target-defaults" + ], + "targets.build.cache": [ + "nx.json", + "nx/target-defaults" + ], + "targets.build.dependsOn": [ + "nx.json", + "nx/target-defaults" + ], + "targets.build.inputs": [ + "nx.json", + "nx/target-defaults" + ], + "targets.build.outputs": [ + "nx.json", + "nx/target-defaults" + ], + "targets.build.parallelism": [ + "nx.json", + "nx/target-defaults" + ] + }, + "packages/tests-utils": { + "root": [ + "packages/tests-utils/package.json", + "nx/core/package-json" + ], + "name": [ + "packages/tests-utils/package.json", + "nx/core/package-json" + ], + "tags": [ + "packages/tests-utils/package.json", + "nx/core/package-json" + ], + "tags.npm:private": [ + "packages/tests-utils/package.json", + "nx/core/package-json" + ], + "metadata.targetGroups": [ + "packages/tests-utils/package.json", + "nx/core/package-json" + ], + "metadata.targetGroups.NPM Scripts": [ + "packages/tests-utils/package.json", + "nx/core/package-json" + ], + "metadata.targetGroups.NPM Scripts.0": [ + "packages/tests-utils/package.json", + "nx/core/package-json" + ], + "metadata.targetGroups.NPM Scripts.1": [ + "packages/tests-utils/package.json", + "nx/core/package-json" + ], + "metadata.description": [ + "packages/tests-utils/package.json", + "nx/core/package-json" + ], + "metadata.js": [ + "packages/tests-utils/package.json", + "nx/core/package-json" + ], + "metadata.js.packageName": [ + "packages/tests-utils/package.json", + "nx/core/package-json" + ], + "metadata.js.packageVersion": [ + "packages/tests-utils/package.json", + "nx/core/package-json" + ], + "metadata.js.packageExports": [ + "packages/tests-utils/package.json", + "nx/core/package-json" + ], + "metadata.js.packageMain": [ + "packages/tests-utils/package.json", + "nx/core/package-json" + ], + "metadata.js.isInPackageManagerWorkspaces": [ + "packages/tests-utils/package.json", + "nx/core/package-json" + ], + "targets": [ + "packages/tests-utils/package.json", + "nx/core/package-json" + ], + "targets.check-types": [ + "packages/tests-utils/package.json", + "nx/core/package-json" + ], + "targets.check-types.executor": [ + "packages/tests-utils/package.json", + "nx/core/package-json" + ], + "targets.check-types.options": [ + "packages/tests-utils/package.json", + "nx/core/package-json" + ], + "targets.check-types.metadata": [ + "packages/tests-utils/package.json", + "nx/core/package-json" + ], + "targets.check-types.options.script": [ + "packages/tests-utils/package.json", + "nx/core/package-json" + ], + "targets.check-types.metadata.scriptContent": [ + "packages/tests-utils/package.json", + "nx/core/package-json" + ], + "targets.check-types.metadata.runCommand": [ + "packages/tests-utils/package.json", + "nx/core/package-json" + ], + "targets.build": [ + "packages/tests-utils/package.json", + "nx/core/package-json" + ], + "targets.build.executor": [ + "packages/tests-utils/package.json", + "nx/core/package-json" + ], + "targets.build.options": [ + "packages/tests-utils/package.json", + "nx/core/package-json" + ], + "targets.build.metadata": [ + "packages/tests-utils/package.json", + "nx/core/package-json" + ], + "targets.build.options.script": [ + "packages/tests-utils/package.json", + "nx/core/package-json" + ], + "targets.build.metadata.scriptContent": [ + "packages/tests-utils/package.json", + "nx/core/package-json" + ], + "targets.build.metadata.runCommand": [ + "packages/tests-utils/package.json", + "nx/core/package-json" + ], + "targets.check-types.cache": [ + "nx.json", + "nx/target-defaults" + ], + "targets.check-types.parallelism": [ + "nx.json", + "nx/target-defaults" + ], + "targets.build.cache": [ + "nx.json", + "nx/target-defaults" + ], + "targets.build.dependsOn": [ + "nx.json", + "nx/target-defaults" + ], + "targets.build.inputs": [ + "nx.json", + "nx/target-defaults" + ], + "targets.build.outputs": [ + "nx.json", + "nx/target-defaults" + ], + "targets.build.parallelism": [ + "nx.json", + "nx/target-defaults" + ] + }, + "website": { + "root": [ + "website/package.json", + "nx/core/package-json" + ], + "name": [ + "website/package.json", + "nx/core/package-json" + ], + "tags": [ + "website/package.json", + "nx/core/package-json" + ], + "tags.npm:public": [ + "website/package.json", + "nx/core/package-json" + ], + "tags.npm:bati": [ + "website/package.json", + "nx/core/package-json" + ], + "tags.npm:batijs": [ + "website/package.json", + "nx/core/package-json" + ], + "tags.npm:vike": [ + "website/package.json", + "nx/core/package-json" + ], + "metadata.targetGroups": [ + "website/package.json", + "nx/core/package-json" + ], + "metadata.targetGroups.NPM Scripts": [ + "website/package.json", + "nx/core/package-json" + ], + "metadata.targetGroups.NPM Scripts.0": [ + "website/package.json", + "nx/core/package-json" + ], + "metadata.targetGroups.NPM Scripts.1": [ + "website/package.json", + "nx/core/package-json" + ], + "metadata.targetGroups.NPM Scripts.2": [ + "website/package.json", + "nx/core/package-json" + ], + "metadata.targetGroups.NPM Scripts.3": [ + "website/package.json", + "nx/core/package-json" + ], + "metadata.targetGroups.NPM Scripts.4": [ + "website/package.json", + "nx/core/package-json" + ], + "metadata.targetGroups.NPM Scripts.5": [ + "website/package.json", + "nx/core/package-json" + ], + "metadata.targetGroups.NPM Scripts.6": [ + "website/package.json", + "nx/core/package-json" + ], + "metadata.targetGroups.NPM Scripts.7": [ + "website/package.json", + "nx/core/package-json" + ], + "metadata.targetGroups.NPM Scripts.8": [ + "website/package.json", + "nx/core/package-json" + ], + "metadata.description": [ + "website/package.json", + "nx/core/package-json" + ], + "metadata.js": [ + "website/package.json", + "nx/core/package-json" + ], + "metadata.js.packageName": [ + "website/package.json", + "nx/core/package-json" + ], + "metadata.js.packageVersion": [ + "website/package.json", + "nx/core/package-json" + ], + "metadata.js.packageMain": [ + "website/package.json", + "nx/core/package-json" + ], + "metadata.js.isInPackageManagerWorkspaces": [ + "website/package.json", + "nx/core/package-json" + ], + "targets": [ + "website/package.json", + "nx/core/package-json" + ], + "targets.dev": [ + "website/package.json", + "nx/core/package-json" + ], + "targets.dev.executor": [ + "website/package.json", + "nx/core/package-json" + ], + "targets.dev.options": [ + "website/package.json", + "nx/core/package-json" + ], + "targets.dev.metadata": [ + "website/package.json", + "nx/core/package-json" + ], + "targets.dev.options.script": [ + "website/package.json", + "nx/core/package-json" + ], + "targets.dev.metadata.scriptContent": [ + "website/package.json", + "nx/core/package-json" + ], + "targets.dev.metadata.runCommand": [ + "website/package.json", + "nx/core/package-json" + ], + "targets.dev:widget": [ + "website/package.json", + "nx/core/package-json" + ], + "targets.dev:widget.executor": [ + "website/package.json", + "nx/core/package-json" + ], + "targets.dev:widget.options": [ + "website/package.json", + "nx/core/package-json" + ], + "targets.dev:widget.metadata": [ + "website/package.json", + "nx/core/package-json" + ], + "targets.dev:widget.options.script": [ + "website/package.json", + "nx/core/package-json" + ], + "targets.dev:widget.metadata.scriptContent": [ + "website/package.json", + "nx/core/package-json" + ], + "targets.dev:widget.metadata.runCommand": [ + "website/package.json", + "nx/core/package-json" + ], + "targets.build:pages": [ + "website/package.json", + "nx/core/package-json" + ], + "targets.build:pages.executor": [ + "website/package.json", + "nx/core/package-json" + ], + "targets.build:pages.options": [ + "website/package.json", + "nx/core/package-json" + ], + "targets.build:pages.metadata": [ + "website/package.json", + "nx/core/package-json" + ], + "targets.build:pages.options.script": [ + "website/package.json", + "nx/core/package-json" + ], + "targets.build:pages.metadata.scriptContent": [ + "website/package.json", + "nx/core/package-json" + ], + "targets.build:pages.metadata.runCommand": [ + "website/package.json", + "nx/core/package-json" + ], + "targets.build:widget": [ + "website/package.json", + "nx/core/package-json" + ], + "targets.build:widget.executor": [ + "website/package.json", + "nx/core/package-json" + ], + "targets.build:widget.options": [ + "website/package.json", + "nx/core/package-json" + ], + "targets.build:widget.metadata": [ + "website/package.json", + "nx/core/package-json" + ], + "targets.build:widget.options.script": [ + "website/package.json", + "nx/core/package-json" + ], + "targets.build:widget.metadata.scriptContent": [ + "website/package.json", + "nx/core/package-json" + ], + "targets.build:widget.metadata.runCommand": [ + "website/package.json", + "nx/core/package-json" + ], + "targets.preview:widget": [ + "website/package.json", + "nx/core/package-json" + ], + "targets.preview:widget.executor": [ + "website/package.json", + "nx/core/package-json" + ], + "targets.preview:widget.options": [ + "website/package.json", + "nx/core/package-json" + ], + "targets.preview:widget.metadata": [ + "website/package.json", + "nx/core/package-json" + ], + "targets.preview:widget.options.script": [ + "website/package.json", + "nx/core/package-json" + ], + "targets.preview:widget.metadata.scriptContent": [ + "website/package.json", + "nx/core/package-json" + ], + "targets.preview:widget.metadata.runCommand": [ + "website/package.json", + "nx/core/package-json" + ], + "targets.check-types": [ + "website/package.json", + "nx/core/package-json" + ], + "targets.check-types.executor": [ + "website/package.json", + "nx/core/package-json" + ], + "targets.check-types.options": [ + "website/package.json", + "nx/core/package-json" + ], + "targets.check-types.metadata": [ + "website/package.json", + "nx/core/package-json" + ], + "targets.check-types.options.script": [ + "website/package.json", + "nx/core/package-json" + ], + "targets.check-types.metadata.scriptContent": [ + "website/package.json", + "nx/core/package-json" + ], + "targets.check-types.metadata.runCommand": [ + "website/package.json", + "nx/core/package-json" + ], + "targets.test": [ + "website/package.json", + "nx/core/package-json" + ], + "targets.test.executor": [ + "website/package.json", + "nx/core/package-json" + ], + "targets.test.options": [ + "website/package.json", + "nx/core/package-json" + ], + "targets.test.metadata": [ + "website/package.json", + "nx/core/package-json" + ], + "targets.test.options.script": [ + "website/package.json", + "nx/core/package-json" + ], + "targets.test.metadata.scriptContent": [ + "website/package.json", + "nx/core/package-json" + ], + "targets.test.metadata.runCommand": [ + "website/package.json", + "nx/core/package-json" + ], + "targets.release-widget": [ + "website/package.json", + "nx/core/package-json" + ], + "targets.release-widget.executor": [ + "website/package.json", + "nx/core/package-json" + ], + "targets.release-widget.options": [ + "website/package.json", + "nx/core/package-json" + ], + "targets.release-widget.metadata": [ + "website/package.json", + "nx/core/package-json" + ], + "targets.release-widget.options.script": [ + "website/package.json", + "nx/core/package-json" + ], + "targets.release-widget.metadata.scriptContent": [ + "website/package.json", + "nx/core/package-json" + ], + "targets.release-widget.metadata.runCommand": [ + "website/package.json", + "nx/core/package-json" + ], + "targets.release-widget:ci": [ + "website/package.json", + "nx/core/package-json" + ], + "targets.release-widget:ci.executor": [ + "website/package.json", + "nx/core/package-json" + ], + "targets.release-widget:ci.options": [ + "website/package.json", + "nx/core/package-json" + ], + "targets.release-widget:ci.metadata": [ + "website/package.json", + "nx/core/package-json" + ], + "targets.release-widget:ci.options.script": [ + "website/package.json", + "nx/core/package-json" + ], + "targets.release-widget:ci.metadata.scriptContent": [ + "website/package.json", + "nx/core/package-json" + ], + "targets.release-widget:ci.metadata.runCommand": [ + "website/package.json", + "nx/core/package-json" + ], + "targets.check-types.cache": [ + "nx.json", + "nx/target-defaults" + ], + "targets.check-types.parallelism": [ + "nx.json", + "nx/target-defaults" + ], + "targets.test.cache": [ + "nx.json", + "nx/target-defaults" + ], + "targets.test.dependsOn": [ + "nx.json", + "nx/target-defaults" + ], + "targets.test.parallelism": [ + "nx.json", + "nx/target-defaults" + ] + } +} \ No newline at end of file diff --git a/boilerplates/auth0/package.json b/boilerplates/auth0/package.json index 0db21fa7b..b7968e20a 100644 --- a/boilerplates/auth0/package.json +++ b/boilerplates/auth0/package.json @@ -20,5 +20,10 @@ }, "files": [ "dist/" - ] -} + ], + "nx": { + "tags": [ + "type:boilerplate" + ] + } +} \ No newline at end of file diff --git a/boilerplates/authjs/package.json b/boilerplates/authjs/package.json index 01e9ebdca..96e394072 100644 --- a/boilerplates/authjs/package.json +++ b/boilerplates/authjs/package.json @@ -34,5 +34,10 @@ "./dist/types/server/authjs-handler.d.mts" ] } + }, + "nx": { + "tags": [ + "type:boilerplate" + ] } -} +} \ No newline at end of file diff --git a/boilerplates/aws/package.json b/boilerplates/aws/package.json index adfc5df3e..166077f46 100644 --- a/boilerplates/aws/package.json +++ b/boilerplates/aws/package.json @@ -34,17 +34,17 @@ "dist/" ], "exports": { - "./vitest.config": { - "types": "./dist/types/vitest.config.d.mts" - }, - "./tests/aws_handler.spec": { - "types": "./dist/types/tests/aws_handler.spec.d.mts" - }, "./cdk/bin/infrastructure": { "types": "./dist/types/cdk/bin/infrastructure.d.mts" }, "./cdk/lib/vike-stack": { "types": "./dist/types/cdk/lib/vike-stack.d.mts" + }, + "./tests/aws_handler.spec": { + "types": "./dist/types/tests/aws_handler.spec.d.mts" + }, + "./vitest.config": { + "types": "./dist/types/vitest.config.d.mts" } }, "typesVersions": { @@ -62,5 +62,10 @@ "./dist/types/cdk/lib/vike-stack.d.mts" ] } + }, + "nx": { + "tags": [ + "type:boilerplate" + ] } -} +} \ No newline at end of file diff --git a/boilerplates/biome/package.json b/boilerplates/biome/package.json index 87f17e803..bd607480b 100644 --- a/boilerplates/biome/package.json +++ b/boilerplates/biome/package.json @@ -22,5 +22,10 @@ }, "files": [ "dist/" - ] -} + ], + "nx": { + "tags": [ + "type:boilerplate" + ] + } +} \ No newline at end of file diff --git a/boilerplates/cloudflare/package.json b/boilerplates/cloudflare/package.json index f7f8bd999..6386613ae 100644 --- a/boilerplates/cloudflare/package.json +++ b/boilerplates/cloudflare/package.json @@ -22,5 +22,10 @@ }, "files": [ "dist/" - ] -} + ], + "nx": { + "tags": [ + "type:boilerplate" + ] + } +} \ No newline at end of file diff --git a/boilerplates/compiled/package.json b/boilerplates/compiled/package.json index db662e911..5514c8dd3 100644 --- a/boilerplates/compiled/package.json +++ b/boilerplates/compiled/package.json @@ -23,5 +23,10 @@ }, "files": [ "dist/" - ] -} + ], + "nx": { + "tags": [ + "type:boilerplate" + ] + } +} \ No newline at end of file diff --git a/boilerplates/d1-kysely/package.json b/boilerplates/d1-kysely/package.json index 338cf9c21..6fba812da 100644 --- a/boilerplates/d1-kysely/package.json +++ b/boilerplates/d1-kysely/package.json @@ -20,5 +20,10 @@ }, "files": [ "dist/" - ] -} + ], + "nx": { + "tags": [ + "type:boilerplate" + ] + } +} \ No newline at end of file diff --git a/boilerplates/d1-sqlite/package.json b/boilerplates/d1-sqlite/package.json index c3bd11e1f..28556cf30 100644 --- a/boilerplates/d1-sqlite/package.json +++ b/boilerplates/d1-sqlite/package.json @@ -34,5 +34,10 @@ "./dist/types/database/d1/queries/todos.d.mts" ] } + }, + "nx": { + "tags": [ + "type:boilerplate" + ] } -} +} \ No newline at end of file diff --git a/boilerplates/d1/package.json b/boilerplates/d1/package.json index b69012608..99f25c6dd 100644 --- a/boilerplates/d1/package.json +++ b/boilerplates/d1/package.json @@ -35,5 +35,10 @@ "./dist/types/database/d1/helpers.d.mts" ] } + }, + "nx": { + "tags": [ + "type:boilerplate" + ] } -} +} \ No newline at end of file diff --git a/boilerplates/drizzle/package.json b/boilerplates/drizzle/package.json index e53e4c0d5..e5b4680be 100644 --- a/boilerplates/drizzle/package.json +++ b/boilerplates/drizzle/package.json @@ -27,9 +27,6 @@ "dist/" ], "exports": { - "./drizzle.config": { - "types": "./dist/types/drizzle.config.d.mts" - }, "./database/drizzle/db": { "types": "./dist/types/database/drizzle/db.d.mts" }, @@ -38,6 +35,9 @@ }, "./database/drizzle/schema/todos": { "types": "./dist/types/database/drizzle/schema/todos.d.mts" + }, + "./drizzle.config": { + "types": "./dist/types/drizzle.config.d.mts" } }, "typesVersions": { @@ -55,5 +55,10 @@ "./dist/types/database/drizzle/schema/todos.d.mts" ] } + }, + "nx": { + "tags": [ + "type:boilerplate" + ] } -} +} \ No newline at end of file diff --git a/boilerplates/eslint/package.json b/boilerplates/eslint/package.json index 017164fa1..bda66084f 100644 --- a/boilerplates/eslint/package.json +++ b/boilerplates/eslint/package.json @@ -41,5 +41,10 @@ "./dist/types/eslint.config.d.mts" ] } + }, + "nx": { + "tags": [ + "type:boilerplate" + ] } -} +} \ No newline at end of file diff --git a/boilerplates/express/package.json b/boilerplates/express/package.json index 79fa16739..aeb37f14a 100644 --- a/boilerplates/express/package.json +++ b/boilerplates/express/package.json @@ -41,5 +41,10 @@ "./dist/types/server/entry.d.mts" ] } + }, + "nx": { + "tags": [ + "type:boilerplate" + ] } -} +} \ No newline at end of file diff --git a/boilerplates/fastify/package.json b/boilerplates/fastify/package.json index a21c65d8a..135db1a4c 100644 --- a/boilerplates/fastify/package.json +++ b/boilerplates/fastify/package.json @@ -42,5 +42,10 @@ "./dist/types/server/entry.d.mts" ] } + }, + "nx": { + "tags": [ + "type:boilerplate" + ] } -} +} \ No newline at end of file diff --git a/boilerplates/google-analytics/package.json b/boilerplates/google-analytics/package.json index 7643b6ab4..d87aa4b1d 100644 --- a/boilerplates/google-analytics/package.json +++ b/boilerplates/google-analytics/package.json @@ -20,5 +20,10 @@ }, "files": [ "dist/" - ] -} + ], + "nx": { + "tags": [ + "type:boilerplate" + ] + } +} \ No newline at end of file diff --git a/boilerplates/h3/package.json b/boilerplates/h3/package.json index 9a0ba3bc8..63173f07a 100644 --- a/boilerplates/h3/package.json +++ b/boilerplates/h3/package.json @@ -43,5 +43,10 @@ "./dist/types/server/entry.d.mts" ] } + }, + "nx": { + "tags": [ + "type:boilerplate" + ] } -} +} \ No newline at end of file diff --git a/boilerplates/hono/package.json b/boilerplates/hono/package.json index 981b9717c..5c7f29291 100644 --- a/boilerplates/hono/package.json +++ b/boilerplates/hono/package.json @@ -48,5 +48,10 @@ "./dist/types/server/entry.d.mts" ] } + }, + "nx": { + "tags": [ + "type:boilerplate" + ] } -} +} \ No newline at end of file diff --git a/boilerplates/kysely/package.json b/boilerplates/kysely/package.json index 14c5b212a..d0187f2ea 100644 --- a/boilerplates/kysely/package.json +++ b/boilerplates/kysely/package.json @@ -63,5 +63,10 @@ "./dist/types/database/kysely/queries/todos.d.mts" ] } + }, + "nx": { + "tags": [ + "type:boilerplate" + ] } -} +} \ No newline at end of file diff --git a/boilerplates/mantine/package.json b/boilerplates/mantine/package.json index 1e8f369ab..2d0661435 100644 --- a/boilerplates/mantine/package.json +++ b/boilerplates/mantine/package.json @@ -43,12 +43,17 @@ }, "typesVersions": { "*": { - "components/Link": [ - "./dist/types/components/Link.d.mts" - ], "pages/+Layout": [ "./dist/types/pages/+Layout.d.mts" + ], + "components/Link": [ + "./dist/types/components/Link.d.mts" ] } + }, + "nx": { + "tags": [ + "type:boilerplate" + ] } -} +} \ No newline at end of file diff --git a/boilerplates/oxlint/package.json b/boilerplates/oxlint/package.json index cd4caef2c..cf5b35f22 100644 --- a/boilerplates/oxlint/package.json +++ b/boilerplates/oxlint/package.json @@ -22,5 +22,10 @@ }, "files": [ "dist/" - ] -} + ], + "nx": { + "tags": [ + "type:boilerplate" + ] + } +} \ No newline at end of file diff --git a/boilerplates/photon/package.json b/boilerplates/photon/package.json index 2ad606d62..e48318616 100644 --- a/boilerplates/photon/package.json +++ b/boilerplates/photon/package.json @@ -21,5 +21,10 @@ }, "files": [ "dist/" - ] -} + ], + "nx": { + "tags": [ + "type:boilerplate" + ] + } +} \ No newline at end of file diff --git a/boilerplates/plausible.io/package.json b/boilerplates/plausible.io/package.json index 2bc56ba61..6d2f42cdc 100644 --- a/boilerplates/plausible.io/package.json +++ b/boilerplates/plausible.io/package.json @@ -20,5 +20,10 @@ }, "files": [ "dist/" - ] -} + ], + "nx": { + "tags": [ + "type:boilerplate" + ] + } +} \ No newline at end of file diff --git a/boilerplates/pnpm/package.json b/boilerplates/pnpm/package.json index 8399dd6e2..4a33a6507 100644 --- a/boilerplates/pnpm/package.json +++ b/boilerplates/pnpm/package.json @@ -20,5 +20,10 @@ }, "files": [ "dist/" - ] -} + ], + "nx": { + "tags": [ + "type:boilerplate" + ] + } +} \ No newline at end of file diff --git a/boilerplates/prettier/package.json b/boilerplates/prettier/package.json index 82b8524b1..6ec2cd4ab 100644 --- a/boilerplates/prettier/package.json +++ b/boilerplates/prettier/package.json @@ -21,5 +21,10 @@ }, "files": [ "dist/" - ] -} + ], + "nx": { + "tags": [ + "type:boilerplate" + ] + } +} \ No newline at end of file diff --git a/boilerplates/prisma/package.json b/boilerplates/prisma/package.json index 2d76a6086..22b3688ea 100644 --- a/boilerplates/prisma/package.json +++ b/boilerplates/prisma/package.json @@ -23,5 +23,10 @@ }, "files": [ "dist/" - ] -} + ], + "nx": { + "tags": [ + "type:boilerplate" + ] + } +} \ No newline at end of file diff --git a/boilerplates/react-sentry/package.json b/boilerplates/react-sentry/package.json index aa1f45ea7..331fa17f2 100644 --- a/boilerplates/react-sentry/package.json +++ b/boilerplates/react-sentry/package.json @@ -28,11 +28,11 @@ "dist/" ], "exports": { - "./sentry.browser.config": { - "types": "./dist/types/sentry.browser.config.d.mts" - }, "./pages/sentry/+Page": { "types": "./dist/types/pages/sentry/+Page.d.mts" + }, + "./sentry.browser.config": { + "types": "./dist/types/sentry.browser.config.d.mts" } }, "typesVersions": { @@ -44,5 +44,10 @@ "./dist/types/pages/sentry/+Page.d.mts" ] } + }, + "nx": { + "tags": [ + "type:boilerplate" + ] } -} +} \ No newline at end of file diff --git a/boilerplates/react/package.json b/boilerplates/react/package.json index 3ab26e6b6..fcfd1dec5 100644 --- a/boilerplates/react/package.json +++ b/boilerplates/react/package.json @@ -138,5 +138,10 @@ "./dist/types/pages/star-wars/index/+data.d.mts" ] } + }, + "nx": { + "tags": [ + "type:boilerplate" + ] } -} +} \ No newline at end of file diff --git a/boilerplates/sentry/package.json b/boilerplates/sentry/package.json index a0fcf9d94..001e72ebd 100644 --- a/boilerplates/sentry/package.json +++ b/boilerplates/sentry/package.json @@ -22,5 +22,10 @@ }, "files": [ "dist/" - ] -} + ], + "nx": { + "tags": [ + "type:boilerplate" + ] + } +} \ No newline at end of file diff --git a/boilerplates/shadcn-ui/package.json b/boilerplates/shadcn-ui/package.json index c729b6c23..0a105557e 100644 --- a/boilerplates/shadcn-ui/package.json +++ b/boilerplates/shadcn-ui/package.json @@ -40,5 +40,10 @@ "./dist/types/lib/utils.d.mts" ] } + }, + "nx": { + "tags": [ + "type:boilerplate" + ] } -} +} \ No newline at end of file diff --git a/boilerplates/shared-db/package.json b/boilerplates/shared-db/package.json index 5610929df..b7af958e4 100644 --- a/boilerplates/shared-db/package.json +++ b/boilerplates/shared-db/package.json @@ -23,17 +23,11 @@ "dist/" ], "exports": { - "./server/db-middleware": { - "types": "./dist/types/server/db-middleware.d.mts" - }, "./drizzle/dist/types/database/drizzle/db": { "types": "./dist/types/drizzle/dist/types/database/drizzle/db.d.mts" }, - "./kysely/dist/types/database/kysely/db": { - "types": "./dist/types/kysely/dist/types/database/kysely/db.d.mts" - }, - "./kysely/dist/types/database/kysely/types": { - "types": "./dist/types/kysely/dist/types/database/kysely/types.d.mts" + "./server/db-middleware": { + "types": "./dist/types/server/db-middleware.d.mts" }, "./sqlite/dist/types/database/sqlite/db": { "types": "./dist/types/sqlite/dist/types/database/sqlite/db.d.mts" @@ -47,15 +41,14 @@ "drizzle/dist/types/database/drizzle/db": [ "./dist/types/drizzle/dist/types/database/drizzle/db.d.mts" ], - "kysely/dist/types/database/kysely/db": [ - "./dist/types/kysely/dist/types/database/kysely/db.d.mts" - ], - "kysely/dist/types/database/kysely/types": [ - "./dist/types/kysely/dist/types/database/kysely/types.d.mts" - ], "sqlite/dist/types/database/sqlite/db": [ "./dist/types/sqlite/dist/types/database/sqlite/db.d.mts" ] } + }, + "nx": { + "tags": [ + "type:boilerplate" + ] } -} +} \ No newline at end of file diff --git a/boilerplates/shared-server/package.json b/boilerplates/shared-server/package.json index 4686e01e5..5d7846c1d 100644 --- a/boilerplates/shared-server/package.json +++ b/boilerplates/shared-server/package.json @@ -26,12 +26,6 @@ "./drizzle/dist/types/database/drizzle/db": { "types": "./dist/types/drizzle/dist/types/database/drizzle/db.d.mts" }, - "./kysely/dist/types/database/kysely/db": { - "types": "./dist/types/kysely/dist/types/database/kysely/db.d.mts" - }, - "./kysely/dist/types/database/kysely/types": { - "types": "./dist/types/kysely/dist/types/database/kysely/types.d.mts" - }, "./server/create-todo-handler": { "types": "./dist/types/server/create-todo-handler.d.mts" }, @@ -47,15 +41,14 @@ "drizzle/dist/types/database/drizzle/db": [ "./dist/types/drizzle/dist/types/database/drizzle/db.d.mts" ], - "kysely/dist/types/database/kysely/db": [ - "./dist/types/kysely/dist/types/database/kysely/db.d.mts" - ], - "kysely/dist/types/database/kysely/types": [ - "./dist/types/kysely/dist/types/database/kysely/types.d.mts" - ], "sqlite/dist/types/database/sqlite/db": [ "./dist/types/sqlite/dist/types/database/sqlite/db.d.mts" ] } + }, + "nx": { + "tags": [ + "type:boilerplate" + ] } -} +} \ No newline at end of file diff --git a/boilerplates/shared-todo/package.json b/boilerplates/shared-todo/package.json index 673acc63f..4ed07e811 100644 --- a/boilerplates/shared-todo/package.json +++ b/boilerplates/shared-todo/package.json @@ -39,5 +39,10 @@ "./dist/types/pages/todo/+data.d.mts" ] } + }, + "nx": { + "tags": [ + "type:boilerplate" + ] } -} +} \ No newline at end of file diff --git a/boilerplates/shared/package.json b/boilerplates/shared/package.json index 640447d09..9ada8267e 100644 --- a/boilerplates/shared/package.json +++ b/boilerplates/shared/package.json @@ -33,5 +33,10 @@ "./dist/types/vite.config.d.mts" ] } + }, + "nx": { + "tags": [ + "type:boilerplate" + ] } -} +} \ No newline at end of file diff --git a/boilerplates/solid-sentry/package.json b/boilerplates/solid-sentry/package.json index 21f43bf02..49a508069 100644 --- a/boilerplates/solid-sentry/package.json +++ b/boilerplates/solid-sentry/package.json @@ -26,11 +26,11 @@ "dist/" ], "exports": { - "./sentry.browser.config": { - "types": "./dist/types/sentry.browser.config.d.mts" - }, "./pages/sentry/+Page": { "types": "./dist/types/pages/sentry/+Page.d.mts" + }, + "./sentry.browser.config": { + "types": "./dist/types/sentry.browser.config.d.mts" } }, "typesVersions": { @@ -42,5 +42,10 @@ "./dist/types/pages/sentry/+Page.d.mts" ] } + }, + "nx": { + "tags": [ + "type:boilerplate" + ] } -} +} \ No newline at end of file diff --git a/boilerplates/solid/package.json b/boilerplates/solid/package.json index f31906112..bdc4f1fc7 100644 --- a/boilerplates/solid/package.json +++ b/boilerplates/solid/package.json @@ -33,50 +33,50 @@ "./components/Link": { "types": "./dist/types/components/Link.d.mts" }, + "./pages/_error/+Page": { + "types": "./dist/types/pages/_error/+Page.d.mts" + }, + "./pages/+config": { + "types": "./dist/types/pages/+config.d.mts" + }, "./pages/+Head": { "types": "./dist/types/pages/+Head.d.mts" }, "./pages/+Layout": { "types": "./dist/types/pages/+Layout.d.mts" }, - "./pages/+config": { - "types": "./dist/types/pages/+config.d.mts" - }, "./pages/+onPageTransitionEnd": { "types": "./dist/types/pages/+onPageTransitionEnd.d.mts" }, "./pages/+onPageTransitionStart": { "types": "./dist/types/pages/+onPageTransitionStart.d.mts" }, - "./pages/_error/+Page": { - "types": "./dist/types/pages/_error/+Page.d.mts" - }, "./pages/index/+Page": { "types": "./dist/types/pages/index/+Page.d.mts" }, "./pages/index/Counter": { "types": "./dist/types/pages/index/Counter.d.mts" }, - "./pages/star-wars/types": { - "types": "./dist/types/pages/star-wars/types.d.mts" - }, - "./pages/todo/+Page": { - "types": "./dist/types/pages/todo/+Page.d.mts" - }, - "./pages/todo/TodoList": { - "types": "./dist/types/pages/todo/TodoList.d.mts" + "./pages/star-wars/@id/+data": { + "types": "./dist/types/pages/star-wars/@id/+data.d.mts" }, "./pages/star-wars/@id/+Page": { "types": "./dist/types/pages/star-wars/@id/+Page.d.mts" }, - "./pages/star-wars/@id/+data": { - "types": "./dist/types/pages/star-wars/@id/+data.d.mts" + "./pages/star-wars/index/+data": { + "types": "./dist/types/pages/star-wars/index/+data.d.mts" }, "./pages/star-wars/index/+Page": { "types": "./dist/types/pages/star-wars/index/+Page.d.mts" }, - "./pages/star-wars/index/+data": { - "types": "./dist/types/pages/star-wars/index/+data.d.mts" + "./pages/star-wars/types": { + "types": "./dist/types/pages/star-wars/types.d.mts" + }, + "./pages/todo/+Page": { + "types": "./dist/types/pages/todo/+Page.d.mts" + }, + "./pages/todo/TodoList": { + "types": "./dist/types/pages/todo/TodoList.d.mts" } }, "typesVersions": { @@ -130,5 +130,10 @@ "./dist/types/pages/star-wars/index/+data.d.mts" ] } + }, + "nx": { + "tags": [ + "type:boilerplate" + ] } -} +} \ No newline at end of file diff --git a/boilerplates/sqlite/package.json b/boilerplates/sqlite/package.json index acad00a1b..a952b9ba0 100644 --- a/boilerplates/sqlite/package.json +++ b/boilerplates/sqlite/package.json @@ -54,5 +54,10 @@ "./dist/types/database/sqlite/schema/todos.d.mts" ] } + }, + "nx": { + "tags": [ + "type:boilerplate" + ] } -} +} \ No newline at end of file diff --git a/boilerplates/storybook/package.json b/boilerplates/storybook/package.json index 5ee9f9f38..480e95c2a 100644 --- a/boilerplates/storybook/package.json +++ b/boilerplates/storybook/package.json @@ -20,5 +20,10 @@ }, "files": [ "dist/" - ] -} + ], + "nx": { + "tags": [ + "type:boilerplate" + ] + } +} \ No newline at end of file diff --git a/boilerplates/tailwindcss/package.json b/boilerplates/tailwindcss/package.json index 8bfb2a121..e379f3da5 100644 --- a/boilerplates/tailwindcss/package.json +++ b/boilerplates/tailwindcss/package.json @@ -26,5 +26,10 @@ }, "files": [ "dist/" - ] -} + ], + "nx": { + "tags": [ + "type:boilerplate" + ] + } +} \ No newline at end of file diff --git a/boilerplates/telefunc/package.json b/boilerplates/telefunc/package.json index c56344410..6bfa0e6ac 100644 --- a/boilerplates/telefunc/package.json +++ b/boilerplates/telefunc/package.json @@ -26,11 +26,11 @@ "dist/" ], "exports": { - "./server/telefunc-handler": { - "types": "./dist/types/server/telefunc-handler.d.mts" - }, "./pages/todo/TodoList.telefunc": { "types": "./dist/types/pages/todo/TodoList.telefunc.d.mts" + }, + "./server/telefunc-handler": { + "types": "./dist/types/server/telefunc-handler.d.mts" } }, "typesVersions": { @@ -42,5 +42,10 @@ "./dist/types/pages/todo/TodoList.telefunc.d.mts" ] } + }, + "nx": { + "tags": [ + "type:boilerplate" + ] } -} +} \ No newline at end of file diff --git a/boilerplates/trpc/package.json b/boilerplates/trpc/package.json index b3ef14524..ed98914a5 100644 --- a/boilerplates/trpc/package.json +++ b/boilerplates/trpc/package.json @@ -35,42 +35,23 @@ ], "trpc/server": [ "./dist/types/trpc/server.d.mts" - ], - "sqlite/dist/types/database/sqlite/db": [ - "./dist/types/sqlite/dist/types/database/sqlite/db.d.mts" - ], - "kysely/dist/types/database/kysely/db": [ - "./dist/types/kysely/dist/types/database/kysely/db.d.mts" - ], - "kysely/dist/types/database/kysely/types": [ - "./dist/types/kysely/dist/types/database/kysely/types.d.mts" - ], - "drizzle/dist/types/database/drizzle/db": [ - "./dist/types/drizzle/dist/types/database/drizzle/db.d.mts" ] } }, "exports": { - "./drizzle/dist/types/database/drizzle/db": { - "types": "./dist/types/drizzle/dist/types/database/drizzle/db.d.mts" - }, - "./kysely/dist/types/database/kysely/db": { - "types": "./dist/types/kysely/dist/types/database/kysely/db.d.mts" - }, - "./kysely/dist/types/database/kysely/types": { - "types": "./dist/types/kysely/dist/types/database/kysely/types.d.mts" - }, "./server/trpc-handler": { "types": "./dist/types/server/trpc-handler.d.mts" }, - "./sqlite/dist/types/database/sqlite/db": { - "types": "./dist/types/sqlite/dist/types/database/sqlite/db.d.mts" - }, "./trpc/client": { "types": "./dist/types/trpc/client.d.mts" }, "./trpc/server": { "types": "./dist/types/trpc/server.d.mts" } + }, + "nx": { + "tags": [ + "type:boilerplate" + ] } -} +} \ No newline at end of file diff --git a/boilerplates/ts-rest/package.json b/boilerplates/ts-rest/package.json index 422861f24..344c78c14 100644 --- a/boilerplates/ts-rest/package.json +++ b/boilerplates/ts-rest/package.json @@ -48,5 +48,10 @@ "./dist/types/ts-rest/contract.d.mts" ] } + }, + "nx": { + "tags": [ + "type:boilerplate" + ] } -} +} \ No newline at end of file diff --git a/boilerplates/vercel/package.json b/boilerplates/vercel/package.json index cafcb479e..7b7da27dd 100644 --- a/boilerplates/vercel/package.json +++ b/boilerplates/vercel/package.json @@ -24,5 +24,10 @@ }, "files": [ "dist/" - ] -} + ], + "nx": { + "tags": [ + "type:boilerplate" + ] + } +} \ No newline at end of file diff --git a/boilerplates/vue-sentry/package.json b/boilerplates/vue-sentry/package.json index 7ea28f5bc..55ea36710 100644 --- a/boilerplates/vue-sentry/package.json +++ b/boilerplates/vue-sentry/package.json @@ -36,5 +36,10 @@ "./dist/types/sentry.browser.config.d.mts" ] } + }, + "nx": { + "tags": [ + "type:boilerplate" + ] } -} +} \ No newline at end of file diff --git a/boilerplates/vue/package.json b/boilerplates/vue/package.json index 2ec3c1c74..f8b24a90a 100644 --- a/boilerplates/vue/package.json +++ b/boilerplates/vue/package.json @@ -44,14 +44,14 @@ "./pages/+onPageTransitionStart": { "types": "./dist/types/pages/+onPageTransitionStart.d.mts" }, - "./pages/star-wars/types": { - "types": "./dist/types/pages/star-wars/types.d.mts" - }, "./pages/star-wars/@id/+data": { "types": "./dist/types/pages/star-wars/@id/+data.d.mts" }, "./pages/star-wars/index/+data": { "types": "./dist/types/pages/star-wars/index/+data.d.mts" + }, + "./pages/star-wars/types": { + "types": "./dist/types/pages/star-wars/types.d.mts" } }, "typesVersions": { @@ -78,5 +78,10 @@ "./dist/types/pages/star-wars/index/+data.d.mts" ] } + }, + "nx": { + "tags": [ + "type:boilerplate" + ] } -} +} \ No newline at end of file diff --git a/nx.json b/nx.json new file mode 100644 index 000000000..59da98f44 --- /dev/null +++ b/nx.json @@ -0,0 +1,18 @@ +{ + "$schema": "https://nx.dev/reference/nx-json", + "targetDefaults": { + "build": { + "cache": true, + "dependsOn": ["^build"], + "inputs": ["default", "^default"], + "outputs": ["{projectRoot}/dist/**"] + }, + "test": { + "cache": true, + "dependsOn": ["build"] + }, + "check-types": { + "cache": true + } + } +} diff --git a/package.json b/package.json index 79c1c86af..abfa472d0 100644 --- a/package.json +++ b/package.json @@ -12,13 +12,13 @@ "release:beta": "pnpm -r prerelease && bumpp --preid beta prerelease && pnpm run publish --no-git-checks --tag beta", "release:local": "pnpm -r prerelease && bumpp -y --no-push --no-tag --no-commit --preid local prerelease && pnpm run publish --no-git-checks --tag local --registry http://localhost:4873", "publish": "pnpm run build && pnpm -r publish", - "check-types": "turbo run check-types", - "test": "turbo run test", + "check-types": "nx run-many --target=check-types", + "test": "nx run-many --target=test", "test:e2e": "pnpm run build && pnpm --filter \"@batijs/tests\" test:e2e", "test:e2e:workflow-write": "pnpm test:e2e workflow-write", "cli": "pnpm run build && rimraf /tmp/bati-app && node packages/cli/dist/index.js /tmp/bati-app", - "build": "turbo run @batijs/core#build @batijs/compile#build @batijs/build#build @batijs/features#build && turbo run build && pnpm run format", - "build:force": "turbo run @batijs/core#build @batijs/compile#build @batijs/build#build @batijs/features#build --force --concurrency 1 && turbo run build --force && pnpm run format", + "build": "nx run-many --target=build && pnpm run format", + "build:force": "nx run-many --target=build --skip-nx-cache && pnpm run format", "lint": "biome lint", "format": "biome format --write", "check": "biome check --write", @@ -35,7 +35,7 @@ "globals": "^17.4.0", "rimraf": "^6.1.3", "tsx": "^4.21.0", - "turbo": "^2.8.20", + "nx": "^22.6.1", "typescript": "^6.0.2" }, "optionalDependencies": { diff --git a/packages/cli/package.json b/packages/cli/package.json index fc9dcb87f..288c89a13 100644 --- a/packages/cli/package.json +++ b/packages/cli/package.json @@ -4,7 +4,7 @@ "type": "module", "scripts": { "check-types": "tsc --noEmit", - "prepublishOnly": "turbo run build", + "prepublishOnly": "nx run-many --target=build", "build": "tsdown" }, "keywords": [], diff --git a/packages/cli/project.json b/packages/cli/project.json new file mode 100644 index 000000000..ac3240a7f --- /dev/null +++ b/packages/cli/project.json @@ -0,0 +1,4 @@ +{ + "name": "@batijs/cli", + "implicitDependencies": ["tag:type:boilerplate"] +} diff --git a/packages/cli/turbo.json b/packages/cli/turbo.json deleted file mode 100644 index eadf2ad74..000000000 --- a/packages/cli/turbo.json +++ /dev/null @@ -1,56 +0,0 @@ -{ - "$schema": "https://turbo.build/schema.json", - "extends": ["//"], - "tasks": { - "build": { - "dependsOn": [ - "^build", - "@batijs/auth0#build", - "@batijs/authjs#build", - "@batijs/aws#build", - "@batijs/biome#build", - "@batijs/cloudflare#build", - "@batijs/compiled#build", - "@batijs/d1#build", - "@batijs/d1-kysely#build", - "@batijs/d1-sqlite#build", - "@batijs/drizzle#build", - "@batijs/eslint#build", - "@batijs/express#build", - "@batijs/fastify#build", - "@batijs/google-analytics#build", - "@batijs/h3#build", - "@batijs/hono#build", - "@batijs/kysely#build", - "@batijs/mantine#build", - "@batijs/oxlint#build", - "@batijs/photon#build", - "@batijs/plausible.io#build", - "@batijs/pnpm#build", - "@batijs/prettier#build", - "@batijs/prisma#build", - "@batijs/react#build", - "@batijs/react-sentry#build", - "@batijs/sentry#build", - "@batijs/shadcn-ui#build", - "@batijs/shared#build", - "@batijs/shared-db#build", - "@batijs/shared-server#build", - "@batijs/shared-todo#build", - "@batijs/solid#build", - "@batijs/solid-sentry#build", - "@batijs/sqlite#build", - "@batijs/storybook#build", - "@batijs/tailwindcss#build", - "@batijs/telefunc#build", - "@batijs/trpc#build", - "@batijs/ts-rest#build", - "@batijs/vercel#build", - "@batijs/vue#build", - "@batijs/vue-sentry#build" - ], - "outputs": ["dist/**"] - }, - "check-types": {} - } -} diff --git a/packages/compile/package.json b/packages/compile/package.json index a2cc104f3..c52b9fee7 100644 --- a/packages/compile/package.json +++ b/packages/compile/package.json @@ -6,7 +6,7 @@ "type": "module", "scripts": { "check-types": "tsc --noEmit", - "prepublishOnly": "turbo run build", + "prepublishOnly": "nx run-many --target=build", "build": "tsdown" }, "keywords": [], diff --git a/packages/features/package.json b/packages/features/package.json index bf0ed6aef..412aadfa5 100644 --- a/packages/features/package.json +++ b/packages/features/package.json @@ -6,7 +6,7 @@ "scripts": { "test": "vitest run", "test:ci": "vitest run", - "prepublishOnly": "turbo run build", + "prepublishOnly": "nx run-many --target=build", "build": "tsdown", "watch": "tsdown --watch" }, diff --git a/packages/tests/turbo.json b/packages/tests/turbo.json deleted file mode 100644 index 5e1b9b17d..000000000 --- a/packages/tests/turbo.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "$schema": "https://turbo.build/schema.json", - "extends": ["//"], - "tasks": { - "build": { - "dependsOn": ["^build", "@batijs/cli#build"], - "outputs": ["dist/**"] - }, - "test": { - "dependsOn": ["@batijs/cli#build"] - }, - "test:e2e": { - "dependsOn": ["@batijs/cli#build"] - }, - - "check-types": {} - } -} diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 3cd02e689..e36027b46 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -24,15 +24,15 @@ importers: globals: specifier: ^17.4.0 version: 17.4.0 + nx: + specifier: ^22.6.1 + version: 22.6.1 rimraf: specifier: ^6.1.3 version: 6.1.3 tsx: specifier: ^4.21.0 version: 4.21.0 - turbo: - specifier: ^2.8.20 - version: 2.8.20 typescript: specifier: ^6.0.2 version: 6.0.2 @@ -3078,6 +3078,18 @@ packages: resolution: {integrity: sha512-wgm9Ehl2jpeqP3zw/7mo3kRHFp5MEDhqAdwy1fTGkHAwnkGOVsgpvQhL8B5n1qlb01jV3n/bI0ZfZp5lWA1k4w==} engines: {node: '>=18.0.0'} + '@jest/diff-sequences@30.3.0': + resolution: {integrity: sha512-cG51MVnLq1ecVUaQ3fr6YuuAOitHK1S4WUJHnsPFE/quQr33ADUx1FfrTCpMCRxvy0Yr9BThKpDjSlcTi91tMA==} + engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0} + + '@jest/get-type@30.1.0': + resolution: {integrity: sha512-eMbZE2hUnx1WV0pmURZY9XoXPkUYjpc55mb0CrhtdWLtzMQPFvu/rZkTLZFTsdaVQa+Tr4eWAteqcUzoawq/uA==} + engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0} + + '@jest/schemas@30.0.5': + resolution: {integrity: sha512-DmdYgtezMkh3cpU8/1uyXakv3tJRcmcXxBOcO0tbaozPwpmh4YMsnWrQm9ZmZMfa5ocbxzbFk6O4bDPEc/iAnA==} + engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0} + '@jridgewell/gen-mapping@0.3.13': resolution: {integrity: sha512-2kkt/7niJ6MgEPxF0bYdQ6etZaA+fQvDcLKckhy1yIQOzaoKjBBjSj63/aLVjYE3qhRt5dvM+uUyfCg6UKCBbA==} @@ -3105,6 +3117,9 @@ packages: resolution: {integrity: sha512-S+msolgD9aPVoJ+ZomVD0WSKm+qJBKvJimzwq8dMvlGKbIPsAyEWhHHdSRuQT3g2VpDIctvbi9nU++kN/VPZaw==} engines: {node: '>= 18'} + '@ltd/j-toml@1.38.0': + resolution: {integrity: sha512-lYtBcmvHustHQtg4X7TXUu1Xa/tbLC3p2wLvgQI+fWVySguVZJF60Snxijw5EiohumxZbR10kWYFFebh1zotiw==} + '@mantine/core@8.3.18': resolution: {integrity: sha512-9tph1lTVogKPjTx02eUxDUOdXacPzK62UuSqb4TdGliI54/Xgxftq0Dfqu6XuhCxn9J5MDJaNiLDvL/1KRkYqA==} peerDependencies: @@ -3152,6 +3167,9 @@ packages: resolution: {integrity: sha512-XyroGQXcHrZdvmrGJvsA9KNeOOgGMg1Vg9OlheUsBOSKznLMDl+YChxbkboRHvtFYJEMRYmlV3uoo/njCw05iw==} engines: {node: '>=16'} + '@napi-rs/wasm-runtime@0.2.4': + resolution: {integrity: sha512-9zESzOO5aDByvhIAsOy9TbpZ0Ur2AJbUI7UT73kcUTS2mxAMHOBaa1st/jAymNoCtvrit99kkzT1FZuXVcgfIQ==} + '@napi-rs/wasm-runtime@1.1.1': resolution: {integrity: sha512-p64ah1M1ld8xjWv3qbvFwHiFVWrq1yFvV4f7w+mzaqiR4IlSgkqhcRdHwsGgomwzBH51sRY4NEowLxnaBjcW/A==} @@ -3175,6 +3193,56 @@ packages: resolution: {integrity: sha512-/xGlezI6xfGO9NwuJlnwz/K14qD1kCSAGtacBHnGzeAIuJGazcp45KP5NuyARXoKb7cwulAGWVsbeSxdG/cb0Q==} engines: {node: ^18.17.0 || >=20.5.0} + '@nx/nx-darwin-arm64@22.6.1': + resolution: {integrity: sha512-lixkEBGFdEsUiqEZg9LIyjfiTv12Sg1Es/yUgrdOQUAZu+5oiUPMoybyBwrvINl+fZw+PLh66jOmB4GSP2aUMQ==} + cpu: [arm64] + os: [darwin] + + '@nx/nx-darwin-x64@22.6.1': + resolution: {integrity: sha512-HvgtOtuWnEf0dpfWb05N0ptdFg040YgzsKFhXg6+qaBJg5Hg0e0AXPKaSgh2PCqCIDlKu40YtwVgF7KXxXAGlA==} + cpu: [x64] + os: [darwin] + + '@nx/nx-freebsd-x64@22.6.1': + resolution: {integrity: sha512-g2wUltGX+7/+mdTV5d6ODa0ylrNu/krgb9YdrsbhW6oZeXYm2LeLOAnYqIlL/Kx140NLrb5Kcz7bi7JrBAw4Ow==} + cpu: [x64] + os: [freebsd] + + '@nx/nx-linux-arm-gnueabihf@22.6.1': + resolution: {integrity: sha512-TTqisFPAPrj35EihvzotBbajS+0bX++PQggmRVmDmGwSTrpySRJwZnKNHYDqP6s9tigDvkNJOJftK+GkBEFRRA==} + cpu: [arm] + os: [linux] + + '@nx/nx-linux-arm64-gnu@22.6.1': + resolution: {integrity: sha512-uIkPcanSTIcyh7/6LOoX0YpGO/7GkVhMRgyM9Mg/7ItFjCtRaeuPEPrJESsaNeB5zIVVhI4cXbGrM9NDnagiiw==} + cpu: [arm64] + os: [linux] + + '@nx/nx-linux-arm64-musl@22.6.1': + resolution: {integrity: sha512-eqkG8s/7remiRZ1Lo2zIrFLSNsQ/0x9fAj++CV1nqFE+rfykPQhC48F8pqsq6tUQpI5HqRQEfQgv4CnFNpLR+w==} + cpu: [arm64] + os: [linux] + + '@nx/nx-linux-x64-gnu@22.6.1': + resolution: {integrity: sha512-6DhSupCcDa6BYzQ48qsMK4LIdIO+y4E+4xuUBkX2YTGOZh58gctELCv7Gi6/FhiC8rzVzM7hDcygOvHCGc30zA==} + cpu: [x64] + os: [linux] + + '@nx/nx-linux-x64-musl@22.6.1': + resolution: {integrity: sha512-QqtfaBhdfLRKGucpP8RSv7KJ51XRWpfUcXPhkb/1dKP/b9/Z0kpaCgczGHdrAtX9m6haWw+sQXYGxnStZIg/TQ==} + cpu: [x64] + os: [linux] + + '@nx/nx-win32-arm64-msvc@22.6.1': + resolution: {integrity: sha512-8pTWXphY5IIgY3edZ5SfzP8yPjBqoAxRV5snAYDctF4e0OC1nDOUims70jLesMle8DTSWiHPSfbLVfp2HkU9WQ==} + cpu: [arm64] + os: [win32] + + '@nx/nx-win32-x64-msvc@22.6.1': + resolution: {integrity: sha512-XMYrtsR5O39uNR4fVpFs65rVB09FyLXvUM735r2rO7IUWWHxHWTAgVcc+gqQaAchBPqR9f1q+3u2i1Inub3Cdw==} + cpu: [x64] + os: [win32] + '@oxc-parser/binding-android-arm64@0.104.0': resolution: {integrity: sha512-2a4tk6mtkPbGwT4Zi8pjOqMkmkrvc/Pussmas+uXoiCVv7sn7P7Jn93ATu/HK49dxIwvrvQCZ3BcS0KhAvKxlQ==} engines: {node: ^20.19.0 || >=22.12.0} @@ -4114,6 +4182,9 @@ packages: pinia: optional: true + '@sinclair/typebox@0.34.48': + resolution: {integrity: sha512-kKJTNuK3AQOrgjjotVxMrCn1sUJwM76wMszfq1kdU4uYVJjvEWuFQ6HgvLt4Xz3fSmZlTOxJ/Ie13KnIcWQXFA==} + '@sindresorhus/is@4.6.0': resolution: {integrity: sha512-t09vSN3MdfsyCHoFcTRCH/iUtG7OJ0CsjzB8cjAmKc/va/kIgeDI/TxsigdncE/4be734m0cvIYwNaV4i2XqAw==} engines: {node: '>=10'} @@ -4339,6 +4410,9 @@ packages: '@tybys/wasm-util@0.10.1': resolution: {integrity: sha512-9tTaPJLSiejZKx+Bmog4uSubteqTvFrVrURwkmHixBo0G4seD0zUxp98E1DzUBJxLQ3NPwXrGKDiVjwx/DpPsg==} + '@tybys/wasm-util@0.9.0': + resolution: {integrity: sha512-6+7nlbMVX/PVDCwaIQ8nTOPveOcFLSt8GcXdx8hD0bt39uWxYT88uXzqTd4fTvqta7oeUJqudepapKNt2DYJFw==} + '@types/aws-lambda@8.10.161': resolution: {integrity: sha512-rUYdp+MQwSFocxIOcSsYSF3YYYC/uUpMbCY/mbO21vGqfrEYvNSoPyKYDj6RhXXpPfS0KstW9RwG3qXh9sL7FQ==} @@ -4701,6 +4775,17 @@ packages: '@vue/shared@3.5.30': resolution: {integrity: sha512-YXgQ7JjaO18NeK2K9VTbDHaFy62WrObMa6XERNfNOkAhD1F1oDSf3ZJ7K6GqabZ0BvSDHajp8qfS5Sa2I9n8uQ==} + '@yarnpkg/lockfile@1.1.0': + resolution: {integrity: sha512-GpSwvyXOcOOlV70vbnzjj4fW5xW/FdUF6nQEt1ENy7m4ZCczi1+/buVUPAqmGfqznsORNFzUMjctTIp8a9tuCQ==} + + '@yarnpkg/parsers@3.0.2': + resolution: {integrity: sha512-/HcYgtUSiJiot/XWGLOlGxPYUG65+/31V8oqk17vZLW1xlCoR4PampyePljOxY2n8/3jz9+tIFzICsyGujJZoA==} + engines: {node: '>=18.12.0'} + + '@zkochan/js-yaml@0.0.7': + resolution: {integrity: sha512-nrUSn7hzt7J6JWgWGz78ZYI8wj+gdIJdk0Ynjpp8l+trkn58Uqsf6RYrYkEK+3X18EX+TNdtJI0WxAtc+L84SQ==} + hasBin: true + abbrev@3.0.1: resolution: {integrity: sha512-AO2ac6pjRB3SJmGJo+v5/aK6Omggp6fsLrs6wN9bd35ulu4cCwaAU9+7ZhXjeqHVkaHThLuzH0nZr0YpCDhygg==} engines: {node: ^18.17.0 || >=20.5.0} @@ -4753,6 +4838,10 @@ packages: ajv@8.18.0: resolution: {integrity: sha512-PlXPeEWMXMZ7sPYOHqmDyCJzcfNrUr3fGNKtezX14ykXOEIvyK81d+qydx89KY5O71FKMPaQ2vBfBFI5NHR63A==} + ansi-colors@4.1.3: + resolution: {integrity: sha512-/6w/C21Pm1A7aZitlI5Ni/2J6FFQN8i1Cvz3kHABAAbw93v/NlvKdVOqz7CCWz/3iv/JplRSEEZ83XION15ovw==} + engines: {node: '>=6'} + ansi-regex@5.0.1: resolution: {integrity: sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==} engines: {node: '>=8'} @@ -4765,6 +4854,10 @@ packages: resolution: {integrity: sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==} engines: {node: '>=8'} + ansi-styles@5.2.0: + resolution: {integrity: sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA==} + engines: {node: '>=10'} + ansi-styles@6.2.3: resolution: {integrity: sha512-4Dj6M28JB+oAH8kFkTLUo+a2jwOFkuqb3yucU0CANcRRUbxS0cP0nZYCGjcc3BNXwRIsUVmDGgzawme7zvJHvg==} engines: {node: '>=12'} @@ -4773,6 +4866,9 @@ packages: resolution: {integrity: sha512-HqZ5rWlFjGiV0tDm3UxxgNRqsOTniqoKZu0pIAfh7TZQMGuZK+hH0drySty0si0QXj1ieop4+SkSfPZBPPkHig==} engines: {node: '>=14'} + argparse@1.0.10: + resolution: {integrity: sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==} + argparse@2.0.1: resolution: {integrity: sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==} @@ -4825,6 +4921,9 @@ packages: async@3.2.6: resolution: {integrity: sha512-htCUDlxyyCLMgaM3xXg0C0LW2xqfuQ6p05pCEIsXuyQ+a1koYKTuBMzRNwmybfLgvJDMd0r1LTn4+E0Ti6C2AA==} + asynckit@0.4.0: + resolution: {integrity: sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q==} + atomic-sleep@1.0.0: resolution: {integrity: sha512-kNOjDqAh7px0XWNI+4QbzoiR/nTkHAWNud2uvnJquD1/x5a7EQZMJT0AczqK0Qn67oY/TTQ1LbUKajZpp3I9tQ==} engines: {node: '>=8.0.0'} @@ -4877,6 +4976,9 @@ packages: resolution: {integrity: sha512-NZKeq9AfyQvEeNlN0zSYAaWrmBffJh3IELMZfRpJVWgrpEbtEpnjvzqBPf+mxoI287JohRDoa+/nsfqqiZmF6g==} engines: {node: '>= 6.0.0'} + axios@1.13.6: + resolution: {integrity: sha512-ChTCHMouEe2kn713WHbQGcuYrr6fXTBiu460OTwWrWob16g1bXn4vtz07Ope7ewMozJAnEquLk5lWQWtBig9DQ==} + b4a@1.7.3: resolution: {integrity: sha512-5Q2mfq2WfGuFp3uS//0s6baOJLMoVduPYVeNmDYxu5OUA1/cBfvr2RIS7vi62LdNj/urk1hfmj867I3qt6uZ7Q==} peerDependencies: @@ -5128,6 +5230,14 @@ packages: class-variance-authority@0.7.1: resolution: {integrity: sha512-Ka+9Trutv7G8M6WT6SeiRWz792K5qEqIGEGzXKhAE6xOWAY6pPH8U+9IY3oCMv6kqTmLsv7Xh/2w2RigkePMsg==} + cli-cursor@3.1.0: + resolution: {integrity: sha512-I/zHAwsKf9FqGoXM4WWRACob9+SNukZTd94DWF57E4toouRulbCxcUh6RKUEOQlYTHJnzkPMySvPNaaSLNfLZw==} + engines: {node: '>=8'} + + cli-spinners@2.6.1: + resolution: {integrity: sha512-x/5fWmGMnbKQAaNwN+UZlV79qBLM9JFnJuJ03gIi5whrob0xV0ofNVHy9DhwGdsMJQc2OKv0oGmLzvaqvAVv+g==} + engines: {node: '>=6'} + cli-width@4.1.0: resolution: {integrity: sha512-ouuZd4/dm2Sw5Gmqy6bGyNNNe1qt9RpmxveLSO7KcgsTnU7RXfsw+/bukWGo1abgBiMAic068rclZsO4IWmmxQ==} engines: {node: '>= 12'} @@ -5139,6 +5249,10 @@ packages: clone-response@1.0.3: resolution: {integrity: sha512-ROoL94jJH2dUVML2Y/5PEDNaSHgeOdSDicUyS7izcF63G6sTc/FTjLub4b8Il9S8S0beOfYt0TaA5qvFK+w0wA==} + clone@1.0.4: + resolution: {integrity: sha512-JQHZ2QMW6l3aH/j6xCqQThY/9OH4D/9ls34cgkUBiEeocRTU04tHfKPBsUK1PqZCUQM7GiA0IIXJSuXHI64Kbg==} + engines: {node: '>=0.8'} + clsx@2.1.1: resolution: {integrity: sha512-eYm0QWBtUrBWZWG0d386OGAw16Z995PiOVo2B7bjWSbHedGl5e0ZWaq65kOGgUSNesEIDkB9ISbTg/JK9dhCZA==} engines: {node: '>=6'} @@ -5166,6 +5280,10 @@ packages: colorette@2.0.20: resolution: {integrity: sha512-IfEDxwoWIjkeXL1eXcDiow4UbKjhLdq6/EuSVR9GMN7KVH3r9gQ83e73hsz1Nd1T3ijd5xv1wcWRYO+D6kCI2w==} + combined-stream@1.0.8: + resolution: {integrity: sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==} + engines: {node: '>= 0.8'} + commander@7.2.0: resolution: {integrity: sha512-QrWXB+ZQSVPmIWIhtEO9H+gwHaMGYiF5ChvoJ+K9ZGHG/sVsa6yiesAD1GC/x46sET00Xlwo1u49RVVVzvcSkw==} engines: {node: '>= 10'} @@ -5333,6 +5451,9 @@ packages: resolution: {integrity: sha512-HOJkrhaYsweh+W+e74Yn7YStZOilkoPb6fycpwNLKzSPtruFs48nYis0zy5yJz1+ktUhHxoRDJ27RQAWLIJVJw==} engines: {node: '>=16.0.0'} + defaults@1.0.4: + resolution: {integrity: sha512-eFuaLoy/Rxalv2kr+lqMlUnrDWV+3j4pljOIJgLIhI058IQfWJ7vXhyEIHu+HtC738klGALYxOKDO0bQP3tg8A==} + defer-to-connect@2.0.1: resolution: {integrity: sha512-4tvttepXG1VaYGrRibk5EwJd1t4udunSOVMdLSAL6mId1ix438oPwPZMALY41FCijukO1L0twNcGsdzS7dHgDg==} engines: {node: '>=10'} @@ -5341,6 +5462,10 @@ packages: resolution: {integrity: sha512-rBMvIzlpA8v6E+SJZoo++HAYqsLrkg7MSfIinMPFhmkorw7X+dOXVJQs+QT69zGkzMyfDnIMN2Wid1+NbL3T+A==} engines: {node: '>= 0.4'} + define-lazy-prop@2.0.0: + resolution: {integrity: sha512-Ds09qNh8yw3khSjiJjiUInaGX9xlqZDY7JVryGxdxV7NPeuqQfplOpQ66yJFZut3jLa5zOwkXw1g9EI2uKh4Og==} + engines: {node: '>=8'} + define-properties@1.2.1: resolution: {integrity: sha512-8QmQKqEASLd5nx0U1B1okLElbUuuttJ/AnYmRXbbbGDWh6uS208EjD4Xqq/I9wK7u0v6O08XhTWnt5XtEbR6Dg==} engines: {node: '>= 0.4'} @@ -5352,6 +5477,10 @@ packages: resolution: {integrity: sha512-TllpMR/t0M5sqCXfj85i4XaAzxmS5tVA16dqvdkMwGmzI+dXLXnw3J+3Vdv7VKw+ThlTMboK6i9rnZ6Nntj5CQ==} engines: {node: '>= 14'} + delayed-stream@1.0.0: + resolution: {integrity: sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ==} + engines: {node: '>=0.4.0'} + denque@2.1.0: resolution: {integrity: sha512-HVQE3AAb/pxF8fQAoiqpvg9i3evqug3hoiwakOyZAwJm+6vZehbkYXZ0l4JxS+I3QxM97v5aaRNhj8v5oBhekw==} engines: {node: '>=0.10'} @@ -5400,6 +5529,14 @@ packages: domutils@2.8.0: resolution: {integrity: sha512-w96Cjofp72M5IIhpjgobBimYEfoPjx1Vx0BSX9P30WBdZW2WIKU0T1Bd0kz2eNZ9ikjKgHbEyKx8BB6H1L3h3A==} + dotenv-expand@11.0.7: + resolution: {integrity: sha512-zIHwmZPRshsCdpMDyVsqGmgyP0yT8GAgXUnkdAoJisxvf33k7yO6OuoKmcTGuXPWSsm8Oh88nZicRLA9Y0rUeA==} + engines: {node: '>=12'} + + dotenv@16.4.7: + resolution: {integrity: sha512-47qPchRCykZC03FhkYAhrvwU4xDBFIj1QPqaarj6mdM/hgUzfPHcpkHJOn3mJAufFeeAxAzeGsr5X0M4k6fLZQ==} + engines: {node: '>=12'} + dotenv@16.6.1: resolution: {integrity: sha512-uBq4egWHTcTt33a72vpSG0z3HnPuIl6NqYcTrKEg2azoEyl2hpW0zqlxysq2pK9HlDIHyHyakeYaYnSAwd8bow==} engines: {node: '>=12'} @@ -5526,6 +5663,11 @@ packages: effect@3.18.4: resolution: {integrity: sha512-b1LXQJLe9D11wfnOKAk3PKxuqYshQ0Heez+y5pnkd3jLj1yx9QhM72zZ9uUrOQyNvrs2GZZd/3maL0ZV18YuDA==} + ejs@3.1.10: + resolution: {integrity: sha512-UeJmFfOrAQS8OJWPZ4qtgHyWExa088/MtK5UEyoJGFH67cDEXkZSviOiKRCZ4Xij0zxI3JECgYs3oKx+AizQBA==} + engines: {node: '>=0.10.0'} + hasBin: true + electron-to-chromium@1.5.267: resolution: {integrity: sha512-0Drusm6MVRXSOJpGbaSVgcQsuB4hEkMpHXaVstcPmhu5LIedxs1xNK/nIxmQIU/RPC0+1/o0AVZfBTkTNJOdUw==} @@ -5553,6 +5695,10 @@ packages: resolution: {integrity: sha512-phv3E1Xl4tQOShqSte26C7Fl84EwUdZsyOuSSk9qtAGyyQs2s3jJzComh+Abf4g187lUUAvH+H26omrqia2aGg==} engines: {node: '>=10.13.0'} + enquirer@2.3.6: + resolution: {integrity: sha512-yjNnPr315/FjS4zIsUxYguYUPP2e1NK4d7E7ZOLiyYCcbFBiTMyID+2wvm2w6+pZ/odMA7cRkjhsPbltwBOrLg==} + engines: {node: '>=8.6'} + ensure-error@3.0.1: resolution: {integrity: sha512-J2e5Z3sgnA8en6+alf2VkO5cRwe75hHgSw0rJiMn5CEE4Yyw6GSgH31IBgwN9lugeCuPKHzuOF3X/RozAFsuhQ==} engines: {node: '>=10'} @@ -5646,6 +5792,10 @@ packages: escape-html@1.0.3: resolution: {integrity: sha512-NiSupZ4OeuGwr68lGIeym/ksIZMJodUGOSCZ/FSnTxcrekbvqrgdUxlJOMpijaKZVjAJrWrGs/6Jy8OMuyj9ow==} + escape-string-regexp@1.0.5: + resolution: {integrity: sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==} + engines: {node: '>=0.8.0'} + escape-string-regexp@4.0.0: resolution: {integrity: sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==} engines: {node: '>=10'} @@ -5884,6 +6034,10 @@ packages: resolution: {integrity: sha512-7yAQpD2UMJzLi1Dqv7qFYnPbaPx7ZfFK6PiIxQ4PfkGPyNyl2Ugx+a/umUonmKqjhM4DnfbMvdX6otXq83soQQ==} engines: {node: ^12.20 || >= 14.13} + figures@3.2.0: + resolution: {integrity: sha512-yaduQFRKLXYOGgEn6AZau90j3ggSOyiqXU0F9JZfeXYhNa+Jk4X+s45A2zg5jns87GAFa34BBm2kXw4XpNcbdg==} + engines: {node: '>=8'} + figures@6.1.0: resolution: {integrity: sha512-d+l3qxjSesT4V7v2fh+QnmFnUWv9lSpjarhShNTgBOfA0ttejbQUAlHLitbjkoRiDulW0OPoQPYIGhIC8ohejg==} engines: {node: '>=18'} @@ -5895,6 +6049,9 @@ packages: file-uri-to-path@1.0.0: resolution: {integrity: sha512-0Zt+s3L7Vf1biwWZ29aARiVYLx7iMGnEUl9x33fbB/j3jR81u/O2LbqK+Bm1CDSNDKVtJ/YjwY7TUd5SkeLQLw==} + filelist@1.0.6: + resolution: {integrity: sha512-5giy2PkLYY1cP39p17Ech+2xlpTRL9HLspOfEgm0L6CwBXBTgsK5ou0JtzYuepxkaQ/tvhCFIJ5uXo0OrM2DxA==} + fill-range@7.1.1: resolution: {integrity: sha512-YsGpe3WHLK8ZYi4tWDg2Jy3ebRz2rXowDxnld4bkQB00cc/1Zw9AWnC0i9ztDJitivtQvaI9KaLyKrc+hBW0yg==} engines: {node: '>=8'} @@ -5922,6 +6079,10 @@ packages: resolution: {integrity: sha512-f7ccFPK3SXFHpx15UIGyRJ/FJQctuKZ0zVuN3frBo4HnK3cay9VEW0R6yPYFHC0AgqhukPzKjq22t5DmAyqGyw==} engines: {node: '>=16'} + flat@5.0.2: + resolution: {integrity: sha512-b6suED+5/3rTpUBdG1gupIl8MPFCAMA0QXwmljLhvCUKcUvdE4gWky9zpuGCcXHOsz4J9wPGNWq6OKpmIzz3hQ==} + hasBin: true + flatted@3.3.3: resolution: {integrity: sha512-GX+ysw4PBCz0PzosHDepZGANEuFCMLrnRTiEy9McGjmkCQYwRq4A/X786G/fjM/+OjsWSU1ZrY5qyARZmO/uwg==} @@ -5942,6 +6103,10 @@ packages: resolution: {integrity: sha512-gIXjKqtFuWEgzFRJA9WCQeSJLZDjgJUOMCMzxtvFq/37KojM1BFGufqsCy0r4qSQmYLsZYMeyRqzIWOMup03sw==} engines: {node: '>=14'} + form-data@4.0.5: + resolution: {integrity: sha512-8RipRLol37bNs2bhoV67fiTEvdTrbMUYcFTiy3+wuuOnUog2QBHCZWXDRijWQfAkhBj2Uf5UnVaiWwA5vdd82w==} + engines: {node: '>= 6'} + formatly@0.3.0: resolution: {integrity: sha512-9XNj/o4wrRFyhSMJOvsuyMwy8aUfBaZ1VrqHVfohyXf0Sw0e+yfKG+xZaY3arGCOMdwFsqObtzVOc1gU9KiT9w==} engines: {node: '>=18.3.0'} @@ -5962,6 +6127,9 @@ packages: resolution: {integrity: sha512-Rx/WycZ60HOaqLKAi6cHRKKI7zxWbJ31MhntmtwMoaTeF7XFH9hhBp8vITaMidfljRQ6eYWCKkaTK+ykVJHP2A==} engines: {node: '>= 0.8'} + front-matter@4.0.2: + resolution: {integrity: sha512-I8ZuJ/qG92NWX8i5x1Y8qyj3vizhXS31OxjKDu3LKP+7/qBgfIKValiZIEwoVoJKUHlhWtYrktkxV1XsX+pPlg==} + fs-constants@1.0.0: resolution: {integrity: sha512-y6OAwoSIf7FyjMIv94u+b5rdheZEjzR63GTyZJm5qh4Bi+2YgwLCcI/fPFZkL5PSixOt6ZNKm+w+Hfp/Bciwow==} @@ -6318,6 +6486,11 @@ packages: resolution: {integrity: sha512-PwwhEakHVKTdRNVOw+/Gyh0+MzlCl4R6qKvkhuvLtPMggI1WAHt9sOwZxQLSGpUaDnrdyDsomoRgNnCfKNSXXg==} engines: {node: '>= 0.4'} + is-docker@2.2.1: + resolution: {integrity: sha512-F+i2BKsFrH66iaUFc0woD8sLy8getkwTwtOBjvs56Cx4CgJDeKQeqfz8wAYiSb8JOprWhHH5p77PbmYCvvUuXQ==} + engines: {node: '>=8'} + hasBin: true + is-extglob@2.1.1: resolution: {integrity: sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==} engines: {node: '>=0.10.0'} @@ -6346,6 +6519,10 @@ packages: resolution: {integrity: sha512-S+OpgB5i7wzIue/YSE5hg0e5ZYfG3hhpNh9KGl6ayJ38p7ED6wxQLd1TV91xHpcTvw90KMJ9EwN3F/iNflHBVg==} engines: {node: '>=8'} + is-interactive@1.0.0: + resolution: {integrity: sha512-2HvIEKRoqS62guEC+qBjpvRubdX910WCMuJTZ+I9yvqKU2/12eSL549HMwtabb4oupdj2sMP50k+XJfB/8JE6w==} + engines: {node: '>=8'} + is-map@2.0.3: resolution: {integrity: sha512-1Qed0/Hr2m+YqxnM09CjA2d/i6YZNfF6R2oRAOj36eUdS6qIV/huPJNSEpKbupewFs+ZsJlxsjjPbc0/afW6Lw==} engines: {node: '>= 0.4'} @@ -6404,6 +6581,10 @@ packages: resolution: {integrity: sha512-p3EcsicXjit7SaskXHs1hA91QxgTw46Fv6EFKKGS5DRFLD8yKnohjF3hxoju94b/OcMZoQukzpPpBE9uLVKzgQ==} engines: {node: '>= 0.4'} + is-unicode-supported@0.1.0: + resolution: {integrity: sha512-knxG2q4UC3u8stRGyAVJCOdxFmv5DZiRcdlIaAQXAbSfJya+OhopNotLQrstBhququ4ZpuKbDc/8S6mgXgPFPw==} + engines: {node: '>=10'} + is-unicode-supported@2.1.0: resolution: {integrity: sha512-mE00Gnza5EEB3Ds0HfMyllZzbBrmLOX3vfWoj9A9PEnTfratQ/BcaJOuMhnkhjXvb2+FkY3VuHqtAGpTPmglFQ==} engines: {node: '>=18'} @@ -6432,6 +6613,10 @@ packages: resolution: {integrity: sha512-ZhMwEosbFJkA0YhFnNDgTM4ZxDRsS6HqTo7qsZM08fehyRYIYa0yHu5R6mgo1n/8MgaPBXiPimPD77baVFYg+A==} engines: {node: '>=12.13'} + is-wsl@2.2.0: + resolution: {integrity: sha512-fKzAra0rGJUUBwGBgNkHZuToZcn+TtXHpeCgmkMJMMYx1sQDYaCSyjJBSCa2nH1DGm7s3n1oBnohoVTBaN7Lww==} + engines: {node: '>=8'} + isarray@2.0.5: resolution: {integrity: sha512-xHjhDr3cNBK0BzdUJSPXZntQUx/mwMS5Rw4A7lPJ90XGAO6ISP/ePDNuo0vhqOZU+UD5JoodwCAAoZQd3FeAKw==} @@ -6464,6 +6649,15 @@ packages: resolution: {integrity: sha512-ykkVRwrYvFm1nb2AJfKKYPr0emF6IiXDYUaFx4Zn9ZuIH7MrzEZ3sD5RlqGXNRpHtvUHJyOnCEFxOlNDtGo7wg==} engines: {node: 20 || >=22} + jake@10.9.4: + resolution: {integrity: sha512-wpHYzhxiVQL+IV05BLE2Xn34zW1S223hvjtqk0+gsPrwd/8JNLXJgZZM/iPFsYc1xyphF+6M6EvdE5E9MBGkDA==} + engines: {node: '>=10'} + hasBin: true + + jest-diff@30.3.0: + resolution: {integrity: sha512-n3q4PDQjS4LrKxfWB3Z5KNk1XjXtZTBwQp71OP0Jo03Z6V60x++K5L8k6ZrW8MY8pOFylZvHM0zsjS1RqlHJZQ==} + engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0} + jiti@2.6.1: resolution: {integrity: sha512-ekilCSN1jwRvIbgeg/57YFh8qQDNbwDb9xT/qu2DAHbFFZUicIl4ygVaAvzveMhMVr3LnpSKTNnwt8PoOfmKhQ==} hasBin: true @@ -6477,6 +6671,10 @@ packages: js-tokens@4.0.0: resolution: {integrity: sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==} + js-yaml@3.14.2: + resolution: {integrity: sha512-PMSmkqxr106Xa156c2M265Z+FTrPl+oxd/rgOQy2tijQeK5TxQ43psO1ZCwhVOSdnn+RzkzlRz/eY4BgJBYVpg==} + hasBin: true + js-yaml@4.1.1: resolution: {integrity: sha512-qQKT4zQxXl8lLwBtHMWwaTcGfFOZviOJet3Oy/xmGk2gZH677CJM9EvtfdSkgWcATZhj/55JZ0rmy3myCT5lsA==} hasBin: true @@ -6516,6 +6714,9 @@ packages: engines: {node: '>=6'} hasBin: true + jsonc-parser@3.2.0: + resolution: {integrity: sha512-gfFQZrcTc8CnKXp6Y4/CBT3fTc0OVuDofpre4aEeEpSBPV5X5v4+Vmx+8snU7RLPrNHPKSgLxGo9YuQzz20o+w==} + jsonc-parser@3.3.1: resolution: {integrity: sha512-HUgH65KyejrUFPvHFPbqOY0rsFip3Bo5wb4ngvdi1EpCYWUQDC5V+Y7mZws+DLkr4M//zQJoanu1SP+87Dv1oQ==} @@ -6641,6 +6842,10 @@ packages: lines-and-columns@1.2.4: resolution: {integrity: sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==} + lines-and-columns@2.0.3: + resolution: {integrity: sha512-cNOjgCnLB+FnvWWtyRTzmB3POJ+cXxTA81LoW7u8JdmhfXzriropYwpjShnz1QLLWsQwY7nIxoDmcPTwphDK9w==} + engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} + locate-path@3.0.0: resolution: {integrity: sha512-7AO748wWnIhNqAuaty2ZWHkQHRSNfPVIsPIfwEOWO22AmaoVrWavlOcMR5nzTLNYvp36X220/maaRsrec1G65A==} engines: {node: '>=6'} @@ -6664,6 +6869,10 @@ packages: lodash@4.17.23: resolution: {integrity: sha512-LgVTMpQtIopCi79SJeDiP0TfWi5CNEc/L/aRdTh3yIvmZXTnheWpKjSZhnvMl8iXbC1tFg9gdHHDMLoV7CnG+w==} + log-symbols@4.1.0: + resolution: {integrity: sha512-8XPvpAA8uyhfteu8pIvQxpJZ7SYYdpUivZpGy6sFsBuKRY/7rQGavedeB8aK+Zkyq6upMFVL/9AW6vOYzfRyLg==} + engines: {node: '>=10'} + long@5.3.2: resolution: {integrity: sha512-mNAgZ1GmyNhD7AuqnTG3/VQ26o760+ZYBPKjPvugO8+nLbYfX6TVpJPseBvopbdY+qpZ/lKUnmEc1LeZYS3QAA==} @@ -6833,10 +7042,18 @@ packages: resolution: {integrity: sha512-PXwfBhYu0hBCPw8Dn0E+WDYb7af3dSLVWKi3HGv84IdF4TyFoC0ysxFd0Goxw7nSv4T/PzEJQxsYsEiFCKo2BA==} engines: {node: '>=8.6'} + mime-db@1.52.0: + resolution: {integrity: sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==} + engines: {node: '>= 0.6'} + mime-db@1.54.0: resolution: {integrity: sha512-aU5EJuIN2WDemCcAp2vFBfp/m4EAhWJnUNSSw0ixs7/kXbd6Pg64EmwJkNdFhB8aWt1sH2CTXrLxo/iAGV3oPQ==} engines: {node: '>= 0.6'} + mime-types@2.1.35: + resolution: {integrity: sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==} + engines: {node: '>= 0.6'} + mime-types@3.0.2: resolution: {integrity: sha512-Lbgzdk0h4juoQ9fCKXW4by0UJqj+nOOrI9MJ1sSj4nI8aI2eo1qmvQEie4VD1glsS250n15LsWsYtCugiStS5A==} engines: {node: '>=18'} @@ -6851,6 +7068,10 @@ packages: engines: {node: '>=10.0.0'} hasBin: true + mimic-fn@2.1.0: + resolution: {integrity: sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==} + engines: {node: '>=6'} + mimic-response@1.0.1: resolution: {integrity: sha512-j5EctnkH7amfV/q5Hgmoal1g2QHFJRraOtmx0JpIqkxhBhI/lJSl1nMpQ45hVarwNETOoWEimndZ4QK0RHxuxQ==} engines: {node: '>=4'} @@ -6873,9 +7094,17 @@ packages: resolution: {integrity: sha512-Rwi3pnapEqirPSbWbrZaa6N3nmqq4Xer/2XooiOKyV3q12ML06f7MOuc5DVH8ONZIFhwIYQ3yzPH4nt7iWHaTg==} engines: {node: 18 || 20 || >=22} + minimatch@10.2.4: + resolution: {integrity: sha512-oRjTw/97aTBN0RHbYCdtF1MQfvusSIBQM0IZEgzl6426+8jSC0nF1a/GmnVLpfB9yyr6g6FTqWqiZVbxrtaCIg==} + engines: {node: 18 || 20 || >=22} + minimatch@3.1.5: resolution: {integrity: sha512-VgjWUsnnT6n+NUk6eZq77zeFdpW2LWDzP6zFGrCbHXiYNul5Dzqk2HHQ5uFH2DNW5Xbp8+jVzaeNt94ssEEl4w==} + minimatch@5.1.9: + resolution: {integrity: sha512-7o1wEA2RyMP7Iu7GNba9vc0RWWGACJOCZBJX2GJWip0ikV+wcOsgVuY9uE8CPiyQhkGFSlhuSkZPavN7u1c2Fw==} + engines: {node: '>=10'} + minimatch@8.0.4: resolution: {integrity: sha512-W0Wvr9HyFXZRGIDgCicunpQ299OKXs9RgZfaukz4qAW/pJhcpUfupc9c+OObPOFueNy8VSrZgEmDtk6Kh4WzDA==} engines: {node: '>=16 || 14 >=14.17'} @@ -7038,6 +7267,10 @@ packages: engines: {node: ^20.5.0 || >=22.0.0, npm: '>= 10'} hasBin: true + npm-run-path@4.0.1: + resolution: {integrity: sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw==} + engines: {node: '>=8'} + npm-run-path@6.0.0: resolution: {integrity: sha512-9qny7Z9DsQU8Ou39ERsPU4OZQlSTP47ShQzuKZ6PRXpYLtIFgl/DEBYEXKlvcEa+9tHVcK8CF81Y2V72qaZhWA==} engines: {node: '>=18'} @@ -7049,6 +7282,18 @@ packages: resolution: {integrity: sha512-YAPMPwBVlXXmIx/eIHx/KwIL1Bsd8I+YHQdFpW0Ydvez6vu5Bx2CaP4GrEnH5c1huVWZD9MqEuFwAJoBMm5LJQ==} engines: {node: '>= 20'} + nx@22.6.1: + resolution: {integrity: sha512-b4eo52o5aCVt3oG6LPYvD2Cul3JFBMgr2p9OjMBIo6oU6QfSR693H2/UuUMepLtO6jcIniPKOcIrf6Ue8aXAww==} + hasBin: true + peerDependencies: + '@swc-node/register': ^1.11.1 + '@swc/core': ^1.15.8 + peerDependenciesMeta: + '@swc-node/register': + optional: true + '@swc/core': + optional: true + nypm@0.6.2: resolution: {integrity: sha512-7eM+hpOtrKrBDCh7Ypu2lJ9Z7PNZBdi/8AT3AX8xoCj43BBVHD0hPSTEvMtkMpfs8FCqBGhxB+uToIQimA111g==} engines: {node: ^14.16.0 || >=16.10.0} @@ -7102,6 +7347,14 @@ packages: once@1.4.0: resolution: {integrity: sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==} + onetime@5.1.2: + resolution: {integrity: sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg==} + engines: {node: '>=6'} + + open@8.4.2: + resolution: {integrity: sha512-7x81NCL719oNbsq/3mh+hVrAWmFuEYUqrq/Iw3kUzH8ReypT9QQ0BLoJS7/G9k6N81XjW4qHWtjWwe/9eLy1EQ==} + engines: {node: '>=12'} + opener@1.5.2: resolution: {integrity: sha512-ur5UIdyw5Y7yEj9wLzhqXiy6GZ3Mwx0yGI+5sMn2r0N0v3cKJvUmFH5yPP+WXh9e0xfyzyJX95D8l088DNFj7A==} hasBin: true @@ -7110,6 +7363,10 @@ packages: resolution: {integrity: sha512-6IpQ7mKUxRcZNLIObR0hz7lxsapSSIYNZJwXPGeF0mTVqGKFIXj1DQcMoT22S3ROcLyY/rz0PWaWZ9ayWmad9g==} engines: {node: '>= 0.8.0'} + ora@5.3.0: + resolution: {integrity: sha512-zAKMgGXUim0Jyd6CXK9lraBnD3H5yPGBPPOkC23a2BG6hsm4Zu6OQSjQuEtV0BHDf4aKHcUFvJiGRrFuW3MG8g==} + engines: {node: '>=10'} + own-keys@1.0.1: resolution: {integrity: sha512-qFOyK5PjiWZd+QQIh+1jhdb9LpxTF0qs7Pm8o5QHYZ0M3vKqSqzsZaEB6oWlxZ+q2sJBMI/Ktgd2N5ZwQoRHfg==} engines: {node: '>= 0.4'} @@ -7567,6 +7824,10 @@ packages: engines: {node: '>=14'} hasBin: true + pretty-format@30.3.0: + resolution: {integrity: sha512-oG4T3wCbfeuvljnyAzhBvpN45E8iOTXCU/TD3zXW80HA3dQ4ahdqMkWGiPWZvjpQwlbyHrPTWUAqUzGzv4l1JQ==} + engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0} + pretty-ms@7.0.1: resolution: {integrity: sha512-973driJZvxiGOQ5ONsFhOF/DtzPMOMtgC11kCpUrPGMTgqp2q/1gwzCquocrN33is0VZ5GFHXZYMM9l6h67v2Q==} engines: {node: '>=10'} @@ -7698,6 +7959,9 @@ packages: react-is@16.13.1: resolution: {integrity: sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ==} + react-is@18.3.1: + resolution: {integrity: sha512-/LLMVyas0ljjAtoYiPqYiL8VWXzUUdThrmU5+n20DZv+a+ClRoevUzw5JxU+Ieh5/c87ytoTBV9G1FiKfNJdmg==} + react-number-format@5.4.4: resolution: {integrity: sha512-wOmoNZoOpvMminhifQYiYSTCLUDOiUbBunrMrMjA+dV52sY+vck1S4UhR6PkgnoCquvvMSeJjErXZ4qSaWCliA==} peerDependencies: @@ -7820,6 +8084,10 @@ packages: resolve-pkg-maps@1.0.0: resolution: {integrity: sha512-seS2Tj26TBVOC2NIc2rOe2y2ZO7efxITtLZcGSOnHHNOQ7CkiUBfw0Iw2ck6xkIhPwLhKNLS8BO+hEpngQlqzw==} + resolve.exports@2.0.3: + resolution: {integrity: sha512-OcXjMsGdhL4XnbShKpAcSqPMzQoYkYyhbEaeSko47MjRP9NfEQMhZkXL1DoFlt9LWQn4YttrdnV6X2OiyzBi+A==} + engines: {node: '>=10'} + resolve@1.22.10: resolution: {integrity: sha512-NPRy+/ncIMeDlTAsuqwKIiferiawhefFJtkNSW0qZJEqMEb+qBt/77B/jGeeek+F0uOeN05CDa6HXbbIgtVX4w==} engines: {node: '>= 0.4'} @@ -7832,6 +8100,10 @@ packages: responselike@2.0.1: resolution: {integrity: sha512-4gl03wn3hj1HP3yzgdI7d3lCkF95F21Pz4BPGvKHinyQzALR5CapwC8yIi0Rh58DEMQ/SguC03wFj2k0M/mHhw==} + restore-cursor@3.1.0: + resolution: {integrity: sha512-l+sSefzHpj5qimhFSE5a8nufZYAM3sBSVMAPtYkmC+4EH2anSGaEMXSD0izRQbu9nfyQ9y5JrVmp7E8oZrUjvA==} + engines: {node: '>=8'} + ret@0.5.0: resolution: {integrity: sha512-I1XxrZSQ+oErkRR4jYbAyEEu2I0avBvvMM5JN+6EBprOGRCs63ENqZ3vjavq8fBw2+62G5LF5XelKwuJpcvcxw==} engines: {node: '>=10'} @@ -8114,6 +8386,9 @@ packages: resolution: {integrity: sha512-UcjcJOWknrNkF6PLX83qcHM6KHgVKNkV62Y8a5uYDVv9ydGQVwAHMKqHdJje1VTWpljG0WYpCDhrCdAOYH4TWg==} engines: {node: '>= 10.x'} + sprintf-js@1.0.3: + resolution: {integrity: sha512-D9cPgkvLlV3t3IzL0D0YLvGA9Ahk4PcvVwUbN0dSGr1aP0Nrt4AEnTUbuGvquEC0mA64Gqt1fzirlRs5ibXx8g==} + sqlstring@2.3.3: resolution: {integrity: sha512-qC9iz2FlN7DQl3+wjwn3802RTyjCx7sDvfQEXchwa6CWOx07/WVfh91gBmQ9fahw8snwGEWU3xGzOt4tFyHLxg==} engines: {node: '>= 0.6'} @@ -8203,6 +8478,10 @@ packages: resolution: {integrity: sha512-gmBGslpoQJtgnMAvOVqGZpEz9dyoKTCzy2nfz/n8aIFhN/jCE/rCmcxabB6jOOHV+0WNnylOxaxBQPSvcWklhA==} engines: {node: '>=12'} + strip-bom@3.0.0: + resolution: {integrity: sha512-vavAMRXOgBVNF6nyEEmL3DBK19iRpDcoIwW+swQ+CbGiu7lju6t+JklA1MHweoWtadgt4ISVUsXLyDq34ddcwA==} + engines: {node: '>=4'} + strip-final-newline@4.0.0: resolution: {integrity: sha512-aulFJcD6YK8V1G7iRB5tigAP4TsHBZZrOV8pjV++zdUwmeV8uzbY7yn6h9MswN62adStNZFuCIx4haBnRuMDaw==} engines: {node: '>=18'} @@ -8354,6 +8633,10 @@ packages: resolution: {integrity: sha512-Y1KQBgDd/NUc+LfOtKS6mNsC9CCaH+m2P1RoIZy7RAPo3C3/t8X45+zgut31cRZtZ3xKPjfn3TkGTrctC2TQIQ==} hasBin: true + tmp@0.2.5: + resolution: {integrity: sha512-voyz6MApa1rQGUxT3E+BK7/ROe8itEx7vD8/HEvt4xwXucvQ5G5oeEiHkmHZJuBO21RpOf+YYm9MOivj709jow==} + engines: {node: '>=14.14'} + to-regex-range@5.0.1: resolution: {integrity: sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==} engines: {node: '>=8.0'} @@ -8394,6 +8677,10 @@ packages: ts-morph@26.0.0: resolution: {integrity: sha512-ztMO++owQnz8c/gIENcM9XfCEzgoGphTv+nKpYNM1bgsdOVC/jRZuEBf6N+mLLDNg68Kl+GgUZfOySaRiG1/Ug==} + tsconfig-paths@4.2.0: + resolution: {integrity: sha512-NoZ4roiN7LnbKn9QqE1amc9DJfzvZXxF4xDavcOWt1BPkdx+m+0gJuPM+S0vCe7zTJMYUP0R8pO2XMr+Y8oLIg==} + engines: {node: '>=6'} + tsdown@0.21.4: resolution: {integrity: sha512-Q/kBi8SXkr4X6JI/NAZKZY1UuiEcbuXtIskL4tZCsgpDiEPM/2W6lC+OonNA31S+V3KsWedFvbFDBs23hvt+Aw==} engines: {node: '>=20.19.0'} @@ -8843,6 +9130,9 @@ packages: resolution: {integrity: sha512-3hu+tD8YzSLGuFYtPRb48vdhKMi0KQV5sn+uWr8+7dMEq/2G/dtLrdDinkLjqq5TIbIBjYJ4Ax/n3YiaW7QM8A==} engines: {node: 20 || >=22} + wcwidth@1.0.1: + resolution: {integrity: sha512-XHPEwS0q6TaxcvG85+8EYkbiCux2XtWG2mkc47Ng2A77BQu9+DqIOJldST4HgPkuea7dvKSj5VgX3P1d4rW8Tg==} + web-streams-polyfill@3.3.3: resolution: {integrity: sha512-d2JWLCivmZYTSIoge9MsgFCZrt571BikcWGYkjC1khllbTeDlGqZ2D8vD8E/lJa8WGWbb7Plm8/XJYV7IJHZZw==} engines: {node: '>= 8'} @@ -9508,17 +9798,14 @@ snapshots: dependencies: '@emnapi/wasi-threads': 1.1.0 tslib: 2.8.1 - optional: true '@emnapi/runtime@1.7.1': dependencies: tslib: 2.8.1 - optional: true '@emnapi/wasi-threads@1.1.0': dependencies: tslib: 2.8.1 - optional: true '@emotion/is-prop-valid@1.4.0': dependencies: @@ -10287,6 +10574,14 @@ snapshots: dependencies: minipass: 7.1.3 + '@jest/diff-sequences@30.3.0': {} + + '@jest/get-type@30.1.0': {} + + '@jest/schemas@30.0.5': + dependencies: + '@sinclair/typebox': 0.34.48 + '@jridgewell/gen-mapping@0.3.13': dependencies: '@jridgewell/sourcemap-codec': 1.5.5 @@ -10317,6 +10612,8 @@ snapshots: '@kikobeats/time-span@1.0.11': optional: true + '@ltd/j-toml@1.38.0': {} + '@mantine/core@8.3.18(@mantine/hooks@8.3.18(react@19.2.4))(@types/react@19.2.14)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)': dependencies: '@floating-ui/react': 0.27.16(react-dom@19.2.4(react@19.2.4))(react@19.2.4) @@ -10398,6 +10695,12 @@ snapshots: chevrotain: 10.5.0 lilconfig: 2.1.0 + '@napi-rs/wasm-runtime@0.2.4': + dependencies: + '@emnapi/core': 1.7.1 + '@emnapi/runtime': 1.7.1 + '@tybys/wasm-util': 0.9.0 + '@napi-rs/wasm-runtime@1.1.1': dependencies: '@emnapi/core': 1.7.1 @@ -10433,6 +10736,36 @@ snapshots: semver: 7.7.4 optional: true + '@nx/nx-darwin-arm64@22.6.1': + optional: true + + '@nx/nx-darwin-x64@22.6.1': + optional: true + + '@nx/nx-freebsd-x64@22.6.1': + optional: true + + '@nx/nx-linux-arm-gnueabihf@22.6.1': + optional: true + + '@nx/nx-linux-arm64-gnu@22.6.1': + optional: true + + '@nx/nx-linux-arm64-musl@22.6.1': + optional: true + + '@nx/nx-linux-x64-gnu@22.6.1': + optional: true + + '@nx/nx-linux-x64-musl@22.6.1': + optional: true + + '@nx/nx-win32-arm64-msvc@22.6.1': + optional: true + + '@nx/nx-win32-x64-msvc@22.6.1': + optional: true + '@oxc-parser/binding-android-arm64@0.104.0': optional: true @@ -11240,6 +11573,8 @@ snapshots: '@sentry/core': 10.45.0 vue: 3.5.30(typescript@6.0.2) + '@sinclair/typebox@0.34.48': {} + '@sindresorhus/is@4.6.0': optional: true @@ -11404,6 +11739,10 @@ snapshots: tslib: 2.8.1 optional: true + '@tybys/wasm-util@0.9.0': + dependencies: + tslib: 2.8.1 + '@types/aws-lambda@8.10.161': {} '@types/babel__core@7.20.5': @@ -11919,6 +12258,17 @@ snapshots: '@vue/shared@3.5.30': {} + '@yarnpkg/lockfile@1.1.0': {} + + '@yarnpkg/parsers@3.0.2': + dependencies: + js-yaml: 3.14.2 + tslib: 2.8.1 + + '@zkochan/js-yaml@0.0.7': + dependencies: + argparse: 2.0.1 + abbrev@3.0.1: {} abstract-logging@2.0.1: {} @@ -11968,6 +12318,8 @@ snapshots: json-schema-traverse: 1.0.0 require-from-string: 2.0.2 + ansi-colors@4.1.3: {} + ansi-regex@5.0.1: {} ansi-regex@6.2.2: {} @@ -11976,10 +12328,16 @@ snapshots: dependencies: color-convert: 2.0.1 + ansi-styles@5.2.0: {} + ansi-styles@6.2.3: {} ansis@4.2.0: {} + argparse@1.0.10: + dependencies: + sprintf-js: 1.0.3 + argparse@2.0.1: {} args-tokenizer@0.3.0: {} @@ -12058,6 +12416,8 @@ snapshots: async@3.2.6: {} + asynckit@0.4.0: {} + atomic-sleep@1.0.0: {} attributes-parser@2.2.3: @@ -12096,6 +12456,14 @@ snapshots: aws-ssl-profiles@1.1.2: {} + axios@1.13.6: + dependencies: + follow-redirects: 1.15.11 + form-data: 4.0.5 + proxy-from-env: 1.1.0 + transitivePeerDependencies: + - debug + b4a@1.7.3: optional: true @@ -12408,6 +12776,12 @@ snapshots: dependencies: clsx: 2.1.1 + cli-cursor@3.1.0: + dependencies: + restore-cursor: 3.1.0 + + cli-spinners@2.6.1: {} + cli-width@4.1.0: {} cliui@8.0.1: @@ -12415,13 +12789,14 @@ snapshots: string-width: 4.2.3 strip-ansi: 6.0.1 wrap-ansi: 7.0.0 - optional: true clone-response@1.0.3: dependencies: mimic-response: 1.0.1 optional: true + clone@1.0.4: {} + clsx@2.1.1: {} code-block-writer@13.0.3: {} @@ -12446,6 +12821,10 @@ snapshots: colorette@2.0.20: {} + combined-stream@1.0.8: + dependencies: + delayed-stream: 1.0.0 + commander@7.2.0: {} component-register@0.8.8: {} @@ -12612,6 +12991,10 @@ snapshots: deepmerge-ts@7.1.5: {} + defaults@1.0.4: + dependencies: + clone: 1.0.4 + defer-to-connect@2.0.1: optional: true @@ -12621,6 +13004,8 @@ snapshots: es-errors: 1.3.0 gopd: 1.2.0 + define-lazy-prop@2.0.0: {} + define-properties@1.2.1: dependencies: define-data-property: 1.1.4 @@ -12636,6 +13021,8 @@ snapshots: esprima: 4.0.1 optional: true + delayed-stream@1.0.0: {} + denque@2.1.0: {} depd@2.0.0: {} @@ -12680,6 +13067,12 @@ snapshots: domelementtype: 2.3.0 domhandler: 4.3.1 + dotenv-expand@11.0.7: + dependencies: + dotenv: 16.6.1 + + dotenv@16.4.7: {} + dotenv@16.6.1: {} dotenv@17.3.1: {} @@ -12722,6 +13115,10 @@ snapshots: '@standard-schema/spec': 1.1.0 fast-check: 3.23.2 + ejs@3.1.10: + dependencies: + jake: 10.9.4 + electron-to-chromium@1.5.267: {} emoji-regex@8.0.0: {} @@ -12746,6 +13143,10 @@ snapshots: graceful-fs: 4.2.11 tapable: 2.3.0 + enquirer@2.3.6: + dependencies: + ansi-colors: 4.1.3 + ensure-error@3.0.1: optional: true @@ -12989,6 +13390,8 @@ snapshots: escape-html@1.0.3: {} + escape-string-regexp@1.0.5: {} + escape-string-regexp@4.0.0: {} escodegen@2.1.0: @@ -13128,8 +13531,7 @@ snapshots: acorn-jsx: 5.3.2(acorn@8.16.0) eslint-visitor-keys: 5.0.1 - esprima@4.0.1: - optional: true + esprima@4.0.1: {} esquery@1.6.0: dependencies: @@ -13328,6 +13730,10 @@ snapshots: node-domexception: 1.0.0 web-streams-polyfill: 3.3.3 + figures@3.2.0: + dependencies: + escape-string-regexp: 1.0.5 + figures@6.1.0: dependencies: is-unicode-supported: 2.1.0 @@ -13338,6 +13744,10 @@ snapshots: file-uri-to-path@1.0.0: {} + filelist@1.0.6: + dependencies: + minimatch: 5.1.9 + fill-range@7.1.1: dependencies: to-regex-range: 5.0.1 @@ -13377,6 +13787,8 @@ snapshots: flatted: 3.3.3 keyv: 4.5.4 + flat@5.0.2: {} + flatted@3.3.3: {} follow-redirects@1.15.11: {} @@ -13390,6 +13802,14 @@ snapshots: cross-spawn: 7.0.6 signal-exit: 4.1.0 + form-data@4.0.5: + dependencies: + asynckit: 0.4.0 + combined-stream: 1.0.8 + es-set-tostringtag: 2.1.0 + hasown: 2.0.2 + mime-types: 2.1.35 + formatly@0.3.0: dependencies: fd-package-json: 2.0.0 @@ -13404,6 +13824,10 @@ snapshots: fresh@2.0.0: {} + front-matter@4.0.2: + dependencies: + js-yaml: 3.14.2 + fs-constants@1.0.0: {} fs-minipass@3.0.3: @@ -13437,8 +13861,7 @@ snapshots: gensync@1.0.0-beta.2: {} - get-caller-file@2.0.5: - optional: true + get-caller-file@2.0.5: {} get-intrinsic@1.3.0: dependencies: @@ -13802,6 +14225,8 @@ snapshots: call-bound: 1.0.4 has-tostringtag: 1.0.2 + is-docker@2.2.1: {} + is-extglob@2.1.1: {} is-finalizationregistry@1.1.1: @@ -13829,6 +14254,8 @@ snapshots: dependencies: html-tags: 3.3.1 + is-interactive@1.0.0: {} + is-map@2.0.3: {} is-negative-zero@2.0.3: {} @@ -13878,6 +14305,8 @@ snapshots: dependencies: which-typed-array: 1.1.19 + is-unicode-supported@0.1.0: {} + is-unicode-supported@2.1.0: {} is-url-http@2.3.13: @@ -13902,6 +14331,10 @@ snapshots: is-what@4.1.16: {} + is-wsl@2.2.0: + dependencies: + is-docker: 2.2.1 + isarray@2.0.5: {} isbot-fast@1.2.0: {} @@ -13933,6 +14366,19 @@ snapshots: dependencies: '@isaacs/cliui': 9.0.0 + jake@10.9.4: + dependencies: + async: 3.2.6 + filelist: 1.0.6 + picocolors: 1.1.1 + + jest-diff@30.3.0: + dependencies: + '@jest/diff-sequences': 30.3.0 + '@jest/get-type': 30.1.0 + chalk: 4.1.2 + pretty-format: 30.3.0 + jiti@2.6.1: {} jju@1.4.0: {} @@ -13941,6 +14387,11 @@ snapshots: js-tokens@4.0.0: {} + js-yaml@3.14.2: + dependencies: + argparse: 1.0.10 + esprima: 4.0.1 + js-yaml@4.1.1: dependencies: argparse: 2.0.1 @@ -13970,6 +14421,8 @@ snapshots: json5@2.2.3: {} + jsonc-parser@3.2.0: {} + jsonc-parser@3.3.1: {} jsx-ast-utils@3.3.5: @@ -14081,6 +14534,8 @@ snapshots: lines-and-columns@1.2.4: optional: true + lines-and-columns@2.0.3: {} + locate-path@3.0.0: dependencies: p-locate: 3.0.0 @@ -14101,6 +14556,11 @@ snapshots: lodash@4.17.23: optional: true + log-symbols@4.1.0: + dependencies: + chalk: 4.1.2 + is-unicode-supported: 0.1.0 + long@5.3.2: {} longest-streak@3.1.0: {} @@ -14377,8 +14837,14 @@ snapshots: braces: 3.0.3 picomatch: 2.3.1 + mime-db@1.52.0: {} + mime-db@1.54.0: {} + mime-types@2.1.35: + dependencies: + mime-db: 1.52.0 + mime-types@3.0.2: dependencies: mime-db: 1.54.0 @@ -14388,6 +14854,8 @@ snapshots: mime@3.0.0: optional: true + mimic-fn@2.1.0: {} + mimic-response@1.0.1: optional: true @@ -14427,10 +14895,18 @@ snapshots: dependencies: brace-expansion: 5.0.2 + minimatch@10.2.4: + dependencies: + brace-expansion: 5.0.2 + minimatch@3.1.5: dependencies: brace-expansion: 1.1.12 + minimatch@5.1.9: + dependencies: + brace-expansion: 2.0.2 + minimatch@8.0.4: dependencies: brace-expansion: 2.0.2 @@ -14596,6 +15072,10 @@ snapshots: shell-quote: 1.8.3 which: 5.0.0 + npm-run-path@4.0.1: + dependencies: + path-key: 3.1.1 + npm-run-path@6.0.0: dependencies: path-key: 4.0.0 @@ -14608,6 +15088,58 @@ snapshots: null-prototype-object@1.2.5: optional: true + nx@22.6.1: + dependencies: + '@ltd/j-toml': 1.38.0 + '@napi-rs/wasm-runtime': 0.2.4 + '@yarnpkg/lockfile': 1.1.0 + '@yarnpkg/parsers': 3.0.2 + '@zkochan/js-yaml': 0.0.7 + axios: 1.13.6 + cli-cursor: 3.1.0 + cli-spinners: 2.6.1 + cliui: 8.0.1 + dotenv: 16.4.7 + dotenv-expand: 11.0.7 + ejs: 3.1.10 + enquirer: 2.3.6 + figures: 3.2.0 + flat: 5.0.2 + front-matter: 4.0.2 + ignore: 7.0.5 + jest-diff: 30.3.0 + jsonc-parser: 3.2.0 + lines-and-columns: 2.0.3 + minimatch: 10.2.4 + npm-run-path: 4.0.1 + open: 8.4.2 + ora: 5.3.0 + picocolors: 1.1.1 + resolve.exports: 2.0.3 + semver: 7.7.4 + string-width: 4.2.3 + tar-stream: 2.2.0 + tmp: 0.2.5 + tree-kill: 1.2.2 + tsconfig-paths: 4.2.0 + tslib: 2.8.1 + yaml: 2.8.3 + yargs: 17.7.2 + yargs-parser: 21.1.1 + optionalDependencies: + '@nx/nx-darwin-arm64': 22.6.1 + '@nx/nx-darwin-x64': 22.6.1 + '@nx/nx-freebsd-x64': 22.6.1 + '@nx/nx-linux-arm-gnueabihf': 22.6.1 + '@nx/nx-linux-arm64-gnu': 22.6.1 + '@nx/nx-linux-arm64-musl': 22.6.1 + '@nx/nx-linux-x64-gnu': 22.6.1 + '@nx/nx-linux-x64-musl': 22.6.1 + '@nx/nx-win32-arm64-msvc': 22.6.1 + '@nx/nx-win32-x64-msvc': 22.6.1 + transitivePeerDependencies: + - debug + nypm@0.6.2: dependencies: citty: 0.1.6 @@ -14668,6 +15200,16 @@ snapshots: dependencies: wrappy: 1.0.2 + onetime@5.1.2: + dependencies: + mimic-fn: 2.1.0 + + open@8.4.2: + dependencies: + define-lazy-prop: 2.0.0 + is-docker: 2.2.1 + is-wsl: 2.2.0 + opener@1.5.2: {} optionator@0.9.4: @@ -14679,6 +15221,17 @@ snapshots: type-check: 0.4.0 word-wrap: 1.2.5 + ora@5.3.0: + dependencies: + bl: 4.1.0 + chalk: 4.1.2 + cli-cursor: 3.1.0 + cli-spinners: 2.6.1 + is-interactive: 1.0.0 + log-symbols: 4.1.0 + strip-ansi: 6.0.1 + wcwidth: 1.0.1 + own-keys@1.0.1: dependencies: get-intrinsic: 1.3.0 @@ -15181,6 +15734,12 @@ snapshots: prettier@3.8.1: {} + pretty-format@30.3.0: + dependencies: + '@jest/schemas': 30.0.5 + ansi-styles: 5.2.0 + react-is: 18.3.1 + pretty-ms@7.0.1: dependencies: parse-ms: 2.1.0 @@ -15360,6 +15919,8 @@ snapshots: react-is@16.13.1: {} + react-is@18.3.1: {} + react-number-format@5.4.4(react-dom@19.2.4(react@19.2.4))(react@19.2.4): dependencies: react: 19.2.4 @@ -15455,8 +16016,7 @@ snapshots: remeda@2.33.4: {} - require-directory@2.1.1: - optional: true + require-directory@2.1.1: {} require-from-string@2.0.2: {} @@ -15483,6 +16043,8 @@ snapshots: resolve-pkg-maps@1.0.0: {} + resolve.exports@2.0.3: {} + resolve@1.22.10: dependencies: is-core-module: 2.16.1 @@ -15500,6 +16062,11 @@ snapshots: lowercase-keys: 2.0.0 optional: true + restore-cursor@3.1.0: + dependencies: + onetime: 5.1.2 + signal-exit: 3.0.7 + ret@0.5.0: {} retry@0.12.0: {} @@ -15907,6 +16474,8 @@ snapshots: split2@4.2.0: {} + sprintf-js@1.0.3: {} + sqlstring@2.3.3: {} squirrelly@9.1.0: {} @@ -16038,6 +16607,8 @@ snapshots: dependencies: ansi-regex: 6.2.2 + strip-bom@3.0.0: {} + strip-final-newline@4.0.0: {} strip-json-comments@2.0.1: {} @@ -16198,6 +16769,8 @@ snapshots: dependencies: tldts-core: 7.0.25 + tmp@0.2.5: {} + to-regex-range@5.0.1: dependencies: is-number: 7.0.0 @@ -16227,6 +16800,12 @@ snapshots: '@ts-morph/common': 0.27.0 code-block-writer: 13.0.3 + tsconfig-paths@4.2.0: + dependencies: + json5: 2.2.3 + minimist: 1.2.8 + strip-bom: 3.0.0 + tsdown@0.21.4(oxc-resolver@11.19.1)(synckit@0.11.12)(typescript@6.0.2): dependencies: ansis: 4.2.0 @@ -16712,6 +17291,10 @@ snapshots: walk-up-path@4.0.0: {} + wcwidth@1.0.1: + dependencies: + defaults: 1.0.4 + web-streams-polyfill@3.3.3: {} webdriver-bidi-protocol@0.4.1: @@ -16847,8 +17430,7 @@ snapshots: xml-name-validator@4.0.0: {} - y18n@5.0.8: - optional: true + y18n@5.0.8: {} yallist@3.1.1: {} @@ -16859,8 +17441,7 @@ snapshots: yaml@2.8.3: {} - yargs-parser@21.1.1: - optional: true + yargs-parser@21.1.1: {} yargs@17.7.2: dependencies: @@ -16871,7 +17452,6 @@ snapshots: string-width: 4.2.3 y18n: 5.0.8 yargs-parser: 21.1.1 - optional: true yauzl@2.10.0: dependencies: diff --git a/scripts/helpers/boilerplates.ts b/scripts/helpers/boilerplates.ts deleted file mode 100644 index 61b486cc9..000000000 --- a/scripts/helpers/boilerplates.ts +++ /dev/null @@ -1,30 +0,0 @@ -import { existsSync } from "node:fs"; -import { opendir, readFile } from "node:fs/promises"; -import { dirname, join, resolve } from "node:path"; -import { fileURLToPath } from "node:url"; - -const __filename = fileURLToPath(import.meta.url); -const __dirname = dirname(__filename); -const __boilerplates = resolve(__dirname, "..", "..", "boilerplates"); - -export async function* walk(dir: string, maxDepth = Infinity): AsyncGenerator { - if (maxDepth < 0 || !existsSync(dir)) return; - for await (const d of await opendir(dir)) { - const entry = join(dir, d.name); - if (d.isDirectory()) { - yield* walk(entry, maxDepth - 1); - } else if (d.isFile()) yield entry; - } -} - -export async function* listBoilerplates(): AsyncGenerator { - const gen = walk(__boilerplates, 1); - - for await (const filepath of gen) { - if (filepath.endsWith("package.json")) { - const content = JSON.parse(await readFile(filepath, "utf-8")); - - yield content.name; - } - } -} diff --git a/scripts/new-boilerplate.ts b/scripts/new-boilerplate.ts index fa65a1da5..3022d5c23 100644 --- a/scripts/new-boilerplate.ts +++ b/scripts/new-boilerplate.ts @@ -1,14 +1,12 @@ -import { mkdir, readFile, writeFile } from "node:fs/promises"; +import { mkdir, writeFile } from "node:fs/promises"; import { dirname, join, resolve } from "node:path"; import { fileURLToPath } from "node:url"; import { defineCommand, runMain } from "citty"; import sharedPackageJson from "../boilerplates/shared/package.json" with { type: "json" }; -import { listBoilerplates } from "./helpers/boilerplates.js"; const __filename = fileURLToPath(import.meta.url); const __dirname = dirname(__filename); const __boilerplates = resolve(__dirname, "..", "boilerplates"); -const __packages = resolve(__dirname, "..", "packages"); const validNameRe = /[a-z0-9-.]/; @@ -44,6 +42,9 @@ async function createPackageJson(name: string) { dependencies: { "@batijs/core": "workspace:*", }, + nx: { + tags: ["type:boilerplate"], + }, files: ["dist/"], }; @@ -77,28 +78,12 @@ async function createTsconfig(name: string) { await writeFile(dest, JSON.stringify(json, undefined, 2), "utf-8"); } -async function updateCliDependencies() { - const deps: string[] = []; - - for await (const dep of listBoilerplates()) { - deps.push(`${dep}#build`); - } - - const cliTurboJson = join(__packages, "cli", "turbo.json"); - const content = JSON.parse(await readFile(cliTurboJson, "utf-8")); - - content.tasks.build.dependsOn = ["^build", ...deps.sort()]; - - await writeFile(cliTurboJson, JSON.stringify(content, undefined, 2), "utf-8"); -} - async function exec(name: string) { const root = await createFolders(name); await createPackageJson(name); await createBatiConfig(name); await createTsconfig(name); - await updateCliDependencies(); return root; } @@ -126,3 +111,4 @@ const main = defineCommand({ }); runMain(main); + diff --git a/turbo.json b/turbo.json deleted file mode 100644 index 2190bf9a3..000000000 --- a/turbo.json +++ /dev/null @@ -1,17 +0,0 @@ -{ - "$schema": "https://turbo.build/schema.json", - "tasks": { - "build": { - "inputs": ["$TURBO_DEFAULT$", "files/**", "hooks/**"], - "dependsOn": ["^build"], - "outputs": ["dist/**"] - }, - "test": { - "dependsOn": ["build"] - }, - "check-types": {} - }, - "remoteCache": { - "timeout": 1 - } -} From 891a7adb9b17de5aef2313e13e44900a598e612c Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Wed, 25 Mar 2026 14:39:41 +0000 Subject: [PATCH 03/23] Add .nx/workspace-data to .gitignore Co-authored-by: magne4000 <1098371+magne4000@users.noreply.github.com> Agent-Logs-Url: https://github.com/vikejs/bati/sessions/0c41f2d5-ee26-4f6b-ac72-d4f05545b7fc --- .gitignore | 1 + .../5a8293ec1b12419889284f7db84b9a04.db | Bin 86016 -> 0 bytes .../5a8293ec1b12419889284f7db84b9a04.lock | 0 .nx/workspace-data/file-map.json | 2964 -- .nx/workspace-data/lockfile-dependencies.hash | 1 - .nx/workspace-data/lockfile-nodes.hash | 1 - .nx/workspace-data/nx_files.nxt | Bin 48396 -> 0 bytes .../parsed-lock-file.dependencies.json | 15127 ------ .../parsed-lock-file.nodes.json | 20245 -------- .nx/workspace-data/project-graph.json | 38442 ---------------- .nx/workspace-data/project-graph.lock | 0 .nx/workspace-data/source-maps.json | 8346 ---- 12 files changed, 1 insertion(+), 85126 deletions(-) delete mode 100644 .nx/workspace-data/5a8293ec1b12419889284f7db84b9a04.db delete mode 100644 .nx/workspace-data/5a8293ec1b12419889284f7db84b9a04.lock delete mode 100644 .nx/workspace-data/file-map.json delete mode 100644 .nx/workspace-data/lockfile-dependencies.hash delete mode 100644 .nx/workspace-data/lockfile-nodes.hash delete mode 100644 .nx/workspace-data/nx_files.nxt delete mode 100644 .nx/workspace-data/parsed-lock-file.dependencies.json delete mode 100644 .nx/workspace-data/parsed-lock-file.nodes.json delete mode 100644 .nx/workspace-data/project-graph.json delete mode 100644 .nx/workspace-data/project-graph.lock delete mode 100644 .nx/workspace-data/source-maps.json diff --git a/.gitignore b/.gitignore index de1bc5dab..f231563ff 100644 --- a/.gitignore +++ b/.gitignore @@ -108,6 +108,7 @@ dist # Nx .nx/cache +.nx/workspace-data # Generated GitHub Worflow action .github/actions/bati-gen diff --git a/.nx/workspace-data/5a8293ec1b12419889284f7db84b9a04.db b/.nx/workspace-data/5a8293ec1b12419889284f7db84b9a04.db deleted file mode 100644 index f0504c6554e9f86098917114551fbebd44a4e374..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 86016 zcmeHw3!EH9wRg|V_B?xL@*vp+64;Q0BqTHGclQJWI|&H{$U6aoB+F)Zk{$M$-Pt^V zfX&+g0&*cBARvk$m#e7g^#O~u@RpRV?yE^=wzlGE0;tXi{dd3nu-mXnrjXj!pxUCWB~C!ah| zAnEAutN_Kb73-E9zhuqd01j2p{$Rk4!Ag6r(%A;;;ksqZm#ke^UcRd3xFt)=>rY)`d)rC($fVJ5Ye&Q7^qf-sZ@nEO8rY_d_?htB z7#%4W7zaj*|02>(_~oV%UFPrjJ*JQS@6U1rgZ*b!I%@uGII?5#thZM1TOIvexfkZ0&h{F-JM90_5q%A= zA~Sn;W!K0D#82KN@ddJax1V1r2G_f>I0?(j-|-v+!Re|2ql( z4gZ7^2qh3oAe2BTflvaW1VRaf5(p&_N+6U#D1lG{|M(IZABjzyyyCRBQ1R#1H+3}?V{gSCh+Pz09-A0_F8Y~hf7Fde zBj1bcjckt0lm1(JU=-myo+(?#bV;+dlHA`%WA1dxaBSBATATjmx{hWCgy2L|tM*kmBE!>V3y3tkWay4= zx+P76|3P)G8&GX&AF5Ti?Bb|&Poq^q9j57OCChRw*K}>$vI3&Y&VfPjksCpzQX<`T zR9CZfpmbGRHyo?pzRtnw*=K{V;ek#W-hA08OqU!-wM#0r($bf#r%t_8iaKz^!j z8waE~)YU#%=`3_^=IBiCNZEk;bn>)xP17~iB2T=e*M$#cogICJ;pzyoIg|`)fk$lG zs;QPtQ+F++KCU{o0`s98K{lI`8Ki4KXPB0z>$YQQr9hNG*1c<}(!-As+nXg@8VE(R zG}p9UT`w7$WoS;xt_x-RaHTL*>8lO$gqC-NYycsQ4jt%>lB+xL^enfe2K9CH^bdD# z=>f@b?XQSaTUQNNEy0)s z;lPLsYV;pNt-rH>M3vKJ&6+ORwx)wn9UY#$X2C04A7n%QJ=IRJkB)b^YyhEQk-ouO zZdxTMt014CMsQH=s9}`T7$u0tH8mUlIF@d?s$L(V13m4-LsjtDEmrx)x?YQHIMXF~ ziO7>TbVG%KW0u@fV=sp)gWE^E7e{-C$<{(Lz#YpmO#=i3?-exNvFc-BYk&XNo=Ty; zuf1nit=hrA_nLPo2)G%B0(o^EONHTTl2$l&eZX=v+UDVEPv;zOs%*?`mP`;R;4SDO zOlX!14}jV&{5OWNQ}iw_qM}RTU-*2ZpGrLO%mAObuorK*I!Py7d+1_Mm z`UJ^RLBclt<3c;2rc$Xsp^~N(=p1j7Y|NS#k|SkZ|DnKu0Z@XzS=M!-tM#P}hLv#4N$1 z)S&esd8htlIyDNNwP9@_6Sf1bhPT*MoqBU&zM$B7ULF>bW{FM<CB^SjFJ6sTz4QFoV>e-ay|#FU20|Wn>G+vqmHUkJmPASA(^^1anm&;;#O_ zehQxJrPzRm$~CgOx{hI3nrXu03&3<{@zF_!2B79xmZq6Rdho=px{&E?;x{@WYw)N^ zmtb9U^^yydmu8stH+gflzc+ZX;s-ceB^W?3)9B=J9~jEub>5}=?T}?-4m=fy%<`bM zKtEMSGwcITg-k1z9v|IA(Ygk67re7-$#x7IhKZxsyGVV#eRPbXT@bWs!FyFAuc4vB z^iW6Bm6D?8c~RMdmcR%FK|`Y**VJL)!IW7SHd}Xm<`LF#3&xsGUh5Kw8~!uv!)ai! zI@H_lGnW{13mUA#oUb{suECNG3r^6Mfv)~qe;WN10IFQG zWWyT-i-8HkECC_Wk?Iu$iX*F_pH%?!75OyKO?aC@uO(|>Ku}j1Sp|Kp0?;vG-f~=6 z;XzX{xE|DXMT%E@K}m!z15+3ZFup)rgC_?wSp7vkpd_*;^?-H=lZ-_aU)2EBiwFqT zpL!P#XoswdZcqzhzJpmBMyCyLtO1K44AXiSIJJ;boJA>Mv4`~)x(X{1DD?1>HA)GePODLsij z={3pyxu51=$=#K9Q+?T6a=Q|l%qrzoG%=3hm)@>Et$RX!St)i8Hqn+zn}S~{A~83{4L2-l}l1zQx?RP{L$$j zWnYm$nmsHvJ^79JH#05qHN+uYVPXfF*z-BUiQnW%Tl+; zpUvEt?orm}{+K#CwJ+o5XDEqmcYb~Hj%+-CalAF_Cb!9-$+c(SPn?!`P(CBEE%B51 zhV;dWnWNYZ!porqLJ5Qt_`fWHNiib|O9)Zz!D48`ngZIGp-E4Z8=$6wG68xvS!ir1 z!Hpk~8?ab|O|3-qW%&33t;2Do?~@x~K!k5B74${Wc0gHx4<6|$%8Gm^!kR@EUeFGq zB18J#98gt2n{+kl2}(jPz?yG>u?tpA z_;%1;>AUm}sK7ediNJ;iiwd;Zwsq+{v|(V)1Pdjs;=m8qGFX|U$H|Qn=n%wqplYC; z!KWk$KzfYvf{!^1TBCu&1D`+u(xgY}9r%icPXzb^0X8}qC&0KUeVg7Pt2Y>Vi7gbq zW?)%&OVT5x8XeY6(1%>Gu@Ku3tb2y^Epo#I1ql=@qKboV1?IGpEj>&rz&-+NZ3$E_ zV$gt9(v`kRD*=&#x(`Ycs8}Ec6O6XfL$oiTqQOlAtPWu41lbZj85(>!IyO8@YM(Y#=^OM0(Ns&e38v4I3dTtI+?T#id66$(_>cfS2W%i< zUW0$6uhBd38AmJw8tEUXjO2Sk`YL4xrj`xj-@nG~}k@M$S1^_`i&N)rSN zE$O&$(J`f4Sc60xt#mUb5p9pswUh+0GfE$$ZGz4L4#Pla!Np2u^KIsa|3o+_Rm(x3lky*Nl^-8quNgtti5Idf985#eg%}%Kk!&jyod-#U+sKE#x@ zn{g7YR_77|#6WcpX%n)`A>BqfAvUUAgcD+o+DWgAcBdWWI$~kkJ~5`ji_&OI8m4SS zqfw2CLbMJI(Hn>vXpr7O%styk6^L19fD$0)n|?|lnrZqd0b-8nB?O4orH5RHMY{3Z zyhN@eCX};i1&E=fN^c<6kS@XrF?npI1c+T@3pxJ}LI1)(p#(w+gc1lP5K17FKq!Gw z0-*##34{^|B@jv=l)yi+1jzaS@caLt_yLDq3ndUrAe2BTflvaW1VRaf5(p&_N+6U# zD1lG{AOUv%{~aQWeEyyMqWrkrOSv!RF3PRT&CI@)eLQ8H}4NcX2((_>RFq`r{4Ftsi6O8krQ^W!JO>HpW{2jnZ|jdHQ+y{7Ls-P$zJ)Y>#A_Co9nu?u7CVl$#|MIVdq zjdn##(RAdek$WQNMox}QkzSR)(fGiMYZ8)mNK%%;B~>_dGc-)|&O~mR*?s4B^7rT3 zimL-W;Re%Z|gzW2$( zi9Q_hg5%&jOf+F!7sRiz%NY|mjseT{ERsK?*AtE3%tT{K6~W!8xQXzaPPUoVjqq; zXmRlFr3AkFw}nLkckxUh2k-keg|94>eK_JT#=*Or3B2}`Vr$S>#I=sYpZ;}%?|Za( zY=8$(b~5bwQ=1%q%OJsbTZLo%<{(~m9K7xK6do%q^x<$)tnt7p2XB9xz_(P2M+dDT zt#5GiKx4k_;i@h5SP}T{*LyZ0!^<)+Tz?s|GrN*phbiP3wY2-b2X*8Ue^N}#A9?68cp+? zhBLQ+uu&Lb!N4|Kjdtpu&A&OWs`KaedFT7knKo+0>|XBCSCpMstv&w2|)-+-VB z1liI;{+=Ey6i9OjUOaBk!4LfffgheJ&I{NhBb&#&1V7C!&JFO$d(YvgkO>+ZRXmc% zH@s;a{*dbk{?K0(=J?G=-g_QCi^AQ)Y#)xi_ZLZ6wKS}V}cZ!n&Jffa*_#{~^s!F!l9N-c4m&cz? z@R^;(i2)w*istZ%y9hr0WN|`(M^5E)c==ldpWHX^poFB+8A@>L=F#mGy{j<3E=(a< z0S9loh`)NMjHO9)ASIpIICe;E{L|96s_1f^WL8 zm=EwsY>NZ@JL7~0ss69g^1r zH7WmEvD_3MQ_s94*a`z;b=hvs7iFRh!Bp-@=KKf$r_{4pYU&il<&&qu) zu_bnGRFm&jo=tT%&CbtAUzxcu{#v{>@$6`<9+$Z}eW$W3b)&pnnUo&iG^S~TJSF{x+|*Rg{XB7KeqrRq*xR}J zi6>(1@^#q@lb?w_t~{LbqI;EVQupQiGO73mr9JiC*z@vZk@qs)iFiDpSK|AXH&e;j z2{AR>o%};Kom!RuO=hj4rsrlCq*|ii&3!vzWe-n26WN`=HF;I^^UB>RH+FW@zNR~( zCq>Vbm&^az^lIY>AfYs{pk6o9h#*)bt{Z3&5hQpPi*AEO;$qQlut-?f(Q05LMu@BR zFYFEyrRrMJ04zw>$0!MyafMh|EQk(72^PXcT}@+&Ad#(D3>hqb6^$VSkvxSkRWybS z7Fg;EDl##Xf^<2#fklbhL%V_nc484^urN`VvF?k}_@zrniLFE<$Y8OcXapGuBi0y! zo<)$sLa(q0GD!G%=>pm;EaVe}kb%L6gm$9wi;%cd=hHwTun*9XrhrD4L6Rk~$TCRM z1{zrg3EOoJsQ^hSaW;!-B1Q(=#cqg^$!KI5h(gyGEQ7@8s*;+K5M5oYW-$;K3oL`|cyA$`5I+DvK$aLdtdmxO*u*2=XHZ5g?aY(Aer z`HRkG$20yyNbjYzp~w#W5<-CZi5*9-BMxDUDPHvaT12iR-V9}0G2+wFN^c4P<}Nro9v0 znJjW0nXgRB2-$iw=nZ7P(y5$C7M_vmHZ)p;ILWA#5i*6&r#FyZ7YQdseg#T^2z(yB zfeeDV^&1V(?nqJvG6?3-&WXNwvneBFG|i&D7PBrKLHi)O)668-5x!!h&* z;#85RHxTcM9DNd^n?x30y%oksbbQDVK8S}ynzcyu;7kz$#AhMtw^T^^lOP1hBon6u z$a*Lf0%SdGq6Em~6QegqPFL`udJw~lnIk5V^Zz#|d!+mi^N;55&EKBCF8`7I?)3Z1m2jtGUw%nbJg6&-0IwtTq#$` zP0LNlrLup`zL9-7`)u~U?CsfWvR>xm%y6ch(K6FAWAkt2f0O@3{;S!ivJYp6v(@az z?CR{2Y$;pFPRmZnrj)-bZzwM-&nizT4=eX8cPqCj*C-dm$%9^{U0JUzQx+DSUPr1z)4n|>gDU;5MO8`D>& zz4UOp3fT%*rI1^?r6{>L8v$4B@dm+?O?<$qkl|G1d{aS{LHLjK1E{11=+@!?GDkccn%^SSbQ zTzNNFK9?(>!m4~?UAXnbTl?S+TKUePK%Dr5u;N+{%@Y<;ur!<%L}NXs&z|S6;xCOI+FI$_`hyxw6&p z?9GPXM#FEt;kU-|Qn~VcQuf`?i(I+DmFIEgxm@{3t~`e;&*sXrxbhKPc_vq$!Ih_T z<-@u1G_Ksjl@H^}hjQhqTzLvtK7=bD%#|l|;mT>QoZ`w!uACrce@>5c*JZBU#9?AwIhu|glJaS}^Z(=X@8n+3 zeKxl>HzWIe_NMHq*>TDbls(E)C6@VS=G=^v{xA5J?n}>2y#n9KXQrkme+uXP*Cod! zo=WUVEKNk?55~`q+wz<8=jC2`PSY=&ZfiONEEW4>*Tz=GGH|N@g6Of4cOzeo?1-4s zo6_h1rm`@~&DI5RBN;Kkz9wYJ+C)-Y7F464TP>Qoz;G5oUMKNVYl(3{HrUP-;gE2v zk*QsF;}&THNebJT5vxjXU6C~xS8YL-pb3S`f)={^xJc0@H68PE#o2uU2)n5;WGU*sY7 zL{%5-z#~R@h}(oyT2?eLu@*qeuaSKrmlkV26J$#5A`h_NHa-(;@sa+6MeNYh<>L?v|<``aiDZP5{aN09x1W0r^njqe*YOkFfH zcq-yP@tC^=9x5auY-oq-E}G%4R^FVC)r+!c5A&yejDz~t~ftdSUPh`1%kR2?uCh`zRn5vbh`aKbM&E|ac1G1RHSRh;V@&9UIVJ?6zbUy8O2ykH%3B&2Y+-0$~V#1-ZtV zhu{&ei<W5d?V#8#NdrSd_3 zD?}fN+0P<)f%tYz-Y&3!)b@?cd;5biDJ!fmh<8L!<3evPFvVeR+KV%OI}k^d$a?X8GsS^!T8q-YKoIwh zS+|OPX`IcWZN}o1-w?#VC34ILk%>4^O?^?)ZwTTGGb<|aFvOYED3ufb7=xZVHstiB zN#!-yHSB|aBeD=5uHls9j0F-)M?a;3g}wlSNR1q0L@iz{*Pn}JxvHw#kR2FYRl%=W zjeTxv0|mmwh8cZv6SSkr00m65RMjGk9Ps>f4M@6qW%faV2_)4W*%Hbm=C=gffL}Pi zfkIy(d^r&&i=zI68M#@nf_iBcpAdO8ju6759AQ#Lj{1*(`0uiSFYIv($o_v<{2(d! zaOz9x*Awq4o0Oj^JMvE_n=`*uj!zt(yDPU;xjMZmUC6A-d?CLu(UYAKe<<;?GBN%} zrj%*PJej;Iaa8)w>{F>}xi|Bd#GlE}h#!}_F!R^=aIQ`HR_d($SCV(-ej2}1xjUc9 zzL(yf+nGwG)}$xoPl3Jn1#lK%WAY7UezGn7(X5hu7)~GDlAD;nHCIeNn|>&f1`qyZ zraRl4JU*#r*Jtm~|0Z{J_Tt1-nU7}|#y_h3SK|KoyzDK>9jT{MH^&c3tV>*+UYh<% z>g7?)2jS&V0-*##34{{(8xkN+XC*@e<;by1hOJwgrdx(algmQtb~vr0s&2`Gf<;Va z>;t#@44HZ{|*A$vWX*D&ZA0OUv%I|G26i0Y*7ZsLI`b_4)955VIur`qE$SJ7PsF=hc2cPHx0Oa7)GS;G!Mo6H)L_#GP8#X-w zfE;|HCjgLxPwWH$yic$xVY(#^#Am`=;<`&{4Yqjji5>w!4n8fW1gd!OiJk#K4nCEs zw8eu@t>ik?Yk~852}}!M=Fp*aE;|7r9(+26R*W2cT1YE^4+9d@O4TeF5paG@(~c(B zk%Le4006Rsvw+}{eHrHekLxCmFylsg%C6scT=8Ex_}t) zi;TZ`$cTCWBaYL)_rK_B&Ak5+qxg}u4#dz+-Tx8m^=#Z-d=?Wo`D8R*6CSv$yDAJc z{Rnyk@jIW%dMAeSor`;)s73tpTxz(jx#!-u9{F z(IJ*gb^<^&N754jh>h`J!Ur)NPGzV z5hF~BQXqzvB<-DOEn)uu;t?R`|BoC2qW=Ggt>S;=|4&T{(TOo5h1dy5{J%92S|9xX zZwIgcF#bOTrw-%)yI_$n*^Xm_z5{Ey?mLS>M9S_k{(s4^;M)h391SAU+ni{^`2S)2 z{~_{@gz^6c>pJIBOC%J={}1E;gHw=gxL|EL5GA>KNErX$avb<@1=AX_tZT%O!ubEhsHB@3#JVq8#I(UlCmF{72dfrDvLgPvV24mGPB_sp{(pm= z>VR;%!ubEN_W{WxU^9fQQ?}!B!uf}f{}1T}p1X#8|DPD0AmyLV-WS1% zsUA2lpH2P(&c~mZT$wy9@rT62iH{{VCm{J!{OR~@@qu_bK1O~{{x|tNd4+sv)9;%e zXu1;42+WPW6MG_dW2`IY#1hf}h~60;jxK>lg@69vNTA?BA|0AC1K9>V@WI=6)8nAa z_uaF<;L$`nkkkU%9^~-1lKgvp_gr4|Ad?PDf`M!sas=0tL_K|XEG&4CONTZH*-qr} z*X$wqTYp*fXf7R+Wdqq}KJ^k_02n#RL% zK^uX1h^|!v>oM5%U5?pmli#mO@|O5+m#%_4w9_0Z_gV=57Ox{86n%49Kp^m zLh#|~MGrFS_ypqiCP&bFB_Y`L`+^5Kby#8)aodx_50DIGeLJ@lJ(^R8bODJB$r1El zP6&3?iXKg>LkN(7ksQIPj}d}_!wMc`)nVgK+&<;-okSJx>)%uKXjUCk0kW;i6Oc4H zeZ7|#JepPq2#~0g9DajJ@SQNQA+HV_ci{MDz!sWK|AN&(<19aYt4ZdYzRr6K9%R;G z!${no<@hfp3Txkn`2~+=)`9jQ+qN9OO!23FyXeu>I;6wMb}mP7Oq^7(`q82Xxpml} zKmuLz1Sb)KrBDOSu0v|j#O+^>z@+bf`P=h6NUx)jgf`-~Fb7vZMfe|cV!?y-I#fc) zb}@&yHc`A>@MwA+V2=dRR5lkLO2ny>9o)nBBahsaMAN&Bp&n_0u_u;N$*E;0J%Bu-k_td)*v7x0t{uk13uTbQX#I$>Eh=f^WXM za8AJ9b>L_S_=lLTOSU}0UU~rD`#zo5$GuxPJAlJZKkQt?Za*Xu1*@}TItSo=@>_&^ zu3X#|v>-Q?h1|4v$SO}tnQT7w+Z!;X))db0`+&HkaPX%+0^iqO{7_v)qL&JX|G`><|M9Bg=>Z;bUg7ZH`x?Rja9MFf zfJe@Ra`=a7I_{?{#nS>j;_AZTA6!ZJ|6pP9)Buloz;O7llI*bE-@CJLiZ33-F@}SG zu|nVvzdUcfFMII_Cx`yr06{-^ba7qK805Gnhrfs9W9|Ox@SmGS@Lya{ zzW-NB4@mj%=kLhxgm`~S?pcWKw=H*UE}Q*%_Oscuv&*uRm0v4gQ7%H7;>?8fuhU;kUjY&I=BK69k02(%_S6ZfDG(>`n-CpuYx1aMKJk3wONoypHh~2| zj_;4(9X~I=B0g1qU4BHqN?s*TX!=>x?M+=x#n@Z12Vxh+md7SWpNoDb+8=eJ(a85A zdn218^Q8ZV=HY)F&y+1=x}+grk*%BCYt^%c=GQ7iwV}drt=cox(N*c_F4T4nREBiV zkd3+1CB(ZjAna}Lt5y3d9FgJavIRsMqJ0EZTiSJk?m6{5#nGN5Ooe#&px|nWc%jJMq#>yd`kpGwMtKA%Wz)@*FM85 zQYyq}F`$Ch)oRtsAV+0-1=)hSNEC)f@6mv)qrZ2c+EeM|$SiN3Y|RHUM4b%CXl9Dd z{r%k|=;ksy+I+&3|B{x&7ow-H%dU(sTGE{ z^;B#812DbWlnn7N<;c2s4OM#h5n_9@WJ?2~AYWVo-S**1VW`qq8{`Qs?+DodLgY&! zpzG-AAMV`J1CrsoXL~bc1Kt}%UkT`Hkb!(hwXd^d#ISU{8SI5aK79hpA@&$*{hj?I zs+kyxke@2Pf*eRRCTWdjJ2>;?hlV5PmIhEYyql%oG}KsnIUK0H+2+*2u5 z`Nq0li)=X4CB#EHp!9n=R2kep;=MT9J506~k^v4bunkVk0qxfQ{;fTgLVI6(&#qdv zgMaTe?@$nMGYkbWLViHb&1jp4t391_ys5G=vsps?!~&9z{=o{x&h@6q)-2$Us22g4 z@~7yccL==XfJXGG0KKKsUV~KiLzJN49Sj5$U{(-aYy$$AfqG#e50PqSdy}E*6C^}c z4dA5d1Uko?Bpb6PNQlxLKxxCtUtrB+%|KMz035WN@t!DK(}`3>9WcOm^i*jVkMzbv zJ3!i^vK2rnj{Y^<8z)=SfHC4E7@)fhA3Byn5f8)w+Nn|K9B&M3F5;6IKw-Y1*m+(a z7LsNOas3OR{xt2g&iRrM!yO0s_8shD&+)Q!+#zRe188k zNG~H>FrGEUt1|$1_4oBt@LVs&1~j6M2jC$xv-s#FLnFSb0h-Pxexnnz29H`)k^}7K zYJYF=V#N<|Za4uQpxcLQU8>&>uxHJIry@qJ4!~qusr2~hCW=P)&;x_jq26|%xx|i7Unp5HrK1D9n(o*@a!8LxQ}KZ;Jr#Yo4r^J1KJ{B7T7OHBN@! z!O&tFkO1wgnhd?2q7e`C0PX9T3_UDsWGw*OzY3e^Y6&!0(}w>C;6S&e=t2#Y%4P|1 zIuGE1Qc2;(A-2#UA1whs&?YH<{vfD>&=|zoJ;2x1NJg-Y5g=btb%H>DWGxy1Rjye= zG6isWrZ}<+`dI}?G@F2+t}?O;`d9^G$^j0~jbODGltkzh=77q2PuVKl`RXpft=W=lW>|K zqv>Ka$Qg`)hSvcpjkXn(KNx^u_%}d(0ZjltzjSi0FCgKSKT2Y3ku3+BhMXA*Xhx`g zl*p>c#zGh;wvgB%plMY1DA}A&w$5tcY7HSXOvo3a!jV4+pHY9G0*zzNCV#be31^Kf*wF4eWuOvAF21l#S_N^HsryS^`@Hal*Bs zWM}~uD90SZd~XGqm%z*~x&zb+z>dgKsNQlg<4ug&CxU>4s`ea7 z(K`u@dSDGkybuGLE`uW|cqhsRAs|sW91YxHz`GEXdDpG?yi?=w^Sx#8aR7KEI7(0f zd>n8ThIazn#6o-<0t)|Ao1-dv$I~Z5Hm<;@$APeE&^-94DwzQhm<2h4`QB3cM38j2 z0Rb@%aulk!1k8TKaxUhu4oHZNa0JP5j0EvX2}p>gkR#E&#bBp{S`aVHfP~r$IU3bl zL?65^dddVO^z(BBNtu!$$+ZI#YC9Z3(#mQP-FE^KYCz;jbnjR&R6%DDf6Rb}*%3J+ z%{vB6VX(O&dKCpU!p4^FEo2oz&^(Cn10g=>3+aHVu>NJqK8;6IbTq3-^meLO)VQOi zc}FoC(f>1`VfIC?9^G5O8i#mc)rqK;aRgC`5h0GF0TDAcazvWvvet>&r~?{db5HXe zzehrRpMZv09=UpS&t{E7qQV43%mB#|8J^|8*kVYcfXFvQa#ZB|e*uKz&p(jgl{drq z|0BXwLk5Ay2%+Rs82{hTuMo!nA2D1YN@*DX-%q{)valD0@&6BGBLRU}Vf_F4=m_Kg z^Qmeecz+oGKginy!qCcL{C}3j2;#(t@&AL70m3lD`2Y0;S0sl(82_IWhv|gz|G5Nc zkVGJi|9?OO3*-Mcqy&H*c{cg}FE)*n@(0Fc1HP5(p*m4qmT@n$ibc-u@Q~Qm4K_-T49Yq_K?o_U>wSwK_i?JBt3$V_vEaL3Q;jt zTVx?*gLJ_f)Y{=oLfkfK%vK8U#>6?~QhBrA2xNl?VbN%=1QvF=-DiPpc{FBF1bk!C zEpn-Rrq2S|n-L$Wkhl<7=;gM6g}8;#nEMd$;v?16)=f;B$fgR?4~#>3qu&T*!$fR^ zko?D8pq9#K1pN@r>|2C^1*wuo<_`iEPV0wQKT6^z2hs?PL-};S5y>c{M2Z0^?9# z;Y$)ZfVER((KsZa5n6e<&jLB+CT3^08ixe1P+L#-B_W3V5G6tK9*=mtoCRj7^(4jt zIol@=2(xjL01i&;iGCZzz#!uD6jI><2fK9{xv_ zLX0TVI7vX88>bm^sdZ`44I#*g_}FL0@*4@Scs#_a9YcLBg9>Ogo8Ly8Fp){&p~uRKsbn_ z%CK6G^&hC{D$%G2K(A2_$M_sXmkxwOqmm0ujq*ZYl!)(1qe=vLaYz_?>(Ra-#1JVT zl*3Vs1L7{!sG-8fwfH!7Cmq=>ogC?qGEb$?X!^SRr|7$of$z`xOOo5O?bf#Pa<5^fS@U?3(05k`lpyP22Kc$t;NPiQSvIKRq0|K6zZ`=JcJ)uGEe4Ze>z>eAAew4f2%q8*)=q zIrsC#q4|Z86Ju}Z<|m$rwaeFKFHC+W_PFwJ%8Tw*u1Vbo*#lGY4N80JyRqlx$0F}# zx)bquKCi_0D{rQfu@hoywmbQUY&x|n|C`KOMNQAmE=aXRznlAZ!pa_=d?vCxe{1rp z=;xKYQ*P|+rhQF!L{EyICoh-(v+32w&$&r4BZ_=%NH0j6#QSFwljh-Y;Mzm?^W0V9@lBH`HGg0@Iu8y83O-58& z=_*QsXsXgjW2$r_5{XT^5^kJ?=#|nHM9PS|DA78QuSMzO^bVrjNgtti5S>lBjNU<1 zG3nCS<5GvHVM&*eb|H$BbTJT2MnacK7ZD0X&5M26Y|oB zNhT6Rg*YDwAXO7Nd*ndwFAF}|Y+zhE53Wx_miyf_)d>=`;oPP>BslCX1p7LNra%#+ zdYw%fAf&NW!y;(f{ zy^)9&Il6rY?E-R;nq~e&4ndzzDUcJ)8|V!rUeRgv26A}#)Z}r}BqRdSDR^owKlPuO zn#)i92f_PvNYn-CU*LaWhSSuwtaq>|G=v&ole|irj2%l|%{l=rApD;S$-f}iGGq+Y zomKP(a?EmN@)-$IA3|C-$dUys2Bc^+z~NL|0oS2(!corUlo4_)^yHK$U5%VdJt?(H zIsrMWNz?x!XMLB^M=c(prP=?GgVV=Dy_4WzG|8U>i6kM4zgsdOax}~Shn!Ykk{&Oe ziJX!?4z5o^j+8H^bAyLg=c2@>1Ef2OstUPD9JgQMvUB!~k||A$14SU?Go)Lf6x1) z6$!VY!SzYVB%}Jh7G|aS$|StkMe-yN`LPUuh`{{}fN;3ju^=s@Nkrw8;KVV@0Enbj zJ5p&!2LVk0h~#IR%^rl9=xvtrrnD0omq#cMOOOK*ULi;&YQo~E!{P!tFJ_K1zGsl@ z$O|_e_)kLKAC~wQfJ{D#{H>@`#Pa_k>!FKGcqfs;rhzt9x49{ zL;$=$e@p)2d~bezeqnxQKAU?h_lw-4xqEZh=g!Y<&8^7UxkGdD>}%Qm5E>1g`*}2*A$~($S%9F|$m7A0cm2PE?vOqapNoU^7{512e%x5##WOilRGs`ksW^yK) z{%!h45I69X={@Of=?&>}dQN(5>h09?sqdsdm%JmjH+6n$OKL^RPVPxfO*JK7P3}v6 zqw!li{2fXllt3tfPy(R@LJ9nHNPyZyNpK_hG=p^MkaWoJd=%1!gaG-fIewJu(|uVq1`?Jorv!-MWR&ZmK!P1z^h%QU zQUdXF=cG}tv(F$gjNussk16G(V#HfR+CvFOv9w^{Sqv|lBSyJCn_h=7TP|4R!M3HV zCA9?E=(SN2V-q;?Ik+~}b`MP6KSeA-IEPQzJFD zMM3e9ecFZX3HS#r{Tc)^bIYS#KZ0I|7|N<@5nBp;vBR@=%*rU&%~7t$$#o>&BDJs~ z*JqFpqkC195u{dvT^`pZU%ILZP124VnCL-T15}`uY;Kfvfn@g zZySRD!CVUa2T+0NnXYCIcl dzX!2}QClx^eI~UpjA{-=ZWJj65;=19{{pUv$JhV> diff --git a/.nx/workspace-data/5a8293ec1b12419889284f7db84b9a04.lock b/.nx/workspace-data/5a8293ec1b12419889284f7db84b9a04.lock deleted file mode 100644 index e69de29bb..000000000 diff --git a/.nx/workspace-data/file-map.json b/.nx/workspace-data/file-map.json deleted file mode 100644 index 0f750fc1c..000000000 --- a/.nx/workspace-data/file-map.json +++ /dev/null @@ -1,2964 +0,0 @@ -{ - "version": "6.0", - "nxVersion": "22.6.1", - "pathMappings": {}, - "nxJsonPlugins": [], - "fileMap": { - "projectFileMap": { - "@batijs/cli": [ - { - "file": "packages/cli/README.md", - "hash": "2019585873753941271" - }, - { - "file": "packages/cli/cli.js", - "hash": "6683158999131795298" - }, - { - "file": "packages/cli/index.ts", - "hash": "2929732403070346177" - }, - { - "file": "packages/cli/package.json", - "hash": "18432153438389291433", - "deps": [ - "@batijs/build", - "@batijs/compile", - "npm:@inquirer/prompts", - "npm:@types/node", - "npm:@types/which", - "npm:citty", - "npm:colorette", - "npm:esbuild", - "npm:execa", - "npm:scule", - "npm:tsdown", - "npm:typescript", - "npm:unplugin-purge-polyfills", - "npm:vite", - "@batijs/core", - "@batijs/features" - ] - }, - { - "file": "packages/cli/project.json", - "hash": "1169886281036299444" - }, - { - "file": "packages/cli/rolldown-bundle-all.ts", - "hash": "1117695809810703832" - }, - { - "file": "packages/cli/rules.ts", - "hash": "16120125303123881112" - }, - { - "file": "packages/cli/tsconfig.json", - "hash": "208911192527379557" - }, - { - "file": "packages/cli/tsdown.config.ts", - "hash": "8733122092681065877" - }, - { - "file": "packages/cli/types.ts", - "hash": "12517125352741026167" - } - ], - "@batijs/features": [ - { - "file": "packages/features/README.md", - "hash": "11253393686841137245" - }, - { - "file": "packages/features/package.json", - "hash": "7453170885760792090", - "deps": [ - "npm:@types/node", - "npm:tsdown", - "npm:vitest" - ] - }, - { - "file": "packages/features/src/categories.ts", - "hash": "14918685289060879844" - }, - { - "file": "packages/features/src/features.ts", - "hash": "9661613517454545939" - }, - { - "file": "packages/features/src/groups.ts", - "hash": "5515756501903621779" - }, - { - "file": "packages/features/src/helpers.ts", - "hash": "953781356557775360" - }, - { - "file": "packages/features/src/index.ts", - "hash": "686364796612302314" - }, - { - "file": "packages/features/src/rules/enum.ts", - "hash": "11309363181756926451" - }, - { - "file": "packages/features/src/rules/index.ts", - "hash": "6972498361861935039" - }, - { - "file": "packages/features/src/rules/rules.ts", - "hash": "16262125312287405844" - }, - { - "file": "packages/features/src/rules/utils.ts", - "hash": "12159310857698734648" - }, - { - "file": "packages/features/src/types.ts", - "hash": "16330970605003154469" - }, - { - "file": "packages/features/tests/rules.spec.ts", - "hash": "12812245825378500306" - }, - { - "file": "packages/features/tsconfig.json", - "hash": "10829160037969775529" - }, - { - "file": "packages/features/tsdown.config.ts", - "hash": "7897129861689910779" - } - ], - "@batijs/create-app": [ - { - "file": "packages/create-batijs-app/README.md", - "hash": "2019585873753941271" - }, - { - "file": "packages/create-batijs-app/index.js", - "hash": "15356043125406927671" - }, - { - "file": "packages/create-batijs-app/package.json", - "hash": "6186718274979364946", - "deps": [ - "@batijs/cli" - ] - } - ], - "@batijs/tailwindcss": [ - { - "file": "boilerplates/tailwindcss/bati.config.ts", - "hash": "3405982239360702511" - }, - { - "file": "boilerplates/tailwindcss/files/$package.json.ts", - "hash": "4659574445107011325" - }, - { - "file": "boilerplates/tailwindcss/files/$vite.config.ts.ts", - "hash": "3674845499047101466" - }, - { - "file": "boilerplates/tailwindcss/files/pages/tailwind.css", - "hash": "6167540089143400167" - }, - { - "file": "boilerplates/tailwindcss/package.json", - "hash": "10818557754625570273", - "deps": [ - "@batijs/compile", - "npm:@tailwindcss/vite", - "npm:@types/node", - "npm:autoprefixer", - "npm:daisyui", - "npm:tailwindcss", - "npm:vike", - "npm:vite", - "@batijs/core" - ] - }, - { - "file": "boilerplates/tailwindcss/tsconfig.json", - "hash": "10829160037969775529" - } - ], - "@batijs/ts-rest": [ - { - "file": "boilerplates/ts-rest/bati.config.ts", - "hash": "6236527870745630980" - }, - { - "file": "boilerplates/ts-rest/files/$package.json.ts", - "hash": "6519465308004691717" - }, - { - "file": "boilerplates/ts-rest/files/server/ts-rest-handler.ts", - "hash": "15916439577012550267" - }, - { - "file": "boilerplates/ts-rest/files/ts-rest/client.ts", - "hash": "151169003987061687" - }, - { - "file": "boilerplates/ts-rest/files/ts-rest/contract.ts", - "hash": "14582072781521774149" - }, - { - "file": "boilerplates/ts-rest/package.json", - "hash": "13610503164960947769", - "deps": [ - "@batijs/compile", - "npm:@ts-rest/core", - "npm:@ts-rest/serverless", - "npm:@types/node", - "npm:@universal-middleware/core", - "npm:zod", - "@batijs/core" - ] - }, - { - "file": "boilerplates/ts-rest/tsconfig.json", - "hash": "3753561261312697709" - } - ], - "@batijs/sqlite": [ - { - "file": "boilerplates/sqlite/bati.config.ts", - "hash": "13423641626652675926" - }, - { - "file": "boilerplates/sqlite/files/$.env.ts", - "hash": "1059579254708864984" - }, - { - "file": "boilerplates/sqlite/files/$TODO.md.ts", - "hash": "10873231272483289364" - }, - { - "file": "boilerplates/sqlite/files/$package.json.ts", - "hash": "12609730557467665400" - }, - { - "file": "boilerplates/sqlite/files/database/sqlite/db.ts", - "hash": "4714673669428407576" - }, - { - "file": "boilerplates/sqlite/files/database/sqlite/queries/todos.ts", - "hash": "8370144468861942697" - }, - { - "file": "boilerplates/sqlite/files/database/sqlite/schema/all.ts", - "hash": "10334571664929811996" - }, - { - "file": "boilerplates/sqlite/files/database/sqlite/schema/todos.ts", - "hash": "1802711003905051725" - }, - { - "file": "boilerplates/sqlite/package.json", - "hash": "15550614415875847417", - "deps": [ - "@batijs/compile", - "npm:@types/better-sqlite3", - "npm:@types/node", - "npm:better-sqlite3", - "npm:dotenv", - "npm:tsx", - "@batijs/core" - ] - }, - { - "file": "boilerplates/sqlite/tsconfig.json", - "hash": "10433283992457019454" - } - ], - "create-vike": [ - { - "file": "packages/create-bati/README.md", - "hash": "2019585873753941271" - }, - { - "file": "packages/create-bati/index.js", - "hash": "15356043125406927671" - }, - { - "file": "packages/create-bati/package.json", - "hash": "17436822452286544318", - "deps": [ - "@batijs/cli" - ] - } - ], - "@batijs/google-analytics": [ - { - "file": "boilerplates/google-analytics/bati.config.ts", - "hash": "245935929995948560" - }, - { - "file": "boilerplates/google-analytics/files/$.env.ts", - "hash": "4707171447062817104" - }, - { - "file": "boilerplates/google-analytics/package.json", - "hash": "3290265742820693522", - "deps": [ - "@batijs/compile", - "npm:@types/node", - "@batijs/core" - ] - }, - { - "file": "boilerplates/google-analytics/tsconfig.json", - "hash": "10829160037969775529" - } - ], - "@batijs/solid-sentry": [ - { - "file": "boilerplates/solid-sentry/bati.config.ts", - "hash": "2452761312261229506" - }, - { - "file": "boilerplates/solid-sentry/biome.json", - "hash": "1802006597246924721" - }, - { - "file": "boilerplates/solid-sentry/files/$package.json.ts", - "hash": "7190305476066739095" - }, - { - "file": "boilerplates/solid-sentry/files/pages/sentry/+Page.tsx", - "hash": "2734540031240721049" - }, - { - "file": "boilerplates/solid-sentry/files/sentry.browser.config.ts", - "hash": "14792966134154825523" - }, - { - "file": "boilerplates/solid-sentry/package.json", - "hash": "1475966000644505224", - "deps": [ - "@batijs/compile", - "npm:@sentry/solid", - "npm:@types/node", - "npm:solid-js", - "npm:vike-solid", - "npm:vite", - "@batijs/core" - ] - }, - { - "file": "boilerplates/solid-sentry/tsconfig.json", - "hash": "3961252132930206977" - } - ], - "@batijs/d1-kysely": [ - { - "file": "boilerplates/d1-kysely/bati.config.ts", - "hash": "6369031714502057325" - }, - { - "file": "boilerplates/d1-kysely/files/$package.json.ts", - "hash": "4745156170744194339" - }, - { - "file": "boilerplates/d1-kysely/files/database/migrations/todos.sql", - "hash": "14065259487295302022" - }, - { - "file": "boilerplates/d1-kysely/package.json", - "hash": "1245319202014194364", - "deps": [ - "@batijs/compile", - "npm:@types/node", - "@batijs/core" - ] - }, - { - "file": "boilerplates/d1-kysely/tsconfig.json", - "hash": "10829160037969775529" - } - ], - "@batijs/shadcn-ui": [ - { - "file": "boilerplates/shadcn-ui/bati.config.ts", - "hash": "1007102254205056134" - }, - { - "file": "boilerplates/shadcn-ui/files/$README.md.ts", - "hash": "17161598253323440990" - }, - { - "file": "boilerplates/shadcn-ui/files/$package.json.ts", - "hash": "6325233123661020923" - }, - { - "file": "boilerplates/shadcn-ui/files/$tsconfig.json.ts", - "hash": "11430456756141898561" - }, - { - "file": "boilerplates/shadcn-ui/files/$vite.config.ts.ts", - "hash": "15068637671208013532" - }, - { - "file": "boilerplates/shadcn-ui/files/components.json", - "hash": "9970190643560653964" - }, - { - "file": "boilerplates/shadcn-ui/files/lib/utils.ts", - "hash": "1260146919662595987" - }, - { - "file": "boilerplates/shadcn-ui/files/pages/!tailwind.css", - "hash": "10376007731897761438" - }, - { - "file": "boilerplates/shadcn-ui/package.json", - "hash": "18151698545190039740", - "deps": [ - "@batijs/compile", - "npm:@radix-ui/react-icons", - "npm:@types/node", - "npm:autoprefixer", - "npm:class-variance-authority", - "npm:clsx", - "npm:lucide-react", - "npm:tailwind-merge", - "npm:tailwindcss", - "npm:tw-animate-css", - "@batijs/core" - ] - }, - { - "file": "boilerplates/shadcn-ui/tsconfig.json", - "hash": "6543321687697935132" - } - ], - "@batijs/trpc": [ - { - "file": "boilerplates/trpc/bati.config.ts", - "hash": "18167389611308617262" - }, - { - "file": "boilerplates/trpc/files/$package.json.ts", - "hash": "6298302015227358450" - }, - { - "file": "boilerplates/trpc/files/server/trpc-handler.ts", - "hash": "17514369242399170441" - }, - { - "file": "boilerplates/trpc/files/trpc/client.ts", - "hash": "4197159420079775533" - }, - { - "file": "boilerplates/trpc/files/trpc/server.ts", - "hash": "16440931258756854226" - }, - { - "file": "boilerplates/trpc/package.json", - "hash": "10450542558095842306", - "deps": [ - "@batijs/compile", - "npm:@trpc/client", - "npm:@trpc/server", - "npm:@types/node", - "npm:@universal-middleware/core", - "npm:vite", - "@batijs/core" - ] - }, - { - "file": "boilerplates/trpc/tsconfig.json", - "hash": "18126462976322146836" - } - ], - "@batijs/hono": [ - { - "file": "boilerplates/hono/bati.config.ts", - "hash": "1668111618542323938" - }, - { - "file": "boilerplates/hono/files/$package.json.ts", - "hash": "16537434593504419719" - }, - { - "file": "boilerplates/hono/files/entry_aws_lambda.ts", - "hash": "2350681074451169825" - }, - { - "file": "boilerplates/hono/files/server/entry.ts", - "hash": "2784854165460553033" - }, - { - "file": "boilerplates/hono/package.json", - "hash": "7422550386272714190", - "deps": [ - "npm:@auth/core", - "@batijs/compile", - "npm:@photonjs/hono", - "npm:@trpc/server", - "npm:@types/aws-lambda", - "npm:@types/node", - "npm:dotenv", - "npm:hono", - "npm:telefunc", - "npm:vike", - "npm:vike-photon", - "npm:vite", - "@batijs/core" - ] - }, - { - "file": "boilerplates/hono/tsconfig.json", - "hash": "11631520777567996841" - } - ], - "@batijs/mantine": [ - { - "file": "boilerplates/mantine/bati.config.ts", - "hash": "5159503322167847424" - }, - { - "file": "boilerplates/mantine/files/$README.md.ts", - "hash": "1607568662519478631" - }, - { - "file": "boilerplates/mantine/files/$package.json.ts", - "hash": "15064705574684773926" - }, - { - "file": "boilerplates/mantine/files/.vscode/settings.json", - "hash": "6727437149657607627" - }, - { - "file": "boilerplates/mantine/files/components/Link.tsx", - "hash": "4968861440972792952" - }, - { - "file": "boilerplates/mantine/files/pages/+Layout.tsx", - "hash": "2003217458910859844" - }, - { - "file": "boilerplates/mantine/files/pages/Layout.css", - "hash": "3244421341483603138" - }, - { - "file": "boilerplates/mantine/files/postcss.config.cjs", - "hash": "14014684693614384412" - }, - { - "file": "boilerplates/mantine/package.json", - "hash": "15713713174878759850", - "deps": [ - "@batijs/compile", - "npm:@mantine/core", - "npm:@mantine/hooks", - "npm:@types/node", - "npm:@types/react", - "npm:@types/react-dom", - "npm:postcss", - "npm:postcss-preset-mantine", - "npm:postcss-simple-vars", - "npm:react", - "npm:react-dom", - "npm:vike-react", - "npm:vite", - "npm:vite-plugin-compiled-react", - "@batijs/core" - ] - }, - { - "file": "boilerplates/mantine/tsconfig.json", - "hash": "12426269000092382266" - } - ], - "@batijs/cloudflare": [ - { - "file": "boilerplates/cloudflare/bati.config.ts", - "hash": "16769662496460821300" - }, - { - "file": "boilerplates/cloudflare/files/$TODO.md.ts", - "hash": "3142516528630374019" - }, - { - "file": "boilerplates/cloudflare/files/$package.json.ts", - "hash": "11067447906439220795" - }, - { - "file": "boilerplates/cloudflare/files/$tsconfig.json.ts", - "hash": "3596348352572138712" - }, - { - "file": "boilerplates/cloudflare/files/wrangler.jsonc", - "hash": "338322602966147526" - }, - { - "file": "boilerplates/cloudflare/package.json", - "hash": "1884526986535503678", - "deps": [ - "@batijs/compile", - "npm:@photonjs/cloudflare", - "npm:@types/node", - "npm:wrangler", - "@batijs/core" - ] - }, - { - "file": "boilerplates/cloudflare/tsconfig.json", - "hash": "10829160037969775529" - }, - { - "file": "boilerplates/cloudflare/worker-configuration.d.ts", - "hash": "12169936246518129473" - } - ], - "@batijs/compile": [ - { - "file": "packages/compile/README.md", - "hash": "12076157598057555405" - }, - { - "file": "packages/compile/build.ts", - "hash": "6229218219409449563" - }, - { - "file": "packages/compile/clean.ts", - "hash": "6449151184187557636" - }, - { - "file": "packages/compile/cli.js", - "hash": "6683158999131795298" - }, - { - "file": "packages/compile/copy.ts", - "hash": "14026374497976991433" - }, - { - "file": "packages/compile/index.ts", - "hash": "10476868020082487573" - }, - { - "file": "packages/compile/package.json", - "hash": "14345869727686394443", - "deps": [ - "npm:@types/node", - "npm:typescript", - "npm:unplugin-purge-polyfills", - "npm:globby", - "npm:tsdown" - ] - }, - { - "file": "packages/compile/tsconfig.json", - "hash": "4493155363885913347" - }, - { - "file": "packages/compile/tsdown.config.ts", - "hash": "1605805468504013677" - } - ], - "@batijs/prisma": [ - { - "file": "boilerplates/prisma/.gitignore", - "hash": "5040098333059802248" - }, - { - "file": "boilerplates/prisma/bati.config.ts", - "hash": "4116054588860108285" - }, - { - "file": "boilerplates/prisma/files/$.env.ts", - "hash": "3059707544482740209" - }, - { - "file": "boilerplates/prisma/files/$TODO.md.ts", - "hash": "4531676088638242012" - }, - { - "file": "boilerplates/prisma/files/$package.json.ts", - "hash": "1574690670365220888" - }, - { - "file": "boilerplates/prisma/package.json", - "hash": "4596878849001479432", - "deps": [ - "@batijs/compile", - "npm:@prisma/client", - "npm:@types/node", - "npm:colorette", - "npm:prisma", - "@batijs/core" - ] - }, - { - "file": "boilerplates/prisma/tsconfig.json", - "hash": "15624783604779776670" - } - ], - "@batijs/biome": [ - { - "file": "boilerplates/biome/bati.config.ts", - "hash": "10015098588393613002" - }, - { - "file": "boilerplates/biome/files/$biome.json.ts", - "hash": "2868167598838604202" - }, - { - "file": "boilerplates/biome/files/$package.json.ts", - "hash": "3001748721728368052" - }, - { - "file": "boilerplates/biome/package.json", - "hash": "16119473530077575260", - "deps": [ - "@batijs/compile", - "npm:@biomejs/biome", - "npm:@biomejs/wasm-nodejs", - "npm:@types/node", - "@batijs/core" - ] - }, - { - "file": "boilerplates/biome/tsconfig.json", - "hash": "10829160037969775529" - } - ], - "@batijs/tests-utils": [ - { - "file": "packages/tests-utils/README.md", - "hash": "8277556730148226359" - }, - { - "file": "packages/tests-utils/package.json", - "hash": "973981267459812669", - "deps": [ - "npm:@types/node", - "npm:@types/which", - "npm:tsdown", - "npm:tsx", - "npm:typescript", - "npm:get-port", - "npm:node-fetch", - "npm:vitest", - "npm:which", - "npm:zx" - ] - }, - { - "file": "packages/tests-utils/src/combinate.ts", - "hash": "6262567251302040328" - }, - { - "file": "packages/tests-utils/src/describe.ts", - "hash": "6792228321081539628" - }, - { - "file": "packages/tests-utils/src/exec.ts", - "hash": "7168185002454358027" - }, - { - "file": "packages/tests-utils/src/index.ts", - "hash": "10152866017933555330" - }, - { - "file": "packages/tests-utils/src/package-manager.ts", - "hash": "13911086057740118821" - }, - { - "file": "packages/tests-utils/src/port.ts", - "hash": "15864947140754744990" - }, - { - "file": "packages/tests-utils/src/prepare.ts", - "hash": "9657955929000496805" - }, - { - "file": "packages/tests-utils/src/run-build.ts", - "hash": "18122674888365616027" - }, - { - "file": "packages/tests-utils/src/run-dev.ts", - "hash": "14619716055888188871" - }, - { - "file": "packages/tests-utils/src/run-prod.ts", - "hash": "15051659305587251900" - }, - { - "file": "packages/tests-utils/src/types.ts", - "hash": "17686325428284938026" - }, - { - "file": "packages/tests-utils/src/wait-for-localhost.ts", - "hash": "4927628986708349721" - }, - { - "file": "packages/tests-utils/src/zx.ts", - "hash": "17221544248649376133" - }, - { - "file": "packages/tests-utils/tsconfig.json", - "hash": "10829160037969775529" - }, - { - "file": "packages/tests-utils/tsdown.config.ts", - "hash": "11810183624862991492" - } - ], - "@batijs/shared-todo": [ - { - "file": "boilerplates/shared-todo/bati.config.ts", - "hash": "12546336490227508751" - }, - { - "file": "boilerplates/shared-todo/bati.d.ts", - "hash": "15578028359676202312" - }, - { - "file": "boilerplates/shared-todo/files/global.d.ts", - "hash": "17195213062081090684" - }, - { - "file": "boilerplates/shared-todo/files/pages/todo/+config.ts", - "hash": "14798147267068945494" - }, - { - "file": "boilerplates/shared-todo/files/pages/todo/+data.ts", - "hash": "789300547812656364" - }, - { - "file": "boilerplates/shared-todo/package.json", - "hash": "16119899403278957275", - "deps": [ - "@batijs/compile", - "npm:@types/node", - "npm:vike", - "@batijs/core" - ] - }, - { - "file": "boilerplates/shared-todo/tsconfig.json", - "hash": "18126462976322146836" - } - ], - "@batijs/authjs": [ - { - "file": "boilerplates/authjs/bati.config.ts", - "hash": "4708052660062853287" - }, - { - "file": "boilerplates/authjs/files/$package.json.ts", - "hash": "7315070523143791750" - }, - { - "file": "boilerplates/authjs/files/global.d.ts", - "hash": "9725249121169172757" - }, - { - "file": "boilerplates/authjs/files/server/authjs-handler.ts", - "hash": "5964477270344524378" - }, - { - "file": "boilerplates/authjs/package.json", - "hash": "9548464094814358918", - "deps": [ - "npm:@auth/core", - "@batijs/compile", - "npm:@types/node", - "npm:@universal-middleware/core", - "@batijs/core" - ] - }, - { - "file": "boilerplates/authjs/tsconfig.json", - "hash": "16179520611677090791" - } - ], - "@batijs/d1-sqlite": [ - { - "file": "boilerplates/d1-sqlite/bati.config.ts", - "hash": "16758337827657987897" - }, - { - "file": "boilerplates/d1-sqlite/files/$package.json.ts", - "hash": "4745156170744194339" - }, - { - "file": "boilerplates/d1-sqlite/files/database/d1/queries/todos.ts", - "hash": "385979320500332943" - }, - { - "file": "boilerplates/d1-sqlite/files/database/migrations/todos.sql", - "hash": "9145598158172402695" - }, - { - "file": "boilerplates/d1-sqlite/package.json", - "hash": "507224553223770812", - "deps": [ - "@batijs/compile", - "npm:@types/node", - "npm:@universal-middleware/core", - "npm:vike", - "@batijs/core" - ] - }, - { - "file": "boilerplates/d1-sqlite/tsconfig.json", - "hash": "18126462976322146836" - } - ], - "@batijs/build": [ - { - "file": "packages/build/README.md", - "hash": "17588624786197882185" - }, - { - "file": "packages/build/package.json", - "hash": "17705580872974387748", - "deps": [ - "@batijs/core", - "@batijs/compile", - "@batijs/features", - "npm:@types/node", - "npm:tsdown" - ] - }, - { - "file": "packages/build/src/index.ts", - "hash": "17221714020692871215" - }, - { - "file": "packages/build/src/operations/common.ts", - "hash": "6173006151246276772" - }, - { - "file": "packages/build/src/operations/file.ts", - "hash": "2420076122125147504" - }, - { - "file": "packages/build/src/operations/merge-dts.ts", - "hash": "3422649380100555239" - }, - { - "file": "packages/build/src/operations/rearranger.ts", - "hash": "2358332895765973636" - }, - { - "file": "packages/build/src/operations/transform.ts", - "hash": "17127862419762991443" - }, - { - "file": "packages/build/src/queue.ts", - "hash": "8801678005853286520" - }, - { - "file": "packages/build/src/relations.ts", - "hash": "7048583053702574788" - }, - { - "file": "packages/build/src/utils.ts", - "hash": "1376349399704767613" - }, - { - "file": "packages/build/tsconfig.json", - "hash": "15624783604779776670" - }, - { - "file": "packages/build/tsdown.config.ts", - "hash": "9264109140055413029" - } - ], - "@batijs/react-sentry": [ - { - "file": "boilerplates/react-sentry/bati.config.ts", - "hash": "4087011872666923170" - }, - { - "file": "boilerplates/react-sentry/biome.json", - "hash": "14330491566544727584" - }, - { - "file": "boilerplates/react-sentry/files/$package.json.ts", - "hash": "12740362361901885517" - }, - { - "file": "boilerplates/react-sentry/files/pages/sentry/+Page.tsx", - "hash": "10964212616825723390" - }, - { - "file": "boilerplates/react-sentry/files/sentry.browser.config.ts", - "hash": "15980589539037976408" - }, - { - "file": "boilerplates/react-sentry/package.json", - "hash": "15553926613248789457", - "deps": [ - "@batijs/compile", - "npm:@sentry/react", - "npm:@types/node", - "npm:@types/react", - "npm:@types/react-dom", - "npm:react", - "npm:react-dom", - "npm:vite", - "@batijs/core" - ] - }, - { - "file": "boilerplates/react-sentry/tsconfig.json", - "hash": "8220870955760094164" - } - ], - "@batijs/h3": [ - { - "file": "boilerplates/h3/bati.config.ts", - "hash": "18435502787496375143" - }, - { - "file": "boilerplates/h3/files/$package.json.ts", - "hash": "10000480424969115624" - }, - { - "file": "boilerplates/h3/files/server/entry.ts", - "hash": "8080314319156943076" - }, - { - "file": "boilerplates/h3/package.json", - "hash": "10774742460554244347", - "deps": [ - "npm:@auth/core", - "@batijs/compile", - "npm:@photonjs/h3", - "npm:@trpc/server", - "npm:@types/express", - "npm:@types/node", - "npm:@universal-middleware/core", - "npm:dotenv", - "npm:h3", - "npm:telefunc", - "npm:vike", - "npm:vike-photon", - "npm:vite", - "@batijs/core" - ] - }, - { - "file": "boilerplates/h3/tsconfig.json", - "hash": "10829160037969775529" - } - ], - "@batijs/auth0": [ - { - "file": "boilerplates/auth0/bati.config.ts", - "hash": "246975477619732168" - }, - { - "file": "boilerplates/auth0/files/$.env.ts", - "hash": "881868106894569981" - }, - { - "file": "boilerplates/auth0/files/$TODO.md.ts", - "hash": "5315584209676199399" - }, - { - "file": "boilerplates/auth0/files/$wrangler.jsonc.ts", - "hash": "4858905856258571593" - }, - { - "file": "boilerplates/auth0/package.json", - "hash": "17797861300927625043", - "deps": [ - "@batijs/compile", - "npm:@types/node", - "@batijs/core" - ] - }, - { - "file": "boilerplates/auth0/tsconfig.json", - "hash": "15624783604779776670" - } - ], - "@batijs/vercel": [ - { - "file": "boilerplates/vercel/bati.config.ts", - "hash": "11981326057467424988" - }, - { - "file": "boilerplates/vercel/files/$package.json.ts", - "hash": "6430316533671099288" - }, - { - "file": "boilerplates/vercel/package.json", - "hash": "6937113710708912376", - "deps": [ - "@batijs/compile", - "npm:@photonjs/vercel", - "npm:@types/node", - "npm:h3", - "npm:vike", - "npm:vite", - "@batijs/core" - ] - }, - { - "file": "boilerplates/vercel/tsconfig.json", - "hash": "10829160037969775529" - } - ], - "batijs": [ - { - "file": "packages/batijs/README.md", - "hash": "2019585873753941271" - }, - { - "file": "packages/batijs/index.js", - "hash": "15356043125406927671" - }, - { - "file": "packages/batijs/package.json", - "hash": "8353654110176810999", - "deps": [ - "@batijs/cli" - ] - } - ], - "@batijs/sentry": [ - { - "file": "boilerplates/sentry/bati.config.ts", - "hash": "5035718702400118455" - }, - { - "file": "boilerplates/sentry/files/$.env.ts", - "hash": "13650950838598206077" - }, - { - "file": "boilerplates/sentry/files/$README.md.ts", - "hash": "15501659600878543379" - }, - { - "file": "boilerplates/sentry/files/$TODO.md.ts", - "hash": "7449063188894131621" - }, - { - "file": "boilerplates/sentry/files/$package.json.ts", - "hash": "1468347746634412706" - }, - { - "file": "boilerplates/sentry/files/$vite.config.ts.ts", - "hash": "5264118640754114481" - }, - { - "file": "boilerplates/sentry/files/.env.sentry-build-plugin", - "hash": "3444401161532200993" - }, - { - "file": "boilerplates/sentry/files/pages/$+client.ts.ts", - "hash": "7623917551217253245" - }, - { - "file": "boilerplates/sentry/package.json", - "hash": "9560393097027182987", - "deps": [ - "@batijs/compile", - "npm:@sentry/vite-plugin", - "npm:@types/node", - "npm:vite", - "@batijs/core" - ] - }, - { - "file": "boilerplates/sentry/tsconfig.json", - "hash": "12725800372324204213" - } - ], - "@batijs/shared": [ - { - "file": "boilerplates/shared/bati.config.ts", - "hash": "6642103247069562027" - }, - { - "file": "boilerplates/shared/const.ts", - "hash": "15517333947599095915" - }, - { - "file": "boilerplates/shared/files/$README.md.ts", - "hash": "13549328503689767083" - }, - { - "file": "boilerplates/shared/files/$TODO.md.ts", - "hash": "3802591104453522414" - }, - { - "file": "boilerplates/shared/files/gitignore", - "hash": "12719950030143069637" - }, - { - "file": "boilerplates/shared/files/package.json", - "hash": "2330539807987412639" - }, - { - "file": "boilerplates/shared/files/tsconfig.json", - "hash": "13402210058758164605" - }, - { - "file": "boilerplates/shared/files/vite.config.ts", - "hash": "6124990386436740244" - }, - { - "file": "boilerplates/shared/hooks/after.ts", - "hash": "12315429807060609790" - }, - { - "file": "boilerplates/shared/package.json", - "hash": "9579701137761689182", - "deps": [ - "@batijs/compile", - "npm:@types/node", - "npm:vike", - "npm:vite" - ] - }, - { - "file": "boilerplates/shared/tsconfig.json", - "hash": "10829160037969775529" - } - ], - "@batijs/shared-db": [ - { - "file": "boilerplates/shared-db/bati.config.ts", - "hash": "3206691303674948006" - }, - { - "file": "boilerplates/shared-db/files/server/db-middleware.ts", - "hash": "12375206984287499721" - }, - { - "file": "boilerplates/shared-db/package.json", - "hash": "7696249875814496176", - "deps": [ - "@batijs/compile", - "npm:@types/node", - "npm:@universal-middleware/core", - "@batijs/core" - ] - }, - { - "file": "boilerplates/shared-db/tsconfig.json", - "hash": "18126462976322146836" - } - ], - "@batijs/solid": [ - { - "file": "boilerplates/solid/bati.config.ts", - "hash": "8111442139575210612" - }, - { - "file": "boilerplates/solid/biome.json", - "hash": "1802006597246924721" - }, - { - "file": "boilerplates/solid/files/$README.md.ts", - "hash": "14198218476642710494" - }, - { - "file": "boilerplates/solid/files/$package.json.ts", - "hash": "17097805665875424189" - }, - { - "file": "boilerplates/solid/files/$tsconfig.json.ts", - "hash": "4698297846800398110" - }, - { - "file": "boilerplates/solid/files/$vite.config.ts.ts", - "hash": "13834366169657205330" - }, - { - "file": "boilerplates/solid/files/assets/logo.svg", - "hash": "456965794851136715" - }, - { - "file": "boilerplates/solid/files/components/Link.tsx", - "hash": "17583913308895048184" - }, - { - "file": "boilerplates/solid/files/pages/+Head.tsx", - "hash": "11566568109960055750" - }, - { - "file": "boilerplates/solid/files/pages/+Layout.tsx", - "hash": "735785801979110970" - }, - { - "file": "boilerplates/solid/files/pages/+config.ts", - "hash": "15285257982010528898" - }, - { - "file": "boilerplates/solid/files/pages/+onPageTransitionEnd.ts", - "hash": "14247927934540815005" - }, - { - "file": "boilerplates/solid/files/pages/+onPageTransitionStart.ts", - "hash": "9116206879620678971" - }, - { - "file": "boilerplates/solid/files/pages/Layout.css", - "hash": "13481115073965312656" - }, - { - "file": "boilerplates/solid/files/pages/_error/+Page.tsx", - "hash": "4194852495573456653" - }, - { - "file": "boilerplates/solid/files/pages/index/+Page.tsx", - "hash": "16909960653003023854" - }, - { - "file": "boilerplates/solid/files/pages/index/Counter.tsx", - "hash": "15250918434545892143" - }, - { - "file": "boilerplates/solid/files/pages/star-wars/@id/+Page.tsx", - "hash": "9896745506623726355" - }, - { - "file": "boilerplates/solid/files/pages/star-wars/@id/+data.ts", - "hash": "9298842294204880508" - }, - { - "file": "boilerplates/solid/files/pages/star-wars/index/+Page.tsx", - "hash": "9230495519549237518" - }, - { - "file": "boilerplates/solid/files/pages/star-wars/index/+data.ts", - "hash": "7488097475396943891" - }, - { - "file": "boilerplates/solid/files/pages/star-wars/types.ts", - "hash": "4084339154141473810" - }, - { - "file": "boilerplates/solid/files/pages/todo/+Page.tsx", - "hash": "10364174212594667415" - }, - { - "file": "boilerplates/solid/files/pages/todo/TodoList.tsx", - "hash": "8765089503040072977" - }, - { - "file": "boilerplates/solid/package.json", - "hash": "9213692191002844274", - "deps": [ - "@batijs/compile", - "npm:@types/node", - "npm:solid-js", - "npm:tailwindcss", - "npm:typescript", - "npm:vike", - "npm:vike-photon", - "npm:vike-solid", - "npm:vite", - "npm:vite-plugin-solid", - "@batijs/core" - ] - }, - { - "file": "boilerplates/solid/tailwind.config.js", - "hash": "13515649713983895160" - }, - { - "file": "boilerplates/solid/tsconfig.json", - "hash": "3961252132930206977" - } - ], - "@batijs/compiled": [ - { - "file": "boilerplates/compiled/bati.config.ts", - "hash": "6557974920330638665" - }, - { - "file": "boilerplates/compiled/files/$package.json.ts", - "hash": "13941553902686932622" - }, - { - "file": "boilerplates/compiled/files/$vite.config.ts.ts", - "hash": "9810738325651448202" - }, - { - "file": "boilerplates/compiled/package.json", - "hash": "448243733114009126", - "deps": [ - "@batijs/compile", - "npm:@types/node", - "npm:vite", - "npm:vite-plugin-compiled-react", - "@batijs/core", - "npm:@compiled/react" - ] - }, - { - "file": "boilerplates/compiled/tsconfig.json", - "hash": "10829160037969775529" - } - ], - "@batijs/eslint": [ - { - "file": "boilerplates/eslint/bati.config.ts", - "hash": "11720143381010038490" - }, - { - "file": "boilerplates/eslint/files/$package.json.ts", - "hash": "13840719815699996876" - }, - { - "file": "boilerplates/eslint/files/eslint.config.ts", - "hash": "6921612227693504854" - }, - { - "file": "boilerplates/eslint/package.json", - "hash": "9987858559824992918", - "deps": [ - "@batijs/compile", - "npm:@eslint/js", - "npm:eslint", - "npm:eslint-config-prettier", - "npm:eslint-plugin-prettier", - "npm:eslint-plugin-react", - "npm:eslint-plugin-solid", - "npm:eslint-plugin-vue", - "npm:globals", - "npm:typescript-eslint", - "npm:vue-eslint-parser", - "@batijs/core" - ] - }, - { - "file": "boilerplates/eslint/tsconfig.json", - "hash": "10829160037969775529" - } - ], - "@batijs/fastify": [ - { - "file": "boilerplates/fastify/bati.config.ts", - "hash": "15087650595076395327" - }, - { - "file": "boilerplates/fastify/files/$package.json.ts", - "hash": "3829830530686835681" - }, - { - "file": "boilerplates/fastify/files/server/entry.ts", - "hash": "12518326727171109739" - }, - { - "file": "boilerplates/fastify/package.json", - "hash": "11556072308529105609", - "deps": [ - "npm:@auth/core", - "@batijs/compile", - "npm:@photonjs/fastify", - "npm:@trpc/server", - "npm:@types/express", - "npm:@types/node", - "npm:dotenv", - "npm:fastify", - "npm:fastify-raw-body", - "npm:telefunc", - "npm:vike", - "npm:vite", - "@batijs/core" - ] - }, - { - "file": "boilerplates/fastify/tsconfig.json", - "hash": "18144687449552703701" - } - ], - "@batijs/vue": [ - { - "file": "boilerplates/vue/bati.config.ts", - "hash": "13550791330639504773" - }, - { - "file": "boilerplates/vue/biome.json", - "hash": "3056594972392903914" - }, - { - "file": "boilerplates/vue/files/$README.md.ts", - "hash": "5661659385531601795" - }, - { - "file": "boilerplates/vue/files/$package.json.ts", - "hash": "7995665395039615076" - }, - { - "file": "boilerplates/vue/files/$tsconfig.json.ts", - "hash": "9729518427626565780" - }, - { - "file": "boilerplates/vue/files/$vite.config.ts.ts", - "hash": "8942994500951012988" - }, - { - "file": "boilerplates/vue/files/assets/logo.svg", - "hash": "456965794851136715" - }, - { - "file": "boilerplates/vue/files/components/Content.vue", - "hash": "7470363284377898452" - }, - { - "file": "boilerplates/vue/files/components/Counter.vue", - "hash": "6180567185750885010" - }, - { - "file": "boilerplates/vue/files/components/Link.vue", - "hash": "13784846309229482394" - }, - { - "file": "boilerplates/vue/files/components/Logo.vue", - "hash": "16353648806248902925" - }, - { - "file": "boilerplates/vue/files/components/Sidebar.vue", - "hash": "16469883140016852172" - }, - { - "file": "boilerplates/vue/files/pages/+Head.vue", - "hash": "9201255343519180604" - }, - { - "file": "boilerplates/vue/files/pages/+Layout.vue", - "hash": "3795326637860504038" - }, - { - "file": "boilerplates/vue/files/pages/+config.ts", - "hash": "5589107243477250739" - }, - { - "file": "boilerplates/vue/files/pages/+onCreateApp.ts", - "hash": "1103141187668280528" - }, - { - "file": "boilerplates/vue/files/pages/+onPageTransitionEnd.ts", - "hash": "14247927934540815005" - }, - { - "file": "boilerplates/vue/files/pages/+onPageTransitionStart.ts", - "hash": "9116206879620678971" - }, - { - "file": "boilerplates/vue/files/pages/_error/+Page.vue", - "hash": "17474297277737277348" - }, - { - "file": "boilerplates/vue/files/pages/index/+Page.vue", - "hash": "2296061370206052757" - }, - { - "file": "boilerplates/vue/files/pages/star-wars/@id/+Page.vue", - "hash": "5189182754400181295" - }, - { - "file": "boilerplates/vue/files/pages/star-wars/@id/+data.ts", - "hash": "3512044405335571603" - }, - { - "file": "boilerplates/vue/files/pages/star-wars/index/+Page.vue", - "hash": "12809753384005833381" - }, - { - "file": "boilerplates/vue/files/pages/star-wars/index/+data.ts", - "hash": "981951816066781481" - }, - { - "file": "boilerplates/vue/files/pages/star-wars/types.ts", - "hash": "4084339154141473810" - }, - { - "file": "boilerplates/vue/files/pages/todo/+Page.vue", - "hash": "13049029044837801272" - }, - { - "file": "boilerplates/vue/files/pages/todo/TodoList.vue", - "hash": "2107490935982487110" - }, - { - "file": "boilerplates/vue/package.json", - "hash": "3742326333873265138", - "deps": [ - "@batijs/compile", - "@batijs/tailwindcss", - "npm:@types/node", - "npm:@vitejs/plugin-vue", - "npm:tailwindcss", - "npm:typescript", - "npm:vike", - "npm:vike-photon", - "npm:vike-vue", - "npm:vite", - "npm:vue", - "npm:vue-gtag", - "@batijs/core" - ] - }, - { - "file": "boilerplates/vue/tailwind.config.js", - "hash": "18388324591188790808" - }, - { - "file": "boilerplates/vue/tsconfig.json", - "hash": "4658726002500437860" - } - ], - "@batijs/tests": [ - { - "file": "packages/tests/README.md", - "hash": "17222524996708680293" - }, - { - "file": "packages/tests/package.json", - "hash": "16248323506875003759", - "deps": [ - "@batijs/core", - "@batijs/features", - "@batijs/tests-utils", - "npm:@types/node", - "npm:@types/which", - "npm:dotenv", - "npm:fast-glob", - "npm:knip", - "npm:mri", - "npm:p-limit", - "npm:tsdown", - "npm:tsx", - "npm:turbo", - "npm:typescript", - "npm:vitest", - "npm:yaml" - ] - }, - { - "file": "packages/tests/rules.local.spec.ts", - "hash": "10759956230475856338" - }, - { - "file": "packages/tests/src/common.ts", - "hash": "15995982865085792574" - }, - { - "file": "packages/tests/src/exec-bati.ts", - "hash": "1372060028334787255" - }, - { - "file": "packages/tests/src/index.ts", - "hash": "15385340290287984765" - }, - { - "file": "packages/tests/src/load-test-files.ts", - "hash": "3556802646100699844" - }, - { - "file": "packages/tests/src/prepare.ts", - "hash": "797294620753435623" - }, - { - "file": "packages/tests/src/tmp.ts", - "hash": "5540928384021663128" - }, - { - "file": "packages/tests/src/types.ts", - "hash": "13596597985106273775" - }, - { - "file": "packages/tests/tests/FRAMEWORK+ANALYTICS.spec.ts", - "hash": "933991272662267336" - }, - { - "file": "packages/tests/tests/FRAMEWORK+CSS.spec.ts", - "hash": "3321032198831863998" - }, - { - "file": "packages/tests/tests/FRAMEWORK+SERVER+AUTH.spec.ts", - "hash": "3923868099654464610" - }, - { - "file": "packages/tests/tests/FRAMEWORK+SERVER+DATA.spec.ts", - "hash": "11710652099209274838" - }, - { - "file": "packages/tests/tests/FRAMEWORK+aws.spec.ts", - "hash": "12348760301358894773" - }, - { - "file": "packages/tests/tests/FRAMEWORK+cloudflare.spec.ts", - "hash": "16257422296857065162" - }, - { - "file": "packages/tests/tests/FRAMEWORK+prettier.spec.ts", - "hash": "3021165532292274381" - }, - { - "file": "packages/tests/tests/FRAMEWORK+prisma.spec.ts", - "hash": "692030709713198432" - }, - { - "file": "packages/tests/tests/FRAMEWORK+sentry.spec.ts", - "hash": "1817400054609140203" - }, - { - "file": "packages/tests/tests/FRAMEWORK+storybook.spec.ts", - "hash": "330707346120483192" - }, - { - "file": "packages/tests/tests/FRAMEWORK+vercel.spec.ts", - "hash": "18238222425435577136" - }, - { - "file": "packages/tests/tests/react+UI.spec.ts", - "hash": "15141782769418777564" - }, - { - "file": "packages/tests/tests/remove-linter-comments.spec.ts", - "hash": "8903522090654421874" - }, - { - "file": "packages/tests/tsconfig.json", - "hash": "10829160037969775529" - }, - { - "file": "packages/tests/tsdown.config.ts", - "hash": "15147905083468779427" - }, - { - "file": "packages/tests/vitest.config.ts", - "hash": "839923958862646810" - } - ], - "@batijs/elements": [ - { - "file": "website/README.md", - "hash": "12465836579273636435" - }, - { - "file": "website/assets/logo.svg", - "hash": "16599565117243618629" - }, - { - "file": "website/components/Cli.tsx", - "hash": "5494454366780737430" - }, - { - "file": "website/components/Copy.tsx", - "hash": "10977693384512341735" - }, - { - "file": "website/components/Description.tsx", - "hash": "5529568717524106178" - }, - { - "file": "website/components/Features.tsx", - "hash": "12797757252533445367" - }, - { - "file": "website/components/Flip.tsx", - "hash": "14848624479803690503" - }, - { - "file": "website/components/FormControl.tsx", - "hash": "8200318457807714097" - }, - { - "file": "website/components/Icons.tsx", - "hash": "12020021306917489438" - }, - { - "file": "website/components/InputGroup.tsx", - "hash": "13859916235045706875" - }, - { - "file": "website/components/Logo.tsx", - "hash": "4948591463697094609" - }, - { - "file": "website/components/Messages.tsx", - "hash": "11848051529553603646" - }, - { - "file": "website/components/Presets.tsx", - "hash": "1755368751566654261" - }, - { - "file": "website/components/RootContext.tsx", - "hash": "9725670665589863312" - }, - { - "file": "website/components/RulesMessages.tsx", - "hash": "6556488082281128396" - }, - { - "file": "website/components/ShieldBadge.tsx", - "hash": "1633068473609245540" - }, - { - "file": "website/components/Stackblitz.tsx", - "hash": "7088088201876035529" - }, - { - "file": "website/components/Store.tsx", - "hash": "134023527294282321" - }, - { - "file": "website/components/Tooltip.tsx", - "hash": "16253362405588845583" - }, - { - "file": "website/components/Widget.tsx", - "hash": "14308036358078943576" - }, - { - "file": "website/index.html", - "hash": "409875437099995013" - }, - { - "file": "website/layouts/Head.tsx", - "hash": "8280130173430313424" - }, - { - "file": "website/layouts/Layout.tsx", - "hash": "12865817139203746378" - }, - { - "file": "website/layouts/tailwind.css", - "hash": "10853650513502171679" - }, - { - "file": "website/lib/floating-solid.ts", - "hash": "9472354918800620949" - }, - { - "file": "website/lib/track.ts", - "hash": "9761477555794531515" - }, - { - "file": "website/package.json", - "hash": "11020001051737968162", - "deps": [ - "npm:@babel/core", - "@batijs/features", - "npm:@floating-ui/dom", - "npm:@floating-ui/utils", - "npm:@solid-primitives/scheduled", - "npm:@stackblitz/sdk", - "npm:@tailwindcss/vite", - "npm:babel-preset-solid", - "npm:bumpp", - "npm:clsx", - "npm:daisyui", - "npm:esbuild", - "npm:http-server", - "npm:solid-element", - "npm:solid-js", - "npm:solid-motionone", - "npm:tailwindcss", - "npm:tslib", - "npm:typescript", - "npm:vike", - "npm:vike-solid", - "npm:vite", - "npm:vite-plugin-solid" - ] - }, - { - "file": "website/pages/+config.ts", - "hash": "3440875999753323784" - }, - { - "file": "website/pages/_error/+Page.tsx", - "hash": "16454998665875213880" - }, - { - "file": "website/pages/index/+Page.tsx", - "hash": "16632770008398308351" - }, - { - "file": "website/pages/index/+config.ts", - "hash": "14393256405524397549" - }, - { - "file": "website/tsconfig.json", - "hash": "8962166822880171117" - }, - { - "file": "website/types.ts", - "hash": "9852301593280086756" - }, - { - "file": "website/vite.config.ts", - "hash": "2722737609707901749" - }, - { - "file": "website/widget/AppWidget.tsx", - "hash": "10208118252399139319" - }, - { - "file": "website/widget/web-component.index.ts", - "hash": "522607888105565421" - } - ], - "@batijs/express": [ - { - "file": "boilerplates/express/bati.config.ts", - "hash": "4864170925815018033" - }, - { - "file": "boilerplates/express/files/$package.json.ts", - "hash": "14689073189619208611" - }, - { - "file": "boilerplates/express/files/server/entry.ts", - "hash": "6904535672098735309" - }, - { - "file": "boilerplates/express/package.json", - "hash": "6920276473416971265", - "deps": [ - "npm:@auth/core", - "@batijs/compile", - "npm:@photonjs/express", - "npm:@trpc/server", - "npm:@types/express", - "npm:@types/node", - "npm:dotenv", - "npm:express", - "npm:telefunc", - "npm:vike", - "npm:vite", - "@batijs/core" - ] - }, - { - "file": "boilerplates/express/tsconfig.json", - "hash": "15624783604779776670" - } - ], - "@batijs/photon": [ - { - "file": "boilerplates/photon/bati.config.ts", - "hash": "3067148549642645452" - }, - { - "file": "boilerplates/photon/files/$README.md.ts", - "hash": "3079014212179392868" - }, - { - "file": "boilerplates/photon/files/$package.json.ts", - "hash": "13306441530271570534" - }, - { - "file": "boilerplates/photon/package.json", - "hash": "16781290531315241914", - "deps": [ - "@batijs/compile", - "npm:@types/node", - "npm:vike-photon", - "@batijs/core" - ] - }, - { - "file": "boilerplates/photon/tsconfig.json", - "hash": "10829160037969775529" - } - ], - "@batijs/core": [ - { - "file": "packages/core/README.md", - "hash": "12037634474786229906" - }, - { - "file": "packages/core/global.d.ts", - "hash": "12813315585634602944" - }, - { - "file": "packages/core/package.json", - "hash": "12917634659412821587", - "deps": [ - "@batijs/features", - "npm:@types/eslint", - "npm:@types/estree", - "npm:@types/node", - "npm:@types/which", - "npm:@typescript-eslint/parser", - "npm:@typescript-eslint/utils", - "npm:attributes-parser", - "npm:colorette", - "npm:esbuild", - "npm:eslint", - "npm:eslint-plugin-solid", - "npm:eslint-rule-composer", - "npm:espree", - "npm:magicast", - "npm:mdast-builder", - "npm:mdast-util-from-markdown", - "npm:mdast-util-to-markdown", - "npm:mdast-util-to-string", - "npm:mdast-util-toc", - "npm:prettier", - "npm:squirrelly", - "npm:tsdown", - "npm:tsx", - "npm:typescript", - "npm:unplugin-purge-polyfills", - "npm:vitest", - "npm:vue-eslint-parser", - "npm:which", - "npm:yaml" - ] - }, - { - "file": "packages/core/src/assert.ts", - "hash": "7887229568901347476" - }, - { - "file": "packages/core/src/config.ts", - "hash": "2493413073520973465" - }, - { - "file": "packages/core/src/format.ts", - "hash": "6764289092734507368" - }, - { - "file": "packages/core/src/index.ts", - "hash": "14928717256885109881" - }, - { - "file": "packages/core/src/loaders.ts", - "hash": "5286803719723920640" - }, - { - "file": "packages/core/src/magicast.ts", - "hash": "4354493897614221225" - }, - { - "file": "packages/core/src/markdown/createTOC.ts", - "hash": "13512485900270940709" - }, - { - "file": "packages/core/src/markdown/markdown.ts", - "hash": "4411919684729591460" - }, - { - "file": "packages/core/src/markdown/types.ts", - "hash": "14307616440785598306" - }, - { - "file": "packages/core/src/markdown/utils.ts", - "hash": "6152374238904074627" - }, - { - "file": "packages/core/src/markdown/zone.ts", - "hash": "10750863306705533097" - }, - { - "file": "packages/core/src/parse.ts", - "hash": "13072124803937862888" - }, - { - "file": "packages/core/src/parse/eval.ts", - "hash": "13646180175835790118" - }, - { - "file": "packages/core/src/parse/linters/common.ts", - "hash": "12043321571192336209" - }, - { - "file": "packages/core/src/parse/linters/index.ts", - "hash": "7913309108664521286" - }, - { - "file": "packages/core/src/parse/linters/linter-ts.ts", - "hash": "15947043729986772265" - }, - { - "file": "packages/core/src/parse/linters/linter-vue.ts", - "hash": "11249087830835493980" - }, - { - "file": "packages/core/src/parse/linters/plugin-remove-unused-imports.ts", - "hash": "18150098302938615953" - }, - { - "file": "packages/core/src/parse/linters/types.ts", - "hash": "10299815159941282468" - }, - { - "file": "packages/core/src/parse/linters/visit-if-statement.ts", - "hash": "13493307544913313041" - }, - { - "file": "packages/core/src/parse/linters/visitor-global-comments.ts", - "hash": "6571743831739028205" - }, - { - "file": "packages/core/src/parse/linters/visitor-imports.ts", - "hash": "4163753282081857706" - }, - { - "file": "packages/core/src/parse/linters/visitor-statement-with-comments.ts", - "hash": "8933569326910409556" - }, - { - "file": "packages/core/src/parse/linters/visitor-ts-types.ts", - "hash": "7250603899764532899" - }, - { - "file": "packages/core/src/parse/squirelly.ts", - "hash": "11236798355534411502" - }, - { - "file": "packages/core/src/print.ts", - "hash": "13343441600469307037" - }, - { - "file": "packages/core/src/random.ts", - "hash": "17042021245402791763" - }, - { - "file": "packages/core/src/relative.ts", - "hash": "3161565933105133000" - }, - { - "file": "packages/core/src/runtime.ts", - "hash": "906964323508087330" - }, - { - "file": "packages/core/src/types.ts", - "hash": "12585825321471450454" - }, - { - "file": "packages/core/src/utils/env.ts", - "hash": "8679582370429265801" - }, - { - "file": "packages/core/src/utils/package.ts", - "hash": "12299565546087031005" - }, - { - "file": "packages/core/src/which.ts", - "hash": "148475500891681961" - }, - { - "file": "packages/core/tests/markdown/markdown.spec.ts", - "hash": "3706306302930845265" - }, - { - "file": "packages/core/tests/markdown/toc.spec.ts", - "hash": "11303234506022418010" - }, - { - "file": "packages/core/tests/markdown/utils.spec.ts", - "hash": "2243439427880325985" - }, - { - "file": "packages/core/tests/replace-bati-imports.spec.ts", - "hash": "8344487064998270393" - }, - { - "file": "packages/core/tests/transform-ts.spec.ts", - "hash": "8438149426080400544" - }, - { - "file": "packages/core/tests/transform-vue.spec.ts", - "hash": "9382159685117857534" - }, - { - "file": "packages/core/tests/utils/package.spec.ts", - "hash": "692915540507003895" - }, - { - "file": "packages/core/tsconfig.json", - "hash": "10829160037969775529" - }, - { - "file": "packages/core/tsdown.config.ts", - "hash": "12838807228801245886" - }, - { - "file": "packages/core/type-utils.ts", - "hash": "10155335266123660572" - } - ], - "@batijs/prettier": [ - { - "file": "boilerplates/prettier/bati.config.ts", - "hash": "17443007970994572713" - }, - { - "file": "boilerplates/prettier/files/$package.json.ts", - "hash": "4356100228796015365" - }, - { - "file": "boilerplates/prettier/files/.prettierignore", - "hash": "12719950030143069637" - }, - { - "file": "boilerplates/prettier/files/prettier.config.js", - "hash": "7777515834766987346" - }, - { - "file": "boilerplates/prettier/package.json", - "hash": "17457141383587797489", - "deps": [ - "@batijs/compile", - "npm:@types/node", - "npm:prettier", - "@batijs/core" - ] - }, - { - "file": "boilerplates/prettier/tsconfig.json", - "hash": "10829160037969775529" - } - ], - "@batijs/drizzle": [ - { - "file": "boilerplates/drizzle/.gitignore", - "hash": "5040098333059802248" - }, - { - "file": "boilerplates/drizzle/bati.config.ts", - "hash": "2710995805493197889" - }, - { - "file": "boilerplates/drizzle/files/$.env.ts", - "hash": "1059579254708864984" - }, - { - "file": "boilerplates/drizzle/files/$TODO.md.ts", - "hash": "7094263364243414181" - }, - { - "file": "boilerplates/drizzle/files/$package.json.ts", - "hash": "16015935492509242837" - }, - { - "file": "boilerplates/drizzle/files/database/drizzle/db.ts", - "hash": "9756653239576938068" - }, - { - "file": "boilerplates/drizzle/files/database/drizzle/queries/todos.ts", - "hash": "15482890820684246998" - }, - { - "file": "boilerplates/drizzle/files/database/drizzle/schema/todos.ts", - "hash": "4972121246208894198" - }, - { - "file": "boilerplates/drizzle/files/drizzle.config.ts", - "hash": "18240634092313816164" - }, - { - "file": "boilerplates/drizzle/package.json", - "hash": "2403490886616869290", - "deps": [ - "@batijs/compile", - "npm:@types/better-sqlite3", - "npm:@types/node", - "npm:better-sqlite3", - "npm:dotenv", - "npm:drizzle-kit", - "npm:drizzle-orm", - "@batijs/core" - ] - }, - { - "file": "boilerplates/drizzle/tsconfig.json", - "hash": "18126462976322146836" - } - ], - "@batijs/shared-server": [ - { - "file": "boilerplates/shared-server/bati.config.ts", - "hash": "15114050104332112156" - }, - { - "file": "boilerplates/shared-server/bati.d.ts", - "hash": "15578028359676202312" - }, - { - "file": "boilerplates/shared-server/files/$package.json.ts", - "hash": "14519767394590546274" - }, - { - "file": "boilerplates/shared-server/files/server/create-todo-handler.ts", - "hash": "537028294928069464" - }, - { - "file": "boilerplates/shared-server/package.json", - "hash": "7647358639639767936", - "deps": [ - "@batijs/compile", - "npm:@types/node", - "npm:@universal-middleware/core", - "npm:vike", - "npm:vite" - ] - }, - { - "file": "boilerplates/shared-server/tsconfig.json", - "hash": "18126462976322146836" - } - ], - "@batijs/plausible.io": [ - { - "file": "boilerplates/plausible.io/bati.config.ts", - "hash": "8569518495308207660" - }, - { - "file": "boilerplates/plausible.io/files/$TODO.md.ts", - "hash": "14677831576146108744" - }, - { - "file": "boilerplates/plausible.io/package.json", - "hash": "13106053219670928449", - "deps": [ - "@batijs/compile", - "npm:@types/node", - "@batijs/core" - ] - }, - { - "file": "boilerplates/plausible.io/tsconfig.json", - "hash": "10829160037969775529" - } - ], - "@batijs/d1": [ - { - "file": "boilerplates/d1/bati.config.ts", - "hash": "8177039328440590846" - }, - { - "file": "boilerplates/d1/files/$TODO.md.ts", - "hash": "3669896176014539727" - }, - { - "file": "boilerplates/d1/files/$package.json.ts", - "hash": "15594875177009451976" - }, - { - "file": "boilerplates/d1/files/$wrangler.jsonc.ts", - "hash": "17008874810307699785" - }, - { - "file": "boilerplates/d1/files/database/d1/helpers.ts", - "hash": "9485641893877685857" - }, - { - "file": "boilerplates/d1/files/global.d.ts", - "hash": "15578028359676202312" - }, - { - "file": "boilerplates/d1/package.json", - "hash": "15667771846402583679", - "deps": [ - "@batijs/compile", - "npm:@types/node", - "npm:@universal-middleware/core", - "npm:vike", - "npm:wrangler", - "@batijs/core" - ] - }, - { - "file": "boilerplates/d1/tsconfig.json", - "hash": "18126462976322146836" - } - ], - "@batijs/storybook": [ - { - "file": "boilerplates/storybook/bati.config.ts", - "hash": "5530482630701383775" - }, - { - "file": "boilerplates/storybook/hooks/after.ts", - "hash": "398995943148335939" - }, - { - "file": "boilerplates/storybook/package.json", - "hash": "16016062343166875124", - "deps": [ - "@batijs/compile", - "npm:@types/node", - "@batijs/core" - ] - }, - { - "file": "boilerplates/storybook/tsconfig.json", - "hash": "10716251606175135872" - } - ], - "@batijs/react": [ - { - "file": "boilerplates/react/bati.config.ts", - "hash": "4497886617975337323" - }, - { - "file": "boilerplates/react/biome.json", - "hash": "1367633352157617152" - }, - { - "file": "boilerplates/react/files/$README.md.ts", - "hash": "17310247390997549651" - }, - { - "file": "boilerplates/react/files/$package.json.ts", - "hash": "16613009978132506732" - }, - { - "file": "boilerplates/react/files/$tsconfig.json.ts", - "hash": "16751141146600204627" - }, - { - "file": "boilerplates/react/files/$vite.config.ts.ts", - "hash": "8208954465993100621" - }, - { - "file": "boilerplates/react/files/assets/logo.svg", - "hash": "456965794851136715" - }, - { - "file": "boilerplates/react/files/components/Link.tsx", - "hash": "15301786157164890621" - }, - { - "file": "boilerplates/react/files/pages/+Head.tsx", - "hash": "10889362621654449488" - }, - { - "file": "boilerplates/react/files/pages/+Layout.tsx", - "hash": "5353325577759859618" - }, - { - "file": "boilerplates/react/files/pages/+config.ts", - "hash": "6615639521985931115" - }, - { - "file": "boilerplates/react/files/pages/+onPageTransitionEnd.ts", - "hash": "14247927934540815005" - }, - { - "file": "boilerplates/react/files/pages/+onPageTransitionStart.ts", - "hash": "9116206879620678971" - }, - { - "file": "boilerplates/react/files/pages/Layout.css", - "hash": "13481115073965312656" - }, - { - "file": "boilerplates/react/files/pages/_error/+Page.tsx", - "hash": "2639429208420143618" - }, - { - "file": "boilerplates/react/files/pages/index/+Page.tsx", - "hash": "4423024231858812826" - }, - { - "file": "boilerplates/react/files/pages/index/Counter.tsx", - "hash": "2211509797363495570" - }, - { - "file": "boilerplates/react/files/pages/star-wars/@id/+Page.tsx", - "hash": "2393246371632616227" - }, - { - "file": "boilerplates/react/files/pages/star-wars/@id/+data.ts", - "hash": "970194308548949041" - }, - { - "file": "boilerplates/react/files/pages/star-wars/index/+Page.tsx", - "hash": "12352787776754111204" - }, - { - "file": "boilerplates/react/files/pages/star-wars/index/+data.ts", - "hash": "15637753550256440592" - }, - { - "file": "boilerplates/react/files/pages/star-wars/types.ts", - "hash": "4084339154141473810" - }, - { - "file": "boilerplates/react/files/pages/todo/+Page.tsx", - "hash": "10364174212594667415" - }, - { - "file": "boilerplates/react/files/pages/todo/TodoList.tsx", - "hash": "17095791910804630485" - }, - { - "file": "boilerplates/react/package.json", - "hash": "4516955274977791871", - "deps": [ - "npm:@babel/core", - "npm:@babel/plugin-syntax-flow", - "npm:@babel/plugin-transform-react-jsx", - "@batijs/compile", - "npm:@mantine/core", - "npm:@types/node", - "npm:@types/react", - "npm:@types/react-dom", - "npm:@vitejs/plugin-react", - "npm:react", - "npm:react-dom", - "npm:tailwindcss", - "npm:typescript", - "npm:vike", - "npm:vike-photon", - "npm:vike-react", - "npm:vite", - "npm:vite-plugin-compiled-react", - "@batijs/core" - ] - }, - { - "file": "boilerplates/react/tailwind.config.js", - "hash": "13515649713983895160" - }, - { - "file": "boilerplates/react/tsconfig.json", - "hash": "12426269000092382266" - } - ], - "@batijs/oxlint": [ - { - "file": "boilerplates/oxlint/bati.config.ts", - "hash": "7389793535987383499" - }, - { - "file": "boilerplates/oxlint/files/$.oxlintrc.json.ts", - "hash": "4118173470789092444" - }, - { - "file": "boilerplates/oxlint/files/$package.json.ts", - "hash": "317119702700065606" - }, - { - "file": "boilerplates/oxlint/package.json", - "hash": "4543264547646766038", - "deps": [ - "@batijs/compile", - "npm:@types/node", - "npm:oxlint", - "npm:oxlint-tsgolint", - "@batijs/core" - ] - }, - { - "file": "boilerplates/oxlint/tsconfig.json", - "hash": "10829160037969775529" - } - ], - "@batijs/telefunc": [ - { - "file": "boilerplates/telefunc/bati.config.ts", - "hash": "1898647461440047347" - }, - { - "file": "boilerplates/telefunc/files/$package.json.ts", - "hash": "973106109685929373" - }, - { - "file": "boilerplates/telefunc/files/$vite.config.ts.ts", - "hash": "5293987169260388338" - }, - { - "file": "boilerplates/telefunc/files/global.d.ts", - "hash": "1115697451523391661" - }, - { - "file": "boilerplates/telefunc/files/pages/todo/TodoList.telefunc.ts", - "hash": "2080952871938043374" - }, - { - "file": "boilerplates/telefunc/files/server/telefunc-handler.ts", - "hash": "6777095237620687097" - }, - { - "file": "boilerplates/telefunc/package.json", - "hash": "13934300512944991170", - "deps": [ - "@batijs/compile", - "npm:@types/node", - "npm:@universal-middleware/core", - "npm:telefunc", - "npm:vike", - "npm:vite", - "@batijs/core" - ] - }, - { - "file": "boilerplates/telefunc/tsconfig.json", - "hash": "13527409923677017098" - } - ], - "@batijs/pnpm": [ - { - "file": "boilerplates/pnpm/bati.config.ts", - "hash": "12415246205952726323" - }, - { - "file": "boilerplates/pnpm/files/$pnpm-workspace.yaml.ts", - "hash": "18435527075128516894" - }, - { - "file": "boilerplates/pnpm/package.json", - "hash": "30346845075610942", - "deps": [ - "@batijs/compile", - "npm:@types/node", - "@batijs/core" - ] - }, - { - "file": "boilerplates/pnpm/tsconfig.json", - "hash": "10829160037969775529" - } - ], - "@batijs/kysely": [ - { - "file": "boilerplates/kysely/bati.config.ts", - "hash": "12180651091900883752" - }, - { - "file": "boilerplates/kysely/files/$.env.ts", - "hash": "1059579254708864984" - }, - { - "file": "boilerplates/kysely/files/$TODO.md.ts", - "hash": "15053493103162783711" - }, - { - "file": "boilerplates/kysely/files/$package.json.ts", - "hash": "3818189458371690357" - }, - { - "file": "boilerplates/kysely/files/database/kysely/db.ts", - "hash": "7428180724951645599" - }, - { - "file": "boilerplates/kysely/files/database/kysely/migrate.ts", - "hash": "16608466648164592181" - }, - { - "file": "boilerplates/kysely/files/database/kysely/migrations/001_create_todos_table.ts", - "hash": "9988715739546823983" - }, - { - "file": "boilerplates/kysely/files/database/kysely/queries/todos.ts", - "hash": "14356230776171161652" - }, - { - "file": "boilerplates/kysely/files/database/kysely/types.ts", - "hash": "3376270916468557145" - }, - { - "file": "boilerplates/kysely/package.json", - "hash": "14001025728233847792", - "deps": [ - "@batijs/compile", - "npm:@cloudflare/workers-types", - "npm:@types/better-sqlite3", - "npm:@types/node", - "npm:better-sqlite3", - "npm:dotenv", - "npm:kysely", - "npm:kysely-d1", - "npm:tsx", - "@batijs/core" - ] - }, - { - "file": "boilerplates/kysely/tsconfig.json", - "hash": "18126462976322146836" - } - ], - "@batijs/aws": [ - { - "file": "boilerplates/aws/bati.config.ts", - "hash": "13957955230824185279" - }, - { - "file": "boilerplates/aws/files/$README.md.ts", - "hash": "4188452023476575717" - }, - { - "file": "boilerplates/aws/files/$TODO.md.ts", - "hash": "14403382619368653827" - }, - { - "file": "boilerplates/aws/files/$package.json.ts", - "hash": "4582459650238510305" - }, - { - "file": "boilerplates/aws/files/$tsconfig.json.ts", - "hash": "5628644099746052850" - }, - { - "file": "boilerplates/aws/files/$vite.config.ts.ts", - "hash": "7647712851044975636" - }, - { - "file": "boilerplates/aws/files/cdk.json", - "hash": "6128320444351766894" - }, - { - "file": "boilerplates/aws/files/cdk/$stack-name-suffix.json.ts", - "hash": "18439149065539639792" - }, - { - "file": "boilerplates/aws/files/cdk/bin/infrastructure.ts", - "hash": "3978129351170013849" - }, - { - "file": "boilerplates/aws/files/cdk/lib/vike-stack.ts", - "hash": "11582005390914433501" - }, - { - "file": "boilerplates/aws/files/tests/aws_handler.spec.ts", - "hash": "14548027137338076882" - }, - { - "file": "boilerplates/aws/files/vitest.config.ts", - "hash": "6004403807631661676" - }, - { - "file": "boilerplates/aws/package.json", - "hash": "9058498796242637157", - "deps": [ - "@batijs/compile", - "npm:@types/node", - "npm:@types/which", - "npm:aws-cdk", - "npm:aws-cdk-lib", - "npm:cdk", - "npm:constructs", - "npm:esbuild", - "npm:npm-run-all2", - "npm:source-map-support", - "npm:tsx", - "npm:typescript", - "npm:vitest", - "npm:which", - "@batijs/core" - ] - }, - { - "file": "boilerplates/aws/tsconfig.json", - "hash": "12503249049220797797" - } - ], - "@batijs/vue-sentry": [ - { - "file": "boilerplates/vue-sentry/bati.config.ts", - "hash": "5334953471835508282" - }, - { - "file": "boilerplates/vue-sentry/biome.json", - "hash": "3056594972392903914" - }, - { - "file": "boilerplates/vue-sentry/files/$package.json.ts", - "hash": "9709358604512201703" - }, - { - "file": "boilerplates/vue-sentry/files/pages/sentry/+Page.vue", - "hash": "4010962285878134624" - }, - { - "file": "boilerplates/vue-sentry/files/sentry.browser.config.ts", - "hash": "6075066664618922570" - }, - { - "file": "boilerplates/vue-sentry/package.json", - "hash": "180108721256108528", - "deps": [ - "@batijs/compile", - "npm:@sentry/vue", - "npm:@types/node", - "npm:vike-vue", - "npm:vite", - "npm:vue", - "@batijs/core" - ] - }, - { - "file": "boilerplates/vue-sentry/tsconfig.json", - "hash": "4658726002500437860" - } - ] - }, - "nonProjectFiles": [ - { - "file": ".editorconfig", - "hash": "17427675574182985939" - }, - { - "file": ".gitattributes", - "hash": "8207937369485138236" - }, - { - "file": ".github/DISCUSSION_TEMPLATE/integration-request.yml", - "hash": "12441894247943795336" - }, - { - "file": ".github/FUNDING.yml", - "hash": "18180679098338033019" - }, - { - "file": ".github/ISSUE_TEMPLATE/bug_report.md", - "hash": "13535677796983558725" - }, - { - "file": ".github/renovate.json5", - "hash": "18217004668482161607" - }, - { - "file": ".github/workflows/checks.yml", - "hash": "4013411573206725232" - }, - { - "file": ".github/workflows/clear-cache.yml", - "hash": "3514536276660415861" - }, - { - "file": ".github/workflows/publish.yml", - "hash": "17015840054167401104" - }, - { - "file": ".github/workflows/reusable.init-tests.yml", - "hash": "13269405574999400763" - }, - { - "file": ".github/workflows/reusable.run-tests.yml", - "hash": "11156741578208488720" - }, - { - "file": ".github/workflows/tests-entry.yml", - "hash": "15694450683875448932" - }, - { - "file": ".gitignore", - "hash": "11718471652935198687" - }, - { - "file": ".vscode/settings.json", - "hash": "12461145776256189186" - }, - { - "file": "AGENTS.md", - "hash": "3327702000024921805" - }, - { - "file": "BOILERPLATES.md", - "hash": "5037373011451141264" - }, - { - "file": "CONTRIBUTING.md", - "hash": "1873725386715470200" - }, - { - "file": "LICENSE.md", - "hash": "9060792552244981516" - }, - { - "file": "README.md", - "hash": "6902104447645608931" - }, - { - "file": "biome.json", - "hash": "710935252759319162" - }, - { - "file": "boilerplates/README.md", - "hash": "11101429424654219937" - }, - { - "file": "boilerplates/tsconfig.base.json", - "hash": "7770238612161011742" - }, - { - "file": "bump.config.ts", - "hash": "13458862336782979823" - }, - { - "file": "doc/bati.png", - "hash": "15349562161930091051" - }, - { - "file": "doc/demo.gif", - "hash": "7273743634420817313" - }, - { - "file": "doc/demo.yml", - "hash": "8612494506489238294" - }, - { - "file": "doc/screenshot.png", - "hash": "18009937776851012328" - }, - { - "file": "nx.json", - "hash": "16855121116317549616" - }, - { - "file": "package.json", - "hash": "2572746899770913567" - }, - { - "file": "packages/tsconfig.base.json", - "hash": "5558516391392663447" - }, - { - "file": "pnpm-lock.yaml", - "hash": "2213892221397260131" - }, - { - "file": "pnpm-workspace.yaml", - "hash": "5823068464468672213" - }, - { - "file": "render-gif.sh", - "hash": "15332861308217431894" - }, - { - "file": "scripts/gen-composite-workflow-action.js", - "hash": "7060950195546908042" - }, - { - "file": "scripts/new-boilerplate.ts", - "hash": "12842557470915726443" - }, - { - "file": "scripts/screenshot.js", - "hash": "10451930503084366367" - }, - { - "file": "terminalizer-config.yml", - "hash": "1876018010099047765" - }, - { - "file": "tsconfig.json", - "hash": "17422877559985939350" - }, - { - "file": "update-gif.sh", - "hash": "12573375449374780104" - } - ] - }, - "externalNodesHash": "11647994478078182403" -} \ No newline at end of file diff --git a/.nx/workspace-data/lockfile-dependencies.hash b/.nx/workspace-data/lockfile-dependencies.hash deleted file mode 100644 index 05e6a44f6..000000000 --- a/.nx/workspace-data/lockfile-dependencies.hash +++ /dev/null @@ -1 +0,0 @@ -1940204358142768512 \ No newline at end of file diff --git a/.nx/workspace-data/lockfile-nodes.hash b/.nx/workspace-data/lockfile-nodes.hash deleted file mode 100644 index 05e6a44f6..000000000 --- a/.nx/workspace-data/lockfile-nodes.hash +++ /dev/null @@ -1 +0,0 @@ -1940204358142768512 \ No newline at end of file diff --git a/.nx/workspace-data/nx_files.nxt b/.nx/workspace-data/nx_files.nxt deleted file mode 100644 index 8c6e8615fa20a74d28a7fae0aaeb4ba420ed9053..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 48396 zcmb82378#KnfD{ZqHM|{3=Bvd7QxWncV8G$0tASJph*}-(a_6Ha-q|=z4vyu86}E} zpn?mVEFvI|qKqIgEHWY^Dse$XA4Wz86$cejMDf#cW;EaLU-eeid+K%)>?gPDo`0V@ zb(Z(M`>AZ+oc-)HXU@hs@y|w~&!cSDIl6Ag-*nZ__O2dZHzptbjdtej!e=)=FXY3| zMt%0+m;SErd+}>;D+~K8u>Guj0M~=~yp#_=8EA~EjpD|? z@|~Zw9pTFW zbZ_!=8s*nHEUB-#(06@K=a=g1yTnD7I@BD0B$**?wbm z7RsOFlRR73TPfecC+XAO_Wd5N_wwOiG#|REzOMK2OZC;RuJ>D6-}U#eSoy15AK>#f zD}SBqH|@K|qW08=`lx$%<@zvx|Blsp#IE17>!VyB(A}Gp8cfN{RP*j`25oTrvC6Xx<77x^X8}RZ_jYm-+sfd-x>Bi8cXWwx}BA` zx9bjeRlj!RdopKHU3-pb&X4H@)YF{kSxMVFgY9Z<3ESO$SKBYN@{72tyuV%524ACg z4&cj6_#9+^OWM{|b@WMi(Oe3D%jYmY`uoec9>GU#Yn_DY`@Z&FW&Ip!^@q8ttr4yo zGkVCz8sGQiTIbs2qcI=Nb*$5#Y;~t6NBgbb$V73d_m;_azcteDjd!M2v{w$F)$2?Z z8^uzsQY$sb0i&-Ss15?at~}d|#zpE>xPuYOPkSRO+RA zwNVM~>vbmE6C*3=L2qPwbS1xg{n75w+R<)rq&+p!S~oK9HNeCD-nwQe+B#%~Lb+NGZtnMnx~*P+WNftG z9=3t^d$m%zRxQ;V^+LT;t(6PSMj^bbJ3YSbiL$QrMws9}1MH5EOm;>mhEyDihOQ1) ztF=Z!lUytmYRzV&Qc3Sy(HiZ~(7ll*3+5kx%7Wq56UAbwS}r%swMMN`DHhB1Ql%R7 zY{h7=-(Hc-Mz7Uf)9Q{ytHZOnx!5R|YOF`GUMv=x^>Q<~JDkd8ryhSQ&(w|8LbY6J zmWzdQvBtbGm&LWMv7YE9UOij0bOwtRdReO0Dursb#P>RD7d&cuRj1#XN>(i$pk|~{ zZx)J`Qn6I5H_OcuLk;fits3pN652T=>tvZ}tTq`|rBW?dOQlLNB)OHH&dSNw(CF0Y z=f4m8lD->gWbP|yZ%h9nda!Nh2PbZoTO8Zq=OGp%kL zitKkLIz3TFrCepV6zX+`QY_Yr?3-Y<5`qjj7zEX**PyCqwE$~rR?DSuUq*Z-w?d^# zsa9eS^8+7fluEU5{KmjyrjmBt(BAl}*6Pub(aA~mx==1xsxX8a9Hq%JHk)Bn@#8&v ziV6I<&dgN5)fEB24jDzW&L*m{H>%Zo$Rk1m&#hz;_E@V_iq$fUS>#r>S1@h)we&oZ zzm-Z&R-gS371j!{svKJzpX|&`te9k@*{~34hub*y-aw>%eLIM%NKBXlXbvS=+2!8U4jYg#k6*OvW@@k=6t2c&Mw)?AQ z#zxk5x@WJL?5ypLbXzmM(Xq+aaCc@ZVz<5F^{Xd~ELg41q}Lnl-AbcTFNKdp7S8nA zy06{INrXnV)@0+b&Sj<$nyrPmt{$E0x2KZ*H{Mx2-I;>z_C^-9r_L6+u-6-n8haj+ zDb=C6YAInazIJD2C$3#-z{@JNGQ6nJtkeo2bIFs(yv~%w<+ASR6im6@nOcf8?b8zc zum*`VU}{|Ijb^=Qvzdscl=T+tr4rn%!d|EsV7i4;vz)8jok3m?Pj<#fCx?5}t#KYu zEYz#bX2b(3Fg2uQxsl#AHq)M*hy-6}y46L*cBXm}S#cw~xxhRY*++;a?k$8AG^img zZ*{w!Zl)MiicMyT4zu^z&Zrt$f5$tJz9jDI(eBw3owZXV3Ejc5^jLOZq28!gn+D9RZ)kLSIuqHY0*Xtc+Nh(sl$(_z z`#pHvDD)aW2w_sKGbq?<11ZK3>*4ATa;Io}E@RU!YWKA4>xxhfjTD>3LZbi~6_}~u zv4Iq|aYRZ}3D!hM8%W^>o23MI4sM+8w)*`xT1Ctqhm&%9P5+QbNT;IVx3Z>{SFC zY$fQspE$qkY>$c^7wha&iH1s}S*Vr5wdzan^OJ?LL1!zaYPG?9H!3VyZMZej?svLz z_losOsa`{yU@B2C*wp3bqJ_sTSiDr~98X}Hxf^W-rJz_X)>4v+mB#pYx3#*nrZpth zAR74U)#5G57Nn!ncM7zIOfMB#wk?i2*48pcUSqJ5zolZ-H?hcB*wP7;?dgcBDzHta zw*qazdYi0NIKiVc{Z$2{j6;T7Q){@ZfdXEGyGL?D8g8BgX`8mzwZ^0E!wphvnV3SU zfs{rGXMTe580q?T5Utk>Qi!#+BmE}4Wx(9{OE~6V+SG!nh#D&;=83%vZ$j9iEEK|V zWQ@iSrHD$8E?I)dAQ+pKa;?&BVG(tQR<>6R_f|oqWpv`Am;=;RmURPFtZt*%wl}2v zA`*D$SZH_!EQ@BdP+@MW6P@vq38+bbrV*GY1T0#YLY0%@tzM*yZc|MTrzg_Ru?Qo} zBgfdP#Ucg){Xz1hK9!)o;O0b%2J^vY#NL4MRvHik47*yGg+xzj^?I@+BQix$Hwx7v zDtxtCu0g4l+4t26OXi=l;B}`iIeFgF1xx;Z!IF8$&tEn_*;YkZJv)kh#bU6Il}5Rd zJUA1Y;x!n>&|gW4U=4jZ7?Rj~%qb5^Z=#QI1L-k^5){tOj4@=B67ZQh4M(n3n-w$% z>>+kLn!&7mVqiS;Pg{0UG9GR%OROW`VH1(T8T8bQcTr*dJ|Au0L=LWOhTE`uX!w;aQ-CwUEy($Q_Ix;w$yjaBu zsyE6IIcjtf;Uz}fY&J9MNNijgagltlBCC)y&=3Ss!*r?C)7sW}WNc6wR)diVi$N+g z2@+&s=e<0QB}=B~dy7R1NeLOn{)Gu)c_L>@IepK!bx6Q-v=H0`@8BPbH=Gfdl~eV$(NJ_u#vP0q)=mbV7+9^Is0Ddp+Br2>vYaen?PqRKn`$hG&zZfL8B*XYAE*g z$lAeTf&LM@Ww>Sq7GEw6uYnvUP>iL*O|9%j!$SzvnAj>SgTp3r4uo9UM&_pI-xz4$wuQxet&3#7(KUj z&io_Nr^ET9V>O%sj7b^}3yjYvn1M(#2Hx7D909CoBx#UUC_155>RHQZ5906Ph{e$E ztyziLh&ZgvkmP~zx15}awo^{Fq4XlJaSoT{KttE4X8U<51hVD zxnd>5_#&TMFsaksb`S5E?X}FODpjq}(Dr8k+9;1%pcz}at>@H@%84qC>jiHmnEfr4?Yvm!( zGz=WwCRAul(~hS1*prtmEENWTq05Rmkj8muvzLIFqZD z2For78-f9`lvn)nZm$7tLyyov8u(nqNeVSBS;d*0sZ@gGr{pSuZB(?O&?|VLi@!W@9OJu|dk4=iTax6hV|Hww=f=|WKvWx-_FTiU?kXpK{gv&9}aI0EK9t`gWTUKu<| zA#d@*FR!B~KG9ix@q^P8%cRyCe81W?G9Xc?@%bVR3D^}gw{LzO#g!t#s2ky+L=Eu1 z%WB41lUJ$&7t&fJCqcVzwC$vl!Tn$m@-vtCg}82p)8kFUP~m~ACWgy{O+xTeVUAKJBT_n#)iRa10q2jTwX=#3p^Q>J-j(%c87!(Bh-qxMDfKm#jymh#4Dcq)tu?E zM6o9C)k7=6QHcy?j?ji1*ge4vS?Jsojm$PI|0+JVh*sH`!7Z6+_i8ASA-H%6{YiNi zRld&3{{4ecR3POjoFs!7PBS|SPX-h+kWlO6JMRA})y+f>0t`08JFTotQO2 z7HqRL=Lc^o`YDPuT831dT29oaV@JRt#^rdzyI-R<_H?i;#s&NYSE@X-j?a|vKfywj zr;y&V&KmOxc@OJ}0}fdu)q_}LDSTi=>d#Suk&s0O;Ra$9*l@_sp!0cW(x5L(fidjP zI?_+76tXO2Mv;sNdt-t-wno#;C_K&zEud3kiK63>CYA3BnKHB#QO_258^#i&fTuCV zq7NJ-DFcZKLqJJ=4`pG+j-86=gw*J<_f$#y6{u@BJQ(63=`+7xIDX&>Hf7t^1)Nief!+#`kVN4ME zl;aC0l!79PzQ7P!sj}nNiVMe&PSw7CXFR2FxEdy?+-B0GqS#5|^N*)sRe$v)F?=b) z_)M^-aX1u19mH`JPr}k(su24MqJ zDG&&<4_F$w3rtDjMr_7#(#_E|z#&l0h!!b)%C3}WqM7aBz+#Nj0LUtvi5wbC8H^Im z2we~-G3+)oG*jIJ6|mnXIgtJONjuKz+HQ}!+V+^rrf@#lmAg9(WlH-xT5P`wL zB7H{t4Q`6ZH@Mq`U^x9atdQf<4$<@QmtimjH`(q9$pecE^(V;T4GCEcKCs3bQi=eJ~})X@~)??$2xAFmx&Frb%-{jwO1HZshLO;g6W+#Vj{{A z#!1A+mgk2}##h;+A>Cw)XtbKowAym8KkZ}6U-I3I^0Cl=qnrg&bp}{Wx-uhi?niHA zO`8O-P8Vh~lvwY~4&n+4D{TbHz?Wc7v)pd$Q9N`R8@R5~i^!UQ(}W8#kS*))CDg#i zkS-`!owUC2=A1c|YJQ?GCK$W3hAK(e1_CRG%8!Jnf0T@U<;yB<7ByMPlEL8mt;yDk znW^!_<{Yp#NCF_62}cSv!6e}*$yD=nVf+(`ERk#gyF$JyI|mLNJaHBie$nXq&P|s+7WbwGa}*%i7^J)P%x1}x@EZIXOUv;$~l4PuE=@J@)1HIii-$JHJ*?^ zA=xnE;4?4^IZ=tD1j`i#NJEu{6hyDDL_rsL8_FCKxK2Ty6t zt~?YPbq$}c64ptWsf8oAN9Cp$dqn;b1_a^4IB_`y9rPAJFkQsGn+R~l2+#bSXNpCf7Gi2G$PmB&7v!aVj|?DNWwHrH>7h zKgRx6@{~+MbbW&J#MtMbxM1;xa4|TQ%7VQ?0c_ZaiAW5|LSX!lg|>p6u$pGM*BpfUfMkD_cx1%u2y%IcCs&%-zm>h1vn@nmV@<%fl+!2`D!L9hL z;W9Yzr6jYPVWGjD3Ec-bNeJWY#IuepQJzxnRLk_#^y)x?gd`PlA-jj$cuKhTp^rSj zw@83s^6L1d$R$FHha^JD7{`qR(h>7T7P5IT#c=*$F$AN^)Z|!AaN&9W1j#X%Xe#Kv ztT=XVPDvh6-qM|-jRo(4j}Q`<;{&OTx|ni0FA2rLCtBK}V^TI?Sa{@Fcvua+H!LK46EAgtZAiWEfl*oyeb8%iaCc+6FDB*?5lXUQqF&hZ(lIdoI$ ztZZI+J<+0A&)h*`V@}bG#tM(0VhfJ59atKaX{qCCA|$$aMMLJs7S=I6Y%&5ycxkvl zq#}E;ZDmgm>M~h>HRhB9tjzOZm+dG^K;`I(%5KL80*PZAL=6RZ6j2le)Oi|X1p!BEIh6`q^N0Ng0Zz^*PwS$zg z*nw=76^W&byGZAD6je^-turN$>r5+&4Ru;F87C~88ge3;C6_KAsy72v#EukmB!agF#QTUlWO6J~kfJG$z1>Lwgf)d@qF~Sq^gpMYpc&N@E z5dtRL9`Q(QJ*~b4hXczJ2Y{7mB1**_0D~k-f_guAb4p=KxDa>ZH30G-pcjX`FZPRM z@jy`q@{>tcCKs$GcbF;=E`G}!4WwZ%h(_!Ru|X~dY5=*uInFo`yPUsx{-V>DEj%tg zQUJ+e9>I`tJmJzE2nlW3jEs$BPMg`GD>yC_rpd-jL{DT@hAMh;1RxM)Qm~meR2W!_ z1TC97U<+H_ba~oEz7Pgg2Ct|P$5=DRx)^N87aZg`QOShJsUtSwp0E%K zasbONWqa%7TBsSMW~IN02N1S{LF?!p?hZWT*+Q9zD2pVbq3bmUA`;w0Pu zCU(h+L?K`XNCc)6mlSq=FrRr@JufopL74=3_7z|xN{yM8JBToFW176iPLq=seNM_9 zT1n1W;?8Y`ZK*@}9g0R~LkOf#;F=FNQmoU4VoX~|UL+h|B;QE7%)(`lkFD-?A#`LW95T+t*1=P>3_OKUU$`)> z?s#i5r-^RMpihax`K;iTXj!N}h&~j3VyeX~V40AcynmVv6mskpWCtVzOD6vy*Q?yi z6F47u92~0O;;j$jAksY< zj;>k46513p12qBzPfq2c-|1WS%MGa`+-oa9&}Dk~K_oR~pxdqij1 zDRBIisLIj79OQTuSP!?8^Pxpwac{-Xj>sB&nT3(97~Q4sC-M9-8ZWkzLY2f%2!)cJlrz!;&sB1S7OxntAR>h5>r6QMM`f1ne*z~A zj_Z(j+fjz*IuRV!4`K&}U0&#Brb%o;H878D9C%=6a3>OUBacAIVQAdp^!T?W#PU1H zqT(JzBs)#1=x8W8BQ}+ic57~;l>UKMsZ<6Q7sDp^blz(tE;9SgL~t28JPeNpyq0vw zoJ|xb(hPK3PI?Y%DO;XpqJ`O17JH^SiZd~bZHqPqYk`!Md4YzQ?je^ikfxnPM+K6^ z6WpQ*Bxn&g33izp2qxRC6nr<~#+@ZD5!`1q9NsjGk1V)p&@Gdl2!RU{xx>+fT_j}! zQzE#Rj+#;A7gSL!9m&AMD2FKK6gMgorGNw8c|;V>{bH7Z!t7NdAI%Zd@K{F_`d z;oz+K8PMKG218+3&B`!{JT9|@tEOkhCfmJLQ6>{g9yWk1Ui^~G7`Ah=@9mvL6s4NR zZyOm-L@-`Vg6fR&jaEn)kG;d*cKu4ia`9QH zWD`LDO7&zABpJ$gDDP^>o zN3y5Gtr5;sW_j4D&7AW?C-Na}sS zcThf56zPW3u-|2C5W>VZf=2{h%#`DJ>r-Byq+BJh5yG1gd6JYafWCrZo13C7Tj;4i zIkc7+L3v9ZE`=H)Eemr51qfysbj*|pzgE=79l{6xf>0ngCcMSdXz)e{mX>A4V<>er z5@*%)L~YE2^6xKF*bysP??%8RQFNn`#j3C%c$XE9yQ!5!kq(RiK_Mf<3PqWU$_~UU z7!1ej%7c*&xgHe2L=MA9a9W^uXUxRX#>Znvoj5n!3v~$1m~$G++zlR;@Pv%d4n9!f zB-BskJ>W6IUy*xXTQrr4!5qq3WdZ6)k^D6X5ar{zu9|rf^A~%`4DMM>Ec5~#)UZmt z??Hc~sY#w?Owcd8lndo~%DEh!8q_jY$7WVfCtMHyg*_~DM_MJ8na=5CyTXK8loFcd z&_n6TK9;*v?_(iahzAH}kw2xJV?8m)aZkrdf^G^GGaaOtvW_7m$ov+mLeLvYURcK; zQCv8~hcib4i0mf#ks|Rf+O2pzltthR9aannM+tGwU?TI@RO~mGc7ugYA~3EMh?$%9 z&ILt{NBeyu6*J5a1_}OFaw4MB*042~mz}8)?oDA3NLL5IqRdPvpWH2y+ps7w!St?` zuw(9}Abw>P7E#I*TasWP$%#0}gB$&hjyI~Qiix!0>>+j~zi0=Q3Ws0qxKkG|Te9%j z)0Qn1i@&gTNCM)nhj)mkS{rivKO_ z1da>fbKs8(UPC`bvLSR5VenF=+-3HC9Gg+eR)!-*`ls|CL_W#vp5Wx7)6GDadH8wz*9t)HIAZ?n`8ti zht?sHBWq}CbTvM$nH4MA>ylWt&VcKv0FHi{QY^+cGS=i9i%nl?gjzv_GifN;ypUWt zVw2Bd&y^rUOpQEfW?B6vF)^5@RJ95BfZkpKhk||LnIP4QpkQv*rDF8q_{#kkpGCDr z4vMzf^uZ&%q|K#;Z|jW`seSCt)R!jmG|ov;Mi@RD7>>ea2;Z!ysrI#cbY**-xBb#v zd?iR~^l;VH`xO0~36;!cuiS(;W0b*pG!rN*Vjf!@R=m$ycY7;y_6}KW8f`z6XhKzp zLxeO(m4k*t>ft>I7;r1P^tL-Q-shFZbQ(&5mnuHWQXmt_@(r5UYCI%L;ZhiiP!7z1 zTrNcf>zV%`jo`)mInF;%bWJk9l=`e-78ZrI6q$fNd%es~m}NWWg)aLL%LkKgaw)QJ6g17F#mhgC`CobBAUi?2sS5GlR*ce;@r3(c~5)JhMiz?`U)`7g8 zQkO-EqffjHi9k#yTuQ%DLv>xo8VO0Ldx#zlIrkEWgl&fFqa<{!38jR=NOW>Dqq&IG zEDt!K9c%)vD;p-d)^ddITn7UV0GOjxO=u6rOwG*ZXV+WB<2QK7Er<6K&iX%tn-Nlo$i#9t|mJyhn2+ijS_2UUPtSi{6hUnnWQUc-2RegA|G= zy{bY223;7EM5iuiv*@Wr0w?iop=@jQ*a|4gJXGdc(AzjHXx+_}A*H?R&7+v=3J#LM znMLYSE~p2^c?{V}9OX2_0a<2z^EzcwNwWS{wx(jIqF(SGO^RNtJj9#+6r?7-fn#T_)1f47FL@M!^u1S5+lz;$ECCiJ>sGoWGne;;m+KsRef%+s-Wo zW<1e4WgtTcN&?TKAo-;*LK0%W_Ii%PrhqM zdFL0e85@dT(7mb?>xNMhtg`*t2n1X6Svb+0Br+lBrsOF!hN?{-i2V3DS9>BL?8~6)tA*-$0~}aCQhL7wf`i zhwDox*1)%XYcOV9JcJzOm_`fH$zpbXN`on-M|MJ@Q|qV)Qj>}dST8E7rT=e4&@>ve zObG}S?;Sc8YH!e~Y}Y!M!6LnxT3Z%HRSGDNLg*5CW)lW?XNpzG{tzR?%uvvAXUYMH z8zi`oyo&G!)IVgtrVla88v%G|Isxeh$i*;G1>{bLsbGV!Z?MY-E%JoMVsf#y9(X^L zP6uLCpp)UQVyt*8(pMJq{$n_h@=|bvA@Jxbp0L5*=}mj1vWpOiSOz%qxJyaIkV7!| z)KK&!oMQ=gypYy-AW~1kEKDtB&eih-ZC#0ZCe9s_a!K@%LJMgS6b>Gq1xiiY4J13F zI*8puz^G1Q14yrMw7~<(713KYaE|fTcEt>G#&qoGa()Bk2E+^Nih}eAA>Vqe>JejN zG*B&+jY9)(2HFW}MT7Dp-GKBJJp>=4-jkuDd5}@s>paWSo1xIyVk3s|2%Sg3({r5; zEjXVqows*PKKGcHXZQI%C4E%x7A2i1bVHUCZo*1-%!TbK<3N#a*{JZ(+;nF9HLxqN zMxs&Ra>SUCGM9}$U?8zNmU%*ShD3}KcRSuhY|X9Gs--I@6zt9(;M_p-)OI97K&N3& z>GUgPNOs7iUJZj*twZla_CKO9UNXUJdr z4*4~H474&GsGwU4!sUD!nP3QK0gE4(o6K(Zfg%#QvkJy7f)}kS9E3f^9g&gG;Bs=+ zS+cP{VCsMlTA^ej^P;3l>~*Lo7mM?|HNH9XJtYpTS>96@&QtQ<kXB8|LMeZ|@D(-?J}Um-(u{XM$9TF6p5z@FY$a?P z9!KtmP8}exlB3KEmo7bRLH634v6+?2IUlP-#zYCyvdRYcUb8%VPUaonfFMGxMy}weL;RI;T0yLt)2&IY=jcCjNYAjF*A3;9lsOb7 zg*h7zj(&<6eh`G!k4K&~0Z z1qU%$8Vqch3<>j41qMRUj`n}Bxsbt%T(XxD{5t&gT#gZ?RtU|ZfpQX0o*1TzNy7#W zo|w5;2OLIlSey^?bEAbRO*NNnGPuoRA6^nDlwicLMCHcyL6``!4|@-%T$?6(=YKG2 zgxA*7RR_F~;Y#b|8Uw~pqpeDEw-f)_Tbsh95~D46C&|6iG>~0-6Go`ynq$EBs;3cl zIy$88LSQmXa+guog1OGZHM8H3Ev;l2+&xe#t}wDng8Ny{MD-2FE90GWn&=qXxJ+In zFLIOrk}-a8>RoVd1xdr`@Fx}$$7}I6p%fEU#6_8@9fN9nEK8T2dK}}2gXncHsQN@k z@#8TU;Q$8XqkjQcAG|rzuie=WB7f|0xuTL++S&r~mICv7#KB1vz?B{S=X2_`k{}2& zOS@Mxk*v#L)|2yx@zfn3CJLh? zq;-Bs?|6s;-TE)cPB?Ax@d^p+HDo$oPF8~6-2uZy%?wiLlehG_uz_MY$_?gK+bjo) zX(hA}gSSNI<%a?&$aIka`5I)JA+~}Unay0!7Ls%-)DDESBqZ`~Kxc_#7SZB`yM7i$ zFq_9D6^tnUL??dzInF|yz-)G?RNJjqKK9gwixw=2-sz@O*O=`Xc}y21%}07>Fc4Hx zzZ#5J@(*@}vm1viR?W8PH)Hb_zp$iGnv#L6-KhV%Quc3V62%fOk#i8yywet@z6#zc zLUI<07`7M3QAmIY`<$D6Tr;RdNp8nD33a%%asS~v;9wbkaX3lH42*?^Q!hnK|2+wQ zZt468$X3QZ0CD=ecpotraXdJH4(>q&A>(u@ts(E?fn*V3;&L*J{U@h> z$TfLKS+Gb%Gou(YA_*-5k)EUNaDrz2e=2z0C8j@NDy1*sC&>F4l1&~wm+3?(V2N=T z%#CQO+vTE8pBqS^fFlSfQP2Uy(jlgR@*rLM@nX zycBR_F>|H-!=BUe1iUCfx_TFp)tldswe})1i;t`Qa#2 zJlvN`XlGwWe1HHY`+6(;a)6OT1?&#AH+i|pH+}x}(-avFOy>3RSd+39~I!CmhC}Oi~a?CY}Rj@?DXqbIE zoe=IHDf;oPp|=}cVSa3VHqm0 z9DdOGAS%TA!n)ub#Ecb7LWX@IVL^lPmXzW40&i7Me87TSshhqXZAjmhUf1*+~RTPM1vN zs7@6sBLF7@dzBDzJ(@RyFlR?$WX+LW*<9dVxCG0yot)r=Z}grl1qZalh(JJ4B;b`Y zGbl@vOx=cf`E-H~Yfr~%

IfoEp_ew)TH_CYlGKTrnxE1~`tA>g0ITe>T52pXa}0 z^X7wo{iU|bhw%CC+c$3(es~W59r#}0XE?k;d2hB3Vwstf5zc|1O8>h_c=G~zn=R8!|M)LJKIs#b6@N5mry>Kvije5_{%6C zZTQ6wS3AootDUqmbZ&$H&?3zYZdy3adv{kQtZJG?@@ zIh6I>^$tIZ@`&M=J6!Fz48P6cbHU$f_|F_(2mcsl^>eRxW&J5o{*KjeI9&7mXRCjv z!;b_%gtGd%(czl6lMTPw;TqQ@Wj*)%4j-X>mEr%x^+PsqqR+2TR{ICOJL~7+l%KHr z^KNW(WeTy%As;kP(ko8@fEdhY!W|7*%u8UDD#{}%ja%6jf!otO1f z^YEbILk`z?pSE^RcDUB@uPLjYNr$VQy5aA2xaQ||l-1809IpMf#_(@DT$#^n zT=RLD;nQ3%v;NNoKgRIuU48M%H&WJfzw2<()rD67S*{;+{NamM|9@S5&BJ3>fA z_$G(%0scwKn$IU4F1o$l@XZd_x_sC0Bj1~iSMC1-T>W3@aP7N&DXaaq!_|J(@CzL- zKDNy8I~}h5xSq1w|Cz%pl&`n?d%iF0kLrKN@L}+exq17O;R{@S$%XwWtDkRlxW-$c ztmjTSTzuvP!>@C==;{rIKj3hU>q5$E|LGilo8d2hf7XBP$43o6+Tlasb0}+Hta7;c z#^IFJ&vP9vI$2`)#SVWlc!#q3bEm__w>KL8sKdp7t~dO77iRrbf9^N@Z@@3Gc@`c1 z((szAKNoyQ%6je+hpV42rL6w1bGZ21(N_OrhtCC{u==++T=aGhWzEkfhiiSWw)#JH zxcK?4hHrOKHml$l;pjJt(XFajqMG6YE8q zw>o9D^ER#@xAmP%d9l^MhHIj)s{OMJzu(~+?*)|A&f^Z({C}3R=JU@EpG)~ctG~|& zv-TyAes1_;hra@RJIZS39EVpaA4OTu{jkILr`)Ej@&2>JwZ6Jv_=67DxIRKz?fl;1 zqW`K_fB&|x&sl-1AW4p;j}7(U~0 z(Zk7xU+Hks?Wp1RI$ZnxJj&|N6AoAXPh0(+F3I{MdU(k2VTWrTo;CbLhaU*OKV|iQ z)ZrR$nX;by4u@-=Pci)C4%c&6Q&u|Gw|9-$o3)n%JEzsL3SNpQ7u40u9UlFQpu)^ocK*ZzIE;a53acFmh9 ztNjNZEWhB%q^y2UI=oEz z2*W?%aMAPYDXX22I$Y&{q^$nm>u}N4dklZd;p+d5l=a+a9WFij5ySWXNH#9f?GFtv zJ6v*M4rM+6WQR*09Yk5}uXlKba+R|B`5}jE9$JQf#^K^uZ#Dc|4%a+fMp^Cu&f%iN zyA9v%imd-?|3`+;bGYdLkKpRh!W_OYW#KKZiG3k@t{A?~)t8?68p`U=N4Q>M^eH|z zZullwU-R%T!++p#(fRF$Z+B(Ze~s$_aP?=d!`1(%t^O+4evNy z^j}db zIJ^wL9c9tmIM*v}o<)ZR%4+94t{*mB^LC2iH*!t*gXpJg_`h*|m(>@YTw?fBuD;d3b;Y4|#> z*IR#tpF~;Dz1G!N|0fK;&*9=H@1v~tH#uDV=QD=?*5PXBcFJmhk884VY26<){FM&Z zeEy%cGwN`y`w^7Y&N&X(cuz6>0}dD6o<&*xyvyODhkvm8k2+lP_Xfj%<8aZ{{f6)P zvCW&Wuz3@I_yM@u-w!;YANe2tWO&`->gNuW)&DVv%Z@&nvfAl7T>JMF!$06~wex1f zZ{eEoE3L~v8vb2ZUvzafWj*&d4j27=(ePca&H67s@B?u5=SYWZyuUYmp~KbAUsG27 zQHM*8R1IIB!%v~C{=CiMFQD8q{CtPM2)u3hXB{rRu1{Id{V#{hKYWGN-{HD!T$-PU ztp5JsEtBu!tIrrd?CMJ{>_}PtJl)}1FWs-__P8c`vgYl0tAB;7uYN8!{HqQZoxjWQ zryVZ+=W~?R{;t<&{nvhZ)bPU`ELweS95_(={|Klh=m{H0+uYUdrTiI!c+>7zJ9j!db^`&_&Qf#{W-<(s~xWSpD_GZhpYYbDQh0S;c)TQ zYpnjC94@{64$2zW5&x8pOa8Yf!PU;29IpMo7iIN-1J{de9YsGUQC9t%bM;qP{VzLQ z{k+oZ|Cp=y!`x!^|IGCo*ZwyQ-|LfEKefKU0M~Q>&f!|G&4!=haPif{D69V494oZ{0WEaxwlbP`*Uv0`Y-yj z{|Un@Iea_HYUhm(S33t8{tkzWKc7fh{k+lPsy}7;w;V1$e2L+|cDUr@-G=Y|nXI3x z{~v}obNFU(_4D-(*ZdzsS@?{@wT{PARzI(BxcJ7X)xVQ#68Dt6dzaz2slLhUsrdaY zJE@&-3AZ@D*7swSg+K463|E}@Zo?07_+0Q`f~%hk9IkcWiL&rFJ6!y#NLh4sj>9!? zueSPEJ6!Y7rmX&4=Wyvc=Ue?d9Uk#{!yj_E^r(+hRy#j-xb(w&4Bzdav+>G5@C|VF z|8R%TrTpK9FLJo}z}}SA{&Ws+82)yLORs*T;nz4^>orMP&%M{-nx6{{|4)aD{y$Aw z&wb%%v;K?!Z!)~-aPh*82X~ z;o3(xP*yv?cevK;>y-7Jm)@N9Uvf(KtNwC_A4_>R%EC8r_44J_l-16auDt&Tw-aSO z_hg4_K3_~(?VRRt^`~z5KR8_Tb`0fcUAVs0TeESA&cAE*U*>S}&)*yVDu;_d>_u7azuw`Zhk2AW-VF}dJREQMr4Cp7 zEyKUyaLx1EDQjMTn!`V3^?%9rc;nBzQtu(k>d&sXW#iJk{kzpa(&6Hh|84lI9j^Vj zFJ-l}!QqnERmvLIH4fLlUSaj`ak%)*1%`j$;cEYrl-15N4wv5YRmvLgUbkoc7yavg z_2+1Zi_ZUK?fkvNHUCFYR{a$Y7vG*wS$+{yFF#~^Yso_e-5Lpam_e9(l;op{f{_Y zd}g`fH#=PW=$(c?>TvDrD-HjZ!$l|eQ&xYrzccH<+WDT(+<~oH(33zJ6!wgGOPcK9R4p>fA_nx{%hSIvHHUf7hV0) z>YwIt@yY!utDjwmYh8|^tZ`lLaMgd4)qmXKi^1P%_5aV|((Ary_@Q@a{S;sNx#6z_ zPvSM&cY9FQb5D2m)y~Te@8|FZhF|S)wSOjMjcb#`wI9zn{D%&gK5!dlJ@-!z*Lr=; z>hJOStpAd~Pa1xd!$oiZXZRTo*S(OSxC|5k^qo%0RENouc55=f8}t^+r3tQ?=NKI5&g9Ode({T(T*Kd0yLL#_UM9j^IbVECsTuJu|&S?%2CaLvQThX2sv;tw}b z7T@0Q-mL$xr2KWOUv~Ih@V}z0{-5G-&BH;4x46E;^fW!UVfZ;*|H*Lif!7#*9oNKu z6yH0Ga@2o^YkuBu^&fM%`0Y(rf4eVc?MM&VWc5cJF1`9`aEB%%|GSjc|4j~8|1UB8affSuZZ~|h!}Z(;DXTy8?#sp{zW0>Xf3?Ha z{yvoT+)1vN+B{2M*C?xk)krD6DG4%a%qnX>x-d54R?z1{GiI9&Yp6NYd9rL3QthX)OB zI{YZ`UxTavZ*;i$^C6UlZ*;i&bE4s&a=4y5Y4`&U*LW{6{I?F*eBMS`<9hM^SwHpM z$E^Or4p+T7lyyDY;aaa3QdU359Ip8}-0Gk2aLN6}R{utaYkvBM-{)}g;Y%s&x!-WO z?5Ufq{!h4`YxE|)>kh;B`EoWc`G3A;c-`UJciT}`|Ic)|=JQ~~-|BGfi$#>xpMP?= z=Cf_}A8@$F^&!K5#PuB4&)X=gon60@^;2~F4Xb}R_=Q$q&;5hpN4xscKli4r{-5sf zxs;DE{H+exepx_S&wZc6Rc>4Ts~x@%_*%oi<#6%;^C@c|{hDhM#}^;?yx}{2H5-@c z%Kc>)gO1b=J`;{s{dApi=QvH`qw*Lbl5ihK8I^xTu52% z{HMb;&!4gS&pKRkd6VHUejpoHv|kJ_Ib7qKLs{)FbhzmAK*MJou63_c)_6bSaIM#< z)xVvqr-yf1{U=@h2KBEse6LMeKc%;P*YKA*T+jP6xcXUlxaNOX%KG~o9Io*mOj-5& z4%hrIpe%a0)ZwE4GY!AT;o`R&DXabaxjtt4$?lXtVfcTz`s&YT4Syzwf7$T;zLt$w Ubn<=hS8azLeeCAVFXC_iADb~;_5c6? diff --git a/.nx/workspace-data/parsed-lock-file.dependencies.json b/.nx/workspace-data/parsed-lock-file.dependencies.json deleted file mode 100644 index 4fa84f459..000000000 --- a/.nx/workspace-data/parsed-lock-file.dependencies.json +++ /dev/null @@ -1,15127 +0,0 @@ -[ - { - "source": "npm:@auth/core", - "target": "npm:@panva/hkdf", - "type": "static" - }, - { - "source": "npm:@auth/core", - "target": "npm:jose", - "type": "static" - }, - { - "source": "npm:@auth/core", - "target": "npm:oauth4webapi", - "type": "static" - }, - { - "source": "npm:@auth/core", - "target": "npm:preact", - "type": "static" - }, - { - "source": "npm:@auth/core", - "target": "npm:preact-render-to-string", - "type": "static" - }, - { - "source": "npm:@babel/code-frame", - "target": "npm:@babel/helper-validator-identifier", - "type": "static" - }, - { - "source": "npm:@babel/code-frame", - "target": "npm:js-tokens", - "type": "static" - }, - { - "source": "npm:@babel/code-frame", - "target": "npm:picocolors", - "type": "static" - }, - { - "source": "npm:@babel/core", - "target": "npm:@babel/code-frame", - "type": "static" - }, - { - "source": "npm:@babel/core", - "target": "npm:@babel/generator", - "type": "static" - }, - { - "source": "npm:@babel/core", - "target": "npm:@babel/helper-compilation-targets", - "type": "static" - }, - { - "source": "npm:@babel/core", - "target": "npm:@babel/helper-module-transforms", - "type": "static" - }, - { - "source": "npm:@babel/core", - "target": "npm:@babel/helpers", - "type": "static" - }, - { - "source": "npm:@babel/core", - "target": "npm:@babel/parser", - "type": "static" - }, - { - "source": "npm:@babel/core", - "target": "npm:@babel/template", - "type": "static" - }, - { - "source": "npm:@babel/core", - "target": "npm:@babel/traverse", - "type": "static" - }, - { - "source": "npm:@babel/core", - "target": "npm:@babel/types", - "type": "static" - }, - { - "source": "npm:@babel/core", - "target": "npm:@jridgewell/remapping", - "type": "static" - }, - { - "source": "npm:@babel/core", - "target": "npm:convert-source-map", - "type": "static" - }, - { - "source": "npm:@babel/core", - "target": "npm:debug", - "type": "static" - }, - { - "source": "npm:@babel/core", - "target": "npm:gensync", - "type": "static" - }, - { - "source": "npm:@babel/core", - "target": "npm:json5", - "type": "static" - }, - { - "source": "npm:@babel/core", - "target": "npm:semver", - "type": "static" - }, - { - "source": "npm:@babel/generator", - "target": "npm:@babel/parser", - "type": "static" - }, - { - "source": "npm:@babel/generator", - "target": "npm:@babel/types", - "type": "static" - }, - { - "source": "npm:@babel/generator", - "target": "npm:@jridgewell/gen-mapping", - "type": "static" - }, - { - "source": "npm:@babel/generator", - "target": "npm:@jridgewell/trace-mapping", - "type": "static" - }, - { - "source": "npm:@babel/generator", - "target": "npm:jsesc", - "type": "static" - }, - { - "source": "npm:@babel/generator@8.0.0-rc.2", - "target": "npm:@babel/parser@8.0.0-rc.2", - "type": "static" - }, - { - "source": "npm:@babel/generator@8.0.0-rc.2", - "target": "npm:@babel/types@8.0.0-rc.2", - "type": "static" - }, - { - "source": "npm:@babel/generator@8.0.0-rc.2", - "target": "npm:@jridgewell/gen-mapping", - "type": "static" - }, - { - "source": "npm:@babel/generator@8.0.0-rc.2", - "target": "npm:@jridgewell/trace-mapping", - "type": "static" - }, - { - "source": "npm:@babel/generator@8.0.0-rc.2", - "target": "npm:@types/jsesc", - "type": "static" - }, - { - "source": "npm:@babel/generator@8.0.0-rc.2", - "target": "npm:jsesc", - "type": "static" - }, - { - "source": "npm:@babel/helper-annotate-as-pure", - "target": "npm:@babel/types", - "type": "static" - }, - { - "source": "npm:@babel/helper-compilation-targets", - "target": "npm:@babel/compat-data", - "type": "static" - }, - { - "source": "npm:@babel/helper-compilation-targets", - "target": "npm:@babel/helper-validator-option", - "type": "static" - }, - { - "source": "npm:@babel/helper-compilation-targets", - "target": "npm:browserslist", - "type": "static" - }, - { - "source": "npm:@babel/helper-compilation-targets", - "target": "npm:lru-cache", - "type": "static" - }, - { - "source": "npm:@babel/helper-compilation-targets", - "target": "npm:semver", - "type": "static" - }, - { - "source": "npm:@babel/helper-module-imports@7.18.6", - "target": "npm:@babel/types", - "type": "static" - }, - { - "source": "npm:@babel/helper-module-imports", - "target": "npm:@babel/traverse", - "type": "static" - }, - { - "source": "npm:@babel/helper-module-imports", - "target": "npm:@babel/types", - "type": "static" - }, - { - "source": "npm:@babel/helper-module-transforms", - "target": "npm:@babel/core", - "type": "static" - }, - { - "source": "npm:@babel/helper-module-transforms", - "target": "npm:@babel/helper-module-imports", - "type": "static" - }, - { - "source": "npm:@babel/helper-module-transforms", - "target": "npm:@babel/helper-validator-identifier", - "type": "static" - }, - { - "source": "npm:@babel/helper-module-transforms", - "target": "npm:@babel/traverse", - "type": "static" - }, - { - "source": "npm:@babel/helpers", - "target": "npm:@babel/template", - "type": "static" - }, - { - "source": "npm:@babel/helpers", - "target": "npm:@babel/types", - "type": "static" - }, - { - "source": "npm:@babel/parser", - "target": "npm:@babel/types", - "type": "static" - }, - { - "source": "npm:@babel/parser@8.0.0-rc.2", - "target": "npm:@babel/types@8.0.0-rc.2", - "type": "static" - }, - { - "source": "npm:@babel/plugin-syntax-flow", - "target": "npm:@babel/core", - "type": "static" - }, - { - "source": "npm:@babel/plugin-syntax-flow", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/plugin-syntax-jsx", - "target": "npm:@babel/core", - "type": "static" - }, - { - "source": "npm:@babel/plugin-syntax-jsx", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-flow-strip-types", - "target": "npm:@babel/core", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-flow-strip-types", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-flow-strip-types", - "target": "npm:@babel/plugin-syntax-flow", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-react-jsx", - "target": "npm:@babel/core", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-react-jsx", - "target": "npm:@babel/helper-annotate-as-pure", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-react-jsx", - "target": "npm:@babel/helper-module-imports", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-react-jsx", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-react-jsx", - "target": "npm:@babel/plugin-syntax-jsx", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-react-jsx", - "target": "npm:@babel/types", - "type": "static" - }, - { - "source": "npm:@babel/template", - "target": "npm:@babel/code-frame", - "type": "static" - }, - { - "source": "npm:@babel/template", - "target": "npm:@babel/parser", - "type": "static" - }, - { - "source": "npm:@babel/template", - "target": "npm:@babel/types", - "type": "static" - }, - { - "source": "npm:@babel/traverse", - "target": "npm:@babel/code-frame", - "type": "static" - }, - { - "source": "npm:@babel/traverse", - "target": "npm:@babel/generator", - "type": "static" - }, - { - "source": "npm:@babel/traverse", - "target": "npm:@babel/helper-globals", - "type": "static" - }, - { - "source": "npm:@babel/traverse", - "target": "npm:@babel/parser", - "type": "static" - }, - { - "source": "npm:@babel/traverse", - "target": "npm:@babel/template", - "type": "static" - }, - { - "source": "npm:@babel/traverse", - "target": "npm:@babel/types", - "type": "static" - }, - { - "source": "npm:@babel/traverse", - "target": "npm:debug", - "type": "static" - }, - { - "source": "npm:@babel/types", - "target": "npm:@babel/helper-string-parser", - "type": "static" - }, - { - "source": "npm:@babel/types", - "target": "npm:@babel/helper-validator-identifier", - "type": "static" - }, - { - "source": "npm:@babel/types@8.0.0-rc.2", - "target": "npm:@babel/helper-string-parser@8.0.0-rc.3", - "type": "static" - }, - { - "source": "npm:@babel/types@8.0.0-rc.2", - "target": "npm:@babel/helper-validator-identifier@8.0.0-rc.2", - "type": "static" - }, - { - "source": "npm:@batijs/compile", - "target": "npm:globby", - "type": "static" - }, - { - "source": "npm:@batijs/compile", - "target": "npm:tsdown", - "type": "static" - }, - { - "source": "npm:@biomejs/biome", - "target": "npm:@biomejs/cli-darwin-arm64", - "type": "static" - }, - { - "source": "npm:@biomejs/biome", - "target": "npm:@biomejs/cli-darwin-x64", - "type": "static" - }, - { - "source": "npm:@biomejs/biome", - "target": "npm:@biomejs/cli-linux-arm64", - "type": "static" - }, - { - "source": "npm:@biomejs/biome", - "target": "npm:@biomejs/cli-linux-arm64-musl", - "type": "static" - }, - { - "source": "npm:@biomejs/biome", - "target": "npm:@biomejs/cli-linux-x64", - "type": "static" - }, - { - "source": "npm:@biomejs/biome", - "target": "npm:@biomejs/cli-linux-x64-musl", - "type": "static" - }, - { - "source": "npm:@biomejs/biome", - "target": "npm:@biomejs/cli-win32-arm64", - "type": "static" - }, - { - "source": "npm:@biomejs/biome", - "target": "npm:@biomejs/cli-win32-x64", - "type": "static" - }, - { - "source": "npm:@brillout/vite-plugin-server-entry", - "target": "npm:@brillout/import", - "type": "static" - }, - { - "source": "npm:@brillout/vite-plugin-server-entry", - "target": "npm:@brillout/picocolors", - "type": "static" - }, - { - "source": "npm:@browserless/devices", - "target": "npm:didyoumean3", - "type": "static" - }, - { - "source": "npm:@browserless/devices", - "target": "npm:memoize-one", - "type": "static" - }, - { - "source": "npm:@browserless/devices", - "target": "npm:require-one-of", - "type": "static" - }, - { - "source": "npm:@browserless/errors", - "target": "npm:debug-logfmt", - "type": "static" - }, - { - "source": "npm:@browserless/errors", - "target": "npm:ensure-error", - "type": "static" - }, - { - "source": "npm:@browserless/errors", - "target": "npm:serialize-error", - "type": "static" - }, - { - "source": "npm:@browserless/errors", - "target": "npm:whoops", - "type": "static" - }, - { - "source": "npm:@browserless/goto", - "target": "npm:@browserless/devices", - "type": "static" - }, - { - "source": "npm:@browserless/goto", - "target": "npm:@duckduckgo/autoconsent", - "type": "static" - }, - { - "source": "npm:@browserless/goto", - "target": "npm:@ghostery/adblocker-puppeteer", - "type": "static" - }, - { - "source": "npm:@browserless/goto", - "target": "npm:debug-logfmt", - "type": "static" - }, - { - "source": "npm:@browserless/goto", - "target": "npm:got", - "type": "static" - }, - { - "source": "npm:@browserless/goto", - "target": "npm:is-url-http", - "type": "static" - }, - { - "source": "npm:@browserless/goto", - "target": "npm:p-reflect", - "type": "static" - }, - { - "source": "npm:@browserless/goto", - "target": "npm:p-timeout", - "type": "static" - }, - { - "source": "npm:@browserless/goto", - "target": "npm:shallow-equal", - "type": "static" - }, - { - "source": "npm:@browserless/goto", - "target": "npm:tough-cookie", - "type": "static" - }, - { - "source": "npm:@browserless/pdf", - "target": "npm:@browserless/goto", - "type": "static" - }, - { - "source": "npm:@browserless/pdf", - "target": "npm:@browserless/screenshot", - "type": "static" - }, - { - "source": "npm:@browserless/pdf", - "target": "npm:@kikobeats/time-span", - "type": "static" - }, - { - "source": "npm:@browserless/pdf", - "target": "npm:debug-logfmt", - "type": "static" - }, - { - "source": "npm:@browserless/pdf", - "target": "npm:pretty-ms@7.0.1", - "type": "static" - }, - { - "source": "npm:@browserless/screenshot", - "target": "npm:@browserless/goto", - "type": "static" - }, - { - "source": "npm:@browserless/screenshot", - "target": "npm:@kikobeats/content-type", - "type": "static" - }, - { - "source": "npm:@browserless/screenshot", - "target": "npm:@kikobeats/time-span", - "type": "static" - }, - { - "source": "npm:@browserless/screenshot", - "target": "npm:automad-prism-themes", - "type": "static" - }, - { - "source": "npm:@browserless/screenshot", - "target": "npm:debug-logfmt", - "type": "static" - }, - { - "source": "npm:@browserless/screenshot", - "target": "npm:got", - "type": "static" - }, - { - "source": "npm:@browserless/screenshot", - "target": "npm:is-html-content", - "type": "static" - }, - { - "source": "npm:@browserless/screenshot", - "target": "npm:is-url-http", - "type": "static" - }, - { - "source": "npm:@browserless/screenshot", - "target": "npm:lodash", - "type": "static" - }, - { - "source": "npm:@browserless/screenshot", - "target": "npm:map-values-deep", - "type": "static" - }, - { - "source": "npm:@browserless/screenshot", - "target": "npm:mime@3.0.0", - "type": "static" - }, - { - "source": "npm:@browserless/screenshot", - "target": "npm:null-prototype-object", - "type": "static" - }, - { - "source": "npm:@browserless/screenshot", - "target": "npm:p-reflect", - "type": "static" - }, - { - "source": "npm:@browserless/screenshot", - "target": "npm:pretty-ms@7.0.1", - "type": "static" - }, - { - "source": "npm:@browserless/screenshot", - "target": "npm:prism-themes", - "type": "static" - }, - { - "source": "npm:@browserless/screenshot", - "target": "npm:sharp", - "type": "static" - }, - { - "source": "npm:@browserless/screenshot", - "target": "npm:svg-gradient", - "type": "static" - }, - { - "source": "npm:@chevrotain/cst-dts-gen", - "target": "npm:@chevrotain/gast", - "type": "static" - }, - { - "source": "npm:@chevrotain/cst-dts-gen", - "target": "npm:@chevrotain/types", - "type": "static" - }, - { - "source": "npm:@chevrotain/cst-dts-gen", - "target": "npm:lodash@4.17.21", - "type": "static" - }, - { - "source": "npm:@chevrotain/gast", - "target": "npm:@chevrotain/types", - "type": "static" - }, - { - "source": "npm:@chevrotain/gast", - "target": "npm:lodash@4.17.21", - "type": "static" - }, - { - "source": "npm:@cloudflare/unenv-preset", - "target": "npm:unenv", - "type": "static" - }, - { - "source": "npm:@cloudflare/unenv-preset", - "target": "npm:workerd", - "type": "static" - }, - { - "source": "npm:@cloudflare/unenv-preset@2.7.13", - "target": "npm:unenv", - "type": "static" - }, - { - "source": "npm:@cloudflare/unenv-preset@2.7.13", - "target": "npm:workerd", - "type": "static" - }, - { - "source": "npm:@cloudflare/vite-plugin", - "target": "npm:@cloudflare/unenv-preset@2.7.13", - "type": "static" - }, - { - "source": "npm:@cloudflare/vite-plugin", - "target": "npm:@remix-run/node-fetch-server", - "type": "static" - }, - { - "source": "npm:@cloudflare/vite-plugin", - "target": "npm:defu", - "type": "static" - }, - { - "source": "npm:@cloudflare/vite-plugin", - "target": "npm:get-port", - "type": "static" - }, - { - "source": "npm:@cloudflare/vite-plugin", - "target": "npm:miniflare@4.20251217.0", - "type": "static" - }, - { - "source": "npm:@cloudflare/vite-plugin", - "target": "npm:picocolors", - "type": "static" - }, - { - "source": "npm:@cloudflare/vite-plugin", - "target": "npm:tinyglobby", - "type": "static" - }, - { - "source": "npm:@cloudflare/vite-plugin", - "target": "npm:unenv", - "type": "static" - }, - { - "source": "npm:@cloudflare/vite-plugin", - "target": "npm:vite", - "type": "static" - }, - { - "source": "npm:@cloudflare/vite-plugin", - "target": "npm:wrangler", - "type": "static" - }, - { - "source": "npm:@cloudflare/vite-plugin", - "target": "npm:ws", - "type": "static" - }, - { - "source": "npm:@compiled/babel-plugin-strip-runtime", - "target": "npm:@babel/core", - "type": "static" - }, - { - "source": "npm:@compiled/babel-plugin-strip-runtime", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@compiled/babel-plugin-strip-runtime", - "target": "npm:@babel/template", - "type": "static" - }, - { - "source": "npm:@compiled/babel-plugin-strip-runtime", - "target": "npm:@babel/traverse", - "type": "static" - }, - { - "source": "npm:@compiled/babel-plugin-strip-runtime", - "target": "npm:@babel/types", - "type": "static" - }, - { - "source": "npm:@compiled/babel-plugin-strip-runtime", - "target": "npm:@compiled/css", - "type": "static" - }, - { - "source": "npm:@compiled/babel-plugin-strip-runtime", - "target": "npm:@compiled/utils", - "type": "static" - }, - { - "source": "npm:@compiled/babel-plugin", - "target": "npm:@babel/core", - "type": "static" - }, - { - "source": "npm:@compiled/babel-plugin", - "target": "npm:@babel/generator", - "type": "static" - }, - { - "source": "npm:@compiled/babel-plugin", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@compiled/babel-plugin", - "target": "npm:@babel/parser", - "type": "static" - }, - { - "source": "npm:@compiled/babel-plugin", - "target": "npm:@babel/plugin-syntax-jsx", - "type": "static" - }, - { - "source": "npm:@compiled/babel-plugin", - "target": "npm:@babel/plugin-transform-flow-strip-types", - "type": "static" - }, - { - "source": "npm:@compiled/babel-plugin", - "target": "npm:@babel/template", - "type": "static" - }, - { - "source": "npm:@compiled/babel-plugin", - "target": "npm:@babel/traverse", - "type": "static" - }, - { - "source": "npm:@compiled/babel-plugin", - "target": "npm:@babel/types", - "type": "static" - }, - { - "source": "npm:@compiled/babel-plugin", - "target": "npm:@compiled/css", - "type": "static" - }, - { - "source": "npm:@compiled/babel-plugin", - "target": "npm:@compiled/utils", - "type": "static" - }, - { - "source": "npm:@compiled/babel-plugin", - "target": "npm:@emotion/is-prop-valid", - "type": "static" - }, - { - "source": "npm:@compiled/babel-plugin", - "target": "npm:resolve@1.22.10", - "type": "static" - }, - { - "source": "npm:@compiled/css", - "target": "npm:@compiled/utils", - "type": "static" - }, - { - "source": "npm:@compiled/css", - "target": "npm:autoprefixer", - "type": "static" - }, - { - "source": "npm:@compiled/css", - "target": "npm:cssnano-preset-default", - "type": "static" - }, - { - "source": "npm:@compiled/css", - "target": "npm:postcss", - "type": "static" - }, - { - "source": "npm:@compiled/css", - "target": "npm:postcss-discard-duplicates", - "type": "static" - }, - { - "source": "npm:@compiled/css", - "target": "npm:postcss-nested@5.0.6", - "type": "static" - }, - { - "source": "npm:@compiled/css", - "target": "npm:postcss-normalize-whitespace", - "type": "static" - }, - { - "source": "npm:@compiled/css", - "target": "npm:postcss-selector-parser@6.1.2", - "type": "static" - }, - { - "source": "npm:@compiled/css", - "target": "npm:postcss-values-parser", - "type": "static" - }, - { - "source": "npm:@compiled/react", - "target": "npm:csstype", - "type": "static" - }, - { - "source": "npm:@compiled/react", - "target": "npm:react", - "type": "static" - }, - { - "source": "npm:@compiled/utils", - "target": "npm:convert-source-map", - "type": "static" - }, - { - "source": "npm:@compiled/utils", - "target": "npm:source-map@0.7.6", - "type": "static" - }, - { - "source": "npm:@cspotcode/source-map-support", - "target": "npm:@jridgewell/trace-mapping@0.3.9", - "type": "static" - }, - { - "source": "npm:@duckduckgo/autoconsent", - "target": "npm:@ghostery/adblocker", - "type": "static" - }, - { - "source": "npm:@duckduckgo/autoconsent", - "target": "npm:@ghostery/adblocker-content", - "type": "static" - }, - { - "source": "npm:@duckduckgo/autoconsent", - "target": "npm:tldts-experimental", - "type": "static" - }, - { - "source": "npm:@electric-sql/pglite-socket", - "target": "npm:@electric-sql/pglite", - "type": "static" - }, - { - "source": "npm:@electric-sql/pglite-tools", - "target": "npm:@electric-sql/pglite", - "type": "static" - }, - { - "source": "npm:@emnapi/core", - "target": "npm:@emnapi/wasi-threads", - "type": "static" - }, - { - "source": "npm:@emnapi/core", - "target": "npm:tslib", - "type": "static" - }, - { - "source": "npm:@emnapi/runtime", - "target": "npm:tslib", - "type": "static" - }, - { - "source": "npm:@emnapi/wasi-threads", - "target": "npm:tslib", - "type": "static" - }, - { - "source": "npm:@emotion/is-prop-valid", - "target": "npm:@emotion/memoize", - "type": "static" - }, - { - "source": "npm:@esbuild-kit/core-utils", - "target": "npm:esbuild@0.18.20", - "type": "static" - }, - { - "source": "npm:@esbuild-kit/core-utils", - "target": "npm:source-map-support", - "type": "static" - }, - { - "source": "npm:@esbuild-kit/esm-loader", - "target": "npm:@esbuild-kit/core-utils", - "type": "static" - }, - { - "source": "npm:@esbuild-kit/esm-loader", - "target": "npm:get-tsconfig", - "type": "static" - }, - { - "source": "npm:@eslint-community/eslint-utils", - "target": "npm:eslint", - "type": "static" - }, - { - "source": "npm:@eslint-community/eslint-utils", - "target": "npm:eslint-visitor-keys@3.4.3", - "type": "static" - }, - { - "source": "npm:@eslint/config-array", - "target": "npm:@eslint/object-schema", - "type": "static" - }, - { - "source": "npm:@eslint/config-array", - "target": "npm:debug", - "type": "static" - }, - { - "source": "npm:@eslint/config-array", - "target": "npm:minimatch", - "type": "static" - }, - { - "source": "npm:@eslint/config-helpers", - "target": "npm:@eslint/core", - "type": "static" - }, - { - "source": "npm:@eslint/core", - "target": "npm:@types/json-schema", - "type": "static" - }, - { - "source": "npm:@eslint/eslintrc", - "target": "npm:ajv", - "type": "static" - }, - { - "source": "npm:@eslint/eslintrc", - "target": "npm:debug", - "type": "static" - }, - { - "source": "npm:@eslint/eslintrc", - "target": "npm:espree@10.4.0", - "type": "static" - }, - { - "source": "npm:@eslint/eslintrc", - "target": "npm:globals@14.0.0", - "type": "static" - }, - { - "source": "npm:@eslint/eslintrc", - "target": "npm:ignore", - "type": "static" - }, - { - "source": "npm:@eslint/eslintrc", - "target": "npm:import-fresh", - "type": "static" - }, - { - "source": "npm:@eslint/eslintrc", - "target": "npm:js-yaml", - "type": "static" - }, - { - "source": "npm:@eslint/eslintrc", - "target": "npm:minimatch", - "type": "static" - }, - { - "source": "npm:@eslint/eslintrc", - "target": "npm:strip-json-comments@3.1.1", - "type": "static" - }, - { - "source": "npm:@eslint/plugin-kit", - "target": "npm:@eslint/core", - "type": "static" - }, - { - "source": "npm:@eslint/plugin-kit", - "target": "npm:levn", - "type": "static" - }, - { - "source": "npm:@fastify/ajv-compiler", - "target": "npm:ajv@8.18.0", - "type": "static" - }, - { - "source": "npm:@fastify/ajv-compiler", - "target": "npm:ajv-formats", - "type": "static" - }, - { - "source": "npm:@fastify/ajv-compiler", - "target": "npm:fast-uri", - "type": "static" - }, - { - "source": "npm:@fastify/fast-json-stringify-compiler", - "target": "npm:fast-json-stringify", - "type": "static" - }, - { - "source": "npm:@fastify/merge-json-schemas", - "target": "npm:dequal", - "type": "static" - }, - { - "source": "npm:@fastify/proxy-addr", - "target": "npm:@fastify/forwarded", - "type": "static" - }, - { - "source": "npm:@fastify/proxy-addr", - "target": "npm:ipaddr.js", - "type": "static" - }, - { - "source": "npm:@floating-ui/core", - "target": "npm:@floating-ui/utils", - "type": "static" - }, - { - "source": "npm:@floating-ui/dom", - "target": "npm:@floating-ui/core", - "type": "static" - }, - { - "source": "npm:@floating-ui/dom", - "target": "npm:@floating-ui/utils", - "type": "static" - }, - { - "source": "npm:@floating-ui/react-dom", - "target": "npm:@floating-ui/dom", - "type": "static" - }, - { - "source": "npm:@floating-ui/react-dom", - "target": "npm:react", - "type": "static" - }, - { - "source": "npm:@floating-ui/react-dom", - "target": "npm:react-dom", - "type": "static" - }, - { - "source": "npm:@floating-ui/react", - "target": "npm:@floating-ui/react-dom", - "type": "static" - }, - { - "source": "npm:@floating-ui/react", - "target": "npm:@floating-ui/utils", - "type": "static" - }, - { - "source": "npm:@floating-ui/react", - "target": "npm:react", - "type": "static" - }, - { - "source": "npm:@floating-ui/react", - "target": "npm:react-dom", - "type": "static" - }, - { - "source": "npm:@floating-ui/react", - "target": "npm:tabbable", - "type": "static" - }, - { - "source": "npm:@ghostery/adblocker-content", - "target": "npm:@ghostery/adblocker-extended-selectors", - "type": "static" - }, - { - "source": "npm:@ghostery/adblocker-puppeteer", - "target": "npm:@ghostery/adblocker", - "type": "static" - }, - { - "source": "npm:@ghostery/adblocker-puppeteer", - "target": "npm:@ghostery/adblocker-content", - "type": "static" - }, - { - "source": "npm:@ghostery/adblocker-puppeteer", - "target": "npm:puppeteer", - "type": "static" - }, - { - "source": "npm:@ghostery/adblocker-puppeteer", - "target": "npm:tldts-experimental", - "type": "static" - }, - { - "source": "npm:@ghostery/adblocker", - "target": "npm:@ghostery/adblocker-content", - "type": "static" - }, - { - "source": "npm:@ghostery/adblocker", - "target": "npm:@ghostery/adblocker-extended-selectors", - "type": "static" - }, - { - "source": "npm:@ghostery/adblocker", - "target": "npm:@ghostery/url-parser", - "type": "static" - }, - { - "source": "npm:@ghostery/adblocker", - "target": "npm:@remusao/guess-url-type", - "type": "static" - }, - { - "source": "npm:@ghostery/adblocker", - "target": "npm:@remusao/small", - "type": "static" - }, - { - "source": "npm:@ghostery/adblocker", - "target": "npm:@remusao/smaz", - "type": "static" - }, - { - "source": "npm:@ghostery/adblocker", - "target": "npm:tldts-experimental", - "type": "static" - }, - { - "source": "npm:@ghostery/url-parser", - "target": "npm:tldts-experimental", - "type": "static" - }, - { - "source": "npm:@hono/node-server", - "target": "npm:hono@4.11.4", - "type": "static" - }, - { - "source": "npm:@hono/node-server", - "target": "npm:hono", - "type": "static" - }, - { - "source": "npm:@humanfs/node", - "target": "npm:@humanfs/core", - "type": "static" - }, - { - "source": "npm:@humanfs/node", - "target": "npm:@humanwhocodes/retry", - "type": "static" - }, - { - "source": "npm:@img/sharp-darwin-arm64@0.33.5", - "target": "npm:@img/sharp-libvips-darwin-arm64@1.0.4", - "type": "static" - }, - { - "source": "npm:@img/sharp-darwin-arm64@0.34.5", - "target": "npm:@img/sharp-libvips-darwin-arm64@1.2.4", - "type": "static" - }, - { - "source": "npm:@img/sharp-darwin-x64@0.33.5", - "target": "npm:@img/sharp-libvips-darwin-x64@1.0.4", - "type": "static" - }, - { - "source": "npm:@img/sharp-darwin-x64@0.34.5", - "target": "npm:@img/sharp-libvips-darwin-x64@1.2.4", - "type": "static" - }, - { - "source": "npm:@img/sharp-linux-arm64@0.33.5", - "target": "npm:@img/sharp-libvips-linux-arm64@1.0.4", - "type": "static" - }, - { - "source": "npm:@img/sharp-linux-arm64@0.34.5", - "target": "npm:@img/sharp-libvips-linux-arm64@1.2.4", - "type": "static" - }, - { - "source": "npm:@img/sharp-linux-arm@0.33.5", - "target": "npm:@img/sharp-libvips-linux-arm@1.0.5", - "type": "static" - }, - { - "source": "npm:@img/sharp-linux-arm@0.34.5", - "target": "npm:@img/sharp-libvips-linux-arm@1.2.4", - "type": "static" - }, - { - "source": "npm:@img/sharp-linux-ppc64", - "target": "npm:@img/sharp-libvips-linux-ppc64", - "type": "static" - }, - { - "source": "npm:@img/sharp-linux-riscv64", - "target": "npm:@img/sharp-libvips-linux-riscv64", - "type": "static" - }, - { - "source": "npm:@img/sharp-linux-s390x@0.33.5", - "target": "npm:@img/sharp-libvips-linux-s390x@1.0.4", - "type": "static" - }, - { - "source": "npm:@img/sharp-linux-s390x@0.34.5", - "target": "npm:@img/sharp-libvips-linux-s390x@1.2.4", - "type": "static" - }, - { - "source": "npm:@img/sharp-linux-x64@0.33.5", - "target": "npm:@img/sharp-libvips-linux-x64@1.0.4", - "type": "static" - }, - { - "source": "npm:@img/sharp-linux-x64", - "target": "npm:@img/sharp-libvips-linux-x64", - "type": "static" - }, - { - "source": "npm:@img/sharp-linuxmusl-arm64@0.33.5", - "target": "npm:@img/sharp-libvips-linuxmusl-arm64@1.0.4", - "type": "static" - }, - { - "source": "npm:@img/sharp-linuxmusl-arm64@0.34.5", - "target": "npm:@img/sharp-libvips-linuxmusl-arm64@1.2.4", - "type": "static" - }, - { - "source": "npm:@img/sharp-linuxmusl-x64@0.33.5", - "target": "npm:@img/sharp-libvips-linuxmusl-x64@1.0.4", - "type": "static" - }, - { - "source": "npm:@img/sharp-linuxmusl-x64", - "target": "npm:@img/sharp-libvips-linuxmusl-x64", - "type": "static" - }, - { - "source": "npm:@img/sharp-wasm32@0.33.5", - "target": "npm:@emnapi/runtime", - "type": "static" - }, - { - "source": "npm:@img/sharp-wasm32@0.34.5", - "target": "npm:@emnapi/runtime", - "type": "static" - }, - { - "source": "npm:@inquirer/checkbox", - "target": "npm:@inquirer/ansi", - "type": "static" - }, - { - "source": "npm:@inquirer/checkbox", - "target": "npm:@inquirer/core", - "type": "static" - }, - { - "source": "npm:@inquirer/checkbox", - "target": "npm:@inquirer/figures", - "type": "static" - }, - { - "source": "npm:@inquirer/checkbox", - "target": "npm:@inquirer/type", - "type": "static" - }, - { - "source": "npm:@inquirer/checkbox", - "target": "npm:@types/node", - "type": "static" - }, - { - "source": "npm:@inquirer/confirm", - "target": "npm:@inquirer/core", - "type": "static" - }, - { - "source": "npm:@inquirer/confirm", - "target": "npm:@inquirer/type", - "type": "static" - }, - { - "source": "npm:@inquirer/confirm", - "target": "npm:@types/node", - "type": "static" - }, - { - "source": "npm:@inquirer/core", - "target": "npm:@inquirer/ansi", - "type": "static" - }, - { - "source": "npm:@inquirer/core", - "target": "npm:@inquirer/figures", - "type": "static" - }, - { - "source": "npm:@inquirer/core", - "target": "npm:@inquirer/type", - "type": "static" - }, - { - "source": "npm:@inquirer/core", - "target": "npm:cli-width", - "type": "static" - }, - { - "source": "npm:@inquirer/core", - "target": "npm:fast-wrap-ansi", - "type": "static" - }, - { - "source": "npm:@inquirer/core", - "target": "npm:mute-stream", - "type": "static" - }, - { - "source": "npm:@inquirer/core", - "target": "npm:signal-exit", - "type": "static" - }, - { - "source": "npm:@inquirer/core", - "target": "npm:@types/node", - "type": "static" - }, - { - "source": "npm:@inquirer/editor", - "target": "npm:@inquirer/core", - "type": "static" - }, - { - "source": "npm:@inquirer/editor", - "target": "npm:@inquirer/external-editor", - "type": "static" - }, - { - "source": "npm:@inquirer/editor", - "target": "npm:@inquirer/type", - "type": "static" - }, - { - "source": "npm:@inquirer/editor", - "target": "npm:@types/node", - "type": "static" - }, - { - "source": "npm:@inquirer/expand", - "target": "npm:@inquirer/core", - "type": "static" - }, - { - "source": "npm:@inquirer/expand", - "target": "npm:@inquirer/type", - "type": "static" - }, - { - "source": "npm:@inquirer/expand", - "target": "npm:@types/node", - "type": "static" - }, - { - "source": "npm:@inquirer/external-editor", - "target": "npm:chardet", - "type": "static" - }, - { - "source": "npm:@inquirer/external-editor", - "target": "npm:iconv-lite@0.7.2", - "type": "static" - }, - { - "source": "npm:@inquirer/external-editor", - "target": "npm:@types/node", - "type": "static" - }, - { - "source": "npm:@inquirer/input", - "target": "npm:@inquirer/core", - "type": "static" - }, - { - "source": "npm:@inquirer/input", - "target": "npm:@inquirer/type", - "type": "static" - }, - { - "source": "npm:@inquirer/input", - "target": "npm:@types/node", - "type": "static" - }, - { - "source": "npm:@inquirer/number", - "target": "npm:@inquirer/core", - "type": "static" - }, - { - "source": "npm:@inquirer/number", - "target": "npm:@inquirer/type", - "type": "static" - }, - { - "source": "npm:@inquirer/number", - "target": "npm:@types/node", - "type": "static" - }, - { - "source": "npm:@inquirer/password", - "target": "npm:@inquirer/ansi", - "type": "static" - }, - { - "source": "npm:@inquirer/password", - "target": "npm:@inquirer/core", - "type": "static" - }, - { - "source": "npm:@inquirer/password", - "target": "npm:@inquirer/type", - "type": "static" - }, - { - "source": "npm:@inquirer/password", - "target": "npm:@types/node", - "type": "static" - }, - { - "source": "npm:@inquirer/prompts", - "target": "npm:@inquirer/checkbox", - "type": "static" - }, - { - "source": "npm:@inquirer/prompts", - "target": "npm:@inquirer/confirm", - "type": "static" - }, - { - "source": "npm:@inquirer/prompts", - "target": "npm:@inquirer/editor", - "type": "static" - }, - { - "source": "npm:@inquirer/prompts", - "target": "npm:@inquirer/expand", - "type": "static" - }, - { - "source": "npm:@inquirer/prompts", - "target": "npm:@inquirer/input", - "type": "static" - }, - { - "source": "npm:@inquirer/prompts", - "target": "npm:@inquirer/number", - "type": "static" - }, - { - "source": "npm:@inquirer/prompts", - "target": "npm:@inquirer/password", - "type": "static" - }, - { - "source": "npm:@inquirer/prompts", - "target": "npm:@inquirer/rawlist", - "type": "static" - }, - { - "source": "npm:@inquirer/prompts", - "target": "npm:@inquirer/search", - "type": "static" - }, - { - "source": "npm:@inquirer/prompts", - "target": "npm:@inquirer/select", - "type": "static" - }, - { - "source": "npm:@inquirer/prompts", - "target": "npm:@types/node", - "type": "static" - }, - { - "source": "npm:@inquirer/rawlist", - "target": "npm:@inquirer/core", - "type": "static" - }, - { - "source": "npm:@inquirer/rawlist", - "target": "npm:@inquirer/type", - "type": "static" - }, - { - "source": "npm:@inquirer/rawlist", - "target": "npm:@types/node", - "type": "static" - }, - { - "source": "npm:@inquirer/search", - "target": "npm:@inquirer/core", - "type": "static" - }, - { - "source": "npm:@inquirer/search", - "target": "npm:@inquirer/figures", - "type": "static" - }, - { - "source": "npm:@inquirer/search", - "target": "npm:@inquirer/type", - "type": "static" - }, - { - "source": "npm:@inquirer/search", - "target": "npm:@types/node", - "type": "static" - }, - { - "source": "npm:@inquirer/select", - "target": "npm:@inquirer/ansi", - "type": "static" - }, - { - "source": "npm:@inquirer/select", - "target": "npm:@inquirer/core", - "type": "static" - }, - { - "source": "npm:@inquirer/select", - "target": "npm:@inquirer/figures", - "type": "static" - }, - { - "source": "npm:@inquirer/select", - "target": "npm:@inquirer/type", - "type": "static" - }, - { - "source": "npm:@inquirer/select", - "target": "npm:@types/node", - "type": "static" - }, - { - "source": "npm:@inquirer/type", - "target": "npm:@types/node", - "type": "static" - }, - { - "source": "npm:@isaacs/cliui@8.0.2", - "target": "npm:string-width@5.1.2", - "type": "static" - }, - { - "source": "npm:@isaacs/cliui@8.0.2", - "target": "npm:string-width-cjs", - "type": "static" - }, - { - "source": "npm:@isaacs/cliui@8.0.2", - "target": "npm:strip-ansi", - "type": "static" - }, - { - "source": "npm:@isaacs/cliui@8.0.2", - "target": "npm:strip-ansi-cjs", - "type": "static" - }, - { - "source": "npm:@isaacs/cliui@8.0.2", - "target": "npm:wrap-ansi@8.1.0", - "type": "static" - }, - { - "source": "npm:@isaacs/cliui@8.0.2", - "target": "npm:wrap-ansi-cjs", - "type": "static" - }, - { - "source": "npm:@isaacs/fs-minipass", - "target": "npm:minipass", - "type": "static" - }, - { - "source": "npm:@jest/schemas", - "target": "npm:@sinclair/typebox", - "type": "static" - }, - { - "source": "npm:@jridgewell/gen-mapping", - "target": "npm:@jridgewell/sourcemap-codec", - "type": "static" - }, - { - "source": "npm:@jridgewell/gen-mapping", - "target": "npm:@jridgewell/trace-mapping", - "type": "static" - }, - { - "source": "npm:@jridgewell/remapping", - "target": "npm:@jridgewell/gen-mapping", - "type": "static" - }, - { - "source": "npm:@jridgewell/remapping", - "target": "npm:@jridgewell/trace-mapping", - "type": "static" - }, - { - "source": "npm:@jridgewell/trace-mapping", - "target": "npm:@jridgewell/resolve-uri", - "type": "static" - }, - { - "source": "npm:@jridgewell/trace-mapping", - "target": "npm:@jridgewell/sourcemap-codec", - "type": "static" - }, - { - "source": "npm:@jridgewell/trace-mapping@0.3.9", - "target": "npm:@jridgewell/resolve-uri", - "type": "static" - }, - { - "source": "npm:@jridgewell/trace-mapping@0.3.9", - "target": "npm:@jridgewell/sourcemap-codec", - "type": "static" - }, - { - "source": "npm:@mantine/core", - "target": "npm:@floating-ui/react", - "type": "static" - }, - { - "source": "npm:@mantine/core", - "target": "npm:@mantine/hooks", - "type": "static" - }, - { - "source": "npm:@mantine/core", - "target": "npm:clsx", - "type": "static" - }, - { - "source": "npm:@mantine/core", - "target": "npm:react", - "type": "static" - }, - { - "source": "npm:@mantine/core", - "target": "npm:react-dom", - "type": "static" - }, - { - "source": "npm:@mantine/core", - "target": "npm:react-number-format", - "type": "static" - }, - { - "source": "npm:@mantine/core", - "target": "npm:react-remove-scroll", - "type": "static" - }, - { - "source": "npm:@mantine/core", - "target": "npm:react-textarea-autosize", - "type": "static" - }, - { - "source": "npm:@mantine/core", - "target": "npm:type-fest", - "type": "static" - }, - { - "source": "npm:@mantine/hooks", - "target": "npm:react", - "type": "static" - }, - { - "source": "npm:@manypkg/find-root", - "target": "npm:@manypkg/tools", - "type": "static" - }, - { - "source": "npm:@manypkg/tools", - "target": "npm:jju", - "type": "static" - }, - { - "source": "npm:@manypkg/tools", - "target": "npm:js-yaml", - "type": "static" - }, - { - "source": "npm:@manypkg/tools", - "target": "npm:tinyglobby", - "type": "static" - }, - { - "source": "npm:@mapbox/node-pre-gyp", - "target": "npm:consola", - "type": "static" - }, - { - "source": "npm:@mapbox/node-pre-gyp", - "target": "npm:detect-libc", - "type": "static" - }, - { - "source": "npm:@mapbox/node-pre-gyp", - "target": "npm:https-proxy-agent@7.0.6", - "type": "static" - }, - { - "source": "npm:@mapbox/node-pre-gyp", - "target": "npm:node-fetch@2.7.0", - "type": "static" - }, - { - "source": "npm:@mapbox/node-pre-gyp", - "target": "npm:nopt", - "type": "static" - }, - { - "source": "npm:@mapbox/node-pre-gyp", - "target": "npm:semver@7.7.4", - "type": "static" - }, - { - "source": "npm:@mapbox/node-pre-gyp", - "target": "npm:tar", - "type": "static" - }, - { - "source": "npm:@motionone/animation", - "target": "npm:@motionone/easing", - "type": "static" - }, - { - "source": "npm:@motionone/animation", - "target": "npm:@motionone/types", - "type": "static" - }, - { - "source": "npm:@motionone/animation", - "target": "npm:@motionone/utils", - "type": "static" - }, - { - "source": "npm:@motionone/animation", - "target": "npm:tslib", - "type": "static" - }, - { - "source": "npm:@motionone/dom", - "target": "npm:@motionone/animation", - "type": "static" - }, - { - "source": "npm:@motionone/dom", - "target": "npm:@motionone/generators", - "type": "static" - }, - { - "source": "npm:@motionone/dom", - "target": "npm:@motionone/types", - "type": "static" - }, - { - "source": "npm:@motionone/dom", - "target": "npm:@motionone/utils", - "type": "static" - }, - { - "source": "npm:@motionone/dom", - "target": "npm:hey-listen", - "type": "static" - }, - { - "source": "npm:@motionone/dom", - "target": "npm:tslib", - "type": "static" - }, - { - "source": "npm:@motionone/easing", - "target": "npm:@motionone/utils", - "type": "static" - }, - { - "source": "npm:@motionone/easing", - "target": "npm:tslib", - "type": "static" - }, - { - "source": "npm:@motionone/generators", - "target": "npm:@motionone/types", - "type": "static" - }, - { - "source": "npm:@motionone/generators", - "target": "npm:@motionone/utils", - "type": "static" - }, - { - "source": "npm:@motionone/generators", - "target": "npm:tslib", - "type": "static" - }, - { - "source": "npm:@motionone/utils", - "target": "npm:@motionone/types", - "type": "static" - }, - { - "source": "npm:@motionone/utils", - "target": "npm:hey-listen", - "type": "static" - }, - { - "source": "npm:@motionone/utils", - "target": "npm:tslib", - "type": "static" - }, - { - "source": "npm:@mrleebo/prisma-ast", - "target": "npm:chevrotain", - "type": "static" - }, - { - "source": "npm:@mrleebo/prisma-ast", - "target": "npm:lilconfig", - "type": "static" - }, - { - "source": "npm:@napi-rs/wasm-runtime", - "target": "npm:@emnapi/core", - "type": "static" - }, - { - "source": "npm:@napi-rs/wasm-runtime", - "target": "npm:@emnapi/runtime", - "type": "static" - }, - { - "source": "npm:@napi-rs/wasm-runtime", - "target": "npm:@tybys/wasm-util", - "type": "static" - }, - { - "source": "npm:@napi-rs/wasm-runtime@1.1.1", - "target": "npm:@emnapi/core", - "type": "static" - }, - { - "source": "npm:@napi-rs/wasm-runtime@1.1.1", - "target": "npm:@emnapi/runtime", - "type": "static" - }, - { - "source": "npm:@napi-rs/wasm-runtime@1.1.1", - "target": "npm:@tybys/wasm-util@0.10.1", - "type": "static" - }, - { - "source": "npm:@nodelib/fs.scandir", - "target": "npm:@nodelib/fs.stat", - "type": "static" - }, - { - "source": "npm:@nodelib/fs.scandir", - "target": "npm:run-parallel", - "type": "static" - }, - { - "source": "npm:@nodelib/fs.walk", - "target": "npm:@nodelib/fs.scandir", - "type": "static" - }, - { - "source": "npm:@nodelib/fs.walk", - "target": "npm:fastq", - "type": "static" - }, - { - "source": "npm:@npmcli/agent", - "target": "npm:agent-base", - "type": "static" - }, - { - "source": "npm:@npmcli/agent", - "target": "npm:http-proxy-agent", - "type": "static" - }, - { - "source": "npm:@npmcli/agent", - "target": "npm:https-proxy-agent@7.0.6", - "type": "static" - }, - { - "source": "npm:@npmcli/agent", - "target": "npm:lru-cache@10.4.3", - "type": "static" - }, - { - "source": "npm:@npmcli/agent", - "target": "npm:socks-proxy-agent", - "type": "static" - }, - { - "source": "npm:@npmcli/fs", - "target": "npm:semver@7.7.4", - "type": "static" - }, - { - "source": "npm:@oxc-parser/binding-wasm32-wasi", - "target": "npm:@napi-rs/wasm-runtime@1.1.1", - "type": "static" - }, - { - "source": "npm:@oxc-resolver/binding-wasm32-wasi", - "target": "npm:@napi-rs/wasm-runtime@1.1.1", - "type": "static" - }, - { - "source": "npm:@photonjs/cloudflare", - "target": "npm:@cloudflare/vite-plugin", - "type": "static" - }, - { - "source": "npm:@photonjs/cloudflare", - "target": "npm:@photonjs/core", - "type": "static" - }, - { - "source": "npm:@photonjs/cloudflare", - "target": "npm:@universal-middleware/cloudflare", - "type": "static" - }, - { - "source": "npm:@photonjs/core", - "target": "npm:@brillout/vite-plugin-server-entry", - "type": "static" - }, - { - "source": "npm:@photonjs/core", - "target": "npm:@universal-middleware/cloudflare", - "type": "static" - }, - { - "source": "npm:@photonjs/core", - "target": "npm:@universal-middleware/compress", - "type": "static" - }, - { - "source": "npm:@photonjs/core", - "target": "npm:@universal-middleware/core", - "type": "static" - }, - { - "source": "npm:@photonjs/core", - "target": "npm:@universal-middleware/express", - "type": "static" - }, - { - "source": "npm:@photonjs/core", - "target": "npm:@universal-middleware/sirv", - "type": "static" - }, - { - "source": "npm:@photonjs/core", - "target": "npm:estree-walker", - "type": "static" - }, - { - "source": "npm:@photonjs/core", - "target": "npm:ts-deepmerge", - "type": "static" - }, - { - "source": "npm:@photonjs/core", - "target": "npm:zod@4.3.6", - "type": "static" - }, - { - "source": "npm:@photonjs/core", - "target": "npm:vite", - "type": "static" - }, - { - "source": "npm:@photonjs/express", - "target": "npm:@photonjs/core", - "type": "static" - }, - { - "source": "npm:@photonjs/express", - "target": "npm:@universal-middleware/express", - "type": "static" - }, - { - "source": "npm:@photonjs/express", - "target": "npm:vite", - "type": "static" - }, - { - "source": "npm:@photonjs/fastify", - "target": "npm:@photonjs/core", - "type": "static" - }, - { - "source": "npm:@photonjs/fastify", - "target": "npm:@universal-middleware/fastify", - "type": "static" - }, - { - "source": "npm:@photonjs/fastify", - "target": "npm:vite", - "type": "static" - }, - { - "source": "npm:@photonjs/h3", - "target": "npm:@photonjs/core", - "type": "static" - }, - { - "source": "npm:@photonjs/h3", - "target": "npm:@universal-middleware/h3", - "type": "static" - }, - { - "source": "npm:@photonjs/h3", - "target": "npm:vite", - "type": "static" - }, - { - "source": "npm:@photonjs/hono", - "target": "npm:@photonjs/core", - "type": "static" - }, - { - "source": "npm:@photonjs/hono", - "target": "npm:@universal-middleware/hono", - "type": "static" - }, - { - "source": "npm:@photonjs/hono", - "target": "npm:@hono/node-server", - "type": "static" - }, - { - "source": "npm:@photonjs/hono", - "target": "npm:vite", - "type": "static" - }, - { - "source": "npm:@photonjs/runtime", - "target": "npm:@photonjs/core", - "type": "static" - }, - { - "source": "npm:@photonjs/runtime", - "target": "npm:@photonjs/srvx", - "type": "static" - }, - { - "source": "npm:@photonjs/runtime", - "target": "npm:@universal-middleware/core", - "type": "static" - }, - { - "source": "npm:@photonjs/runtime", - "target": "npm:@universal-middleware/sirv", - "type": "static" - }, - { - "source": "npm:@photonjs/runtime", - "target": "npm:srvx", - "type": "static" - }, - { - "source": "npm:@photonjs/runtime", - "target": "npm:standaloner", - "type": "static" - }, - { - "source": "npm:@photonjs/runtime", - "target": "npm:vite", - "type": "static" - }, - { - "source": "npm:@photonjs/srvx", - "target": "npm:@photonjs/core", - "type": "static" - }, - { - "source": "npm:@photonjs/srvx", - "target": "npm:@universal-middleware/srvx", - "type": "static" - }, - { - "source": "npm:@photonjs/srvx", - "target": "npm:vite", - "type": "static" - }, - { - "source": "npm:@photonjs/vercel", - "target": "npm:@brillout/libassert", - "type": "static" - }, - { - "source": "npm:@photonjs/vercel", - "target": "npm:@manypkg/find-root", - "type": "static" - }, - { - "source": "npm:@photonjs/vercel", - "target": "npm:@photonjs/core", - "type": "static" - }, - { - "source": "npm:@photonjs/vercel", - "target": "npm:@photonjs/runtime", - "type": "static" - }, - { - "source": "npm:@photonjs/vercel", - "target": "npm:@universal-middleware/core", - "type": "static" - }, - { - "source": "npm:@photonjs/vercel", - "target": "npm:@universal-middleware/vercel", - "type": "static" - }, - { - "source": "npm:@photonjs/vercel", - "target": "npm:@vercel/build-utils", - "type": "static" - }, - { - "source": "npm:@photonjs/vercel", - "target": "npm:@vercel/nft", - "type": "static" - }, - { - "source": "npm:@photonjs/vercel", - "target": "npm:@vercel/routing-utils", - "type": "static" - }, - { - "source": "npm:@photonjs/vercel", - "target": "npm:@vite-plugin-vercel/schemas", - "type": "static" - }, - { - "source": "npm:@photonjs/vercel", - "target": "npm:convert-route", - "type": "static" - }, - { - "source": "npm:@photonjs/vercel", - "target": "npm:esbuild", - "type": "static" - }, - { - "source": "npm:@photonjs/vercel", - "target": "npm:fast-glob", - "type": "static" - }, - { - "source": "npm:@photonjs/vercel", - "target": "npm:magicast", - "type": "static" - }, - { - "source": "npm:@photonjs/vercel", - "target": "npm:path-to-regexp", - "type": "static" - }, - { - "source": "npm:@photonjs/vercel", - "target": "npm:strip-ansi", - "type": "static" - }, - { - "source": "npm:@photonjs/vercel", - "target": "npm:vite", - "type": "static" - }, - { - "source": "npm:@photonjs/vercel", - "target": "npm:vite-plugin-wasm", - "type": "static" - }, - { - "source": "npm:@poppinss/colors", - "target": "npm:kleur", - "type": "static" - }, - { - "source": "npm:@poppinss/dumper", - "target": "npm:@poppinss/colors", - "type": "static" - }, - { - "source": "npm:@poppinss/dumper", - "target": "npm:@sindresorhus/is@7.1.0", - "type": "static" - }, - { - "source": "npm:@poppinss/dumper", - "target": "npm:supports-color@10.2.2", - "type": "static" - }, - { - "source": "npm:@prisma/client", - "target": "npm:@prisma/client-runtime-utils", - "type": "static" - }, - { - "source": "npm:@prisma/client", - "target": "npm:prisma", - "type": "static" - }, - { - "source": "npm:@prisma/client", - "target": "npm:typescript", - "type": "static" - }, - { - "source": "npm:@prisma/config", - "target": "npm:c12", - "type": "static" - }, - { - "source": "npm:@prisma/config", - "target": "npm:deepmerge-ts", - "type": "static" - }, - { - "source": "npm:@prisma/config", - "target": "npm:effect", - "type": "static" - }, - { - "source": "npm:@prisma/config", - "target": "npm:empathic", - "type": "static" - }, - { - "source": "npm:@prisma/dev", - "target": "npm:@electric-sql/pglite", - "type": "static" - }, - { - "source": "npm:@prisma/dev", - "target": "npm:@electric-sql/pglite-socket", - "type": "static" - }, - { - "source": "npm:@prisma/dev", - "target": "npm:@electric-sql/pglite-tools", - "type": "static" - }, - { - "source": "npm:@prisma/dev", - "target": "npm:@hono/node-server", - "type": "static" - }, - { - "source": "npm:@prisma/dev", - "target": "npm:@mrleebo/prisma-ast", - "type": "static" - }, - { - "source": "npm:@prisma/dev", - "target": "npm:@prisma/get-platform", - "type": "static" - }, - { - "source": "npm:@prisma/dev", - "target": "npm:@prisma/query-plan-executor", - "type": "static" - }, - { - "source": "npm:@prisma/dev", - "target": "npm:foreground-child", - "type": "static" - }, - { - "source": "npm:@prisma/dev", - "target": "npm:get-port-please", - "type": "static" - }, - { - "source": "npm:@prisma/dev", - "target": "npm:hono@4.11.4", - "type": "static" - }, - { - "source": "npm:@prisma/dev", - "target": "npm:http-status-codes", - "type": "static" - }, - { - "source": "npm:@prisma/dev", - "target": "npm:pathe", - "type": "static" - }, - { - "source": "npm:@prisma/dev", - "target": "npm:proper-lockfile", - "type": "static" - }, - { - "source": "npm:@prisma/dev", - "target": "npm:remeda", - "type": "static" - }, - { - "source": "npm:@prisma/dev", - "target": "npm:std-env@3.10.0", - "type": "static" - }, - { - "source": "npm:@prisma/dev", - "target": "npm:valibot", - "type": "static" - }, - { - "source": "npm:@prisma/dev", - "target": "npm:zeptomatch", - "type": "static" - }, - { - "source": "npm:@prisma/engines", - "target": "npm:@prisma/debug", - "type": "static" - }, - { - "source": "npm:@prisma/engines", - "target": "npm:@prisma/engines-version", - "type": "static" - }, - { - "source": "npm:@prisma/engines", - "target": "npm:@prisma/fetch-engine", - "type": "static" - }, - { - "source": "npm:@prisma/engines", - "target": "npm:@prisma/get-platform@7.5.0", - "type": "static" - }, - { - "source": "npm:@prisma/fetch-engine", - "target": "npm:@prisma/debug", - "type": "static" - }, - { - "source": "npm:@prisma/fetch-engine", - "target": "npm:@prisma/engines-version", - "type": "static" - }, - { - "source": "npm:@prisma/fetch-engine", - "target": "npm:@prisma/get-platform@7.5.0", - "type": "static" - }, - { - "source": "npm:@prisma/get-platform", - "target": "npm:@prisma/debug@7.2.0", - "type": "static" - }, - { - "source": "npm:@prisma/get-platform@7.5.0", - "target": "npm:@prisma/debug", - "type": "static" - }, - { - "source": "npm:@prisma/studio-core", - "target": "npm:@types/react", - "type": "static" - }, - { - "source": "npm:@prisma/studio-core", - "target": "npm:react", - "type": "static" - }, - { - "source": "npm:@prisma/studio-core", - "target": "npm:react-dom", - "type": "static" - }, - { - "source": "npm:@puppeteer/browsers", - "target": "npm:debug", - "type": "static" - }, - { - "source": "npm:@puppeteer/browsers", - "target": "npm:extract-zip", - "type": "static" - }, - { - "source": "npm:@puppeteer/browsers", - "target": "npm:progress", - "type": "static" - }, - { - "source": "npm:@puppeteer/browsers", - "target": "npm:proxy-agent", - "type": "static" - }, - { - "source": "npm:@puppeteer/browsers", - "target": "npm:semver@7.7.4", - "type": "static" - }, - { - "source": "npm:@puppeteer/browsers", - "target": "npm:tar-fs", - "type": "static" - }, - { - "source": "npm:@puppeteer/browsers", - "target": "npm:yargs", - "type": "static" - }, - { - "source": "npm:@quansync/fs", - "target": "npm:quansync", - "type": "static" - }, - { - "source": "npm:@radix-ui/react-icons", - "target": "npm:react", - "type": "static" - }, - { - "source": "npm:@remusao/smaz-compress", - "target": "npm:@remusao/trie", - "type": "static" - }, - { - "source": "npm:@remusao/smaz", - "target": "npm:@remusao/smaz-compress", - "type": "static" - }, - { - "source": "npm:@remusao/smaz", - "target": "npm:@remusao/smaz-decompress", - "type": "static" - }, - { - "source": "npm:@rolldown/binding-wasm32-wasi@1.0.0-beta.51", - "target": "npm:@napi-rs/wasm-runtime@1.1.1", - "type": "static" - }, - { - "source": "npm:@rolldown/binding-wasm32-wasi@1.0.0-rc.11", - "target": "npm:@napi-rs/wasm-runtime@1.1.1", - "type": "static" - }, - { - "source": "npm:@rolldown/binding-wasm32-wasi@1.0.0-rc.9", - "target": "npm:@napi-rs/wasm-runtime@1.1.1", - "type": "static" - }, - { - "source": "npm:@rollup/pluginutils", - "target": "npm:@types/estree", - "type": "static" - }, - { - "source": "npm:@rollup/pluginutils", - "target": "npm:estree-walker@2.0.2", - "type": "static" - }, - { - "source": "npm:@rollup/pluginutils", - "target": "npm:picomatch", - "type": "static" - }, - { - "source": "npm:@sentry-internal/browser-utils", - "target": "npm:@sentry/core", - "type": "static" - }, - { - "source": "npm:@sentry-internal/feedback", - "target": "npm:@sentry/core", - "type": "static" - }, - { - "source": "npm:@sentry-internal/replay-canvas", - "target": "npm:@sentry-internal/replay", - "type": "static" - }, - { - "source": "npm:@sentry-internal/replay-canvas", - "target": "npm:@sentry/core", - "type": "static" - }, - { - "source": "npm:@sentry-internal/replay", - "target": "npm:@sentry-internal/browser-utils", - "type": "static" - }, - { - "source": "npm:@sentry-internal/replay", - "target": "npm:@sentry/core", - "type": "static" - }, - { - "source": "npm:@sentry/browser", - "target": "npm:@sentry-internal/browser-utils", - "type": "static" - }, - { - "source": "npm:@sentry/browser", - "target": "npm:@sentry-internal/feedback", - "type": "static" - }, - { - "source": "npm:@sentry/browser", - "target": "npm:@sentry-internal/replay", - "type": "static" - }, - { - "source": "npm:@sentry/browser", - "target": "npm:@sentry-internal/replay-canvas", - "type": "static" - }, - { - "source": "npm:@sentry/browser", - "target": "npm:@sentry/core", - "type": "static" - }, - { - "source": "npm:@sentry/bundler-plugin-core", - "target": "npm:@babel/core", - "type": "static" - }, - { - "source": "npm:@sentry/bundler-plugin-core", - "target": "npm:@sentry/babel-plugin-component-annotate", - "type": "static" - }, - { - "source": "npm:@sentry/bundler-plugin-core", - "target": "npm:@sentry/cli", - "type": "static" - }, - { - "source": "npm:@sentry/bundler-plugin-core", - "target": "npm:dotenv@16.6.1", - "type": "static" - }, - { - "source": "npm:@sentry/bundler-plugin-core", - "target": "npm:find-up", - "type": "static" - }, - { - "source": "npm:@sentry/bundler-plugin-core", - "target": "npm:glob", - "type": "static" - }, - { - "source": "npm:@sentry/bundler-plugin-core", - "target": "npm:magic-string", - "type": "static" - }, - { - "source": "npm:@sentry/cli", - "target": "npm:https-proxy-agent", - "type": "static" - }, - { - "source": "npm:@sentry/cli", - "target": "npm:node-fetch@2.7.0", - "type": "static" - }, - { - "source": "npm:@sentry/cli", - "target": "npm:progress", - "type": "static" - }, - { - "source": "npm:@sentry/cli", - "target": "npm:proxy-from-env", - "type": "static" - }, - { - "source": "npm:@sentry/cli", - "target": "npm:which@2.0.2", - "type": "static" - }, - { - "source": "npm:@sentry/cli", - "target": "npm:@sentry/cli-darwin", - "type": "static" - }, - { - "source": "npm:@sentry/cli", - "target": "npm:@sentry/cli-linux-arm", - "type": "static" - }, - { - "source": "npm:@sentry/cli", - "target": "npm:@sentry/cli-linux-arm64", - "type": "static" - }, - { - "source": "npm:@sentry/cli", - "target": "npm:@sentry/cli-linux-i686", - "type": "static" - }, - { - "source": "npm:@sentry/cli", - "target": "npm:@sentry/cli-linux-x64", - "type": "static" - }, - { - "source": "npm:@sentry/cli", - "target": "npm:@sentry/cli-win32-arm64", - "type": "static" - }, - { - "source": "npm:@sentry/cli", - "target": "npm:@sentry/cli-win32-i686", - "type": "static" - }, - { - "source": "npm:@sentry/cli", - "target": "npm:@sentry/cli-win32-x64", - "type": "static" - }, - { - "source": "npm:@sentry/react", - "target": "npm:@sentry/browser", - "type": "static" - }, - { - "source": "npm:@sentry/react", - "target": "npm:@sentry/core", - "type": "static" - }, - { - "source": "npm:@sentry/react", - "target": "npm:react", - "type": "static" - }, - { - "source": "npm:@sentry/rollup-plugin", - "target": "npm:@sentry/bundler-plugin-core", - "type": "static" - }, - { - "source": "npm:@sentry/rollup-plugin", - "target": "npm:magic-string", - "type": "static" - }, - { - "source": "npm:@sentry/solid", - "target": "npm:@sentry/browser", - "type": "static" - }, - { - "source": "npm:@sentry/solid", - "target": "npm:@sentry/core", - "type": "static" - }, - { - "source": "npm:@sentry/solid", - "target": "npm:solid-js", - "type": "static" - }, - { - "source": "npm:@sentry/vite-plugin", - "target": "npm:@sentry/bundler-plugin-core", - "type": "static" - }, - { - "source": "npm:@sentry/vite-plugin", - "target": "npm:@sentry/rollup-plugin", - "type": "static" - }, - { - "source": "npm:@sentry/vue", - "target": "npm:@sentry/browser", - "type": "static" - }, - { - "source": "npm:@sentry/vue", - "target": "npm:@sentry/core", - "type": "static" - }, - { - "source": "npm:@sentry/vue", - "target": "npm:vue", - "type": "static" - }, - { - "source": "npm:@solid-primitives/props", - "target": "npm:@solid-primitives/utils", - "type": "static" - }, - { - "source": "npm:@solid-primitives/props", - "target": "npm:solid-js", - "type": "static" - }, - { - "source": "npm:@solid-primitives/refs", - "target": "npm:@solid-primitives/utils", - "type": "static" - }, - { - "source": "npm:@solid-primitives/refs", - "target": "npm:solid-js", - "type": "static" - }, - { - "source": "npm:@solid-primitives/scheduled", - "target": "npm:solid-js", - "type": "static" - }, - { - "source": "npm:@solid-primitives/transition-group", - "target": "npm:solid-js", - "type": "static" - }, - { - "source": "npm:@solid-primitives/utils", - "target": "npm:solid-js", - "type": "static" - }, - { - "source": "npm:@szmarczak/http-timer", - "target": "npm:defer-to-connect", - "type": "static" - }, - { - "source": "npm:@tailwindcss/node", - "target": "npm:@jridgewell/remapping", - "type": "static" - }, - { - "source": "npm:@tailwindcss/node", - "target": "npm:enhanced-resolve", - "type": "static" - }, - { - "source": "npm:@tailwindcss/node", - "target": "npm:jiti", - "type": "static" - }, - { - "source": "npm:@tailwindcss/node", - "target": "npm:lightningcss", - "type": "static" - }, - { - "source": "npm:@tailwindcss/node", - "target": "npm:magic-string", - "type": "static" - }, - { - "source": "npm:@tailwindcss/node", - "target": "npm:source-map-js", - "type": "static" - }, - { - "source": "npm:@tailwindcss/node", - "target": "npm:tailwindcss", - "type": "static" - }, - { - "source": "npm:@tailwindcss/oxide", - "target": "npm:@tailwindcss/oxide-android-arm64", - "type": "static" - }, - { - "source": "npm:@tailwindcss/oxide", - "target": "npm:@tailwindcss/oxide-darwin-arm64", - "type": "static" - }, - { - "source": "npm:@tailwindcss/oxide", - "target": "npm:@tailwindcss/oxide-darwin-x64", - "type": "static" - }, - { - "source": "npm:@tailwindcss/oxide", - "target": "npm:@tailwindcss/oxide-freebsd-x64", - "type": "static" - }, - { - "source": "npm:@tailwindcss/oxide", - "target": "npm:@tailwindcss/oxide-linux-arm-gnueabihf", - "type": "static" - }, - { - "source": "npm:@tailwindcss/oxide", - "target": "npm:@tailwindcss/oxide-linux-arm64-gnu", - "type": "static" - }, - { - "source": "npm:@tailwindcss/oxide", - "target": "npm:@tailwindcss/oxide-linux-arm64-musl", - "type": "static" - }, - { - "source": "npm:@tailwindcss/oxide", - "target": "npm:@tailwindcss/oxide-linux-x64-gnu", - "type": "static" - }, - { - "source": "npm:@tailwindcss/oxide", - "target": "npm:@tailwindcss/oxide-linux-x64-musl", - "type": "static" - }, - { - "source": "npm:@tailwindcss/oxide", - "target": "npm:@tailwindcss/oxide-wasm32-wasi", - "type": "static" - }, - { - "source": "npm:@tailwindcss/oxide", - "target": "npm:@tailwindcss/oxide-win32-arm64-msvc", - "type": "static" - }, - { - "source": "npm:@tailwindcss/oxide", - "target": "npm:@tailwindcss/oxide-win32-x64-msvc", - "type": "static" - }, - { - "source": "npm:@tailwindcss/vite", - "target": "npm:@tailwindcss/node", - "type": "static" - }, - { - "source": "npm:@tailwindcss/vite", - "target": "npm:@tailwindcss/oxide", - "type": "static" - }, - { - "source": "npm:@tailwindcss/vite", - "target": "npm:tailwindcss", - "type": "static" - }, - { - "source": "npm:@tailwindcss/vite", - "target": "npm:vite", - "type": "static" - }, - { - "source": "npm:@trpc/client", - "target": "npm:@trpc/server", - "type": "static" - }, - { - "source": "npm:@trpc/client", - "target": "npm:typescript", - "type": "static" - }, - { - "source": "npm:@trpc/server", - "target": "npm:typescript", - "type": "static" - }, - { - "source": "npm:@ts-morph/common", - "target": "npm:fast-glob", - "type": "static" - }, - { - "source": "npm:@ts-morph/common", - "target": "npm:minimatch@10.2.3", - "type": "static" - }, - { - "source": "npm:@ts-morph/common", - "target": "npm:path-browserify", - "type": "static" - }, - { - "source": "npm:@ts-rest/core", - "target": "npm:@types/node", - "type": "static" - }, - { - "source": "npm:@ts-rest/core", - "target": "npm:zod", - "type": "static" - }, - { - "source": "npm:@ts-rest/serverless", - "target": "npm:@ts-rest/core", - "type": "static" - }, - { - "source": "npm:@ts-rest/serverless", - "target": "npm:itty-router", - "type": "static" - }, - { - "source": "npm:@ts-rest/serverless", - "target": "npm:@types/aws-lambda", - "type": "static" - }, - { - "source": "npm:@ts-rest/serverless", - "target": "npm:zod", - "type": "static" - }, - { - "source": "npm:@tybys/wasm-util@0.10.1", - "target": "npm:tslib", - "type": "static" - }, - { - "source": "npm:@tybys/wasm-util", - "target": "npm:tslib", - "type": "static" - }, - { - "source": "npm:@types/babel__core", - "target": "npm:@babel/parser", - "type": "static" - }, - { - "source": "npm:@types/babel__core", - "target": "npm:@babel/types", - "type": "static" - }, - { - "source": "npm:@types/babel__core", - "target": "npm:@types/babel__generator", - "type": "static" - }, - { - "source": "npm:@types/babel__core", - "target": "npm:@types/babel__template", - "type": "static" - }, - { - "source": "npm:@types/babel__core", - "target": "npm:@types/babel__traverse", - "type": "static" - }, - { - "source": "npm:@types/babel__generator", - "target": "npm:@babel/types", - "type": "static" - }, - { - "source": "npm:@types/babel__template", - "target": "npm:@babel/parser", - "type": "static" - }, - { - "source": "npm:@types/babel__template", - "target": "npm:@babel/types", - "type": "static" - }, - { - "source": "npm:@types/babel__traverse", - "target": "npm:@babel/types", - "type": "static" - }, - { - "source": "npm:@types/better-sqlite3", - "target": "npm:@types/node", - "type": "static" - }, - { - "source": "npm:@types/body-parser", - "target": "npm:@types/connect", - "type": "static" - }, - { - "source": "npm:@types/body-parser", - "target": "npm:@types/node", - "type": "static" - }, - { - "source": "npm:@types/cacheable-request", - "target": "npm:@types/http-cache-semantics", - "type": "static" - }, - { - "source": "npm:@types/cacheable-request", - "target": "npm:@types/keyv", - "type": "static" - }, - { - "source": "npm:@types/cacheable-request", - "target": "npm:@types/node", - "type": "static" - }, - { - "source": "npm:@types/cacheable-request", - "target": "npm:@types/responselike", - "type": "static" - }, - { - "source": "npm:@types/chai", - "target": "npm:@types/deep-eql", - "type": "static" - }, - { - "source": "npm:@types/connect", - "target": "npm:@types/node", - "type": "static" - }, - { - "source": "npm:@types/debug", - "target": "npm:@types/ms", - "type": "static" - }, - { - "source": "npm:@types/eslint", - "target": "npm:@types/estree", - "type": "static" - }, - { - "source": "npm:@types/eslint", - "target": "npm:@types/json-schema", - "type": "static" - }, - { - "source": "npm:@types/express-serve-static-core", - "target": "npm:@types/node", - "type": "static" - }, - { - "source": "npm:@types/express-serve-static-core", - "target": "npm:@types/qs", - "type": "static" - }, - { - "source": "npm:@types/express-serve-static-core", - "target": "npm:@types/range-parser", - "type": "static" - }, - { - "source": "npm:@types/express-serve-static-core", - "target": "npm:@types/send", - "type": "static" - }, - { - "source": "npm:@types/express", - "target": "npm:@types/body-parser", - "type": "static" - }, - { - "source": "npm:@types/express", - "target": "npm:@types/express-serve-static-core", - "type": "static" - }, - { - "source": "npm:@types/express", - "target": "npm:@types/serve-static", - "type": "static" - }, - { - "source": "npm:@types/keyv", - "target": "npm:@types/node", - "type": "static" - }, - { - "source": "npm:@types/mdast", - "target": "npm:@types/unist@3.0.3", - "type": "static" - }, - { - "source": "npm:@types/node", - "target": "npm:undici-types", - "type": "static" - }, - { - "source": "npm:@types/react-dom", - "target": "npm:@types/react", - "type": "static" - }, - { - "source": "npm:@types/react", - "target": "npm:csstype", - "type": "static" - }, - { - "source": "npm:@types/responselike", - "target": "npm:@types/node", - "type": "static" - }, - { - "source": "npm:@types/send", - "target": "npm:@types/node", - "type": "static" - }, - { - "source": "npm:@types/serve-static", - "target": "npm:@types/http-errors", - "type": "static" - }, - { - "source": "npm:@types/serve-static", - "target": "npm:@types/node", - "type": "static" - }, - { - "source": "npm:@types/yauzl", - "target": "npm:@types/node", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/eslint-plugin", - "target": "npm:@eslint-community/regexpp", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/eslint-plugin", - "target": "npm:@typescript-eslint/parser", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/eslint-plugin", - "target": "npm:@typescript-eslint/scope-manager", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/eslint-plugin", - "target": "npm:@typescript-eslint/type-utils", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/eslint-plugin", - "target": "npm:@typescript-eslint/utils", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/eslint-plugin", - "target": "npm:@typescript-eslint/visitor-keys", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/eslint-plugin", - "target": "npm:eslint", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/eslint-plugin", - "target": "npm:ignore@7.0.5", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/eslint-plugin", - "target": "npm:natural-compare", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/eslint-plugin", - "target": "npm:ts-api-utils", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/eslint-plugin", - "target": "npm:typescript", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/parser", - "target": "npm:@typescript-eslint/scope-manager", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/parser", - "target": "npm:@typescript-eslint/types", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/parser", - "target": "npm:@typescript-eslint/typescript-estree", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/parser", - "target": "npm:@typescript-eslint/visitor-keys", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/parser", - "target": "npm:debug", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/parser", - "target": "npm:eslint", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/parser", - "target": "npm:typescript", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/project-service", - "target": "npm:@typescript-eslint/tsconfig-utils", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/project-service", - "target": "npm:@typescript-eslint/types", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/project-service", - "target": "npm:debug", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/project-service", - "target": "npm:typescript", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/scope-manager", - "target": "npm:@typescript-eslint/types", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/scope-manager", - "target": "npm:@typescript-eslint/visitor-keys", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/tsconfig-utils", - "target": "npm:typescript", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/type-utils", - "target": "npm:@typescript-eslint/types", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/type-utils", - "target": "npm:@typescript-eslint/typescript-estree", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/type-utils", - "target": "npm:@typescript-eslint/utils", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/type-utils", - "target": "npm:debug", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/type-utils", - "target": "npm:eslint", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/type-utils", - "target": "npm:ts-api-utils", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/type-utils", - "target": "npm:typescript", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/typescript-estree", - "target": "npm:@typescript-eslint/project-service", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/typescript-estree", - "target": "npm:@typescript-eslint/tsconfig-utils", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/typescript-estree", - "target": "npm:@typescript-eslint/types", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/typescript-estree", - "target": "npm:@typescript-eslint/visitor-keys", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/typescript-estree", - "target": "npm:debug", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/typescript-estree", - "target": "npm:minimatch@10.2.3", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/typescript-estree", - "target": "npm:semver@7.7.4", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/typescript-estree", - "target": "npm:tinyglobby", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/typescript-estree", - "target": "npm:ts-api-utils", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/typescript-estree", - "target": "npm:typescript", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/utils", - "target": "npm:@eslint-community/eslint-utils", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/utils", - "target": "npm:@typescript-eslint/scope-manager", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/utils", - "target": "npm:@typescript-eslint/types", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/utils", - "target": "npm:@typescript-eslint/typescript-estree", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/utils", - "target": "npm:eslint", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/utils", - "target": "npm:typescript", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/visitor-keys", - "target": "npm:@typescript-eslint/types", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/visitor-keys", - "target": "npm:eslint-visitor-keys@5.0.1", - "type": "static" - }, - { - "source": "npm:@universal-middleware/cloudflare", - "target": "npm:@universal-middleware/core", - "type": "static" - }, - { - "source": "npm:@universal-middleware/core", - "target": "npm:regexparam", - "type": "static" - }, - { - "source": "npm:@universal-middleware/core", - "target": "npm:tough-cookie", - "type": "static" - }, - { - "source": "npm:@universal-middleware/core", - "target": "npm:@cloudflare/workers-types", - "type": "static" - }, - { - "source": "npm:@universal-middleware/core", - "target": "npm:@types/express", - "type": "static" - }, - { - "source": "npm:@universal-middleware/core", - "target": "npm:fastify", - "type": "static" - }, - { - "source": "npm:@universal-middleware/core", - "target": "npm:h3", - "type": "static" - }, - { - "source": "npm:@universal-middleware/core", - "target": "npm:hono", - "type": "static" - }, - { - "source": "npm:@universal-middleware/core", - "target": "npm:srvx", - "type": "static" - }, - { - "source": "npm:@universal-middleware/express", - "target": "npm:@universal-middleware/core", - "type": "static" - }, - { - "source": "npm:@universal-middleware/fastify", - "target": "npm:@universal-middleware/core", - "type": "static" - }, - { - "source": "npm:@universal-middleware/fastify", - "target": "npm:@universal-middleware/express", - "type": "static" - }, - { - "source": "npm:@universal-middleware/fastify", - "target": "npm:fastify-raw-body", - "type": "static" - }, - { - "source": "npm:@universal-middleware/h3", - "target": "npm:@universal-middleware/core", - "type": "static" - }, - { - "source": "npm:@universal-middleware/hono", - "target": "npm:@universal-middleware/core", - "type": "static" - }, - { - "source": "npm:@universal-middleware/sirv", - "target": "npm:mrmime", - "type": "static" - }, - { - "source": "npm:@universal-middleware/sirv", - "target": "npm:totalist", - "type": "static" - }, - { - "source": "npm:@universal-middleware/srvx", - "target": "npm:@universal-middleware/core", - "type": "static" - }, - { - "source": "npm:@universal-middleware/vercel", - "target": "npm:@universal-middleware/core", - "type": "static" - }, - { - "source": "npm:@universal-middleware/vercel", - "target": "npm:@universal-middleware/express", - "type": "static" - }, - { - "source": "npm:@universal-middleware/vercel", - "target": "npm:@universal-middleware/h3", - "type": "static" - }, - { - "source": "npm:@universal-middleware/vercel", - "target": "npm:express", - "type": "static" - }, - { - "source": "npm:@universal-middleware/vercel", - "target": "npm:fastify", - "type": "static" - }, - { - "source": "npm:@universal-middleware/vercel", - "target": "npm:h3", - "type": "static" - }, - { - "source": "npm:@universal-middleware/vercel", - "target": "npm:hono", - "type": "static" - }, - { - "source": "npm:@universal-middleware/vercel", - "target": "npm:srvx", - "type": "static" - }, - { - "source": "npm:@vercel/nft@0.30.4", - "target": "npm:@mapbox/node-pre-gyp", - "type": "static" - }, - { - "source": "npm:@vercel/nft@0.30.4", - "target": "npm:@rollup/pluginutils", - "type": "static" - }, - { - "source": "npm:@vercel/nft@0.30.4", - "target": "npm:acorn", - "type": "static" - }, - { - "source": "npm:@vercel/nft@0.30.4", - "target": "npm:acorn-import-attributes", - "type": "static" - }, - { - "source": "npm:@vercel/nft@0.30.4", - "target": "npm:async-sema", - "type": "static" - }, - { - "source": "npm:@vercel/nft@0.30.4", - "target": "npm:bindings", - "type": "static" - }, - { - "source": "npm:@vercel/nft@0.30.4", - "target": "npm:estree-walker@2.0.2", - "type": "static" - }, - { - "source": "npm:@vercel/nft@0.30.4", - "target": "npm:glob@10.5.0", - "type": "static" - }, - { - "source": "npm:@vercel/nft@0.30.4", - "target": "npm:graceful-fs", - "type": "static" - }, - { - "source": "npm:@vercel/nft@0.30.4", - "target": "npm:node-gyp-build", - "type": "static" - }, - { - "source": "npm:@vercel/nft@0.30.4", - "target": "npm:picomatch", - "type": "static" - }, - { - "source": "npm:@vercel/nft@0.30.4", - "target": "npm:resolve-from", - "type": "static" - }, - { - "source": "npm:@vercel/nft", - "target": "npm:@mapbox/node-pre-gyp", - "type": "static" - }, - { - "source": "npm:@vercel/nft", - "target": "npm:@rollup/pluginutils", - "type": "static" - }, - { - "source": "npm:@vercel/nft", - "target": "npm:acorn", - "type": "static" - }, - { - "source": "npm:@vercel/nft", - "target": "npm:acorn-import-attributes", - "type": "static" - }, - { - "source": "npm:@vercel/nft", - "target": "npm:async-sema", - "type": "static" - }, - { - "source": "npm:@vercel/nft", - "target": "npm:bindings", - "type": "static" - }, - { - "source": "npm:@vercel/nft", - "target": "npm:estree-walker@2.0.2", - "type": "static" - }, - { - "source": "npm:@vercel/nft", - "target": "npm:glob", - "type": "static" - }, - { - "source": "npm:@vercel/nft", - "target": "npm:graceful-fs", - "type": "static" - }, - { - "source": "npm:@vercel/nft", - "target": "npm:node-gyp-build", - "type": "static" - }, - { - "source": "npm:@vercel/nft", - "target": "npm:picomatch", - "type": "static" - }, - { - "source": "npm:@vercel/nft", - "target": "npm:resolve-from", - "type": "static" - }, - { - "source": "npm:@vercel/routing-utils", - "target": "npm:path-to-regexp@6.1.0", - "type": "static" - }, - { - "source": "npm:@vercel/routing-utils", - "target": "npm:path-to-regexp-updated", - "type": "static" - }, - { - "source": "npm:@vercel/routing-utils", - "target": "npm:ajv", - "type": "static" - }, - { - "source": "npm:@vikejs/biome-config", - "target": "npm:@biomejs/biome", - "type": "static" - }, - { - "source": "npm:@vite-plugin-vercel/schemas", - "target": "npm:zod@4.3.6", - "type": "static" - }, - { - "source": "npm:@vitejs/plugin-react", - "target": "npm:@rolldown/pluginutils", - "type": "static" - }, - { - "source": "npm:@vitejs/plugin-react", - "target": "npm:vite", - "type": "static" - }, - { - "source": "npm:@vitejs/plugin-vue", - "target": "npm:@rolldown/pluginutils@1.0.0-rc.2", - "type": "static" - }, - { - "source": "npm:@vitejs/plugin-vue", - "target": "npm:vite", - "type": "static" - }, - { - "source": "npm:@vitejs/plugin-vue", - "target": "npm:vue", - "type": "static" - }, - { - "source": "npm:@vitest/expect", - "target": "npm:@standard-schema/spec", - "type": "static" - }, - { - "source": "npm:@vitest/expect", - "target": "npm:@types/chai", - "type": "static" - }, - { - "source": "npm:@vitest/expect", - "target": "npm:@vitest/spy", - "type": "static" - }, - { - "source": "npm:@vitest/expect", - "target": "npm:@vitest/utils", - "type": "static" - }, - { - "source": "npm:@vitest/expect", - "target": "npm:chai", - "type": "static" - }, - { - "source": "npm:@vitest/expect", - "target": "npm:tinyrainbow", - "type": "static" - }, - { - "source": "npm:@vitest/mocker", - "target": "npm:@vitest/spy", - "type": "static" - }, - { - "source": "npm:@vitest/mocker", - "target": "npm:estree-walker", - "type": "static" - }, - { - "source": "npm:@vitest/mocker", - "target": "npm:magic-string", - "type": "static" - }, - { - "source": "npm:@vitest/mocker", - "target": "npm:vite", - "type": "static" - }, - { - "source": "npm:@vitest/pretty-format", - "target": "npm:tinyrainbow", - "type": "static" - }, - { - "source": "npm:@vitest/runner", - "target": "npm:@vitest/utils", - "type": "static" - }, - { - "source": "npm:@vitest/runner", - "target": "npm:pathe", - "type": "static" - }, - { - "source": "npm:@vitest/snapshot", - "target": "npm:@vitest/pretty-format", - "type": "static" - }, - { - "source": "npm:@vitest/snapshot", - "target": "npm:@vitest/utils", - "type": "static" - }, - { - "source": "npm:@vitest/snapshot", - "target": "npm:magic-string", - "type": "static" - }, - { - "source": "npm:@vitest/snapshot", - "target": "npm:pathe", - "type": "static" - }, - { - "source": "npm:@vitest/utils", - "target": "npm:@vitest/pretty-format", - "type": "static" - }, - { - "source": "npm:@vitest/utils", - "target": "npm:convert-source-map", - "type": "static" - }, - { - "source": "npm:@vitest/utils", - "target": "npm:tinyrainbow", - "type": "static" - }, - { - "source": "npm:@vue/compiler-core", - "target": "npm:@babel/parser", - "type": "static" - }, - { - "source": "npm:@vue/compiler-core", - "target": "npm:@vue/shared", - "type": "static" - }, - { - "source": "npm:@vue/compiler-core", - "target": "npm:entities", - "type": "static" - }, - { - "source": "npm:@vue/compiler-core", - "target": "npm:estree-walker@2.0.2", - "type": "static" - }, - { - "source": "npm:@vue/compiler-core", - "target": "npm:source-map-js", - "type": "static" - }, - { - "source": "npm:@vue/compiler-dom", - "target": "npm:@vue/compiler-core", - "type": "static" - }, - { - "source": "npm:@vue/compiler-dom", - "target": "npm:@vue/shared", - "type": "static" - }, - { - "source": "npm:@vue/compiler-sfc", - "target": "npm:@babel/parser", - "type": "static" - }, - { - "source": "npm:@vue/compiler-sfc", - "target": "npm:@vue/compiler-core", - "type": "static" - }, - { - "source": "npm:@vue/compiler-sfc", - "target": "npm:@vue/compiler-dom", - "type": "static" - }, - { - "source": "npm:@vue/compiler-sfc", - "target": "npm:@vue/compiler-ssr", - "type": "static" - }, - { - "source": "npm:@vue/compiler-sfc", - "target": "npm:@vue/shared", - "type": "static" - }, - { - "source": "npm:@vue/compiler-sfc", - "target": "npm:estree-walker@2.0.2", - "type": "static" - }, - { - "source": "npm:@vue/compiler-sfc", - "target": "npm:magic-string", - "type": "static" - }, - { - "source": "npm:@vue/compiler-sfc", - "target": "npm:postcss", - "type": "static" - }, - { - "source": "npm:@vue/compiler-sfc", - "target": "npm:source-map-js", - "type": "static" - }, - { - "source": "npm:@vue/compiler-ssr", - "target": "npm:@vue/compiler-dom", - "type": "static" - }, - { - "source": "npm:@vue/compiler-ssr", - "target": "npm:@vue/shared", - "type": "static" - }, - { - "source": "npm:@vue/reactivity", - "target": "npm:@vue/shared", - "type": "static" - }, - { - "source": "npm:@vue/runtime-core", - "target": "npm:@vue/reactivity", - "type": "static" - }, - { - "source": "npm:@vue/runtime-core", - "target": "npm:@vue/shared", - "type": "static" - }, - { - "source": "npm:@vue/runtime-dom", - "target": "npm:@vue/reactivity", - "type": "static" - }, - { - "source": "npm:@vue/runtime-dom", - "target": "npm:@vue/runtime-core", - "type": "static" - }, - { - "source": "npm:@vue/runtime-dom", - "target": "npm:@vue/shared", - "type": "static" - }, - { - "source": "npm:@vue/runtime-dom", - "target": "npm:csstype", - "type": "static" - }, - { - "source": "npm:@vue/server-renderer", - "target": "npm:@vue/compiler-ssr", - "type": "static" - }, - { - "source": "npm:@vue/server-renderer", - "target": "npm:@vue/shared", - "type": "static" - }, - { - "source": "npm:@vue/server-renderer", - "target": "npm:vue", - "type": "static" - }, - { - "source": "npm:@yarnpkg/parsers", - "target": "npm:js-yaml@3.14.2", - "type": "static" - }, - { - "source": "npm:@yarnpkg/parsers", - "target": "npm:tslib", - "type": "static" - }, - { - "source": "npm:@zkochan/js-yaml", - "target": "npm:argparse", - "type": "static" - }, - { - "source": "npm:accepts", - "target": "npm:mime-types", - "type": "static" - }, - { - "source": "npm:accepts", - "target": "npm:negotiator", - "type": "static" - }, - { - "source": "npm:acorn-import-attributes", - "target": "npm:acorn", - "type": "static" - }, - { - "source": "npm:acorn-jsx", - "target": "npm:acorn", - "type": "static" - }, - { - "source": "npm:agent-base@6.0.2", - "target": "npm:debug", - "type": "static" - }, - { - "source": "npm:ajv-formats", - "target": "npm:ajv@8.18.0", - "type": "static" - }, - { - "source": "npm:ajv", - "target": "npm:fast-deep-equal", - "type": "static" - }, - { - "source": "npm:ajv", - "target": "npm:fast-json-stable-stringify", - "type": "static" - }, - { - "source": "npm:ajv", - "target": "npm:json-schema-traverse", - "type": "static" - }, - { - "source": "npm:ajv", - "target": "npm:uri-js", - "type": "static" - }, - { - "source": "npm:ajv@8.18.0", - "target": "npm:fast-deep-equal", - "type": "static" - }, - { - "source": "npm:ajv@8.18.0", - "target": "npm:fast-uri", - "type": "static" - }, - { - "source": "npm:ajv@8.18.0", - "target": "npm:json-schema-traverse@1.0.0", - "type": "static" - }, - { - "source": "npm:ajv@8.18.0", - "target": "npm:require-from-string", - "type": "static" - }, - { - "source": "npm:ansi-styles@4.3.0", - "target": "npm:color-convert", - "type": "static" - }, - { - "source": "npm:argparse@1.0.10", - "target": "npm:sprintf-js", - "type": "static" - }, - { - "source": "npm:array-buffer-byte-length", - "target": "npm:call-bound", - "type": "static" - }, - { - "source": "npm:array-buffer-byte-length", - "target": "npm:is-array-buffer", - "type": "static" - }, - { - "source": "npm:array-includes", - "target": "npm:call-bind", - "type": "static" - }, - { - "source": "npm:array-includes", - "target": "npm:call-bound", - "type": "static" - }, - { - "source": "npm:array-includes", - "target": "npm:define-properties", - "type": "static" - }, - { - "source": "npm:array-includes", - "target": "npm:es-abstract", - "type": "static" - }, - { - "source": "npm:array-includes", - "target": "npm:es-object-atoms", - "type": "static" - }, - { - "source": "npm:array-includes", - "target": "npm:get-intrinsic", - "type": "static" - }, - { - "source": "npm:array-includes", - "target": "npm:is-string", - "type": "static" - }, - { - "source": "npm:array-includes", - "target": "npm:math-intrinsics", - "type": "static" - }, - { - "source": "npm:array.prototype.findlast", - "target": "npm:call-bind", - "type": "static" - }, - { - "source": "npm:array.prototype.findlast", - "target": "npm:define-properties", - "type": "static" - }, - { - "source": "npm:array.prototype.findlast", - "target": "npm:es-abstract", - "type": "static" - }, - { - "source": "npm:array.prototype.findlast", - "target": "npm:es-errors", - "type": "static" - }, - { - "source": "npm:array.prototype.findlast", - "target": "npm:es-object-atoms", - "type": "static" - }, - { - "source": "npm:array.prototype.findlast", - "target": "npm:es-shim-unscopables", - "type": "static" - }, - { - "source": "npm:array.prototype.flat", - "target": "npm:call-bind", - "type": "static" - }, - { - "source": "npm:array.prototype.flat", - "target": "npm:define-properties", - "type": "static" - }, - { - "source": "npm:array.prototype.flat", - "target": "npm:es-abstract", - "type": "static" - }, - { - "source": "npm:array.prototype.flat", - "target": "npm:es-shim-unscopables", - "type": "static" - }, - { - "source": "npm:array.prototype.flatmap", - "target": "npm:call-bind", - "type": "static" - }, - { - "source": "npm:array.prototype.flatmap", - "target": "npm:define-properties", - "type": "static" - }, - { - "source": "npm:array.prototype.flatmap", - "target": "npm:es-abstract", - "type": "static" - }, - { - "source": "npm:array.prototype.flatmap", - "target": "npm:es-shim-unscopables", - "type": "static" - }, - { - "source": "npm:array.prototype.tosorted", - "target": "npm:call-bind", - "type": "static" - }, - { - "source": "npm:array.prototype.tosorted", - "target": "npm:define-properties", - "type": "static" - }, - { - "source": "npm:array.prototype.tosorted", - "target": "npm:es-abstract", - "type": "static" - }, - { - "source": "npm:array.prototype.tosorted", - "target": "npm:es-errors", - "type": "static" - }, - { - "source": "npm:array.prototype.tosorted", - "target": "npm:es-shim-unscopables", - "type": "static" - }, - { - "source": "npm:arraybuffer.prototype.slice", - "target": "npm:array-buffer-byte-length", - "type": "static" - }, - { - "source": "npm:arraybuffer.prototype.slice", - "target": "npm:call-bind", - "type": "static" - }, - { - "source": "npm:arraybuffer.prototype.slice", - "target": "npm:define-properties", - "type": "static" - }, - { - "source": "npm:arraybuffer.prototype.slice", - "target": "npm:es-abstract", - "type": "static" - }, - { - "source": "npm:arraybuffer.prototype.slice", - "target": "npm:es-errors", - "type": "static" - }, - { - "source": "npm:arraybuffer.prototype.slice", - "target": "npm:get-intrinsic", - "type": "static" - }, - { - "source": "npm:arraybuffer.prototype.slice", - "target": "npm:is-array-buffer", - "type": "static" - }, - { - "source": "npm:ast-kit", - "target": "npm:@babel/parser@8.0.0-rc.2", - "type": "static" - }, - { - "source": "npm:ast-kit", - "target": "npm:estree-walker", - "type": "static" - }, - { - "source": "npm:ast-kit", - "target": "npm:pathe", - "type": "static" - }, - { - "source": "npm:ast-types", - "target": "npm:tslib", - "type": "static" - }, - { - "source": "npm:attributes-parser", - "target": "npm:json-loose", - "type": "static" - }, - { - "source": "npm:autoprefixer", - "target": "npm:browserslist", - "type": "static" - }, - { - "source": "npm:autoprefixer", - "target": "npm:caniuse-lite", - "type": "static" - }, - { - "source": "npm:autoprefixer", - "target": "npm:fraction.js", - "type": "static" - }, - { - "source": "npm:autoprefixer", - "target": "npm:picocolors", - "type": "static" - }, - { - "source": "npm:autoprefixer", - "target": "npm:postcss", - "type": "static" - }, - { - "source": "npm:autoprefixer", - "target": "npm:postcss-value-parser", - "type": "static" - }, - { - "source": "npm:available-typed-arrays", - "target": "npm:possible-typed-array-names", - "type": "static" - }, - { - "source": "npm:avvio", - "target": "npm:@fastify/error", - "type": "static" - }, - { - "source": "npm:avvio", - "target": "npm:fastq", - "type": "static" - }, - { - "source": "npm:aws-cdk-lib", - "target": "npm:@aws-cdk/asset-awscli-v1", - "type": "static" - }, - { - "source": "npm:aws-cdk-lib", - "target": "npm:@aws-cdk/asset-node-proxy-agent-v6", - "type": "static" - }, - { - "source": "npm:aws-cdk-lib", - "target": "npm:@aws-cdk/cloud-assembly-schema", - "type": "static" - }, - { - "source": "npm:aws-cdk-lib", - "target": "npm:constructs", - "type": "static" - }, - { - "source": "npm:axios", - "target": "npm:follow-redirects", - "type": "static" - }, - { - "source": "npm:axios", - "target": "npm:form-data", - "type": "static" - }, - { - "source": "npm:axios", - "target": "npm:proxy-from-env", - "type": "static" - }, - { - "source": "npm:babel-plugin-jsx-dom-expressions", - "target": "npm:@babel/core", - "type": "static" - }, - { - "source": "npm:babel-plugin-jsx-dom-expressions", - "target": "npm:@babel/helper-module-imports@7.18.6", - "type": "static" - }, - { - "source": "npm:babel-plugin-jsx-dom-expressions", - "target": "npm:@babel/plugin-syntax-jsx", - "type": "static" - }, - { - "source": "npm:babel-plugin-jsx-dom-expressions", - "target": "npm:@babel/types", - "type": "static" - }, - { - "source": "npm:babel-plugin-jsx-dom-expressions", - "target": "npm:html-entities", - "type": "static" - }, - { - "source": "npm:babel-plugin-jsx-dom-expressions", - "target": "npm:parse5", - "type": "static" - }, - { - "source": "npm:babel-plugin-module-resolver", - "target": "npm:find-babel-config", - "type": "static" - }, - { - "source": "npm:babel-plugin-module-resolver", - "target": "npm:glob@9.3.5", - "type": "static" - }, - { - "source": "npm:babel-plugin-module-resolver", - "target": "npm:pkg-up", - "type": "static" - }, - { - "source": "npm:babel-plugin-module-resolver", - "target": "npm:reselect", - "type": "static" - }, - { - "source": "npm:babel-plugin-module-resolver", - "target": "npm:resolve@1.22.10", - "type": "static" - }, - { - "source": "npm:babel-preset-solid", - "target": "npm:@babel/core", - "type": "static" - }, - { - "source": "npm:babel-preset-solid", - "target": "npm:babel-plugin-jsx-dom-expressions", - "type": "static" - }, - { - "source": "npm:babel-preset-solid", - "target": "npm:solid-js", - "type": "static" - }, - { - "source": "npm:balanced-match@4.0.2", - "target": "npm:jackspeak", - "type": "static" - }, - { - "source": "npm:bare-fs", - "target": "npm:bare-events", - "type": "static" - }, - { - "source": "npm:bare-fs", - "target": "npm:bare-path", - "type": "static" - }, - { - "source": "npm:bare-fs", - "target": "npm:bare-stream", - "type": "static" - }, - { - "source": "npm:bare-fs", - "target": "npm:bare-url", - "type": "static" - }, - { - "source": "npm:bare-fs", - "target": "npm:fast-fifo", - "type": "static" - }, - { - "source": "npm:bare-path", - "target": "npm:bare-os", - "type": "static" - }, - { - "source": "npm:bare-stream", - "target": "npm:streamx", - "type": "static" - }, - { - "source": "npm:bare-stream", - "target": "npm:bare-events", - "type": "static" - }, - { - "source": "npm:bare-url", - "target": "npm:bare-path", - "type": "static" - }, - { - "source": "npm:basic-auth", - "target": "npm:safe-buffer", - "type": "static" - }, - { - "source": "npm:better-sqlite3", - "target": "npm:bindings", - "type": "static" - }, - { - "source": "npm:better-sqlite3", - "target": "npm:prebuild-install", - "type": "static" - }, - { - "source": "npm:bindings", - "target": "npm:file-uri-to-path", - "type": "static" - }, - { - "source": "npm:bl", - "target": "npm:buffer", - "type": "static" - }, - { - "source": "npm:bl", - "target": "npm:inherits", - "type": "static" - }, - { - "source": "npm:bl", - "target": "npm:readable-stream", - "type": "static" - }, - { - "source": "npm:body-parser", - "target": "npm:bytes", - "type": "static" - }, - { - "source": "npm:body-parser", - "target": "npm:content-type", - "type": "static" - }, - { - "source": "npm:body-parser", - "target": "npm:debug", - "type": "static" - }, - { - "source": "npm:body-parser", - "target": "npm:http-errors", - "type": "static" - }, - { - "source": "npm:body-parser", - "target": "npm:iconv-lite@0.7.2", - "type": "static" - }, - { - "source": "npm:body-parser", - "target": "npm:on-finished", - "type": "static" - }, - { - "source": "npm:body-parser", - "target": "npm:qs", - "type": "static" - }, - { - "source": "npm:body-parser", - "target": "npm:raw-body", - "type": "static" - }, - { - "source": "npm:body-parser", - "target": "npm:type-is", - "type": "static" - }, - { - "source": "npm:brace-expansion@1.1.12", - "target": "npm:balanced-match", - "type": "static" - }, - { - "source": "npm:brace-expansion@1.1.12", - "target": "npm:concat-map", - "type": "static" - }, - { - "source": "npm:brace-expansion@2.0.2", - "target": "npm:balanced-match", - "type": "static" - }, - { - "source": "npm:brace-expansion", - "target": "npm:balanced-match@4.0.2", - "type": "static" - }, - { - "source": "npm:braces", - "target": "npm:fill-range", - "type": "static" - }, - { - "source": "npm:browserless", - "target": "npm:@browserless/errors", - "type": "static" - }, - { - "source": "npm:browserless", - "target": "npm:@browserless/goto", - "type": "static" - }, - { - "source": "npm:browserless", - "target": "npm:@browserless/pdf", - "type": "static" - }, - { - "source": "npm:browserless", - "target": "npm:@browserless/screenshot", - "type": "static" - }, - { - "source": "npm:browserless", - "target": "npm:debug-logfmt", - "type": "static" - }, - { - "source": "npm:browserless", - "target": "npm:kill-process-group", - "type": "static" - }, - { - "source": "npm:browserless", - "target": "npm:p-reflect", - "type": "static" - }, - { - "source": "npm:browserless", - "target": "npm:p-retry", - "type": "static" - }, - { - "source": "npm:browserless", - "target": "npm:p-timeout", - "type": "static" - }, - { - "source": "npm:browserless", - "target": "npm:require-one-of", - "type": "static" - }, - { - "source": "npm:browserless", - "target": "npm:superlock", - "type": "static" - }, - { - "source": "npm:browserslist", - "target": "npm:baseline-browser-mapping", - "type": "static" - }, - { - "source": "npm:browserslist", - "target": "npm:caniuse-lite", - "type": "static" - }, - { - "source": "npm:browserslist", - "target": "npm:electron-to-chromium", - "type": "static" - }, - { - "source": "npm:browserslist", - "target": "npm:node-releases", - "type": "static" - }, - { - "source": "npm:browserslist", - "target": "npm:update-browserslist-db", - "type": "static" - }, - { - "source": "npm:buffer", - "target": "npm:base64-js", - "type": "static" - }, - { - "source": "npm:buffer", - "target": "npm:ieee754", - "type": "static" - }, - { - "source": "npm:bumpp", - "target": "npm:args-tokenizer", - "type": "static" - }, - { - "source": "npm:bumpp", - "target": "npm:cac", - "type": "static" - }, - { - "source": "npm:bumpp", - "target": "npm:jsonc-parser", - "type": "static" - }, - { - "source": "npm:bumpp", - "target": "npm:package-manager-detector", - "type": "static" - }, - { - "source": "npm:bumpp", - "target": "npm:semver@7.7.4", - "type": "static" - }, - { - "source": "npm:bumpp", - "target": "npm:tinyexec", - "type": "static" - }, - { - "source": "npm:bumpp", - "target": "npm:tinyglobby", - "type": "static" - }, - { - "source": "npm:bumpp", - "target": "npm:unconfig", - "type": "static" - }, - { - "source": "npm:bumpp", - "target": "npm:yaml", - "type": "static" - }, - { - "source": "npm:c12", - "target": "npm:chokidar", - "type": "static" - }, - { - "source": "npm:c12", - "target": "npm:confbox", - "type": "static" - }, - { - "source": "npm:c12", - "target": "npm:defu", - "type": "static" - }, - { - "source": "npm:c12", - "target": "npm:dotenv@16.6.1", - "type": "static" - }, - { - "source": "npm:c12", - "target": "npm:exsolve", - "type": "static" - }, - { - "source": "npm:c12", - "target": "npm:giget", - "type": "static" - }, - { - "source": "npm:c12", - "target": "npm:jiti", - "type": "static" - }, - { - "source": "npm:c12", - "target": "npm:ohash", - "type": "static" - }, - { - "source": "npm:c12", - "target": "npm:pathe", - "type": "static" - }, - { - "source": "npm:c12", - "target": "npm:perfect-debounce", - "type": "static" - }, - { - "source": "npm:c12", - "target": "npm:pkg-types", - "type": "static" - }, - { - "source": "npm:c12", - "target": "npm:rc9", - "type": "static" - }, - { - "source": "npm:cacache", - "target": "npm:@npmcli/fs", - "type": "static" - }, - { - "source": "npm:cacache", - "target": "npm:fs-minipass", - "type": "static" - }, - { - "source": "npm:cacache", - "target": "npm:glob@10.5.0", - "type": "static" - }, - { - "source": "npm:cacache", - "target": "npm:lru-cache@10.4.3", - "type": "static" - }, - { - "source": "npm:cacache", - "target": "npm:minipass", - "type": "static" - }, - { - "source": "npm:cacache", - "target": "npm:minipass-collect", - "type": "static" - }, - { - "source": "npm:cacache", - "target": "npm:minipass-flush", - "type": "static" - }, - { - "source": "npm:cacache", - "target": "npm:minipass-pipeline", - "type": "static" - }, - { - "source": "npm:cacache", - "target": "npm:p-map", - "type": "static" - }, - { - "source": "npm:cacache", - "target": "npm:ssri", - "type": "static" - }, - { - "source": "npm:cacache", - "target": "npm:tar", - "type": "static" - }, - { - "source": "npm:cacache", - "target": "npm:unique-filename", - "type": "static" - }, - { - "source": "npm:cacheable-request", - "target": "npm:clone-response", - "type": "static" - }, - { - "source": "npm:cacheable-request", - "target": "npm:get-stream@5.2.0", - "type": "static" - }, - { - "source": "npm:cacheable-request", - "target": "npm:http-cache-semantics", - "type": "static" - }, - { - "source": "npm:cacheable-request", - "target": "npm:keyv", - "type": "static" - }, - { - "source": "npm:cacheable-request", - "target": "npm:lowercase-keys", - "type": "static" - }, - { - "source": "npm:cacheable-request", - "target": "npm:normalize-url", - "type": "static" - }, - { - "source": "npm:cacheable-request", - "target": "npm:responselike", - "type": "static" - }, - { - "source": "npm:call-bind-apply-helpers", - "target": "npm:es-errors", - "type": "static" - }, - { - "source": "npm:call-bind-apply-helpers", - "target": "npm:function-bind", - "type": "static" - }, - { - "source": "npm:call-bind", - "target": "npm:call-bind-apply-helpers", - "type": "static" - }, - { - "source": "npm:call-bind", - "target": "npm:es-define-property", - "type": "static" - }, - { - "source": "npm:call-bind", - "target": "npm:get-intrinsic", - "type": "static" - }, - { - "source": "npm:call-bind", - "target": "npm:set-function-length", - "type": "static" - }, - { - "source": "npm:call-bound", - "target": "npm:call-bind-apply-helpers", - "type": "static" - }, - { - "source": "npm:call-bound", - "target": "npm:get-intrinsic", - "type": "static" - }, - { - "source": "npm:caniuse-api", - "target": "npm:browserslist", - "type": "static" - }, - { - "source": "npm:caniuse-api", - "target": "npm:caniuse-lite", - "type": "static" - }, - { - "source": "npm:caniuse-api", - "target": "npm:lodash.memoize", - "type": "static" - }, - { - "source": "npm:caniuse-api", - "target": "npm:lodash.uniq", - "type": "static" - }, - { - "source": "npm:cdk", - "target": "npm:aws-cdk", - "type": "static" - }, - { - "source": "npm:chalk", - "target": "npm:ansi-styles@4.3.0", - "type": "static" - }, - { - "source": "npm:chalk", - "target": "npm:supports-color", - "type": "static" - }, - { - "source": "npm:chevrotain", - "target": "npm:@chevrotain/cst-dts-gen", - "type": "static" - }, - { - "source": "npm:chevrotain", - "target": "npm:@chevrotain/gast", - "type": "static" - }, - { - "source": "npm:chevrotain", - "target": "npm:@chevrotain/types", - "type": "static" - }, - { - "source": "npm:chevrotain", - "target": "npm:@chevrotain/utils", - "type": "static" - }, - { - "source": "npm:chevrotain", - "target": "npm:lodash@4.17.21", - "type": "static" - }, - { - "source": "npm:chevrotain", - "target": "npm:regexp-to-ast", - "type": "static" - }, - { - "source": "npm:chokidar", - "target": "npm:readdirp", - "type": "static" - }, - { - "source": "npm:chromium-bidi", - "target": "npm:devtools-protocol", - "type": "static" - }, - { - "source": "npm:chromium-bidi", - "target": "npm:mitt", - "type": "static" - }, - { - "source": "npm:chromium-bidi", - "target": "npm:zod", - "type": "static" - }, - { - "source": "npm:citty@0.1.6", - "target": "npm:consola", - "type": "static" - }, - { - "source": "npm:class-variance-authority", - "target": "npm:clsx", - "type": "static" - }, - { - "source": "npm:cli-cursor", - "target": "npm:restore-cursor", - "type": "static" - }, - { - "source": "npm:cliui", - "target": "npm:string-width", - "type": "static" - }, - { - "source": "npm:cliui", - "target": "npm:strip-ansi@6.0.1", - "type": "static" - }, - { - "source": "npm:cliui", - "target": "npm:wrap-ansi", - "type": "static" - }, - { - "source": "npm:clone-response", - "target": "npm:mimic-response@1.0.1", - "type": "static" - }, - { - "source": "npm:color-convert", - "target": "npm:color-name", - "type": "static" - }, - { - "source": "npm:color-string", - "target": "npm:color-name", - "type": "static" - }, - { - "source": "npm:color-string", - "target": "npm:simple-swizzle", - "type": "static" - }, - { - "source": "npm:color", - "target": "npm:color-convert", - "type": "static" - }, - { - "source": "npm:color", - "target": "npm:color-string", - "type": "static" - }, - { - "source": "npm:combined-stream", - "target": "npm:delayed-stream", - "type": "static" - }, - { - "source": "npm:cosmiconfig", - "target": "npm:env-paths", - "type": "static" - }, - { - "source": "npm:cosmiconfig", - "target": "npm:import-fresh", - "type": "static" - }, - { - "source": "npm:cosmiconfig", - "target": "npm:js-yaml", - "type": "static" - }, - { - "source": "npm:cosmiconfig", - "target": "npm:parse-json", - "type": "static" - }, - { - "source": "npm:cosmiconfig", - "target": "npm:typescript", - "type": "static" - }, - { - "source": "npm:cross-spawn", - "target": "npm:path-key", - "type": "static" - }, - { - "source": "npm:cross-spawn", - "target": "npm:shebang-command", - "type": "static" - }, - { - "source": "npm:cross-spawn", - "target": "npm:which@2.0.2", - "type": "static" - }, - { - "source": "npm:crossws", - "target": "npm:uncrypto", - "type": "static" - }, - { - "source": "npm:css-declaration-sorter", - "target": "npm:postcss", - "type": "static" - }, - { - "source": "npm:css-select", - "target": "npm:boolbase", - "type": "static" - }, - { - "source": "npm:css-select", - "target": "npm:css-what", - "type": "static" - }, - { - "source": "npm:css-select", - "target": "npm:domhandler", - "type": "static" - }, - { - "source": "npm:css-select", - "target": "npm:domutils", - "type": "static" - }, - { - "source": "npm:css-select", - "target": "npm:nth-check", - "type": "static" - }, - { - "source": "npm:css-tree", - "target": "npm:mdn-data", - "type": "static" - }, - { - "source": "npm:css-tree", - "target": "npm:source-map", - "type": "static" - }, - { - "source": "npm:cssnano-preset-default", - "target": "npm:css-declaration-sorter", - "type": "static" - }, - { - "source": "npm:cssnano-preset-default", - "target": "npm:cssnano-utils", - "type": "static" - }, - { - "source": "npm:cssnano-preset-default", - "target": "npm:postcss", - "type": "static" - }, - { - "source": "npm:cssnano-preset-default", - "target": "npm:postcss-calc", - "type": "static" - }, - { - "source": "npm:cssnano-preset-default", - "target": "npm:postcss-colormin", - "type": "static" - }, - { - "source": "npm:cssnano-preset-default", - "target": "npm:postcss-convert-values", - "type": "static" - }, - { - "source": "npm:cssnano-preset-default", - "target": "npm:postcss-discard-comments", - "type": "static" - }, - { - "source": "npm:cssnano-preset-default", - "target": "npm:postcss-discard-duplicates@5.1.0", - "type": "static" - }, - { - "source": "npm:cssnano-preset-default", - "target": "npm:postcss-discard-empty", - "type": "static" - }, - { - "source": "npm:cssnano-preset-default", - "target": "npm:postcss-discard-overridden", - "type": "static" - }, - { - "source": "npm:cssnano-preset-default", - "target": "npm:postcss-merge-longhand", - "type": "static" - }, - { - "source": "npm:cssnano-preset-default", - "target": "npm:postcss-merge-rules", - "type": "static" - }, - { - "source": "npm:cssnano-preset-default", - "target": "npm:postcss-minify-font-values", - "type": "static" - }, - { - "source": "npm:cssnano-preset-default", - "target": "npm:postcss-minify-gradients", - "type": "static" - }, - { - "source": "npm:cssnano-preset-default", - "target": "npm:postcss-minify-params", - "type": "static" - }, - { - "source": "npm:cssnano-preset-default", - "target": "npm:postcss-minify-selectors", - "type": "static" - }, - { - "source": "npm:cssnano-preset-default", - "target": "npm:postcss-normalize-charset", - "type": "static" - }, - { - "source": "npm:cssnano-preset-default", - "target": "npm:postcss-normalize-display-values", - "type": "static" - }, - { - "source": "npm:cssnano-preset-default", - "target": "npm:postcss-normalize-positions", - "type": "static" - }, - { - "source": "npm:cssnano-preset-default", - "target": "npm:postcss-normalize-repeat-style", - "type": "static" - }, - { - "source": "npm:cssnano-preset-default", - "target": "npm:postcss-normalize-string", - "type": "static" - }, - { - "source": "npm:cssnano-preset-default", - "target": "npm:postcss-normalize-timing-functions", - "type": "static" - }, - { - "source": "npm:cssnano-preset-default", - "target": "npm:postcss-normalize-unicode", - "type": "static" - }, - { - "source": "npm:cssnano-preset-default", - "target": "npm:postcss-normalize-url", - "type": "static" - }, - { - "source": "npm:cssnano-preset-default", - "target": "npm:postcss-normalize-whitespace", - "type": "static" - }, - { - "source": "npm:cssnano-preset-default", - "target": "npm:postcss-ordered-values", - "type": "static" - }, - { - "source": "npm:cssnano-preset-default", - "target": "npm:postcss-reduce-initial", - "type": "static" - }, - { - "source": "npm:cssnano-preset-default", - "target": "npm:postcss-reduce-transforms", - "type": "static" - }, - { - "source": "npm:cssnano-preset-default", - "target": "npm:postcss-svgo", - "type": "static" - }, - { - "source": "npm:cssnano-preset-default", - "target": "npm:postcss-unique-selectors", - "type": "static" - }, - { - "source": "npm:cssnano-utils", - "target": "npm:postcss", - "type": "static" - }, - { - "source": "npm:csso", - "target": "npm:css-tree", - "type": "static" - }, - { - "source": "npm:data-view-buffer", - "target": "npm:call-bound", - "type": "static" - }, - { - "source": "npm:data-view-buffer", - "target": "npm:es-errors", - "type": "static" - }, - { - "source": "npm:data-view-buffer", - "target": "npm:is-data-view", - "type": "static" - }, - { - "source": "npm:data-view-byte-length", - "target": "npm:call-bound", - "type": "static" - }, - { - "source": "npm:data-view-byte-length", - "target": "npm:es-errors", - "type": "static" - }, - { - "source": "npm:data-view-byte-length", - "target": "npm:is-data-view", - "type": "static" - }, - { - "source": "npm:data-view-byte-offset", - "target": "npm:call-bound", - "type": "static" - }, - { - "source": "npm:data-view-byte-offset", - "target": "npm:es-errors", - "type": "static" - }, - { - "source": "npm:data-view-byte-offset", - "target": "npm:is-data-view", - "type": "static" - }, - { - "source": "npm:debug-logfmt", - "target": "npm:@kikobeats/time-span", - "type": "static" - }, - { - "source": "npm:debug-logfmt", - "target": "npm:null-prototype-object", - "type": "static" - }, - { - "source": "npm:debug-logfmt", - "target": "npm:pretty-ms@7.0.1", - "type": "static" - }, - { - "source": "npm:debug", - "target": "npm:ms", - "type": "static" - }, - { - "source": "npm:decode-named-character-reference", - "target": "npm:character-entities", - "type": "static" - }, - { - "source": "npm:decompress-response", - "target": "npm:mimic-response", - "type": "static" - }, - { - "source": "npm:defaults", - "target": "npm:clone", - "type": "static" - }, - { - "source": "npm:define-data-property", - "target": "npm:es-define-property", - "type": "static" - }, - { - "source": "npm:define-data-property", - "target": "npm:es-errors", - "type": "static" - }, - { - "source": "npm:define-data-property", - "target": "npm:gopd", - "type": "static" - }, - { - "source": "npm:define-properties", - "target": "npm:define-data-property", - "type": "static" - }, - { - "source": "npm:define-properties", - "target": "npm:has-property-descriptors", - "type": "static" - }, - { - "source": "npm:define-properties", - "target": "npm:object-keys", - "type": "static" - }, - { - "source": "npm:degenerator", - "target": "npm:ast-types", - "type": "static" - }, - { - "source": "npm:degenerator", - "target": "npm:escodegen", - "type": "static" - }, - { - "source": "npm:degenerator", - "target": "npm:esprima", - "type": "static" - }, - { - "source": "npm:devlop", - "target": "npm:dequal", - "type": "static" - }, - { - "source": "npm:doctrine", - "target": "npm:esutils", - "type": "static" - }, - { - "source": "npm:dom-serializer", - "target": "npm:domelementtype", - "type": "static" - }, - { - "source": "npm:dom-serializer", - "target": "npm:domhandler", - "type": "static" - }, - { - "source": "npm:dom-serializer", - "target": "npm:entities@2.2.0", - "type": "static" - }, - { - "source": "npm:domhandler", - "target": "npm:domelementtype", - "type": "static" - }, - { - "source": "npm:domutils", - "target": "npm:dom-serializer", - "type": "static" - }, - { - "source": "npm:domutils", - "target": "npm:domelementtype", - "type": "static" - }, - { - "source": "npm:domutils", - "target": "npm:domhandler", - "type": "static" - }, - { - "source": "npm:dotenv-expand", - "target": "npm:dotenv@16.6.1", - "type": "static" - }, - { - "source": "npm:drizzle-kit", - "target": "npm:@drizzle-team/brocli", - "type": "static" - }, - { - "source": "npm:drizzle-kit", - "target": "npm:@esbuild-kit/esm-loader", - "type": "static" - }, - { - "source": "npm:drizzle-kit", - "target": "npm:esbuild@0.25.12", - "type": "static" - }, - { - "source": "npm:drizzle-kit", - "target": "npm:tsx", - "type": "static" - }, - { - "source": "npm:drizzle-orm", - "target": "npm:@cloudflare/workers-types", - "type": "static" - }, - { - "source": "npm:drizzle-orm", - "target": "npm:@electric-sql/pglite", - "type": "static" - }, - { - "source": "npm:drizzle-orm", - "target": "npm:@prisma/client", - "type": "static" - }, - { - "source": "npm:drizzle-orm", - "target": "npm:@types/better-sqlite3", - "type": "static" - }, - { - "source": "npm:drizzle-orm", - "target": "npm:better-sqlite3", - "type": "static" - }, - { - "source": "npm:drizzle-orm", - "target": "npm:kysely", - "type": "static" - }, - { - "source": "npm:drizzle-orm", - "target": "npm:mysql2", - "type": "static" - }, - { - "source": "npm:drizzle-orm", - "target": "npm:postgres", - "type": "static" - }, - { - "source": "npm:drizzle-orm", - "target": "npm:prisma", - "type": "static" - }, - { - "source": "npm:dts-resolver", - "target": "npm:oxc-resolver", - "type": "static" - }, - { - "source": "npm:dunder-proto", - "target": "npm:call-bind-apply-helpers", - "type": "static" - }, - { - "source": "npm:dunder-proto", - "target": "npm:es-errors", - "type": "static" - }, - { - "source": "npm:dunder-proto", - "target": "npm:gopd", - "type": "static" - }, - { - "source": "npm:effect", - "target": "npm:@standard-schema/spec", - "type": "static" - }, - { - "source": "npm:effect", - "target": "npm:fast-check", - "type": "static" - }, - { - "source": "npm:ejs", - "target": "npm:jake", - "type": "static" - }, - { - "source": "npm:encoding", - "target": "npm:iconv-lite", - "type": "static" - }, - { - "source": "npm:end-of-stream", - "target": "npm:once", - "type": "static" - }, - { - "source": "npm:enhanced-resolve", - "target": "npm:graceful-fs", - "type": "static" - }, - { - "source": "npm:enhanced-resolve", - "target": "npm:tapable", - "type": "static" - }, - { - "source": "npm:enquirer", - "target": "npm:ansi-colors", - "type": "static" - }, - { - "source": "npm:error-ex", - "target": "npm:is-arrayish", - "type": "static" - }, - { - "source": "npm:es-abstract", - "target": "npm:array-buffer-byte-length", - "type": "static" - }, - { - "source": "npm:es-abstract", - "target": "npm:arraybuffer.prototype.slice", - "type": "static" - }, - { - "source": "npm:es-abstract", - "target": "npm:available-typed-arrays", - "type": "static" - }, - { - "source": "npm:es-abstract", - "target": "npm:call-bind", - "type": "static" - }, - { - "source": "npm:es-abstract", - "target": "npm:call-bound", - "type": "static" - }, - { - "source": "npm:es-abstract", - "target": "npm:data-view-buffer", - "type": "static" - }, - { - "source": "npm:es-abstract", - "target": "npm:data-view-byte-length", - "type": "static" - }, - { - "source": "npm:es-abstract", - "target": "npm:data-view-byte-offset", - "type": "static" - }, - { - "source": "npm:es-abstract", - "target": "npm:es-define-property", - "type": "static" - }, - { - "source": "npm:es-abstract", - "target": "npm:es-errors", - "type": "static" - }, - { - "source": "npm:es-abstract", - "target": "npm:es-object-atoms", - "type": "static" - }, - { - "source": "npm:es-abstract", - "target": "npm:es-set-tostringtag", - "type": "static" - }, - { - "source": "npm:es-abstract", - "target": "npm:es-to-primitive", - "type": "static" - }, - { - "source": "npm:es-abstract", - "target": "npm:function.prototype.name", - "type": "static" - }, - { - "source": "npm:es-abstract", - "target": "npm:get-intrinsic", - "type": "static" - }, - { - "source": "npm:es-abstract", - "target": "npm:get-proto", - "type": "static" - }, - { - "source": "npm:es-abstract", - "target": "npm:get-symbol-description", - "type": "static" - }, - { - "source": "npm:es-abstract", - "target": "npm:globalthis", - "type": "static" - }, - { - "source": "npm:es-abstract", - "target": "npm:gopd", - "type": "static" - }, - { - "source": "npm:es-abstract", - "target": "npm:has-property-descriptors", - "type": "static" - }, - { - "source": "npm:es-abstract", - "target": "npm:has-proto", - "type": "static" - }, - { - "source": "npm:es-abstract", - "target": "npm:has-symbols", - "type": "static" - }, - { - "source": "npm:es-abstract", - "target": "npm:hasown", - "type": "static" - }, - { - "source": "npm:es-abstract", - "target": "npm:internal-slot", - "type": "static" - }, - { - "source": "npm:es-abstract", - "target": "npm:is-array-buffer", - "type": "static" - }, - { - "source": "npm:es-abstract", - "target": "npm:is-callable", - "type": "static" - }, - { - "source": "npm:es-abstract", - "target": "npm:is-data-view", - "type": "static" - }, - { - "source": "npm:es-abstract", - "target": "npm:is-negative-zero", - "type": "static" - }, - { - "source": "npm:es-abstract", - "target": "npm:is-regex", - "type": "static" - }, - { - "source": "npm:es-abstract", - "target": "npm:is-set", - "type": "static" - }, - { - "source": "npm:es-abstract", - "target": "npm:is-shared-array-buffer", - "type": "static" - }, - { - "source": "npm:es-abstract", - "target": "npm:is-string", - "type": "static" - }, - { - "source": "npm:es-abstract", - "target": "npm:is-typed-array", - "type": "static" - }, - { - "source": "npm:es-abstract", - "target": "npm:is-weakref", - "type": "static" - }, - { - "source": "npm:es-abstract", - "target": "npm:math-intrinsics", - "type": "static" - }, - { - "source": "npm:es-abstract", - "target": "npm:object-inspect", - "type": "static" - }, - { - "source": "npm:es-abstract", - "target": "npm:object-keys", - "type": "static" - }, - { - "source": "npm:es-abstract", - "target": "npm:object.assign", - "type": "static" - }, - { - "source": "npm:es-abstract", - "target": "npm:own-keys", - "type": "static" - }, - { - "source": "npm:es-abstract", - "target": "npm:regexp.prototype.flags", - "type": "static" - }, - { - "source": "npm:es-abstract", - "target": "npm:safe-array-concat", - "type": "static" - }, - { - "source": "npm:es-abstract", - "target": "npm:safe-push-apply", - "type": "static" - }, - { - "source": "npm:es-abstract", - "target": "npm:safe-regex-test", - "type": "static" - }, - { - "source": "npm:es-abstract", - "target": "npm:set-proto", - "type": "static" - }, - { - "source": "npm:es-abstract", - "target": "npm:stop-iteration-iterator", - "type": "static" - }, - { - "source": "npm:es-abstract", - "target": "npm:string.prototype.trim", - "type": "static" - }, - { - "source": "npm:es-abstract", - "target": "npm:string.prototype.trimend", - "type": "static" - }, - { - "source": "npm:es-abstract", - "target": "npm:string.prototype.trimstart", - "type": "static" - }, - { - "source": "npm:es-abstract", - "target": "npm:typed-array-buffer", - "type": "static" - }, - { - "source": "npm:es-abstract", - "target": "npm:typed-array-byte-length", - "type": "static" - }, - { - "source": "npm:es-abstract", - "target": "npm:typed-array-byte-offset", - "type": "static" - }, - { - "source": "npm:es-abstract", - "target": "npm:typed-array-length", - "type": "static" - }, - { - "source": "npm:es-abstract", - "target": "npm:unbox-primitive", - "type": "static" - }, - { - "source": "npm:es-abstract", - "target": "npm:which-typed-array", - "type": "static" - }, - { - "source": "npm:es-iterator-helpers", - "target": "npm:call-bind", - "type": "static" - }, - { - "source": "npm:es-iterator-helpers", - "target": "npm:call-bound", - "type": "static" - }, - { - "source": "npm:es-iterator-helpers", - "target": "npm:define-properties", - "type": "static" - }, - { - "source": "npm:es-iterator-helpers", - "target": "npm:es-abstract", - "type": "static" - }, - { - "source": "npm:es-iterator-helpers", - "target": "npm:es-errors", - "type": "static" - }, - { - "source": "npm:es-iterator-helpers", - "target": "npm:es-set-tostringtag", - "type": "static" - }, - { - "source": "npm:es-iterator-helpers", - "target": "npm:function-bind", - "type": "static" - }, - { - "source": "npm:es-iterator-helpers", - "target": "npm:get-intrinsic", - "type": "static" - }, - { - "source": "npm:es-iterator-helpers", - "target": "npm:globalthis", - "type": "static" - }, - { - "source": "npm:es-iterator-helpers", - "target": "npm:gopd", - "type": "static" - }, - { - "source": "npm:es-iterator-helpers", - "target": "npm:has-property-descriptors", - "type": "static" - }, - { - "source": "npm:es-iterator-helpers", - "target": "npm:has-proto", - "type": "static" - }, - { - "source": "npm:es-iterator-helpers", - "target": "npm:has-symbols", - "type": "static" - }, - { - "source": "npm:es-iterator-helpers", - "target": "npm:internal-slot", - "type": "static" - }, - { - "source": "npm:es-iterator-helpers", - "target": "npm:iterator.prototype", - "type": "static" - }, - { - "source": "npm:es-iterator-helpers", - "target": "npm:safe-array-concat", - "type": "static" - }, - { - "source": "npm:es-object-atoms", - "target": "npm:es-errors", - "type": "static" - }, - { - "source": "npm:es-set-tostringtag", - "target": "npm:es-errors", - "type": "static" - }, - { - "source": "npm:es-set-tostringtag", - "target": "npm:get-intrinsic", - "type": "static" - }, - { - "source": "npm:es-set-tostringtag", - "target": "npm:has-tostringtag", - "type": "static" - }, - { - "source": "npm:es-set-tostringtag", - "target": "npm:hasown", - "type": "static" - }, - { - "source": "npm:es-shim-unscopables", - "target": "npm:hasown", - "type": "static" - }, - { - "source": "npm:es-to-primitive", - "target": "npm:is-callable", - "type": "static" - }, - { - "source": "npm:es-to-primitive", - "target": "npm:is-date-object", - "type": "static" - }, - { - "source": "npm:es-to-primitive", - "target": "npm:is-symbol", - "type": "static" - }, - { - "source": "npm:esbuild@0.18.20", - "target": "npm:@esbuild/android-arm@0.18.20", - "type": "static" - }, - { - "source": "npm:esbuild@0.18.20", - "target": "npm:@esbuild/android-arm64@0.18.20", - "type": "static" - }, - { - "source": "npm:esbuild@0.18.20", - "target": "npm:@esbuild/android-x64@0.18.20", - "type": "static" - }, - { - "source": "npm:esbuild@0.18.20", - "target": "npm:@esbuild/darwin-arm64@0.18.20", - "type": "static" - }, - { - "source": "npm:esbuild@0.18.20", - "target": "npm:@esbuild/darwin-x64@0.18.20", - "type": "static" - }, - { - "source": "npm:esbuild@0.18.20", - "target": "npm:@esbuild/freebsd-arm64@0.18.20", - "type": "static" - }, - { - "source": "npm:esbuild@0.18.20", - "target": "npm:@esbuild/freebsd-x64@0.18.20", - "type": "static" - }, - { - "source": "npm:esbuild@0.18.20", - "target": "npm:@esbuild/linux-arm@0.18.20", - "type": "static" - }, - { - "source": "npm:esbuild@0.18.20", - "target": "npm:@esbuild/linux-arm64@0.18.20", - "type": "static" - }, - { - "source": "npm:esbuild@0.18.20", - "target": "npm:@esbuild/linux-ia32@0.18.20", - "type": "static" - }, - { - "source": "npm:esbuild@0.18.20", - "target": "npm:@esbuild/linux-loong64@0.18.20", - "type": "static" - }, - { - "source": "npm:esbuild@0.18.20", - "target": "npm:@esbuild/linux-mips64el@0.18.20", - "type": "static" - }, - { - "source": "npm:esbuild@0.18.20", - "target": "npm:@esbuild/linux-ppc64@0.18.20", - "type": "static" - }, - { - "source": "npm:esbuild@0.18.20", - "target": "npm:@esbuild/linux-riscv64@0.18.20", - "type": "static" - }, - { - "source": "npm:esbuild@0.18.20", - "target": "npm:@esbuild/linux-s390x@0.18.20", - "type": "static" - }, - { - "source": "npm:esbuild@0.18.20", - "target": "npm:@esbuild/linux-x64@0.18.20", - "type": "static" - }, - { - "source": "npm:esbuild@0.18.20", - "target": "npm:@esbuild/netbsd-x64@0.18.20", - "type": "static" - }, - { - "source": "npm:esbuild@0.18.20", - "target": "npm:@esbuild/openbsd-x64@0.18.20", - "type": "static" - }, - { - "source": "npm:esbuild@0.18.20", - "target": "npm:@esbuild/sunos-x64@0.18.20", - "type": "static" - }, - { - "source": "npm:esbuild@0.18.20", - "target": "npm:@esbuild/win32-arm64@0.18.20", - "type": "static" - }, - { - "source": "npm:esbuild@0.18.20", - "target": "npm:@esbuild/win32-ia32@0.18.20", - "type": "static" - }, - { - "source": "npm:esbuild@0.18.20", - "target": "npm:@esbuild/win32-x64@0.18.20", - "type": "static" - }, - { - "source": "npm:esbuild@0.25.12", - "target": "npm:@esbuild/aix-ppc64@0.25.12", - "type": "static" - }, - { - "source": "npm:esbuild@0.25.12", - "target": "npm:@esbuild/android-arm@0.25.12", - "type": "static" - }, - { - "source": "npm:esbuild@0.25.12", - "target": "npm:@esbuild/android-arm64@0.25.12", - "type": "static" - }, - { - "source": "npm:esbuild@0.25.12", - "target": "npm:@esbuild/android-x64@0.25.12", - "type": "static" - }, - { - "source": "npm:esbuild@0.25.12", - "target": "npm:@esbuild/darwin-arm64@0.25.12", - "type": "static" - }, - { - "source": "npm:esbuild@0.25.12", - "target": "npm:@esbuild/darwin-x64@0.25.12", - "type": "static" - }, - { - "source": "npm:esbuild@0.25.12", - "target": "npm:@esbuild/freebsd-arm64@0.25.12", - "type": "static" - }, - { - "source": "npm:esbuild@0.25.12", - "target": "npm:@esbuild/freebsd-x64@0.25.12", - "type": "static" - }, - { - "source": "npm:esbuild@0.25.12", - "target": "npm:@esbuild/linux-arm@0.25.12", - "type": "static" - }, - { - "source": "npm:esbuild@0.25.12", - "target": "npm:@esbuild/linux-arm64@0.25.12", - "type": "static" - }, - { - "source": "npm:esbuild@0.25.12", - "target": "npm:@esbuild/linux-ia32@0.25.12", - "type": "static" - }, - { - "source": "npm:esbuild@0.25.12", - "target": "npm:@esbuild/linux-loong64@0.25.12", - "type": "static" - }, - { - "source": "npm:esbuild@0.25.12", - "target": "npm:@esbuild/linux-mips64el@0.25.12", - "type": "static" - }, - { - "source": "npm:esbuild@0.25.12", - "target": "npm:@esbuild/linux-ppc64@0.25.12", - "type": "static" - }, - { - "source": "npm:esbuild@0.25.12", - "target": "npm:@esbuild/linux-riscv64@0.25.12", - "type": "static" - }, - { - "source": "npm:esbuild@0.25.12", - "target": "npm:@esbuild/linux-s390x@0.25.12", - "type": "static" - }, - { - "source": "npm:esbuild@0.25.12", - "target": "npm:@esbuild/linux-x64@0.25.12", - "type": "static" - }, - { - "source": "npm:esbuild@0.25.12", - "target": "npm:@esbuild/netbsd-arm64@0.25.12", - "type": "static" - }, - { - "source": "npm:esbuild@0.25.12", - "target": "npm:@esbuild/netbsd-x64@0.25.12", - "type": "static" - }, - { - "source": "npm:esbuild@0.25.12", - "target": "npm:@esbuild/openbsd-arm64@0.25.12", - "type": "static" - }, - { - "source": "npm:esbuild@0.25.12", - "target": "npm:@esbuild/openbsd-x64@0.25.12", - "type": "static" - }, - { - "source": "npm:esbuild@0.25.12", - "target": "npm:@esbuild/openharmony-arm64@0.25.12", - "type": "static" - }, - { - "source": "npm:esbuild@0.25.12", - "target": "npm:@esbuild/sunos-x64@0.25.12", - "type": "static" - }, - { - "source": "npm:esbuild@0.25.12", - "target": "npm:@esbuild/win32-arm64@0.25.12", - "type": "static" - }, - { - "source": "npm:esbuild@0.25.12", - "target": "npm:@esbuild/win32-ia32@0.25.12", - "type": "static" - }, - { - "source": "npm:esbuild@0.25.12", - "target": "npm:@esbuild/win32-x64@0.25.12", - "type": "static" - }, - { - "source": "npm:esbuild@0.27.3", - "target": "npm:@esbuild/aix-ppc64@0.27.3", - "type": "static" - }, - { - "source": "npm:esbuild@0.27.3", - "target": "npm:@esbuild/android-arm@0.27.3", - "type": "static" - }, - { - "source": "npm:esbuild@0.27.3", - "target": "npm:@esbuild/android-arm64@0.27.3", - "type": "static" - }, - { - "source": "npm:esbuild@0.27.3", - "target": "npm:@esbuild/android-x64@0.27.3", - "type": "static" - }, - { - "source": "npm:esbuild@0.27.3", - "target": "npm:@esbuild/darwin-arm64@0.27.3", - "type": "static" - }, - { - "source": "npm:esbuild@0.27.3", - "target": "npm:@esbuild/darwin-x64@0.27.3", - "type": "static" - }, - { - "source": "npm:esbuild@0.27.3", - "target": "npm:@esbuild/freebsd-arm64@0.27.3", - "type": "static" - }, - { - "source": "npm:esbuild@0.27.3", - "target": "npm:@esbuild/freebsd-x64@0.27.3", - "type": "static" - }, - { - "source": "npm:esbuild@0.27.3", - "target": "npm:@esbuild/linux-arm@0.27.3", - "type": "static" - }, - { - "source": "npm:esbuild@0.27.3", - "target": "npm:@esbuild/linux-arm64@0.27.3", - "type": "static" - }, - { - "source": "npm:esbuild@0.27.3", - "target": "npm:@esbuild/linux-ia32@0.27.3", - "type": "static" - }, - { - "source": "npm:esbuild@0.27.3", - "target": "npm:@esbuild/linux-loong64@0.27.3", - "type": "static" - }, - { - "source": "npm:esbuild@0.27.3", - "target": "npm:@esbuild/linux-mips64el@0.27.3", - "type": "static" - }, - { - "source": "npm:esbuild@0.27.3", - "target": "npm:@esbuild/linux-ppc64@0.27.3", - "type": "static" - }, - { - "source": "npm:esbuild@0.27.3", - "target": "npm:@esbuild/linux-riscv64@0.27.3", - "type": "static" - }, - { - "source": "npm:esbuild@0.27.3", - "target": "npm:@esbuild/linux-s390x@0.27.3", - "type": "static" - }, - { - "source": "npm:esbuild@0.27.3", - "target": "npm:@esbuild/linux-x64@0.27.3", - "type": "static" - }, - { - "source": "npm:esbuild@0.27.3", - "target": "npm:@esbuild/netbsd-arm64@0.27.3", - "type": "static" - }, - { - "source": "npm:esbuild@0.27.3", - "target": "npm:@esbuild/netbsd-x64@0.27.3", - "type": "static" - }, - { - "source": "npm:esbuild@0.27.3", - "target": "npm:@esbuild/openbsd-arm64@0.27.3", - "type": "static" - }, - { - "source": "npm:esbuild@0.27.3", - "target": "npm:@esbuild/openbsd-x64@0.27.3", - "type": "static" - }, - { - "source": "npm:esbuild@0.27.3", - "target": "npm:@esbuild/openharmony-arm64@0.27.3", - "type": "static" - }, - { - "source": "npm:esbuild@0.27.3", - "target": "npm:@esbuild/sunos-x64@0.27.3", - "type": "static" - }, - { - "source": "npm:esbuild@0.27.3", - "target": "npm:@esbuild/win32-arm64@0.27.3", - "type": "static" - }, - { - "source": "npm:esbuild@0.27.3", - "target": "npm:@esbuild/win32-ia32@0.27.3", - "type": "static" - }, - { - "source": "npm:esbuild@0.27.3", - "target": "npm:@esbuild/win32-x64@0.27.3", - "type": "static" - }, - { - "source": "npm:esbuild", - "target": "npm:@esbuild/aix-ppc64@0.27.4", - "type": "static" - }, - { - "source": "npm:esbuild", - "target": "npm:@esbuild/android-arm@0.27.4", - "type": "static" - }, - { - "source": "npm:esbuild", - "target": "npm:@esbuild/android-arm64@0.27.4", - "type": "static" - }, - { - "source": "npm:esbuild", - "target": "npm:@esbuild/android-x64@0.27.4", - "type": "static" - }, - { - "source": "npm:esbuild", - "target": "npm:@esbuild/darwin-arm64@0.27.4", - "type": "static" - }, - { - "source": "npm:esbuild", - "target": "npm:@esbuild/darwin-x64@0.27.4", - "type": "static" - }, - { - "source": "npm:esbuild", - "target": "npm:@esbuild/freebsd-arm64@0.27.4", - "type": "static" - }, - { - "source": "npm:esbuild", - "target": "npm:@esbuild/freebsd-x64@0.27.4", - "type": "static" - }, - { - "source": "npm:esbuild", - "target": "npm:@esbuild/linux-arm@0.27.4", - "type": "static" - }, - { - "source": "npm:esbuild", - "target": "npm:@esbuild/linux-arm64@0.27.4", - "type": "static" - }, - { - "source": "npm:esbuild", - "target": "npm:@esbuild/linux-ia32@0.27.4", - "type": "static" - }, - { - "source": "npm:esbuild", - "target": "npm:@esbuild/linux-loong64@0.27.4", - "type": "static" - }, - { - "source": "npm:esbuild", - "target": "npm:@esbuild/linux-mips64el@0.27.4", - "type": "static" - }, - { - "source": "npm:esbuild", - "target": "npm:@esbuild/linux-ppc64@0.27.4", - "type": "static" - }, - { - "source": "npm:esbuild", - "target": "npm:@esbuild/linux-riscv64@0.27.4", - "type": "static" - }, - { - "source": "npm:esbuild", - "target": "npm:@esbuild/linux-s390x@0.27.4", - "type": "static" - }, - { - "source": "npm:esbuild", - "target": "npm:@esbuild/linux-x64", - "type": "static" - }, - { - "source": "npm:esbuild", - "target": "npm:@esbuild/netbsd-arm64@0.27.4", - "type": "static" - }, - { - "source": "npm:esbuild", - "target": "npm:@esbuild/netbsd-x64@0.27.4", - "type": "static" - }, - { - "source": "npm:esbuild", - "target": "npm:@esbuild/openbsd-arm64@0.27.4", - "type": "static" - }, - { - "source": "npm:esbuild", - "target": "npm:@esbuild/openbsd-x64@0.27.4", - "type": "static" - }, - { - "source": "npm:esbuild", - "target": "npm:@esbuild/openharmony-arm64@0.27.4", - "type": "static" - }, - { - "source": "npm:esbuild", - "target": "npm:@esbuild/sunos-x64@0.27.4", - "type": "static" - }, - { - "source": "npm:esbuild", - "target": "npm:@esbuild/win32-arm64@0.27.4", - "type": "static" - }, - { - "source": "npm:esbuild", - "target": "npm:@esbuild/win32-ia32@0.27.4", - "type": "static" - }, - { - "source": "npm:esbuild", - "target": "npm:@esbuild/win32-x64@0.27.4", - "type": "static" - }, - { - "source": "npm:escodegen", - "target": "npm:esprima", - "type": "static" - }, - { - "source": "npm:escodegen", - "target": "npm:estraverse", - "type": "static" - }, - { - "source": "npm:escodegen", - "target": "npm:esutils", - "type": "static" - }, - { - "source": "npm:escodegen", - "target": "npm:source-map", - "type": "static" - }, - { - "source": "npm:eslint-config-prettier", - "target": "npm:eslint", - "type": "static" - }, - { - "source": "npm:eslint-plugin-prettier", - "target": "npm:eslint", - "type": "static" - }, - { - "source": "npm:eslint-plugin-prettier", - "target": "npm:prettier", - "type": "static" - }, - { - "source": "npm:eslint-plugin-prettier", - "target": "npm:prettier-linter-helpers", - "type": "static" - }, - { - "source": "npm:eslint-plugin-prettier", - "target": "npm:synckit", - "type": "static" - }, - { - "source": "npm:eslint-plugin-prettier", - "target": "npm:@types/eslint", - "type": "static" - }, - { - "source": "npm:eslint-plugin-prettier", - "target": "npm:eslint-config-prettier", - "type": "static" - }, - { - "source": "npm:eslint-plugin-react", - "target": "npm:array-includes", - "type": "static" - }, - { - "source": "npm:eslint-plugin-react", - "target": "npm:array.prototype.findlast", - "type": "static" - }, - { - "source": "npm:eslint-plugin-react", - "target": "npm:array.prototype.flatmap", - "type": "static" - }, - { - "source": "npm:eslint-plugin-react", - "target": "npm:array.prototype.tosorted", - "type": "static" - }, - { - "source": "npm:eslint-plugin-react", - "target": "npm:doctrine", - "type": "static" - }, - { - "source": "npm:eslint-plugin-react", - "target": "npm:es-iterator-helpers", - "type": "static" - }, - { - "source": "npm:eslint-plugin-react", - "target": "npm:eslint", - "type": "static" - }, - { - "source": "npm:eslint-plugin-react", - "target": "npm:estraverse", - "type": "static" - }, - { - "source": "npm:eslint-plugin-react", - "target": "npm:hasown", - "type": "static" - }, - { - "source": "npm:eslint-plugin-react", - "target": "npm:jsx-ast-utils", - "type": "static" - }, - { - "source": "npm:eslint-plugin-react", - "target": "npm:minimatch", - "type": "static" - }, - { - "source": "npm:eslint-plugin-react", - "target": "npm:object.entries", - "type": "static" - }, - { - "source": "npm:eslint-plugin-react", - "target": "npm:object.fromentries", - "type": "static" - }, - { - "source": "npm:eslint-plugin-react", - "target": "npm:object.values", - "type": "static" - }, - { - "source": "npm:eslint-plugin-react", - "target": "npm:prop-types", - "type": "static" - }, - { - "source": "npm:eslint-plugin-react", - "target": "npm:resolve", - "type": "static" - }, - { - "source": "npm:eslint-plugin-react", - "target": "npm:semver", - "type": "static" - }, - { - "source": "npm:eslint-plugin-react", - "target": "npm:string.prototype.matchall", - "type": "static" - }, - { - "source": "npm:eslint-plugin-react", - "target": "npm:string.prototype.repeat", - "type": "static" - }, - { - "source": "npm:eslint-plugin-solid", - "target": "npm:@typescript-eslint/utils", - "type": "static" - }, - { - "source": "npm:eslint-plugin-solid", - "target": "npm:eslint", - "type": "static" - }, - { - "source": "npm:eslint-plugin-solid", - "target": "npm:estraverse", - "type": "static" - }, - { - "source": "npm:eslint-plugin-solid", - "target": "npm:is-html", - "type": "static" - }, - { - "source": "npm:eslint-plugin-solid", - "target": "npm:kebab-case", - "type": "static" - }, - { - "source": "npm:eslint-plugin-solid", - "target": "npm:known-css-properties", - "type": "static" - }, - { - "source": "npm:eslint-plugin-solid", - "target": "npm:style-to-object", - "type": "static" - }, - { - "source": "npm:eslint-plugin-solid", - "target": "npm:typescript", - "type": "static" - }, - { - "source": "npm:eslint-plugin-vue", - "target": "npm:@eslint-community/eslint-utils", - "type": "static" - }, - { - "source": "npm:eslint-plugin-vue", - "target": "npm:eslint", - "type": "static" - }, - { - "source": "npm:eslint-plugin-vue", - "target": "npm:natural-compare", - "type": "static" - }, - { - "source": "npm:eslint-plugin-vue", - "target": "npm:nth-check", - "type": "static" - }, - { - "source": "npm:eslint-plugin-vue", - "target": "npm:postcss-selector-parser", - "type": "static" - }, - { - "source": "npm:eslint-plugin-vue", - "target": "npm:semver@7.7.4", - "type": "static" - }, - { - "source": "npm:eslint-plugin-vue", - "target": "npm:vue-eslint-parser", - "type": "static" - }, - { - "source": "npm:eslint-plugin-vue", - "target": "npm:xml-name-validator", - "type": "static" - }, - { - "source": "npm:eslint-plugin-vue", - "target": "npm:@typescript-eslint/parser", - "type": "static" - }, - { - "source": "npm:eslint-scope", - "target": "npm:esrecurse", - "type": "static" - }, - { - "source": "npm:eslint-scope", - "target": "npm:estraverse", - "type": "static" - }, - { - "source": "npm:eslint", - "target": "npm:@eslint-community/eslint-utils", - "type": "static" - }, - { - "source": "npm:eslint", - "target": "npm:@eslint-community/regexpp", - "type": "static" - }, - { - "source": "npm:eslint", - "target": "npm:@eslint/config-array", - "type": "static" - }, - { - "source": "npm:eslint", - "target": "npm:@eslint/config-helpers", - "type": "static" - }, - { - "source": "npm:eslint", - "target": "npm:@eslint/core", - "type": "static" - }, - { - "source": "npm:eslint", - "target": "npm:@eslint/eslintrc", - "type": "static" - }, - { - "source": "npm:eslint", - "target": "npm:@eslint/js", - "type": "static" - }, - { - "source": "npm:eslint", - "target": "npm:@eslint/plugin-kit", - "type": "static" - }, - { - "source": "npm:eslint", - "target": "npm:@humanfs/node", - "type": "static" - }, - { - "source": "npm:eslint", - "target": "npm:@humanwhocodes/module-importer", - "type": "static" - }, - { - "source": "npm:eslint", - "target": "npm:@humanwhocodes/retry", - "type": "static" - }, - { - "source": "npm:eslint", - "target": "npm:@types/estree", - "type": "static" - }, - { - "source": "npm:eslint", - "target": "npm:ajv", - "type": "static" - }, - { - "source": "npm:eslint", - "target": "npm:chalk", - "type": "static" - }, - { - "source": "npm:eslint", - "target": "npm:cross-spawn", - "type": "static" - }, - { - "source": "npm:eslint", - "target": "npm:debug", - "type": "static" - }, - { - "source": "npm:eslint", - "target": "npm:escape-string-regexp", - "type": "static" - }, - { - "source": "npm:eslint", - "target": "npm:eslint-scope", - "type": "static" - }, - { - "source": "npm:eslint", - "target": "npm:eslint-visitor-keys", - "type": "static" - }, - { - "source": "npm:eslint", - "target": "npm:espree@10.4.0", - "type": "static" - }, - { - "source": "npm:eslint", - "target": "npm:esquery", - "type": "static" - }, - { - "source": "npm:eslint", - "target": "npm:esutils", - "type": "static" - }, - { - "source": "npm:eslint", - "target": "npm:fast-deep-equal", - "type": "static" - }, - { - "source": "npm:eslint", - "target": "npm:file-entry-cache", - "type": "static" - }, - { - "source": "npm:eslint", - "target": "npm:find-up", - "type": "static" - }, - { - "source": "npm:eslint", - "target": "npm:glob-parent", - "type": "static" - }, - { - "source": "npm:eslint", - "target": "npm:ignore", - "type": "static" - }, - { - "source": "npm:eslint", - "target": "npm:imurmurhash", - "type": "static" - }, - { - "source": "npm:eslint", - "target": "npm:is-glob", - "type": "static" - }, - { - "source": "npm:eslint", - "target": "npm:json-stable-stringify-without-jsonify", - "type": "static" - }, - { - "source": "npm:eslint", - "target": "npm:lodash.merge", - "type": "static" - }, - { - "source": "npm:eslint", - "target": "npm:minimatch", - "type": "static" - }, - { - "source": "npm:eslint", - "target": "npm:natural-compare", - "type": "static" - }, - { - "source": "npm:eslint", - "target": "npm:optionator", - "type": "static" - }, - { - "source": "npm:eslint", - "target": "npm:jiti", - "type": "static" - }, - { - "source": "npm:espree@10.4.0", - "target": "npm:acorn", - "type": "static" - }, - { - "source": "npm:espree@10.4.0", - "target": "npm:acorn-jsx", - "type": "static" - }, - { - "source": "npm:espree@10.4.0", - "target": "npm:eslint-visitor-keys", - "type": "static" - }, - { - "source": "npm:espree", - "target": "npm:acorn", - "type": "static" - }, - { - "source": "npm:espree", - "target": "npm:acorn-jsx", - "type": "static" - }, - { - "source": "npm:espree", - "target": "npm:eslint-visitor-keys@5.0.1", - "type": "static" - }, - { - "source": "npm:esquery", - "target": "npm:estraverse", - "type": "static" - }, - { - "source": "npm:esrecurse", - "target": "npm:estraverse", - "type": "static" - }, - { - "source": "npm:estree-walker", - "target": "npm:@types/estree", - "type": "static" - }, - { - "source": "npm:events-universal", - "target": "npm:bare-events", - "type": "static" - }, - { - "source": "npm:execa", - "target": "npm:@sindresorhus/merge-streams", - "type": "static" - }, - { - "source": "npm:execa", - "target": "npm:cross-spawn", - "type": "static" - }, - { - "source": "npm:execa", - "target": "npm:figures", - "type": "static" - }, - { - "source": "npm:execa", - "target": "npm:get-stream", - "type": "static" - }, - { - "source": "npm:execa", - "target": "npm:human-signals", - "type": "static" - }, - { - "source": "npm:execa", - "target": "npm:is-plain-obj", - "type": "static" - }, - { - "source": "npm:execa", - "target": "npm:is-stream", - "type": "static" - }, - { - "source": "npm:execa", - "target": "npm:npm-run-path", - "type": "static" - }, - { - "source": "npm:execa", - "target": "npm:pretty-ms", - "type": "static" - }, - { - "source": "npm:execa", - "target": "npm:signal-exit", - "type": "static" - }, - { - "source": "npm:execa", - "target": "npm:strip-final-newline", - "type": "static" - }, - { - "source": "npm:execa", - "target": "npm:yoctocolors", - "type": "static" - }, - { - "source": "npm:express", - "target": "npm:accepts", - "type": "static" - }, - { - "source": "npm:express", - "target": "npm:body-parser", - "type": "static" - }, - { - "source": "npm:express", - "target": "npm:content-disposition", - "type": "static" - }, - { - "source": "npm:express", - "target": "npm:content-type", - "type": "static" - }, - { - "source": "npm:express", - "target": "npm:cookie", - "type": "static" - }, - { - "source": "npm:express", - "target": "npm:cookie-signature", - "type": "static" - }, - { - "source": "npm:express", - "target": "npm:debug", - "type": "static" - }, - { - "source": "npm:express", - "target": "npm:depd", - "type": "static" - }, - { - "source": "npm:express", - "target": "npm:encodeurl", - "type": "static" - }, - { - "source": "npm:express", - "target": "npm:escape-html", - "type": "static" - }, - { - "source": "npm:express", - "target": "npm:etag", - "type": "static" - }, - { - "source": "npm:express", - "target": "npm:finalhandler", - "type": "static" - }, - { - "source": "npm:express", - "target": "npm:fresh", - "type": "static" - }, - { - "source": "npm:express", - "target": "npm:http-errors", - "type": "static" - }, - { - "source": "npm:express", - "target": "npm:merge-descriptors", - "type": "static" - }, - { - "source": "npm:express", - "target": "npm:mime-types", - "type": "static" - }, - { - "source": "npm:express", - "target": "npm:on-finished", - "type": "static" - }, - { - "source": "npm:express", - "target": "npm:once", - "type": "static" - }, - { - "source": "npm:express", - "target": "npm:parseurl", - "type": "static" - }, - { - "source": "npm:express", - "target": "npm:proxy-addr", - "type": "static" - }, - { - "source": "npm:express", - "target": "npm:qs", - "type": "static" - }, - { - "source": "npm:express", - "target": "npm:range-parser", - "type": "static" - }, - { - "source": "npm:express", - "target": "npm:router", - "type": "static" - }, - { - "source": "npm:express", - "target": "npm:send", - "type": "static" - }, - { - "source": "npm:express", - "target": "npm:serve-static", - "type": "static" - }, - { - "source": "npm:express", - "target": "npm:statuses", - "type": "static" - }, - { - "source": "npm:express", - "target": "npm:type-is", - "type": "static" - }, - { - "source": "npm:express", - "target": "npm:vary", - "type": "static" - }, - { - "source": "npm:extract-zip", - "target": "npm:debug", - "type": "static" - }, - { - "source": "npm:extract-zip", - "target": "npm:get-stream@5.2.0", - "type": "static" - }, - { - "source": "npm:extract-zip", - "target": "npm:yauzl", - "type": "static" - }, - { - "source": "npm:extract-zip", - "target": "npm:@types/yauzl", - "type": "static" - }, - { - "source": "npm:fast-check", - "target": "npm:pure-rand", - "type": "static" - }, - { - "source": "npm:fast-glob", - "target": "npm:@nodelib/fs.stat", - "type": "static" - }, - { - "source": "npm:fast-glob", - "target": "npm:@nodelib/fs.walk", - "type": "static" - }, - { - "source": "npm:fast-glob", - "target": "npm:glob-parent@5.1.2", - "type": "static" - }, - { - "source": "npm:fast-glob", - "target": "npm:merge2", - "type": "static" - }, - { - "source": "npm:fast-glob", - "target": "npm:micromatch", - "type": "static" - }, - { - "source": "npm:fast-json-stringify", - "target": "npm:@fastify/merge-json-schemas", - "type": "static" - }, - { - "source": "npm:fast-json-stringify", - "target": "npm:ajv@8.18.0", - "type": "static" - }, - { - "source": "npm:fast-json-stringify", - "target": "npm:ajv-formats", - "type": "static" - }, - { - "source": "npm:fast-json-stringify", - "target": "npm:fast-uri", - "type": "static" - }, - { - "source": "npm:fast-json-stringify", - "target": "npm:json-schema-ref-resolver", - "type": "static" - }, - { - "source": "npm:fast-json-stringify", - "target": "npm:rfdc", - "type": "static" - }, - { - "source": "npm:fast-querystring", - "target": "npm:fast-decode-uri-component", - "type": "static" - }, - { - "source": "npm:fast-string-width", - "target": "npm:fast-string-truncated-width", - "type": "static" - }, - { - "source": "npm:fast-wrap-ansi", - "target": "npm:fast-string-width", - "type": "static" - }, - { - "source": "npm:fastify-raw-body", - "target": "npm:fastify-plugin", - "type": "static" - }, - { - "source": "npm:fastify-raw-body", - "target": "npm:raw-body", - "type": "static" - }, - { - "source": "npm:fastify-raw-body", - "target": "npm:secure-json-parse", - "type": "static" - }, - { - "source": "npm:fastify", - "target": "npm:@fastify/ajv-compiler", - "type": "static" - }, - { - "source": "npm:fastify", - "target": "npm:@fastify/error", - "type": "static" - }, - { - "source": "npm:fastify", - "target": "npm:@fastify/fast-json-stringify-compiler", - "type": "static" - }, - { - "source": "npm:fastify", - "target": "npm:@fastify/proxy-addr", - "type": "static" - }, - { - "source": "npm:fastify", - "target": "npm:abstract-logging", - "type": "static" - }, - { - "source": "npm:fastify", - "target": "npm:avvio", - "type": "static" - }, - { - "source": "npm:fastify", - "target": "npm:fast-json-stringify", - "type": "static" - }, - { - "source": "npm:fastify", - "target": "npm:find-my-way", - "type": "static" - }, - { - "source": "npm:fastify", - "target": "npm:light-my-request", - "type": "static" - }, - { - "source": "npm:fastify", - "target": "npm:pino", - "type": "static" - }, - { - "source": "npm:fastify", - "target": "npm:process-warning", - "type": "static" - }, - { - "source": "npm:fastify", - "target": "npm:rfdc", - "type": "static" - }, - { - "source": "npm:fastify", - "target": "npm:secure-json-parse@4.1.0", - "type": "static" - }, - { - "source": "npm:fastify", - "target": "npm:semver@7.7.4", - "type": "static" - }, - { - "source": "npm:fastify", - "target": "npm:toad-cache", - "type": "static" - }, - { - "source": "npm:fastq", - "target": "npm:reusify", - "type": "static" - }, - { - "source": "npm:fd-package-json", - "target": "npm:walk-up-path", - "type": "static" - }, - { - "source": "npm:fd-slicer", - "target": "npm:pend", - "type": "static" - }, - { - "source": "npm:fdir", - "target": "npm:picomatch", - "type": "static" - }, - { - "source": "npm:fetch-blob", - "target": "npm:node-domexception", - "type": "static" - }, - { - "source": "npm:fetch-blob", - "target": "npm:web-streams-polyfill", - "type": "static" - }, - { - "source": "npm:figures@3.2.0", - "target": "npm:escape-string-regexp@1.0.5", - "type": "static" - }, - { - "source": "npm:figures", - "target": "npm:is-unicode-supported", - "type": "static" - }, - { - "source": "npm:file-entry-cache", - "target": "npm:flat-cache", - "type": "static" - }, - { - "source": "npm:filelist", - "target": "npm:minimatch@5.1.9", - "type": "static" - }, - { - "source": "npm:fill-range", - "target": "npm:to-regex-range", - "type": "static" - }, - { - "source": "npm:finalhandler", - "target": "npm:debug", - "type": "static" - }, - { - "source": "npm:finalhandler", - "target": "npm:encodeurl", - "type": "static" - }, - { - "source": "npm:finalhandler", - "target": "npm:escape-html", - "type": "static" - }, - { - "source": "npm:finalhandler", - "target": "npm:on-finished", - "type": "static" - }, - { - "source": "npm:finalhandler", - "target": "npm:parseurl", - "type": "static" - }, - { - "source": "npm:finalhandler", - "target": "npm:statuses", - "type": "static" - }, - { - "source": "npm:find-babel-config", - "target": "npm:json5", - "type": "static" - }, - { - "source": "npm:find-my-way", - "target": "npm:fast-deep-equal", - "type": "static" - }, - { - "source": "npm:find-my-way", - "target": "npm:fast-querystring", - "type": "static" - }, - { - "source": "npm:find-my-way", - "target": "npm:safe-regex2", - "type": "static" - }, - { - "source": "npm:find-up@3.0.0", - "target": "npm:locate-path@3.0.0", - "type": "static" - }, - { - "source": "npm:find-up", - "target": "npm:locate-path", - "type": "static" - }, - { - "source": "npm:find-up", - "target": "npm:path-exists", - "type": "static" - }, - { - "source": "npm:flat-cache", - "target": "npm:flatted", - "type": "static" - }, - { - "source": "npm:flat-cache", - "target": "npm:keyv", - "type": "static" - }, - { - "source": "npm:for-each", - "target": "npm:is-callable", - "type": "static" - }, - { - "source": "npm:foreground-child", - "target": "npm:cross-spawn", - "type": "static" - }, - { - "source": "npm:foreground-child", - "target": "npm:signal-exit", - "type": "static" - }, - { - "source": "npm:form-data", - "target": "npm:asynckit", - "type": "static" - }, - { - "source": "npm:form-data", - "target": "npm:combined-stream", - "type": "static" - }, - { - "source": "npm:form-data", - "target": "npm:es-set-tostringtag", - "type": "static" - }, - { - "source": "npm:form-data", - "target": "npm:hasown", - "type": "static" - }, - { - "source": "npm:form-data", - "target": "npm:mime-types@2.1.35", - "type": "static" - }, - { - "source": "npm:formatly", - "target": "npm:fd-package-json", - "type": "static" - }, - { - "source": "npm:formdata-polyfill", - "target": "npm:fetch-blob", - "type": "static" - }, - { - "source": "npm:front-matter", - "target": "npm:js-yaml@3.14.2", - "type": "static" - }, - { - "source": "npm:fs-minipass", - "target": "npm:minipass", - "type": "static" - }, - { - "source": "npm:function.prototype.name", - "target": "npm:call-bind", - "type": "static" - }, - { - "source": "npm:function.prototype.name", - "target": "npm:call-bound", - "type": "static" - }, - { - "source": "npm:function.prototype.name", - "target": "npm:define-properties", - "type": "static" - }, - { - "source": "npm:function.prototype.name", - "target": "npm:functions-have-names", - "type": "static" - }, - { - "source": "npm:function.prototype.name", - "target": "npm:hasown", - "type": "static" - }, - { - "source": "npm:function.prototype.name", - "target": "npm:is-callable", - "type": "static" - }, - { - "source": "npm:generate-function", - "target": "npm:is-property", - "type": "static" - }, - { - "source": "npm:get-intrinsic", - "target": "npm:call-bind-apply-helpers", - "type": "static" - }, - { - "source": "npm:get-intrinsic", - "target": "npm:es-define-property", - "type": "static" - }, - { - "source": "npm:get-intrinsic", - "target": "npm:es-errors", - "type": "static" - }, - { - "source": "npm:get-intrinsic", - "target": "npm:es-object-atoms", - "type": "static" - }, - { - "source": "npm:get-intrinsic", - "target": "npm:function-bind", - "type": "static" - }, - { - "source": "npm:get-intrinsic", - "target": "npm:get-proto", - "type": "static" - }, - { - "source": "npm:get-intrinsic", - "target": "npm:gopd", - "type": "static" - }, - { - "source": "npm:get-intrinsic", - "target": "npm:has-symbols", - "type": "static" - }, - { - "source": "npm:get-intrinsic", - "target": "npm:hasown", - "type": "static" - }, - { - "source": "npm:get-intrinsic", - "target": "npm:math-intrinsics", - "type": "static" - }, - { - "source": "npm:get-proto", - "target": "npm:dunder-proto", - "type": "static" - }, - { - "source": "npm:get-proto", - "target": "npm:es-object-atoms", - "type": "static" - }, - { - "source": "npm:get-stream@5.2.0", - "target": "npm:pump", - "type": "static" - }, - { - "source": "npm:get-stream", - "target": "npm:@sec-ant/readable-stream", - "type": "static" - }, - { - "source": "npm:get-stream", - "target": "npm:is-stream", - "type": "static" - }, - { - "source": "npm:get-symbol-description", - "target": "npm:call-bound", - "type": "static" - }, - { - "source": "npm:get-symbol-description", - "target": "npm:es-errors", - "type": "static" - }, - { - "source": "npm:get-symbol-description", - "target": "npm:get-intrinsic", - "type": "static" - }, - { - "source": "npm:get-tsconfig", - "target": "npm:resolve-pkg-maps", - "type": "static" - }, - { - "source": "npm:get-uri", - "target": "npm:basic-ftp", - "type": "static" - }, - { - "source": "npm:get-uri", - "target": "npm:data-uri-to-buffer@6.0.2", - "type": "static" - }, - { - "source": "npm:get-uri", - "target": "npm:debug", - "type": "static" - }, - { - "source": "npm:giget", - "target": "npm:citty@0.1.6", - "type": "static" - }, - { - "source": "npm:giget", - "target": "npm:consola", - "type": "static" - }, - { - "source": "npm:giget", - "target": "npm:defu", - "type": "static" - }, - { - "source": "npm:giget", - "target": "npm:node-fetch-native", - "type": "static" - }, - { - "source": "npm:giget", - "target": "npm:nypm", - "type": "static" - }, - { - "source": "npm:giget", - "target": "npm:pathe", - "type": "static" - }, - { - "source": "npm:glob-parent@5.1.2", - "target": "npm:is-glob", - "type": "static" - }, - { - "source": "npm:glob-parent", - "target": "npm:is-glob", - "type": "static" - }, - { - "source": "npm:glob@10.5.0", - "target": "npm:foreground-child", - "type": "static" - }, - { - "source": "npm:glob@10.5.0", - "target": "npm:jackspeak@3.4.3", - "type": "static" - }, - { - "source": "npm:glob@10.5.0", - "target": "npm:minimatch@9.0.5", - "type": "static" - }, - { - "source": "npm:glob@10.5.0", - "target": "npm:minipass", - "type": "static" - }, - { - "source": "npm:glob@10.5.0", - "target": "npm:package-json-from-dist", - "type": "static" - }, - { - "source": "npm:glob@10.5.0", - "target": "npm:path-scurry@1.11.1", - "type": "static" - }, - { - "source": "npm:glob", - "target": "npm:minimatch@10.2.3", - "type": "static" - }, - { - "source": "npm:glob", - "target": "npm:minipass", - "type": "static" - }, - { - "source": "npm:glob", - "target": "npm:path-scurry", - "type": "static" - }, - { - "source": "npm:glob@9.3.5", - "target": "npm:fs.realpath", - "type": "static" - }, - { - "source": "npm:glob@9.3.5", - "target": "npm:minimatch@8.0.4", - "type": "static" - }, - { - "source": "npm:glob@9.3.5", - "target": "npm:minipass@4.2.8", - "type": "static" - }, - { - "source": "npm:glob@9.3.5", - "target": "npm:path-scurry@1.11.1", - "type": "static" - }, - { - "source": "npm:globalthis", - "target": "npm:define-properties", - "type": "static" - }, - { - "source": "npm:globalthis", - "target": "npm:gopd", - "type": "static" - }, - { - "source": "npm:globby", - "target": "npm:@sindresorhus/merge-streams", - "type": "static" - }, - { - "source": "npm:globby", - "target": "npm:fast-glob", - "type": "static" - }, - { - "source": "npm:globby", - "target": "npm:ignore@7.0.5", - "type": "static" - }, - { - "source": "npm:globby", - "target": "npm:is-path-inside", - "type": "static" - }, - { - "source": "npm:globby", - "target": "npm:slash", - "type": "static" - }, - { - "source": "npm:globby", - "target": "npm:unicorn-magic", - "type": "static" - }, - { - "source": "npm:got", - "target": "npm:@sindresorhus/is", - "type": "static" - }, - { - "source": "npm:got", - "target": "npm:@szmarczak/http-timer", - "type": "static" - }, - { - "source": "npm:got", - "target": "npm:@types/cacheable-request", - "type": "static" - }, - { - "source": "npm:got", - "target": "npm:@types/responselike", - "type": "static" - }, - { - "source": "npm:got", - "target": "npm:cacheable-lookup", - "type": "static" - }, - { - "source": "npm:got", - "target": "npm:cacheable-request", - "type": "static" - }, - { - "source": "npm:got", - "target": "npm:decompress-response", - "type": "static" - }, - { - "source": "npm:got", - "target": "npm:http2-wrapper", - "type": "static" - }, - { - "source": "npm:got", - "target": "npm:lowercase-keys", - "type": "static" - }, - { - "source": "npm:got", - "target": "npm:p-cancelable", - "type": "static" - }, - { - "source": "npm:got", - "target": "npm:responselike", - "type": "static" - }, - { - "source": "npm:h3", - "target": "npm:cookie-es", - "type": "static" - }, - { - "source": "npm:h3", - "target": "npm:crossws", - "type": "static" - }, - { - "source": "npm:h3", - "target": "npm:defu", - "type": "static" - }, - { - "source": "npm:h3", - "target": "npm:destr", - "type": "static" - }, - { - "source": "npm:h3", - "target": "npm:iron-webcrypto", - "type": "static" - }, - { - "source": "npm:h3", - "target": "npm:node-mock-http", - "type": "static" - }, - { - "source": "npm:h3", - "target": "npm:radix3", - "type": "static" - }, - { - "source": "npm:h3", - "target": "npm:ufo", - "type": "static" - }, - { - "source": "npm:h3", - "target": "npm:uncrypto", - "type": "static" - }, - { - "source": "npm:has-property-descriptors", - "target": "npm:es-define-property", - "type": "static" - }, - { - "source": "npm:has-proto", - "target": "npm:dunder-proto", - "type": "static" - }, - { - "source": "npm:has-tostringtag", - "target": "npm:has-symbols", - "type": "static" - }, - { - "source": "npm:hasown", - "target": "npm:function-bind", - "type": "static" - }, - { - "source": "npm:html-encoding-sniffer", - "target": "npm:whatwg-encoding", - "type": "static" - }, - { - "source": "npm:http-errors", - "target": "npm:depd", - "type": "static" - }, - { - "source": "npm:http-errors", - "target": "npm:inherits", - "type": "static" - }, - { - "source": "npm:http-errors", - "target": "npm:setprototypeof", - "type": "static" - }, - { - "source": "npm:http-errors", - "target": "npm:statuses", - "type": "static" - }, - { - "source": "npm:http-errors", - "target": "npm:toidentifier", - "type": "static" - }, - { - "source": "npm:http-proxy-agent", - "target": "npm:agent-base", - "type": "static" - }, - { - "source": "npm:http-proxy-agent", - "target": "npm:debug", - "type": "static" - }, - { - "source": "npm:http-proxy", - "target": "npm:eventemitter3", - "type": "static" - }, - { - "source": "npm:http-proxy", - "target": "npm:follow-redirects", - "type": "static" - }, - { - "source": "npm:http-proxy", - "target": "npm:requires-port", - "type": "static" - }, - { - "source": "npm:http-server", - "target": "npm:basic-auth", - "type": "static" - }, - { - "source": "npm:http-server", - "target": "npm:chalk", - "type": "static" - }, - { - "source": "npm:http-server", - "target": "npm:corser", - "type": "static" - }, - { - "source": "npm:http-server", - "target": "npm:he", - "type": "static" - }, - { - "source": "npm:http-server", - "target": "npm:html-encoding-sniffer", - "type": "static" - }, - { - "source": "npm:http-server", - "target": "npm:http-proxy", - "type": "static" - }, - { - "source": "npm:http-server", - "target": "npm:mime", - "type": "static" - }, - { - "source": "npm:http-server", - "target": "npm:minimist", - "type": "static" - }, - { - "source": "npm:http-server", - "target": "npm:opener", - "type": "static" - }, - { - "source": "npm:http-server", - "target": "npm:portfinder", - "type": "static" - }, - { - "source": "npm:http-server", - "target": "npm:secure-compare", - "type": "static" - }, - { - "source": "npm:http-server", - "target": "npm:union", - "type": "static" - }, - { - "source": "npm:http-server", - "target": "npm:url-join", - "type": "static" - }, - { - "source": "npm:http2-wrapper", - "target": "npm:quick-lru", - "type": "static" - }, - { - "source": "npm:http2-wrapper", - "target": "npm:resolve-alpn", - "type": "static" - }, - { - "source": "npm:https-proxy-agent", - "target": "npm:agent-base@6.0.2", - "type": "static" - }, - { - "source": "npm:https-proxy-agent", - "target": "npm:debug", - "type": "static" - }, - { - "source": "npm:https-proxy-agent@7.0.6", - "target": "npm:agent-base", - "type": "static" - }, - { - "source": "npm:https-proxy-agent@7.0.6", - "target": "npm:debug", - "type": "static" - }, - { - "source": "npm:iconv-lite", - "target": "npm:safer-buffer", - "type": "static" - }, - { - "source": "npm:iconv-lite@0.7.2", - "target": "npm:safer-buffer", - "type": "static" - }, - { - "source": "npm:import-fresh", - "target": "npm:parent-module", - "type": "static" - }, - { - "source": "npm:import-fresh", - "target": "npm:resolve-from@4.0.0", - "type": "static" - }, - { - "source": "npm:internal-slot", - "target": "npm:es-errors", - "type": "static" - }, - { - "source": "npm:internal-slot", - "target": "npm:hasown", - "type": "static" - }, - { - "source": "npm:internal-slot", - "target": "npm:side-channel", - "type": "static" - }, - { - "source": "npm:is-array-buffer", - "target": "npm:call-bind", - "type": "static" - }, - { - "source": "npm:is-array-buffer", - "target": "npm:call-bound", - "type": "static" - }, - { - "source": "npm:is-array-buffer", - "target": "npm:get-intrinsic", - "type": "static" - }, - { - "source": "npm:is-async-function", - "target": "npm:async-function", - "type": "static" - }, - { - "source": "npm:is-async-function", - "target": "npm:call-bound", - "type": "static" - }, - { - "source": "npm:is-async-function", - "target": "npm:get-proto", - "type": "static" - }, - { - "source": "npm:is-async-function", - "target": "npm:has-tostringtag", - "type": "static" - }, - { - "source": "npm:is-async-function", - "target": "npm:safe-regex-test", - "type": "static" - }, - { - "source": "npm:is-bigint", - "target": "npm:has-bigints", - "type": "static" - }, - { - "source": "npm:is-boolean-object", - "target": "npm:call-bound", - "type": "static" - }, - { - "source": "npm:is-boolean-object", - "target": "npm:has-tostringtag", - "type": "static" - }, - { - "source": "npm:is-core-module", - "target": "npm:hasown", - "type": "static" - }, - { - "source": "npm:is-data-view", - "target": "npm:call-bound", - "type": "static" - }, - { - "source": "npm:is-data-view", - "target": "npm:get-intrinsic", - "type": "static" - }, - { - "source": "npm:is-data-view", - "target": "npm:is-typed-array", - "type": "static" - }, - { - "source": "npm:is-date-object", - "target": "npm:call-bound", - "type": "static" - }, - { - "source": "npm:is-date-object", - "target": "npm:has-tostringtag", - "type": "static" - }, - { - "source": "npm:is-finalizationregistry", - "target": "npm:call-bound", - "type": "static" - }, - { - "source": "npm:is-generator-function", - "target": "npm:call-bound", - "type": "static" - }, - { - "source": "npm:is-generator-function", - "target": "npm:generator-function", - "type": "static" - }, - { - "source": "npm:is-generator-function", - "target": "npm:get-proto", - "type": "static" - }, - { - "source": "npm:is-generator-function", - "target": "npm:has-tostringtag", - "type": "static" - }, - { - "source": "npm:is-generator-function", - "target": "npm:safe-regex-test", - "type": "static" - }, - { - "source": "npm:is-glob", - "target": "npm:is-extglob", - "type": "static" - }, - { - "source": "npm:is-html", - "target": "npm:html-tags", - "type": "static" - }, - { - "source": "npm:is-number-object", - "target": "npm:call-bound", - "type": "static" - }, - { - "source": "npm:is-number-object", - "target": "npm:has-tostringtag", - "type": "static" - }, - { - "source": "npm:is-regex", - "target": "npm:call-bound", - "type": "static" - }, - { - "source": "npm:is-regex", - "target": "npm:gopd", - "type": "static" - }, - { - "source": "npm:is-regex", - "target": "npm:has-tostringtag", - "type": "static" - }, - { - "source": "npm:is-regex", - "target": "npm:hasown", - "type": "static" - }, - { - "source": "npm:is-shared-array-buffer", - "target": "npm:call-bound", - "type": "static" - }, - { - "source": "npm:is-string", - "target": "npm:call-bound", - "type": "static" - }, - { - "source": "npm:is-string", - "target": "npm:has-tostringtag", - "type": "static" - }, - { - "source": "npm:is-symbol", - "target": "npm:call-bound", - "type": "static" - }, - { - "source": "npm:is-symbol", - "target": "npm:has-symbols", - "type": "static" - }, - { - "source": "npm:is-symbol", - "target": "npm:safe-regex-test", - "type": "static" - }, - { - "source": "npm:is-typed-array", - "target": "npm:which-typed-array", - "type": "static" - }, - { - "source": "npm:is-url-http", - "target": "npm:url-http", - "type": "static" - }, - { - "source": "npm:is-weakref", - "target": "npm:call-bound", - "type": "static" - }, - { - "source": "npm:is-weakset", - "target": "npm:call-bound", - "type": "static" - }, - { - "source": "npm:is-weakset", - "target": "npm:get-intrinsic", - "type": "static" - }, - { - "source": "npm:is-wsl", - "target": "npm:is-docker", - "type": "static" - }, - { - "source": "npm:iterator.prototype", - "target": "npm:define-data-property", - "type": "static" - }, - { - "source": "npm:iterator.prototype", - "target": "npm:es-object-atoms", - "type": "static" - }, - { - "source": "npm:iterator.prototype", - "target": "npm:get-intrinsic", - "type": "static" - }, - { - "source": "npm:iterator.prototype", - "target": "npm:get-proto", - "type": "static" - }, - { - "source": "npm:iterator.prototype", - "target": "npm:has-symbols", - "type": "static" - }, - { - "source": "npm:iterator.prototype", - "target": "npm:set-function-name", - "type": "static" - }, - { - "source": "npm:jackspeak@3.4.3", - "target": "npm:@isaacs/cliui@8.0.2", - "type": "static" - }, - { - "source": "npm:jackspeak@3.4.3", - "target": "npm:@pkgjs/parseargs", - "type": "static" - }, - { - "source": "npm:jackspeak", - "target": "npm:@isaacs/cliui", - "type": "static" - }, - { - "source": "npm:jake", - "target": "npm:async", - "type": "static" - }, - { - "source": "npm:jake", - "target": "npm:filelist", - "type": "static" - }, - { - "source": "npm:jake", - "target": "npm:picocolors", - "type": "static" - }, - { - "source": "npm:jest-diff", - "target": "npm:@jest/diff-sequences", - "type": "static" - }, - { - "source": "npm:jest-diff", - "target": "npm:@jest/get-type", - "type": "static" - }, - { - "source": "npm:jest-diff", - "target": "npm:chalk", - "type": "static" - }, - { - "source": "npm:jest-diff", - "target": "npm:pretty-format", - "type": "static" - }, - { - "source": "npm:js-yaml@3.14.2", - "target": "npm:argparse@1.0.10", - "type": "static" - }, - { - "source": "npm:js-yaml@3.14.2", - "target": "npm:esprima", - "type": "static" - }, - { - "source": "npm:js-yaml", - "target": "npm:argparse", - "type": "static" - }, - { - "source": "npm:json-loose", - "target": "npm:moo", - "type": "static" - }, - { - "source": "npm:json-schema-ref-resolver", - "target": "npm:dequal", - "type": "static" - }, - { - "source": "npm:jsx-ast-utils", - "target": "npm:array-includes", - "type": "static" - }, - { - "source": "npm:jsx-ast-utils", - "target": "npm:array.prototype.flat", - "type": "static" - }, - { - "source": "npm:jsx-ast-utils", - "target": "npm:object.assign", - "type": "static" - }, - { - "source": "npm:jsx-ast-utils", - "target": "npm:object.values", - "type": "static" - }, - { - "source": "npm:keyv", - "target": "npm:json-buffer", - "type": "static" - }, - { - "source": "npm:knip", - "target": "npm:@nodelib/fs.walk", - "type": "static" - }, - { - "source": "npm:knip", - "target": "npm:@types/node", - "type": "static" - }, - { - "source": "npm:knip", - "target": "npm:fast-glob", - "type": "static" - }, - { - "source": "npm:knip", - "target": "npm:formatly", - "type": "static" - }, - { - "source": "npm:knip", - "target": "npm:jiti", - "type": "static" - }, - { - "source": "npm:knip", - "target": "npm:minimist", - "type": "static" - }, - { - "source": "npm:knip", - "target": "npm:oxc-resolver", - "type": "static" - }, - { - "source": "npm:knip", - "target": "npm:picocolors", - "type": "static" - }, - { - "source": "npm:knip", - "target": "npm:picomatch", - "type": "static" - }, - { - "source": "npm:knip", - "target": "npm:smol-toml", - "type": "static" - }, - { - "source": "npm:knip", - "target": "npm:strip-json-comments", - "type": "static" - }, - { - "source": "npm:knip", - "target": "npm:typescript", - "type": "static" - }, - { - "source": "npm:knip", - "target": "npm:unbash", - "type": "static" - }, - { - "source": "npm:knip", - "target": "npm:yaml", - "type": "static" - }, - { - "source": "npm:knip", - "target": "npm:zod@4.3.6", - "type": "static" - }, - { - "source": "npm:kysely-d1", - "target": "npm:kysely", - "type": "static" - }, - { - "source": "npm:levn", - "target": "npm:prelude-ls", - "type": "static" - }, - { - "source": "npm:levn", - "target": "npm:type-check", - "type": "static" - }, - { - "source": "npm:light-my-request", - "target": "npm:cookie@1.1.1", - "type": "static" - }, - { - "source": "npm:light-my-request", - "target": "npm:process-warning@4.0.1", - "type": "static" - }, - { - "source": "npm:light-my-request", - "target": "npm:set-cookie-parser", - "type": "static" - }, - { - "source": "npm:lightningcss", - "target": "npm:detect-libc", - "type": "static" - }, - { - "source": "npm:lightningcss", - "target": "npm:lightningcss-android-arm64", - "type": "static" - }, - { - "source": "npm:lightningcss", - "target": "npm:lightningcss-darwin-arm64", - "type": "static" - }, - { - "source": "npm:lightningcss", - "target": "npm:lightningcss-darwin-x64", - "type": "static" - }, - { - "source": "npm:lightningcss", - "target": "npm:lightningcss-freebsd-x64", - "type": "static" - }, - { - "source": "npm:lightningcss", - "target": "npm:lightningcss-linux-arm-gnueabihf", - "type": "static" - }, - { - "source": "npm:lightningcss", - "target": "npm:lightningcss-linux-arm64-gnu", - "type": "static" - }, - { - "source": "npm:lightningcss", - "target": "npm:lightningcss-linux-arm64-musl", - "type": "static" - }, - { - "source": "npm:lightningcss", - "target": "npm:lightningcss-linux-x64-gnu", - "type": "static" - }, - { - "source": "npm:lightningcss", - "target": "npm:lightningcss-linux-x64-musl", - "type": "static" - }, - { - "source": "npm:lightningcss", - "target": "npm:lightningcss-win32-arm64-msvc", - "type": "static" - }, - { - "source": "npm:lightningcss", - "target": "npm:lightningcss-win32-x64-msvc", - "type": "static" - }, - { - "source": "npm:locate-path@3.0.0", - "target": "npm:p-locate@3.0.0", - "type": "static" - }, - { - "source": "npm:locate-path@3.0.0", - "target": "npm:path-exists@3.0.0", - "type": "static" - }, - { - "source": "npm:locate-path", - "target": "npm:p-locate", - "type": "static" - }, - { - "source": "npm:log-symbols", - "target": "npm:chalk", - "type": "static" - }, - { - "source": "npm:log-symbols", - "target": "npm:is-unicode-supported@0.1.0", - "type": "static" - }, - { - "source": "npm:loose-envify", - "target": "npm:js-tokens", - "type": "static" - }, - { - "source": "npm:lru-cache", - "target": "npm:yallist", - "type": "static" - }, - { - "source": "npm:lucide-react", - "target": "npm:react", - "type": "static" - }, - { - "source": "npm:magic-regexp", - "target": "npm:estree-walker", - "type": "static" - }, - { - "source": "npm:magic-regexp", - "target": "npm:magic-string", - "type": "static" - }, - { - "source": "npm:magic-regexp", - "target": "npm:mlly", - "type": "static" - }, - { - "source": "npm:magic-regexp", - "target": "npm:regexp-tree", - "type": "static" - }, - { - "source": "npm:magic-regexp", - "target": "npm:type-level-regexp", - "type": "static" - }, - { - "source": "npm:magic-regexp", - "target": "npm:ufo", - "type": "static" - }, - { - "source": "npm:magic-regexp", - "target": "npm:unplugin", - "type": "static" - }, - { - "source": "npm:magic-string", - "target": "npm:@jridgewell/sourcemap-codec", - "type": "static" - }, - { - "source": "npm:magicast", - "target": "npm:@babel/parser", - "type": "static" - }, - { - "source": "npm:magicast", - "target": "npm:@babel/types", - "type": "static" - }, - { - "source": "npm:magicast", - "target": "npm:source-map-js", - "type": "static" - }, - { - "source": "npm:make-fetch-happen", - "target": "npm:@npmcli/agent", - "type": "static" - }, - { - "source": "npm:make-fetch-happen", - "target": "npm:cacache", - "type": "static" - }, - { - "source": "npm:make-fetch-happen", - "target": "npm:http-cache-semantics", - "type": "static" - }, - { - "source": "npm:make-fetch-happen", - "target": "npm:minipass", - "type": "static" - }, - { - "source": "npm:make-fetch-happen", - "target": "npm:minipass-fetch", - "type": "static" - }, - { - "source": "npm:make-fetch-happen", - "target": "npm:minipass-flush", - "type": "static" - }, - { - "source": "npm:make-fetch-happen", - "target": "npm:minipass-pipeline", - "type": "static" - }, - { - "source": "npm:make-fetch-happen", - "target": "npm:negotiator", - "type": "static" - }, - { - "source": "npm:make-fetch-happen", - "target": "npm:proc-log", - "type": "static" - }, - { - "source": "npm:make-fetch-happen", - "target": "npm:promise-retry", - "type": "static" - }, - { - "source": "npm:make-fetch-happen", - "target": "npm:ssri", - "type": "static" - }, - { - "source": "npm:mdast-builder", - "target": "npm:@types/unist", - "type": "static" - }, - { - "source": "npm:mdast-util-from-markdown", - "target": "npm:@types/mdast", - "type": "static" - }, - { - "source": "npm:mdast-util-from-markdown", - "target": "npm:@types/unist@3.0.3", - "type": "static" - }, - { - "source": "npm:mdast-util-from-markdown", - "target": "npm:decode-named-character-reference", - "type": "static" - }, - { - "source": "npm:mdast-util-from-markdown", - "target": "npm:devlop", - "type": "static" - }, - { - "source": "npm:mdast-util-from-markdown", - "target": "npm:mdast-util-to-string", - "type": "static" - }, - { - "source": "npm:mdast-util-from-markdown", - "target": "npm:micromark", - "type": "static" - }, - { - "source": "npm:mdast-util-from-markdown", - "target": "npm:micromark-util-decode-numeric-character-reference", - "type": "static" - }, - { - "source": "npm:mdast-util-from-markdown", - "target": "npm:micromark-util-decode-string", - "type": "static" - }, - { - "source": "npm:mdast-util-from-markdown", - "target": "npm:micromark-util-normalize-identifier", - "type": "static" - }, - { - "source": "npm:mdast-util-from-markdown", - "target": "npm:micromark-util-symbol", - "type": "static" - }, - { - "source": "npm:mdast-util-from-markdown", - "target": "npm:micromark-util-types", - "type": "static" - }, - { - "source": "npm:mdast-util-from-markdown", - "target": "npm:unist-util-stringify-position", - "type": "static" - }, - { - "source": "npm:mdast-util-phrasing", - "target": "npm:@types/mdast", - "type": "static" - }, - { - "source": "npm:mdast-util-phrasing", - "target": "npm:unist-util-is", - "type": "static" - }, - { - "source": "npm:mdast-util-to-markdown", - "target": "npm:@types/mdast", - "type": "static" - }, - { - "source": "npm:mdast-util-to-markdown", - "target": "npm:@types/unist@3.0.3", - "type": "static" - }, - { - "source": "npm:mdast-util-to-markdown", - "target": "npm:longest-streak", - "type": "static" - }, - { - "source": "npm:mdast-util-to-markdown", - "target": "npm:mdast-util-phrasing", - "type": "static" - }, - { - "source": "npm:mdast-util-to-markdown", - "target": "npm:mdast-util-to-string", - "type": "static" - }, - { - "source": "npm:mdast-util-to-markdown", - "target": "npm:micromark-util-classify-character", - "type": "static" - }, - { - "source": "npm:mdast-util-to-markdown", - "target": "npm:micromark-util-decode-string", - "type": "static" - }, - { - "source": "npm:mdast-util-to-markdown", - "target": "npm:unist-util-visit", - "type": "static" - }, - { - "source": "npm:mdast-util-to-markdown", - "target": "npm:zwitch", - "type": "static" - }, - { - "source": "npm:mdast-util-to-string", - "target": "npm:@types/mdast", - "type": "static" - }, - { - "source": "npm:mdast-util-toc", - "target": "npm:@types/mdast", - "type": "static" - }, - { - "source": "npm:mdast-util-toc", - "target": "npm:@types/ungap__structured-clone", - "type": "static" - }, - { - "source": "npm:mdast-util-toc", - "target": "npm:@ungap/structured-clone", - "type": "static" - }, - { - "source": "npm:mdast-util-toc", - "target": "npm:github-slugger", - "type": "static" - }, - { - "source": "npm:mdast-util-toc", - "target": "npm:mdast-util-to-string", - "type": "static" - }, - { - "source": "npm:mdast-util-toc", - "target": "npm:unist-util-is", - "type": "static" - }, - { - "source": "npm:mdast-util-toc", - "target": "npm:unist-util-visit", - "type": "static" - }, - { - "source": "npm:merge-anything", - "target": "npm:is-what", - "type": "static" - }, - { - "source": "npm:micromark-core-commonmark", - "target": "npm:decode-named-character-reference", - "type": "static" - }, - { - "source": "npm:micromark-core-commonmark", - "target": "npm:devlop", - "type": "static" - }, - { - "source": "npm:micromark-core-commonmark", - "target": "npm:micromark-factory-destination", - "type": "static" - }, - { - "source": "npm:micromark-core-commonmark", - "target": "npm:micromark-factory-label", - "type": "static" - }, - { - "source": "npm:micromark-core-commonmark", - "target": "npm:micromark-factory-space", - "type": "static" - }, - { - "source": "npm:micromark-core-commonmark", - "target": "npm:micromark-factory-title", - "type": "static" - }, - { - "source": "npm:micromark-core-commonmark", - "target": "npm:micromark-factory-whitespace", - "type": "static" - }, - { - "source": "npm:micromark-core-commonmark", - "target": "npm:micromark-util-character", - "type": "static" - }, - { - "source": "npm:micromark-core-commonmark", - "target": "npm:micromark-util-chunked", - "type": "static" - }, - { - "source": "npm:micromark-core-commonmark", - "target": "npm:micromark-util-classify-character", - "type": "static" - }, - { - "source": "npm:micromark-core-commonmark", - "target": "npm:micromark-util-html-tag-name", - "type": "static" - }, - { - "source": "npm:micromark-core-commonmark", - "target": "npm:micromark-util-normalize-identifier", - "type": "static" - }, - { - "source": "npm:micromark-core-commonmark", - "target": "npm:micromark-util-resolve-all", - "type": "static" - }, - { - "source": "npm:micromark-core-commonmark", - "target": "npm:micromark-util-subtokenize", - "type": "static" - }, - { - "source": "npm:micromark-core-commonmark", - "target": "npm:micromark-util-symbol", - "type": "static" - }, - { - "source": "npm:micromark-core-commonmark", - "target": "npm:micromark-util-types", - "type": "static" - }, - { - "source": "npm:micromark-factory-destination", - "target": "npm:micromark-util-character", - "type": "static" - }, - { - "source": "npm:micromark-factory-destination", - "target": "npm:micromark-util-symbol", - "type": "static" - }, - { - "source": "npm:micromark-factory-destination", - "target": "npm:micromark-util-types", - "type": "static" - }, - { - "source": "npm:micromark-factory-label", - "target": "npm:devlop", - "type": "static" - }, - { - "source": "npm:micromark-factory-label", - "target": "npm:micromark-util-character", - "type": "static" - }, - { - "source": "npm:micromark-factory-label", - "target": "npm:micromark-util-symbol", - "type": "static" - }, - { - "source": "npm:micromark-factory-label", - "target": "npm:micromark-util-types", - "type": "static" - }, - { - "source": "npm:micromark-factory-space", - "target": "npm:micromark-util-character", - "type": "static" - }, - { - "source": "npm:micromark-factory-space", - "target": "npm:micromark-util-types", - "type": "static" - }, - { - "source": "npm:micromark-factory-title", - "target": "npm:micromark-factory-space", - "type": "static" - }, - { - "source": "npm:micromark-factory-title", - "target": "npm:micromark-util-character", - "type": "static" - }, - { - "source": "npm:micromark-factory-title", - "target": "npm:micromark-util-symbol", - "type": "static" - }, - { - "source": "npm:micromark-factory-title", - "target": "npm:micromark-util-types", - "type": "static" - }, - { - "source": "npm:micromark-factory-whitespace", - "target": "npm:micromark-factory-space", - "type": "static" - }, - { - "source": "npm:micromark-factory-whitespace", - "target": "npm:micromark-util-character", - "type": "static" - }, - { - "source": "npm:micromark-factory-whitespace", - "target": "npm:micromark-util-symbol", - "type": "static" - }, - { - "source": "npm:micromark-factory-whitespace", - "target": "npm:micromark-util-types", - "type": "static" - }, - { - "source": "npm:micromark-util-character", - "target": "npm:micromark-util-symbol", - "type": "static" - }, - { - "source": "npm:micromark-util-character", - "target": "npm:micromark-util-types", - "type": "static" - }, - { - "source": "npm:micromark-util-chunked", - "target": "npm:micromark-util-symbol", - "type": "static" - }, - { - "source": "npm:micromark-util-classify-character", - "target": "npm:micromark-util-character", - "type": "static" - }, - { - "source": "npm:micromark-util-classify-character", - "target": "npm:micromark-util-symbol", - "type": "static" - }, - { - "source": "npm:micromark-util-classify-character", - "target": "npm:micromark-util-types", - "type": "static" - }, - { - "source": "npm:micromark-util-combine-extensions", - "target": "npm:micromark-util-chunked", - "type": "static" - }, - { - "source": "npm:micromark-util-combine-extensions", - "target": "npm:micromark-util-types", - "type": "static" - }, - { - "source": "npm:micromark-util-decode-numeric-character-reference", - "target": "npm:micromark-util-symbol", - "type": "static" - }, - { - "source": "npm:micromark-util-decode-string", - "target": "npm:decode-named-character-reference", - "type": "static" - }, - { - "source": "npm:micromark-util-decode-string", - "target": "npm:micromark-util-character", - "type": "static" - }, - { - "source": "npm:micromark-util-decode-string", - "target": "npm:micromark-util-decode-numeric-character-reference", - "type": "static" - }, - { - "source": "npm:micromark-util-decode-string", - "target": "npm:micromark-util-symbol", - "type": "static" - }, - { - "source": "npm:micromark-util-normalize-identifier", - "target": "npm:micromark-util-symbol", - "type": "static" - }, - { - "source": "npm:micromark-util-resolve-all", - "target": "npm:micromark-util-types", - "type": "static" - }, - { - "source": "npm:micromark-util-sanitize-uri", - "target": "npm:micromark-util-character", - "type": "static" - }, - { - "source": "npm:micromark-util-sanitize-uri", - "target": "npm:micromark-util-encode", - "type": "static" - }, - { - "source": "npm:micromark-util-sanitize-uri", - "target": "npm:micromark-util-symbol", - "type": "static" - }, - { - "source": "npm:micromark-util-subtokenize", - "target": "npm:devlop", - "type": "static" - }, - { - "source": "npm:micromark-util-subtokenize", - "target": "npm:micromark-util-chunked", - "type": "static" - }, - { - "source": "npm:micromark-util-subtokenize", - "target": "npm:micromark-util-symbol", - "type": "static" - }, - { - "source": "npm:micromark-util-subtokenize", - "target": "npm:micromark-util-types", - "type": "static" - }, - { - "source": "npm:micromark", - "target": "npm:@types/debug", - "type": "static" - }, - { - "source": "npm:micromark", - "target": "npm:debug", - "type": "static" - }, - { - "source": "npm:micromark", - "target": "npm:decode-named-character-reference", - "type": "static" - }, - { - "source": "npm:micromark", - "target": "npm:devlop", - "type": "static" - }, - { - "source": "npm:micromark", - "target": "npm:micromark-core-commonmark", - "type": "static" - }, - { - "source": "npm:micromark", - "target": "npm:micromark-factory-space", - "type": "static" - }, - { - "source": "npm:micromark", - "target": "npm:micromark-util-character", - "type": "static" - }, - { - "source": "npm:micromark", - "target": "npm:micromark-util-chunked", - "type": "static" - }, - { - "source": "npm:micromark", - "target": "npm:micromark-util-combine-extensions", - "type": "static" - }, - { - "source": "npm:micromark", - "target": "npm:micromark-util-decode-numeric-character-reference", - "type": "static" - }, - { - "source": "npm:micromark", - "target": "npm:micromark-util-encode", - "type": "static" - }, - { - "source": "npm:micromark", - "target": "npm:micromark-util-normalize-identifier", - "type": "static" - }, - { - "source": "npm:micromark", - "target": "npm:micromark-util-resolve-all", - "type": "static" - }, - { - "source": "npm:micromark", - "target": "npm:micromark-util-sanitize-uri", - "type": "static" - }, - { - "source": "npm:micromark", - "target": "npm:micromark-util-subtokenize", - "type": "static" - }, - { - "source": "npm:micromark", - "target": "npm:micromark-util-symbol", - "type": "static" - }, - { - "source": "npm:micromark", - "target": "npm:micromark-util-types", - "type": "static" - }, - { - "source": "npm:micromatch", - "target": "npm:braces", - "type": "static" - }, - { - "source": "npm:micromatch", - "target": "npm:picomatch@2.3.1", - "type": "static" - }, - { - "source": "npm:mime-types@2.1.35", - "target": "npm:mime-db@1.52.0", - "type": "static" - }, - { - "source": "npm:mime-types", - "target": "npm:mime-db", - "type": "static" - }, - { - "source": "npm:miniflare@4.20251217.0", - "target": "npm:@cspotcode/source-map-support", - "type": "static" - }, - { - "source": "npm:miniflare@4.20251217.0", - "target": "npm:acorn@8.14.0", - "type": "static" - }, - { - "source": "npm:miniflare@4.20251217.0", - "target": "npm:acorn-walk", - "type": "static" - }, - { - "source": "npm:miniflare@4.20251217.0", - "target": "npm:exit-hook", - "type": "static" - }, - { - "source": "npm:miniflare@4.20251217.0", - "target": "npm:glob-to-regexp", - "type": "static" - }, - { - "source": "npm:miniflare@4.20251217.0", - "target": "npm:sharp@0.33.5", - "type": "static" - }, - { - "source": "npm:miniflare@4.20251217.0", - "target": "npm:stoppable", - "type": "static" - }, - { - "source": "npm:miniflare@4.20251217.0", - "target": "npm:undici@7.14.0", - "type": "static" - }, - { - "source": "npm:miniflare@4.20251217.0", - "target": "npm:workerd@1.20251217.0", - "type": "static" - }, - { - "source": "npm:miniflare@4.20251217.0", - "target": "npm:ws", - "type": "static" - }, - { - "source": "npm:miniflare@4.20251217.0", - "target": "npm:youch", - "type": "static" - }, - { - "source": "npm:miniflare@4.20251217.0", - "target": "npm:zod@3.22.3", - "type": "static" - }, - { - "source": "npm:miniflare", - "target": "npm:@cspotcode/source-map-support", - "type": "static" - }, - { - "source": "npm:miniflare", - "target": "npm:sharp", - "type": "static" - }, - { - "source": "npm:miniflare", - "target": "npm:undici", - "type": "static" - }, - { - "source": "npm:miniflare", - "target": "npm:workerd", - "type": "static" - }, - { - "source": "npm:miniflare", - "target": "npm:ws", - "type": "static" - }, - { - "source": "npm:miniflare", - "target": "npm:youch", - "type": "static" - }, - { - "source": "npm:minimatch@10.2.3", - "target": "npm:brace-expansion", - "type": "static" - }, - { - "source": "npm:minimatch@10.2.4", - "target": "npm:brace-expansion", - "type": "static" - }, - { - "source": "npm:minimatch", - "target": "npm:brace-expansion@1.1.12", - "type": "static" - }, - { - "source": "npm:minimatch@5.1.9", - "target": "npm:brace-expansion@2.0.2", - "type": "static" - }, - { - "source": "npm:minimatch@8.0.4", - "target": "npm:brace-expansion@2.0.2", - "type": "static" - }, - { - "source": "npm:minimatch@9.0.5", - "target": "npm:brace-expansion@2.0.2", - "type": "static" - }, - { - "source": "npm:minipass-collect", - "target": "npm:minipass", - "type": "static" - }, - { - "source": "npm:minipass-fetch", - "target": "npm:minipass", - "type": "static" - }, - { - "source": "npm:minipass-fetch", - "target": "npm:minipass-sized", - "type": "static" - }, - { - "source": "npm:minipass-fetch", - "target": "npm:minizlib", - "type": "static" - }, - { - "source": "npm:minipass-fetch", - "target": "npm:encoding", - "type": "static" - }, - { - "source": "npm:minipass-flush", - "target": "npm:minipass@3.3.6", - "type": "static" - }, - { - "source": "npm:minipass-pipeline", - "target": "npm:minipass@3.3.6", - "type": "static" - }, - { - "source": "npm:minipass-sized", - "target": "npm:minipass@3.3.6", - "type": "static" - }, - { - "source": "npm:minipass@3.3.6", - "target": "npm:yallist@4.0.0", - "type": "static" - }, - { - "source": "npm:minizlib", - "target": "npm:minipass", - "type": "static" - }, - { - "source": "npm:mlly", - "target": "npm:acorn", - "type": "static" - }, - { - "source": "npm:mlly", - "target": "npm:pathe", - "type": "static" - }, - { - "source": "npm:mlly", - "target": "npm:pkg-types@1.3.1", - "type": "static" - }, - { - "source": "npm:mlly", - "target": "npm:ufo", - "type": "static" - }, - { - "source": "npm:mysql2", - "target": "npm:aws-ssl-profiles", - "type": "static" - }, - { - "source": "npm:mysql2", - "target": "npm:denque", - "type": "static" - }, - { - "source": "npm:mysql2", - "target": "npm:generate-function", - "type": "static" - }, - { - "source": "npm:mysql2", - "target": "npm:iconv-lite@0.7.2", - "type": "static" - }, - { - "source": "npm:mysql2", - "target": "npm:long", - "type": "static" - }, - { - "source": "npm:mysql2", - "target": "npm:lru.min", - "type": "static" - }, - { - "source": "npm:mysql2", - "target": "npm:named-placeholders", - "type": "static" - }, - { - "source": "npm:mysql2", - "target": "npm:seq-queue", - "type": "static" - }, - { - "source": "npm:mysql2", - "target": "npm:sqlstring", - "type": "static" - }, - { - "source": "npm:named-placeholders", - "target": "npm:lru-cache@7.18.3", - "type": "static" - }, - { - "source": "npm:node-abi", - "target": "npm:semver@7.7.4", - "type": "static" - }, - { - "source": "npm:node-fetch@2.7.0", - "target": "npm:whatwg-url", - "type": "static" - }, - { - "source": "npm:node-fetch@2.7.0", - "target": "npm:encoding", - "type": "static" - }, - { - "source": "npm:node-fetch", - "target": "npm:data-uri-to-buffer", - "type": "static" - }, - { - "source": "npm:node-fetch", - "target": "npm:fetch-blob", - "type": "static" - }, - { - "source": "npm:node-fetch", - "target": "npm:formdata-polyfill", - "type": "static" - }, - { - "source": "npm:node-gyp", - "target": "npm:env-paths", - "type": "static" - }, - { - "source": "npm:node-gyp", - "target": "npm:exponential-backoff", - "type": "static" - }, - { - "source": "npm:node-gyp", - "target": "npm:graceful-fs", - "type": "static" - }, - { - "source": "npm:node-gyp", - "target": "npm:make-fetch-happen", - "type": "static" - }, - { - "source": "npm:node-gyp", - "target": "npm:nopt", - "type": "static" - }, - { - "source": "npm:node-gyp", - "target": "npm:proc-log", - "type": "static" - }, - { - "source": "npm:node-gyp", - "target": "npm:semver@7.7.4", - "type": "static" - }, - { - "source": "npm:node-gyp", - "target": "npm:tar", - "type": "static" - }, - { - "source": "npm:node-gyp", - "target": "npm:tinyglobby", - "type": "static" - }, - { - "source": "npm:node-gyp", - "target": "npm:which@5.0.0", - "type": "static" - }, - { - "source": "npm:nopt", - "target": "npm:abbrev", - "type": "static" - }, - { - "source": "npm:npm-run-all2", - "target": "npm:ansi-styles", - "type": "static" - }, - { - "source": "npm:npm-run-all2", - "target": "npm:cross-spawn", - "type": "static" - }, - { - "source": "npm:npm-run-all2", - "target": "npm:memorystream", - "type": "static" - }, - { - "source": "npm:npm-run-all2", - "target": "npm:picomatch", - "type": "static" - }, - { - "source": "npm:npm-run-all2", - "target": "npm:pidtree", - "type": "static" - }, - { - "source": "npm:npm-run-all2", - "target": "npm:read-package-json-fast", - "type": "static" - }, - { - "source": "npm:npm-run-all2", - "target": "npm:shell-quote", - "type": "static" - }, - { - "source": "npm:npm-run-all2", - "target": "npm:which@5.0.0", - "type": "static" - }, - { - "source": "npm:npm-run-path@4.0.1", - "target": "npm:path-key", - "type": "static" - }, - { - "source": "npm:npm-run-path", - "target": "npm:path-key@4.0.0", - "type": "static" - }, - { - "source": "npm:npm-run-path", - "target": "npm:unicorn-magic@0.3.0", - "type": "static" - }, - { - "source": "npm:nth-check", - "target": "npm:boolbase", - "type": "static" - }, - { - "source": "npm:nx", - "target": "npm:@ltd/j-toml", - "type": "static" - }, - { - "source": "npm:nx", - "target": "npm:@napi-rs/wasm-runtime", - "type": "static" - }, - { - "source": "npm:nx", - "target": "npm:@yarnpkg/lockfile", - "type": "static" - }, - { - "source": "npm:nx", - "target": "npm:@yarnpkg/parsers", - "type": "static" - }, - { - "source": "npm:nx", - "target": "npm:@zkochan/js-yaml", - "type": "static" - }, - { - "source": "npm:nx", - "target": "npm:axios", - "type": "static" - }, - { - "source": "npm:nx", - "target": "npm:cli-cursor", - "type": "static" - }, - { - "source": "npm:nx", - "target": "npm:cli-spinners", - "type": "static" - }, - { - "source": "npm:nx", - "target": "npm:cliui", - "type": "static" - }, - { - "source": "npm:nx", - "target": "npm:dotenv@16.4.7", - "type": "static" - }, - { - "source": "npm:nx", - "target": "npm:dotenv-expand", - "type": "static" - }, - { - "source": "npm:nx", - "target": "npm:ejs", - "type": "static" - }, - { - "source": "npm:nx", - "target": "npm:enquirer", - "type": "static" - }, - { - "source": "npm:nx", - "target": "npm:figures@3.2.0", - "type": "static" - }, - { - "source": "npm:nx", - "target": "npm:flat", - "type": "static" - }, - { - "source": "npm:nx", - "target": "npm:front-matter", - "type": "static" - }, - { - "source": "npm:nx", - "target": "npm:ignore@7.0.5", - "type": "static" - }, - { - "source": "npm:nx", - "target": "npm:jest-diff", - "type": "static" - }, - { - "source": "npm:nx", - "target": "npm:jsonc-parser@3.2.0", - "type": "static" - }, - { - "source": "npm:nx", - "target": "npm:lines-and-columns", - "type": "static" - }, - { - "source": "npm:nx", - "target": "npm:minimatch@10.2.4", - "type": "static" - }, - { - "source": "npm:nx", - "target": "npm:npm-run-path@4.0.1", - "type": "static" - }, - { - "source": "npm:nx", - "target": "npm:open", - "type": "static" - }, - { - "source": "npm:nx", - "target": "npm:ora", - "type": "static" - }, - { - "source": "npm:nx", - "target": "npm:picocolors", - "type": "static" - }, - { - "source": "npm:nx", - "target": "npm:resolve.exports", - "type": "static" - }, - { - "source": "npm:nx", - "target": "npm:semver@7.7.4", - "type": "static" - }, - { - "source": "npm:nx", - "target": "npm:string-width", - "type": "static" - }, - { - "source": "npm:nx", - "target": "npm:tar-stream", - "type": "static" - }, - { - "source": "npm:nx", - "target": "npm:tmp", - "type": "static" - }, - { - "source": "npm:nx", - "target": "npm:tree-kill", - "type": "static" - }, - { - "source": "npm:nx", - "target": "npm:tsconfig-paths", - "type": "static" - }, - { - "source": "npm:nx", - "target": "npm:tslib", - "type": "static" - }, - { - "source": "npm:nx", - "target": "npm:yaml", - "type": "static" - }, - { - "source": "npm:nx", - "target": "npm:yargs", - "type": "static" - }, - { - "source": "npm:nx", - "target": "npm:yargs-parser", - "type": "static" - }, - { - "source": "npm:nx", - "target": "npm:@nx/nx-darwin-arm64", - "type": "static" - }, - { - "source": "npm:nx", - "target": "npm:@nx/nx-darwin-x64", - "type": "static" - }, - { - "source": "npm:nx", - "target": "npm:@nx/nx-freebsd-x64", - "type": "static" - }, - { - "source": "npm:nx", - "target": "npm:@nx/nx-linux-arm-gnueabihf", - "type": "static" - }, - { - "source": "npm:nx", - "target": "npm:@nx/nx-linux-arm64-gnu", - "type": "static" - }, - { - "source": "npm:nx", - "target": "npm:@nx/nx-linux-arm64-musl", - "type": "static" - }, - { - "source": "npm:nx", - "target": "npm:@nx/nx-linux-x64-gnu", - "type": "static" - }, - { - "source": "npm:nx", - "target": "npm:@nx/nx-linux-x64-musl", - "type": "static" - }, - { - "source": "npm:nx", - "target": "npm:@nx/nx-win32-arm64-msvc", - "type": "static" - }, - { - "source": "npm:nx", - "target": "npm:@nx/nx-win32-x64-msvc", - "type": "static" - }, - { - "source": "npm:nypm", - "target": "npm:citty@0.1.6", - "type": "static" - }, - { - "source": "npm:nypm", - "target": "npm:consola", - "type": "static" - }, - { - "source": "npm:nypm", - "target": "npm:pathe", - "type": "static" - }, - { - "source": "npm:nypm", - "target": "npm:pkg-types", - "type": "static" - }, - { - "source": "npm:nypm", - "target": "npm:tinyexec", - "type": "static" - }, - { - "source": "npm:object.assign", - "target": "npm:call-bind", - "type": "static" - }, - { - "source": "npm:object.assign", - "target": "npm:call-bound", - "type": "static" - }, - { - "source": "npm:object.assign", - "target": "npm:define-properties", - "type": "static" - }, - { - "source": "npm:object.assign", - "target": "npm:es-object-atoms", - "type": "static" - }, - { - "source": "npm:object.assign", - "target": "npm:has-symbols", - "type": "static" - }, - { - "source": "npm:object.assign", - "target": "npm:object-keys", - "type": "static" - }, - { - "source": "npm:object.entries", - "target": "npm:call-bind", - "type": "static" - }, - { - "source": "npm:object.entries", - "target": "npm:call-bound", - "type": "static" - }, - { - "source": "npm:object.entries", - "target": "npm:define-properties", - "type": "static" - }, - { - "source": "npm:object.entries", - "target": "npm:es-object-atoms", - "type": "static" - }, - { - "source": "npm:object.fromentries", - "target": "npm:call-bind", - "type": "static" - }, - { - "source": "npm:object.fromentries", - "target": "npm:define-properties", - "type": "static" - }, - { - "source": "npm:object.fromentries", - "target": "npm:es-abstract", - "type": "static" - }, - { - "source": "npm:object.fromentries", - "target": "npm:es-object-atoms", - "type": "static" - }, - { - "source": "npm:object.values", - "target": "npm:call-bind", - "type": "static" - }, - { - "source": "npm:object.values", - "target": "npm:call-bound", - "type": "static" - }, - { - "source": "npm:object.values", - "target": "npm:define-properties", - "type": "static" - }, - { - "source": "npm:object.values", - "target": "npm:es-object-atoms", - "type": "static" - }, - { - "source": "npm:on-finished", - "target": "npm:ee-first", - "type": "static" - }, - { - "source": "npm:once", - "target": "npm:wrappy", - "type": "static" - }, - { - "source": "npm:onetime", - "target": "npm:mimic-fn", - "type": "static" - }, - { - "source": "npm:open", - "target": "npm:define-lazy-prop", - "type": "static" - }, - { - "source": "npm:open", - "target": "npm:is-docker", - "type": "static" - }, - { - "source": "npm:open", - "target": "npm:is-wsl", - "type": "static" - }, - { - "source": "npm:optionator", - "target": "npm:deep-is", - "type": "static" - }, - { - "source": "npm:optionator", - "target": "npm:fast-levenshtein", - "type": "static" - }, - { - "source": "npm:optionator", - "target": "npm:levn", - "type": "static" - }, - { - "source": "npm:optionator", - "target": "npm:prelude-ls", - "type": "static" - }, - { - "source": "npm:optionator", - "target": "npm:type-check", - "type": "static" - }, - { - "source": "npm:optionator", - "target": "npm:word-wrap", - "type": "static" - }, - { - "source": "npm:ora", - "target": "npm:bl", - "type": "static" - }, - { - "source": "npm:ora", - "target": "npm:chalk", - "type": "static" - }, - { - "source": "npm:ora", - "target": "npm:cli-cursor", - "type": "static" - }, - { - "source": "npm:ora", - "target": "npm:cli-spinners", - "type": "static" - }, - { - "source": "npm:ora", - "target": "npm:is-interactive", - "type": "static" - }, - { - "source": "npm:ora", - "target": "npm:log-symbols", - "type": "static" - }, - { - "source": "npm:ora", - "target": "npm:strip-ansi@6.0.1", - "type": "static" - }, - { - "source": "npm:ora", - "target": "npm:wcwidth", - "type": "static" - }, - { - "source": "npm:own-keys", - "target": "npm:get-intrinsic", - "type": "static" - }, - { - "source": "npm:own-keys", - "target": "npm:object-keys", - "type": "static" - }, - { - "source": "npm:own-keys", - "target": "npm:safe-push-apply", - "type": "static" - }, - { - "source": "npm:oxc-parser", - "target": "npm:@oxc-project/types", - "type": "static" - }, - { - "source": "npm:oxc-parser", - "target": "npm:@oxc-parser/binding-android-arm64", - "type": "static" - }, - { - "source": "npm:oxc-parser", - "target": "npm:@oxc-parser/binding-darwin-arm64", - "type": "static" - }, - { - "source": "npm:oxc-parser", - "target": "npm:@oxc-parser/binding-darwin-x64", - "type": "static" - }, - { - "source": "npm:oxc-parser", - "target": "npm:@oxc-parser/binding-freebsd-x64", - "type": "static" - }, - { - "source": "npm:oxc-parser", - "target": "npm:@oxc-parser/binding-linux-arm-gnueabihf", - "type": "static" - }, - { - "source": "npm:oxc-parser", - "target": "npm:@oxc-parser/binding-linux-arm64-gnu", - "type": "static" - }, - { - "source": "npm:oxc-parser", - "target": "npm:@oxc-parser/binding-linux-arm64-musl", - "type": "static" - }, - { - "source": "npm:oxc-parser", - "target": "npm:@oxc-parser/binding-linux-riscv64-gnu", - "type": "static" - }, - { - "source": "npm:oxc-parser", - "target": "npm:@oxc-parser/binding-linux-s390x-gnu", - "type": "static" - }, - { - "source": "npm:oxc-parser", - "target": "npm:@oxc-parser/binding-linux-x64-gnu", - "type": "static" - }, - { - "source": "npm:oxc-parser", - "target": "npm:@oxc-parser/binding-linux-x64-musl", - "type": "static" - }, - { - "source": "npm:oxc-parser", - "target": "npm:@oxc-parser/binding-openharmony-arm64", - "type": "static" - }, - { - "source": "npm:oxc-parser", - "target": "npm:@oxc-parser/binding-wasm32-wasi", - "type": "static" - }, - { - "source": "npm:oxc-parser", - "target": "npm:@oxc-parser/binding-win32-arm64-msvc", - "type": "static" - }, - { - "source": "npm:oxc-parser", - "target": "npm:@oxc-parser/binding-win32-x64-msvc", - "type": "static" - }, - { - "source": "npm:oxc-resolver", - "target": "npm:@oxc-resolver/binding-android-arm-eabi", - "type": "static" - }, - { - "source": "npm:oxc-resolver", - "target": "npm:@oxc-resolver/binding-android-arm64", - "type": "static" - }, - { - "source": "npm:oxc-resolver", - "target": "npm:@oxc-resolver/binding-darwin-arm64", - "type": "static" - }, - { - "source": "npm:oxc-resolver", - "target": "npm:@oxc-resolver/binding-darwin-x64", - "type": "static" - }, - { - "source": "npm:oxc-resolver", - "target": "npm:@oxc-resolver/binding-freebsd-x64", - "type": "static" - }, - { - "source": "npm:oxc-resolver", - "target": "npm:@oxc-resolver/binding-linux-arm-gnueabihf", - "type": "static" - }, - { - "source": "npm:oxc-resolver", - "target": "npm:@oxc-resolver/binding-linux-arm-musleabihf", - "type": "static" - }, - { - "source": "npm:oxc-resolver", - "target": "npm:@oxc-resolver/binding-linux-arm64-gnu", - "type": "static" - }, - { - "source": "npm:oxc-resolver", - "target": "npm:@oxc-resolver/binding-linux-arm64-musl", - "type": "static" - }, - { - "source": "npm:oxc-resolver", - "target": "npm:@oxc-resolver/binding-linux-ppc64-gnu", - "type": "static" - }, - { - "source": "npm:oxc-resolver", - "target": "npm:@oxc-resolver/binding-linux-riscv64-gnu", - "type": "static" - }, - { - "source": "npm:oxc-resolver", - "target": "npm:@oxc-resolver/binding-linux-riscv64-musl", - "type": "static" - }, - { - "source": "npm:oxc-resolver", - "target": "npm:@oxc-resolver/binding-linux-s390x-gnu", - "type": "static" - }, - { - "source": "npm:oxc-resolver", - "target": "npm:@oxc-resolver/binding-linux-x64-gnu", - "type": "static" - }, - { - "source": "npm:oxc-resolver", - "target": "npm:@oxc-resolver/binding-linux-x64-musl", - "type": "static" - }, - { - "source": "npm:oxc-resolver", - "target": "npm:@oxc-resolver/binding-openharmony-arm64", - "type": "static" - }, - { - "source": "npm:oxc-resolver", - "target": "npm:@oxc-resolver/binding-wasm32-wasi", - "type": "static" - }, - { - "source": "npm:oxc-resolver", - "target": "npm:@oxc-resolver/binding-win32-arm64-msvc", - "type": "static" - }, - { - "source": "npm:oxc-resolver", - "target": "npm:@oxc-resolver/binding-win32-ia32-msvc", - "type": "static" - }, - { - "source": "npm:oxc-resolver", - "target": "npm:@oxc-resolver/binding-win32-x64-msvc", - "type": "static" - }, - { - "source": "npm:oxc-walker", - "target": "npm:magic-regexp", - "type": "static" - }, - { - "source": "npm:oxc-walker", - "target": "npm:oxc-parser", - "type": "static" - }, - { - "source": "npm:oxlint-tsgolint", - "target": "npm:@oxlint-tsgolint/darwin-arm64", - "type": "static" - }, - { - "source": "npm:oxlint-tsgolint", - "target": "npm:@oxlint-tsgolint/darwin-x64", - "type": "static" - }, - { - "source": "npm:oxlint-tsgolint", - "target": "npm:@oxlint-tsgolint/linux-arm64", - "type": "static" - }, - { - "source": "npm:oxlint-tsgolint", - "target": "npm:@oxlint-tsgolint/linux-x64", - "type": "static" - }, - { - "source": "npm:oxlint-tsgolint", - "target": "npm:@oxlint-tsgolint/win32-arm64", - "type": "static" - }, - { - "source": "npm:oxlint-tsgolint", - "target": "npm:@oxlint-tsgolint/win32-x64", - "type": "static" - }, - { - "source": "npm:oxlint", - "target": "npm:@oxlint/binding-android-arm-eabi", - "type": "static" - }, - { - "source": "npm:oxlint", - "target": "npm:@oxlint/binding-android-arm64", - "type": "static" - }, - { - "source": "npm:oxlint", - "target": "npm:@oxlint/binding-darwin-arm64", - "type": "static" - }, - { - "source": "npm:oxlint", - "target": "npm:@oxlint/binding-darwin-x64", - "type": "static" - }, - { - "source": "npm:oxlint", - "target": "npm:@oxlint/binding-freebsd-x64", - "type": "static" - }, - { - "source": "npm:oxlint", - "target": "npm:@oxlint/binding-linux-arm-gnueabihf", - "type": "static" - }, - { - "source": "npm:oxlint", - "target": "npm:@oxlint/binding-linux-arm-musleabihf", - "type": "static" - }, - { - "source": "npm:oxlint", - "target": "npm:@oxlint/binding-linux-arm64-gnu", - "type": "static" - }, - { - "source": "npm:oxlint", - "target": "npm:@oxlint/binding-linux-arm64-musl", - "type": "static" - }, - { - "source": "npm:oxlint", - "target": "npm:@oxlint/binding-linux-ppc64-gnu", - "type": "static" - }, - { - "source": "npm:oxlint", - "target": "npm:@oxlint/binding-linux-riscv64-gnu", - "type": "static" - }, - { - "source": "npm:oxlint", - "target": "npm:@oxlint/binding-linux-riscv64-musl", - "type": "static" - }, - { - "source": "npm:oxlint", - "target": "npm:@oxlint/binding-linux-s390x-gnu", - "type": "static" - }, - { - "source": "npm:oxlint", - "target": "npm:@oxlint/binding-linux-x64-gnu", - "type": "static" - }, - { - "source": "npm:oxlint", - "target": "npm:@oxlint/binding-linux-x64-musl", - "type": "static" - }, - { - "source": "npm:oxlint", - "target": "npm:@oxlint/binding-openharmony-arm64", - "type": "static" - }, - { - "source": "npm:oxlint", - "target": "npm:@oxlint/binding-win32-arm64-msvc", - "type": "static" - }, - { - "source": "npm:oxlint", - "target": "npm:@oxlint/binding-win32-ia32-msvc", - "type": "static" - }, - { - "source": "npm:oxlint", - "target": "npm:@oxlint/binding-win32-x64-msvc", - "type": "static" - }, - { - "source": "npm:oxlint", - "target": "npm:oxlint-tsgolint", - "type": "static" - }, - { - "source": "npm:p-limit@2.3.0", - "target": "npm:p-try", - "type": "static" - }, - { - "source": "npm:p-limit@3.1.0", - "target": "npm:yocto-queue@0.1.0", - "type": "static" - }, - { - "source": "npm:p-limit", - "target": "npm:yocto-queue", - "type": "static" - }, - { - "source": "npm:p-locate@3.0.0", - "target": "npm:p-limit@2.3.0", - "type": "static" - }, - { - "source": "npm:p-locate", - "target": "npm:p-limit@3.1.0", - "type": "static" - }, - { - "source": "npm:p-retry", - "target": "npm:@types/retry", - "type": "static" - }, - { - "source": "npm:p-retry", - "target": "npm:retry", - "type": "static" - }, - { - "source": "npm:pac-proxy-agent", - "target": "npm:@tootallnate/quickjs-emscripten", - "type": "static" - }, - { - "source": "npm:pac-proxy-agent", - "target": "npm:agent-base", - "type": "static" - }, - { - "source": "npm:pac-proxy-agent", - "target": "npm:debug", - "type": "static" - }, - { - "source": "npm:pac-proxy-agent", - "target": "npm:get-uri", - "type": "static" - }, - { - "source": "npm:pac-proxy-agent", - "target": "npm:http-proxy-agent", - "type": "static" - }, - { - "source": "npm:pac-proxy-agent", - "target": "npm:https-proxy-agent@7.0.6", - "type": "static" - }, - { - "source": "npm:pac-proxy-agent", - "target": "npm:pac-resolver", - "type": "static" - }, - { - "source": "npm:pac-proxy-agent", - "target": "npm:socks-proxy-agent", - "type": "static" - }, - { - "source": "npm:pac-resolver", - "target": "npm:degenerator", - "type": "static" - }, - { - "source": "npm:pac-resolver", - "target": "npm:netmask", - "type": "static" - }, - { - "source": "npm:parent-module", - "target": "npm:callsites", - "type": "static" - }, - { - "source": "npm:parse-json", - "target": "npm:@babel/code-frame", - "type": "static" - }, - { - "source": "npm:parse-json", - "target": "npm:error-ex", - "type": "static" - }, - { - "source": "npm:parse-json", - "target": "npm:json-parse-even-better-errors@2.3.1", - "type": "static" - }, - { - "source": "npm:parse-json", - "target": "npm:lines-and-columns@1.2.4", - "type": "static" - }, - { - "source": "npm:parse5", - "target": "npm:entities@6.0.1", - "type": "static" - }, - { - "source": "npm:path-scurry@1.11.1", - "target": "npm:lru-cache@10.4.3", - "type": "static" - }, - { - "source": "npm:path-scurry@1.11.1", - "target": "npm:minipass", - "type": "static" - }, - { - "source": "npm:path-scurry", - "target": "npm:lru-cache@11.2.2", - "type": "static" - }, - { - "source": "npm:path-scurry", - "target": "npm:minipass", - "type": "static" - }, - { - "source": "npm:pino-abstract-transport", - "target": "npm:split2", - "type": "static" - }, - { - "source": "npm:pino", - "target": "npm:@pinojs/redact", - "type": "static" - }, - { - "source": "npm:pino", - "target": "npm:atomic-sleep", - "type": "static" - }, - { - "source": "npm:pino", - "target": "npm:on-exit-leak-free", - "type": "static" - }, - { - "source": "npm:pino", - "target": "npm:pino-abstract-transport", - "type": "static" - }, - { - "source": "npm:pino", - "target": "npm:pino-std-serializers", - "type": "static" - }, - { - "source": "npm:pino", - "target": "npm:process-warning", - "type": "static" - }, - { - "source": "npm:pino", - "target": "npm:quick-format-unescaped", - "type": "static" - }, - { - "source": "npm:pino", - "target": "npm:real-require", - "type": "static" - }, - { - "source": "npm:pino", - "target": "npm:safe-stable-stringify", - "type": "static" - }, - { - "source": "npm:pino", - "target": "npm:sonic-boom", - "type": "static" - }, - { - "source": "npm:pino", - "target": "npm:thread-stream", - "type": "static" - }, - { - "source": "npm:pkg-types@1.3.1", - "target": "npm:confbox@0.1.8", - "type": "static" - }, - { - "source": "npm:pkg-types@1.3.1", - "target": "npm:mlly", - "type": "static" - }, - { - "source": "npm:pkg-types@1.3.1", - "target": "npm:pathe", - "type": "static" - }, - { - "source": "npm:pkg-types", - "target": "npm:confbox", - "type": "static" - }, - { - "source": "npm:pkg-types", - "target": "npm:exsolve", - "type": "static" - }, - { - "source": "npm:pkg-types", - "target": "npm:pathe", - "type": "static" - }, - { - "source": "npm:pkg-up", - "target": "npm:find-up@3.0.0", - "type": "static" - }, - { - "source": "npm:portfinder", - "target": "npm:async", - "type": "static" - }, - { - "source": "npm:portfinder", - "target": "npm:debug", - "type": "static" - }, - { - "source": "npm:postcss-calc", - "target": "npm:postcss", - "type": "static" - }, - { - "source": "npm:postcss-calc", - "target": "npm:postcss-selector-parser@6.1.2", - "type": "static" - }, - { - "source": "npm:postcss-calc", - "target": "npm:postcss-value-parser", - "type": "static" - }, - { - "source": "npm:postcss-colormin", - "target": "npm:browserslist", - "type": "static" - }, - { - "source": "npm:postcss-colormin", - "target": "npm:caniuse-api", - "type": "static" - }, - { - "source": "npm:postcss-colormin", - "target": "npm:colord", - "type": "static" - }, - { - "source": "npm:postcss-colormin", - "target": "npm:postcss", - "type": "static" - }, - { - "source": "npm:postcss-colormin", - "target": "npm:postcss-value-parser", - "type": "static" - }, - { - "source": "npm:postcss-convert-values", - "target": "npm:browserslist", - "type": "static" - }, - { - "source": "npm:postcss-convert-values", - "target": "npm:postcss", - "type": "static" - }, - { - "source": "npm:postcss-convert-values", - "target": "npm:postcss-value-parser", - "type": "static" - }, - { - "source": "npm:postcss-discard-comments", - "target": "npm:postcss", - "type": "static" - }, - { - "source": "npm:postcss-discard-duplicates@5.1.0", - "target": "npm:postcss", - "type": "static" - }, - { - "source": "npm:postcss-discard-duplicates", - "target": "npm:postcss", - "type": "static" - }, - { - "source": "npm:postcss-discard-empty", - "target": "npm:postcss", - "type": "static" - }, - { - "source": "npm:postcss-discard-overridden", - "target": "npm:postcss", - "type": "static" - }, - { - "source": "npm:postcss-js", - "target": "npm:camelcase-css", - "type": "static" - }, - { - "source": "npm:postcss-js", - "target": "npm:postcss", - "type": "static" - }, - { - "source": "npm:postcss-merge-longhand", - "target": "npm:postcss", - "type": "static" - }, - { - "source": "npm:postcss-merge-longhand", - "target": "npm:postcss-value-parser", - "type": "static" - }, - { - "source": "npm:postcss-merge-longhand", - "target": "npm:stylehacks", - "type": "static" - }, - { - "source": "npm:postcss-merge-rules", - "target": "npm:browserslist", - "type": "static" - }, - { - "source": "npm:postcss-merge-rules", - "target": "npm:caniuse-api", - "type": "static" - }, - { - "source": "npm:postcss-merge-rules", - "target": "npm:cssnano-utils", - "type": "static" - }, - { - "source": "npm:postcss-merge-rules", - "target": "npm:postcss", - "type": "static" - }, - { - "source": "npm:postcss-merge-rules", - "target": "npm:postcss-selector-parser@6.1.2", - "type": "static" - }, - { - "source": "npm:postcss-minify-font-values", - "target": "npm:postcss", - "type": "static" - }, - { - "source": "npm:postcss-minify-font-values", - "target": "npm:postcss-value-parser", - "type": "static" - }, - { - "source": "npm:postcss-minify-gradients", - "target": "npm:colord", - "type": "static" - }, - { - "source": "npm:postcss-minify-gradients", - "target": "npm:cssnano-utils", - "type": "static" - }, - { - "source": "npm:postcss-minify-gradients", - "target": "npm:postcss", - "type": "static" - }, - { - "source": "npm:postcss-minify-gradients", - "target": "npm:postcss-value-parser", - "type": "static" - }, - { - "source": "npm:postcss-minify-params", - "target": "npm:browserslist", - "type": "static" - }, - { - "source": "npm:postcss-minify-params", - "target": "npm:cssnano-utils", - "type": "static" - }, - { - "source": "npm:postcss-minify-params", - "target": "npm:postcss", - "type": "static" - }, - { - "source": "npm:postcss-minify-params", - "target": "npm:postcss-value-parser", - "type": "static" - }, - { - "source": "npm:postcss-minify-selectors", - "target": "npm:postcss", - "type": "static" - }, - { - "source": "npm:postcss-minify-selectors", - "target": "npm:postcss-selector-parser@6.1.2", - "type": "static" - }, - { - "source": "npm:postcss-mixins", - "target": "npm:postcss", - "type": "static" - }, - { - "source": "npm:postcss-mixins", - "target": "npm:postcss-js", - "type": "static" - }, - { - "source": "npm:postcss-mixins", - "target": "npm:postcss-simple-vars", - "type": "static" - }, - { - "source": "npm:postcss-mixins", - "target": "npm:sugarss", - "type": "static" - }, - { - "source": "npm:postcss-mixins", - "target": "npm:tinyglobby", - "type": "static" - }, - { - "source": "npm:postcss-nested@5.0.6", - "target": "npm:postcss", - "type": "static" - }, - { - "source": "npm:postcss-nested@5.0.6", - "target": "npm:postcss-selector-parser@6.1.2", - "type": "static" - }, - { - "source": "npm:postcss-nested", - "target": "npm:postcss", - "type": "static" - }, - { - "source": "npm:postcss-nested", - "target": "npm:postcss-selector-parser", - "type": "static" - }, - { - "source": "npm:postcss-normalize-charset", - "target": "npm:postcss", - "type": "static" - }, - { - "source": "npm:postcss-normalize-display-values", - "target": "npm:postcss", - "type": "static" - }, - { - "source": "npm:postcss-normalize-display-values", - "target": "npm:postcss-value-parser", - "type": "static" - }, - { - "source": "npm:postcss-normalize-positions", - "target": "npm:postcss", - "type": "static" - }, - { - "source": "npm:postcss-normalize-positions", - "target": "npm:postcss-value-parser", - "type": "static" - }, - { - "source": "npm:postcss-normalize-repeat-style", - "target": "npm:postcss", - "type": "static" - }, - { - "source": "npm:postcss-normalize-repeat-style", - "target": "npm:postcss-value-parser", - "type": "static" - }, - { - "source": "npm:postcss-normalize-string", - "target": "npm:postcss", - "type": "static" - }, - { - "source": "npm:postcss-normalize-string", - "target": "npm:postcss-value-parser", - "type": "static" - }, - { - "source": "npm:postcss-normalize-timing-functions", - "target": "npm:postcss", - "type": "static" - }, - { - "source": "npm:postcss-normalize-timing-functions", - "target": "npm:postcss-value-parser", - "type": "static" - }, - { - "source": "npm:postcss-normalize-unicode", - "target": "npm:browserslist", - "type": "static" - }, - { - "source": "npm:postcss-normalize-unicode", - "target": "npm:postcss", - "type": "static" - }, - { - "source": "npm:postcss-normalize-unicode", - "target": "npm:postcss-value-parser", - "type": "static" - }, - { - "source": "npm:postcss-normalize-url", - "target": "npm:normalize-url", - "type": "static" - }, - { - "source": "npm:postcss-normalize-url", - "target": "npm:postcss", - "type": "static" - }, - { - "source": "npm:postcss-normalize-url", - "target": "npm:postcss-value-parser", - "type": "static" - }, - { - "source": "npm:postcss-normalize-whitespace", - "target": "npm:postcss", - "type": "static" - }, - { - "source": "npm:postcss-normalize-whitespace", - "target": "npm:postcss-value-parser", - "type": "static" - }, - { - "source": "npm:postcss-ordered-values", - "target": "npm:cssnano-utils", - "type": "static" - }, - { - "source": "npm:postcss-ordered-values", - "target": "npm:postcss", - "type": "static" - }, - { - "source": "npm:postcss-ordered-values", - "target": "npm:postcss-value-parser", - "type": "static" - }, - { - "source": "npm:postcss-preset-mantine", - "target": "npm:postcss", - "type": "static" - }, - { - "source": "npm:postcss-preset-mantine", - "target": "npm:postcss-mixins", - "type": "static" - }, - { - "source": "npm:postcss-preset-mantine", - "target": "npm:postcss-nested", - "type": "static" - }, - { - "source": "npm:postcss-reduce-initial", - "target": "npm:browserslist", - "type": "static" - }, - { - "source": "npm:postcss-reduce-initial", - "target": "npm:caniuse-api", - "type": "static" - }, - { - "source": "npm:postcss-reduce-initial", - "target": "npm:postcss", - "type": "static" - }, - { - "source": "npm:postcss-reduce-transforms", - "target": "npm:postcss", - "type": "static" - }, - { - "source": "npm:postcss-reduce-transforms", - "target": "npm:postcss-value-parser", - "type": "static" - }, - { - "source": "npm:postcss-selector-parser@6.1.2", - "target": "npm:cssesc", - "type": "static" - }, - { - "source": "npm:postcss-selector-parser@6.1.2", - "target": "npm:util-deprecate", - "type": "static" - }, - { - "source": "npm:postcss-selector-parser", - "target": "npm:cssesc", - "type": "static" - }, - { - "source": "npm:postcss-selector-parser", - "target": "npm:util-deprecate", - "type": "static" - }, - { - "source": "npm:postcss-simple-vars", - "target": "npm:postcss", - "type": "static" - }, - { - "source": "npm:postcss-svgo", - "target": "npm:postcss", - "type": "static" - }, - { - "source": "npm:postcss-svgo", - "target": "npm:postcss-value-parser", - "type": "static" - }, - { - "source": "npm:postcss-svgo", - "target": "npm:svgo", - "type": "static" - }, - { - "source": "npm:postcss-unique-selectors", - "target": "npm:postcss", - "type": "static" - }, - { - "source": "npm:postcss-unique-selectors", - "target": "npm:postcss-selector-parser@6.1.2", - "type": "static" - }, - { - "source": "npm:postcss-values-parser", - "target": "npm:color-name", - "type": "static" - }, - { - "source": "npm:postcss-values-parser", - "target": "npm:is-url-superb", - "type": "static" - }, - { - "source": "npm:postcss-values-parser", - "target": "npm:postcss", - "type": "static" - }, - { - "source": "npm:postcss-values-parser", - "target": "npm:quote-unquote", - "type": "static" - }, - { - "source": "npm:postcss", - "target": "npm:nanoid", - "type": "static" - }, - { - "source": "npm:postcss", - "target": "npm:picocolors", - "type": "static" - }, - { - "source": "npm:postcss", - "target": "npm:source-map-js", - "type": "static" - }, - { - "source": "npm:preact-render-to-string", - "target": "npm:preact", - "type": "static" - }, - { - "source": "npm:prebuild-install", - "target": "npm:detect-libc", - "type": "static" - }, - { - "source": "npm:prebuild-install", - "target": "npm:expand-template", - "type": "static" - }, - { - "source": "npm:prebuild-install", - "target": "npm:github-from-package", - "type": "static" - }, - { - "source": "npm:prebuild-install", - "target": "npm:minimist", - "type": "static" - }, - { - "source": "npm:prebuild-install", - "target": "npm:mkdirp-classic", - "type": "static" - }, - { - "source": "npm:prebuild-install", - "target": "npm:napi-build-utils", - "type": "static" - }, - { - "source": "npm:prebuild-install", - "target": "npm:node-abi", - "type": "static" - }, - { - "source": "npm:prebuild-install", - "target": "npm:pump", - "type": "static" - }, - { - "source": "npm:prebuild-install", - "target": "npm:rc", - "type": "static" - }, - { - "source": "npm:prebuild-install", - "target": "npm:simple-get", - "type": "static" - }, - { - "source": "npm:prebuild-install", - "target": "npm:tar-fs@2.1.4", - "type": "static" - }, - { - "source": "npm:prebuild-install", - "target": "npm:tunnel-agent", - "type": "static" - }, - { - "source": "npm:prettier-linter-helpers", - "target": "npm:fast-diff", - "type": "static" - }, - { - "source": "npm:pretty-format", - "target": "npm:@jest/schemas", - "type": "static" - }, - { - "source": "npm:pretty-format", - "target": "npm:ansi-styles@5.2.0", - "type": "static" - }, - { - "source": "npm:pretty-format", - "target": "npm:react-is@18.3.1", - "type": "static" - }, - { - "source": "npm:pretty-ms@7.0.1", - "target": "npm:parse-ms@2.1.0", - "type": "static" - }, - { - "source": "npm:pretty-ms", - "target": "npm:parse-ms", - "type": "static" - }, - { - "source": "npm:prisma", - "target": "npm:@prisma/config", - "type": "static" - }, - { - "source": "npm:prisma", - "target": "npm:@prisma/dev", - "type": "static" - }, - { - "source": "npm:prisma", - "target": "npm:@prisma/engines", - "type": "static" - }, - { - "source": "npm:prisma", - "target": "npm:@prisma/studio-core", - "type": "static" - }, - { - "source": "npm:prisma", - "target": "npm:mysql2", - "type": "static" - }, - { - "source": "npm:prisma", - "target": "npm:postgres", - "type": "static" - }, - { - "source": "npm:prisma", - "target": "npm:better-sqlite3", - "type": "static" - }, - { - "source": "npm:prisma", - "target": "npm:typescript", - "type": "static" - }, - { - "source": "npm:promise-retry", - "target": "npm:err-code", - "type": "static" - }, - { - "source": "npm:promise-retry", - "target": "npm:retry@0.12.0", - "type": "static" - }, - { - "source": "npm:prop-types", - "target": "npm:loose-envify", - "type": "static" - }, - { - "source": "npm:prop-types", - "target": "npm:object-assign", - "type": "static" - }, - { - "source": "npm:prop-types", - "target": "npm:react-is", - "type": "static" - }, - { - "source": "npm:proper-lockfile", - "target": "npm:graceful-fs", - "type": "static" - }, - { - "source": "npm:proper-lockfile", - "target": "npm:retry@0.12.0", - "type": "static" - }, - { - "source": "npm:proper-lockfile", - "target": "npm:signal-exit@3.0.7", - "type": "static" - }, - { - "source": "npm:proxy-addr", - "target": "npm:forwarded", - "type": "static" - }, - { - "source": "npm:proxy-addr", - "target": "npm:ipaddr.js@1.9.1", - "type": "static" - }, - { - "source": "npm:proxy-agent", - "target": "npm:agent-base", - "type": "static" - }, - { - "source": "npm:proxy-agent", - "target": "npm:debug", - "type": "static" - }, - { - "source": "npm:proxy-agent", - "target": "npm:http-proxy-agent", - "type": "static" - }, - { - "source": "npm:proxy-agent", - "target": "npm:https-proxy-agent@7.0.6", - "type": "static" - }, - { - "source": "npm:proxy-agent", - "target": "npm:lru-cache@7.18.3", - "type": "static" - }, - { - "source": "npm:proxy-agent", - "target": "npm:pac-proxy-agent", - "type": "static" - }, - { - "source": "npm:proxy-agent", - "target": "npm:proxy-from-env", - "type": "static" - }, - { - "source": "npm:proxy-agent", - "target": "npm:socks-proxy-agent", - "type": "static" - }, - { - "source": "npm:pump", - "target": "npm:end-of-stream", - "type": "static" - }, - { - "source": "npm:pump", - "target": "npm:once", - "type": "static" - }, - { - "source": "npm:puppeteer-core", - "target": "npm:@puppeteer/browsers", - "type": "static" - }, - { - "source": "npm:puppeteer-core", - "target": "npm:chromium-bidi", - "type": "static" - }, - { - "source": "npm:puppeteer-core", - "target": "npm:debug", - "type": "static" - }, - { - "source": "npm:puppeteer-core", - "target": "npm:devtools-protocol", - "type": "static" - }, - { - "source": "npm:puppeteer-core", - "target": "npm:typed-query-selector", - "type": "static" - }, - { - "source": "npm:puppeteer-core", - "target": "npm:webdriver-bidi-protocol", - "type": "static" - }, - { - "source": "npm:puppeteer-core", - "target": "npm:ws@8.19.0", - "type": "static" - }, - { - "source": "npm:puppeteer", - "target": "npm:@puppeteer/browsers", - "type": "static" - }, - { - "source": "npm:puppeteer", - "target": "npm:chromium-bidi", - "type": "static" - }, - { - "source": "npm:puppeteer", - "target": "npm:cosmiconfig", - "type": "static" - }, - { - "source": "npm:puppeteer", - "target": "npm:devtools-protocol", - "type": "static" - }, - { - "source": "npm:puppeteer", - "target": "npm:puppeteer-core", - "type": "static" - }, - { - "source": "npm:puppeteer", - "target": "npm:typed-query-selector", - "type": "static" - }, - { - "source": "npm:qs", - "target": "npm:side-channel", - "type": "static" - }, - { - "source": "npm:raw-body", - "target": "npm:bytes", - "type": "static" - }, - { - "source": "npm:raw-body", - "target": "npm:http-errors", - "type": "static" - }, - { - "source": "npm:raw-body", - "target": "npm:iconv-lite@0.7.2", - "type": "static" - }, - { - "source": "npm:raw-body", - "target": "npm:unpipe", - "type": "static" - }, - { - "source": "npm:rc9", - "target": "npm:defu", - "type": "static" - }, - { - "source": "npm:rc9", - "target": "npm:destr", - "type": "static" - }, - { - "source": "npm:rc", - "target": "npm:deep-extend", - "type": "static" - }, - { - "source": "npm:rc", - "target": "npm:ini", - "type": "static" - }, - { - "source": "npm:rc", - "target": "npm:minimist", - "type": "static" - }, - { - "source": "npm:rc", - "target": "npm:strip-json-comments@2.0.1", - "type": "static" - }, - { - "source": "npm:re2", - "target": "npm:install-artifact-from-github", - "type": "static" - }, - { - "source": "npm:re2", - "target": "npm:nan", - "type": "static" - }, - { - "source": "npm:re2", - "target": "npm:node-gyp", - "type": "static" - }, - { - "source": "npm:react-dom", - "target": "npm:react", - "type": "static" - }, - { - "source": "npm:react-dom", - "target": "npm:scheduler", - "type": "static" - }, - { - "source": "npm:react-number-format", - "target": "npm:react", - "type": "static" - }, - { - "source": "npm:react-number-format", - "target": "npm:react-dom", - "type": "static" - }, - { - "source": "npm:react-remove-scroll-bar", - "target": "npm:react", - "type": "static" - }, - { - "source": "npm:react-remove-scroll-bar", - "target": "npm:react-style-singleton", - "type": "static" - }, - { - "source": "npm:react-remove-scroll-bar", - "target": "npm:tslib", - "type": "static" - }, - { - "source": "npm:react-remove-scroll-bar", - "target": "npm:@types/react", - "type": "static" - }, - { - "source": "npm:react-remove-scroll", - "target": "npm:react", - "type": "static" - }, - { - "source": "npm:react-remove-scroll", - "target": "npm:react-remove-scroll-bar", - "type": "static" - }, - { - "source": "npm:react-remove-scroll", - "target": "npm:react-style-singleton", - "type": "static" - }, - { - "source": "npm:react-remove-scroll", - "target": "npm:tslib", - "type": "static" - }, - { - "source": "npm:react-remove-scroll", - "target": "npm:use-callback-ref", - "type": "static" - }, - { - "source": "npm:react-remove-scroll", - "target": "npm:use-sidecar", - "type": "static" - }, - { - "source": "npm:react-remove-scroll", - "target": "npm:@types/react", - "type": "static" - }, - { - "source": "npm:react-streaming", - "target": "npm:@brillout/import", - "type": "static" - }, - { - "source": "npm:react-streaming", - "target": "npm:@brillout/json-serializer", - "type": "static" - }, - { - "source": "npm:react-streaming", - "target": "npm:@brillout/picocolors", - "type": "static" - }, - { - "source": "npm:react-streaming", - "target": "npm:isbot-fast", - "type": "static" - }, - { - "source": "npm:react-streaming", - "target": "npm:react", - "type": "static" - }, - { - "source": "npm:react-streaming", - "target": "npm:react-dom", - "type": "static" - }, - { - "source": "npm:react-style-singleton", - "target": "npm:get-nonce", - "type": "static" - }, - { - "source": "npm:react-style-singleton", - "target": "npm:react", - "type": "static" - }, - { - "source": "npm:react-style-singleton", - "target": "npm:tslib", - "type": "static" - }, - { - "source": "npm:react-style-singleton", - "target": "npm:@types/react", - "type": "static" - }, - { - "source": "npm:react-textarea-autosize", - "target": "npm:@babel/runtime", - "type": "static" - }, - { - "source": "npm:react-textarea-autosize", - "target": "npm:react", - "type": "static" - }, - { - "source": "npm:react-textarea-autosize", - "target": "npm:use-composed-ref", - "type": "static" - }, - { - "source": "npm:react-textarea-autosize", - "target": "npm:use-latest", - "type": "static" - }, - { - "source": "npm:read-package-json-fast", - "target": "npm:json-parse-even-better-errors", - "type": "static" - }, - { - "source": "npm:read-package-json-fast", - "target": "npm:npm-normalize-package-bin", - "type": "static" - }, - { - "source": "npm:readable-stream", - "target": "npm:inherits", - "type": "static" - }, - { - "source": "npm:readable-stream", - "target": "npm:string_decoder", - "type": "static" - }, - { - "source": "npm:readable-stream", - "target": "npm:util-deprecate", - "type": "static" - }, - { - "source": "npm:reflect.getprototypeof", - "target": "npm:call-bind", - "type": "static" - }, - { - "source": "npm:reflect.getprototypeof", - "target": "npm:define-properties", - "type": "static" - }, - { - "source": "npm:reflect.getprototypeof", - "target": "npm:es-abstract", - "type": "static" - }, - { - "source": "npm:reflect.getprototypeof", - "target": "npm:es-errors", - "type": "static" - }, - { - "source": "npm:reflect.getprototypeof", - "target": "npm:es-object-atoms", - "type": "static" - }, - { - "source": "npm:reflect.getprototypeof", - "target": "npm:get-intrinsic", - "type": "static" - }, - { - "source": "npm:reflect.getprototypeof", - "target": "npm:get-proto", - "type": "static" - }, - { - "source": "npm:reflect.getprototypeof", - "target": "npm:which-builtin-type", - "type": "static" - }, - { - "source": "npm:regexp.prototype.flags", - "target": "npm:call-bind", - "type": "static" - }, - { - "source": "npm:regexp.prototype.flags", - "target": "npm:define-properties", - "type": "static" - }, - { - "source": "npm:regexp.prototype.flags", - "target": "npm:es-errors", - "type": "static" - }, - { - "source": "npm:regexp.prototype.flags", - "target": "npm:get-proto", - "type": "static" - }, - { - "source": "npm:regexp.prototype.flags", - "target": "npm:gopd", - "type": "static" - }, - { - "source": "npm:regexp.prototype.flags", - "target": "npm:set-function-name", - "type": "static" - }, - { - "source": "npm:require-one-of", - "target": "npm:debug", - "type": "static" - }, - { - "source": "npm:require-one-of", - "target": "npm:humanize-list", - "type": "static" - }, - { - "source": "npm:require-one-of", - "target": "npm:null-prototype-object", - "type": "static" - }, - { - "source": "npm:require-one-of", - "target": "npm:resolve-from", - "type": "static" - }, - { - "source": "npm:resolve@1.22.10", - "target": "npm:is-core-module", - "type": "static" - }, - { - "source": "npm:resolve@1.22.10", - "target": "npm:path-parse", - "type": "static" - }, - { - "source": "npm:resolve@1.22.10", - "target": "npm:supports-preserve-symlinks-flag", - "type": "static" - }, - { - "source": "npm:resolve", - "target": "npm:is-core-module", - "type": "static" - }, - { - "source": "npm:resolve", - "target": "npm:path-parse", - "type": "static" - }, - { - "source": "npm:resolve", - "target": "npm:supports-preserve-symlinks-flag", - "type": "static" - }, - { - "source": "npm:responselike", - "target": "npm:lowercase-keys", - "type": "static" - }, - { - "source": "npm:restore-cursor", - "target": "npm:onetime", - "type": "static" - }, - { - "source": "npm:restore-cursor", - "target": "npm:signal-exit@3.0.7", - "type": "static" - }, - { - "source": "npm:rimraf", - "target": "npm:glob", - "type": "static" - }, - { - "source": "npm:rimraf", - "target": "npm:package-json-from-dist", - "type": "static" - }, - { - "source": "npm:rolldown-plugin-dts", - "target": "npm:@babel/generator@8.0.0-rc.2", - "type": "static" - }, - { - "source": "npm:rolldown-plugin-dts", - "target": "npm:@babel/helper-validator-identifier@8.0.0-rc.2", - "type": "static" - }, - { - "source": "npm:rolldown-plugin-dts", - "target": "npm:@babel/parser@8.0.0-rc.2", - "type": "static" - }, - { - "source": "npm:rolldown-plugin-dts", - "target": "npm:@babel/types@8.0.0-rc.2", - "type": "static" - }, - { - "source": "npm:rolldown-plugin-dts", - "target": "npm:ast-kit", - "type": "static" - }, - { - "source": "npm:rolldown-plugin-dts", - "target": "npm:birpc", - "type": "static" - }, - { - "source": "npm:rolldown-plugin-dts", - "target": "npm:dts-resolver", - "type": "static" - }, - { - "source": "npm:rolldown-plugin-dts", - "target": "npm:get-tsconfig", - "type": "static" - }, - { - "source": "npm:rolldown-plugin-dts", - "target": "npm:obug", - "type": "static" - }, - { - "source": "npm:rolldown-plugin-dts", - "target": "npm:rolldown", - "type": "static" - }, - { - "source": "npm:rolldown-plugin-dts", - "target": "npm:typescript", - "type": "static" - }, - { - "source": "npm:rolldown@1.0.0-beta.51", - "target": "npm:@oxc-project/types@0.98.0", - "type": "static" - }, - { - "source": "npm:rolldown@1.0.0-beta.51", - "target": "npm:@rolldown/pluginutils@1.0.0-beta.51", - "type": "static" - }, - { - "source": "npm:rolldown@1.0.0-beta.51", - "target": "npm:@rolldown/binding-android-arm64@1.0.0-beta.51", - "type": "static" - }, - { - "source": "npm:rolldown@1.0.0-beta.51", - "target": "npm:@rolldown/binding-darwin-arm64@1.0.0-beta.51", - "type": "static" - }, - { - "source": "npm:rolldown@1.0.0-beta.51", - "target": "npm:@rolldown/binding-darwin-x64@1.0.0-beta.51", - "type": "static" - }, - { - "source": "npm:rolldown@1.0.0-beta.51", - "target": "npm:@rolldown/binding-freebsd-x64@1.0.0-beta.51", - "type": "static" - }, - { - "source": "npm:rolldown@1.0.0-beta.51", - "target": "npm:@rolldown/binding-linux-arm-gnueabihf@1.0.0-beta.51", - "type": "static" - }, - { - "source": "npm:rolldown@1.0.0-beta.51", - "target": "npm:@rolldown/binding-linux-arm64-gnu@1.0.0-beta.51", - "type": "static" - }, - { - "source": "npm:rolldown@1.0.0-beta.51", - "target": "npm:@rolldown/binding-linux-arm64-musl@1.0.0-beta.51", - "type": "static" - }, - { - "source": "npm:rolldown@1.0.0-beta.51", - "target": "npm:@rolldown/binding-linux-x64-gnu@1.0.0-beta.51", - "type": "static" - }, - { - "source": "npm:rolldown@1.0.0-beta.51", - "target": "npm:@rolldown/binding-linux-x64-musl@1.0.0-beta.51", - "type": "static" - }, - { - "source": "npm:rolldown@1.0.0-beta.51", - "target": "npm:@rolldown/binding-openharmony-arm64@1.0.0-beta.51", - "type": "static" - }, - { - "source": "npm:rolldown@1.0.0-beta.51", - "target": "npm:@rolldown/binding-wasm32-wasi@1.0.0-beta.51", - "type": "static" - }, - { - "source": "npm:rolldown@1.0.0-beta.51", - "target": "npm:@rolldown/binding-win32-arm64-msvc@1.0.0-beta.51", - "type": "static" - }, - { - "source": "npm:rolldown@1.0.0-beta.51", - "target": "npm:@rolldown/binding-win32-ia32-msvc", - "type": "static" - }, - { - "source": "npm:rolldown@1.0.0-beta.51", - "target": "npm:@rolldown/binding-win32-x64-msvc@1.0.0-beta.51", - "type": "static" - }, - { - "source": "npm:rolldown@1.0.0-rc.11", - "target": "npm:@oxc-project/types@0.122.0", - "type": "static" - }, - { - "source": "npm:rolldown@1.0.0-rc.11", - "target": "npm:@rolldown/pluginutils@1.0.0-rc.11", - "type": "static" - }, - { - "source": "npm:rolldown@1.0.0-rc.11", - "target": "npm:@rolldown/binding-android-arm64@1.0.0-rc.11", - "type": "static" - }, - { - "source": "npm:rolldown@1.0.0-rc.11", - "target": "npm:@rolldown/binding-darwin-arm64@1.0.0-rc.11", - "type": "static" - }, - { - "source": "npm:rolldown@1.0.0-rc.11", - "target": "npm:@rolldown/binding-darwin-x64@1.0.0-rc.11", - "type": "static" - }, - { - "source": "npm:rolldown@1.0.0-rc.11", - "target": "npm:@rolldown/binding-freebsd-x64@1.0.0-rc.11", - "type": "static" - }, - { - "source": "npm:rolldown@1.0.0-rc.11", - "target": "npm:@rolldown/binding-linux-arm-gnueabihf@1.0.0-rc.11", - "type": "static" - }, - { - "source": "npm:rolldown@1.0.0-rc.11", - "target": "npm:@rolldown/binding-linux-arm64-gnu@1.0.0-rc.11", - "type": "static" - }, - { - "source": "npm:rolldown@1.0.0-rc.11", - "target": "npm:@rolldown/binding-linux-arm64-musl@1.0.0-rc.11", - "type": "static" - }, - { - "source": "npm:rolldown@1.0.0-rc.11", - "target": "npm:@rolldown/binding-linux-ppc64-gnu@1.0.0-rc.11", - "type": "static" - }, - { - "source": "npm:rolldown@1.0.0-rc.11", - "target": "npm:@rolldown/binding-linux-s390x-gnu@1.0.0-rc.11", - "type": "static" - }, - { - "source": "npm:rolldown@1.0.0-rc.11", - "target": "npm:@rolldown/binding-linux-x64-gnu", - "type": "static" - }, - { - "source": "npm:rolldown@1.0.0-rc.11", - "target": "npm:@rolldown/binding-linux-x64-musl", - "type": "static" - }, - { - "source": "npm:rolldown@1.0.0-rc.11", - "target": "npm:@rolldown/binding-openharmony-arm64@1.0.0-rc.11", - "type": "static" - }, - { - "source": "npm:rolldown@1.0.0-rc.11", - "target": "npm:@rolldown/binding-wasm32-wasi@1.0.0-rc.11", - "type": "static" - }, - { - "source": "npm:rolldown@1.0.0-rc.11", - "target": "npm:@rolldown/binding-win32-arm64-msvc@1.0.0-rc.11", - "type": "static" - }, - { - "source": "npm:rolldown@1.0.0-rc.11", - "target": "npm:@rolldown/binding-win32-x64-msvc@1.0.0-rc.11", - "type": "static" - }, - { - "source": "npm:rolldown", - "target": "npm:@oxc-project/types@0.115.0", - "type": "static" - }, - { - "source": "npm:rolldown", - "target": "npm:@rolldown/pluginutils@1.0.0-rc.9", - "type": "static" - }, - { - "source": "npm:rolldown", - "target": "npm:@rolldown/binding-android-arm64@1.0.0-rc.9", - "type": "static" - }, - { - "source": "npm:rolldown", - "target": "npm:@rolldown/binding-darwin-arm64@1.0.0-rc.9", - "type": "static" - }, - { - "source": "npm:rolldown", - "target": "npm:@rolldown/binding-darwin-x64@1.0.0-rc.9", - "type": "static" - }, - { - "source": "npm:rolldown", - "target": "npm:@rolldown/binding-freebsd-x64@1.0.0-rc.9", - "type": "static" - }, - { - "source": "npm:rolldown", - "target": "npm:@rolldown/binding-linux-arm-gnueabihf@1.0.0-rc.9", - "type": "static" - }, - { - "source": "npm:rolldown", - "target": "npm:@rolldown/binding-linux-arm64-gnu@1.0.0-rc.9", - "type": "static" - }, - { - "source": "npm:rolldown", - "target": "npm:@rolldown/binding-linux-arm64-musl@1.0.0-rc.9", - "type": "static" - }, - { - "source": "npm:rolldown", - "target": "npm:@rolldown/binding-linux-ppc64-gnu@1.0.0-rc.9", - "type": "static" - }, - { - "source": "npm:rolldown", - "target": "npm:@rolldown/binding-linux-s390x-gnu@1.0.0-rc.9", - "type": "static" - }, - { - "source": "npm:rolldown", - "target": "npm:@rolldown/binding-linux-x64-gnu@1.0.0-rc.9", - "type": "static" - }, - { - "source": "npm:rolldown", - "target": "npm:@rolldown/binding-linux-x64-musl@1.0.0-rc.9", - "type": "static" - }, - { - "source": "npm:rolldown", - "target": "npm:@rolldown/binding-openharmony-arm64@1.0.0-rc.9", - "type": "static" - }, - { - "source": "npm:rolldown", - "target": "npm:@rolldown/binding-wasm32-wasi@1.0.0-rc.9", - "type": "static" - }, - { - "source": "npm:rolldown", - "target": "npm:@rolldown/binding-win32-arm64-msvc@1.0.0-rc.9", - "type": "static" - }, - { - "source": "npm:rolldown", - "target": "npm:@rolldown/binding-win32-x64-msvc@1.0.0-rc.9", - "type": "static" - }, - { - "source": "npm:router", - "target": "npm:debug", - "type": "static" - }, - { - "source": "npm:router", - "target": "npm:depd", - "type": "static" - }, - { - "source": "npm:router", - "target": "npm:is-promise", - "type": "static" - }, - { - "source": "npm:router", - "target": "npm:parseurl", - "type": "static" - }, - { - "source": "npm:router", - "target": "npm:path-to-regexp", - "type": "static" - }, - { - "source": "npm:run-parallel", - "target": "npm:queue-microtask", - "type": "static" - }, - { - "source": "npm:safe-array-concat", - "target": "npm:call-bind", - "type": "static" - }, - { - "source": "npm:safe-array-concat", - "target": "npm:call-bound", - "type": "static" - }, - { - "source": "npm:safe-array-concat", - "target": "npm:get-intrinsic", - "type": "static" - }, - { - "source": "npm:safe-array-concat", - "target": "npm:has-symbols", - "type": "static" - }, - { - "source": "npm:safe-array-concat", - "target": "npm:isarray", - "type": "static" - }, - { - "source": "npm:safe-push-apply", - "target": "npm:es-errors", - "type": "static" - }, - { - "source": "npm:safe-push-apply", - "target": "npm:isarray", - "type": "static" - }, - { - "source": "npm:safe-regex-test", - "target": "npm:call-bound", - "type": "static" - }, - { - "source": "npm:safe-regex-test", - "target": "npm:es-errors", - "type": "static" - }, - { - "source": "npm:safe-regex-test", - "target": "npm:is-regex", - "type": "static" - }, - { - "source": "npm:safe-regex2", - "target": "npm:ret", - "type": "static" - }, - { - "source": "npm:send", - "target": "npm:debug", - "type": "static" - }, - { - "source": "npm:send", - "target": "npm:encodeurl", - "type": "static" - }, - { - "source": "npm:send", - "target": "npm:escape-html", - "type": "static" - }, - { - "source": "npm:send", - "target": "npm:etag", - "type": "static" - }, - { - "source": "npm:send", - "target": "npm:fresh", - "type": "static" - }, - { - "source": "npm:send", - "target": "npm:http-errors", - "type": "static" - }, - { - "source": "npm:send", - "target": "npm:mime-types", - "type": "static" - }, - { - "source": "npm:send", - "target": "npm:ms", - "type": "static" - }, - { - "source": "npm:send", - "target": "npm:on-finished", - "type": "static" - }, - { - "source": "npm:send", - "target": "npm:range-parser", - "type": "static" - }, - { - "source": "npm:send", - "target": "npm:statuses", - "type": "static" - }, - { - "source": "npm:serialize-error", - "target": "npm:type-fest@0.20.2", - "type": "static" - }, - { - "source": "npm:seroval-plugins", - "target": "npm:seroval", - "type": "static" - }, - { - "source": "npm:serve-static", - "target": "npm:encodeurl", - "type": "static" - }, - { - "source": "npm:serve-static", - "target": "npm:escape-html", - "type": "static" - }, - { - "source": "npm:serve-static", - "target": "npm:parseurl", - "type": "static" - }, - { - "source": "npm:serve-static", - "target": "npm:send", - "type": "static" - }, - { - "source": "npm:set-function-length", - "target": "npm:define-data-property", - "type": "static" - }, - { - "source": "npm:set-function-length", - "target": "npm:es-errors", - "type": "static" - }, - { - "source": "npm:set-function-length", - "target": "npm:function-bind", - "type": "static" - }, - { - "source": "npm:set-function-length", - "target": "npm:get-intrinsic", - "type": "static" - }, - { - "source": "npm:set-function-length", - "target": "npm:gopd", - "type": "static" - }, - { - "source": "npm:set-function-length", - "target": "npm:has-property-descriptors", - "type": "static" - }, - { - "source": "npm:set-function-name", - "target": "npm:define-data-property", - "type": "static" - }, - { - "source": "npm:set-function-name", - "target": "npm:es-errors", - "type": "static" - }, - { - "source": "npm:set-function-name", - "target": "npm:functions-have-names", - "type": "static" - }, - { - "source": "npm:set-function-name", - "target": "npm:has-property-descriptors", - "type": "static" - }, - { - "source": "npm:set-proto", - "target": "npm:dunder-proto", - "type": "static" - }, - { - "source": "npm:set-proto", - "target": "npm:es-errors", - "type": "static" - }, - { - "source": "npm:set-proto", - "target": "npm:es-object-atoms", - "type": "static" - }, - { - "source": "npm:sharp@0.33.5", - "target": "npm:color", - "type": "static" - }, - { - "source": "npm:sharp@0.33.5", - "target": "npm:detect-libc", - "type": "static" - }, - { - "source": "npm:sharp@0.33.5", - "target": "npm:semver@7.7.4", - "type": "static" - }, - { - "source": "npm:sharp@0.33.5", - "target": "npm:@img/sharp-darwin-arm64@0.33.5", - "type": "static" - }, - { - "source": "npm:sharp@0.33.5", - "target": "npm:@img/sharp-darwin-x64@0.33.5", - "type": "static" - }, - { - "source": "npm:sharp@0.33.5", - "target": "npm:@img/sharp-libvips-darwin-arm64@1.0.4", - "type": "static" - }, - { - "source": "npm:sharp@0.33.5", - "target": "npm:@img/sharp-libvips-darwin-x64@1.0.4", - "type": "static" - }, - { - "source": "npm:sharp@0.33.5", - "target": "npm:@img/sharp-libvips-linux-arm@1.0.5", - "type": "static" - }, - { - "source": "npm:sharp@0.33.5", - "target": "npm:@img/sharp-libvips-linux-arm64@1.0.4", - "type": "static" - }, - { - "source": "npm:sharp@0.33.5", - "target": "npm:@img/sharp-libvips-linux-s390x@1.0.4", - "type": "static" - }, - { - "source": "npm:sharp@0.33.5", - "target": "npm:@img/sharp-libvips-linux-x64@1.0.4", - "type": "static" - }, - { - "source": "npm:sharp@0.33.5", - "target": "npm:@img/sharp-libvips-linuxmusl-arm64@1.0.4", - "type": "static" - }, - { - "source": "npm:sharp@0.33.5", - "target": "npm:@img/sharp-libvips-linuxmusl-x64@1.0.4", - "type": "static" - }, - { - "source": "npm:sharp@0.33.5", - "target": "npm:@img/sharp-linux-arm@0.33.5", - "type": "static" - }, - { - "source": "npm:sharp@0.33.5", - "target": "npm:@img/sharp-linux-arm64@0.33.5", - "type": "static" - }, - { - "source": "npm:sharp@0.33.5", - "target": "npm:@img/sharp-linux-s390x@0.33.5", - "type": "static" - }, - { - "source": "npm:sharp@0.33.5", - "target": "npm:@img/sharp-linux-x64@0.33.5", - "type": "static" - }, - { - "source": "npm:sharp@0.33.5", - "target": "npm:@img/sharp-linuxmusl-arm64@0.33.5", - "type": "static" - }, - { - "source": "npm:sharp@0.33.5", - "target": "npm:@img/sharp-linuxmusl-x64@0.33.5", - "type": "static" - }, - { - "source": "npm:sharp@0.33.5", - "target": "npm:@img/sharp-wasm32@0.33.5", - "type": "static" - }, - { - "source": "npm:sharp@0.33.5", - "target": "npm:@img/sharp-win32-ia32@0.33.5", - "type": "static" - }, - { - "source": "npm:sharp@0.33.5", - "target": "npm:@img/sharp-win32-x64@0.33.5", - "type": "static" - }, - { - "source": "npm:sharp", - "target": "npm:@img/colour", - "type": "static" - }, - { - "source": "npm:sharp", - "target": "npm:detect-libc", - "type": "static" - }, - { - "source": "npm:sharp", - "target": "npm:semver@7.7.4", - "type": "static" - }, - { - "source": "npm:sharp", - "target": "npm:@img/sharp-darwin-arm64@0.34.5", - "type": "static" - }, - { - "source": "npm:sharp", - "target": "npm:@img/sharp-darwin-x64@0.34.5", - "type": "static" - }, - { - "source": "npm:sharp", - "target": "npm:@img/sharp-libvips-darwin-arm64@1.2.4", - "type": "static" - }, - { - "source": "npm:sharp", - "target": "npm:@img/sharp-libvips-darwin-x64@1.2.4", - "type": "static" - }, - { - "source": "npm:sharp", - "target": "npm:@img/sharp-libvips-linux-arm@1.2.4", - "type": "static" - }, - { - "source": "npm:sharp", - "target": "npm:@img/sharp-libvips-linux-arm64@1.2.4", - "type": "static" - }, - { - "source": "npm:sharp", - "target": "npm:@img/sharp-libvips-linux-ppc64", - "type": "static" - }, - { - "source": "npm:sharp", - "target": "npm:@img/sharp-libvips-linux-riscv64", - "type": "static" - }, - { - "source": "npm:sharp", - "target": "npm:@img/sharp-libvips-linux-s390x@1.2.4", - "type": "static" - }, - { - "source": "npm:sharp", - "target": "npm:@img/sharp-libvips-linux-x64", - "type": "static" - }, - { - "source": "npm:sharp", - "target": "npm:@img/sharp-libvips-linuxmusl-arm64@1.2.4", - "type": "static" - }, - { - "source": "npm:sharp", - "target": "npm:@img/sharp-libvips-linuxmusl-x64", - "type": "static" - }, - { - "source": "npm:sharp", - "target": "npm:@img/sharp-linux-arm@0.34.5", - "type": "static" - }, - { - "source": "npm:sharp", - "target": "npm:@img/sharp-linux-arm64@0.34.5", - "type": "static" - }, - { - "source": "npm:sharp", - "target": "npm:@img/sharp-linux-ppc64", - "type": "static" - }, - { - "source": "npm:sharp", - "target": "npm:@img/sharp-linux-riscv64", - "type": "static" - }, - { - "source": "npm:sharp", - "target": "npm:@img/sharp-linux-s390x@0.34.5", - "type": "static" - }, - { - "source": "npm:sharp", - "target": "npm:@img/sharp-linux-x64", - "type": "static" - }, - { - "source": "npm:sharp", - "target": "npm:@img/sharp-linuxmusl-arm64@0.34.5", - "type": "static" - }, - { - "source": "npm:sharp", - "target": "npm:@img/sharp-linuxmusl-x64", - "type": "static" - }, - { - "source": "npm:sharp", - "target": "npm:@img/sharp-wasm32@0.34.5", - "type": "static" - }, - { - "source": "npm:sharp", - "target": "npm:@img/sharp-win32-arm64", - "type": "static" - }, - { - "source": "npm:sharp", - "target": "npm:@img/sharp-win32-ia32@0.34.5", - "type": "static" - }, - { - "source": "npm:sharp", - "target": "npm:@img/sharp-win32-x64@0.34.5", - "type": "static" - }, - { - "source": "npm:shebang-command", - "target": "npm:shebang-regex", - "type": "static" - }, - { - "source": "npm:side-channel-list", - "target": "npm:es-errors", - "type": "static" - }, - { - "source": "npm:side-channel-list", - "target": "npm:object-inspect", - "type": "static" - }, - { - "source": "npm:side-channel-map", - "target": "npm:call-bound", - "type": "static" - }, - { - "source": "npm:side-channel-map", - "target": "npm:es-errors", - "type": "static" - }, - { - "source": "npm:side-channel-map", - "target": "npm:get-intrinsic", - "type": "static" - }, - { - "source": "npm:side-channel-map", - "target": "npm:object-inspect", - "type": "static" - }, - { - "source": "npm:side-channel-weakmap", - "target": "npm:call-bound", - "type": "static" - }, - { - "source": "npm:side-channel-weakmap", - "target": "npm:es-errors", - "type": "static" - }, - { - "source": "npm:side-channel-weakmap", - "target": "npm:get-intrinsic", - "type": "static" - }, - { - "source": "npm:side-channel-weakmap", - "target": "npm:object-inspect", - "type": "static" - }, - { - "source": "npm:side-channel-weakmap", - "target": "npm:side-channel-map", - "type": "static" - }, - { - "source": "npm:side-channel", - "target": "npm:es-errors", - "type": "static" - }, - { - "source": "npm:side-channel", - "target": "npm:object-inspect", - "type": "static" - }, - { - "source": "npm:side-channel", - "target": "npm:side-channel-list", - "type": "static" - }, - { - "source": "npm:side-channel", - "target": "npm:side-channel-map", - "type": "static" - }, - { - "source": "npm:side-channel", - "target": "npm:side-channel-weakmap", - "type": "static" - }, - { - "source": "npm:simple-get", - "target": "npm:decompress-response", - "type": "static" - }, - { - "source": "npm:simple-get", - "target": "npm:once", - "type": "static" - }, - { - "source": "npm:simple-get", - "target": "npm:simple-concat", - "type": "static" - }, - { - "source": "npm:simple-swizzle", - "target": "npm:is-arrayish@0.3.4", - "type": "static" - }, - { - "source": "npm:sirv", - "target": "npm:@polka/url", - "type": "static" - }, - { - "source": "npm:sirv", - "target": "npm:mrmime", - "type": "static" - }, - { - "source": "npm:sirv", - "target": "npm:totalist", - "type": "static" - }, - { - "source": "npm:socks-proxy-agent", - "target": "npm:agent-base", - "type": "static" - }, - { - "source": "npm:socks-proxy-agent", - "target": "npm:debug", - "type": "static" - }, - { - "source": "npm:socks-proxy-agent", - "target": "npm:socks", - "type": "static" - }, - { - "source": "npm:socks", - "target": "npm:ip-address", - "type": "static" - }, - { - "source": "npm:socks", - "target": "npm:smart-buffer", - "type": "static" - }, - { - "source": "npm:solid-element", - "target": "npm:component-register", - "type": "static" - }, - { - "source": "npm:solid-element", - "target": "npm:solid-js", - "type": "static" - }, - { - "source": "npm:solid-js", - "target": "npm:csstype", - "type": "static" - }, - { - "source": "npm:solid-js", - "target": "npm:seroval", - "type": "static" - }, - { - "source": "npm:solid-js", - "target": "npm:seroval-plugins", - "type": "static" - }, - { - "source": "npm:solid-motionone", - "target": "npm:@motionone/dom", - "type": "static" - }, - { - "source": "npm:solid-motionone", - "target": "npm:@motionone/utils", - "type": "static" - }, - { - "source": "npm:solid-motionone", - "target": "npm:@solid-primitives/props", - "type": "static" - }, - { - "source": "npm:solid-motionone", - "target": "npm:@solid-primitives/refs", - "type": "static" - }, - { - "source": "npm:solid-motionone", - "target": "npm:@solid-primitives/transition-group", - "type": "static" - }, - { - "source": "npm:solid-motionone", - "target": "npm:csstype", - "type": "static" - }, - { - "source": "npm:solid-motionone", - "target": "npm:solid-js", - "type": "static" - }, - { - "source": "npm:solid-refresh", - "target": "npm:@babel/generator", - "type": "static" - }, - { - "source": "npm:solid-refresh", - "target": "npm:@babel/helper-module-imports", - "type": "static" - }, - { - "source": "npm:solid-refresh", - "target": "npm:@babel/types", - "type": "static" - }, - { - "source": "npm:solid-refresh", - "target": "npm:solid-js", - "type": "static" - }, - { - "source": "npm:sonic-boom", - "target": "npm:atomic-sleep", - "type": "static" - }, - { - "source": "npm:source-map-support", - "target": "npm:buffer-from", - "type": "static" - }, - { - "source": "npm:source-map-support", - "target": "npm:source-map", - "type": "static" - }, - { - "source": "npm:ssri", - "target": "npm:minipass", - "type": "static" - }, - { - "source": "npm:standaloner", - "target": "npm:@vercel/nft@0.30.4", - "type": "static" - }, - { - "source": "npm:standaloner", - "target": "npm:acorn", - "type": "static" - }, - { - "source": "npm:standaloner", - "target": "npm:estree-walker", - "type": "static" - }, - { - "source": "npm:standaloner", - "target": "npm:magic-string", - "type": "static" - }, - { - "source": "npm:standaloner", - "target": "npm:rolldown@1.0.0-beta.51", - "type": "static" - }, - { - "source": "npm:standaloner@0.2.2", - "target": "npm:@vercel/nft", - "type": "static" - }, - { - "source": "npm:standaloner@0.2.2", - "target": "npm:acorn", - "type": "static" - }, - { - "source": "npm:standaloner@0.2.2", - "target": "npm:estree-walker", - "type": "static" - }, - { - "source": "npm:standaloner@0.2.2", - "target": "npm:magic-string", - "type": "static" - }, - { - "source": "npm:standaloner@0.2.2", - "target": "npm:p-limit", - "type": "static" - }, - { - "source": "npm:standaloner@0.2.2", - "target": "npm:rolldown@1.0.0-beta.51", - "type": "static" - }, - { - "source": "npm:stop-iteration-iterator", - "target": "npm:es-errors", - "type": "static" - }, - { - "source": "npm:stop-iteration-iterator", - "target": "npm:internal-slot", - "type": "static" - }, - { - "source": "npm:streamx", - "target": "npm:events-universal", - "type": "static" - }, - { - "source": "npm:streamx", - "target": "npm:fast-fifo", - "type": "static" - }, - { - "source": "npm:streamx", - "target": "npm:text-decoder", - "type": "static" - }, - { - "source": "npm:string-width", - "target": "npm:emoji-regex", - "type": "static" - }, - { - "source": "npm:string-width", - "target": "npm:is-fullwidth-code-point", - "type": "static" - }, - { - "source": "npm:string-width", - "target": "npm:strip-ansi@6.0.1", - "type": "static" - }, - { - "source": "npm:string-width-cjs", - "target": "npm:emoji-regex", - "type": "static" - }, - { - "source": "npm:string-width-cjs", - "target": "npm:is-fullwidth-code-point", - "type": "static" - }, - { - "source": "npm:string-width-cjs", - "target": "npm:strip-ansi@6.0.1", - "type": "static" - }, - { - "source": "npm:string-width@5.1.2", - "target": "npm:eastasianwidth", - "type": "static" - }, - { - "source": "npm:string-width@5.1.2", - "target": "npm:emoji-regex@9.2.2", - "type": "static" - }, - { - "source": "npm:string-width@5.1.2", - "target": "npm:strip-ansi", - "type": "static" - }, - { - "source": "npm:string.prototype.matchall", - "target": "npm:call-bind", - "type": "static" - }, - { - "source": "npm:string.prototype.matchall", - "target": "npm:call-bound", - "type": "static" - }, - { - "source": "npm:string.prototype.matchall", - "target": "npm:define-properties", - "type": "static" - }, - { - "source": "npm:string.prototype.matchall", - "target": "npm:es-abstract", - "type": "static" - }, - { - "source": "npm:string.prototype.matchall", - "target": "npm:es-errors", - "type": "static" - }, - { - "source": "npm:string.prototype.matchall", - "target": "npm:es-object-atoms", - "type": "static" - }, - { - "source": "npm:string.prototype.matchall", - "target": "npm:get-intrinsic", - "type": "static" - }, - { - "source": "npm:string.prototype.matchall", - "target": "npm:gopd", - "type": "static" - }, - { - "source": "npm:string.prototype.matchall", - "target": "npm:has-symbols", - "type": "static" - }, - { - "source": "npm:string.prototype.matchall", - "target": "npm:internal-slot", - "type": "static" - }, - { - "source": "npm:string.prototype.matchall", - "target": "npm:regexp.prototype.flags", - "type": "static" - }, - { - "source": "npm:string.prototype.matchall", - "target": "npm:set-function-name", - "type": "static" - }, - { - "source": "npm:string.prototype.matchall", - "target": "npm:side-channel", - "type": "static" - }, - { - "source": "npm:string.prototype.repeat", - "target": "npm:define-properties", - "type": "static" - }, - { - "source": "npm:string.prototype.repeat", - "target": "npm:es-abstract", - "type": "static" - }, - { - "source": "npm:string.prototype.trim", - "target": "npm:call-bind", - "type": "static" - }, - { - "source": "npm:string.prototype.trim", - "target": "npm:call-bound", - "type": "static" - }, - { - "source": "npm:string.prototype.trim", - "target": "npm:define-data-property", - "type": "static" - }, - { - "source": "npm:string.prototype.trim", - "target": "npm:define-properties", - "type": "static" - }, - { - "source": "npm:string.prototype.trim", - "target": "npm:es-abstract", - "type": "static" - }, - { - "source": "npm:string.prototype.trim", - "target": "npm:es-object-atoms", - "type": "static" - }, - { - "source": "npm:string.prototype.trim", - "target": "npm:has-property-descriptors", - "type": "static" - }, - { - "source": "npm:string.prototype.trimend", - "target": "npm:call-bind", - "type": "static" - }, - { - "source": "npm:string.prototype.trimend", - "target": "npm:call-bound", - "type": "static" - }, - { - "source": "npm:string.prototype.trimend", - "target": "npm:define-properties", - "type": "static" - }, - { - "source": "npm:string.prototype.trimend", - "target": "npm:es-object-atoms", - "type": "static" - }, - { - "source": "npm:string.prototype.trimstart", - "target": "npm:call-bind", - "type": "static" - }, - { - "source": "npm:string.prototype.trimstart", - "target": "npm:define-properties", - "type": "static" - }, - { - "source": "npm:string.prototype.trimstart", - "target": "npm:es-object-atoms", - "type": "static" - }, - { - "source": "npm:string_decoder", - "target": "npm:safe-buffer@5.2.1", - "type": "static" - }, - { - "source": "npm:strip-ansi@6.0.1", - "target": "npm:ansi-regex@5.0.1", - "type": "static" - }, - { - "source": "npm:strip-ansi-cjs", - "target": "npm:ansi-regex@5.0.1", - "type": "static" - }, - { - "source": "npm:strip-ansi", - "target": "npm:ansi-regex", - "type": "static" - }, - { - "source": "npm:style-to-object", - "target": "npm:inline-style-parser", - "type": "static" - }, - { - "source": "npm:stylehacks", - "target": "npm:browserslist", - "type": "static" - }, - { - "source": "npm:stylehacks", - "target": "npm:postcss", - "type": "static" - }, - { - "source": "npm:stylehacks", - "target": "npm:postcss-selector-parser@6.1.2", - "type": "static" - }, - { - "source": "npm:sugarss", - "target": "npm:postcss", - "type": "static" - }, - { - "source": "npm:supports-color", - "target": "npm:has-flag", - "type": "static" - }, - { - "source": "npm:svg-gradient", - "target": "npm:gradient-parser", - "type": "static" - }, - { - "source": "npm:svg-gradient", - "target": "npm:whoops", - "type": "static" - }, - { - "source": "npm:svgo", - "target": "npm:@trysound/sax", - "type": "static" - }, - { - "source": "npm:svgo", - "target": "npm:commander", - "type": "static" - }, - { - "source": "npm:svgo", - "target": "npm:css-select", - "type": "static" - }, - { - "source": "npm:svgo", - "target": "npm:css-tree", - "type": "static" - }, - { - "source": "npm:svgo", - "target": "npm:csso", - "type": "static" - }, - { - "source": "npm:svgo", - "target": "npm:picocolors", - "type": "static" - }, - { - "source": "npm:svgo", - "target": "npm:stable", - "type": "static" - }, - { - "source": "npm:synckit", - "target": "npm:@pkgr/core", - "type": "static" - }, - { - "source": "npm:tar-fs@2.1.4", - "target": "npm:chownr", - "type": "static" - }, - { - "source": "npm:tar-fs@2.1.4", - "target": "npm:mkdirp-classic", - "type": "static" - }, - { - "source": "npm:tar-fs@2.1.4", - "target": "npm:pump", - "type": "static" - }, - { - "source": "npm:tar-fs@2.1.4", - "target": "npm:tar-stream", - "type": "static" - }, - { - "source": "npm:tar-fs", - "target": "npm:pump", - "type": "static" - }, - { - "source": "npm:tar-fs", - "target": "npm:tar-stream@3.1.7", - "type": "static" - }, - { - "source": "npm:tar-fs", - "target": "npm:bare-fs", - "type": "static" - }, - { - "source": "npm:tar-fs", - "target": "npm:bare-path", - "type": "static" - }, - { - "source": "npm:tar-stream", - "target": "npm:bl", - "type": "static" - }, - { - "source": "npm:tar-stream", - "target": "npm:end-of-stream", - "type": "static" - }, - { - "source": "npm:tar-stream", - "target": "npm:fs-constants", - "type": "static" - }, - { - "source": "npm:tar-stream", - "target": "npm:inherits", - "type": "static" - }, - { - "source": "npm:tar-stream", - "target": "npm:readable-stream", - "type": "static" - }, - { - "source": "npm:tar-stream@3.1.7", - "target": "npm:b4a", - "type": "static" - }, - { - "source": "npm:tar-stream@3.1.7", - "target": "npm:fast-fifo", - "type": "static" - }, - { - "source": "npm:tar-stream@3.1.7", - "target": "npm:streamx", - "type": "static" - }, - { - "source": "npm:tar", - "target": "npm:@isaacs/fs-minipass", - "type": "static" - }, - { - "source": "npm:tar", - "target": "npm:chownr@3.0.0", - "type": "static" - }, - { - "source": "npm:tar", - "target": "npm:minipass", - "type": "static" - }, - { - "source": "npm:tar", - "target": "npm:minizlib", - "type": "static" - }, - { - "source": "npm:tar", - "target": "npm:yallist@5.0.0", - "type": "static" - }, - { - "source": "npm:telefunc", - "target": "npm:@brillout/import", - "type": "static" - }, - { - "source": "npm:telefunc", - "target": "npm:@brillout/json-serializer", - "type": "static" - }, - { - "source": "npm:telefunc", - "target": "npm:@brillout/picocolors", - "type": "static" - }, - { - "source": "npm:telefunc", - "target": "npm:@brillout/vite-plugin-server-entry", - "type": "static" - }, - { - "source": "npm:telefunc", - "target": "npm:es-module-lexer", - "type": "static" - }, - { - "source": "npm:telefunc", - "target": "npm:magic-string", - "type": "static" - }, - { - "source": "npm:telefunc", - "target": "npm:ts-morph", - "type": "static" - }, - { - "source": "npm:telefunc", - "target": "npm:@babel/core", - "type": "static" - }, - { - "source": "npm:telefunc", - "target": "npm:@babel/parser", - "type": "static" - }, - { - "source": "npm:telefunc", - "target": "npm:@babel/types", - "type": "static" - }, - { - "source": "npm:telefunc", - "target": "npm:react", - "type": "static" - }, - { - "source": "npm:telefunc", - "target": "npm:react-streaming", - "type": "static" - }, - { - "source": "npm:telefunc", - "target": "npm:vite", - "type": "static" - }, - { - "source": "npm:text-decoder", - "target": "npm:b4a", - "type": "static" - }, - { - "source": "npm:thread-stream", - "target": "npm:real-require", - "type": "static" - }, - { - "source": "npm:tinyglobby", - "target": "npm:fdir", - "type": "static" - }, - { - "source": "npm:tinyglobby", - "target": "npm:picomatch", - "type": "static" - }, - { - "source": "npm:tldts-experimental", - "target": "npm:tldts-core", - "type": "static" - }, - { - "source": "npm:tldts", - "target": "npm:tldts-core", - "type": "static" - }, - { - "source": "npm:to-regex-range", - "target": "npm:is-number", - "type": "static" - }, - { - "source": "npm:tough-cookie", - "target": "npm:tldts", - "type": "static" - }, - { - "source": "npm:ts-api-utils", - "target": "npm:typescript", - "type": "static" - }, - { - "source": "npm:ts-morph", - "target": "npm:@ts-morph/common", - "type": "static" - }, - { - "source": "npm:ts-morph", - "target": "npm:code-block-writer", - "type": "static" - }, - { - "source": "npm:tsconfig-paths", - "target": "npm:json5", - "type": "static" - }, - { - "source": "npm:tsconfig-paths", - "target": "npm:minimist", - "type": "static" - }, - { - "source": "npm:tsconfig-paths", - "target": "npm:strip-bom", - "type": "static" - }, - { - "source": "npm:tsdown", - "target": "npm:ansis", - "type": "static" - }, - { - "source": "npm:tsdown", - "target": "npm:cac", - "type": "static" - }, - { - "source": "npm:tsdown", - "target": "npm:defu", - "type": "static" - }, - { - "source": "npm:tsdown", - "target": "npm:empathic", - "type": "static" - }, - { - "source": "npm:tsdown", - "target": "npm:hookable", - "type": "static" - }, - { - "source": "npm:tsdown", - "target": "npm:import-without-cache", - "type": "static" - }, - { - "source": "npm:tsdown", - "target": "npm:obug", - "type": "static" - }, - { - "source": "npm:tsdown", - "target": "npm:picomatch", - "type": "static" - }, - { - "source": "npm:tsdown", - "target": "npm:rolldown", - "type": "static" - }, - { - "source": "npm:tsdown", - "target": "npm:rolldown-plugin-dts", - "type": "static" - }, - { - "source": "npm:tsdown", - "target": "npm:semver@7.7.4", - "type": "static" - }, - { - "source": "npm:tsdown", - "target": "npm:tinyexec", - "type": "static" - }, - { - "source": "npm:tsdown", - "target": "npm:tinyglobby", - "type": "static" - }, - { - "source": "npm:tsdown", - "target": "npm:tree-kill", - "type": "static" - }, - { - "source": "npm:tsdown", - "target": "npm:unconfig-core", - "type": "static" - }, - { - "source": "npm:tsdown", - "target": "npm:unrun", - "type": "static" - }, - { - "source": "npm:tsdown", - "target": "npm:typescript", - "type": "static" - }, - { - "source": "npm:tsx", - "target": "npm:esbuild", - "type": "static" - }, - { - "source": "npm:tsx", - "target": "npm:get-tsconfig", - "type": "static" - }, - { - "source": "npm:tsx", - "target": "npm:fsevents", - "type": "static" - }, - { - "source": "npm:tunnel-agent", - "target": "npm:safe-buffer@5.2.1", - "type": "static" - }, - { - "source": "npm:turbo", - "target": "npm:@turbo/darwin-64", - "type": "static" - }, - { - "source": "npm:turbo", - "target": "npm:@turbo/darwin-arm64", - "type": "static" - }, - { - "source": "npm:turbo", - "target": "npm:@turbo/linux-64", - "type": "static" - }, - { - "source": "npm:turbo", - "target": "npm:@turbo/linux-arm64", - "type": "static" - }, - { - "source": "npm:turbo", - "target": "npm:@turbo/windows-64", - "type": "static" - }, - { - "source": "npm:turbo", - "target": "npm:@turbo/windows-arm64", - "type": "static" - }, - { - "source": "npm:type-check", - "target": "npm:prelude-ls", - "type": "static" - }, - { - "source": "npm:type-is", - "target": "npm:content-type", - "type": "static" - }, - { - "source": "npm:type-is", - "target": "npm:media-typer", - "type": "static" - }, - { - "source": "npm:type-is", - "target": "npm:mime-types", - "type": "static" - }, - { - "source": "npm:typed-array-buffer", - "target": "npm:call-bound", - "type": "static" - }, - { - "source": "npm:typed-array-buffer", - "target": "npm:es-errors", - "type": "static" - }, - { - "source": "npm:typed-array-buffer", - "target": "npm:is-typed-array", - "type": "static" - }, - { - "source": "npm:typed-array-byte-length", - "target": "npm:call-bind", - "type": "static" - }, - { - "source": "npm:typed-array-byte-length", - "target": "npm:for-each", - "type": "static" - }, - { - "source": "npm:typed-array-byte-length", - "target": "npm:gopd", - "type": "static" - }, - { - "source": "npm:typed-array-byte-length", - "target": "npm:has-proto", - "type": "static" - }, - { - "source": "npm:typed-array-byte-length", - "target": "npm:is-typed-array", - "type": "static" - }, - { - "source": "npm:typed-array-byte-offset", - "target": "npm:available-typed-arrays", - "type": "static" - }, - { - "source": "npm:typed-array-byte-offset", - "target": "npm:call-bind", - "type": "static" - }, - { - "source": "npm:typed-array-byte-offset", - "target": "npm:for-each", - "type": "static" - }, - { - "source": "npm:typed-array-byte-offset", - "target": "npm:gopd", - "type": "static" - }, - { - "source": "npm:typed-array-byte-offset", - "target": "npm:has-proto", - "type": "static" - }, - { - "source": "npm:typed-array-byte-offset", - "target": "npm:is-typed-array", - "type": "static" - }, - { - "source": "npm:typed-array-byte-offset", - "target": "npm:reflect.getprototypeof", - "type": "static" - }, - { - "source": "npm:typed-array-length", - "target": "npm:call-bind", - "type": "static" - }, - { - "source": "npm:typed-array-length", - "target": "npm:for-each", - "type": "static" - }, - { - "source": "npm:typed-array-length", - "target": "npm:gopd", - "type": "static" - }, - { - "source": "npm:typed-array-length", - "target": "npm:is-typed-array", - "type": "static" - }, - { - "source": "npm:typed-array-length", - "target": "npm:possible-typed-array-names", - "type": "static" - }, - { - "source": "npm:typed-array-length", - "target": "npm:reflect.getprototypeof", - "type": "static" - }, - { - "source": "npm:typescript-eslint", - "target": "npm:@typescript-eslint/eslint-plugin", - "type": "static" - }, - { - "source": "npm:typescript-eslint", - "target": "npm:@typescript-eslint/parser", - "type": "static" - }, - { - "source": "npm:typescript-eslint", - "target": "npm:@typescript-eslint/typescript-estree", - "type": "static" - }, - { - "source": "npm:typescript-eslint", - "target": "npm:@typescript-eslint/utils", - "type": "static" - }, - { - "source": "npm:typescript-eslint", - "target": "npm:eslint", - "type": "static" - }, - { - "source": "npm:typescript-eslint", - "target": "npm:typescript", - "type": "static" - }, - { - "source": "npm:unbox-primitive", - "target": "npm:call-bound", - "type": "static" - }, - { - "source": "npm:unbox-primitive", - "target": "npm:has-bigints", - "type": "static" - }, - { - "source": "npm:unbox-primitive", - "target": "npm:has-symbols", - "type": "static" - }, - { - "source": "npm:unbox-primitive", - "target": "npm:which-boxed-primitive", - "type": "static" - }, - { - "source": "npm:unconfig-core", - "target": "npm:@quansync/fs", - "type": "static" - }, - { - "source": "npm:unconfig-core", - "target": "npm:quansync", - "type": "static" - }, - { - "source": "npm:unconfig", - "target": "npm:@quansync/fs", - "type": "static" - }, - { - "source": "npm:unconfig", - "target": "npm:defu", - "type": "static" - }, - { - "source": "npm:unconfig", - "target": "npm:jiti", - "type": "static" - }, - { - "source": "npm:unconfig", - "target": "npm:quansync", - "type": "static" - }, - { - "source": "npm:unconfig", - "target": "npm:unconfig-core", - "type": "static" - }, - { - "source": "npm:unenv", - "target": "npm:pathe", - "type": "static" - }, - { - "source": "npm:union", - "target": "npm:qs", - "type": "static" - }, - { - "source": "npm:unique-filename", - "target": "npm:unique-slug", - "type": "static" - }, - { - "source": "npm:unique-slug", - "target": "npm:imurmurhash", - "type": "static" - }, - { - "source": "npm:unist-util-is", - "target": "npm:@types/unist@3.0.3", - "type": "static" - }, - { - "source": "npm:unist-util-stringify-position", - "target": "npm:@types/unist@3.0.3", - "type": "static" - }, - { - "source": "npm:unist-util-visit-parents", - "target": "npm:@types/unist@3.0.3", - "type": "static" - }, - { - "source": "npm:unist-util-visit-parents", - "target": "npm:unist-util-is", - "type": "static" - }, - { - "source": "npm:unist-util-visit", - "target": "npm:@types/unist@3.0.3", - "type": "static" - }, - { - "source": "npm:unist-util-visit", - "target": "npm:unist-util-is", - "type": "static" - }, - { - "source": "npm:unist-util-visit", - "target": "npm:unist-util-visit-parents", - "type": "static" - }, - { - "source": "npm:unplugin-purge-polyfills", - "target": "npm:defu", - "type": "static" - }, - { - "source": "npm:unplugin-purge-polyfills", - "target": "npm:magic-string", - "type": "static" - }, - { - "source": "npm:unplugin-purge-polyfills", - "target": "npm:mlly", - "type": "static" - }, - { - "source": "npm:unplugin-purge-polyfills", - "target": "npm:unplugin", - "type": "static" - }, - { - "source": "npm:unplugin", - "target": "npm:@jridgewell/remapping", - "type": "static" - }, - { - "source": "npm:unplugin", - "target": "npm:acorn", - "type": "static" - }, - { - "source": "npm:unplugin", - "target": "npm:picomatch", - "type": "static" - }, - { - "source": "npm:unplugin", - "target": "npm:webpack-virtual-modules", - "type": "static" - }, - { - "source": "npm:unrun", - "target": "npm:rolldown", - "type": "static" - }, - { - "source": "npm:unrun", - "target": "npm:synckit", - "type": "static" - }, - { - "source": "npm:update-browserslist-db", - "target": "npm:browserslist", - "type": "static" - }, - { - "source": "npm:update-browserslist-db", - "target": "npm:escalade", - "type": "static" - }, - { - "source": "npm:update-browserslist-db", - "target": "npm:picocolors", - "type": "static" - }, - { - "source": "npm:uri-js", - "target": "npm:punycode", - "type": "static" - }, - { - "source": "npm:url-http", - "target": "npm:punycode-regex", - "type": "static" - }, - { - "source": "npm:url-http", - "target": "npm:re2", - "type": "static" - }, - { - "source": "npm:url-http", - "target": "npm:url-regex-safe", - "type": "static" - }, - { - "source": "npm:url-regex-safe", - "target": "npm:ip-regex", - "type": "static" - }, - { - "source": "npm:url-regex-safe", - "target": "npm:tlds", - "type": "static" - }, - { - "source": "npm:url-regex-safe", - "target": "npm:re2", - "type": "static" - }, - { - "source": "npm:use-callback-ref", - "target": "npm:react", - "type": "static" - }, - { - "source": "npm:use-callback-ref", - "target": "npm:tslib", - "type": "static" - }, - { - "source": "npm:use-callback-ref", - "target": "npm:@types/react", - "type": "static" - }, - { - "source": "npm:use-composed-ref", - "target": "npm:react", - "type": "static" - }, - { - "source": "npm:use-composed-ref", - "target": "npm:@types/react", - "type": "static" - }, - { - "source": "npm:use-isomorphic-layout-effect", - "target": "npm:react", - "type": "static" - }, - { - "source": "npm:use-isomorphic-layout-effect", - "target": "npm:@types/react", - "type": "static" - }, - { - "source": "npm:use-latest", - "target": "npm:react", - "type": "static" - }, - { - "source": "npm:use-latest", - "target": "npm:use-isomorphic-layout-effect", - "type": "static" - }, - { - "source": "npm:use-latest", - "target": "npm:@types/react", - "type": "static" - }, - { - "source": "npm:use-sidecar", - "target": "npm:detect-node-es", - "type": "static" - }, - { - "source": "npm:use-sidecar", - "target": "npm:react", - "type": "static" - }, - { - "source": "npm:use-sidecar", - "target": "npm:tslib", - "type": "static" - }, - { - "source": "npm:use-sidecar", - "target": "npm:@types/react", - "type": "static" - }, - { - "source": "npm:valibot", - "target": "npm:typescript", - "type": "static" - }, - { - "source": "npm:vike-photon", - "target": "npm:@brillout/picocolors", - "type": "static" - }, - { - "source": "npm:vike-photon", - "target": "npm:@brillout/vite-plugin-server-entry", - "type": "static" - }, - { - "source": "npm:vike-photon", - "target": "npm:@photonjs/core", - "type": "static" - }, - { - "source": "npm:vike-photon", - "target": "npm:@photonjs/runtime", - "type": "static" - }, - { - "source": "npm:vike-photon", - "target": "npm:@universal-middleware/compress", - "type": "static" - }, - { - "source": "npm:vike-photon", - "target": "npm:@universal-middleware/core", - "type": "static" - }, - { - "source": "npm:vike-photon", - "target": "npm:@universal-middleware/sirv", - "type": "static" - }, - { - "source": "npm:vike-photon", - "target": "npm:pkg-types", - "type": "static" - }, - { - "source": "npm:vike-photon", - "target": "npm:standaloner@0.2.2", - "type": "static" - }, - { - "source": "npm:vike-photon", - "target": "npm:vike", - "type": "static" - }, - { - "source": "npm:vike-photon", - "target": "npm:@photonjs/cloudflare", - "type": "static" - }, - { - "source": "npm:vike-photon", - "target": "npm:@photonjs/vercel", - "type": "static" - }, - { - "source": "npm:vike-photon", - "target": "npm:vite", - "type": "static" - }, - { - "source": "npm:vike-react", - "target": "npm:react", - "type": "static" - }, - { - "source": "npm:vike-react", - "target": "npm:react-dom", - "type": "static" - }, - { - "source": "npm:vike-react", - "target": "npm:react-streaming", - "type": "static" - }, - { - "source": "npm:vike-react", - "target": "npm:vike", - "type": "static" - }, - { - "source": "npm:vike-solid", - "target": "npm:isbot-fast", - "type": "static" - }, - { - "source": "npm:vike-solid", - "target": "npm:solid-js", - "type": "static" - }, - { - "source": "npm:vike-solid", - "target": "npm:vike", - "type": "static" - }, - { - "source": "npm:vike-solid", - "target": "npm:vite-plugin-solid", - "type": "static" - }, - { - "source": "npm:vike-vue", - "target": "npm:magic-string", - "type": "static" - }, - { - "source": "npm:vike-vue", - "target": "npm:oxc-parser", - "type": "static" - }, - { - "source": "npm:vike-vue", - "target": "npm:oxc-walker", - "type": "static" - }, - { - "source": "npm:vike-vue", - "target": "npm:vike", - "type": "static" - }, - { - "source": "npm:vike-vue", - "target": "npm:vue", - "type": "static" - }, - { - "source": "npm:vike", - "target": "npm:@babel/core", - "type": "static" - }, - { - "source": "npm:vike", - "target": "npm:@babel/types", - "type": "static" - }, - { - "source": "npm:vike", - "target": "npm:@brillout/import", - "type": "static" - }, - { - "source": "npm:vike", - "target": "npm:@brillout/json-serializer", - "type": "static" - }, - { - "source": "npm:vike", - "target": "npm:@brillout/picocolors", - "type": "static" - }, - { - "source": "npm:vike", - "target": "npm:@brillout/vite-plugin-server-entry", - "type": "static" - }, - { - "source": "npm:vike", - "target": "npm:cac@6.7.14", - "type": "static" - }, - { - "source": "npm:vike", - "target": "npm:es-module-lexer", - "type": "static" - }, - { - "source": "npm:vike", - "target": "npm:esbuild", - "type": "static" - }, - { - "source": "npm:vike", - "target": "npm:json5", - "type": "static" - }, - { - "source": "npm:vike", - "target": "npm:magic-string", - "type": "static" - }, - { - "source": "npm:vike", - "target": "npm:picomatch", - "type": "static" - }, - { - "source": "npm:vike", - "target": "npm:semver@7.7.4", - "type": "static" - }, - { - "source": "npm:vike", - "target": "npm:sirv", - "type": "static" - }, - { - "source": "npm:vike", - "target": "npm:source-map-support", - "type": "static" - }, - { - "source": "npm:vike", - "target": "npm:tinyglobby", - "type": "static" - }, - { - "source": "npm:vike", - "target": "npm:vite", - "type": "static" - }, - { - "source": "npm:vike", - "target": "npm:react-streaming", - "type": "static" - }, - { - "source": "npm:vite-plugin-compiled-react", - "target": "npm:@babel/types", - "type": "static" - }, - { - "source": "npm:vite-plugin-compiled-react", - "target": "npm:@compiled/babel-plugin", - "type": "static" - }, - { - "source": "npm:vite-plugin-compiled-react", - "target": "npm:@compiled/babel-plugin-strip-runtime", - "type": "static" - }, - { - "source": "npm:vite-plugin-compiled-react", - "target": "npm:@compiled/react", - "type": "static" - }, - { - "source": "npm:vite-plugin-compiled-react", - "target": "npm:@vitejs/plugin-react", - "type": "static" - }, - { - "source": "npm:vite-plugin-compiled-react", - "target": "npm:babel-plugin-module-resolver", - "type": "static" - }, - { - "source": "npm:vite-plugin-compiled-react", - "target": "npm:vite", - "type": "static" - }, - { - "source": "npm:vite-plugin-solid", - "target": "npm:@babel/core", - "type": "static" - }, - { - "source": "npm:vite-plugin-solid", - "target": "npm:@types/babel__core", - "type": "static" - }, - { - "source": "npm:vite-plugin-solid", - "target": "npm:babel-preset-solid", - "type": "static" - }, - { - "source": "npm:vite-plugin-solid", - "target": "npm:merge-anything", - "type": "static" - }, - { - "source": "npm:vite-plugin-solid", - "target": "npm:solid-js", - "type": "static" - }, - { - "source": "npm:vite-plugin-solid", - "target": "npm:solid-refresh", - "type": "static" - }, - { - "source": "npm:vite-plugin-solid", - "target": "npm:vite", - "type": "static" - }, - { - "source": "npm:vite-plugin-solid", - "target": "npm:vitefu", - "type": "static" - }, - { - "source": "npm:vite-plugin-wasm", - "target": "npm:vite", - "type": "static" - }, - { - "source": "npm:vite", - "target": "npm:lightningcss", - "type": "static" - }, - { - "source": "npm:vite", - "target": "npm:picomatch", - "type": "static" - }, - { - "source": "npm:vite", - "target": "npm:postcss", - "type": "static" - }, - { - "source": "npm:vite", - "target": "npm:rolldown@1.0.0-rc.11", - "type": "static" - }, - { - "source": "npm:vite", - "target": "npm:tinyglobby", - "type": "static" - }, - { - "source": "npm:vite", - "target": "npm:@types/node", - "type": "static" - }, - { - "source": "npm:vite", - "target": "npm:esbuild", - "type": "static" - }, - { - "source": "npm:vite", - "target": "npm:fsevents", - "type": "static" - }, - { - "source": "npm:vite", - "target": "npm:jiti", - "type": "static" - }, - { - "source": "npm:vite", - "target": "npm:sugarss", - "type": "static" - }, - { - "source": "npm:vite", - "target": "npm:tsx", - "type": "static" - }, - { - "source": "npm:vite", - "target": "npm:yaml", - "type": "static" - }, - { - "source": "npm:vitefu", - "target": "npm:vite", - "type": "static" - }, - { - "source": "npm:vitest", - "target": "npm:@vitest/expect", - "type": "static" - }, - { - "source": "npm:vitest", - "target": "npm:@vitest/mocker", - "type": "static" - }, - { - "source": "npm:vitest", - "target": "npm:@vitest/pretty-format", - "type": "static" - }, - { - "source": "npm:vitest", - "target": "npm:@vitest/runner", - "type": "static" - }, - { - "source": "npm:vitest", - "target": "npm:@vitest/snapshot", - "type": "static" - }, - { - "source": "npm:vitest", - "target": "npm:@vitest/spy", - "type": "static" - }, - { - "source": "npm:vitest", - "target": "npm:@vitest/utils", - "type": "static" - }, - { - "source": "npm:vitest", - "target": "npm:es-module-lexer@2.0.0", - "type": "static" - }, - { - "source": "npm:vitest", - "target": "npm:expect-type", - "type": "static" - }, - { - "source": "npm:vitest", - "target": "npm:magic-string", - "type": "static" - }, - { - "source": "npm:vitest", - "target": "npm:obug", - "type": "static" - }, - { - "source": "npm:vitest", - "target": "npm:pathe", - "type": "static" - }, - { - "source": "npm:vitest", - "target": "npm:picomatch", - "type": "static" - }, - { - "source": "npm:vitest", - "target": "npm:std-env", - "type": "static" - }, - { - "source": "npm:vitest", - "target": "npm:tinybench", - "type": "static" - }, - { - "source": "npm:vitest", - "target": "npm:tinyexec", - "type": "static" - }, - { - "source": "npm:vitest", - "target": "npm:tinyglobby", - "type": "static" - }, - { - "source": "npm:vitest", - "target": "npm:tinyrainbow", - "type": "static" - }, - { - "source": "npm:vitest", - "target": "npm:vite", - "type": "static" - }, - { - "source": "npm:vitest", - "target": "npm:why-is-node-running", - "type": "static" - }, - { - "source": "npm:vitest", - "target": "npm:@types/node", - "type": "static" - }, - { - "source": "npm:vue-eslint-parser", - "target": "npm:debug", - "type": "static" - }, - { - "source": "npm:vue-eslint-parser", - "target": "npm:eslint", - "type": "static" - }, - { - "source": "npm:vue-eslint-parser", - "target": "npm:eslint-scope", - "type": "static" - }, - { - "source": "npm:vue-eslint-parser", - "target": "npm:eslint-visitor-keys@5.0.1", - "type": "static" - }, - { - "source": "npm:vue-eslint-parser", - "target": "npm:espree", - "type": "static" - }, - { - "source": "npm:vue-eslint-parser", - "target": "npm:esquery", - "type": "static" - }, - { - "source": "npm:vue-eslint-parser", - "target": "npm:semver@7.7.4", - "type": "static" - }, - { - "source": "npm:vue-gtag", - "target": "npm:vue", - "type": "static" - }, - { - "source": "npm:vue", - "target": "npm:@vue/compiler-dom", - "type": "static" - }, - { - "source": "npm:vue", - "target": "npm:@vue/compiler-sfc", - "type": "static" - }, - { - "source": "npm:vue", - "target": "npm:@vue/runtime-dom", - "type": "static" - }, - { - "source": "npm:vue", - "target": "npm:@vue/server-renderer", - "type": "static" - }, - { - "source": "npm:vue", - "target": "npm:@vue/shared", - "type": "static" - }, - { - "source": "npm:vue", - "target": "npm:typescript", - "type": "static" - }, - { - "source": "npm:wcwidth", - "target": "npm:defaults", - "type": "static" - }, - { - "source": "npm:whatwg-encoding", - "target": "npm:iconv-lite", - "type": "static" - }, - { - "source": "npm:whatwg-url", - "target": "npm:tr46", - "type": "static" - }, - { - "source": "npm:whatwg-url", - "target": "npm:webidl-conversions", - "type": "static" - }, - { - "source": "npm:which-boxed-primitive", - "target": "npm:is-bigint", - "type": "static" - }, - { - "source": "npm:which-boxed-primitive", - "target": "npm:is-boolean-object", - "type": "static" - }, - { - "source": "npm:which-boxed-primitive", - "target": "npm:is-number-object", - "type": "static" - }, - { - "source": "npm:which-boxed-primitive", - "target": "npm:is-string", - "type": "static" - }, - { - "source": "npm:which-boxed-primitive", - "target": "npm:is-symbol", - "type": "static" - }, - { - "source": "npm:which-builtin-type", - "target": "npm:call-bound", - "type": "static" - }, - { - "source": "npm:which-builtin-type", - "target": "npm:function.prototype.name", - "type": "static" - }, - { - "source": "npm:which-builtin-type", - "target": "npm:has-tostringtag", - "type": "static" - }, - { - "source": "npm:which-builtin-type", - "target": "npm:is-async-function", - "type": "static" - }, - { - "source": "npm:which-builtin-type", - "target": "npm:is-date-object", - "type": "static" - }, - { - "source": "npm:which-builtin-type", - "target": "npm:is-finalizationregistry", - "type": "static" - }, - { - "source": "npm:which-builtin-type", - "target": "npm:is-generator-function", - "type": "static" - }, - { - "source": "npm:which-builtin-type", - "target": "npm:is-regex", - "type": "static" - }, - { - "source": "npm:which-builtin-type", - "target": "npm:is-weakref", - "type": "static" - }, - { - "source": "npm:which-builtin-type", - "target": "npm:isarray", - "type": "static" - }, - { - "source": "npm:which-builtin-type", - "target": "npm:which-boxed-primitive", - "type": "static" - }, - { - "source": "npm:which-builtin-type", - "target": "npm:which-collection", - "type": "static" - }, - { - "source": "npm:which-builtin-type", - "target": "npm:which-typed-array", - "type": "static" - }, - { - "source": "npm:which-collection", - "target": "npm:is-map", - "type": "static" - }, - { - "source": "npm:which-collection", - "target": "npm:is-set", - "type": "static" - }, - { - "source": "npm:which-collection", - "target": "npm:is-weakmap", - "type": "static" - }, - { - "source": "npm:which-collection", - "target": "npm:is-weakset", - "type": "static" - }, - { - "source": "npm:which-typed-array", - "target": "npm:available-typed-arrays", - "type": "static" - }, - { - "source": "npm:which-typed-array", - "target": "npm:call-bind", - "type": "static" - }, - { - "source": "npm:which-typed-array", - "target": "npm:call-bound", - "type": "static" - }, - { - "source": "npm:which-typed-array", - "target": "npm:for-each", - "type": "static" - }, - { - "source": "npm:which-typed-array", - "target": "npm:get-proto", - "type": "static" - }, - { - "source": "npm:which-typed-array", - "target": "npm:gopd", - "type": "static" - }, - { - "source": "npm:which-typed-array", - "target": "npm:has-tostringtag", - "type": "static" - }, - { - "source": "npm:which@2.0.2", - "target": "npm:isexe@2.0.0", - "type": "static" - }, - { - "source": "npm:which@5.0.0", - "target": "npm:isexe@3.1.1", - "type": "static" - }, - { - "source": "npm:which", - "target": "npm:isexe", - "type": "static" - }, - { - "source": "npm:why-is-node-running", - "target": "npm:siginfo", - "type": "static" - }, - { - "source": "npm:why-is-node-running", - "target": "npm:stackback", - "type": "static" - }, - { - "source": "npm:workerd@1.20251217.0", - "target": "npm:@cloudflare/workerd-darwin-64@1.20251217.0", - "type": "static" - }, - { - "source": "npm:workerd@1.20251217.0", - "target": "npm:@cloudflare/workerd-darwin-arm64@1.20251217.0", - "type": "static" - }, - { - "source": "npm:workerd@1.20251217.0", - "target": "npm:@cloudflare/workerd-linux-64@1.20251217.0", - "type": "static" - }, - { - "source": "npm:workerd@1.20251217.0", - "target": "npm:@cloudflare/workerd-linux-arm64@1.20251217.0", - "type": "static" - }, - { - "source": "npm:workerd@1.20251217.0", - "target": "npm:@cloudflare/workerd-windows-64@1.20251217.0", - "type": "static" - }, - { - "source": "npm:workerd", - "target": "npm:@cloudflare/workerd-darwin-64@1.20260317.1", - "type": "static" - }, - { - "source": "npm:workerd", - "target": "npm:@cloudflare/workerd-darwin-arm64@1.20260317.1", - "type": "static" - }, - { - "source": "npm:workerd", - "target": "npm:@cloudflare/workerd-linux-64", - "type": "static" - }, - { - "source": "npm:workerd", - "target": "npm:@cloudflare/workerd-linux-arm64@1.20260317.1", - "type": "static" - }, - { - "source": "npm:workerd", - "target": "npm:@cloudflare/workerd-windows-64@1.20260317.1", - "type": "static" - }, - { - "source": "npm:wrangler", - "target": "npm:@cloudflare/kv-asset-handler", - "type": "static" - }, - { - "source": "npm:wrangler", - "target": "npm:@cloudflare/unenv-preset", - "type": "static" - }, - { - "source": "npm:wrangler", - "target": "npm:blake3-wasm", - "type": "static" - }, - { - "source": "npm:wrangler", - "target": "npm:esbuild@0.27.3", - "type": "static" - }, - { - "source": "npm:wrangler", - "target": "npm:miniflare", - "type": "static" - }, - { - "source": "npm:wrangler", - "target": "npm:path-to-regexp@6.3.0", - "type": "static" - }, - { - "source": "npm:wrangler", - "target": "npm:unenv", - "type": "static" - }, - { - "source": "npm:wrangler", - "target": "npm:workerd", - "type": "static" - }, - { - "source": "npm:wrangler", - "target": "npm:@cloudflare/workers-types", - "type": "static" - }, - { - "source": "npm:wrangler", - "target": "npm:fsevents", - "type": "static" - }, - { - "source": "npm:wrap-ansi", - "target": "npm:ansi-styles@4.3.0", - "type": "static" - }, - { - "source": "npm:wrap-ansi", - "target": "npm:string-width", - "type": "static" - }, - { - "source": "npm:wrap-ansi", - "target": "npm:strip-ansi@6.0.1", - "type": "static" - }, - { - "source": "npm:wrap-ansi-cjs", - "target": "npm:ansi-styles@4.3.0", - "type": "static" - }, - { - "source": "npm:wrap-ansi-cjs", - "target": "npm:string-width", - "type": "static" - }, - { - "source": "npm:wrap-ansi-cjs", - "target": "npm:strip-ansi@6.0.1", - "type": "static" - }, - { - "source": "npm:wrap-ansi@8.1.0", - "target": "npm:ansi-styles", - "type": "static" - }, - { - "source": "npm:wrap-ansi@8.1.0", - "target": "npm:string-width@5.1.2", - "type": "static" - }, - { - "source": "npm:wrap-ansi@8.1.0", - "target": "npm:strip-ansi", - "type": "static" - }, - { - "source": "npm:yargs", - "target": "npm:cliui", - "type": "static" - }, - { - "source": "npm:yargs", - "target": "npm:escalade", - "type": "static" - }, - { - "source": "npm:yargs", - "target": "npm:get-caller-file", - "type": "static" - }, - { - "source": "npm:yargs", - "target": "npm:require-directory", - "type": "static" - }, - { - "source": "npm:yargs", - "target": "npm:string-width", - "type": "static" - }, - { - "source": "npm:yargs", - "target": "npm:y18n", - "type": "static" - }, - { - "source": "npm:yargs", - "target": "npm:yargs-parser", - "type": "static" - }, - { - "source": "npm:yauzl", - "target": "npm:buffer-crc32", - "type": "static" - }, - { - "source": "npm:yauzl", - "target": "npm:fd-slicer", - "type": "static" - }, - { - "source": "npm:youch-core", - "target": "npm:@poppinss/exception", - "type": "static" - }, - { - "source": "npm:youch-core", - "target": "npm:error-stack-parser-es", - "type": "static" - }, - { - "source": "npm:youch", - "target": "npm:@poppinss/colors", - "type": "static" - }, - { - "source": "npm:youch", - "target": "npm:@poppinss/dumper", - "type": "static" - }, - { - "source": "npm:youch", - "target": "npm:@speed-highlight/core", - "type": "static" - }, - { - "source": "npm:youch", - "target": "npm:cookie@1.1.1", - "type": "static" - }, - { - "source": "npm:youch", - "target": "npm:youch-core", - "type": "static" - }, - { - "source": "npm:zeptomatch", - "target": "npm:grammex", - "type": "static" - }, - { - "source": "npm:zeptomatch", - "target": "npm:graphmatch", - "type": "static" - } -] \ No newline at end of file diff --git a/.nx/workspace-data/parsed-lock-file.nodes.json b/.nx/workspace-data/parsed-lock-file.nodes.json deleted file mode 100644 index 2e0a74ac4..000000000 --- a/.nx/workspace-data/parsed-lock-file.nodes.json +++ /dev/null @@ -1,20245 +0,0 @@ -{ - "nodes": { - "npm:@auth/core": { - "type": "npm", - "name": "npm:@auth/core", - "data": { - "version": "0.41.1", - "packageName": "@auth/core", - "hash": "sha512-t9cJ2zNYAdWMacGRMT6+r4xr1uybIdmYa49calBPeTqwgAFPV/88ac9TEvCR85pvATiSPt8VaNf+Gt24JIT/uw==" - } - }, - "npm:@aws-cdk/asset-awscli-v1": { - "type": "npm", - "name": "npm:@aws-cdk/asset-awscli-v1", - "data": { - "version": "2.2.263", - "packageName": "@aws-cdk/asset-awscli-v1", - "hash": "sha512-X9JvcJhYcb7PHs8R7m4zMablO5C9PGb/hYfLnxds9h/rKJu6l7MiXE/SabCibuehxPnuO/vk+sVVJiUWrccarQ==" - } - }, - "npm:@aws-cdk/asset-node-proxy-agent-v6": { - "type": "npm", - "name": "npm:@aws-cdk/asset-node-proxy-agent-v6", - "data": { - "version": "2.1.1", - "packageName": "@aws-cdk/asset-node-proxy-agent-v6", - "hash": "sha512-We4bmHaowOPHr+IQR4/FyTGjRfjgBj4ICMjtqmJeBDWad3Q/6St12NT07leNtyuukv2qMhtSZJQorD8KpKTwRA==" - } - }, - "npm:@aws-cdk/cloud-assembly-schema": { - "type": "npm", - "name": "npm:@aws-cdk/cloud-assembly-schema", - "data": { - "version": "52.2.0", - "packageName": "@aws-cdk/cloud-assembly-schema", - "hash": "sha512-ourZjixQ/UfsZc7gdk3vt1eHBODMUjQTYYYCY3ZX8fiXyHtWNDAYZPrXUK96jpCC2fLP+tfHTJrBjZ563pmcEw==" - } - }, - "npm:@babel/code-frame": { - "type": "npm", - "name": "npm:@babel/code-frame", - "data": { - "version": "7.29.0", - "packageName": "@babel/code-frame", - "hash": "sha512-9NhCeYjq9+3uxgdtp20LSiJXJvN0FeCtNGpJxuMFZ1Kv3cWUNb6DOhJwUvcVCzKGR66cw4njwM6hrJLqgOwbcw==" - } - }, - "npm:@babel/compat-data": { - "type": "npm", - "name": "npm:@babel/compat-data", - "data": { - "version": "7.28.6", - "packageName": "@babel/compat-data", - "hash": "sha512-2lfu57JtzctfIrcGMz992hyLlByuzgIk58+hhGCxjKZ3rWI82NnVLjXcaTqkI2NvlcvOskZaiZ5kjUALo3Lpxg==" - } - }, - "npm:@babel/core": { - "type": "npm", - "name": "npm:@babel/core", - "data": { - "version": "7.29.0", - "packageName": "@babel/core", - "hash": "sha512-CGOfOJqWjg2qW/Mb6zNsDm+u5vFQ8DxXfbM09z69p5Z6+mE1ikP2jUXw+j42Pf1XTYED2Rni5f95npYeuwMDQA==" - } - }, - "npm:@babel/generator": { - "type": "npm", - "name": "npm:@babel/generator", - "data": { - "version": "7.29.0", - "packageName": "@babel/generator", - "hash": "sha512-vSH118/wwM/pLR38g/Sgk05sNtro6TlTJKuiMXDaZqPUfjTFcudpCOt00IhOfj+1BFAX+UFAlzCU+6WXr3GLFQ==" - } - }, - "npm:@babel/generator@8.0.0-rc.2": { - "type": "npm", - "name": "npm:@babel/generator@8.0.0-rc.2", - "data": { - "version": "8.0.0-rc.2", - "packageName": "@babel/generator", - "hash": "sha512-oCQ1IKPwkzCeJzAPb7Fv8rQ9k5+1sG8mf2uoHiMInPYvkRfrDJxbTIbH51U+jstlkghus0vAi3EBvkfvEsYNLQ==" - } - }, - "npm:@babel/helper-annotate-as-pure": { - "type": "npm", - "name": "npm:@babel/helper-annotate-as-pure", - "data": { - "version": "7.27.3", - "packageName": "@babel/helper-annotate-as-pure", - "hash": "sha512-fXSwMQqitTGeHLBC08Eq5yXz2m37E4pJX1qAU1+2cNedz/ifv/bVXft90VeSav5nFO61EcNgwr0aJxbyPaWBPg==" - } - }, - "npm:@babel/helper-compilation-targets": { - "type": "npm", - "name": "npm:@babel/helper-compilation-targets", - "data": { - "version": "7.28.6", - "packageName": "@babel/helper-compilation-targets", - "hash": "sha512-JYtls3hqi15fcx5GaSNL7SCTJ2MNmjrkHXg4FSpOA/grxK8KwyZ5bubHsCq8FXCkua6xhuaaBit+3b7+VZRfcA==" - } - }, - "npm:@babel/helper-globals": { - "type": "npm", - "name": "npm:@babel/helper-globals", - "data": { - "version": "7.28.0", - "packageName": "@babel/helper-globals", - "hash": "sha512-+W6cISkXFa1jXsDEdYA8HeevQT/FULhxzR99pxphltZcVaugps53THCeiWA8SguxxpSp3gKPiuYfSWopkLQ4hw==" - } - }, - "npm:@babel/helper-module-imports@7.18.6": { - "type": "npm", - "name": "npm:@babel/helper-module-imports@7.18.6", - "data": { - "version": "7.18.6", - "packageName": "@babel/helper-module-imports", - "hash": "sha512-0NFvs3VkuSYbFi1x2Vd6tKrywq+z/cLeYC/RJNFrIX/30Bf5aiGYbtvGXolEktzJH8o5E5KJ3tT+nkxuuZFVlA==" - } - }, - "npm:@babel/helper-module-imports": { - "type": "npm", - "name": "npm:@babel/helper-module-imports", - "data": { - "version": "7.28.6", - "packageName": "@babel/helper-module-imports", - "hash": "sha512-l5XkZK7r7wa9LucGw9LwZyyCUscb4x37JWTPz7swwFE/0FMQAGpiWUZn8u9DzkSBWEcK25jmvubfpw2dnAMdbw==" - } - }, - "npm:@babel/helper-module-transforms": { - "type": "npm", - "name": "npm:@babel/helper-module-transforms", - "data": { - "version": "7.28.6", - "packageName": "@babel/helper-module-transforms", - "hash": "sha512-67oXFAYr2cDLDVGLXTEABjdBJZ6drElUSI7WKp70NrpyISso3plG9SAGEF6y7zbha/wOzUByWWTJvEDVNIUGcA==" - } - }, - "npm:@babel/helper-plugin-utils": { - "type": "npm", - "name": "npm:@babel/helper-plugin-utils", - "data": { - "version": "7.28.6", - "packageName": "@babel/helper-plugin-utils", - "hash": "sha512-S9gzZ/bz83GRysI7gAD4wPT/AI3uCnY+9xn+Mx/KPs2JwHJIz1W8PZkg2cqyt3RNOBM8ejcXhV6y8Og7ly/Dug==" - } - }, - "npm:@babel/helper-string-parser": { - "type": "npm", - "name": "npm:@babel/helper-string-parser", - "data": { - "version": "7.27.1", - "packageName": "@babel/helper-string-parser", - "hash": "sha512-qMlSxKbpRlAridDExk92nSobyDdpPijUq2DW6oDnUqd0iOGxmQjyqhMIihI9+zv4LPyZdRje2cavWPbCbWm3eA==" - } - }, - "npm:@babel/helper-string-parser@8.0.0-rc.3": { - "type": "npm", - "name": "npm:@babel/helper-string-parser@8.0.0-rc.3", - "data": { - "version": "8.0.0-rc.3", - "packageName": "@babel/helper-string-parser", - "hash": "sha512-AmwWFx1m8G/a5cXkxLxTiWl+YEoWuoFLUCwqMlNuWO1tqAYITQAbCRPUkyBHv1VOFgfjVOqEj6L3u15J5ZCzTA==" - } - }, - "npm:@babel/helper-validator-identifier": { - "type": "npm", - "name": "npm:@babel/helper-validator-identifier", - "data": { - "version": "7.28.5", - "packageName": "@babel/helper-validator-identifier", - "hash": "sha512-qSs4ifwzKJSV39ucNjsvc6WVHs6b7S03sOh2OcHF9UHfVPqWWALUsNUVzhSBiItjRZoLHx7nIarVjqKVusUZ1Q==" - } - }, - "npm:@babel/helper-validator-identifier@8.0.0-rc.2": { - "type": "npm", - "name": "npm:@babel/helper-validator-identifier@8.0.0-rc.2", - "data": { - "version": "8.0.0-rc.2", - "packageName": "@babel/helper-validator-identifier", - "hash": "sha512-xExUBkuXWJjVuIbO7z6q7/BA9bgfJDEhVL0ggrggLMbg0IzCUWGT1hZGE8qUH7Il7/RD/a6cZ3AAFrrlp1LF/A==" - } - }, - "npm:@babel/helper-validator-option": { - "type": "npm", - "name": "npm:@babel/helper-validator-option", - "data": { - "version": "7.27.1", - "packageName": "@babel/helper-validator-option", - "hash": "sha512-YvjJow9FxbhFFKDSuFnVCe2WxXk1zWc22fFePVNEaWJEu8IrZVlda6N0uHwzZrUM1il7NC9Mlp4MaJYbYd9JSg==" - } - }, - "npm:@babel/helpers": { - "type": "npm", - "name": "npm:@babel/helpers", - "data": { - "version": "7.28.6", - "packageName": "@babel/helpers", - "hash": "sha512-xOBvwq86HHdB7WUDTfKfT/Vuxh7gElQ+Sfti2Cy6yIWNW05P8iUslOVcZ4/sKbE+/jQaukQAdz/gf3724kYdqw==" - } - }, - "npm:@babel/parser": { - "type": "npm", - "name": "npm:@babel/parser", - "data": { - "version": "7.29.0", - "packageName": "@babel/parser", - "hash": "sha512-IyDgFV5GeDUVX4YdF/3CPULtVGSXXMLh1xVIgdCgxApktqnQV0r7/8Nqthg+8YLGaAtdyIlo2qIdZrbCv4+7ww==" - } - }, - "npm:@babel/parser@8.0.0-rc.2": { - "type": "npm", - "name": "npm:@babel/parser@8.0.0-rc.2", - "data": { - "version": "8.0.0-rc.2", - "packageName": "@babel/parser", - "hash": "sha512-29AhEtcq4x8Dp3T72qvUMZHx0OMXCj4Jy/TEReQa+KWLln524Cj1fWb3QFi0l/xSpptQBR6y9RNEXuxpFvwiUQ==" - } - }, - "npm:@babel/plugin-syntax-flow": { - "type": "npm", - "name": "npm:@babel/plugin-syntax-flow", - "data": { - "version": "7.28.6", - "packageName": "@babel/plugin-syntax-flow", - "hash": "sha512-D+OrJumc9McXNEBI/JmFnc/0uCM2/Y3PEBG3gfV3QIYkKv5pvnpzFrl1kYCrcHJP8nOeFB/SHi1IHz29pNGuew==" - } - }, - "npm:@babel/plugin-syntax-jsx": { - "type": "npm", - "name": "npm:@babel/plugin-syntax-jsx", - "data": { - "version": "7.28.6", - "packageName": "@babel/plugin-syntax-jsx", - "hash": "sha512-wgEmr06G6sIpqr8YDwA2dSRTE3bJ+V0IfpzfSY3Lfgd7YWOaAdlykvJi13ZKBt8cZHfgH1IXN+CL656W3uUa4w==" - } - }, - "npm:@babel/plugin-transform-flow-strip-types": { - "type": "npm", - "name": "npm:@babel/plugin-transform-flow-strip-types", - "data": { - "version": "7.27.1", - "packageName": "@babel/plugin-transform-flow-strip-types", - "hash": "sha512-G5eDKsu50udECw7DL2AcsysXiQyB7Nfg521t2OAJ4tbfTJ27doHLeF/vlI1NZGlLdbb/v+ibvtL1YBQqYOwJGg==" - } - }, - "npm:@babel/plugin-transform-react-jsx": { - "type": "npm", - "name": "npm:@babel/plugin-transform-react-jsx", - "data": { - "version": "7.28.6", - "packageName": "@babel/plugin-transform-react-jsx", - "hash": "sha512-61bxqhiRfAACulXSLd/GxqmAedUSrRZIu/cbaT18T1CetkTmtDN15it7i80ru4DVqRK1WMxQhXs+Lf9kajm5Ow==" - } - }, - "npm:@babel/runtime": { - "type": "npm", - "name": "npm:@babel/runtime", - "data": { - "version": "7.28.4", - "packageName": "@babel/runtime", - "hash": "sha512-Q/N6JNWvIvPnLDvjlE1OUBLPQHH6l3CltCEsHIujp45zQUSSh8K+gHnaEX45yAT1nyngnINhvWtzN+Nb9D8RAQ==" - } - }, - "npm:@babel/template": { - "type": "npm", - "name": "npm:@babel/template", - "data": { - "version": "7.28.6", - "packageName": "@babel/template", - "hash": "sha512-YA6Ma2KsCdGb+WC6UpBVFJGXL58MDA6oyONbjyF/+5sBgxY/dwkhLogbMT2GXXyU84/IhRw/2D1Os1B/giz+BQ==" - } - }, - "npm:@babel/traverse": { - "type": "npm", - "name": "npm:@babel/traverse", - "data": { - "version": "7.29.0", - "packageName": "@babel/traverse", - "hash": "sha512-4HPiQr0X7+waHfyXPZpWPfWL/J7dcN1mx9gL6WdQVMbPnF3+ZhSMs8tCxN7oHddJE9fhNE7+lxdnlyemKfJRuA==" - } - }, - "npm:@babel/types": { - "type": "npm", - "name": "npm:@babel/types", - "data": { - "version": "7.29.0", - "packageName": "@babel/types", - "hash": "sha512-LwdZHpScM4Qz8Xw2iKSzS+cfglZzJGvofQICy7W7v4caru4EaAmyUuO6BGrbyQ2mYV11W0U8j5mBhd14dd3B0A==" - } - }, - "npm:@babel/types@8.0.0-rc.2": { - "type": "npm", - "name": "npm:@babel/types@8.0.0-rc.2", - "data": { - "version": "8.0.0-rc.2", - "packageName": "@babel/types", - "hash": "sha512-91gAaWRznDwSX4E2tZ1YjBuIfnQVOFDCQ2r0Toby0gu4XEbyF623kXLMA8d4ZbCu+fINcrudkmEcwSUHgDDkNw==" - } - }, - "npm:@batijs/compile": { - "type": "npm", - "name": "npm:@batijs/compile", - "data": { - "version": "file:packages/compile", - "packageName": "@batijs/compile", - "hash": "8949708989012550123" - } - }, - "npm:@biomejs/biome": { - "type": "npm", - "name": "npm:@biomejs/biome", - "data": { - "version": "2.4.8", - "packageName": "@biomejs/biome", - "hash": "sha512-ponn0oKOky1oRXBV+rlSaUlixUxf1aZvWC19Z41zBfUOUesthrQqL3OtiAlSB1EjFjyWpn98Q64DHelhA6jNlA==" - } - }, - "npm:@biomejs/cli-darwin-arm64": { - "type": "npm", - "name": "npm:@biomejs/cli-darwin-arm64", - "data": { - "version": "2.4.8", - "packageName": "@biomejs/cli-darwin-arm64", - "hash": "sha512-ARx0tECE8I7S2C2yjnWYLNbBdDoPdq3oyNLhMglmuctThwUsuzFWRKrHmIGwIRWKz0Mat9DuzLEDp52hGnrxGQ==" - } - }, - "npm:@biomejs/cli-darwin-x64": { - "type": "npm", - "name": "npm:@biomejs/cli-darwin-x64", - "data": { - "version": "2.4.8", - "packageName": "@biomejs/cli-darwin-x64", - "hash": "sha512-Jg9/PsB9vDCJlANE8uhG7qDhb5w0Ix69D7XIIc8IfZPUoiPrbLm33k2Ig3NOJ/7nb3UbesFz3D1aDKm9DvzjhQ==" - } - }, - "npm:@biomejs/cli-linux-arm64-musl": { - "type": "npm", - "name": "npm:@biomejs/cli-linux-arm64-musl", - "data": { - "version": "2.4.8", - "packageName": "@biomejs/cli-linux-arm64-musl", - "hash": "sha512-Zo9OhBQDJ3IBGPlqHiTISloo5H0+FBIpemqIJdW/0edJ+gEcLR+MZeZozcUyz3o1nXkVA7++DdRKQT0599j9jA==" - } - }, - "npm:@biomejs/cli-linux-arm64": { - "type": "npm", - "name": "npm:@biomejs/cli-linux-arm64", - "data": { - "version": "2.4.8", - "packageName": "@biomejs/cli-linux-arm64", - "hash": "sha512-5CdrsJct76XG2hpKFwXnEtlT1p+4g4yV+XvvwBpzKsTNLO9c6iLlAxwcae2BJ7ekPGWjNGw9j09T5KGPKKxQig==" - } - }, - "npm:@biomejs/cli-linux-x64-musl": { - "type": "npm", - "name": "npm:@biomejs/cli-linux-x64-musl", - "data": { - "version": "2.4.8", - "packageName": "@biomejs/cli-linux-x64-musl", - "hash": "sha512-Gi8quv8MEuDdKaPFtS2XjEnMqODPsRg6POT6KhoP+VrkNb+T2ywunVB+TvOU0LX1jAZzfBr+3V1mIbBhzAMKvw==" - } - }, - "npm:@biomejs/cli-linux-x64": { - "type": "npm", - "name": "npm:@biomejs/cli-linux-x64", - "data": { - "version": "2.4.8", - "packageName": "@biomejs/cli-linux-x64", - "hash": "sha512-PdKXspVEaMCQLjtZCn6vfSck/li4KX9KGwSDbZdgIqlrizJ2MnMcE3TvHa2tVfXNmbjMikzcfJpuPWH695yJrw==" - } - }, - "npm:@biomejs/cli-win32-arm64": { - "type": "npm", - "name": "npm:@biomejs/cli-win32-arm64", - "data": { - "version": "2.4.8", - "packageName": "@biomejs/cli-win32-arm64", - "hash": "sha512-LoFatS0tnHv6KkCVpIy3qZCih+MxUMvdYiPWLHRri7mhi2vyOOs8OrbZBcLTUEWCS+ktO72nZMy4F96oMhkOHQ==" - } - }, - "npm:@biomejs/cli-win32-x64": { - "type": "npm", - "name": "npm:@biomejs/cli-win32-x64", - "data": { - "version": "2.4.8", - "packageName": "@biomejs/cli-win32-x64", - "hash": "sha512-vAn7iXDoUbqFXqVocuq1sMYAd33p8+mmurqJkWl6CtIhobd/O6moe4rY5AJvzbunn/qZCdiDVcveqtkFh1e7Hg==" - } - }, - "npm:@biomejs/wasm-nodejs": { - "type": "npm", - "name": "npm:@biomejs/wasm-nodejs", - "data": { - "version": "2.4.8", - "packageName": "@biomejs/wasm-nodejs", - "hash": "sha512-pTfObtbrSfifZqdEE75EQc6R6ZZ3K3dtuS4KqOsmOYz9on8b5RXpXEYRp/VR0MQ5NzRBk4UteKL8PMT4GKHHnw==" - } - }, - "npm:@brillout/import": { - "type": "npm", - "name": "npm:@brillout/import", - "data": { - "version": "0.2.6", - "packageName": "@brillout/import", - "hash": "sha512-1GUTmADc8trUC1YSW2lp9r6PmwluMoEyHajnE1kxVdbKGD0wJOlq/DvTWMUqLtBDCnQR+n//qgMtz6HwA/lotA==" - } - }, - "npm:@brillout/json-serializer": { - "type": "npm", - "name": "npm:@brillout/json-serializer", - "data": { - "version": "0.5.22", - "packageName": "@brillout/json-serializer", - "hash": "sha512-jzcOqcbysKICCeZNlwa755tffF+HfMj8G+ZSuvHe06aCpp4xQiU2D91RHFUeJpF0/RNyfa5uWZ0pRuvFoeoqow==" - } - }, - "npm:@brillout/libassert": { - "type": "npm", - "name": "npm:@brillout/libassert", - "data": { - "version": "0.5.8", - "packageName": "@brillout/libassert", - "hash": "sha512-u/fu+jTRUdNdbLONGq1plCfh+k2/XjSbGVTfnF3rHnSPZd+ABWp0XinR5ifrFkyGOzMbzv8IiQ44lZ4U6ZGrGA==" - } - }, - "npm:@brillout/picocolors": { - "type": "npm", - "name": "npm:@brillout/picocolors", - "data": { - "version": "1.0.30", - "packageName": "@brillout/picocolors", - "hash": "sha512-xJjdgyN1H0qh2nB2xlzazIipiDixuUd9oD5msh/Qv5bXJG9j8MSD/m4lREt6Z10ej6FF31b8vB4tdT7lDUbiyA==" - } - }, - "npm:@brillout/vite-plugin-server-entry": { - "type": "npm", - "name": "npm:@brillout/vite-plugin-server-entry", - "data": { - "version": "0.7.18", - "packageName": "@brillout/vite-plugin-server-entry", - "hash": "sha512-j3neG+vaIZ2AbP2/vGgaIyJwrFIxlK3xd3Ey2EGBswCvAGeI4QSSfXGbb7R3b3H8223PgTTsWOZuZH0Y8Ope2w==" - } - }, - "npm:@browserless/devices": { - "type": "npm", - "name": "npm:@browserless/devices", - "data": { - "version": "10.11.3", - "packageName": "@browserless/devices", - "hash": "sha512-EodVNBa9yLoR18gyuOeLiGRislxDmMLDF0GId9y0cei6lfUE4kW98RtdZwfMul+tVfffpyXK5/SYNbNO+33m5w==" - } - }, - "npm:@browserless/errors": { - "type": "npm", - "name": "npm:@browserless/errors", - "data": { - "version": "10.12.1", - "packageName": "@browserless/errors", - "hash": "sha512-qqbUbNeAFhCNihc4ZxYXKnBGfTP6+ZxqhhapVQz/BRwcEWnBlD6MT9Dgo5Anp7+CBKwWW4TQvkaa294LuuryYQ==" - } - }, - "npm:@browserless/goto": { - "type": "npm", - "name": "npm:@browserless/goto", - "data": { - "version": "10.11.4", - "packageName": "@browserless/goto", - "hash": "sha512-Cpf78Nc8xA6pJa1Jm6dH+uvpEklkkkkG/qYoi2pLK6Zfmv2H6RnirE/S3CSTnKMf97jtCd/JiCOJW3bX9M0bRA==" - } - }, - "npm:@browserless/pdf": { - "type": "npm", - "name": "npm:@browserless/pdf", - "data": { - "version": "10.12.5", - "packageName": "@browserless/pdf", - "hash": "sha512-dCLzs7q+G+17c942tjm1ZqjmLc8hoB/+ruDQjmHK1ERHd+2fKsanbCOAfV7wiBKChWKToldsG9STMV8ixGow1A==" - } - }, - "npm:@browserless/screenshot": { - "type": "npm", - "name": "npm:@browserless/screenshot", - "data": { - "version": "10.12.5", - "packageName": "@browserless/screenshot", - "hash": "sha512-9MtpHCFe1t9zaQY+kHuknpCQLYm85R/qNjgz/dNSWEjqN1PDpqnpeZqdFwdAnM1++6dpW85EYFIkyI6vpBHl3g==" - } - }, - "npm:@chevrotain/cst-dts-gen": { - "type": "npm", - "name": "npm:@chevrotain/cst-dts-gen", - "data": { - "version": "10.5.0", - "packageName": "@chevrotain/cst-dts-gen", - "hash": "sha512-lhmC/FyqQ2o7pGK4Om+hzuDrm9rhFYIJ/AXoQBeongmn870Xeb0L6oGEiuR8nohFNL5sMaQEJWCxr1oIVIVXrw==" - } - }, - "npm:@chevrotain/gast": { - "type": "npm", - "name": "npm:@chevrotain/gast", - "data": { - "version": "10.5.0", - "packageName": "@chevrotain/gast", - "hash": "sha512-pXdMJ9XeDAbgOWKuD1Fldz4ieCs6+nLNmyVhe2gZVqoO7v8HXuHYs5OV2EzUtbuai37TlOAQHrTDvxMnvMJz3A==" - } - }, - "npm:@chevrotain/types": { - "type": "npm", - "name": "npm:@chevrotain/types", - "data": { - "version": "10.5.0", - "packageName": "@chevrotain/types", - "hash": "sha512-f1MAia0x/pAVPWH/T73BJVyO2XU5tI4/iE7cnxb7tqdNTNhQI3Uq3XkqcoteTmD4t1aM0LbHCJOhgIDn07kl2A==" - } - }, - "npm:@chevrotain/utils": { - "type": "npm", - "name": "npm:@chevrotain/utils", - "data": { - "version": "10.5.0", - "packageName": "@chevrotain/utils", - "hash": "sha512-hBzuU5+JjB2cqNZyszkDHZgOSrUUT8V3dhgRl8Q9Gp6dAj/H5+KILGjbhDpc3Iy9qmqlm/akuOI2ut9VUtzJxQ==" - } - }, - "npm:@cloudflare/kv-asset-handler": { - "type": "npm", - "name": "npm:@cloudflare/kv-asset-handler", - "data": { - "version": "0.4.2", - "packageName": "@cloudflare/kv-asset-handler", - "hash": "sha512-SIOD2DxrRRwQ+jgzlXCqoEFiKOFqaPjhnNTGKXSRLvp1HiOvapLaFG2kEr9dYQTYe8rKrd9uvDUzmAITeNyaHQ==" - } - }, - "npm:@cloudflare/unenv-preset": { - "type": "npm", - "name": "npm:@cloudflare/unenv-preset", - "data": { - "version": "2.16.0", - "packageName": "@cloudflare/unenv-preset", - "hash": "sha512-8ovsRpwzPoEqPUzoErAYVv8l3FMZNeBVQfJTvtzP4AgLSRGZISRfuChFxHWUQd3n6cnrwkuTGxT+2cGo8EsyYg==" - } - }, - "npm:@cloudflare/unenv-preset@2.7.13": { - "type": "npm", - "name": "npm:@cloudflare/unenv-preset@2.7.13", - "data": { - "version": "2.7.13", - "packageName": "@cloudflare/unenv-preset", - "hash": "sha512-NulO1H8R/DzsJguLC0ndMuk4Ufv0KSlN+E54ay9rn9ZCQo0kpAPwwh3LhgpZ96a3Dr6L9LqW57M4CqC34iLOvw==" - } - }, - "npm:@cloudflare/vite-plugin": { - "type": "npm", - "name": "npm:@cloudflare/vite-plugin", - "data": { - "version": "1.19.0", - "packageName": "@cloudflare/vite-plugin", - "hash": "sha512-5WpXYB7vwLnqlMyGSrPOO0nKynbn/nA33VXRPQg3II7q3T/3GOACYq/pnv9WBfcq4OnTdehJFm72Zn+psfhBXQ==" - } - }, - "npm:@cloudflare/workerd-darwin-64@1.20251217.0": { - "type": "npm", - "name": "npm:@cloudflare/workerd-darwin-64@1.20251217.0", - "data": { - "version": "1.20251217.0", - "packageName": "@cloudflare/workerd-darwin-64", - "hash": "sha512-DN6vT+9ho61d/1/YuILW4VS+N1JBLaixWRL1vqNmhgbf8J8VHwWWotrRruEUYigJKx2yZyw6YsasE+yLXgx/Fw==" - } - }, - "npm:@cloudflare/workerd-darwin-64@1.20260317.1": { - "type": "npm", - "name": "npm:@cloudflare/workerd-darwin-64@1.20260317.1", - "data": { - "version": "1.20260317.1", - "packageName": "@cloudflare/workerd-darwin-64", - "hash": "sha512-8hjh3sPMwY8M/zedq3/sXoA2Q4BedlGufn3KOOleIG+5a4ReQKLlUah140D7J6zlKmYZAFMJ4tWC7hCuI/s79g==" - } - }, - "npm:@cloudflare/workerd-darwin-arm64@1.20251217.0": { - "type": "npm", - "name": "npm:@cloudflare/workerd-darwin-arm64@1.20251217.0", - "data": { - "version": "1.20251217.0", - "packageName": "@cloudflare/workerd-darwin-arm64", - "hash": "sha512-5nZOpRTkHmtcTc4Wbr1mj/O3dLb6aHZSiJuVBgtdbVcVmOXueSay3hnw1PXEyR+vpTKGUPkM+omUIslKHWnXDw==" - } - }, - "npm:@cloudflare/workerd-darwin-arm64@1.20260317.1": { - "type": "npm", - "name": "npm:@cloudflare/workerd-darwin-arm64@1.20260317.1", - "data": { - "version": "1.20260317.1", - "packageName": "@cloudflare/workerd-darwin-arm64", - "hash": "sha512-M/MnNyvO5HMgoIdr3QHjdCj2T1ki9gt0vIUnxYxBu9ISXS/jgtMl6chUVPJ7zHYBn9MyYr8ByeN6frjYxj0MGg==" - } - }, - "npm:@cloudflare/workerd-linux-64@1.20251217.0": { - "type": "npm", - "name": "npm:@cloudflare/workerd-linux-64@1.20251217.0", - "data": { - "version": "1.20251217.0", - "packageName": "@cloudflare/workerd-linux-64", - "hash": "sha512-uoPGhMaZVXPpCsU0oG3HQzyVpXCGi5rU+jcHRjUI7DXM4EwctBGvZ380Knkja36qtl+ZvSKVR1pUFSGdK+45Pg==" - } - }, - "npm:@cloudflare/workerd-linux-64": { - "type": "npm", - "name": "npm:@cloudflare/workerd-linux-64", - "data": { - "version": "1.20260317.1", - "packageName": "@cloudflare/workerd-linux-64", - "hash": "sha512-1ltuEjkRcS3fsVF7CxsKlWiRmzq2ZqMfqDN0qUOgbUwkpXsLVJsXmoblaLf5OP00ELlcgF0QsN0p2xPEua4Uug==" - } - }, - "npm:@cloudflare/workerd-linux-arm64@1.20251217.0": { - "type": "npm", - "name": "npm:@cloudflare/workerd-linux-arm64@1.20251217.0", - "data": { - "version": "1.20251217.0", - "packageName": "@cloudflare/workerd-linux-arm64", - "hash": "sha512-ixHnHKsiz1Xko+eDgCJOZ7EEUZKtmnYq3AjW3nkVcLFypSLks4C29E45zVewdaN4wq8sCLeyQCl6r1kS17+DQQ==" - } - }, - "npm:@cloudflare/workerd-linux-arm64@1.20260317.1": { - "type": "npm", - "name": "npm:@cloudflare/workerd-linux-arm64@1.20260317.1", - "data": { - "version": "1.20260317.1", - "packageName": "@cloudflare/workerd-linux-arm64", - "hash": "sha512-3QrNnPF1xlaNwkHpasvRvAMidOvQs2NhXQmALJrEfpIJ/IDL2la8g499yXp3eqhG3hVMCB07XVY149GTs42Xtw==" - } - }, - "npm:@cloudflare/workerd-windows-64@1.20251217.0": { - "type": "npm", - "name": "npm:@cloudflare/workerd-windows-64@1.20251217.0", - "data": { - "version": "1.20251217.0", - "packageName": "@cloudflare/workerd-windows-64", - "hash": "sha512-rP6USX+7ctynz3AtmKi+EvlLP3Xdr1ETrSdcnv693/I5QdUwBxq4yE1Lj6CV7GJizX6opXKYg8QMq0Q4eB9zRQ==" - } - }, - "npm:@cloudflare/workerd-windows-64@1.20260317.1": { - "type": "npm", - "name": "npm:@cloudflare/workerd-windows-64@1.20260317.1", - "data": { - "version": "1.20260317.1", - "packageName": "@cloudflare/workerd-windows-64", - "hash": "sha512-MfZTz+7LfuIpMGTa3RLXHX8Z/pnycZLItn94WRdHr8LPVet+C5/1Nzei399w/jr3+kzT4pDKk26JF/tlI5elpQ==" - } - }, - "npm:@cloudflare/workers-types": { - "type": "npm", - "name": "npm:@cloudflare/workers-types", - "data": { - "version": "4.20260317.1", - "packageName": "@cloudflare/workers-types", - "hash": "sha512-+G4eVwyCpm8Au1ex8vQBCuA9wnwqetz4tPNRoB/53qvktERWBRMQnrtvC1k584yRE3emMThtuY0gWshvSJ++PQ==" - } - }, - "npm:@compiled/babel-plugin-strip-runtime": { - "type": "npm", - "name": "npm:@compiled/babel-plugin-strip-runtime", - "data": { - "version": "0.37.1", - "packageName": "@compiled/babel-plugin-strip-runtime", - "hash": "sha512-GESC3QXGhLd5ULzAre8NvbFmrICqD/lUX4VBse00VZmSeMDgbMMetPwFn9mfPdwiUj9tLXNTVswJzyT3OWYwtA==" - } - }, - "npm:@compiled/babel-plugin": { - "type": "npm", - "name": "npm:@compiled/babel-plugin", - "data": { - "version": "0.37.1", - "packageName": "@compiled/babel-plugin", - "hash": "sha512-lZUBJnySZlOHq16EnAUqnmz0EfOkoeclpH1nXZzs4aCJN7NOosnr2UPLbJtAsPuNJ1P2zstMSDGntMKhKOcA8w==" - } - }, - "npm:@compiled/css": { - "type": "npm", - "name": "npm:@compiled/css", - "data": { - "version": "0.20.0", - "packageName": "@compiled/css", - "hash": "sha512-cgRIqM+VWrwiG2S6b9DMkKm9bO5zG8ZMWvU6MNoKzQtkOPFFQ/jU4McN+4ilahHoJxUlHhLE8NoF0qL2UwzH4w==" - } - }, - "npm:@compiled/react": { - "type": "npm", - "name": "npm:@compiled/react", - "data": { - "version": "0.20.0", - "packageName": "@compiled/react", - "hash": "sha512-mEJuYGFxIDST1H7CpksyE6a3HRVRQmeDal26O+bCHTEZlPp7iKvs5KD1FOmd2palng+S60dPFFG+UuoZDRILwA==" - } - }, - "npm:@compiled/utils": { - "type": "npm", - "name": "npm:@compiled/utils", - "data": { - "version": "0.13.2", - "packageName": "@compiled/utils", - "hash": "sha512-UZZv/P+pKN78BSvyu8lHO18sYS2XC1qB/Afi9ggol0wAJFY8eWrAoLvWzXDC6Pt495KOLqUX6HpWXQPyGF9ojA==" - } - }, - "npm:@cspotcode/source-map-support": { - "type": "npm", - "name": "npm:@cspotcode/source-map-support", - "data": { - "version": "0.8.1", - "packageName": "@cspotcode/source-map-support", - "hash": "sha512-IchNf6dN4tHoMFIn/7OE8LWZ19Y6q/67Bmf6vnGREv8RSbBVb9LPJxEcnwrcwX6ixSvaiGoomAUvu4YSxXrVgw==" - } - }, - "npm:@drizzle-team/brocli": { - "type": "npm", - "name": "npm:@drizzle-team/brocli", - "data": { - "version": "0.10.2", - "packageName": "@drizzle-team/brocli", - "hash": "sha512-z33Il7l5dKjUgGULTqBsQBQwckHh5AbIuxhdsIxDDiZAzBOrZO6q9ogcWC65kU382AfynTfgNumVcNIjuIua6w==" - } - }, - "npm:@duckduckgo/autoconsent": { - "type": "npm", - "name": "npm:@duckduckgo/autoconsent", - "data": { - "version": "14.56.0", - "packageName": "@duckduckgo/autoconsent", - "hash": "sha512-0gImNtILoEb4LtQkCXJ7pjwqV3lY4IG7sm9y+cbB218MqKKoMJ/zht9UEI0bJ2J2IZZ0GEcLQE9TsQ3AISFZ5Q==" - } - }, - "npm:@electric-sql/pglite-socket": { - "type": "npm", - "name": "npm:@electric-sql/pglite-socket", - "data": { - "version": "0.0.20", - "packageName": "@electric-sql/pglite-socket", - "hash": "sha512-J5nLGsicnD9wJHnno9r+DGxfcZWh+YJMCe0q/aCgtG6XOm9Z7fKeite8IZSNXgZeGltSigM9U/vAWZQWdgcSFg==" - } - }, - "npm:@electric-sql/pglite-tools": { - "type": "npm", - "name": "npm:@electric-sql/pglite-tools", - "data": { - "version": "0.2.20", - "packageName": "@electric-sql/pglite-tools", - "hash": "sha512-BK50ZnYa3IG7ztXhtgYf0Q7zijV32Iw1cYS8C+ThdQlwx12V5VZ9KRJ42y82Hyb4PkTxZQklVQA9JHyUlex33A==" - } - }, - "npm:@electric-sql/pglite": { - "type": "npm", - "name": "npm:@electric-sql/pglite", - "data": { - "version": "0.3.15", - "packageName": "@electric-sql/pglite", - "hash": "sha512-Cj++n1Mekf9ETfdc16TlDi+cDDQF0W7EcbyRHYOAeZdsAe8M/FJg18itDTSwyHfar2WIezawM9o0EKaRGVKygQ==" - } - }, - "npm:@emnapi/core": { - "type": "npm", - "name": "npm:@emnapi/core", - "data": { - "version": "1.7.1", - "packageName": "@emnapi/core", - "hash": "sha512-o1uhUASyo921r2XtHYOHy7gdkGLge8ghBEQHMWmyJFoXlpU58kIrhhN3w26lpQb6dspetweapMn2CSNwQ8I4wg==" - } - }, - "npm:@emnapi/runtime": { - "type": "npm", - "name": "npm:@emnapi/runtime", - "data": { - "version": "1.7.1", - "packageName": "@emnapi/runtime", - "hash": "sha512-PVtJr5CmLwYAU9PZDMITZoR5iAOShYREoR45EyyLrbntV50mdePTgUn4AmOw90Ifcj+x2kRjdzr1HP3RrNiHGA==" - } - }, - "npm:@emnapi/wasi-threads": { - "type": "npm", - "name": "npm:@emnapi/wasi-threads", - "data": { - "version": "1.1.0", - "packageName": "@emnapi/wasi-threads", - "hash": "sha512-WI0DdZ8xFSbgMjR1sFsKABJ/C5OnRrjT06JXbZKexJGrDuPTzZdDYfFlsgcCXCyf+suG5QU2e/y1Wo2V/OapLQ==" - } - }, - "npm:@emotion/is-prop-valid": { - "type": "npm", - "name": "npm:@emotion/is-prop-valid", - "data": { - "version": "1.4.0", - "packageName": "@emotion/is-prop-valid", - "hash": "sha512-QgD4fyscGcbbKwJmqNvUMSE02OsHUa+lAWKdEUIJKgqe5IwRSKd7+KhibEWdaKwgjLj0DRSHA9biAIqGBk05lw==" - } - }, - "npm:@emotion/memoize": { - "type": "npm", - "name": "npm:@emotion/memoize", - "data": { - "version": "0.9.0", - "packageName": "@emotion/memoize", - "hash": "sha512-30FAj7/EoJ5mwVPOWhAyCX+FPfMDrVecJAM+Iw9NRoSl4BBAQeqj4cApHHUXOVvIPgLVDsCFoz/hGD+5QQD1GQ==" - } - }, - "npm:@esbuild-kit/core-utils": { - "type": "npm", - "name": "npm:@esbuild-kit/core-utils", - "data": { - "version": "3.3.2", - "packageName": "@esbuild-kit/core-utils", - "hash": "sha512-sPRAnw9CdSsRmEtnsl2WXWdyquogVpB3yZ3dgwJfe8zrOzTsV7cJvmwrKVa+0ma5BoiGJ+BoqkMvawbayKUsqQ==" - } - }, - "npm:@esbuild-kit/esm-loader": { - "type": "npm", - "name": "npm:@esbuild-kit/esm-loader", - "data": { - "version": "2.6.5", - "packageName": "@esbuild-kit/esm-loader", - "hash": "sha512-FxEMIkJKnodyA1OaCUoEvbYRkoZlLZ4d/eXFu9Fh8CbBBgP5EmZxrfTRyN0qpXZ4vOvqnE5YdRdcrmUUXuU+dA==" - } - }, - "npm:@esbuild/aix-ppc64@0.25.12": { - "type": "npm", - "name": "npm:@esbuild/aix-ppc64@0.25.12", - "data": { - "version": "0.25.12", - "packageName": "@esbuild/aix-ppc64", - "hash": "sha512-Hhmwd6CInZ3dwpuGTF8fJG6yoWmsToE+vYgD4nytZVxcu1ulHpUQRAB1UJ8+N1Am3Mz4+xOByoQoSZf4D+CpkA==" - } - }, - "npm:@esbuild/aix-ppc64@0.27.3": { - "type": "npm", - "name": "npm:@esbuild/aix-ppc64@0.27.3", - "data": { - "version": "0.27.3", - "packageName": "@esbuild/aix-ppc64", - "hash": "sha512-9fJMTNFTWZMh5qwrBItuziu834eOCUcEqymSH7pY+zoMVEZg3gcPuBNxH1EvfVYe9h0x/Ptw8KBzv7qxb7l8dg==" - } - }, - "npm:@esbuild/aix-ppc64@0.27.4": { - "type": "npm", - "name": "npm:@esbuild/aix-ppc64@0.27.4", - "data": { - "version": "0.27.4", - "packageName": "@esbuild/aix-ppc64", - "hash": "sha512-cQPwL2mp2nSmHHJlCyoXgHGhbEPMrEEU5xhkcy3Hs/O7nGZqEpZ2sUtLaL9MORLtDfRvVl2/3PAuEkYZH0Ty8Q==" - } - }, - "npm:@esbuild/android-arm64@0.18.20": { - "type": "npm", - "name": "npm:@esbuild/android-arm64@0.18.20", - "data": { - "version": "0.18.20", - "packageName": "@esbuild/android-arm64", - "hash": "sha512-Nz4rJcchGDtENV0eMKUNa6L12zz2zBDXuhj/Vjh18zGqB44Bi7MBMSXjgunJgjRhCmKOjnPuZp4Mb6OKqtMHLQ==" - } - }, - "npm:@esbuild/android-arm64@0.25.12": { - "type": "npm", - "name": "npm:@esbuild/android-arm64@0.25.12", - "data": { - "version": "0.25.12", - "packageName": "@esbuild/android-arm64", - "hash": "sha512-6AAmLG7zwD1Z159jCKPvAxZd4y/VTO0VkprYy+3N2FtJ8+BQWFXU+OxARIwA46c5tdD9SsKGZ/1ocqBS/gAKHg==" - } - }, - "npm:@esbuild/android-arm64@0.27.3": { - "type": "npm", - "name": "npm:@esbuild/android-arm64@0.27.3", - "data": { - "version": "0.27.3", - "packageName": "@esbuild/android-arm64", - "hash": "sha512-YdghPYUmj/FX2SYKJ0OZxf+iaKgMsKHVPF1MAq/P8WirnSpCStzKJFjOjzsW0QQ7oIAiccHdcqjbHmJxRb/dmg==" - } - }, - "npm:@esbuild/android-arm64@0.27.4": { - "type": "npm", - "name": "npm:@esbuild/android-arm64@0.27.4", - "data": { - "version": "0.27.4", - "packageName": "@esbuild/android-arm64", - "hash": "sha512-gdLscB7v75wRfu7QSm/zg6Rx29VLdy9eTr2t44sfTW7CxwAtQghZ4ZnqHk3/ogz7xao0QAgrkradbBzcqFPasw==" - } - }, - "npm:@esbuild/android-arm@0.18.20": { - "type": "npm", - "name": "npm:@esbuild/android-arm@0.18.20", - "data": { - "version": "0.18.20", - "packageName": "@esbuild/android-arm", - "hash": "sha512-fyi7TDI/ijKKNZTUJAQqiG5T7YjJXgnzkURqmGj13C6dCqckZBLdl4h7bkhHt/t0WP+zO9/zwroDvANaOqO5Sw==" - } - }, - "npm:@esbuild/android-arm@0.25.12": { - "type": "npm", - "name": "npm:@esbuild/android-arm@0.25.12", - "data": { - "version": "0.25.12", - "packageName": "@esbuild/android-arm", - "hash": "sha512-VJ+sKvNA/GE7Ccacc9Cha7bpS8nyzVv0jdVgwNDaR4gDMC/2TTRc33Ip8qrNYUcpkOHUT5OZ0bUcNNVZQ9RLlg==" - } - }, - "npm:@esbuild/android-arm@0.27.3": { - "type": "npm", - "name": "npm:@esbuild/android-arm@0.27.3", - "data": { - "version": "0.27.3", - "packageName": "@esbuild/android-arm", - "hash": "sha512-i5D1hPY7GIQmXlXhs2w8AWHhenb00+GxjxRncS2ZM7YNVGNfaMxgzSGuO8o8SJzRc/oZwU2bcScvVERk03QhzA==" - } - }, - "npm:@esbuild/android-arm@0.27.4": { - "type": "npm", - "name": "npm:@esbuild/android-arm@0.27.4", - "data": { - "version": "0.27.4", - "packageName": "@esbuild/android-arm", - "hash": "sha512-X9bUgvxiC8CHAGKYufLIHGXPJWnr0OCdR0anD2e21vdvgCI8lIfqFbnoeOz7lBjdrAGUhqLZLcQo6MLhTO2DKQ==" - } - }, - "npm:@esbuild/android-x64@0.18.20": { - "type": "npm", - "name": "npm:@esbuild/android-x64@0.18.20", - "data": { - "version": "0.18.20", - "packageName": "@esbuild/android-x64", - "hash": "sha512-8GDdlePJA8D6zlZYJV/jnrRAi6rOiNaCC/JclcXpB+KIuvfBN4owLtgzY2bsxnx666XjJx2kDPUmnTtR8qKQUg==" - } - }, - "npm:@esbuild/android-x64@0.25.12": { - "type": "npm", - "name": "npm:@esbuild/android-x64@0.25.12", - "data": { - "version": "0.25.12", - "packageName": "@esbuild/android-x64", - "hash": "sha512-5jbb+2hhDHx5phYR2By8GTWEzn6I9UqR11Kwf22iKbNpYrsmRB18aX/9ivc5cabcUiAT/wM+YIZ6SG9QO6a8kg==" - } - }, - "npm:@esbuild/android-x64@0.27.3": { - "type": "npm", - "name": "npm:@esbuild/android-x64@0.27.3", - "data": { - "version": "0.27.3", - "packageName": "@esbuild/android-x64", - "hash": "sha512-IN/0BNTkHtk8lkOM8JWAYFg4ORxBkZQf9zXiEOfERX/CzxW3Vg1ewAhU7QSWQpVIzTW+b8Xy+lGzdYXV6UZObQ==" - } - }, - "npm:@esbuild/android-x64@0.27.4": { - "type": "npm", - "name": "npm:@esbuild/android-x64@0.27.4", - "data": { - "version": "0.27.4", - "packageName": "@esbuild/android-x64", - "hash": "sha512-PzPFnBNVF292sfpfhiyiXCGSn9HZg5BcAz+ivBuSsl6Rk4ga1oEXAamhOXRFyMcjwr2DVtm40G65N3GLeH1Lvw==" - } - }, - "npm:@esbuild/darwin-arm64@0.18.20": { - "type": "npm", - "name": "npm:@esbuild/darwin-arm64@0.18.20", - "data": { - "version": "0.18.20", - "packageName": "@esbuild/darwin-arm64", - "hash": "sha512-bxRHW5kHU38zS2lPTPOyuyTm+S+eobPUnTNkdJEfAddYgEcll4xkT8DB9d2008DtTbl7uJag2HuE5NZAZgnNEA==" - } - }, - "npm:@esbuild/darwin-arm64@0.25.12": { - "type": "npm", - "name": "npm:@esbuild/darwin-arm64@0.25.12", - "data": { - "version": "0.25.12", - "packageName": "@esbuild/darwin-arm64", - "hash": "sha512-N3zl+lxHCifgIlcMUP5016ESkeQjLj/959RxxNYIthIg+CQHInujFuXeWbWMgnTo4cp5XVHqFPmpyu9J65C1Yg==" - } - }, - "npm:@esbuild/darwin-arm64@0.27.3": { - "type": "npm", - "name": "npm:@esbuild/darwin-arm64@0.27.3", - "data": { - "version": "0.27.3", - "packageName": "@esbuild/darwin-arm64", - "hash": "sha512-Re491k7ByTVRy0t3EKWajdLIr0gz2kKKfzafkth4Q8A5n1xTHrkqZgLLjFEHVD+AXdUGgQMq+Godfq45mGpCKg==" - } - }, - "npm:@esbuild/darwin-arm64@0.27.4": { - "type": "npm", - "name": "npm:@esbuild/darwin-arm64@0.27.4", - "data": { - "version": "0.27.4", - "packageName": "@esbuild/darwin-arm64", - "hash": "sha512-b7xaGIwdJlht8ZFCvMkpDN6uiSmnxxK56N2GDTMYPr2/gzvfdQN8rTfBsvVKmIVY/X7EM+/hJKEIbbHs9oA4tQ==" - } - }, - "npm:@esbuild/darwin-x64@0.18.20": { - "type": "npm", - "name": "npm:@esbuild/darwin-x64@0.18.20", - "data": { - "version": "0.18.20", - "packageName": "@esbuild/darwin-x64", - "hash": "sha512-pc5gxlMDxzm513qPGbCbDukOdsGtKhfxD1zJKXjCCcU7ju50O7MeAZ8c4krSJcOIJGFR+qx21yMMVYwiQvyTyQ==" - } - }, - "npm:@esbuild/darwin-x64@0.25.12": { - "type": "npm", - "name": "npm:@esbuild/darwin-x64@0.25.12", - "data": { - "version": "0.25.12", - "packageName": "@esbuild/darwin-x64", - "hash": "sha512-HQ9ka4Kx21qHXwtlTUVbKJOAnmG1ipXhdWTmNXiPzPfWKpXqASVcWdnf2bnL73wgjNrFXAa3yYvBSd9pzfEIpA==" - } - }, - "npm:@esbuild/darwin-x64@0.27.3": { - "type": "npm", - "name": "npm:@esbuild/darwin-x64@0.27.3", - "data": { - "version": "0.27.3", - "packageName": "@esbuild/darwin-x64", - "hash": "sha512-vHk/hA7/1AckjGzRqi6wbo+jaShzRowYip6rt6q7VYEDX4LEy1pZfDpdxCBnGtl+A5zq8iXDcyuxwtv3hNtHFg==" - } - }, - "npm:@esbuild/darwin-x64@0.27.4": { - "type": "npm", - "name": "npm:@esbuild/darwin-x64@0.27.4", - "data": { - "version": "0.27.4", - "packageName": "@esbuild/darwin-x64", - "hash": "sha512-sR+OiKLwd15nmCdqpXMnuJ9W2kpy0KigzqScqHI3Hqwr7IXxBp3Yva+yJwoqh7rE8V77tdoheRYataNKL4QrPw==" - } - }, - "npm:@esbuild/freebsd-arm64@0.18.20": { - "type": "npm", - "name": "npm:@esbuild/freebsd-arm64@0.18.20", - "data": { - "version": "0.18.20", - "packageName": "@esbuild/freebsd-arm64", - "hash": "sha512-yqDQHy4QHevpMAaxhhIwYPMv1NECwOvIpGCZkECn8w2WFHXjEwrBn3CeNIYsibZ/iZEUemj++M26W3cNR5h+Tw==" - } - }, - "npm:@esbuild/freebsd-arm64@0.25.12": { - "type": "npm", - "name": "npm:@esbuild/freebsd-arm64@0.25.12", - "data": { - "version": "0.25.12", - "packageName": "@esbuild/freebsd-arm64", - "hash": "sha512-gA0Bx759+7Jve03K1S0vkOu5Lg/85dou3EseOGUes8flVOGxbhDDh/iZaoek11Y8mtyKPGF3vP8XhnkDEAmzeg==" - } - }, - "npm:@esbuild/freebsd-arm64@0.27.3": { - "type": "npm", - "name": "npm:@esbuild/freebsd-arm64@0.27.3", - "data": { - "version": "0.27.3", - "packageName": "@esbuild/freebsd-arm64", - "hash": "sha512-ipTYM2fjt3kQAYOvo6vcxJx3nBYAzPjgTCk7QEgZG8AUO3ydUhvelmhrbOheMnGOlaSFUoHXB6un+A7q4ygY9w==" - } - }, - "npm:@esbuild/freebsd-arm64@0.27.4": { - "type": "npm", - "name": "npm:@esbuild/freebsd-arm64@0.27.4", - "data": { - "version": "0.27.4", - "packageName": "@esbuild/freebsd-arm64", - "hash": "sha512-jnfpKe+p79tCnm4GVav68A7tUFeKQwQyLgESwEAUzyxk/TJr4QdGog9sqWNcUbr/bZt/O/HXouspuQDd9JxFSw==" - } - }, - "npm:@esbuild/freebsd-x64@0.18.20": { - "type": "npm", - "name": "npm:@esbuild/freebsd-x64@0.18.20", - "data": { - "version": "0.18.20", - "packageName": "@esbuild/freebsd-x64", - "hash": "sha512-tgWRPPuQsd3RmBZwarGVHZQvtzfEBOreNuxEMKFcd5DaDn2PbBxfwLcj4+aenoh7ctXcbXmOQIn8HI6mCSw5MQ==" - } - }, - "npm:@esbuild/freebsd-x64@0.25.12": { - "type": "npm", - "name": "npm:@esbuild/freebsd-x64@0.25.12", - "data": { - "version": "0.25.12", - "packageName": "@esbuild/freebsd-x64", - "hash": "sha512-TGbO26Yw2xsHzxtbVFGEXBFH0FRAP7gtcPE7P5yP7wGy7cXK2oO7RyOhL5NLiqTlBh47XhmIUXuGciXEqYFfBQ==" - } - }, - "npm:@esbuild/freebsd-x64@0.27.3": { - "type": "npm", - "name": "npm:@esbuild/freebsd-x64@0.27.3", - "data": { - "version": "0.27.3", - "packageName": "@esbuild/freebsd-x64", - "hash": "sha512-dDk0X87T7mI6U3K9VjWtHOXqwAMJBNN2r7bejDsc+j03SEjtD9HrOl8gVFByeM0aJksoUuUVU9TBaZa2rgj0oA==" - } - }, - "npm:@esbuild/freebsd-x64@0.27.4": { - "type": "npm", - "name": "npm:@esbuild/freebsd-x64@0.27.4", - "data": { - "version": "0.27.4", - "packageName": "@esbuild/freebsd-x64", - "hash": "sha512-2kb4ceA/CpfUrIcTUl1wrP/9ad9Atrp5J94Lq69w7UwOMolPIGrfLSvAKJp0RTvkPPyn6CIWrNy13kyLikZRZQ==" - } - }, - "npm:@esbuild/linux-arm64@0.18.20": { - "type": "npm", - "name": "npm:@esbuild/linux-arm64@0.18.20", - "data": { - "version": "0.18.20", - "packageName": "@esbuild/linux-arm64", - "hash": "sha512-2YbscF+UL7SQAVIpnWvYwM+3LskyDmPhe31pE7/aoTMFKKzIc9lLbyGUpmmb8a8AixOL61sQ/mFh3jEjHYFvdA==" - } - }, - "npm:@esbuild/linux-arm64@0.25.12": { - "type": "npm", - "name": "npm:@esbuild/linux-arm64@0.25.12", - "data": { - "version": "0.25.12", - "packageName": "@esbuild/linux-arm64", - "hash": "sha512-8bwX7a8FghIgrupcxb4aUmYDLp8pX06rGh5HqDT7bB+8Rdells6mHvrFHHW2JAOPZUbnjUpKTLg6ECyzvas2AQ==" - } - }, - "npm:@esbuild/linux-arm64@0.27.3": { - "type": "npm", - "name": "npm:@esbuild/linux-arm64@0.27.3", - "data": { - "version": "0.27.3", - "packageName": "@esbuild/linux-arm64", - "hash": "sha512-sZOuFz/xWnZ4KH3YfFrKCf1WyPZHakVzTiqji3WDc0BCl2kBwiJLCXpzLzUBLgmp4veFZdvN5ChW4Eq/8Fc2Fg==" - } - }, - "npm:@esbuild/linux-arm64@0.27.4": { - "type": "npm", - "name": "npm:@esbuild/linux-arm64@0.27.4", - "data": { - "version": "0.27.4", - "packageName": "@esbuild/linux-arm64", - "hash": "sha512-7nQOttdzVGth1iz57kxg9uCz57dxQLHWxopL6mYuYthohPKEK0vU0C3O21CcBK6KDlkYVcnDXY099HcCDXd9dA==" - } - }, - "npm:@esbuild/linux-arm@0.18.20": { - "type": "npm", - "name": "npm:@esbuild/linux-arm@0.18.20", - "data": { - "version": "0.18.20", - "packageName": "@esbuild/linux-arm", - "hash": "sha512-/5bHkMWnq1EgKr1V+Ybz3s1hWXok7mDFUMQ4cG10AfW3wL02PSZi5kFpYKrptDsgb2WAJIvRcDm+qIvXf/apvg==" - } - }, - "npm:@esbuild/linux-arm@0.25.12": { - "type": "npm", - "name": "npm:@esbuild/linux-arm@0.25.12", - "data": { - "version": "0.25.12", - "packageName": "@esbuild/linux-arm", - "hash": "sha512-lPDGyC1JPDou8kGcywY0YILzWlhhnRjdof3UlcoqYmS9El818LLfJJc3PXXgZHrHCAKs/Z2SeZtDJr5MrkxtOw==" - } - }, - "npm:@esbuild/linux-arm@0.27.3": { - "type": "npm", - "name": "npm:@esbuild/linux-arm@0.27.3", - "data": { - "version": "0.27.3", - "packageName": "@esbuild/linux-arm", - "hash": "sha512-s6nPv2QkSupJwLYyfS+gwdirm0ukyTFNl3KTgZEAiJDd+iHZcbTPPcWCcRYH+WlNbwChgH2QkE9NSlNrMT8Gfw==" - } - }, - "npm:@esbuild/linux-arm@0.27.4": { - "type": "npm", - "name": "npm:@esbuild/linux-arm@0.27.4", - "data": { - "version": "0.27.4", - "packageName": "@esbuild/linux-arm", - "hash": "sha512-aBYgcIxX/wd5n2ys0yESGeYMGF+pv6g0DhZr3G1ZG4jMfruU9Tl1i2Z+Wnj9/KjGz1lTLCcorqE2viePZqj4Eg==" - } - }, - "npm:@esbuild/linux-ia32@0.18.20": { - "type": "npm", - "name": "npm:@esbuild/linux-ia32@0.18.20", - "data": { - "version": "0.18.20", - "packageName": "@esbuild/linux-ia32", - "hash": "sha512-P4etWwq6IsReT0E1KHU40bOnzMHoH73aXp96Fs8TIT6z9Hu8G6+0SHSw9i2isWrD2nbx2qo5yUqACgdfVGx7TA==" - } - }, - "npm:@esbuild/linux-ia32@0.25.12": { - "type": "npm", - "name": "npm:@esbuild/linux-ia32@0.25.12", - "data": { - "version": "0.25.12", - "packageName": "@esbuild/linux-ia32", - "hash": "sha512-0y9KrdVnbMM2/vG8KfU0byhUN+EFCny9+8g202gYqSSVMonbsCfLjUO+rCci7pM0WBEtz+oK/PIwHkzxkyharA==" - } - }, - "npm:@esbuild/linux-ia32@0.27.3": { - "type": "npm", - "name": "npm:@esbuild/linux-ia32@0.27.3", - "data": { - "version": "0.27.3", - "packageName": "@esbuild/linux-ia32", - "hash": "sha512-yGlQYjdxtLdh0a3jHjuwOrxQjOZYD/C9PfdbgJJF3TIZWnm/tMd/RcNiLngiu4iwcBAOezdnSLAwQDPqTmtTYg==" - } - }, - "npm:@esbuild/linux-ia32@0.27.4": { - "type": "npm", - "name": "npm:@esbuild/linux-ia32@0.27.4", - "data": { - "version": "0.27.4", - "packageName": "@esbuild/linux-ia32", - "hash": "sha512-oPtixtAIzgvzYcKBQM/qZ3R+9TEUd1aNJQu0HhGyqtx6oS7qTpvjheIWBbes4+qu1bNlo2V4cbkISr8q6gRBFA==" - } - }, - "npm:@esbuild/linux-loong64@0.18.20": { - "type": "npm", - "name": "npm:@esbuild/linux-loong64@0.18.20", - "data": { - "version": "0.18.20", - "packageName": "@esbuild/linux-loong64", - "hash": "sha512-nXW8nqBTrOpDLPgPY9uV+/1DjxoQ7DoB2N8eocyq8I9XuqJ7BiAMDMf9n1xZM9TgW0J8zrquIb/A7s3BJv7rjg==" - } - }, - "npm:@esbuild/linux-loong64@0.25.12": { - "type": "npm", - "name": "npm:@esbuild/linux-loong64@0.25.12", - "data": { - "version": "0.25.12", - "packageName": "@esbuild/linux-loong64", - "hash": "sha512-h///Lr5a9rib/v1GGqXVGzjL4TMvVTv+s1DPoxQdz7l/AYv6LDSxdIwzxkrPW438oUXiDtwM10o9PmwS/6Z0Ng==" - } - }, - "npm:@esbuild/linux-loong64@0.27.3": { - "type": "npm", - "name": "npm:@esbuild/linux-loong64@0.27.3", - "data": { - "version": "0.27.3", - "packageName": "@esbuild/linux-loong64", - "hash": "sha512-WO60Sn8ly3gtzhyjATDgieJNet/KqsDlX5nRC5Y3oTFcS1l0KWba+SEa9Ja1GfDqSF1z6hif/SkpQJbL63cgOA==" - } - }, - "npm:@esbuild/linux-loong64@0.27.4": { - "type": "npm", - "name": "npm:@esbuild/linux-loong64@0.27.4", - "data": { - "version": "0.27.4", - "packageName": "@esbuild/linux-loong64", - "hash": "sha512-8mL/vh8qeCoRcFH2nM8wm5uJP+ZcVYGGayMavi8GmRJjuI3g1v6Z7Ni0JJKAJW+m0EtUuARb6Lmp4hMjzCBWzA==" - } - }, - "npm:@esbuild/linux-mips64el@0.18.20": { - "type": "npm", - "name": "npm:@esbuild/linux-mips64el@0.18.20", - "data": { - "version": "0.18.20", - "packageName": "@esbuild/linux-mips64el", - "hash": "sha512-d5NeaXZcHp8PzYy5VnXV3VSd2D328Zb+9dEq5HE6bw6+N86JVPExrA6O68OPwobntbNJ0pzCpUFZTo3w0GyetQ==" - } - }, - "npm:@esbuild/linux-mips64el@0.25.12": { - "type": "npm", - "name": "npm:@esbuild/linux-mips64el@0.25.12", - "data": { - "version": "0.25.12", - "packageName": "@esbuild/linux-mips64el", - "hash": "sha512-iyRrM1Pzy9GFMDLsXn1iHUm18nhKnNMWscjmp4+hpafcZjrr2WbT//d20xaGljXDBYHqRcl8HnxbX6uaA/eGVw==" - } - }, - "npm:@esbuild/linux-mips64el@0.27.3": { - "type": "npm", - "name": "npm:@esbuild/linux-mips64el@0.27.3", - "data": { - "version": "0.27.3", - "packageName": "@esbuild/linux-mips64el", - "hash": "sha512-APsymYA6sGcZ4pD6k+UxbDjOFSvPWyZhjaiPyl/f79xKxwTnrn5QUnXR5prvetuaSMsb4jgeHewIDCIWljrSxw==" - } - }, - "npm:@esbuild/linux-mips64el@0.27.4": { - "type": "npm", - "name": "npm:@esbuild/linux-mips64el@0.27.4", - "data": { - "version": "0.27.4", - "packageName": "@esbuild/linux-mips64el", - "hash": "sha512-1RdrWFFiiLIW7LQq9Q2NES+HiD4NyT8Itj9AUeCl0IVCA459WnPhREKgwrpaIfTOe+/2rdntisegiPWn/r/aAw==" - } - }, - "npm:@esbuild/linux-ppc64@0.18.20": { - "type": "npm", - "name": "npm:@esbuild/linux-ppc64@0.18.20", - "data": { - "version": "0.18.20", - "packageName": "@esbuild/linux-ppc64", - "hash": "sha512-WHPyeScRNcmANnLQkq6AfyXRFr5D6N2sKgkFo2FqguP44Nw2eyDlbTdZwd9GYk98DZG9QItIiTlFLHJHjxP3FA==" - } - }, - "npm:@esbuild/linux-ppc64@0.25.12": { - "type": "npm", - "name": "npm:@esbuild/linux-ppc64@0.25.12", - "data": { - "version": "0.25.12", - "packageName": "@esbuild/linux-ppc64", - "hash": "sha512-9meM/lRXxMi5PSUqEXRCtVjEZBGwB7P/D4yT8UG/mwIdze2aV4Vo6U5gD3+RsoHXKkHCfSxZKzmDssVlRj1QQA==" - } - }, - "npm:@esbuild/linux-ppc64@0.27.3": { - "type": "npm", - "name": "npm:@esbuild/linux-ppc64@0.27.3", - "data": { - "version": "0.27.3", - "packageName": "@esbuild/linux-ppc64", - "hash": "sha512-eizBnTeBefojtDb9nSh4vvVQ3V9Qf9Df01PfawPcRzJH4gFSgrObw+LveUyDoKU3kxi5+9RJTCWlj4FjYXVPEA==" - } - }, - "npm:@esbuild/linux-ppc64@0.27.4": { - "type": "npm", - "name": "npm:@esbuild/linux-ppc64@0.27.4", - "data": { - "version": "0.27.4", - "packageName": "@esbuild/linux-ppc64", - "hash": "sha512-tLCwNG47l3sd9lpfyx9LAGEGItCUeRCWeAx6x2Jmbav65nAwoPXfewtAdtbtit/pJFLUWOhpv0FpS6GQAmPrHA==" - } - }, - "npm:@esbuild/linux-riscv64@0.18.20": { - "type": "npm", - "name": "npm:@esbuild/linux-riscv64@0.18.20", - "data": { - "version": "0.18.20", - "packageName": "@esbuild/linux-riscv64", - "hash": "sha512-WSxo6h5ecI5XH34KC7w5veNnKkju3zBRLEQNY7mv5mtBmrP/MjNBCAlsM2u5hDBlS3NGcTQpoBvRzqBcRtpq1A==" - } - }, - "npm:@esbuild/linux-riscv64@0.25.12": { - "type": "npm", - "name": "npm:@esbuild/linux-riscv64@0.25.12", - "data": { - "version": "0.25.12", - "packageName": "@esbuild/linux-riscv64", - "hash": "sha512-Zr7KR4hgKUpWAwb1f3o5ygT04MzqVrGEGXGLnj15YQDJErYu/BGg+wmFlIDOdJp0PmB0lLvxFIOXZgFRrdjR0w==" - } - }, - "npm:@esbuild/linux-riscv64@0.27.3": { - "type": "npm", - "name": "npm:@esbuild/linux-riscv64@0.27.3", - "data": { - "version": "0.27.3", - "packageName": "@esbuild/linux-riscv64", - "hash": "sha512-3Emwh0r5wmfm3ssTWRQSyVhbOHvqegUDRd0WhmXKX2mkHJe1SFCMJhagUleMq+Uci34wLSipf8Lagt4LlpRFWQ==" - } - }, - "npm:@esbuild/linux-riscv64@0.27.4": { - "type": "npm", - "name": "npm:@esbuild/linux-riscv64@0.27.4", - "data": { - "version": "0.27.4", - "packageName": "@esbuild/linux-riscv64", - "hash": "sha512-BnASypppbUWyqjd1KIpU4AUBiIhVr6YlHx/cnPgqEkNoVOhHg+YiSVxM1RLfiy4t9cAulbRGTNCKOcqHrEQLIw==" - } - }, - "npm:@esbuild/linux-s390x@0.18.20": { - "type": "npm", - "name": "npm:@esbuild/linux-s390x@0.18.20", - "data": { - "version": "0.18.20", - "packageName": "@esbuild/linux-s390x", - "hash": "sha512-+8231GMs3mAEth6Ja1iK0a1sQ3ohfcpzpRLH8uuc5/KVDFneH6jtAJLFGafpzpMRO6DzJ6AvXKze9LfFMrIHVQ==" - } - }, - "npm:@esbuild/linux-s390x@0.25.12": { - "type": "npm", - "name": "npm:@esbuild/linux-s390x@0.25.12", - "data": { - "version": "0.25.12", - "packageName": "@esbuild/linux-s390x", - "hash": "sha512-MsKncOcgTNvdtiISc/jZs/Zf8d0cl/t3gYWX8J9ubBnVOwlk65UIEEvgBORTiljloIWnBzLs4qhzPkJcitIzIg==" - } - }, - "npm:@esbuild/linux-s390x@0.27.3": { - "type": "npm", - "name": "npm:@esbuild/linux-s390x@0.27.3", - "data": { - "version": "0.27.3", - "packageName": "@esbuild/linux-s390x", - "hash": "sha512-pBHUx9LzXWBc7MFIEEL0yD/ZVtNgLytvx60gES28GcWMqil8ElCYR4kvbV2BDqsHOvVDRrOxGySBM9Fcv744hw==" - } - }, - "npm:@esbuild/linux-s390x@0.27.4": { - "type": "npm", - "name": "npm:@esbuild/linux-s390x@0.27.4", - "data": { - "version": "0.27.4", - "packageName": "@esbuild/linux-s390x", - "hash": "sha512-+eUqgb/Z7vxVLezG8bVB9SfBie89gMueS+I0xYh2tJdw3vqA/0ImZJ2ROeWwVJN59ihBeZ7Tu92dF/5dy5FttA==" - } - }, - "npm:@esbuild/linux-x64@0.18.20": { - "type": "npm", - "name": "npm:@esbuild/linux-x64@0.18.20", - "data": { - "version": "0.18.20", - "packageName": "@esbuild/linux-x64", - "hash": "sha512-UYqiqemphJcNsFEskc73jQ7B9jgwjWrSayxawS6UVFZGWrAAtkzjxSqnoclCXxWtfwLdzU+vTpcNYhpn43uP1w==" - } - }, - "npm:@esbuild/linux-x64@0.25.12": { - "type": "npm", - "name": "npm:@esbuild/linux-x64@0.25.12", - "data": { - "version": "0.25.12", - "packageName": "@esbuild/linux-x64", - "hash": "sha512-uqZMTLr/zR/ed4jIGnwSLkaHmPjOjJvnm6TVVitAa08SLS9Z0VM8wIRx7gWbJB5/J54YuIMInDquWyYvQLZkgw==" - } - }, - "npm:@esbuild/linux-x64@0.27.3": { - "type": "npm", - "name": "npm:@esbuild/linux-x64@0.27.3", - "data": { - "version": "0.27.3", - "packageName": "@esbuild/linux-x64", - "hash": "sha512-Czi8yzXUWIQYAtL/2y6vogER8pvcsOsk5cpwL4Gk5nJqH5UZiVByIY8Eorm5R13gq+DQKYg0+JyQoytLQas4dA==" - } - }, - "npm:@esbuild/linux-x64": { - "type": "npm", - "name": "npm:@esbuild/linux-x64", - "data": { - "version": "0.27.4", - "packageName": "@esbuild/linux-x64", - "hash": "sha512-S5qOXrKV8BQEzJPVxAwnryi2+Iq5pB40gTEIT69BQONqR7JH1EPIcQ/Uiv9mCnn05jff9umq/5nqzxlqTOg9NA==" - } - }, - "npm:@esbuild/netbsd-arm64@0.25.12": { - "type": "npm", - "name": "npm:@esbuild/netbsd-arm64@0.25.12", - "data": { - "version": "0.25.12", - "packageName": "@esbuild/netbsd-arm64", - "hash": "sha512-xXwcTq4GhRM7J9A8Gv5boanHhRa/Q9KLVmcyXHCTaM4wKfIpWkdXiMog/KsnxzJ0A1+nD+zoecuzqPmCRyBGjg==" - } - }, - "npm:@esbuild/netbsd-arm64@0.27.3": { - "type": "npm", - "name": "npm:@esbuild/netbsd-arm64@0.27.3", - "data": { - "version": "0.27.3", - "packageName": "@esbuild/netbsd-arm64", - "hash": "sha512-sDpk0RgmTCR/5HguIZa9n9u+HVKf40fbEUt+iTzSnCaGvY9kFP0YKBWZtJaraonFnqef5SlJ8/TiPAxzyS+UoA==" - } - }, - "npm:@esbuild/netbsd-arm64@0.27.4": { - "type": "npm", - "name": "npm:@esbuild/netbsd-arm64@0.27.4", - "data": { - "version": "0.27.4", - "packageName": "@esbuild/netbsd-arm64", - "hash": "sha512-xHT8X4sb0GS8qTqiwzHqpY00C95DPAq7nAwX35Ie/s+LO9830hrMd3oX0ZMKLvy7vsonee73x0lmcdOVXFzd6Q==" - } - }, - "npm:@esbuild/netbsd-x64@0.18.20": { - "type": "npm", - "name": "npm:@esbuild/netbsd-x64@0.18.20", - "data": { - "version": "0.18.20", - "packageName": "@esbuild/netbsd-x64", - "hash": "sha512-iO1c++VP6xUBUmltHZoMtCUdPlnPGdBom6IrO4gyKPFFVBKioIImVooR5I83nTew5UOYrk3gIJhbZh8X44y06A==" - } - }, - "npm:@esbuild/netbsd-x64@0.25.12": { - "type": "npm", - "name": "npm:@esbuild/netbsd-x64@0.25.12", - "data": { - "version": "0.25.12", - "packageName": "@esbuild/netbsd-x64", - "hash": "sha512-Ld5pTlzPy3YwGec4OuHh1aCVCRvOXdH8DgRjfDy/oumVovmuSzWfnSJg+VtakB9Cm0gxNO9BzWkj6mtO1FMXkQ==" - } - }, - "npm:@esbuild/netbsd-x64@0.27.3": { - "type": "npm", - "name": "npm:@esbuild/netbsd-x64@0.27.3", - "data": { - "version": "0.27.3", - "packageName": "@esbuild/netbsd-x64", - "hash": "sha512-P14lFKJl/DdaE00LItAukUdZO5iqNH7+PjoBm+fLQjtxfcfFE20Xf5CrLsmZdq5LFFZzb5JMZ9grUwvtVYzjiA==" - } - }, - "npm:@esbuild/netbsd-x64@0.27.4": { - "type": "npm", - "name": "npm:@esbuild/netbsd-x64@0.27.4", - "data": { - "version": "0.27.4", - "packageName": "@esbuild/netbsd-x64", - "hash": "sha512-RugOvOdXfdyi5Tyv40kgQnI0byv66BFgAqjdgtAKqHoZTbTF2QqfQrFwa7cHEORJf6X2ht+l9ABLMP0dnKYsgg==" - } - }, - "npm:@esbuild/openbsd-arm64@0.25.12": { - "type": "npm", - "name": "npm:@esbuild/openbsd-arm64@0.25.12", - "data": { - "version": "0.25.12", - "packageName": "@esbuild/openbsd-arm64", - "hash": "sha512-fF96T6KsBo/pkQI950FARU9apGNTSlZGsv1jZBAlcLL1MLjLNIWPBkj5NlSz8aAzYKg+eNqknrUJ24QBybeR5A==" - } - }, - "npm:@esbuild/openbsd-arm64@0.27.3": { - "type": "npm", - "name": "npm:@esbuild/openbsd-arm64@0.27.3", - "data": { - "version": "0.27.3", - "packageName": "@esbuild/openbsd-arm64", - "hash": "sha512-AIcMP77AvirGbRl/UZFTq5hjXK+2wC7qFRGoHSDrZ5v5b8DK/GYpXW3CPRL53NkvDqb9D+alBiC/dV0Fb7eJcw==" - } - }, - "npm:@esbuild/openbsd-arm64@0.27.4": { - "type": "npm", - "name": "npm:@esbuild/openbsd-arm64@0.27.4", - "data": { - "version": "0.27.4", - "packageName": "@esbuild/openbsd-arm64", - "hash": "sha512-2MyL3IAaTX+1/qP0O1SwskwcwCoOI4kV2IBX1xYnDDqthmq5ArrW94qSIKCAuRraMgPOmG0RDTA74mzYNQA9ow==" - } - }, - "npm:@esbuild/openbsd-x64@0.18.20": { - "type": "npm", - "name": "npm:@esbuild/openbsd-x64@0.18.20", - "data": { - "version": "0.18.20", - "packageName": "@esbuild/openbsd-x64", - "hash": "sha512-e5e4YSsuQfX4cxcygw/UCPIEP6wbIL+se3sxPdCiMbFLBWu0eiZOJ7WoD+ptCLrmjZBK1Wk7I6D/I3NglUGOxg==" - } - }, - "npm:@esbuild/openbsd-x64@0.25.12": { - "type": "npm", - "name": "npm:@esbuild/openbsd-x64@0.25.12", - "data": { - "version": "0.25.12", - "packageName": "@esbuild/openbsd-x64", - "hash": "sha512-MZyXUkZHjQxUvzK7rN8DJ3SRmrVrke8ZyRusHlP+kuwqTcfWLyqMOE3sScPPyeIXN/mDJIfGXvcMqCgYKekoQw==" - } - }, - "npm:@esbuild/openbsd-x64@0.27.3": { - "type": "npm", - "name": "npm:@esbuild/openbsd-x64@0.27.3", - "data": { - "version": "0.27.3", - "packageName": "@esbuild/openbsd-x64", - "hash": "sha512-DnW2sRrBzA+YnE70LKqnM3P+z8vehfJWHXECbwBmH/CU51z6FiqTQTHFenPlHmo3a8UgpLyH3PT+87OViOh1AQ==" - } - }, - "npm:@esbuild/openbsd-x64@0.27.4": { - "type": "npm", - "name": "npm:@esbuild/openbsd-x64@0.27.4", - "data": { - "version": "0.27.4", - "packageName": "@esbuild/openbsd-x64", - "hash": "sha512-u8fg/jQ5aQDfsnIV6+KwLOf1CmJnfu1ShpwqdwC0uA7ZPwFws55Ngc12vBdeUdnuWoQYx/SOQLGDcdlfXhYmXQ==" - } - }, - "npm:@esbuild/openharmony-arm64@0.25.12": { - "type": "npm", - "name": "npm:@esbuild/openharmony-arm64@0.25.12", - "data": { - "version": "0.25.12", - "packageName": "@esbuild/openharmony-arm64", - "hash": "sha512-rm0YWsqUSRrjncSXGA7Zv78Nbnw4XL6/dzr20cyrQf7ZmRcsovpcRBdhD43Nuk3y7XIoW2OxMVvwuRvk9XdASg==" - } - }, - "npm:@esbuild/openharmony-arm64@0.27.3": { - "type": "npm", - "name": "npm:@esbuild/openharmony-arm64@0.27.3", - "data": { - "version": "0.27.3", - "packageName": "@esbuild/openharmony-arm64", - "hash": "sha512-NinAEgr/etERPTsZJ7aEZQvvg/A6IsZG/LgZy+81wON2huV7SrK3e63dU0XhyZP4RKGyTm7aOgmQk0bGp0fy2g==" - } - }, - "npm:@esbuild/openharmony-arm64@0.27.4": { - "type": "npm", - "name": "npm:@esbuild/openharmony-arm64@0.27.4", - "data": { - "version": "0.27.4", - "packageName": "@esbuild/openharmony-arm64", - "hash": "sha512-JkTZrl6VbyO8lDQO3yv26nNr2RM2yZzNrNHEsj9bm6dOwwu9OYN28CjzZkH57bh4w0I2F7IodpQvUAEd1mbWXg==" - } - }, - "npm:@esbuild/sunos-x64@0.18.20": { - "type": "npm", - "name": "npm:@esbuild/sunos-x64@0.18.20", - "data": { - "version": "0.18.20", - "packageName": "@esbuild/sunos-x64", - "hash": "sha512-kDbFRFp0YpTQVVrqUd5FTYmWo45zGaXe0X8E1G/LKFC0v8x0vWrhOWSLITcCn63lmZIxfOMXtCfti/RxN/0wnQ==" - } - }, - "npm:@esbuild/sunos-x64@0.25.12": { - "type": "npm", - "name": "npm:@esbuild/sunos-x64@0.25.12", - "data": { - "version": "0.25.12", - "packageName": "@esbuild/sunos-x64", - "hash": "sha512-3wGSCDyuTHQUzt0nV7bocDy72r2lI33QL3gkDNGkod22EsYl04sMf0qLb8luNKTOmgF/eDEDP5BFNwoBKH441w==" - } - }, - "npm:@esbuild/sunos-x64@0.27.3": { - "type": "npm", - "name": "npm:@esbuild/sunos-x64@0.27.3", - "data": { - "version": "0.27.3", - "packageName": "@esbuild/sunos-x64", - "hash": "sha512-PanZ+nEz+eWoBJ8/f8HKxTTD172SKwdXebZ0ndd953gt1HRBbhMsaNqjTyYLGLPdoWHy4zLU7bDVJztF5f3BHA==" - } - }, - "npm:@esbuild/sunos-x64@0.27.4": { - "type": "npm", - "name": "npm:@esbuild/sunos-x64@0.27.4", - "data": { - "version": "0.27.4", - "packageName": "@esbuild/sunos-x64", - "hash": "sha512-/gOzgaewZJfeJTlsWhvUEmUG4tWEY2Spp5M20INYRg2ZKl9QPO3QEEgPeRtLjEWSW8FilRNacPOg8R1uaYkA6g==" - } - }, - "npm:@esbuild/win32-arm64@0.18.20": { - "type": "npm", - "name": "npm:@esbuild/win32-arm64@0.18.20", - "data": { - "version": "0.18.20", - "packageName": "@esbuild/win32-arm64", - "hash": "sha512-ddYFR6ItYgoaq4v4JmQQaAI5s7npztfV4Ag6NrhiaW0RrnOXqBkgwZLofVTlq1daVTQNhtI5oieTvkRPfZrePg==" - } - }, - "npm:@esbuild/win32-arm64@0.25.12": { - "type": "npm", - "name": "npm:@esbuild/win32-arm64@0.25.12", - "data": { - "version": "0.25.12", - "packageName": "@esbuild/win32-arm64", - "hash": "sha512-rMmLrur64A7+DKlnSuwqUdRKyd3UE7oPJZmnljqEptesKM8wx9J8gx5u0+9Pq0fQQW8vqeKebwNXdfOyP+8Bsg==" - } - }, - "npm:@esbuild/win32-arm64@0.27.3": { - "type": "npm", - "name": "npm:@esbuild/win32-arm64@0.27.3", - "data": { - "version": "0.27.3", - "packageName": "@esbuild/win32-arm64", - "hash": "sha512-B2t59lWWYrbRDw/tjiWOuzSsFh1Y/E95ofKz7rIVYSQkUYBjfSgf6oeYPNWHToFRr2zx52JKApIcAS/D5TUBnA==" - } - }, - "npm:@esbuild/win32-arm64@0.27.4": { - "type": "npm", - "name": "npm:@esbuild/win32-arm64@0.27.4", - "data": { - "version": "0.27.4", - "packageName": "@esbuild/win32-arm64", - "hash": "sha512-Z9SExBg2y32smoDQdf1HRwHRt6vAHLXcxD2uGgO/v2jK7Y718Ix4ndsbNMU/+1Qiem9OiOdaqitioZwxivhXYg==" - } - }, - "npm:@esbuild/win32-ia32@0.18.20": { - "type": "npm", - "name": "npm:@esbuild/win32-ia32@0.18.20", - "data": { - "version": "0.18.20", - "packageName": "@esbuild/win32-ia32", - "hash": "sha512-Wv7QBi3ID/rROT08SABTS7eV4hX26sVduqDOTe1MvGMjNd3EjOz4b7zeexIR62GTIEKrfJXKL9LFxTYgkyeu7g==" - } - }, - "npm:@esbuild/win32-ia32@0.25.12": { - "type": "npm", - "name": "npm:@esbuild/win32-ia32@0.25.12", - "data": { - "version": "0.25.12", - "packageName": "@esbuild/win32-ia32", - "hash": "sha512-HkqnmmBoCbCwxUKKNPBixiWDGCpQGVsrQfJoVGYLPT41XWF8lHuE5N6WhVia2n4o5QK5M4tYr21827fNhi4byQ==" - } - }, - "npm:@esbuild/win32-ia32@0.27.3": { - "type": "npm", - "name": "npm:@esbuild/win32-ia32@0.27.3", - "data": { - "version": "0.27.3", - "packageName": "@esbuild/win32-ia32", - "hash": "sha512-QLKSFeXNS8+tHW7tZpMtjlNb7HKau0QDpwm49u0vUp9y1WOF+PEzkU84y9GqYaAVW8aH8f3GcBck26jh54cX4Q==" - } - }, - "npm:@esbuild/win32-ia32@0.27.4": { - "type": "npm", - "name": "npm:@esbuild/win32-ia32@0.27.4", - "data": { - "version": "0.27.4", - "packageName": "@esbuild/win32-ia32", - "hash": "sha512-DAyGLS0Jz5G5iixEbMHi5KdiApqHBWMGzTtMiJ72ZOLhbu/bzxgAe8Ue8CTS3n3HbIUHQz/L51yMdGMeoxXNJw==" - } - }, - "npm:@esbuild/win32-x64@0.18.20": { - "type": "npm", - "name": "npm:@esbuild/win32-x64@0.18.20", - "data": { - "version": "0.18.20", - "packageName": "@esbuild/win32-x64", - "hash": "sha512-kTdfRcSiDfQca/y9QIkng02avJ+NCaQvrMejlsB3RRv5sE9rRoeBPISaZpKxHELzRxZyLvNts1P27W3wV+8geQ==" - } - }, - "npm:@esbuild/win32-x64@0.25.12": { - "type": "npm", - "name": "npm:@esbuild/win32-x64@0.25.12", - "data": { - "version": "0.25.12", - "packageName": "@esbuild/win32-x64", - "hash": "sha512-alJC0uCZpTFrSL0CCDjcgleBXPnCrEAhTBILpeAp7M/OFgoqtAetfBzX0xM00MUsVVPpVjlPuMbREqnZCXaTnA==" - } - }, - "npm:@esbuild/win32-x64@0.27.3": { - "type": "npm", - "name": "npm:@esbuild/win32-x64@0.27.3", - "data": { - "version": "0.27.3", - "packageName": "@esbuild/win32-x64", - "hash": "sha512-4uJGhsxuptu3OcpVAzli+/gWusVGwZZHTlS63hh++ehExkVT8SgiEf7/uC/PclrPPkLhZqGgCTjd0VWLo6xMqA==" - } - }, - "npm:@esbuild/win32-x64@0.27.4": { - "type": "npm", - "name": "npm:@esbuild/win32-x64@0.27.4", - "data": { - "version": "0.27.4", - "packageName": "@esbuild/win32-x64", - "hash": "sha512-+knoa0BDoeXgkNvvV1vvbZX4+hizelrkwmGJBdT17t8FNPwG2lKemmuMZlmaNQ3ws3DKKCxpb4zRZEIp3UxFCg==" - } - }, - "npm:@eslint-community/eslint-utils": { - "type": "npm", - "name": "npm:@eslint-community/eslint-utils", - "data": { - "version": "4.9.1", - "packageName": "@eslint-community/eslint-utils", - "hash": "sha512-phrYmNiYppR7znFEdqgfWHXR6NCkZEK7hwWDHZUjit/2/U0r6XvkDl0SYnoM51Hq7FhCGdLDT6zxCCOY1hexsQ==" - } - }, - "npm:@eslint-community/regexpp": { - "type": "npm", - "name": "npm:@eslint-community/regexpp", - "data": { - "version": "4.12.2", - "packageName": "@eslint-community/regexpp", - "hash": "sha512-EriSTlt5OC9/7SXkRSCAhfSxxoSUgBm33OH+IkwbdpgoqsSsUg7y3uh+IICI/Qg4BBWr3U2i39RpmycbxMq4ew==" - } - }, - "npm:@eslint/config-array": { - "type": "npm", - "name": "npm:@eslint/config-array", - "data": { - "version": "0.21.2", - "packageName": "@eslint/config-array", - "hash": "sha512-nJl2KGTlrf9GjLimgIru+V/mzgSK0ABCDQRvxw5BjURL7WfH5uoWmizbH7QB6MmnMBd8cIC9uceWnezL1VZWWw==" - } - }, - "npm:@eslint/config-helpers": { - "type": "npm", - "name": "npm:@eslint/config-helpers", - "data": { - "version": "0.4.2", - "packageName": "@eslint/config-helpers", - "hash": "sha512-gBrxN88gOIf3R7ja5K9slwNayVcZgK6SOUORm2uBzTeIEfeVaIhOpCtTox3P6R7o2jLFwLFTLnC7kU/RGcYEgw==" - } - }, - "npm:@eslint/core": { - "type": "npm", - "name": "npm:@eslint/core", - "data": { - "version": "0.17.0", - "packageName": "@eslint/core", - "hash": "sha512-yL/sLrpmtDaFEiUj1osRP4TI2MDz1AddJL+jZ7KSqvBuliN4xqYY54IfdN8qD8Toa6g1iloph1fxQNkjOxrrpQ==" - } - }, - "npm:@eslint/eslintrc": { - "type": "npm", - "name": "npm:@eslint/eslintrc", - "data": { - "version": "3.3.5", - "packageName": "@eslint/eslintrc", - "hash": "sha512-4IlJx0X0qftVsN5E+/vGujTRIFtwuLbNsVUe7TO6zYPDR1O6nFwvwhIKEKSrl6dZchmYBITazxKoUYOjdtjlRg==" - } - }, - "npm:@eslint/js": { - "type": "npm", - "name": "npm:@eslint/js", - "data": { - "version": "9.39.4", - "packageName": "@eslint/js", - "hash": "sha512-nE7DEIchvtiFTwBw4Lfbu59PG+kCofhjsKaCWzxTpt4lfRjRMqG6uMBzKXuEcyXhOHoUp9riAm7/aWYGhXZ9cw==" - } - }, - "npm:@eslint/object-schema": { - "type": "npm", - "name": "npm:@eslint/object-schema", - "data": { - "version": "2.1.7", - "packageName": "@eslint/object-schema", - "hash": "sha512-VtAOaymWVfZcmZbp6E2mympDIHvyjXs/12LqWYjVw6qjrfF+VK+fyG33kChz3nnK+SU5/NeHOqrTEHS8sXO3OA==" - } - }, - "npm:@eslint/plugin-kit": { - "type": "npm", - "name": "npm:@eslint/plugin-kit", - "data": { - "version": "0.4.1", - "packageName": "@eslint/plugin-kit", - "hash": "sha512-43/qtrDUokr7LJqoF2c3+RInu/t4zfrpYdoSDfYyhg52rwLV6TnOvdG4fXm7IkSB3wErkcmJS9iEhjVtOSEjjA==" - } - }, - "npm:@fastify/ajv-compiler": { - "type": "npm", - "name": "npm:@fastify/ajv-compiler", - "data": { - "version": "4.0.5", - "packageName": "@fastify/ajv-compiler", - "hash": "sha512-KoWKW+MhvfTRWL4qrhUwAAZoaChluo0m0vbiJlGMt2GXvL4LVPQEjt8kSpHI3IBq5Rez8fg+XeH3cneztq+C7A==" - } - }, - "npm:@fastify/error": { - "type": "npm", - "name": "npm:@fastify/error", - "data": { - "version": "4.2.0", - "packageName": "@fastify/error", - "hash": "sha512-RSo3sVDXfHskiBZKBPRgnQTtIqpi/7zhJOEmAxCiBcM7d0uwdGdxLlsCaLzGs8v8NnxIRlfG0N51p5yFaOentQ==" - } - }, - "npm:@fastify/fast-json-stringify-compiler": { - "type": "npm", - "name": "npm:@fastify/fast-json-stringify-compiler", - "data": { - "version": "5.0.3", - "packageName": "@fastify/fast-json-stringify-compiler", - "hash": "sha512-uik7yYHkLr6fxd8hJSZ8c+xF4WafPK+XzneQDPU+D10r5X19GW8lJcom2YijX2+qtFF1ENJlHXKFM9ouXNJYgQ==" - } - }, - "npm:@fastify/forwarded": { - "type": "npm", - "name": "npm:@fastify/forwarded", - "data": { - "version": "3.0.1", - "packageName": "@fastify/forwarded", - "hash": "sha512-JqDochHFqXs3C3Ml3gOY58zM7OqO9ENqPo0UqAjAjH8L01fRZqwX9iLeX34//kiJubF7r2ZQHtBRU36vONbLlw==" - } - }, - "npm:@fastify/merge-json-schemas": { - "type": "npm", - "name": "npm:@fastify/merge-json-schemas", - "data": { - "version": "0.2.1", - "packageName": "@fastify/merge-json-schemas", - "hash": "sha512-OA3KGBCy6KtIvLf8DINC5880o5iBlDX4SxzLQS8HorJAbqluzLRn80UXU0bxZn7UOFhFgpRJDasfwn9nG4FG4A==" - } - }, - "npm:@fastify/proxy-addr": { - "type": "npm", - "name": "npm:@fastify/proxy-addr", - "data": { - "version": "5.1.0", - "packageName": "@fastify/proxy-addr", - "hash": "sha512-INS+6gh91cLUjB+PVHfu1UqcB76Sqtpyp7bnL+FYojhjygvOPA9ctiD/JDKsyD9Xgu4hUhCSJBPig/w7duNajw==" - } - }, - "npm:@floating-ui/core": { - "type": "npm", - "name": "npm:@floating-ui/core", - "data": { - "version": "1.7.5", - "packageName": "@floating-ui/core", - "hash": "sha512-1Ih4WTWyw0+lKyFMcBHGbb5U5FtuHJuujoyyr5zTaWS5EYMeT6Jb2AuDeftsCsEuchO+mM2ij5+q9crhydzLhQ==" - } - }, - "npm:@floating-ui/dom": { - "type": "npm", - "name": "npm:@floating-ui/dom", - "data": { - "version": "1.7.6", - "packageName": "@floating-ui/dom", - "hash": "sha512-9gZSAI5XM36880PPMm//9dfiEngYoC6Am2izES1FF406YFsjvyBMmeJ2g4SAju3xWwtuynNRFL2s9hgxpLI5SQ==" - } - }, - "npm:@floating-ui/react-dom": { - "type": "npm", - "name": "npm:@floating-ui/react-dom", - "data": { - "version": "2.1.6", - "packageName": "@floating-ui/react-dom", - "hash": "sha512-4JX6rEatQEvlmgU80wZyq9RT96HZJa88q8hp0pBd+LrczeDI4o6uA2M+uvxngVHo4Ihr8uibXxH6+70zhAFrVw==" - } - }, - "npm:@floating-ui/react": { - "type": "npm", - "name": "npm:@floating-ui/react", - "data": { - "version": "0.27.16", - "packageName": "@floating-ui/react", - "hash": "sha512-9O8N4SeG2z++TSM8QA/KTeKFBVCNEz/AGS7gWPJf6KFRzmRWixFRnCnkPHRDwSVZW6QPDO6uT0P2SpWNKCc9/g==" - } - }, - "npm:@floating-ui/utils": { - "type": "npm", - "name": "npm:@floating-ui/utils", - "data": { - "version": "0.2.11", - "packageName": "@floating-ui/utils", - "hash": "sha512-RiB/yIh78pcIxl6lLMG0CgBXAZ2Y0eVHqMPYugu+9U0AeT6YBeiJpf7lbdJNIugFP5SIjwNRgo4DhR1Qxi26Gg==" - } - }, - "npm:@ghostery/adblocker-content": { - "type": "npm", - "name": "npm:@ghostery/adblocker-content", - "data": { - "version": "2.14.1", - "packageName": "@ghostery/adblocker-content", - "hash": "sha512-hDE6RAL9xgQonJQiK1knOHy527PEwlAuvKaha4snE0XO6Vmtk0HThce1M2JFVRxGayWR3nTxoWbvEfGWXU7O/A==" - } - }, - "npm:@ghostery/adblocker-extended-selectors": { - "type": "npm", - "name": "npm:@ghostery/adblocker-extended-selectors", - "data": { - "version": "2.14.1", - "packageName": "@ghostery/adblocker-extended-selectors", - "hash": "sha512-3RARO2ukDrfwDqVEMD+HKZIwsM9QjjII+U1zqxhLXZ0dZRHjbtUHlZCsokqfjZ1JAa3ZVKcZrF0nZv5SA2LgyA==" - } - }, - "npm:@ghostery/adblocker-puppeteer": { - "type": "npm", - "name": "npm:@ghostery/adblocker-puppeteer", - "data": { - "version": "2.14.1", - "packageName": "@ghostery/adblocker-puppeteer", - "hash": "sha512-P7SuAWDkDMriOhtLrSMZIERV+kxc9ieFUhfkSEgXHtqieLizsNUeys9ltvtU7m75XX+RTvg6JY8DmwX0HIF/LQ==" - } - }, - "npm:@ghostery/adblocker": { - "type": "npm", - "name": "npm:@ghostery/adblocker", - "data": { - "version": "2.14.1", - "packageName": "@ghostery/adblocker", - "hash": "sha512-/cQTMJRd4/7zpgFHWqe+9wqiRPGTy+BhqfkxplvejPgq8d6spBjC6bSJV61rVHJZw5F4KOO5ReKOvuguaKG28A==" - } - }, - "npm:@ghostery/url-parser": { - "type": "npm", - "name": "npm:@ghostery/url-parser", - "data": { - "version": "1.3.1", - "packageName": "@ghostery/url-parser", - "hash": "sha512-QKqGi+7aDQ4RcyHyCwgEk6B9vWnsBP4Q7htaN0zPJV3ATqTKEQDtSTb9c/AN586oJUDs24YXKcwFYwNweY/YjQ==" - } - }, - "npm:@hono/node-server": { - "type": "npm", - "name": "npm:@hono/node-server", - "data": { - "version": "1.19.9", - "packageName": "@hono/node-server", - "hash": "sha512-vHL6w3ecZsky+8P5MD+eFfaGTyCeOHUIFYMGpQGbrBTSmNNoxv0if69rEZ5giu36weC5saFuznL411gRX7bJDw==" - } - }, - "npm:@humanfs/core": { - "type": "npm", - "name": "npm:@humanfs/core", - "data": { - "version": "0.19.1", - "packageName": "@humanfs/core", - "hash": "sha512-5DyQ4+1JEUzejeK1JGICcideyfUbGixgS9jNgex5nqkW+cY7WZhxBigmieN5Qnw9ZosSNVC9KQKyb+GUaGyKUA==" - } - }, - "npm:@humanfs/node": { - "type": "npm", - "name": "npm:@humanfs/node", - "data": { - "version": "0.16.7", - "packageName": "@humanfs/node", - "hash": "sha512-/zUx+yOsIrG4Y43Eh2peDeKCxlRt/gET6aHfaKpuq267qXdYDFViVHfMaLyygZOnl0kGWxFIgsBy8QFuTLUXEQ==" - } - }, - "npm:@humanwhocodes/module-importer": { - "type": "npm", - "name": "npm:@humanwhocodes/module-importer", - "data": { - "version": "1.0.1", - "packageName": "@humanwhocodes/module-importer", - "hash": "sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA==" - } - }, - "npm:@humanwhocodes/retry": { - "type": "npm", - "name": "npm:@humanwhocodes/retry", - "data": { - "version": "0.4.3", - "packageName": "@humanwhocodes/retry", - "hash": "sha512-bV0Tgo9K4hfPCek+aMAn81RppFKv2ySDQeMoSZuvTASywNTnVJCArCZE2FWqpvIatKu7VMRLWlR1EazvVhDyhQ==" - } - }, - "npm:@img/colour": { - "type": "npm", - "name": "npm:@img/colour", - "data": { - "version": "1.0.0", - "packageName": "@img/colour", - "hash": "sha512-A5P/LfWGFSl6nsckYtjw9da+19jB8hkJ6ACTGcDfEJ0aE+l2n2El7dsVM7UVHZQ9s2lmYMWlrS21YLy2IR1LUw==" - } - }, - "npm:@img/sharp-darwin-arm64@0.33.5": { - "type": "npm", - "name": "npm:@img/sharp-darwin-arm64@0.33.5", - "data": { - "version": "0.33.5", - "packageName": "@img/sharp-darwin-arm64", - "hash": "sha512-UT4p+iz/2H4twwAoLCqfA9UH5pI6DggwKEGuaPy7nCVQ8ZsiY5PIcrRvD1DzuY3qYL07NtIQcWnBSY/heikIFQ==" - } - }, - "npm:@img/sharp-darwin-arm64@0.34.5": { - "type": "npm", - "name": "npm:@img/sharp-darwin-arm64@0.34.5", - "data": { - "version": "0.34.5", - "packageName": "@img/sharp-darwin-arm64", - "hash": "sha512-imtQ3WMJXbMY4fxb/Ndp6HBTNVtWCUI0WdobyheGf5+ad6xX8VIDO8u2xE4qc/fr08CKG/7dDseFtn6M6g/r3w==" - } - }, - "npm:@img/sharp-darwin-x64@0.33.5": { - "type": "npm", - "name": "npm:@img/sharp-darwin-x64@0.33.5", - "data": { - "version": "0.33.5", - "packageName": "@img/sharp-darwin-x64", - "hash": "sha512-fyHac4jIc1ANYGRDxtiqelIbdWkIuQaI84Mv45KvGRRxSAa7o7d1ZKAOBaYbnepLC1WqxfpimdeWfvqqSGwR2Q==" - } - }, - "npm:@img/sharp-darwin-x64@0.34.5": { - "type": "npm", - "name": "npm:@img/sharp-darwin-x64@0.34.5", - "data": { - "version": "0.34.5", - "packageName": "@img/sharp-darwin-x64", - "hash": "sha512-YNEFAF/4KQ/PeW0N+r+aVVsoIY0/qxxikF2SWdp+NRkmMB7y9LBZAVqQ4yhGCm/H3H270OSykqmQMKLBhBJDEw==" - } - }, - "npm:@img/sharp-libvips-darwin-arm64@1.0.4": { - "type": "npm", - "name": "npm:@img/sharp-libvips-darwin-arm64@1.0.4", - "data": { - "version": "1.0.4", - "packageName": "@img/sharp-libvips-darwin-arm64", - "hash": "sha512-XblONe153h0O2zuFfTAbQYAX2JhYmDHeWikp1LM9Hul9gVPjFY427k6dFEcOL72O01QxQsWi761svJ/ev9xEDg==" - } - }, - "npm:@img/sharp-libvips-darwin-arm64@1.2.4": { - "type": "npm", - "name": "npm:@img/sharp-libvips-darwin-arm64@1.2.4", - "data": { - "version": "1.2.4", - "packageName": "@img/sharp-libvips-darwin-arm64", - "hash": "sha512-zqjjo7RatFfFoP0MkQ51jfuFZBnVE2pRiaydKJ1G/rHZvnsrHAOcQALIi9sA5co5xenQdTugCvtb1cuf78Vf4g==" - } - }, - "npm:@img/sharp-libvips-darwin-x64@1.0.4": { - "type": "npm", - "name": "npm:@img/sharp-libvips-darwin-x64@1.0.4", - "data": { - "version": "1.0.4", - "packageName": "@img/sharp-libvips-darwin-x64", - "hash": "sha512-xnGR8YuZYfJGmWPvmlunFaWJsb9T/AO2ykoP3Fz/0X5XV2aoYBPkX6xqCQvUTKKiLddarLaxpzNe+b1hjeWHAQ==" - } - }, - "npm:@img/sharp-libvips-darwin-x64@1.2.4": { - "type": "npm", - "name": "npm:@img/sharp-libvips-darwin-x64@1.2.4", - "data": { - "version": "1.2.4", - "packageName": "@img/sharp-libvips-darwin-x64", - "hash": "sha512-1IOd5xfVhlGwX+zXv2N93k0yMONvUlANylbJw1eTah8K/Jtpi15KC+WSiaX/nBmbm2HxRM1gZ0nSdjSsrZbGKg==" - } - }, - "npm:@img/sharp-libvips-linux-arm64@1.0.4": { - "type": "npm", - "name": "npm:@img/sharp-libvips-linux-arm64@1.0.4", - "data": { - "version": "1.0.4", - "packageName": "@img/sharp-libvips-linux-arm64", - "hash": "sha512-9B+taZ8DlyyqzZQnoeIvDVR/2F4EbMepXMc/NdVbkzsJbzkUjhXv/70GQJ7tdLA4YJgNP25zukcxpX2/SueNrA==" - } - }, - "npm:@img/sharp-libvips-linux-arm64@1.2.4": { - "type": "npm", - "name": "npm:@img/sharp-libvips-linux-arm64@1.2.4", - "data": { - "version": "1.2.4", - "packageName": "@img/sharp-libvips-linux-arm64", - "hash": "sha512-excjX8DfsIcJ10x1Kzr4RcWe1edC9PquDRRPx3YVCvQv+U5p7Yin2s32ftzikXojb1PIFc/9Mt28/y+iRklkrw==" - } - }, - "npm:@img/sharp-libvips-linux-arm@1.0.5": { - "type": "npm", - "name": "npm:@img/sharp-libvips-linux-arm@1.0.5", - "data": { - "version": "1.0.5", - "packageName": "@img/sharp-libvips-linux-arm", - "hash": "sha512-gvcC4ACAOPRNATg/ov8/MnbxFDJqf/pDePbBnuBDcjsI8PssmjoKMAz4LtLaVi+OnSb5FK/yIOamqDwGmXW32g==" - } - }, - "npm:@img/sharp-libvips-linux-arm@1.2.4": { - "type": "npm", - "name": "npm:@img/sharp-libvips-linux-arm@1.2.4", - "data": { - "version": "1.2.4", - "packageName": "@img/sharp-libvips-linux-arm", - "hash": "sha512-bFI7xcKFELdiNCVov8e44Ia4u2byA+l3XtsAj+Q8tfCwO6BQ8iDojYdvoPMqsKDkuoOo+X6HZA0s0q11ANMQ8A==" - } - }, - "npm:@img/sharp-libvips-linux-ppc64": { - "type": "npm", - "name": "npm:@img/sharp-libvips-linux-ppc64", - "data": { - "version": "1.2.4", - "packageName": "@img/sharp-libvips-linux-ppc64", - "hash": "sha512-FMuvGijLDYG6lW+b/UvyilUWu5Ayu+3r2d1S8notiGCIyYU/76eig1UfMmkZ7vwgOrzKzlQbFSuQfgm7GYUPpA==" - } - }, - "npm:@img/sharp-libvips-linux-riscv64": { - "type": "npm", - "name": "npm:@img/sharp-libvips-linux-riscv64", - "data": { - "version": "1.2.4", - "packageName": "@img/sharp-libvips-linux-riscv64", - "hash": "sha512-oVDbcR4zUC0ce82teubSm+x6ETixtKZBh/qbREIOcI3cULzDyb18Sr/Wcyx7NRQeQzOiHTNbZFF1UwPS2scyGA==" - } - }, - "npm:@img/sharp-libvips-linux-s390x@1.0.4": { - "type": "npm", - "name": "npm:@img/sharp-libvips-linux-s390x@1.0.4", - "data": { - "version": "1.0.4", - "packageName": "@img/sharp-libvips-linux-s390x", - "hash": "sha512-u7Wz6ntiSSgGSGcjZ55im6uvTrOxSIS8/dgoVMoiGE9I6JAfU50yH5BoDlYA1tcuGS7g/QNtetJnxA6QEsCVTA==" - } - }, - "npm:@img/sharp-libvips-linux-s390x@1.2.4": { - "type": "npm", - "name": "npm:@img/sharp-libvips-linux-s390x@1.2.4", - "data": { - "version": "1.2.4", - "packageName": "@img/sharp-libvips-linux-s390x", - "hash": "sha512-qmp9VrzgPgMoGZyPvrQHqk02uyjA0/QrTO26Tqk6l4ZV0MPWIW6LTkqOIov+J1yEu7MbFQaDpwdwJKhbJvuRxQ==" - } - }, - "npm:@img/sharp-libvips-linux-x64@1.0.4": { - "type": "npm", - "name": "npm:@img/sharp-libvips-linux-x64@1.0.4", - "data": { - "version": "1.0.4", - "packageName": "@img/sharp-libvips-linux-x64", - "hash": "sha512-MmWmQ3iPFZr0Iev+BAgVMb3ZyC4KeFc3jFxnNbEPas60e1cIfevbtuyf9nDGIzOaW9PdnDciJm+wFFaTlj5xYw==" - } - }, - "npm:@img/sharp-libvips-linux-x64": { - "type": "npm", - "name": "npm:@img/sharp-libvips-linux-x64", - "data": { - "version": "1.2.4", - "packageName": "@img/sharp-libvips-linux-x64", - "hash": "sha512-tJxiiLsmHc9Ax1bz3oaOYBURTXGIRDODBqhveVHonrHJ9/+k89qbLl0bcJns+e4t4rvaNBxaEZsFtSfAdquPrw==" - } - }, - "npm:@img/sharp-libvips-linuxmusl-arm64@1.0.4": { - "type": "npm", - "name": "npm:@img/sharp-libvips-linuxmusl-arm64@1.0.4", - "data": { - "version": "1.0.4", - "packageName": "@img/sharp-libvips-linuxmusl-arm64", - "hash": "sha512-9Ti+BbTYDcsbp4wfYib8Ctm1ilkugkA/uscUn6UXK1ldpC1JjiXbLfFZtRlBhjPZ5o1NCLiDbg8fhUPKStHoTA==" - } - }, - "npm:@img/sharp-libvips-linuxmusl-arm64@1.2.4": { - "type": "npm", - "name": "npm:@img/sharp-libvips-linuxmusl-arm64@1.2.4", - "data": { - "version": "1.2.4", - "packageName": "@img/sharp-libvips-linuxmusl-arm64", - "hash": "sha512-FVQHuwx1IIuNow9QAbYUzJ+En8KcVm9Lk5+uGUQJHaZmMECZmOlix9HnH7n1TRkXMS0pGxIJokIVB9SuqZGGXw==" - } - }, - "npm:@img/sharp-libvips-linuxmusl-x64@1.0.4": { - "type": "npm", - "name": "npm:@img/sharp-libvips-linuxmusl-x64@1.0.4", - "data": { - "version": "1.0.4", - "packageName": "@img/sharp-libvips-linuxmusl-x64", - "hash": "sha512-viYN1KX9m+/hGkJtvYYp+CCLgnJXwiQB39damAO7WMdKWlIhmYTfHjwSbQeUK/20vY154mwezd9HflVFM1wVSw==" - } - }, - "npm:@img/sharp-libvips-linuxmusl-x64": { - "type": "npm", - "name": "npm:@img/sharp-libvips-linuxmusl-x64", - "data": { - "version": "1.2.4", - "packageName": "@img/sharp-libvips-linuxmusl-x64", - "hash": "sha512-+LpyBk7L44ZIXwz/VYfglaX/okxezESc6UxDSoyo2Ks6Jxc4Y7sGjpgU9s4PMgqgjj1gZCylTieNamqA1MF7Dg==" - } - }, - "npm:@img/sharp-linux-arm64@0.33.5": { - "type": "npm", - "name": "npm:@img/sharp-linux-arm64@0.33.5", - "data": { - "version": "0.33.5", - "packageName": "@img/sharp-linux-arm64", - "hash": "sha512-JMVv+AMRyGOHtO1RFBiJy/MBsgz0x4AWrT6QoEVVTyh1E39TrCUpTRI7mx9VksGX4awWASxqCYLCV4wBZHAYxA==" - } - }, - "npm:@img/sharp-linux-arm64@0.34.5": { - "type": "npm", - "name": "npm:@img/sharp-linux-arm64@0.34.5", - "data": { - "version": "0.34.5", - "packageName": "@img/sharp-linux-arm64", - "hash": "sha512-bKQzaJRY/bkPOXyKx5EVup7qkaojECG6NLYswgktOZjaXecSAeCWiZwwiFf3/Y+O1HrauiE3FVsGxFg8c24rZg==" - } - }, - "npm:@img/sharp-linux-arm@0.33.5": { - "type": "npm", - "name": "npm:@img/sharp-linux-arm@0.33.5", - "data": { - "version": "0.33.5", - "packageName": "@img/sharp-linux-arm", - "hash": "sha512-JTS1eldqZbJxjvKaAkxhZmBqPRGmxgu+qFKSInv8moZ2AmT5Yib3EQ1c6gp493HvrvV8QgdOXdyaIBrhvFhBMQ==" - } - }, - "npm:@img/sharp-linux-arm@0.34.5": { - "type": "npm", - "name": "npm:@img/sharp-linux-arm@0.34.5", - "data": { - "version": "0.34.5", - "packageName": "@img/sharp-linux-arm", - "hash": "sha512-9dLqsvwtg1uuXBGZKsxem9595+ujv0sJ6Vi8wcTANSFpwV/GONat5eCkzQo/1O6zRIkh0m/8+5BjrRr7jDUSZw==" - } - }, - "npm:@img/sharp-linux-ppc64": { - "type": "npm", - "name": "npm:@img/sharp-linux-ppc64", - "data": { - "version": "0.34.5", - "packageName": "@img/sharp-linux-ppc64", - "hash": "sha512-7zznwNaqW6YtsfrGGDA6BRkISKAAE1Jo0QdpNYXNMHu2+0dTrPflTLNkpc8l7MUP5M16ZJcUvysVWWrMefZquA==" - } - }, - "npm:@img/sharp-linux-riscv64": { - "type": "npm", - "name": "npm:@img/sharp-linux-riscv64", - "data": { - "version": "0.34.5", - "packageName": "@img/sharp-linux-riscv64", - "hash": "sha512-51gJuLPTKa7piYPaVs8GmByo7/U7/7TZOq+cnXJIHZKavIRHAP77e3N2HEl3dgiqdD/w0yUfiJnII77PuDDFdw==" - } - }, - "npm:@img/sharp-linux-s390x@0.33.5": { - "type": "npm", - "name": "npm:@img/sharp-linux-s390x@0.33.5", - "data": { - "version": "0.33.5", - "packageName": "@img/sharp-linux-s390x", - "hash": "sha512-y/5PCd+mP4CA/sPDKl2961b+C9d+vPAveS33s6Z3zfASk2j5upL6fXVPZi7ztePZ5CuH+1kW8JtvxgbuXHRa4Q==" - } - }, - "npm:@img/sharp-linux-s390x@0.34.5": { - "type": "npm", - "name": "npm:@img/sharp-linux-s390x@0.34.5", - "data": { - "version": "0.34.5", - "packageName": "@img/sharp-linux-s390x", - "hash": "sha512-nQtCk0PdKfho3eC5MrbQoigJ2gd1CgddUMkabUj+rBevs8tZ2cULOx46E7oyX+04WGfABgIwmMC0VqieTiR4jg==" - } - }, - "npm:@img/sharp-linux-x64@0.33.5": { - "type": "npm", - "name": "npm:@img/sharp-linux-x64@0.33.5", - "data": { - "version": "0.33.5", - "packageName": "@img/sharp-linux-x64", - "hash": "sha512-opC+Ok5pRNAzuvq1AG0ar+1owsu842/Ab+4qvU879ippJBHvyY5n2mxF1izXqkPYlGuP/M556uh53jRLJmzTWA==" - } - }, - "npm:@img/sharp-linux-x64": { - "type": "npm", - "name": "npm:@img/sharp-linux-x64", - "data": { - "version": "0.34.5", - "packageName": "@img/sharp-linux-x64", - "hash": "sha512-MEzd8HPKxVxVenwAa+JRPwEC7QFjoPWuS5NZnBt6B3pu7EG2Ge0id1oLHZpPJdn3OQK+BQDiw9zStiHBTJQQQQ==" - } - }, - "npm:@img/sharp-linuxmusl-arm64@0.33.5": { - "type": "npm", - "name": "npm:@img/sharp-linuxmusl-arm64@0.33.5", - "data": { - "version": "0.33.5", - "packageName": "@img/sharp-linuxmusl-arm64", - "hash": "sha512-XrHMZwGQGvJg2V/oRSUfSAfjfPxO+4DkiRh6p2AFjLQztWUuY/o8Mq0eMQVIY7HJ1CDQUJlxGGZRw1a5bqmd1g==" - } - }, - "npm:@img/sharp-linuxmusl-arm64@0.34.5": { - "type": "npm", - "name": "npm:@img/sharp-linuxmusl-arm64@0.34.5", - "data": { - "version": "0.34.5", - "packageName": "@img/sharp-linuxmusl-arm64", - "hash": "sha512-fprJR6GtRsMt6Kyfq44IsChVZeGN97gTD331weR1ex1c1rypDEABN6Tm2xa1wE6lYb5DdEnk03NZPqA7Id21yg==" - } - }, - "npm:@img/sharp-linuxmusl-x64@0.33.5": { - "type": "npm", - "name": "npm:@img/sharp-linuxmusl-x64@0.33.5", - "data": { - "version": "0.33.5", - "packageName": "@img/sharp-linuxmusl-x64", - "hash": "sha512-WT+d/cgqKkkKySYmqoZ8y3pxx7lx9vVejxW/W4DOFMYVSkErR+w7mf2u8m/y4+xHe7yY9DAXQMWQhpnMuFfScw==" - } - }, - "npm:@img/sharp-linuxmusl-x64": { - "type": "npm", - "name": "npm:@img/sharp-linuxmusl-x64", - "data": { - "version": "0.34.5", - "packageName": "@img/sharp-linuxmusl-x64", - "hash": "sha512-Jg8wNT1MUzIvhBFxViqrEhWDGzqymo3sV7z7ZsaWbZNDLXRJZoRGrjulp60YYtV4wfY8VIKcWidjojlLcWrd8Q==" - } - }, - "npm:@img/sharp-wasm32@0.33.5": { - "type": "npm", - "name": "npm:@img/sharp-wasm32@0.33.5", - "data": { - "version": "0.33.5", - "packageName": "@img/sharp-wasm32", - "hash": "sha512-ykUW4LVGaMcU9lu9thv85CbRMAwfeadCJHRsg2GmeRa/cJxsVY9Rbd57JcMxBkKHag5U/x7TSBpScF4U8ElVzg==" - } - }, - "npm:@img/sharp-wasm32@0.34.5": { - "type": "npm", - "name": "npm:@img/sharp-wasm32@0.34.5", - "data": { - "version": "0.34.5", - "packageName": "@img/sharp-wasm32", - "hash": "sha512-OdWTEiVkY2PHwqkbBI8frFxQQFekHaSSkUIJkwzclWZe64O1X4UlUjqqqLaPbUpMOQk6FBu/HtlGXNblIs0huw==" - } - }, - "npm:@img/sharp-win32-arm64": { - "type": "npm", - "name": "npm:@img/sharp-win32-arm64", - "data": { - "version": "0.34.5", - "packageName": "@img/sharp-win32-arm64", - "hash": "sha512-WQ3AgWCWYSb2yt+IG8mnC6Jdk9Whs7O0gxphblsLvdhSpSTtmu69ZG1Gkb6NuvxsNACwiPV6cNSZNzt0KPsw7g==" - } - }, - "npm:@img/sharp-win32-ia32@0.33.5": { - "type": "npm", - "name": "npm:@img/sharp-win32-ia32@0.33.5", - "data": { - "version": "0.33.5", - "packageName": "@img/sharp-win32-ia32", - "hash": "sha512-T36PblLaTwuVJ/zw/LaH0PdZkRz5rd3SmMHX8GSmR7vtNSP5Z6bQkExdSK7xGWyxLw4sUknBuugTelgw2faBbQ==" - } - }, - "npm:@img/sharp-win32-ia32@0.34.5": { - "type": "npm", - "name": "npm:@img/sharp-win32-ia32@0.34.5", - "data": { - "version": "0.34.5", - "packageName": "@img/sharp-win32-ia32", - "hash": "sha512-FV9m/7NmeCmSHDD5j4+4pNI8Cp3aW+JvLoXcTUo0IqyjSfAZJ8dIUmijx1qaJsIiU+Hosw6xM5KijAWRJCSgNg==" - } - }, - "npm:@img/sharp-win32-x64@0.33.5": { - "type": "npm", - "name": "npm:@img/sharp-win32-x64@0.33.5", - "data": { - "version": "0.33.5", - "packageName": "@img/sharp-win32-x64", - "hash": "sha512-MpY/o8/8kj+EcnxwvrP4aTJSWw/aZ7JIGR4aBeZkZw5B7/Jn+tY9/VNwtcoGmdT7GfggGIU4kygOMSbYnOrAbg==" - } - }, - "npm:@img/sharp-win32-x64@0.34.5": { - "type": "npm", - "name": "npm:@img/sharp-win32-x64@0.34.5", - "data": { - "version": "0.34.5", - "packageName": "@img/sharp-win32-x64", - "hash": "sha512-+29YMsqY2/9eFEiW93eqWnuLcWcufowXewwSNIT6UwZdUUCrM3oFjMWH/Z6/TMmb4hlFenmfAVbpWeup2jryCw==" - } - }, - "npm:@inquirer/ansi": { - "type": "npm", - "name": "npm:@inquirer/ansi", - "data": { - "version": "2.0.4", - "packageName": "@inquirer/ansi", - "hash": "sha512-DpcZrQObd7S0R/U3bFdkcT5ebRwbTTC4D3tCc1vsJizmgPLxNJBo+AAFmrZwe8zk30P2QzgzGWZ3Q9uJwWuhIg==" - } - }, - "npm:@inquirer/checkbox": { - "type": "npm", - "name": "npm:@inquirer/checkbox", - "data": { - "version": "5.1.2", - "packageName": "@inquirer/checkbox", - "hash": "sha512-PubpMPO2nJgMufkoB3P2wwxNXEMUXnBIKi/ACzDUYfaoPuM7gSTmuxJeMscoLVEsR4qqrCMf5p0SiYGWnVJ8kw==" - } - }, - "npm:@inquirer/confirm": { - "type": "npm", - "name": "npm:@inquirer/confirm", - "data": { - "version": "6.0.10", - "packageName": "@inquirer/confirm", - "hash": "sha512-tiNyA73pgpQ0FQ7axqtoLUe4GDYjNCDcVsbgcA5anvwg2z6i+suEngLKKJrWKJolT//GFPZHwN30binDIHgSgQ==" - } - }, - "npm:@inquirer/core": { - "type": "npm", - "name": "npm:@inquirer/core", - "data": { - "version": "11.1.7", - "packageName": "@inquirer/core", - "hash": "sha512-1BiBNDk9btIwYIzNZpkikIHXWeNzNncJePPqwDyVMhXhD1ebqbpn1mKGctpoqAbzywZfdG0O4tvmsGIcOevAPQ==" - } - }, - "npm:@inquirer/editor": { - "type": "npm", - "name": "npm:@inquirer/editor", - "data": { - "version": "5.0.10", - "packageName": "@inquirer/editor", - "hash": "sha512-VJx4XyaKea7t8hEApTw5dxeIyMtWXre2OiyJcICCRZI4hkoHsMoCnl/KbUnJJExLbH9csLLHMVR144ZhFE1CwA==" - } - }, - "npm:@inquirer/expand": { - "type": "npm", - "name": "npm:@inquirer/expand", - "data": { - "version": "5.0.10", - "packageName": "@inquirer/expand", - "hash": "sha512-fC0UHJPXsTRvY2fObiwuQYaAnHrp3aDqfwKUJSdfpgv18QUG054ezGbaRNStk/BKD5IPijeMKWej8VV8O5Q/eQ==" - } - }, - "npm:@inquirer/external-editor": { - "type": "npm", - "name": "npm:@inquirer/external-editor", - "data": { - "version": "2.0.4", - "packageName": "@inquirer/external-editor", - "hash": "sha512-Prenuv9C1PHj2Itx0BcAOVBTonz02Hc2Nd2DbU67PdGUaqn0nPCnV34oDyyoaZHnmfRxkpuhh/u51ThkrO+RdA==" - } - }, - "npm:@inquirer/figures": { - "type": "npm", - "name": "npm:@inquirer/figures", - "data": { - "version": "2.0.4", - "packageName": "@inquirer/figures", - "hash": "sha512-eLBsjlS7rPS3WEhmOmh1znQ5IsQrxWzxWDxO51e4urv+iVrSnIHbq4zqJIOiyNdYLa+BVjwOtdetcQx1lWPpiQ==" - } - }, - "npm:@inquirer/input": { - "type": "npm", - "name": "npm:@inquirer/input", - "data": { - "version": "5.0.10", - "packageName": "@inquirer/input", - "hash": "sha512-nvZ6qEVeX/zVtZ1dY2hTGDQpVGD3R7MYPLODPgKO8Y+RAqxkrP3i/3NwF3fZpLdaMiNuK0z2NaYIx9tPwiSegQ==" - } - }, - "npm:@inquirer/number": { - "type": "npm", - "name": "npm:@inquirer/number", - "data": { - "version": "4.0.10", - "packageName": "@inquirer/number", - "hash": "sha512-Ht8OQstxiS3APMGjHV0aYAjRAysidWdwurWEo2i8yI5xbhOBWqizT0+MU1S2GCcuhIBg+3SgWVjEoXgfhY+XaA==" - } - }, - "npm:@inquirer/password": { - "type": "npm", - "name": "npm:@inquirer/password", - "data": { - "version": "5.0.10", - "packageName": "@inquirer/password", - "hash": "sha512-QbNyvIE8q2GTqKLYSsA8ATG+eETo+m31DSR0+AU7x3d2FhaTWzqQek80dj3JGTo743kQc6mhBR0erMjYw5jQ0A==" - } - }, - "npm:@inquirer/prompts": { - "type": "npm", - "name": "npm:@inquirer/prompts", - "data": { - "version": "8.3.2", - "packageName": "@inquirer/prompts", - "hash": "sha512-yFroiSj2iiBFlm59amdTvAcQFvWS6ph5oKESls/uqPBect7rTU2GbjyZO2DqxMGuIwVA8z0P4K6ViPcd/cp+0w==" - } - }, - "npm:@inquirer/rawlist": { - "type": "npm", - "name": "npm:@inquirer/rawlist", - "data": { - "version": "5.2.6", - "packageName": "@inquirer/rawlist", - "hash": "sha512-jfw0MLJ5TilNsa9zlJ6nmRM0ZFVZhhTICt4/6CU2Dv1ndY7l3sqqo1gIYZyMMDw0LvE1u1nzJNisfHEhJIxq5w==" - } - }, - "npm:@inquirer/search": { - "type": "npm", - "name": "npm:@inquirer/search", - "data": { - "version": "4.1.6", - "packageName": "@inquirer/search", - "hash": "sha512-3/6kTRae98hhDevENScy7cdFEuURnSpM3JbBNg8yfXLw88HgTOl+neUuy/l9W0No5NzGsLVydhBzTIxZP7yChQ==" - } - }, - "npm:@inquirer/select": { - "type": "npm", - "name": "npm:@inquirer/select", - "data": { - "version": "5.1.2", - "packageName": "@inquirer/select", - "hash": "sha512-kTK8YIkHV+f02y7bWCh7E0u2/11lul5WepVTclr3UMBtBr05PgcZNWfMa7FY57ihpQFQH/spLMHTcr0rXy50tA==" - } - }, - "npm:@inquirer/type": { - "type": "npm", - "name": "npm:@inquirer/type", - "data": { - "version": "4.0.4", - "packageName": "@inquirer/type", - "hash": "sha512-PamArxO3cFJZoOzspzo6cxVlLeIftyBsZw/S9bKY5DzxqJVZgjoj1oP8d0rskKtp7sZxBycsoer1g6UeJV1BBA==" - } - }, - "npm:@isaacs/cliui@8.0.2": { - "type": "npm", - "name": "npm:@isaacs/cliui@8.0.2", - "data": { - "version": "8.0.2", - "packageName": "@isaacs/cliui", - "hash": "sha512-O8jcjabXaleOG9DQ0+ARXWZBTfnP4WNAqzuiJK7ll44AmxGKv/J2M4TPjxjY3znBCfvBXFzucm1twdyFybFqEA==" - } - }, - "npm:@isaacs/cliui": { - "type": "npm", - "name": "npm:@isaacs/cliui", - "data": { - "version": "9.0.0", - "packageName": "@isaacs/cliui", - "hash": "sha512-AokJm4tuBHillT+FpMtxQ60n8ObyXBatq7jD2/JA9dxbDDokKQm8KMht5ibGzLVU9IJDIKK4TPKgMHEYMn3lMg==" - } - }, - "npm:@isaacs/fs-minipass": { - "type": "npm", - "name": "npm:@isaacs/fs-minipass", - "data": { - "version": "4.0.1", - "packageName": "@isaacs/fs-minipass", - "hash": "sha512-wgm9Ehl2jpeqP3zw/7mo3kRHFp5MEDhqAdwy1fTGkHAwnkGOVsgpvQhL8B5n1qlb01jV3n/bI0ZfZp5lWA1k4w==" - } - }, - "npm:@jest/diff-sequences": { - "type": "npm", - "name": "npm:@jest/diff-sequences", - "data": { - "version": "30.3.0", - "packageName": "@jest/diff-sequences", - "hash": "sha512-cG51MVnLq1ecVUaQ3fr6YuuAOitHK1S4WUJHnsPFE/quQr33ADUx1FfrTCpMCRxvy0Yr9BThKpDjSlcTi91tMA==" - } - }, - "npm:@jest/get-type": { - "type": "npm", - "name": "npm:@jest/get-type", - "data": { - "version": "30.1.0", - "packageName": "@jest/get-type", - "hash": "sha512-eMbZE2hUnx1WV0pmURZY9XoXPkUYjpc55mb0CrhtdWLtzMQPFvu/rZkTLZFTsdaVQa+Tr4eWAteqcUzoawq/uA==" - } - }, - "npm:@jest/schemas": { - "type": "npm", - "name": "npm:@jest/schemas", - "data": { - "version": "30.0.5", - "packageName": "@jest/schemas", - "hash": "sha512-DmdYgtezMkh3cpU8/1uyXakv3tJRcmcXxBOcO0tbaozPwpmh4YMsnWrQm9ZmZMfa5ocbxzbFk6O4bDPEc/iAnA==" - } - }, - "npm:@jridgewell/gen-mapping": { - "type": "npm", - "name": "npm:@jridgewell/gen-mapping", - "data": { - "version": "0.3.13", - "packageName": "@jridgewell/gen-mapping", - "hash": "sha512-2kkt/7niJ6MgEPxF0bYdQ6etZaA+fQvDcLKckhy1yIQOzaoKjBBjSj63/aLVjYE3qhRt5dvM+uUyfCg6UKCBbA==" - } - }, - "npm:@jridgewell/remapping": { - "type": "npm", - "name": "npm:@jridgewell/remapping", - "data": { - "version": "2.3.5", - "packageName": "@jridgewell/remapping", - "hash": "sha512-LI9u/+laYG4Ds1TDKSJW2YPrIlcVYOwi2fUC6xB43lueCjgxV4lffOCZCtYFiH6TNOX+tQKXx97T4IKHbhyHEQ==" - } - }, - "npm:@jridgewell/resolve-uri": { - "type": "npm", - "name": "npm:@jridgewell/resolve-uri", - "data": { - "version": "3.1.2", - "packageName": "@jridgewell/resolve-uri", - "hash": "sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw==" - } - }, - "npm:@jridgewell/sourcemap-codec": { - "type": "npm", - "name": "npm:@jridgewell/sourcemap-codec", - "data": { - "version": "1.5.5", - "packageName": "@jridgewell/sourcemap-codec", - "hash": "sha512-cYQ9310grqxueWbl+WuIUIaiUaDcj7WOq5fVhEljNVgRfOUhY9fy2zTvfoqWsnebh8Sl70VScFbICvJnLKB0Og==" - } - }, - "npm:@jridgewell/trace-mapping": { - "type": "npm", - "name": "npm:@jridgewell/trace-mapping", - "data": { - "version": "0.3.31", - "packageName": "@jridgewell/trace-mapping", - "hash": "sha512-zzNR+SdQSDJzc8joaeP8QQoCQr8NuYx2dIIytl1QeBEZHJ9uW6hebsrYgbz8hJwUQao3TWCMtmfV8Nu1twOLAw==" - } - }, - "npm:@jridgewell/trace-mapping@0.3.9": { - "type": "npm", - "name": "npm:@jridgewell/trace-mapping@0.3.9", - "data": { - "version": "0.3.9", - "packageName": "@jridgewell/trace-mapping", - "hash": "sha512-3Belt6tdc8bPgAtbcmdtNJlirVoTmEb5e2gC94PnkwEW9jI6CAHUeoG85tjWP5WquqfavoMtMwiG4P926ZKKuQ==" - } - }, - "npm:@kikobeats/content-type": { - "type": "npm", - "name": "npm:@kikobeats/content-type", - "data": { - "version": "1.0.3", - "packageName": "@kikobeats/content-type", - "hash": "sha512-5FJ7DRACUgopXmRomCLlncPMAEM3oj6r8jlTT4h/oagn9kdbXDdr3jF/Xaoqu2T1DPPqTBRQJw63QuCwhjb/PQ==" - } - }, - "npm:@kikobeats/time-span": { - "type": "npm", - "name": "npm:@kikobeats/time-span", - "data": { - "version": "1.0.11", - "packageName": "@kikobeats/time-span", - "hash": "sha512-S+msolgD9aPVoJ+ZomVD0WSKm+qJBKvJimzwq8dMvlGKbIPsAyEWhHHdSRuQT3g2VpDIctvbi9nU++kN/VPZaw==" - } - }, - "npm:@ltd/j-toml": { - "type": "npm", - "name": "npm:@ltd/j-toml", - "data": { - "version": "1.38.0", - "packageName": "@ltd/j-toml", - "hash": "sha512-lYtBcmvHustHQtg4X7TXUu1Xa/tbLC3p2wLvgQI+fWVySguVZJF60Snxijw5EiohumxZbR10kWYFFebh1zotiw==" - } - }, - "npm:@mantine/core": { - "type": "npm", - "name": "npm:@mantine/core", - "data": { - "version": "8.3.18", - "packageName": "@mantine/core", - "hash": "sha512-9tph1lTVogKPjTx02eUxDUOdXacPzK62UuSqb4TdGliI54/Xgxftq0Dfqu6XuhCxn9J5MDJaNiLDvL/1KRkYqA==" - } - }, - "npm:@mantine/hooks": { - "type": "npm", - "name": "npm:@mantine/hooks", - "data": { - "version": "8.3.18", - "packageName": "@mantine/hooks", - "hash": "sha512-QoWr9+S8gg5050TQ06aTSxtlpGjYOpIllRbjYYXlRvZeTsUqiTbVfvQROLexu4rEaK+yy9Wwriwl9PMRgbLqPw==" - } - }, - "npm:@manypkg/find-root": { - "type": "npm", - "name": "npm:@manypkg/find-root", - "data": { - "version": "3.1.0", - "packageName": "@manypkg/find-root", - "hash": "sha512-BcSqCyKhBVZ5YkSzOiheMCV41kqAFptW6xGqYSTjkVTl9XQpr+pqHhwgGCOHQtjDCv7Is6EFyA14Sm5GVbVABA==" - } - }, - "npm:@manypkg/tools": { - "type": "npm", - "name": "npm:@manypkg/tools", - "data": { - "version": "2.1.0", - "packageName": "@manypkg/tools", - "hash": "sha512-0FOIepYR4ugPYaHwK7hDeHDkfPOBVvayt9QpvRbi2LT/h2b0GaE/gM9Gag7fsnyYyNaTZ2IGyOuVg07IYepvYQ==" - } - }, - "npm:@mapbox/node-pre-gyp": { - "type": "npm", - "name": "npm:@mapbox/node-pre-gyp", - "data": { - "version": "2.0.0", - "packageName": "@mapbox/node-pre-gyp", - "hash": "sha512-llMXd39jtP0HpQLVI37Bf1m2ADlEb35GYSh1SDSLsBhR+5iCxiNGlT31yqbNtVHygHAtMy6dWFERpU2JgufhPg==" - } - }, - "npm:@motionone/animation": { - "type": "npm", - "name": "npm:@motionone/animation", - "data": { - "version": "10.18.0", - "packageName": "@motionone/animation", - "hash": "sha512-9z2p5GFGCm0gBsZbi8rVMOAJCtw1WqBTIPw3ozk06gDvZInBPIsQcHgYogEJ4yuHJ+akuW8g1SEIOpTOvYs8hw==" - } - }, - "npm:@motionone/dom": { - "type": "npm", - "name": "npm:@motionone/dom", - "data": { - "version": "10.18.0", - "packageName": "@motionone/dom", - "hash": "sha512-bKLP7E0eyO4B2UaHBBN55tnppwRnaE3KFfh3Ps9HhnAkar3Cb69kUCJY9as8LrccVYKgHA+JY5dOQqJLOPhF5A==" - } - }, - "npm:@motionone/easing": { - "type": "npm", - "name": "npm:@motionone/easing", - "data": { - "version": "10.18.0", - "packageName": "@motionone/easing", - "hash": "sha512-VcjByo7XpdLS4o9T8t99JtgxkdMcNWD3yHU/n6CLEz3bkmKDRZyYQ/wmSf6daum8ZXqfUAgFeCZSpJZIMxaCzg==" - } - }, - "npm:@motionone/generators": { - "type": "npm", - "name": "npm:@motionone/generators", - "data": { - "version": "10.18.0", - "packageName": "@motionone/generators", - "hash": "sha512-+qfkC2DtkDj4tHPu+AFKVfR/C30O1vYdvsGYaR13W/1cczPrrcjdvYCj0VLFuRMN+lP1xvpNZHCRNM4fBzn1jg==" - } - }, - "npm:@motionone/types": { - "type": "npm", - "name": "npm:@motionone/types", - "data": { - "version": "10.17.1", - "packageName": "@motionone/types", - "hash": "sha512-KaC4kgiODDz8hswCrS0btrVrzyU2CSQKO7Ps90ibBVSQmjkrt2teqta6/sOG59v7+dPnKMAg13jyqtMKV2yJ7A==" - } - }, - "npm:@motionone/utils": { - "type": "npm", - "name": "npm:@motionone/utils", - "data": { - "version": "10.18.0", - "packageName": "@motionone/utils", - "hash": "sha512-3XVF7sgyTSI2KWvTf6uLlBJ5iAgRgmvp3bpuOiQJvInd4nZ19ET8lX5unn30SlmRH7hXbBbH+Gxd0m0klJ3Xtw==" - } - }, - "npm:@mrleebo/prisma-ast": { - "type": "npm", - "name": "npm:@mrleebo/prisma-ast", - "data": { - "version": "0.13.1", - "packageName": "@mrleebo/prisma-ast", - "hash": "sha512-XyroGQXcHrZdvmrGJvsA9KNeOOgGMg1Vg9OlheUsBOSKznLMDl+YChxbkboRHvtFYJEMRYmlV3uoo/njCw05iw==" - } - }, - "npm:@napi-rs/wasm-runtime": { - "type": "npm", - "name": "npm:@napi-rs/wasm-runtime", - "data": { - "version": "0.2.4", - "packageName": "@napi-rs/wasm-runtime", - "hash": "sha512-9zESzOO5aDByvhIAsOy9TbpZ0Ur2AJbUI7UT73kcUTS2mxAMHOBaa1st/jAymNoCtvrit99kkzT1FZuXVcgfIQ==" - } - }, - "npm:@napi-rs/wasm-runtime@1.1.1": { - "type": "npm", - "name": "npm:@napi-rs/wasm-runtime@1.1.1", - "data": { - "version": "1.1.1", - "packageName": "@napi-rs/wasm-runtime", - "hash": "sha512-p64ah1M1ld8xjWv3qbvFwHiFVWrq1yFvV4f7w+mzaqiR4IlSgkqhcRdHwsGgomwzBH51sRY4NEowLxnaBjcW/A==" - } - }, - "npm:@nodelib/fs.scandir": { - "type": "npm", - "name": "npm:@nodelib/fs.scandir", - "data": { - "version": "2.1.5", - "packageName": "@nodelib/fs.scandir", - "hash": "sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==" - } - }, - "npm:@nodelib/fs.stat": { - "type": "npm", - "name": "npm:@nodelib/fs.stat", - "data": { - "version": "2.0.5", - "packageName": "@nodelib/fs.stat", - "hash": "sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==" - } - }, - "npm:@nodelib/fs.walk": { - "type": "npm", - "name": "npm:@nodelib/fs.walk", - "data": { - "version": "1.2.8", - "packageName": "@nodelib/fs.walk", - "hash": "sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==" - } - }, - "npm:@npmcli/agent": { - "type": "npm", - "name": "npm:@npmcli/agent", - "data": { - "version": "3.0.0", - "packageName": "@npmcli/agent", - "hash": "sha512-S79NdEgDQd/NGCay6TCoVzXSj74skRZIKJcpJjC5lOq34SZzyI6MqtiiWoiVWoVrTcGjNeC4ipbh1VIHlpfF5Q==" - } - }, - "npm:@npmcli/fs": { - "type": "npm", - "name": "npm:@npmcli/fs", - "data": { - "version": "4.0.0", - "packageName": "@npmcli/fs", - "hash": "sha512-/xGlezI6xfGO9NwuJlnwz/K14qD1kCSAGtacBHnGzeAIuJGazcp45KP5NuyARXoKb7cwulAGWVsbeSxdG/cb0Q==" - } - }, - "npm:@nx/nx-darwin-arm64": { - "type": "npm", - "name": "npm:@nx/nx-darwin-arm64", - "data": { - "version": "22.6.1", - "packageName": "@nx/nx-darwin-arm64", - "hash": "sha512-lixkEBGFdEsUiqEZg9LIyjfiTv12Sg1Es/yUgrdOQUAZu+5oiUPMoybyBwrvINl+fZw+PLh66jOmB4GSP2aUMQ==" - } - }, - "npm:@nx/nx-darwin-x64": { - "type": "npm", - "name": "npm:@nx/nx-darwin-x64", - "data": { - "version": "22.6.1", - "packageName": "@nx/nx-darwin-x64", - "hash": "sha512-HvgtOtuWnEf0dpfWb05N0ptdFg040YgzsKFhXg6+qaBJg5Hg0e0AXPKaSgh2PCqCIDlKu40YtwVgF7KXxXAGlA==" - } - }, - "npm:@nx/nx-freebsd-x64": { - "type": "npm", - "name": "npm:@nx/nx-freebsd-x64", - "data": { - "version": "22.6.1", - "packageName": "@nx/nx-freebsd-x64", - "hash": "sha512-g2wUltGX+7/+mdTV5d6ODa0ylrNu/krgb9YdrsbhW6oZeXYm2LeLOAnYqIlL/Kx140NLrb5Kcz7bi7JrBAw4Ow==" - } - }, - "npm:@nx/nx-linux-arm-gnueabihf": { - "type": "npm", - "name": "npm:@nx/nx-linux-arm-gnueabihf", - "data": { - "version": "22.6.1", - "packageName": "@nx/nx-linux-arm-gnueabihf", - "hash": "sha512-TTqisFPAPrj35EihvzotBbajS+0bX++PQggmRVmDmGwSTrpySRJwZnKNHYDqP6s9tigDvkNJOJftK+GkBEFRRA==" - } - }, - "npm:@nx/nx-linux-arm64-gnu": { - "type": "npm", - "name": "npm:@nx/nx-linux-arm64-gnu", - "data": { - "version": "22.6.1", - "packageName": "@nx/nx-linux-arm64-gnu", - "hash": "sha512-uIkPcanSTIcyh7/6LOoX0YpGO/7GkVhMRgyM9Mg/7ItFjCtRaeuPEPrJESsaNeB5zIVVhI4cXbGrM9NDnagiiw==" - } - }, - "npm:@nx/nx-linux-arm64-musl": { - "type": "npm", - "name": "npm:@nx/nx-linux-arm64-musl", - "data": { - "version": "22.6.1", - "packageName": "@nx/nx-linux-arm64-musl", - "hash": "sha512-eqkG8s/7remiRZ1Lo2zIrFLSNsQ/0x9fAj++CV1nqFE+rfykPQhC48F8pqsq6tUQpI5HqRQEfQgv4CnFNpLR+w==" - } - }, - "npm:@nx/nx-linux-x64-gnu": { - "type": "npm", - "name": "npm:@nx/nx-linux-x64-gnu", - "data": { - "version": "22.6.1", - "packageName": "@nx/nx-linux-x64-gnu", - "hash": "sha512-6DhSupCcDa6BYzQ48qsMK4LIdIO+y4E+4xuUBkX2YTGOZh58gctELCv7Gi6/FhiC8rzVzM7hDcygOvHCGc30zA==" - } - }, - "npm:@nx/nx-linux-x64-musl": { - "type": "npm", - "name": "npm:@nx/nx-linux-x64-musl", - "data": { - "version": "22.6.1", - "packageName": "@nx/nx-linux-x64-musl", - "hash": "sha512-QqtfaBhdfLRKGucpP8RSv7KJ51XRWpfUcXPhkb/1dKP/b9/Z0kpaCgczGHdrAtX9m6haWw+sQXYGxnStZIg/TQ==" - } - }, - "npm:@nx/nx-win32-arm64-msvc": { - "type": "npm", - "name": "npm:@nx/nx-win32-arm64-msvc", - "data": { - "version": "22.6.1", - "packageName": "@nx/nx-win32-arm64-msvc", - "hash": "sha512-8pTWXphY5IIgY3edZ5SfzP8yPjBqoAxRV5snAYDctF4e0OC1nDOUims70jLesMle8DTSWiHPSfbLVfp2HkU9WQ==" - } - }, - "npm:@nx/nx-win32-x64-msvc": { - "type": "npm", - "name": "npm:@nx/nx-win32-x64-msvc", - "data": { - "version": "22.6.1", - "packageName": "@nx/nx-win32-x64-msvc", - "hash": "sha512-XMYrtsR5O39uNR4fVpFs65rVB09FyLXvUM735r2rO7IUWWHxHWTAgVcc+gqQaAchBPqR9f1q+3u2i1Inub3Cdw==" - } - }, - "npm:@oxc-parser/binding-android-arm64": { - "type": "npm", - "name": "npm:@oxc-parser/binding-android-arm64", - "data": { - "version": "0.104.0", - "packageName": "@oxc-parser/binding-android-arm64", - "hash": "sha512-2a4tk6mtkPbGwT4Zi8pjOqMkmkrvc/Pussmas+uXoiCVv7sn7P7Jn93ATu/HK49dxIwvrvQCZ3BcS0KhAvKxlQ==" - } - }, - "npm:@oxc-parser/binding-darwin-arm64": { - "type": "npm", - "name": "npm:@oxc-parser/binding-darwin-arm64", - "data": { - "version": "0.104.0", - "packageName": "@oxc-parser/binding-darwin-arm64", - "hash": "sha512-qprm6/Hr35TSCkJoo+huRHq3siyqRyMBtNVNJQkJorZAGcffQTzzdhmzJnA7TQc+WnN36/Jq56D7/INu0/2knQ==" - } - }, - "npm:@oxc-parser/binding-darwin-x64": { - "type": "npm", - "name": "npm:@oxc-parser/binding-darwin-x64", - "data": { - "version": "0.104.0", - "packageName": "@oxc-parser/binding-darwin-x64", - "hash": "sha512-Xpu0l/l2zCUeheIrpu7dz6FxQ96W0f8Dq9rhYE1yLtTqQpMGhefnEV5Lr8qd15clwniZiKWZO6FGQawQ7npt3Q==" - } - }, - "npm:@oxc-parser/binding-freebsd-x64": { - "type": "npm", - "name": "npm:@oxc-parser/binding-freebsd-x64", - "data": { - "version": "0.104.0", - "packageName": "@oxc-parser/binding-freebsd-x64", - "hash": "sha512-I++fE3ZrhjtLzA0mqFcC/GuA6+dWNa/QkJJfm7sS4NGGQhipQQ2vikCK6jZK1YGIsbDFDrSoQCfA3tQfeK6pqg==" - } - }, - "npm:@oxc-parser/binding-linux-arm-gnueabihf": { - "type": "npm", - "name": "npm:@oxc-parser/binding-linux-arm-gnueabihf", - "data": { - "version": "0.104.0", - "packageName": "@oxc-parser/binding-linux-arm-gnueabihf", - "hash": "sha512-JkvwCNZm3ZwVG1r+c3LrcrxpJ1YXAtYEbVwOcwe+wh6LnltGoxEEZk7Zo9259jch8GiWW6AfRGDQY2FxzWJT7A==" - } - }, - "npm:@oxc-parser/binding-linux-arm64-gnu": { - "type": "npm", - "name": "npm:@oxc-parser/binding-linux-arm64-gnu", - "data": { - "version": "0.104.0", - "packageName": "@oxc-parser/binding-linux-arm64-gnu", - "hash": "sha512-CD9Tzp3dfMtujHikS0JwTIOaDUCBWItvziUTDYsMXrfVHjfSaGGsaKqIQmNsG1Qg7QdmtMZtMW0pQcHGZQ2OoA==" - } - }, - "npm:@oxc-parser/binding-linux-arm64-musl": { - "type": "npm", - "name": "npm:@oxc-parser/binding-linux-arm64-musl", - "data": { - "version": "0.104.0", - "packageName": "@oxc-parser/binding-linux-arm64-musl", - "hash": "sha512-lARUu7lrZ7CoAm2arLJQkq9Sem2NiC3DaphmPvlf2X+ngkWcYUCRxZanhe+++x/bVzKrwvxormC3IVaulP51mQ==" - } - }, - "npm:@oxc-parser/binding-linux-riscv64-gnu": { - "type": "npm", - "name": "npm:@oxc-parser/binding-linux-riscv64-gnu", - "data": { - "version": "0.104.0", - "packageName": "@oxc-parser/binding-linux-riscv64-gnu", - "hash": "sha512-hnPWrncj89/7AiMt19Juqpa04z8OpJrIf3/ToGkJafZ3A1ZN50atyNKQD5EmGs2/gdaFxF4hG3zUnLKhX9nTtQ==" - } - }, - "npm:@oxc-parser/binding-linux-s390x-gnu": { - "type": "npm", - "name": "npm:@oxc-parser/binding-linux-s390x-gnu", - "data": { - "version": "0.104.0", - "packageName": "@oxc-parser/binding-linux-s390x-gnu", - "hash": "sha512-VegcKzBgUoHQ/p5NyV+GrdEgJEXhX4AD+kCZng+viP/eNsZJgmp2K1jDBCeLSUZIdSmdldK5wlSma3Bf8MKcUQ==" - } - }, - "npm:@oxc-parser/binding-linux-x64-gnu": { - "type": "npm", - "name": "npm:@oxc-parser/binding-linux-x64-gnu", - "data": { - "version": "0.104.0", - "packageName": "@oxc-parser/binding-linux-x64-gnu", - "hash": "sha512-nDtCJIwaNgVNLR1EOgb1Xsz7VL3TOASLRbQEC+wLZycs3CCETlGNQht5OqwXPNjbem61kl4l8dvuEavu8BRT/Q==" - } - }, - "npm:@oxc-parser/binding-linux-x64-musl": { - "type": "npm", - "name": "npm:@oxc-parser/binding-linux-x64-musl", - "data": { - "version": "0.104.0", - "packageName": "@oxc-parser/binding-linux-x64-musl", - "hash": "sha512-E98MNPE3d88D2xUABQYWH2cYqLA/mmOM4XL3CZHaG5dM68sN3fzCyV0ryK5skq4hVK1L2e6jk79z5oLArsCYyA==" - } - }, - "npm:@oxc-parser/binding-openharmony-arm64": { - "type": "npm", - "name": "npm:@oxc-parser/binding-openharmony-arm64", - "data": { - "version": "0.104.0", - "packageName": "@oxc-parser/binding-openharmony-arm64", - "hash": "sha512-/FNOTg5tzlpB0hunjdI1AiJp2lC8NvBl0HpqMk0qp42KAK+yOe7nyw7XcNpMH7SvhmPe+R3oyJV8UQv953sCvA==" - } - }, - "npm:@oxc-parser/binding-wasm32-wasi": { - "type": "npm", - "name": "npm:@oxc-parser/binding-wasm32-wasi", - "data": { - "version": "0.104.0", - "packageName": "@oxc-parser/binding-wasm32-wasi", - "hash": "sha512-I+xnHDxkInzHBZV+YERIvvrt+GFwEBdgq/RUax5jLl8yHg5iPVq11qtGh3m+2v8zAjQXYPmBbcANNGWwgXqtWQ==" - } - }, - "npm:@oxc-parser/binding-win32-arm64-msvc": { - "type": "npm", - "name": "npm:@oxc-parser/binding-win32-arm64-msvc", - "data": { - "version": "0.104.0", - "packageName": "@oxc-parser/binding-win32-arm64-msvc", - "hash": "sha512-EWHVWfllZGTJFWfjfBKzvS/0uuw6/Z3+o598VTvySamy5fz2f4P1mNElvTi4tGGhbm1sGTYnYRNRW8XBAnGUGg==" - } - }, - "npm:@oxc-parser/binding-win32-x64-msvc": { - "type": "npm", - "name": "npm:@oxc-parser/binding-win32-x64-msvc", - "data": { - "version": "0.104.0", - "packageName": "@oxc-parser/binding-win32-x64-msvc", - "hash": "sha512-Nj7zeywIvxBRRd0I6NrdGufOOdiwQcAKnkRwtWo5dejPTmR1XM+9iRHJztoKacejW5+VOdEwQrfCjpa8MdLJBQ==" - } - }, - "npm:@oxc-project/types": { - "type": "npm", - "name": "npm:@oxc-project/types", - "data": { - "version": "0.104.0", - "packageName": "@oxc-project/types", - "hash": "sha512-We30k+29WpOerl3gCb1v8IFL4vmKTkghjist4TQ89yw7adGDCKFGf8+4mA4H3Ek5ajRzzBZ7BtGY8aIaOv9oFQ==" - } - }, - "npm:@oxc-project/types@0.115.0": { - "type": "npm", - "name": "npm:@oxc-project/types@0.115.0", - "data": { - "version": "0.115.0", - "packageName": "@oxc-project/types", - "hash": "sha512-4n91DKnebUS4yjUHl2g3/b2T+IUdCfmoZGhmwsovZCDaJSs+QkVAM+0AqqTxHSsHfeiMuueT75cZaZcT/m0pSw==" - } - }, - "npm:@oxc-project/types@0.122.0": { - "type": "npm", - "name": "npm:@oxc-project/types@0.122.0", - "data": { - "version": "0.122.0", - "packageName": "@oxc-project/types", - "hash": "sha512-oLAl5kBpV4w69UtFZ9xqcmTi+GENWOcPF7FCrczTiBbmC0ibXxCwyvZGbO39rCVEuLGAZM84DH0pUIyyv/YJzA==" - } - }, - "npm:@oxc-project/types@0.98.0": { - "type": "npm", - "name": "npm:@oxc-project/types@0.98.0", - "data": { - "version": "0.98.0", - "packageName": "@oxc-project/types", - "hash": "sha512-Vzmd6FsqVuz5HQVcRC/hrx7Ujo3WEVeQP7C2UNP5uy1hUY4SQvMB+93jxkI1KRHz9a/6cni3glPOtvteN+zpsw==" - } - }, - "npm:@oxc-resolver/binding-android-arm-eabi": { - "type": "npm", - "name": "npm:@oxc-resolver/binding-android-arm-eabi", - "data": { - "version": "11.19.1", - "packageName": "@oxc-resolver/binding-android-arm-eabi", - "hash": "sha512-aUs47y+xyXHUKlbhqHUjBABjvycq6YSD7bpxSW7vplUmdzAlJ93yXY6ZR0c1o1x5A/QKbENCvs3+NlY8IpIVzg==" - } - }, - "npm:@oxc-resolver/binding-android-arm64": { - "type": "npm", - "name": "npm:@oxc-resolver/binding-android-arm64", - "data": { - "version": "11.19.1", - "packageName": "@oxc-resolver/binding-android-arm64", - "hash": "sha512-oolbkRX+m7Pq2LNjr/kKgYeC7bRDMVTWPgxBGMjSpZi/+UskVo4jsMU3MLheZV55jL6c3rNelPl4oD60ggYmqA==" - } - }, - "npm:@oxc-resolver/binding-darwin-arm64": { - "type": "npm", - "name": "npm:@oxc-resolver/binding-darwin-arm64", - "data": { - "version": "11.19.1", - "packageName": "@oxc-resolver/binding-darwin-arm64", - "hash": "sha512-nUC6d2i3R5B12sUW4O646qD5cnMXf2oBGPLIIeaRfU9doJRORAbE2SGv4eW6rMqhD+G7nf2Y8TTJTLiiO3Q/dQ==" - } - }, - "npm:@oxc-resolver/binding-darwin-x64": { - "type": "npm", - "name": "npm:@oxc-resolver/binding-darwin-x64", - "data": { - "version": "11.19.1", - "packageName": "@oxc-resolver/binding-darwin-x64", - "hash": "sha512-cV50vE5+uAgNcFa3QY1JOeKDSkM/9ReIcc/9wn4TavhW/itkDGrXhw9jaKnkQnGbjJ198Yh5nbX/Gr2mr4Z5jQ==" - } - }, - "npm:@oxc-resolver/binding-freebsd-x64": { - "type": "npm", - "name": "npm:@oxc-resolver/binding-freebsd-x64", - "data": { - "version": "11.19.1", - "packageName": "@oxc-resolver/binding-freebsd-x64", - "hash": "sha512-xZOQiYGFxtk48PBKff+Zwoym7ScPAIVp4c14lfLxizO2LTTTJe5sx9vQNGrBymrf/vatSPNMD4FgsaaRigPkqw==" - } - }, - "npm:@oxc-resolver/binding-linux-arm-gnueabihf": { - "type": "npm", - "name": "npm:@oxc-resolver/binding-linux-arm-gnueabihf", - "data": { - "version": "11.19.1", - "packageName": "@oxc-resolver/binding-linux-arm-gnueabihf", - "hash": "sha512-lXZYWAC6kaGe/ky2su94e9jN9t6M0/6c+GrSlCqL//XO1cxi5lpAhnJYdyrKfm0ZEr/c7RNyAx3P7FSBcBd5+A==" - } - }, - "npm:@oxc-resolver/binding-linux-arm-musleabihf": { - "type": "npm", - "name": "npm:@oxc-resolver/binding-linux-arm-musleabihf", - "data": { - "version": "11.19.1", - "packageName": "@oxc-resolver/binding-linux-arm-musleabihf", - "hash": "sha512-veG1kKsuK5+t2IsO9q0DErYVSw2azvCVvWHnfTOS73WE0STdLLB7Q1bB9WR+yHPQM76ASkFyRbogWo1GR1+WbQ==" - } - }, - "npm:@oxc-resolver/binding-linux-arm64-gnu": { - "type": "npm", - "name": "npm:@oxc-resolver/binding-linux-arm64-gnu", - "data": { - "version": "11.19.1", - "packageName": "@oxc-resolver/binding-linux-arm64-gnu", - "hash": "sha512-heV2+jmXyYnUrpUXSPugqWDRpnsQcDm2AX4wzTuvgdlZfoNYO0O3W2AVpJYaDn9AG4JdM6Kxom8+foE7/BcSig==" - } - }, - "npm:@oxc-resolver/binding-linux-arm64-musl": { - "type": "npm", - "name": "npm:@oxc-resolver/binding-linux-arm64-musl", - "data": { - "version": "11.19.1", - "packageName": "@oxc-resolver/binding-linux-arm64-musl", - "hash": "sha512-jvo2Pjs1c9KPxMuMPIeQsgu0mOJF9rEb3y3TdpsrqwxRM+AN6/nDDwv45n5ZrUnQMsdBy5gIabioMKnQfWo9ew==" - } - }, - "npm:@oxc-resolver/binding-linux-ppc64-gnu": { - "type": "npm", - "name": "npm:@oxc-resolver/binding-linux-ppc64-gnu", - "data": { - "version": "11.19.1", - "packageName": "@oxc-resolver/binding-linux-ppc64-gnu", - "hash": "sha512-vLmdNxWCdN7Uo5suays6A/+ywBby2PWBBPXctWPg5V0+eVuzsJxgAn6MMB4mPlshskYbppjpN2Zg83ArHze9gQ==" - } - }, - "npm:@oxc-resolver/binding-linux-riscv64-gnu": { - "type": "npm", - "name": "npm:@oxc-resolver/binding-linux-riscv64-gnu", - "data": { - "version": "11.19.1", - "packageName": "@oxc-resolver/binding-linux-riscv64-gnu", - "hash": "sha512-/b+WgR+VTSBxzgOhDO7TlMXC1ufPIMR6Vj1zN+/x+MnyXGW7prTLzU9eW85Aj7Th7CCEG9ArCbTeqxCzFWdg2w==" - } - }, - "npm:@oxc-resolver/binding-linux-riscv64-musl": { - "type": "npm", - "name": "npm:@oxc-resolver/binding-linux-riscv64-musl", - "data": { - "version": "11.19.1", - "packageName": "@oxc-resolver/binding-linux-riscv64-musl", - "hash": "sha512-YlRdeWb9j42p29ROh+h4eg/OQ3dTJlpHSa+84pUM9+p6i3djtPz1q55yLJhgW9XfDch7FN1pQ/Vd6YP+xfRIuw==" - } - }, - "npm:@oxc-resolver/binding-linux-s390x-gnu": { - "type": "npm", - "name": "npm:@oxc-resolver/binding-linux-s390x-gnu", - "data": { - "version": "11.19.1", - "packageName": "@oxc-resolver/binding-linux-s390x-gnu", - "hash": "sha512-EDpafVOQWF8/MJynsjOGFThcqhRHy417sRyLfQmeiamJ8qVhSKAn2Dn2VVKUGCjVB9C46VGjhNo7nOPUi1x6uA==" - } - }, - "npm:@oxc-resolver/binding-linux-x64-gnu": { - "type": "npm", - "name": "npm:@oxc-resolver/binding-linux-x64-gnu", - "data": { - "version": "11.19.1", - "packageName": "@oxc-resolver/binding-linux-x64-gnu", - "hash": "sha512-NxjZe+rqWhr+RT8/Ik+5ptA3oz7tUw361Wa5RWQXKnfqwSSHdHyrw6IdcTfYuml9dM856AlKWZIUXDmA9kkiBQ==" - } - }, - "npm:@oxc-resolver/binding-linux-x64-musl": { - "type": "npm", - "name": "npm:@oxc-resolver/binding-linux-x64-musl", - "data": { - "version": "11.19.1", - "packageName": "@oxc-resolver/binding-linux-x64-musl", - "hash": "sha512-cM/hQwsO3ReJg5kR+SpI69DMfvNCp+A/eVR4b4YClE5bVZwz8rh2Nh05InhwI5HR/9cArbEkzMjcKgTHS6UaNw==" - } - }, - "npm:@oxc-resolver/binding-openharmony-arm64": { - "type": "npm", - "name": "npm:@oxc-resolver/binding-openharmony-arm64", - "data": { - "version": "11.19.1", - "packageName": "@oxc-resolver/binding-openharmony-arm64", - "hash": "sha512-QF080IowFB0+9Rh6RcD19bdgh49BpQHUW5TajG1qvWHvmrQznTZZjYlgE2ltLXyKY+qs4F/v5xuX1XS7Is+3qA==" - } - }, - "npm:@oxc-resolver/binding-wasm32-wasi": { - "type": "npm", - "name": "npm:@oxc-resolver/binding-wasm32-wasi", - "data": { - "version": "11.19.1", - "packageName": "@oxc-resolver/binding-wasm32-wasi", - "hash": "sha512-w8UCKhX826cP/ZLokXDS6+milN8y4X7zidsAttEdWlVoamTNf6lhBJldaWr3ukTDiye7s4HRcuPEPOXNC432Vg==" - } - }, - "npm:@oxc-resolver/binding-win32-arm64-msvc": { - "type": "npm", - "name": "npm:@oxc-resolver/binding-win32-arm64-msvc", - "data": { - "version": "11.19.1", - "packageName": "@oxc-resolver/binding-win32-arm64-msvc", - "hash": "sha512-nJ4AsUVZrVKwnU/QRdzPCCrO0TrabBqgJ8pJhXITdZGYOV28TIYystV1VFLbQ7DtAcaBHpocT5/ZJnF78YJPtQ==" - } - }, - "npm:@oxc-resolver/binding-win32-ia32-msvc": { - "type": "npm", - "name": "npm:@oxc-resolver/binding-win32-ia32-msvc", - "data": { - "version": "11.19.1", - "packageName": "@oxc-resolver/binding-win32-ia32-msvc", - "hash": "sha512-EW+ND5q2Tl+a3pH81l1QbfgbF3HmqgwLfDfVithRFheac8OTcnbXt/JxqD2GbDkb7xYEqy1zNaVFRr3oeG8npA==" - } - }, - "npm:@oxc-resolver/binding-win32-x64-msvc": { - "type": "npm", - "name": "npm:@oxc-resolver/binding-win32-x64-msvc", - "data": { - "version": "11.19.1", - "packageName": "@oxc-resolver/binding-win32-x64-msvc", - "hash": "sha512-6hIU3RQu45B+VNTY4Ru8ppFwjVS/S5qwYyGhBotmjxfEKk41I2DlGtRfGJndZ5+6lneE2pwloqunlOyZuX/XAw==" - } - }, - "npm:@oxlint-tsgolint/darwin-arm64": { - "type": "npm", - "name": "npm:@oxlint-tsgolint/darwin-arm64", - "data": { - "version": "0.17.1", - "packageName": "@oxlint-tsgolint/darwin-arm64", - "hash": "sha512-JNWNwyvSDcUQSBlQRl10XrCeNcN66TMvDw3gIDQeop5SNa1F7wFhsEx4zitYb7fGHwGh9095tsNttmuCaNXCbw==" - } - }, - "npm:@oxlint-tsgolint/darwin-x64": { - "type": "npm", - "name": "npm:@oxlint-tsgolint/darwin-x64", - "data": { - "version": "0.17.1", - "packageName": "@oxlint-tsgolint/darwin-x64", - "hash": "sha512-SluNf6CW88pgGPqQUGC5GoK5qESWo2ct1PRDbza3vbf9SK2npx3igvylGQIgE9qYYOcjgnVdLOJ0+q0gItgUmQ==" - } - }, - "npm:@oxlint-tsgolint/linux-arm64": { - "type": "npm", - "name": "npm:@oxlint-tsgolint/linux-arm64", - "data": { - "version": "0.17.1", - "packageName": "@oxlint-tsgolint/linux-arm64", - "hash": "sha512-BJxQ7/cdo2dNdGIBs2PIR6BaPA7cPfe+r1HE/uY+K7g2ygip+0LHB3GUO9GaNDZuWpsnDyjLYYowEGrVK8dokA==" - } - }, - "npm:@oxlint-tsgolint/linux-x64": { - "type": "npm", - "name": "npm:@oxlint-tsgolint/linux-x64", - "data": { - "version": "0.17.1", - "packageName": "@oxlint-tsgolint/linux-x64", - "hash": "sha512-s6UjmuaJbZ4zz/wJKdEw/s5mc0t41rgwxQJCSHPuzMumMK6ylrB7nydhDf8ObTtzhTIZdAS/2S/uayJmDcGbxw==" - } - }, - "npm:@oxlint-tsgolint/win32-arm64": { - "type": "npm", - "name": "npm:@oxlint-tsgolint/win32-arm64", - "data": { - "version": "0.17.1", - "packageName": "@oxlint-tsgolint/win32-arm64", - "hash": "sha512-EO/Oj0ixHX+UQdu9hM7YUzibZI888MvPUo/DF8lSxFBt4JNEt8qGkwJEbCYjB/1LhUNmPHzSw2Tr9dCFVfW9nw==" - } - }, - "npm:@oxlint-tsgolint/win32-x64": { - "type": "npm", - "name": "npm:@oxlint-tsgolint/win32-x64", - "data": { - "version": "0.17.1", - "packageName": "@oxlint-tsgolint/win32-x64", - "hash": "sha512-jhv7XktAJ1sMRSb//yDYTauFSZ06H81i2SLEBPaSUKxSKoPMK8p1ACUJlnmwZX2MgapRLEj1Ml22B6+HiM2YIA==" - } - }, - "npm:@oxlint/binding-android-arm-eabi": { - "type": "npm", - "name": "npm:@oxlint/binding-android-arm-eabi", - "data": { - "version": "1.56.0", - "packageName": "@oxlint/binding-android-arm-eabi", - "hash": "sha512-IyfYPthZyiSKwAv/dLjeO18SaK8MxLI9Yss2JrRDyweQAkuL3LhEy7pwIwI7uA3KQc1Vdn20kdmj3q0oUIQL6A==" - } - }, - "npm:@oxlint/binding-android-arm64": { - "type": "npm", - "name": "npm:@oxlint/binding-android-arm64", - "data": { - "version": "1.56.0", - "packageName": "@oxlint/binding-android-arm64", - "hash": "sha512-Ga5zYrzH6vc/VFxhn6MmyUnYEfy9vRpwTIks99mY3j6Nz30yYpIkWryI0QKPCgvGUtDSXVLEaMum5nA+WrNOSg==" - } - }, - "npm:@oxlint/binding-darwin-arm64": { - "type": "npm", - "name": "npm:@oxlint/binding-darwin-arm64", - "data": { - "version": "1.56.0", - "packageName": "@oxlint/binding-darwin-arm64", - "hash": "sha512-ogmbdJysnw/D4bDcpf1sPLpFThZ48lYp4aKYm10Z/6Nh1SON6NtnNhTNOlhEY296tDFItsZUz+2tgcSYqh8Eyw==" - } - }, - "npm:@oxlint/binding-darwin-x64": { - "type": "npm", - "name": "npm:@oxlint/binding-darwin-x64", - "data": { - "version": "1.56.0", - "packageName": "@oxlint/binding-darwin-x64", - "hash": "sha512-x8QE1h+RAtQ2g+3KPsP6Fk/tdz6zJQUv5c7fTrJxXV3GHOo+Ry5p/PsogU4U+iUZg0rj6hS+E4xi+mnwwlDCWQ==" - } - }, - "npm:@oxlint/binding-freebsd-x64": { - "type": "npm", - "name": "npm:@oxlint/binding-freebsd-x64", - "data": { - "version": "1.56.0", - "packageName": "@oxlint/binding-freebsd-x64", - "hash": "sha512-6G+WMZvwJpMvY7my+/SHEjb7BTk/PFbePqLpmVmUJRIsJMy/UlyYqjpuh0RCgYYkPLcnXm1rUM04kbTk8yS1Yg==" - } - }, - "npm:@oxlint/binding-linux-arm-gnueabihf": { - "type": "npm", - "name": "npm:@oxlint/binding-linux-arm-gnueabihf", - "data": { - "version": "1.56.0", - "packageName": "@oxlint/binding-linux-arm-gnueabihf", - "hash": "sha512-YYHBsk/sl7fYwQOok+6W5lBPeUEvisznV/HZD2IfZmF3Bns6cPC3Z0vCtSEOaAWTjYWN3jVsdu55jMxKlsdlhg==" - } - }, - "npm:@oxlint/binding-linux-arm-musleabihf": { - "type": "npm", - "name": "npm:@oxlint/binding-linux-arm-musleabihf", - "data": { - "version": "1.56.0", - "packageName": "@oxlint/binding-linux-arm-musleabihf", - "hash": "sha512-+AZK8rOUr78y8WT6XkDb04IbMRqauNV+vgT6f8ZLOH8wnpQ9i7Nol0XLxAu+Cq7Sb+J9wC0j6Km5hG8rj47/yQ==" - } - }, - "npm:@oxlint/binding-linux-arm64-gnu": { - "type": "npm", - "name": "npm:@oxlint/binding-linux-arm64-gnu", - "data": { - "version": "1.56.0", - "packageName": "@oxlint/binding-linux-arm64-gnu", - "hash": "sha512-urse2SnugwJRojUkGSSeH2LPMaje5Q50yQtvtL9HFckiyeqXzoFwOAZqD5TR29R2lq7UHidfFDM9EGcchcbb8A==" - } - }, - "npm:@oxlint/binding-linux-arm64-musl": { - "type": "npm", - "name": "npm:@oxlint/binding-linux-arm64-musl", - "data": { - "version": "1.56.0", - "packageName": "@oxlint/binding-linux-arm64-musl", - "hash": "sha512-rkTZkBfJ4TYLjansjSzL6mgZOdN5IvUnSq3oNJSLwBcNvy3dlgQtpHPrRxrCEbbcp7oQ6If0tkNaqfOsphYZ9g==" - } - }, - "npm:@oxlint/binding-linux-ppc64-gnu": { - "type": "npm", - "name": "npm:@oxlint/binding-linux-ppc64-gnu", - "data": { - "version": "1.56.0", - "packageName": "@oxlint/binding-linux-ppc64-gnu", - "hash": "sha512-uqL1kMH3u69/e1CH2EJhP3CP28jw2ExLsku4o8RVAZ7fySo9zOyI2fy9pVlTAp4voBLVgzndXi3SgtdyCTa2aA==" - } - }, - "npm:@oxlint/binding-linux-riscv64-gnu": { - "type": "npm", - "name": "npm:@oxlint/binding-linux-riscv64-gnu", - "data": { - "version": "1.56.0", - "packageName": "@oxlint/binding-linux-riscv64-gnu", - "hash": "sha512-j0CcMBOgV6KsRaBdsebIeiy7hCjEvq2KdEsiULf2LZqAq0v1M1lWjelhCV57LxsqaIGChXFuFJ0RiFrSRHPhSg==" - } - }, - "npm:@oxlint/binding-linux-riscv64-musl": { - "type": "npm", - "name": "npm:@oxlint/binding-linux-riscv64-musl", - "data": { - "version": "1.56.0", - "packageName": "@oxlint/binding-linux-riscv64-musl", - "hash": "sha512-7VDOiL8cDG3DQ/CY3yKjbV1c4YPvc4vH8qW09Vv+5ukq3l/Kcyr6XGCd5NvxUmxqDb2vjMpM+eW/4JrEEsUetA==" - } - }, - "npm:@oxlint/binding-linux-s390x-gnu": { - "type": "npm", - "name": "npm:@oxlint/binding-linux-s390x-gnu", - "data": { - "version": "1.56.0", - "packageName": "@oxlint/binding-linux-s390x-gnu", - "hash": "sha512-JGRpX0M+ikD3WpwJ7vKcHKV6Kg0dT52BW2Eu2BupXotYeqGXBrbY+QPkAyKO6MNgKozyTNaRh3r7g+VWgyAQYQ==" - } - }, - "npm:@oxlint/binding-linux-x64-gnu": { - "type": "npm", - "name": "npm:@oxlint/binding-linux-x64-gnu", - "data": { - "version": "1.56.0", - "packageName": "@oxlint/binding-linux-x64-gnu", - "hash": "sha512-dNaICPvtmuxFP/VbqdofrLqdS3bM/AKJN3LMJD52si44ea7Be1cBk6NpfIahaysG9Uo+L98QKddU9CD5L8UHnQ==" - } - }, - "npm:@oxlint/binding-linux-x64-musl": { - "type": "npm", - "name": "npm:@oxlint/binding-linux-x64-musl", - "data": { - "version": "1.56.0", - "packageName": "@oxlint/binding-linux-x64-musl", - "hash": "sha512-pF1vOtM+GuXmbklM1hV8WMsn6tCNPvkUzklj/Ej98JhlanbmA2RB1BILgOpwSuCTRTIYx2MXssmEyQQ90QF5aA==" - } - }, - "npm:@oxlint/binding-openharmony-arm64": { - "type": "npm", - "name": "npm:@oxlint/binding-openharmony-arm64", - "data": { - "version": "1.56.0", - "packageName": "@oxlint/binding-openharmony-arm64", - "hash": "sha512-bp8NQ4RE6fDIFLa4bdBiOA+TAvkNkg+rslR+AvvjlLTYXLy9/uKAYLQudaQouWihLD/hgkrXIKKzXi5IXOewwg==" - } - }, - "npm:@oxlint/binding-win32-arm64-msvc": { - "type": "npm", - "name": "npm:@oxlint/binding-win32-arm64-msvc", - "data": { - "version": "1.56.0", - "packageName": "@oxlint/binding-win32-arm64-msvc", - "hash": "sha512-PxT4OJDfMOQBzo3OlzFb9gkoSD+n8qSBxyVq2wQSZIHFQYGEqIRTo9M0ZStvZm5fdhMqaVYpOnJvH2hUMEDk/g==" - } - }, - "npm:@oxlint/binding-win32-ia32-msvc": { - "type": "npm", - "name": "npm:@oxlint/binding-win32-ia32-msvc", - "data": { - "version": "1.56.0", - "packageName": "@oxlint/binding-win32-ia32-msvc", - "hash": "sha512-PTRy6sIEPqy2x8PTP1baBNReN/BNEFmde0L+mYeHmjXE1Vlcc9+I5nsqENsB2yAm5wLkzPoTNCMY/7AnabT4/A==" - } - }, - "npm:@oxlint/binding-win32-x64-msvc": { - "type": "npm", - "name": "npm:@oxlint/binding-win32-x64-msvc", - "data": { - "version": "1.56.0", - "packageName": "@oxlint/binding-win32-x64-msvc", - "hash": "sha512-ZHa0clocjLmIDr+1LwoWtxRcoYniAvERotvwKUYKhH41NVfl0Y4LNbyQkwMZzwDvKklKGvGZ5+DAG58/Ik47tQ==" - } - }, - "npm:@panva/hkdf": { - "type": "npm", - "name": "npm:@panva/hkdf", - "data": { - "version": "1.2.1", - "packageName": "@panva/hkdf", - "hash": "sha512-6oclG6Y3PiDFcoyk8srjLfVKyMfVCKJ27JwNPViuXziFpmdz+MZnZN/aKY0JGXgYuO/VghU0jcOAZgWXZ1Dmrw==" - } - }, - "npm:@photonjs/cloudflare": { - "type": "npm", - "name": "npm:@photonjs/cloudflare", - "data": { - "version": "0.1.13", - "packageName": "@photonjs/cloudflare", - "hash": "sha512-gyu26ZIEJTLVU47U3OC7iqsT6tvp5qpk1KtTT0zCGpTInTc5p7s3db7xAzq+egZ09SSrU+SbQpoYAlAboLaryA==" - } - }, - "npm:@photonjs/core": { - "type": "npm", - "name": "npm:@photonjs/core", - "data": { - "version": "0.1.21", - "packageName": "@photonjs/core", - "hash": "sha512-dfAUHhWGsKYPNAKqBaOfvGPKOm6l80yWJ3dq1vSG4GICa5ZJemM1xK5JRJhT1lZD4rEHPOJfQncZ8LHiMPivcg==" - } - }, - "npm:@photonjs/express": { - "type": "npm", - "name": "npm:@photonjs/express", - "data": { - "version": "0.1.13", - "packageName": "@photonjs/express", - "hash": "sha512-3PQUhwH6jtoaCFzKB8MWLcNLgEb2vDis1x5wms6ixcHbiacUiVsCO5aMTZv96+SFd5XfLe7MzsVIazM6RLBZpA==" - } - }, - "npm:@photonjs/fastify": { - "type": "npm", - "name": "npm:@photonjs/fastify", - "data": { - "version": "0.1.12", - "packageName": "@photonjs/fastify", - "hash": "sha512-L5Keb7z0D1VL5aAaanwYCRp0RpmOZDeVW2gWhQRB8WL1E6NuEAJP/bmTyGlEjNNM/jPw19f5wlGa2erE/oICww==" - } - }, - "npm:@photonjs/h3": { - "type": "npm", - "name": "npm:@photonjs/h3", - "data": { - "version": "0.1.12", - "packageName": "@photonjs/h3", - "hash": "sha512-kszTOtsHIHP3loYXxpVqFHFqmtU8adw41c6Xvg+pJ2/2LkMus71PIZ5UHpPzacD/JB5AkPFd5IPNYwA97d+sew==" - } - }, - "npm:@photonjs/hono": { - "type": "npm", - "name": "npm:@photonjs/hono", - "data": { - "version": "0.1.12", - "packageName": "@photonjs/hono", - "hash": "sha512-S/fiW3H5ivgayfLbr2cXQQdXZ82olMwLPBbKF4I/6nNH29s2+/nvsH4kswjVg8+ZVJ/WDibO1tCensbknEvM3w==" - } - }, - "npm:@photonjs/runtime": { - "type": "npm", - "name": "npm:@photonjs/runtime", - "data": { - "version": "0.1.16", - "packageName": "@photonjs/runtime", - "hash": "sha512-04ejZcSfQ3f16cpv22tJyJbqGMepuhpg2NBVoxK8YOiJltkBK1fF5lY/EORTF8ZTxYd1M2HGvn0ZfCAlTfZmng==" - } - }, - "npm:@photonjs/srvx": { - "type": "npm", - "name": "npm:@photonjs/srvx", - "data": { - "version": "0.1.12", - "packageName": "@photonjs/srvx", - "hash": "sha512-UT/ukFPdmLsEm6Z5kKIl2DXhayxP0braPBcKRZ4bE1l2sFpN67/54JlZXyFgS/Qdmuo3Hpn94sDIX9uoEBVlGQ==" - } - }, - "npm:@photonjs/vercel": { - "type": "npm", - "name": "npm:@photonjs/vercel", - "data": { - "version": "0.1.22", - "packageName": "@photonjs/vercel", - "hash": "sha512-D+1rl94Jh/d54TwoMf+h9VlV3ITRt18Tdxc9BepSIIc7/tqHm88K9bPBzrAVQ7I+clI/0o2N7ZVVkp1hqDASQQ==" - } - }, - "npm:@pinojs/redact": { - "type": "npm", - "name": "npm:@pinojs/redact", - "data": { - "version": "0.4.0", - "packageName": "@pinojs/redact", - "hash": "sha512-k2ENnmBugE/rzQfEcdWHcCY+/FM3VLzH9cYEsbdsoqrvzAKRhUZeRNhAZvB8OitQJ1TBed3yqWtdjzS6wJKBwg==" - } - }, - "npm:@pkgjs/parseargs": { - "type": "npm", - "name": "npm:@pkgjs/parseargs", - "data": { - "version": "0.11.0", - "packageName": "@pkgjs/parseargs", - "hash": "sha512-+1VkjdD0QBLPodGrJUeqarH8VAIvQODIbwh9XpP5Syisf7YoQgsJKPNFoqqLQlu+VQ/tVSshMR6loPMn8U+dPg==" - } - }, - "npm:@pkgr/core": { - "type": "npm", - "name": "npm:@pkgr/core", - "data": { - "version": "0.2.9", - "packageName": "@pkgr/core", - "hash": "sha512-QNqXyfVS2wm9hweSYD2O7F0G06uurj9kZ96TRQE5Y9hU7+tgdZwIkbAKc5Ocy1HxEY2kuDQa6cQ1WRs/O5LFKA==" - } - }, - "npm:@polka/url": { - "type": "npm", - "name": "npm:@polka/url", - "data": { - "version": "1.0.0-next.29", - "packageName": "@polka/url", - "hash": "sha512-wwQAWhWSuHaag8c4q/KN/vCoeOJYshAIvMQwD4GpSb3OiZklFfvAgmj0VCBBImRpuF/aFgIRzllXlVX93Jevww==" - } - }, - "npm:@poppinss/colors": { - "type": "npm", - "name": "npm:@poppinss/colors", - "data": { - "version": "4.1.5", - "packageName": "@poppinss/colors", - "hash": "sha512-FvdDqtcRCtz6hThExcFOgW0cWX+xwSMWcRuQe5ZEb2m7cVQOAVZOIMt+/v9RxGiD9/OY16qJBXK4CVKWAPalBw==" - } - }, - "npm:@poppinss/dumper": { - "type": "npm", - "name": "npm:@poppinss/dumper", - "data": { - "version": "0.6.4", - "packageName": "@poppinss/dumper", - "hash": "sha512-iG0TIdqv8xJ3Lt9O8DrPRxw1MRLjNpoqiSGU03P/wNLP/s0ra0udPJ1J2Tx5M0J3H/cVyEgpbn8xUKRY9j59kQ==" - } - }, - "npm:@poppinss/exception": { - "type": "npm", - "name": "npm:@poppinss/exception", - "data": { - "version": "1.2.2", - "packageName": "@poppinss/exception", - "hash": "sha512-m7bpKCD4QMlFCjA/nKTs23fuvoVFoA83brRKmObCUNmi/9tVu8Ve3w4YQAnJu4q3Tjf5fr685HYIC/IA2zHRSg==" - } - }, - "npm:@prisma/client-runtime-utils": { - "type": "npm", - "name": "npm:@prisma/client-runtime-utils", - "data": { - "version": "7.5.0", - "packageName": "@prisma/client-runtime-utils", - "hash": "sha512-KnJ2b4Si/pcWEtK68uM+h0h1oh80CZt2suhLTVuLaSKg4n58Q9jBF/A42Kw6Ma+aThy1yAhfDeTC0JvEmeZnFQ==" - } - }, - "npm:@prisma/client": { - "type": "npm", - "name": "npm:@prisma/client", - "data": { - "version": "7.5.0", - "packageName": "@prisma/client", - "hash": "sha512-h4hF9ctp+kSRs7ENHGsFQmHAgHcfkOCxbYt6Ti9Xi8x7D+kP4tTi9x51UKmiTH/OqdyJAO+8V+r+JA5AWdav7w==" - } - }, - "npm:@prisma/config": { - "type": "npm", - "name": "npm:@prisma/config", - "data": { - "version": "7.5.0", - "packageName": "@prisma/config", - "hash": "sha512-1J/9YEX7A889xM46PYg9e8VAuSL1IUmXJW3tEhMv7XQHDWlfC9YSkIw9sTYRaq5GswGlxZ+GnnyiNsUZ9JJhSQ==" - } - }, - "npm:@prisma/debug@7.2.0": { - "type": "npm", - "name": "npm:@prisma/debug@7.2.0", - "data": { - "version": "7.2.0", - "packageName": "@prisma/debug", - "hash": "sha512-YSGTiSlBAVJPzX4ONZmMotL+ozJwQjRmZweQNIq/ER0tQJKJynNkRB3kyvt37eOfsbMCXk3gnLF6J9OJ4QWftw==" - } - }, - "npm:@prisma/debug": { - "type": "npm", - "name": "npm:@prisma/debug", - "data": { - "version": "7.5.0", - "packageName": "@prisma/debug", - "hash": "sha512-163+nffny0JoPEkDhfNco0vcuT3ymIJc9+WX7MHSQhfkeKUmKe9/wqvGk5SjppT93DtBjVwr5HPJYlXbzm6qtg==" - } - }, - "npm:@prisma/dev": { - "type": "npm", - "name": "npm:@prisma/dev", - "data": { - "version": "0.20.0", - "packageName": "@prisma/dev", - "hash": "sha512-ovlBYwWor0OzG+yH4J3Ot+AneD818BttLA+Ii7wjbcLHUrnC4tbUPVGyNd3c/+71KETPKZfjhkTSpdS15dmXNQ==" - } - }, - "npm:@prisma/engines-version": { - "type": "npm", - "name": "npm:@prisma/engines-version", - "data": { - "version": "7.5.0-15.280c870be64f457428992c43c1f6d557fab6e29e", - "packageName": "@prisma/engines-version", - "hash": "sha512-E+iRV/vbJLl8iGjVr6g/TEWokA+gjkV/doZkaQN1i/ULVdDwGnPJDfLUIFGS3BVwlG/m6L8T4x1x5isl8hGMxA==" - } - }, - "npm:@prisma/engines": { - "type": "npm", - "name": "npm:@prisma/engines", - "data": { - "version": "7.5.0", - "packageName": "@prisma/engines", - "hash": "sha512-ondGRhzoaVpRWvFaQ5wH5zS1BIbhzbKqczKjCn6j3L0Zfe/LInjcEg8+xtB49AuZBX30qyx1ZtGoootUohz2pw==" - } - }, - "npm:@prisma/fetch-engine": { - "type": "npm", - "name": "npm:@prisma/fetch-engine", - "data": { - "version": "7.5.0", - "packageName": "@prisma/fetch-engine", - "hash": "sha512-kZCl2FV54qnyrVdnII8MI6qvt7HfU6Cbiz8dZ8PXz4f4lbSw45jEB9/gEMK2SGdiNhBKyk/Wv95uthoLhGMLYA==" - } - }, - "npm:@prisma/get-platform": { - "type": "npm", - "name": "npm:@prisma/get-platform", - "data": { - "version": "7.2.0", - "packageName": "@prisma/get-platform", - "hash": "sha512-k1V0l0Td1732EHpAfi2eySTezyllok9dXb6UQanajkJQzPUGi3vO2z7jdkz67SypFTdmbnyGYxvEvYZdZsMAVA==" - } - }, - "npm:@prisma/get-platform@7.5.0": { - "type": "npm", - "name": "npm:@prisma/get-platform@7.5.0", - "data": { - "version": "7.5.0", - "packageName": "@prisma/get-platform", - "hash": "sha512-7I+2y1nu/gkEKSiHHbcZ1HPe/euGdEqJZxEEMT0246q4De1+hla0ZzlTgvaT9dHcVCgLSuCG8v39db5qUUWNgw==" - } - }, - "npm:@prisma/query-plan-executor": { - "type": "npm", - "name": "npm:@prisma/query-plan-executor", - "data": { - "version": "7.2.0", - "packageName": "@prisma/query-plan-executor", - "hash": "sha512-EOZmNzcV8uJ0mae3DhTsiHgoNCuu1J9mULQpGCh62zN3PxPTd+qI9tJvk5jOst8WHKQNwJWR3b39t0XvfBB0WQ==" - } - }, - "npm:@prisma/studio-core": { - "type": "npm", - "name": "npm:@prisma/studio-core", - "data": { - "version": "0.21.1", - "packageName": "@prisma/studio-core", - "hash": "sha512-bOGqG/eMQtKC0XVvcVLRmhWWzm/I+0QUWqAEhEBtetpuS3k3V4IWqKGUONkAIT223DNXJMxMtZp36b1FmcdPeg==" - } - }, - "npm:@puppeteer/browsers": { - "type": "npm", - "name": "npm:@puppeteer/browsers", - "data": { - "version": "2.13.0", - "packageName": "@puppeteer/browsers", - "hash": "sha512-46BZJYJjc/WwmKjsvDFykHtXrtomsCIrwYQPOP7VfMJoZY2bsDF9oROBABR3paDjDcmkUye1Pb1BqdcdiipaWA==" - } - }, - "npm:@quansync/fs": { - "type": "npm", - "name": "npm:@quansync/fs", - "data": { - "version": "1.0.0", - "packageName": "@quansync/fs", - "hash": "sha512-4TJ3DFtlf1L5LDMaM6CanJ/0lckGNtJcMjQ1NAV6zDmA0tEHKZtxNKin8EgPaVX1YzljbxckyT2tJrpQKAtngQ==" - } - }, - "npm:@radix-ui/react-icons": { - "type": "npm", - "name": "npm:@radix-ui/react-icons", - "data": { - "version": "1.3.2", - "packageName": "@radix-ui/react-icons", - "hash": "sha512-fyQIhGDhzfc9pK2kH6Pl9c4BDJGfMkPqkyIgYDthyNYoNg3wVhoJMMh19WS4Up/1KMPFVpNsT2q3WmXn2N1m6g==" - } - }, - "npm:@remix-run/node-fetch-server": { - "type": "npm", - "name": "npm:@remix-run/node-fetch-server", - "data": { - "version": "0.8.1", - "packageName": "@remix-run/node-fetch-server", - "hash": "sha512-J1dev372wtJqmqn9U/qbpbZxbJSQrogNN2+Qv1lKlpATpe/WQ9aCZfl/xSb9d2Rgh1IyLSvNxZAXPZxruO6Xig==" - } - }, - "npm:@remusao/guess-url-type": { - "type": "npm", - "name": "npm:@remusao/guess-url-type", - "data": { - "version": "2.1.0", - "packageName": "@remusao/guess-url-type", - "hash": "sha512-zI3dlTUxpjvx2GCxp9nLOSK5yEIqDCpxlAVGwb2Y49RKkS72oeNaxxo+VWS5+XQ5+Mf8Zfp9ZXIlk+G5eoEN8A==" - } - }, - "npm:@remusao/small": { - "type": "npm", - "name": "npm:@remusao/small", - "data": { - "version": "2.1.0", - "packageName": "@remusao/small", - "hash": "sha512-Y1kyjZp7JU7dXdyOdxHVNfoTr1XLZJTyQP36/esZUU/WRWq9XY0PV2HsE3CsIHuaTf4pvgWv2pvzvnZ//UHIJQ==" - } - }, - "npm:@remusao/smaz-compress": { - "type": "npm", - "name": "npm:@remusao/smaz-compress", - "data": { - "version": "2.2.0", - "packageName": "@remusao/smaz-compress", - "hash": "sha512-TXpTPgILRUYOt2rEe0+9PC12xULPvBqeMpmipzB9A7oM4fa9Ztvy9lLYzPTd7tiQEeoNa1pmxihpKfJtsxnM/w==" - } - }, - "npm:@remusao/smaz-decompress": { - "type": "npm", - "name": "npm:@remusao/smaz-decompress", - "data": { - "version": "2.2.0", - "packageName": "@remusao/smaz-decompress", - "hash": "sha512-ERAPwxPaA0/yg4hkNU7T2S+lnp9jj1sApcQMtOyROvOQyo+Zuh6Hn/oRcXr8mmjlYzyRaC7E6r3mT1nrdHR6pg==" - } - }, - "npm:@remusao/smaz": { - "type": "npm", - "name": "npm:@remusao/smaz", - "data": { - "version": "2.2.0", - "packageName": "@remusao/smaz", - "hash": "sha512-eSd3Qs0ELP/e7tU1SI5RWXcCn9KjDgvBY+KtWbL4i2QvvHhJOfdIt4v0AA3S5BbLWAr5dCEC7C4LUfogDm6q/Q==" - } - }, - "npm:@remusao/trie": { - "type": "npm", - "name": "npm:@remusao/trie", - "data": { - "version": "2.1.0", - "packageName": "@remusao/trie", - "hash": "sha512-Er3Q8q0/2OcCJPQYJOPLmCuqO0wu7cav3SPtpjlxSbjFi1x+A1pZkkLD6c9q2rGEkGW/tkrRzfrhNMt8VQjzXg==" - } - }, - "npm:@rolldown/binding-android-arm64@1.0.0-beta.51": { - "type": "npm", - "name": "npm:@rolldown/binding-android-arm64@1.0.0-beta.51", - "data": { - "version": "1.0.0-beta.51", - "packageName": "@rolldown/binding-android-arm64", - "hash": "sha512-Ctn8FUXKWWQI9pWC61P1yumS9WjQtelNS9riHwV7oCkknPGaAry4o7eFx2KgoLMnI2BgFJYpW7Im8/zX3BuONg==" - } - }, - "npm:@rolldown/binding-android-arm64@1.0.0-rc.11": { - "type": "npm", - "name": "npm:@rolldown/binding-android-arm64@1.0.0-rc.11", - "data": { - "version": "1.0.0-rc.11", - "packageName": "@rolldown/binding-android-arm64", - "hash": "sha512-SJ+/g+xNnOh6NqYxD0V3uVN4W3VfnrGsC9/hoglicgTNfABFG9JjISvkkU0dNY84MNHLWyOgxP9v9Y9pX4S7+A==" - } - }, - "npm:@rolldown/binding-android-arm64@1.0.0-rc.9": { - "type": "npm", - "name": "npm:@rolldown/binding-android-arm64@1.0.0-rc.9", - "data": { - "version": "1.0.0-rc.9", - "packageName": "@rolldown/binding-android-arm64", - "hash": "sha512-lcJL0bN5hpgJfSIz/8PIf02irmyL43P+j1pTCfbD1DbLkmGRuFIA4DD3B3ZOvGqG0XiVvRznbKtN0COQVaKUTg==" - } - }, - "npm:@rolldown/binding-darwin-arm64@1.0.0-beta.51": { - "type": "npm", - "name": "npm:@rolldown/binding-darwin-arm64@1.0.0-beta.51", - "data": { - "version": "1.0.0-beta.51", - "packageName": "@rolldown/binding-darwin-arm64", - "hash": "sha512-EL1aRW2Oq15ShUEkBPsDtLMO8GTqfb/ktM/dFaVzXKQiEE96Ss6nexMgfgQrg8dGnNpndFyffVDb5IdSibsu1g==" - } - }, - "npm:@rolldown/binding-darwin-arm64@1.0.0-rc.11": { - "type": "npm", - "name": "npm:@rolldown/binding-darwin-arm64@1.0.0-rc.11", - "data": { - "version": "1.0.0-rc.11", - "packageName": "@rolldown/binding-darwin-arm64", - "hash": "sha512-7WQgR8SfOPwmDZGFkThUvsmd/nwAWv91oCO4I5LS7RKrssPZmOt7jONN0cW17ydGC1n/+puol1IpoieKqQidmg==" - } - }, - "npm:@rolldown/binding-darwin-arm64@1.0.0-rc.9": { - "type": "npm", - "name": "npm:@rolldown/binding-darwin-arm64@1.0.0-rc.9", - "data": { - "version": "1.0.0-rc.9", - "packageName": "@rolldown/binding-darwin-arm64", - "hash": "sha512-J7Zk3kLYFsLtuH6U+F4pS2sYVzac0qkjcO5QxHS7OS7yZu2LRs+IXo+uvJ/mvpyUljDJ3LROZPoQfgBIpCMhdQ==" - } - }, - "npm:@rolldown/binding-darwin-x64@1.0.0-beta.51": { - "type": "npm", - "name": "npm:@rolldown/binding-darwin-x64@1.0.0-beta.51", - "data": { - "version": "1.0.0-beta.51", - "packageName": "@rolldown/binding-darwin-x64", - "hash": "sha512-uGtYKlFen9pMIPvkHPWZVDtmYhMQi5g5Ddsndg1gf3atScKYKYgs5aDP4DhHeTwGXQglhfBG7lEaOIZ4UAIWww==" - } - }, - "npm:@rolldown/binding-darwin-x64@1.0.0-rc.11": { - "type": "npm", - "name": "npm:@rolldown/binding-darwin-x64@1.0.0-rc.11", - "data": { - "version": "1.0.0-rc.11", - "packageName": "@rolldown/binding-darwin-x64", - "hash": "sha512-39Ks6UvIHq4rEogIfQBoBRusj0Q0nPVWIvqmwBLaT6aqQGIakHdESBVOPRRLacy4WwUPIx4ZKzfZ9PMW+IeyUQ==" - } - }, - "npm:@rolldown/binding-darwin-x64@1.0.0-rc.9": { - "type": "npm", - "name": "npm:@rolldown/binding-darwin-x64@1.0.0-rc.9", - "data": { - "version": "1.0.0-rc.9", - "packageName": "@rolldown/binding-darwin-x64", - "hash": "sha512-iwtmmghy8nhfRGeNAIltcNXzD0QMNaaA5U/NyZc1Ia4bxrzFByNMDoppoC+hl7cDiUq5/1CnFthpT9n+UtfFyg==" - } - }, - "npm:@rolldown/binding-freebsd-x64@1.0.0-beta.51": { - "type": "npm", - "name": "npm:@rolldown/binding-freebsd-x64@1.0.0-beta.51", - "data": { - "version": "1.0.0-beta.51", - "packageName": "@rolldown/binding-freebsd-x64", - "hash": "sha512-JRoVTQtHYbZj1P07JLiuTuXjiBtIa7ag7/qgKA6CIIXnAcdl4LrOf7nfDuHPJcuRKaP5dzecMgY99itvWfmUFQ==" - } - }, - "npm:@rolldown/binding-freebsd-x64@1.0.0-rc.11": { - "type": "npm", - "name": "npm:@rolldown/binding-freebsd-x64@1.0.0-rc.11", - "data": { - "version": "1.0.0-rc.11", - "packageName": "@rolldown/binding-freebsd-x64", - "hash": "sha512-jfsm0ZHfhiqrvWjJAmzsqiIFPz5e7mAoCOPBNTcNgkiid/LaFKiq92+0ojH+nmJmKYkre4t71BWXUZDNp7vsag==" - } - }, - "npm:@rolldown/binding-freebsd-x64@1.0.0-rc.9": { - "type": "npm", - "name": "npm:@rolldown/binding-freebsd-x64@1.0.0-rc.9", - "data": { - "version": "1.0.0-rc.9", - "packageName": "@rolldown/binding-freebsd-x64", - "hash": "sha512-DLFYI78SCiZr5VvdEplsVC2Vx53lnA4/Ga5C65iyldMVaErr86aiqCoNBLl92PXPfDtUYjUh+xFFor40ueNs4Q==" - } - }, - "npm:@rolldown/binding-linux-arm-gnueabihf@1.0.0-beta.51": { - "type": "npm", - "name": "npm:@rolldown/binding-linux-arm-gnueabihf@1.0.0-beta.51", - "data": { - "version": "1.0.0-beta.51", - "packageName": "@rolldown/binding-linux-arm-gnueabihf", - "hash": "sha512-BKATVnpPZ0TYBW9XfDwyd4kPGgvf964HiotIwUgpMrFOFYWqpZ+9ONNzMV4UFAYC7Hb5C2qgYQk/qj2OnAd4RQ==" - } - }, - "npm:@rolldown/binding-linux-arm-gnueabihf@1.0.0-rc.11": { - "type": "npm", - "name": "npm:@rolldown/binding-linux-arm-gnueabihf@1.0.0-rc.11", - "data": { - "version": "1.0.0-rc.11", - "packageName": "@rolldown/binding-linux-arm-gnueabihf", - "hash": "sha512-zjQaUtSyq1nVe3nxmlSCuR96T1LPlpvmJ0SZy0WJFEsV4kFbXcq2u68L4E6O0XeFj4aex9bEauqjW8UQBeAvfQ==" - } - }, - "npm:@rolldown/binding-linux-arm-gnueabihf@1.0.0-rc.9": { - "type": "npm", - "name": "npm:@rolldown/binding-linux-arm-gnueabihf@1.0.0-rc.9", - "data": { - "version": "1.0.0-rc.9", - "packageName": "@rolldown/binding-linux-arm-gnueabihf", - "hash": "sha512-CsjTmTwd0Hri6iTw/DRMK7kOZ7FwAkrO4h8YWKoX/kcj833e4coqo2wzIFywtch/8Eb5enQ/lwLM7w6JX1W5RQ==" - } - }, - "npm:@rolldown/binding-linux-arm64-gnu@1.0.0-beta.51": { - "type": "npm", - "name": "npm:@rolldown/binding-linux-arm64-gnu@1.0.0-beta.51", - "data": { - "version": "1.0.0-beta.51", - "packageName": "@rolldown/binding-linux-arm64-gnu", - "hash": "sha512-xLd7da5jkfbVsBCm1buIRdWtuXY8+hU3+6ESXY/Tk5X5DPHaifrUblhYDgmA34dQt6WyNC2kfXGgrduPEvDI6Q==" - } - }, - "npm:@rolldown/binding-linux-arm64-gnu@1.0.0-rc.11": { - "type": "npm", - "name": "npm:@rolldown/binding-linux-arm64-gnu@1.0.0-rc.11", - "data": { - "version": "1.0.0-rc.11", - "packageName": "@rolldown/binding-linux-arm64-gnu", - "hash": "sha512-WMW1yE6IOnehTcFE9eipFkm3XN63zypWlrJQ2iF7NrQ9b2LDRjumFoOGJE8RJJTJCTBAdmLMnJ8uVitACUUo1Q==" - } - }, - "npm:@rolldown/binding-linux-arm64-gnu@1.0.0-rc.9": { - "type": "npm", - "name": "npm:@rolldown/binding-linux-arm64-gnu@1.0.0-rc.9", - "data": { - "version": "1.0.0-rc.9", - "packageName": "@rolldown/binding-linux-arm64-gnu", - "hash": "sha512-2x9O2JbSPxpxMDhP9Z74mahAStibTlrBMW0520+epJH5sac7/LwZW5Bmg/E6CXuEF53JJFW509uP+lSedaUNxg==" - } - }, - "npm:@rolldown/binding-linux-arm64-musl@1.0.0-beta.51": { - "type": "npm", - "name": "npm:@rolldown/binding-linux-arm64-musl@1.0.0-beta.51", - "data": { - "version": "1.0.0-beta.51", - "packageName": "@rolldown/binding-linux-arm64-musl", - "hash": "sha512-EQFXTgHxxTzv3t5EmjUP/DfxzFYx9sMndfLsYaAY4DWF6KsK1fXGYsiupif6qPTViPC9eVmRm78q0pZU/kuIPg==" - } - }, - "npm:@rolldown/binding-linux-arm64-musl@1.0.0-rc.11": { - "type": "npm", - "name": "npm:@rolldown/binding-linux-arm64-musl@1.0.0-rc.11", - "data": { - "version": "1.0.0-rc.11", - "packageName": "@rolldown/binding-linux-arm64-musl", - "hash": "sha512-jfndI9tsfm4APzjNt6QdBkYwre5lRPUgHeDHoI7ydKUuJvz3lZeCfMsI56BZj+7BYqiKsJm7cfd/6KYV7ubrBg==" - } - }, - "npm:@rolldown/binding-linux-arm64-musl@1.0.0-rc.9": { - "type": "npm", - "name": "npm:@rolldown/binding-linux-arm64-musl@1.0.0-rc.9", - "data": { - "version": "1.0.0-rc.9", - "packageName": "@rolldown/binding-linux-arm64-musl", - "hash": "sha512-JA1QRW31ogheAIRhIg9tjMfsYbglXXYGNPLdPEYrwFxdbkQCAzvpSCSHCDWNl4hTtrol8WeboCSEpjdZK8qrCg==" - } - }, - "npm:@rolldown/binding-linux-ppc64-gnu@1.0.0-rc.11": { - "type": "npm", - "name": "npm:@rolldown/binding-linux-ppc64-gnu@1.0.0-rc.11", - "data": { - "version": "1.0.0-rc.11", - "packageName": "@rolldown/binding-linux-ppc64-gnu", - "hash": "sha512-ZlFgw46NOAGMgcdvdYwAGu2Q+SLFA9LzbJLW+iyMOJyhj5wk6P3KEE9Gct4xWwSzFoPI7JCdYmYMzVtlgQ+zfw==" - } - }, - "npm:@rolldown/binding-linux-ppc64-gnu@1.0.0-rc.9": { - "type": "npm", - "name": "npm:@rolldown/binding-linux-ppc64-gnu@1.0.0-rc.9", - "data": { - "version": "1.0.0-rc.9", - "packageName": "@rolldown/binding-linux-ppc64-gnu", - "hash": "sha512-aOKU9dJheda8Kj8Y3w9gnt9QFOO+qKPAl8SWd7JPHP+Cu0EuDAE5wokQubLzIDQWg2myXq2XhTpOVS07qqvT+w==" - } - }, - "npm:@rolldown/binding-linux-s390x-gnu@1.0.0-rc.11": { - "type": "npm", - "name": "npm:@rolldown/binding-linux-s390x-gnu@1.0.0-rc.11", - "data": { - "version": "1.0.0-rc.11", - "packageName": "@rolldown/binding-linux-s390x-gnu", - "hash": "sha512-hIOYmuT6ofM4K04XAZd3OzMySEO4K0/nc9+jmNcxNAxRi6c5UWpqfw3KMFV4MVFWL+jQsSh+bGw2VqmaPMTLyw==" - } - }, - "npm:@rolldown/binding-linux-s390x-gnu@1.0.0-rc.9": { - "type": "npm", - "name": "npm:@rolldown/binding-linux-s390x-gnu@1.0.0-rc.9", - "data": { - "version": "1.0.0-rc.9", - "packageName": "@rolldown/binding-linux-s390x-gnu", - "hash": "sha512-OalO94fqj7IWRn3VdXWty75jC5dk4C197AWEuMhIpvVv2lw9fiPhud0+bW2ctCxb3YoBZor71QHbY+9/WToadA==" - } - }, - "npm:@rolldown/binding-linux-x64-gnu@1.0.0-beta.51": { - "type": "npm", - "name": "npm:@rolldown/binding-linux-x64-gnu@1.0.0-beta.51", - "data": { - "version": "1.0.0-beta.51", - "packageName": "@rolldown/binding-linux-x64-gnu", - "hash": "sha512-p5P6Xpa68w3yFaAdSzIZJbj+AfuDnMDqNSeglBXM7UlJT14Q4zwK+rV+8Mhp9MiUb4XFISZtbI/seBprhkQbiQ==" - } - }, - "npm:@rolldown/binding-linux-x64-gnu": { - "type": "npm", - "name": "npm:@rolldown/binding-linux-x64-gnu", - "data": { - "version": "1.0.0-rc.11", - "packageName": "@rolldown/binding-linux-x64-gnu", - "hash": "sha512-qXBQQO9OvkjjQPLdUVr7Nr2t3QTZI7s4KZtfw7HzBgjbmAPSFwSv4rmET9lLSgq3rH/ndA3ngv3Qb8l2njoPNA==" - } - }, - "npm:@rolldown/binding-linux-x64-gnu@1.0.0-rc.9": { - "type": "npm", - "name": "npm:@rolldown/binding-linux-x64-gnu@1.0.0-rc.9", - "data": { - "version": "1.0.0-rc.9", - "packageName": "@rolldown/binding-linux-x64-gnu", - "hash": "sha512-cVEl1vZtBsBZna3YMjGXNvnYYrOJ7RzuWvZU0ffvJUexWkukMaDuGhUXn0rjnV0ptzGVkvc+vW9Yqy6h8YX4pg==" - } - }, - "npm:@rolldown/binding-linux-x64-musl@1.0.0-beta.51": { - "type": "npm", - "name": "npm:@rolldown/binding-linux-x64-musl@1.0.0-beta.51", - "data": { - "version": "1.0.0-beta.51", - "packageName": "@rolldown/binding-linux-x64-musl", - "hash": "sha512-sNVVyLa8HB8wkFipdfz1s6i0YWinwpbMWk5hO5S+XAYH2UH67YzUT13gs6wZTKg2x/3gtgXzYnHyF5wMIqoDAw==" - } - }, - "npm:@rolldown/binding-linux-x64-musl": { - "type": "npm", - "name": "npm:@rolldown/binding-linux-x64-musl", - "data": { - "version": "1.0.0-rc.11", - "packageName": "@rolldown/binding-linux-x64-musl", - "hash": "sha512-/tpFfoSTzUkH9LPY+cYbqZBDyyX62w5fICq9qzsHLL8uTI6BHip3Q9Uzft0wylk/i8OOwKik8OxW+QAhDmzwmg==" - } - }, - "npm:@rolldown/binding-linux-x64-musl@1.0.0-rc.9": { - "type": "npm", - "name": "npm:@rolldown/binding-linux-x64-musl@1.0.0-rc.9", - "data": { - "version": "1.0.0-rc.9", - "packageName": "@rolldown/binding-linux-x64-musl", - "hash": "sha512-UzYnKCIIc4heAKgI4PZ3dfBGUZefGCJ1TPDuLHoCzgrMYPb5Rv6TLFuYtyM4rWyHM7hymNdsg5ik2C+UD9VDbA==" - } - }, - "npm:@rolldown/binding-openharmony-arm64@1.0.0-beta.51": { - "type": "npm", - "name": "npm:@rolldown/binding-openharmony-arm64@1.0.0-beta.51", - "data": { - "version": "1.0.0-beta.51", - "packageName": "@rolldown/binding-openharmony-arm64", - "hash": "sha512-e/JMTz9Q8+T3g/deEi8DK44sFWZWGKr9AOCW5e8C8SCVWzAXqYXAG7FXBWBNzWEZK0Rcwo9TQHTQ9Q0gXgdCaA==" - } - }, - "npm:@rolldown/binding-openharmony-arm64@1.0.0-rc.11": { - "type": "npm", - "name": "npm:@rolldown/binding-openharmony-arm64@1.0.0-rc.11", - "data": { - "version": "1.0.0-rc.11", - "packageName": "@rolldown/binding-openharmony-arm64", - "hash": "sha512-mcp3Rio2w72IvdZG0oQ4bM2c2oumtwHfUfKncUM6zGgz0KgPz4YmDPQfnXEiY5t3+KD/i8HG2rOB/LxdmieK2g==" - } - }, - "npm:@rolldown/binding-openharmony-arm64@1.0.0-rc.9": { - "type": "npm", - "name": "npm:@rolldown/binding-openharmony-arm64@1.0.0-rc.9", - "data": { - "version": "1.0.0-rc.9", - "packageName": "@rolldown/binding-openharmony-arm64", - "hash": "sha512-+6zoiF+RRyf5cdlFQP7nm58mq7+/2PFaY2DNQeD4B87N36JzfF/l9mdBkkmTvSYcYPE8tMh/o3cRlsx1ldLfog==" - } - }, - "npm:@rolldown/binding-wasm32-wasi@1.0.0-beta.51": { - "type": "npm", - "name": "npm:@rolldown/binding-wasm32-wasi@1.0.0-beta.51", - "data": { - "version": "1.0.0-beta.51", - "packageName": "@rolldown/binding-wasm32-wasi", - "hash": "sha512-We3LWqSu6J9s5Y0MK+N7fUiiu37aBGPG3Pc347EoaROuAwkCS2u9xJ5dpIyLW4B49CIbS3KaPmn4kTgPb3EyPw==" - } - }, - "npm:@rolldown/binding-wasm32-wasi@1.0.0-rc.11": { - "type": "npm", - "name": "npm:@rolldown/binding-wasm32-wasi@1.0.0-rc.11", - "data": { - "version": "1.0.0-rc.11", - "packageName": "@rolldown/binding-wasm32-wasi", - "hash": "sha512-LXk5Hii1Ph9asuGRjBuz8TUxdc1lWzB7nyfdoRgI0WGPZKmCxvlKk8KfYysqtr4MfGElu/f/pEQRh8fcEgkrWw==" - } - }, - "npm:@rolldown/binding-wasm32-wasi@1.0.0-rc.9": { - "type": "npm", - "name": "npm:@rolldown/binding-wasm32-wasi@1.0.0-rc.9", - "data": { - "version": "1.0.0-rc.9", - "packageName": "@rolldown/binding-wasm32-wasi", - "hash": "sha512-rgFN6sA/dyebil3YTlL2evvi/M+ivhfnyxec7AccTpRPccno/rPoNlqybEZQBkcbZu8Hy+eqNJCqfBR8P7Pg8g==" - } - }, - "npm:@rolldown/binding-win32-arm64-msvc@1.0.0-beta.51": { - "type": "npm", - "name": "npm:@rolldown/binding-win32-arm64-msvc@1.0.0-beta.51", - "data": { - "version": "1.0.0-beta.51", - "packageName": "@rolldown/binding-win32-arm64-msvc", - "hash": "sha512-fj56buHRuMM+r/cb6ZYfNjNvO/0xeFybI6cTkTROJatdP4fvmQ1NS8D/Lm10FCSDEOkqIz8hK3TGpbAThbPHsA==" - } - }, - "npm:@rolldown/binding-win32-arm64-msvc@1.0.0-rc.11": { - "type": "npm", - "name": "npm:@rolldown/binding-win32-arm64-msvc@1.0.0-rc.11", - "data": { - "version": "1.0.0-rc.11", - "packageName": "@rolldown/binding-win32-arm64-msvc", - "hash": "sha512-dDwf5otnx0XgRY1yqxOC4ITizcdzS/8cQ3goOWv3jFAo4F+xQYni+hnMuO6+LssHHdJW7+OCVL3CoU4ycnh35Q==" - } - }, - "npm:@rolldown/binding-win32-arm64-msvc@1.0.0-rc.9": { - "type": "npm", - "name": "npm:@rolldown/binding-win32-arm64-msvc@1.0.0-rc.9", - "data": { - "version": "1.0.0-rc.9", - "packageName": "@rolldown/binding-win32-arm64-msvc", - "hash": "sha512-lHVNUG/8nlF1IQk1C0Ci574qKYyty2goMiPlRqkC5R+3LkXDkL5Dhx8ytbxq35m+pkHVIvIxviD+TWLdfeuadA==" - } - }, - "npm:@rolldown/binding-win32-ia32-msvc": { - "type": "npm", - "name": "npm:@rolldown/binding-win32-ia32-msvc", - "data": { - "version": "1.0.0-beta.51", - "packageName": "@rolldown/binding-win32-ia32-msvc", - "hash": "sha512-fkqEqaeEx8AySXiDm54b/RdINb3C0VovzJA3osMhZsbn6FoD73H0AOIiaVAtGr6x63hefruVKTX8irAm4Jkt2w==" - } - }, - "npm:@rolldown/binding-win32-x64-msvc@1.0.0-beta.51": { - "type": "npm", - "name": "npm:@rolldown/binding-win32-x64-msvc@1.0.0-beta.51", - "data": { - "version": "1.0.0-beta.51", - "packageName": "@rolldown/binding-win32-x64-msvc", - "hash": "sha512-CWuLG/HMtrVcjKGa0C4GnuxONrku89g0+CsH8nT0SNhOtREXuzwgjIXNJImpE/A/DMf9JF+1Xkrq/YRr+F/rCg==" - } - }, - "npm:@rolldown/binding-win32-x64-msvc@1.0.0-rc.11": { - "type": "npm", - "name": "npm:@rolldown/binding-win32-x64-msvc@1.0.0-rc.11", - "data": { - "version": "1.0.0-rc.11", - "packageName": "@rolldown/binding-win32-x64-msvc", - "hash": "sha512-LN4/skhSggybX71ews7dAj6r2geaMJfm3kMbK2KhFMg9B10AZXnKoLCVVgzhMHL0S+aKtr4p8QbAW8k+w95bAA==" - } - }, - "npm:@rolldown/binding-win32-x64-msvc@1.0.0-rc.9": { - "type": "npm", - "name": "npm:@rolldown/binding-win32-x64-msvc@1.0.0-rc.9", - "data": { - "version": "1.0.0-rc.9", - "packageName": "@rolldown/binding-win32-x64-msvc", - "hash": "sha512-G0oA4+w1iY5AGi5HcDTxWsoxF509hrFIPB2rduV5aDqS9FtDg1CAfa7V34qImbjfhIcA8C+RekocJZA96EarwQ==" - } - }, - "npm:@rolldown/pluginutils@1.0.0-beta.51": { - "type": "npm", - "name": "npm:@rolldown/pluginutils@1.0.0-beta.51", - "data": { - "version": "1.0.0-beta.51", - "packageName": "@rolldown/pluginutils", - "hash": "sha512-51/8cNXMrqWqX3o8DZidhwz1uYq0BhHDDSfVygAND1Skx5s1TDw3APSSxCMcFFedwgqGcx34gRouwY+m404BBQ==" - } - }, - "npm:@rolldown/pluginutils@1.0.0-rc.11": { - "type": "npm", - "name": "npm:@rolldown/pluginutils@1.0.0-rc.11", - "data": { - "version": "1.0.0-rc.11", - "packageName": "@rolldown/pluginutils", - "hash": "sha512-xQO9vbwBecJRv9EUcQ/y0dzSTJgA7Q6UVN7xp6B81+tBGSLVAK03yJ9NkJaUA7JFD91kbjxRSC/mDnmvXzbHoQ==" - } - }, - "npm:@rolldown/pluginutils@1.0.0-rc.2": { - "type": "npm", - "name": "npm:@rolldown/pluginutils@1.0.0-rc.2", - "data": { - "version": "1.0.0-rc.2", - "packageName": "@rolldown/pluginutils", - "hash": "sha512-izyXV/v+cHiRfozX62W9htOAvwMo4/bXKDrQ+vom1L1qRuexPock/7VZDAhnpHCLNejd3NJ6hiab+tO0D44Rgw==" - } - }, - "npm:@rolldown/pluginutils": { - "type": "npm", - "name": "npm:@rolldown/pluginutils", - "data": { - "version": "1.0.0-rc.7", - "packageName": "@rolldown/pluginutils", - "hash": "sha512-qujRfC8sFVInYSPPMLQByRh7zhwkGFS4+tyMQ83srV1qrxL4g8E2tyxVVyxd0+8QeBM1mIk9KbWxkegRr76XzA==" - } - }, - "npm:@rolldown/pluginutils@1.0.0-rc.9": { - "type": "npm", - "name": "npm:@rolldown/pluginutils@1.0.0-rc.9", - "data": { - "version": "1.0.0-rc.9", - "packageName": "@rolldown/pluginutils", - "hash": "sha512-w6oiRWgEBl04QkFZgmW+jnU1EC9b57Oihi2ot3HNWIQRqgHp5PnYDia5iZ5FF7rpa4EQdiqMDXjlqKGXBhsoXw==" - } - }, - "npm:@rollup/pluginutils": { - "type": "npm", - "name": "npm:@rollup/pluginutils", - "data": { - "version": "5.3.0", - "packageName": "@rollup/pluginutils", - "hash": "sha512-5EdhGZtnu3V88ces7s53hhfK5KSASnJZv8Lulpc04cWO3REESroJXg73DFsOmgbU2BhwV0E20bu2IDZb3VKW4Q==" - } - }, - "npm:@sec-ant/readable-stream": { - "type": "npm", - "name": "npm:@sec-ant/readable-stream", - "data": { - "version": "0.4.1", - "packageName": "@sec-ant/readable-stream", - "hash": "sha512-831qok9r2t8AlxLko40y2ebgSDhenenCatLVeW/uBtnHPyhHOvG0C7TvfgecV+wHzIm5KUICgzmVpWS+IMEAeg==" - } - }, - "npm:@sentry-internal/browser-utils": { - "type": "npm", - "name": "npm:@sentry-internal/browser-utils", - "data": { - "version": "10.45.0", - "packageName": "@sentry-internal/browser-utils", - "hash": "sha512-ZPZpeIarXKScvquGx2AfNKcYiVNDA4wegMmjyGVsTA2JPmP0TrJoO3UybJS6KGDeee8V3I3EfD/ruauMm7jOFQ==" - } - }, - "npm:@sentry-internal/feedback": { - "type": "npm", - "name": "npm:@sentry-internal/feedback", - "data": { - "version": "10.45.0", - "packageName": "@sentry-internal/feedback", - "hash": "sha512-vCSurazFVq7RUeYiM5X326jA5gOVrWYD6lYX2fbjBOMcyCEhDnveNxMT62zKkZDyNT/jyD194nz/cjntBUkyWA==" - } - }, - "npm:@sentry-internal/replay-canvas": { - "type": "npm", - "name": "npm:@sentry-internal/replay-canvas", - "data": { - "version": "10.45.0", - "packageName": "@sentry-internal/replay-canvas", - "hash": "sha512-nvq/AocdZTuD7y0KSiWi3gVaY0s5HOFy86mC/v1kDZmT/jsBAzN5LDkk/f1FvsWma1peqQmpUqxvhC+YIW294Q==" - } - }, - "npm:@sentry-internal/replay": { - "type": "npm", - "name": "npm:@sentry-internal/replay", - "data": { - "version": "10.45.0", - "packageName": "@sentry-internal/replay", - "hash": "sha512-vjosRoGA1bzhVAEO1oce+CsRdd70quzBeo7WvYqpcUnoLe/Rv8qpOMqWX3j26z7XfFHMExWQNQeLxmtYOArvlw==" - } - }, - "npm:@sentry/babel-plugin-component-annotate": { - "type": "npm", - "name": "npm:@sentry/babel-plugin-component-annotate", - "data": { - "version": "5.1.1", - "packageName": "@sentry/babel-plugin-component-annotate", - "hash": "sha512-x2wEpBHwsTyTF2rWsLKJlzrRF1TTIGOfX+ngdE+Yd5DBkoS58HwQv824QOviPGQRla4/ypISqAXzjdDPL/zalg==" - } - }, - "npm:@sentry/browser": { - "type": "npm", - "name": "npm:@sentry/browser", - "data": { - "version": "10.45.0", - "packageName": "@sentry/browser", - "hash": "sha512-e/a8UMiQhqqv706McSIcG6XK+AoQf9INthi2pD+giZfNRTzXTdqHzUT5OIO5hg8Am6eF63nDJc+vrYNPhzs51Q==" - } - }, - "npm:@sentry/bundler-plugin-core": { - "type": "npm", - "name": "npm:@sentry/bundler-plugin-core", - "data": { - "version": "5.1.1", - "packageName": "@sentry/bundler-plugin-core", - "hash": "sha512-F+itpwR9DyQR7gEkrXd2tigREPTvtF5lC8qu6e4anxXYRTui1+dVR0fXNwjpyAZMhIesLfXRN7WY7ggdj7hi0Q==" - } - }, - "npm:@sentry/cli-darwin": { - "type": "npm", - "name": "npm:@sentry/cli-darwin", - "data": { - "version": "2.58.5", - "packageName": "@sentry/cli-darwin", - "hash": "sha512-lYrNzenZFJftfwSya7gwrHGxtE+Kob/e1sr9lmHMFOd4utDlmq0XFDllmdZAMf21fxcPRI1GL28ejZ3bId01fQ==" - } - }, - "npm:@sentry/cli-linux-arm64": { - "type": "npm", - "name": "npm:@sentry/cli-linux-arm64", - "data": { - "version": "2.58.5", - "packageName": "@sentry/cli-linux-arm64", - "hash": "sha512-/4gywFeBqRB6tR/iGMRAJ3HRqY6Z7Yp4l8ZCbl0TDLAfHNxu7schEw4tSnm2/Hh9eNMiOVy4z58uzAWlZXAYBQ==" - } - }, - "npm:@sentry/cli-linux-arm": { - "type": "npm", - "name": "npm:@sentry/cli-linux-arm", - "data": { - "version": "2.58.5", - "packageName": "@sentry/cli-linux-arm", - "hash": "sha512-KtHweSIomYL4WVDrBrYSYJricKAAzxUgX86kc6OnlikbyOhoK6Fy8Vs6vwd52P6dvWPjgrMpUYjW2M5pYXQDUw==" - } - }, - "npm:@sentry/cli-linux-i686": { - "type": "npm", - "name": "npm:@sentry/cli-linux-i686", - "data": { - "version": "2.58.5", - "packageName": "@sentry/cli-linux-i686", - "hash": "sha512-G7261dkmyxqlMdyvyP06b+RTIVzp1gZNgglj5UksxSouSUqRd/46W/2pQeOMPhloDYo9yLtCN2YFb3Mw4aUsWw==" - } - }, - "npm:@sentry/cli-linux-x64": { - "type": "npm", - "name": "npm:@sentry/cli-linux-x64", - "data": { - "version": "2.58.5", - "packageName": "@sentry/cli-linux-x64", - "hash": "sha512-rP04494RSmt86xChkQ+ecBNRYSPbyXc4u0IA7R7N1pSLCyO74e5w5Al+LnAq35cMfVbZgz5Sm0iGLjyiUu4I1g==" - } - }, - "npm:@sentry/cli-win32-arm64": { - "type": "npm", - "name": "npm:@sentry/cli-win32-arm64", - "data": { - "version": "2.58.5", - "packageName": "@sentry/cli-win32-arm64", - "hash": "sha512-AOJ2nCXlQL1KBaCzv38m3i2VmSHNurUpm7xVKd6yAHX+ZoVBI8VT0EgvwmtJR2TY2N2hNCC7UrgRmdUsQ152bA==" - } - }, - "npm:@sentry/cli-win32-i686": { - "type": "npm", - "name": "npm:@sentry/cli-win32-i686", - "data": { - "version": "2.58.5", - "packageName": "@sentry/cli-win32-i686", - "hash": "sha512-EsuboLSOnlrN7MMPJ1eFvfMDm+BnzOaSWl8eYhNo8W/BIrmNgpRUdBwnWn9Q2UOjJj5ZopukmsiMYtU/D7ml9g==" - } - }, - "npm:@sentry/cli-win32-x64": { - "type": "npm", - "name": "npm:@sentry/cli-win32-x64", - "data": { - "version": "2.58.5", - "packageName": "@sentry/cli-win32-x64", - "hash": "sha512-IZf+XIMiQwj+5NzqbOQfywlOitmCV424Vtf9c+ep61AaVScUFD1TSrQbOcJJv5xGxhlxNOMNgMeZhdexdzrKZg==" - } - }, - "npm:@sentry/cli": { - "type": "npm", - "name": "npm:@sentry/cli", - "data": { - "version": "2.58.5", - "packageName": "@sentry/cli", - "hash": "sha512-tavJ7yGUZV+z3Ct2/ZB6mg339i08sAk6HDkgqmSRuQEu2iLS5sl9HIvuXfM6xjv8fwlgFOSy++WNABNAcGHUbg==" - } - }, - "npm:@sentry/core": { - "type": "npm", - "name": "npm:@sentry/core", - "data": { - "version": "10.45.0", - "packageName": "@sentry/core", - "hash": "sha512-s69UXxvefeQxuZ5nY7/THtTrIEvJxNVCp3ns4kwoCw1qMpgpvn/296WCKVmM7MiwnaAdzEKnAvLAwaxZc2nM7Q==" - } - }, - "npm:@sentry/react": { - "type": "npm", - "name": "npm:@sentry/react", - "data": { - "version": "10.45.0", - "packageName": "@sentry/react", - "hash": "sha512-jLezuxi4BUIU3raKyAPR5xMbQG/nhwnWmKo5p11NCbLmWzkS+lxoyDTUB4B8TAKZLfdtdkKLOn1S0tFc8vbUHw==" - } - }, - "npm:@sentry/rollup-plugin": { - "type": "npm", - "name": "npm:@sentry/rollup-plugin", - "data": { - "version": "5.1.1", - "packageName": "@sentry/rollup-plugin", - "hash": "sha512-1d5NkdRR6aKWBP7czkY8sFFWiKnfmfRpQOj+m9bJTsyTjbMiEQJst6315w5pCVlRItPhBqpAraqAhutZFgvyVg==" - } - }, - "npm:@sentry/solid": { - "type": "npm", - "name": "npm:@sentry/solid", - "data": { - "version": "10.45.0", - "packageName": "@sentry/solid", - "hash": "sha512-dhdFrlCHeA39ukkXTGI6ltW3z5flMI3zeRT54+q/e700VR7802OpojHJlboz1YB5wStH+grhVnxf7p0UZyz7Nw==" - } - }, - "npm:@sentry/vite-plugin": { - "type": "npm", - "name": "npm:@sentry/vite-plugin", - "data": { - "version": "5.1.1", - "packageName": "@sentry/vite-plugin", - "hash": "sha512-i6NWUDi2SDikfSUeMJvJTRdwEKYSfTd+mvBO2Ja51S1YK+hnickBuDfD+RvPerIXLuyRu3GamgNPbNqgCGUg/Q==" - } - }, - "npm:@sentry/vue": { - "type": "npm", - "name": "npm:@sentry/vue", - "data": { - "version": "10.45.0", - "packageName": "@sentry/vue", - "hash": "sha512-p6ghTgQtiCBZ+Yw0B2xmC69S8AdCRRsYvbTHW7MJYspwNnJDs7rqgCBqOxNhvr3tsKdDuEOEHLtf/5hbKi+8xQ==" - } - }, - "npm:@sinclair/typebox": { - "type": "npm", - "name": "npm:@sinclair/typebox", - "data": { - "version": "0.34.48", - "packageName": "@sinclair/typebox", - "hash": "sha512-kKJTNuK3AQOrgjjotVxMrCn1sUJwM76wMszfq1kdU4uYVJjvEWuFQ6HgvLt4Xz3fSmZlTOxJ/Ie13KnIcWQXFA==" - } - }, - "npm:@sindresorhus/is": { - "type": "npm", - "name": "npm:@sindresorhus/is", - "data": { - "version": "4.6.0", - "packageName": "@sindresorhus/is", - "hash": "sha512-t09vSN3MdfsyCHoFcTRCH/iUtG7OJ0CsjzB8cjAmKc/va/kIgeDI/TxsigdncE/4be734m0cvIYwNaV4i2XqAw==" - } - }, - "npm:@sindresorhus/is@7.1.0": { - "type": "npm", - "name": "npm:@sindresorhus/is@7.1.0", - "data": { - "version": "7.1.0", - "packageName": "@sindresorhus/is", - "hash": "sha512-7F/yz2IphV39hiS2zB4QYVkivrptHHh0K8qJJd9HhuWSdvf8AN7NpebW3CcDZDBQsUPMoDKWsY2WWgW7bqOcfA==" - } - }, - "npm:@sindresorhus/merge-streams": { - "type": "npm", - "name": "npm:@sindresorhus/merge-streams", - "data": { - "version": "4.0.0", - "packageName": "@sindresorhus/merge-streams", - "hash": "sha512-tlqY9xq5ukxTUZBmoOp+m61cqwQD5pHJtFY3Mn8CA8ps6yghLH/Hw8UPdqg4OLmFW3IFlcXnQNmo/dh8HzXYIQ==" - } - }, - "npm:@solid-primitives/props": { - "type": "npm", - "name": "npm:@solid-primitives/props", - "data": { - "version": "3.2.2", - "packageName": "@solid-primitives/props", - "hash": "sha512-lZOTwFJajBrshSyg14nBMEP0h8MXzPowGO0s3OeiR3z6nXHTfj0FhzDtJMv+VYoRJKQHG2QRnJTgCzK6erARAw==" - } - }, - "npm:@solid-primitives/refs": { - "type": "npm", - "name": "npm:@solid-primitives/refs", - "data": { - "version": "1.1.2", - "packageName": "@solid-primitives/refs", - "hash": "sha512-K7tf2thy7L+YJjdqXspXOg5xvNEOH8tgEWsp0+1mQk3obHBRD6hEjYZk7p7FlJphSZImS35je3UfmWuD7MhDfg==" - } - }, - "npm:@solid-primitives/scheduled": { - "type": "npm", - "name": "npm:@solid-primitives/scheduled", - "data": { - "version": "1.5.3", - "packageName": "@solid-primitives/scheduled", - "hash": "sha512-oNwLE6E6lxJAWrc8QXuwM0k2oU1BnANnkChwMw82aK1j3+mWGJkG1IFe5gCwbV+afYmjI76t9JJV3md/8tLw+g==" - } - }, - "npm:@solid-primitives/transition-group": { - "type": "npm", - "name": "npm:@solid-primitives/transition-group", - "data": { - "version": "1.1.2", - "packageName": "@solid-primitives/transition-group", - "hash": "sha512-gnHS0OmcdjeoHN9n7Khu8KNrOlRc8a2weETDt2YT6o1zeW/XtUC6Db3Q9pkMU/9cCKdEmN4b0a/41MKAHRhzWA==" - } - }, - "npm:@solid-primitives/utils": { - "type": "npm", - "name": "npm:@solid-primitives/utils", - "data": { - "version": "6.3.2", - "packageName": "@solid-primitives/utils", - "hash": "sha512-hZ/M/qr25QOCcwDPOHtGjxTD8w2mNyVAYvcfgwzBHq2RwNqHNdDNsMZYap20+ruRwW4A3Cdkczyoz0TSxLCAPQ==" - } - }, - "npm:@speed-highlight/core": { - "type": "npm", - "name": "npm:@speed-highlight/core", - "data": { - "version": "1.2.7", - "packageName": "@speed-highlight/core", - "hash": "sha512-0dxmVj4gxg3Jg879kvFS/msl4s9F3T9UXC1InxgOf7t5NvcPD97u/WTA5vL/IxWHMn7qSxBozqrnnE2wvl1m8g==" - } - }, - "npm:@stackblitz/sdk": { - "type": "npm", - "name": "npm:@stackblitz/sdk", - "data": { - "version": "1.11.0", - "packageName": "@stackblitz/sdk", - "hash": "sha512-DFQGANNkEZRzFk1/rDP6TcFdM82ycHE+zfl9C/M/jXlH68jiqHWHFMQURLELoD8koxvu/eW5uhg94NSAZlYrUQ==" - } - }, - "npm:@standard-schema/spec": { - "type": "npm", - "name": "npm:@standard-schema/spec", - "data": { - "version": "1.1.0", - "packageName": "@standard-schema/spec", - "hash": "sha512-l2aFy5jALhniG5HgqrD6jXLi/rUWrKvqN/qJx6yoJsgKhblVd+iqqU4RCXavm/jPityDo5TCvKMnpjKnOriy0w==" - } - }, - "npm:@szmarczak/http-timer": { - "type": "npm", - "name": "npm:@szmarczak/http-timer", - "data": { - "version": "4.0.6", - "packageName": "@szmarczak/http-timer", - "hash": "sha512-4BAffykYOgO+5nzBWYwE3W90sBgLJoUPRWWcL8wlyiM8IB8ipJz3UMJ9KXQd1RKQXpKp8Tutn80HZtWsu2u76w==" - } - }, - "npm:@tailwindcss/node": { - "type": "npm", - "name": "npm:@tailwindcss/node", - "data": { - "version": "4.2.2", - "packageName": "@tailwindcss/node", - "hash": "sha512-pXS+wJ2gZpVXqFaUEjojq7jzMpTGf8rU6ipJz5ovJV6PUGmlJ+jvIwGrzdHdQ80Sg+wmQxUFuoW1UAAwHNEdFA==" - } - }, - "npm:@tailwindcss/oxide-android-arm64": { - "type": "npm", - "name": "npm:@tailwindcss/oxide-android-arm64", - "data": { - "version": "4.2.2", - "packageName": "@tailwindcss/oxide-android-arm64", - "hash": "sha512-dXGR1n+P3B6748jZO/SvHZq7qBOqqzQ+yFrXpoOWWALWndF9MoSKAT3Q0fYgAzYzGhxNYOoysRvYlpixRBBoDg==" - } - }, - "npm:@tailwindcss/oxide-darwin-arm64": { - "type": "npm", - "name": "npm:@tailwindcss/oxide-darwin-arm64", - "data": { - "version": "4.2.2", - "packageName": "@tailwindcss/oxide-darwin-arm64", - "hash": "sha512-iq9Qjr6knfMpZHj55/37ouZeykwbDqF21gPFtfnhCCKGDcPI/21FKC9XdMO/XyBM7qKORx6UIhGgg6jLl7BZlg==" - } - }, - "npm:@tailwindcss/oxide-darwin-x64": { - "type": "npm", - "name": "npm:@tailwindcss/oxide-darwin-x64", - "data": { - "version": "4.2.2", - "packageName": "@tailwindcss/oxide-darwin-x64", - "hash": "sha512-BlR+2c3nzc8f2G639LpL89YY4bdcIdUmiOOkv2GQv4/4M0vJlpXEa0JXNHhCHU7VWOKWT/CjqHdTP8aUuDJkuw==" - } - }, - "npm:@tailwindcss/oxide-freebsd-x64": { - "type": "npm", - "name": "npm:@tailwindcss/oxide-freebsd-x64", - "data": { - "version": "4.2.2", - "packageName": "@tailwindcss/oxide-freebsd-x64", - "hash": "sha512-YUqUgrGMSu2CDO82hzlQ5qSb5xmx3RUrke/QgnoEx7KvmRJHQuZHZmZTLSuuHwFf0DJPybFMXMYf+WJdxHy/nQ==" - } - }, - "npm:@tailwindcss/oxide-linux-arm-gnueabihf": { - "type": "npm", - "name": "npm:@tailwindcss/oxide-linux-arm-gnueabihf", - "data": { - "version": "4.2.2", - "packageName": "@tailwindcss/oxide-linux-arm-gnueabihf", - "hash": "sha512-FPdhvsW6g06T9BWT0qTwiVZYE2WIFo2dY5aCSpjG/S/u1tby+wXoslXS0kl3/KXnULlLr1E3NPRRw0g7t2kgaQ==" - } - }, - "npm:@tailwindcss/oxide-linux-arm64-gnu": { - "type": "npm", - "name": "npm:@tailwindcss/oxide-linux-arm64-gnu", - "data": { - "version": "4.2.2", - "packageName": "@tailwindcss/oxide-linux-arm64-gnu", - "hash": "sha512-4og1V+ftEPXGttOO7eCmW7VICmzzJWgMx+QXAJRAhjrSjumCwWqMfkDrNu1LXEQzNAwz28NCUpucgQPrR4S2yw==" - } - }, - "npm:@tailwindcss/oxide-linux-arm64-musl": { - "type": "npm", - "name": "npm:@tailwindcss/oxide-linux-arm64-musl", - "data": { - "version": "4.2.2", - "packageName": "@tailwindcss/oxide-linux-arm64-musl", - "hash": "sha512-oCfG/mS+/+XRlwNjnsNLVwnMWYH7tn/kYPsNPh+JSOMlnt93mYNCKHYzylRhI51X+TbR+ufNhhKKzm6QkqX8ag==" - } - }, - "npm:@tailwindcss/oxide-linux-x64-gnu": { - "type": "npm", - "name": "npm:@tailwindcss/oxide-linux-x64-gnu", - "data": { - "version": "4.2.2", - "packageName": "@tailwindcss/oxide-linux-x64-gnu", - "hash": "sha512-rTAGAkDgqbXHNp/xW0iugLVmX62wOp2PoE39BTCGKjv3Iocf6AFbRP/wZT/kuCxC9QBh9Pu8XPkv/zCZB2mcMg==" - } - }, - "npm:@tailwindcss/oxide-linux-x64-musl": { - "type": "npm", - "name": "npm:@tailwindcss/oxide-linux-x64-musl", - "data": { - "version": "4.2.2", - "packageName": "@tailwindcss/oxide-linux-x64-musl", - "hash": "sha512-XW3t3qwbIwiSyRCggeO2zxe3KWaEbM0/kW9e8+0XpBgyKU4ATYzcVSMKteZJ1iukJ3HgHBjbg9P5YPRCVUxlnQ==" - } - }, - "npm:@tailwindcss/oxide-wasm32-wasi": { - "type": "npm", - "name": "npm:@tailwindcss/oxide-wasm32-wasi", - "data": { - "version": "4.2.2", - "packageName": "@tailwindcss/oxide-wasm32-wasi", - "hash": "sha512-eKSztKsmEsn1O5lJ4ZAfyn41NfG7vzCg496YiGtMDV86jz1q/irhms5O0VrY6ZwTUkFy/EKG3RfWgxSI3VbZ8Q==" - } - }, - "npm:@tailwindcss/oxide-win32-arm64-msvc": { - "type": "npm", - "name": "npm:@tailwindcss/oxide-win32-arm64-msvc", - "data": { - "version": "4.2.2", - "packageName": "@tailwindcss/oxide-win32-arm64-msvc", - "hash": "sha512-qPmaQM4iKu5mxpsrWZMOZRgZv1tOZpUm+zdhhQP0VhJfyGGO3aUKdbh3gDZc/dPLQwW4eSqWGrrcWNBZWUWaXQ==" - } - }, - "npm:@tailwindcss/oxide-win32-x64-msvc": { - "type": "npm", - "name": "npm:@tailwindcss/oxide-win32-x64-msvc", - "data": { - "version": "4.2.2", - "packageName": "@tailwindcss/oxide-win32-x64-msvc", - "hash": "sha512-1T/37VvI7WyH66b+vqHj/cLwnCxt7Qt3WFu5Q8hk65aOvlwAhs7rAp1VkulBJw/N4tMirXjVnylTR72uI0HGcA==" - } - }, - "npm:@tailwindcss/oxide": { - "type": "npm", - "name": "npm:@tailwindcss/oxide", - "data": { - "version": "4.2.2", - "packageName": "@tailwindcss/oxide", - "hash": "sha512-qEUA07+E5kehxYp9BVMpq9E8vnJuBHfJEC0vPC5e7iL/hw7HR61aDKoVoKzrG+QKp56vhNZe4qwkRmMC0zDLvg==" - } - }, - "npm:@tailwindcss/vite": { - "type": "npm", - "name": "npm:@tailwindcss/vite", - "data": { - "version": "4.2.2", - "packageName": "@tailwindcss/vite", - "hash": "sha512-mEiF5HO1QqCLXoNEfXVA1Tzo+cYsrqV7w9Juj2wdUFyW07JRenqMG225MvPwr3ZD9N1bFQj46X7r33iHxLUW0w==" - } - }, - "npm:@tootallnate/quickjs-emscripten": { - "type": "npm", - "name": "npm:@tootallnate/quickjs-emscripten", - "data": { - "version": "0.23.0", - "packageName": "@tootallnate/quickjs-emscripten", - "hash": "sha512-C5Mc6rdnsaJDjO3UpGW/CQTHtCKaYlScZTly4JIu97Jxo/odCiH0ITnDXSJPTOrEKk/ycSZ0AOgTmkDtkOsvIA==" - } - }, - "npm:@trpc/client": { - "type": "npm", - "name": "npm:@trpc/client", - "data": { - "version": "11.14.1", - "packageName": "@trpc/client", - "hash": "sha512-zjIq7JGm50/hIfo7/WR2BQEyngB0SDVlHJi9J3o5cLrOhUAxArYC6F8xpch1a1vatsN9rkayc6hJ3OXHDUOWow==" - } - }, - "npm:@trpc/server": { - "type": "npm", - "name": "npm:@trpc/server", - "data": { - "version": "11.14.1", - "packageName": "@trpc/server", - "hash": "sha512-5sl9cpbrFm1mnDW0/SoOSQBNmwj+cal/JDUNLmLBp1thPvsbN7UerTZjeyLu0BCNxG/FKhnF12BgqYY8SEtCWw==" - } - }, - "npm:@trysound/sax": { - "type": "npm", - "name": "npm:@trysound/sax", - "data": { - "version": "0.2.0", - "packageName": "@trysound/sax", - "hash": "sha512-L7z9BgrNEcYyUYtF+HaEfiS5ebkh9jXqbszz7pC0hRBPaatV0XjSD3+eHrpqFemQfgwiFF0QPIarnIihIDn7OA==" - } - }, - "npm:@ts-morph/common": { - "type": "npm", - "name": "npm:@ts-morph/common", - "data": { - "version": "0.27.0", - "packageName": "@ts-morph/common", - "hash": "sha512-Wf29UqxWDpc+i61k3oIOzcUfQt79PIT9y/MWfAGlrkjg6lBC1hwDECLXPVJAhWjiGbfBCxZd65F/LIZF3+jeJQ==" - } - }, - "npm:@ts-rest/core": { - "type": "npm", - "name": "npm:@ts-rest/core", - "data": { - "version": "3.52.1", - "packageName": "@ts-rest/core", - "hash": "sha512-tAjz7Kxq/grJodcTA1Anop4AVRDlD40fkksEV5Mmal88VoZeRKAG8oMHsDwdwPZz+B/zgnz0q2sF+cm5M7Bc7g==" - } - }, - "npm:@ts-rest/serverless": { - "type": "npm", - "name": "npm:@ts-rest/serverless", - "data": { - "version": "3.52.1", - "packageName": "@ts-rest/serverless", - "hash": "sha512-9lz6SVC/zOjR7Q70Uige1i4fgSLS5cPpei/ocBgdwhc/TJhKWTMQog2IQX3pT2nIA4B4QvZ54YyrBkSiwbrGPw==" - } - }, - "npm:@turbo/darwin-64": { - "type": "npm", - "name": "npm:@turbo/darwin-64", - "data": { - "version": "2.8.20", - "packageName": "@turbo/darwin-64", - "hash": "sha512-FQ9EX1xMU5nbwjxXxM3yU88AQQ6Sqc6S44exPRroMcx9XZHqqppl5ymJF0Ig/z3nvQNwDmz1Gsnvxubo+nXWjQ==" - } - }, - "npm:@turbo/darwin-arm64": { - "type": "npm", - "name": "npm:@turbo/darwin-arm64", - "data": { - "version": "2.8.20", - "packageName": "@turbo/darwin-arm64", - "hash": "sha512-Gpyh9ATFGThD6/s9L95YWY54cizg/VRWl2B67h0yofG8BpHf67DFAh9nuJVKG7bY0+SBJDAo5cMur+wOl9YOYw==" - } - }, - "npm:@turbo/linux-64": { - "type": "npm", - "name": "npm:@turbo/linux-64", - "data": { - "version": "2.8.20", - "packageName": "@turbo/linux-64", - "hash": "sha512-p2QxWUYyYUgUFG0b0kR+pPi8t7c9uaVlRtjTTI1AbCvVqkpjUfCcReBn6DgG/Hu8xrWdKLuyQFaLYFzQskZbcA==" - } - }, - "npm:@turbo/linux-arm64": { - "type": "npm", - "name": "npm:@turbo/linux-arm64", - "data": { - "version": "2.8.20", - "packageName": "@turbo/linux-arm64", - "hash": "sha512-Gn5yjlZGLRZWarLWqdQzv0wMqyBNIdq1QLi48F1oY5Lo9kiohuf7BPQWtWxeNVS2NgJ1+nb/DzK1JduYC4AWOA==" - } - }, - "npm:@turbo/windows-64": { - "type": "npm", - "name": "npm:@turbo/windows-64", - "data": { - "version": "2.8.20", - "packageName": "@turbo/windows-64", - "hash": "sha512-vyaDpYk/8T6Qz5V/X+ihKvKFEZFUoC0oxYpC1sZanK6gaESJlmV3cMRT3Qhcg4D2VxvtC2Jjs9IRkrZGL+exLw==" - } - }, - "npm:@turbo/windows-arm64": { - "type": "npm", - "name": "npm:@turbo/windows-arm64", - "data": { - "version": "2.8.20", - "packageName": "@turbo/windows-arm64", - "hash": "sha512-voicVULvUV5yaGXo0Iue13BcHGYW3u0VgqSbfQwBaHbpj1zLjYV4KIe+7fYIo6DO8FVUJzxFps3ODCQG/Wy2Qw==" - } - }, - "npm:@tybys/wasm-util@0.10.1": { - "type": "npm", - "name": "npm:@tybys/wasm-util@0.10.1", - "data": { - "version": "0.10.1", - "packageName": "@tybys/wasm-util", - "hash": "sha512-9tTaPJLSiejZKx+Bmog4uSubteqTvFrVrURwkmHixBo0G4seD0zUxp98E1DzUBJxLQ3NPwXrGKDiVjwx/DpPsg==" - } - }, - "npm:@tybys/wasm-util": { - "type": "npm", - "name": "npm:@tybys/wasm-util", - "data": { - "version": "0.9.0", - "packageName": "@tybys/wasm-util", - "hash": "sha512-6+7nlbMVX/PVDCwaIQ8nTOPveOcFLSt8GcXdx8hD0bt39uWxYT88uXzqTd4fTvqta7oeUJqudepapKNt2DYJFw==" - } - }, - "npm:@types/aws-lambda": { - "type": "npm", - "name": "npm:@types/aws-lambda", - "data": { - "version": "8.10.161", - "packageName": "@types/aws-lambda", - "hash": "sha512-rUYdp+MQwSFocxIOcSsYSF3YYYC/uUpMbCY/mbO21vGqfrEYvNSoPyKYDj6RhXXpPfS0KstW9RwG3qXh9sL7FQ==" - } - }, - "npm:@types/babel__core": { - "type": "npm", - "name": "npm:@types/babel__core", - "data": { - "version": "7.20.5", - "packageName": "@types/babel__core", - "hash": "sha512-qoQprZvz5wQFJwMDqeseRXWv3rqMvhgpbXFfVyWhbx9X47POIA6i/+dXefEmZKoAgOaTdaIgNSMqMIU61yRyzA==" - } - }, - "npm:@types/babel__generator": { - "type": "npm", - "name": "npm:@types/babel__generator", - "data": { - "version": "7.27.0", - "packageName": "@types/babel__generator", - "hash": "sha512-ufFd2Xi92OAVPYsy+P4n7/U7e68fex0+Ee8gSG9KX7eo084CWiQ4sdxktvdl0bOPupXtVJPY19zk6EwWqUQ8lg==" - } - }, - "npm:@types/babel__template": { - "type": "npm", - "name": "npm:@types/babel__template", - "data": { - "version": "7.4.4", - "packageName": "@types/babel__template", - "hash": "sha512-h/NUaSyG5EyxBIp8YRxo4RMe2/qQgvyowRwVMzhYhBCONbW8PUsg4lkFMrhgZhUe5z3L3MiLDuvyJ/CaPa2A8A==" - } - }, - "npm:@types/babel__traverse": { - "type": "npm", - "name": "npm:@types/babel__traverse", - "data": { - "version": "7.28.0", - "packageName": "@types/babel__traverse", - "hash": "sha512-8PvcXf70gTDZBgt9ptxJ8elBeBjcLOAcOtoO/mPJjtji1+CdGbHgm77om1GrsPxsiE+uXIpNSK64UYaIwQXd4Q==" - } - }, - "npm:@types/better-sqlite3": { - "type": "npm", - "name": "npm:@types/better-sqlite3", - "data": { - "version": "7.6.13", - "packageName": "@types/better-sqlite3", - "hash": "sha512-NMv9ASNARoKksWtsq/SHakpYAYnhBrQgGD8zkLYk/jaK8jUGn08CfEdTRgYhMypUQAfzSP8W6gNLe0q19/t4VA==" - } - }, - "npm:@types/body-parser": { - "type": "npm", - "name": "npm:@types/body-parser", - "data": { - "version": "1.19.6", - "packageName": "@types/body-parser", - "hash": "sha512-HLFeCYgz89uk22N5Qg3dvGvsv46B8GLvKKo1zKG4NybA8U2DiEO3w9lqGg29t/tfLRJpJ6iQxnVw4OnB7MoM9g==" - } - }, - "npm:@types/cacheable-request": { - "type": "npm", - "name": "npm:@types/cacheable-request", - "data": { - "version": "6.0.3", - "packageName": "@types/cacheable-request", - "hash": "sha512-IQ3EbTzGxIigb1I3qPZc1rWJnH0BmSKv5QYTalEwweFvyBDLSAe24zP0le/hyi7ecGfZVlIVAg4BZqb8WBwKqw==" - } - }, - "npm:@types/chai": { - "type": "npm", - "name": "npm:@types/chai", - "data": { - "version": "5.2.2", - "packageName": "@types/chai", - "hash": "sha512-8kB30R7Hwqf40JPiKhVzodJs2Qc1ZJ5zuT3uzw5Hq/dhNCl3G3l83jfpdI1e20BP348+fV7VIL/+FxaXkqBmWg==" - } - }, - "npm:@types/connect": { - "type": "npm", - "name": "npm:@types/connect", - "data": { - "version": "3.4.38", - "packageName": "@types/connect", - "hash": "sha512-K6uROf1LD88uDQqJCktA4yzL1YYAK6NgfsI0v/mTgyPKWsX1CnJ0XPSDhViejru1GcRkLWb8RlzFYJRqGUbaug==" - } - }, - "npm:@types/debug": { - "type": "npm", - "name": "npm:@types/debug", - "data": { - "version": "4.1.12", - "packageName": "@types/debug", - "hash": "sha512-vIChWdVG3LG1SMxEvI/AK+FWJthlrqlTu7fbrlywTkkaONwk/UAGaULXRlf8vkzFBLVm0zkMdCquhL5aOjhXPQ==" - } - }, - "npm:@types/deep-eql": { - "type": "npm", - "name": "npm:@types/deep-eql", - "data": { - "version": "4.0.2", - "packageName": "@types/deep-eql", - "hash": "sha512-c9h9dVVMigMPc4bwTvC5dxqtqJZwQPePsWjPlpSOnojbor6pGqdk541lfA7AqFQr5pB1BRdq0juY9db81BwyFw==" - } - }, - "npm:@types/eslint": { - "type": "npm", - "name": "npm:@types/eslint", - "data": { - "version": "9.6.1", - "packageName": "@types/eslint", - "hash": "sha512-FXx2pKgId/WyYo2jXw63kk7/+TY7u7AziEJxJAnSFzHlqTAS3Ync6SvgYAN/k4/PQpnnVuzoMuVnByKK2qp0ag==" - } - }, - "npm:@types/estree": { - "type": "npm", - "name": "npm:@types/estree", - "data": { - "version": "1.0.8", - "packageName": "@types/estree", - "hash": "sha512-dWHzHa2WqEXI/O1E9OjrocMTKJl2mSrEolh1Iomrv6U+JuNwaHXsXx9bLu5gG7BUWFIN0skIQJQ/L1rIex4X6w==" - } - }, - "npm:@types/express-serve-static-core": { - "type": "npm", - "name": "npm:@types/express-serve-static-core", - "data": { - "version": "5.1.0", - "packageName": "@types/express-serve-static-core", - "hash": "sha512-jnHMsrd0Mwa9Cf4IdOzbz543y4XJepXrbia2T4b6+spXC2We3t1y6K44D3mR8XMFSXMCf3/l7rCgddfx7UNVBA==" - } - }, - "npm:@types/express": { - "type": "npm", - "name": "npm:@types/express", - "data": { - "version": "5.0.6", - "packageName": "@types/express", - "hash": "sha512-sKYVuV7Sv9fbPIt/442koC7+IIwK5olP1KWeD88e/idgoJqDm3JV/YUiPwkoKK92ylff2MGxSz1CSjsXelx0YA==" - } - }, - "npm:@types/http-cache-semantics": { - "type": "npm", - "name": "npm:@types/http-cache-semantics", - "data": { - "version": "4.0.4", - "packageName": "@types/http-cache-semantics", - "hash": "sha512-1m0bIFVc7eJWyve9S0RnuRgcQqF/Xd5QsUZAZeQFr1Q3/p9JWoQQEqmVy+DPTNpGXwhgIetAoYF8JSc33q29QA==" - } - }, - "npm:@types/http-errors": { - "type": "npm", - "name": "npm:@types/http-errors", - "data": { - "version": "2.0.5", - "packageName": "@types/http-errors", - "hash": "sha512-r8Tayk8HJnX0FztbZN7oVqGccWgw98T/0neJphO91KkmOzug1KkofZURD4UaD5uH8AqcFLfdPErnBod0u71/qg==" - } - }, - "npm:@types/jsesc": { - "type": "npm", - "name": "npm:@types/jsesc", - "data": { - "version": "2.5.1", - "packageName": "@types/jsesc", - "hash": "sha512-9VN+6yxLOPLOav+7PwjZbxiID2bVaeq0ED4qSQmdQTdjnXJSaCVKTR58t15oqH1H5t8Ng2ZX1SabJVoN9Q34bw==" - } - }, - "npm:@types/json-schema": { - "type": "npm", - "name": "npm:@types/json-schema", - "data": { - "version": "7.0.15", - "packageName": "@types/json-schema", - "hash": "sha512-5+fP8P8MFNC+AyZCDxrB2pkZFPGzqQWUzpSeuuVLvm8VMcorNYavBqoFcxK8bQz4Qsbn4oUEEem4wDLfcysGHA==" - } - }, - "npm:@types/keyv": { - "type": "npm", - "name": "npm:@types/keyv", - "data": { - "version": "3.1.4", - "packageName": "@types/keyv", - "hash": "sha512-BQ5aZNSCpj7D6K2ksrRCTmKRLEpnPvWDiLPfoGyhZ++8YtiK9d/3DBKPJgry359X/P1PfruyYwvnvwFjuEiEIg==" - } - }, - "npm:@types/mdast": { - "type": "npm", - "name": "npm:@types/mdast", - "data": { - "version": "4.0.4", - "packageName": "@types/mdast", - "hash": "sha512-kGaNbPh1k7AFzgpud/gMdvIm5xuECykRR+JnWKQno9TAXVa6WIVCGTPvYGekIDL4uwCZQSYbUxNBSb1aUo79oA==" - } - }, - "npm:@types/ms": { - "type": "npm", - "name": "npm:@types/ms", - "data": { - "version": "2.1.0", - "packageName": "@types/ms", - "hash": "sha512-GsCCIZDE/p3i96vtEqx+7dBUGXrc7zeSK3wwPHIaRThS+9OhWIXRqzs4d6k1SVU8g91DrNRWxWUGhp5KXQb2VA==" - } - }, - "npm:@types/node": { - "type": "npm", - "name": "npm:@types/node", - "data": { - "version": "20.19.37", - "packageName": "@types/node", - "hash": "sha512-8kzdPJ3FsNsVIurqBs7oodNnCEVbni9yUEkaHbgptDACOPW04jimGagZ51E6+lXUwJjgnBw+hyko/lkFWCldqw==" - } - }, - "npm:@types/qs": { - "type": "npm", - "name": "npm:@types/qs", - "data": { - "version": "6.14.0", - "packageName": "@types/qs", - "hash": "sha512-eOunJqu0K1923aExK6y8p6fsihYEn/BYuQ4g0CxAAgFc4b/ZLN4CrsRZ55srTdqoiLzU2B2evC+apEIxprEzkQ==" - } - }, - "npm:@types/range-parser": { - "type": "npm", - "name": "npm:@types/range-parser", - "data": { - "version": "1.2.7", - "packageName": "@types/range-parser", - "hash": "sha512-hKormJbkJqzQGhziax5PItDUTMAM9uE2XXQmM37dyd4hVM+5aVl7oVxMVUiVQn2oCQFN/LKCZdvSM0pFRqbSmQ==" - } - }, - "npm:@types/react-dom": { - "type": "npm", - "name": "npm:@types/react-dom", - "data": { - "version": "19.2.3", - "packageName": "@types/react-dom", - "hash": "sha512-jp2L/eY6fn+KgVVQAOqYItbF0VY/YApe5Mz2F0aykSO8gx31bYCZyvSeYxCHKvzHG5eZjc+zyaS5BrBWya2+kQ==" - } - }, - "npm:@types/react": { - "type": "npm", - "name": "npm:@types/react", - "data": { - "version": "19.2.14", - "packageName": "@types/react", - "hash": "sha512-ilcTH/UniCkMdtexkoCN0bI7pMcJDvmQFPvuPvmEaYA/NSfFTAgdUSLAoVjaRJm7+6PvcM+q1zYOwS4wTYMF9w==" - } - }, - "npm:@types/responselike": { - "type": "npm", - "name": "npm:@types/responselike", - "data": { - "version": "1.0.3", - "packageName": "@types/responselike", - "hash": "sha512-H/+L+UkTV33uf49PH5pCAUBVPNj2nDBXTN+qS1dOwyyg24l3CcicicCA7ca+HMvJBZcFgl5r8e+RR6elsb4Lyw==" - } - }, - "npm:@types/retry": { - "type": "npm", - "name": "npm:@types/retry", - "data": { - "version": "0.12.0", - "packageName": "@types/retry", - "hash": "sha512-wWKOClTTiizcZhXnPY4wikVAwmdYHp8q6DmC+EJUzAMsycb7HB32Kh9RN4+0gExjmPmZSAQjgURXIGATPegAvA==" - } - }, - "npm:@types/send": { - "type": "npm", - "name": "npm:@types/send", - "data": { - "version": "1.2.0", - "packageName": "@types/send", - "hash": "sha512-zBF6vZJn1IaMpg3xUF25VK3gd3l8zwE0ZLRX7dsQyQi+jp4E8mMDJNGDYnYse+bQhYwWERTxVwHpi3dMOq7RKQ==" - } - }, - "npm:@types/serve-static": { - "type": "npm", - "name": "npm:@types/serve-static", - "data": { - "version": "2.2.0", - "packageName": "@types/serve-static", - "hash": "sha512-8mam4H1NHLtu7nmtalF7eyBH14QyOASmcxHhSfEoRyr0nP/YdoesEtU+uSRvMe96TW/HPTtkoKqQLl53N7UXMQ==" - } - }, - "npm:@types/ungap__structured-clone": { - "type": "npm", - "name": "npm:@types/ungap__structured-clone", - "data": { - "version": "1.2.0", - "packageName": "@types/ungap__structured-clone", - "hash": "sha512-ZoaihZNLeZSxESbk9PUAPZOlSpcKx81I1+4emtULDVmBLkYutTcMlCj2K9VNlf9EWODxdO6gkAqEaLorXwZQVA==" - } - }, - "npm:@types/unist": { - "type": "npm", - "name": "npm:@types/unist", - "data": { - "version": "2.0.11", - "packageName": "@types/unist", - "hash": "sha512-CmBKiL6NNo/OqgmMn95Fk9Whlp2mtvIv+KNpQKN2F4SjvrEesubTRWGYSg+BnWZOnlCaSTU1sMpsBOzgbYhnsA==" - } - }, - "npm:@types/unist@3.0.3": { - "type": "npm", - "name": "npm:@types/unist@3.0.3", - "data": { - "version": "3.0.3", - "packageName": "@types/unist", - "hash": "sha512-ko/gIFJRv177XgZsZcBwnqJN5x/Gien8qNOn0D5bQU/zAzVf9Zt3BlcUiLqhV9y4ARk0GbT3tnUiPNgnTXzc/Q==" - } - }, - "npm:@types/which": { - "type": "npm", - "name": "npm:@types/which", - "data": { - "version": "3.0.4", - "packageName": "@types/which", - "hash": "sha512-liyfuo/106JdlgSchJzXEQCVArk0CvevqPote8F8HgWgJ3dRCcTHgJIsLDuee0kxk/mhbInzIZk3QWSZJ8R+2w==" - } - }, - "npm:@types/yauzl": { - "type": "npm", - "name": "npm:@types/yauzl", - "data": { - "version": "2.10.3", - "packageName": "@types/yauzl", - "hash": "sha512-oJoftv0LSuaDZE3Le4DbKX+KS9G36NzOeSap90UIK0yMA/NhKJhqlSGtNDORNRaIbQfzjXDrQa0ytJ6mNRGz/Q==" - } - }, - "npm:@typescript-eslint/eslint-plugin": { - "type": "npm", - "name": "npm:@typescript-eslint/eslint-plugin", - "data": { - "version": "8.57.1", - "packageName": "@typescript-eslint/eslint-plugin", - "hash": "sha512-Gn3aqnvNl4NGc6x3/Bqk1AOn0thyTU9bqDRhiRnUWezgvr2OnhYCWCgC8zXXRVqBsIL1pSDt7T9nJUe0oM0kDQ==" - } - }, - "npm:@typescript-eslint/parser": { - "type": "npm", - "name": "npm:@typescript-eslint/parser", - "data": { - "version": "8.57.1", - "packageName": "@typescript-eslint/parser", - "hash": "sha512-k4eNDan0EIMTT/dUKc/g+rsJ6wcHYhNPdY19VoX/EOtaAG8DLtKCykhrUnuHPYvinn5jhAPgD2Qw9hXBwrahsw==" - } - }, - "npm:@typescript-eslint/project-service": { - "type": "npm", - "name": "npm:@typescript-eslint/project-service", - "data": { - "version": "8.57.1", - "packageName": "@typescript-eslint/project-service", - "hash": "sha512-vx1F37BRO1OftsYlmG9xay1TqnjNVlqALymwWVuYTdo18XuKxtBpCj1QlzNIEHlvlB27osvXFWptYiEWsVdYsg==" - } - }, - "npm:@typescript-eslint/scope-manager": { - "type": "npm", - "name": "npm:@typescript-eslint/scope-manager", - "data": { - "version": "8.57.1", - "packageName": "@typescript-eslint/scope-manager", - "hash": "sha512-hs/QcpCwlwT2L5S+3fT6gp0PabyGk4Q0Rv2doJXA0435/OpnSR3VRgvrp8Xdoc3UAYSg9cyUjTeFXZEPg/3OKg==" - } - }, - "npm:@typescript-eslint/tsconfig-utils": { - "type": "npm", - "name": "npm:@typescript-eslint/tsconfig-utils", - "data": { - "version": "8.57.1", - "packageName": "@typescript-eslint/tsconfig-utils", - "hash": "sha512-0lgOZB8cl19fHO4eI46YUx2EceQqhgkPSuCGLlGi79L2jwYY1cxeYc1Nae8Aw1xjgW3PKVDLlr3YJ6Bxx8HkWg==" - } - }, - "npm:@typescript-eslint/type-utils": { - "type": "npm", - "name": "npm:@typescript-eslint/type-utils", - "data": { - "version": "8.57.1", - "packageName": "@typescript-eslint/type-utils", - "hash": "sha512-+Bwwm0ScukFdyoJsh2u6pp4S9ktegF98pYUU0hkphOOqdMB+1sNQhIz8y5E9+4pOioZijrkfNO/HUJVAFFfPKA==" - } - }, - "npm:@typescript-eslint/types": { - "type": "npm", - "name": "npm:@typescript-eslint/types", - "data": { - "version": "8.57.1", - "packageName": "@typescript-eslint/types", - "hash": "sha512-S29BOBPJSFUiblEl6RzPPjJt6w25A6XsBqRVDt53tA/tlL8q7ceQNZHTjPeONt/3S7KRI4quk+yP9jK2WjBiPQ==" - } - }, - "npm:@typescript-eslint/typescript-estree": { - "type": "npm", - "name": "npm:@typescript-eslint/typescript-estree", - "data": { - "version": "8.57.1", - "packageName": "@typescript-eslint/typescript-estree", - "hash": "sha512-ybe2hS9G6pXpqGtPli9Gx9quNV0TWLOmh58ADlmZe9DguLq0tiAKVjirSbtM1szG6+QH6rVXyU6GTLQbWnMY+g==" - } - }, - "npm:@typescript-eslint/utils": { - "type": "npm", - "name": "npm:@typescript-eslint/utils", - "data": { - "version": "8.57.1", - "packageName": "@typescript-eslint/utils", - "hash": "sha512-XUNSJ/lEVFttPMMoDVA2r2bwrl8/oPx8cURtczkSEswY5T3AeLmCy+EKWQNdL4u0MmAHOjcWrqJp2cdvgjn8dQ==" - } - }, - "npm:@typescript-eslint/visitor-keys": { - "type": "npm", - "name": "npm:@typescript-eslint/visitor-keys", - "data": { - "version": "8.57.1", - "packageName": "@typescript-eslint/visitor-keys", - "hash": "sha512-YWnmJkXbofiz9KbnbbwuA2rpGkFPLbAIetcCNO6mJ8gdhdZ/v7WDXsoGFAJuM6ikUFKTlSQnjWnVO4ux+UzS6A==" - } - }, - "npm:@ungap/structured-clone": { - "type": "npm", - "name": "npm:@ungap/structured-clone", - "data": { - "version": "1.3.0", - "packageName": "@ungap/structured-clone", - "hash": "sha512-WmoN8qaIAo7WTYWbAZuG8PYEhn5fkz7dZrqTBZ7dtt//lL2Gwms1IcnQ5yHqjDfX8Ft5j4YzDM23f87zBfDe9g==" - } - }, - "npm:@universal-middleware/cloudflare": { - "type": "npm", - "name": "npm:@universal-middleware/cloudflare", - "data": { - "version": "0.4.10", - "packageName": "@universal-middleware/cloudflare", - "hash": "sha512-ZY+N0KKoH+H+BB3wsaD5yqTiiFtX7uklPyCBqGLqEijOtZA5ZgFIExfWDjiIUjezUBAbRB8kUZ/WlPITY+hyTg==" - } - }, - "npm:@universal-middleware/compress": { - "type": "npm", - "name": "npm:@universal-middleware/compress", - "data": { - "version": "0.2.35", - "packageName": "@universal-middleware/compress", - "hash": "sha512-uLwwPtGLlK6KCYG5SksLdifOFhx6O10hArtz7PaD2hbqRE+IiWa1zntDCtKIkOHhA8Upz2koIbScyRpY/z/a3w==" - } - }, - "npm:@universal-middleware/core": { - "type": "npm", - "name": "npm:@universal-middleware/core", - "data": { - "version": "0.4.17", - "packageName": "@universal-middleware/core", - "hash": "sha512-q+/nXW9DQ94RtmlghC57DhwEvjrqxX57EtU40iaM3U+eYTKc+FVnEdlpdrYX8kCAdEU7zVBLBlFgJre+VrXoUg==" - } - }, - "npm:@universal-middleware/express": { - "type": "npm", - "name": "npm:@universal-middleware/express", - "data": { - "version": "0.4.22", - "packageName": "@universal-middleware/express", - "hash": "sha512-4aIrnK52NJmYKokZnwpWja/vT2m/HoZ8zxQyYLdokkSQdx0B1k1VsmYGeWENvpDQBgLjnfyvDzyaxch6Tib/hA==" - } - }, - "npm:@universal-middleware/fastify": { - "type": "npm", - "name": "npm:@universal-middleware/fastify", - "data": { - "version": "0.5.22", - "packageName": "@universal-middleware/fastify", - "hash": "sha512-6axgXhhi69V4RHh6DjUxRmWnRN8U9cW/Ro/1lB0weTe4Y07pI/9603XGcg9iNltbqEhjRvK+Jch3WwwIfVdIBg==" - } - }, - "npm:@universal-middleware/h3": { - "type": "npm", - "name": "npm:@universal-middleware/h3", - "data": { - "version": "0.4.15", - "packageName": "@universal-middleware/h3", - "hash": "sha512-IdoQ9cHSQEh7R1MtUppstuOrKLo//6hFv1AdVx0fyqCOELk0+rGH63VJ2MjnA26/xqysqrbjkiNQilBucAyfxw==" - } - }, - "npm:@universal-middleware/hono": { - "type": "npm", - "name": "npm:@universal-middleware/hono", - "data": { - "version": "0.4.18", - "packageName": "@universal-middleware/hono", - "hash": "sha512-RpnX8hKh2zx7hwVYzI32DjvH7KBYpt7MLIHWYw9QBSEzpD1ErqL+SpkvvlJaINjFs+sYJKH5IOoL53uHCL5alw==" - } - }, - "npm:@universal-middleware/sirv": { - "type": "npm", - "name": "npm:@universal-middleware/sirv", - "data": { - "version": "0.1.25", - "packageName": "@universal-middleware/sirv", - "hash": "sha512-yjOJE/PmEFfTPYOpwXzZyGnDRZOvDphMrsNLaNkdNVlCBFnTLEGIJP9WnsOKNr65iyqFkMXzXvmyZd65RlN8yg==" - } - }, - "npm:@universal-middleware/srvx": { - "type": "npm", - "name": "npm:@universal-middleware/srvx", - "data": { - "version": "0.1.1", - "packageName": "@universal-middleware/srvx", - "hash": "sha512-nTy4BZvaEI+rFO8sWEVvZrZWwFuqEXlXPNvIBAfl16+nKcorwiwm1x+qzuDrSqLd/kr5LSsGR3/KenTvESS9dQ==" - } - }, - "npm:@universal-middleware/vercel": { - "type": "npm", - "name": "npm:@universal-middleware/vercel", - "data": { - "version": "0.4.29", - "packageName": "@universal-middleware/vercel", - "hash": "sha512-w/2/cPat0MnKAI6w5I8OTYZSGCOLRe/yAGsPqfUyQtubuSpOpXnv/ELwC6iXO6EIoZcI9kCkO/Eucjuv55V6Xw==" - } - }, - "npm:@vercel/build-utils": { - "type": "npm", - "name": "npm:@vercel/build-utils", - "data": { - "version": "13.2.4", - "packageName": "@vercel/build-utils", - "hash": "sha512-12m+8Z+wsxJUoWZ+JQqRk8v1O0ioJhGYWz+yStW8abuzfNz75QW2rRcbn0hSHuF8c7b3D2papmMdh94kSSYQEw==" - } - }, - "npm:@vercel/nft@0.30.4": { - "type": "npm", - "name": "npm:@vercel/nft@0.30.4", - "data": { - "version": "0.30.4", - "packageName": "@vercel/nft", - "hash": "sha512-wE6eAGSXScra60N2l6jWvNtVK0m+sh873CpfZW4KI2v8EHuUQp+mSEi4T+IcdPCSEDgCdAS/7bizbhQlkjzrSA==" - } - }, - "npm:@vercel/nft": { - "type": "npm", - "name": "npm:@vercel/nft", - "data": { - "version": "1.1.1", - "packageName": "@vercel/nft", - "hash": "sha512-mKMGa7CEUcXU75474kOeqHbtvK1kAcu4wiahhmlUenB5JbTQB8wVlDI8CyHR3rpGo0qlzoRWqcDzI41FUoBJCA==" - } - }, - "npm:@vercel/routing-utils": { - "type": "npm", - "name": "npm:@vercel/routing-utils", - "data": { - "version": "5.3.1", - "packageName": "@vercel/routing-utils", - "hash": "sha512-HlqFRdB6Dm20xgEWtEatchf9X28NifweXPdDoEGyj5ItngaiqpywtkgkuiAk3xK9eAu2oXM36wEJbDDTxMblUg==" - } - }, - "npm:@vikejs/biome-config": { - "type": "npm", - "name": "npm:@vikejs/biome-config", - "data": { - "version": "2.0.1", - "packageName": "@vikejs/biome-config", - "hash": "sha512-kqVIZSWS7WCwTJYSzPnrhq3k+OdsOD67BM+lYtOaxkmoMfmtjz00ckGvFO8PxF8GJGeKTu7S/+pL6YmxC/Ht3Q==" - } - }, - "npm:@vite-plugin-vercel/schemas": { - "type": "npm", - "name": "npm:@vite-plugin-vercel/schemas", - "data": { - "version": "1.1.0", - "packageName": "@vite-plugin-vercel/schemas", - "hash": "sha512-Vl7r+Itu7oS2/Ypo0wyPOB87AHdoU4EsmDNkSjTeKc7wl9xxHafCMd2Uc9qLOcX0tlDtcwJkjvB4A//ObqL8/w==" - } - }, - "npm:@vitejs/plugin-react": { - "type": "npm", - "name": "npm:@vitejs/plugin-react", - "data": { - "version": "6.0.1", - "packageName": "@vitejs/plugin-react", - "hash": "sha512-l9X/E3cDb+xY3SWzlG1MOGt2usfEHGMNIaegaUGFsLkb3RCn/k8/TOXBcab+OndDI4TBtktT8/9BwwW8Vi9KUQ==" - } - }, - "npm:@vitejs/plugin-vue": { - "type": "npm", - "name": "npm:@vitejs/plugin-vue", - "data": { - "version": "6.0.5", - "packageName": "@vitejs/plugin-vue", - "hash": "sha512-bL3AxKuQySfk1iGcBsQnoRVexTPJq0Z/ixFVM8OhVJAP6ZXXXLtM7NFKWhLl30Kg7uTBqIaPXbh+nuQCuBDedg==" - } - }, - "npm:@vitest/expect": { - "type": "npm", - "name": "npm:@vitest/expect", - "data": { - "version": "4.1.0", - "packageName": "@vitest/expect", - "hash": "sha512-EIxG7k4wlWweuCLG9Y5InKFwpMEOyrMb6ZJ1ihYu02LVj/bzUwn2VMU+13PinsjRW75XnITeFrQBMH5+dLvCDA==" - } - }, - "npm:@vitest/mocker": { - "type": "npm", - "name": "npm:@vitest/mocker", - "data": { - "version": "4.1.0", - "packageName": "@vitest/mocker", - "hash": "sha512-evxREh+Hork43+Y4IOhTo+h5lGmVRyjqI739Rz4RlUPqwrkFFDF6EMvOOYjTx4E8Tl6gyCLRL8Mu7Ry12a13Tw==" - } - }, - "npm:@vitest/pretty-format": { - "type": "npm", - "name": "npm:@vitest/pretty-format", - "data": { - "version": "4.1.0", - "packageName": "@vitest/pretty-format", - "hash": "sha512-3RZLZlh88Ib0J7NQTRATfc/3ZPOnSUn2uDBUoGNn5T36+bALixmzphN26OUD3LRXWkJu4H0s5vvUeqBiw+kS0A==" - } - }, - "npm:@vitest/runner": { - "type": "npm", - "name": "npm:@vitest/runner", - "data": { - "version": "4.1.0", - "packageName": "@vitest/runner", - "hash": "sha512-Duvx2OzQ7d6OjchL+trw+aSrb9idh7pnNfxrklo14p3zmNL4qPCDeIJAK+eBKYjkIwG96Bc6vYuxhqDXQOWpoQ==" - } - }, - "npm:@vitest/snapshot": { - "type": "npm", - "name": "npm:@vitest/snapshot", - "data": { - "version": "4.1.0", - "packageName": "@vitest/snapshot", - "hash": "sha512-0Vy9euT1kgsnj1CHttwi9i9o+4rRLEaPRSOJ5gyv579GJkNpgJK+B4HSv/rAWixx2wdAFci1X4CEPjiu2bXIMg==" - } - }, - "npm:@vitest/spy": { - "type": "npm", - "name": "npm:@vitest/spy", - "data": { - "version": "4.1.0", - "packageName": "@vitest/spy", - "hash": "sha512-pz77k+PgNpyMDv2FV6qmk5ZVau6c3R8HC8v342T2xlFxQKTrSeYw9waIJG8KgV9fFwAtTu4ceRzMivPTH6wSxw==" - } - }, - "npm:@vitest/utils": { - "type": "npm", - "name": "npm:@vitest/utils", - "data": { - "version": "4.1.0", - "packageName": "@vitest/utils", - "hash": "sha512-XfPXT6a8TZY3dcGY8EdwsBulFCIw+BeeX0RZn2x/BtiY/75YGh8FeWGG8QISN/WhaqSrE2OrlDgtF8q5uhOTmw==" - } - }, - "npm:@vue/compiler-core": { - "type": "npm", - "name": "npm:@vue/compiler-core", - "data": { - "version": "3.5.30", - "packageName": "@vue/compiler-core", - "hash": "sha512-s3DfdZkcu/qExZ+td75015ljzHc6vE+30cFMGRPROYjqkroYI5NV2X1yAMX9UeyBNWB9MxCfPcsjpLS11nzkkw==" - } - }, - "npm:@vue/compiler-dom": { - "type": "npm", - "name": "npm:@vue/compiler-dom", - "data": { - "version": "3.5.30", - "packageName": "@vue/compiler-dom", - "hash": "sha512-eCFYESUEVYHhiMuK4SQTldO3RYxyMR/UQL4KdGD1Yrkfdx4m/HYuZ9jSfPdA+nWJY34VWndiYdW/wZXyiPEB9g==" - } - }, - "npm:@vue/compiler-sfc": { - "type": "npm", - "name": "npm:@vue/compiler-sfc", - "data": { - "version": "3.5.30", - "packageName": "@vue/compiler-sfc", - "hash": "sha512-LqmFPDn89dtU9vI3wHJnwaV6GfTRD87AjWpTWpyrdVOObVtjIuSeZr181z5C4PmVx/V3j2p+0f7edFKGRMpQ5A==" - } - }, - "npm:@vue/compiler-ssr": { - "type": "npm", - "name": "npm:@vue/compiler-ssr", - "data": { - "version": "3.5.30", - "packageName": "@vue/compiler-ssr", - "hash": "sha512-NsYK6OMTnx109PSL2IAyf62JP6EUdk4Dmj6AkWcJGBvN0dQoMYtVekAmdqgTtWQgEJo+Okstbf/1p7qZr5H+bA==" - } - }, - "npm:@vue/reactivity": { - "type": "npm", - "name": "npm:@vue/reactivity", - "data": { - "version": "3.5.30", - "packageName": "@vue/reactivity", - "hash": "sha512-179YNgKATuwj9gB+66snskRDOitDiuOZqkYia7mHKJaidOMo/WJxHKF8DuGc4V4XbYTJANlfEKb0yxTQotnx4Q==" - } - }, - "npm:@vue/runtime-core": { - "type": "npm", - "name": "npm:@vue/runtime-core", - "data": { - "version": "3.5.30", - "packageName": "@vue/runtime-core", - "hash": "sha512-e0Z+8PQsUTdwV8TtEsLzUM7SzC7lQwYKePydb7K2ZnmS6jjND+WJXkmmfh/swYzRyfP1EY3fpdesyYoymCzYfg==" - } - }, - "npm:@vue/runtime-dom": { - "type": "npm", - "name": "npm:@vue/runtime-dom", - "data": { - "version": "3.5.30", - "packageName": "@vue/runtime-dom", - "hash": "sha512-2UIGakjU4WSQ0T4iwDEW0W7vQj6n7AFn7taqZ9Cvm0Q/RA2FFOziLESrDL4GmtI1wV3jXg5nMoJSYO66egDUBw==" - } - }, - "npm:@vue/server-renderer": { - "type": "npm", - "name": "npm:@vue/server-renderer", - "data": { - "version": "3.5.30", - "packageName": "@vue/server-renderer", - "hash": "sha512-v+R34icapydRwbZRD0sXwtHqrQJv38JuMB4JxbOxd8NEpGLny7cncMp53W9UH/zo4j8eDHjQ1dEJXwzFQknjtQ==" - } - }, - "npm:@vue/shared": { - "type": "npm", - "name": "npm:@vue/shared", - "data": { - "version": "3.5.30", - "packageName": "@vue/shared", - "hash": "sha512-YXgQ7JjaO18NeK2K9VTbDHaFy62WrObMa6XERNfNOkAhD1F1oDSf3ZJ7K6GqabZ0BvSDHajp8qfS5Sa2I9n8uQ==" - } - }, - "npm:@yarnpkg/lockfile": { - "type": "npm", - "name": "npm:@yarnpkg/lockfile", - "data": { - "version": "1.1.0", - "packageName": "@yarnpkg/lockfile", - "hash": "sha512-GpSwvyXOcOOlV70vbnzjj4fW5xW/FdUF6nQEt1ENy7m4ZCczi1+/buVUPAqmGfqznsORNFzUMjctTIp8a9tuCQ==" - } - }, - "npm:@yarnpkg/parsers": { - "type": "npm", - "name": "npm:@yarnpkg/parsers", - "data": { - "version": "3.0.2", - "packageName": "@yarnpkg/parsers", - "hash": "sha512-/HcYgtUSiJiot/XWGLOlGxPYUG65+/31V8oqk17vZLW1xlCoR4PampyePljOxY2n8/3jz9+tIFzICsyGujJZoA==" - } - }, - "npm:@zkochan/js-yaml": { - "type": "npm", - "name": "npm:@zkochan/js-yaml", - "data": { - "version": "0.0.7", - "packageName": "@zkochan/js-yaml", - "hash": "sha512-nrUSn7hzt7J6JWgWGz78ZYI8wj+gdIJdk0Ynjpp8l+trkn58Uqsf6RYrYkEK+3X18EX+TNdtJI0WxAtc+L84SQ==" - } - }, - "npm:abbrev": { - "type": "npm", - "name": "npm:abbrev", - "data": { - "version": "3.0.1", - "packageName": "abbrev", - "hash": "sha512-AO2ac6pjRB3SJmGJo+v5/aK6Omggp6fsLrs6wN9bd35ulu4cCwaAU9+7ZhXjeqHVkaHThLuzH0nZr0YpCDhygg==" - } - }, - "npm:abstract-logging": { - "type": "npm", - "name": "npm:abstract-logging", - "data": { - "version": "2.0.1", - "packageName": "abstract-logging", - "hash": "sha512-2BjRTZxTPvheOvGbBslFSYOUkr+SjPtOnrLP33f+VIWLzezQpZcqVg7ja3L4dBXmzzgwT+a029jRx5PCi3JuiA==" - } - }, - "npm:accepts": { - "type": "npm", - "name": "npm:accepts", - "data": { - "version": "2.0.0", - "packageName": "accepts", - "hash": "sha512-5cvg6CtKwfgdmVqY1WIiXKc3Q1bkRqGLi+2W/6ao+6Y7gu/RCwRuAhGEzh5B4KlszSuTLgZYuqFqo5bImjNKng==" - } - }, - "npm:acorn-import-attributes": { - "type": "npm", - "name": "npm:acorn-import-attributes", - "data": { - "version": "1.9.5", - "packageName": "acorn-import-attributes", - "hash": "sha512-n02Vykv5uA3eHGM/Z2dQrcD56kL8TyDb2p1+0P83PClMnC/nc+anbQRhIOWnSq4Ke/KvDPrY3C9hDtC/A3eHnQ==" - } - }, - "npm:acorn-jsx": { - "type": "npm", - "name": "npm:acorn-jsx", - "data": { - "version": "5.3.2", - "packageName": "acorn-jsx", - "hash": "sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==" - } - }, - "npm:acorn-walk": { - "type": "npm", - "name": "npm:acorn-walk", - "data": { - "version": "8.3.2", - "packageName": "acorn-walk", - "hash": "sha512-cjkyv4OtNCIeqhHrfS81QWXoCBPExR/J62oyEqepVw8WaQeSqpW2uhuLPh1m9eWhDuOo/jUXVTlifvesOWp/4A==" - } - }, - "npm:acorn@8.14.0": { - "type": "npm", - "name": "npm:acorn@8.14.0", - "data": { - "version": "8.14.0", - "packageName": "acorn", - "hash": "sha512-cl669nCJTZBsL97OF4kUQm5g5hC2uihk0NxY3WENAC0TYdILVkAyHymAntgxGkl7K+t0cXIrH5siy5S4XkFycA==" - } - }, - "npm:acorn": { - "type": "npm", - "name": "npm:acorn", - "data": { - "version": "8.16.0", - "packageName": "acorn", - "hash": "sha512-UVJyE9MttOsBQIDKw1skb9nAwQuR5wuGD3+82K6JgJlm/Y+KI92oNsMNGZCYdDsVtRHSak0pcV5Dno5+4jh9sw==" - } - }, - "npm:agent-base@6.0.2": { - "type": "npm", - "name": "npm:agent-base@6.0.2", - "data": { - "version": "6.0.2", - "packageName": "agent-base", - "hash": "sha512-RZNwNclF7+MS/8bDg70amg32dyeZGZxiDuQmZxKLAlQjr3jGyLx+4Kkk58UO7D2QdgFIQCovuSuZESne6RG6XQ==" - } - }, - "npm:agent-base": { - "type": "npm", - "name": "npm:agent-base", - "data": { - "version": "7.1.4", - "packageName": "agent-base", - "hash": "sha512-MnA+YT8fwfJPgBx3m60MNqakm30XOkyIoH1y6huTQvC0PwZG7ki8NacLBcrPbNoo8vEZy7Jpuk7+jMO+CUovTQ==" - } - }, - "npm:ajv-formats": { - "type": "npm", - "name": "npm:ajv-formats", - "data": { - "version": "3.0.1", - "packageName": "ajv-formats", - "hash": "sha512-8iUql50EUR+uUcdRQ3HDqa6EVyo3docL8g5WJ3FNcWmu62IbkGUue/pEyLBW8VGKKucTPgqeks4fIU1DA4yowQ==" - } - }, - "npm:ajv": { - "type": "npm", - "name": "npm:ajv", - "data": { - "version": "6.14.0", - "packageName": "ajv", - "hash": "sha512-IWrosm/yrn43eiKqkfkHis7QioDleaXQHdDVPKg0FSwwd/DuvyX79TZnFOnYpB7dcsFAMmtFztZuXPDvSePkFw==" - } - }, - "npm:ajv@8.18.0": { - "type": "npm", - "name": "npm:ajv@8.18.0", - "data": { - "version": "8.18.0", - "packageName": "ajv", - "hash": "sha512-PlXPeEWMXMZ7sPYOHqmDyCJzcfNrUr3fGNKtezX14ykXOEIvyK81d+qydx89KY5O71FKMPaQ2vBfBFI5NHR63A==" - } - }, - "npm:ansi-colors": { - "type": "npm", - "name": "npm:ansi-colors", - "data": { - "version": "4.1.3", - "packageName": "ansi-colors", - "hash": "sha512-/6w/C21Pm1A7aZitlI5Ni/2J6FFQN8i1Cvz3kHABAAbw93v/NlvKdVOqz7CCWz/3iv/JplRSEEZ83XION15ovw==" - } - }, - "npm:ansi-regex@5.0.1": { - "type": "npm", - "name": "npm:ansi-regex@5.0.1", - "data": { - "version": "5.0.1", - "packageName": "ansi-regex", - "hash": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==" - } - }, - "npm:ansi-regex": { - "type": "npm", - "name": "npm:ansi-regex", - "data": { - "version": "6.2.2", - "packageName": "ansi-regex", - "hash": "sha512-Bq3SmSpyFHaWjPk8If9yc6svM8c56dB5BAtW4Qbw5jHTwwXXcTLoRMkpDJp6VL0XzlWaCHTXrkFURMYmD0sLqg==" - } - }, - "npm:ansi-styles@4.3.0": { - "type": "npm", - "name": "npm:ansi-styles@4.3.0", - "data": { - "version": "4.3.0", - "packageName": "ansi-styles", - "hash": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==" - } - }, - "npm:ansi-styles@5.2.0": { - "type": "npm", - "name": "npm:ansi-styles@5.2.0", - "data": { - "version": "5.2.0", - "packageName": "ansi-styles", - "hash": "sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA==" - } - }, - "npm:ansi-styles": { - "type": "npm", - "name": "npm:ansi-styles", - "data": { - "version": "6.2.3", - "packageName": "ansi-styles", - "hash": "sha512-4Dj6M28JB+oAH8kFkTLUo+a2jwOFkuqb3yucU0CANcRRUbxS0cP0nZYCGjcc3BNXwRIsUVmDGgzawme7zvJHvg==" - } - }, - "npm:ansis": { - "type": "npm", - "name": "npm:ansis", - "data": { - "version": "4.2.0", - "packageName": "ansis", - "hash": "sha512-HqZ5rWlFjGiV0tDm3UxxgNRqsOTniqoKZu0pIAfh7TZQMGuZK+hH0drySty0si0QXj1ieop4+SkSfPZBPPkHig==" - } - }, - "npm:argparse@1.0.10": { - "type": "npm", - "name": "npm:argparse@1.0.10", - "data": { - "version": "1.0.10", - "packageName": "argparse", - "hash": "sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==" - } - }, - "npm:argparse": { - "type": "npm", - "name": "npm:argparse", - "data": { - "version": "2.0.1", - "packageName": "argparse", - "hash": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==" - } - }, - "npm:args-tokenizer": { - "type": "npm", - "name": "npm:args-tokenizer", - "data": { - "version": "0.3.0", - "packageName": "args-tokenizer", - "hash": "sha512-xXAd7G2Mll5W8uo37GETpQ2VrE84M181Z7ugHFGQnJZ50M2mbOv0osSZ9VsSgPfJQ+LVG0prSi0th+ELMsno7Q==" - } - }, - "npm:array-buffer-byte-length": { - "type": "npm", - "name": "npm:array-buffer-byte-length", - "data": { - "version": "1.0.2", - "packageName": "array-buffer-byte-length", - "hash": "sha512-LHE+8BuR7RYGDKvnrmcuSq3tDcKv9OFEXQt/HpbZhY7V6h0zlUXutnAD82GiFx9rdieCMjkvtcsPqBwgUl1Iiw==" - } - }, - "npm:array-includes": { - "type": "npm", - "name": "npm:array-includes", - "data": { - "version": "3.1.9", - "packageName": "array-includes", - "hash": "sha512-FmeCCAenzH0KH381SPT5FZmiA/TmpndpcaShhfgEN9eCVjnFBqq3l1xrI42y8+PPLI6hypzou4GXw00WHmPBLQ==" - } - }, - "npm:array.prototype.findlast": { - "type": "npm", - "name": "npm:array.prototype.findlast", - "data": { - "version": "1.2.5", - "packageName": "array.prototype.findlast", - "hash": "sha512-CVvd6FHg1Z3POpBLxO6E6zr+rSKEQ9L6rZHAaY7lLfhKsWYUBBOuMs0e9o24oopj6H+geRCX0YJ+TJLBK2eHyQ==" - } - }, - "npm:array.prototype.flat": { - "type": "npm", - "name": "npm:array.prototype.flat", - "data": { - "version": "1.3.3", - "packageName": "array.prototype.flat", - "hash": "sha512-rwG/ja1neyLqCuGZ5YYrznA62D4mZXg0i1cIskIUKSiqF3Cje9/wXAls9B9s1Wa2fomMsIv8czB8jZcPmxCXFg==" - } - }, - "npm:array.prototype.flatmap": { - "type": "npm", - "name": "npm:array.prototype.flatmap", - "data": { - "version": "1.3.3", - "packageName": "array.prototype.flatmap", - "hash": "sha512-Y7Wt51eKJSyi80hFrJCePGGNo5ktJCslFuboqJsbf57CCPcm5zztluPlc4/aD8sWsKvlwatezpV4U1efk8kpjg==" - } - }, - "npm:array.prototype.tosorted": { - "type": "npm", - "name": "npm:array.prototype.tosorted", - "data": { - "version": "1.1.4", - "packageName": "array.prototype.tosorted", - "hash": "sha512-p6Fx8B7b7ZhL/gmUsAy0D15WhvDccw3mnGNbZpi3pmeJdxtWsj2jEaI4Y6oo3XiHfzuSgPwKc04MYt6KgvC/wA==" - } - }, - "npm:arraybuffer.prototype.slice": { - "type": "npm", - "name": "npm:arraybuffer.prototype.slice", - "data": { - "version": "1.0.4", - "packageName": "arraybuffer.prototype.slice", - "hash": "sha512-BNoCY6SXXPQ7gF2opIP4GBE+Xw7U+pHMYKuzjgCN3GwiaIR09UUeKfheyIry77QtrCBlC0KK0q5/TER/tYh3PQ==" - } - }, - "npm:ast-kit": { - "type": "npm", - "name": "npm:ast-kit", - "data": { - "version": "3.0.0-beta.1", - "packageName": "ast-kit", - "hash": "sha512-trmleAnZ2PxN/loHWVhhx1qeOHSRXq4TDsBBxq3GqeJitfk3+jTQ+v/C1km/KYq9M7wKqCewMh+/NAvVH7m+bw==" - } - }, - "npm:ast-types": { - "type": "npm", - "name": "npm:ast-types", - "data": { - "version": "0.13.4", - "packageName": "ast-types", - "hash": "sha512-x1FCFnFifvYDDzTaLII71vG5uvDwgtmDTEVWAxrgeiR8VjMONcCXJx7E+USjDtHlwFmt9MysbqgF9b9Vjr6w+w==" - } - }, - "npm:async-function": { - "type": "npm", - "name": "npm:async-function", - "data": { - "version": "1.0.0", - "packageName": "async-function", - "hash": "sha512-hsU18Ae8CDTR6Kgu9DYf0EbCr/a5iGL0rytQDobUcdpYOKokk8LEjVphnXkDkgpi0wYVsqrXuP0bZxJaTqdgoA==" - } - }, - "npm:async-sema": { - "type": "npm", - "name": "npm:async-sema", - "data": { - "version": "3.1.1", - "packageName": "async-sema", - "hash": "sha512-tLRNUXati5MFePdAk8dw7Qt7DpxPB60ofAgn8WRhW6a2rcimZnYBP9oxHiv0OHy+Wz7kPMG+t4LGdt31+4EmGg==" - } - }, - "npm:async": { - "type": "npm", - "name": "npm:async", - "data": { - "version": "3.2.6", - "packageName": "async", - "hash": "sha512-htCUDlxyyCLMgaM3xXg0C0LW2xqfuQ6p05pCEIsXuyQ+a1koYKTuBMzRNwmybfLgvJDMd0r1LTn4+E0Ti6C2AA==" - } - }, - "npm:asynckit": { - "type": "npm", - "name": "npm:asynckit", - "data": { - "version": "0.4.0", - "packageName": "asynckit", - "hash": "sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q==" - } - }, - "npm:atomic-sleep": { - "type": "npm", - "name": "npm:atomic-sleep", - "data": { - "version": "1.0.0", - "packageName": "atomic-sleep", - "hash": "sha512-kNOjDqAh7px0XWNI+4QbzoiR/nTkHAWNud2uvnJquD1/x5a7EQZMJT0AczqK0Qn67oY/TTQ1LbUKajZpp3I9tQ==" - } - }, - "npm:attributes-parser": { - "type": "npm", - "name": "npm:attributes-parser", - "data": { - "version": "2.2.3", - "packageName": "attributes-parser", - "hash": "sha512-zjOUWt95la8AdUO+kP1GBOonWrV5jy9NjJP+z9tva/DSA6FIzGKcN/gk3tdqQf/pOeB8dkyd3FCPrjhELMmrkg==" - } - }, - "npm:automad-prism-themes": { - "type": "npm", - "name": "npm:automad-prism-themes", - "data": { - "version": "0.3.7", - "packageName": "automad-prism-themes", - "hash": "sha512-iTe1K6OCNJqilDapONlBQrbmQZO1u7JiJbEAJxfWUs0rGYxwyvpFmEiQ1TgZ0CmhYAYRtM1/ZT6GXbPeyw/XPg==" - } - }, - "npm:autoprefixer": { - "type": "npm", - "name": "npm:autoprefixer", - "data": { - "version": "10.4.27", - "packageName": "autoprefixer", - "hash": "sha512-NP9APE+tO+LuJGn7/9+cohklunJsXWiaWEfV3si4Gi/XHDwVNgkwr1J3RQYFIvPy76GmJ9/bW8vyoU1LcxwKHA==" - } - }, - "npm:available-typed-arrays": { - "type": "npm", - "name": "npm:available-typed-arrays", - "data": { - "version": "1.0.7", - "packageName": "available-typed-arrays", - "hash": "sha512-wvUjBtSGN7+7SjNpq/9M2Tg350UZD3q62IFZLbRAR1bSMlCo1ZaeW+BJ+D090e4hIIZLBcTDWe4Mh4jvUDajzQ==" - } - }, - "npm:avvio": { - "type": "npm", - "name": "npm:avvio", - "data": { - "version": "9.2.0", - "packageName": "avvio", - "hash": "sha512-2t/sy01ArdHHE0vRH5Hsay+RtCZt3dLPji7W7/MMOCEgze5b7SNDC4j5H6FnVgPkI1MTNFGzHdHrVXDDl7QSSQ==" - } - }, - "npm:aws-cdk-lib": { - "type": "npm", - "name": "npm:aws-cdk-lib", - "data": { - "version": "2.244.0", - "packageName": "aws-cdk-lib", - "hash": "sha512-j5FVeZv5W+v6j6OnW8RjoN04T+8pYvDJJV7yXhhj4IiGDKPgMH3fflQLQXJousd2QQk+nSAjghDVJcrZ4GFyGA==" - } - }, - "npm:aws-cdk": { - "type": "npm", - "name": "npm:aws-cdk", - "data": { - "version": "2.1112.0", - "packageName": "aws-cdk", - "hash": "sha512-IYUbsd9tpBQRqEO2evWsG+p2ZNa6wG5/sJvmWaqo45V1ep8BW+mrf+jEpFLD9uDPXqRA57EZGVGils7QLbOhNA==" - } - }, - "npm:aws-ssl-profiles": { - "type": "npm", - "name": "npm:aws-ssl-profiles", - "data": { - "version": "1.1.2", - "packageName": "aws-ssl-profiles", - "hash": "sha512-NZKeq9AfyQvEeNlN0zSYAaWrmBffJh3IELMZfRpJVWgrpEbtEpnjvzqBPf+mxoI287JohRDoa+/nsfqqiZmF6g==" - } - }, - "npm:axios": { - "type": "npm", - "name": "npm:axios", - "data": { - "version": "1.13.6", - "packageName": "axios", - "hash": "sha512-ChTCHMouEe2kn713WHbQGcuYrr6fXTBiu460OTwWrWob16g1bXn4vtz07Ope7ewMozJAnEquLk5lWQWtBig9DQ==" - } - }, - "npm:b4a": { - "type": "npm", - "name": "npm:b4a", - "data": { - "version": "1.7.3", - "packageName": "b4a", - "hash": "sha512-5Q2mfq2WfGuFp3uS//0s6baOJLMoVduPYVeNmDYxu5OUA1/cBfvr2RIS7vi62LdNj/urk1hfmj867I3qt6uZ7Q==" - } - }, - "npm:babel-plugin-jsx-dom-expressions": { - "type": "npm", - "name": "npm:babel-plugin-jsx-dom-expressions", - "data": { - "version": "0.40.3", - "packageName": "babel-plugin-jsx-dom-expressions", - "hash": "sha512-5HOwwt0BYiv/zxl7j8Pf2bGL6rDXfV6nUhLs8ygBX+EFJXzBPHM/euj9j/6deMZ6wa52Wb2PBaAV5U/jKwIY1w==" - } - }, - "npm:babel-plugin-module-resolver": { - "type": "npm", - "name": "npm:babel-plugin-module-resolver", - "data": { - "version": "5.0.2", - "packageName": "babel-plugin-module-resolver", - "hash": "sha512-9KtaCazHee2xc0ibfqsDeamwDps6FZNo5S0Q81dUqEuFzVwPhcT4J5jOqIVvgCA3Q/wO9hKYxN/Ds3tIsp5ygg==" - } - }, - "npm:babel-preset-solid": { - "type": "npm", - "name": "npm:babel-preset-solid", - "data": { - "version": "1.9.10", - "packageName": "babel-preset-solid", - "hash": "sha512-HCelrgua/Y+kqO8RyL04JBWS/cVdrtUv/h45GntgQY+cJl4eBcKkCDV3TdMjtKx1nXwRaR9QXslM/Npm1dxdZQ==" - } - }, - "npm:balanced-match": { - "type": "npm", - "name": "npm:balanced-match", - "data": { - "version": "1.0.2", - "packageName": "balanced-match", - "hash": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==" - } - }, - "npm:balanced-match@4.0.2": { - "type": "npm", - "name": "npm:balanced-match@4.0.2", - "data": { - "version": "4.0.2", - "packageName": "balanced-match", - "hash": "sha512-x0K50QvKQ97fdEz2kPehIerj+YTeptKF9hyYkKf6egnwmMWAkADiO0QCzSp0R5xN8FTZgYaBfSaue46Ej62nMg==" - } - }, - "npm:bare-events": { - "type": "npm", - "name": "npm:bare-events", - "data": { - "version": "2.8.0", - "packageName": "bare-events", - "hash": "sha512-AOhh6Bg5QmFIXdViHbMc2tLDsBIRxdkIaIddPslJF9Z5De3APBScuqGP2uThXnIpqFrgoxMNC6km7uXNIMLHXA==" - } - }, - "npm:bare-fs": { - "type": "npm", - "name": "npm:bare-fs", - "data": { - "version": "4.4.11", - "packageName": "bare-fs", - "hash": "sha512-Bejmm9zRMvMTRoHS+2adgmXw1ANZnCNx+B5dgZpGwlP1E3x6Yuxea8RToddHUbWtVV0iUMWqsgZr8+jcgUI2SA==" - } - }, - "npm:bare-os": { - "type": "npm", - "name": "npm:bare-os", - "data": { - "version": "3.6.2", - "packageName": "bare-os", - "hash": "sha512-T+V1+1srU2qYNBmJCXZkUY5vQ0B4FSlL3QDROnKQYOqeiQR8UbjNHlPa+TIbM4cuidiN9GaTaOZgSEgsvPbh5A==" - } - }, - "npm:bare-path": { - "type": "npm", - "name": "npm:bare-path", - "data": { - "version": "3.0.0", - "packageName": "bare-path", - "hash": "sha512-tyfW2cQcB5NN8Saijrhqn0Zh7AnFNsnczRcuWODH0eYAXBsJ5gVxAUuNr7tsHSC6IZ77cA0SitzT+s47kot8Mw==" - } - }, - "npm:bare-stream": { - "type": "npm", - "name": "npm:bare-stream", - "data": { - "version": "2.7.0", - "packageName": "bare-stream", - "hash": "sha512-oyXQNicV1y8nc2aKffH+BUHFRXmx6VrPzlnaEvMhram0nPBrKcEdcyBg5r08D0i8VxngHFAiVyn1QKXpSG0B8A==" - } - }, - "npm:bare-url": { - "type": "npm", - "name": "npm:bare-url", - "data": { - "version": "2.3.0", - "packageName": "bare-url", - "hash": "sha512-c+RCqMSZbkz97Mw1LWR0gcOqwK82oyYKfLoHJ8k13ybi1+I80ffdDzUy0TdAburdrR/kI0/VuN8YgEnJqX+Nyw==" - } - }, - "npm:base64-js": { - "type": "npm", - "name": "npm:base64-js", - "data": { - "version": "1.5.1", - "packageName": "base64-js", - "hash": "sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==" - } - }, - "npm:baseline-browser-mapping": { - "type": "npm", - "name": "npm:baseline-browser-mapping", - "data": { - "version": "2.9.7", - "packageName": "baseline-browser-mapping", - "hash": "sha512-k9xFKplee6KIio3IDbwj+uaCLpqzOwakOgmqzPezM0sFJlFKcg30vk2wOiAJtkTSfx0SSQDSe8q+mWA/fSH5Zg==" - } - }, - "npm:basic-auth": { - "type": "npm", - "name": "npm:basic-auth", - "data": { - "version": "2.0.1", - "packageName": "basic-auth", - "hash": "sha512-NF+epuEdnUYVlGuhaxbbq+dvJttwLnGY+YixlXlME5KpQ5W3CnXA5cVTneY3SPbPDRkcjMbifrwmFYcClgOZeg==" - } - }, - "npm:basic-ftp": { - "type": "npm", - "name": "npm:basic-ftp", - "data": { - "version": "5.0.5", - "packageName": "basic-ftp", - "hash": "sha512-4Bcg1P8xhUuqcii/S0Z9wiHIrQVPMermM1any+MX5GeGD7faD3/msQUDGLol9wOcz4/jbg/WJnGqoJF6LiBdtg==" - } - }, - "npm:better-sqlite3": { - "type": "npm", - "name": "npm:better-sqlite3", - "data": { - "version": "12.8.0", - "packageName": "better-sqlite3", - "hash": "sha512-RxD2Vd96sQDjQr20kdP+F+dK/1OUNiVOl200vKBZY8u0vTwysfolF6Hq+3ZK2+h8My9YvZhHsF+RSGZW2VYrPQ==" - } - }, - "npm:bindings": { - "type": "npm", - "name": "npm:bindings", - "data": { - "version": "1.5.0", - "packageName": "bindings", - "hash": "sha512-p2q/t/mhvuOj/UeLlV6566GD/guowlr0hHxClI0W9m7MWYkL1F0hLo+0Aexs9HSPCtR1SXQ0TD3MMKrXZajbiQ==" - } - }, - "npm:birpc": { - "type": "npm", - "name": "npm:birpc", - "data": { - "version": "4.0.0", - "packageName": "birpc", - "hash": "sha512-LShSxJP0KTmd101b6DRyGBj57LZxSDYWKitQNW/mi8GRMvZb078Uf9+pveax1DrVL89vm7mWe+TovdI/UDOuPw==" - } - }, - "npm:bl": { - "type": "npm", - "name": "npm:bl", - "data": { - "version": "4.1.0", - "packageName": "bl", - "hash": "sha512-1W07cM9gS6DcLperZfFSj+bWLtaPGSOHWhPiGzXmvVJbRLdG82sH/Kn8EtW1VqWVA54AKf2h5k5BbnIbwF3h6w==" - } - }, - "npm:blake3-wasm": { - "type": "npm", - "name": "npm:blake3-wasm", - "data": { - "version": "2.1.5", - "packageName": "blake3-wasm", - "hash": "sha512-F1+K8EbfOZE49dtoPtmxUQrpXaBIl3ICvasLh+nJta0xkz+9kF/7uet9fLnwKqhDrmj6g+6K3Tw9yQPUg2ka5g==" - } - }, - "npm:body-parser": { - "type": "npm", - "name": "npm:body-parser", - "data": { - "version": "2.2.1", - "packageName": "body-parser", - "hash": "sha512-nfDwkulwiZYQIGwxdy0RUmowMhKcFVcYXUU7m4QlKYim1rUtg83xm2yjZ40QjDuc291AJjjeSc9b++AWHSgSHw==" - } - }, - "npm:boolbase": { - "type": "npm", - "name": "npm:boolbase", - "data": { - "version": "1.0.0", - "packageName": "boolbase", - "hash": "sha512-JZOSA7Mo9sNGB8+UjSgzdLtokWAky1zbztM3WRLCbZ70/3cTANmQmOdR7y2g+J0e2WXywy1yS468tY+IruqEww==" - } - }, - "npm:brace-expansion@1.1.12": { - "type": "npm", - "name": "npm:brace-expansion@1.1.12", - "data": { - "version": "1.1.12", - "packageName": "brace-expansion", - "hash": "sha512-9T9UjW3r0UW5c1Q7GTwllptXwhvYmEzFhzMfZ9H7FQWt+uZePjZPjBP/W1ZEyZ1twGWom5/56TF4lPcqjnDHcg==" - } - }, - "npm:brace-expansion@2.0.2": { - "type": "npm", - "name": "npm:brace-expansion@2.0.2", - "data": { - "version": "2.0.2", - "packageName": "brace-expansion", - "hash": "sha512-Jt0vHyM+jmUBqojB7E1NIYadt0vI0Qxjxd2TErW94wDz+E2LAm5vKMXXwg6ZZBTHPuUlDgQHKXvjGBdfcF1ZDQ==" - } - }, - "npm:brace-expansion": { - "type": "npm", - "name": "npm:brace-expansion", - "data": { - "version": "5.0.2", - "packageName": "brace-expansion", - "hash": "sha512-Pdk8c9poy+YhOgVWw1JNN22/HcivgKWwpxKq04M/jTmHyCZn12WPJebZxdjSa5TmBqISrUSgNYU3eRORljfCCw==" - } - }, - "npm:braces": { - "type": "npm", - "name": "npm:braces", - "data": { - "version": "3.0.3", - "packageName": "braces", - "hash": "sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA==" - } - }, - "npm:browserless": { - "type": "npm", - "name": "npm:browserless", - "data": { - "version": "10.12.5", - "packageName": "browserless", - "hash": "sha512-7FZIdkSDYfIIcLyGOnqVYwLURVArQzhZQ5KrLXJFb9Hnc0Hfg11LI3Rak7K6WD6PGw45SzeJRxPc7np3bSLWnw==" - } - }, - "npm:browserslist": { - "type": "npm", - "name": "npm:browserslist", - "data": { - "version": "4.28.1", - "packageName": "browserslist", - "hash": "sha512-ZC5Bd0LgJXgwGqUknZY/vkUQ04r8NXnJZ3yYi4vDmSiZmC/pdSN0NbNRPxZpbtO4uAfDUAFffO8IZoM3Gj8IkA==" - } - }, - "npm:buffer-crc32": { - "type": "npm", - "name": "npm:buffer-crc32", - "data": { - "version": "0.2.13", - "packageName": "buffer-crc32", - "hash": "sha512-VO9Ht/+p3SN7SKWqcrgEzjGbRSJYTx+Q1pTQC0wrWqHx0vpJraQ6GtHx8tvcg1rlK1byhU5gccxgOgj7B0TDkQ==" - } - }, - "npm:buffer-from": { - "type": "npm", - "name": "npm:buffer-from", - "data": { - "version": "1.1.2", - "packageName": "buffer-from", - "hash": "sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ==" - } - }, - "npm:buffer": { - "type": "npm", - "name": "npm:buffer", - "data": { - "version": "5.7.1", - "packageName": "buffer", - "hash": "sha512-EHcyIPBQ4BSGlvjB16k5KgAJ27CIsHY/2JBmCRReo48y9rQ3MaUzWX3KVlBa4U7MyX02HdVj0K7C3WaB3ju7FQ==" - } - }, - "npm:bumpp": { - "type": "npm", - "name": "npm:bumpp", - "data": { - "version": "11.0.1", - "packageName": "bumpp", - "hash": "sha512-X0ti27I/ewsx/u0EJSyl0IZWWOE95q+wIpAG/60kc5gqMNR4a23YJdd3lL7JsBN11TgLbCM4KpfGMuFfdigb4g==" - } - }, - "npm:bytes": { - "type": "npm", - "name": "npm:bytes", - "data": { - "version": "3.1.2", - "packageName": "bytes", - "hash": "sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg==" - } - }, - "npm:c12": { - "type": "npm", - "name": "npm:c12", - "data": { - "version": "3.1.0", - "packageName": "c12", - "hash": "sha512-uWoS8OU1MEIsOv8p/5a82c3H31LsWVR5qiyXVfBNOzfffjUWtPnhAb4BYI2uG2HfGmZmFjCtui5XNWaps+iFuw==" - } - }, - "npm:cac@6.7.14": { - "type": "npm", - "name": "npm:cac@6.7.14", - "data": { - "version": "6.7.14", - "packageName": "cac", - "hash": "sha512-b6Ilus+c3RrdDk+JhLKUAQfzzgLEPy6wcXqS7f/xe1EETvsDP6GORG7SFuOs6cID5YkqchW/LXZbX5bc8j7ZcQ==" - } - }, - "npm:cac": { - "type": "npm", - "name": "npm:cac", - "data": { - "version": "7.0.0", - "packageName": "cac", - "hash": "sha512-tixWYgm5ZoOD+3g6UTea91eow5z6AAHaho3g0V9CNSNb45gM8SmflpAc+GRd1InC4AqN/07Unrgp56Y94N9hJQ==" - } - }, - "npm:cacache": { - "type": "npm", - "name": "npm:cacache", - "data": { - "version": "19.0.1", - "packageName": "cacache", - "hash": "sha512-hdsUxulXCi5STId78vRVYEtDAjq99ICAUktLTeTYsLoTE6Z8dS0c8pWNCxwdrk9YfJeobDZc2Y186hD/5ZQgFQ==" - } - }, - "npm:cacheable-lookup": { - "type": "npm", - "name": "npm:cacheable-lookup", - "data": { - "version": "5.0.4", - "packageName": "cacheable-lookup", - "hash": "sha512-2/kNscPhpcxrOigMZzbiWF7dz8ilhb/nIHU3EyZiXWXpeq/au8qJ8VhdftMkty3n7Gj6HIGalQG8oiBNB3AJgA==" - } - }, - "npm:cacheable-request": { - "type": "npm", - "name": "npm:cacheable-request", - "data": { - "version": "7.0.4", - "packageName": "cacheable-request", - "hash": "sha512-v+p6ongsrp0yTGbJXjgxPow2+DL93DASP4kXCDKb8/bwRtt9OEF3whggkkDkGNzgcWy2XaF4a8nZglC7uElscg==" - } - }, - "npm:call-bind-apply-helpers": { - "type": "npm", - "name": "npm:call-bind-apply-helpers", - "data": { - "version": "1.0.2", - "packageName": "call-bind-apply-helpers", - "hash": "sha512-Sp1ablJ0ivDkSzjcaJdxEunN5/XvksFJ2sMBFfq6x0ryhQV/2b/KwFe21cMpmHtPOSij8K99/wSfoEuTObmuMQ==" - } - }, - "npm:call-bind": { - "type": "npm", - "name": "npm:call-bind", - "data": { - "version": "1.0.8", - "packageName": "call-bind", - "hash": "sha512-oKlSFMcMwpUg2ednkhQ454wfWiU/ul3CkJe/PEHcTKuiX6RpbehUiFMXu13HalGZxfUwCQzZG747YXBn1im9ww==" - } - }, - "npm:call-bound": { - "type": "npm", - "name": "npm:call-bound", - "data": { - "version": "1.0.4", - "packageName": "call-bound", - "hash": "sha512-+ys997U96po4Kx/ABpBCqhA9EuxJaQWDQg7295H4hBphv3IZg0boBKuwYpt4YXp6MZ5AmZQnU/tyMTlRpaSejg==" - } - }, - "npm:callsites": { - "type": "npm", - "name": "npm:callsites", - "data": { - "version": "3.1.0", - "packageName": "callsites", - "hash": "sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==" - } - }, - "npm:camelcase-css": { - "type": "npm", - "name": "npm:camelcase-css", - "data": { - "version": "2.0.1", - "packageName": "camelcase-css", - "hash": "sha512-QOSvevhslijgYwRx6Rv7zKdMF8lbRmx+uQGx2+vDc+KI/eBnsy9kit5aj23AgGu3pa4t9AgwbnXWqS+iOY+2aA==" - } - }, - "npm:caniuse-api": { - "type": "npm", - "name": "npm:caniuse-api", - "data": { - "version": "3.0.0", - "packageName": "caniuse-api", - "hash": "sha512-bsTwuIg/BZZK/vreVTYYbSWoe2F+71P7K5QGEX+pT250DZbfU1MQ5prOKpPR+LL6uWKK3KMwMCAS74QB3Um1uw==" - } - }, - "npm:caniuse-lite": { - "type": "npm", - "name": "npm:caniuse-lite", - "data": { - "version": "1.0.30001775", - "packageName": "caniuse-lite", - "hash": "sha512-s3Qv7Lht9zbVKE9XoTyRG6wVDCKdtOFIjBGg3+Yhn6JaytuNKPIjBMTMIY1AnOH3seL5mvF+x33oGAyK3hVt3A==" - } - }, - "npm:cdk": { - "type": "npm", - "name": "npm:cdk", - "data": { - "version": "2.1112.0", - "packageName": "cdk", - "hash": "sha512-a9asUnTapvEldOntOH7GZISwmYcr12HJas4v7183hWX0iZ8/Cb31IyPr9L5sz2tP6a9OugA45AXkjFgTCjH2+g==" - } - }, - "npm:chai": { - "type": "npm", - "name": "npm:chai", - "data": { - "version": "6.2.2", - "packageName": "chai", - "hash": "sha512-NUPRluOfOiTKBKvWPtSD4PhFvWCqOi0BGStNWs57X9js7XGTprSmFoz5F0tWhR4WPjNeR9jXqdC7/UpSJTnlRg==" - } - }, - "npm:chalk": { - "type": "npm", - "name": "npm:chalk", - "data": { - "version": "4.1.2", - "packageName": "chalk", - "hash": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==" - } - }, - "npm:character-entities": { - "type": "npm", - "name": "npm:character-entities", - "data": { - "version": "2.0.2", - "packageName": "character-entities", - "hash": "sha512-shx7oQ0Awen/BRIdkjkvz54PnEEI/EjwXDSIZp86/KKdbafHh1Df/RYGBhn4hbe2+uKC9FnT5UCEdyPz3ai9hQ==" - } - }, - "npm:chardet": { - "type": "npm", - "name": "npm:chardet", - "data": { - "version": "2.1.1", - "packageName": "chardet", - "hash": "sha512-PsezH1rqdV9VvyNhxxOW32/d75r01NY7TQCmOqomRo15ZSOKbpTFVsfjghxo6JloQUCGnH4k1LGu0R4yCLlWQQ==" - } - }, - "npm:chevrotain": { - "type": "npm", - "name": "npm:chevrotain", - "data": { - "version": "10.5.0", - "packageName": "chevrotain", - "hash": "sha512-Pkv5rBY3+CsHOYfV5g/Vs5JY9WTHHDEKOlohI2XeygaZhUeqhAlldZ8Hz9cRmxu709bvS08YzxHdTPHhffc13A==" - } - }, - "npm:chokidar": { - "type": "npm", - "name": "npm:chokidar", - "data": { - "version": "4.0.3", - "packageName": "chokidar", - "hash": "sha512-Qgzu8kfBvo+cA4962jnP1KkS6Dop5NS6g7R5LFYJr4b8Ub94PPQXUksCw9PvXoeXPRRddRNC5C1JQUR2SMGtnA==" - } - }, - "npm:chownr": { - "type": "npm", - "name": "npm:chownr", - "data": { - "version": "1.1.4", - "packageName": "chownr", - "hash": "sha512-jJ0bqzaylmJtVnNgzTeSOs8DPavpbYgEr/b0YL8/2GO3xJEhInFmhKMUnEJQjZumK7KXGFhUy89PrsJWlakBVg==" - } - }, - "npm:chownr@3.0.0": { - "type": "npm", - "name": "npm:chownr@3.0.0", - "data": { - "version": "3.0.0", - "packageName": "chownr", - "hash": "sha512-+IxzY9BZOQd/XuYPRmrvEVjF/nqj5kgT4kEq7VofrDoM1MxoRjEWkrCC3EtLi59TVawxTAn+orJwFQcrqEN1+g==" - } - }, - "npm:chromium-bidi": { - "type": "npm", - "name": "npm:chromium-bidi", - "data": { - "version": "14.0.0", - "packageName": "chromium-bidi", - "hash": "sha512-9gYlLtS6tStdRWzrtXaTMnqcM4dudNegMXJxkR0I/CXObHalYeYcAMPrL19eroNZHtJ8DQmu1E+ZNOYu/IXMXw==" - } - }, - "npm:citty@0.1.6": { - "type": "npm", - "name": "npm:citty@0.1.6", - "data": { - "version": "0.1.6", - "packageName": "citty", - "hash": "sha512-tskPPKEs8D2KPafUypv2gxwJP8h/OaJmC82QQGGDQcHvXX43xF2VDACcJVmZ0EuSxkpO9Kc4MlrA3q0+FG58AQ==" - } - }, - "npm:citty": { - "type": "npm", - "name": "npm:citty", - "data": { - "version": "0.2.1", - "packageName": "citty", - "hash": "sha512-kEV95lFBhQgtogAPlQfJJ0WGVSokvLr/UEoFPiKKOXF7pl98HfUVUD0ejsuTCld/9xH9vogSywZ5KqHzXrZpqg==" - } - }, - "npm:class-variance-authority": { - "type": "npm", - "name": "npm:class-variance-authority", - "data": { - "version": "0.7.1", - "packageName": "class-variance-authority", - "hash": "sha512-Ka+9Trutv7G8M6WT6SeiRWz792K5qEqIGEGzXKhAE6xOWAY6pPH8U+9IY3oCMv6kqTmLsv7Xh/2w2RigkePMsg==" - } - }, - "npm:cli-cursor": { - "type": "npm", - "name": "npm:cli-cursor", - "data": { - "version": "3.1.0", - "packageName": "cli-cursor", - "hash": "sha512-I/zHAwsKf9FqGoXM4WWRACob9+SNukZTd94DWF57E4toouRulbCxcUh6RKUEOQlYTHJnzkPMySvPNaaSLNfLZw==" - } - }, - "npm:cli-spinners": { - "type": "npm", - "name": "npm:cli-spinners", - "data": { - "version": "2.6.1", - "packageName": "cli-spinners", - "hash": "sha512-x/5fWmGMnbKQAaNwN+UZlV79qBLM9JFnJuJ03gIi5whrob0xV0ofNVHy9DhwGdsMJQc2OKv0oGmLzvaqvAVv+g==" - } - }, - "npm:cli-width": { - "type": "npm", - "name": "npm:cli-width", - "data": { - "version": "4.1.0", - "packageName": "cli-width", - "hash": "sha512-ouuZd4/dm2Sw5Gmqy6bGyNNNe1qt9RpmxveLSO7KcgsTnU7RXfsw+/bukWGo1abgBiMAic068rclZsO4IWmmxQ==" - } - }, - "npm:cliui": { - "type": "npm", - "name": "npm:cliui", - "data": { - "version": "8.0.1", - "packageName": "cliui", - "hash": "sha512-BSeNnyus75C4//NQ9gQt1/csTXyo/8Sb+afLAkzAptFuMsod9HFokGNudZpi/oQV73hnVK+sR+5PVRMd+Dr7YQ==" - } - }, - "npm:clone-response": { - "type": "npm", - "name": "npm:clone-response", - "data": { - "version": "1.0.3", - "packageName": "clone-response", - "hash": "sha512-ROoL94jJH2dUVML2Y/5PEDNaSHgeOdSDicUyS7izcF63G6sTc/FTjLub4b8Il9S8S0beOfYt0TaA5qvFK+w0wA==" - } - }, - "npm:clone": { - "type": "npm", - "name": "npm:clone", - "data": { - "version": "1.0.4", - "packageName": "clone", - "hash": "sha512-JQHZ2QMW6l3aH/j6xCqQThY/9OH4D/9ls34cgkUBiEeocRTU04tHfKPBsUK1PqZCUQM7GiA0IIXJSuXHI64Kbg==" - } - }, - "npm:clsx": { - "type": "npm", - "name": "npm:clsx", - "data": { - "version": "2.1.1", - "packageName": "clsx", - "hash": "sha512-eYm0QWBtUrBWZWG0d386OGAw16Z995PiOVo2B7bjWSbHedGl5e0ZWaq65kOGgUSNesEIDkB9ISbTg/JK9dhCZA==" - } - }, - "npm:code-block-writer": { - "type": "npm", - "name": "npm:code-block-writer", - "data": { - "version": "13.0.3", - "packageName": "code-block-writer", - "hash": "sha512-Oofo0pq3IKnsFtuHqSF7TqBfr71aeyZDVJ0HpmqB7FBM2qEigL0iPONSCZSO9pE9dZTAxANe5XHG9Uy0YMv8cg==" - } - }, - "npm:color-convert": { - "type": "npm", - "name": "npm:color-convert", - "data": { - "version": "2.0.1", - "packageName": "color-convert", - "hash": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==" - } - }, - "npm:color-name": { - "type": "npm", - "name": "npm:color-name", - "data": { - "version": "1.1.4", - "packageName": "color-name", - "hash": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" - } - }, - "npm:color-string": { - "type": "npm", - "name": "npm:color-string", - "data": { - "version": "1.9.1", - "packageName": "color-string", - "hash": "sha512-shrVawQFojnZv6xM40anx4CkoDP+fZsw/ZerEMsW/pyzsRbElpsL/DBVW7q3ExxwusdNXI3lXpuhEZkzs8p5Eg==" - } - }, - "npm:color": { - "type": "npm", - "name": "npm:color", - "data": { - "version": "4.2.3", - "packageName": "color", - "hash": "sha512-1rXeuUUiGGrykh+CeBdu5Ie7OJwinCgQY0bc7GCRxy5xVHy+moaqkpL/jqQq0MtQOeYcrqEz4abc5f0KtU7W4A==" - } - }, - "npm:colord": { - "type": "npm", - "name": "npm:colord", - "data": { - "version": "2.9.3", - "packageName": "colord", - "hash": "sha512-jeC1axXpnb0/2nn/Y1LPuLdgXBLH7aDcHu4KEKfqw3CUhX7ZpfBSlPKyqXE6btIgEzfWtrX3/tyBCaCvXvMkOw==" - } - }, - "npm:colorette": { - "type": "npm", - "name": "npm:colorette", - "data": { - "version": "2.0.20", - "packageName": "colorette", - "hash": "sha512-IfEDxwoWIjkeXL1eXcDiow4UbKjhLdq6/EuSVR9GMN7KVH3r9gQ83e73hsz1Nd1T3ijd5xv1wcWRYO+D6kCI2w==" - } - }, - "npm:combined-stream": { - "type": "npm", - "name": "npm:combined-stream", - "data": { - "version": "1.0.8", - "packageName": "combined-stream", - "hash": "sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==" - } - }, - "npm:commander": { - "type": "npm", - "name": "npm:commander", - "data": { - "version": "7.2.0", - "packageName": "commander", - "hash": "sha512-QrWXB+ZQSVPmIWIhtEO9H+gwHaMGYiF5ChvoJ+K9ZGHG/sVsa6yiesAD1GC/x46sET00Xlwo1u49RVVVzvcSkw==" - } - }, - "npm:component-register": { - "type": "npm", - "name": "npm:component-register", - "data": { - "version": "0.8.8", - "packageName": "component-register", - "hash": "sha512-djhwcxjY+X9dacaYUEOkOm7tda8uOEDiMDigWysu3xv54M8o6XDlsjR1qt5Y8QLGiKg51fqXFIR2HUTmt9ys0Q==" - } - }, - "npm:concat-map": { - "type": "npm", - "name": "npm:concat-map", - "data": { - "version": "0.0.1", - "packageName": "concat-map", - "hash": "sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==" - } - }, - "npm:confbox@0.1.8": { - "type": "npm", - "name": "npm:confbox@0.1.8", - "data": { - "version": "0.1.8", - "packageName": "confbox", - "hash": "sha512-RMtmw0iFkeR4YV+fUOSucriAQNb9g8zFR52MWCtl+cCZOFRNL6zeB395vPzFhEjjn4fMxXudmELnl/KF/WrK6w==" - } - }, - "npm:confbox": { - "type": "npm", - "name": "npm:confbox", - "data": { - "version": "0.2.2", - "packageName": "confbox", - "hash": "sha512-1NB+BKqhtNipMsov4xI/NnhCKp9XG9NamYp5PVm9klAT0fsrNPjaFICsCFhNhwZJKNh7zB/3q8qXz0E9oaMNtQ==" - } - }, - "npm:consola": { - "type": "npm", - "name": "npm:consola", - "data": { - "version": "3.4.2", - "packageName": "consola", - "hash": "sha512-5IKcdX0nnYavi6G7TtOhwkYzyjfJlatbjMjuLSfE2kYT5pMDOilZ4OvMhi637CcDICTmz3wARPoyhqyX1Y+XvA==" - } - }, - "npm:constructs": { - "type": "npm", - "name": "npm:constructs", - "data": { - "version": "10.5.1", - "packageName": "constructs", - "hash": "sha512-f/TfFXiS3G/yVIXDjOQn9oTlyu9Wo7Fxyjj7lb8r92iO81jR2uST+9MstxZTmDGx/CgIbxCXkFXgupnLTNxQZg==" - } - }, - "npm:content-disposition": { - "type": "npm", - "name": "npm:content-disposition", - "data": { - "version": "1.0.1", - "packageName": "content-disposition", - "hash": "sha512-oIXISMynqSqm241k6kcQ5UwttDILMK4BiurCfGEREw6+X9jkkpEe5T9FZaApyLGGOnFuyMWZpdolTXMtvEJ08Q==" - } - }, - "npm:content-type": { - "type": "npm", - "name": "npm:content-type", - "data": { - "version": "1.0.5", - "packageName": "content-type", - "hash": "sha512-nTjqfcBFEipKdXCv4YDQWCfmcLZKm81ldF0pAopTvyrFGVbcR6P/VAAd5G7N+0tTr8QqiU0tFadD6FK4NtJwOA==" - } - }, - "npm:convert-route": { - "type": "npm", - "name": "npm:convert-route", - "data": { - "version": "0.1.2", - "packageName": "convert-route", - "hash": "sha512-KSp+HiFELyZGWsrderXM0EjVo8Hj2eDT2LvJXNz9vnK6BVgEvlhREkAYz1oV6bx3ulhXvOtuRyE94BovdPigCQ==" - } - }, - "npm:convert-source-map": { - "type": "npm", - "name": "npm:convert-source-map", - "data": { - "version": "2.0.0", - "packageName": "convert-source-map", - "hash": "sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg==" - } - }, - "npm:cookie-es": { - "type": "npm", - "name": "npm:cookie-es", - "data": { - "version": "1.2.2", - "packageName": "cookie-es", - "hash": "sha512-+W7VmiVINB+ywl1HGXJXmrqkOhpKrIiVZV6tQuV54ZyQC7MMuBt81Vc336GMLoHBq5hV/F9eXgt5Mnx0Rha5Fg==" - } - }, - "npm:cookie-signature": { - "type": "npm", - "name": "npm:cookie-signature", - "data": { - "version": "1.2.2", - "packageName": "cookie-signature", - "hash": "sha512-D76uU73ulSXrD1UXF4KE2TMxVVwhsnCgfAyTg9k8P6KGZjlXKrOLe4dJQKI3Bxi5wjesZoFXJWElNWBjPZMbhg==" - } - }, - "npm:cookie": { - "type": "npm", - "name": "npm:cookie", - "data": { - "version": "0.7.2", - "packageName": "cookie", - "hash": "sha512-yki5XnKuf750l50uGTllt6kKILY4nQ1eNIQatoXEByZ5dWgnKqbnqmTrBE5B4N7lrMJKQ2ytWMiTO2o0v6Ew/w==" - } - }, - "npm:cookie@1.1.1": { - "type": "npm", - "name": "npm:cookie@1.1.1", - "data": { - "version": "1.1.1", - "packageName": "cookie", - "hash": "sha512-ei8Aos7ja0weRpFzJnEA9UHJ/7XQmqglbRwnf2ATjcB9Wq874VKH9kfjjirM6UhU2/E5fFYadylyhFldcqSidQ==" - } - }, - "npm:corser": { - "type": "npm", - "name": "npm:corser", - "data": { - "version": "2.0.1", - "packageName": "corser", - "hash": "sha512-utCYNzRSQIZNPIcGZdQc92UVJYAhtGAteCFg0yRaFm8f0P+CPtyGyHXJcGXnffjCybUCEx3FQ2G7U3/o9eIkVQ==" - } - }, - "npm:cosmiconfig": { - "type": "npm", - "name": "npm:cosmiconfig", - "data": { - "version": "9.0.0", - "packageName": "cosmiconfig", - "hash": "sha512-itvL5h8RETACmOTFc4UfIyB2RfEHi71Ax6E/PivVxq9NseKbOWpeyHEOIbmAw1rs8Ak0VursQNww7lf7YtUwzg==" - } - }, - "npm:cross-spawn": { - "type": "npm", - "name": "npm:cross-spawn", - "data": { - "version": "7.0.6", - "packageName": "cross-spawn", - "hash": "sha512-uV2QOWP2nWzsy2aMp8aRibhi9dlzF5Hgh5SHaB9OiTGEyDTiJJyx0uy51QXdyWbtAHNua4XJzUKca3OzKUd3vA==" - } - }, - "npm:crossws": { - "type": "npm", - "name": "npm:crossws", - "data": { - "version": "0.3.5", - "packageName": "crossws", - "hash": "sha512-ojKiDvcmByhwa8YYqbQI/hg7MEU0NC03+pSdEq4ZUnZR9xXpwk7E43SMNGkn+JxJGPFtNvQ48+vV2p+P1ml5PA==" - } - }, - "npm:css-declaration-sorter": { - "type": "npm", - "name": "npm:css-declaration-sorter", - "data": { - "version": "6.4.1", - "packageName": "css-declaration-sorter", - "hash": "sha512-rtdthzxKuyq6IzqX6jEcIzQF/YqccluefyCYheovBOLhFT/drQA9zj/UbRAa9J7C0o6EG6u3E6g+vKkay7/k3g==" - } - }, - "npm:css-select": { - "type": "npm", - "name": "npm:css-select", - "data": { - "version": "4.3.0", - "packageName": "css-select", - "hash": "sha512-wPpOYtnsVontu2mODhA19JrqWxNsfdatRKd64kmpRbQgh1KtItko5sTnEpPdpSaJszTOhEMlF/RPz28qj4HqhQ==" - } - }, - "npm:css-tree": { - "type": "npm", - "name": "npm:css-tree", - "data": { - "version": "1.1.3", - "packageName": "css-tree", - "hash": "sha512-tRpdppF7TRazZrjJ6v3stzv93qxRcSsFmW6cX0Zm2NVKpxE1WV1HblnghVv9TreireHkqI/VDEsfolRF1p6y7Q==" - } - }, - "npm:css-what": { - "type": "npm", - "name": "npm:css-what", - "data": { - "version": "6.2.2", - "packageName": "css-what", - "hash": "sha512-u/O3vwbptzhMs3L1fQE82ZSLHQQfto5gyZzwteVIEyeaY5Fc7R4dapF/BvRoSYFeqfBk4m0V1Vafq5Pjv25wvA==" - } - }, - "npm:cssesc": { - "type": "npm", - "name": "npm:cssesc", - "data": { - "version": "3.0.0", - "packageName": "cssesc", - "hash": "sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg==" - } - }, - "npm:cssnano-preset-default": { - "type": "npm", - "name": "npm:cssnano-preset-default", - "data": { - "version": "5.2.14", - "packageName": "cssnano-preset-default", - "hash": "sha512-t0SFesj/ZV2OTylqQVOrFgEh5uanxbO6ZAdeCrNsUQ6fVuXwYTxJPNAGvGTxHbD68ldIJNec7PyYZDBrfDQ+6A==" - } - }, - "npm:cssnano-utils": { - "type": "npm", - "name": "npm:cssnano-utils", - "data": { - "version": "3.1.0", - "packageName": "cssnano-utils", - "hash": "sha512-JQNR19/YZhz4psLX/rQ9M83e3z2Wf/HdJbryzte4a3NSuafyp9w/I4U+hx5C2S9g41qlstH7DEWnZaaj83OuEA==" - } - }, - "npm:csso": { - "type": "npm", - "name": "npm:csso", - "data": { - "version": "4.2.0", - "packageName": "csso", - "hash": "sha512-wvlcdIbf6pwKEk7vHj8/Bkc0B4ylXZruLvOgs9doS5eOsOpuodOV2zJChSpkp+pRpYQLQMeF04nr3Z68Sta9jA==" - } - }, - "npm:csstype": { - "type": "npm", - "name": "npm:csstype", - "data": { - "version": "3.2.3", - "packageName": "csstype", - "hash": "sha512-z1HGKcYy2xA8AGQfwrn0PAy+PB7X/GSj3UVJW9qKyn43xWa+gl5nXmU4qqLMRzWVLFC8KusUX8T/0kCiOYpAIQ==" - } - }, - "npm:daisyui": { - "type": "npm", - "name": "npm:daisyui", - "data": { - "version": "5.5.19", - "packageName": "daisyui", - "hash": "sha512-pbFAkl1VCEh/MPCeclKL61I/MqRIFFhNU7yiXoDDRapXN4/qNCoMxeCCswyxEEhqL5eiTTfwHvucFtOE71C9sA==" - } - }, - "npm:data-uri-to-buffer": { - "type": "npm", - "name": "npm:data-uri-to-buffer", - "data": { - "version": "4.0.1", - "packageName": "data-uri-to-buffer", - "hash": "sha512-0R9ikRb668HB7QDxT1vkpuUBtqc53YyAwMwGeUFKRojY/NWKvdZ+9UYtRfGmhqNbRkTSVpMbmyhXipFFv2cb/A==" - } - }, - "npm:data-uri-to-buffer@6.0.2": { - "type": "npm", - "name": "npm:data-uri-to-buffer@6.0.2", - "data": { - "version": "6.0.2", - "packageName": "data-uri-to-buffer", - "hash": "sha512-7hvf7/GW8e86rW0ptuwS3OcBGDjIi6SZva7hCyWC0yYry2cOPmLIjXAUHI6DK2HsnwJd9ifmt57i8eV2n4YNpw==" - } - }, - "npm:data-view-buffer": { - "type": "npm", - "name": "npm:data-view-buffer", - "data": { - "version": "1.0.2", - "packageName": "data-view-buffer", - "hash": "sha512-EmKO5V3OLXh1rtK2wgXRansaK1/mtVdTUEiEI0W8RkvgT05kfxaH29PliLnpLP73yYO6142Q72QNa8Wx/A5CqQ==" - } - }, - "npm:data-view-byte-length": { - "type": "npm", - "name": "npm:data-view-byte-length", - "data": { - "version": "1.0.2", - "packageName": "data-view-byte-length", - "hash": "sha512-tuhGbE6CfTM9+5ANGf+oQb72Ky/0+s3xKUpHvShfiz2RxMFgFPjsXuRLBVMtvMs15awe45SRb83D6wH4ew6wlQ==" - } - }, - "npm:data-view-byte-offset": { - "type": "npm", - "name": "npm:data-view-byte-offset", - "data": { - "version": "1.0.1", - "packageName": "data-view-byte-offset", - "hash": "sha512-BS8PfmtDGnrgYdOonGZQdLZslWIeCGFP9tpan0hi1Co2Zr2NKADsvGYA8XxuG/4UWgJ6Cjtv+YJnB6MM69QGlQ==" - } - }, - "npm:debug-logfmt": { - "type": "npm", - "name": "npm:debug-logfmt", - "data": { - "version": "1.4.8", - "packageName": "debug-logfmt", - "hash": "sha512-tdHndIqcBCy5vEjDBCcyv9FnCkn38QrPRP0Q5B5qi+0S2Lgc6JOPjy2ozsLt00qslzJVbxoO2W05PXNYNB0IMQ==" - } - }, - "npm:debug": { - "type": "npm", - "name": "npm:debug", - "data": { - "version": "4.4.3", - "packageName": "debug", - "hash": "sha512-RGwwWnwQvkVfavKVt22FGLw+xYSdzARwm0ru6DhTVA3umU5hZc28V3kO4stgYryrTlLpuvgI9GiijltAjNbcqA==" - } - }, - "npm:decode-named-character-reference": { - "type": "npm", - "name": "npm:decode-named-character-reference", - "data": { - "version": "1.2.0", - "packageName": "decode-named-character-reference", - "hash": "sha512-c6fcElNV6ShtZXmsgNgFFV5tVX2PaV4g+MOAkb8eXHvn6sryJBrZa9r0zV6+dtTyoCKxtDy5tyQ5ZwQuidtd+Q==" - } - }, - "npm:decompress-response": { - "type": "npm", - "name": "npm:decompress-response", - "data": { - "version": "6.0.0", - "packageName": "decompress-response", - "hash": "sha512-aW35yZM6Bb/4oJlZncMH2LCoZtJXTRxES17vE3hoRiowU2kWHaJKFkSBDnDR+cm9J+9QhXmREyIfv0pji9ejCQ==" - } - }, - "npm:deep-extend": { - "type": "npm", - "name": "npm:deep-extend", - "data": { - "version": "0.6.0", - "packageName": "deep-extend", - "hash": "sha512-LOHxIOaPYdHlJRtCQfDIVZtfw/ufM8+rVj649RIHzcm/vGwQRXFt6OPqIFWsm2XEMrNIEtWR64sY1LEKD2vAOA==" - } - }, - "npm:deep-is": { - "type": "npm", - "name": "npm:deep-is", - "data": { - "version": "0.1.4", - "packageName": "deep-is", - "hash": "sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==" - } - }, - "npm:deepmerge-ts": { - "type": "npm", - "name": "npm:deepmerge-ts", - "data": { - "version": "7.1.5", - "packageName": "deepmerge-ts", - "hash": "sha512-HOJkrhaYsweh+W+e74Yn7YStZOilkoPb6fycpwNLKzSPtruFs48nYis0zy5yJz1+ktUhHxoRDJ27RQAWLIJVJw==" - } - }, - "npm:defaults": { - "type": "npm", - "name": "npm:defaults", - "data": { - "version": "1.0.4", - "packageName": "defaults", - "hash": "sha512-eFuaLoy/Rxalv2kr+lqMlUnrDWV+3j4pljOIJgLIhI058IQfWJ7vXhyEIHu+HtC738klGALYxOKDO0bQP3tg8A==" - } - }, - "npm:defer-to-connect": { - "type": "npm", - "name": "npm:defer-to-connect", - "data": { - "version": "2.0.1", - "packageName": "defer-to-connect", - "hash": "sha512-4tvttepXG1VaYGrRibk5EwJd1t4udunSOVMdLSAL6mId1ix438oPwPZMALY41FCijukO1L0twNcGsdzS7dHgDg==" - } - }, - "npm:define-data-property": { - "type": "npm", - "name": "npm:define-data-property", - "data": { - "version": "1.1.4", - "packageName": "define-data-property", - "hash": "sha512-rBMvIzlpA8v6E+SJZoo++HAYqsLrkg7MSfIinMPFhmkorw7X+dOXVJQs+QT69zGkzMyfDnIMN2Wid1+NbL3T+A==" - } - }, - "npm:define-lazy-prop": { - "type": "npm", - "name": "npm:define-lazy-prop", - "data": { - "version": "2.0.0", - "packageName": "define-lazy-prop", - "hash": "sha512-Ds09qNh8yw3khSjiJjiUInaGX9xlqZDY7JVryGxdxV7NPeuqQfplOpQ66yJFZut3jLa5zOwkXw1g9EI2uKh4Og==" - } - }, - "npm:define-properties": { - "type": "npm", - "name": "npm:define-properties", - "data": { - "version": "1.2.1", - "packageName": "define-properties", - "hash": "sha512-8QmQKqEASLd5nx0U1B1okLElbUuuttJ/AnYmRXbbbGDWh6uS208EjD4Xqq/I9wK7u0v6O08XhTWnt5XtEbR6Dg==" - } - }, - "npm:defu": { - "type": "npm", - "name": "npm:defu", - "data": { - "version": "6.1.4", - "packageName": "defu", - "hash": "sha512-mEQCMmwJu317oSz8CwdIOdwf3xMif1ttiM8LTufzc3g6kR+9Pe236twL8j3IYT1F7GfRgGcW6MWxzZjLIkuHIg==" - } - }, - "npm:degenerator": { - "type": "npm", - "name": "npm:degenerator", - "data": { - "version": "5.0.1", - "packageName": "degenerator", - "hash": "sha512-TllpMR/t0M5sqCXfj85i4XaAzxmS5tVA16dqvdkMwGmzI+dXLXnw3J+3Vdv7VKw+ThlTMboK6i9rnZ6Nntj5CQ==" - } - }, - "npm:delayed-stream": { - "type": "npm", - "name": "npm:delayed-stream", - "data": { - "version": "1.0.0", - "packageName": "delayed-stream", - "hash": "sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ==" - } - }, - "npm:denque": { - "type": "npm", - "name": "npm:denque", - "data": { - "version": "2.1.0", - "packageName": "denque", - "hash": "sha512-HVQE3AAb/pxF8fQAoiqpvg9i3evqug3hoiwakOyZAwJm+6vZehbkYXZ0l4JxS+I3QxM97v5aaRNhj8v5oBhekw==" - } - }, - "npm:depd": { - "type": "npm", - "name": "npm:depd", - "data": { - "version": "2.0.0", - "packageName": "depd", - "hash": "sha512-g7nH6P6dyDioJogAAGprGpCtVImJhpPk/roCzdb3fIh61/s/nPsfR6onyMwkCAR/OlC3yBC0lESvUoQEAssIrw==" - } - }, - "npm:dequal": { - "type": "npm", - "name": "npm:dequal", - "data": { - "version": "2.0.3", - "packageName": "dequal", - "hash": "sha512-0je+qPKHEMohvfRTCEo3CrPG6cAzAYgmzKyxRiYSSDkS6eGJdyVJm7WaYA5ECaAD9wLB2T4EEeymA5aFVcYXCA==" - } - }, - "npm:destr": { - "type": "npm", - "name": "npm:destr", - "data": { - "version": "2.0.5", - "packageName": "destr", - "hash": "sha512-ugFTXCtDZunbzasqBxrK93Ik/DRYsO6S/fedkWEMKqt04xZ4csmnmwGDBAb07QWNaGMAmnTIemsYZCksjATwsA==" - } - }, - "npm:detect-libc": { - "type": "npm", - "name": "npm:detect-libc", - "data": { - "version": "2.1.2", - "packageName": "detect-libc", - "hash": "sha512-Btj2BOOO83o3WyH59e8MgXsxEQVcarkUOpEYrubB0urwnN10yQ364rsiByU11nZlqWYZm05i/of7io4mzihBtQ==" - } - }, - "npm:detect-node-es": { - "type": "npm", - "name": "npm:detect-node-es", - "data": { - "version": "1.1.0", - "packageName": "detect-node-es", - "hash": "sha512-ypdmJU/TbBby2Dxibuv7ZLW3Bs1QEmM7nHjEANfohJLvE0XVujisn1qPJcZxg+qDucsr+bP6fLD1rPS3AhJ7EQ==" - } - }, - "npm:devlop": { - "type": "npm", - "name": "npm:devlop", - "data": { - "version": "1.1.0", - "packageName": "devlop", - "hash": "sha512-RWmIqhcFf1lRYBvNmr7qTNuyCt/7/ns2jbpp1+PalgE/rDQcBT0fioSMUpJ93irlUhC5hrg4cYqe6U+0ImW0rA==" - } - }, - "npm:devtools-protocol": { - "type": "npm", - "name": "npm:devtools-protocol", - "data": { - "version": "0.0.1581282", - "packageName": "devtools-protocol", - "hash": "sha512-nv7iKtNZQshSW2hKzYNr46nM/Cfh5SEvE2oV0/SEGgc9XupIY5ggf84Cz8eJIkBce7S3bmTAauFD6aysMpnqsQ==" - } - }, - "npm:didyoumean3": { - "type": "npm", - "name": "npm:didyoumean3", - "data": { - "version": "1.2.5", - "packageName": "didyoumean3", - "hash": "sha512-ROol2k9IQ04NjrCiB98knunQ1cOmoXdYaGFjMfDIcXl9PuaxNVHxAZrG163aWkrRq5jIL+LatmqCgPasOvRwSQ==" - } - }, - "npm:doctrine": { - "type": "npm", - "name": "npm:doctrine", - "data": { - "version": "2.1.0", - "packageName": "doctrine", - "hash": "sha512-35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw==" - } - }, - "npm:dom-serializer": { - "type": "npm", - "name": "npm:dom-serializer", - "data": { - "version": "1.4.1", - "packageName": "dom-serializer", - "hash": "sha512-VHwB3KfrcOOkelEG2ZOfxqLZdfkil8PtJi4P8N2MMXucZq2yLp75ClViUlOVwyoHEDjYU433Aq+5zWP61+RGag==" - } - }, - "npm:domelementtype": { - "type": "npm", - "name": "npm:domelementtype", - "data": { - "version": "2.3.0", - "packageName": "domelementtype", - "hash": "sha512-OLETBj6w0OsagBwdXnPdN0cnMfF9opN69co+7ZrbfPGrdpPVNBUj02spi6B1N7wChLQiPn4CSH/zJvXw56gmHw==" - } - }, - "npm:domhandler": { - "type": "npm", - "name": "npm:domhandler", - "data": { - "version": "4.3.1", - "packageName": "domhandler", - "hash": "sha512-GrwoxYN+uWlzO8uhUXRl0P+kHE4GtVPfYzVLcUxPL7KNdHKj66vvlhiweIHqYYXWlw+T8iLMp42Lm67ghw4WMQ==" - } - }, - "npm:domutils": { - "type": "npm", - "name": "npm:domutils", - "data": { - "version": "2.8.0", - "packageName": "domutils", - "hash": "sha512-w96Cjofp72M5IIhpjgobBimYEfoPjx1Vx0BSX9P30WBdZW2WIKU0T1Bd0kz2eNZ9ikjKgHbEyKx8BB6H1L3h3A==" - } - }, - "npm:dotenv-expand": { - "type": "npm", - "name": "npm:dotenv-expand", - "data": { - "version": "11.0.7", - "packageName": "dotenv-expand", - "hash": "sha512-zIHwmZPRshsCdpMDyVsqGmgyP0yT8GAgXUnkdAoJisxvf33k7yO6OuoKmcTGuXPWSsm8Oh88nZicRLA9Y0rUeA==" - } - }, - "npm:dotenv@16.4.7": { - "type": "npm", - "name": "npm:dotenv@16.4.7", - "data": { - "version": "16.4.7", - "packageName": "dotenv", - "hash": "sha512-47qPchRCykZC03FhkYAhrvwU4xDBFIj1QPqaarj6mdM/hgUzfPHcpkHJOn3mJAufFeeAxAzeGsr5X0M4k6fLZQ==" - } - }, - "npm:dotenv@16.6.1": { - "type": "npm", - "name": "npm:dotenv@16.6.1", - "data": { - "version": "16.6.1", - "packageName": "dotenv", - "hash": "sha512-uBq4egWHTcTt33a72vpSG0z3HnPuIl6NqYcTrKEg2azoEyl2hpW0zqlxysq2pK9HlDIHyHyakeYaYnSAwd8bow==" - } - }, - "npm:dotenv": { - "type": "npm", - "name": "npm:dotenv", - "data": { - "version": "17.3.1", - "packageName": "dotenv", - "hash": "sha512-IO8C/dzEb6O3F9/twg6ZLXz164a2fhTnEWb95H23Dm4OuN+92NmEAlTrupP9VW6Jm3sO26tQlqyvyi4CsnY9GA==" - } - }, - "npm:drizzle-kit": { - "type": "npm", - "name": "npm:drizzle-kit", - "data": { - "version": "0.31.10", - "packageName": "drizzle-kit", - "hash": "sha512-7OZcmQUrdGI+DUNNsKBn1aW8qSoKuTH7d0mYgSP8bAzdFzKoovxEFnoGQp2dVs82EOJeYycqRtciopszwUf8bw==" - } - }, - "npm:drizzle-orm": { - "type": "npm", - "name": "npm:drizzle-orm", - "data": { - "version": "0.45.1", - "packageName": "drizzle-orm", - "hash": "sha512-Te0FOdKIistGNPMq2jscdqngBRfBpC8uMFVwqjf6gtTVJHIQ/dosgV/CLBU2N4ZJBsXL5savCba9b0YJskKdcA==" - } - }, - "npm:dts-resolver": { - "type": "npm", - "name": "npm:dts-resolver", - "data": { - "version": "2.1.3", - "packageName": "dts-resolver", - "hash": "sha512-bihc7jPC90VrosXNzK0LTE2cuLP6jr0Ro8jk+kMugHReJVLIpHz/xadeq3MhuwyO4TD4OA3L1Q8pBBFRc08Tsw==" - } - }, - "npm:dunder-proto": { - "type": "npm", - "name": "npm:dunder-proto", - "data": { - "version": "1.0.1", - "packageName": "dunder-proto", - "hash": "sha512-KIN/nDJBQRcXw0MLVhZE9iQHmG68qAVIBg9CqmUYjmQIhgij9U5MFvrqkUL5FbtyyzZuOeOt0zdeRe4UY7ct+A==" - } - }, - "npm:eastasianwidth": { - "type": "npm", - "name": "npm:eastasianwidth", - "data": { - "version": "0.2.0", - "packageName": "eastasianwidth", - "hash": "sha512-I88TYZWc9XiYHRQ4/3c5rjjfgkjhLyW2luGIheGERbNQ6OY7yTybanSpDXZa8y7VUP9YmDcYa+eyq4ca7iLqWA==" - } - }, - "npm:ee-first": { - "type": "npm", - "name": "npm:ee-first", - "data": { - "version": "1.1.1", - "packageName": "ee-first", - "hash": "sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow==" - } - }, - "npm:effect": { - "type": "npm", - "name": "npm:effect", - "data": { - "version": "3.18.4", - "packageName": "effect", - "hash": "sha512-b1LXQJLe9D11wfnOKAk3PKxuqYshQ0Heez+y5pnkd3jLj1yx9QhM72zZ9uUrOQyNvrs2GZZd/3maL0ZV18YuDA==" - } - }, - "npm:ejs": { - "type": "npm", - "name": "npm:ejs", - "data": { - "version": "3.1.10", - "packageName": "ejs", - "hash": "sha512-UeJmFfOrAQS8OJWPZ4qtgHyWExa088/MtK5UEyoJGFH67cDEXkZSviOiKRCZ4Xij0zxI3JECgYs3oKx+AizQBA==" - } - }, - "npm:electron-to-chromium": { - "type": "npm", - "name": "npm:electron-to-chromium", - "data": { - "version": "1.5.267", - "packageName": "electron-to-chromium", - "hash": "sha512-0Drusm6MVRXSOJpGbaSVgcQsuB4hEkMpHXaVstcPmhu5LIedxs1xNK/nIxmQIU/RPC0+1/o0AVZfBTkTNJOdUw==" - } - }, - "npm:emoji-regex": { - "type": "npm", - "name": "npm:emoji-regex", - "data": { - "version": "8.0.0", - "packageName": "emoji-regex", - "hash": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==" - } - }, - "npm:emoji-regex@9.2.2": { - "type": "npm", - "name": "npm:emoji-regex@9.2.2", - "data": { - "version": "9.2.2", - "packageName": "emoji-regex", - "hash": "sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==" - } - }, - "npm:empathic": { - "type": "npm", - "name": "npm:empathic", - "data": { - "version": "2.0.0", - "packageName": "empathic", - "hash": "sha512-i6UzDscO/XfAcNYD75CfICkmfLedpyPDdozrLMmQc5ORaQcdMoc21OnlEylMIqI7U8eniKrPMxxtj8k0vhmJhA==" - } - }, - "npm:encodeurl": { - "type": "npm", - "name": "npm:encodeurl", - "data": { - "version": "2.0.0", - "packageName": "encodeurl", - "hash": "sha512-Q0n9HRi4m6JuGIV1eFlmvJB7ZEVxu93IrMyiMsGC0lrMJMWzRgx6WGquyfQgZVb31vhGgXnfmPNNXmxnOkRBrg==" - } - }, - "npm:encoding": { - "type": "npm", - "name": "npm:encoding", - "data": { - "version": "0.1.13", - "packageName": "encoding", - "hash": "sha512-ETBauow1T35Y/WZMkio9jiM0Z5xjHHmJ4XmjZOq1l/dXz3lr2sRn87nJy20RupqSh1F2m3HHPSp8ShIPQJrJ3A==" - } - }, - "npm:end-of-stream": { - "type": "npm", - "name": "npm:end-of-stream", - "data": { - "version": "1.4.5", - "packageName": "end-of-stream", - "hash": "sha512-ooEGc6HP26xXq/N+GCGOT0JKCLDGrq2bQUZrQ7gyrJiZANJ/8YDTxTpQBXGMn+WbIQXNVpyWymm7KYVICQnyOg==" - } - }, - "npm:enhanced-resolve": { - "type": "npm", - "name": "npm:enhanced-resolve", - "data": { - "version": "5.19.0", - "packageName": "enhanced-resolve", - "hash": "sha512-phv3E1Xl4tQOShqSte26C7Fl84EwUdZsyOuSSk9qtAGyyQs2s3jJzComh+Abf4g187lUUAvH+H26omrqia2aGg==" - } - }, - "npm:enquirer": { - "type": "npm", - "name": "npm:enquirer", - "data": { - "version": "2.3.6", - "packageName": "enquirer", - "hash": "sha512-yjNnPr315/FjS4zIsUxYguYUPP2e1NK4d7E7ZOLiyYCcbFBiTMyID+2wvm2w6+pZ/odMA7cRkjhsPbltwBOrLg==" - } - }, - "npm:ensure-error": { - "type": "npm", - "name": "npm:ensure-error", - "data": { - "version": "3.0.1", - "packageName": "ensure-error", - "hash": "sha512-J2e5Z3sgnA8en6+alf2VkO5cRwe75hHgSw0rJiMn5CEE4Yyw6GSgH31IBgwN9lugeCuPKHzuOF3X/RozAFsuhQ==" - } - }, - "npm:entities@2.2.0": { - "type": "npm", - "name": "npm:entities@2.2.0", - "data": { - "version": "2.2.0", - "packageName": "entities", - "hash": "sha512-p92if5Nz619I0w+akJrLZH0MX0Pb5DX39XOwQTtXSdQQOaYH03S1uIQp4mhOZtAXrxq4ViO67YTiLBo2638o9A==" - } - }, - "npm:entities@6.0.1": { - "type": "npm", - "name": "npm:entities@6.0.1", - "data": { - "version": "6.0.1", - "packageName": "entities", - "hash": "sha512-aN97NXWF6AWBTahfVOIrB/NShkzi5H7F9r1s9mD3cDj4Ko5f2qhhVoYMibXF7GlLveb/D2ioWay8lxI97Ven3g==" - } - }, - "npm:entities": { - "type": "npm", - "name": "npm:entities", - "data": { - "version": "7.0.1", - "packageName": "entities", - "hash": "sha512-TWrgLOFUQTH994YUyl1yT4uyavY5nNB5muff+RtWaqNVCAK408b5ZnnbNAUEWLTCpum9w6arT70i1XdQ4UeOPA==" - } - }, - "npm:env-paths": { - "type": "npm", - "name": "npm:env-paths", - "data": { - "version": "2.2.1", - "packageName": "env-paths", - "hash": "sha512-+h1lkLKhZMTYjog1VEpJNG7NZJWcuc2DDk/qsqSTRRCOXiLjeQ1d1/udrUGhqMxUgAlwKNZ0cf2uqan5GLuS2A==" - } - }, - "npm:err-code": { - "type": "npm", - "name": "npm:err-code", - "data": { - "version": "2.0.3", - "packageName": "err-code", - "hash": "sha512-2bmlRpNKBxT/CRmPOlyISQpNj+qSeYvcym/uT0Jx2bMOlKLtSy1ZmLuVxSEKKyor/N5yhvp/ZiG1oE3DEYMSFA==" - } - }, - "npm:error-ex": { - "type": "npm", - "name": "npm:error-ex", - "data": { - "version": "1.3.4", - "packageName": "error-ex", - "hash": "sha512-sqQamAnR14VgCr1A618A3sGrygcpK+HEbenA/HiEAkkUwcZIIB/tgWqHFxWgOyDh4nB4JCRimh79dR5Ywc9MDQ==" - } - }, - "npm:error-stack-parser-es": { - "type": "npm", - "name": "npm:error-stack-parser-es", - "data": { - "version": "1.0.5", - "packageName": "error-stack-parser-es", - "hash": "sha512-5qucVt2XcuGMcEGgWI7i+yZpmpByQ8J1lHhcL7PwqCwu9FPP3VUXzT4ltHe5i2z9dePwEHcDVOAfSnHsOlCXRA==" - } - }, - "npm:es-abstract": { - "type": "npm", - "name": "npm:es-abstract", - "data": { - "version": "1.24.0", - "packageName": "es-abstract", - "hash": "sha512-WSzPgsdLtTcQwm4CROfS5ju2Wa1QQcVeT37jFjYzdFz1r9ahadC8B8/a4qxJxM+09F18iumCdRmlr96ZYkQvEg==" - } - }, - "npm:es-define-property": { - "type": "npm", - "name": "npm:es-define-property", - "data": { - "version": "1.0.1", - "packageName": "es-define-property", - "hash": "sha512-e3nRfgfUZ4rNGL232gUgX06QNyyez04KdjFrF+LTRoOXmrOgFKDg4BCdsjW8EnT69eqdYGmRpJwiPVYNrCaW3g==" - } - }, - "npm:es-errors": { - "type": "npm", - "name": "npm:es-errors", - "data": { - "version": "1.3.0", - "packageName": "es-errors", - "hash": "sha512-Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw==" - } - }, - "npm:es-iterator-helpers": { - "type": "npm", - "name": "npm:es-iterator-helpers", - "data": { - "version": "1.2.1", - "packageName": "es-iterator-helpers", - "hash": "sha512-uDn+FE1yrDzyC0pCo961B2IHbdM8y/ACZsKD4dG6WqrjV53BADjwa7D+1aom2rsNVfLyDgU/eigvlJGJ08OQ4w==" - } - }, - "npm:es-module-lexer": { - "type": "npm", - "name": "npm:es-module-lexer", - "data": { - "version": "1.7.0", - "packageName": "es-module-lexer", - "hash": "sha512-jEQoCwk8hyb2AZziIOLhDqpm5+2ww5uIE6lkO/6jcOCusfk6LhMHpXXfBLXTZ7Ydyt0j4VoUQv6uGNYbdW+kBA==" - } - }, - "npm:es-module-lexer@2.0.0": { - "type": "npm", - "name": "npm:es-module-lexer@2.0.0", - "data": { - "version": "2.0.0", - "packageName": "es-module-lexer", - "hash": "sha512-5POEcUuZybH7IdmGsD8wlf0AI55wMecM9rVBTI/qEAy2c1kTOm3DjFYjrBdI2K3BaJjJYfYFeRtM0t9ssnRuxw==" - } - }, - "npm:es-object-atoms": { - "type": "npm", - "name": "npm:es-object-atoms", - "data": { - "version": "1.1.1", - "packageName": "es-object-atoms", - "hash": "sha512-FGgH2h8zKNim9ljj7dankFPcICIK9Cp5bm+c2gQSYePhpaG5+esrLODihIorn+Pe6FGJzWhXQotPv73jTaldXA==" - } - }, - "npm:es-set-tostringtag": { - "type": "npm", - "name": "npm:es-set-tostringtag", - "data": { - "version": "2.1.0", - "packageName": "es-set-tostringtag", - "hash": "sha512-j6vWzfrGVfyXxge+O0x5sh6cvxAog0a/4Rdd2K36zCMV5eJ+/+tOAngRO8cODMNWbVRdVlmGZQL2YS3yR8bIUA==" - } - }, - "npm:es-shim-unscopables": { - "type": "npm", - "name": "npm:es-shim-unscopables", - "data": { - "version": "1.1.0", - "packageName": "es-shim-unscopables", - "hash": "sha512-d9T8ucsEhh8Bi1woXCf+TIKDIROLG5WCkxg8geBCbvk22kzwC5G2OnXVMO6FUsvQlgUUXQ2itephWDLqDzbeCw==" - } - }, - "npm:es-to-primitive": { - "type": "npm", - "name": "npm:es-to-primitive", - "data": { - "version": "1.3.0", - "packageName": "es-to-primitive", - "hash": "sha512-w+5mJ3GuFL+NjVtJlvydShqE1eN3h3PbI7/5LAsYJP/2qtuMXjfL2LpHSRqo4b4eSF5K/DH1JXKUAHSB2UW50g==" - } - }, - "npm:esbuild@0.18.20": { - "type": "npm", - "name": "npm:esbuild@0.18.20", - "data": { - "version": "0.18.20", - "packageName": "esbuild", - "hash": "sha512-ceqxoedUrcayh7Y7ZX6NdbbDzGROiyVBgC4PriJThBKSVPWnnFHZAkfI1lJT8QFkOwH4qOS2SJkS4wvpGl8BpA==" - } - }, - "npm:esbuild@0.25.12": { - "type": "npm", - "name": "npm:esbuild@0.25.12", - "data": { - "version": "0.25.12", - "packageName": "esbuild", - "hash": "sha512-bbPBYYrtZbkt6Os6FiTLCTFxvq4tt3JKall1vRwshA3fdVztsLAatFaZobhkBC8/BrPetoa0oksYoKXoG4ryJg==" - } - }, - "npm:esbuild@0.27.3": { - "type": "npm", - "name": "npm:esbuild@0.27.3", - "data": { - "version": "0.27.3", - "packageName": "esbuild", - "hash": "sha512-8VwMnyGCONIs6cWue2IdpHxHnAjzxnw2Zr7MkVxB2vjmQ2ivqGFb4LEG3SMnv0Gb2F/G/2yA8zUaiL1gywDCCg==" - } - }, - "npm:esbuild": { - "type": "npm", - "name": "npm:esbuild", - "data": { - "version": "0.27.4", - "packageName": "esbuild", - "hash": "sha512-Rq4vbHnYkK5fws5NF7MYTU68FPRE1ajX7heQ/8QXXWqNgqqJ/GkmmyxIzUnf2Sr/bakf8l54716CcMGHYhMrrQ==" - } - }, - "npm:escalade": { - "type": "npm", - "name": "npm:escalade", - "data": { - "version": "3.2.0", - "packageName": "escalade", - "hash": "sha512-WUj2qlxaQtO4g6Pq5c29GTcWGDyd8itL8zTlipgECz3JesAiiOKotd8JU6otB3PACgG6xkJUyVhboMS+bje/jA==" - } - }, - "npm:escape-html": { - "type": "npm", - "name": "npm:escape-html", - "data": { - "version": "1.0.3", - "packageName": "escape-html", - "hash": "sha512-NiSupZ4OeuGwr68lGIeym/ksIZMJodUGOSCZ/FSnTxcrekbvqrgdUxlJOMpijaKZVjAJrWrGs/6Jy8OMuyj9ow==" - } - }, - "npm:escape-string-regexp@1.0.5": { - "type": "npm", - "name": "npm:escape-string-regexp@1.0.5", - "data": { - "version": "1.0.5", - "packageName": "escape-string-regexp", - "hash": "sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==" - } - }, - "npm:escape-string-regexp": { - "type": "npm", - "name": "npm:escape-string-regexp", - "data": { - "version": "4.0.0", - "packageName": "escape-string-regexp", - "hash": "sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==" - } - }, - "npm:escodegen": { - "type": "npm", - "name": "npm:escodegen", - "data": { - "version": "2.1.0", - "packageName": "escodegen", - "hash": "sha512-2NlIDTwUWJN0mRPQOdtQBzbUHvdGY2P1VXSyU83Q3xKxM7WHX2Ql8dKq782Q9TgQUNOLEzEYu9bzLNj1q88I5w==" - } - }, - "npm:eslint-config-prettier": { - "type": "npm", - "name": "npm:eslint-config-prettier", - "data": { - "version": "10.1.8", - "packageName": "eslint-config-prettier", - "hash": "sha512-82GZUjRS0p/jganf6q1rEO25VSoHH0hKPCTrgillPjdI/3bgBhAE1QzHrHTizjpRvy6pGAvKjDJtk2pF9NDq8w==" - } - }, - "npm:eslint-plugin-prettier": { - "type": "npm", - "name": "npm:eslint-plugin-prettier", - "data": { - "version": "5.5.5", - "packageName": "eslint-plugin-prettier", - "hash": "sha512-hscXkbqUZ2sPithAuLm5MXL+Wph+U7wHngPBv9OMWwlP8iaflyxpjTYZkmdgB4/vPIhemRlBEoLrH7UC1n7aUw==" - } - }, - "npm:eslint-plugin-react": { - "type": "npm", - "name": "npm:eslint-plugin-react", - "data": { - "version": "7.37.5", - "packageName": "eslint-plugin-react", - "hash": "sha512-Qteup0SqU15kdocexFNAJMvCJEfa2xUKNV4CC1xsVMrIIqEy3SQ/rqyxCWNzfrd3/ldy6HMlD2e0JDVpDg2qIA==" - } - }, - "npm:eslint-plugin-solid": { - "type": "npm", - "name": "npm:eslint-plugin-solid", - "data": { - "version": "0.14.5", - "packageName": "eslint-plugin-solid", - "hash": "sha512-nfuYK09ah5aJG/oEN6P1qziy1zLgW4PDWe75VNPi4CEFYk1x2AEqwFeQfEPR7gNn0F2jOeqKhx2E+5oNCOBYWQ==" - } - }, - "npm:eslint-plugin-vue": { - "type": "npm", - "name": "npm:eslint-plugin-vue", - "data": { - "version": "10.8.0", - "packageName": "eslint-plugin-vue", - "hash": "sha512-f1J/tcbnrpgC8suPN5AtdJ5MQjuXbSU9pGRSSYAuF3SHoiYCOdEX6O22pLaRyLHXvDcOe+O5ENgc1owQ587agA==" - } - }, - "npm:eslint-rule-composer": { - "type": "npm", - "name": "npm:eslint-rule-composer", - "data": { - "version": "0.3.0", - "packageName": "eslint-rule-composer", - "hash": "sha512-bt+Sh8CtDmn2OajxvNO+BX7Wn4CIWMpTRm3MaiKPCQcnnlm0CS2mhui6QaoeQugs+3Kj2ESKEEGJUdVafwhiCg==" - } - }, - "npm:eslint-scope": { - "type": "npm", - "name": "npm:eslint-scope", - "data": { - "version": "8.4.0", - "packageName": "eslint-scope", - "hash": "sha512-sNXOfKCn74rt8RICKMvJS7XKV/Xk9kA7DyJr8mJik3S7Cwgy3qlkkmyS2uQB3jiJg6VNdZd/pDBJu0nvG2NlTg==" - } - }, - "npm:eslint-visitor-keys@3.4.3": { - "type": "npm", - "name": "npm:eslint-visitor-keys@3.4.3", - "data": { - "version": "3.4.3", - "packageName": "eslint-visitor-keys", - "hash": "sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag==" - } - }, - "npm:eslint-visitor-keys": { - "type": "npm", - "name": "npm:eslint-visitor-keys", - "data": { - "version": "4.2.1", - "packageName": "eslint-visitor-keys", - "hash": "sha512-Uhdk5sfqcee/9H/rCOJikYz67o0a2Tw2hGRPOG2Y1R2dg7brRe1uG0yaNQDHu+TO/uQPF/5eCapvYSmHUjt7JQ==" - } - }, - "npm:eslint-visitor-keys@5.0.1": { - "type": "npm", - "name": "npm:eslint-visitor-keys@5.0.1", - "data": { - "version": "5.0.1", - "packageName": "eslint-visitor-keys", - "hash": "sha512-tD40eHxA35h0PEIZNeIjkHoDR4YjjJp34biM0mDvplBe//mB+IHCqHDGV7pxF+7MklTvighcCPPZC7ynWyjdTA==" - } - }, - "npm:eslint": { - "type": "npm", - "name": "npm:eslint", - "data": { - "version": "9.39.4", - "packageName": "eslint", - "hash": "sha512-XoMjdBOwe/esVgEvLmNsD3IRHkm7fbKIUGvrleloJXUZgDHig2IPWNniv+GwjyJXzuNqVjlr5+4yVUZjycJwfQ==" - } - }, - "npm:espree@10.4.0": { - "type": "npm", - "name": "npm:espree@10.4.0", - "data": { - "version": "10.4.0", - "packageName": "espree", - "hash": "sha512-j6PAQ2uUr79PZhBjP5C5fhl8e39FmRnOjsD5lGnWrFU8i2G776tBK7+nP8KuQUTTyAZUwfQqXAgrVH5MbH9CYQ==" - } - }, - "npm:espree": { - "type": "npm", - "name": "npm:espree", - "data": { - "version": "11.2.0", - "packageName": "espree", - "hash": "sha512-7p3DrVEIopW1B1avAGLuCSh1jubc01H2JHc8B4qqGblmg5gI9yumBgACjWo4JlIc04ufug4xJ3SQI8HkS/Rgzw==" - } - }, - "npm:esprima": { - "type": "npm", - "name": "npm:esprima", - "data": { - "version": "4.0.1", - "packageName": "esprima", - "hash": "sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==" - } - }, - "npm:esquery": { - "type": "npm", - "name": "npm:esquery", - "data": { - "version": "1.6.0", - "packageName": "esquery", - "hash": "sha512-ca9pw9fomFcKPvFLXhBKUK90ZvGibiGOvRJNbjljY7s7uq/5YO4BOzcYtJqExdx99rF6aAcnRxHmcUHcz6sQsg==" - } - }, - "npm:esrecurse": { - "type": "npm", - "name": "npm:esrecurse", - "data": { - "version": "4.3.0", - "packageName": "esrecurse", - "hash": "sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==" - } - }, - "npm:estraverse": { - "type": "npm", - "name": "npm:estraverse", - "data": { - "version": "5.3.0", - "packageName": "estraverse", - "hash": "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==" - } - }, - "npm:estree-walker@2.0.2": { - "type": "npm", - "name": "npm:estree-walker@2.0.2", - "data": { - "version": "2.0.2", - "packageName": "estree-walker", - "hash": "sha512-Rfkk/Mp/DL7JVje3u18FxFujQlTNR2q6QfMSMB7AvCBx91NGj/ba3kCfza0f6dVDbw7YlRf/nDrn7pQrCCyQ/w==" - } - }, - "npm:estree-walker": { - "type": "npm", - "name": "npm:estree-walker", - "data": { - "version": "3.0.3", - "packageName": "estree-walker", - "hash": "sha512-7RUKfXgSMMkzt6ZuXmqapOurLGPPfgj6l9uRZ7lRGolvk0y2yocc35LdcxKC5PQZdn2DMqioAQ2NoWcrTKmm6g==" - } - }, - "npm:esutils": { - "type": "npm", - "name": "npm:esutils", - "data": { - "version": "2.0.3", - "packageName": "esutils", - "hash": "sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==" - } - }, - "npm:etag": { - "type": "npm", - "name": "npm:etag", - "data": { - "version": "1.8.1", - "packageName": "etag", - "hash": "sha512-aIL5Fx7mawVa300al2BnEE4iNvo1qETxLrPI/o05L7z6go7fCw1J6EQmbK4FmJ2AS7kgVF/KEZWufBfdClMcPg==" - } - }, - "npm:eventemitter3": { - "type": "npm", - "name": "npm:eventemitter3", - "data": { - "version": "4.0.7", - "packageName": "eventemitter3", - "hash": "sha512-8guHBZCwKnFhYdHr2ysuRWErTwhoN2X8XELRlrRwpmfeY2jjuUN4taQMsULKUVo1K4DvZl+0pgfyoysHxvmvEw==" - } - }, - "npm:events-universal": { - "type": "npm", - "name": "npm:events-universal", - "data": { - "version": "1.0.1", - "packageName": "events-universal", - "hash": "sha512-LUd5euvbMLpwOF8m6ivPCbhQeSiYVNb8Vs0fQ8QjXo0JTkEHpz8pxdQf0gStltaPpw0Cca8b39KxvK9cfKRiAw==" - } - }, - "npm:execa": { - "type": "npm", - "name": "npm:execa", - "data": { - "version": "9.6.1", - "packageName": "execa", - "hash": "sha512-9Be3ZoN4LmYR90tUoVu2te2BsbzHfhJyfEiAVfz7N5/zv+jduIfLrV2xdQXOHbaD6KgpGdO9PRPM1Y4Q9QkPkA==" - } - }, - "npm:exit-hook": { - "type": "npm", - "name": "npm:exit-hook", - "data": { - "version": "2.2.1", - "packageName": "exit-hook", - "hash": "sha512-eNTPlAD67BmP31LDINZ3U7HSF8l57TxOY2PmBJ1shpCvpnxBF93mWCE8YHBnXs8qiUZJc9WDcWIeC3a2HIAMfw==" - } - }, - "npm:expand-template": { - "type": "npm", - "name": "npm:expand-template", - "data": { - "version": "2.0.3", - "packageName": "expand-template", - "hash": "sha512-XYfuKMvj4O35f/pOXLObndIRvyQ+/+6AhODh+OKWj9S9498pHHn/IMszH+gt0fBCRWMNfk1ZSp5x3AifmnI2vg==" - } - }, - "npm:expect-type": { - "type": "npm", - "name": "npm:expect-type", - "data": { - "version": "1.3.0", - "packageName": "expect-type", - "hash": "sha512-knvyeauYhqjOYvQ66MznSMs83wmHrCycNEN6Ao+2AeYEfxUIkuiVxdEa1qlGEPK+We3n0THiDciYSsCcgW/DoA==" - } - }, - "npm:exponential-backoff": { - "type": "npm", - "name": "npm:exponential-backoff", - "data": { - "version": "3.1.3", - "packageName": "exponential-backoff", - "hash": "sha512-ZgEeZXj30q+I0EN+CbSSpIyPaJ5HVQD18Z1m+u1FXbAeT94mr1zw50q4q6jiiC447Nl/YTcIYSAftiGqetwXCA==" - } - }, - "npm:express": { - "type": "npm", - "name": "npm:express", - "data": { - "version": "5.2.1", - "packageName": "express", - "hash": "sha512-hIS4idWWai69NezIdRt2xFVofaF4j+6INOpJlVOLDO8zXGpUVEVzIYk12UUi2JzjEzWL3IOAxcTubgz9Po0yXw==" - } - }, - "npm:exsolve": { - "type": "npm", - "name": "npm:exsolve", - "data": { - "version": "1.0.8", - "packageName": "exsolve", - "hash": "sha512-LmDxfWXwcTArk8fUEnOfSZpHOJ6zOMUJKOtFLFqJLoKJetuQG874Uc7/Kki7zFLzYybmZhp1M7+98pfMqeX8yA==" - } - }, - "npm:extract-zip": { - "type": "npm", - "name": "npm:extract-zip", - "data": { - "version": "2.0.1", - "packageName": "extract-zip", - "hash": "sha512-GDhU9ntwuKyGXdZBUgTIe+vXnWj0fppUEtMDL0+idd5Sta8TGpHssn/eusA9mrPr9qNDym6SxAYZjNvCn/9RBg==" - } - }, - "npm:fast-check": { - "type": "npm", - "name": "npm:fast-check", - "data": { - "version": "3.23.2", - "packageName": "fast-check", - "hash": "sha512-h5+1OzzfCC3Ef7VbtKdcv7zsstUQwUDlYpUTvjeUsJAssPgLn7QzbboPtL5ro04Mq0rPOsMzl7q5hIbRs2wD1A==" - } - }, - "npm:fast-decode-uri-component": { - "type": "npm", - "name": "npm:fast-decode-uri-component", - "data": { - "version": "1.0.1", - "packageName": "fast-decode-uri-component", - "hash": "sha512-WKgKWg5eUxvRZGwW8FvfbaH7AXSh2cL+3j5fMGzUMCxWBJ3dV3a7Wz8y2f/uQ0e3B6WmodD3oS54jTQ9HVTIIg==" - } - }, - "npm:fast-deep-equal": { - "type": "npm", - "name": "npm:fast-deep-equal", - "data": { - "version": "3.1.3", - "packageName": "fast-deep-equal", - "hash": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==" - } - }, - "npm:fast-diff": { - "type": "npm", - "name": "npm:fast-diff", - "data": { - "version": "1.3.0", - "packageName": "fast-diff", - "hash": "sha512-VxPP4NqbUjj6MaAOafWeUn2cXWLcCtljklUtZf0Ind4XQ+QPtmA0b18zZy0jIQx+ExRVCR/ZQpBmik5lXshNsw==" - } - }, - "npm:fast-fifo": { - "type": "npm", - "name": "npm:fast-fifo", - "data": { - "version": "1.3.2", - "packageName": "fast-fifo", - "hash": "sha512-/d9sfos4yxzpwkDkuN7k2SqFKtYNmCTzgfEpz82x34IM9/zc8KGxQoXg1liNC/izpRM/MBdt44Nmx41ZWqk+FQ==" - } - }, - "npm:fast-glob": { - "type": "npm", - "name": "npm:fast-glob", - "data": { - "version": "3.3.3", - "packageName": "fast-glob", - "hash": "sha512-7MptL8U0cqcFdzIzwOTHoilX9x5BrNqye7Z/LuC7kCMRio1EMSyqRK3BEAUD7sXRq4iT4AzTVuZdhgQ2TCvYLg==" - } - }, - "npm:fast-json-stable-stringify": { - "type": "npm", - "name": "npm:fast-json-stable-stringify", - "data": { - "version": "2.1.0", - "packageName": "fast-json-stable-stringify", - "hash": "sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==" - } - }, - "npm:fast-json-stringify": { - "type": "npm", - "name": "npm:fast-json-stringify", - "data": { - "version": "6.3.0", - "packageName": "fast-json-stringify", - "hash": "sha512-oRCntNDY/329HJPlmdNLIdogNtt6Vyjb1WuT01Soss3slIdyUp8kAcDU3saQTOquEK8KFVfwIIF7FebxUAu+yA==" - } - }, - "npm:fast-levenshtein": { - "type": "npm", - "name": "npm:fast-levenshtein", - "data": { - "version": "2.0.6", - "packageName": "fast-levenshtein", - "hash": "sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==" - } - }, - "npm:fast-querystring": { - "type": "npm", - "name": "npm:fast-querystring", - "data": { - "version": "1.1.2", - "packageName": "fast-querystring", - "hash": "sha512-g6KuKWmFXc0fID8WWH0jit4g0AGBoJhCkJMb1RmbsSEUNvQ+ZC8D6CUZ+GtF8nMzSPXnhiePyyqqipzNNEnHjg==" - } - }, - "npm:fast-string-truncated-width": { - "type": "npm", - "name": "npm:fast-string-truncated-width", - "data": { - "version": "3.0.3", - "packageName": "fast-string-truncated-width", - "hash": "sha512-0jjjIEL6+0jag3l2XWWizO64/aZVtpiGE3t0Zgqxv0DPuxiMjvB3M24fCyhZUO4KomJQPj3LTSUnDP3GpdwC0g==" - } - }, - "npm:fast-string-width": { - "type": "npm", - "name": "npm:fast-string-width", - "data": { - "version": "3.0.2", - "packageName": "fast-string-width", - "hash": "sha512-gX8LrtNEI5hq8DVUfRQMbr5lpaS4nMIWV+7XEbXk2b8kiQIizgnlr12B4dA3ZEx3308ze0O4Q1R+cHts8kyUJg==" - } - }, - "npm:fast-uri": { - "type": "npm", - "name": "npm:fast-uri", - "data": { - "version": "3.1.0", - "packageName": "fast-uri", - "hash": "sha512-iPeeDKJSWf4IEOasVVrknXpaBV0IApz/gp7S2bb7Z4Lljbl2MGJRqInZiUrQwV16cpzw/D3S5j5Julj/gT52AA==" - } - }, - "npm:fast-wrap-ansi": { - "type": "npm", - "name": "npm:fast-wrap-ansi", - "data": { - "version": "0.2.0", - "packageName": "fast-wrap-ansi", - "hash": "sha512-rLV8JHxTyhVmFYhBJuMujcrHqOT2cnO5Zxj37qROj23CP39GXubJRBUFF0z8KFK77Uc0SukZUf7JZhsVEQ6n8w==" - } - }, - "npm:fastify-plugin": { - "type": "npm", - "name": "npm:fastify-plugin", - "data": { - "version": "5.1.0", - "packageName": "fastify-plugin", - "hash": "sha512-FAIDA8eovSt5qcDgcBvDuX/v0Cjz0ohGhENZ/wpc3y+oZCY2afZ9Baqql3g/lC+OHRnciQol4ww7tuthOb9idw==" - } - }, - "npm:fastify-raw-body": { - "type": "npm", - "name": "npm:fastify-raw-body", - "data": { - "version": "5.0.0", - "packageName": "fastify-raw-body", - "hash": "sha512-2qfoaQ3BQDhZ1gtbkKZd6n0kKxJISJGM6u/skD9ljdWItAscjXrtZ1lnjr7PavmXX9j4EyCPmBDiIsLn07d5vA==" - } - }, - "npm:fastify": { - "type": "npm", - "name": "npm:fastify", - "data": { - "version": "5.8.2", - "packageName": "fastify", - "hash": "sha512-lZmt3navvZG915IE+f7/TIVamxIwmBd+OMB+O9WBzcpIwOo6F0LTh0sluoMFk5VkrKTvvrwIaoJPkir4Z+jtAg==" - } - }, - "npm:fastq": { - "type": "npm", - "name": "npm:fastq", - "data": { - "version": "1.20.1", - "packageName": "fastq", - "hash": "sha512-GGToxJ/w1x32s/D2EKND7kTil4n8OVk/9mycTc4VDza13lOvpUZTGX3mFSCtV9ksdGBVzvsyAVLM6mHFThxXxw==" - } - }, - "npm:fd-package-json": { - "type": "npm", - "name": "npm:fd-package-json", - "data": { - "version": "2.0.0", - "packageName": "fd-package-json", - "hash": "sha512-jKmm9YtsNXN789RS/0mSzOC1NUq9mkVd65vbSSVsKdjGvYXBuE4oWe2QOEoFeRmJg+lPuZxpmrfFclNhoRMneQ==" - } - }, - "npm:fd-slicer": { - "type": "npm", - "name": "npm:fd-slicer", - "data": { - "version": "1.1.0", - "packageName": "fd-slicer", - "hash": "sha512-cE1qsB/VwyQozZ+q1dGxR8LBYNZeofhEdUNGSMbQD3Gw2lAzX9Zb3uIU6Ebc/Fmyjo9AWWfnn0AUCHqtevs/8g==" - } - }, - "npm:fdir": { - "type": "npm", - "name": "npm:fdir", - "data": { - "version": "6.5.0", - "packageName": "fdir", - "hash": "sha512-tIbYtZbucOs0BRGqPJkshJUYdL+SDH7dVM8gjy+ERp3WAUjLEFJE+02kanyHtwjWOnwrKYBiwAmM0p4kLJAnXg==" - } - }, - "npm:fetch-blob": { - "type": "npm", - "name": "npm:fetch-blob", - "data": { - "version": "3.2.0", - "packageName": "fetch-blob", - "hash": "sha512-7yAQpD2UMJzLi1Dqv7qFYnPbaPx7ZfFK6PiIxQ4PfkGPyNyl2Ugx+a/umUonmKqjhM4DnfbMvdX6otXq83soQQ==" - } - }, - "npm:figures@3.2.0": { - "type": "npm", - "name": "npm:figures@3.2.0", - "data": { - "version": "3.2.0", - "packageName": "figures", - "hash": "sha512-yaduQFRKLXYOGgEn6AZau90j3ggSOyiqXU0F9JZfeXYhNa+Jk4X+s45A2zg5jns87GAFa34BBm2kXw4XpNcbdg==" - } - }, - "npm:figures": { - "type": "npm", - "name": "npm:figures", - "data": { - "version": "6.1.0", - "packageName": "figures", - "hash": "sha512-d+l3qxjSesT4V7v2fh+QnmFnUWv9lSpjarhShNTgBOfA0ttejbQUAlHLitbjkoRiDulW0OPoQPYIGhIC8ohejg==" - } - }, - "npm:file-entry-cache": { - "type": "npm", - "name": "npm:file-entry-cache", - "data": { - "version": "8.0.0", - "packageName": "file-entry-cache", - "hash": "sha512-XXTUwCvisa5oacNGRP9SfNtYBNAMi+RPwBFmblZEF7N7swHYQS6/Zfk7SRwx4D5j3CH211YNRco1DEMNVfZCnQ==" - } - }, - "npm:file-uri-to-path": { - "type": "npm", - "name": "npm:file-uri-to-path", - "data": { - "version": "1.0.0", - "packageName": "file-uri-to-path", - "hash": "sha512-0Zt+s3L7Vf1biwWZ29aARiVYLx7iMGnEUl9x33fbB/j3jR81u/O2LbqK+Bm1CDSNDKVtJ/YjwY7TUd5SkeLQLw==" - } - }, - "npm:filelist": { - "type": "npm", - "name": "npm:filelist", - "data": { - "version": "1.0.6", - "packageName": "filelist", - "hash": "sha512-5giy2PkLYY1cP39p17Ech+2xlpTRL9HLspOfEgm0L6CwBXBTgsK5ou0JtzYuepxkaQ/tvhCFIJ5uXo0OrM2DxA==" - } - }, - "npm:fill-range": { - "type": "npm", - "name": "npm:fill-range", - "data": { - "version": "7.1.1", - "packageName": "fill-range", - "hash": "sha512-YsGpe3WHLK8ZYi4tWDg2Jy3ebRz2rXowDxnld4bkQB00cc/1Zw9AWnC0i9ztDJitivtQvaI9KaLyKrc+hBW0yg==" - } - }, - "npm:finalhandler": { - "type": "npm", - "name": "npm:finalhandler", - "data": { - "version": "2.1.1", - "packageName": "finalhandler", - "hash": "sha512-S8KoZgRZN+a5rNwqTxlZZePjT/4cnm0ROV70LedRHZ0p8u9fRID0hJUZQpkKLzro8LfmC8sx23bY6tVNxv8pQA==" - } - }, - "npm:find-babel-config": { - "type": "npm", - "name": "npm:find-babel-config", - "data": { - "version": "2.1.2", - "packageName": "find-babel-config", - "hash": "sha512-ZfZp1rQyp4gyuxqt1ZqjFGVeVBvmpURMqdIWXbPRfB97Bf6BzdK/xSIbylEINzQ0kB5tlDQfn9HkNXXWsqTqLg==" - } - }, - "npm:find-my-way": { - "type": "npm", - "name": "npm:find-my-way", - "data": { - "version": "9.5.0", - "packageName": "find-my-way", - "hash": "sha512-VW2RfnmscZO5KgBY5XVyKREMW5nMZcxDy+buTOsL+zIPnBlbKm+00sgzoQzq1EVh4aALZLfKdwv6atBGcjvjrQ==" - } - }, - "npm:find-up@3.0.0": { - "type": "npm", - "name": "npm:find-up@3.0.0", - "data": { - "version": "3.0.0", - "packageName": "find-up", - "hash": "sha512-1yD6RmLI1XBfxugvORwlck6f75tYL+iR0jqwsOrOxMZyGYqUuDhJ0l4AXdO1iX/FTs9cBAMEk1gWSEx1kSbylg==" - } - }, - "npm:find-up": { - "type": "npm", - "name": "npm:find-up", - "data": { - "version": "5.0.0", - "packageName": "find-up", - "hash": "sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==" - } - }, - "npm:flat-cache": { - "type": "npm", - "name": "npm:flat-cache", - "data": { - "version": "4.0.1", - "packageName": "flat-cache", - "hash": "sha512-f7ccFPK3SXFHpx15UIGyRJ/FJQctuKZ0zVuN3frBo4HnK3cay9VEW0R6yPYFHC0AgqhukPzKjq22t5DmAyqGyw==" - } - }, - "npm:flat": { - "type": "npm", - "name": "npm:flat", - "data": { - "version": "5.0.2", - "packageName": "flat", - "hash": "sha512-b6suED+5/3rTpUBdG1gupIl8MPFCAMA0QXwmljLhvCUKcUvdE4gWky9zpuGCcXHOsz4J9wPGNWq6OKpmIzz3hQ==" - } - }, - "npm:flatted": { - "type": "npm", - "name": "npm:flatted", - "data": { - "version": "3.3.3", - "packageName": "flatted", - "hash": "sha512-GX+ysw4PBCz0PzosHDepZGANEuFCMLrnRTiEy9McGjmkCQYwRq4A/X786G/fjM/+OjsWSU1ZrY5qyARZmO/uwg==" - } - }, - "npm:follow-redirects": { - "type": "npm", - "name": "npm:follow-redirects", - "data": { - "version": "1.15.11", - "packageName": "follow-redirects", - "hash": "sha512-deG2P0JfjrTxl50XGCDyfI97ZGVCxIpfKYmfyrQ54n5FO/0gfIES8C/Psl6kWVDolizcaaxZJnTS0QSMxvnsBQ==" - } - }, - "npm:for-each": { - "type": "npm", - "name": "npm:for-each", - "data": { - "version": "0.3.5", - "packageName": "for-each", - "hash": "sha512-dKx12eRCVIzqCxFGplyFKJMPvLEWgmNtUrpTiJIR5u97zEhRG8ySrtboPHZXx7daLxQVrl643cTzbab2tkQjxg==" - } - }, - "npm:foreground-child": { - "type": "npm", - "name": "npm:foreground-child", - "data": { - "version": "3.3.1", - "packageName": "foreground-child", - "hash": "sha512-gIXjKqtFuWEgzFRJA9WCQeSJLZDjgJUOMCMzxtvFq/37KojM1BFGufqsCy0r4qSQmYLsZYMeyRqzIWOMup03sw==" - } - }, - "npm:form-data": { - "type": "npm", - "name": "npm:form-data", - "data": { - "version": "4.0.5", - "packageName": "form-data", - "hash": "sha512-8RipRLol37bNs2bhoV67fiTEvdTrbMUYcFTiy3+wuuOnUog2QBHCZWXDRijWQfAkhBj2Uf5UnVaiWwA5vdd82w==" - } - }, - "npm:formatly": { - "type": "npm", - "name": "npm:formatly", - "data": { - "version": "0.3.0", - "packageName": "formatly", - "hash": "sha512-9XNj/o4wrRFyhSMJOvsuyMwy8aUfBaZ1VrqHVfohyXf0Sw0e+yfKG+xZaY3arGCOMdwFsqObtzVOc1gU9KiT9w==" - } - }, - "npm:formdata-polyfill": { - "type": "npm", - "name": "npm:formdata-polyfill", - "data": { - "version": "4.0.10", - "packageName": "formdata-polyfill", - "hash": "sha512-buewHzMvYL29jdeQTVILecSaZKnt/RJWjoZCF5OW60Z67/GmSLBkOFM7qh1PI3zFNtJbaZL5eQu1vLfazOwj4g==" - } - }, - "npm:forwarded": { - "type": "npm", - "name": "npm:forwarded", - "data": { - "version": "0.2.0", - "packageName": "forwarded", - "hash": "sha512-buRG0fpBtRHSTCOASe6hD258tEubFoRLb4ZNA6NxMVHNw2gOcwHo9wyablzMzOA5z9xA9L1KNjk/Nt6MT9aYow==" - } - }, - "npm:fraction.js": { - "type": "npm", - "name": "npm:fraction.js", - "data": { - "version": "5.3.4", - "packageName": "fraction.js", - "hash": "sha512-1X1NTtiJphryn/uLQz3whtY6jK3fTqoE3ohKs0tT+Ujr1W59oopxmoEh7Lu5p6vBaPbgoM0bzveAW4Qi5RyWDQ==" - } - }, - "npm:fresh": { - "type": "npm", - "name": "npm:fresh", - "data": { - "version": "2.0.0", - "packageName": "fresh", - "hash": "sha512-Rx/WycZ60HOaqLKAi6cHRKKI7zxWbJ31MhntmtwMoaTeF7XFH9hhBp8vITaMidfljRQ6eYWCKkaTK+ykVJHP2A==" - } - }, - "npm:front-matter": { - "type": "npm", - "name": "npm:front-matter", - "data": { - "version": "4.0.2", - "packageName": "front-matter", - "hash": "sha512-I8ZuJ/qG92NWX8i5x1Y8qyj3vizhXS31OxjKDu3LKP+7/qBgfIKValiZIEwoVoJKUHlhWtYrktkxV1XsX+pPlg==" - } - }, - "npm:fs-constants": { - "type": "npm", - "name": "npm:fs-constants", - "data": { - "version": "1.0.0", - "packageName": "fs-constants", - "hash": "sha512-y6OAwoSIf7FyjMIv94u+b5rdheZEjzR63GTyZJm5qh4Bi+2YgwLCcI/fPFZkL5PSixOt6ZNKm+w+Hfp/Bciwow==" - } - }, - "npm:fs-minipass": { - "type": "npm", - "name": "npm:fs-minipass", - "data": { - "version": "3.0.3", - "packageName": "fs-minipass", - "hash": "sha512-XUBA9XClHbnJWSfBzjkm6RvPsyg3sryZt06BEQoXcF7EK/xpGaQYJgQKDJSUH5SGZ76Y7pFx1QBnXz09rU5Fbw==" - } - }, - "npm:fs.realpath": { - "type": "npm", - "name": "npm:fs.realpath", - "data": { - "version": "1.0.0", - "packageName": "fs.realpath", - "hash": "sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==" - } - }, - "npm:fsevents": { - "type": "npm", - "name": "npm:fsevents", - "data": { - "version": "2.3.3", - "packageName": "fsevents", - "hash": "sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==" - } - }, - "npm:function-bind": { - "type": "npm", - "name": "npm:function-bind", - "data": { - "version": "1.1.2", - "packageName": "function-bind", - "hash": "sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==" - } - }, - "npm:function.prototype.name": { - "type": "npm", - "name": "npm:function.prototype.name", - "data": { - "version": "1.1.8", - "packageName": "function.prototype.name", - "hash": "sha512-e5iwyodOHhbMr/yNrc7fDYG4qlbIvI5gajyzPnb5TCwyhjApznQh1BMFou9b30SevY43gCJKXycoCBjMbsuW0Q==" - } - }, - "npm:functions-have-names": { - "type": "npm", - "name": "npm:functions-have-names", - "data": { - "version": "1.2.3", - "packageName": "functions-have-names", - "hash": "sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ==" - } - }, - "npm:generate-function": { - "type": "npm", - "name": "npm:generate-function", - "data": { - "version": "2.3.1", - "packageName": "generate-function", - "hash": "sha512-eeB5GfMNeevm/GRYq20ShmsaGcmI81kIX2K9XQx5miC8KdHaC6Jm0qQ8ZNeGOi7wYB8OsdxKs+Y2oVuTFuVwKQ==" - } - }, - "npm:generator-function": { - "type": "npm", - "name": "npm:generator-function", - "data": { - "version": "2.0.1", - "packageName": "generator-function", - "hash": "sha512-SFdFmIJi+ybC0vjlHN0ZGVGHc3lgE0DxPAT0djjVg+kjOnSqclqmj0KQ7ykTOLP6YxoqOvuAODGdcHJn+43q3g==" - } - }, - "npm:gensync": { - "type": "npm", - "name": "npm:gensync", - "data": { - "version": "1.0.0-beta.2", - "packageName": "gensync", - "hash": "sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==" - } - }, - "npm:get-caller-file": { - "type": "npm", - "name": "npm:get-caller-file", - "data": { - "version": "2.0.5", - "packageName": "get-caller-file", - "hash": "sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==" - } - }, - "npm:get-intrinsic": { - "type": "npm", - "name": "npm:get-intrinsic", - "data": { - "version": "1.3.0", - "packageName": "get-intrinsic", - "hash": "sha512-9fSjSaos/fRIVIp+xSJlE6lfwhES7LNtKaCBIamHsjr2na1BiABJPo0mOjjz8GJDURarmCPGqaiVg5mfjb98CQ==" - } - }, - "npm:get-nonce": { - "type": "npm", - "name": "npm:get-nonce", - "data": { - "version": "1.0.1", - "packageName": "get-nonce", - "hash": "sha512-FJhYRoDaiatfEkUK8HKlicmu/3SGFD51q3itKDGoSTysQJBnfOcxU5GxnhE1E6soB76MbT0MBtnKJuXyAx+96Q==" - } - }, - "npm:get-port-please": { - "type": "npm", - "name": "npm:get-port-please", - "data": { - "version": "3.2.0", - "packageName": "get-port-please", - "hash": "sha512-I9QVvBw5U/hw3RmWpYKRumUeaDgxTPd401x364rLmWBJcOQ753eov1eTgzDqRG9bqFIfDc7gfzcQEWrUri3o1A==" - } - }, - "npm:get-port": { - "type": "npm", - "name": "npm:get-port", - "data": { - "version": "7.2.0", - "packageName": "get-port", - "hash": "sha512-afP4W205ONCuMoPBqcR6PSXnzX35KTcJygfJfcp+QY+uwm3p20p1YczWXhlICIzGMCxYBQcySEcOgsJcrkyobg==" - } - }, - "npm:get-proto": { - "type": "npm", - "name": "npm:get-proto", - "data": { - "version": "1.0.1", - "packageName": "get-proto", - "hash": "sha512-sTSfBjoXBp89JvIKIefqw7U2CCebsc74kiY6awiGogKtoSGbgjYE/G/+l9sF3MWFPNc9IcoOC4ODfKHfxFmp0g==" - } - }, - "npm:get-stream@5.2.0": { - "type": "npm", - "name": "npm:get-stream@5.2.0", - "data": { - "version": "5.2.0", - "packageName": "get-stream", - "hash": "sha512-nBF+F1rAZVCu/p7rjzgA+Yb4lfYXrpl7a6VmJrU8wF9I1CKvP/QwPNZHnOlwbTkY6dvtFIzFMSyQXbLoTQPRpA==" - } - }, - "npm:get-stream": { - "type": "npm", - "name": "npm:get-stream", - "data": { - "version": "9.0.1", - "packageName": "get-stream", - "hash": "sha512-kVCxPF3vQM/N0B1PmoqVUqgHP+EeVjmZSQn+1oCRPxd2P21P2F19lIgbR3HBosbB1PUhOAoctJnfEn2GbN2eZA==" - } - }, - "npm:get-symbol-description": { - "type": "npm", - "name": "npm:get-symbol-description", - "data": { - "version": "1.1.0", - "packageName": "get-symbol-description", - "hash": "sha512-w9UMqWwJxHNOvoNzSJ2oPF5wvYcvP7jUvYzhp67yEhTi17ZDBBC1z9pTdGuzjD+EFIqLSYRweZjqfiPzQ06Ebg==" - } - }, - "npm:get-tsconfig": { - "type": "npm", - "name": "npm:get-tsconfig", - "data": { - "version": "4.13.7", - "packageName": "get-tsconfig", - "hash": "sha512-7tN6rFgBlMgpBML5j8typ92BKFi2sFQvIdpAqLA2beia5avZDrMs0FLZiM5etShWq5irVyGcGMEA1jcDaK7A/Q==" - } - }, - "npm:get-uri": { - "type": "npm", - "name": "npm:get-uri", - "data": { - "version": "6.0.5", - "packageName": "get-uri", - "hash": "sha512-b1O07XYq8eRuVzBNgJLstU6FYc1tS6wnMtF1I1D9lE8LxZSOGZ7LhxN54yPP6mGw5f2CkXY2BQUL9Fx41qvcIg==" - } - }, - "npm:giget": { - "type": "npm", - "name": "npm:giget", - "data": { - "version": "2.0.0", - "packageName": "giget", - "hash": "sha512-L5bGsVkxJbJgdnwyuheIunkGatUF/zssUoxxjACCseZYAVbaqdh9Tsmmlkl8vYan09H7sbvKt4pS8GqKLBrEzA==" - } - }, - "npm:github-from-package": { - "type": "npm", - "name": "npm:github-from-package", - "data": { - "version": "0.0.0", - "packageName": "github-from-package", - "hash": "sha512-SyHy3T1v2NUXn29OsWdxmK6RwHD+vkj3v8en8AOBZ1wBQ/hCAQ5bAQTD02kW4W9tUp/3Qh6J8r9EvntiyCmOOw==" - } - }, - "npm:github-slugger": { - "type": "npm", - "name": "npm:github-slugger", - "data": { - "version": "2.0.0", - "packageName": "github-slugger", - "hash": "sha512-IaOQ9puYtjrkq7Y0Ygl9KDZnrf/aiUJYUpVf89y8kyaxbRG7Y1SrX/jaumrv81vc61+kiMempujsM3Yw7w5qcw==" - } - }, - "npm:glob-parent@5.1.2": { - "type": "npm", - "name": "npm:glob-parent@5.1.2", - "data": { - "version": "5.1.2", - "packageName": "glob-parent", - "hash": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==" - } - }, - "npm:glob-parent": { - "type": "npm", - "name": "npm:glob-parent", - "data": { - "version": "6.0.2", - "packageName": "glob-parent", - "hash": "sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==" - } - }, - "npm:glob-to-regexp": { - "type": "npm", - "name": "npm:glob-to-regexp", - "data": { - "version": "0.4.1", - "packageName": "glob-to-regexp", - "hash": "sha512-lkX1HJXwyMcprw/5YUZc2s7DrpAiHB21/V+E1rHUrVNokkvB6bqMzT0VfV6/86ZNabt1k14YOIaT7nDvOX3Iiw==" - } - }, - "npm:glob@10.5.0": { - "type": "npm", - "name": "npm:glob@10.5.0", - "data": { - "version": "10.5.0", - "packageName": "glob", - "hash": "sha512-DfXN8DfhJ7NH3Oe7cFmu3NCu1wKbkReJ8TorzSAFbSKrlNaQSKfIzqYqVY8zlbs2NLBbWpRiU52GX2PbaBVNkg==" - } - }, - "npm:glob": { - "type": "npm", - "name": "npm:glob", - "data": { - "version": "13.0.6", - "packageName": "glob", - "hash": "sha512-Wjlyrolmm8uDpm/ogGyXZXb1Z+Ca2B8NbJwqBVg0axK9GbBeoS7yGV6vjXnYdGm6X53iehEuxxbyiKp8QmN4Vw==" - } - }, - "npm:glob@9.3.5": { - "type": "npm", - "name": "npm:glob@9.3.5", - "data": { - "version": "9.3.5", - "packageName": "glob", - "hash": "sha512-e1LleDykUz2Iu+MTYdkSsuWX8lvAjAcs0Xef0lNIu0S2wOAzuTxCJtcd9S3cijlwYF18EsU3rzb8jPVobxDh9Q==" - } - }, - "npm:globals@14.0.0": { - "type": "npm", - "name": "npm:globals@14.0.0", - "data": { - "version": "14.0.0", - "packageName": "globals", - "hash": "sha512-oahGvuMGQlPw/ivIYBjVSrWAfWLBeku5tpPE2fOPLi+WHffIWbuh2tCjhyQhTBPMf5E9jDEH4FOmTYgYwbKwtQ==" - } - }, - "npm:globals": { - "type": "npm", - "name": "npm:globals", - "data": { - "version": "17.4.0", - "packageName": "globals", - "hash": "sha512-hjrNztw/VajQwOLsMNT1cbJiH2muO3OROCHnbehc8eY5JyD2gqz4AcMHPqgaOR59DjgUjYAYLeH699g/eWi2jw==" - } - }, - "npm:globalthis": { - "type": "npm", - "name": "npm:globalthis", - "data": { - "version": "1.0.4", - "packageName": "globalthis", - "hash": "sha512-DpLKbNU4WylpxJykQujfCcwYWiV/Jhm50Goo0wrVILAv5jOr9d+H+UR3PhSCD2rCCEIg0uc+G+muBTwD54JhDQ==" - } - }, - "npm:globby": { - "type": "npm", - "name": "npm:globby", - "data": { - "version": "16.1.1", - "packageName": "globby", - "hash": "sha512-dW7vl+yiAJSp6aCekaVnVJxurRv7DCOLyXqEG3RYMYUg7AuJ2jCqPkZTA8ooqC2vtnkaMcV5WfFBMuEnTu1OQg==" - } - }, - "npm:gopd": { - "type": "npm", - "name": "npm:gopd", - "data": { - "version": "1.2.0", - "packageName": "gopd", - "hash": "sha512-ZUKRh6/kUFoAiTAtTYPZJ3hw9wNxx+BIBOijnlG9PnrJsCcSjs1wyyD6vJpaYtgnzDrKYRSqf3OO6Rfa93xsRg==" - } - }, - "npm:got": { - "type": "npm", - "name": "npm:got", - "data": { - "version": "11.8.6", - "packageName": "got", - "hash": "sha512-6tfZ91bOr7bOXnK7PRDCGBLa1H4U080YHNaAQ2KsMGlLEzRbk44nsZF2E1IeRc3vtJHPVbKCYgdFbaGO2ljd8g==" - } - }, - "npm:graceful-fs": { - "type": "npm", - "name": "npm:graceful-fs", - "data": { - "version": "4.2.11", - "packageName": "graceful-fs", - "hash": "sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==" - } - }, - "npm:gradient-parser": { - "type": "npm", - "name": "npm:gradient-parser", - "data": { - "version": "1.1.1", - "packageName": "gradient-parser", - "hash": "sha512-Hu0YfNU+38EsTmnUfLXUKFMXq9yz7htGYpF4x+dlbBhUCvIvzLt0yVLT/gJRmvLKFJdqNFrz4eKkIUjIXSr7Tw==" - } - }, - "npm:grammex": { - "type": "npm", - "name": "npm:grammex", - "data": { - "version": "3.1.12", - "packageName": "grammex", - "hash": "sha512-6ufJOsSA7LcQehIJNCO7HIBykfM7DXQual0Ny780/DEcJIpBlHRvcqEBWGPYd7hrXL2GJ3oJI1MIhaXjWmLQOQ==" - } - }, - "npm:graphmatch": { - "type": "npm", - "name": "npm:graphmatch", - "data": { - "version": "1.1.0", - "packageName": "graphmatch", - "hash": "sha512-0E62MaTW5rPZVRLyIJZG/YejmdA/Xr1QydHEw3Vt+qOKkMIOE8WDLc9ZX2bmAjtJFZcId4lEdrdmASsEy7D1QA==" - } - }, - "npm:h3": { - "type": "npm", - "name": "npm:h3", - "data": { - "version": "1.15.10", - "packageName": "h3", - "hash": "sha512-YzJeWSkDZxAhvmp8dexjRK5hxziRO7I9m0N53WhvYL5NiWfkUkzssVzY9jvGu0HBoLFW6+duYmNSn6MaZBCCtg==" - } - }, - "npm:has-bigints": { - "type": "npm", - "name": "npm:has-bigints", - "data": { - "version": "1.1.0", - "packageName": "has-bigints", - "hash": "sha512-R3pbpkcIqv2Pm3dUwgjclDRVmWpTJW2DcMzcIhEXEx1oh/CEMObMm3KLmRJOdvhM7o4uQBnwr8pzRK2sJWIqfg==" - } - }, - "npm:has-flag": { - "type": "npm", - "name": "npm:has-flag", - "data": { - "version": "4.0.0", - "packageName": "has-flag", - "hash": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==" - } - }, - "npm:has-property-descriptors": { - "type": "npm", - "name": "npm:has-property-descriptors", - "data": { - "version": "1.0.2", - "packageName": "has-property-descriptors", - "hash": "sha512-55JNKuIW+vq4Ke1BjOTjM2YctQIvCT7GFzHwmfZPGo5wnrgkid0YQtnAleFSqumZm4az3n2BS+erby5ipJdgrg==" - } - }, - "npm:has-proto": { - "type": "npm", - "name": "npm:has-proto", - "data": { - "version": "1.2.0", - "packageName": "has-proto", - "hash": "sha512-KIL7eQPfHQRC8+XluaIw7BHUwwqL19bQn4hzNgdr+1wXoU0KKj6rufu47lhY7KbJR2C6T6+PfyN0Ea7wkSS+qQ==" - } - }, - "npm:has-symbols": { - "type": "npm", - "name": "npm:has-symbols", - "data": { - "version": "1.1.0", - "packageName": "has-symbols", - "hash": "sha512-1cDNdwJ2Jaohmb3sg4OmKaMBwuC48sYni5HUw2DvsC8LjGTLK9h+eb1X6RyuOHe4hT0ULCW68iomhjUoKUqlPQ==" - } - }, - "npm:has-tostringtag": { - "type": "npm", - "name": "npm:has-tostringtag", - "data": { - "version": "1.0.2", - "packageName": "has-tostringtag", - "hash": "sha512-NqADB8VjPFLM2V0VvHUewwwsw0ZWBaIdgo+ieHtK3hasLz4qeCRjYcqfB6AQrBggRKppKF8L52/VqdVsO47Dlw==" - } - }, - "npm:hasown": { - "type": "npm", - "name": "npm:hasown", - "data": { - "version": "2.0.2", - "packageName": "hasown", - "hash": "sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ==" - } - }, - "npm:he": { - "type": "npm", - "name": "npm:he", - "data": { - "version": "1.2.0", - "packageName": "he", - "hash": "sha512-F/1DnUGPopORZi0ni+CvrCgHQ5FyEAHRLSApuYWMmrbSwoN2Mn/7k+Gl38gJnR7yyDZk6WLXwiGod1JOWNDKGw==" - } - }, - "npm:hey-listen": { - "type": "npm", - "name": "npm:hey-listen", - "data": { - "version": "1.0.8", - "packageName": "hey-listen", - "hash": "sha512-COpmrF2NOg4TBWUJ5UVyaCU2A88wEMkUPK4hNqyCkqHbxT92BbvfjoSozkAIIm6XhicGlJHhFdullInrdhwU8Q==" - } - }, - "npm:hono@4.11.4": { - "type": "npm", - "name": "npm:hono@4.11.4", - "data": { - "version": "4.11.4", - "packageName": "hono", - "hash": "sha512-U7tt8JsyrxSRKspfhtLET79pU8K+tInj5QZXs1jSugO1Vq5dFj3kmZsRldo29mTBfcjDRVRXrEZ6LS63Cog9ZA==" - } - }, - "npm:hono": { - "type": "npm", - "name": "npm:hono", - "data": { - "version": "4.12.8", - "packageName": "hono", - "hash": "sha512-VJCEvtrezO1IAR+kqEYnxUOoStaQPGrCmX3j4wDTNOcD1uRPFpGlwQUIW8niPuvHXaTUxeOUl5MMDGrl+tmO9A==" - } - }, - "npm:hookable": { - "type": "npm", - "name": "npm:hookable", - "data": { - "version": "6.1.0", - "packageName": "hookable", - "hash": "sha512-ZoKZSJgu8voGK2geJS+6YtYjvIzu9AOM/KZXsBxr83uhLL++e9pEv/dlgwgy3dvHg06kTz6JOh1hk3C8Ceiymw==" - } - }, - "npm:html-encoding-sniffer": { - "type": "npm", - "name": "npm:html-encoding-sniffer", - "data": { - "version": "3.0.0", - "packageName": "html-encoding-sniffer", - "hash": "sha512-oWv4T4yJ52iKrufjnyZPkrN0CH3QnrUqdB6In1g5Fe1mia8GmF36gnfNySxoZtxD5+NmYw1EElVXiBk93UeskA==" - } - }, - "npm:html-entities": { - "type": "npm", - "name": "npm:html-entities", - "data": { - "version": "2.3.3", - "packageName": "html-entities", - "hash": "sha512-DV5Ln36z34NNTDgnz0EWGBLZENelNAtkiFA4kyNOG2tDI6Mz1uSWiq1wAKdyjnJwyDiDO7Fa2SO1CTxPXL8VxA==" - } - }, - "npm:html-tags": { - "type": "npm", - "name": "npm:html-tags", - "data": { - "version": "3.3.1", - "packageName": "html-tags", - "hash": "sha512-ztqyC3kLto0e9WbNp0aeP+M3kTt+nbaIveGmUxAtZa+8iFgKLUOD4YKM5j+f3QD89bra7UeumolZHKuOXnTmeQ==" - } - }, - "npm:http-cache-semantics": { - "type": "npm", - "name": "npm:http-cache-semantics", - "data": { - "version": "4.2.0", - "packageName": "http-cache-semantics", - "hash": "sha512-dTxcvPXqPvXBQpq5dUr6mEMJX4oIEFv6bwom3FDwKRDsuIjjJGANqhBuoAn9c1RQJIdAKav33ED65E2ys+87QQ==" - } - }, - "npm:http-errors": { - "type": "npm", - "name": "npm:http-errors", - "data": { - "version": "2.0.1", - "packageName": "http-errors", - "hash": "sha512-4FbRdAX+bSdmo4AUFuS0WNiPz8NgFt+r8ThgNWmlrjQjt1Q7ZR9+zTlce2859x4KSXrwIsaeTqDoKQmtP8pLmQ==" - } - }, - "npm:http-proxy-agent": { - "type": "npm", - "name": "npm:http-proxy-agent", - "data": { - "version": "7.0.2", - "packageName": "http-proxy-agent", - "hash": "sha512-T1gkAiYYDWYx3V5Bmyu7HcfcvL7mUrTWiM6yOfa3PIphViJ/gFPbvidQ+veqSOHci/PxBcDabeUNCzpOODJZig==" - } - }, - "npm:http-proxy": { - "type": "npm", - "name": "npm:http-proxy", - "data": { - "version": "1.18.1", - "packageName": "http-proxy", - "hash": "sha512-7mz/721AbnJwIVbnaSv1Cz3Am0ZLT/UBwkC92VlxhXv/k/BBQfM2fXElQNC27BVGr0uwUpplYPQM9LnaBMR5NQ==" - } - }, - "npm:http-server": { - "type": "npm", - "name": "npm:http-server", - "data": { - "version": "14.1.1", - "packageName": "http-server", - "hash": "sha512-+cbxadF40UXd9T01zUHgA+rlo2Bg1Srer4+B4NwIHdaGxAGGv59nYRnGGDJ9LBk7alpS0US+J+bLLdQOOkJq4A==" - } - }, - "npm:http-status-codes": { - "type": "npm", - "name": "npm:http-status-codes", - "data": { - "version": "2.3.0", - "packageName": "http-status-codes", - "hash": "sha512-RJ8XvFvpPM/Dmc5SV+dC4y5PCeOhT3x1Hq0NU3rjGeg5a/CqlhZ7uudknPwZFz4aeAXDcbAyaeP7GAo9lvngtA==" - } - }, - "npm:http2-wrapper": { - "type": "npm", - "name": "npm:http2-wrapper", - "data": { - "version": "1.0.3", - "packageName": "http2-wrapper", - "hash": "sha512-V+23sDMr12Wnz7iTcDeJr3O6AIxlnvT/bmaAAAP/Xda35C90p9599p0F1eHR/N1KILWSoWVAiOMFjBBXaXSMxg==" - } - }, - "npm:https-proxy-agent": { - "type": "npm", - "name": "npm:https-proxy-agent", - "data": { - "version": "5.0.1", - "packageName": "https-proxy-agent", - "hash": "sha512-dFcAjpTQFgoLMzC2VwU+C/CbS7uRL0lWmxDITmqm7C+7F0Odmj6s9l6alZc6AELXhrnggM2CeWSXHGOdX2YtwA==" - } - }, - "npm:https-proxy-agent@7.0.6": { - "type": "npm", - "name": "npm:https-proxy-agent@7.0.6", - "data": { - "version": "7.0.6", - "packageName": "https-proxy-agent", - "hash": "sha512-vK9P5/iUfdl95AI+JVyUuIcVtd4ofvtrOr3HNtM2yxC9bnMbEdp3x01OhQNnjb8IJYi38VlTE3mBXwcfvywuSw==" - } - }, - "npm:human-signals": { - "type": "npm", - "name": "npm:human-signals", - "data": { - "version": "8.0.1", - "packageName": "human-signals", - "hash": "sha512-eKCa6bwnJhvxj14kZk5NCPc6Hb6BdsU9DZcOnmQKSnO1VKrfV0zCvtttPZUsBvjmNDn8rpcJfpwSYnHBjc95MQ==" - } - }, - "npm:humanize-list": { - "type": "npm", - "name": "npm:humanize-list", - "data": { - "version": "1.0.1", - "packageName": "humanize-list", - "hash": "sha512-4+p3fCRF21oUqxhK0yZ6yaSP/H5/wZumc7q1fH99RkW7Q13aAxDeP78BKjoR+6y+kaHqKF/JWuQhsNuuI2NKtA==" - } - }, - "npm:iconv-lite": { - "type": "npm", - "name": "npm:iconv-lite", - "data": { - "version": "0.6.3", - "packageName": "iconv-lite", - "hash": "sha512-4fCk79wshMdzMp2rH06qWrJE4iolqLhCUH+OiuIgU++RB0+94NlDL81atO7GX55uUKueo0txHNtvEyI6D7WdMw==" - } - }, - "npm:iconv-lite@0.7.2": { - "type": "npm", - "name": "npm:iconv-lite@0.7.2", - "data": { - "version": "0.7.2", - "packageName": "iconv-lite", - "hash": "sha512-im9DjEDQ55s9fL4EYzOAv0yMqmMBSZp6G0VvFyTMPKWxiSBHUj9NW/qqLmXUwXrrM7AvqSlTCfvqRb0cM8yYqw==" - } - }, - "npm:ieee754": { - "type": "npm", - "name": "npm:ieee754", - "data": { - "version": "1.2.1", - "packageName": "ieee754", - "hash": "sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==" - } - }, - "npm:ignore": { - "type": "npm", - "name": "npm:ignore", - "data": { - "version": "5.3.2", - "packageName": "ignore", - "hash": "sha512-hsBTNUqQTDwkWtcdYI2i06Y/nUBEsNEDJKjWdigLvegy8kDuJAS8uRlpkkcQpyEXL0Z/pjDy5HBmMjRCJ2gq+g==" - } - }, - "npm:ignore@7.0.5": { - "type": "npm", - "name": "npm:ignore@7.0.5", - "data": { - "version": "7.0.5", - "packageName": "ignore", - "hash": "sha512-Hs59xBNfUIunMFgWAbGX5cq6893IbWg4KnrjbYwX3tx0ztorVgTDA6B2sxf8ejHJ4wz8BqGUMYlnzNBer5NvGg==" - } - }, - "npm:import-fresh": { - "type": "npm", - "name": "npm:import-fresh", - "data": { - "version": "3.3.1", - "packageName": "import-fresh", - "hash": "sha512-TR3KfrTZTYLPB6jUjfx6MF9WcWrHL9su5TObK4ZkYgBdWKPOFoSoQIdEuTuR82pmtxH2spWG9h6etwfr1pLBqQ==" - } - }, - "npm:import-without-cache": { - "type": "npm", - "name": "npm:import-without-cache", - "data": { - "version": "0.2.5", - "packageName": "import-without-cache", - "hash": "sha512-B6Lc2s6yApwnD2/pMzFh/d5AVjdsDXjgkeJ766FmFuJELIGHNycKRj+l3A39yZPM4CchqNCB4RITEAYB1KUM6A==" - } - }, - "npm:imurmurhash": { - "type": "npm", - "name": "npm:imurmurhash", - "data": { - "version": "0.1.4", - "packageName": "imurmurhash", - "hash": "sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==" - } - }, - "npm:inherits": { - "type": "npm", - "name": "npm:inherits", - "data": { - "version": "2.0.4", - "packageName": "inherits", - "hash": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==" - } - }, - "npm:ini": { - "type": "npm", - "name": "npm:ini", - "data": { - "version": "1.3.8", - "packageName": "ini", - "hash": "sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew==" - } - }, - "npm:inline-style-parser": { - "type": "npm", - "name": "npm:inline-style-parser", - "data": { - "version": "0.2.4", - "packageName": "inline-style-parser", - "hash": "sha512-0aO8FkhNZlj/ZIbNi7Lxxr12obT7cL1moPfE4tg1LkX7LlLfC6DeX4l2ZEud1ukP9jNQyNnfzQVqwbwmAATY4Q==" - } - }, - "npm:install-artifact-from-github": { - "type": "npm", - "name": "npm:install-artifact-from-github", - "data": { - "version": "1.4.0", - "packageName": "install-artifact-from-github", - "hash": "sha512-+y6WywKZREw5rq7U2jvr2nmZpT7cbWbQQ0N/qfcseYnzHFz2cZz1Et52oY+XttYuYeTkI8Y+R2JNWj68MpQFSg==" - } - }, - "npm:internal-slot": { - "type": "npm", - "name": "npm:internal-slot", - "data": { - "version": "1.1.0", - "packageName": "internal-slot", - "hash": "sha512-4gd7VpWNQNB4UKKCFFVcp1AVv+FMOgs9NKzjHKusc8jTMhd5eL1NqQqOpE0KzMds804/yHlglp3uxgluOqAPLw==" - } - }, - "npm:ip-address": { - "type": "npm", - "name": "npm:ip-address", - "data": { - "version": "10.0.1", - "packageName": "ip-address", - "hash": "sha512-NWv9YLW4PoW2B7xtzaS3NCot75m6nK7Icdv0o3lfMceJVRfSoQwqD4wEH5rLwoKJwUiZ/rfpiVBhnaF0FK4HoA==" - } - }, - "npm:ip-regex": { - "type": "npm", - "name": "npm:ip-regex", - "data": { - "version": "4.3.0", - "packageName": "ip-regex", - "hash": "sha512-B9ZWJxHHOHUhUjCPrMpLD4xEq35bUTClHM1S6CBU5ixQnkZmwipwgc96vAd7AAGM9TGHvJR+Uss+/Ak6UphK+Q==" - } - }, - "npm:ipaddr.js@1.9.1": { - "type": "npm", - "name": "npm:ipaddr.js@1.9.1", - "data": { - "version": "1.9.1", - "packageName": "ipaddr.js", - "hash": "sha512-0KI/607xoxSToH7GjN1FfSbLoU0+btTicjsQSWQlh/hZykN8KpmMf7uYwPW3R+akZ6R/w18ZlXSHBYXiYUPO3g==" - } - }, - "npm:ipaddr.js": { - "type": "npm", - "name": "npm:ipaddr.js", - "data": { - "version": "2.3.0", - "packageName": "ipaddr.js", - "hash": "sha512-Zv/pA+ciVFbCSBBjGfaKUya/CcGmUHzTydLMaTwrUUEM2DIEO3iZvueGxmacvmN50fGpGVKeTXpb2LcYQxeVdg==" - } - }, - "npm:iron-webcrypto": { - "type": "npm", - "name": "npm:iron-webcrypto", - "data": { - "version": "1.2.1", - "packageName": "iron-webcrypto", - "hash": "sha512-feOM6FaSr6rEABp/eDfVseKyTMDt+KGpeB35SkVn9Tyn0CqvVsY3EwI0v5i8nMHyJnzCIQf7nsy3p41TPkJZhg==" - } - }, - "npm:is-array-buffer": { - "type": "npm", - "name": "npm:is-array-buffer", - "data": { - "version": "3.0.5", - "packageName": "is-array-buffer", - "hash": "sha512-DDfANUiiG2wC1qawP66qlTugJeL5HyzMpfr8lLK+jMQirGzNod0B12cFB/9q838Ru27sBwfw78/rdoU7RERz6A==" - } - }, - "npm:is-arrayish": { - "type": "npm", - "name": "npm:is-arrayish", - "data": { - "version": "0.2.1", - "packageName": "is-arrayish", - "hash": "sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg==" - } - }, - "npm:is-arrayish@0.3.4": { - "type": "npm", - "name": "npm:is-arrayish@0.3.4", - "data": { - "version": "0.3.4", - "packageName": "is-arrayish", - "hash": "sha512-m6UrgzFVUYawGBh1dUsWR5M2Clqic9RVXC/9f8ceNlv2IcO9j9J/z8UoCLPqtsPBFNzEpfR3xftohbfqDx8EQA==" - } - }, - "npm:is-async-function": { - "type": "npm", - "name": "npm:is-async-function", - "data": { - "version": "2.1.1", - "packageName": "is-async-function", - "hash": "sha512-9dgM/cZBnNvjzaMYHVoxxfPj2QXt22Ev7SuuPrs+xav0ukGB0S6d4ydZdEiM48kLx5kDV+QBPrpVnFyefL8kkQ==" - } - }, - "npm:is-bigint": { - "type": "npm", - "name": "npm:is-bigint", - "data": { - "version": "1.1.0", - "packageName": "is-bigint", - "hash": "sha512-n4ZT37wG78iz03xPRKJrHTdZbe3IicyucEtdRsV5yglwc3GyUfbAfpSeD0FJ41NbUNSt5wbhqfp1fS+BgnvDFQ==" - } - }, - "npm:is-boolean-object": { - "type": "npm", - "name": "npm:is-boolean-object", - "data": { - "version": "1.2.2", - "packageName": "is-boolean-object", - "hash": "sha512-wa56o2/ElJMYqjCjGkXri7it5FbebW5usLw/nPmCMs5DeZ7eziSYZhSmPRn0txqeW4LnAmQQU7FgqLpsEFKM4A==" - } - }, - "npm:is-callable": { - "type": "npm", - "name": "npm:is-callable", - "data": { - "version": "1.2.7", - "packageName": "is-callable", - "hash": "sha512-1BC0BVFhS/p0qtw6enp8e+8OD0UrK0oFLztSjNzhcKA3WDuJxxAPXzPuPtKkjEY9UUoEWlX/8fgKeu2S8i9JTA==" - } - }, - "npm:is-core-module": { - "type": "npm", - "name": "npm:is-core-module", - "data": { - "version": "2.16.1", - "packageName": "is-core-module", - "hash": "sha512-UfoeMA6fIJ8wTYFEUjelnaGI67v6+N7qXJEvQuIGa99l4xsCruSYOVSQ0uPANn4dAzm8lkYPaKLrrijLq7x23w==" - } - }, - "npm:is-data-view": { - "type": "npm", - "name": "npm:is-data-view", - "data": { - "version": "1.0.2", - "packageName": "is-data-view", - "hash": "sha512-RKtWF8pGmS87i2D6gqQu/l7EYRlVdfzemCJN/P3UOs//x1QE7mfhvzHIApBTRf7axvT6DMGwSwBXYCT0nfB9xw==" - } - }, - "npm:is-date-object": { - "type": "npm", - "name": "npm:is-date-object", - "data": { - "version": "1.1.0", - "packageName": "is-date-object", - "hash": "sha512-PwwhEakHVKTdRNVOw+/Gyh0+MzlCl4R6qKvkhuvLtPMggI1WAHt9sOwZxQLSGpUaDnrdyDsomoRgNnCfKNSXXg==" - } - }, - "npm:is-docker": { - "type": "npm", - "name": "npm:is-docker", - "data": { - "version": "2.2.1", - "packageName": "is-docker", - "hash": "sha512-F+i2BKsFrH66iaUFc0woD8sLy8getkwTwtOBjvs56Cx4CgJDeKQeqfz8wAYiSb8JOprWhHH5p77PbmYCvvUuXQ==" - } - }, - "npm:is-extglob": { - "type": "npm", - "name": "npm:is-extglob", - "data": { - "version": "2.1.1", - "packageName": "is-extglob", - "hash": "sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==" - } - }, - "npm:is-finalizationregistry": { - "type": "npm", - "name": "npm:is-finalizationregistry", - "data": { - "version": "1.1.1", - "packageName": "is-finalizationregistry", - "hash": "sha512-1pC6N8qWJbWoPtEjgcL2xyhQOP491EQjeUo3qTKcmV8YSDDJrOepfG8pcC7h/QgnQHYSv0mJ3Z/ZWxmatVrysg==" - } - }, - "npm:is-fullwidth-code-point": { - "type": "npm", - "name": "npm:is-fullwidth-code-point", - "data": { - "version": "3.0.0", - "packageName": "is-fullwidth-code-point", - "hash": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==" - } - }, - "npm:is-generator-function": { - "type": "npm", - "name": "npm:is-generator-function", - "data": { - "version": "1.1.2", - "packageName": "is-generator-function", - "hash": "sha512-upqt1SkGkODW9tsGNG5mtXTXtECizwtS2kA161M+gJPc1xdb/Ax629af6YrTwcOeQHbewrPNlE5Dx7kzvXTizA==" - } - }, - "npm:is-glob": { - "type": "npm", - "name": "npm:is-glob", - "data": { - "version": "4.0.3", - "packageName": "is-glob", - "hash": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==" - } - }, - "npm:is-html-content": { - "type": "npm", - "name": "npm:is-html-content", - "data": { - "version": "1.0.0", - "packageName": "is-html-content", - "hash": "sha512-GhUQOpN/YQ65rybhJ77MjabmrY39IZ/OHiKJZPC+WPg6KytNaqKlbs1tNizJ0Aluz4MOuAV9ItVSBKIZTAx0Iw==" - } - }, - "npm:is-html": { - "type": "npm", - "name": "npm:is-html", - "data": { - "version": "2.0.0", - "packageName": "is-html", - "hash": "sha512-S+OpgB5i7wzIue/YSE5hg0e5ZYfG3hhpNh9KGl6ayJ38p7ED6wxQLd1TV91xHpcTvw90KMJ9EwN3F/iNflHBVg==" - } - }, - "npm:is-interactive": { - "type": "npm", - "name": "npm:is-interactive", - "data": { - "version": "1.0.0", - "packageName": "is-interactive", - "hash": "sha512-2HvIEKRoqS62guEC+qBjpvRubdX910WCMuJTZ+I9yvqKU2/12eSL549HMwtabb4oupdj2sMP50k+XJfB/8JE6w==" - } - }, - "npm:is-map": { - "type": "npm", - "name": "npm:is-map", - "data": { - "version": "2.0.3", - "packageName": "is-map", - "hash": "sha512-1Qed0/Hr2m+YqxnM09CjA2d/i6YZNfF6R2oRAOj36eUdS6qIV/huPJNSEpKbupewFs+ZsJlxsjjPbc0/afW6Lw==" - } - }, - "npm:is-negative-zero": { - "type": "npm", - "name": "npm:is-negative-zero", - "data": { - "version": "2.0.3", - "packageName": "is-negative-zero", - "hash": "sha512-5KoIu2Ngpyek75jXodFvnafB6DJgr3u8uuK0LEZJjrU19DrMD3EVERaR8sjz8CCGgpZvxPl9SuE1GMVPFHx1mw==" - } - }, - "npm:is-number-object": { - "type": "npm", - "name": "npm:is-number-object", - "data": { - "version": "1.1.1", - "packageName": "is-number-object", - "hash": "sha512-lZhclumE1G6VYD8VHe35wFaIif+CTy5SJIi5+3y4psDgWu4wPDoBhF8NxUOinEc7pHgiTsT6MaBb92rKhhD+Xw==" - } - }, - "npm:is-number": { - "type": "npm", - "name": "npm:is-number", - "data": { - "version": "7.0.0", - "packageName": "is-number", - "hash": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==" - } - }, - "npm:is-path-inside": { - "type": "npm", - "name": "npm:is-path-inside", - "data": { - "version": "4.0.0", - "packageName": "is-path-inside", - "hash": "sha512-lJJV/5dYS+RcL8uQdBDW9c9uWFLLBNRyFhnAKXw5tVqLlKZ4RMGZKv+YQ/IA3OhD+RpbJa1LLFM1FQPGyIXvOA==" - } - }, - "npm:is-plain-obj": { - "type": "npm", - "name": "npm:is-plain-obj", - "data": { - "version": "4.1.0", - "packageName": "is-plain-obj", - "hash": "sha512-+Pgi+vMuUNkJyExiMBt5IlFoMyKnr5zhJ4Uspz58WOhBF5QoIZkFyNHIbBAtHwzVAgk5RtndVNsDRN61/mmDqg==" - } - }, - "npm:is-promise": { - "type": "npm", - "name": "npm:is-promise", - "data": { - "version": "4.0.0", - "packageName": "is-promise", - "hash": "sha512-hvpoI6korhJMnej285dSg6nu1+e6uxs7zG3BYAm5byqDsgJNWwxzM6z6iZiAgQR4TJ30JmBTOwqZUw3WlyH3AQ==" - } - }, - "npm:is-property": { - "type": "npm", - "name": "npm:is-property", - "data": { - "version": "1.0.2", - "packageName": "is-property", - "hash": "sha512-Ks/IoX00TtClbGQr4TWXemAnktAQvYB7HzcCxDGqEZU6oCmb2INHuOoKxbtR+HFkmYWBKv/dOZtGRiAjDhj92g==" - } - }, - "npm:is-regex": { - "type": "npm", - "name": "npm:is-regex", - "data": { - "version": "1.2.1", - "packageName": "is-regex", - "hash": "sha512-MjYsKHO5O7mCsmRGxWcLWheFqN9DJ/2TmngvjKXihe6efViPqc274+Fx/4fYj/r03+ESvBdTXK0V6tA3rgez1g==" - } - }, - "npm:is-set": { - "type": "npm", - "name": "npm:is-set", - "data": { - "version": "2.0.3", - "packageName": "is-set", - "hash": "sha512-iPAjerrse27/ygGLxw+EBR9agv9Y6uLeYVJMu+QNCoouJ1/1ri0mGrcWpfCqFZuzzx3WjtwxG098X+n4OuRkPg==" - } - }, - "npm:is-shared-array-buffer": { - "type": "npm", - "name": "npm:is-shared-array-buffer", - "data": { - "version": "1.0.4", - "packageName": "is-shared-array-buffer", - "hash": "sha512-ISWac8drv4ZGfwKl5slpHG9OwPNty4jOWPRIhBpxOoD+hqITiwuipOQ2bNthAzwA3B4fIjO4Nln74N0S9byq8A==" - } - }, - "npm:is-stream": { - "type": "npm", - "name": "npm:is-stream", - "data": { - "version": "4.0.1", - "packageName": "is-stream", - "hash": "sha512-Dnz92NInDqYckGEUJv689RbRiTSEHCQ7wOVeALbkOz999YpqT46yMRIGtSNl2iCL1waAZSx40+h59NV/EwzV/A==" - } - }, - "npm:is-string": { - "type": "npm", - "name": "npm:is-string", - "data": { - "version": "1.1.1", - "packageName": "is-string", - "hash": "sha512-BtEeSsoaQjlSPBemMQIrY1MY0uM6vnS1g5fmufYOtnxLGUZM2178PKbhsk7Ffv58IX+ZtcvoGwccYsh0PglkAA==" - } - }, - "npm:is-symbol": { - "type": "npm", - "name": "npm:is-symbol", - "data": { - "version": "1.1.1", - "packageName": "is-symbol", - "hash": "sha512-9gGx6GTtCQM73BgmHQXfDmLtfjjTUDSyoxTCbp5WtoixAhfgsDirWIcVQ/IHpvI5Vgd5i/J5F7B9cN/WlVbC/w==" - } - }, - "npm:is-typed-array": { - "type": "npm", - "name": "npm:is-typed-array", - "data": { - "version": "1.1.15", - "packageName": "is-typed-array", - "hash": "sha512-p3EcsicXjit7SaskXHs1hA91QxgTw46Fv6EFKKGS5DRFLD8yKnohjF3hxoju94b/OcMZoQukzpPpBE9uLVKzgQ==" - } - }, - "npm:is-unicode-supported@0.1.0": { - "type": "npm", - "name": "npm:is-unicode-supported@0.1.0", - "data": { - "version": "0.1.0", - "packageName": "is-unicode-supported", - "hash": "sha512-knxG2q4UC3u8stRGyAVJCOdxFmv5DZiRcdlIaAQXAbSfJya+OhopNotLQrstBhququ4ZpuKbDc/8S6mgXgPFPw==" - } - }, - "npm:is-unicode-supported": { - "type": "npm", - "name": "npm:is-unicode-supported", - "data": { - "version": "2.1.0", - "packageName": "is-unicode-supported", - "hash": "sha512-mE00Gnza5EEB3Ds0HfMyllZzbBrmLOX3vfWoj9A9PEnTfratQ/BcaJOuMhnkhjXvb2+FkY3VuHqtAGpTPmglFQ==" - } - }, - "npm:is-url-http": { - "type": "npm", - "name": "npm:is-url-http", - "data": { - "version": "2.3.13", - "packageName": "is-url-http", - "hash": "sha512-DUPPybagMEVM0W968iMk0J4ztU72/HOuwMs04Kd8SCDQ/CEV31SdudlOR7qn4zMXmJuLN6+Ak5K60tcVE8tlRA==" - } - }, - "npm:is-url-superb": { - "type": "npm", - "name": "npm:is-url-superb", - "data": { - "version": "4.0.0", - "packageName": "is-url-superb", - "hash": "sha512-GI+WjezhPPcbM+tqE9LnmsY5qqjwHzTvjJ36wxYX5ujNXefSUJ/T17r5bqDV8yLhcgB59KTPNOc9O9cmHTPWsA==" - } - }, - "npm:is-weakmap": { - "type": "npm", - "name": "npm:is-weakmap", - "data": { - "version": "2.0.2", - "packageName": "is-weakmap", - "hash": "sha512-K5pXYOm9wqY1RgjpL3YTkF39tni1XajUIkawTLUo9EZEVUFga5gSQJF8nNS7ZwJQ02y+1YCNYcMh+HIf1ZqE+w==" - } - }, - "npm:is-weakref": { - "type": "npm", - "name": "npm:is-weakref", - "data": { - "version": "1.1.1", - "packageName": "is-weakref", - "hash": "sha512-6i9mGWSlqzNMEqpCp93KwRS1uUOodk2OJ6b+sq7ZPDSy2WuI5NFIxp/254TytR8ftefexkWn5xNiHUNpPOfSew==" - } - }, - "npm:is-weakset": { - "type": "npm", - "name": "npm:is-weakset", - "data": { - "version": "2.0.4", - "packageName": "is-weakset", - "hash": "sha512-mfcwb6IzQyOKTs84CQMrOwW4gQcaTOAWJ0zzJCl2WSPDrWk/OzDaImWFH3djXhb24g4eudZfLRozAvPGw4d9hQ==" - } - }, - "npm:is-what": { - "type": "npm", - "name": "npm:is-what", - "data": { - "version": "4.1.16", - "packageName": "is-what", - "hash": "sha512-ZhMwEosbFJkA0YhFnNDgTM4ZxDRsS6HqTo7qsZM08fehyRYIYa0yHu5R6mgo1n/8MgaPBXiPimPD77baVFYg+A==" - } - }, - "npm:is-wsl": { - "type": "npm", - "name": "npm:is-wsl", - "data": { - "version": "2.2.0", - "packageName": "is-wsl", - "hash": "sha512-fKzAra0rGJUUBwGBgNkHZuToZcn+TtXHpeCgmkMJMMYx1sQDYaCSyjJBSCa2nH1DGm7s3n1oBnohoVTBaN7Lww==" - } - }, - "npm:isarray": { - "type": "npm", - "name": "npm:isarray", - "data": { - "version": "2.0.5", - "packageName": "isarray", - "hash": "sha512-xHjhDr3cNBK0BzdUJSPXZntQUx/mwMS5Rw4A7lPJ90XGAO6ISP/ePDNuo0vhqOZU+UD5JoodwCAAoZQd3FeAKw==" - } - }, - "npm:isbot-fast": { - "type": "npm", - "name": "npm:isbot-fast", - "data": { - "version": "1.2.0", - "packageName": "isbot-fast", - "hash": "sha512-twjuQzy2gKMDVfKGQyQqrx6Uy4opu/fiVUTTpdqtFsd7OQijIp5oXvb27n5EemYXaijh5fomndJt/SPRLsEdSg==" - } - }, - "npm:isexe@2.0.0": { - "type": "npm", - "name": "npm:isexe@2.0.0", - "data": { - "version": "2.0.0", - "packageName": "isexe", - "hash": "sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==" - } - }, - "npm:isexe@3.1.1": { - "type": "npm", - "name": "npm:isexe@3.1.1", - "data": { - "version": "3.1.1", - "packageName": "isexe", - "hash": "sha512-LpB/54B+/2J5hqQ7imZHfdU31OlgQqx7ZicVlkm9kzg9/w8GKLEcFfJl/t7DCEDueOyBAD6zCCwTO6Fzs0NoEQ==" - } - }, - "npm:isexe": { - "type": "npm", - "name": "npm:isexe", - "data": { - "version": "4.0.0", - "packageName": "isexe", - "hash": "sha512-FFUtZMpoZ8RqHS3XeXEmHWLA4thH+ZxCv2lOiPIn1Xc7CxrqhWzNSDzD+/chS/zbYezmiwWLdQC09JdQKmthOw==" - } - }, - "npm:iterator.prototype": { - "type": "npm", - "name": "npm:iterator.prototype", - "data": { - "version": "1.1.5", - "packageName": "iterator.prototype", - "hash": "sha512-H0dkQoCa3b2VEeKQBOxFph+JAbcrQdE7KC0UkqwpLmv2EC4P41QXP+rqo9wYodACiG5/WM5s9oDApTU8utwj9g==" - } - }, - "npm:itty-router": { - "type": "npm", - "name": "npm:itty-router", - "data": { - "version": "5.0.22", - "packageName": "itty-router", - "hash": "sha512-9hmdGErWdYDOurGYxSbqLhy4EFReIwk71hMZTJ5b+zfa2zjMNV1ftFno2b8VjAQvX615gNB8Qxbl9JMRqHnIVA==" - } - }, - "npm:jackspeak@3.4.3": { - "type": "npm", - "name": "npm:jackspeak@3.4.3", - "data": { - "version": "3.4.3", - "packageName": "jackspeak", - "hash": "sha512-OGlZQpz2yfahA/Rd1Y8Cd9SIEsqvXkLVoSw/cgwhnhFMDbsQFeZYoJJ7bIZBS9BcamUW96asq/npPWugM+RQBw==" - } - }, - "npm:jackspeak": { - "type": "npm", - "name": "npm:jackspeak", - "data": { - "version": "4.2.3", - "packageName": "jackspeak", - "hash": "sha512-ykkVRwrYvFm1nb2AJfKKYPr0emF6IiXDYUaFx4Zn9ZuIH7MrzEZ3sD5RlqGXNRpHtvUHJyOnCEFxOlNDtGo7wg==" - } - }, - "npm:jake": { - "type": "npm", - "name": "npm:jake", - "data": { - "version": "10.9.4", - "packageName": "jake", - "hash": "sha512-wpHYzhxiVQL+IV05BLE2Xn34zW1S223hvjtqk0+gsPrwd/8JNLXJgZZM/iPFsYc1xyphF+6M6EvdE5E9MBGkDA==" - } - }, - "npm:jest-diff": { - "type": "npm", - "name": "npm:jest-diff", - "data": { - "version": "30.3.0", - "packageName": "jest-diff", - "hash": "sha512-n3q4PDQjS4LrKxfWB3Z5KNk1XjXtZTBwQp71OP0Jo03Z6V60x++K5L8k6ZrW8MY8pOFylZvHM0zsjS1RqlHJZQ==" - } - }, - "npm:jiti": { - "type": "npm", - "name": "npm:jiti", - "data": { - "version": "2.6.1", - "packageName": "jiti", - "hash": "sha512-ekilCSN1jwRvIbgeg/57YFh8qQDNbwDb9xT/qu2DAHbFFZUicIl4ygVaAvzveMhMVr3LnpSKTNnwt8PoOfmKhQ==" - } - }, - "npm:jju": { - "type": "npm", - "name": "npm:jju", - "data": { - "version": "1.4.0", - "packageName": "jju", - "hash": "sha512-8wb9Yw966OSxApiCt0K3yNJL8pnNeIv+OEq2YMidz4FKP6nonSRoOXc80iXY4JaN2FC11B9qsNmDsm+ZOfMROA==" - } - }, - "npm:jose": { - "type": "npm", - "name": "npm:jose", - "data": { - "version": "6.1.0", - "packageName": "jose", - "hash": "sha512-TTQJyoEoKcC1lscpVDCSsVgYzUDg/0Bt3WE//WiTPK6uOCQC2KZS4MpugbMWt/zyjkopgZoXhZuCi00gLudfUA==" - } - }, - "npm:js-tokens": { - "type": "npm", - "name": "npm:js-tokens", - "data": { - "version": "4.0.0", - "packageName": "js-tokens", - "hash": "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==" - } - }, - "npm:js-yaml@3.14.2": { - "type": "npm", - "name": "npm:js-yaml@3.14.2", - "data": { - "version": "3.14.2", - "packageName": "js-yaml", - "hash": "sha512-PMSmkqxr106Xa156c2M265Z+FTrPl+oxd/rgOQy2tijQeK5TxQ43psO1ZCwhVOSdnn+RzkzlRz/eY4BgJBYVpg==" - } - }, - "npm:js-yaml": { - "type": "npm", - "name": "npm:js-yaml", - "data": { - "version": "4.1.1", - "packageName": "js-yaml", - "hash": "sha512-qQKT4zQxXl8lLwBtHMWwaTcGfFOZviOJet3Oy/xmGk2gZH677CJM9EvtfdSkgWcATZhj/55JZ0rmy3myCT5lsA==" - } - }, - "npm:jsesc": { - "type": "npm", - "name": "npm:jsesc", - "data": { - "version": "3.1.0", - "packageName": "jsesc", - "hash": "sha512-/sM3dO2FOzXjKQhJuo0Q173wf2KOo8t4I8vHy6lF9poUp7bKT0/NHE8fPX23PwfhnykfqnC2xRxOnVw5XuGIaA==" - } - }, - "npm:json-buffer": { - "type": "npm", - "name": "npm:json-buffer", - "data": { - "version": "3.0.1", - "packageName": "json-buffer", - "hash": "sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ==" - } - }, - "npm:json-loose": { - "type": "npm", - "name": "npm:json-loose", - "data": { - "version": "1.2.4", - "packageName": "json-loose", - "hash": "sha512-lwMWNC5pvVI33rhYWmAsmtICWE2IH7euDY/iIPeMFE5AuzAifYgqQrjqSMzwbrFV6MWPs41XD+CajElHI4cZMQ==" - } - }, - "npm:json-parse-even-better-errors@2.3.1": { - "type": "npm", - "name": "npm:json-parse-even-better-errors@2.3.1", - "data": { - "version": "2.3.1", - "packageName": "json-parse-even-better-errors", - "hash": "sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w==" - } - }, - "npm:json-parse-even-better-errors": { - "type": "npm", - "name": "npm:json-parse-even-better-errors", - "data": { - "version": "4.0.0", - "packageName": "json-parse-even-better-errors", - "hash": "sha512-lR4MXjGNgkJc7tkQ97kb2nuEMnNCyU//XYVH0MKTGcXEiSudQ5MKGKen3C5QubYy0vmq+JGitUg92uuywGEwIA==" - } - }, - "npm:json-schema-ref-resolver": { - "type": "npm", - "name": "npm:json-schema-ref-resolver", - "data": { - "version": "3.0.0", - "packageName": "json-schema-ref-resolver", - "hash": "sha512-hOrZIVL5jyYFjzk7+y7n5JDzGlU8rfWDuYyHwGa2WA8/pcmMHezp2xsVwxrebD/Q9t8Nc5DboieySDpCp4WG4A==" - } - }, - "npm:json-schema-traverse": { - "type": "npm", - "name": "npm:json-schema-traverse", - "data": { - "version": "0.4.1", - "packageName": "json-schema-traverse", - "hash": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==" - } - }, - "npm:json-schema-traverse@1.0.0": { - "type": "npm", - "name": "npm:json-schema-traverse@1.0.0", - "data": { - "version": "1.0.0", - "packageName": "json-schema-traverse", - "hash": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==" - } - }, - "npm:json-stable-stringify-without-jsonify": { - "type": "npm", - "name": "npm:json-stable-stringify-without-jsonify", - "data": { - "version": "1.0.1", - "packageName": "json-stable-stringify-without-jsonify", - "hash": "sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==" - } - }, - "npm:json5": { - "type": "npm", - "name": "npm:json5", - "data": { - "version": "2.2.3", - "packageName": "json5", - "hash": "sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==" - } - }, - "npm:jsonc-parser@3.2.0": { - "type": "npm", - "name": "npm:jsonc-parser@3.2.0", - "data": { - "version": "3.2.0", - "packageName": "jsonc-parser", - "hash": "sha512-gfFQZrcTc8CnKXp6Y4/CBT3fTc0OVuDofpre4aEeEpSBPV5X5v4+Vmx+8snU7RLPrNHPKSgLxGo9YuQzz20o+w==" - } - }, - "npm:jsonc-parser": { - "type": "npm", - "name": "npm:jsonc-parser", - "data": { - "version": "3.3.1", - "packageName": "jsonc-parser", - "hash": "sha512-HUgH65KyejrUFPvHFPbqOY0rsFip3Bo5wb4ngvdi1EpCYWUQDC5V+Y7mZws+DLkr4M//zQJoanu1SP+87Dv1oQ==" - } - }, - "npm:jsx-ast-utils": { - "type": "npm", - "name": "npm:jsx-ast-utils", - "data": { - "version": "3.3.5", - "packageName": "jsx-ast-utils", - "hash": "sha512-ZZow9HBI5O6EPgSJLUb8n2NKgmVWTwCvHGwFuJlMjvLFqlGG6pjirPhtdsseaLZjSibD8eegzmYpUZwoIlj2cQ==" - } - }, - "npm:kebab-case": { - "type": "npm", - "name": "npm:kebab-case", - "data": { - "version": "1.0.2", - "packageName": "kebab-case", - "hash": "sha512-7n6wXq4gNgBELfDCpzKc+mRrZFs7D+wgfF5WRFLNAr4DA/qtr9Js8uOAVAfHhuLMfAcQ0pRKqbpjx+TcJVdE1Q==" - } - }, - "npm:keyv": { - "type": "npm", - "name": "npm:keyv", - "data": { - "version": "4.5.4", - "packageName": "keyv", - "hash": "sha512-oxVHkHR/EJf2CNXnWxRLW6mg7JyCCUcG0DtEGmL2ctUo1PNTin1PUil+r/+4r5MpVgC/fn1kjsx7mjSujKqIpw==" - } - }, - "npm:kill-process-group": { - "type": "npm", - "name": "npm:kill-process-group", - "data": { - "version": "1.0.13", - "packageName": "kill-process-group", - "hash": "sha512-BbOC8H7O8mvETYdkp2t5B3TmhNkwbFXUAb6by48wBei0bbUHXXEaD+80uOaTGAmeuSq37P6CUYHetsK5xB2vCA==" - } - }, - "npm:kleur": { - "type": "npm", - "name": "npm:kleur", - "data": { - "version": "4.1.5", - "packageName": "kleur", - "hash": "sha512-o+NO+8WrRiQEE4/7nwRJhN1HWpVmJm511pBHUxPLtp0BUISzlBplORYSmTclCnJvQq2tKu/sgl3xVpkc7ZWuQQ==" - } - }, - "npm:knip": { - "type": "npm", - "name": "npm:knip", - "data": { - "version": "5.88.1", - "packageName": "knip", - "hash": "sha512-tpy5o7zu1MjawVkLPuahymVJekYY3kYjvzcoInhIchgePxTlo+api90tBv2KfhAIe5uXh+mez1tAfmbv8/TiZg==" - } - }, - "npm:known-css-properties": { - "type": "npm", - "name": "npm:known-css-properties", - "data": { - "version": "0.30.0", - "packageName": "known-css-properties", - "hash": "sha512-VSWXYUnsPu9+WYKkfmJyLKtIvaRJi1kXUqVmBACORXZQxT5oZDsoZ2vQP+bQFDnWtpI/4eq3MLoRMjI2fnLzTQ==" - } - }, - "npm:kysely-d1": { - "type": "npm", - "name": "npm:kysely-d1", - "data": { - "version": "0.4.0", - "packageName": "kysely-d1", - "hash": "sha512-wUcVvQNtm30OTfuo7Ad5vYJ1qHqPXOCZc+zWchVKNyuvqY3u8OuGw4gmUx1Ypdx2wRVFLHVQC9I7v0pTmF7Nkw==" - } - }, - "npm:kysely": { - "type": "npm", - "name": "npm:kysely", - "data": { - "version": "0.28.14", - "packageName": "kysely", - "hash": "sha512-SU3lgh0rPvq7upc6vvdVrCsSMUG1h3ChvHVOY7wJ2fw4C9QEB7X3d5eyYEyULUX7UQtxZJtZXGuT6U2US72UYA==" - } - }, - "npm:levn": { - "type": "npm", - "name": "npm:levn", - "data": { - "version": "0.4.1", - "packageName": "levn", - "hash": "sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==" - } - }, - "npm:light-my-request": { - "type": "npm", - "name": "npm:light-my-request", - "data": { - "version": "6.6.0", - "packageName": "light-my-request", - "hash": "sha512-CHYbu8RtboSIoVsHZ6Ye4cj4Aw/yg2oAFimlF7mNvfDV192LR7nDiKtSIfCuLT7KokPSTn/9kfVLm5OGN0A28A==" - } - }, - "npm:lightningcss-android-arm64": { - "type": "npm", - "name": "npm:lightningcss-android-arm64", - "data": { - "version": "1.32.0", - "packageName": "lightningcss-android-arm64", - "hash": "sha512-YK7/ClTt4kAK0vo6w3X+Pnm0D2cf2vPHbhOXdoNti1Ga0al1P4TBZhwjATvjNwLEBCnKvjJc2jQgHXH0NEwlAg==" - } - }, - "npm:lightningcss-darwin-arm64": { - "type": "npm", - "name": "npm:lightningcss-darwin-arm64", - "data": { - "version": "1.32.0", - "packageName": "lightningcss-darwin-arm64", - "hash": "sha512-RzeG9Ju5bag2Bv1/lwlVJvBE3q6TtXskdZLLCyfg5pt+HLz9BqlICO7LZM7VHNTTn/5PRhHFBSjk5lc4cmscPQ==" - } - }, - "npm:lightningcss-darwin-x64": { - "type": "npm", - "name": "npm:lightningcss-darwin-x64", - "data": { - "version": "1.32.0", - "packageName": "lightningcss-darwin-x64", - "hash": "sha512-U+QsBp2m/s2wqpUYT/6wnlagdZbtZdndSmut/NJqlCcMLTWp5muCrID+K5UJ6jqD2BFshejCYXniPDbNh73V8w==" - } - }, - "npm:lightningcss-freebsd-x64": { - "type": "npm", - "name": "npm:lightningcss-freebsd-x64", - "data": { - "version": "1.32.0", - "packageName": "lightningcss-freebsd-x64", - "hash": "sha512-JCTigedEksZk3tHTTthnMdVfGf61Fky8Ji2E4YjUTEQX14xiy/lTzXnu1vwiZe3bYe0q+SpsSH/CTeDXK6WHig==" - } - }, - "npm:lightningcss-linux-arm-gnueabihf": { - "type": "npm", - "name": "npm:lightningcss-linux-arm-gnueabihf", - "data": { - "version": "1.32.0", - "packageName": "lightningcss-linux-arm-gnueabihf", - "hash": "sha512-x6rnnpRa2GL0zQOkt6rts3YDPzduLpWvwAF6EMhXFVZXD4tPrBkEFqzGowzCsIWsPjqSK+tyNEODUBXeeVHSkw==" - } - }, - "npm:lightningcss-linux-arm64-gnu": { - "type": "npm", - "name": "npm:lightningcss-linux-arm64-gnu", - "data": { - "version": "1.32.0", - "packageName": "lightningcss-linux-arm64-gnu", - "hash": "sha512-0nnMyoyOLRJXfbMOilaSRcLH3Jw5z9HDNGfT/gwCPgaDjnx0i8w7vBzFLFR1f6CMLKF8gVbebmkUN3fa/kQJpQ==" - } - }, - "npm:lightningcss-linux-arm64-musl": { - "type": "npm", - "name": "npm:lightningcss-linux-arm64-musl", - "data": { - "version": "1.32.0", - "packageName": "lightningcss-linux-arm64-musl", - "hash": "sha512-UpQkoenr4UJEzgVIYpI80lDFvRmPVg6oqboNHfoH4CQIfNA+HOrZ7Mo7KZP02dC6LjghPQJeBsvXhJod/wnIBg==" - } - }, - "npm:lightningcss-linux-x64-gnu": { - "type": "npm", - "name": "npm:lightningcss-linux-x64-gnu", - "data": { - "version": "1.32.0", - "packageName": "lightningcss-linux-x64-gnu", - "hash": "sha512-V7Qr52IhZmdKPVr+Vtw8o+WLsQJYCTd8loIfpDaMRWGUZfBOYEJeyJIkqGIDMZPwPx24pUMfwSxxI8phr/MbOA==" - } - }, - "npm:lightningcss-linux-x64-musl": { - "type": "npm", - "name": "npm:lightningcss-linux-x64-musl", - "data": { - "version": "1.32.0", - "packageName": "lightningcss-linux-x64-musl", - "hash": "sha512-bYcLp+Vb0awsiXg/80uCRezCYHNg1/l3mt0gzHnWV9XP1W5sKa5/TCdGWaR/zBM2PeF/HbsQv/j2URNOiVuxWg==" - } - }, - "npm:lightningcss-win32-arm64-msvc": { - "type": "npm", - "name": "npm:lightningcss-win32-arm64-msvc", - "data": { - "version": "1.32.0", - "packageName": "lightningcss-win32-arm64-msvc", - "hash": "sha512-8SbC8BR40pS6baCM8sbtYDSwEVQd4JlFTOlaD3gWGHfThTcABnNDBda6eTZeqbofalIJhFx0qKzgHJmcPTnGdw==" - } - }, - "npm:lightningcss-win32-x64-msvc": { - "type": "npm", - "name": "npm:lightningcss-win32-x64-msvc", - "data": { - "version": "1.32.0", - "packageName": "lightningcss-win32-x64-msvc", - "hash": "sha512-Amq9B/SoZYdDi1kFrojnoqPLxYhQ4Wo5XiL8EVJrVsB8ARoC1PWW6VGtT0WKCemjy8aC+louJnjS7U18x3b06Q==" - } - }, - "npm:lightningcss": { - "type": "npm", - "name": "npm:lightningcss", - "data": { - "version": "1.32.0", - "packageName": "lightningcss", - "hash": "sha512-NXYBzinNrblfraPGyrbPoD19C1h9lfI/1mzgWYvXUTe414Gz/X1FD2XBZSZM7rRTrMA8JL3OtAaGifrIKhQ5yQ==" - } - }, - "npm:lilconfig": { - "type": "npm", - "name": "npm:lilconfig", - "data": { - "version": "2.1.0", - "packageName": "lilconfig", - "hash": "sha512-utWOt/GHzuUxnLKxB6dk81RoOeoNeHgbrXiuGk4yyF5qlRz+iIVWu56E2fqGHFrXz0QNUhLB/8nKqvRH66JKGQ==" - } - }, - "npm:lines-and-columns@1.2.4": { - "type": "npm", - "name": "npm:lines-and-columns@1.2.4", - "data": { - "version": "1.2.4", - "packageName": "lines-and-columns", - "hash": "sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==" - } - }, - "npm:lines-and-columns": { - "type": "npm", - "name": "npm:lines-and-columns", - "data": { - "version": "2.0.3", - "packageName": "lines-and-columns", - "hash": "sha512-cNOjgCnLB+FnvWWtyRTzmB3POJ+cXxTA81LoW7u8JdmhfXzriropYwpjShnz1QLLWsQwY7nIxoDmcPTwphDK9w==" - } - }, - "npm:locate-path@3.0.0": { - "type": "npm", - "name": "npm:locate-path@3.0.0", - "data": { - "version": "3.0.0", - "packageName": "locate-path", - "hash": "sha512-7AO748wWnIhNqAuaty2ZWHkQHRSNfPVIsPIfwEOWO22AmaoVrWavlOcMR5nzTLNYvp36X220/maaRsrec1G65A==" - } - }, - "npm:locate-path": { - "type": "npm", - "name": "npm:locate-path", - "data": { - "version": "6.0.0", - "packageName": "locate-path", - "hash": "sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==" - } - }, - "npm:lodash.memoize": { - "type": "npm", - "name": "npm:lodash.memoize", - "data": { - "version": "4.1.2", - "packageName": "lodash.memoize", - "hash": "sha512-t7j+NzmgnQzTAYXcsHYLgimltOV1MXHtlOWf6GjL9Kj8GK5FInw5JotxvbOs+IvV1/Dzo04/fCGfLVs7aXb4Ag==" - } - }, - "npm:lodash.merge": { - "type": "npm", - "name": "npm:lodash.merge", - "data": { - "version": "4.6.2", - "packageName": "lodash.merge", - "hash": "sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==" - } - }, - "npm:lodash.uniq": { - "type": "npm", - "name": "npm:lodash.uniq", - "data": { - "version": "4.5.0", - "packageName": "lodash.uniq", - "hash": "sha512-xfBaXQd9ryd9dlSDvnvI0lvxfLJlYAZzXomUYzLKtUeOQvOP5piqAWuGtrhWeqaXK9hhoM/iyJc5AV+XfsX3HQ==" - } - }, - "npm:lodash@4.17.21": { - "type": "npm", - "name": "npm:lodash@4.17.21", - "data": { - "version": "4.17.21", - "packageName": "lodash", - "hash": "sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==" - } - }, - "npm:lodash": { - "type": "npm", - "name": "npm:lodash", - "data": { - "version": "4.17.23", - "packageName": "lodash", - "hash": "sha512-LgVTMpQtIopCi79SJeDiP0TfWi5CNEc/L/aRdTh3yIvmZXTnheWpKjSZhnvMl8iXbC1tFg9gdHHDMLoV7CnG+w==" - } - }, - "npm:log-symbols": { - "type": "npm", - "name": "npm:log-symbols", - "data": { - "version": "4.1.0", - "packageName": "log-symbols", - "hash": "sha512-8XPvpAA8uyhfteu8pIvQxpJZ7SYYdpUivZpGy6sFsBuKRY/7rQGavedeB8aK+Zkyq6upMFVL/9AW6vOYzfRyLg==" - } - }, - "npm:long": { - "type": "npm", - "name": "npm:long", - "data": { - "version": "5.3.2", - "packageName": "long", - "hash": "sha512-mNAgZ1GmyNhD7AuqnTG3/VQ26o760+ZYBPKjPvugO8+nLbYfX6TVpJPseBvopbdY+qpZ/lKUnmEc1LeZYS3QAA==" - } - }, - "npm:longest-streak": { - "type": "npm", - "name": "npm:longest-streak", - "data": { - "version": "3.1.0", - "packageName": "longest-streak", - "hash": "sha512-9Ri+o0JYgehTaVBBDoMqIl8GXtbWg711O3srftcHhZ0dqnETqLaoIK0x17fUw9rFSlK/0NlsKe0Ahhyl5pXE2g==" - } - }, - "npm:loose-envify": { - "type": "npm", - "name": "npm:loose-envify", - "data": { - "version": "1.4.0", - "packageName": "loose-envify", - "hash": "sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==" - } - }, - "npm:lowercase-keys": { - "type": "npm", - "name": "npm:lowercase-keys", - "data": { - "version": "2.0.0", - "packageName": "lowercase-keys", - "hash": "sha512-tqNXrS78oMOE73NMxK4EMLQsQowWf8jKooH9g7xPavRT706R6bkQJ6DY2Te7QukaZsulxa30wQ7bk0pm4XiHmA==" - } - }, - "npm:lru-cache@10.4.3": { - "type": "npm", - "name": "npm:lru-cache@10.4.3", - "data": { - "version": "10.4.3", - "packageName": "lru-cache", - "hash": "sha512-JNAzZcXrCt42VGLuYz0zfAzDfAvJWW6AfYlDBQyDV5DClI2m5sAmK+OIO7s59XfsRsWHp02jAJrRadPRGTt6SQ==" - } - }, - "npm:lru-cache@11.2.2": { - "type": "npm", - "name": "npm:lru-cache@11.2.2", - "data": { - "version": "11.2.2", - "packageName": "lru-cache", - "hash": "sha512-F9ODfyqML2coTIsQpSkRHnLSZMtkU8Q+mSfcaIyKwy58u+8k5nvAYeiNhsyMARvzNcXJ9QfWVrcPsC9e9rAxtg==" - } - }, - "npm:lru-cache": { - "type": "npm", - "name": "npm:lru-cache", - "data": { - "version": "5.1.1", - "packageName": "lru-cache", - "hash": "sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==" - } - }, - "npm:lru-cache@7.18.3": { - "type": "npm", - "name": "npm:lru-cache@7.18.3", - "data": { - "version": "7.18.3", - "packageName": "lru-cache", - "hash": "sha512-jumlc0BIUrS3qJGgIkWZsyfAM7NCWiBcCDhnd+3NNM5KbBmLTgHVfWBcg6W+rLUsIpzpERPsvwUP7CckAQSOoA==" - } - }, - "npm:lru.min": { - "type": "npm", - "name": "npm:lru.min", - "data": { - "version": "1.1.3", - "packageName": "lru.min", - "hash": "sha512-Lkk/vx6ak3rYkRR0Nhu4lFUT2VDnQSxBe8Hbl7f36358p6ow8Bnvr8lrLt98H8J1aGxfhbX4Fs5tYg2+FTwr5Q==" - } - }, - "npm:lucide-react": { - "type": "npm", - "name": "npm:lucide-react", - "data": { - "version": "0.577.0", - "packageName": "lucide-react", - "hash": "sha512-4LjoFv2eEPwYDPg/CUdBJQSDfPyzXCRrVW1X7jrx/trgxnxkHFjnVZINbzvzxjN70dxychOfg+FTYwBiS3pQ5A==" - } - }, - "npm:magic-regexp": { - "type": "npm", - "name": "npm:magic-regexp", - "data": { - "version": "0.10.0", - "packageName": "magic-regexp", - "hash": "sha512-Uly1Bu4lO1hwHUW0CQeSWuRtzCMNO00CmXtS8N6fyvB3B979GOEEeAkiTUDsmbYLAbvpUS/Kt5c4ibosAzVyVg==" - } - }, - "npm:magic-string": { - "type": "npm", - "name": "npm:magic-string", - "data": { - "version": "0.30.21", - "packageName": "magic-string", - "hash": "sha512-vd2F4YUyEXKGcLHoq+TEyCjxueSeHnFxyyjNp80yg0XV4vUhnDer/lvvlqM/arB5bXQN5K2/3oinyCRyx8T2CQ==" - } - }, - "npm:magicast": { - "type": "npm", - "name": "npm:magicast", - "data": { - "version": "0.5.2", - "packageName": "magicast", - "hash": "sha512-E3ZJh4J3S9KfwdjZhe2afj6R9lGIN5Pher1pF39UGrXRqq/VDaGVIGN13BjHd2u8B61hArAGOnso7nBOouW3TQ==" - } - }, - "npm:make-fetch-happen": { - "type": "npm", - "name": "npm:make-fetch-happen", - "data": { - "version": "14.0.3", - "packageName": "make-fetch-happen", - "hash": "sha512-QMjGbFTP0blj97EeidG5hk/QhKQ3T4ICckQGLgz38QF7Vgbk6e6FTARN8KhKxyBbWn8R0HU+bnw8aSoFPD4qtQ==" - } - }, - "npm:map-values-deep": { - "type": "npm", - "name": "npm:map-values-deep", - "data": { - "version": "1.0.2", - "packageName": "map-values-deep", - "hash": "sha512-br+tp4aANql3WnpDRjD14H7hHopPlJRnzCL0ZlGCRHAQZTU0g0x1rUQFq/ikb3zZQK+lW2AG7RJi+CFfQ8kSPA==" - } - }, - "npm:math-intrinsics": { - "type": "npm", - "name": "npm:math-intrinsics", - "data": { - "version": "1.1.0", - "packageName": "math-intrinsics", - "hash": "sha512-/IXtbwEk5HTPyEwyKX6hGkYXxM9nbj64B+ilVJnC/R6B0pH5G4V3b0pVbL7DBj4tkhBAppbQUlf6F6Xl9LHu1g==" - } - }, - "npm:mdast-builder": { - "type": "npm", - "name": "npm:mdast-builder", - "data": { - "version": "1.1.1", - "packageName": "mdast-builder", - "hash": "sha512-a3KBk/LmYD6wKsWi8WJrGU/rXR4yuF4Men0JO0z6dSZCm5FrXXWTRDjqK0vGSqa+1M6p9edeuypZAZAzSehTUw==" - } - }, - "npm:mdast-util-from-markdown": { - "type": "npm", - "name": "npm:mdast-util-from-markdown", - "data": { - "version": "2.0.3", - "packageName": "mdast-util-from-markdown", - "hash": "sha512-W4mAWTvSlKvf8L6J+VN9yLSqQ9AOAAvHuoDAmPkz4dHf553m5gVj2ejadHJhoJmcmxEnOv6Pa8XJhpxE93kb8Q==" - } - }, - "npm:mdast-util-phrasing": { - "type": "npm", - "name": "npm:mdast-util-phrasing", - "data": { - "version": "4.1.0", - "packageName": "mdast-util-phrasing", - "hash": "sha512-TqICwyvJJpBwvGAMZjj4J2n0X8QWp21b9l0o7eXyVJ25YNWYbJDVIyD1bZXE6WtV6RmKJVYmQAKWa0zWOABz2w==" - } - }, - "npm:mdast-util-to-markdown": { - "type": "npm", - "name": "npm:mdast-util-to-markdown", - "data": { - "version": "2.1.2", - "packageName": "mdast-util-to-markdown", - "hash": "sha512-xj68wMTvGXVOKonmog6LwyJKrYXZPvlwabaryTjLh9LuvovB/KAH+kvi8Gjj+7rJjsFi23nkUxRQv1KqSroMqA==" - } - }, - "npm:mdast-util-to-string": { - "type": "npm", - "name": "npm:mdast-util-to-string", - "data": { - "version": "4.0.0", - "packageName": "mdast-util-to-string", - "hash": "sha512-0H44vDimn51F0YwvxSJSm0eCDOJTRlmN0R1yBh4HLj9wiV1Dn0QoXGbvFAWj2hSItVTlCmBF1hqKlIyUBVFLPg==" - } - }, - "npm:mdast-util-toc": { - "type": "npm", - "name": "npm:mdast-util-toc", - "data": { - "version": "7.1.0", - "packageName": "mdast-util-toc", - "hash": "sha512-2TVKotOQzqdY7THOdn2gGzS9d1Sdd66bvxUyw3aNpWfcPXCLYSJCCgfPy30sEtuzkDraJgqF35dzgmz6xlvH/w==" - } - }, - "npm:mdn-data": { - "type": "npm", - "name": "npm:mdn-data", - "data": { - "version": "2.0.14", - "packageName": "mdn-data", - "hash": "sha512-dn6wd0uw5GsdswPFfsgMp5NSB0/aDe6fK94YJV/AJDYXL6HVLWBsxeq7js7Ad+mU2K9LAlwpk6kN2D5mwCPVow==" - } - }, - "npm:media-typer": { - "type": "npm", - "name": "npm:media-typer", - "data": { - "version": "1.1.0", - "packageName": "media-typer", - "hash": "sha512-aisnrDP4GNe06UcKFnV5bfMNPBUw4jsLGaWwWfnH3v02GnBuXX2MCVn5RbrWo0j3pczUilYblq7fQ7Nw2t5XKw==" - } - }, - "npm:memoize-one": { - "type": "npm", - "name": "npm:memoize-one", - "data": { - "version": "6.0.0", - "packageName": "memoize-one", - "hash": "sha512-rkpe71W0N0c0Xz6QD0eJETuWAJGnJ9afsl1srmwPrI+yBCkge5EycXXbYRyvL29zZVUWQCY7InPRCv3GDXuZNw==" - } - }, - "npm:memorystream": { - "type": "npm", - "name": "npm:memorystream", - "data": { - "version": "0.3.1", - "packageName": "memorystream", - "hash": "sha512-S3UwM3yj5mtUSEfP41UZmt/0SCoVYUcU1rkXv+BQ5Ig8ndL4sPoJNBUJERafdPb5jjHJGuMgytgKvKIf58XNBw==" - } - }, - "npm:merge-anything": { - "type": "npm", - "name": "npm:merge-anything", - "data": { - "version": "5.1.7", - "packageName": "merge-anything", - "hash": "sha512-eRtbOb1N5iyH0tkQDAoQ4Ipsp/5qSR79Dzrz8hEPxRX10RWWR/iQXdoKmBSRCThY1Fh5EhISDtpSc93fpxUniQ==" - } - }, - "npm:merge-descriptors": { - "type": "npm", - "name": "npm:merge-descriptors", - "data": { - "version": "2.0.0", - "packageName": "merge-descriptors", - "hash": "sha512-Snk314V5ayFLhp3fkUREub6WtjBfPdCPY1Ln8/8munuLuiYhsABgBVWsozAG+MWMbVEvcdcpbi9R7ww22l9Q3g==" - } - }, - "npm:merge2": { - "type": "npm", - "name": "npm:merge2", - "data": { - "version": "1.4.1", - "packageName": "merge2", - "hash": "sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==" - } - }, - "npm:micromark-core-commonmark": { - "type": "npm", - "name": "npm:micromark-core-commonmark", - "data": { - "version": "2.0.3", - "packageName": "micromark-core-commonmark", - "hash": "sha512-RDBrHEMSxVFLg6xvnXmb1Ayr2WzLAWjeSATAoxwKYJV94TeNavgoIdA0a9ytzDSVzBy2YKFK+emCPOEibLeCrg==" - } - }, - "npm:micromark-factory-destination": { - "type": "npm", - "name": "npm:micromark-factory-destination", - "data": { - "version": "2.0.1", - "packageName": "micromark-factory-destination", - "hash": "sha512-Xe6rDdJlkmbFRExpTOmRj9N3MaWmbAgdpSrBQvCFqhezUn4AHqJHbaEnfbVYYiexVSs//tqOdY/DxhjdCiJnIA==" - } - }, - "npm:micromark-factory-label": { - "type": "npm", - "name": "npm:micromark-factory-label", - "data": { - "version": "2.0.1", - "packageName": "micromark-factory-label", - "hash": "sha512-VFMekyQExqIW7xIChcXn4ok29YE3rnuyveW3wZQWWqF4Nv9Wk5rgJ99KzPvHjkmPXF93FXIbBp6YdW3t71/7Vg==" - } - }, - "npm:micromark-factory-space": { - "type": "npm", - "name": "npm:micromark-factory-space", - "data": { - "version": "2.0.1", - "packageName": "micromark-factory-space", - "hash": "sha512-zRkxjtBxxLd2Sc0d+fbnEunsTj46SWXgXciZmHq0kDYGnck/ZSGj9/wULTV95uoeYiK5hRXP2mJ98Uo4cq/LQg==" - } - }, - "npm:micromark-factory-title": { - "type": "npm", - "name": "npm:micromark-factory-title", - "data": { - "version": "2.0.1", - "packageName": "micromark-factory-title", - "hash": "sha512-5bZ+3CjhAd9eChYTHsjy6TGxpOFSKgKKJPJxr293jTbfry2KDoWkhBb6TcPVB4NmzaPhMs1Frm9AZH7OD4Cjzw==" - } - }, - "npm:micromark-factory-whitespace": { - "type": "npm", - "name": "npm:micromark-factory-whitespace", - "data": { - "version": "2.0.1", - "packageName": "micromark-factory-whitespace", - "hash": "sha512-Ob0nuZ3PKt/n0hORHyvoD9uZhr+Za8sFoP+OnMcnWK5lngSzALgQYKMr9RJVOWLqQYuyn6ulqGWSXdwf6F80lQ==" - } - }, - "npm:micromark-util-character": { - "type": "npm", - "name": "npm:micromark-util-character", - "data": { - "version": "2.1.1", - "packageName": "micromark-util-character", - "hash": "sha512-wv8tdUTJ3thSFFFJKtpYKOYiGP2+v96Hvk4Tu8KpCAsTMs6yi+nVmGh1syvSCsaxz45J6Jbw+9DD6g97+NV67Q==" - } - }, - "npm:micromark-util-chunked": { - "type": "npm", - "name": "npm:micromark-util-chunked", - "data": { - "version": "2.0.1", - "packageName": "micromark-util-chunked", - "hash": "sha512-QUNFEOPELfmvv+4xiNg2sRYeS/P84pTW0TCgP5zc9FpXetHY0ab7SxKyAQCNCc1eK0459uoLI1y5oO5Vc1dbhA==" - } - }, - "npm:micromark-util-classify-character": { - "type": "npm", - "name": "npm:micromark-util-classify-character", - "data": { - "version": "2.0.1", - "packageName": "micromark-util-classify-character", - "hash": "sha512-K0kHzM6afW/MbeWYWLjoHQv1sgg2Q9EccHEDzSkxiP/EaagNzCm7T/WMKZ3rjMbvIpvBiZgwR3dKMygtA4mG1Q==" - } - }, - "npm:micromark-util-combine-extensions": { - "type": "npm", - "name": "npm:micromark-util-combine-extensions", - "data": { - "version": "2.0.1", - "packageName": "micromark-util-combine-extensions", - "hash": "sha512-OnAnH8Ujmy59JcyZw8JSbK9cGpdVY44NKgSM7E9Eh7DiLS2E9RNQf0dONaGDzEG9yjEl5hcqeIsj4hfRkLH/Bg==" - } - }, - "npm:micromark-util-decode-numeric-character-reference": { - "type": "npm", - "name": "npm:micromark-util-decode-numeric-character-reference", - "data": { - "version": "2.0.2", - "packageName": "micromark-util-decode-numeric-character-reference", - "hash": "sha512-ccUbYk6CwVdkmCQMyr64dXz42EfHGkPQlBj5p7YVGzq8I7CtjXZJrubAYezf7Rp+bjPseiROqe7G6foFd+lEuw==" - } - }, - "npm:micromark-util-decode-string": { - "type": "npm", - "name": "npm:micromark-util-decode-string", - "data": { - "version": "2.0.1", - "packageName": "micromark-util-decode-string", - "hash": "sha512-nDV/77Fj6eH1ynwscYTOsbK7rR//Uj0bZXBwJZRfaLEJ1iGBR6kIfNmlNqaqJf649EP0F3NWNdeJi03elllNUQ==" - } - }, - "npm:micromark-util-encode": { - "type": "npm", - "name": "npm:micromark-util-encode", - "data": { - "version": "2.0.1", - "packageName": "micromark-util-encode", - "hash": "sha512-c3cVx2y4KqUnwopcO9b/SCdo2O67LwJJ/UyqGfbigahfegL9myoEFoDYZgkT7f36T0bLrM9hZTAaAyH+PCAXjw==" - } - }, - "npm:micromark-util-html-tag-name": { - "type": "npm", - "name": "npm:micromark-util-html-tag-name", - "data": { - "version": "2.0.1", - "packageName": "micromark-util-html-tag-name", - "hash": "sha512-2cNEiYDhCWKI+Gs9T0Tiysk136SnR13hhO8yW6BGNyhOC4qYFnwF1nKfD3HFAIXA5c45RrIG1ub11GiXeYd1xA==" - } - }, - "npm:micromark-util-normalize-identifier": { - "type": "npm", - "name": "npm:micromark-util-normalize-identifier", - "data": { - "version": "2.0.1", - "packageName": "micromark-util-normalize-identifier", - "hash": "sha512-sxPqmo70LyARJs0w2UclACPUUEqltCkJ6PhKdMIDuJ3gSf/Q+/GIe3WKl0Ijb/GyH9lOpUkRAO2wp0GVkLvS9Q==" - } - }, - "npm:micromark-util-resolve-all": { - "type": "npm", - "name": "npm:micromark-util-resolve-all", - "data": { - "version": "2.0.1", - "packageName": "micromark-util-resolve-all", - "hash": "sha512-VdQyxFWFT2/FGJgwQnJYbe1jjQoNTS4RjglmSjTUlpUMa95Htx9NHeYW4rGDJzbjvCsl9eLjMQwGeElsqmzcHg==" - } - }, - "npm:micromark-util-sanitize-uri": { - "type": "npm", - "name": "npm:micromark-util-sanitize-uri", - "data": { - "version": "2.0.1", - "packageName": "micromark-util-sanitize-uri", - "hash": "sha512-9N9IomZ/YuGGZZmQec1MbgxtlgougxTodVwDzzEouPKo3qFWvymFHWcnDi2vzV1ff6kas9ucW+o3yzJK9YB1AQ==" - } - }, - "npm:micromark-util-subtokenize": { - "type": "npm", - "name": "npm:micromark-util-subtokenize", - "data": { - "version": "2.1.0", - "packageName": "micromark-util-subtokenize", - "hash": "sha512-XQLu552iSctvnEcgXw6+Sx75GflAPNED1qx7eBJ+wydBb2KCbRZe+NwvIEEMM83uml1+2WSXpBAcp9IUCgCYWA==" - } - }, - "npm:micromark-util-symbol": { - "type": "npm", - "name": "npm:micromark-util-symbol", - "data": { - "version": "2.0.1", - "packageName": "micromark-util-symbol", - "hash": "sha512-vs5t8Apaud9N28kgCrRUdEed4UJ+wWNvicHLPxCa9ENlYuAY31M0ETy5y1vA33YoNPDFTghEbnh6efaE8h4x0Q==" - } - }, - "npm:micromark-util-types": { - "type": "npm", - "name": "npm:micromark-util-types", - "data": { - "version": "2.0.2", - "packageName": "micromark-util-types", - "hash": "sha512-Yw0ECSpJoViF1qTU4DC6NwtC4aWGt1EkzaQB8KPPyCRR8z9TWeV0HbEFGTO+ZY1wB22zmxnJqhPyTpOVCpeHTA==" - } - }, - "npm:micromark": { - "type": "npm", - "name": "npm:micromark", - "data": { - "version": "4.0.2", - "packageName": "micromark", - "hash": "sha512-zpe98Q6kvavpCr1NPVSCMebCKfD7CA2NqZ+rykeNhONIJBpc1tFKt9hucLGwha3jNTNI8lHpctWJWoimVF4PfA==" - } - }, - "npm:micromatch": { - "type": "npm", - "name": "npm:micromatch", - "data": { - "version": "4.0.8", - "packageName": "micromatch", - "hash": "sha512-PXwfBhYu0hBCPw8Dn0E+WDYb7af3dSLVWKi3HGv84IdF4TyFoC0ysxFd0Goxw7nSv4T/PzEJQxsYsEiFCKo2BA==" - } - }, - "npm:mime-db@1.52.0": { - "type": "npm", - "name": "npm:mime-db@1.52.0", - "data": { - "version": "1.52.0", - "packageName": "mime-db", - "hash": "sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==" - } - }, - "npm:mime-db": { - "type": "npm", - "name": "npm:mime-db", - "data": { - "version": "1.54.0", - "packageName": "mime-db", - "hash": "sha512-aU5EJuIN2WDemCcAp2vFBfp/m4EAhWJnUNSSw0ixs7/kXbd6Pg64EmwJkNdFhB8aWt1sH2CTXrLxo/iAGV3oPQ==" - } - }, - "npm:mime-types@2.1.35": { - "type": "npm", - "name": "npm:mime-types@2.1.35", - "data": { - "version": "2.1.35", - "packageName": "mime-types", - "hash": "sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==" - } - }, - "npm:mime-types": { - "type": "npm", - "name": "npm:mime-types", - "data": { - "version": "3.0.2", - "packageName": "mime-types", - "hash": "sha512-Lbgzdk0h4juoQ9fCKXW4by0UJqj+nOOrI9MJ1sSj4nI8aI2eo1qmvQEie4VD1glsS250n15LsWsYtCugiStS5A==" - } - }, - "npm:mime": { - "type": "npm", - "name": "npm:mime", - "data": { - "version": "1.6.0", - "packageName": "mime", - "hash": "sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg==" - } - }, - "npm:mime@3.0.0": { - "type": "npm", - "name": "npm:mime@3.0.0", - "data": { - "version": "3.0.0", - "packageName": "mime", - "hash": "sha512-jSCU7/VB1loIWBZe14aEYHU/+1UMEHoaO7qxCOVJOw9GgH72VAWppxNcjU+x9a2k3GSIBXNKxXQFqRvvZ7vr3A==" - } - }, - "npm:mimic-fn": { - "type": "npm", - "name": "npm:mimic-fn", - "data": { - "version": "2.1.0", - "packageName": "mimic-fn", - "hash": "sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==" - } - }, - "npm:mimic-response@1.0.1": { - "type": "npm", - "name": "npm:mimic-response@1.0.1", - "data": { - "version": "1.0.1", - "packageName": "mimic-response", - "hash": "sha512-j5EctnkH7amfV/q5Hgmoal1g2QHFJRraOtmx0JpIqkxhBhI/lJSl1nMpQ45hVarwNETOoWEimndZ4QK0RHxuxQ==" - } - }, - "npm:mimic-response": { - "type": "npm", - "name": "npm:mimic-response", - "data": { - "version": "3.1.0", - "packageName": "mimic-response", - "hash": "sha512-z0yWI+4FDrrweS8Zmt4Ej5HdJmky15+L2e6Wgn3+iK5fWzb6T3fhNFq2+MeTRb064c6Wr4N/wv0DzQTjNzHNGQ==" - } - }, - "npm:miniflare@4.20251217.0": { - "type": "npm", - "name": "npm:miniflare@4.20251217.0", - "data": { - "version": "4.20251217.0", - "packageName": "miniflare", - "hash": "sha512-8xsTQbPS6YV+ABZl9qiJIbsum6hbpbhqiyKpOVdzZrhK+1N8EFpT8R6aBZff7kezGmxYZSntjgjqTwJmj3JLgA==" - } - }, - "npm:miniflare": { - "type": "npm", - "name": "npm:miniflare", - "data": { - "version": "4.20260317.1", - "packageName": "miniflare", - "hash": "sha512-A3csI1HXEIfqe3oscgpoRMHdYlkReQKPH/g5JE53vFSjoM6YIAOGAzyDNeYffwd9oQkPWDj9xER8+vpxei8klA==" - } - }, - "npm:minimatch@10.2.3": { - "type": "npm", - "name": "npm:minimatch@10.2.3", - "data": { - "version": "10.2.3", - "packageName": "minimatch", - "hash": "sha512-Rwi3pnapEqirPSbWbrZaa6N3nmqq4Xer/2XooiOKyV3q12ML06f7MOuc5DVH8ONZIFhwIYQ3yzPH4nt7iWHaTg==" - } - }, - "npm:minimatch@10.2.4": { - "type": "npm", - "name": "npm:minimatch@10.2.4", - "data": { - "version": "10.2.4", - "packageName": "minimatch", - "hash": "sha512-oRjTw/97aTBN0RHbYCdtF1MQfvusSIBQM0IZEgzl6426+8jSC0nF1a/GmnVLpfB9yyr6g6FTqWqiZVbxrtaCIg==" - } - }, - "npm:minimatch": { - "type": "npm", - "name": "npm:minimatch", - "data": { - "version": "3.1.5", - "packageName": "minimatch", - "hash": "sha512-VgjWUsnnT6n+NUk6eZq77zeFdpW2LWDzP6zFGrCbHXiYNul5Dzqk2HHQ5uFH2DNW5Xbp8+jVzaeNt94ssEEl4w==" - } - }, - "npm:minimatch@5.1.9": { - "type": "npm", - "name": "npm:minimatch@5.1.9", - "data": { - "version": "5.1.9", - "packageName": "minimatch", - "hash": "sha512-7o1wEA2RyMP7Iu7GNba9vc0RWWGACJOCZBJX2GJWip0ikV+wcOsgVuY9uE8CPiyQhkGFSlhuSkZPavN7u1c2Fw==" - } - }, - "npm:minimatch@8.0.4": { - "type": "npm", - "name": "npm:minimatch@8.0.4", - "data": { - "version": "8.0.4", - "packageName": "minimatch", - "hash": "sha512-W0Wvr9HyFXZRGIDgCicunpQ299OKXs9RgZfaukz4qAW/pJhcpUfupc9c+OObPOFueNy8VSrZgEmDtk6Kh4WzDA==" - } - }, - "npm:minimatch@9.0.5": { - "type": "npm", - "name": "npm:minimatch@9.0.5", - "data": { - "version": "9.0.5", - "packageName": "minimatch", - "hash": "sha512-G6T0ZX48xgozx7587koeX9Ys2NYy6Gmv//P89sEte9V9whIapMNF4idKxnW2QtCcLiTWlb/wfCabAtAFWhhBow==" - } - }, - "npm:minimist": { - "type": "npm", - "name": "npm:minimist", - "data": { - "version": "1.2.8", - "packageName": "minimist", - "hash": "sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==" - } - }, - "npm:minipass-collect": { - "type": "npm", - "name": "npm:minipass-collect", - "data": { - "version": "2.0.1", - "packageName": "minipass-collect", - "hash": "sha512-D7V8PO9oaz7PWGLbCACuI1qEOsq7UKfLotx/C0Aet43fCUB/wfQ7DYeq2oR/svFJGYDHPr38SHATeaj/ZoKHKw==" - } - }, - "npm:minipass-fetch": { - "type": "npm", - "name": "npm:minipass-fetch", - "data": { - "version": "4.0.1", - "packageName": "minipass-fetch", - "hash": "sha512-j7U11C5HXigVuutxebFadoYBbd7VSdZWggSe64NVdvWNBqGAiXPL2QVCehjmw7lY1oF9gOllYbORh+hiNgfPgQ==" - } - }, - "npm:minipass-flush": { - "type": "npm", - "name": "npm:minipass-flush", - "data": { - "version": "1.0.5", - "packageName": "minipass-flush", - "hash": "sha512-JmQSYYpPUqX5Jyn1mXaRwOda1uQ8HP5KAT/oDSLCzt1BYRhQU0/hDtsB1ufZfEEzMZ9aAVmsBw8+FWsIXlClWw==" - } - }, - "npm:minipass-pipeline": { - "type": "npm", - "name": "npm:minipass-pipeline", - "data": { - "version": "1.2.4", - "packageName": "minipass-pipeline", - "hash": "sha512-xuIq7cIOt09RPRJ19gdi4b+RiNvDFYe5JH+ggNvBqGqpQXcru3PcRmOZuHBKWK1Txf9+cQ+HMVN4d6z46LZP7A==" - } - }, - "npm:minipass-sized": { - "type": "npm", - "name": "npm:minipass-sized", - "data": { - "version": "1.0.3", - "packageName": "minipass-sized", - "hash": "sha512-MbkQQ2CTiBMlA2Dm/5cY+9SWFEN8pzzOXi6rlM5Xxq0Yqbda5ZQy9sU75a673FE9ZK0Zsbr6Y5iP6u9nktfg2g==" - } - }, - "npm:minipass@3.3.6": { - "type": "npm", - "name": "npm:minipass@3.3.6", - "data": { - "version": "3.3.6", - "packageName": "minipass", - "hash": "sha512-DxiNidxSEK+tHG6zOIklvNOwm3hvCrbUrdtzY74U6HKTJxvIDfOUL5W5P2Ghd3DTkhhKPYGqeNUIh5qcM4YBfw==" - } - }, - "npm:minipass@4.2.8": { - "type": "npm", - "name": "npm:minipass@4.2.8", - "data": { - "version": "4.2.8", - "packageName": "minipass", - "hash": "sha512-fNzuVyifolSLFL4NzpF+wEF4qrgqaaKX0haXPQEdQ7NKAN+WecoKMHV09YcuL/DHxrUsYQOK3MiuDf7Ip2OXfQ==" - } - }, - "npm:minipass": { - "type": "npm", - "name": "npm:minipass", - "data": { - "version": "7.1.3", - "packageName": "minipass", - "hash": "sha512-tEBHqDnIoM/1rXME1zgka9g6Q2lcoCkxHLuc7ODJ5BxbP5d4c2Z5cGgtXAku59200Cx7diuHTOYfSBD8n6mm8A==" - } - }, - "npm:minizlib": { - "type": "npm", - "name": "npm:minizlib", - "data": { - "version": "3.1.0", - "packageName": "minizlib", - "hash": "sha512-KZxYo1BUkWD2TVFLr0MQoM8vUUigWD3LlD83a/75BqC+4qE0Hb1Vo5v1FgcfaNXvfXzr+5EhQ6ing/CaBijTlw==" - } - }, - "npm:mitt": { - "type": "npm", - "name": "npm:mitt", - "data": { - "version": "3.0.1", - "packageName": "mitt", - "hash": "sha512-vKivATfr97l2/QBCYAkXYDbrIWPM2IIKEl7YPhjCvKlG3kE2gm+uBo6nEXK3M5/Ffh/FLpKExzOQ3JJoJGFKBw==" - } - }, - "npm:mkdirp-classic": { - "type": "npm", - "name": "npm:mkdirp-classic", - "data": { - "version": "0.5.3", - "packageName": "mkdirp-classic", - "hash": "sha512-gKLcREMhtuZRwRAfqP3RFW+TK4JqApVBtOIftVgjuABpAtpxhPGaDcfvbhNvD0B8iD1oUr/txX35NjcaY6Ns/A==" - } - }, - "npm:mlly": { - "type": "npm", - "name": "npm:mlly", - "data": { - "version": "1.8.0", - "packageName": "mlly", - "hash": "sha512-l8D9ODSRWLe2KHJSifWGwBqpTZXIXTeo8mlKjY+E2HAakaTeNpqAyBZ8GSqLzHgw4XmHmC8whvpjJNMbFZN7/g==" - } - }, - "npm:moo": { - "type": "npm", - "name": "npm:moo", - "data": { - "version": "0.5.2", - "packageName": "moo", - "hash": "sha512-iSAJLHYKnX41mKcJKjqvnAN9sf0LMDTXDEvFv+ffuRR9a1MIuXLjMNL6EsnDHSkKLTWNqQQ5uo61P4EbU4NU+Q==" - } - }, - "npm:mri": { - "type": "npm", - "name": "npm:mri", - "data": { - "version": "1.2.0", - "packageName": "mri", - "hash": "sha512-tzzskb3bG8LvYGFF/mDTpq3jpI6Q9wc3LEmBaghu+DdCssd1FakN7Bc0hVNmEyGq1bq3RgfkCb3cmQLpNPOroA==" - } - }, - "npm:mrmime": { - "type": "npm", - "name": "npm:mrmime", - "data": { - "version": "2.0.1", - "packageName": "mrmime", - "hash": "sha512-Y3wQdFg2Va6etvQ5I82yUhGdsKrcYox6p7FfL1LbK2J4V01F9TGlepTIhnK24t7koZibmg82KGglhA1XK5IsLQ==" - } - }, - "npm:ms": { - "type": "npm", - "name": "npm:ms", - "data": { - "version": "2.1.3", - "packageName": "ms", - "hash": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==" - } - }, - "npm:mute-stream": { - "type": "npm", - "name": "npm:mute-stream", - "data": { - "version": "3.0.0", - "packageName": "mute-stream", - "hash": "sha512-dkEJPVvun4FryqBmZ5KhDo0K9iDXAwn08tMLDinNdRBNPcYEDiWYysLcc6k3mjTMlbP9KyylvRpd4wFtwrT9rw==" - } - }, - "npm:mysql2": { - "type": "npm", - "name": "npm:mysql2", - "data": { - "version": "3.15.3", - "packageName": "mysql2", - "hash": "sha512-FBrGau0IXmuqg4haEZRBfHNWB5mUARw6hNwPDXXGg0XzVJ50mr/9hb267lvpVMnhZ1FON3qNd4Xfcez1rbFwSg==" - } - }, - "npm:named-placeholders": { - "type": "npm", - "name": "npm:named-placeholders", - "data": { - "version": "1.1.3", - "packageName": "named-placeholders", - "hash": "sha512-eLoBxg6wE/rZkJPhU/xRX1WTpkFEwDJEN96oxFrTsqBdbT5ec295Q+CoHrL9IT0DipqKhmGcaZmwOt8OON5x1w==" - } - }, - "npm:nan": { - "type": "npm", - "name": "npm:nan", - "data": { - "version": "2.23.0", - "packageName": "nan", - "hash": "sha512-1UxuyYGdoQHcGg87Lkqm3FzefucTa0NAiOcuRsDmysep3c1LVCRK2krrUDafMWtjSG04htvAmvg96+SDknOmgQ==" - } - }, - "npm:nanoid": { - "type": "npm", - "name": "npm:nanoid", - "data": { - "version": "3.3.11", - "packageName": "nanoid", - "hash": "sha512-N8SpfPUnUp1bK+PMYW8qSWdl9U+wwNWI4QKxOYDy9JAro3WMX7p2OeVRF9v+347pnakNevPmiHhNmZ2HbFA76w==" - } - }, - "npm:napi-build-utils": { - "type": "npm", - "name": "npm:napi-build-utils", - "data": { - "version": "2.0.0", - "packageName": "napi-build-utils", - "hash": "sha512-GEbrYkbfF7MoNaoh2iGG84Mnf/WZfB0GdGEsM8wz7Expx/LlWf5U8t9nvJKXSp3qr5IsEbK04cBGhol/KwOsWA==" - } - }, - "npm:natural-compare": { - "type": "npm", - "name": "npm:natural-compare", - "data": { - "version": "1.4.0", - "packageName": "natural-compare", - "hash": "sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==" - } - }, - "npm:negotiator": { - "type": "npm", - "name": "npm:negotiator", - "data": { - "version": "1.0.0", - "packageName": "negotiator", - "hash": "sha512-8Ofs/AUQh8MaEcrlq5xOX0CQ9ypTF5dl78mjlMNfOK08fzpgTHQRQPBxcPlEtIw0yRpws+Zo/3r+5WRby7u3Gg==" - } - }, - "npm:netmask": { - "type": "npm", - "name": "npm:netmask", - "data": { - "version": "2.0.2", - "packageName": "netmask", - "hash": "sha512-dBpDMdxv9Irdq66304OLfEmQ9tbNRFnFTuZiLo+bD+r332bBmMJ8GBLXklIXXgxd3+v9+KUnZaUR5PJMa75Gsg==" - } - }, - "npm:node-abi": { - "type": "npm", - "name": "npm:node-abi", - "data": { - "version": "3.78.0", - "packageName": "node-abi", - "hash": "sha512-E2wEyrgX/CqvicaQYU3Ze1PFGjc4QYPGsjUrlYkqAE0WjHEZwgOsGMPMzkMse4LjJbDmaEuDX3CM036j5K2DSQ==" - } - }, - "npm:node-domexception": { - "type": "npm", - "name": "npm:node-domexception", - "data": { - "version": "1.0.0", - "packageName": "node-domexception", - "hash": "sha512-/jKZoMpw0F8GRwl4/eLROPA3cfcXtLApP0QzLmUT/HuPCZWyB7IY9ZrMeKw2O/nFIqPQB3PVM9aYm0F312AXDQ==" - } - }, - "npm:node-fetch-native": { - "type": "npm", - "name": "npm:node-fetch-native", - "data": { - "version": "1.6.7", - "packageName": "node-fetch-native", - "hash": "sha512-g9yhqoedzIUm0nTnTqAQvueMPVOuIY16bqgAJJC8XOOubYFNwz6IER9qs0Gq2Xd0+CecCKFjtdDTMA4u4xG06Q==" - } - }, - "npm:node-fetch@2.7.0": { - "type": "npm", - "name": "npm:node-fetch@2.7.0", - "data": { - "version": "2.7.0", - "packageName": "node-fetch", - "hash": "sha512-c4FRfUm/dbcWZ7U+1Wq0AwCyFL+3nt2bEw05wfxSz+DWpWsitgmSgYmy2dQdWyKC1694ELPqMs/YzUSNozLt8A==" - } - }, - "npm:node-fetch": { - "type": "npm", - "name": "npm:node-fetch", - "data": { - "version": "3.3.2", - "packageName": "node-fetch", - "hash": "sha512-dRB78srN/l6gqWulah9SrxeYnxeddIG30+GOqK/9OlLVyLg3HPnr6SqOWTWOXKRwC2eGYCkZ59NNuSgvSrpgOA==" - } - }, - "npm:node-gyp-build": { - "type": "npm", - "name": "npm:node-gyp-build", - "data": { - "version": "4.8.4", - "packageName": "node-gyp-build", - "hash": "sha512-LA4ZjwlnUblHVgq0oBF3Jl/6h/Nvs5fzBLwdEF4nuxnFdsfajde4WfxtJr3CaiH+F6ewcIB/q4jQ4UzPyid+CQ==" - } - }, - "npm:node-gyp": { - "type": "npm", - "name": "npm:node-gyp", - "data": { - "version": "11.5.0", - "packageName": "node-gyp", - "hash": "sha512-ra7Kvlhxn5V9Slyus0ygMa2h+UqExPqUIkfk7Pc8QTLT956JLSy51uWFwHtIYy0vI8cB4BDhc/S03+880My/LQ==" - } - }, - "npm:node-mock-http": { - "type": "npm", - "name": "npm:node-mock-http", - "data": { - "version": "1.0.4", - "packageName": "node-mock-http", - "hash": "sha512-8DY+kFsDkNXy1sJglUfuODx1/opAGJGyrTuFqEoN90oRc2Vk0ZbD4K2qmKXBBEhZQzdKHIVfEJpDU8Ak2NJEvQ==" - } - }, - "npm:node-releases": { - "type": "npm", - "name": "npm:node-releases", - "data": { - "version": "2.0.27", - "packageName": "node-releases", - "hash": "sha512-nmh3lCkYZ3grZvqcCH+fjmQ7X+H0OeZgP40OierEaAptX4XofMh5kwNbWh7lBduUzCcV/8kZ+NDLCwm2iorIlA==" - } - }, - "npm:nopt": { - "type": "npm", - "name": "npm:nopt", - "data": { - "version": "8.1.0", - "packageName": "nopt", - "hash": "sha512-ieGu42u/Qsa4TFktmaKEwM6MQH0pOWnaB3htzh0JRtx84+Mebc0cbZYN5bC+6WTZ4+77xrL9Pn5m7CV6VIkV7A==" - } - }, - "npm:normalize-url": { - "type": "npm", - "name": "npm:normalize-url", - "data": { - "version": "6.1.0", - "packageName": "normalize-url", - "hash": "sha512-DlL+XwOy3NxAQ8xuC0okPgK46iuVNAK01YN7RueYBqqFeGsBjV9XmCAzAdgt+667bCl5kPh9EqKKDwnaPG1I7A==" - } - }, - "npm:npm-normalize-package-bin": { - "type": "npm", - "name": "npm:npm-normalize-package-bin", - "data": { - "version": "4.0.0", - "packageName": "npm-normalize-package-bin", - "hash": "sha512-TZKxPvItzai9kN9H/TkmCtx/ZN/hvr3vUycjlfmH0ootY9yFBzNOpiXAdIn1Iteqsvk4lQn6B5PTrt+n6h8k/w==" - } - }, - "npm:npm-run-all2": { - "type": "npm", - "name": "npm:npm-run-all2", - "data": { - "version": "8.0.4", - "packageName": "npm-run-all2", - "hash": "sha512-wdbB5My48XKp2ZfJUlhnLVihzeuA1hgBnqB2J9ahV77wLS+/YAJAlN8I+X3DIFIPZ3m5L7nplmlbhNiFDmXRDA==" - } - }, - "npm:npm-run-path@4.0.1": { - "type": "npm", - "name": "npm:npm-run-path@4.0.1", - "data": { - "version": "4.0.1", - "packageName": "npm-run-path", - "hash": "sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw==" - } - }, - "npm:npm-run-path": { - "type": "npm", - "name": "npm:npm-run-path", - "data": { - "version": "6.0.0", - "packageName": "npm-run-path", - "hash": "sha512-9qny7Z9DsQU8Ou39ERsPU4OZQlSTP47ShQzuKZ6PRXpYLtIFgl/DEBYEXKlvcEa+9tHVcK8CF81Y2V72qaZhWA==" - } - }, - "npm:nth-check": { - "type": "npm", - "name": "npm:nth-check", - "data": { - "version": "2.1.1", - "packageName": "nth-check", - "hash": "sha512-lqjrjmaOoAnWfMmBPL+XNnynZh2+swxiX3WUE0s4yEHI6m+AwrK2UZOimIRl3X/4QctVqS8AiZjFqyOGrMXb/w==" - } - }, - "npm:null-prototype-object": { - "type": "npm", - "name": "npm:null-prototype-object", - "data": { - "version": "1.2.5", - "packageName": "null-prototype-object", - "hash": "sha512-YAPMPwBVlXXmIx/eIHx/KwIL1Bsd8I+YHQdFpW0Ydvez6vu5Bx2CaP4GrEnH5c1huVWZD9MqEuFwAJoBMm5LJQ==" - } - }, - "npm:nx": { - "type": "npm", - "name": "npm:nx", - "data": { - "version": "22.6.1", - "packageName": "nx", - "hash": "sha512-b4eo52o5aCVt3oG6LPYvD2Cul3JFBMgr2p9OjMBIo6oU6QfSR693H2/UuUMepLtO6jcIniPKOcIrf6Ue8aXAww==" - } - }, - "npm:nypm": { - "type": "npm", - "name": "npm:nypm", - "data": { - "version": "0.6.2", - "packageName": "nypm", - "hash": "sha512-7eM+hpOtrKrBDCh7Ypu2lJ9Z7PNZBdi/8AT3AX8xoCj43BBVHD0hPSTEvMtkMpfs8FCqBGhxB+uToIQimA111g==" - } - }, - "npm:oauth4webapi": { - "type": "npm", - "name": "npm:oauth4webapi", - "data": { - "version": "3.8.2", - "packageName": "oauth4webapi", - "hash": "sha512-FzZZ+bht5X0FKe7Mwz3DAVAmlH1BV5blSak/lHMBKz0/EBMhX6B10GlQYI51+oRp8ObJaX0g6pXrAxZh5s8rjw==" - } - }, - "npm:object-assign": { - "type": "npm", - "name": "npm:object-assign", - "data": { - "version": "4.1.1", - "packageName": "object-assign", - "hash": "sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==" - } - }, - "npm:object-inspect": { - "type": "npm", - "name": "npm:object-inspect", - "data": { - "version": "1.13.4", - "packageName": "object-inspect", - "hash": "sha512-W67iLl4J2EXEGTbfeHCffrjDfitvLANg0UlX3wFUUSTx92KXRFegMHUVgSqE+wvhAbi4WqjGg9czysTV2Epbew==" - } - }, - "npm:object-keys": { - "type": "npm", - "name": "npm:object-keys", - "data": { - "version": "1.1.1", - "packageName": "object-keys", - "hash": "sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==" - } - }, - "npm:object.assign": { - "type": "npm", - "name": "npm:object.assign", - "data": { - "version": "4.1.7", - "packageName": "object.assign", - "hash": "sha512-nK28WOo+QIjBkDduTINE4JkF/UJJKyf2EJxvJKfblDpyg0Q+pkOHNTL0Qwy6NP6FhE/EnzV73BxxqcJaXY9anw==" - } - }, - "npm:object.entries": { - "type": "npm", - "name": "npm:object.entries", - "data": { - "version": "1.1.9", - "packageName": "object.entries", - "hash": "sha512-8u/hfXFRBD1O0hPUjioLhoWFHRmt6tKA4/vZPyckBr18l1KE9uHrFaFaUi8MDRTpi4uak2goyPTSNJLXX2k2Hw==" - } - }, - "npm:object.fromentries": { - "type": "npm", - "name": "npm:object.fromentries", - "data": { - "version": "2.0.8", - "packageName": "object.fromentries", - "hash": "sha512-k6E21FzySsSK5a21KRADBd/NGneRegFO5pLHfdQLpRDETUNJueLXs3WCzyQ3tFRDYgbq3KHGXfTbi2bs8WQ6rQ==" - } - }, - "npm:object.values": { - "type": "npm", - "name": "npm:object.values", - "data": { - "version": "1.2.1", - "packageName": "object.values", - "hash": "sha512-gXah6aZrcUxjWg2zR2MwouP2eHlCBzdV4pygudehaKXSGW4v2AsRQUK+lwwXhii6KFZcunEnmSUoYp5CXibxtA==" - } - }, - "npm:obug": { - "type": "npm", - "name": "npm:obug", - "data": { - "version": "2.1.1", - "packageName": "obug", - "hash": "sha512-uTqF9MuPraAQ+IsnPf366RG4cP9RtUi7MLO1N3KEc+wb0a6yKpeL0lmk2IB1jY5KHPAlTc6T/JRdC/YqxHNwkQ==" - } - }, - "npm:ohash": { - "type": "npm", - "name": "npm:ohash", - "data": { - "version": "2.0.11", - "packageName": "ohash", - "hash": "sha512-RdR9FQrFwNBNXAr4GixM8YaRZRJ5PUWbKYbE5eOsrwAjJW0q2REGcf79oYPsLyskQCZG1PLN+S/K1V00joZAoQ==" - } - }, - "npm:on-exit-leak-free": { - "type": "npm", - "name": "npm:on-exit-leak-free", - "data": { - "version": "2.1.2", - "packageName": "on-exit-leak-free", - "hash": "sha512-0eJJY6hXLGf1udHwfNftBqH+g73EU4B504nZeKpz1sYRKafAghwxEJunB2O7rDZkL4PGfsMVnTXZ2EjibbqcsA==" - } - }, - "npm:on-finished": { - "type": "npm", - "name": "npm:on-finished", - "data": { - "version": "2.4.1", - "packageName": "on-finished", - "hash": "sha512-oVlzkg3ENAhCk2zdv7IJwd/QUD4z2RxRwpkcGY8psCVcCYZNq4wYnVWALHM+brtuJjePWiYF/ClmuDr8Ch5+kg==" - } - }, - "npm:once": { - "type": "npm", - "name": "npm:once", - "data": { - "version": "1.4.0", - "packageName": "once", - "hash": "sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==" - } - }, - "npm:onetime": { - "type": "npm", - "name": "npm:onetime", - "data": { - "version": "5.1.2", - "packageName": "onetime", - "hash": "sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg==" - } - }, - "npm:open": { - "type": "npm", - "name": "npm:open", - "data": { - "version": "8.4.2", - "packageName": "open", - "hash": "sha512-7x81NCL719oNbsq/3mh+hVrAWmFuEYUqrq/Iw3kUzH8ReypT9QQ0BLoJS7/G9k6N81XjW4qHWtjWwe/9eLy1EQ==" - } - }, - "npm:opener": { - "type": "npm", - "name": "npm:opener", - "data": { - "version": "1.5.2", - "packageName": "opener", - "hash": "sha512-ur5UIdyw5Y7yEj9wLzhqXiy6GZ3Mwx0yGI+5sMn2r0N0v3cKJvUmFH5yPP+WXh9e0xfyzyJX95D8l088DNFj7A==" - } - }, - "npm:optionator": { - "type": "npm", - "name": "npm:optionator", - "data": { - "version": "0.9.4", - "packageName": "optionator", - "hash": "sha512-6IpQ7mKUxRcZNLIObR0hz7lxsapSSIYNZJwXPGeF0mTVqGKFIXj1DQcMoT22S3ROcLyY/rz0PWaWZ9ayWmad9g==" - } - }, - "npm:ora": { - "type": "npm", - "name": "npm:ora", - "data": { - "version": "5.3.0", - "packageName": "ora", - "hash": "sha512-zAKMgGXUim0Jyd6CXK9lraBnD3H5yPGBPPOkC23a2BG6hsm4Zu6OQSjQuEtV0BHDf4aKHcUFvJiGRrFuW3MG8g==" - } - }, - "npm:own-keys": { - "type": "npm", - "name": "npm:own-keys", - "data": { - "version": "1.0.1", - "packageName": "own-keys", - "hash": "sha512-qFOyK5PjiWZd+QQIh+1jhdb9LpxTF0qs7Pm8o5QHYZ0M3vKqSqzsZaEB6oWlxZ+q2sJBMI/Ktgd2N5ZwQoRHfg==" - } - }, - "npm:oxc-parser": { - "type": "npm", - "name": "npm:oxc-parser", - "data": { - "version": "0.104.0", - "packageName": "oxc-parser", - "hash": "sha512-sIEpobLwe7KhW1JdTvBJkNDgjJarHNsx+Q37iRNyASvmlDOD+f8Qirvwp6nFNz7Q5q3JcsJ1dpKM+oMPTDF/dw==" - } - }, - "npm:oxc-resolver": { - "type": "npm", - "name": "npm:oxc-resolver", - "data": { - "version": "11.19.1", - "packageName": "oxc-resolver", - "hash": "sha512-qE/CIg/spwrTBFt5aKmwe3ifeDdLfA2NESN30E42X/lII5ClF8V7Wt6WIJhcGZjp0/Q+nQ+9vgxGk//xZNX2hg==" - } - }, - "npm:oxc-walker": { - "type": "npm", - "name": "npm:oxc-walker", - "data": { - "version": "0.6.0", - "packageName": "oxc-walker", - "hash": "sha512-BA3hlxq5+Sgzp7TCQF52XDXCK5mwoIZuIuxv/+JuuTzOs2RXkLqWZgZ69d8pJDDjnL7wiREZTWHBzFp/UWH88Q==" - } - }, - "npm:oxlint-tsgolint": { - "type": "npm", - "name": "npm:oxlint-tsgolint", - "data": { - "version": "0.17.1", - "packageName": "oxlint-tsgolint", - "hash": "sha512-gJc7hb1ZQFbWjRDYpu1XG+5IRdr1S/Jz/W2ohcpaqIXuDmHU0ujGiM0x05J0nIfwMF3HOEcANi/+j6T0Uecdpg==" - } - }, - "npm:oxlint": { - "type": "npm", - "name": "npm:oxlint", - "data": { - "version": "1.56.0", - "packageName": "oxlint", - "hash": "sha512-Q+5Mj5PVaH/R6/fhMMFzw4dT+KPB+kQW4kaL8FOIq7tfhlnEVp6+3lcWqFruuTNlUo9srZUW3qH7Id4pskeR6g==" - } - }, - "npm:p-cancelable": { - "type": "npm", - "name": "npm:p-cancelable", - "data": { - "version": "2.1.1", - "packageName": "p-cancelable", - "hash": "sha512-BZOr3nRQHOntUjTrH8+Lh54smKHoHyur8We1V8DSMVrl5A2malOOwuJRnKRDjSnkoeBh4at6BwEnb5I7Jl31wg==" - } - }, - "npm:p-limit@2.3.0": { - "type": "npm", - "name": "npm:p-limit@2.3.0", - "data": { - "version": "2.3.0", - "packageName": "p-limit", - "hash": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==" - } - }, - "npm:p-limit@3.1.0": { - "type": "npm", - "name": "npm:p-limit@3.1.0", - "data": { - "version": "3.1.0", - "packageName": "p-limit", - "hash": "sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==" - } - }, - "npm:p-limit": { - "type": "npm", - "name": "npm:p-limit", - "data": { - "version": "7.3.0", - "packageName": "p-limit", - "hash": "sha512-7cIXg/Z0M5WZRblrsOla88S4wAK+zOQQWeBYfV3qJuJXMr+LnbYjaadrFaS0JILfEDPVqHyKnZ1Z/1d6J9VVUw==" - } - }, - "npm:p-locate@3.0.0": { - "type": "npm", - "name": "npm:p-locate@3.0.0", - "data": { - "version": "3.0.0", - "packageName": "p-locate", - "hash": "sha512-x+12w/To+4GFfgJhBEpiDcLozRJGegY+Ei7/z0tSLkMmxGZNybVMSfWj9aJn8Z5Fc7dBUNJOOVgPv2H7IwulSQ==" - } - }, - "npm:p-locate": { - "type": "npm", - "name": "npm:p-locate", - "data": { - "version": "5.0.0", - "packageName": "p-locate", - "hash": "sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==" - } - }, - "npm:p-map": { - "type": "npm", - "name": "npm:p-map", - "data": { - "version": "7.0.3", - "packageName": "p-map", - "hash": "sha512-VkndIv2fIB99swvQoA65bm+fsmt6UNdGeIB0oxBs+WhAhdh08QA04JXpI7rbB9r08/nkbysKoya9rtDERYOYMA==" - } - }, - "npm:p-reflect": { - "type": "npm", - "name": "npm:p-reflect", - "data": { - "version": "2.1.0", - "packageName": "p-reflect", - "hash": "sha512-paHV8NUz8zDHu5lhr/ngGWQiW067DK/+IbJ+RfZ4k+s8y4EKyYCz8pGYWjxCg35eHztpJAt+NUgvN4L+GCbPlg==" - } - }, - "npm:p-retry": { - "type": "npm", - "name": "npm:p-retry", - "data": { - "version": "4.6.2", - "packageName": "p-retry", - "hash": "sha512-312Id396EbJdvRONlngUx0NydfrIQ5lsYu0znKVUzVvArzEIt08V1qhtyESbGVd1FGX7UKtiFp5uwKZdM8wIuQ==" - } - }, - "npm:p-timeout": { - "type": "npm", - "name": "npm:p-timeout", - "data": { - "version": "4.1.0", - "packageName": "p-timeout", - "hash": "sha512-+/wmHtzJuWii1sXn3HCuH/FTwGhrp4tmJTxSKJbfS+vkipci6osxXM5mY0jUiRzWKMTgUT8l7HFbeSwZAynqHw==" - } - }, - "npm:p-try": { - "type": "npm", - "name": "npm:p-try", - "data": { - "version": "2.2.0", - "packageName": "p-try", - "hash": "sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==" - } - }, - "npm:pac-proxy-agent": { - "type": "npm", - "name": "npm:pac-proxy-agent", - "data": { - "version": "7.2.0", - "packageName": "pac-proxy-agent", - "hash": "sha512-TEB8ESquiLMc0lV8vcd5Ql/JAKAoyzHFXaStwjkzpOpC5Yv+pIzLfHvjTSdf3vpa2bMiUQrg9i6276yn8666aA==" - } - }, - "npm:pac-resolver": { - "type": "npm", - "name": "npm:pac-resolver", - "data": { - "version": "7.0.1", - "packageName": "pac-resolver", - "hash": "sha512-5NPgf87AT2STgwa2ntRMr45jTKrYBGkVU36yT0ig/n/GMAa3oPqhZfIQ2kMEimReg0+t9kZViDVZ83qfVUlckg==" - } - }, - "npm:package-json-from-dist": { - "type": "npm", - "name": "npm:package-json-from-dist", - "data": { - "version": "1.0.1", - "packageName": "package-json-from-dist", - "hash": "sha512-UEZIS3/by4OC8vL3P2dTXRETpebLI2NiI5vIrjaD/5UtrkFX/tNbwjTSRAGC/+7CAo2pIcBaRgWmcBBHcsaCIw==" - } - }, - "npm:package-manager-detector": { - "type": "npm", - "name": "npm:package-manager-detector", - "data": { - "version": "1.6.0", - "packageName": "package-manager-detector", - "hash": "sha512-61A5ThoTiDG/C8s8UMZwSorAGwMJ0ERVGj2OjoW5pAalsNOg15+iQiPzrLJ4jhZ1HJzmC2PIHT2oEiH3R5fzNA==" - } - }, - "npm:parent-module": { - "type": "npm", - "name": "npm:parent-module", - "data": { - "version": "1.0.1", - "packageName": "parent-module", - "hash": "sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==" - } - }, - "npm:parse-json": { - "type": "npm", - "name": "npm:parse-json", - "data": { - "version": "5.2.0", - "packageName": "parse-json", - "hash": "sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg==" - } - }, - "npm:parse-ms@2.1.0": { - "type": "npm", - "name": "npm:parse-ms@2.1.0", - "data": { - "version": "2.1.0", - "packageName": "parse-ms", - "hash": "sha512-kHt7kzLoS9VBZfUsiKjv43mr91ea+U05EyKkEtqp7vNbHxmaVuEqN7XxeEVnGrMtYOAxGrDElSi96K7EgO1zCA==" - } - }, - "npm:parse-ms": { - "type": "npm", - "name": "npm:parse-ms", - "data": { - "version": "4.0.0", - "packageName": "parse-ms", - "hash": "sha512-TXfryirbmq34y8QBwgqCVLi+8oA3oWx2eAnSn62ITyEhEYaWRlVZ2DvMM9eZbMs/RfxPu/PK/aBLyGj4IrqMHw==" - } - }, - "npm:parse5": { - "type": "npm", - "name": "npm:parse5", - "data": { - "version": "7.3.0", - "packageName": "parse5", - "hash": "sha512-IInvU7fabl34qmi9gY8XOVxhYyMyuH2xUNpb2q8/Y+7552KlejkRvqvD19nMoUW/uQGGbqNpA6Tufu5FL5BZgw==" - } - }, - "npm:parseurl": { - "type": "npm", - "name": "npm:parseurl", - "data": { - "version": "1.3.3", - "packageName": "parseurl", - "hash": "sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ==" - } - }, - "npm:path-browserify": { - "type": "npm", - "name": "npm:path-browserify", - "data": { - "version": "1.0.1", - "packageName": "path-browserify", - "hash": "sha512-b7uo2UCUOYZcnF/3ID0lulOJi/bafxa1xPe7ZPsammBSpjSWQkjNxlt635YGS2MiR9GjvuXCtz2emr3jbsz98g==" - } - }, - "npm:path-exists@3.0.0": { - "type": "npm", - "name": "npm:path-exists@3.0.0", - "data": { - "version": "3.0.0", - "packageName": "path-exists", - "hash": "sha512-bpC7GYwiDYQ4wYLe+FA8lhRjhQCMcQGuSgGGqDkg/QerRWw9CmGRT0iSOVRSZJ29NMLZgIzqaljJ63oaL4NIJQ==" - } - }, - "npm:path-exists": { - "type": "npm", - "name": "npm:path-exists", - "data": { - "version": "4.0.0", - "packageName": "path-exists", - "hash": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==" - } - }, - "npm:path-key": { - "type": "npm", - "name": "npm:path-key", - "data": { - "version": "3.1.1", - "packageName": "path-key", - "hash": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==" - } - }, - "npm:path-key@4.0.0": { - "type": "npm", - "name": "npm:path-key@4.0.0", - "data": { - "version": "4.0.0", - "packageName": "path-key", - "hash": "sha512-haREypq7xkM7ErfgIyA0z+Bj4AGKlMSdlQE2jvJo6huWD1EdkKYV+G/T4nq0YEF2vgTT8kqMFKo1uHn950r4SQ==" - } - }, - "npm:path-parse": { - "type": "npm", - "name": "npm:path-parse", - "data": { - "version": "1.0.7", - "packageName": "path-parse", - "hash": "sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==" - } - }, - "npm:path-scurry@1.11.1": { - "type": "npm", - "name": "npm:path-scurry@1.11.1", - "data": { - "version": "1.11.1", - "packageName": "path-scurry", - "hash": "sha512-Xa4Nw17FS9ApQFJ9umLiJS4orGjm7ZzwUrwamcGQuHSzDyth9boKDaycYdDcZDuqYATXw4HFXgaqWTctW/v1HA==" - } - }, - "npm:path-scurry": { - "type": "npm", - "name": "npm:path-scurry", - "data": { - "version": "2.0.2", - "packageName": "path-scurry", - "hash": "sha512-3O/iVVsJAPsOnpwWIeD+d6z/7PmqApyQePUtCndjatj/9I5LylHvt5qluFaBT3I5h3r1ejfR056c+FCv+NnNXg==" - } - }, - "npm:path-to-regexp@6.1.0": { - "type": "npm", - "name": "npm:path-to-regexp@6.1.0", - "data": { - "version": "6.1.0", - "packageName": "path-to-regexp", - "hash": "sha512-h9DqehX3zZZDCEm+xbfU0ZmwCGFCAAraPJWMXJ4+v32NjZJilVg3k1TcKsRgIb8IQ/izZSaydDc1OhJCZvs2Dw==" - } - }, - "npm:path-to-regexp@6.3.0": { - "type": "npm", - "name": "npm:path-to-regexp@6.3.0", - "data": { - "version": "6.3.0", - "packageName": "path-to-regexp", - "hash": "sha512-Yhpw4T9C6hPpgPeA28us07OJeqZ5EzQTkbfwuhsUg0c237RomFoETJgmp2sa3F/41gfLE6G5cqcYwznmeEeOlQ==" - } - }, - "npm:path-to-regexp": { - "type": "npm", - "name": "npm:path-to-regexp", - "data": { - "version": "8.3.0", - "packageName": "path-to-regexp", - "hash": "sha512-7jdwVIRtsP8MYpdXSwOS0YdD0Du+qOoF/AEPIt88PcCFrZCzx41oxku1jD88hZBwbNUIEfpqvuhjFaMAqMTWnA==" - } - }, - "npm:path-to-regexp-updated": { - "type": "npm", - "name": "npm:path-to-regexp-updated", - "data": { - "version": "npm:path-to-regexp@6.3.0", - "packageName": "path-to-regexp-updated", - "hash": "sha512-Yhpw4T9C6hPpgPeA28us07OJeqZ5EzQTkbfwuhsUg0c237RomFoETJgmp2sa3F/41gfLE6G5cqcYwznmeEeOlQ==" - } - }, - "npm:pathe": { - "type": "npm", - "name": "npm:pathe", - "data": { - "version": "2.0.3", - "packageName": "pathe", - "hash": "sha512-WUjGcAqP1gQacoQe+OBJsFA7Ld4DyXuUIjZ5cc75cLHvJ7dtNsTugphxIADwspS+AraAUePCKrSVtPLFj/F88w==" - } - }, - "npm:pend": { - "type": "npm", - "name": "npm:pend", - "data": { - "version": "1.2.0", - "packageName": "pend", - "hash": "sha512-F3asv42UuXchdzt+xXqfW1OGlVBe+mxa2mqI0pg5yAHZPvFmY3Y6drSf/GQ1A86WgWEN9Kzh/WrgKa6iGcHXLg==" - } - }, - "npm:perfect-debounce": { - "type": "npm", - "name": "npm:perfect-debounce", - "data": { - "version": "1.0.0", - "packageName": "perfect-debounce", - "hash": "sha512-xCy9V055GLEqoFaHoC1SoLIaLmWctgCUaBaWxDZ7/Zx4CTyX7cJQLJOok/orfjZAh9kEYpjJa4d0KcJmCbctZA==" - } - }, - "npm:picocolors": { - "type": "npm", - "name": "npm:picocolors", - "data": { - "version": "1.1.1", - "packageName": "picocolors", - "hash": "sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==" - } - }, - "npm:picomatch@2.3.1": { - "type": "npm", - "name": "npm:picomatch@2.3.1", - "data": { - "version": "2.3.1", - "packageName": "picomatch", - "hash": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==" - } - }, - "npm:picomatch": { - "type": "npm", - "name": "npm:picomatch", - "data": { - "version": "4.0.3", - "packageName": "picomatch", - "hash": "sha512-5gTmgEY/sqK6gFXLIsQNH19lWb4ebPDLA4SdLP7dsWkIXHWlG66oPuVvXSGFPppYZz8ZDZq0dYYrbHfBCVUb1Q==" - } - }, - "npm:pidtree": { - "type": "npm", - "name": "npm:pidtree", - "data": { - "version": "0.6.0", - "packageName": "pidtree", - "hash": "sha512-eG2dWTVw5bzqGRztnHExczNxt5VGsE6OwTeCG3fdUf9KBsZzO3R5OIIIzWR+iZA0NtZ+RDVdaoE2dK1cn6jH4g==" - } - }, - "npm:pino-abstract-transport": { - "type": "npm", - "name": "npm:pino-abstract-transport", - "data": { - "version": "3.0.0", - "packageName": "pino-abstract-transport", - "hash": "sha512-wlfUczU+n7Hy/Ha5j9a/gZNy7We5+cXp8YL+X+PG8S0KXxw7n/JXA3c46Y0zQznIJ83URJiwy7Lh56WLokNuxg==" - } - }, - "npm:pino-std-serializers": { - "type": "npm", - "name": "npm:pino-std-serializers", - "data": { - "version": "7.1.0", - "packageName": "pino-std-serializers", - "hash": "sha512-BndPH67/JxGExRgiX1dX0w1FvZck5Wa4aal9198SrRhZjH3GxKQUKIBnYJTdj2HDN3UQAS06HlfcSbQj2OHmaw==" - } - }, - "npm:pino": { - "type": "npm", - "name": "npm:pino", - "data": { - "version": "10.3.1", - "packageName": "pino", - "hash": "sha512-r34yH/GlQpKZbU1BvFFqOjhISRo1MNx1tWYsYvmj6KIRHSPMT2+yHOEb1SG6NMvRoHRF0a07kCOox/9yakl1vg==" - } - }, - "npm:pkg-types@1.3.1": { - "type": "npm", - "name": "npm:pkg-types@1.3.1", - "data": { - "version": "1.3.1", - "packageName": "pkg-types", - "hash": "sha512-/Jm5M4RvtBFVkKWRu2BLUTNP8/M2a+UwuAX+ae4770q1qVGtfjG+WTCupoZixokjmHiry8uI+dlY8KXYV5HVVQ==" - } - }, - "npm:pkg-types": { - "type": "npm", - "name": "npm:pkg-types", - "data": { - "version": "2.3.0", - "packageName": "pkg-types", - "hash": "sha512-SIqCzDRg0s9npO5XQ3tNZioRY1uK06lA41ynBC1YmFTmnY6FjUjVt6s4LoADmwoig1qqD0oK8h1p/8mlMx8Oig==" - } - }, - "npm:pkg-up": { - "type": "npm", - "name": "npm:pkg-up", - "data": { - "version": "3.1.0", - "packageName": "pkg-up", - "hash": "sha512-nDywThFk1i4BQK4twPQ6TA4RT8bDY96yeuCVBWL3ePARCiEKDRSrNGbFIgUJpLp+XeIR65v8ra7WuJOFUBtkMA==" - } - }, - "npm:portfinder": { - "type": "npm", - "name": "npm:portfinder", - "data": { - "version": "1.0.38", - "packageName": "portfinder", - "hash": "sha512-rEwq/ZHlJIKw++XtLAO8PPuOQA/zaPJOZJ37BVuN97nLpMJeuDVLVGRwbFoBgLudgdTMP2hdRJP++H+8QOA3vg==" - } - }, - "npm:possible-typed-array-names": { - "type": "npm", - "name": "npm:possible-typed-array-names", - "data": { - "version": "1.1.0", - "packageName": "possible-typed-array-names", - "hash": "sha512-/+5VFTchJDoVj3bhoqi6UeymcD00DAwb1nJwamzPvHEszJ4FpF6SNNbUbOS8yI56qHzdV8eK0qEfOSiodkTdxg==" - } - }, - "npm:postcss-calc": { - "type": "npm", - "name": "npm:postcss-calc", - "data": { - "version": "8.2.4", - "packageName": "postcss-calc", - "hash": "sha512-SmWMSJmB8MRnnULldx0lQIyhSNvuDl9HfrZkaqqE/WHAhToYsAvDq+yAsA/kIyINDszOp3Rh0GFoNuH5Ypsm3Q==" - } - }, - "npm:postcss-colormin": { - "type": "npm", - "name": "npm:postcss-colormin", - "data": { - "version": "5.3.1", - "packageName": "postcss-colormin", - "hash": "sha512-UsWQG0AqTFQmpBegeLLc1+c3jIqBNB0zlDGRWR+dQ3pRKJL1oeMzyqmH3o2PIfn9MBdNrVPWhDbT769LxCTLJQ==" - } - }, - "npm:postcss-convert-values": { - "type": "npm", - "name": "npm:postcss-convert-values", - "data": { - "version": "5.1.3", - "packageName": "postcss-convert-values", - "hash": "sha512-82pC1xkJZtcJEfiLw6UXnXVXScgtBrjlO5CBmuDQc+dlb88ZYheFsjTn40+zBVi3DkfF7iezO0nJUPLcJK3pvA==" - } - }, - "npm:postcss-discard-comments": { - "type": "npm", - "name": "npm:postcss-discard-comments", - "data": { - "version": "5.1.2", - "packageName": "postcss-discard-comments", - "hash": "sha512-+L8208OVbHVF2UQf1iDmRcbdjJkuBF6IS29yBDSiWUIzpYaAhtNl6JYnYm12FnkeCwQqF5LeklOu6rAqgfBZqQ==" - } - }, - "npm:postcss-discard-duplicates@5.1.0": { - "type": "npm", - "name": "npm:postcss-discard-duplicates@5.1.0", - "data": { - "version": "5.1.0", - "packageName": "postcss-discard-duplicates", - "hash": "sha512-zmX3IoSI2aoenxHV6C7plngHWWhUOV3sP1T8y2ifzxzbtnuhk1EdPwm0S1bIUNaJ2eNbWeGLEwzw8huPD67aQw==" - } - }, - "npm:postcss-discard-duplicates": { - "type": "npm", - "name": "npm:postcss-discard-duplicates", - "data": { - "version": "6.0.3", - "packageName": "postcss-discard-duplicates", - "hash": "sha512-+JA0DCvc5XvFAxwx6f/e68gQu/7Z9ud584VLmcgto28eB8FqSFZwtrLwB5Kcp70eIoWP/HXqz4wpo8rD8gpsTw==" - } - }, - "npm:postcss-discard-empty": { - "type": "npm", - "name": "npm:postcss-discard-empty", - "data": { - "version": "5.1.1", - "packageName": "postcss-discard-empty", - "hash": "sha512-zPz4WljiSuLWsI0ir4Mcnr4qQQ5e1Ukc3i7UfE2XcrwKK2LIPIqE5jxMRxO6GbI3cv//ztXDsXwEWT3BHOGh3A==" - } - }, - "npm:postcss-discard-overridden": { - "type": "npm", - "name": "npm:postcss-discard-overridden", - "data": { - "version": "5.1.0", - "packageName": "postcss-discard-overridden", - "hash": "sha512-21nOL7RqWR1kasIVdKs8HNqQJhFxLsyRfAnUDm4Fe4t4mCWL9OJiHvlHPjcd8zc5Myu89b/7wZDnOSjFgeWRtw==" - } - }, - "npm:postcss-js": { - "type": "npm", - "name": "npm:postcss-js", - "data": { - "version": "4.1.0", - "packageName": "postcss-js", - "hash": "sha512-oIAOTqgIo7q2EOwbhb8UalYePMvYoIeRY2YKntdpFQXNosSu3vLrniGgmH9OKs/qAkfoj5oB3le/7mINW1LCfw==" - } - }, - "npm:postcss-merge-longhand": { - "type": "npm", - "name": "npm:postcss-merge-longhand", - "data": { - "version": "5.1.7", - "packageName": "postcss-merge-longhand", - "hash": "sha512-YCI9gZB+PLNskrK0BB3/2OzPnGhPkBEwmwhfYk1ilBHYVAZB7/tkTHFBAnCrvBBOmeYyMYw3DMjT55SyxMBzjQ==" - } - }, - "npm:postcss-merge-rules": { - "type": "npm", - "name": "npm:postcss-merge-rules", - "data": { - "version": "5.1.4", - "packageName": "postcss-merge-rules", - "hash": "sha512-0R2IuYpgU93y9lhVbO/OylTtKMVcHb67zjWIfCiKR9rWL3GUk1677LAqD/BcHizukdZEjT8Ru3oHRoAYoJy44g==" - } - }, - "npm:postcss-minify-font-values": { - "type": "npm", - "name": "npm:postcss-minify-font-values", - "data": { - "version": "5.1.0", - "packageName": "postcss-minify-font-values", - "hash": "sha512-el3mYTgx13ZAPPirSVsHqFzl+BBBDrXvbySvPGFnQcTI4iNslrPaFq4muTkLZmKlGk4gyFAYUBMH30+HurREyA==" - } - }, - "npm:postcss-minify-gradients": { - "type": "npm", - "name": "npm:postcss-minify-gradients", - "data": { - "version": "5.1.1", - "packageName": "postcss-minify-gradients", - "hash": "sha512-VGvXMTpCEo4qHTNSa9A0a3D+dxGFZCYwR6Jokk+/3oB6flu2/PnPXAh2x7x52EkY5xlIHLm+Le8tJxe/7TNhzw==" - } - }, - "npm:postcss-minify-params": { - "type": "npm", - "name": "npm:postcss-minify-params", - "data": { - "version": "5.1.4", - "packageName": "postcss-minify-params", - "hash": "sha512-+mePA3MgdmVmv6g+30rn57USjOGSAyuxUmkfiWpzalZ8aiBkdPYjXWtHuwJGm1v5Ojy0Z0LaSYhHaLJQB0P8Jw==" - } - }, - "npm:postcss-minify-selectors": { - "type": "npm", - "name": "npm:postcss-minify-selectors", - "data": { - "version": "5.2.1", - "packageName": "postcss-minify-selectors", - "hash": "sha512-nPJu7OjZJTsVUmPdm2TcaiohIwxP+v8ha9NehQ2ye9szv4orirRU3SDdtUmKH+10nzn0bAyOXZ0UEr7OpvLehg==" - } - }, - "npm:postcss-mixins": { - "type": "npm", - "name": "npm:postcss-mixins", - "data": { - "version": "12.1.2", - "packageName": "postcss-mixins", - "hash": "sha512-90pSxmZVfbX9e5xCv7tI5RV1mnjdf16y89CJKbf/hD7GyOz1FCxcYMl8ZYA8Hc56dbApTKKmU9HfvgfWdCxlwg==" - } - }, - "npm:postcss-nested@5.0.6": { - "type": "npm", - "name": "npm:postcss-nested@5.0.6", - "data": { - "version": "5.0.6", - "packageName": "postcss-nested", - "hash": "sha512-rKqm2Fk0KbA8Vt3AdGN0FB9OBOMDVajMG6ZCf/GoHgdxUJ4sBFp0A/uMIRm+MJUdo33YXEtjqIz8u7DAp8B7DA==" - } - }, - "npm:postcss-nested": { - "type": "npm", - "name": "npm:postcss-nested", - "data": { - "version": "7.0.2", - "packageName": "postcss-nested", - "hash": "sha512-5osppouFc0VR9/VYzYxO03VaDa3e8F23Kfd6/9qcZTUI8P58GIYlArOET2Wq0ywSl2o2PjELhYOFI4W7l5QHKw==" - } - }, - "npm:postcss-normalize-charset": { - "type": "npm", - "name": "npm:postcss-normalize-charset", - "data": { - "version": "5.1.0", - "packageName": "postcss-normalize-charset", - "hash": "sha512-mSgUJ+pd/ldRGVx26p2wz9dNZ7ji6Pn8VWBajMXFf8jk7vUoSrZ2lt/wZR7DtlZYKesmZI680qjr2CeFF2fbUg==" - } - }, - "npm:postcss-normalize-display-values": { - "type": "npm", - "name": "npm:postcss-normalize-display-values", - "data": { - "version": "5.1.0", - "packageName": "postcss-normalize-display-values", - "hash": "sha512-WP4KIM4o2dazQXWmFaqMmcvsKmhdINFblgSeRgn8BJ6vxaMyaJkwAzpPpuvSIoG/rmX3M+IrRZEz2H0glrQNEA==" - } - }, - "npm:postcss-normalize-positions": { - "type": "npm", - "name": "npm:postcss-normalize-positions", - "data": { - "version": "5.1.1", - "packageName": "postcss-normalize-positions", - "hash": "sha512-6UpCb0G4eofTCQLFVuI3EVNZzBNPiIKcA1AKVka+31fTVySphr3VUgAIULBhxZkKgwLImhzMR2Bw1ORK+37INg==" - } - }, - "npm:postcss-normalize-repeat-style": { - "type": "npm", - "name": "npm:postcss-normalize-repeat-style", - "data": { - "version": "5.1.1", - "packageName": "postcss-normalize-repeat-style", - "hash": "sha512-mFpLspGWkQtBcWIRFLmewo8aC3ImN2i/J3v8YCFUwDnPu3Xz4rLohDO26lGjwNsQxB3YF0KKRwspGzE2JEuS0g==" - } - }, - "npm:postcss-normalize-string": { - "type": "npm", - "name": "npm:postcss-normalize-string", - "data": { - "version": "5.1.0", - "packageName": "postcss-normalize-string", - "hash": "sha512-oYiIJOf4T9T1N4i+abeIc7Vgm/xPCGih4bZz5Nm0/ARVJ7K6xrDlLwvwqOydvyL3RHNf8qZk6vo3aatiw/go3w==" - } - }, - "npm:postcss-normalize-timing-functions": { - "type": "npm", - "name": "npm:postcss-normalize-timing-functions", - "data": { - "version": "5.1.0", - "packageName": "postcss-normalize-timing-functions", - "hash": "sha512-DOEkzJ4SAXv5xkHl0Wa9cZLF3WCBhF3o1SKVxKQAa+0pYKlueTpCgvkFAHfk+Y64ezX9+nITGrDZeVGgITJXjg==" - } - }, - "npm:postcss-normalize-unicode": { - "type": "npm", - "name": "npm:postcss-normalize-unicode", - "data": { - "version": "5.1.1", - "packageName": "postcss-normalize-unicode", - "hash": "sha512-qnCL5jzkNUmKVhZoENp1mJiGNPcsJCs1aaRmURmeJGES23Z/ajaln+EPTD+rBeNkSryI+2WTdW+lwcVdOikrpA==" - } - }, - "npm:postcss-normalize-url": { - "type": "npm", - "name": "npm:postcss-normalize-url", - "data": { - "version": "5.1.0", - "packageName": "postcss-normalize-url", - "hash": "sha512-5upGeDO+PVthOxSmds43ZeMeZfKH+/DKgGRD7TElkkyS46JXAUhMzIKiCa7BabPeIy3AQcTkXwVVN7DbqsiCew==" - } - }, - "npm:postcss-normalize-whitespace": { - "type": "npm", - "name": "npm:postcss-normalize-whitespace", - "data": { - "version": "5.1.1", - "packageName": "postcss-normalize-whitespace", - "hash": "sha512-83ZJ4t3NUDETIHTa3uEg6asWjSBYL5EdkVB0sDncx9ERzOKBVJIUeDO9RyA9Zwtig8El1d79HBp0JEi8wvGQnA==" - } - }, - "npm:postcss-ordered-values": { - "type": "npm", - "name": "npm:postcss-ordered-values", - "data": { - "version": "5.1.3", - "packageName": "postcss-ordered-values", - "hash": "sha512-9UO79VUhPwEkzbb3RNpqqghc6lcYej1aveQteWY+4POIwlqkYE21HKWaLDF6lWNuqCobEAyTovVhtI32Rbv2RQ==" - } - }, - "npm:postcss-preset-mantine": { - "type": "npm", - "name": "npm:postcss-preset-mantine", - "data": { - "version": "1.18.0", - "packageName": "postcss-preset-mantine", - "hash": "sha512-sP6/s1oC7cOtBdl4mw/IRKmKvYTuzpRrH/vT6v9enMU/EQEQ31eQnHcWtFghOXLH87AAthjL/Q75rLmin1oZoA==" - } - }, - "npm:postcss-reduce-initial": { - "type": "npm", - "name": "npm:postcss-reduce-initial", - "data": { - "version": "5.1.2", - "packageName": "postcss-reduce-initial", - "hash": "sha512-dE/y2XRaqAi6OvjzD22pjTUQ8eOfc6m/natGHgKFBK9DxFmIm69YmaRVQrGgFlEfc1HePIurY0TmDeROK05rIg==" - } - }, - "npm:postcss-reduce-transforms": { - "type": "npm", - "name": "npm:postcss-reduce-transforms", - "data": { - "version": "5.1.0", - "packageName": "postcss-reduce-transforms", - "hash": "sha512-2fbdbmgir5AvpW9RLtdONx1QoYG2/EtqpNQbFASDlixBbAYuTcJ0dECwlqNqH7VbaUnEnh8SrxOe2sRIn24XyQ==" - } - }, - "npm:postcss-selector-parser@6.1.2": { - "type": "npm", - "name": "npm:postcss-selector-parser@6.1.2", - "data": { - "version": "6.1.2", - "packageName": "postcss-selector-parser", - "hash": "sha512-Q8qQfPiZ+THO/3ZrOrO0cJJKfpYCagtMUkXbnEfmgUjwXg6z/WBeOyS9APBBPCTSiDV+s4SwQGu8yFsiMRIudg==" - } - }, - "npm:postcss-selector-parser": { - "type": "npm", - "name": "npm:postcss-selector-parser", - "data": { - "version": "7.1.0", - "packageName": "postcss-selector-parser", - "hash": "sha512-8sLjZwK0R+JlxlYcTuVnyT2v+htpdrjDOKuMcOVdYjt52Lh8hWRYpxBPoKx/Zg+bcjc3wx6fmQevMmUztS/ccA==" - } - }, - "npm:postcss-simple-vars": { - "type": "npm", - "name": "npm:postcss-simple-vars", - "data": { - "version": "7.0.1", - "packageName": "postcss-simple-vars", - "hash": "sha512-5GLLXaS8qmzHMOjVxqkk1TZPf1jMqesiI7qLhnlyERalG0sMbHIbJqrcnrpmZdKCLglHnRHoEBB61RtGTsj++A==" - } - }, - "npm:postcss-svgo": { - "type": "npm", - "name": "npm:postcss-svgo", - "data": { - "version": "5.1.0", - "packageName": "postcss-svgo", - "hash": "sha512-D75KsH1zm5ZrHyxPakAxJWtkyXew5qwS70v56exwvw542d9CRtTo78K0WeFxZB4G7JXKKMbEZtZayTGdIky/eA==" - } - }, - "npm:postcss-unique-selectors": { - "type": "npm", - "name": "npm:postcss-unique-selectors", - "data": { - "version": "5.1.1", - "packageName": "postcss-unique-selectors", - "hash": "sha512-5JiODlELrz8L2HwxfPnhOWZYWDxVHWL83ufOv84NrcgipI7TaeRsatAhK4Tr2/ZiYldpK/wBvw5BD3qfaK96GA==" - } - }, - "npm:postcss-value-parser": { - "type": "npm", - "name": "npm:postcss-value-parser", - "data": { - "version": "4.2.0", - "packageName": "postcss-value-parser", - "hash": "sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==" - } - }, - "npm:postcss-values-parser": { - "type": "npm", - "name": "npm:postcss-values-parser", - "data": { - "version": "6.0.2", - "packageName": "postcss-values-parser", - "hash": "sha512-YLJpK0N1brcNJrs9WatuJFtHaV9q5aAOj+S4DI5S7jgHlRfm0PIbDCAFRYMQD5SHq7Fy6xsDhyutgS0QOAs0qw==" - } - }, - "npm:postcss": { - "type": "npm", - "name": "npm:postcss", - "data": { - "version": "8.5.8", - "packageName": "postcss", - "hash": "sha512-OW/rX8O/jXnm82Ey1k44pObPtdblfiuWnrd8X7GJ7emImCOstunGbXUpp7HdBrFQX6rJzn3sPT397Wp5aCwCHg==" - } - }, - "npm:postgres": { - "type": "npm", - "name": "npm:postgres", - "data": { - "version": "3.4.7", - "packageName": "postgres", - "hash": "sha512-Jtc2612XINuBjIl/QTWsV5UvE8UHuNblcO3vVADSrKsrc6RqGX6lOW1cEo3CM2v0XG4Nat8nI+YM7/f26VxXLw==" - } - }, - "npm:preact-render-to-string": { - "type": "npm", - "name": "npm:preact-render-to-string", - "data": { - "version": "6.5.11", - "packageName": "preact-render-to-string", - "hash": "sha512-ubnauqoGczeGISiOh6RjX0/cdaF8v/oDXIjO85XALCQjwQP+SB4RDXXtvZ6yTYSjG+PC1QRP2AhPgCEsM2EvUw==" - } - }, - "npm:preact": { - "type": "npm", - "name": "npm:preact", - "data": { - "version": "10.24.3", - "packageName": "preact", - "hash": "sha512-Z2dPnBnMUfyQfSQ+GBdsGa16hz35YmLmtTLhM169uW944hYL6xzTYkJjC07j+Wosz733pMWx0fgON3JNw1jJQA==" - } - }, - "npm:prebuild-install": { - "type": "npm", - "name": "npm:prebuild-install", - "data": { - "version": "7.1.3", - "packageName": "prebuild-install", - "hash": "sha512-8Mf2cbV7x1cXPUILADGI3wuhfqWvtiLA1iclTDbFRZkgRQS0NqsPZphna9V+HyTEadheuPmjaJMsbzKQFOzLug==" - } - }, - "npm:prelude-ls": { - "type": "npm", - "name": "npm:prelude-ls", - "data": { - "version": "1.2.1", - "packageName": "prelude-ls", - "hash": "sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==" - } - }, - "npm:prettier-linter-helpers": { - "type": "npm", - "name": "npm:prettier-linter-helpers", - "data": { - "version": "1.0.1", - "packageName": "prettier-linter-helpers", - "hash": "sha512-SxToR7P8Y2lWmv/kTzVLC1t/GDI2WGjMwNhLLE9qtH8Q13C+aEmuRlzDst4Up4s0Wc8sF2M+J57iB3cMLqftfg==" - } - }, - "npm:prettier": { - "type": "npm", - "name": "npm:prettier", - "data": { - "version": "3.8.1", - "packageName": "prettier", - "hash": "sha512-UOnG6LftzbdaHZcKoPFtOcCKztrQ57WkHDeRD9t/PTQtmT0NHSeWWepj6pS0z/N7+08BHFDQVUrfmfMRcZwbMg==" - } - }, - "npm:pretty-format": { - "type": "npm", - "name": "npm:pretty-format", - "data": { - "version": "30.3.0", - "packageName": "pretty-format", - "hash": "sha512-oG4T3wCbfeuvljnyAzhBvpN45E8iOTXCU/TD3zXW80HA3dQ4ahdqMkWGiPWZvjpQwlbyHrPTWUAqUzGzv4l1JQ==" - } - }, - "npm:pretty-ms@7.0.1": { - "type": "npm", - "name": "npm:pretty-ms@7.0.1", - "data": { - "version": "7.0.1", - "packageName": "pretty-ms", - "hash": "sha512-973driJZvxiGOQ5ONsFhOF/DtzPMOMtgC11kCpUrPGMTgqp2q/1gwzCquocrN33is0VZ5GFHXZYMM9l6h67v2Q==" - } - }, - "npm:pretty-ms": { - "type": "npm", - "name": "npm:pretty-ms", - "data": { - "version": "9.3.0", - "packageName": "pretty-ms", - "hash": "sha512-gjVS5hOP+M3wMm5nmNOucbIrqudzs9v/57bWRHQWLYklXqoXKrVfYW2W9+glfGsqtPgpiz5WwyEEB+ksXIx3gQ==" - } - }, - "npm:prism-themes": { - "type": "npm", - "name": "npm:prism-themes", - "data": { - "version": "1.9.0", - "packageName": "prism-themes", - "hash": "sha512-tX2AYsehKDw1EORwBps+WhBFKc2kxfoFpQAjxBndbZKr4fRmMkv47XN0BghC/K1qwodB1otbe4oF23vUTFDokw==" - } - }, - "npm:prisma": { - "type": "npm", - "name": "npm:prisma", - "data": { - "version": "7.5.0", - "packageName": "prisma", - "hash": "sha512-n30qZpWehaYQzigLjmuPisyEsvOzHt7bZeRyg8gZ5DvJo9FGjD+gNaY59Ns3hlLD5/jZH5GBeftIss0jDbUoLg==" - } - }, - "npm:proc-log": { - "type": "npm", - "name": "npm:proc-log", - "data": { - "version": "5.0.0", - "packageName": "proc-log", - "hash": "sha512-Azwzvl90HaF0aCz1JrDdXQykFakSSNPaPoiZ9fm5qJIMHioDZEi7OAdRwSm6rSoPtY3Qutnm3L7ogmg3dc+wbQ==" - } - }, - "npm:process-warning@4.0.1": { - "type": "npm", - "name": "npm:process-warning@4.0.1", - "data": { - "version": "4.0.1", - "packageName": "process-warning", - "hash": "sha512-3c2LzQ3rY9d0hc1emcsHhfT9Jwz0cChib/QN89oME2R451w5fy3f0afAhERFZAwrbDU43wk12d0ORBpDVME50Q==" - } - }, - "npm:process-warning": { - "type": "npm", - "name": "npm:process-warning", - "data": { - "version": "5.0.0", - "packageName": "process-warning", - "hash": "sha512-a39t9ApHNx2L4+HBnQKqxxHNs1r7KF+Intd8Q/g1bUh6q0WIp9voPXJ/x0j+ZL45KF1pJd9+q2jLIRMfvEshkA==" - } - }, - "npm:progress": { - "type": "npm", - "name": "npm:progress", - "data": { - "version": "2.0.3", - "packageName": "progress", - "hash": "sha512-7PiHtLll5LdnKIMw100I+8xJXR5gW2QwWYkT6iJva0bXitZKa/XMrSbdmg3r2Xnaidz9Qumd0VPaMrZlF9V9sA==" - } - }, - "npm:promise-retry": { - "type": "npm", - "name": "npm:promise-retry", - "data": { - "version": "2.0.1", - "packageName": "promise-retry", - "hash": "sha512-y+WKFlBR8BGXnsNlIHFGPZmyDf3DFMoLhaflAnyZgV6rG6xu+JwesTo2Q9R6XwYmtmwAFCkAk3e35jEdoeh/3g==" - } - }, - "npm:prop-types": { - "type": "npm", - "name": "npm:prop-types", - "data": { - "version": "15.8.1", - "packageName": "prop-types", - "hash": "sha512-oj87CgZICdulUohogVAR7AjlC0327U4el4L6eAvOqCeudMDVU0NThNaV+b9Df4dXgSP1gXMTnPdhfe/2qDH5cg==" - } - }, - "npm:proper-lockfile": { - "type": "npm", - "name": "npm:proper-lockfile", - "data": { - "version": "4.1.2", - "packageName": "proper-lockfile", - "hash": "sha512-TjNPblN4BwAWMXU8s9AEz4JmQxnD1NNL7bNOY/AKUzyamc379FWASUhc/K1pL2noVb+XmZKLL68cjzLsiOAMaA==" - } - }, - "npm:proxy-addr": { - "type": "npm", - "name": "npm:proxy-addr", - "data": { - "version": "2.0.7", - "packageName": "proxy-addr", - "hash": "sha512-llQsMLSUDUPT44jdrU/O37qlnifitDP+ZwrmmZcoSKyLKvtZxpyV0n2/bD/N4tBAAZ/gJEdZU7KMraoK1+XYAg==" - } - }, - "npm:proxy-agent": { - "type": "npm", - "name": "npm:proxy-agent", - "data": { - "version": "6.5.0", - "packageName": "proxy-agent", - "hash": "sha512-TmatMXdr2KlRiA2CyDu8GqR8EjahTG3aY3nXjdzFyoZbmB8hrBsTyMezhULIXKnC0jpfjlmiZ3+EaCzoInSu/A==" - } - }, - "npm:proxy-from-env": { - "type": "npm", - "name": "npm:proxy-from-env", - "data": { - "version": "1.1.0", - "packageName": "proxy-from-env", - "hash": "sha512-D+zkORCbA9f1tdWRK0RaCR3GPv50cMxcrz4X8k5LTSUD1Dkw47mKJEZQNunItRTkWwgtaUSo1RVFRIG9ZXiFYg==" - } - }, - "npm:pump": { - "type": "npm", - "name": "npm:pump", - "data": { - "version": "3.0.3", - "packageName": "pump", - "hash": "sha512-todwxLMY7/heScKmntwQG8CXVkWUOdYxIvY2s0VWAAMh/nd8SoYiRaKjlr7+iCs984f2P8zvrfWcDDYVb73NfA==" - } - }, - "npm:punycode-regex": { - "type": "npm", - "name": "npm:punycode-regex", - "data": { - "version": "1.0.1", - "packageName": "punycode-regex", - "hash": "sha512-6twir6Wqa80MGTpqRMxxwWNHHdgQI+UC81g8YyYDY7UYiPIVQ20ZlskmXOWIq195eRzyGzyD3qT645OTz9AAZA==" - } - }, - "npm:punycode": { - "type": "npm", - "name": "npm:punycode", - "data": { - "version": "2.3.1", - "packageName": "punycode", - "hash": "sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg==" - } - }, - "npm:puppeteer-core": { - "type": "npm", - "name": "npm:puppeteer-core", - "data": { - "version": "24.40.0", - "packageName": "puppeteer-core", - "hash": "sha512-MWL3XbUCfVgGR0gRsidzT6oKJT2QydPLhMITU6HoVWiiv4gkb6gJi3pcdAa8q4HwjBTbqISOWVP4aJiiyUJvag==" - } - }, - "npm:puppeteer": { - "type": "npm", - "name": "npm:puppeteer", - "data": { - "version": "24.40.0", - "packageName": "puppeteer", - "hash": "sha512-IxQbDq93XHVVLWHrAkFP7F7iHvb9o0mgfsSIMlhHb+JM+JjM1V4v4MNSQfcRWJopx9dsNOr9adYv0U5fm9BJBQ==" - } - }, - "npm:pure-rand": { - "type": "npm", - "name": "npm:pure-rand", - "data": { - "version": "6.1.0", - "packageName": "pure-rand", - "hash": "sha512-bVWawvoZoBYpp6yIoQtQXHZjmz35RSVHnUOTefl8Vcjr8snTPY1wnpSPMWekcFwbxI6gtmT7rSYPFvz71ldiOA==" - } - }, - "npm:qs": { - "type": "npm", - "name": "npm:qs", - "data": { - "version": "6.14.0", - "packageName": "qs", - "hash": "sha512-YWWTjgABSKcvs/nWBi9PycY/JiPJqOD4JA6o9Sej2AtvSGarXxKC3OQSk4pAarbdQlKAh5D4FCQkJNkW+GAn3w==" - } - }, - "npm:quansync": { - "type": "npm", - "name": "npm:quansync", - "data": { - "version": "1.0.0", - "packageName": "quansync", - "hash": "sha512-5xZacEEufv3HSTPQuchrvV6soaiACMFnq1H8wkVioctoH3TRha9Sz66lOxRwPK/qZj7HPiSveih9yAyh98gvqA==" - } - }, - "npm:queue-microtask": { - "type": "npm", - "name": "npm:queue-microtask", - "data": { - "version": "1.2.3", - "packageName": "queue-microtask", - "hash": "sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==" - } - }, - "npm:quick-format-unescaped": { - "type": "npm", - "name": "npm:quick-format-unescaped", - "data": { - "version": "4.0.4", - "packageName": "quick-format-unescaped", - "hash": "sha512-tYC1Q1hgyRuHgloV/YXs2w15unPVh8qfu/qCTfhTYamaw7fyhumKa2yGpdSo87vY32rIclj+4fWYQXUMs9EHvg==" - } - }, - "npm:quick-lru": { - "type": "npm", - "name": "npm:quick-lru", - "data": { - "version": "5.1.1", - "packageName": "quick-lru", - "hash": "sha512-WuyALRjWPDGtt/wzJiadO5AXY+8hZ80hVpe6MyivgraREW751X3SbhRvG3eLKOYN+8VEvqLcf3wdnt44Z4S4SA==" - } - }, - "npm:quote-unquote": { - "type": "npm", - "name": "npm:quote-unquote", - "data": { - "version": "1.0.0", - "packageName": "quote-unquote", - "hash": "sha512-twwRO/ilhlG/FIgYeKGFqyHhoEhqgnKVkcmqMKi2r524gz3ZbDTcyFt38E9xjJI2vT+KbRNHVbnJ/e0I25Azwg==" - } - }, - "npm:radix3": { - "type": "npm", - "name": "npm:radix3", - "data": { - "version": "1.1.2", - "packageName": "radix3", - "hash": "sha512-b484I/7b8rDEdSDKckSSBA8knMpcdsXudlE/LNL639wFoHKwLbEkQFZHWEYwDC0wa0FKUcCY+GAF73Z7wxNVFA==" - } - }, - "npm:range-parser": { - "type": "npm", - "name": "npm:range-parser", - "data": { - "version": "1.2.1", - "packageName": "range-parser", - "hash": "sha512-Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg==" - } - }, - "npm:raw-body": { - "type": "npm", - "name": "npm:raw-body", - "data": { - "version": "3.0.2", - "packageName": "raw-body", - "hash": "sha512-K5zQjDllxWkf7Z5xJdV0/B0WTNqx6vxG70zJE4N0kBs4LovmEYWJzQGxC9bS9RAKu3bgM40lrd5zoLJ12MQ5BA==" - } - }, - "npm:rc9": { - "type": "npm", - "name": "npm:rc9", - "data": { - "version": "2.1.2", - "packageName": "rc9", - "hash": "sha512-btXCnMmRIBINM2LDZoEmOogIZU7Qe7zn4BpomSKZ/ykbLObuBdvG+mFq11DL6fjH1DRwHhrlgtYWG96bJiC7Cg==" - } - }, - "npm:rc": { - "type": "npm", - "name": "npm:rc", - "data": { - "version": "1.2.8", - "packageName": "rc", - "hash": "sha512-y3bGgqKj3QBdxLbLkomlohkvsA8gdAiUQlSBJnBhfn+BPxg4bc62d8TcBW15wavDfgexCgccckhcZvywyQYPOw==" - } - }, - "npm:re2": { - "type": "npm", - "name": "npm:re2", - "data": { - "version": "1.22.1", - "packageName": "re2", - "hash": "sha512-E4J0EtgyNLdIr0wTg0dQPefuiqNY29KaLacytiUAYYRzxCG+zOkWoUygt1rI+TA1LrhN49/njrfSO1DHtVC5Vw==" - } - }, - "npm:react-dom": { - "type": "npm", - "name": "npm:react-dom", - "data": { - "version": "19.2.4", - "packageName": "react-dom", - "hash": "sha512-AXJdLo8kgMbimY95O2aKQqsz2iWi9jMgKJhRBAxECE4IFxfcazB2LmzloIoibJI3C12IlY20+KFaLv+71bUJeQ==" - } - }, - "npm:react-is": { - "type": "npm", - "name": "npm:react-is", - "data": { - "version": "16.13.1", - "packageName": "react-is", - "hash": "sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ==" - } - }, - "npm:react-is@18.3.1": { - "type": "npm", - "name": "npm:react-is@18.3.1", - "data": { - "version": "18.3.1", - "packageName": "react-is", - "hash": "sha512-/LLMVyas0ljjAtoYiPqYiL8VWXzUUdThrmU5+n20DZv+a+ClRoevUzw5JxU+Ieh5/c87ytoTBV9G1FiKfNJdmg==" - } - }, - "npm:react-number-format": { - "type": "npm", - "name": "npm:react-number-format", - "data": { - "version": "5.4.4", - "packageName": "react-number-format", - "hash": "sha512-wOmoNZoOpvMminhifQYiYSTCLUDOiUbBunrMrMjA+dV52sY+vck1S4UhR6PkgnoCquvvMSeJjErXZ4qSaWCliA==" - } - }, - "npm:react-remove-scroll-bar": { - "type": "npm", - "name": "npm:react-remove-scroll-bar", - "data": { - "version": "2.3.8", - "packageName": "react-remove-scroll-bar", - "hash": "sha512-9r+yi9+mgU33AKcj6IbT9oRCO78WriSj6t/cF8DWBZJ9aOGPOTEDvdUDz1FwKim7QXWwmHqtdHnRJfhAxEG46Q==" - } - }, - "npm:react-remove-scroll": { - "type": "npm", - "name": "npm:react-remove-scroll", - "data": { - "version": "2.7.1", - "packageName": "react-remove-scroll", - "hash": "sha512-HpMh8+oahmIdOuS5aFKKY6Pyog+FNaZV/XyJOq7b4YFwsFHe5yYfdbIalI4k3vU2nSDql7YskmUseHsRrJqIPA==" - } - }, - "npm:react-streaming": { - "type": "npm", - "name": "npm:react-streaming", - "data": { - "version": "0.4.16", - "packageName": "react-streaming", - "hash": "sha512-qaDUklKjpmPStven+MvFFk3SWN+UaeIugBNwKgd97UPIR8IMUzk68gIg2iPR1fN7+HkrpLmTVwZE9dGoLZTcCA==" - } - }, - "npm:react-style-singleton": { - "type": "npm", - "name": "npm:react-style-singleton", - "data": { - "version": "2.2.3", - "packageName": "react-style-singleton", - "hash": "sha512-b6jSvxvVnyptAiLjbkWLE/lOnR4lfTtDAl+eUC7RZy+QQWc6wRzIV2CE6xBuMmDxc2qIihtDCZD5NPOFl7fRBQ==" - } - }, - "npm:react-textarea-autosize": { - "type": "npm", - "name": "npm:react-textarea-autosize", - "data": { - "version": "8.5.9", - "packageName": "react-textarea-autosize", - "hash": "sha512-U1DGlIQN5AwgjTyOEnI1oCcMuEr1pv1qOtklB2l4nyMGbHzWrI0eFsYK0zos2YWqAolJyG0IWJaqWmWj5ETh0A==" - } - }, - "npm:react": { - "type": "npm", - "name": "npm:react", - "data": { - "version": "19.2.4", - "packageName": "react", - "hash": "sha512-9nfp2hYpCwOjAN+8TZFGhtWEwgvWHXqESH8qT89AT/lWklpLON22Lc8pEtnpsZz7VmawabSU0gCjnj8aC0euHQ==" - } - }, - "npm:read-package-json-fast": { - "type": "npm", - "name": "npm:read-package-json-fast", - "data": { - "version": "4.0.0", - "packageName": "read-package-json-fast", - "hash": "sha512-qpt8EwugBWDw2cgE2W+/3oxC+KTez2uSVR8JU9Q36TXPAGCaozfQUs59v4j4GFpWTaw0i6hAZSvOmu1J0uOEUg==" - } - }, - "npm:readable-stream": { - "type": "npm", - "name": "npm:readable-stream", - "data": { - "version": "3.6.2", - "packageName": "readable-stream", - "hash": "sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==" - } - }, - "npm:readdirp": { - "type": "npm", - "name": "npm:readdirp", - "data": { - "version": "4.1.2", - "packageName": "readdirp", - "hash": "sha512-GDhwkLfywWL2s6vEjyhri+eXmfH6j1L7JE27WhqLeYzoh/A3DBaYGEj2H/HFZCn/kMfim73FXxEJTw06WtxQwg==" - } - }, - "npm:real-require": { - "type": "npm", - "name": "npm:real-require", - "data": { - "version": "0.2.0", - "packageName": "real-require", - "hash": "sha512-57frrGM/OCTLqLOAh0mhVA9VBMHd+9U7Zb2THMGdBUoZVOtGbJzjxsYGDJ3A9AYYCP4hn6y1TVbaOfzWtm5GFg==" - } - }, - "npm:reflect.getprototypeof": { - "type": "npm", - "name": "npm:reflect.getprototypeof", - "data": { - "version": "1.0.10", - "packageName": "reflect.getprototypeof", - "hash": "sha512-00o4I+DVrefhv+nX0ulyi3biSHCPDe+yLv5o/p6d/UVlirijB8E16FtfwSAi4g3tcqrQ4lRAqQSoFEZJehYEcw==" - } - }, - "npm:regexp-to-ast": { - "type": "npm", - "name": "npm:regexp-to-ast", - "data": { - "version": "0.5.0", - "packageName": "regexp-to-ast", - "hash": "sha512-tlbJqcMHnPKI9zSrystikWKwHkBqu2a/Sgw01h3zFjvYrMxEDYHzzoMZnUrbIfpTFEsoRnnviOXNCzFiSc54Qw==" - } - }, - "npm:regexp-tree": { - "type": "npm", - "name": "npm:regexp-tree", - "data": { - "version": "0.1.27", - "packageName": "regexp-tree", - "hash": "sha512-iETxpjK6YoRWJG5o6hXLwvjYAoW+FEZn9os0PD/b6AP6xQwsa/Y7lCVgIixBbUPMfhu+i2LtdeAqVTgGlQarfA==" - } - }, - "npm:regexp.prototype.flags": { - "type": "npm", - "name": "npm:regexp.prototype.flags", - "data": { - "version": "1.5.4", - "packageName": "regexp.prototype.flags", - "hash": "sha512-dYqgNSZbDwkaJ2ceRd9ojCGjBq+mOm9LmtXnAnEGyHhN/5R7iDW2TRw3h+o/jCFxus3P2LfWIIiwowAjANm7IA==" - } - }, - "npm:regexparam": { - "type": "npm", - "name": "npm:regexparam", - "data": { - "version": "3.0.0", - "packageName": "regexparam", - "hash": "sha512-RSYAtP31mvYLkAHrOlh25pCNQ5hWnT106VukGaaFfuJrZFkGRX5GhUAdPqpSDXxOhA2c4akmRuplv1mRqnBn6Q==" - } - }, - "npm:remeda": { - "type": "npm", - "name": "npm:remeda", - "data": { - "version": "2.33.4", - "packageName": "remeda", - "hash": "sha512-ygHswjlc/opg2VrtiYvUOPLjxjtdKvjGz1/plDhkG66hjNjFr1xmfrs2ClNFo/E6TyUFiwYNh53bKV26oBoMGQ==" - } - }, - "npm:require-directory": { - "type": "npm", - "name": "npm:require-directory", - "data": { - "version": "2.1.1", - "packageName": "require-directory", - "hash": "sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q==" - } - }, - "npm:require-from-string": { - "type": "npm", - "name": "npm:require-from-string", - "data": { - "version": "2.0.2", - "packageName": "require-from-string", - "hash": "sha512-Xf0nWe6RseziFMu+Ap9biiUbmplq6S9/p+7w7YXP/JBHhrUDDUhwa+vANyubuqfZWTveU//DYVGsDG7RKL/vEw==" - } - }, - "npm:require-one-of": { - "type": "npm", - "name": "npm:require-one-of", - "data": { - "version": "1.0.24", - "packageName": "require-one-of", - "hash": "sha512-aaj1WcxnuPnyTDH89d9dCret7OF+mYBed5imq+eotBeJ7wd2X3w6llRB7CTQ3Qsl3FAIoobDrRSEekUKHSDqKQ==" - } - }, - "npm:requires-port": { - "type": "npm", - "name": "npm:requires-port", - "data": { - "version": "1.0.0", - "packageName": "requires-port", - "hash": "sha512-KigOCHcocU3XODJxsu8i/j8T9tzT4adHiecwORRQ0ZZFcp7ahwXuRU1m+yuO90C5ZUyGeGfocHDI14M3L3yDAQ==" - } - }, - "npm:reselect": { - "type": "npm", - "name": "npm:reselect", - "data": { - "version": "4.1.8", - "packageName": "reselect", - "hash": "sha512-ab9EmR80F/zQTMNeneUr4cv+jSwPJgIlvEmVwLerwrWVbpLlBuls9XHzIeTFy4cegU2NHBp3va0LKOzU5qFEYQ==" - } - }, - "npm:resolve-alpn": { - "type": "npm", - "name": "npm:resolve-alpn", - "data": { - "version": "1.2.1", - "packageName": "resolve-alpn", - "hash": "sha512-0a1F4l73/ZFZOakJnQ3FvkJ2+gSTQWz/r2KE5OdDY0TxPm5h4GkqkWWfM47T7HsbnOtcJVEF4epCVy6u7Q3K+g==" - } - }, - "npm:resolve-from@4.0.0": { - "type": "npm", - "name": "npm:resolve-from@4.0.0", - "data": { - "version": "4.0.0", - "packageName": "resolve-from", - "hash": "sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==" - } - }, - "npm:resolve-from": { - "type": "npm", - "name": "npm:resolve-from", - "data": { - "version": "5.0.0", - "packageName": "resolve-from", - "hash": "sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw==" - } - }, - "npm:resolve-pkg-maps": { - "type": "npm", - "name": "npm:resolve-pkg-maps", - "data": { - "version": "1.0.0", - "packageName": "resolve-pkg-maps", - "hash": "sha512-seS2Tj26TBVOC2NIc2rOe2y2ZO7efxITtLZcGSOnHHNOQ7CkiUBfw0Iw2ck6xkIhPwLhKNLS8BO+hEpngQlqzw==" - } - }, - "npm:resolve.exports": { - "type": "npm", - "name": "npm:resolve.exports", - "data": { - "version": "2.0.3", - "packageName": "resolve.exports", - "hash": "sha512-OcXjMsGdhL4XnbShKpAcSqPMzQoYkYyhbEaeSko47MjRP9NfEQMhZkXL1DoFlt9LWQn4YttrdnV6X2OiyzBi+A==" - } - }, - "npm:resolve@1.22.10": { - "type": "npm", - "name": "npm:resolve@1.22.10", - "data": { - "version": "1.22.10", - "packageName": "resolve", - "hash": "sha512-NPRy+/ncIMeDlTAsuqwKIiferiawhefFJtkNSW0qZJEqMEb+qBt/77B/jGeeek+F0uOeN05CDa6HXbbIgtVX4w==" - } - }, - "npm:resolve": { - "type": "npm", - "name": "npm:resolve", - "data": { - "version": "2.0.0-next.5", - "packageName": "resolve", - "hash": "sha512-U7WjGVG9sH8tvjW5SmGbQuui75FiyjAX72HX15DwBBwF9dNiQZRQAg9nnPhYy+TUnE0+VcrttuvNI8oSxZcocA==" - } - }, - "npm:responselike": { - "type": "npm", - "name": "npm:responselike", - "data": { - "version": "2.0.1", - "packageName": "responselike", - "hash": "sha512-4gl03wn3hj1HP3yzgdI7d3lCkF95F21Pz4BPGvKHinyQzALR5CapwC8yIi0Rh58DEMQ/SguC03wFj2k0M/mHhw==" - } - }, - "npm:restore-cursor": { - "type": "npm", - "name": "npm:restore-cursor", - "data": { - "version": "3.1.0", - "packageName": "restore-cursor", - "hash": "sha512-l+sSefzHpj5qimhFSE5a8nufZYAM3sBSVMAPtYkmC+4EH2anSGaEMXSD0izRQbu9nfyQ9y5JrVmp7E8oZrUjvA==" - } - }, - "npm:ret": { - "type": "npm", - "name": "npm:ret", - "data": { - "version": "0.5.0", - "packageName": "ret", - "hash": "sha512-I1XxrZSQ+oErkRR4jYbAyEEu2I0avBvvMM5JN+6EBprOGRCs63ENqZ3vjavq8fBw2+62G5LF5XelKwuJpcvcxw==" - } - }, - "npm:retry@0.12.0": { - "type": "npm", - "name": "npm:retry@0.12.0", - "data": { - "version": "0.12.0", - "packageName": "retry", - "hash": "sha512-9LkiTwjUh6rT555DtE9rTX+BKByPfrMzEAtnlEtdEwr3Nkffwiihqe2bWADg+OQRjt9gl6ICdmB/ZFDCGAtSow==" - } - }, - "npm:retry": { - "type": "npm", - "name": "npm:retry", - "data": { - "version": "0.13.1", - "packageName": "retry", - "hash": "sha512-XQBQ3I8W1Cge0Seh+6gjj03LbmRFWuoszgK9ooCpwYIrhhoO80pfq4cUkU5DkknwfOfFteRwlZ56PYOGYyFWdg==" - } - }, - "npm:reusify": { - "type": "npm", - "name": "npm:reusify", - "data": { - "version": "1.1.0", - "packageName": "reusify", - "hash": "sha512-g6QUff04oZpHs0eG5p83rFLhHeV00ug/Yf9nZM6fLeUrPguBTkTQOdpAWWspMh55TZfVQDPaN3NQJfbVRAxdIw==" - } - }, - "npm:rfdc": { - "type": "npm", - "name": "npm:rfdc", - "data": { - "version": "1.4.1", - "packageName": "rfdc", - "hash": "sha512-q1b3N5QkRUWUl7iyylaaj3kOpIT0N2i9MqIEQXP73GVsN9cw3fdx8X63cEmWhJGi2PPCF23Ijp7ktmd39rawIA==" - } - }, - "npm:rimraf": { - "type": "npm", - "name": "npm:rimraf", - "data": { - "version": "6.1.3", - "packageName": "rimraf", - "hash": "sha512-LKg+Cr2ZF61fkcaK1UdkH2yEBBKnYjTyWzTJT6KNPcSPaiT7HSdhtMXQuN5wkTX0Xu72KQ1l8S42rlmexS2hSA==" - } - }, - "npm:rolldown-plugin-dts": { - "type": "npm", - "name": "npm:rolldown-plugin-dts", - "data": { - "version": "0.22.5", - "packageName": "rolldown-plugin-dts", - "hash": "sha512-M/HXfM4cboo+jONx9Z0X+CUf3B5tCi7ni+kR5fUW50Fp9AlZk0oVLesibGWgCXDKFp5lpgQ9yhKoImUFjl3VZw==" - } - }, - "npm:rolldown@1.0.0-beta.51": { - "type": "npm", - "name": "npm:rolldown@1.0.0-beta.51", - "data": { - "version": "1.0.0-beta.51", - "packageName": "rolldown", - "hash": "sha512-ZRLgPlS91l4JztLYEZnmMcd3Umcla1hkXJgiEiR4HloRJBBoeaX8qogTu5Jfu36rRMVLndzqYv0h+M5gJAkUfg==" - } - }, - "npm:rolldown@1.0.0-rc.11": { - "type": "npm", - "name": "npm:rolldown@1.0.0-rc.11", - "data": { - "version": "1.0.0-rc.11", - "packageName": "rolldown", - "hash": "sha512-NRjoKMusSjfRbSYiH3VSumlkgFe7kYAa3pzVOsVYVFY3zb5d7nS+a3KGQ7hJKXuYWbzJKPVQ9Wxq2UvyK+ENpw==" - } - }, - "npm:rolldown": { - "type": "npm", - "name": "npm:rolldown", - "data": { - "version": "1.0.0-rc.9", - "packageName": "rolldown", - "hash": "sha512-9EbgWge7ZH+yqb4d2EnELAntgPTWbfL8ajiTW+SyhJEC4qhBbkCKbqFV4Ge4zmu5ziQuVbWxb/XwLZ+RIO7E8Q==" - } - }, - "npm:router": { - "type": "npm", - "name": "npm:router", - "data": { - "version": "2.2.0", - "packageName": "router", - "hash": "sha512-nLTrUKm2UyiL7rlhapu/Zl45FwNgkZGaCpZbIHajDYgwlJCOzLSk+cIPAnsEqV955GjILJnKbdQC1nVPz+gAYQ==" - } - }, - "npm:run-parallel": { - "type": "npm", - "name": "npm:run-parallel", - "data": { - "version": "1.2.0", - "packageName": "run-parallel", - "hash": "sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==" - } - }, - "npm:safe-array-concat": { - "type": "npm", - "name": "npm:safe-array-concat", - "data": { - "version": "1.1.3", - "packageName": "safe-array-concat", - "hash": "sha512-AURm5f0jYEOydBj7VQlVvDrjeFgthDdEF5H1dP+6mNpoXOMo1quQqJ4wvJDyRZ9+pO3kGWoOdmV08cSv2aJV6Q==" - } - }, - "npm:safe-buffer": { - "type": "npm", - "name": "npm:safe-buffer", - "data": { - "version": "5.1.2", - "packageName": "safe-buffer", - "hash": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==" - } - }, - "npm:safe-buffer@5.2.1": { - "type": "npm", - "name": "npm:safe-buffer@5.2.1", - "data": { - "version": "5.2.1", - "packageName": "safe-buffer", - "hash": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==" - } - }, - "npm:safe-push-apply": { - "type": "npm", - "name": "npm:safe-push-apply", - "data": { - "version": "1.0.0", - "packageName": "safe-push-apply", - "hash": "sha512-iKE9w/Z7xCzUMIZqdBsp6pEQvwuEebH4vdpjcDWnyzaI6yl6O9FHvVpmGelvEHNsoY6wGblkxR6Zty/h00WiSA==" - } - }, - "npm:safe-regex-test": { - "type": "npm", - "name": "npm:safe-regex-test", - "data": { - "version": "1.1.0", - "packageName": "safe-regex-test", - "hash": "sha512-x/+Cz4YrimQxQccJf5mKEbIa1NzeCRNI5Ecl/ekmlYaampdNLPalVyIcCZNNH3MvmqBugV5TMYZXv0ljslUlaw==" - } - }, - "npm:safe-regex2": { - "type": "npm", - "name": "npm:safe-regex2", - "data": { - "version": "5.0.0", - "packageName": "safe-regex2", - "hash": "sha512-YwJwe5a51WlK7KbOJREPdjNrpViQBI3p4T50lfwPuDhZnE3XGVTlGvi+aolc5+RvxDD6bnUmjVsU9n1eboLUYw==" - } - }, - "npm:safe-stable-stringify": { - "type": "npm", - "name": "npm:safe-stable-stringify", - "data": { - "version": "2.5.0", - "packageName": "safe-stable-stringify", - "hash": "sha512-b3rppTKm9T+PsVCBEOUR46GWI7fdOs00VKZ1+9c1EWDaDMvjQc6tUwuFyIprgGgTcWoVHSKrU8H31ZHA2e0RHA==" - } - }, - "npm:safer-buffer": { - "type": "npm", - "name": "npm:safer-buffer", - "data": { - "version": "2.1.2", - "packageName": "safer-buffer", - "hash": "sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==" - } - }, - "npm:scheduler": { - "type": "npm", - "name": "npm:scheduler", - "data": { - "version": "0.27.0", - "packageName": "scheduler", - "hash": "sha512-eNv+WrVbKu1f3vbYJT/xtiF5syA5HPIMtf9IgY/nKg0sWqzAUEvqY/xm7OcZc/qafLx/iO9FgOmeSAp4v5ti/Q==" - } - }, - "npm:scule": { - "type": "npm", - "name": "npm:scule", - "data": { - "version": "1.3.0", - "packageName": "scule", - "hash": "sha512-6FtHJEvt+pVMIB9IBY+IcCJ6Z5f1iQnytgyfKMhDKgmzYG+TeH/wx1y3l27rshSbLiSanrR9ffZDrEsmjlQF2g==" - } - }, - "npm:secure-compare": { - "type": "npm", - "name": "npm:secure-compare", - "data": { - "version": "3.0.1", - "packageName": "secure-compare", - "hash": "sha512-AckIIV90rPDcBcglUwXPF3kg0P0qmPsPXAj6BBEENQE1p5yA1xfmDJzfi1Tappj37Pv2mVbKpL3Z1T+Nn7k1Qw==" - } - }, - "npm:secure-json-parse": { - "type": "npm", - "name": "npm:secure-json-parse", - "data": { - "version": "2.7.0", - "packageName": "secure-json-parse", - "hash": "sha512-6aU+Rwsezw7VR8/nyvKTx8QpWH9FrcYiXXlqC4z5d5XQBDRqtbfsRjnwGyqbi3gddNtWHuEk9OANUotL26qKUw==" - } - }, - "npm:secure-json-parse@4.1.0": { - "type": "npm", - "name": "npm:secure-json-parse@4.1.0", - "data": { - "version": "4.1.0", - "packageName": "secure-json-parse", - "hash": "sha512-l4KnYfEyqYJxDwlNVyRfO2E4NTHfMKAWdUuA8J0yve2Dz/E/PdBepY03RvyJpssIpRFwJoCD55wA+mEDs6ByWA==" - } - }, - "npm:semver": { - "type": "npm", - "name": "npm:semver", - "data": { - "version": "6.3.1", - "packageName": "semver", - "hash": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==" - } - }, - "npm:semver@7.7.4": { - "type": "npm", - "name": "npm:semver@7.7.4", - "data": { - "version": "7.7.4", - "packageName": "semver", - "hash": "sha512-vFKC2IEtQnVhpT78h1Yp8wzwrf8CM+MzKMHGJZfBtzhZNycRFnXsHk6E5TxIkkMsgNS7mdX3AGB7x2QM2di4lA==" - } - }, - "npm:send": { - "type": "npm", - "name": "npm:send", - "data": { - "version": "1.2.0", - "packageName": "send", - "hash": "sha512-uaW0WwXKpL9blXE2o0bRhoL2EGXIrZxQ2ZQ4mgcfoBxdFmQold+qWsD2jLrfZ0trjKL6vOw0j//eAwcALFjKSw==" - } - }, - "npm:seq-queue": { - "type": "npm", - "name": "npm:seq-queue", - "data": { - "version": "0.0.5", - "packageName": "seq-queue", - "hash": "sha512-hr3Wtp/GZIc/6DAGPDcV4/9WoZhjrkXsi5B/07QgX8tsdc6ilr7BFM6PM6rbdAX1kFSDYeZGLipIZZKyQP0O5Q==" - } - }, - "npm:serialize-error": { - "type": "npm", - "name": "npm:serialize-error", - "data": { - "version": "8.1.0", - "packageName": "serialize-error", - "hash": "sha512-3NnuWfM6vBYoy5gZFvHiYsVbafvI9vZv/+jlIigFn4oP4zjNPK3LhcY0xSCgeb1a5L8jO71Mit9LlNoi2UfDDQ==" - } - }, - "npm:seroval-plugins": { - "type": "npm", - "name": "npm:seroval-plugins", - "data": { - "version": "1.5.0", - "packageName": "seroval-plugins", - "hash": "sha512-EAHqADIQondwRZIdeW2I636zgsODzoBDwb3PT/+7TLDWyw1Dy/Xv7iGUIEXXav7usHDE9HVhOU61irI3EnyyHA==" - } - }, - "npm:seroval": { - "type": "npm", - "name": "npm:seroval", - "data": { - "version": "1.5.0", - "packageName": "seroval", - "hash": "sha512-OE4cvmJ1uSPrKorFIH9/w/Qwuvi/IMcGbv5RKgcJ/zjA/IohDLU6SVaxFN9FwajbP7nsX0dQqMDes1whk3y+yw==" - } - }, - "npm:serve-static": { - "type": "npm", - "name": "npm:serve-static", - "data": { - "version": "2.2.0", - "packageName": "serve-static", - "hash": "sha512-61g9pCh0Vnh7IutZjtLGGpTA355+OPn2TyDv/6ivP2h/AdAVX9azsoxmg2/M6nZeQZNYBEwIcsne1mJd9oQItQ==" - } - }, - "npm:set-cookie-parser": { - "type": "npm", - "name": "npm:set-cookie-parser", - "data": { - "version": "2.7.2", - "packageName": "set-cookie-parser", - "hash": "sha512-oeM1lpU/UvhTxw+g3cIfxXHyJRc/uidd3yK1P242gzHds0udQBYzs3y8j4gCCW+ZJ7ad0yctld8RYO+bdurlvw==" - } - }, - "npm:set-function-length": { - "type": "npm", - "name": "npm:set-function-length", - "data": { - "version": "1.2.2", - "packageName": "set-function-length", - "hash": "sha512-pgRc4hJ4/sNjWCSS9AmnS40x3bNMDTknHgL5UaMBTMyJnU90EgWh1Rz+MC9eFu4BuN/UwZjKQuY/1v3rM7HMfg==" - } - }, - "npm:set-function-name": { - "type": "npm", - "name": "npm:set-function-name", - "data": { - "version": "2.0.2", - "packageName": "set-function-name", - "hash": "sha512-7PGFlmtwsEADb0WYyvCMa1t+yke6daIG4Wirafur5kcf+MhUnPms1UeR0CKQdTZD81yESwMHbtn+TR+dMviakQ==" - } - }, - "npm:set-proto": { - "type": "npm", - "name": "npm:set-proto", - "data": { - "version": "1.0.0", - "packageName": "set-proto", - "hash": "sha512-RJRdvCo6IAnPdsvP/7m6bsQqNnn1FCBX5ZNtFL98MmFF/4xAIJTIg1YbHW5DC2W5SKZanrC6i4HsJqlajw/dZw==" - } - }, - "npm:setprototypeof": { - "type": "npm", - "name": "npm:setprototypeof", - "data": { - "version": "1.2.0", - "packageName": "setprototypeof", - "hash": "sha512-E5LDX7Wrp85Kil5bhZv46j8jOeboKq5JMmYM3gVGdGH8xFpPWXUMsNrlODCrkoxMEeNi/XZIwuRvY4XNwYMJpw==" - } - }, - "npm:shallow-equal": { - "type": "npm", - "name": "npm:shallow-equal", - "data": { - "version": "3.1.0", - "packageName": "shallow-equal", - "hash": "sha512-pfVOw8QZIXpMbhBWvzBISicvToTiM5WBF1EeAUZDDSb5Dt29yl4AYbyywbJFSEsRUMr7gJaxqCdr4L3tQf9wVg==" - } - }, - "npm:sharp@0.33.5": { - "type": "npm", - "name": "npm:sharp@0.33.5", - "data": { - "version": "0.33.5", - "packageName": "sharp", - "hash": "sha512-haPVm1EkS9pgvHrQ/F3Xy+hgcuMV0Wm9vfIBSiwZ05k+xgb0PkBQpGsAA/oWdDobNaZTH5ppvHtzCFbnSEwHVw==" - } - }, - "npm:sharp": { - "type": "npm", - "name": "npm:sharp", - "data": { - "version": "0.34.5", - "packageName": "sharp", - "hash": "sha512-Ou9I5Ft9WNcCbXrU9cMgPBcCK8LiwLqcbywW3t4oDV37n1pzpuNLsYiAV8eODnjbtQlSDwZ2cUEeQz4E54Hltg==" - } - }, - "npm:shebang-command": { - "type": "npm", - "name": "npm:shebang-command", - "data": { - "version": "2.0.0", - "packageName": "shebang-command", - "hash": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==" - } - }, - "npm:shebang-regex": { - "type": "npm", - "name": "npm:shebang-regex", - "data": { - "version": "3.0.0", - "packageName": "shebang-regex", - "hash": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==" - } - }, - "npm:shell-quote": { - "type": "npm", - "name": "npm:shell-quote", - "data": { - "version": "1.8.3", - "packageName": "shell-quote", - "hash": "sha512-ObmnIF4hXNg1BqhnHmgbDETF8dLPCggZWBjkQfhZpbszZnYur5DUljTcCHii5LC3J5E0yeO/1LIMyH+UvHQgyw==" - } - }, - "npm:side-channel-list": { - "type": "npm", - "name": "npm:side-channel-list", - "data": { - "version": "1.0.0", - "packageName": "side-channel-list", - "hash": "sha512-FCLHtRD/gnpCiCHEiJLOwdmFP+wzCmDEkc9y7NsYxeF4u7Btsn1ZuwgwJGxImImHicJArLP4R0yX4c2KCrMrTA==" - } - }, - "npm:side-channel-map": { - "type": "npm", - "name": "npm:side-channel-map", - "data": { - "version": "1.0.1", - "packageName": "side-channel-map", - "hash": "sha512-VCjCNfgMsby3tTdo02nbjtM/ewra6jPHmpThenkTYh8pG9ucZ/1P8So4u4FGBek/BjpOVsDCMoLA/iuBKIFXRA==" - } - }, - "npm:side-channel-weakmap": { - "type": "npm", - "name": "npm:side-channel-weakmap", - "data": { - "version": "1.0.2", - "packageName": "side-channel-weakmap", - "hash": "sha512-WPS/HvHQTYnHisLo9McqBHOJk2FkHO/tlpvldyrnem4aeQp4hai3gythswg6p01oSoTl58rcpiFAjF2br2Ak2A==" - } - }, - "npm:side-channel": { - "type": "npm", - "name": "npm:side-channel", - "data": { - "version": "1.1.0", - "packageName": "side-channel", - "hash": "sha512-ZX99e6tRweoUXqR+VBrslhda51Nh5MTQwou5tnUDgbtyM0dBgmhEDtWGP/xbKn6hqfPRHujUNwz5fy/wbbhnpw==" - } - }, - "npm:siginfo": { - "type": "npm", - "name": "npm:siginfo", - "data": { - "version": "2.0.0", - "packageName": "siginfo", - "hash": "sha512-ybx0WO1/8bSBLEWXZvEd7gMW3Sn3JFlW3TvX1nREbDLRNQNaeNN8WK0meBwPdAaOI7TtRRRJn/Es1zhrrCHu7g==" - } - }, - "npm:signal-exit@3.0.7": { - "type": "npm", - "name": "npm:signal-exit@3.0.7", - "data": { - "version": "3.0.7", - "packageName": "signal-exit", - "hash": "sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==" - } - }, - "npm:signal-exit": { - "type": "npm", - "name": "npm:signal-exit", - "data": { - "version": "4.1.0", - "packageName": "signal-exit", - "hash": "sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==" - } - }, - "npm:simple-concat": { - "type": "npm", - "name": "npm:simple-concat", - "data": { - "version": "1.0.1", - "packageName": "simple-concat", - "hash": "sha512-cSFtAPtRhljv69IK0hTVZQ+OfE9nePi/rtJmw5UjHeVyVroEqJXP1sFztKUy1qU+xvz3u/sfYJLa947b7nAN2Q==" - } - }, - "npm:simple-get": { - "type": "npm", - "name": "npm:simple-get", - "data": { - "version": "4.0.1", - "packageName": "simple-get", - "hash": "sha512-brv7p5WgH0jmQJr1ZDDfKDOSeWWg+OVypG99A/5vYGPqJ6pxiaHLy8nxtFjBA7oMa01ebA9gfh1uMCFqOuXxvA==" - } - }, - "npm:simple-swizzle": { - "type": "npm", - "name": "npm:simple-swizzle", - "data": { - "version": "0.2.4", - "packageName": "simple-swizzle", - "hash": "sha512-nAu1WFPQSMNr2Zn9PGSZK9AGn4t/y97lEm+MXTtUDwfP0ksAIX4nO+6ruD9Jwut4C49SB1Ws+fbXsm/yScWOHw==" - } - }, - "npm:sirv": { - "type": "npm", - "name": "npm:sirv", - "data": { - "version": "3.0.2", - "packageName": "sirv", - "hash": "sha512-2wcC/oGxHis/BoHkkPwldgiPSYcpZK3JU28WoMVv55yHJgcZ8rlXvuG9iZggz+sU1d4bRgIGASwyWqjxu3FM0g==" - } - }, - "npm:slash": { - "type": "npm", - "name": "npm:slash", - "data": { - "version": "5.1.0", - "packageName": "slash", - "hash": "sha512-ZA6oR3T/pEyuqwMgAKT0/hAv8oAXckzbkmR0UkUosQ+Mc4RxGoJkRmwHgHufaenlyAgE1Mxgpdcrf75y6XcnDg==" - } - }, - "npm:smart-buffer": { - "type": "npm", - "name": "npm:smart-buffer", - "data": { - "version": "4.2.0", - "packageName": "smart-buffer", - "hash": "sha512-94hK0Hh8rPqQl2xXc3HsaBoOXKV20MToPkcXvwbISWLEs+64sBq5kFgn2kJDHb1Pry9yrP0dxrCI9RRci7RXKg==" - } - }, - "npm:smol-toml": { - "type": "npm", - "name": "npm:smol-toml", - "data": { - "version": "1.5.2", - "packageName": "smol-toml", - "hash": "sha512-QlaZEqcAH3/RtNyet1IPIYPsEWAaYyXXv1Krsi+1L/QHppjX4Ifm8MQsBISz9vE8cHicIq3clogsheili5vhaQ==" - } - }, - "npm:socks-proxy-agent": { - "type": "npm", - "name": "npm:socks-proxy-agent", - "data": { - "version": "8.0.5", - "packageName": "socks-proxy-agent", - "hash": "sha512-HehCEsotFqbPW9sJ8WVYB6UbmIMv7kUUORIF2Nncq4VQvBfNBLibW9YZR5dlYCSUhwcD628pRllm7n+E+YTzJw==" - } - }, - "npm:socks": { - "type": "npm", - "name": "npm:socks", - "data": { - "version": "2.8.7", - "packageName": "socks", - "hash": "sha512-HLpt+uLy/pxB+bum/9DzAgiKS8CX1EvbWxI4zlmgGCExImLdiad2iCwXT5Z4c9c3Eq8rP2318mPW2c+QbtjK8A==" - } - }, - "npm:solid-element": { - "type": "npm", - "name": "npm:solid-element", - "data": { - "version": "1.9.1", - "packageName": "solid-element", - "hash": "sha512-baJy6Qz27oAUgkPlqOf3Y+7RsBiuVQrS51Nrh1ddDbrqrNPvJbIvehpUsTzLNFb2ZHIoHuNnDg330go/ZKcRdg==" - } - }, - "npm:solid-js": { - "type": "npm", - "name": "npm:solid-js", - "data": { - "version": "1.9.11", - "packageName": "solid-js", - "hash": "sha512-WEJtcc5mkh/BnHA6Yrg4whlF8g6QwpmXXRg4P2ztPmcKeHHlH4+djYecBLhSpecZY2RRECXYUwIc/C2r3yzQ4Q==" - } - }, - "npm:solid-motionone": { - "type": "npm", - "name": "npm:solid-motionone", - "data": { - "version": "1.0.4", - "packageName": "solid-motionone", - "hash": "sha512-aqEjgecoO9raDFznu/dEci7ORSmA26Kjj9J4Cn1Gyr0GZuOVdvsNxdxClTL9J40Aq/uYFx4GLwC8n70fMLHiuA==" - } - }, - "npm:solid-refresh": { - "type": "npm", - "name": "npm:solid-refresh", - "data": { - "version": "0.6.3", - "packageName": "solid-refresh", - "hash": "sha512-F3aPsX6hVw9ttm5LYlth8Q15x6MlI/J3Dn+o3EQyRTtTxidepSTwAYdozt01/YA+7ObcciagGEyXIopGZzQtbA==" - } - }, - "npm:sonic-boom": { - "type": "npm", - "name": "npm:sonic-boom", - "data": { - "version": "4.2.1", - "packageName": "sonic-boom", - "hash": "sha512-w6AxtubXa2wTXAUsZMMWERrsIRAdrK0Sc+FUytWvYAhBJLyuI4llrMIC1DtlNSdI99EI86KZum2MMq3EAZlF9Q==" - } - }, - "npm:source-map-js": { - "type": "npm", - "name": "npm:source-map-js", - "data": { - "version": "1.2.1", - "packageName": "source-map-js", - "hash": "sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA==" - } - }, - "npm:source-map-support": { - "type": "npm", - "name": "npm:source-map-support", - "data": { - "version": "0.5.21", - "packageName": "source-map-support", - "hash": "sha512-uBHU3L3czsIyYXKX88fdrGovxdSCoTGDRZ6SYXtSRxLZUzHg5P/66Ht6uoUlHu9EZod+inXhKo3qQgwXUT/y1w==" - } - }, - "npm:source-map": { - "type": "npm", - "name": "npm:source-map", - "data": { - "version": "0.6.1", - "packageName": "source-map", - "hash": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==" - } - }, - "npm:source-map@0.7.6": { - "type": "npm", - "name": "npm:source-map@0.7.6", - "data": { - "version": "0.7.6", - "packageName": "source-map", - "hash": "sha512-i5uvt8C3ikiWeNZSVZNWcfZPItFQOsYTUAOkcUPGd8DqDy1uOUikjt5dG+uRlwyvR108Fb9DOd4GvXfT0N2/uQ==" - } - }, - "npm:split2": { - "type": "npm", - "name": "npm:split2", - "data": { - "version": "4.2.0", - "packageName": "split2", - "hash": "sha512-UcjcJOWknrNkF6PLX83qcHM6KHgVKNkV62Y8a5uYDVv9ydGQVwAHMKqHdJje1VTWpljG0WYpCDhrCdAOYH4TWg==" - } - }, - "npm:sprintf-js": { - "type": "npm", - "name": "npm:sprintf-js", - "data": { - "version": "1.0.3", - "packageName": "sprintf-js", - "hash": "sha512-D9cPgkvLlV3t3IzL0D0YLvGA9Ahk4PcvVwUbN0dSGr1aP0Nrt4AEnTUbuGvquEC0mA64Gqt1fzirlRs5ibXx8g==" - } - }, - "npm:sqlstring": { - "type": "npm", - "name": "npm:sqlstring", - "data": { - "version": "2.3.3", - "packageName": "sqlstring", - "hash": "sha512-qC9iz2FlN7DQl3+wjwn3802RTyjCx7sDvfQEXchwa6CWOx07/WVfh91gBmQ9fahw8snwGEWU3xGzOt4tFyHLxg==" - } - }, - "npm:squirrelly": { - "type": "npm", - "name": "npm:squirrelly", - "data": { - "version": "9.1.0", - "packageName": "squirrelly", - "hash": "sha512-kvjFqb7qzC4gX4lkqSaU8QPvUHhDLMiDpxpz7a66vjTH0JtjLJqAXbPrc7ST61EefuuuW05sne2rjGskunrF2A==" - } - }, - "npm:srvx": { - "type": "npm", - "name": "npm:srvx", - "data": { - "version": "0.9.8", - "packageName": "srvx", - "hash": "sha512-RZaxTKJEE/14HYn8COLuUOJAt0U55N9l1Xf6jj+T0GoA01EUH1Xz5JtSUOI+EHn+AEgPCVn7gk6jHJffrr06fQ==" - } - }, - "npm:ssri": { - "type": "npm", - "name": "npm:ssri", - "data": { - "version": "12.0.0", - "packageName": "ssri", - "hash": "sha512-S7iGNosepx9RadX82oimUkvr0Ct7IjJbEbs4mJcTxst8um95J3sDYU1RBEOvdu6oL1Wek2ODI5i4MAw+dZ6cAQ==" - } - }, - "npm:stable": { - "type": "npm", - "name": "npm:stable", - "data": { - "version": "0.1.8", - "packageName": "stable", - "hash": "sha512-ji9qxRnOVfcuLDySj9qzhGSEFVobyt1kIOSkj1qZzYLzq7Tos/oUUWvotUPQLlrsidqsK6tBH89Bc9kL5zHA6w==" - } - }, - "npm:stackback": { - "type": "npm", - "name": "npm:stackback", - "data": { - "version": "0.0.2", - "packageName": "stackback", - "hash": "sha512-1XMJE5fQo1jGH6Y/7ebnwPOBEkIEnT4QF32d5R1+VXdXveM0IBMJt8zfaxX1P3QhVwrYe+576+jkANtSS2mBbw==" - } - }, - "npm:standaloner": { - "type": "npm", - "name": "npm:standaloner", - "data": { - "version": "0.1.11", - "packageName": "standaloner", - "hash": "sha512-JeLFj5rKTmy3UJj7/oGUVnmFaBIWmJQVP5Hv3s2D6Ju8kVPZYbGxOhMQS45QiEr2V0ngI83d/Vv4Zh62Ojs/rQ==" - } - }, - "npm:standaloner@0.2.2": { - "type": "npm", - "name": "npm:standaloner@0.2.2", - "data": { - "version": "0.2.2", - "packageName": "standaloner", - "hash": "sha512-u2petNp6YcEvRM96SIynC/ly4UI3EsevXGzdUcdAmXn7vA7iFaQCLd5+uyWRc7wSUsHfXck6VLEPrmI03Uy5Ug==" - } - }, - "npm:statuses": { - "type": "npm", - "name": "npm:statuses", - "data": { - "version": "2.0.2", - "packageName": "statuses", - "hash": "sha512-DvEy55V3DB7uknRo+4iOGT5fP1slR8wQohVdknigZPMpMstaKJQWhwiYBACJE3Ul2pTnATihhBYnRhZQHGBiRw==" - } - }, - "npm:std-env@3.10.0": { - "type": "npm", - "name": "npm:std-env@3.10.0", - "data": { - "version": "3.10.0", - "packageName": "std-env", - "hash": "sha512-5GS12FdOZNliM5mAOxFRg7Ir0pWz8MdpYm6AY6VPkGpbA7ZzmbzNcBJQ0GPvvyWgcY7QAhCgf9Uy89I03faLkg==" - } - }, - "npm:std-env": { - "type": "npm", - "name": "npm:std-env", - "data": { - "version": "4.0.0", - "packageName": "std-env", - "hash": "sha512-zUMPtQ/HBY3/50VbpkupYHbRroTRZJPRLvreamgErJVys0ceuzMkD44J/QjqhHjOzK42GQ3QZIeFG1OYfOtKqQ==" - } - }, - "npm:stop-iteration-iterator": { - "type": "npm", - "name": "npm:stop-iteration-iterator", - "data": { - "version": "1.1.0", - "packageName": "stop-iteration-iterator", - "hash": "sha512-eLoXW/DHyl62zxY4SCaIgnRhuMr6ri4juEYARS8E6sCEqzKpOiE521Ucofdx+KnDZl5xmvGYaaKCk5FEOxJCoQ==" - } - }, - "npm:stoppable": { - "type": "npm", - "name": "npm:stoppable", - "data": { - "version": "1.1.0", - "packageName": "stoppable", - "hash": "sha512-KXDYZ9dszj6bzvnEMRYvxgeTHU74QBFL54XKtP3nyMuJ81CFYtABZ3bAzL2EdFUaEwJOBOgENyFj3R7oTzDyyw==" - } - }, - "npm:streamx": { - "type": "npm", - "name": "npm:streamx", - "data": { - "version": "2.23.0", - "packageName": "streamx", - "hash": "sha512-kn+e44esVfn2Fa/O0CPFcex27fjIL6MkVae0Mm6q+E6f0hWv578YCERbv+4m02cjxvDsPKLnmxral/rR6lBMAg==" - } - }, - "npm:string-width": { - "type": "npm", - "name": "npm:string-width", - "data": { - "version": "4.2.3", - "packageName": "string-width", - "hash": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==" - } - }, - "npm:string-width@5.1.2": { - "type": "npm", - "name": "npm:string-width@5.1.2", - "data": { - "version": "5.1.2", - "packageName": "string-width", - "hash": "sha512-HnLOCR3vjcY8beoNLtcjZ5/nxn2afmME6lhrDrebokqMap+XbeW8n9TXpPDOqdGK5qcI3oT0GKTW6wC7EMiVqA==" - } - }, - "npm:string-width-cjs": { - "type": "npm", - "name": "npm:string-width-cjs", - "data": { - "version": "npm:string-width@4.2.3", - "packageName": "string-width-cjs", - "hash": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==" - } - }, - "npm:string.prototype.matchall": { - "type": "npm", - "name": "npm:string.prototype.matchall", - "data": { - "version": "4.0.12", - "packageName": "string.prototype.matchall", - "hash": "sha512-6CC9uyBL+/48dYizRf7H7VAYCMCNTBeM78x/VTUe9bFEaxBepPJDa1Ow99LqI/1yF7kuy7Q3cQsYMrcjGUcskA==" - } - }, - "npm:string.prototype.repeat": { - "type": "npm", - "name": "npm:string.prototype.repeat", - "data": { - "version": "1.0.0", - "packageName": "string.prototype.repeat", - "hash": "sha512-0u/TldDbKD8bFCQ/4f5+mNRrXwZ8hg2w7ZR8wa16e8z9XpePWl3eGEcUD0OXpEH/VJH/2G3gjUtR3ZOiBe2S/w==" - } - }, - "npm:string.prototype.trim": { - "type": "npm", - "name": "npm:string.prototype.trim", - "data": { - "version": "1.2.10", - "packageName": "string.prototype.trim", - "hash": "sha512-Rs66F0P/1kedk5lyYyH9uBzuiI/kNRmwJAR9quK6VOtIpZ2G+hMZd+HQbbv25MgCA6gEffoMZYxlTod4WcdrKA==" - } - }, - "npm:string.prototype.trimend": { - "type": "npm", - "name": "npm:string.prototype.trimend", - "data": { - "version": "1.0.9", - "packageName": "string.prototype.trimend", - "hash": "sha512-G7Ok5C6E/j4SGfyLCloXTrngQIQU3PWtXGst3yM7Bea9FRURf1S42ZHlZZtsNque2FN2PoUhfZXYLNWwEr4dLQ==" - } - }, - "npm:string.prototype.trimstart": { - "type": "npm", - "name": "npm:string.prototype.trimstart", - "data": { - "version": "1.0.8", - "packageName": "string.prototype.trimstart", - "hash": "sha512-UXSH262CSZY1tfu3G3Secr6uGLCFVPMhIqHjlgCUtCCcgihYc/xKs9djMTMUOb2j1mVSeU8EU6NWc/iQKU6Gfg==" - } - }, - "npm:string_decoder": { - "type": "npm", - "name": "npm:string_decoder", - "data": { - "version": "1.3.0", - "packageName": "string_decoder", - "hash": "sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA==" - } - }, - "npm:strip-ansi@6.0.1": { - "type": "npm", - "name": "npm:strip-ansi@6.0.1", - "data": { - "version": "6.0.1", - "packageName": "strip-ansi", - "hash": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==" - } - }, - "npm:strip-ansi": { - "type": "npm", - "name": "npm:strip-ansi", - "data": { - "version": "7.1.2", - "packageName": "strip-ansi", - "hash": "sha512-gmBGslpoQJtgnMAvOVqGZpEz9dyoKTCzy2nfz/n8aIFhN/jCE/rCmcxabB6jOOHV+0WNnylOxaxBQPSvcWklhA==" - } - }, - "npm:strip-ansi-cjs": { - "type": "npm", - "name": "npm:strip-ansi-cjs", - "data": { - "version": "npm:strip-ansi@6.0.1", - "packageName": "strip-ansi-cjs", - "hash": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==" - } - }, - "npm:strip-bom": { - "type": "npm", - "name": "npm:strip-bom", - "data": { - "version": "3.0.0", - "packageName": "strip-bom", - "hash": "sha512-vavAMRXOgBVNF6nyEEmL3DBK19iRpDcoIwW+swQ+CbGiu7lju6t+JklA1MHweoWtadgt4ISVUsXLyDq34ddcwA==" - } - }, - "npm:strip-final-newline": { - "type": "npm", - "name": "npm:strip-final-newline", - "data": { - "version": "4.0.0", - "packageName": "strip-final-newline", - "hash": "sha512-aulFJcD6YK8V1G7iRB5tigAP4TsHBZZrOV8pjV++zdUwmeV8uzbY7yn6h9MswN62adStNZFuCIx4haBnRuMDaw==" - } - }, - "npm:strip-json-comments@2.0.1": { - "type": "npm", - "name": "npm:strip-json-comments@2.0.1", - "data": { - "version": "2.0.1", - "packageName": "strip-json-comments", - "hash": "sha512-4gB8na07fecVVkOI6Rs4e7T6NOTki5EmL7TUduTs6bu3EdnSycntVJ4re8kgZA+wx9IueI2Y11bfbgwtzuE0KQ==" - } - }, - "npm:strip-json-comments@3.1.1": { - "type": "npm", - "name": "npm:strip-json-comments@3.1.1", - "data": { - "version": "3.1.1", - "packageName": "strip-json-comments", - "hash": "sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==" - } - }, - "npm:strip-json-comments": { - "type": "npm", - "name": "npm:strip-json-comments", - "data": { - "version": "5.0.3", - "packageName": "strip-json-comments", - "hash": "sha512-1tB5mhVo7U+ETBKNf92xT4hrQa3pm0MZ0PQvuDnWgAAGHDsfp4lPSpiS6psrSiet87wyGPh9ft6wmhOMQ0hDiw==" - } - }, - "npm:style-to-object": { - "type": "npm", - "name": "npm:style-to-object", - "data": { - "version": "1.0.11", - "packageName": "style-to-object", - "hash": "sha512-5A560JmXr7wDyGLK12Nq/EYS38VkGlglVzkis1JEdbGWSnbQIEhZzTJhzURXN5/8WwwFCs/f/VVcmkTppbXLow==" - } - }, - "npm:stylehacks": { - "type": "npm", - "name": "npm:stylehacks", - "data": { - "version": "5.1.1", - "packageName": "stylehacks", - "hash": "sha512-sBpcd5Hx7G6seo7b1LkpttvTz7ikD0LlH5RmdcBNb6fFR0Fl7LQwHDFr300q4cwUqi+IYrFGmsIHieMBfnN/Bw==" - } - }, - "npm:sugarss": { - "type": "npm", - "name": "npm:sugarss", - "data": { - "version": "5.0.1", - "packageName": "sugarss", - "hash": "sha512-ctS5RYCBVvPoZAnzIaX5QSShK8ZiZxD5HUqSxlusvEMC+QZQIPCPOIJg6aceFX+K2rf4+SH89eu++h1Zmsr2nw==" - } - }, - "npm:superlock": { - "type": "npm", - "name": "npm:superlock", - "data": { - "version": "1.2.6", - "packageName": "superlock", - "hash": "sha512-V8XeWhjfZK1YA80gEGppesCtwXwGaqqoy1IoPRCZaap+sSgsDtRatAQlEfwoyHaHuR/ZR9KIk7JEpY96oRJ7TA==" - } - }, - "npm:supports-color@10.2.2": { - "type": "npm", - "name": "npm:supports-color@10.2.2", - "data": { - "version": "10.2.2", - "packageName": "supports-color", - "hash": "sha512-SS+jx45GF1QjgEXQx4NJZV9ImqmO2NPz5FNsIHrsDjh2YsHnawpan7SNQ1o8NuhrbHZy9AZhIoCUiCeaW/C80g==" - } - }, - "npm:supports-color": { - "type": "npm", - "name": "npm:supports-color", - "data": { - "version": "7.2.0", - "packageName": "supports-color", - "hash": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==" - } - }, - "npm:supports-preserve-symlinks-flag": { - "type": "npm", - "name": "npm:supports-preserve-symlinks-flag", - "data": { - "version": "1.0.0", - "packageName": "supports-preserve-symlinks-flag", - "hash": "sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==" - } - }, - "npm:svg-gradient": { - "type": "npm", - "name": "npm:svg-gradient", - "data": { - "version": "1.0.4", - "packageName": "svg-gradient", - "hash": "sha512-ugzdjn3dVLI3NG/UXzgL8hRcFS1Dwcj/EzXJ04F6EGgHGc5BbCGND3MhLcYsHeUICoUBnzbTXgNUKK2wMPm10Q==" - } - }, - "npm:svgo": { - "type": "npm", - "name": "npm:svgo", - "data": { - "version": "2.8.0", - "packageName": "svgo", - "hash": "sha512-+N/Q9kV1+F+UeWYoSiULYo4xYSDQlTgb+ayMobAXPwMnLvop7oxKMo9OzIrX5x3eS4L4f2UHhc9axXwY8DpChg==" - } - }, - "npm:synckit": { - "type": "npm", - "name": "npm:synckit", - "data": { - "version": "0.11.12", - "packageName": "synckit", - "hash": "sha512-Bh7QjT8/SuKUIfObSXNHNSK6WHo6J1tHCqJsuaFDP7gP0fkzSfTxI8y85JrppZ0h8l0maIgc2tfuZQ6/t3GtnQ==" - } - }, - "npm:tabbable": { - "type": "npm", - "name": "npm:tabbable", - "data": { - "version": "6.2.0", - "packageName": "tabbable", - "hash": "sha512-Cat63mxsVJlzYvN51JmVXIgNoUokrIaT2zLclCXjRd8boZ0004U4KCs/sToJ75C6sdlByWxpYnb5Boif1VSFew==" - } - }, - "npm:tailwind-merge": { - "type": "npm", - "name": "npm:tailwind-merge", - "data": { - "version": "3.5.0", - "packageName": "tailwind-merge", - "hash": "sha512-I8K9wewnVDkL1NTGoqWmVEIlUcB9gFriAEkXkfCjX5ib8ezGxtR3xD7iZIxrfArjEsH7F1CHD4RFUtxefdqV/A==" - } - }, - "npm:tailwindcss": { - "type": "npm", - "name": "npm:tailwindcss", - "data": { - "version": "4.2.2", - "packageName": "tailwindcss", - "hash": "sha512-KWBIxs1Xb6NoLdMVqhbhgwZf2PGBpPEiwOqgI4pFIYbNTfBXiKYyWoTsXgBQ9WFg/OlhnvHaY+AEpW7wSmFo2Q==" - } - }, - "npm:tapable": { - "type": "npm", - "name": "npm:tapable", - "data": { - "version": "2.3.0", - "packageName": "tapable", - "hash": "sha512-g9ljZiwki/LfxmQADO3dEY1CbpmXT5Hm2fJ+QaGKwSXUylMybePR7/67YW7jOrrvjEgL1Fmz5kzyAjWVWLlucg==" - } - }, - "npm:tar-fs@2.1.4": { - "type": "npm", - "name": "npm:tar-fs@2.1.4", - "data": { - "version": "2.1.4", - "packageName": "tar-fs", - "hash": "sha512-mDAjwmZdh7LTT6pNleZ05Yt65HC3E+NiQzl672vQG38jIrehtJk/J3mNwIg+vShQPcLF/LV7CMnDW6vjj6sfYQ==" - } - }, - "npm:tar-fs": { - "type": "npm", - "name": "npm:tar-fs", - "data": { - "version": "3.1.1", - "packageName": "tar-fs", - "hash": "sha512-LZA0oaPOc2fVo82Txf3gw+AkEd38szODlptMYejQUhndHMLQ9M059uXR+AfS7DNo0NpINvSqDsvyaCrBVkptWg==" - } - }, - "npm:tar-stream": { - "type": "npm", - "name": "npm:tar-stream", - "data": { - "version": "2.2.0", - "packageName": "tar-stream", - "hash": "sha512-ujeqbceABgwMZxEJnk2HDY2DlnUZ+9oEcb1KzTVfYHio0UE6dG71n60d8D2I4qNvleWrrXpmjpt7vZeF1LnMZQ==" - } - }, - "npm:tar-stream@3.1.7": { - "type": "npm", - "name": "npm:tar-stream@3.1.7", - "data": { - "version": "3.1.7", - "packageName": "tar-stream", - "hash": "sha512-qJj60CXt7IU1Ffyc3NJMjh6EkuCFej46zUqJ4J7pqYlThyd9bO0XBTmcOIhSzZJVWfsLks0+nle/j538YAW9RQ==" - } - }, - "npm:tar": { - "type": "npm", - "name": "npm:tar", - "data": { - "version": "7.5.1", - "packageName": "tar", - "hash": "sha512-nlGpxf+hv0v7GkWBK2V9spgactGOp0qvfWRxUMjqHyzrt3SgwE48DIv/FhqPHJYLHpgW1opq3nERbz5Anq7n1g==" - } - }, - "npm:telefunc": { - "type": "npm", - "name": "npm:telefunc", - "data": { - "version": "0.2.19", - "packageName": "telefunc", - "hash": "sha512-bCN3OtmAsRGXrsz23BFUENGSSOXJ3+5GEu5VTWGeWNw+bnWNkoR7h24zEmvlwbYi7g7mtzGndsdEVIhoA2R87g==" - } - }, - "npm:text-decoder": { - "type": "npm", - "name": "npm:text-decoder", - "data": { - "version": "1.2.3", - "packageName": "text-decoder", - "hash": "sha512-3/o9z3X0X0fTupwsYvR03pJ/DjWuqqrfwBgTQzdWDiQSm9KitAyz/9WqsT2JQW7KV2m+bC2ol/zqpW37NHxLaA==" - } - }, - "npm:thread-stream": { - "type": "npm", - "name": "npm:thread-stream", - "data": { - "version": "4.0.0", - "packageName": "thread-stream", - "hash": "sha512-4iMVL6HAINXWf1ZKZjIPcz5wYaOdPhtO8ATvZ+Xqp3BTdaqtAwQkNmKORqcIo5YkQqGXq5cwfswDwMqqQNrpJA==" - } - }, - "npm:tinybench": { - "type": "npm", - "name": "npm:tinybench", - "data": { - "version": "2.9.0", - "packageName": "tinybench", - "hash": "sha512-0+DUvqWMValLmha6lr4kD8iAMK1HzV0/aKnCtWb9v9641TnP/MFb7Pc2bxoxQjTXAErryXVgUOfv2YqNllqGeg==" - } - }, - "npm:tinyexec": { - "type": "npm", - "name": "npm:tinyexec", - "data": { - "version": "1.0.4", - "packageName": "tinyexec", - "hash": "sha512-u9r3uZC0bdpGOXtlxUIdwf9pkmvhqJdrVCH9fapQtgy/OeTTMZ1nqH7agtvEfmGui6e1XxjcdrlxvxJvc3sMqw==" - } - }, - "npm:tinyglobby": { - "type": "npm", - "name": "npm:tinyglobby", - "data": { - "version": "0.2.15", - "packageName": "tinyglobby", - "hash": "sha512-j2Zq4NyQYG5XMST4cbs02Ak8iJUdxRM0XI5QyxXuZOzKOINmWurp3smXu3y5wDcJrptwpSjgXHzIQxR0omXljQ==" - } - }, - "npm:tinyrainbow": { - "type": "npm", - "name": "npm:tinyrainbow", - "data": { - "version": "3.0.3", - "packageName": "tinyrainbow", - "hash": "sha512-PSkbLUoxOFRzJYjjxHJt9xro7D+iilgMX/C9lawzVuYiIdcihh9DXmVibBe8lmcFrRi/VzlPjBxbN7rH24q8/Q==" - } - }, - "npm:tlds": { - "type": "npm", - "name": "npm:tlds", - "data": { - "version": "1.260.0", - "packageName": "tlds", - "hash": "sha512-78+28EWBhCEE7qlyaHA9OR3IPvbCLiDh3Ckla593TksfFc9vfTsgvH7eS+dr3o9qr31gwGbogcI16yN91PoRjQ==" - } - }, - "npm:tldts-core": { - "type": "npm", - "name": "npm:tldts-core", - "data": { - "version": "7.0.25", - "packageName": "tldts-core", - "hash": "sha512-ZjCZK0rppSBu7rjHYDYsEaMOIbbT+nWF57hKkv4IUmZWBNrBWBOjIElc0mKRgLM8bm7x/BBlof6t2gi/Oq/Asw==" - } - }, - "npm:tldts-experimental": { - "type": "npm", - "name": "npm:tldts-experimental", - "data": { - "version": "7.0.25", - "packageName": "tldts-experimental", - "hash": "sha512-rFB8lPWHAf4II9+Zdlc6dwcJLIe6sqEzndcjfbcv9PdsFTlNYBgRI4y9aJzo7VMHvg/GRaUlFK+qZUyKpcE6zA==" - } - }, - "npm:tldts": { - "type": "npm", - "name": "npm:tldts", - "data": { - "version": "7.0.17", - "packageName": "tldts", - "hash": "sha512-Y1KQBgDd/NUc+LfOtKS6mNsC9CCaH+m2P1RoIZy7RAPo3C3/t8X45+zgut31cRZtZ3xKPjfn3TkGTrctC2TQIQ==" - } - }, - "npm:tmp": { - "type": "npm", - "name": "npm:tmp", - "data": { - "version": "0.2.5", - "packageName": "tmp", - "hash": "sha512-voyz6MApa1rQGUxT3E+BK7/ROe8itEx7vD8/HEvt4xwXucvQ5G5oeEiHkmHZJuBO21RpOf+YYm9MOivj709jow==" - } - }, - "npm:to-regex-range": { - "type": "npm", - "name": "npm:to-regex-range", - "data": { - "version": "5.0.1", - "packageName": "to-regex-range", - "hash": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==" - } - }, - "npm:toad-cache": { - "type": "npm", - "name": "npm:toad-cache", - "data": { - "version": "3.7.0", - "packageName": "toad-cache", - "hash": "sha512-/m8M+2BJUpoJdgAHoG+baCwBT+tf2VraSfkBgl0Y00qIWt41DJ8R5B8nsEw0I58YwF5IZH6z24/2TobDKnqSWw==" - } - }, - "npm:toidentifier": { - "type": "npm", - "name": "npm:toidentifier", - "data": { - "version": "1.0.1", - "packageName": "toidentifier", - "hash": "sha512-o5sSPKEkg/DIQNmH43V0/uerLrpzVedkUh8tGNvaeXpfpuwjKenlSox/2O/BTlZUtEe+JG7s5YhEz608PlAHRA==" - } - }, - "npm:totalist": { - "type": "npm", - "name": "npm:totalist", - "data": { - "version": "3.0.1", - "packageName": "totalist", - "hash": "sha512-sf4i37nQ2LBx4m3wB74y+ubopq6W/dIzXg0FDGjsYnZHVa1Da8FH853wlL2gtUhg+xJXjfk3kUZS3BRoQeoQBQ==" - } - }, - "npm:tough-cookie": { - "type": "npm", - "name": "npm:tough-cookie", - "data": { - "version": "6.0.0", - "packageName": "tough-cookie", - "hash": "sha512-kXuRi1mtaKMrsLUxz3sQYvVl37B0Ns6MzfrtV5DvJceE9bPyspOqk9xxv7XbZWcfLWbFmm997vl83qUWVJA64w==" - } - }, - "npm:tr46": { - "type": "npm", - "name": "npm:tr46", - "data": { - "version": "0.0.3", - "packageName": "tr46", - "hash": "sha512-N3WMsuqV66lT30CrXNbEjx4GEwlow3v6rr4mCcv6prnfwhS01rkgyFdjPNBYd9br7LpXV1+Emh01fHnq2Gdgrw==" - } - }, - "npm:tree-kill": { - "type": "npm", - "name": "npm:tree-kill", - "data": { - "version": "1.2.2", - "packageName": "tree-kill", - "hash": "sha512-L0Orpi8qGpRG//Nd+H90vFB+3iHnue1zSSGmNOOCh1GLJ7rUKVwV2HvijphGQS2UmhUZewS9VgvxYIdgr+fG1A==" - } - }, - "npm:ts-api-utils": { - "type": "npm", - "name": "npm:ts-api-utils", - "data": { - "version": "2.4.0", - "packageName": "ts-api-utils", - "hash": "sha512-3TaVTaAv2gTiMB35i3FiGJaRfwb3Pyn/j3m/bfAvGe8FB7CF6u+LMYqYlDh7reQf7UNvoTvdfAqHGmPGOSsPmA==" - } - }, - "npm:ts-deepmerge": { - "type": "npm", - "name": "npm:ts-deepmerge", - "data": { - "version": "7.0.3", - "packageName": "ts-deepmerge", - "hash": "sha512-Du/ZW2RfwV/D4cmA5rXafYjBQVuvu4qGiEEla4EmEHVHgRdx68Gftx7i66jn2bzHPwSVZY36Ae6OuDn9el4ZKA==" - } - }, - "npm:ts-morph": { - "type": "npm", - "name": "npm:ts-morph", - "data": { - "version": "26.0.0", - "packageName": "ts-morph", - "hash": "sha512-ztMO++owQnz8c/gIENcM9XfCEzgoGphTv+nKpYNM1bgsdOVC/jRZuEBf6N+mLLDNg68Kl+GgUZfOySaRiG1/Ug==" - } - }, - "npm:tsconfig-paths": { - "type": "npm", - "name": "npm:tsconfig-paths", - "data": { - "version": "4.2.0", - "packageName": "tsconfig-paths", - "hash": "sha512-NoZ4roiN7LnbKn9QqE1amc9DJfzvZXxF4xDavcOWt1BPkdx+m+0gJuPM+S0vCe7zTJMYUP0R8pO2XMr+Y8oLIg==" - } - }, - "npm:tsdown": { - "type": "npm", - "name": "npm:tsdown", - "data": { - "version": "0.21.4", - "packageName": "tsdown", - "hash": "sha512-Q/kBi8SXkr4X6JI/NAZKZY1UuiEcbuXtIskL4tZCsgpDiEPM/2W6lC+OonNA31S+V3KsWedFvbFDBs23hvt+Aw==" - } - }, - "npm:tslib": { - "type": "npm", - "name": "npm:tslib", - "data": { - "version": "2.8.1", - "packageName": "tslib", - "hash": "sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w==" - } - }, - "npm:tsx": { - "type": "npm", - "name": "npm:tsx", - "data": { - "version": "4.21.0", - "packageName": "tsx", - "hash": "sha512-5C1sg4USs1lfG0GFb2RLXsdpXqBSEhAaA/0kPL01wxzpMqLILNxIxIOKiILz+cdg/pLnOUxFYOR5yhHU666wbw==" - } - }, - "npm:tunnel-agent": { - "type": "npm", - "name": "npm:tunnel-agent", - "data": { - "version": "0.6.0", - "packageName": "tunnel-agent", - "hash": "sha512-McnNiV1l8RYeY8tBgEpuodCC1mLUdbSN+CYBL7kJsJNInOP8UjDDEwdk6Mw60vdLLrr5NHKZhMAOSrR2NZuQ+w==" - } - }, - "npm:turbo": { - "type": "npm", - "name": "npm:turbo", - "data": { - "version": "2.8.20", - "packageName": "turbo", - "hash": "sha512-Rb4qk5YT8RUwwdXtkLpkVhNEe/lor6+WV7S5tTlLpxSz6MjV5Qi8jGNn4gS6NAvrYGA/rNrE6YUQM85sCZUDbQ==" - } - }, - "npm:tw-animate-css": { - "type": "npm", - "name": "npm:tw-animate-css", - "data": { - "version": "1.4.0", - "packageName": "tw-animate-css", - "hash": "sha512-7bziOlRqH0hJx80h/3mbicLW7o8qLsH5+RaLR2t+OHM3D0JlWGODQKQ4cxbK7WlvmUxpcj6Kgu6EKqjrGFe3QQ==" - } - }, - "npm:type-check": { - "type": "npm", - "name": "npm:type-check", - "data": { - "version": "0.4.0", - "packageName": "type-check", - "hash": "sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==" - } - }, - "npm:type-fest@0.20.2": { - "type": "npm", - "name": "npm:type-fest@0.20.2", - "data": { - "version": "0.20.2", - "packageName": "type-fest", - "hash": "sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==" - } - }, - "npm:type-fest": { - "type": "npm", - "name": "npm:type-fest", - "data": { - "version": "4.41.0", - "packageName": "type-fest", - "hash": "sha512-TeTSQ6H5YHvpqVwBRcnLDCBnDOHWYu7IvGbHT6N8AOymcr9PJGjc1GTtiWZTYg0NCgYwvnYWEkVChQAr9bjfwA==" - } - }, - "npm:type-is": { - "type": "npm", - "name": "npm:type-is", - "data": { - "version": "2.0.1", - "packageName": "type-is", - "hash": "sha512-OZs6gsjF4vMp32qrCbiVSkrFmXtG/AZhY3t0iAMrMBiAZyV9oALtXO8hsrHbMXF9x6L3grlFuwW2oAz7cav+Gw==" - } - }, - "npm:type-level-regexp": { - "type": "npm", - "name": "npm:type-level-regexp", - "data": { - "version": "0.1.17", - "packageName": "type-level-regexp", - "hash": "sha512-wTk4DH3cxwk196uGLK/E9pE45aLfeKJacKmcEgEOA/q5dnPGNxXt0cfYdFxb57L+sEpf1oJH4Dnx/pnRcku9jg==" - } - }, - "npm:typed-array-buffer": { - "type": "npm", - "name": "npm:typed-array-buffer", - "data": { - "version": "1.0.3", - "packageName": "typed-array-buffer", - "hash": "sha512-nAYYwfY3qnzX30IkA6AQZjVbtK6duGontcQm1WSG1MD94YLqK0515GNApXkoxKOWMusVssAHWLh9SeaoefYFGw==" - } - }, - "npm:typed-array-byte-length": { - "type": "npm", - "name": "npm:typed-array-byte-length", - "data": { - "version": "1.0.3", - "packageName": "typed-array-byte-length", - "hash": "sha512-BaXgOuIxz8n8pIq3e7Atg/7s+DpiYrxn4vdot3w9KbnBhcRQq6o3xemQdIfynqSeXeDrF32x+WvfzmOjPiY9lg==" - } - }, - "npm:typed-array-byte-offset": { - "type": "npm", - "name": "npm:typed-array-byte-offset", - "data": { - "version": "1.0.4", - "packageName": "typed-array-byte-offset", - "hash": "sha512-bTlAFB/FBYMcuX81gbL4OcpH5PmlFHqlCCpAl8AlEzMz5k53oNDvN8p1PNOWLEmI2x4orp3raOFB51tv9X+MFQ==" - } - }, - "npm:typed-array-length": { - "type": "npm", - "name": "npm:typed-array-length", - "data": { - "version": "1.0.7", - "packageName": "typed-array-length", - "hash": "sha512-3KS2b+kL7fsuk/eJZ7EQdnEmQoaho/r6KUef7hxvltNA5DR8NAUM+8wJMbJyZ4G9/7i3v5zPBIMN5aybAh2/Jg==" - } - }, - "npm:typed-query-selector": { - "type": "npm", - "name": "npm:typed-query-selector", - "data": { - "version": "2.12.1", - "packageName": "typed-query-selector", - "hash": "sha512-uzR+FzI8qrUEIu96oaeBJmd9E7CFEiQ3goA5qCVgc4s5llSubcfGHq9yUstZx/k4s9dXHVKsE35YWoFyvEqEHA==" - } - }, - "npm:typescript-eslint": { - "type": "npm", - "name": "npm:typescript-eslint", - "data": { - "version": "8.57.1", - "packageName": "typescript-eslint", - "hash": "sha512-fLvZWf+cAGw3tqMCYzGIU6yR8K+Y9NT2z23RwOjlNFF2HwSB3KhdEFI5lSBv8tNmFkkBShSjsCjzx1vahZfISA==" - } - }, - "npm:typescript": { - "type": "npm", - "name": "npm:typescript", - "data": { - "version": "6.0.2", - "packageName": "typescript", - "hash": "sha512-bGdAIrZ0wiGDo5l8c++HWtbaNCWTS4UTv7RaTH/ThVIgjkveJt83m74bBHMJkuCbslY8ixgLBVZJIOiQlQTjfQ==" - } - }, - "npm:ufo": { - "type": "npm", - "name": "npm:ufo", - "data": { - "version": "1.6.3", - "packageName": "ufo", - "hash": "sha512-yDJTmhydvl5lJzBmy/hyOAA0d+aqCBuwl818haVdYCRrWV84o7YyeVm4QlVHStqNrrJSTb6jKuFAVqAFsr+K3Q==" - } - }, - "npm:unbash": { - "type": "npm", - "name": "npm:unbash", - "data": { - "version": "2.2.0", - "packageName": "unbash", - "hash": "sha512-X2wH19RAPZE3+ldGicOkoj/SIA83OIxcJ6Cuaw23hf8Xc6fQpvZXY0SftE2JgS0QhYLUG4uwodSI3R53keyh7w==" - } - }, - "npm:unbox-primitive": { - "type": "npm", - "name": "npm:unbox-primitive", - "data": { - "version": "1.1.0", - "packageName": "unbox-primitive", - "hash": "sha512-nWJ91DjeOkej/TA8pXQ3myruKpKEYgqvpw9lz4OPHj/NWFNluYrjbz9j01CJ8yKQd2g4jFoOkINCTW2I5LEEyw==" - } - }, - "npm:unconfig-core": { - "type": "npm", - "name": "npm:unconfig-core", - "data": { - "version": "7.5.0", - "packageName": "unconfig-core", - "hash": "sha512-Su3FauozOGP44ZmKdHy2oE6LPjk51M/TRRjHv2HNCWiDvfvCoxC2lno6jevMA91MYAdCdwP05QnWdWpSbncX/w==" - } - }, - "npm:unconfig": { - "type": "npm", - "name": "npm:unconfig", - "data": { - "version": "7.5.0", - "packageName": "unconfig", - "hash": "sha512-oi8Qy2JV4D3UQ0PsopR28CzdQ3S/5A1zwsUwp/rosSbfhJ5z7b90bIyTwi/F7hCLD4SGcZVjDzd4XoUQcEanvA==" - } - }, - "npm:uncrypto": { - "type": "npm", - "name": "npm:uncrypto", - "data": { - "version": "0.1.3", - "packageName": "uncrypto", - "hash": "sha512-Ql87qFHB3s/De2ClA9e0gsnS6zXG27SkTiSJwjCc9MebbfapQfuPzumMIUMi38ezPZVNFcHI9sUIepeQfw8J8Q==" - } - }, - "npm:undici-types": { - "type": "npm", - "name": "npm:undici-types", - "data": { - "version": "6.21.0", - "packageName": "undici-types", - "hash": "sha512-iwDZqg0QAGrg9Rav5H4n0M64c3mkR59cJ6wQp+7C4nI0gsmExaedaYLNO44eT4AtBBwjbTiGPMlt2Md0T9H9JQ==" - } - }, - "npm:undici@7.14.0": { - "type": "npm", - "name": "npm:undici@7.14.0", - "data": { - "version": "7.14.0", - "packageName": "undici", - "hash": "sha512-Vqs8HTzjpQXZeXdpsfChQTlafcMQaaIwnGwLam1wudSSjlJeQ3bw1j+TLPePgrCnCpUXx7Ba5Pdpf5OBih62NQ==" - } - }, - "npm:undici": { - "type": "npm", - "name": "npm:undici", - "data": { - "version": "7.24.4", - "packageName": "undici", - "hash": "sha512-BM/JzwwaRXxrLdElV2Uo6cTLEjhSb3WXboncJamZ15NgUURmvlXvxa6xkwIOILIjPNo9i8ku136ZvWV0Uly8+w==" - } - }, - "npm:unenv": { - "type": "npm", - "name": "npm:unenv", - "data": { - "version": "2.0.0-rc.24", - "packageName": "unenv", - "hash": "sha512-i7qRCmY42zmCwnYlh9H2SvLEypEFGye5iRmEMKjcGi7zk9UquigRjFtTLz0TYqr0ZGLZhaMHl/foy1bZR+Cwlw==" - } - }, - "npm:unicorn-magic@0.3.0": { - "type": "npm", - "name": "npm:unicorn-magic@0.3.0", - "data": { - "version": "0.3.0", - "packageName": "unicorn-magic", - "hash": "sha512-+QBBXBCvifc56fsbuxZQ6Sic3wqqc3WWaqxs58gvJrcOuN83HGTCwz3oS5phzU9LthRNE9VrJCFCLUgHeeFnfA==" - } - }, - "npm:unicorn-magic": { - "type": "npm", - "name": "npm:unicorn-magic", - "data": { - "version": "0.4.0", - "packageName": "unicorn-magic", - "hash": "sha512-wH590V9VNgYH9g3lH9wWjTrUoKsjLF6sGLjhR4sH1LWpLmCOH0Zf7PukhDA8BiS7KHe4oPNkcTHqYkj7SOGUOw==" - } - }, - "npm:union": { - "type": "npm", - "name": "npm:union", - "data": { - "version": "0.5.0", - "packageName": "union", - "hash": "sha512-N6uOhuW6zO95P3Mel2I2zMsbsanvvtgn6jVqJv4vbVcz/JN0OkL9suomjQGmWtxJQXOCqUJvquc1sMeNz/IwlA==" - } - }, - "npm:unique-filename": { - "type": "npm", - "name": "npm:unique-filename", - "data": { - "version": "4.0.0", - "packageName": "unique-filename", - "hash": "sha512-XSnEewXmQ+veP7xX2dS5Q4yZAvO40cBN2MWkJ7D/6sW4Dg6wYBNwM1Vrnz1FhH5AdeLIlUXRI9e28z1YZi71NQ==" - } - }, - "npm:unique-slug": { - "type": "npm", - "name": "npm:unique-slug", - "data": { - "version": "5.0.0", - "packageName": "unique-slug", - "hash": "sha512-9OdaqO5kwqR+1kVgHAhsp5vPNU0hnxRa26rBFNfNgM7M6pNtgzeBn3s/xbyCQL3dcjzOatcef6UUHpB/6MaETg==" - } - }, - "npm:unist-util-is": { - "type": "npm", - "name": "npm:unist-util-is", - "data": { - "version": "6.0.1", - "packageName": "unist-util-is", - "hash": "sha512-LsiILbtBETkDz8I9p1dQ0uyRUWuaQzd/cuEeS1hoRSyW5E5XGmTzlwY1OrNzzakGowI9Dr/I8HVaw4hTtnxy8g==" - } - }, - "npm:unist-util-stringify-position": { - "type": "npm", - "name": "npm:unist-util-stringify-position", - "data": { - "version": "4.0.0", - "packageName": "unist-util-stringify-position", - "hash": "sha512-0ASV06AAoKCDkS2+xw5RXJywruurpbC4JZSm7nr7MOt1ojAzvyyaO+UxZf18j8FCF6kmzCZKcAgN/yu2gm2XgQ==" - } - }, - "npm:unist-util-visit-parents": { - "type": "npm", - "name": "npm:unist-util-visit-parents", - "data": { - "version": "6.0.2", - "packageName": "unist-util-visit-parents", - "hash": "sha512-goh1s1TBrqSqukSc8wrjwWhL0hiJxgA8m4kFxGlQ+8FYQ3C/m11FcTs4YYem7V664AhHVvgoQLk890Ssdsr2IQ==" - } - }, - "npm:unist-util-visit": { - "type": "npm", - "name": "npm:unist-util-visit", - "data": { - "version": "5.0.0", - "packageName": "unist-util-visit", - "hash": "sha512-MR04uvD+07cwl/yhVuVWAtw+3GOR/knlL55Nd/wAdblk27GCVt3lqpTivy/tkJcZoNPzTwS1Y+KMojlLDhoTzg==" - } - }, - "npm:unpipe": { - "type": "npm", - "name": "npm:unpipe", - "data": { - "version": "1.0.0", - "packageName": "unpipe", - "hash": "sha512-pjy2bYhSsufwWlKwPc+l3cN7+wuJlK6uz0YdJEOlQDbl6jo/YlPi4mb8agUkVC8BF7V8NuzeyPNqRksA3hztKQ==" - } - }, - "npm:unplugin-purge-polyfills": { - "type": "npm", - "name": "npm:unplugin-purge-polyfills", - "data": { - "version": "0.1.0", - "packageName": "unplugin-purge-polyfills", - "hash": "sha512-dHahgAhuzaHZHU65oY7BU24vqH/AtcXppdH1B1SmrBeglyX7NOBtkryjp2F8mOD4tL2RVxfAc41JRqRKTAeAkA==" - } - }, - "npm:unplugin": { - "type": "npm", - "name": "npm:unplugin", - "data": { - "version": "2.3.10", - "packageName": "unplugin", - "hash": "sha512-6NCPkv1ClwH+/BGE9QeoTIl09nuiAt0gS28nn1PvYXsGKRwM2TCbFA2QiilmehPDTXIe684k4rZI1yl3A1PCUw==" - } - }, - "npm:unrun": { - "type": "npm", - "name": "npm:unrun", - "data": { - "version": "0.2.32", - "packageName": "unrun", - "hash": "sha512-opd3z6791rf281JdByf0RdRQrpcc7WyzqittqIXodM/5meNWdTwrVxeyzbaCp4/Rgls/um14oUaif1gomO8YGg==" - } - }, - "npm:update-browserslist-db": { - "type": "npm", - "name": "npm:update-browserslist-db", - "data": { - "version": "1.2.2", - "packageName": "update-browserslist-db", - "hash": "sha512-E85pfNzMQ9jpKkA7+TJAi4TJN+tBCuWh5rUcS/sv6cFi+1q9LYDwDI5dpUL0u/73EElyQ8d3TEaeW4sPedBqYA==" - } - }, - "npm:uri-js": { - "type": "npm", - "name": "npm:uri-js", - "data": { - "version": "4.4.1", - "packageName": "uri-js", - "hash": "sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==" - } - }, - "npm:url-http": { - "type": "npm", - "name": "npm:url-http", - "data": { - "version": "1.3.2", - "packageName": "url-http", - "hash": "sha512-w2ooUk48t/nTJE7axsVsj+pretcM0FA1NdoUg5/H68OWj12bE8pbS6+JvqaGiU9TBaruWUDomZyC/uriT9bFNQ==" - } - }, - "npm:url-join": { - "type": "npm", - "name": "npm:url-join", - "data": { - "version": "4.0.1", - "packageName": "url-join", - "hash": "sha512-jk1+QP6ZJqyOiuEI9AEWQfju/nB2Pw466kbA0LEZljHwKeMgd9WrAEgEGxjPDD2+TNbbb37rTyhEfrCXfuKXnA==" - } - }, - "npm:url-regex-safe": { - "type": "npm", - "name": "npm:url-regex-safe", - "data": { - "version": "4.0.0", - "packageName": "url-regex-safe", - "hash": "sha512-BrnFCWKNFrFnRzKD66NtJqQepfJrUHNPvPxE5y5NSAhXBb4OlobQjt7907Jm4ItPiXaeX+dDWMkcnOd4jR9N8A==" - } - }, - "npm:use-callback-ref": { - "type": "npm", - "name": "npm:use-callback-ref", - "data": { - "version": "1.3.3", - "packageName": "use-callback-ref", - "hash": "sha512-jQL3lRnocaFtu3V00JToYz/4QkNWswxijDaCVNZRiRTO3HQDLsdu1ZtmIUvV4yPp+rvWm5j0y0TG/S61cuijTg==" - } - }, - "npm:use-composed-ref": { - "type": "npm", - "name": "npm:use-composed-ref", - "data": { - "version": "1.4.0", - "packageName": "use-composed-ref", - "hash": "sha512-djviaxuOOh7wkj0paeO1Q/4wMZ8Zrnag5H6yBvzN7AKKe8beOaED9SF5/ByLqsku8NP4zQqsvM2u3ew/tJK8/w==" - } - }, - "npm:use-isomorphic-layout-effect": { - "type": "npm", - "name": "npm:use-isomorphic-layout-effect", - "data": { - "version": "1.2.1", - "packageName": "use-isomorphic-layout-effect", - "hash": "sha512-tpZZ+EX0gaghDAiFR37hj5MgY6ZN55kLiPkJsKxBMZ6GZdOSPJXiOzPM984oPYZ5AnehYx5WQp1+ME8I/P/pRA==" - } - }, - "npm:use-latest": { - "type": "npm", - "name": "npm:use-latest", - "data": { - "version": "1.3.0", - "packageName": "use-latest", - "hash": "sha512-mhg3xdm9NaM8q+gLT8KryJPnRFOz1/5XPBhmDEVZK1webPzDjrPk7f/mbpeLqTgB9msytYWANxgALOCJKnLvcQ==" - } - }, - "npm:use-sidecar": { - "type": "npm", - "name": "npm:use-sidecar", - "data": { - "version": "1.1.3", - "packageName": "use-sidecar", - "hash": "sha512-Fedw0aZvkhynoPYlA5WXrMCAMm+nSWdZt6lzJQ7Ok8S6Q+VsHmHpRWndVRJ8Be0ZbkfPc5LRYH+5XrzXcEeLRQ==" - } - }, - "npm:util-deprecate": { - "type": "npm", - "name": "npm:util-deprecate", - "data": { - "version": "1.0.2", - "packageName": "util-deprecate", - "hash": "sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==" - } - }, - "npm:valibot": { - "type": "npm", - "name": "npm:valibot", - "data": { - "version": "1.2.0", - "packageName": "valibot", - "hash": "sha512-mm1rxUsmOxzrwnX5arGS+U4T25RdvpPjPN4yR0u9pUBov9+zGVtO84tif1eY4r6zWxVxu3KzIyknJy3rxfRZZg==" - } - }, - "npm:vary": { - "type": "npm", - "name": "npm:vary", - "data": { - "version": "1.1.2", - "packageName": "vary", - "hash": "sha512-BNGbWLfd0eUPabhkXUVm0j8uuvREyTh5ovRa/dyow/BqAbZJyC+5fU+IzQOzmAKzYqYRAISoRhdQr3eIZ/PXqg==" - } - }, - "npm:vike-photon": { - "type": "npm", - "name": "npm:vike-photon", - "data": { - "version": "0.1.25", - "packageName": "vike-photon", - "hash": "sha512-vvK2cDmhG+VKijg4Ec1Fq3ZlNplOj/OjI7i1wSp2QPtDUbCZhzKObvM3ZLGTTDkf6fEas0mPXGqLRyRnD0yyuA==" - } - }, - "npm:vike-react": { - "type": "npm", - "name": "npm:vike-react", - "data": { - "version": "0.6.21", - "packageName": "vike-react", - "hash": "sha512-mZyskc8xXJbUbK8/Lsztgd0MhrCxnQjHhCpruMVokA+jJC1uuZEAgwoO5Fptoiyqm2pjDfqtAGDw+1pZ97d9OA==" - } - }, - "npm:vike-solid": { - "type": "npm", - "name": "npm:vike-solid", - "data": { - "version": "0.8.1", - "packageName": "vike-solid", - "hash": "sha512-Zn2wmRmf+KnXb8HYF452kztkwPHiPxwTtthTdCgNXcLWxi8udP1vbkCyXZ1IXJkE0cQtonpqhLviBiotEIh6UA==" - } - }, - "npm:vike-vue": { - "type": "npm", - "name": "npm:vike-vue", - "data": { - "version": "0.9.11", - "packageName": "vike-vue", - "hash": "sha512-Ujcu7NG/ZFsiAgEomA0PtuHFg0J/BMcol/QHiDzaIlov2JSiDfapyBLidrPVTrHwLHvmeCnxa4ruVqG+/Vj1XA==" - } - }, - "npm:vike": { - "type": "npm", - "name": "npm:vike", - "data": { - "version": "0.4.255", - "packageName": "vike", - "hash": "sha512-pVRovPzIcxPiSg1nkkHg0+PGDc+qMupHw/xgWCvmJHhHO0qfuQ6UgiMq+OdEKB9q64NJJ6uuDXDtpVgvmYUu3w==" - } - }, - "npm:vite-plugin-compiled-react": { - "type": "npm", - "name": "npm:vite-plugin-compiled-react", - "data": { - "version": "1.3.1", - "packageName": "vite-plugin-compiled-react", - "hash": "sha512-RewxZHCMTnxC1Zi1UPMSTh0JSEqFAkVYaalkpmfecefv62VfJ3zq+NTiRuQOzsRGBfWQlKdgdvsDgkZMxVJokQ==" - } - }, - "npm:vite-plugin-solid": { - "type": "npm", - "name": "npm:vite-plugin-solid", - "data": { - "version": "2.11.11", - "packageName": "vite-plugin-solid", - "hash": "sha512-YMZCXsLw9kyuvQFEdwLP27fuTQJLmjNoHy90AOJnbRuJ6DwShUxKFo38gdFrWn9v11hnGicKCZEaeI/TFs6JKw==" - } - }, - "npm:vite-plugin-wasm": { - "type": "npm", - "name": "npm:vite-plugin-wasm", - "data": { - "version": "3.5.0", - "packageName": "vite-plugin-wasm", - "hash": "sha512-X5VWgCnqiQEGb+omhlBVsvTfxikKtoOgAzQ95+BZ8gQ+VfMHIjSHr0wyvXFQCa0eKQ0fKyaL0kWcEnYqBac4lQ==" - } - }, - "npm:vite": { - "type": "npm", - "name": "npm:vite", - "data": { - "version": "8.0.2", - "packageName": "vite", - "hash": "sha512-1gFhNi+bHhRE/qKZOJXACm6tX4bA3Isy9KuKF15AgSRuRazNBOJfdDemPBU16/mpMxApDPrWvZ08DcLPEoRnuA==" - } - }, - "npm:vitefu": { - "type": "npm", - "name": "npm:vitefu", - "data": { - "version": "1.1.1", - "packageName": "vitefu", - "hash": "sha512-B/Fegf3i8zh0yFbpzZ21amWzHmuNlLlmJT6n7bu5e+pCHUKQIfXSYokrqOBGEMMe9UG2sostKQF9mml/vYaWJQ==" - } - }, - "npm:vitest": { - "type": "npm", - "name": "npm:vitest", - "data": { - "version": "4.1.0", - "packageName": "vitest", - "hash": "sha512-YbDrMF9jM2Lqc++2530UourxZHmkKLxrs4+mYhEwqWS97WJ7wOYEkcr+QfRgJ3PW9wz3odRijLZjHEaRLTNbqw==" - } - }, - "npm:vue-eslint-parser": { - "type": "npm", - "name": "npm:vue-eslint-parser", - "data": { - "version": "10.4.0", - "packageName": "vue-eslint-parser", - "hash": "sha512-Vxi9pJdbN3ZnVGLODVtZ7y4Y2kzAAE2Cm0CZ3ZDRvydVYxZ6VrnBhLikBsRS+dpwj4Jv4UCv21PTEwF5rQ9WXg==" - } - }, - "npm:vue-gtag": { - "type": "npm", - "name": "npm:vue-gtag", - "data": { - "version": "3.7.0", - "packageName": "vue-gtag", - "hash": "sha512-o/ng/NjiVgEnOBZlSnWyg9IsVzIXUWmSuwbd+lGRX/T/h8gxdYN1IMcz5MT8e7o6GYhextvWpsupVAsWbYb+Gg==" - } - }, - "npm:vue": { - "type": "npm", - "name": "npm:vue", - "data": { - "version": "3.5.30", - "packageName": "vue", - "hash": "sha512-hTHLc6VNZyzzEH/l7PFGjpcTvUgiaPK5mdLkbjrTeWSRcEfxFrv56g/XckIYlE9ckuobsdwqd5mk2g1sBkMewg==" - } - }, - "npm:walk-up-path": { - "type": "npm", - "name": "npm:walk-up-path", - "data": { - "version": "4.0.0", - "packageName": "walk-up-path", - "hash": "sha512-3hu+tD8YzSLGuFYtPRb48vdhKMi0KQV5sn+uWr8+7dMEq/2G/dtLrdDinkLjqq5TIbIBjYJ4Ax/n3YiaW7QM8A==" - } - }, - "npm:wcwidth": { - "type": "npm", - "name": "npm:wcwidth", - "data": { - "version": "1.0.1", - "packageName": "wcwidth", - "hash": "sha512-XHPEwS0q6TaxcvG85+8EYkbiCux2XtWG2mkc47Ng2A77BQu9+DqIOJldST4HgPkuea7dvKSj5VgX3P1d4rW8Tg==" - } - }, - "npm:web-streams-polyfill": { - "type": "npm", - "name": "npm:web-streams-polyfill", - "data": { - "version": "3.3.3", - "packageName": "web-streams-polyfill", - "hash": "sha512-d2JWLCivmZYTSIoge9MsgFCZrt571BikcWGYkjC1khllbTeDlGqZ2D8vD8E/lJa8WGWbb7Plm8/XJYV7IJHZZw==" - } - }, - "npm:webdriver-bidi-protocol": { - "type": "npm", - "name": "npm:webdriver-bidi-protocol", - "data": { - "version": "0.4.1", - "packageName": "webdriver-bidi-protocol", - "hash": "sha512-ARrjNjtWRRs2w4Tk7nqrf2gBI0QXWuOmMCx2hU+1jUt6d00MjMxURrhxhGbrsoiZKJrhTSTzbIrc554iKI10qw==" - } - }, - "npm:webidl-conversions": { - "type": "npm", - "name": "npm:webidl-conversions", - "data": { - "version": "3.0.1", - "packageName": "webidl-conversions", - "hash": "sha512-2JAn3z8AR6rjK8Sm8orRC0h/bcl/DqL7tRPdGZ4I1CjdF+EaMLmYxBHyXuKL849eucPFhvBoxMsflfOb8kxaeQ==" - } - }, - "npm:webpack-virtual-modules": { - "type": "npm", - "name": "npm:webpack-virtual-modules", - "data": { - "version": "0.6.2", - "packageName": "webpack-virtual-modules", - "hash": "sha512-66/V2i5hQanC51vBQKPH4aI8NMAcBW59FVBs+rC7eGHupMyfn34q7rZIE+ETlJ+XTevqfUhVVBgSUNSW2flEUQ==" - } - }, - "npm:whatwg-encoding": { - "type": "npm", - "name": "npm:whatwg-encoding", - "data": { - "version": "2.0.0", - "packageName": "whatwg-encoding", - "hash": "sha512-p41ogyeMUrw3jWclHWTQg1k05DSVXPLcVxRTYsXUk+ZooOCZLcoYgPZ/HL/D/N+uQPOtcp1me1WhBEaX02mhWg==" - } - }, - "npm:whatwg-url": { - "type": "npm", - "name": "npm:whatwg-url", - "data": { - "version": "5.0.0", - "packageName": "whatwg-url", - "hash": "sha512-saE57nupxk6v3HY35+jzBwYa0rKSy0XR8JSxZPwgLr7ys0IBzhGviA1/TUGJLmSVqs8pb9AnvICXEuOHLprYTw==" - } - }, - "npm:which-boxed-primitive": { - "type": "npm", - "name": "npm:which-boxed-primitive", - "data": { - "version": "1.1.1", - "packageName": "which-boxed-primitive", - "hash": "sha512-TbX3mj8n0odCBFVlY8AxkqcHASw3L60jIuF8jFP78az3C2YhmGvqbHBpAjTRH2/xqYunrJ9g1jSyjCjpoWzIAA==" - } - }, - "npm:which-builtin-type": { - "type": "npm", - "name": "npm:which-builtin-type", - "data": { - "version": "1.2.1", - "packageName": "which-builtin-type", - "hash": "sha512-6iBczoX+kDQ7a3+YJBnh3T+KZRxM/iYNPXicqk66/Qfm1b93iu+yOImkg0zHbj5LNOcNv1TEADiZ0xa34B4q6Q==" - } - }, - "npm:which-collection": { - "type": "npm", - "name": "npm:which-collection", - "data": { - "version": "1.0.2", - "packageName": "which-collection", - "hash": "sha512-K4jVyjnBdgvc86Y6BkaLZEN933SwYOuBFkdmBu9ZfkcAbdVbpITnDmjvZ/aQjRXQrv5EPkTnD1s39GiiqbngCw==" - } - }, - "npm:which-typed-array": { - "type": "npm", - "name": "npm:which-typed-array", - "data": { - "version": "1.1.19", - "packageName": "which-typed-array", - "hash": "sha512-rEvr90Bck4WZt9HHFC4DJMsjvu7x+r6bImz0/BrbWb7A2djJ8hnZMrWnHo9F8ssv0OMErasDhftrfROTyqSDrw==" - } - }, - "npm:which@2.0.2": { - "type": "npm", - "name": "npm:which@2.0.2", - "data": { - "version": "2.0.2", - "packageName": "which", - "hash": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==" - } - }, - "npm:which@5.0.0": { - "type": "npm", - "name": "npm:which@5.0.0", - "data": { - "version": "5.0.0", - "packageName": "which", - "hash": "sha512-JEdGzHwwkrbWoGOlIHqQ5gtprKGOenpDHpxE9zVR1bWbOtYRyPPHMe9FaP6x61CmNaTThSkb0DAJte5jD+DmzQ==" - } - }, - "npm:which": { - "type": "npm", - "name": "npm:which", - "data": { - "version": "6.0.1", - "packageName": "which", - "hash": "sha512-oGLe46MIrCRqX7ytPUf66EAYvdeMIZYn3WaocqqKZAxrBpkqHfL/qvTyJ/bTk5+AqHCjXmrv3CEWgy368zhRUg==" - } - }, - "npm:whoops": { - "type": "npm", - "name": "npm:whoops", - "data": { - "version": "5.1.0", - "packageName": "whoops", - "hash": "sha512-JVrjrkswIIaFcZ4DZRHObijOhhXIcADrup/USchmrHo6p8PZcU3TmILSHqs/7d2GrWN17uTKScik/7Mq0wBkMA==" - } - }, - "npm:why-is-node-running": { - "type": "npm", - "name": "npm:why-is-node-running", - "data": { - "version": "2.3.0", - "packageName": "why-is-node-running", - "hash": "sha512-hUrmaWBdVDcxvYqnyh09zunKzROWjbZTiNy8dBEjkS7ehEDQibXJ7XvlmtbwuTclUiIyN+CyXQD4Vmko8fNm8w==" - } - }, - "npm:word-wrap": { - "type": "npm", - "name": "npm:word-wrap", - "data": { - "version": "1.2.5", - "packageName": "word-wrap", - "hash": "sha512-BN22B5eaMMI9UMtjrGd5g5eCYPpCPDUy0FJXbYsaT5zYxjFOckS53SQDE3pWkVoWpHXVb3BrYcEN4Twa55B5cA==" - } - }, - "npm:workerd@1.20251217.0": { - "type": "npm", - "name": "npm:workerd@1.20251217.0", - "data": { - "version": "1.20251217.0", - "packageName": "workerd", - "hash": "sha512-s3mHDSWwHTduyY8kpHOsl27ZJ4ziDBJlc18PfBvNMqNnhO7yBeemlxH7bo7yQyU1foJrIZ6IENHDDg0Z9N8zQA==" - } - }, - "npm:workerd": { - "type": "npm", - "name": "npm:workerd", - "data": { - "version": "1.20260317.1", - "packageName": "workerd", - "hash": "sha512-ZuEq1OdrJBS+NV+L5HMYPCzVn49a2O60slQiiLpG44jqtlOo+S167fWC76kEXteXLLLydeuRrluRel7WdOUa4g==" - } - }, - "npm:wrangler": { - "type": "npm", - "name": "npm:wrangler", - "data": { - "version": "4.76.0", - "packageName": "wrangler", - "hash": "sha512-Wan+CU5a0tu4HIxGOrzjNbkmxCT27HUmzrMj6kc7aoAnjSLv50Ggcn2Ant7wNQrD6xW3g31phKupZJgTZ8wZfQ==" - } - }, - "npm:wrap-ansi": { - "type": "npm", - "name": "npm:wrap-ansi", - "data": { - "version": "7.0.0", - "packageName": "wrap-ansi", - "hash": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==" - } - }, - "npm:wrap-ansi@8.1.0": { - "type": "npm", - "name": "npm:wrap-ansi@8.1.0", - "data": { - "version": "8.1.0", - "packageName": "wrap-ansi", - "hash": "sha512-si7QWI6zUMq56bESFvagtmzMdGOtoxfR+Sez11Mobfc7tm+VkUckk9bW2UeffTGVUbOksxmSw0AA2gs8g71NCQ==" - } - }, - "npm:wrap-ansi-cjs": { - "type": "npm", - "name": "npm:wrap-ansi-cjs", - "data": { - "version": "npm:wrap-ansi@7.0.0", - "packageName": "wrap-ansi-cjs", - "hash": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==" - } - }, - "npm:wrappy": { - "type": "npm", - "name": "npm:wrappy", - "data": { - "version": "1.0.2", - "packageName": "wrappy", - "hash": "sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==" - } - }, - "npm:ws": { - "type": "npm", - "name": "npm:ws", - "data": { - "version": "8.18.0", - "packageName": "ws", - "hash": "sha512-8VbfWfHLbbwu3+N6OKsOMpBdT4kXPDDB9cJk2bJ6mh9ucxdlnNvH1e+roYkKmN9Nxw2yjz7VzeO9oOz2zJ04Pw==" - } - }, - "npm:ws@8.19.0": { - "type": "npm", - "name": "npm:ws@8.19.0", - "data": { - "version": "8.19.0", - "packageName": "ws", - "hash": "sha512-blAT2mjOEIi0ZzruJfIhb3nps74PRWTCz1IjglWEEpQl5XS/UNama6u2/rjFkDDouqr4L67ry+1aGIALViWjDg==" - } - }, - "npm:xml-name-validator": { - "type": "npm", - "name": "npm:xml-name-validator", - "data": { - "version": "4.0.0", - "packageName": "xml-name-validator", - "hash": "sha512-ICP2e+jsHvAj2E2lIHxa5tjXRlKDJo4IdvPvCXbXQGdzSfmSpNVyIKMvoZHjDY9DP0zV17iI85o90vRFXNccRw==" - } - }, - "npm:y18n": { - "type": "npm", - "name": "npm:y18n", - "data": { - "version": "5.0.8", - "packageName": "y18n", - "hash": "sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA==" - } - }, - "npm:yallist": { - "type": "npm", - "name": "npm:yallist", - "data": { - "version": "3.1.1", - "packageName": "yallist", - "hash": "sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==" - } - }, - "npm:yallist@4.0.0": { - "type": "npm", - "name": "npm:yallist@4.0.0", - "data": { - "version": "4.0.0", - "packageName": "yallist", - "hash": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==" - } - }, - "npm:yallist@5.0.0": { - "type": "npm", - "name": "npm:yallist@5.0.0", - "data": { - "version": "5.0.0", - "packageName": "yallist", - "hash": "sha512-YgvUTfwqyc7UXVMrB+SImsVYSmTS8X/tSrtdNZMImM+n7+QTriRXyXim0mBrTXNeqzVF0KWGgHPeiyViFFrNDw==" - } - }, - "npm:yaml": { - "type": "npm", - "name": "npm:yaml", - "data": { - "version": "2.8.3", - "packageName": "yaml", - "hash": "sha512-AvbaCLOO2Otw/lW5bmh9d/WEdcDFdQp2Z2ZUH3pX9U2ihyUY0nvLv7J6TrWowklRGPYbB/IuIMfYgxaCPg5Bpg==" - } - }, - "npm:yargs-parser": { - "type": "npm", - "name": "npm:yargs-parser", - "data": { - "version": "21.1.1", - "packageName": "yargs-parser", - "hash": "sha512-tVpsJW7DdjecAiFpbIB1e3qxIQsE6NoPc5/eTdrbbIC4h0LVsWhnoa3g+m2HclBIujHzsxZ4VJVA+GUuc2/LBw==" - } - }, - "npm:yargs": { - "type": "npm", - "name": "npm:yargs", - "data": { - "version": "17.7.2", - "packageName": "yargs", - "hash": "sha512-7dSzzRQ++CKnNI/krKnYRV7JKKPUXMEh61soaHKg9mrWEhzFWhFnxPxGl+69cD1Ou63C13NUPCnmIcrvqCuM6w==" - } - }, - "npm:yauzl": { - "type": "npm", - "name": "npm:yauzl", - "data": { - "version": "2.10.0", - "packageName": "yauzl", - "hash": "sha512-p4a9I6X6nu6IhoGmBqAcbJy1mlC4j27vEPZX9F4L4/vZT3Lyq1VkFHw/V/PUcB9Buo+DG3iHkT0x3Qya58zc3g==" - } - }, - "npm:yocto-queue@0.1.0": { - "type": "npm", - "name": "npm:yocto-queue@0.1.0", - "data": { - "version": "0.1.0", - "packageName": "yocto-queue", - "hash": "sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==" - } - }, - "npm:yocto-queue": { - "type": "npm", - "name": "npm:yocto-queue", - "data": { - "version": "1.2.1", - "packageName": "yocto-queue", - "hash": "sha512-AyeEbWOu/TAXdxlV9wmGcR0+yh2j3vYPGOECcIj2S7MkrLyC7ne+oye2BKTItt0ii2PHk4cDy+95+LshzbXnGg==" - } - }, - "npm:yoctocolors": { - "type": "npm", - "name": "npm:yoctocolors", - "data": { - "version": "2.1.2", - "packageName": "yoctocolors", - "hash": "sha512-CzhO+pFNo8ajLM2d2IW/R93ipy99LWjtwblvC1RsoSUMZgyLbYFr221TnSNT7GjGdYui6P459mw9JH/g/zW2ug==" - } - }, - "npm:youch-core": { - "type": "npm", - "name": "npm:youch-core", - "data": { - "version": "0.3.3", - "packageName": "youch-core", - "hash": "sha512-ho7XuGjLaJ2hWHoK8yFnsUGy2Y5uDpqSTq1FkHLK4/oqKtyUU1AFbOOxY4IpC9f0fTLjwYbslUz0Po5BpD1wrA==" - } - }, - "npm:youch": { - "type": "npm", - "name": "npm:youch", - "data": { - "version": "4.1.0-beta.10", - "packageName": "youch", - "hash": "sha512-rLfVLB4FgQneDr0dv1oddCVZmKjcJ6yX6mS4pU82Mq/Dt9a3cLZQ62pDBL4AUO+uVrCvtWz3ZFUL2HFAFJ/BXQ==" - } - }, - "npm:zeptomatch": { - "type": "npm", - "name": "npm:zeptomatch", - "data": { - "version": "2.1.0", - "packageName": "zeptomatch", - "hash": "sha512-KiGErG2J0G82LSpniV0CtIzjlJ10E04j02VOudJsPyPwNZgGnRKQy7I1R7GMyg/QswnE4l7ohSGrQbQbjXPPDA==" - } - }, - "npm:zod@3.22.3": { - "type": "npm", - "name": "npm:zod@3.22.3", - "data": { - "version": "3.22.3", - "packageName": "zod", - "hash": "sha512-EjIevzuJRiRPbVH4mGc8nApb/lVLKVpmUhAaR5R5doKGfAnGJ6Gr3CViAVjP+4FWSxCsybeWQdcgCtbX+7oZug==" - } - }, - "npm:zod": { - "type": "npm", - "name": "npm:zod", - "data": { - "version": "3.25.76", - "packageName": "zod", - "hash": "sha512-gzUt/qt81nXsFGKIFcC3YnfEAx5NkunCfnDlvuBSSFS02bcXu4Lmea0AFIUwbLWxWPx3d9p8S5QoaujKcNQxcQ==" - } - }, - "npm:zod@4.3.6": { - "type": "npm", - "name": "npm:zod@4.3.6", - "data": { - "version": "4.3.6", - "packageName": "zod", - "hash": "sha512-rftlrkhHZOcjDwkGlnUtZZkvaPHCsDATp4pGpuOOMDaTdDDXF91wuVDJoWoPsKX/3YPQ5fHuF3STjcYyKr+Qhg==" - } - }, - "npm:zwitch": { - "type": "npm", - "name": "npm:zwitch", - "data": { - "version": "2.0.4", - "packageName": "zwitch", - "hash": "sha512-bXE4cR/kVZhKZX/RjPEflHaKVhUVl85noU3v6b8apfQEc1x4A+zBxjZ4lN8LqGd6WZ3dl98pY4o717VFmoPp+A==" - } - }, - "npm:zx": { - "type": "npm", - "name": "npm:zx", - "data": { - "version": "8.8.5", - "packageName": "zx", - "hash": "sha512-SNgDF5L0gfN7FwVOdEFguY3orU5AkfFZm9B5YSHog/UDHv+lvmd82ZAsOenOkQixigwH2+yyH198AwNdKhj+RA==" - } - } - }, - "keyMap": { - "@auth/core@0.41.1": [ - "npm:@auth/core" - ], - "@aws-cdk/asset-awscli-v1@2.2.263": [ - "npm:@aws-cdk/asset-awscli-v1" - ], - "@aws-cdk/asset-node-proxy-agent-v6@2.1.1": [ - "npm:@aws-cdk/asset-node-proxy-agent-v6" - ], - "@aws-cdk/cloud-assembly-schema@52.2.0": [ - "npm:@aws-cdk/cloud-assembly-schema" - ], - "@babel/code-frame@7.29.0": [ - "npm:@babel/code-frame" - ], - "@babel/compat-data@7.28.6": [ - "npm:@babel/compat-data" - ], - "@babel/core@7.29.0": [ - "npm:@babel/core" - ], - "@babel/generator@7.29.0": [ - "npm:@babel/generator" - ], - "@babel/generator@8.0.0-rc.2": [ - "npm:@babel/generator@8.0.0-rc.2" - ], - "@babel/helper-annotate-as-pure@7.27.3": [ - "npm:@babel/helper-annotate-as-pure" - ], - "@babel/helper-compilation-targets@7.28.6": [ - "npm:@babel/helper-compilation-targets" - ], - "@babel/helper-globals@7.28.0": [ - "npm:@babel/helper-globals" - ], - "@babel/helper-module-imports@7.18.6": [ - "npm:@babel/helper-module-imports@7.18.6" - ], - "@babel/helper-module-imports@7.28.6": [ - "npm:@babel/helper-module-imports" - ], - "@babel/helper-module-transforms@7.28.6(@babel/core@7.29.0)": [ - "npm:@babel/helper-module-transforms" - ], - "@babel/helper-plugin-utils@7.28.6": [ - "npm:@babel/helper-plugin-utils" - ], - "@babel/helper-string-parser@7.27.1": [ - "npm:@babel/helper-string-parser" - ], - "@babel/helper-string-parser@8.0.0-rc.3": [ - "npm:@babel/helper-string-parser@8.0.0-rc.3" - ], - "@babel/helper-validator-identifier@7.28.5": [ - "npm:@babel/helper-validator-identifier" - ], - "@babel/helper-validator-identifier@8.0.0-rc.2": [ - "npm:@babel/helper-validator-identifier@8.0.0-rc.2" - ], - "@babel/helper-validator-option@7.27.1": [ - "npm:@babel/helper-validator-option" - ], - "@babel/helpers@7.28.6": [ - "npm:@babel/helpers" - ], - "@babel/parser@7.29.0": [ - "npm:@babel/parser" - ], - "@babel/parser@8.0.0-rc.2": [ - "npm:@babel/parser@8.0.0-rc.2" - ], - "@babel/plugin-syntax-flow@7.28.6(@babel/core@7.29.0)": [ - "npm:@babel/plugin-syntax-flow" - ], - "@babel/plugin-syntax-jsx@7.28.6(@babel/core@7.29.0)": [ - "npm:@babel/plugin-syntax-jsx" - ], - "@babel/plugin-transform-flow-strip-types@7.27.1(@babel/core@7.29.0)": [ - "npm:@babel/plugin-transform-flow-strip-types" - ], - "@babel/plugin-transform-react-jsx@7.28.6(@babel/core@7.29.0)": [ - "npm:@babel/plugin-transform-react-jsx" - ], - "@babel/runtime@7.28.4": [ - "npm:@babel/runtime" - ], - "@babel/template@7.28.6": [ - "npm:@babel/template" - ], - "@babel/traverse@7.29.0": [ - "npm:@babel/traverse" - ], - "@babel/types@7.29.0": [ - "npm:@babel/types" - ], - "@babel/types@8.0.0-rc.2": [ - "npm:@babel/types@8.0.0-rc.2" - ], - "@batijs/compile@file:packages/compile(oxc-resolver@11.19.1)(synckit@0.11.12)(typescript@6.0.2)": [ - "npm:@batijs/compile" - ], - "@biomejs/biome@2.4.8": [ - "npm:@biomejs/biome" - ], - "@biomejs/cli-darwin-arm64@2.4.8": [ - "npm:@biomejs/cli-darwin-arm64" - ], - "@biomejs/cli-darwin-x64@2.4.8": [ - "npm:@biomejs/cli-darwin-x64" - ], - "@biomejs/cli-linux-arm64-musl@2.4.8": [ - "npm:@biomejs/cli-linux-arm64-musl" - ], - "@biomejs/cli-linux-arm64@2.4.8": [ - "npm:@biomejs/cli-linux-arm64" - ], - "@biomejs/cli-linux-x64-musl@2.4.8": [ - "npm:@biomejs/cli-linux-x64-musl" - ], - "@biomejs/cli-linux-x64@2.4.8": [ - "npm:@biomejs/cli-linux-x64" - ], - "@biomejs/cli-win32-arm64@2.4.8": [ - "npm:@biomejs/cli-win32-arm64" - ], - "@biomejs/cli-win32-x64@2.4.8": [ - "npm:@biomejs/cli-win32-x64" - ], - "@biomejs/wasm-nodejs@2.4.8": [ - "npm:@biomejs/wasm-nodejs" - ], - "@brillout/import@0.2.6": [ - "npm:@brillout/import" - ], - "@brillout/json-serializer@0.5.22": [ - "npm:@brillout/json-serializer" - ], - "@brillout/libassert@0.5.8": [ - "npm:@brillout/libassert" - ], - "@brillout/picocolors@1.0.30": [ - "npm:@brillout/picocolors" - ], - "@brillout/vite-plugin-server-entry@0.7.18": [ - "npm:@brillout/vite-plugin-server-entry" - ], - "@browserless/devices@10.11.3": [ - "npm:@browserless/devices" - ], - "@browserless/errors@10.12.1": [ - "npm:@browserless/errors" - ], - "@browserless/goto@10.11.4(puppeteer@24.40.0(typescript@6.0.2))": [ - "npm:@browserless/goto" - ], - "@browserless/pdf@10.12.5(puppeteer@24.40.0(typescript@6.0.2))": [ - "npm:@browserless/pdf" - ], - "@browserless/screenshot@10.12.5(puppeteer@24.40.0(typescript@6.0.2))": [ - "npm:@browserless/screenshot" - ], - "@chevrotain/cst-dts-gen@10.5.0": [ - "npm:@chevrotain/cst-dts-gen" - ], - "@chevrotain/gast@10.5.0": [ - "npm:@chevrotain/gast" - ], - "@chevrotain/types@10.5.0": [ - "npm:@chevrotain/types" - ], - "@chevrotain/utils@10.5.0": [ - "npm:@chevrotain/utils" - ], - "@cloudflare/kv-asset-handler@0.4.2": [ - "npm:@cloudflare/kv-asset-handler" - ], - "@cloudflare/unenv-preset@2.16.0(unenv@2.0.0-rc.24)(workerd@1.20260317.1)": [ - "npm:@cloudflare/unenv-preset" - ], - "@cloudflare/unenv-preset@2.7.13(unenv@2.0.0-rc.24)(workerd@1.20260317.1)": [ - "npm:@cloudflare/unenv-preset@2.7.13" - ], - "@cloudflare/vite-plugin@1.19.0(vite@8.0.2(@types/node@20.19.37)(esbuild@0.27.4)(jiti@2.6.1)(sugarss@5.0.1(postcss@8.5.8))(tsx@4.21.0)(yaml@2.8.3))(workerd@1.20260317.1)(wrangler@4.76.0(@cloudflare/workers-types@4.20260317.1))": [ - "npm:@cloudflare/vite-plugin" - ], - "@cloudflare/workerd-darwin-64@1.20251217.0": [ - "npm:@cloudflare/workerd-darwin-64@1.20251217.0" - ], - "@cloudflare/workerd-darwin-64@1.20260317.1": [ - "npm:@cloudflare/workerd-darwin-64@1.20260317.1" - ], - "@cloudflare/workerd-darwin-arm64@1.20251217.0": [ - "npm:@cloudflare/workerd-darwin-arm64@1.20251217.0" - ], - "@cloudflare/workerd-darwin-arm64@1.20260317.1": [ - "npm:@cloudflare/workerd-darwin-arm64@1.20260317.1" - ], - "@cloudflare/workerd-linux-64@1.20251217.0": [ - "npm:@cloudflare/workerd-linux-64@1.20251217.0" - ], - "@cloudflare/workerd-linux-64@1.20260317.1": [ - "npm:@cloudflare/workerd-linux-64" - ], - "@cloudflare/workerd-linux-arm64@1.20251217.0": [ - "npm:@cloudflare/workerd-linux-arm64@1.20251217.0" - ], - "@cloudflare/workerd-linux-arm64@1.20260317.1": [ - "npm:@cloudflare/workerd-linux-arm64@1.20260317.1" - ], - "@cloudflare/workerd-windows-64@1.20251217.0": [ - "npm:@cloudflare/workerd-windows-64@1.20251217.0" - ], - "@cloudflare/workerd-windows-64@1.20260317.1": [ - "npm:@cloudflare/workerd-windows-64@1.20260317.1" - ], - "@cloudflare/workers-types@4.20260317.1": [ - "npm:@cloudflare/workers-types" - ], - "@compiled/babel-plugin-strip-runtime@0.37.1": [ - "npm:@compiled/babel-plugin-strip-runtime" - ], - "@compiled/babel-plugin@0.37.1": [ - "npm:@compiled/babel-plugin" - ], - "@compiled/css@0.20.0": [ - "npm:@compiled/css" - ], - "@compiled/react@0.20.0(react@19.2.4)": [ - "npm:@compiled/react" - ], - "@compiled/utils@0.13.2": [ - "npm:@compiled/utils" - ], - "@cspotcode/source-map-support@0.8.1": [ - "npm:@cspotcode/source-map-support" - ], - "@drizzle-team/brocli@0.10.2": [ - "npm:@drizzle-team/brocli" - ], - "@duckduckgo/autoconsent@14.56.0": [ - "npm:@duckduckgo/autoconsent" - ], - "@electric-sql/pglite-socket@0.0.20(@electric-sql/pglite@0.3.15)": [ - "npm:@electric-sql/pglite-socket" - ], - "@electric-sql/pglite-tools@0.2.20(@electric-sql/pglite@0.3.15)": [ - "npm:@electric-sql/pglite-tools" - ], - "@electric-sql/pglite@0.3.15": [ - "npm:@electric-sql/pglite" - ], - "@emnapi/core@1.7.1": [ - "npm:@emnapi/core" - ], - "@emnapi/runtime@1.7.1": [ - "npm:@emnapi/runtime" - ], - "@emnapi/wasi-threads@1.1.0": [ - "npm:@emnapi/wasi-threads" - ], - "@emotion/is-prop-valid@1.4.0": [ - "npm:@emotion/is-prop-valid" - ], - "@emotion/memoize@0.9.0": [ - "npm:@emotion/memoize" - ], - "@esbuild-kit/core-utils@3.3.2": [ - "npm:@esbuild-kit/core-utils" - ], - "@esbuild-kit/esm-loader@2.6.5": [ - "npm:@esbuild-kit/esm-loader" - ], - "@esbuild/aix-ppc64@0.25.12": [ - "npm:@esbuild/aix-ppc64@0.25.12" - ], - "@esbuild/aix-ppc64@0.27.3": [ - "npm:@esbuild/aix-ppc64@0.27.3" - ], - "@esbuild/aix-ppc64@0.27.4": [ - "npm:@esbuild/aix-ppc64@0.27.4" - ], - "@esbuild/android-arm64@0.18.20": [ - "npm:@esbuild/android-arm64@0.18.20" - ], - "@esbuild/android-arm64@0.25.12": [ - "npm:@esbuild/android-arm64@0.25.12" - ], - "@esbuild/android-arm64@0.27.3": [ - "npm:@esbuild/android-arm64@0.27.3" - ], - "@esbuild/android-arm64@0.27.4": [ - "npm:@esbuild/android-arm64@0.27.4" - ], - "@esbuild/android-arm@0.18.20": [ - "npm:@esbuild/android-arm@0.18.20" - ], - "@esbuild/android-arm@0.25.12": [ - "npm:@esbuild/android-arm@0.25.12" - ], - "@esbuild/android-arm@0.27.3": [ - "npm:@esbuild/android-arm@0.27.3" - ], - "@esbuild/android-arm@0.27.4": [ - "npm:@esbuild/android-arm@0.27.4" - ], - "@esbuild/android-x64@0.18.20": [ - "npm:@esbuild/android-x64@0.18.20" - ], - "@esbuild/android-x64@0.25.12": [ - "npm:@esbuild/android-x64@0.25.12" - ], - "@esbuild/android-x64@0.27.3": [ - "npm:@esbuild/android-x64@0.27.3" - ], - "@esbuild/android-x64@0.27.4": [ - "npm:@esbuild/android-x64@0.27.4" - ], - "@esbuild/darwin-arm64@0.18.20": [ - "npm:@esbuild/darwin-arm64@0.18.20" - ], - "@esbuild/darwin-arm64@0.25.12": [ - "npm:@esbuild/darwin-arm64@0.25.12" - ], - "@esbuild/darwin-arm64@0.27.3": [ - "npm:@esbuild/darwin-arm64@0.27.3" - ], - "@esbuild/darwin-arm64@0.27.4": [ - "npm:@esbuild/darwin-arm64@0.27.4" - ], - "@esbuild/darwin-x64@0.18.20": [ - "npm:@esbuild/darwin-x64@0.18.20" - ], - "@esbuild/darwin-x64@0.25.12": [ - "npm:@esbuild/darwin-x64@0.25.12" - ], - "@esbuild/darwin-x64@0.27.3": [ - "npm:@esbuild/darwin-x64@0.27.3" - ], - "@esbuild/darwin-x64@0.27.4": [ - "npm:@esbuild/darwin-x64@0.27.4" - ], - "@esbuild/freebsd-arm64@0.18.20": [ - "npm:@esbuild/freebsd-arm64@0.18.20" - ], - "@esbuild/freebsd-arm64@0.25.12": [ - "npm:@esbuild/freebsd-arm64@0.25.12" - ], - "@esbuild/freebsd-arm64@0.27.3": [ - "npm:@esbuild/freebsd-arm64@0.27.3" - ], - "@esbuild/freebsd-arm64@0.27.4": [ - "npm:@esbuild/freebsd-arm64@0.27.4" - ], - "@esbuild/freebsd-x64@0.18.20": [ - "npm:@esbuild/freebsd-x64@0.18.20" - ], - "@esbuild/freebsd-x64@0.25.12": [ - "npm:@esbuild/freebsd-x64@0.25.12" - ], - "@esbuild/freebsd-x64@0.27.3": [ - "npm:@esbuild/freebsd-x64@0.27.3" - ], - "@esbuild/freebsd-x64@0.27.4": [ - "npm:@esbuild/freebsd-x64@0.27.4" - ], - "@esbuild/linux-arm64@0.18.20": [ - "npm:@esbuild/linux-arm64@0.18.20" - ], - "@esbuild/linux-arm64@0.25.12": [ - "npm:@esbuild/linux-arm64@0.25.12" - ], - "@esbuild/linux-arm64@0.27.3": [ - "npm:@esbuild/linux-arm64@0.27.3" - ], - "@esbuild/linux-arm64@0.27.4": [ - "npm:@esbuild/linux-arm64@0.27.4" - ], - "@esbuild/linux-arm@0.18.20": [ - "npm:@esbuild/linux-arm@0.18.20" - ], - "@esbuild/linux-arm@0.25.12": [ - "npm:@esbuild/linux-arm@0.25.12" - ], - "@esbuild/linux-arm@0.27.3": [ - "npm:@esbuild/linux-arm@0.27.3" - ], - "@esbuild/linux-arm@0.27.4": [ - "npm:@esbuild/linux-arm@0.27.4" - ], - "@esbuild/linux-ia32@0.18.20": [ - "npm:@esbuild/linux-ia32@0.18.20" - ], - "@esbuild/linux-ia32@0.25.12": [ - "npm:@esbuild/linux-ia32@0.25.12" - ], - "@esbuild/linux-ia32@0.27.3": [ - "npm:@esbuild/linux-ia32@0.27.3" - ], - "@esbuild/linux-ia32@0.27.4": [ - "npm:@esbuild/linux-ia32@0.27.4" - ], - "@esbuild/linux-loong64@0.18.20": [ - "npm:@esbuild/linux-loong64@0.18.20" - ], - "@esbuild/linux-loong64@0.25.12": [ - "npm:@esbuild/linux-loong64@0.25.12" - ], - "@esbuild/linux-loong64@0.27.3": [ - "npm:@esbuild/linux-loong64@0.27.3" - ], - "@esbuild/linux-loong64@0.27.4": [ - "npm:@esbuild/linux-loong64@0.27.4" - ], - "@esbuild/linux-mips64el@0.18.20": [ - "npm:@esbuild/linux-mips64el@0.18.20" - ], - "@esbuild/linux-mips64el@0.25.12": [ - "npm:@esbuild/linux-mips64el@0.25.12" - ], - "@esbuild/linux-mips64el@0.27.3": [ - "npm:@esbuild/linux-mips64el@0.27.3" - ], - "@esbuild/linux-mips64el@0.27.4": [ - "npm:@esbuild/linux-mips64el@0.27.4" - ], - "@esbuild/linux-ppc64@0.18.20": [ - "npm:@esbuild/linux-ppc64@0.18.20" - ], - "@esbuild/linux-ppc64@0.25.12": [ - "npm:@esbuild/linux-ppc64@0.25.12" - ], - "@esbuild/linux-ppc64@0.27.3": [ - "npm:@esbuild/linux-ppc64@0.27.3" - ], - "@esbuild/linux-ppc64@0.27.4": [ - "npm:@esbuild/linux-ppc64@0.27.4" - ], - "@esbuild/linux-riscv64@0.18.20": [ - "npm:@esbuild/linux-riscv64@0.18.20" - ], - "@esbuild/linux-riscv64@0.25.12": [ - "npm:@esbuild/linux-riscv64@0.25.12" - ], - "@esbuild/linux-riscv64@0.27.3": [ - "npm:@esbuild/linux-riscv64@0.27.3" - ], - "@esbuild/linux-riscv64@0.27.4": [ - "npm:@esbuild/linux-riscv64@0.27.4" - ], - "@esbuild/linux-s390x@0.18.20": [ - "npm:@esbuild/linux-s390x@0.18.20" - ], - "@esbuild/linux-s390x@0.25.12": [ - "npm:@esbuild/linux-s390x@0.25.12" - ], - "@esbuild/linux-s390x@0.27.3": [ - "npm:@esbuild/linux-s390x@0.27.3" - ], - "@esbuild/linux-s390x@0.27.4": [ - "npm:@esbuild/linux-s390x@0.27.4" - ], - "@esbuild/linux-x64@0.18.20": [ - "npm:@esbuild/linux-x64@0.18.20" - ], - "@esbuild/linux-x64@0.25.12": [ - "npm:@esbuild/linux-x64@0.25.12" - ], - "@esbuild/linux-x64@0.27.3": [ - "npm:@esbuild/linux-x64@0.27.3" - ], - "@esbuild/linux-x64@0.27.4": [ - "npm:@esbuild/linux-x64" - ], - "@esbuild/netbsd-arm64@0.25.12": [ - "npm:@esbuild/netbsd-arm64@0.25.12" - ], - "@esbuild/netbsd-arm64@0.27.3": [ - "npm:@esbuild/netbsd-arm64@0.27.3" - ], - "@esbuild/netbsd-arm64@0.27.4": [ - "npm:@esbuild/netbsd-arm64@0.27.4" - ], - "@esbuild/netbsd-x64@0.18.20": [ - "npm:@esbuild/netbsd-x64@0.18.20" - ], - "@esbuild/netbsd-x64@0.25.12": [ - "npm:@esbuild/netbsd-x64@0.25.12" - ], - "@esbuild/netbsd-x64@0.27.3": [ - "npm:@esbuild/netbsd-x64@0.27.3" - ], - "@esbuild/netbsd-x64@0.27.4": [ - "npm:@esbuild/netbsd-x64@0.27.4" - ], - "@esbuild/openbsd-arm64@0.25.12": [ - "npm:@esbuild/openbsd-arm64@0.25.12" - ], - "@esbuild/openbsd-arm64@0.27.3": [ - "npm:@esbuild/openbsd-arm64@0.27.3" - ], - "@esbuild/openbsd-arm64@0.27.4": [ - "npm:@esbuild/openbsd-arm64@0.27.4" - ], - "@esbuild/openbsd-x64@0.18.20": [ - "npm:@esbuild/openbsd-x64@0.18.20" - ], - "@esbuild/openbsd-x64@0.25.12": [ - "npm:@esbuild/openbsd-x64@0.25.12" - ], - "@esbuild/openbsd-x64@0.27.3": [ - "npm:@esbuild/openbsd-x64@0.27.3" - ], - "@esbuild/openbsd-x64@0.27.4": [ - "npm:@esbuild/openbsd-x64@0.27.4" - ], - "@esbuild/openharmony-arm64@0.25.12": [ - "npm:@esbuild/openharmony-arm64@0.25.12" - ], - "@esbuild/openharmony-arm64@0.27.3": [ - "npm:@esbuild/openharmony-arm64@0.27.3" - ], - "@esbuild/openharmony-arm64@0.27.4": [ - "npm:@esbuild/openharmony-arm64@0.27.4" - ], - "@esbuild/sunos-x64@0.18.20": [ - "npm:@esbuild/sunos-x64@0.18.20" - ], - "@esbuild/sunos-x64@0.25.12": [ - "npm:@esbuild/sunos-x64@0.25.12" - ], - "@esbuild/sunos-x64@0.27.3": [ - "npm:@esbuild/sunos-x64@0.27.3" - ], - "@esbuild/sunos-x64@0.27.4": [ - "npm:@esbuild/sunos-x64@0.27.4" - ], - "@esbuild/win32-arm64@0.18.20": [ - "npm:@esbuild/win32-arm64@0.18.20" - ], - "@esbuild/win32-arm64@0.25.12": [ - "npm:@esbuild/win32-arm64@0.25.12" - ], - "@esbuild/win32-arm64@0.27.3": [ - "npm:@esbuild/win32-arm64@0.27.3" - ], - "@esbuild/win32-arm64@0.27.4": [ - "npm:@esbuild/win32-arm64@0.27.4" - ], - "@esbuild/win32-ia32@0.18.20": [ - "npm:@esbuild/win32-ia32@0.18.20" - ], - "@esbuild/win32-ia32@0.25.12": [ - "npm:@esbuild/win32-ia32@0.25.12" - ], - "@esbuild/win32-ia32@0.27.3": [ - "npm:@esbuild/win32-ia32@0.27.3" - ], - "@esbuild/win32-ia32@0.27.4": [ - "npm:@esbuild/win32-ia32@0.27.4" - ], - "@esbuild/win32-x64@0.18.20": [ - "npm:@esbuild/win32-x64@0.18.20" - ], - "@esbuild/win32-x64@0.25.12": [ - "npm:@esbuild/win32-x64@0.25.12" - ], - "@esbuild/win32-x64@0.27.3": [ - "npm:@esbuild/win32-x64@0.27.3" - ], - "@esbuild/win32-x64@0.27.4": [ - "npm:@esbuild/win32-x64@0.27.4" - ], - "@eslint-community/eslint-utils@4.9.1(eslint@9.39.4(jiti@2.6.1))": [ - "npm:@eslint-community/eslint-utils" - ], - "@eslint-community/regexpp@4.12.2": [ - "npm:@eslint-community/regexpp" - ], - "@eslint/config-array@0.21.2": [ - "npm:@eslint/config-array" - ], - "@eslint/config-helpers@0.4.2": [ - "npm:@eslint/config-helpers" - ], - "@eslint/core@0.17.0": [ - "npm:@eslint/core" - ], - "@eslint/eslintrc@3.3.5": [ - "npm:@eslint/eslintrc" - ], - "@eslint/js@9.39.4": [ - "npm:@eslint/js" - ], - "@eslint/object-schema@2.1.7": [ - "npm:@eslint/object-schema" - ], - "@eslint/plugin-kit@0.4.1": [ - "npm:@eslint/plugin-kit" - ], - "@fastify/ajv-compiler@4.0.5": [ - "npm:@fastify/ajv-compiler" - ], - "@fastify/error@4.2.0": [ - "npm:@fastify/error" - ], - "@fastify/fast-json-stringify-compiler@5.0.3": [ - "npm:@fastify/fast-json-stringify-compiler" - ], - "@fastify/forwarded@3.0.1": [ - "npm:@fastify/forwarded" - ], - "@fastify/merge-json-schemas@0.2.1": [ - "npm:@fastify/merge-json-schemas" - ], - "@fastify/proxy-addr@5.1.0": [ - "npm:@fastify/proxy-addr" - ], - "@floating-ui/core@1.7.5": [ - "npm:@floating-ui/core" - ], - "@floating-ui/dom@1.7.6": [ - "npm:@floating-ui/dom" - ], - "@floating-ui/react-dom@2.1.6(react-dom@19.2.4(react@19.2.4))(react@19.2.4)": [ - "npm:@floating-ui/react-dom" - ], - "@floating-ui/react@0.27.16(react-dom@19.2.4(react@19.2.4))(react@19.2.4)": [ - "npm:@floating-ui/react" - ], - "@floating-ui/utils@0.2.11": [ - "npm:@floating-ui/utils" - ], - "@ghostery/adblocker-content@2.14.1": [ - "npm:@ghostery/adblocker-content" - ], - "@ghostery/adblocker-extended-selectors@2.14.1": [ - "npm:@ghostery/adblocker-extended-selectors" - ], - "@ghostery/adblocker-puppeteer@2.14.1(puppeteer@24.40.0(typescript@6.0.2))": [ - "npm:@ghostery/adblocker-puppeteer" - ], - "@ghostery/adblocker@2.14.1": [ - "npm:@ghostery/adblocker" - ], - "@ghostery/url-parser@1.3.1": [ - "npm:@ghostery/url-parser" - ], - "@hono/node-server@1.19.9(hono@4.11.4)": [ - "npm:@hono/node-server" - ], - "@hono/node-server@1.19.9(hono@4.12.8)": [ - "npm:@hono/node-server" - ], - "@humanfs/core@0.19.1": [ - "npm:@humanfs/core" - ], - "@humanfs/node@0.16.7": [ - "npm:@humanfs/node" - ], - "@humanwhocodes/module-importer@1.0.1": [ - "npm:@humanwhocodes/module-importer" - ], - "@humanwhocodes/retry@0.4.3": [ - "npm:@humanwhocodes/retry" - ], - "@img/colour@1.0.0": [ - "npm:@img/colour" - ], - "@img/sharp-darwin-arm64@0.33.5": [ - "npm:@img/sharp-darwin-arm64@0.33.5" - ], - "@img/sharp-darwin-arm64@0.34.5": [ - "npm:@img/sharp-darwin-arm64@0.34.5" - ], - "@img/sharp-darwin-x64@0.33.5": [ - "npm:@img/sharp-darwin-x64@0.33.5" - ], - "@img/sharp-darwin-x64@0.34.5": [ - "npm:@img/sharp-darwin-x64@0.34.5" - ], - "@img/sharp-libvips-darwin-arm64@1.0.4": [ - "npm:@img/sharp-libvips-darwin-arm64@1.0.4" - ], - "@img/sharp-libvips-darwin-arm64@1.2.4": [ - "npm:@img/sharp-libvips-darwin-arm64@1.2.4" - ], - "@img/sharp-libvips-darwin-x64@1.0.4": [ - "npm:@img/sharp-libvips-darwin-x64@1.0.4" - ], - "@img/sharp-libvips-darwin-x64@1.2.4": [ - "npm:@img/sharp-libvips-darwin-x64@1.2.4" - ], - "@img/sharp-libvips-linux-arm64@1.0.4": [ - "npm:@img/sharp-libvips-linux-arm64@1.0.4" - ], - "@img/sharp-libvips-linux-arm64@1.2.4": [ - "npm:@img/sharp-libvips-linux-arm64@1.2.4" - ], - "@img/sharp-libvips-linux-arm@1.0.5": [ - "npm:@img/sharp-libvips-linux-arm@1.0.5" - ], - "@img/sharp-libvips-linux-arm@1.2.4": [ - "npm:@img/sharp-libvips-linux-arm@1.2.4" - ], - "@img/sharp-libvips-linux-ppc64@1.2.4": [ - "npm:@img/sharp-libvips-linux-ppc64" - ], - "@img/sharp-libvips-linux-riscv64@1.2.4": [ - "npm:@img/sharp-libvips-linux-riscv64" - ], - "@img/sharp-libvips-linux-s390x@1.0.4": [ - "npm:@img/sharp-libvips-linux-s390x@1.0.4" - ], - "@img/sharp-libvips-linux-s390x@1.2.4": [ - "npm:@img/sharp-libvips-linux-s390x@1.2.4" - ], - "@img/sharp-libvips-linux-x64@1.0.4": [ - "npm:@img/sharp-libvips-linux-x64@1.0.4" - ], - "@img/sharp-libvips-linux-x64@1.2.4": [ - "npm:@img/sharp-libvips-linux-x64" - ], - "@img/sharp-libvips-linuxmusl-arm64@1.0.4": [ - "npm:@img/sharp-libvips-linuxmusl-arm64@1.0.4" - ], - "@img/sharp-libvips-linuxmusl-arm64@1.2.4": [ - "npm:@img/sharp-libvips-linuxmusl-arm64@1.2.4" - ], - "@img/sharp-libvips-linuxmusl-x64@1.0.4": [ - "npm:@img/sharp-libvips-linuxmusl-x64@1.0.4" - ], - "@img/sharp-libvips-linuxmusl-x64@1.2.4": [ - "npm:@img/sharp-libvips-linuxmusl-x64" - ], - "@img/sharp-linux-arm64@0.33.5": [ - "npm:@img/sharp-linux-arm64@0.33.5" - ], - "@img/sharp-linux-arm64@0.34.5": [ - "npm:@img/sharp-linux-arm64@0.34.5" - ], - "@img/sharp-linux-arm@0.33.5": [ - "npm:@img/sharp-linux-arm@0.33.5" - ], - "@img/sharp-linux-arm@0.34.5": [ - "npm:@img/sharp-linux-arm@0.34.5" - ], - "@img/sharp-linux-ppc64@0.34.5": [ - "npm:@img/sharp-linux-ppc64" - ], - "@img/sharp-linux-riscv64@0.34.5": [ - "npm:@img/sharp-linux-riscv64" - ], - "@img/sharp-linux-s390x@0.33.5": [ - "npm:@img/sharp-linux-s390x@0.33.5" - ], - "@img/sharp-linux-s390x@0.34.5": [ - "npm:@img/sharp-linux-s390x@0.34.5" - ], - "@img/sharp-linux-x64@0.33.5": [ - "npm:@img/sharp-linux-x64@0.33.5" - ], - "@img/sharp-linux-x64@0.34.5": [ - "npm:@img/sharp-linux-x64" - ], - "@img/sharp-linuxmusl-arm64@0.33.5": [ - "npm:@img/sharp-linuxmusl-arm64@0.33.5" - ], - "@img/sharp-linuxmusl-arm64@0.34.5": [ - "npm:@img/sharp-linuxmusl-arm64@0.34.5" - ], - "@img/sharp-linuxmusl-x64@0.33.5": [ - "npm:@img/sharp-linuxmusl-x64@0.33.5" - ], - "@img/sharp-linuxmusl-x64@0.34.5": [ - "npm:@img/sharp-linuxmusl-x64" - ], - "@img/sharp-wasm32@0.33.5": [ - "npm:@img/sharp-wasm32@0.33.5" - ], - "@img/sharp-wasm32@0.34.5": [ - "npm:@img/sharp-wasm32@0.34.5" - ], - "@img/sharp-win32-arm64@0.34.5": [ - "npm:@img/sharp-win32-arm64" - ], - "@img/sharp-win32-ia32@0.33.5": [ - "npm:@img/sharp-win32-ia32@0.33.5" - ], - "@img/sharp-win32-ia32@0.34.5": [ - "npm:@img/sharp-win32-ia32@0.34.5" - ], - "@img/sharp-win32-x64@0.33.5": [ - "npm:@img/sharp-win32-x64@0.33.5" - ], - "@img/sharp-win32-x64@0.34.5": [ - "npm:@img/sharp-win32-x64@0.34.5" - ], - "@inquirer/ansi@2.0.4": [ - "npm:@inquirer/ansi" - ], - "@inquirer/checkbox@5.1.2(@types/node@20.19.37)": [ - "npm:@inquirer/checkbox" - ], - "@inquirer/confirm@6.0.10(@types/node@20.19.37)": [ - "npm:@inquirer/confirm" - ], - "@inquirer/core@11.1.7(@types/node@20.19.37)": [ - "npm:@inquirer/core" - ], - "@inquirer/editor@5.0.10(@types/node@20.19.37)": [ - "npm:@inquirer/editor" - ], - "@inquirer/expand@5.0.10(@types/node@20.19.37)": [ - "npm:@inquirer/expand" - ], - "@inquirer/external-editor@2.0.4(@types/node@20.19.37)": [ - "npm:@inquirer/external-editor" - ], - "@inquirer/figures@2.0.4": [ - "npm:@inquirer/figures" - ], - "@inquirer/input@5.0.10(@types/node@20.19.37)": [ - "npm:@inquirer/input" - ], - "@inquirer/number@4.0.10(@types/node@20.19.37)": [ - "npm:@inquirer/number" - ], - "@inquirer/password@5.0.10(@types/node@20.19.37)": [ - "npm:@inquirer/password" - ], - "@inquirer/prompts@8.3.2(@types/node@20.19.37)": [ - "npm:@inquirer/prompts" - ], - "@inquirer/rawlist@5.2.6(@types/node@20.19.37)": [ - "npm:@inquirer/rawlist" - ], - "@inquirer/search@4.1.6(@types/node@20.19.37)": [ - "npm:@inquirer/search" - ], - "@inquirer/select@5.1.2(@types/node@20.19.37)": [ - "npm:@inquirer/select" - ], - "@inquirer/type@4.0.4(@types/node@20.19.37)": [ - "npm:@inquirer/type" - ], - "@isaacs/cliui@8.0.2": [ - "npm:@isaacs/cliui@8.0.2" - ], - "@isaacs/cliui@9.0.0": [ - "npm:@isaacs/cliui" - ], - "@isaacs/fs-minipass@4.0.1": [ - "npm:@isaacs/fs-minipass" - ], - "@jest/diff-sequences@30.3.0": [ - "npm:@jest/diff-sequences" - ], - "@jest/get-type@30.1.0": [ - "npm:@jest/get-type" - ], - "@jest/schemas@30.0.5": [ - "npm:@jest/schemas" - ], - "@jridgewell/gen-mapping@0.3.13": [ - "npm:@jridgewell/gen-mapping" - ], - "@jridgewell/remapping@2.3.5": [ - "npm:@jridgewell/remapping" - ], - "@jridgewell/resolve-uri@3.1.2": [ - "npm:@jridgewell/resolve-uri" - ], - "@jridgewell/sourcemap-codec@1.5.5": [ - "npm:@jridgewell/sourcemap-codec" - ], - "@jridgewell/trace-mapping@0.3.31": [ - "npm:@jridgewell/trace-mapping" - ], - "@jridgewell/trace-mapping@0.3.9": [ - "npm:@jridgewell/trace-mapping@0.3.9" - ], - "@kikobeats/content-type@1.0.3": [ - "npm:@kikobeats/content-type" - ], - "@kikobeats/time-span@1.0.11": [ - "npm:@kikobeats/time-span" - ], - "@ltd/j-toml@1.38.0": [ - "npm:@ltd/j-toml" - ], - "@mantine/core@8.3.18(@mantine/hooks@8.3.18(react@19.2.4))(@types/react@19.2.14)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)": [ - "npm:@mantine/core" - ], - "@mantine/hooks@8.3.18(react@19.2.4)": [ - "npm:@mantine/hooks" - ], - "@manypkg/find-root@3.1.0": [ - "npm:@manypkg/find-root" - ], - "@manypkg/tools@2.1.0": [ - "npm:@manypkg/tools" - ], - "@mapbox/node-pre-gyp@2.0.0(encoding@0.1.13)": [ - "npm:@mapbox/node-pre-gyp" - ], - "@motionone/animation@10.18.0": [ - "npm:@motionone/animation" - ], - "@motionone/dom@10.18.0": [ - "npm:@motionone/dom" - ], - "@motionone/easing@10.18.0": [ - "npm:@motionone/easing" - ], - "@motionone/generators@10.18.0": [ - "npm:@motionone/generators" - ], - "@motionone/types@10.17.1": [ - "npm:@motionone/types" - ], - "@motionone/utils@10.18.0": [ - "npm:@motionone/utils" - ], - "@mrleebo/prisma-ast@0.13.1": [ - "npm:@mrleebo/prisma-ast" - ], - "@napi-rs/wasm-runtime@0.2.4": [ - "npm:@napi-rs/wasm-runtime" - ], - "@napi-rs/wasm-runtime@1.1.1": [ - "npm:@napi-rs/wasm-runtime@1.1.1" - ], - "@nodelib/fs.scandir@2.1.5": [ - "npm:@nodelib/fs.scandir" - ], - "@nodelib/fs.stat@2.0.5": [ - "npm:@nodelib/fs.stat" - ], - "@nodelib/fs.walk@1.2.8": [ - "npm:@nodelib/fs.walk" - ], - "@npmcli/agent@3.0.0": [ - "npm:@npmcli/agent" - ], - "@npmcli/fs@4.0.0": [ - "npm:@npmcli/fs" - ], - "@nx/nx-darwin-arm64@22.6.1": [ - "npm:@nx/nx-darwin-arm64" - ], - "@nx/nx-darwin-x64@22.6.1": [ - "npm:@nx/nx-darwin-x64" - ], - "@nx/nx-freebsd-x64@22.6.1": [ - "npm:@nx/nx-freebsd-x64" - ], - "@nx/nx-linux-arm-gnueabihf@22.6.1": [ - "npm:@nx/nx-linux-arm-gnueabihf" - ], - "@nx/nx-linux-arm64-gnu@22.6.1": [ - "npm:@nx/nx-linux-arm64-gnu" - ], - "@nx/nx-linux-arm64-musl@22.6.1": [ - "npm:@nx/nx-linux-arm64-musl" - ], - "@nx/nx-linux-x64-gnu@22.6.1": [ - "npm:@nx/nx-linux-x64-gnu" - ], - "@nx/nx-linux-x64-musl@22.6.1": [ - "npm:@nx/nx-linux-x64-musl" - ], - "@nx/nx-win32-arm64-msvc@22.6.1": [ - "npm:@nx/nx-win32-arm64-msvc" - ], - "@nx/nx-win32-x64-msvc@22.6.1": [ - "npm:@nx/nx-win32-x64-msvc" - ], - "@oxc-parser/binding-android-arm64@0.104.0": [ - "npm:@oxc-parser/binding-android-arm64" - ], - "@oxc-parser/binding-darwin-arm64@0.104.0": [ - "npm:@oxc-parser/binding-darwin-arm64" - ], - "@oxc-parser/binding-darwin-x64@0.104.0": [ - "npm:@oxc-parser/binding-darwin-x64" - ], - "@oxc-parser/binding-freebsd-x64@0.104.0": [ - "npm:@oxc-parser/binding-freebsd-x64" - ], - "@oxc-parser/binding-linux-arm-gnueabihf@0.104.0": [ - "npm:@oxc-parser/binding-linux-arm-gnueabihf" - ], - "@oxc-parser/binding-linux-arm64-gnu@0.104.0": [ - "npm:@oxc-parser/binding-linux-arm64-gnu" - ], - "@oxc-parser/binding-linux-arm64-musl@0.104.0": [ - "npm:@oxc-parser/binding-linux-arm64-musl" - ], - "@oxc-parser/binding-linux-riscv64-gnu@0.104.0": [ - "npm:@oxc-parser/binding-linux-riscv64-gnu" - ], - "@oxc-parser/binding-linux-s390x-gnu@0.104.0": [ - "npm:@oxc-parser/binding-linux-s390x-gnu" - ], - "@oxc-parser/binding-linux-x64-gnu@0.104.0": [ - "npm:@oxc-parser/binding-linux-x64-gnu" - ], - "@oxc-parser/binding-linux-x64-musl@0.104.0": [ - "npm:@oxc-parser/binding-linux-x64-musl" - ], - "@oxc-parser/binding-openharmony-arm64@0.104.0": [ - "npm:@oxc-parser/binding-openharmony-arm64" - ], - "@oxc-parser/binding-wasm32-wasi@0.104.0": [ - "npm:@oxc-parser/binding-wasm32-wasi" - ], - "@oxc-parser/binding-win32-arm64-msvc@0.104.0": [ - "npm:@oxc-parser/binding-win32-arm64-msvc" - ], - "@oxc-parser/binding-win32-x64-msvc@0.104.0": [ - "npm:@oxc-parser/binding-win32-x64-msvc" - ], - "@oxc-project/types@0.104.0": [ - "npm:@oxc-project/types" - ], - "@oxc-project/types@0.115.0": [ - "npm:@oxc-project/types@0.115.0" - ], - "@oxc-project/types@0.122.0": [ - "npm:@oxc-project/types@0.122.0" - ], - "@oxc-project/types@0.98.0": [ - "npm:@oxc-project/types@0.98.0" - ], - "@oxc-resolver/binding-android-arm-eabi@11.19.1": [ - "npm:@oxc-resolver/binding-android-arm-eabi" - ], - "@oxc-resolver/binding-android-arm64@11.19.1": [ - "npm:@oxc-resolver/binding-android-arm64" - ], - "@oxc-resolver/binding-darwin-arm64@11.19.1": [ - "npm:@oxc-resolver/binding-darwin-arm64" - ], - "@oxc-resolver/binding-darwin-x64@11.19.1": [ - "npm:@oxc-resolver/binding-darwin-x64" - ], - "@oxc-resolver/binding-freebsd-x64@11.19.1": [ - "npm:@oxc-resolver/binding-freebsd-x64" - ], - "@oxc-resolver/binding-linux-arm-gnueabihf@11.19.1": [ - "npm:@oxc-resolver/binding-linux-arm-gnueabihf" - ], - "@oxc-resolver/binding-linux-arm-musleabihf@11.19.1": [ - "npm:@oxc-resolver/binding-linux-arm-musleabihf" - ], - "@oxc-resolver/binding-linux-arm64-gnu@11.19.1": [ - "npm:@oxc-resolver/binding-linux-arm64-gnu" - ], - "@oxc-resolver/binding-linux-arm64-musl@11.19.1": [ - "npm:@oxc-resolver/binding-linux-arm64-musl" - ], - "@oxc-resolver/binding-linux-ppc64-gnu@11.19.1": [ - "npm:@oxc-resolver/binding-linux-ppc64-gnu" - ], - "@oxc-resolver/binding-linux-riscv64-gnu@11.19.1": [ - "npm:@oxc-resolver/binding-linux-riscv64-gnu" - ], - "@oxc-resolver/binding-linux-riscv64-musl@11.19.1": [ - "npm:@oxc-resolver/binding-linux-riscv64-musl" - ], - "@oxc-resolver/binding-linux-s390x-gnu@11.19.1": [ - "npm:@oxc-resolver/binding-linux-s390x-gnu" - ], - "@oxc-resolver/binding-linux-x64-gnu@11.19.1": [ - "npm:@oxc-resolver/binding-linux-x64-gnu" - ], - "@oxc-resolver/binding-linux-x64-musl@11.19.1": [ - "npm:@oxc-resolver/binding-linux-x64-musl" - ], - "@oxc-resolver/binding-openharmony-arm64@11.19.1": [ - "npm:@oxc-resolver/binding-openharmony-arm64" - ], - "@oxc-resolver/binding-wasm32-wasi@11.19.1": [ - "npm:@oxc-resolver/binding-wasm32-wasi" - ], - "@oxc-resolver/binding-win32-arm64-msvc@11.19.1": [ - "npm:@oxc-resolver/binding-win32-arm64-msvc" - ], - "@oxc-resolver/binding-win32-ia32-msvc@11.19.1": [ - "npm:@oxc-resolver/binding-win32-ia32-msvc" - ], - "@oxc-resolver/binding-win32-x64-msvc@11.19.1": [ - "npm:@oxc-resolver/binding-win32-x64-msvc" - ], - "@oxlint-tsgolint/darwin-arm64@0.17.1": [ - "npm:@oxlint-tsgolint/darwin-arm64" - ], - "@oxlint-tsgolint/darwin-x64@0.17.1": [ - "npm:@oxlint-tsgolint/darwin-x64" - ], - "@oxlint-tsgolint/linux-arm64@0.17.1": [ - "npm:@oxlint-tsgolint/linux-arm64" - ], - "@oxlint-tsgolint/linux-x64@0.17.1": [ - "npm:@oxlint-tsgolint/linux-x64" - ], - "@oxlint-tsgolint/win32-arm64@0.17.1": [ - "npm:@oxlint-tsgolint/win32-arm64" - ], - "@oxlint-tsgolint/win32-x64@0.17.1": [ - "npm:@oxlint-tsgolint/win32-x64" - ], - "@oxlint/binding-android-arm-eabi@1.56.0": [ - "npm:@oxlint/binding-android-arm-eabi" - ], - "@oxlint/binding-android-arm64@1.56.0": [ - "npm:@oxlint/binding-android-arm64" - ], - "@oxlint/binding-darwin-arm64@1.56.0": [ - "npm:@oxlint/binding-darwin-arm64" - ], - "@oxlint/binding-darwin-x64@1.56.0": [ - "npm:@oxlint/binding-darwin-x64" - ], - "@oxlint/binding-freebsd-x64@1.56.0": [ - "npm:@oxlint/binding-freebsd-x64" - ], - "@oxlint/binding-linux-arm-gnueabihf@1.56.0": [ - "npm:@oxlint/binding-linux-arm-gnueabihf" - ], - "@oxlint/binding-linux-arm-musleabihf@1.56.0": [ - "npm:@oxlint/binding-linux-arm-musleabihf" - ], - "@oxlint/binding-linux-arm64-gnu@1.56.0": [ - "npm:@oxlint/binding-linux-arm64-gnu" - ], - "@oxlint/binding-linux-arm64-musl@1.56.0": [ - "npm:@oxlint/binding-linux-arm64-musl" - ], - "@oxlint/binding-linux-ppc64-gnu@1.56.0": [ - "npm:@oxlint/binding-linux-ppc64-gnu" - ], - "@oxlint/binding-linux-riscv64-gnu@1.56.0": [ - "npm:@oxlint/binding-linux-riscv64-gnu" - ], - "@oxlint/binding-linux-riscv64-musl@1.56.0": [ - "npm:@oxlint/binding-linux-riscv64-musl" - ], - "@oxlint/binding-linux-s390x-gnu@1.56.0": [ - "npm:@oxlint/binding-linux-s390x-gnu" - ], - "@oxlint/binding-linux-x64-gnu@1.56.0": [ - "npm:@oxlint/binding-linux-x64-gnu" - ], - "@oxlint/binding-linux-x64-musl@1.56.0": [ - "npm:@oxlint/binding-linux-x64-musl" - ], - "@oxlint/binding-openharmony-arm64@1.56.0": [ - "npm:@oxlint/binding-openharmony-arm64" - ], - "@oxlint/binding-win32-arm64-msvc@1.56.0": [ - "npm:@oxlint/binding-win32-arm64-msvc" - ], - "@oxlint/binding-win32-ia32-msvc@1.56.0": [ - "npm:@oxlint/binding-win32-ia32-msvc" - ], - "@oxlint/binding-win32-x64-msvc@1.56.0": [ - "npm:@oxlint/binding-win32-x64-msvc" - ], - "@panva/hkdf@1.2.1": [ - "npm:@panva/hkdf" - ], - "@photonjs/cloudflare@0.1.13(@cloudflare/workers-types@4.20260317.1)(@types/express@5.0.6)(fastify@5.8.2)(h3@1.15.10)(hono@4.12.8)(srvx@0.9.8)(vite@8.0.2(@types/node@20.19.37)(esbuild@0.27.4)(jiti@2.6.1)(sugarss@5.0.1(postcss@8.5.8))(tsx@4.21.0)(yaml@2.8.3))(workerd@1.20260317.1)(wrangler@4.76.0(@cloudflare/workers-types@4.20260317.1))": [ - "npm:@photonjs/cloudflare" - ], - "@photonjs/core@0.1.21(@cloudflare/workers-types@4.20260317.1)(@types/express@5.0.6)(fastify@5.8.2)(h3@1.15.10)(hono@4.12.8)(srvx@0.9.8)(vite@8.0.2(@types/node@20.19.37)(esbuild@0.27.4)(jiti@2.6.1)(sugarss@5.0.1(postcss@8.5.8))(tsx@4.21.0)(yaml@2.8.3))": [ - "npm:@photonjs/core" - ], - "@photonjs/express@0.1.13(@cloudflare/workers-types@4.20260317.1)(@types/express@5.0.6)(fastify@5.8.2)(h3@1.15.10)(hono@4.12.8)(srvx@0.9.8)(vite@8.0.2(@types/node@20.19.37)(esbuild@0.27.4)(jiti@2.6.1)(sugarss@5.0.1(postcss@8.5.8))(tsx@4.21.0)(yaml@2.8.3))": [ - "npm:@photonjs/express" - ], - "@photonjs/fastify@0.1.12(@cloudflare/workers-types@4.20260317.1)(@types/express@5.0.6)(fastify@5.8.2)(h3@1.15.10)(hono@4.12.8)(srvx@0.9.8)(vite@8.0.2(@types/node@20.19.37)(esbuild@0.27.4)(jiti@2.6.1)(sugarss@5.0.1(postcss@8.5.8))(tsx@4.21.0)(yaml@2.8.3))": [ - "npm:@photonjs/fastify" - ], - "@photonjs/h3@0.1.12(@cloudflare/workers-types@4.20260317.1)(@types/express@5.0.6)(fastify@5.8.2)(h3@1.15.10)(hono@4.12.8)(srvx@0.9.8)(vite@8.0.2(@types/node@20.19.37)(esbuild@0.27.4)(jiti@2.6.1)(sugarss@5.0.1(postcss@8.5.8))(tsx@4.21.0)(yaml@2.8.3))": [ - "npm:@photonjs/h3" - ], - "@photonjs/hono@0.1.12(@cloudflare/workers-types@4.20260317.1)(@hono/node-server@1.19.9(hono@4.12.8))(@types/express@5.0.6)(fastify@5.8.2)(h3@1.15.10)(hono@4.12.8)(srvx@0.9.8)(vite@8.0.2(@types/node@20.19.37)(esbuild@0.27.4)(jiti@2.6.1)(sugarss@5.0.1(postcss@8.5.8))(tsx@4.21.0)(yaml@2.8.3))": [ - "npm:@photonjs/hono" - ], - "@photonjs/runtime@0.1.16(@cloudflare/workers-types@4.20260317.1)(@types/express@5.0.6)(encoding@0.1.13)(fastify@5.8.2)(h3@1.15.10)(hono@4.12.8)(vite@8.0.2(@types/node@20.19.37)(esbuild@0.27.4)(jiti@2.6.1)(sugarss@5.0.1(postcss@8.5.8))(tsx@4.21.0)(yaml@2.8.3))": [ - "npm:@photonjs/runtime" - ], - "@photonjs/srvx@0.1.12(@cloudflare/workers-types@4.20260317.1)(@types/express@5.0.6)(fastify@5.8.2)(h3@1.15.10)(hono@4.12.8)(srvx@0.9.8)(vite@8.0.2(@types/node@20.19.37)(esbuild@0.27.4)(jiti@2.6.1)(sugarss@5.0.1(postcss@8.5.8))(tsx@4.21.0)(yaml@2.8.3))": [ - "npm:@photonjs/srvx" - ], - "@photonjs/vercel@0.1.22(@cloudflare/workers-types@4.20260317.1)(@types/express@5.0.6)(@universal-middleware/h3@0.4.15(@cloudflare/workers-types@4.20260317.1)(@types/express@5.0.6)(fastify@5.8.2)(h3@1.15.10)(hono@4.12.8)(srvx@0.9.8))(encoding@0.1.13)(express@5.2.1)(fastify@5.8.2)(h3@1.15.10)(hono@4.12.8)(srvx@0.9.8)(vite@8.0.2(@types/node@20.19.37)(esbuild@0.27.4)(jiti@2.6.1)(sugarss@5.0.1(postcss@8.5.8))(tsx@4.21.0)(yaml@2.8.3))": [ - "npm:@photonjs/vercel" - ], - "@pinojs/redact@0.4.0": [ - "npm:@pinojs/redact" - ], - "@pkgjs/parseargs@0.11.0": [ - "npm:@pkgjs/parseargs" - ], - "@pkgr/core@0.2.9": [ - "npm:@pkgr/core" - ], - "@polka/url@1.0.0-next.29": [ - "npm:@polka/url" - ], - "@poppinss/colors@4.1.5": [ - "npm:@poppinss/colors" - ], - "@poppinss/dumper@0.6.4": [ - "npm:@poppinss/dumper" - ], - "@poppinss/exception@1.2.2": [ - "npm:@poppinss/exception" - ], - "@prisma/client-runtime-utils@7.5.0": [ - "npm:@prisma/client-runtime-utils" - ], - "@prisma/client@7.5.0(prisma@7.5.0(@types/react@19.2.14)(better-sqlite3@12.8.0)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)(typescript@6.0.2))(typescript@6.0.2)": [ - "npm:@prisma/client" - ], - "@prisma/config@7.5.0": [ - "npm:@prisma/config" - ], - "@prisma/debug@7.2.0": [ - "npm:@prisma/debug@7.2.0" - ], - "@prisma/debug@7.5.0": [ - "npm:@prisma/debug" - ], - "@prisma/dev@0.20.0(typescript@6.0.2)": [ - "npm:@prisma/dev" - ], - "@prisma/engines-version@7.5.0-15.280c870be64f457428992c43c1f6d557fab6e29e": [ - "npm:@prisma/engines-version" - ], - "@prisma/engines@7.5.0": [ - "npm:@prisma/engines" - ], - "@prisma/fetch-engine@7.5.0": [ - "npm:@prisma/fetch-engine" - ], - "@prisma/get-platform@7.2.0": [ - "npm:@prisma/get-platform" - ], - "@prisma/get-platform@7.5.0": [ - "npm:@prisma/get-platform@7.5.0" - ], - "@prisma/query-plan-executor@7.2.0": [ - "npm:@prisma/query-plan-executor" - ], - "@prisma/studio-core@0.21.1(@types/react@19.2.14)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)": [ - "npm:@prisma/studio-core" - ], - "@puppeteer/browsers@2.13.0": [ - "npm:@puppeteer/browsers" - ], - "@quansync/fs@1.0.0": [ - "npm:@quansync/fs" - ], - "@radix-ui/react-icons@1.3.2(react@19.2.4)": [ - "npm:@radix-ui/react-icons" - ], - "@remix-run/node-fetch-server@0.8.1": [ - "npm:@remix-run/node-fetch-server" - ], - "@remusao/guess-url-type@2.1.0": [ - "npm:@remusao/guess-url-type" - ], - "@remusao/small@2.1.0": [ - "npm:@remusao/small" - ], - "@remusao/smaz-compress@2.2.0": [ - "npm:@remusao/smaz-compress" - ], - "@remusao/smaz-decompress@2.2.0": [ - "npm:@remusao/smaz-decompress" - ], - "@remusao/smaz@2.2.0": [ - "npm:@remusao/smaz" - ], - "@remusao/trie@2.1.0": [ - "npm:@remusao/trie" - ], - "@rolldown/binding-android-arm64@1.0.0-beta.51": [ - "npm:@rolldown/binding-android-arm64@1.0.0-beta.51" - ], - "@rolldown/binding-android-arm64@1.0.0-rc.11": [ - "npm:@rolldown/binding-android-arm64@1.0.0-rc.11" - ], - "@rolldown/binding-android-arm64@1.0.0-rc.9": [ - "npm:@rolldown/binding-android-arm64@1.0.0-rc.9" - ], - "@rolldown/binding-darwin-arm64@1.0.0-beta.51": [ - "npm:@rolldown/binding-darwin-arm64@1.0.0-beta.51" - ], - "@rolldown/binding-darwin-arm64@1.0.0-rc.11": [ - "npm:@rolldown/binding-darwin-arm64@1.0.0-rc.11" - ], - "@rolldown/binding-darwin-arm64@1.0.0-rc.9": [ - "npm:@rolldown/binding-darwin-arm64@1.0.0-rc.9" - ], - "@rolldown/binding-darwin-x64@1.0.0-beta.51": [ - "npm:@rolldown/binding-darwin-x64@1.0.0-beta.51" - ], - "@rolldown/binding-darwin-x64@1.0.0-rc.11": [ - "npm:@rolldown/binding-darwin-x64@1.0.0-rc.11" - ], - "@rolldown/binding-darwin-x64@1.0.0-rc.9": [ - "npm:@rolldown/binding-darwin-x64@1.0.0-rc.9" - ], - "@rolldown/binding-freebsd-x64@1.0.0-beta.51": [ - "npm:@rolldown/binding-freebsd-x64@1.0.0-beta.51" - ], - "@rolldown/binding-freebsd-x64@1.0.0-rc.11": [ - "npm:@rolldown/binding-freebsd-x64@1.0.0-rc.11" - ], - "@rolldown/binding-freebsd-x64@1.0.0-rc.9": [ - "npm:@rolldown/binding-freebsd-x64@1.0.0-rc.9" - ], - "@rolldown/binding-linux-arm-gnueabihf@1.0.0-beta.51": [ - "npm:@rolldown/binding-linux-arm-gnueabihf@1.0.0-beta.51" - ], - "@rolldown/binding-linux-arm-gnueabihf@1.0.0-rc.11": [ - "npm:@rolldown/binding-linux-arm-gnueabihf@1.0.0-rc.11" - ], - "@rolldown/binding-linux-arm-gnueabihf@1.0.0-rc.9": [ - "npm:@rolldown/binding-linux-arm-gnueabihf@1.0.0-rc.9" - ], - "@rolldown/binding-linux-arm64-gnu@1.0.0-beta.51": [ - "npm:@rolldown/binding-linux-arm64-gnu@1.0.0-beta.51" - ], - "@rolldown/binding-linux-arm64-gnu@1.0.0-rc.11": [ - "npm:@rolldown/binding-linux-arm64-gnu@1.0.0-rc.11" - ], - "@rolldown/binding-linux-arm64-gnu@1.0.0-rc.9": [ - "npm:@rolldown/binding-linux-arm64-gnu@1.0.0-rc.9" - ], - "@rolldown/binding-linux-arm64-musl@1.0.0-beta.51": [ - "npm:@rolldown/binding-linux-arm64-musl@1.0.0-beta.51" - ], - "@rolldown/binding-linux-arm64-musl@1.0.0-rc.11": [ - "npm:@rolldown/binding-linux-arm64-musl@1.0.0-rc.11" - ], - "@rolldown/binding-linux-arm64-musl@1.0.0-rc.9": [ - "npm:@rolldown/binding-linux-arm64-musl@1.0.0-rc.9" - ], - "@rolldown/binding-linux-ppc64-gnu@1.0.0-rc.11": [ - "npm:@rolldown/binding-linux-ppc64-gnu@1.0.0-rc.11" - ], - "@rolldown/binding-linux-ppc64-gnu@1.0.0-rc.9": [ - "npm:@rolldown/binding-linux-ppc64-gnu@1.0.0-rc.9" - ], - "@rolldown/binding-linux-s390x-gnu@1.0.0-rc.11": [ - "npm:@rolldown/binding-linux-s390x-gnu@1.0.0-rc.11" - ], - "@rolldown/binding-linux-s390x-gnu@1.0.0-rc.9": [ - "npm:@rolldown/binding-linux-s390x-gnu@1.0.0-rc.9" - ], - "@rolldown/binding-linux-x64-gnu@1.0.0-beta.51": [ - "npm:@rolldown/binding-linux-x64-gnu@1.0.0-beta.51" - ], - "@rolldown/binding-linux-x64-gnu@1.0.0-rc.11": [ - "npm:@rolldown/binding-linux-x64-gnu" - ], - "@rolldown/binding-linux-x64-gnu@1.0.0-rc.9": [ - "npm:@rolldown/binding-linux-x64-gnu@1.0.0-rc.9" - ], - "@rolldown/binding-linux-x64-musl@1.0.0-beta.51": [ - "npm:@rolldown/binding-linux-x64-musl@1.0.0-beta.51" - ], - "@rolldown/binding-linux-x64-musl@1.0.0-rc.11": [ - "npm:@rolldown/binding-linux-x64-musl" - ], - "@rolldown/binding-linux-x64-musl@1.0.0-rc.9": [ - "npm:@rolldown/binding-linux-x64-musl@1.0.0-rc.9" - ], - "@rolldown/binding-openharmony-arm64@1.0.0-beta.51": [ - "npm:@rolldown/binding-openharmony-arm64@1.0.0-beta.51" - ], - "@rolldown/binding-openharmony-arm64@1.0.0-rc.11": [ - "npm:@rolldown/binding-openharmony-arm64@1.0.0-rc.11" - ], - "@rolldown/binding-openharmony-arm64@1.0.0-rc.9": [ - "npm:@rolldown/binding-openharmony-arm64@1.0.0-rc.9" - ], - "@rolldown/binding-wasm32-wasi@1.0.0-beta.51": [ - "npm:@rolldown/binding-wasm32-wasi@1.0.0-beta.51" - ], - "@rolldown/binding-wasm32-wasi@1.0.0-rc.11": [ - "npm:@rolldown/binding-wasm32-wasi@1.0.0-rc.11" - ], - "@rolldown/binding-wasm32-wasi@1.0.0-rc.9": [ - "npm:@rolldown/binding-wasm32-wasi@1.0.0-rc.9" - ], - "@rolldown/binding-win32-arm64-msvc@1.0.0-beta.51": [ - "npm:@rolldown/binding-win32-arm64-msvc@1.0.0-beta.51" - ], - "@rolldown/binding-win32-arm64-msvc@1.0.0-rc.11": [ - "npm:@rolldown/binding-win32-arm64-msvc@1.0.0-rc.11" - ], - "@rolldown/binding-win32-arm64-msvc@1.0.0-rc.9": [ - "npm:@rolldown/binding-win32-arm64-msvc@1.0.0-rc.9" - ], - "@rolldown/binding-win32-ia32-msvc@1.0.0-beta.51": [ - "npm:@rolldown/binding-win32-ia32-msvc" - ], - "@rolldown/binding-win32-x64-msvc@1.0.0-beta.51": [ - "npm:@rolldown/binding-win32-x64-msvc@1.0.0-beta.51" - ], - "@rolldown/binding-win32-x64-msvc@1.0.0-rc.11": [ - "npm:@rolldown/binding-win32-x64-msvc@1.0.0-rc.11" - ], - "@rolldown/binding-win32-x64-msvc@1.0.0-rc.9": [ - "npm:@rolldown/binding-win32-x64-msvc@1.0.0-rc.9" - ], - "@rolldown/pluginutils@1.0.0-beta.51": [ - "npm:@rolldown/pluginutils@1.0.0-beta.51" - ], - "@rolldown/pluginutils@1.0.0-rc.11": [ - "npm:@rolldown/pluginutils@1.0.0-rc.11" - ], - "@rolldown/pluginutils@1.0.0-rc.2": [ - "npm:@rolldown/pluginutils@1.0.0-rc.2" - ], - "@rolldown/pluginutils@1.0.0-rc.7": [ - "npm:@rolldown/pluginutils" - ], - "@rolldown/pluginutils@1.0.0-rc.9": [ - "npm:@rolldown/pluginutils@1.0.0-rc.9" - ], - "@rollup/pluginutils@5.3.0": [ - "npm:@rollup/pluginutils" - ], - "@sec-ant/readable-stream@0.4.1": [ - "npm:@sec-ant/readable-stream" - ], - "@sentry-internal/browser-utils@10.45.0": [ - "npm:@sentry-internal/browser-utils" - ], - "@sentry-internal/feedback@10.45.0": [ - "npm:@sentry-internal/feedback" - ], - "@sentry-internal/replay-canvas@10.45.0": [ - "npm:@sentry-internal/replay-canvas" - ], - "@sentry-internal/replay@10.45.0": [ - "npm:@sentry-internal/replay" - ], - "@sentry/babel-plugin-component-annotate@5.1.1": [ - "npm:@sentry/babel-plugin-component-annotate" - ], - "@sentry/browser@10.45.0": [ - "npm:@sentry/browser" - ], - "@sentry/bundler-plugin-core@5.1.1(encoding@0.1.13)": [ - "npm:@sentry/bundler-plugin-core" - ], - "@sentry/cli-darwin@2.58.5": [ - "npm:@sentry/cli-darwin" - ], - "@sentry/cli-linux-arm64@2.58.5": [ - "npm:@sentry/cli-linux-arm64" - ], - "@sentry/cli-linux-arm@2.58.5": [ - "npm:@sentry/cli-linux-arm" - ], - "@sentry/cli-linux-i686@2.58.5": [ - "npm:@sentry/cli-linux-i686" - ], - "@sentry/cli-linux-x64@2.58.5": [ - "npm:@sentry/cli-linux-x64" - ], - "@sentry/cli-win32-arm64@2.58.5": [ - "npm:@sentry/cli-win32-arm64" - ], - "@sentry/cli-win32-i686@2.58.5": [ - "npm:@sentry/cli-win32-i686" - ], - "@sentry/cli-win32-x64@2.58.5": [ - "npm:@sentry/cli-win32-x64" - ], - "@sentry/cli@2.58.5(encoding@0.1.13)": [ - "npm:@sentry/cli" - ], - "@sentry/core@10.45.0": [ - "npm:@sentry/core" - ], - "@sentry/react@10.45.0(react@19.2.4)": [ - "npm:@sentry/react" - ], - "@sentry/rollup-plugin@5.1.1(encoding@0.1.13)": [ - "npm:@sentry/rollup-plugin" - ], - "@sentry/solid@10.45.0(solid-js@1.9.11)": [ - "npm:@sentry/solid" - ], - "@sentry/vite-plugin@5.1.1(encoding@0.1.13)": [ - "npm:@sentry/vite-plugin" - ], - "@sentry/vue@10.45.0(vue@3.5.30(typescript@6.0.2))": [ - "npm:@sentry/vue" - ], - "@sinclair/typebox@0.34.48": [ - "npm:@sinclair/typebox" - ], - "@sindresorhus/is@4.6.0": [ - "npm:@sindresorhus/is" - ], - "@sindresorhus/is@7.1.0": [ - "npm:@sindresorhus/is@7.1.0" - ], - "@sindresorhus/merge-streams@4.0.0": [ - "npm:@sindresorhus/merge-streams" - ], - "@solid-primitives/props@3.2.2(solid-js@1.9.11)": [ - "npm:@solid-primitives/props" - ], - "@solid-primitives/refs@1.1.2(solid-js@1.9.11)": [ - "npm:@solid-primitives/refs" - ], - "@solid-primitives/scheduled@1.5.3(solid-js@1.9.11)": [ - "npm:@solid-primitives/scheduled" - ], - "@solid-primitives/transition-group@1.1.2(solid-js@1.9.11)": [ - "npm:@solid-primitives/transition-group" - ], - "@solid-primitives/utils@6.3.2(solid-js@1.9.11)": [ - "npm:@solid-primitives/utils" - ], - "@speed-highlight/core@1.2.7": [ - "npm:@speed-highlight/core" - ], - "@stackblitz/sdk@1.11.0": [ - "npm:@stackblitz/sdk" - ], - "@standard-schema/spec@1.1.0": [ - "npm:@standard-schema/spec" - ], - "@szmarczak/http-timer@4.0.6": [ - "npm:@szmarczak/http-timer" - ], - "@tailwindcss/node@4.2.2": [ - "npm:@tailwindcss/node" - ], - "@tailwindcss/oxide-android-arm64@4.2.2": [ - "npm:@tailwindcss/oxide-android-arm64" - ], - "@tailwindcss/oxide-darwin-arm64@4.2.2": [ - "npm:@tailwindcss/oxide-darwin-arm64" - ], - "@tailwindcss/oxide-darwin-x64@4.2.2": [ - "npm:@tailwindcss/oxide-darwin-x64" - ], - "@tailwindcss/oxide-freebsd-x64@4.2.2": [ - "npm:@tailwindcss/oxide-freebsd-x64" - ], - "@tailwindcss/oxide-linux-arm-gnueabihf@4.2.2": [ - "npm:@tailwindcss/oxide-linux-arm-gnueabihf" - ], - "@tailwindcss/oxide-linux-arm64-gnu@4.2.2": [ - "npm:@tailwindcss/oxide-linux-arm64-gnu" - ], - "@tailwindcss/oxide-linux-arm64-musl@4.2.2": [ - "npm:@tailwindcss/oxide-linux-arm64-musl" - ], - "@tailwindcss/oxide-linux-x64-gnu@4.2.2": [ - "npm:@tailwindcss/oxide-linux-x64-gnu" - ], - "@tailwindcss/oxide-linux-x64-musl@4.2.2": [ - "npm:@tailwindcss/oxide-linux-x64-musl" - ], - "@tailwindcss/oxide-wasm32-wasi@4.2.2": [ - "npm:@tailwindcss/oxide-wasm32-wasi" - ], - "@tailwindcss/oxide-win32-arm64-msvc@4.2.2": [ - "npm:@tailwindcss/oxide-win32-arm64-msvc" - ], - "@tailwindcss/oxide-win32-x64-msvc@4.2.2": [ - "npm:@tailwindcss/oxide-win32-x64-msvc" - ], - "@tailwindcss/oxide@4.2.2": [ - "npm:@tailwindcss/oxide" - ], - "@tailwindcss/vite@4.2.2(vite@8.0.2(@types/node@20.19.37)(esbuild@0.27.4)(jiti@2.6.1)(sugarss@5.0.1(postcss@8.5.8))(tsx@4.21.0)(yaml@2.8.3))": [ - "npm:@tailwindcss/vite" - ], - "@tootallnate/quickjs-emscripten@0.23.0": [ - "npm:@tootallnate/quickjs-emscripten" - ], - "@trpc/client@11.14.1(@trpc/server@11.14.1(typescript@6.0.2))(typescript@6.0.2)": [ - "npm:@trpc/client" - ], - "@trpc/server@11.14.1(typescript@6.0.2)": [ - "npm:@trpc/server" - ], - "@trysound/sax@0.2.0": [ - "npm:@trysound/sax" - ], - "@ts-morph/common@0.27.0": [ - "npm:@ts-morph/common" - ], - "@ts-rest/core@3.52.1(@types/node@20.19.37)(zod@3.25.76)": [ - "npm:@ts-rest/core" - ], - "@ts-rest/serverless@3.52.1(@ts-rest/core@3.52.1(@types/node@20.19.37)(zod@3.25.76))(@types/aws-lambda@8.10.161)(zod@3.25.76)": [ - "npm:@ts-rest/serverless" - ], - "@turbo/darwin-64@2.8.20": [ - "npm:@turbo/darwin-64" - ], - "@turbo/darwin-arm64@2.8.20": [ - "npm:@turbo/darwin-arm64" - ], - "@turbo/linux-64@2.8.20": [ - "npm:@turbo/linux-64" - ], - "@turbo/linux-arm64@2.8.20": [ - "npm:@turbo/linux-arm64" - ], - "@turbo/windows-64@2.8.20": [ - "npm:@turbo/windows-64" - ], - "@turbo/windows-arm64@2.8.20": [ - "npm:@turbo/windows-arm64" - ], - "@tybys/wasm-util@0.10.1": [ - "npm:@tybys/wasm-util@0.10.1" - ], - "@tybys/wasm-util@0.9.0": [ - "npm:@tybys/wasm-util" - ], - "@types/aws-lambda@8.10.161": [ - "npm:@types/aws-lambda" - ], - "@types/babel__core@7.20.5": [ - "npm:@types/babel__core" - ], - "@types/babel__generator@7.27.0": [ - "npm:@types/babel__generator" - ], - "@types/babel__template@7.4.4": [ - "npm:@types/babel__template" - ], - "@types/babel__traverse@7.28.0": [ - "npm:@types/babel__traverse" - ], - "@types/better-sqlite3@7.6.13": [ - "npm:@types/better-sqlite3" - ], - "@types/body-parser@1.19.6": [ - "npm:@types/body-parser" - ], - "@types/cacheable-request@6.0.3": [ - "npm:@types/cacheable-request" - ], - "@types/chai@5.2.2": [ - "npm:@types/chai" - ], - "@types/connect@3.4.38": [ - "npm:@types/connect" - ], - "@types/debug@4.1.12": [ - "npm:@types/debug" - ], - "@types/deep-eql@4.0.2": [ - "npm:@types/deep-eql" - ], - "@types/eslint@9.6.1": [ - "npm:@types/eslint" - ], - "@types/estree@1.0.8": [ - "npm:@types/estree" - ], - "@types/express-serve-static-core@5.1.0": [ - "npm:@types/express-serve-static-core" - ], - "@types/express@5.0.6": [ - "npm:@types/express" - ], - "@types/http-cache-semantics@4.0.4": [ - "npm:@types/http-cache-semantics" - ], - "@types/http-errors@2.0.5": [ - "npm:@types/http-errors" - ], - "@types/jsesc@2.5.1": [ - "npm:@types/jsesc" - ], - "@types/json-schema@7.0.15": [ - "npm:@types/json-schema" - ], - "@types/keyv@3.1.4": [ - "npm:@types/keyv" - ], - "@types/mdast@4.0.4": [ - "npm:@types/mdast" - ], - "@types/ms@2.1.0": [ - "npm:@types/ms" - ], - "@types/node@20.19.37": [ - "npm:@types/node" - ], - "@types/qs@6.14.0": [ - "npm:@types/qs" - ], - "@types/range-parser@1.2.7": [ - "npm:@types/range-parser" - ], - "@types/react-dom@19.2.3(@types/react@19.2.14)": [ - "npm:@types/react-dom" - ], - "@types/react@19.2.14": [ - "npm:@types/react" - ], - "@types/responselike@1.0.3": [ - "npm:@types/responselike" - ], - "@types/retry@0.12.0": [ - "npm:@types/retry" - ], - "@types/send@1.2.0": [ - "npm:@types/send" - ], - "@types/serve-static@2.2.0": [ - "npm:@types/serve-static" - ], - "@types/ungap__structured-clone@1.2.0": [ - "npm:@types/ungap__structured-clone" - ], - "@types/unist@2.0.11": [ - "npm:@types/unist" - ], - "@types/unist@3.0.3": [ - "npm:@types/unist@3.0.3" - ], - "@types/which@3.0.4": [ - "npm:@types/which" - ], - "@types/yauzl@2.10.3": [ - "npm:@types/yauzl" - ], - "@typescript-eslint/eslint-plugin@8.57.1(@typescript-eslint/parser@8.57.1(eslint@9.39.4(jiti@2.6.1))(typescript@6.0.2))(eslint@9.39.4(jiti@2.6.1))(typescript@6.0.2)": [ - "npm:@typescript-eslint/eslint-plugin" - ], - "@typescript-eslint/parser@8.57.1(eslint@9.39.4(jiti@2.6.1))(typescript@6.0.2)": [ - "npm:@typescript-eslint/parser" - ], - "@typescript-eslint/project-service@8.57.1(typescript@6.0.2)": [ - "npm:@typescript-eslint/project-service" - ], - "@typescript-eslint/scope-manager@8.57.1": [ - "npm:@typescript-eslint/scope-manager" - ], - "@typescript-eslint/tsconfig-utils@8.57.1(typescript@6.0.2)": [ - "npm:@typescript-eslint/tsconfig-utils" - ], - "@typescript-eslint/type-utils@8.57.1(eslint@9.39.4(jiti@2.6.1))(typescript@6.0.2)": [ - "npm:@typescript-eslint/type-utils" - ], - "@typescript-eslint/types@8.57.1": [ - "npm:@typescript-eslint/types" - ], - "@typescript-eslint/typescript-estree@8.57.1(typescript@6.0.2)": [ - "npm:@typescript-eslint/typescript-estree" - ], - "@typescript-eslint/utils@8.57.1(eslint@9.39.4(jiti@2.6.1))(typescript@6.0.2)": [ - "npm:@typescript-eslint/utils" - ], - "@typescript-eslint/visitor-keys@8.57.1": [ - "npm:@typescript-eslint/visitor-keys" - ], - "@ungap/structured-clone@1.3.0": [ - "npm:@ungap/structured-clone" - ], - "@universal-middleware/cloudflare@0.4.10(@cloudflare/workers-types@4.20260317.1)(@types/express@5.0.6)(fastify@5.8.2)(h3@1.15.10)(hono@4.12.8)(srvx@0.9.8)": [ - "npm:@universal-middleware/cloudflare" - ], - "@universal-middleware/compress@0.2.35": [ - "npm:@universal-middleware/compress" - ], - "@universal-middleware/core@0.4.17(@cloudflare/workers-types@4.20260317.1)(@types/express@5.0.6)(fastify@5.8.2)(h3@1.15.10)(hono@4.12.8)(srvx@0.9.8)": [ - "npm:@universal-middleware/core" - ], - "@universal-middleware/express@0.4.22(@cloudflare/workers-types@4.20260317.1)(@types/express@5.0.6)(fastify@5.8.2)(h3@1.15.10)(hono@4.12.8)(srvx@0.9.8)": [ - "npm:@universal-middleware/express" - ], - "@universal-middleware/fastify@0.5.22(@cloudflare/workers-types@4.20260317.1)(@types/express@5.0.6)(fastify@5.8.2)(h3@1.15.10)(hono@4.12.8)(srvx@0.9.8)": [ - "npm:@universal-middleware/fastify" - ], - "@universal-middleware/h3@0.4.15(@cloudflare/workers-types@4.20260317.1)(@types/express@5.0.6)(fastify@5.8.2)(h3@1.15.10)(hono@4.12.8)(srvx@0.9.8)": [ - "npm:@universal-middleware/h3" - ], - "@universal-middleware/hono@0.4.18(@cloudflare/workers-types@4.20260317.1)(@types/express@5.0.6)(fastify@5.8.2)(h3@1.15.10)(hono@4.12.8)(srvx@0.9.8)": [ - "npm:@universal-middleware/hono" - ], - "@universal-middleware/sirv@0.1.25": [ - "npm:@universal-middleware/sirv" - ], - "@universal-middleware/srvx@0.1.1(@cloudflare/workers-types@4.20260317.1)(@types/express@5.0.6)(fastify@5.8.2)(h3@1.15.10)(hono@4.12.8)(srvx@0.9.8)": [ - "npm:@universal-middleware/srvx" - ], - "@universal-middleware/vercel@0.4.29(@cloudflare/workers-types@4.20260317.1)(@types/express@5.0.6)(@universal-middleware/h3@0.4.15(@cloudflare/workers-types@4.20260317.1)(@types/express@5.0.6)(fastify@5.8.2)(h3@1.15.10)(hono@4.12.8)(srvx@0.9.8))(express@5.2.1)(fastify@5.8.2)(h3@1.15.10)(hono@4.12.8)(srvx@0.9.8)": [ - "npm:@universal-middleware/vercel" - ], - "@vercel/build-utils@13.2.4": [ - "npm:@vercel/build-utils" - ], - "@vercel/nft@0.30.4(encoding@0.1.13)": [ - "npm:@vercel/nft@0.30.4" - ], - "@vercel/nft@1.1.1(encoding@0.1.13)": [ - "npm:@vercel/nft" - ], - "@vercel/routing-utils@5.3.1": [ - "npm:@vercel/routing-utils" - ], - "@vikejs/biome-config@2.0.1(@biomejs/biome@2.4.8)": [ - "npm:@vikejs/biome-config" - ], - "@vite-plugin-vercel/schemas@1.1.0": [ - "npm:@vite-plugin-vercel/schemas" - ], - "@vitejs/plugin-react@6.0.1(vite@8.0.2(@types/node@20.19.37)(esbuild@0.27.4)(jiti@2.6.1)(sugarss@5.0.1(postcss@8.5.8))(tsx@4.21.0)(yaml@2.8.3))": [ - "npm:@vitejs/plugin-react" - ], - "@vitejs/plugin-vue@6.0.5(vite@8.0.2(@types/node@20.19.37)(esbuild@0.27.4)(jiti@2.6.1)(sugarss@5.0.1(postcss@8.5.8))(tsx@4.21.0)(yaml@2.8.3))(vue@3.5.30(typescript@6.0.2))": [ - "npm:@vitejs/plugin-vue" - ], - "@vitest/expect@4.1.0": [ - "npm:@vitest/expect" - ], - "@vitest/mocker@4.1.0(vite@8.0.2(@types/node@20.19.37)(esbuild@0.27.4)(jiti@2.6.1)(sugarss@5.0.1(postcss@8.5.8))(tsx@4.21.0)(yaml@2.8.3))": [ - "npm:@vitest/mocker" - ], - "@vitest/pretty-format@4.1.0": [ - "npm:@vitest/pretty-format" - ], - "@vitest/runner@4.1.0": [ - "npm:@vitest/runner" - ], - "@vitest/snapshot@4.1.0": [ - "npm:@vitest/snapshot" - ], - "@vitest/spy@4.1.0": [ - "npm:@vitest/spy" - ], - "@vitest/utils@4.1.0": [ - "npm:@vitest/utils" - ], - "@vue/compiler-core@3.5.30": [ - "npm:@vue/compiler-core" - ], - "@vue/compiler-dom@3.5.30": [ - "npm:@vue/compiler-dom" - ], - "@vue/compiler-sfc@3.5.30": [ - "npm:@vue/compiler-sfc" - ], - "@vue/compiler-ssr@3.5.30": [ - "npm:@vue/compiler-ssr" - ], - "@vue/reactivity@3.5.30": [ - "npm:@vue/reactivity" - ], - "@vue/runtime-core@3.5.30": [ - "npm:@vue/runtime-core" - ], - "@vue/runtime-dom@3.5.30": [ - "npm:@vue/runtime-dom" - ], - "@vue/server-renderer@3.5.30(vue@3.5.30(typescript@6.0.2))": [ - "npm:@vue/server-renderer" - ], - "@vue/shared@3.5.30": [ - "npm:@vue/shared" - ], - "@yarnpkg/lockfile@1.1.0": [ - "npm:@yarnpkg/lockfile" - ], - "@yarnpkg/parsers@3.0.2": [ - "npm:@yarnpkg/parsers" - ], - "@zkochan/js-yaml@0.0.7": [ - "npm:@zkochan/js-yaml" - ], - "abbrev@3.0.1": [ - "npm:abbrev" - ], - "abstract-logging@2.0.1": [ - "npm:abstract-logging" - ], - "accepts@2.0.0": [ - "npm:accepts" - ], - "acorn-import-attributes@1.9.5(acorn@8.16.0)": [ - "npm:acorn-import-attributes" - ], - "acorn-jsx@5.3.2(acorn@8.16.0)": [ - "npm:acorn-jsx" - ], - "acorn-walk@8.3.2": [ - "npm:acorn-walk" - ], - "acorn@8.14.0": [ - "npm:acorn@8.14.0" - ], - "acorn@8.16.0": [ - "npm:acorn" - ], - "agent-base@6.0.2": [ - "npm:agent-base@6.0.2" - ], - "agent-base@7.1.4": [ - "npm:agent-base" - ], - "ajv-formats@3.0.1": [ - "npm:ajv-formats" - ], - "ajv@6.14.0": [ - "npm:ajv" - ], - "ajv@8.18.0": [ - "npm:ajv@8.18.0" - ], - "ansi-colors@4.1.3": [ - "npm:ansi-colors" - ], - "ansi-regex@5.0.1": [ - "npm:ansi-regex@5.0.1" - ], - "ansi-regex@6.2.2": [ - "npm:ansi-regex" - ], - "ansi-styles@4.3.0": [ - "npm:ansi-styles@4.3.0" - ], - "ansi-styles@5.2.0": [ - "npm:ansi-styles@5.2.0" - ], - "ansi-styles@6.2.3": [ - "npm:ansi-styles" - ], - "ansis@4.2.0": [ - "npm:ansis" - ], - "argparse@1.0.10": [ - "npm:argparse@1.0.10" - ], - "argparse@2.0.1": [ - "npm:argparse" - ], - "args-tokenizer@0.3.0": [ - "npm:args-tokenizer" - ], - "array-buffer-byte-length@1.0.2": [ - "npm:array-buffer-byte-length" - ], - "array-includes@3.1.9": [ - "npm:array-includes" - ], - "array.prototype.findlast@1.2.5": [ - "npm:array.prototype.findlast" - ], - "array.prototype.flat@1.3.3": [ - "npm:array.prototype.flat" - ], - "array.prototype.flatmap@1.3.3": [ - "npm:array.prototype.flatmap" - ], - "array.prototype.tosorted@1.1.4": [ - "npm:array.prototype.tosorted" - ], - "arraybuffer.prototype.slice@1.0.4": [ - "npm:arraybuffer.prototype.slice" - ], - "ast-kit@3.0.0-beta.1": [ - "npm:ast-kit" - ], - "ast-types@0.13.4": [ - "npm:ast-types" - ], - "async-function@1.0.0": [ - "npm:async-function" - ], - "async-sema@3.1.1": [ - "npm:async-sema" - ], - "async@3.2.6": [ - "npm:async" - ], - "asynckit@0.4.0": [ - "npm:asynckit" - ], - "atomic-sleep@1.0.0": [ - "npm:atomic-sleep" - ], - "attributes-parser@2.2.3": [ - "npm:attributes-parser" - ], - "automad-prism-themes@0.3.7": [ - "npm:automad-prism-themes" - ], - "autoprefixer@10.4.27(postcss@8.5.8)": [ - "npm:autoprefixer" - ], - "available-typed-arrays@1.0.7": [ - "npm:available-typed-arrays" - ], - "avvio@9.2.0": [ - "npm:avvio" - ], - "aws-cdk-lib@2.244.0(constructs@10.5.1)": [ - "npm:aws-cdk-lib" - ], - "aws-cdk@2.1112.0": [ - "npm:aws-cdk" - ], - "aws-ssl-profiles@1.1.2": [ - "npm:aws-ssl-profiles" - ], - "axios@1.13.6": [ - "npm:axios" - ], - "b4a@1.7.3": [ - "npm:b4a" - ], - "babel-plugin-jsx-dom-expressions@0.40.3(@babel/core@7.29.0)": [ - "npm:babel-plugin-jsx-dom-expressions" - ], - "babel-plugin-module-resolver@5.0.2": [ - "npm:babel-plugin-module-resolver" - ], - "babel-preset-solid@1.9.10(@babel/core@7.29.0)(solid-js@1.9.11)": [ - "npm:babel-preset-solid" - ], - "balanced-match@1.0.2": [ - "npm:balanced-match" - ], - "balanced-match@4.0.2": [ - "npm:balanced-match@4.0.2" - ], - "bare-events@2.8.0": [ - "npm:bare-events" - ], - "bare-fs@4.4.11": [ - "npm:bare-fs" - ], - "bare-os@3.6.2": [ - "npm:bare-os" - ], - "bare-path@3.0.0": [ - "npm:bare-path" - ], - "bare-stream@2.7.0(bare-events@2.8.0)": [ - "npm:bare-stream" - ], - "bare-url@2.3.0": [ - "npm:bare-url" - ], - "base64-js@1.5.1": [ - "npm:base64-js" - ], - "baseline-browser-mapping@2.9.7": [ - "npm:baseline-browser-mapping" - ], - "basic-auth@2.0.1": [ - "npm:basic-auth" - ], - "basic-ftp@5.0.5": [ - "npm:basic-ftp" - ], - "better-sqlite3@12.8.0": [ - "npm:better-sqlite3" - ], - "bindings@1.5.0": [ - "npm:bindings" - ], - "birpc@4.0.0": [ - "npm:birpc" - ], - "bl@4.1.0": [ - "npm:bl" - ], - "blake3-wasm@2.1.5": [ - "npm:blake3-wasm" - ], - "body-parser@2.2.1": [ - "npm:body-parser" - ], - "boolbase@1.0.0": [ - "npm:boolbase" - ], - "brace-expansion@1.1.12": [ - "npm:brace-expansion@1.1.12" - ], - "brace-expansion@2.0.2": [ - "npm:brace-expansion@2.0.2" - ], - "brace-expansion@5.0.2": [ - "npm:brace-expansion" - ], - "braces@3.0.3": [ - "npm:braces" - ], - "browserless@10.12.5(puppeteer@24.40.0(typescript@6.0.2))": [ - "npm:browserless" - ], - "browserslist@4.28.1": [ - "npm:browserslist" - ], - "buffer-crc32@0.2.13": [ - "npm:buffer-crc32" - ], - "buffer-from@1.1.2": [ - "npm:buffer-from" - ], - "buffer@5.7.1": [ - "npm:buffer" - ], - "bumpp@11.0.1": [ - "npm:bumpp" - ], - "bytes@3.1.2": [ - "npm:bytes" - ], - "c12@3.1.0": [ - "npm:c12" - ], - "cac@6.7.14": [ - "npm:cac@6.7.14" - ], - "cac@7.0.0": [ - "npm:cac" - ], - "cacache@19.0.1": [ - "npm:cacache" - ], - "cacheable-lookup@5.0.4": [ - "npm:cacheable-lookup" - ], - "cacheable-request@7.0.4": [ - "npm:cacheable-request" - ], - "call-bind-apply-helpers@1.0.2": [ - "npm:call-bind-apply-helpers" - ], - "call-bind@1.0.8": [ - "npm:call-bind" - ], - "call-bound@1.0.4": [ - "npm:call-bound" - ], - "callsites@3.1.0": [ - "npm:callsites" - ], - "camelcase-css@2.0.1": [ - "npm:camelcase-css" - ], - "caniuse-api@3.0.0": [ - "npm:caniuse-api" - ], - "caniuse-lite@1.0.30001775": [ - "npm:caniuse-lite" - ], - "cdk@2.1112.0": [ - "npm:cdk" - ], - "chai@6.2.2": [ - "npm:chai" - ], - "chalk@4.1.2": [ - "npm:chalk" - ], - "character-entities@2.0.2": [ - "npm:character-entities" - ], - "chardet@2.1.1": [ - "npm:chardet" - ], - "chevrotain@10.5.0": [ - "npm:chevrotain" - ], - "chokidar@4.0.3": [ - "npm:chokidar" - ], - "chownr@1.1.4": [ - "npm:chownr" - ], - "chownr@3.0.0": [ - "npm:chownr@3.0.0" - ], - "chromium-bidi@14.0.0(devtools-protocol@0.0.1581282)": [ - "npm:chromium-bidi" - ], - "citty@0.1.6": [ - "npm:citty@0.1.6" - ], - "citty@0.2.1": [ - "npm:citty" - ], - "class-variance-authority@0.7.1": [ - "npm:class-variance-authority" - ], - "cli-cursor@3.1.0": [ - "npm:cli-cursor" - ], - "cli-spinners@2.6.1": [ - "npm:cli-spinners" - ], - "cli-width@4.1.0": [ - "npm:cli-width" - ], - "cliui@8.0.1": [ - "npm:cliui" - ], - "clone-response@1.0.3": [ - "npm:clone-response" - ], - "clone@1.0.4": [ - "npm:clone" - ], - "clsx@2.1.1": [ - "npm:clsx" - ], - "code-block-writer@13.0.3": [ - "npm:code-block-writer" - ], - "color-convert@2.0.1": [ - "npm:color-convert" - ], - "color-name@1.1.4": [ - "npm:color-name" - ], - "color-string@1.9.1": [ - "npm:color-string" - ], - "color@4.2.3": [ - "npm:color" - ], - "colord@2.9.3": [ - "npm:colord" - ], - "colorette@2.0.20": [ - "npm:colorette" - ], - "combined-stream@1.0.8": [ - "npm:combined-stream" - ], - "commander@7.2.0": [ - "npm:commander" - ], - "component-register@0.8.8": [ - "npm:component-register" - ], - "concat-map@0.0.1": [ - "npm:concat-map" - ], - "confbox@0.1.8": [ - "npm:confbox@0.1.8" - ], - "confbox@0.2.2": [ - "npm:confbox" - ], - "consola@3.4.2": [ - "npm:consola" - ], - "constructs@10.5.1": [ - "npm:constructs" - ], - "content-disposition@1.0.1": [ - "npm:content-disposition" - ], - "content-type@1.0.5": [ - "npm:content-type" - ], - "convert-route@0.1.2": [ - "npm:convert-route" - ], - "convert-source-map@2.0.0": [ - "npm:convert-source-map" - ], - "cookie-es@1.2.2": [ - "npm:cookie-es" - ], - "cookie-signature@1.2.2": [ - "npm:cookie-signature" - ], - "cookie@0.7.2": [ - "npm:cookie" - ], - "cookie@1.1.1": [ - "npm:cookie@1.1.1" - ], - "corser@2.0.1": [ - "npm:corser" - ], - "cosmiconfig@9.0.0(typescript@6.0.2)": [ - "npm:cosmiconfig" - ], - "cross-spawn@7.0.6": [ - "npm:cross-spawn" - ], - "crossws@0.3.5": [ - "npm:crossws" - ], - "css-declaration-sorter@6.4.1(postcss@8.5.8)": [ - "npm:css-declaration-sorter" - ], - "css-select@4.3.0": [ - "npm:css-select" - ], - "css-tree@1.1.3": [ - "npm:css-tree" - ], - "css-what@6.2.2": [ - "npm:css-what" - ], - "cssesc@3.0.0": [ - "npm:cssesc" - ], - "cssnano-preset-default@5.2.14(postcss@8.5.8)": [ - "npm:cssnano-preset-default" - ], - "cssnano-utils@3.1.0(postcss@8.5.8)": [ - "npm:cssnano-utils" - ], - "csso@4.2.0": [ - "npm:csso" - ], - "csstype@3.2.3": [ - "npm:csstype" - ], - "daisyui@5.5.19": [ - "npm:daisyui" - ], - "data-uri-to-buffer@4.0.1": [ - "npm:data-uri-to-buffer" - ], - "data-uri-to-buffer@6.0.2": [ - "npm:data-uri-to-buffer@6.0.2" - ], - "data-view-buffer@1.0.2": [ - "npm:data-view-buffer" - ], - "data-view-byte-length@1.0.2": [ - "npm:data-view-byte-length" - ], - "data-view-byte-offset@1.0.1": [ - "npm:data-view-byte-offset" - ], - "debug-logfmt@1.4.8": [ - "npm:debug-logfmt" - ], - "debug@4.4.3": [ - "npm:debug" - ], - "decode-named-character-reference@1.2.0": [ - "npm:decode-named-character-reference" - ], - "decompress-response@6.0.0": [ - "npm:decompress-response" - ], - "deep-extend@0.6.0": [ - "npm:deep-extend" - ], - "deep-is@0.1.4": [ - "npm:deep-is" - ], - "deepmerge-ts@7.1.5": [ - "npm:deepmerge-ts" - ], - "defaults@1.0.4": [ - "npm:defaults" - ], - "defer-to-connect@2.0.1": [ - "npm:defer-to-connect" - ], - "define-data-property@1.1.4": [ - "npm:define-data-property" - ], - "define-lazy-prop@2.0.0": [ - "npm:define-lazy-prop" - ], - "define-properties@1.2.1": [ - "npm:define-properties" - ], - "defu@6.1.4": [ - "npm:defu" - ], - "degenerator@5.0.1": [ - "npm:degenerator" - ], - "delayed-stream@1.0.0": [ - "npm:delayed-stream" - ], - "denque@2.1.0": [ - "npm:denque" - ], - "depd@2.0.0": [ - "npm:depd" - ], - "dequal@2.0.3": [ - "npm:dequal" - ], - "destr@2.0.5": [ - "npm:destr" - ], - "detect-libc@2.1.2": [ - "npm:detect-libc" - ], - "detect-node-es@1.1.0": [ - "npm:detect-node-es" - ], - "devlop@1.1.0": [ - "npm:devlop" - ], - "devtools-protocol@0.0.1581282": [ - "npm:devtools-protocol" - ], - "didyoumean3@1.2.5": [ - "npm:didyoumean3" - ], - "doctrine@2.1.0": [ - "npm:doctrine" - ], - "dom-serializer@1.4.1": [ - "npm:dom-serializer" - ], - "domelementtype@2.3.0": [ - "npm:domelementtype" - ], - "domhandler@4.3.1": [ - "npm:domhandler" - ], - "domutils@2.8.0": [ - "npm:domutils" - ], - "dotenv-expand@11.0.7": [ - "npm:dotenv-expand" - ], - "dotenv@16.4.7": [ - "npm:dotenv@16.4.7" - ], - "dotenv@16.6.1": [ - "npm:dotenv@16.6.1" - ], - "dotenv@17.3.1": [ - "npm:dotenv" - ], - "drizzle-kit@0.31.10": [ - "npm:drizzle-kit" - ], - "drizzle-orm@0.45.1(@cloudflare/workers-types@4.20260317.1)(@electric-sql/pglite@0.3.15)(@prisma/client@7.5.0(prisma@7.5.0(@types/react@19.2.14)(better-sqlite3@12.8.0)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)(typescript@6.0.2))(typescript@6.0.2))(@types/better-sqlite3@7.6.13)(better-sqlite3@12.8.0)(kysely@0.28.14)(mysql2@3.15.3)(postgres@3.4.7)(prisma@7.5.0(@types/react@19.2.14)(better-sqlite3@12.8.0)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)(typescript@6.0.2))": [ - "npm:drizzle-orm" - ], - "dts-resolver@2.1.3(oxc-resolver@11.19.1)": [ - "npm:dts-resolver" - ], - "dunder-proto@1.0.1": [ - "npm:dunder-proto" - ], - "eastasianwidth@0.2.0": [ - "npm:eastasianwidth" - ], - "ee-first@1.1.1": [ - "npm:ee-first" - ], - "effect@3.18.4": [ - "npm:effect" - ], - "ejs@3.1.10": [ - "npm:ejs" - ], - "electron-to-chromium@1.5.267": [ - "npm:electron-to-chromium" - ], - "emoji-regex@8.0.0": [ - "npm:emoji-regex" - ], - "emoji-regex@9.2.2": [ - "npm:emoji-regex@9.2.2" - ], - "empathic@2.0.0": [ - "npm:empathic" - ], - "encodeurl@2.0.0": [ - "npm:encodeurl" - ], - "encoding@0.1.13": [ - "npm:encoding" - ], - "end-of-stream@1.4.5": [ - "npm:end-of-stream" - ], - "enhanced-resolve@5.19.0": [ - "npm:enhanced-resolve" - ], - "enquirer@2.3.6": [ - "npm:enquirer" - ], - "ensure-error@3.0.1": [ - "npm:ensure-error" - ], - "entities@2.2.0": [ - "npm:entities@2.2.0" - ], - "entities@6.0.1": [ - "npm:entities@6.0.1" - ], - "entities@7.0.1": [ - "npm:entities" - ], - "env-paths@2.2.1": [ - "npm:env-paths" - ], - "err-code@2.0.3": [ - "npm:err-code" - ], - "error-ex@1.3.4": [ - "npm:error-ex" - ], - "error-stack-parser-es@1.0.5": [ - "npm:error-stack-parser-es" - ], - "es-abstract@1.24.0": [ - "npm:es-abstract" - ], - "es-define-property@1.0.1": [ - "npm:es-define-property" - ], - "es-errors@1.3.0": [ - "npm:es-errors" - ], - "es-iterator-helpers@1.2.1": [ - "npm:es-iterator-helpers" - ], - "es-module-lexer@1.7.0": [ - "npm:es-module-lexer" - ], - "es-module-lexer@2.0.0": [ - "npm:es-module-lexer@2.0.0" - ], - "es-object-atoms@1.1.1": [ - "npm:es-object-atoms" - ], - "es-set-tostringtag@2.1.0": [ - "npm:es-set-tostringtag" - ], - "es-shim-unscopables@1.1.0": [ - "npm:es-shim-unscopables" - ], - "es-to-primitive@1.3.0": [ - "npm:es-to-primitive" - ], - "esbuild@0.18.20": [ - "npm:esbuild@0.18.20" - ], - "esbuild@0.25.12": [ - "npm:esbuild@0.25.12" - ], - "esbuild@0.27.3": [ - "npm:esbuild@0.27.3" - ], - "esbuild@0.27.4": [ - "npm:esbuild" - ], - "escalade@3.2.0": [ - "npm:escalade" - ], - "escape-html@1.0.3": [ - "npm:escape-html" - ], - "escape-string-regexp@1.0.5": [ - "npm:escape-string-regexp@1.0.5" - ], - "escape-string-regexp@4.0.0": [ - "npm:escape-string-regexp" - ], - "escodegen@2.1.0": [ - "npm:escodegen" - ], - "eslint-config-prettier@10.1.8(eslint@9.39.4(jiti@2.6.1))": [ - "npm:eslint-config-prettier" - ], - "eslint-plugin-prettier@5.5.5(@types/eslint@9.6.1)(eslint-config-prettier@10.1.8(eslint@9.39.4(jiti@2.6.1)))(eslint@9.39.4(jiti@2.6.1))(prettier@3.8.1)": [ - "npm:eslint-plugin-prettier" - ], - "eslint-plugin-react@7.37.5(eslint@9.39.4(jiti@2.6.1))": [ - "npm:eslint-plugin-react" - ], - "eslint-plugin-solid@0.14.5(eslint@9.39.4(jiti@2.6.1))(typescript@6.0.2)": [ - "npm:eslint-plugin-solid" - ], - "eslint-plugin-vue@10.8.0(@typescript-eslint/parser@8.57.1(eslint@9.39.4(jiti@2.6.1))(typescript@6.0.2))(eslint@9.39.4(jiti@2.6.1))(vue-eslint-parser@10.4.0(eslint@9.39.4(jiti@2.6.1)))": [ - "npm:eslint-plugin-vue" - ], - "eslint-rule-composer@0.3.0": [ - "npm:eslint-rule-composer" - ], - "eslint-scope@8.4.0": [ - "npm:eslint-scope" - ], - "eslint-visitor-keys@3.4.3": [ - "npm:eslint-visitor-keys@3.4.3" - ], - "eslint-visitor-keys@4.2.1": [ - "npm:eslint-visitor-keys" - ], - "eslint-visitor-keys@5.0.1": [ - "npm:eslint-visitor-keys@5.0.1" - ], - "eslint@9.39.4(jiti@2.6.1)": [ - "npm:eslint" - ], - "espree@10.4.0": [ - "npm:espree@10.4.0" - ], - "espree@11.2.0": [ - "npm:espree" - ], - "esprima@4.0.1": [ - "npm:esprima" - ], - "esquery@1.6.0": [ - "npm:esquery" - ], - "esrecurse@4.3.0": [ - "npm:esrecurse" - ], - "estraverse@5.3.0": [ - "npm:estraverse" - ], - "estree-walker@2.0.2": [ - "npm:estree-walker@2.0.2" - ], - "estree-walker@3.0.3": [ - "npm:estree-walker" - ], - "esutils@2.0.3": [ - "npm:esutils" - ], - "etag@1.8.1": [ - "npm:etag" - ], - "eventemitter3@4.0.7": [ - "npm:eventemitter3" - ], - "events-universal@1.0.1": [ - "npm:events-universal" - ], - "execa@9.6.1": [ - "npm:execa" - ], - "exit-hook@2.2.1": [ - "npm:exit-hook" - ], - "expand-template@2.0.3": [ - "npm:expand-template" - ], - "expect-type@1.3.0": [ - "npm:expect-type" - ], - "exponential-backoff@3.1.3": [ - "npm:exponential-backoff" - ], - "express@5.2.1": [ - "npm:express" - ], - "exsolve@1.0.8": [ - "npm:exsolve" - ], - "extract-zip@2.0.1": [ - "npm:extract-zip" - ], - "fast-check@3.23.2": [ - "npm:fast-check" - ], - "fast-decode-uri-component@1.0.1": [ - "npm:fast-decode-uri-component" - ], - "fast-deep-equal@3.1.3": [ - "npm:fast-deep-equal" - ], - "fast-diff@1.3.0": [ - "npm:fast-diff" - ], - "fast-fifo@1.3.2": [ - "npm:fast-fifo" - ], - "fast-glob@3.3.3": [ - "npm:fast-glob" - ], - "fast-json-stable-stringify@2.1.0": [ - "npm:fast-json-stable-stringify" - ], - "fast-json-stringify@6.3.0": [ - "npm:fast-json-stringify" - ], - "fast-levenshtein@2.0.6": [ - "npm:fast-levenshtein" - ], - "fast-querystring@1.1.2": [ - "npm:fast-querystring" - ], - "fast-string-truncated-width@3.0.3": [ - "npm:fast-string-truncated-width" - ], - "fast-string-width@3.0.2": [ - "npm:fast-string-width" - ], - "fast-uri@3.1.0": [ - "npm:fast-uri" - ], - "fast-wrap-ansi@0.2.0": [ - "npm:fast-wrap-ansi" - ], - "fastify-plugin@5.1.0": [ - "npm:fastify-plugin" - ], - "fastify-raw-body@5.0.0": [ - "npm:fastify-raw-body" - ], - "fastify@5.8.2": [ - "npm:fastify" - ], - "fastq@1.20.1": [ - "npm:fastq" - ], - "fd-package-json@2.0.0": [ - "npm:fd-package-json" - ], - "fd-slicer@1.1.0": [ - "npm:fd-slicer" - ], - "fdir@6.5.0(picomatch@4.0.3)": [ - "npm:fdir" - ], - "fetch-blob@3.2.0": [ - "npm:fetch-blob" - ], - "figures@3.2.0": [ - "npm:figures@3.2.0" - ], - "figures@6.1.0": [ - "npm:figures" - ], - "file-entry-cache@8.0.0": [ - "npm:file-entry-cache" - ], - "file-uri-to-path@1.0.0": [ - "npm:file-uri-to-path" - ], - "filelist@1.0.6": [ - "npm:filelist" - ], - "fill-range@7.1.1": [ - "npm:fill-range" - ], - "finalhandler@2.1.1": [ - "npm:finalhandler" - ], - "find-babel-config@2.1.2": [ - "npm:find-babel-config" - ], - "find-my-way@9.5.0": [ - "npm:find-my-way" - ], - "find-up@3.0.0": [ - "npm:find-up@3.0.0" - ], - "find-up@5.0.0": [ - "npm:find-up" - ], - "flat-cache@4.0.1": [ - "npm:flat-cache" - ], - "flat@5.0.2": [ - "npm:flat" - ], - "flatted@3.3.3": [ - "npm:flatted" - ], - "follow-redirects@1.15.11": [ - "npm:follow-redirects" - ], - "for-each@0.3.5": [ - "npm:for-each" - ], - "foreground-child@3.3.1": [ - "npm:foreground-child" - ], - "form-data@4.0.5": [ - "npm:form-data" - ], - "formatly@0.3.0": [ - "npm:formatly" - ], - "formdata-polyfill@4.0.10": [ - "npm:formdata-polyfill" - ], - "forwarded@0.2.0": [ - "npm:forwarded" - ], - "fraction.js@5.3.4": [ - "npm:fraction.js" - ], - "fresh@2.0.0": [ - "npm:fresh" - ], - "front-matter@4.0.2": [ - "npm:front-matter" - ], - "fs-constants@1.0.0": [ - "npm:fs-constants" - ], - "fs-minipass@3.0.3": [ - "npm:fs-minipass" - ], - "fs.realpath@1.0.0": [ - "npm:fs.realpath" - ], - "fsevents@2.3.3": [ - "npm:fsevents" - ], - "function-bind@1.1.2": [ - "npm:function-bind" - ], - "function.prototype.name@1.1.8": [ - "npm:function.prototype.name" - ], - "functions-have-names@1.2.3": [ - "npm:functions-have-names" - ], - "generate-function@2.3.1": [ - "npm:generate-function" - ], - "generator-function@2.0.1": [ - "npm:generator-function" - ], - "gensync@1.0.0-beta.2": [ - "npm:gensync" - ], - "get-caller-file@2.0.5": [ - "npm:get-caller-file" - ], - "get-intrinsic@1.3.0": [ - "npm:get-intrinsic" - ], - "get-nonce@1.0.1": [ - "npm:get-nonce" - ], - "get-port-please@3.2.0": [ - "npm:get-port-please" - ], - "get-port@7.2.0": [ - "npm:get-port" - ], - "get-proto@1.0.1": [ - "npm:get-proto" - ], - "get-stream@5.2.0": [ - "npm:get-stream@5.2.0" - ], - "get-stream@9.0.1": [ - "npm:get-stream" - ], - "get-symbol-description@1.1.0": [ - "npm:get-symbol-description" - ], - "get-tsconfig@4.13.7": [ - "npm:get-tsconfig" - ], - "get-uri@6.0.5": [ - "npm:get-uri" - ], - "giget@2.0.0": [ - "npm:giget" - ], - "github-from-package@0.0.0": [ - "npm:github-from-package" - ], - "github-slugger@2.0.0": [ - "npm:github-slugger" - ], - "glob-parent@5.1.2": [ - "npm:glob-parent@5.1.2" - ], - "glob-parent@6.0.2": [ - "npm:glob-parent" - ], - "glob-to-regexp@0.4.1": [ - "npm:glob-to-regexp" - ], - "glob@10.5.0": [ - "npm:glob@10.5.0" - ], - "glob@13.0.6": [ - "npm:glob" - ], - "glob@9.3.5": [ - "npm:glob@9.3.5" - ], - "globals@14.0.0": [ - "npm:globals@14.0.0" - ], - "globals@17.4.0": [ - "npm:globals" - ], - "globalthis@1.0.4": [ - "npm:globalthis" - ], - "globby@16.1.1": [ - "npm:globby" - ], - "gopd@1.2.0": [ - "npm:gopd" - ], - "got@11.8.6": [ - "npm:got" - ], - "graceful-fs@4.2.11": [ - "npm:graceful-fs" - ], - "gradient-parser@1.1.1": [ - "npm:gradient-parser" - ], - "grammex@3.1.12": [ - "npm:grammex" - ], - "graphmatch@1.1.0": [ - "npm:graphmatch" - ], - "h3@1.15.10": [ - "npm:h3" - ], - "has-bigints@1.1.0": [ - "npm:has-bigints" - ], - "has-flag@4.0.0": [ - "npm:has-flag" - ], - "has-property-descriptors@1.0.2": [ - "npm:has-property-descriptors" - ], - "has-proto@1.2.0": [ - "npm:has-proto" - ], - "has-symbols@1.1.0": [ - "npm:has-symbols" - ], - "has-tostringtag@1.0.2": [ - "npm:has-tostringtag" - ], - "hasown@2.0.2": [ - "npm:hasown" - ], - "he@1.2.0": [ - "npm:he" - ], - "hey-listen@1.0.8": [ - "npm:hey-listen" - ], - "hono@4.11.4": [ - "npm:hono@4.11.4" - ], - "hono@4.12.8": [ - "npm:hono" - ], - "hookable@6.1.0": [ - "npm:hookable" - ], - "html-encoding-sniffer@3.0.0": [ - "npm:html-encoding-sniffer" - ], - "html-entities@2.3.3": [ - "npm:html-entities" - ], - "html-tags@3.3.1": [ - "npm:html-tags" - ], - "http-cache-semantics@4.2.0": [ - "npm:http-cache-semantics" - ], - "http-errors@2.0.1": [ - "npm:http-errors" - ], - "http-proxy-agent@7.0.2": [ - "npm:http-proxy-agent" - ], - "http-proxy@1.18.1": [ - "npm:http-proxy" - ], - "http-server@14.1.1": [ - "npm:http-server" - ], - "http-status-codes@2.3.0": [ - "npm:http-status-codes" - ], - "http2-wrapper@1.0.3": [ - "npm:http2-wrapper" - ], - "https-proxy-agent@5.0.1": [ - "npm:https-proxy-agent" - ], - "https-proxy-agent@7.0.6": [ - "npm:https-proxy-agent@7.0.6" - ], - "human-signals@8.0.1": [ - "npm:human-signals" - ], - "humanize-list@1.0.1": [ - "npm:humanize-list" - ], - "iconv-lite@0.6.3": [ - "npm:iconv-lite" - ], - "iconv-lite@0.7.2": [ - "npm:iconv-lite@0.7.2" - ], - "ieee754@1.2.1": [ - "npm:ieee754" - ], - "ignore@5.3.2": [ - "npm:ignore" - ], - "ignore@7.0.5": [ - "npm:ignore@7.0.5" - ], - "import-fresh@3.3.1": [ - "npm:import-fresh" - ], - "import-without-cache@0.2.5": [ - "npm:import-without-cache" - ], - "imurmurhash@0.1.4": [ - "npm:imurmurhash" - ], - "inherits@2.0.4": [ - "npm:inherits" - ], - "ini@1.3.8": [ - "npm:ini" - ], - "inline-style-parser@0.2.4": [ - "npm:inline-style-parser" - ], - "install-artifact-from-github@1.4.0": [ - "npm:install-artifact-from-github" - ], - "internal-slot@1.1.0": [ - "npm:internal-slot" - ], - "ip-address@10.0.1": [ - "npm:ip-address" - ], - "ip-regex@4.3.0": [ - "npm:ip-regex" - ], - "ipaddr.js@1.9.1": [ - "npm:ipaddr.js@1.9.1" - ], - "ipaddr.js@2.3.0": [ - "npm:ipaddr.js" - ], - "iron-webcrypto@1.2.1": [ - "npm:iron-webcrypto" - ], - "is-array-buffer@3.0.5": [ - "npm:is-array-buffer" - ], - "is-arrayish@0.2.1": [ - "npm:is-arrayish" - ], - "is-arrayish@0.3.4": [ - "npm:is-arrayish@0.3.4" - ], - "is-async-function@2.1.1": [ - "npm:is-async-function" - ], - "is-bigint@1.1.0": [ - "npm:is-bigint" - ], - "is-boolean-object@1.2.2": [ - "npm:is-boolean-object" - ], - "is-callable@1.2.7": [ - "npm:is-callable" - ], - "is-core-module@2.16.1": [ - "npm:is-core-module" - ], - "is-data-view@1.0.2": [ - "npm:is-data-view" - ], - "is-date-object@1.1.0": [ - "npm:is-date-object" - ], - "is-docker@2.2.1": [ - "npm:is-docker" - ], - "is-extglob@2.1.1": [ - "npm:is-extglob" - ], - "is-finalizationregistry@1.1.1": [ - "npm:is-finalizationregistry" - ], - "is-fullwidth-code-point@3.0.0": [ - "npm:is-fullwidth-code-point" - ], - "is-generator-function@1.1.2": [ - "npm:is-generator-function" - ], - "is-glob@4.0.3": [ - "npm:is-glob" - ], - "is-html-content@1.0.0": [ - "npm:is-html-content" - ], - "is-html@2.0.0": [ - "npm:is-html" - ], - "is-interactive@1.0.0": [ - "npm:is-interactive" - ], - "is-map@2.0.3": [ - "npm:is-map" - ], - "is-negative-zero@2.0.3": [ - "npm:is-negative-zero" - ], - "is-number-object@1.1.1": [ - "npm:is-number-object" - ], - "is-number@7.0.0": [ - "npm:is-number" - ], - "is-path-inside@4.0.0": [ - "npm:is-path-inside" - ], - "is-plain-obj@4.1.0": [ - "npm:is-plain-obj" - ], - "is-promise@4.0.0": [ - "npm:is-promise" - ], - "is-property@1.0.2": [ - "npm:is-property" - ], - "is-regex@1.2.1": [ - "npm:is-regex" - ], - "is-set@2.0.3": [ - "npm:is-set" - ], - "is-shared-array-buffer@1.0.4": [ - "npm:is-shared-array-buffer" - ], - "is-stream@4.0.1": [ - "npm:is-stream" - ], - "is-string@1.1.1": [ - "npm:is-string" - ], - "is-symbol@1.1.1": [ - "npm:is-symbol" - ], - "is-typed-array@1.1.15": [ - "npm:is-typed-array" - ], - "is-unicode-supported@0.1.0": [ - "npm:is-unicode-supported@0.1.0" - ], - "is-unicode-supported@2.1.0": [ - "npm:is-unicode-supported" - ], - "is-url-http@2.3.13": [ - "npm:is-url-http" - ], - "is-url-superb@4.0.0": [ - "npm:is-url-superb" - ], - "is-weakmap@2.0.2": [ - "npm:is-weakmap" - ], - "is-weakref@1.1.1": [ - "npm:is-weakref" - ], - "is-weakset@2.0.4": [ - "npm:is-weakset" - ], - "is-what@4.1.16": [ - "npm:is-what" - ], - "is-wsl@2.2.0": [ - "npm:is-wsl" - ], - "isarray@2.0.5": [ - "npm:isarray" - ], - "isbot-fast@1.2.0": [ - "npm:isbot-fast" - ], - "isexe@2.0.0": [ - "npm:isexe@2.0.0" - ], - "isexe@3.1.1": [ - "npm:isexe@3.1.1" - ], - "isexe@4.0.0": [ - "npm:isexe" - ], - "iterator.prototype@1.1.5": [ - "npm:iterator.prototype" - ], - "itty-router@5.0.22": [ - "npm:itty-router" - ], - "jackspeak@3.4.3": [ - "npm:jackspeak@3.4.3" - ], - "jackspeak@4.2.3": [ - "npm:jackspeak" - ], - "jake@10.9.4": [ - "npm:jake" - ], - "jest-diff@30.3.0": [ - "npm:jest-diff" - ], - "jiti@2.6.1": [ - "npm:jiti" - ], - "jju@1.4.0": [ - "npm:jju" - ], - "jose@6.1.0": [ - "npm:jose" - ], - "js-tokens@4.0.0": [ - "npm:js-tokens" - ], - "js-yaml@3.14.2": [ - "npm:js-yaml@3.14.2" - ], - "js-yaml@4.1.1": [ - "npm:js-yaml" - ], - "jsesc@3.1.0": [ - "npm:jsesc" - ], - "json-buffer@3.0.1": [ - "npm:json-buffer" - ], - "json-loose@1.2.4": [ - "npm:json-loose" - ], - "json-parse-even-better-errors@2.3.1": [ - "npm:json-parse-even-better-errors@2.3.1" - ], - "json-parse-even-better-errors@4.0.0": [ - "npm:json-parse-even-better-errors" - ], - "json-schema-ref-resolver@3.0.0": [ - "npm:json-schema-ref-resolver" - ], - "json-schema-traverse@0.4.1": [ - "npm:json-schema-traverse" - ], - "json-schema-traverse@1.0.0": [ - "npm:json-schema-traverse@1.0.0" - ], - "json-stable-stringify-without-jsonify@1.0.1": [ - "npm:json-stable-stringify-without-jsonify" - ], - "json5@2.2.3": [ - "npm:json5" - ], - "jsonc-parser@3.2.0": [ - "npm:jsonc-parser@3.2.0" - ], - "jsonc-parser@3.3.1": [ - "npm:jsonc-parser" - ], - "jsx-ast-utils@3.3.5": [ - "npm:jsx-ast-utils" - ], - "kebab-case@1.0.2": [ - "npm:kebab-case" - ], - "keyv@4.5.4": [ - "npm:keyv" - ], - "kill-process-group@1.0.13": [ - "npm:kill-process-group" - ], - "kleur@4.1.5": [ - "npm:kleur" - ], - "knip@5.88.1(@types/node@20.19.37)(typescript@6.0.2)": [ - "npm:knip" - ], - "known-css-properties@0.30.0": [ - "npm:known-css-properties" - ], - "kysely-d1@0.4.0(kysely@0.28.14)": [ - "npm:kysely-d1" - ], - "kysely@0.28.14": [ - "npm:kysely" - ], - "levn@0.4.1": [ - "npm:levn" - ], - "light-my-request@6.6.0": [ - "npm:light-my-request" - ], - "lightningcss-android-arm64@1.32.0": [ - "npm:lightningcss-android-arm64" - ], - "lightningcss-darwin-arm64@1.32.0": [ - "npm:lightningcss-darwin-arm64" - ], - "lightningcss-darwin-x64@1.32.0": [ - "npm:lightningcss-darwin-x64" - ], - "lightningcss-freebsd-x64@1.32.0": [ - "npm:lightningcss-freebsd-x64" - ], - "lightningcss-linux-arm-gnueabihf@1.32.0": [ - "npm:lightningcss-linux-arm-gnueabihf" - ], - "lightningcss-linux-arm64-gnu@1.32.0": [ - "npm:lightningcss-linux-arm64-gnu" - ], - "lightningcss-linux-arm64-musl@1.32.0": [ - "npm:lightningcss-linux-arm64-musl" - ], - "lightningcss-linux-x64-gnu@1.32.0": [ - "npm:lightningcss-linux-x64-gnu" - ], - "lightningcss-linux-x64-musl@1.32.0": [ - "npm:lightningcss-linux-x64-musl" - ], - "lightningcss-win32-arm64-msvc@1.32.0": [ - "npm:lightningcss-win32-arm64-msvc" - ], - "lightningcss-win32-x64-msvc@1.32.0": [ - "npm:lightningcss-win32-x64-msvc" - ], - "lightningcss@1.32.0": [ - "npm:lightningcss" - ], - "lilconfig@2.1.0": [ - "npm:lilconfig" - ], - "lines-and-columns@1.2.4": [ - "npm:lines-and-columns@1.2.4" - ], - "lines-and-columns@2.0.3": [ - "npm:lines-and-columns" - ], - "locate-path@3.0.0": [ - "npm:locate-path@3.0.0" - ], - "locate-path@6.0.0": [ - "npm:locate-path" - ], - "lodash.memoize@4.1.2": [ - "npm:lodash.memoize" - ], - "lodash.merge@4.6.2": [ - "npm:lodash.merge" - ], - "lodash.uniq@4.5.0": [ - "npm:lodash.uniq" - ], - "lodash@4.17.21": [ - "npm:lodash@4.17.21" - ], - "lodash@4.17.23": [ - "npm:lodash" - ], - "log-symbols@4.1.0": [ - "npm:log-symbols" - ], - "long@5.3.2": [ - "npm:long" - ], - "longest-streak@3.1.0": [ - "npm:longest-streak" - ], - "loose-envify@1.4.0": [ - "npm:loose-envify" - ], - "lowercase-keys@2.0.0": [ - "npm:lowercase-keys" - ], - "lru-cache@10.4.3": [ - "npm:lru-cache@10.4.3" - ], - "lru-cache@11.2.2": [ - "npm:lru-cache@11.2.2" - ], - "lru-cache@5.1.1": [ - "npm:lru-cache" - ], - "lru-cache@7.18.3": [ - "npm:lru-cache@7.18.3" - ], - "lru.min@1.1.3": [ - "npm:lru.min" - ], - "lucide-react@0.577.0(react@19.2.4)": [ - "npm:lucide-react" - ], - "magic-regexp@0.10.0": [ - "npm:magic-regexp" - ], - "magic-string@0.30.21": [ - "npm:magic-string" - ], - "magicast@0.5.2": [ - "npm:magicast" - ], - "make-fetch-happen@14.0.3": [ - "npm:make-fetch-happen" - ], - "map-values-deep@1.0.2": [ - "npm:map-values-deep" - ], - "math-intrinsics@1.1.0": [ - "npm:math-intrinsics" - ], - "mdast-builder@1.1.1": [ - "npm:mdast-builder" - ], - "mdast-util-from-markdown@2.0.3": [ - "npm:mdast-util-from-markdown" - ], - "mdast-util-phrasing@4.1.0": [ - "npm:mdast-util-phrasing" - ], - "mdast-util-to-markdown@2.1.2": [ - "npm:mdast-util-to-markdown" - ], - "mdast-util-to-string@4.0.0": [ - "npm:mdast-util-to-string" - ], - "mdast-util-toc@7.1.0": [ - "npm:mdast-util-toc" - ], - "mdn-data@2.0.14": [ - "npm:mdn-data" - ], - "media-typer@1.1.0": [ - "npm:media-typer" - ], - "memoize-one@6.0.0": [ - "npm:memoize-one" - ], - "memorystream@0.3.1": [ - "npm:memorystream" - ], - "merge-anything@5.1.7": [ - "npm:merge-anything" - ], - "merge-descriptors@2.0.0": [ - "npm:merge-descriptors" - ], - "merge2@1.4.1": [ - "npm:merge2" - ], - "micromark-core-commonmark@2.0.3": [ - "npm:micromark-core-commonmark" - ], - "micromark-factory-destination@2.0.1": [ - "npm:micromark-factory-destination" - ], - "micromark-factory-label@2.0.1": [ - "npm:micromark-factory-label" - ], - "micromark-factory-space@2.0.1": [ - "npm:micromark-factory-space" - ], - "micromark-factory-title@2.0.1": [ - "npm:micromark-factory-title" - ], - "micromark-factory-whitespace@2.0.1": [ - "npm:micromark-factory-whitespace" - ], - "micromark-util-character@2.1.1": [ - "npm:micromark-util-character" - ], - "micromark-util-chunked@2.0.1": [ - "npm:micromark-util-chunked" - ], - "micromark-util-classify-character@2.0.1": [ - "npm:micromark-util-classify-character" - ], - "micromark-util-combine-extensions@2.0.1": [ - "npm:micromark-util-combine-extensions" - ], - "micromark-util-decode-numeric-character-reference@2.0.2": [ - "npm:micromark-util-decode-numeric-character-reference" - ], - "micromark-util-decode-string@2.0.1": [ - "npm:micromark-util-decode-string" - ], - "micromark-util-encode@2.0.1": [ - "npm:micromark-util-encode" - ], - "micromark-util-html-tag-name@2.0.1": [ - "npm:micromark-util-html-tag-name" - ], - "micromark-util-normalize-identifier@2.0.1": [ - "npm:micromark-util-normalize-identifier" - ], - "micromark-util-resolve-all@2.0.1": [ - "npm:micromark-util-resolve-all" - ], - "micromark-util-sanitize-uri@2.0.1": [ - "npm:micromark-util-sanitize-uri" - ], - "micromark-util-subtokenize@2.1.0": [ - "npm:micromark-util-subtokenize" - ], - "micromark-util-symbol@2.0.1": [ - "npm:micromark-util-symbol" - ], - "micromark-util-types@2.0.2": [ - "npm:micromark-util-types" - ], - "micromark@4.0.2": [ - "npm:micromark" - ], - "micromatch@4.0.8": [ - "npm:micromatch" - ], - "mime-db@1.52.0": [ - "npm:mime-db@1.52.0" - ], - "mime-db@1.54.0": [ - "npm:mime-db" - ], - "mime-types@2.1.35": [ - "npm:mime-types@2.1.35" - ], - "mime-types@3.0.2": [ - "npm:mime-types" - ], - "mime@1.6.0": [ - "npm:mime" - ], - "mime@3.0.0": [ - "npm:mime@3.0.0" - ], - "mimic-fn@2.1.0": [ - "npm:mimic-fn" - ], - "mimic-response@1.0.1": [ - "npm:mimic-response@1.0.1" - ], - "mimic-response@3.1.0": [ - "npm:mimic-response" - ], - "miniflare@4.20251217.0": [ - "npm:miniflare@4.20251217.0" - ], - "miniflare@4.20260317.1": [ - "npm:miniflare" - ], - "minimatch@10.2.3": [ - "npm:minimatch@10.2.3" - ], - "minimatch@10.2.4": [ - "npm:minimatch@10.2.4" - ], - "minimatch@3.1.5": [ - "npm:minimatch" - ], - "minimatch@5.1.9": [ - "npm:minimatch@5.1.9" - ], - "minimatch@8.0.4": [ - "npm:minimatch@8.0.4" - ], - "minimatch@9.0.5": [ - "npm:minimatch@9.0.5" - ], - "minimist@1.2.8": [ - "npm:minimist" - ], - "minipass-collect@2.0.1": [ - "npm:minipass-collect" - ], - "minipass-fetch@4.0.1": [ - "npm:minipass-fetch" - ], - "minipass-flush@1.0.5": [ - "npm:minipass-flush" - ], - "minipass-pipeline@1.2.4": [ - "npm:minipass-pipeline" - ], - "minipass-sized@1.0.3": [ - "npm:minipass-sized" - ], - "minipass@3.3.6": [ - "npm:minipass@3.3.6" - ], - "minipass@4.2.8": [ - "npm:minipass@4.2.8" - ], - "minipass@7.1.3": [ - "npm:minipass" - ], - "minizlib@3.1.0": [ - "npm:minizlib" - ], - "mitt@3.0.1": [ - "npm:mitt" - ], - "mkdirp-classic@0.5.3": [ - "npm:mkdirp-classic" - ], - "mlly@1.8.0": [ - "npm:mlly" - ], - "moo@0.5.2": [ - "npm:moo" - ], - "mri@1.2.0": [ - "npm:mri" - ], - "mrmime@2.0.1": [ - "npm:mrmime" - ], - "ms@2.1.3": [ - "npm:ms" - ], - "mute-stream@3.0.0": [ - "npm:mute-stream" - ], - "mysql2@3.15.3": [ - "npm:mysql2" - ], - "named-placeholders@1.1.3": [ - "npm:named-placeholders" - ], - "nan@2.23.0": [ - "npm:nan" - ], - "nanoid@3.3.11": [ - "npm:nanoid" - ], - "napi-build-utils@2.0.0": [ - "npm:napi-build-utils" - ], - "natural-compare@1.4.0": [ - "npm:natural-compare" - ], - "negotiator@1.0.0": [ - "npm:negotiator" - ], - "netmask@2.0.2": [ - "npm:netmask" - ], - "node-abi@3.78.0": [ - "npm:node-abi" - ], - "node-domexception@1.0.0": [ - "npm:node-domexception" - ], - "node-fetch-native@1.6.7": [ - "npm:node-fetch-native" - ], - "node-fetch@2.7.0(encoding@0.1.13)": [ - "npm:node-fetch@2.7.0" - ], - "node-fetch@3.3.2": [ - "npm:node-fetch" - ], - "node-gyp-build@4.8.4": [ - "npm:node-gyp-build" - ], - "node-gyp@11.5.0": [ - "npm:node-gyp" - ], - "node-mock-http@1.0.4": [ - "npm:node-mock-http" - ], - "node-releases@2.0.27": [ - "npm:node-releases" - ], - "nopt@8.1.0": [ - "npm:nopt" - ], - "normalize-url@6.1.0": [ - "npm:normalize-url" - ], - "npm-normalize-package-bin@4.0.0": [ - "npm:npm-normalize-package-bin" - ], - "npm-run-all2@8.0.4": [ - "npm:npm-run-all2" - ], - "npm-run-path@4.0.1": [ - "npm:npm-run-path@4.0.1" - ], - "npm-run-path@6.0.0": [ - "npm:npm-run-path" - ], - "nth-check@2.1.1": [ - "npm:nth-check" - ], - "null-prototype-object@1.2.5": [ - "npm:null-prototype-object" - ], - "nx@22.6.1": [ - "npm:nx" - ], - "nypm@0.6.2": [ - "npm:nypm" - ], - "oauth4webapi@3.8.2": [ - "npm:oauth4webapi" - ], - "object-assign@4.1.1": [ - "npm:object-assign" - ], - "object-inspect@1.13.4": [ - "npm:object-inspect" - ], - "object-keys@1.1.1": [ - "npm:object-keys" - ], - "object.assign@4.1.7": [ - "npm:object.assign" - ], - "object.entries@1.1.9": [ - "npm:object.entries" - ], - "object.fromentries@2.0.8": [ - "npm:object.fromentries" - ], - "object.values@1.2.1": [ - "npm:object.values" - ], - "obug@2.1.1": [ - "npm:obug" - ], - "ohash@2.0.11": [ - "npm:ohash" - ], - "on-exit-leak-free@2.1.2": [ - "npm:on-exit-leak-free" - ], - "on-finished@2.4.1": [ - "npm:on-finished" - ], - "once@1.4.0": [ - "npm:once" - ], - "onetime@5.1.2": [ - "npm:onetime" - ], - "open@8.4.2": [ - "npm:open" - ], - "opener@1.5.2": [ - "npm:opener" - ], - "optionator@0.9.4": [ - "npm:optionator" - ], - "ora@5.3.0": [ - "npm:ora" - ], - "own-keys@1.0.1": [ - "npm:own-keys" - ], - "oxc-parser@0.104.0": [ - "npm:oxc-parser" - ], - "oxc-resolver@11.19.1": [ - "npm:oxc-resolver" - ], - "oxc-walker@0.6.0(oxc-parser@0.104.0)": [ - "npm:oxc-walker" - ], - "oxlint-tsgolint@0.17.1": [ - "npm:oxlint-tsgolint" - ], - "oxlint@1.56.0(oxlint-tsgolint@0.17.1)": [ - "npm:oxlint" - ], - "p-cancelable@2.1.1": [ - "npm:p-cancelable" - ], - "p-limit@2.3.0": [ - "npm:p-limit@2.3.0" - ], - "p-limit@3.1.0": [ - "npm:p-limit@3.1.0" - ], - "p-limit@7.3.0": [ - "npm:p-limit" - ], - "p-locate@3.0.0": [ - "npm:p-locate@3.0.0" - ], - "p-locate@5.0.0": [ - "npm:p-locate" - ], - "p-map@7.0.3": [ - "npm:p-map" - ], - "p-reflect@2.1.0": [ - "npm:p-reflect" - ], - "p-retry@4.6.2": [ - "npm:p-retry" - ], - "p-timeout@4.1.0": [ - "npm:p-timeout" - ], - "p-try@2.2.0": [ - "npm:p-try" - ], - "pac-proxy-agent@7.2.0": [ - "npm:pac-proxy-agent" - ], - "pac-resolver@7.0.1": [ - "npm:pac-resolver" - ], - "package-json-from-dist@1.0.1": [ - "npm:package-json-from-dist" - ], - "package-manager-detector@1.6.0": [ - "npm:package-manager-detector" - ], - "parent-module@1.0.1": [ - "npm:parent-module" - ], - "parse-json@5.2.0": [ - "npm:parse-json" - ], - "parse-ms@2.1.0": [ - "npm:parse-ms@2.1.0" - ], - "parse-ms@4.0.0": [ - "npm:parse-ms" - ], - "parse5@7.3.0": [ - "npm:parse5" - ], - "parseurl@1.3.3": [ - "npm:parseurl" - ], - "path-browserify@1.0.1": [ - "npm:path-browserify" - ], - "path-exists@3.0.0": [ - "npm:path-exists@3.0.0" - ], - "path-exists@4.0.0": [ - "npm:path-exists" - ], - "path-key@3.1.1": [ - "npm:path-key" - ], - "path-key@4.0.0": [ - "npm:path-key@4.0.0" - ], - "path-parse@1.0.7": [ - "npm:path-parse" - ], - "path-scurry@1.11.1": [ - "npm:path-scurry@1.11.1" - ], - "path-scurry@2.0.2": [ - "npm:path-scurry" - ], - "path-to-regexp@6.1.0": [ - "npm:path-to-regexp@6.1.0" - ], - "path-to-regexp@6.3.0": [ - "npm:path-to-regexp@6.3.0", - "npm:path-to-regexp-updated" - ], - "path-to-regexp@8.3.0": [ - "npm:path-to-regexp" - ], - "pathe@2.0.3": [ - "npm:pathe" - ], - "pend@1.2.0": [ - "npm:pend" - ], - "perfect-debounce@1.0.0": [ - "npm:perfect-debounce" - ], - "picocolors@1.1.1": [ - "npm:picocolors" - ], - "picomatch@2.3.1": [ - "npm:picomatch@2.3.1" - ], - "picomatch@4.0.3": [ - "npm:picomatch" - ], - "pidtree@0.6.0": [ - "npm:pidtree" - ], - "pino-abstract-transport@3.0.0": [ - "npm:pino-abstract-transport" - ], - "pino-std-serializers@7.1.0": [ - "npm:pino-std-serializers" - ], - "pino@10.3.1": [ - "npm:pino" - ], - "pkg-types@1.3.1": [ - "npm:pkg-types@1.3.1" - ], - "pkg-types@2.3.0": [ - "npm:pkg-types" - ], - "pkg-up@3.1.0": [ - "npm:pkg-up" - ], - "portfinder@1.0.38": [ - "npm:portfinder" - ], - "possible-typed-array-names@1.1.0": [ - "npm:possible-typed-array-names" - ], - "postcss-calc@8.2.4(postcss@8.5.8)": [ - "npm:postcss-calc" - ], - "postcss-colormin@5.3.1(postcss@8.5.8)": [ - "npm:postcss-colormin" - ], - "postcss-convert-values@5.1.3(postcss@8.5.8)": [ - "npm:postcss-convert-values" - ], - "postcss-discard-comments@5.1.2(postcss@8.5.8)": [ - "npm:postcss-discard-comments" - ], - "postcss-discard-duplicates@5.1.0(postcss@8.5.8)": [ - "npm:postcss-discard-duplicates@5.1.0" - ], - "postcss-discard-duplicates@6.0.3(postcss@8.5.8)": [ - "npm:postcss-discard-duplicates" - ], - "postcss-discard-empty@5.1.1(postcss@8.5.8)": [ - "npm:postcss-discard-empty" - ], - "postcss-discard-overridden@5.1.0(postcss@8.5.8)": [ - "npm:postcss-discard-overridden" - ], - "postcss-js@4.1.0(postcss@8.5.8)": [ - "npm:postcss-js" - ], - "postcss-merge-longhand@5.1.7(postcss@8.5.8)": [ - "npm:postcss-merge-longhand" - ], - "postcss-merge-rules@5.1.4(postcss@8.5.8)": [ - "npm:postcss-merge-rules" - ], - "postcss-minify-font-values@5.1.0(postcss@8.5.8)": [ - "npm:postcss-minify-font-values" - ], - "postcss-minify-gradients@5.1.1(postcss@8.5.8)": [ - "npm:postcss-minify-gradients" - ], - "postcss-minify-params@5.1.4(postcss@8.5.8)": [ - "npm:postcss-minify-params" - ], - "postcss-minify-selectors@5.2.1(postcss@8.5.8)": [ - "npm:postcss-minify-selectors" - ], - "postcss-mixins@12.1.2(postcss@8.5.8)": [ - "npm:postcss-mixins" - ], - "postcss-nested@5.0.6(postcss@8.5.8)": [ - "npm:postcss-nested@5.0.6" - ], - "postcss-nested@7.0.2(postcss@8.5.8)": [ - "npm:postcss-nested" - ], - "postcss-normalize-charset@5.1.0(postcss@8.5.8)": [ - "npm:postcss-normalize-charset" - ], - "postcss-normalize-display-values@5.1.0(postcss@8.5.8)": [ - "npm:postcss-normalize-display-values" - ], - "postcss-normalize-positions@5.1.1(postcss@8.5.8)": [ - "npm:postcss-normalize-positions" - ], - "postcss-normalize-repeat-style@5.1.1(postcss@8.5.8)": [ - "npm:postcss-normalize-repeat-style" - ], - "postcss-normalize-string@5.1.0(postcss@8.5.8)": [ - "npm:postcss-normalize-string" - ], - "postcss-normalize-timing-functions@5.1.0(postcss@8.5.8)": [ - "npm:postcss-normalize-timing-functions" - ], - "postcss-normalize-unicode@5.1.1(postcss@8.5.8)": [ - "npm:postcss-normalize-unicode" - ], - "postcss-normalize-url@5.1.0(postcss@8.5.8)": [ - "npm:postcss-normalize-url" - ], - "postcss-normalize-whitespace@5.1.1(postcss@8.5.8)": [ - "npm:postcss-normalize-whitespace" - ], - "postcss-ordered-values@5.1.3(postcss@8.5.8)": [ - "npm:postcss-ordered-values" - ], - "postcss-preset-mantine@1.18.0(postcss@8.5.8)": [ - "npm:postcss-preset-mantine" - ], - "postcss-reduce-initial@5.1.2(postcss@8.5.8)": [ - "npm:postcss-reduce-initial" - ], - "postcss-reduce-transforms@5.1.0(postcss@8.5.8)": [ - "npm:postcss-reduce-transforms" - ], - "postcss-selector-parser@6.1.2": [ - "npm:postcss-selector-parser@6.1.2" - ], - "postcss-selector-parser@7.1.0": [ - "npm:postcss-selector-parser" - ], - "postcss-simple-vars@7.0.1(postcss@8.5.8)": [ - "npm:postcss-simple-vars" - ], - "postcss-svgo@5.1.0(postcss@8.5.8)": [ - "npm:postcss-svgo" - ], - "postcss-unique-selectors@5.1.1(postcss@8.5.8)": [ - "npm:postcss-unique-selectors" - ], - "postcss-value-parser@4.2.0": [ - "npm:postcss-value-parser" - ], - "postcss-values-parser@6.0.2(postcss@8.5.8)": [ - "npm:postcss-values-parser" - ], - "postcss@8.5.8": [ - "npm:postcss" - ], - "postgres@3.4.7": [ - "npm:postgres" - ], - "preact-render-to-string@6.5.11(preact@10.24.3)": [ - "npm:preact-render-to-string" - ], - "preact@10.24.3": [ - "npm:preact" - ], - "prebuild-install@7.1.3": [ - "npm:prebuild-install" - ], - "prelude-ls@1.2.1": [ - "npm:prelude-ls" - ], - "prettier-linter-helpers@1.0.1": [ - "npm:prettier-linter-helpers" - ], - "prettier@3.8.1": [ - "npm:prettier" - ], - "pretty-format@30.3.0": [ - "npm:pretty-format" - ], - "pretty-ms@7.0.1": [ - "npm:pretty-ms@7.0.1" - ], - "pretty-ms@9.3.0": [ - "npm:pretty-ms" - ], - "prism-themes@1.9.0": [ - "npm:prism-themes" - ], - "prisma@7.5.0(@types/react@19.2.14)(better-sqlite3@12.8.0)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)(typescript@6.0.2)": [ - "npm:prisma" - ], - "proc-log@5.0.0": [ - "npm:proc-log" - ], - "process-warning@4.0.1": [ - "npm:process-warning@4.0.1" - ], - "process-warning@5.0.0": [ - "npm:process-warning" - ], - "progress@2.0.3": [ - "npm:progress" - ], - "promise-retry@2.0.1": [ - "npm:promise-retry" - ], - "prop-types@15.8.1": [ - "npm:prop-types" - ], - "proper-lockfile@4.1.2": [ - "npm:proper-lockfile" - ], - "proxy-addr@2.0.7": [ - "npm:proxy-addr" - ], - "proxy-agent@6.5.0": [ - "npm:proxy-agent" - ], - "proxy-from-env@1.1.0": [ - "npm:proxy-from-env" - ], - "pump@3.0.3": [ - "npm:pump" - ], - "punycode-regex@1.0.1": [ - "npm:punycode-regex" - ], - "punycode@2.3.1": [ - "npm:punycode" - ], - "puppeteer-core@24.40.0": [ - "npm:puppeteer-core" - ], - "puppeteer@24.40.0(typescript@6.0.2)": [ - "npm:puppeteer" - ], - "pure-rand@6.1.0": [ - "npm:pure-rand" - ], - "qs@6.14.0": [ - "npm:qs" - ], - "quansync@1.0.0": [ - "npm:quansync" - ], - "queue-microtask@1.2.3": [ - "npm:queue-microtask" - ], - "quick-format-unescaped@4.0.4": [ - "npm:quick-format-unescaped" - ], - "quick-lru@5.1.1": [ - "npm:quick-lru" - ], - "quote-unquote@1.0.0": [ - "npm:quote-unquote" - ], - "radix3@1.1.2": [ - "npm:radix3" - ], - "range-parser@1.2.1": [ - "npm:range-parser" - ], - "raw-body@3.0.2": [ - "npm:raw-body" - ], - "rc9@2.1.2": [ - "npm:rc9" - ], - "rc@1.2.8": [ - "npm:rc" - ], - "re2@1.22.1": [ - "npm:re2" - ], - "react-dom@19.2.4(react@19.2.4)": [ - "npm:react-dom" - ], - "react-is@16.13.1": [ - "npm:react-is" - ], - "react-is@18.3.1": [ - "npm:react-is@18.3.1" - ], - "react-number-format@5.4.4(react-dom@19.2.4(react@19.2.4))(react@19.2.4)": [ - "npm:react-number-format" - ], - "react-remove-scroll-bar@2.3.8(@types/react@19.2.14)(react@19.2.4)": [ - "npm:react-remove-scroll-bar" - ], - "react-remove-scroll@2.7.1(@types/react@19.2.14)(react@19.2.4)": [ - "npm:react-remove-scroll" - ], - "react-streaming@0.4.16(react-dom@19.2.4(react@19.2.4))(react@19.2.4)": [ - "npm:react-streaming" - ], - "react-style-singleton@2.2.3(@types/react@19.2.14)(react@19.2.4)": [ - "npm:react-style-singleton" - ], - "react-textarea-autosize@8.5.9(@types/react@19.2.14)(react@19.2.4)": [ - "npm:react-textarea-autosize" - ], - "react@19.2.4": [ - "npm:react" - ], - "read-package-json-fast@4.0.0": [ - "npm:read-package-json-fast" - ], - "readable-stream@3.6.2": [ - "npm:readable-stream" - ], - "readdirp@4.1.2": [ - "npm:readdirp" - ], - "real-require@0.2.0": [ - "npm:real-require" - ], - "reflect.getprototypeof@1.0.10": [ - "npm:reflect.getprototypeof" - ], - "regexp-to-ast@0.5.0": [ - "npm:regexp-to-ast" - ], - "regexp-tree@0.1.27": [ - "npm:regexp-tree" - ], - "regexp.prototype.flags@1.5.4": [ - "npm:regexp.prototype.flags" - ], - "regexparam@3.0.0": [ - "npm:regexparam" - ], - "remeda@2.33.4": [ - "npm:remeda" - ], - "require-directory@2.1.1": [ - "npm:require-directory" - ], - "require-from-string@2.0.2": [ - "npm:require-from-string" - ], - "require-one-of@1.0.24": [ - "npm:require-one-of" - ], - "requires-port@1.0.0": [ - "npm:requires-port" - ], - "reselect@4.1.8": [ - "npm:reselect" - ], - "resolve-alpn@1.2.1": [ - "npm:resolve-alpn" - ], - "resolve-from@4.0.0": [ - "npm:resolve-from@4.0.0" - ], - "resolve-from@5.0.0": [ - "npm:resolve-from" - ], - "resolve-pkg-maps@1.0.0": [ - "npm:resolve-pkg-maps" - ], - "resolve.exports@2.0.3": [ - "npm:resolve.exports" - ], - "resolve@1.22.10": [ - "npm:resolve@1.22.10" - ], - "resolve@2.0.0-next.5": [ - "npm:resolve" - ], - "responselike@2.0.1": [ - "npm:responselike" - ], - "restore-cursor@3.1.0": [ - "npm:restore-cursor" - ], - "ret@0.5.0": [ - "npm:ret" - ], - "retry@0.12.0": [ - "npm:retry@0.12.0" - ], - "retry@0.13.1": [ - "npm:retry" - ], - "reusify@1.1.0": [ - "npm:reusify" - ], - "rfdc@1.4.1": [ - "npm:rfdc" - ], - "rimraf@6.1.3": [ - "npm:rimraf" - ], - "rolldown-plugin-dts@0.22.5(oxc-resolver@11.19.1)(rolldown@1.0.0-rc.9)(typescript@6.0.2)": [ - "npm:rolldown-plugin-dts" - ], - "rolldown@1.0.0-beta.51": [ - "npm:rolldown@1.0.0-beta.51" - ], - "rolldown@1.0.0-rc.11": [ - "npm:rolldown@1.0.0-rc.11" - ], - "rolldown@1.0.0-rc.9": [ - "npm:rolldown" - ], - "router@2.2.0": [ - "npm:router" - ], - "run-parallel@1.2.0": [ - "npm:run-parallel" - ], - "safe-array-concat@1.1.3": [ - "npm:safe-array-concat" - ], - "safe-buffer@5.1.2": [ - "npm:safe-buffer" - ], - "safe-buffer@5.2.1": [ - "npm:safe-buffer@5.2.1" - ], - "safe-push-apply@1.0.0": [ - "npm:safe-push-apply" - ], - "safe-regex-test@1.1.0": [ - "npm:safe-regex-test" - ], - "safe-regex2@5.0.0": [ - "npm:safe-regex2" - ], - "safe-stable-stringify@2.5.0": [ - "npm:safe-stable-stringify" - ], - "safer-buffer@2.1.2": [ - "npm:safer-buffer" - ], - "scheduler@0.27.0": [ - "npm:scheduler" - ], - "scule@1.3.0": [ - "npm:scule" - ], - "secure-compare@3.0.1": [ - "npm:secure-compare" - ], - "secure-json-parse@2.7.0": [ - "npm:secure-json-parse" - ], - "secure-json-parse@4.1.0": [ - "npm:secure-json-parse@4.1.0" - ], - "semver@6.3.1": [ - "npm:semver" - ], - "semver@7.7.4": [ - "npm:semver@7.7.4" - ], - "send@1.2.0": [ - "npm:send" - ], - "seq-queue@0.0.5": [ - "npm:seq-queue" - ], - "serialize-error@8.1.0": [ - "npm:serialize-error" - ], - "seroval-plugins@1.5.0(seroval@1.5.0)": [ - "npm:seroval-plugins" - ], - "seroval@1.5.0": [ - "npm:seroval" - ], - "serve-static@2.2.0": [ - "npm:serve-static" - ], - "set-cookie-parser@2.7.2": [ - "npm:set-cookie-parser" - ], - "set-function-length@1.2.2": [ - "npm:set-function-length" - ], - "set-function-name@2.0.2": [ - "npm:set-function-name" - ], - "set-proto@1.0.0": [ - "npm:set-proto" - ], - "setprototypeof@1.2.0": [ - "npm:setprototypeof" - ], - "shallow-equal@3.1.0": [ - "npm:shallow-equal" - ], - "sharp@0.33.5": [ - "npm:sharp@0.33.5" - ], - "sharp@0.34.5": [ - "npm:sharp" - ], - "shebang-command@2.0.0": [ - "npm:shebang-command" - ], - "shebang-regex@3.0.0": [ - "npm:shebang-regex" - ], - "shell-quote@1.8.3": [ - "npm:shell-quote" - ], - "side-channel-list@1.0.0": [ - "npm:side-channel-list" - ], - "side-channel-map@1.0.1": [ - "npm:side-channel-map" - ], - "side-channel-weakmap@1.0.2": [ - "npm:side-channel-weakmap" - ], - "side-channel@1.1.0": [ - "npm:side-channel" - ], - "siginfo@2.0.0": [ - "npm:siginfo" - ], - "signal-exit@3.0.7": [ - "npm:signal-exit@3.0.7" - ], - "signal-exit@4.1.0": [ - "npm:signal-exit" - ], - "simple-concat@1.0.1": [ - "npm:simple-concat" - ], - "simple-get@4.0.1": [ - "npm:simple-get" - ], - "simple-swizzle@0.2.4": [ - "npm:simple-swizzle" - ], - "sirv@3.0.2": [ - "npm:sirv" - ], - "slash@5.1.0": [ - "npm:slash" - ], - "smart-buffer@4.2.0": [ - "npm:smart-buffer" - ], - "smol-toml@1.5.2": [ - "npm:smol-toml" - ], - "socks-proxy-agent@8.0.5": [ - "npm:socks-proxy-agent" - ], - "socks@2.8.7": [ - "npm:socks" - ], - "solid-element@1.9.1(solid-js@1.9.11)": [ - "npm:solid-element" - ], - "solid-js@1.9.11": [ - "npm:solid-js" - ], - "solid-motionone@1.0.4(solid-js@1.9.11)": [ - "npm:solid-motionone" - ], - "solid-refresh@0.6.3(solid-js@1.9.11)": [ - "npm:solid-refresh" - ], - "sonic-boom@4.2.1": [ - "npm:sonic-boom" - ], - "source-map-js@1.2.1": [ - "npm:source-map-js" - ], - "source-map-support@0.5.21": [ - "npm:source-map-support" - ], - "source-map@0.6.1": [ - "npm:source-map" - ], - "source-map@0.7.6": [ - "npm:source-map@0.7.6" - ], - "split2@4.2.0": [ - "npm:split2" - ], - "sprintf-js@1.0.3": [ - "npm:sprintf-js" - ], - "sqlstring@2.3.3": [ - "npm:sqlstring" - ], - "squirrelly@9.1.0": [ - "npm:squirrelly" - ], - "srvx@0.9.8": [ - "npm:srvx" - ], - "ssri@12.0.0": [ - "npm:ssri" - ], - "stable@0.1.8": [ - "npm:stable" - ], - "stackback@0.0.2": [ - "npm:stackback" - ], - "standaloner@0.1.11(encoding@0.1.13)": [ - "npm:standaloner" - ], - "standaloner@0.2.2(encoding@0.1.13)": [ - "npm:standaloner@0.2.2" - ], - "statuses@2.0.2": [ - "npm:statuses" - ], - "std-env@3.10.0": [ - "npm:std-env@3.10.0" - ], - "std-env@4.0.0": [ - "npm:std-env" - ], - "stop-iteration-iterator@1.1.0": [ - "npm:stop-iteration-iterator" - ], - "stoppable@1.1.0": [ - "npm:stoppable" - ], - "streamx@2.23.0": [ - "npm:streamx" - ], - "string-width@4.2.3": [ - "npm:string-width", - "npm:string-width-cjs" - ], - "string-width@5.1.2": [ - "npm:string-width@5.1.2" - ], - "string.prototype.matchall@4.0.12": [ - "npm:string.prototype.matchall" - ], - "string.prototype.repeat@1.0.0": [ - "npm:string.prototype.repeat" - ], - "string.prototype.trim@1.2.10": [ - "npm:string.prototype.trim" - ], - "string.prototype.trimend@1.0.9": [ - "npm:string.prototype.trimend" - ], - "string.prototype.trimstart@1.0.8": [ - "npm:string.prototype.trimstart" - ], - "string_decoder@1.3.0": [ - "npm:string_decoder" - ], - "strip-ansi@6.0.1": [ - "npm:strip-ansi@6.0.1", - "npm:strip-ansi-cjs" - ], - "strip-ansi@7.1.2": [ - "npm:strip-ansi" - ], - "strip-bom@3.0.0": [ - "npm:strip-bom" - ], - "strip-final-newline@4.0.0": [ - "npm:strip-final-newline" - ], - "strip-json-comments@2.0.1": [ - "npm:strip-json-comments@2.0.1" - ], - "strip-json-comments@3.1.1": [ - "npm:strip-json-comments@3.1.1" - ], - "strip-json-comments@5.0.3": [ - "npm:strip-json-comments" - ], - "style-to-object@1.0.11": [ - "npm:style-to-object" - ], - "stylehacks@5.1.1(postcss@8.5.8)": [ - "npm:stylehacks" - ], - "sugarss@5.0.1(postcss@8.5.8)": [ - "npm:sugarss" - ], - "superlock@1.2.6": [ - "npm:superlock" - ], - "supports-color@10.2.2": [ - "npm:supports-color@10.2.2" - ], - "supports-color@7.2.0": [ - "npm:supports-color" - ], - "supports-preserve-symlinks-flag@1.0.0": [ - "npm:supports-preserve-symlinks-flag" - ], - "svg-gradient@1.0.4": [ - "npm:svg-gradient" - ], - "svgo@2.8.0": [ - "npm:svgo" - ], - "synckit@0.11.12": [ - "npm:synckit" - ], - "tabbable@6.2.0": [ - "npm:tabbable" - ], - "tailwind-merge@3.5.0": [ - "npm:tailwind-merge" - ], - "tailwindcss@4.2.2": [ - "npm:tailwindcss" - ], - "tapable@2.3.0": [ - "npm:tapable" - ], - "tar-fs@2.1.4": [ - "npm:tar-fs@2.1.4" - ], - "tar-fs@3.1.1": [ - "npm:tar-fs" - ], - "tar-stream@2.2.0": [ - "npm:tar-stream" - ], - "tar-stream@3.1.7": [ - "npm:tar-stream@3.1.7" - ], - "tar@7.5.1": [ - "npm:tar" - ], - "telefunc@0.2.19(@babel/core@7.29.0)(@babel/parser@7.29.0)(@babel/types@7.29.0)(react-streaming@0.4.16(react-dom@19.2.4(react@19.2.4))(react@19.2.4))(react@19.2.4)(vite@8.0.2(@types/node@20.19.37)(esbuild@0.27.4)(jiti@2.6.1)(sugarss@5.0.1(postcss@8.5.8))(tsx@4.21.0)(yaml@2.8.3))": [ - "npm:telefunc" - ], - "text-decoder@1.2.3": [ - "npm:text-decoder" - ], - "thread-stream@4.0.0": [ - "npm:thread-stream" - ], - "tinybench@2.9.0": [ - "npm:tinybench" - ], - "tinyexec@1.0.4": [ - "npm:tinyexec" - ], - "tinyglobby@0.2.15": [ - "npm:tinyglobby" - ], - "tinyrainbow@3.0.3": [ - "npm:tinyrainbow" - ], - "tlds@1.260.0": [ - "npm:tlds" - ], - "tldts-core@7.0.25": [ - "npm:tldts-core" - ], - "tldts-experimental@7.0.25": [ - "npm:tldts-experimental" - ], - "tldts@7.0.17": [ - "npm:tldts" - ], - "tmp@0.2.5": [ - "npm:tmp" - ], - "to-regex-range@5.0.1": [ - "npm:to-regex-range" - ], - "toad-cache@3.7.0": [ - "npm:toad-cache" - ], - "toidentifier@1.0.1": [ - "npm:toidentifier" - ], - "totalist@3.0.1": [ - "npm:totalist" - ], - "tough-cookie@6.0.0": [ - "npm:tough-cookie" - ], - "tr46@0.0.3": [ - "npm:tr46" - ], - "tree-kill@1.2.2": [ - "npm:tree-kill" - ], - "ts-api-utils@2.4.0(typescript@6.0.2)": [ - "npm:ts-api-utils" - ], - "ts-deepmerge@7.0.3": [ - "npm:ts-deepmerge" - ], - "ts-morph@26.0.0": [ - "npm:ts-morph" - ], - "tsconfig-paths@4.2.0": [ - "npm:tsconfig-paths" - ], - "tsdown@0.21.4(oxc-resolver@11.19.1)(synckit@0.11.12)(typescript@6.0.2)": [ - "npm:tsdown" - ], - "tslib@2.8.1": [ - "npm:tslib" - ], - "tsx@4.21.0": [ - "npm:tsx" - ], - "tunnel-agent@0.6.0": [ - "npm:tunnel-agent" - ], - "turbo@2.8.20": [ - "npm:turbo" - ], - "tw-animate-css@1.4.0": [ - "npm:tw-animate-css" - ], - "type-check@0.4.0": [ - "npm:type-check" - ], - "type-fest@0.20.2": [ - "npm:type-fest@0.20.2" - ], - "type-fest@4.41.0": [ - "npm:type-fest" - ], - "type-is@2.0.1": [ - "npm:type-is" - ], - "type-level-regexp@0.1.17": [ - "npm:type-level-regexp" - ], - "typed-array-buffer@1.0.3": [ - "npm:typed-array-buffer" - ], - "typed-array-byte-length@1.0.3": [ - "npm:typed-array-byte-length" - ], - "typed-array-byte-offset@1.0.4": [ - "npm:typed-array-byte-offset" - ], - "typed-array-length@1.0.7": [ - "npm:typed-array-length" - ], - "typed-query-selector@2.12.1": [ - "npm:typed-query-selector" - ], - "typescript-eslint@8.57.1(eslint@9.39.4(jiti@2.6.1))(typescript@6.0.2)": [ - "npm:typescript-eslint" - ], - "typescript@6.0.2": [ - "npm:typescript" - ], - "ufo@1.6.3": [ - "npm:ufo" - ], - "unbash@2.2.0": [ - "npm:unbash" - ], - "unbox-primitive@1.1.0": [ - "npm:unbox-primitive" - ], - "unconfig-core@7.5.0": [ - "npm:unconfig-core" - ], - "unconfig@7.5.0": [ - "npm:unconfig" - ], - "uncrypto@0.1.3": [ - "npm:uncrypto" - ], - "undici-types@6.21.0": [ - "npm:undici-types" - ], - "undici@7.14.0": [ - "npm:undici@7.14.0" - ], - "undici@7.24.4": [ - "npm:undici" - ], - "unenv@2.0.0-rc.24": [ - "npm:unenv" - ], - "unicorn-magic@0.3.0": [ - "npm:unicorn-magic@0.3.0" - ], - "unicorn-magic@0.4.0": [ - "npm:unicorn-magic" - ], - "union@0.5.0": [ - "npm:union" - ], - "unique-filename@4.0.0": [ - "npm:unique-filename" - ], - "unique-slug@5.0.0": [ - "npm:unique-slug" - ], - "unist-util-is@6.0.1": [ - "npm:unist-util-is" - ], - "unist-util-stringify-position@4.0.0": [ - "npm:unist-util-stringify-position" - ], - "unist-util-visit-parents@6.0.2": [ - "npm:unist-util-visit-parents" - ], - "unist-util-visit@5.0.0": [ - "npm:unist-util-visit" - ], - "unpipe@1.0.0": [ - "npm:unpipe" - ], - "unplugin-purge-polyfills@0.1.0": [ - "npm:unplugin-purge-polyfills" - ], - "unplugin@2.3.10": [ - "npm:unplugin" - ], - "unrun@0.2.32(synckit@0.11.12)": [ - "npm:unrun" - ], - "update-browserslist-db@1.2.2(browserslist@4.28.1)": [ - "npm:update-browserslist-db" - ], - "uri-js@4.4.1": [ - "npm:uri-js" - ], - "url-http@1.3.2": [ - "npm:url-http" - ], - "url-join@4.0.1": [ - "npm:url-join" - ], - "url-regex-safe@4.0.0(re2@1.22.1)": [ - "npm:url-regex-safe" - ], - "use-callback-ref@1.3.3(@types/react@19.2.14)(react@19.2.4)": [ - "npm:use-callback-ref" - ], - "use-composed-ref@1.4.0(@types/react@19.2.14)(react@19.2.4)": [ - "npm:use-composed-ref" - ], - "use-isomorphic-layout-effect@1.2.1(@types/react@19.2.14)(react@19.2.4)": [ - "npm:use-isomorphic-layout-effect" - ], - "use-latest@1.3.0(@types/react@19.2.14)(react@19.2.4)": [ - "npm:use-latest" - ], - "use-sidecar@1.1.3(@types/react@19.2.14)(react@19.2.4)": [ - "npm:use-sidecar" - ], - "util-deprecate@1.0.2": [ - "npm:util-deprecate" - ], - "valibot@1.2.0(typescript@6.0.2)": [ - "npm:valibot" - ], - "vary@1.1.2": [ - "npm:vary" - ], - "vike-photon@0.1.25(2d77ebadb3b09aa04683439197b7df8e)": [ - "npm:vike-photon" - ], - "vike-react@0.6.21(react-dom@19.2.4(react@19.2.4))(react@19.2.4)(vike@0.4.255(@types/node@20.19.37)(jiti@2.6.1)(react-streaming@0.4.16(react-dom@19.2.4(react@19.2.4))(react@19.2.4))(sugarss@5.0.1(postcss@8.5.8))(tsx@4.21.0)(yaml@2.8.3))": [ - "npm:vike-react" - ], - "vike-solid@0.8.1(solid-js@1.9.11)(vike@0.4.255(@types/node@20.19.37)(jiti@2.6.1)(react-streaming@0.4.16(react-dom@19.2.4(react@19.2.4))(react@19.2.4))(sugarss@5.0.1(postcss@8.5.8))(tsx@4.21.0)(yaml@2.8.3))(vite-plugin-solid@2.11.11(solid-js@1.9.11)(vite@8.0.2(@types/node@20.19.37)(esbuild@0.27.4)(jiti@2.6.1)(sugarss@5.0.1(postcss@8.5.8))(tsx@4.21.0)(yaml@2.8.3)))": [ - "npm:vike-solid" - ], - "vike-vue@0.9.11(vike@0.4.255(@types/node@20.19.37)(jiti@2.6.1)(react-streaming@0.4.16(react-dom@19.2.4(react@19.2.4))(react@19.2.4))(sugarss@5.0.1(postcss@8.5.8))(tsx@4.21.0)(yaml@2.8.3))(vue@3.5.30(typescript@6.0.2))": [ - "npm:vike-vue" - ], - "vike@0.4.255(@types/node@20.19.37)(jiti@2.6.1)(react-streaming@0.4.16(react-dom@19.2.4(react@19.2.4))(react@19.2.4))(sugarss@5.0.1(postcss@8.5.8))(tsx@4.21.0)(yaml@2.8.3)": [ - "npm:vike" - ], - "vite-plugin-compiled-react@1.3.1(@compiled/react@0.20.0(react@19.2.4))(@vitejs/plugin-react@6.0.1(vite@8.0.2(@types/node@20.19.37)(esbuild@0.27.4)(jiti@2.6.1)(sugarss@5.0.1(postcss@8.5.8))(tsx@4.21.0)(yaml@2.8.3)))(vite@8.0.2(@types/node@20.19.37)(esbuild@0.27.4)(jiti@2.6.1)(sugarss@5.0.1(postcss@8.5.8))(tsx@4.21.0)(yaml@2.8.3))": [ - "npm:vite-plugin-compiled-react" - ], - "vite-plugin-solid@2.11.11(solid-js@1.9.11)(vite@8.0.2(@types/node@20.19.37)(esbuild@0.27.4)(jiti@2.6.1)(sugarss@5.0.1(postcss@8.5.8))(tsx@4.21.0)(yaml@2.8.3))": [ - "npm:vite-plugin-solid" - ], - "vite-plugin-wasm@3.5.0(vite@8.0.2(@types/node@20.19.37)(esbuild@0.27.4)(jiti@2.6.1)(sugarss@5.0.1(postcss@8.5.8))(tsx@4.21.0)(yaml@2.8.3))": [ - "npm:vite-plugin-wasm" - ], - "vite@8.0.2(@types/node@20.19.37)(esbuild@0.27.4)(jiti@2.6.1)(sugarss@5.0.1(postcss@8.5.8))(tsx@4.21.0)(yaml@2.8.3)": [ - "npm:vite" - ], - "vitefu@1.1.1(vite@8.0.2(@types/node@20.19.37)(esbuild@0.27.4)(jiti@2.6.1)(sugarss@5.0.1(postcss@8.5.8))(tsx@4.21.0)(yaml@2.8.3))": [ - "npm:vitefu" - ], - "vitest@4.1.0(@types/node@20.19.37)(esbuild@0.27.4)(jiti@2.6.1)(sugarss@5.0.1(postcss@8.5.8))(tsx@4.21.0)(yaml@2.8.3)": [ - "npm:vitest" - ], - "vue-eslint-parser@10.4.0(eslint@9.39.4(jiti@2.6.1))": [ - "npm:vue-eslint-parser" - ], - "vue-gtag@3.7.0(vue@3.5.30(typescript@6.0.2))": [ - "npm:vue-gtag" - ], - "vue@3.5.30(typescript@6.0.2)": [ - "npm:vue" - ], - "walk-up-path@4.0.0": [ - "npm:walk-up-path" - ], - "wcwidth@1.0.1": [ - "npm:wcwidth" - ], - "web-streams-polyfill@3.3.3": [ - "npm:web-streams-polyfill" - ], - "webdriver-bidi-protocol@0.4.1": [ - "npm:webdriver-bidi-protocol" - ], - "webidl-conversions@3.0.1": [ - "npm:webidl-conversions" - ], - "webpack-virtual-modules@0.6.2": [ - "npm:webpack-virtual-modules" - ], - "whatwg-encoding@2.0.0": [ - "npm:whatwg-encoding" - ], - "whatwg-url@5.0.0": [ - "npm:whatwg-url" - ], - "which-boxed-primitive@1.1.1": [ - "npm:which-boxed-primitive" - ], - "which-builtin-type@1.2.1": [ - "npm:which-builtin-type" - ], - "which-collection@1.0.2": [ - "npm:which-collection" - ], - "which-typed-array@1.1.19": [ - "npm:which-typed-array" - ], - "which@2.0.2": [ - "npm:which@2.0.2" - ], - "which@5.0.0": [ - "npm:which@5.0.0" - ], - "which@6.0.1": [ - "npm:which" - ], - "whoops@5.1.0": [ - "npm:whoops" - ], - "why-is-node-running@2.3.0": [ - "npm:why-is-node-running" - ], - "word-wrap@1.2.5": [ - "npm:word-wrap" - ], - "workerd@1.20251217.0": [ - "npm:workerd@1.20251217.0" - ], - "workerd@1.20260317.1": [ - "npm:workerd" - ], - "wrangler@4.76.0(@cloudflare/workers-types@4.20260317.1)": [ - "npm:wrangler" - ], - "wrap-ansi@7.0.0": [ - "npm:wrap-ansi", - "npm:wrap-ansi-cjs" - ], - "wrap-ansi@8.1.0": [ - "npm:wrap-ansi@8.1.0" - ], - "wrappy@1.0.2": [ - "npm:wrappy" - ], - "ws@8.18.0": [ - "npm:ws" - ], - "ws@8.19.0": [ - "npm:ws@8.19.0" - ], - "xml-name-validator@4.0.0": [ - "npm:xml-name-validator" - ], - "y18n@5.0.8": [ - "npm:y18n" - ], - "yallist@3.1.1": [ - "npm:yallist" - ], - "yallist@4.0.0": [ - "npm:yallist@4.0.0" - ], - "yallist@5.0.0": [ - "npm:yallist@5.0.0" - ], - "yaml@2.8.3": [ - "npm:yaml" - ], - "yargs-parser@21.1.1": [ - "npm:yargs-parser" - ], - "yargs@17.7.2": [ - "npm:yargs" - ], - "yauzl@2.10.0": [ - "npm:yauzl" - ], - "yocto-queue@0.1.0": [ - "npm:yocto-queue@0.1.0" - ], - "yocto-queue@1.2.1": [ - "npm:yocto-queue" - ], - "yoctocolors@2.1.2": [ - "npm:yoctocolors" - ], - "youch-core@0.3.3": [ - "npm:youch-core" - ], - "youch@4.1.0-beta.10": [ - "npm:youch" - ], - "zeptomatch@2.1.0": [ - "npm:zeptomatch" - ], - "zod@3.22.3": [ - "npm:zod@3.22.3" - ], - "zod@3.25.76": [ - "npm:zod" - ], - "zod@4.3.6": [ - "npm:zod@4.3.6" - ], - "zwitch@2.0.4": [ - "npm:zwitch" - ], - "zx@8.8.5": [ - "npm:zx" - ] - } -} \ No newline at end of file diff --git a/.nx/workspace-data/project-graph.json b/.nx/workspace-data/project-graph.json deleted file mode 100644 index 6634d9069..000000000 --- a/.nx/workspace-data/project-graph.json +++ /dev/null @@ -1,38442 +0,0 @@ -{ - "nodes": { - "@batijs/google-analytics": { - "name": "@batijs/google-analytics", - "type": "app", - "data": { - "root": "boilerplates/google-analytics", - "name": "@batijs/google-analytics", - "tags": [ - "npm:private", - "type:boilerplate" - ], - "metadata": { - "targetGroups": { - "NPM Scripts": [ - "check-types", - "build" - ] - }, - "description": "", - "js": { - "packageName": "@batijs/google-analytics", - "packageVersion": "0.0.1", - "isInPackageManagerWorkspaces": true - } - }, - "targets": { - "check-types": { - "executor": "nx:run-script", - "options": { - "script": "check-types" - }, - "metadata": { - "scriptContent": "tsc --noEmit", - "runCommand": "pnpm run check-types" - }, - "configurations": {}, - "parallelism": true, - "cache": true - }, - "build": { - "executor": "nx:run-script", - "options": { - "script": "build" - }, - "metadata": { - "scriptContent": "bati-compile-boilerplate", - "runCommand": "pnpm run build" - }, - "configurations": {}, - "parallelism": true, - "cache": true, - "dependsOn": [ - "^build" - ], - "inputs": [ - "default", - "^default" - ], - "outputs": [ - "{projectRoot}/dist/**" - ] - } - }, - "implicitDependencies": [] - } - }, - "@batijs/create-app": { - "name": "@batijs/create-app", - "type": "lib", - "data": { - "root": "packages/create-batijs-app", - "name": "@batijs/create-app", - "tags": [ - "npm:public" - ], - "metadata": { - "targetGroups": {}, - "description": "Next-gen scaffolder. Get started with fully-functional apps, and choose any tool you want", - "js": { - "packageName": "@batijs/create-app", - "packageVersion": "0.0.599", - "isInPackageManagerWorkspaces": true - } - }, - "targets": {}, - "implicitDependencies": [] - } - }, - "@batijs/shared-server": { - "name": "@batijs/shared-server", - "type": "lib", - "data": { - "root": "boilerplates/shared-server", - "name": "@batijs/shared-server", - "tags": [ - "npm:private", - "type:boilerplate" - ], - "metadata": { - "targetGroups": { - "NPM Scripts": [ - "check-types", - "build" - ] - }, - "description": "", - "js": { - "packageName": "@batijs/shared-server", - "packageVersion": "0.0.1", - "packageExports": { - "./drizzle/dist/types/database/drizzle/db": { - "types": "./dist/types/drizzle/dist/types/database/drizzle/db.d.mts" - }, - "./server/create-todo-handler": { - "types": "./dist/types/server/create-todo-handler.d.mts" - }, - "./sqlite/dist/types/database/sqlite/db": { - "types": "./dist/types/sqlite/dist/types/database/sqlite/db.d.mts" - } - }, - "isInPackageManagerWorkspaces": true - } - }, - "targets": { - "check-types": { - "executor": "nx:run-script", - "options": { - "script": "check-types" - }, - "metadata": { - "scriptContent": "tsc --noEmit", - "runCommand": "pnpm run check-types" - }, - "configurations": {}, - "parallelism": true, - "cache": true - }, - "build": { - "executor": "nx:run-script", - "options": { - "script": "build" - }, - "metadata": { - "scriptContent": "bati-compile-boilerplate", - "runCommand": "pnpm run build" - }, - "configurations": {}, - "parallelism": true, - "cache": true, - "dependsOn": [ - "^build" - ], - "inputs": [ - "default", - "^default" - ], - "outputs": [ - "{projectRoot}/dist/**" - ] - } - }, - "implicitDependencies": [] - } - }, - "@batijs/plausible.io": { - "name": "@batijs/plausible.io", - "type": "app", - "data": { - "root": "boilerplates/plausible.io", - "name": "@batijs/plausible.io", - "tags": [ - "npm:private", - "type:boilerplate" - ], - "metadata": { - "targetGroups": { - "NPM Scripts": [ - "check-types", - "build" - ] - }, - "description": "", - "js": { - "packageName": "@batijs/plausible.io", - "packageVersion": "0.0.1", - "isInPackageManagerWorkspaces": true - } - }, - "targets": { - "check-types": { - "executor": "nx:run-script", - "options": { - "script": "check-types" - }, - "metadata": { - "scriptContent": "tsc --noEmit", - "runCommand": "pnpm run check-types" - }, - "configurations": {}, - "parallelism": true, - "cache": true - }, - "build": { - "executor": "nx:run-script", - "options": { - "script": "build" - }, - "metadata": { - "scriptContent": "bati-compile-boilerplate", - "runCommand": "pnpm run build" - }, - "configurations": {}, - "parallelism": true, - "cache": true, - "dependsOn": [ - "^build" - ], - "inputs": [ - "default", - "^default" - ], - "outputs": [ - "{projectRoot}/dist/**" - ] - } - }, - "implicitDependencies": [] - } - }, - "@batijs/react-sentry": { - "name": "@batijs/react-sentry", - "type": "lib", - "data": { - "root": "boilerplates/react-sentry", - "name": "@batijs/react-sentry", - "tags": [ - "npm:private", - "type:boilerplate" - ], - "metadata": { - "targetGroups": { - "NPM Scripts": [ - "check-types", - "build" - ] - }, - "description": "", - "js": { - "packageName": "@batijs/react-sentry", - "packageVersion": "0.0.1", - "packageExports": { - "./pages/sentry/+Page": { - "types": "./dist/types/pages/sentry/+Page.d.mts" - }, - "./sentry.browser.config": { - "types": "./dist/types/sentry.browser.config.d.mts" - } - }, - "isInPackageManagerWorkspaces": true - } - }, - "targets": { - "check-types": { - "executor": "nx:run-script", - "options": { - "script": "check-types" - }, - "metadata": { - "scriptContent": "tsc --noEmit", - "runCommand": "pnpm run check-types" - }, - "configurations": {}, - "parallelism": true, - "cache": true - }, - "build": { - "executor": "nx:run-script", - "options": { - "script": "build" - }, - "metadata": { - "scriptContent": "bati-compile-boilerplate", - "runCommand": "pnpm run build" - }, - "configurations": {}, - "parallelism": true, - "cache": true, - "dependsOn": [ - "^build" - ], - "inputs": [ - "default", - "^default" - ], - "outputs": [ - "{projectRoot}/dist/**" - ] - } - }, - "implicitDependencies": [] - } - }, - "@batijs/solid-sentry": { - "name": "@batijs/solid-sentry", - "type": "lib", - "data": { - "root": "boilerplates/solid-sentry", - "name": "@batijs/solid-sentry", - "tags": [ - "npm:private", - "type:boilerplate" - ], - "metadata": { - "targetGroups": { - "NPM Scripts": [ - "check-types", - "build" - ] - }, - "description": "", - "js": { - "packageName": "@batijs/solid-sentry", - "packageVersion": "0.0.1", - "packageExports": { - "./pages/sentry/+Page": { - "types": "./dist/types/pages/sentry/+Page.d.mts" - }, - "./sentry.browser.config": { - "types": "./dist/types/sentry.browser.config.d.mts" - } - }, - "isInPackageManagerWorkspaces": true - } - }, - "targets": { - "check-types": { - "executor": "nx:run-script", - "options": { - "script": "check-types" - }, - "metadata": { - "scriptContent": "tsc --noEmit", - "runCommand": "pnpm run check-types" - }, - "configurations": {}, - "parallelism": true, - "cache": true - }, - "build": { - "executor": "nx:run-script", - "options": { - "script": "build" - }, - "metadata": { - "scriptContent": "bati-compile-boilerplate", - "runCommand": "pnpm run build" - }, - "configurations": {}, - "parallelism": true, - "cache": true, - "dependsOn": [ - "^build" - ], - "inputs": [ - "default", - "^default" - ], - "outputs": [ - "{projectRoot}/dist/**" - ] - } - }, - "implicitDependencies": [] - } - }, - "@batijs/shared-todo": { - "name": "@batijs/shared-todo", - "type": "lib", - "data": { - "root": "boilerplates/shared-todo", - "name": "@batijs/shared-todo", - "tags": [ - "npm:private", - "type:boilerplate" - ], - "metadata": { - "targetGroups": { - "NPM Scripts": [ - "check-types", - "build" - ] - }, - "description": "", - "js": { - "packageName": "@batijs/shared-todo", - "packageVersion": "0.0.1", - "packageExports": { - "./pages/todo/+config": { - "types": "./dist/types/pages/todo/+config.d.mts" - }, - "./pages/todo/+data": { - "types": "./dist/types/pages/todo/+data.d.mts" - } - }, - "isInPackageManagerWorkspaces": true - } - }, - "targets": { - "check-types": { - "executor": "nx:run-script", - "options": { - "script": "check-types" - }, - "metadata": { - "scriptContent": "tsc --noEmit", - "runCommand": "pnpm run check-types" - }, - "configurations": {}, - "parallelism": true, - "cache": true - }, - "build": { - "executor": "nx:run-script", - "options": { - "script": "build" - }, - "metadata": { - "scriptContent": "bati-compile-boilerplate", - "runCommand": "pnpm run build" - }, - "configurations": {}, - "parallelism": true, - "cache": true, - "dependsOn": [ - "^build" - ], - "inputs": [ - "default", - "^default" - ], - "outputs": [ - "{projectRoot}/dist/**" - ] - } - }, - "implicitDependencies": [] - } - }, - "@batijs/tailwindcss": { - "name": "@batijs/tailwindcss", - "type": "app", - "data": { - "root": "boilerplates/tailwindcss", - "name": "@batijs/tailwindcss", - "tags": [ - "npm:private", - "type:boilerplate" - ], - "metadata": { - "targetGroups": { - "NPM Scripts": [ - "check-types", - "build" - ] - }, - "description": "", - "js": { - "packageName": "@batijs/tailwindcss", - "packageVersion": "0.0.1", - "isInPackageManagerWorkspaces": true - } - }, - "targets": { - "check-types": { - "executor": "nx:run-script", - "options": { - "script": "check-types" - }, - "metadata": { - "scriptContent": "tsc --noEmit", - "runCommand": "pnpm run check-types" - }, - "configurations": {}, - "parallelism": true, - "cache": true - }, - "build": { - "executor": "nx:run-script", - "options": { - "script": "build" - }, - "metadata": { - "scriptContent": "bati-compile-boilerplate", - "runCommand": "pnpm run build" - }, - "configurations": {}, - "parallelism": true, - "cache": true, - "dependsOn": [ - "^build" - ], - "inputs": [ - "default", - "^default" - ], - "outputs": [ - "{projectRoot}/dist/**" - ] - } - }, - "implicitDependencies": [] - } - }, - "@batijs/cloudflare": { - "name": "@batijs/cloudflare", - "type": "app", - "data": { - "root": "boilerplates/cloudflare", - "name": "@batijs/cloudflare", - "tags": [ - "npm:private", - "type:boilerplate" - ], - "metadata": { - "targetGroups": { - "NPM Scripts": [ - "check-types", - "build" - ] - }, - "description": "", - "js": { - "packageName": "@batijs/cloudflare", - "packageVersion": "0.0.1", - "isInPackageManagerWorkspaces": true - } - }, - "targets": { - "check-types": { - "executor": "nx:run-script", - "options": { - "script": "check-types" - }, - "metadata": { - "scriptContent": "tsc --noEmit", - "runCommand": "pnpm run check-types" - }, - "configurations": {}, - "parallelism": true, - "cache": true - }, - "build": { - "executor": "nx:run-script", - "options": { - "script": "build" - }, - "metadata": { - "scriptContent": "bati-compile-boilerplate", - "runCommand": "pnpm run build" - }, - "configurations": {}, - "parallelism": true, - "cache": true, - "dependsOn": [ - "^build" - ], - "inputs": [ - "default", - "^default" - ], - "outputs": [ - "{projectRoot}/dist/**" - ] - } - }, - "implicitDependencies": [] - } - }, - "@batijs/vue-sentry": { - "name": "@batijs/vue-sentry", - "type": "lib", - "data": { - "root": "boilerplates/vue-sentry", - "name": "@batijs/vue-sentry", - "tags": [ - "npm:private", - "type:boilerplate" - ], - "metadata": { - "targetGroups": { - "NPM Scripts": [ - "check-types", - "build" - ] - }, - "description": "", - "js": { - "packageName": "@batijs/vue-sentry", - "packageVersion": "0.0.1", - "packageExports": { - "./sentry.browser.config": { - "types": "./dist/types/sentry.browser.config.d.mts" - } - }, - "isInPackageManagerWorkspaces": true - } - }, - "targets": { - "check-types": { - "executor": "nx:run-script", - "options": { - "script": "check-types" - }, - "metadata": { - "scriptContent": "tsc --noEmit", - "runCommand": "pnpm run check-types" - }, - "configurations": {}, - "parallelism": true, - "cache": true - }, - "build": { - "executor": "nx:run-script", - "options": { - "script": "build" - }, - "metadata": { - "scriptContent": "bati-compile-boilerplate", - "runCommand": "pnpm run build" - }, - "configurations": {}, - "parallelism": true, - "cache": true, - "dependsOn": [ - "^build" - ], - "inputs": [ - "default", - "^default" - ], - "outputs": [ - "{projectRoot}/dist/**" - ] - } - }, - "implicitDependencies": [] - } - }, - "@batijs/d1-kysely": { - "name": "@batijs/d1-kysely", - "type": "app", - "data": { - "root": "boilerplates/d1-kysely", - "name": "@batijs/d1-kysely", - "tags": [ - "npm:private", - "type:boilerplate" - ], - "metadata": { - "targetGroups": { - "NPM Scripts": [ - "check-types", - "build" - ] - }, - "description": "", - "js": { - "packageName": "@batijs/d1-kysely", - "packageVersion": "0.0.1", - "isInPackageManagerWorkspaces": true - } - }, - "targets": { - "check-types": { - "executor": "nx:run-script", - "options": { - "script": "check-types" - }, - "metadata": { - "scriptContent": "tsc --noEmit", - "runCommand": "pnpm run check-types" - }, - "configurations": {}, - "parallelism": true, - "cache": true - }, - "build": { - "executor": "nx:run-script", - "options": { - "script": "build" - }, - "metadata": { - "scriptContent": "bati-compile-boilerplate", - "runCommand": "pnpm run build" - }, - "configurations": {}, - "parallelism": true, - "cache": true, - "dependsOn": [ - "^build" - ], - "inputs": [ - "default", - "^default" - ], - "outputs": [ - "{projectRoot}/dist/**" - ] - } - }, - "implicitDependencies": [] - } - }, - "@batijs/d1-sqlite": { - "name": "@batijs/d1-sqlite", - "type": "lib", - "data": { - "root": "boilerplates/d1-sqlite", - "name": "@batijs/d1-sqlite", - "tags": [ - "npm:private", - "type:boilerplate" - ], - "metadata": { - "targetGroups": { - "NPM Scripts": [ - "check-types", - "build" - ] - }, - "description": "", - "js": { - "packageName": "@batijs/d1-sqlite", - "packageVersion": "0.0.1", - "packageExports": { - "./database/d1/queries/todos": { - "types": "./dist/types/database/d1/queries/todos.d.mts" - } - }, - "isInPackageManagerWorkspaces": true - } - }, - "targets": { - "check-types": { - "executor": "nx:run-script", - "options": { - "script": "check-types" - }, - "metadata": { - "scriptContent": "tsc --noEmit", - "runCommand": "pnpm run check-types" - }, - "configurations": {}, - "parallelism": true, - "cache": true - }, - "build": { - "executor": "nx:run-script", - "options": { - "script": "build" - }, - "metadata": { - "scriptContent": "bati-compile-boilerplate", - "runCommand": "pnpm run build" - }, - "configurations": {}, - "parallelism": true, - "cache": true, - "dependsOn": [ - "^build" - ], - "inputs": [ - "default", - "^default" - ], - "outputs": [ - "{projectRoot}/dist/**" - ] - } - }, - "implicitDependencies": [] - } - }, - "@batijs/shadcn-ui": { - "name": "@batijs/shadcn-ui", - "type": "lib", - "data": { - "root": "boilerplates/shadcn-ui", - "name": "@batijs/shadcn-ui", - "tags": [ - "npm:private", - "type:boilerplate" - ], - "metadata": { - "targetGroups": { - "NPM Scripts": [ - "check-types", - "build" - ] - }, - "description": "", - "js": { - "packageName": "@batijs/shadcn-ui", - "packageVersion": "0.0.1", - "packageExports": { - "./lib/utils": { - "types": "./dist/types/lib/utils.d.mts" - } - }, - "isInPackageManagerWorkspaces": true - } - }, - "targets": { - "check-types": { - "executor": "nx:run-script", - "options": { - "script": "check-types" - }, - "metadata": { - "scriptContent": "tsc --noEmit", - "runCommand": "pnpm run check-types" - }, - "configurations": {}, - "parallelism": true, - "cache": true - }, - "build": { - "executor": "nx:run-script", - "options": { - "script": "build" - }, - "metadata": { - "scriptContent": "bati-compile-boilerplate", - "runCommand": "pnpm run build" - }, - "configurations": {}, - "parallelism": true, - "cache": true, - "dependsOn": [ - "^build" - ], - "inputs": [ - "default", - "^default" - ], - "outputs": [ - "{projectRoot}/dist/**" - ] - } - }, - "implicitDependencies": [] - } - }, - "@batijs/shared-db": { - "name": "@batijs/shared-db", - "type": "lib", - "data": { - "root": "boilerplates/shared-db", - "name": "@batijs/shared-db", - "tags": [ - "npm:private", - "type:boilerplate" - ], - "metadata": { - "targetGroups": { - "NPM Scripts": [ - "check-types", - "build" - ] - }, - "description": "", - "js": { - "packageName": "@batijs/shared-db", - "packageVersion": "0.0.1", - "packageExports": { - "./drizzle/dist/types/database/drizzle/db": { - "types": "./dist/types/drizzle/dist/types/database/drizzle/db.d.mts" - }, - "./server/db-middleware": { - "types": "./dist/types/server/db-middleware.d.mts" - }, - "./sqlite/dist/types/database/sqlite/db": { - "types": "./dist/types/sqlite/dist/types/database/sqlite/db.d.mts" - } - }, - "isInPackageManagerWorkspaces": true - } - }, - "targets": { - "check-types": { - "executor": "nx:run-script", - "options": { - "script": "check-types" - }, - "metadata": { - "scriptContent": "tsc --noEmit", - "runCommand": "pnpm run check-types" - }, - "configurations": {}, - "parallelism": true, - "cache": true - }, - "build": { - "executor": "nx:run-script", - "options": { - "script": "build" - }, - "metadata": { - "scriptContent": "bati-compile-boilerplate", - "runCommand": "pnpm run build" - }, - "configurations": {}, - "parallelism": true, - "cache": true, - "dependsOn": [ - "^build" - ], - "inputs": [ - "default", - "^default" - ], - "outputs": [ - "{projectRoot}/dist/**" - ] - } - }, - "implicitDependencies": [] - } - }, - "@batijs/storybook": { - "name": "@batijs/storybook", - "type": "app", - "data": { - "root": "boilerplates/storybook", - "name": "@batijs/storybook", - "tags": [ - "npm:private", - "type:boilerplate" - ], - "metadata": { - "targetGroups": { - "NPM Scripts": [ - "check-types", - "build" - ] - }, - "description": "", - "js": { - "packageName": "@batijs/storybook", - "packageVersion": "0.0.1", - "isInPackageManagerWorkspaces": true - } - }, - "targets": { - "check-types": { - "executor": "nx:run-script", - "options": { - "script": "check-types" - }, - "metadata": { - "scriptContent": "tsc --noEmit", - "runCommand": "pnpm run check-types" - }, - "configurations": {}, - "parallelism": true, - "cache": true - }, - "build": { - "executor": "nx:run-script", - "options": { - "script": "build" - }, - "metadata": { - "scriptContent": "bati-compile-boilerplate", - "runCommand": "pnpm run build" - }, - "configurations": {}, - "parallelism": true, - "cache": true, - "dependsOn": [ - "^build" - ], - "inputs": [ - "default", - "^default" - ], - "outputs": [ - "{projectRoot}/dist/**" - ] - } - }, - "implicitDependencies": [] - } - }, - "@batijs/compiled": { - "name": "@batijs/compiled", - "type": "app", - "data": { - "root": "boilerplates/compiled", - "name": "@batijs/compiled", - "tags": [ - "npm:private", - "type:boilerplate" - ], - "metadata": { - "targetGroups": { - "NPM Scripts": [ - "check-types", - "build" - ] - }, - "description": "", - "js": { - "packageName": "@batijs/compiled", - "packageVersion": "0.0.1", - "isInPackageManagerWorkspaces": true - } - }, - "targets": { - "check-types": { - "executor": "nx:run-script", - "options": { - "script": "check-types" - }, - "metadata": { - "scriptContent": "tsc --noEmit", - "runCommand": "pnpm run check-types" - }, - "configurations": {}, - "parallelism": true, - "cache": true - }, - "build": { - "executor": "nx:run-script", - "options": { - "script": "build" - }, - "metadata": { - "scriptContent": "bati-compile-boilerplate", - "runCommand": "pnpm run build" - }, - "configurations": {}, - "parallelism": true, - "cache": true, - "dependsOn": [ - "^build" - ], - "inputs": [ - "default", - "^default" - ], - "outputs": [ - "{projectRoot}/dist/**" - ] - } - }, - "implicitDependencies": [] - } - }, - "@batijs/prettier": { - "name": "@batijs/prettier", - "type": "app", - "data": { - "root": "boilerplates/prettier", - "name": "@batijs/prettier", - "tags": [ - "npm:private", - "type:boilerplate" - ], - "metadata": { - "targetGroups": { - "NPM Scripts": [ - "check-types", - "build" - ] - }, - "description": "", - "js": { - "packageName": "@batijs/prettier", - "packageVersion": "0.0.1", - "isInPackageManagerWorkspaces": true - } - }, - "targets": { - "check-types": { - "executor": "nx:run-script", - "options": { - "script": "check-types" - }, - "metadata": { - "scriptContent": "tsc --noEmit", - "runCommand": "pnpm run check-types" - }, - "configurations": {}, - "parallelism": true, - "cache": true - }, - "build": { - "executor": "nx:run-script", - "options": { - "script": "build" - }, - "metadata": { - "scriptContent": "bati-compile-boilerplate", - "runCommand": "pnpm run build" - }, - "configurations": {}, - "parallelism": true, - "cache": true, - "dependsOn": [ - "^build" - ], - "inputs": [ - "default", - "^default" - ], - "outputs": [ - "{projectRoot}/dist/**" - ] - } - }, - "implicitDependencies": [] - } - }, - "@batijs/telefunc": { - "name": "@batijs/telefunc", - "type": "lib", - "data": { - "root": "boilerplates/telefunc", - "name": "@batijs/telefunc", - "tags": [ - "npm:private", - "type:boilerplate" - ], - "metadata": { - "targetGroups": { - "NPM Scripts": [ - "check-types", - "build" - ] - }, - "description": "", - "js": { - "packageName": "@batijs/telefunc", - "packageVersion": "0.0.1", - "packageExports": { - "./pages/todo/TodoList.telefunc": { - "types": "./dist/types/pages/todo/TodoList.telefunc.d.mts" - }, - "./server/telefunc-handler": { - "types": "./dist/types/server/telefunc-handler.d.mts" - } - }, - "isInPackageManagerWorkspaces": true - } - }, - "targets": { - "check-types": { - "executor": "nx:run-script", - "options": { - "script": "check-types" - }, - "metadata": { - "scriptContent": "tsc --noEmit", - "runCommand": "pnpm run check-types" - }, - "configurations": {}, - "parallelism": true, - "cache": true - }, - "build": { - "executor": "nx:run-script", - "options": { - "script": "build" - }, - "metadata": { - "scriptContent": "bati-compile-boilerplate", - "runCommand": "pnpm run build" - }, - "configurations": {}, - "parallelism": true, - "cache": true, - "dependsOn": [ - "^build" - ], - "inputs": [ - "default", - "^default" - ], - "outputs": [ - "{projectRoot}/dist/**" - ] - } - }, - "implicitDependencies": [] - } - }, - "@batijs/drizzle": { - "name": "@batijs/drizzle", - "type": "lib", - "data": { - "root": "boilerplates/drizzle", - "name": "@batijs/drizzle", - "tags": [ - "npm:private", - "type:boilerplate" - ], - "metadata": { - "targetGroups": { - "NPM Scripts": [ - "check-types", - "build" - ] - }, - "description": "", - "js": { - "packageName": "@batijs/drizzle", - "packageVersion": "0.0.1", - "packageExports": { - "./database/drizzle/db": { - "types": "./dist/types/database/drizzle/db.d.mts" - }, - "./database/drizzle/queries/todos": { - "types": "./dist/types/database/drizzle/queries/todos.d.mts" - }, - "./database/drizzle/schema/todos": { - "types": "./dist/types/database/drizzle/schema/todos.d.mts" - }, - "./drizzle.config": { - "types": "./dist/types/drizzle.config.d.mts" - } - }, - "isInPackageManagerWorkspaces": true - } - }, - "targets": { - "check-types": { - "executor": "nx:run-script", - "options": { - "script": "check-types" - }, - "metadata": { - "scriptContent": "tsc --noEmit", - "runCommand": "pnpm run check-types" - }, - "configurations": {}, - "parallelism": true, - "cache": true - }, - "build": { - "executor": "nx:run-script", - "options": { - "script": "build" - }, - "metadata": { - "scriptContent": "bati-compile-boilerplate", - "runCommand": "pnpm run build" - }, - "configurations": {}, - "parallelism": true, - "cache": true, - "dependsOn": [ - "^build" - ], - "inputs": [ - "default", - "^default" - ], - "outputs": [ - "{projectRoot}/dist/**" - ] - } - }, - "implicitDependencies": [] - } - }, - "@batijs/express": { - "name": "@batijs/express", - "type": "lib", - "data": { - "root": "boilerplates/express", - "name": "@batijs/express", - "tags": [ - "npm:private", - "type:boilerplate" - ], - "metadata": { - "targetGroups": { - "NPM Scripts": [ - "check-types", - "build" - ] - }, - "description": "", - "js": { - "packageName": "@batijs/express", - "packageVersion": "0.0.1", - "packageExports": { - "./server/entry": { - "types": "./dist/types/server/entry.d.mts" - } - }, - "isInPackageManagerWorkspaces": true - } - }, - "targets": { - "check-types": { - "executor": "nx:run-script", - "options": { - "script": "check-types" - }, - "metadata": { - "scriptContent": "tsc --noEmit", - "runCommand": "pnpm run check-types" - }, - "configurations": {}, - "parallelism": true, - "cache": true - }, - "build": { - "executor": "nx:run-script", - "options": { - "script": "build" - }, - "metadata": { - "scriptContent": "bati-compile-boilerplate", - "runCommand": "pnpm run build" - }, - "configurations": {}, - "parallelism": true, - "cache": true, - "dependsOn": [ - "^build" - ], - "inputs": [ - "default", - "^default" - ], - "outputs": [ - "{projectRoot}/dist/**" - ] - } - }, - "implicitDependencies": [] - } - }, - "@batijs/fastify": { - "name": "@batijs/fastify", - "type": "lib", - "data": { - "root": "boilerplates/fastify", - "name": "@batijs/fastify", - "tags": [ - "npm:private", - "type:boilerplate" - ], - "metadata": { - "targetGroups": { - "NPM Scripts": [ - "check-types", - "build" - ] - }, - "description": "", - "js": { - "packageName": "@batijs/fastify", - "packageVersion": "0.0.1", - "packageExports": { - "./server/entry": { - "types": "./dist/types/server/entry.d.mts" - } - }, - "isInPackageManagerWorkspaces": true - } - }, - "targets": { - "check-types": { - "executor": "nx:run-script", - "options": { - "script": "check-types" - }, - "metadata": { - "scriptContent": "tsc --noEmit", - "runCommand": "pnpm run check-types" - }, - "configurations": {}, - "parallelism": true, - "cache": true - }, - "build": { - "executor": "nx:run-script", - "options": { - "script": "build" - }, - "metadata": { - "scriptContent": "bati-compile-boilerplate", - "runCommand": "pnpm run build" - }, - "configurations": {}, - "parallelism": true, - "cache": true, - "dependsOn": [ - "^build" - ], - "inputs": [ - "default", - "^default" - ], - "outputs": [ - "{projectRoot}/dist/**" - ] - } - }, - "implicitDependencies": [] - } - }, - "@batijs/mantine": { - "name": "@batijs/mantine", - "type": "lib", - "data": { - "root": "boilerplates/mantine", - "name": "@batijs/mantine", - "tags": [ - "npm:private", - "type:boilerplate" - ], - "metadata": { - "targetGroups": { - "NPM Scripts": [ - "check-types", - "build" - ] - }, - "description": "", - "js": { - "packageName": "@batijs/mantine", - "packageVersion": "0.0.1", - "packageExports": { - "./components/Link": { - "types": "./dist/types/components/Link.d.mts" - }, - "./pages/+Layout": { - "types": "./dist/types/pages/+Layout.d.mts" - } - }, - "isInPackageManagerWorkspaces": true - } - }, - "targets": { - "check-types": { - "executor": "nx:run-script", - "options": { - "script": "check-types" - }, - "metadata": { - "scriptContent": "tsc --noEmit", - "runCommand": "pnpm run check-types" - }, - "configurations": {}, - "parallelism": true, - "cache": true - }, - "build": { - "executor": "nx:run-script", - "options": { - "script": "build" - }, - "metadata": { - "scriptContent": "bati-compile-boilerplate", - "runCommand": "pnpm run build" - }, - "configurations": {}, - "parallelism": true, - "cache": true, - "dependsOn": [ - "^build" - ], - "inputs": [ - "default", - "^default" - ], - "outputs": [ - "{projectRoot}/dist/**" - ] - } - }, - "implicitDependencies": [] - } - }, - "@batijs/tests-utils": { - "name": "@batijs/tests-utils", - "type": "lib", - "data": { - "root": "packages/tests-utils", - "name": "@batijs/tests-utils", - "tags": [ - "npm:private" - ], - "metadata": { - "targetGroups": { - "NPM Scripts": [ - "check-types", - "build" - ] - }, - "description": "Next-gen scaffolder. Get started with fully-functional apps, and choose any tool you want", - "js": { - "packageName": "@batijs/tests-utils", - "packageVersion": "0.0.599", - "packageExports": { - ".": "./dist/index.js" - }, - "packageMain": "./dist/index.js", - "isInPackageManagerWorkspaces": true - } - }, - "targets": { - "check-types": { - "executor": "nx:run-script", - "options": { - "script": "check-types" - }, - "metadata": { - "scriptContent": "tsc --noEmit", - "runCommand": "pnpm run check-types" - }, - "configurations": {}, - "parallelism": true, - "cache": true - }, - "build": { - "executor": "nx:run-script", - "options": { - "script": "build" - }, - "metadata": { - "scriptContent": "tsdown", - "runCommand": "pnpm run build" - }, - "configurations": {}, - "parallelism": true, - "cache": true, - "dependsOn": [ - "^build" - ], - "inputs": [ - "default", - "^default" - ], - "outputs": [ - "{projectRoot}/dist/**" - ] - } - }, - "implicitDependencies": [] - } - }, - "@batijs/ts-rest": { - "name": "@batijs/ts-rest", - "type": "lib", - "data": { - "root": "boilerplates/ts-rest", - "name": "@batijs/ts-rest", - "tags": [ - "npm:private", - "type:boilerplate" - ], - "metadata": { - "targetGroups": { - "NPM Scripts": [ - "check-types", - "build" - ] - }, - "description": "", - "js": { - "packageName": "@batijs/ts-rest", - "packageVersion": "0.0.1", - "packageExports": { - "./server/ts-rest-handler": { - "types": "./dist/types/server/ts-rest-handler.d.mts" - }, - "./ts-rest/client": { - "types": "./dist/types/ts-rest/client.d.mts" - }, - "./ts-rest/contract": { - "types": "./dist/types/ts-rest/contract.d.mts" - } - }, - "isInPackageManagerWorkspaces": true - } - }, - "targets": { - "check-types": { - "executor": "nx:run-script", - "options": { - "script": "check-types" - }, - "metadata": { - "scriptContent": "tsc --noEmit", - "runCommand": "pnpm run check-types" - }, - "configurations": {}, - "parallelism": true, - "cache": true - }, - "build": { - "executor": "nx:run-script", - "options": { - "script": "build" - }, - "metadata": { - "scriptContent": "bati-compile-boilerplate", - "runCommand": "pnpm run build" - }, - "configurations": {}, - "parallelism": true, - "cache": true, - "dependsOn": [ - "^build" - ], - "inputs": [ - "default", - "^default" - ], - "outputs": [ - "{projectRoot}/dist/**" - ] - } - }, - "implicitDependencies": [] - } - }, - "create-vike": { - "name": "create-vike", - "type": "lib", - "data": { - "root": "packages/create-bati", - "name": "create-vike", - "tags": [ - "npm:public" - ], - "metadata": { - "targetGroups": {}, - "description": "Next-gen scaffolder. Get started with fully-functional apps, and choose any tool you want", - "js": { - "packageName": "create-vike", - "packageVersion": "0.0.599", - "isInPackageManagerWorkspaces": true - } - }, - "targets": {}, - "implicitDependencies": [] - } - }, - "@batijs/authjs": { - "name": "@batijs/authjs", - "type": "lib", - "data": { - "root": "boilerplates/authjs", - "name": "@batijs/authjs", - "tags": [ - "npm:private", - "type:boilerplate" - ], - "metadata": { - "targetGroups": { - "NPM Scripts": [ - "check-types", - "build" - ] - }, - "description": "", - "js": { - "packageName": "@batijs/authjs", - "packageVersion": "0.0.1", - "packageExports": { - "./server/authjs-handler": { - "types": "./dist/types/server/authjs-handler.d.mts" - } - }, - "isInPackageManagerWorkspaces": true - } - }, - "targets": { - "check-types": { - "executor": "nx:run-script", - "options": { - "script": "check-types" - }, - "metadata": { - "scriptContent": "tsc --noEmit", - "runCommand": "pnpm run check-types" - }, - "configurations": {}, - "parallelism": true, - "cache": true - }, - "build": { - "executor": "nx:run-script", - "options": { - "script": "build" - }, - "metadata": { - "scriptContent": "bati-compile-boilerplate", - "runCommand": "pnpm run build" - }, - "configurations": {}, - "parallelism": true, - "cache": true, - "dependsOn": [ - "^build" - ], - "inputs": [ - "default", - "^default" - ], - "outputs": [ - "{projectRoot}/dist/**" - ] - } - }, - "implicitDependencies": [] - } - }, - "@batijs/eslint": { - "name": "@batijs/eslint", - "type": "lib", - "data": { - "root": "boilerplates/eslint", - "name": "@batijs/eslint", - "tags": [ - "npm:private", - "type:boilerplate" - ], - "metadata": { - "targetGroups": { - "NPM Scripts": [ - "check-types", - "build" - ] - }, - "description": "", - "js": { - "packageName": "@batijs/eslint", - "packageVersion": "0.0.1", - "packageExports": { - "./eslint.config": { - "types": "./dist/types/eslint.config.d.mts" - } - }, - "isInPackageManagerWorkspaces": true - } - }, - "targets": { - "check-types": { - "executor": "nx:run-script", - "options": { - "script": "check-types" - }, - "metadata": { - "scriptContent": "tsc --noEmit", - "runCommand": "pnpm run check-types" - }, - "configurations": {}, - "parallelism": true, - "cache": true - }, - "build": { - "executor": "nx:run-script", - "options": { - "script": "build" - }, - "metadata": { - "scriptContent": "bati-compile-boilerplate", - "runCommand": "pnpm run build" - }, - "configurations": {}, - "parallelism": true, - "cache": true, - "dependsOn": [ - "^build" - ], - "inputs": [ - "default", - "^default" - ], - "outputs": [ - "{projectRoot}/dist/**" - ] - } - }, - "implicitDependencies": [] - } - }, - "@batijs/kysely": { - "name": "@batijs/kysely", - "type": "lib", - "data": { - "root": "boilerplates/kysely", - "name": "@batijs/kysely", - "tags": [ - "npm:private", - "type:boilerplate" - ], - "metadata": { - "targetGroups": { - "NPM Scripts": [ - "check-types", - "build" - ] - }, - "description": "", - "js": { - "packageName": "@batijs/kysely", - "packageVersion": "0.0.1", - "packageExports": { - "./database/kysely/db": { - "types": "./dist/types/database/kysely/db.d.mts" - }, - "./database/kysely/migrate": { - "types": "./dist/types/database/kysely/migrate.d.mts" - }, - "./database/kysely/migrations/001_create_todos_table": { - "types": "./dist/types/database/kysely/migrations/001_create_todos_table.d.mts" - }, - "./database/kysely/queries/todos": { - "types": "./dist/types/database/kysely/queries/todos.d.mts" - }, - "./database/kysely/types": { - "types": "./dist/types/database/kysely/types.d.mts" - } - }, - "isInPackageManagerWorkspaces": true - } - }, - "targets": { - "check-types": { - "executor": "nx:run-script", - "options": { - "script": "check-types" - }, - "metadata": { - "scriptContent": "tsc --noEmit", - "runCommand": "pnpm run check-types" - }, - "configurations": {}, - "parallelism": true, - "cache": true - }, - "build": { - "executor": "nx:run-script", - "options": { - "script": "build" - }, - "metadata": { - "scriptContent": "bati-compile-boilerplate", - "runCommand": "pnpm run build" - }, - "configurations": {}, - "parallelism": true, - "cache": true, - "dependsOn": [ - "^build" - ], - "inputs": [ - "default", - "^default" - ], - "outputs": [ - "{projectRoot}/dist/**" - ] - } - }, - "implicitDependencies": [] - } - }, - "@batijs/oxlint": { - "name": "@batijs/oxlint", - "type": "app", - "data": { - "root": "boilerplates/oxlint", - "name": "@batijs/oxlint", - "tags": [ - "npm:private", - "type:boilerplate" - ], - "metadata": { - "targetGroups": { - "NPM Scripts": [ - "check-types", - "build" - ] - }, - "description": "", - "js": { - "packageName": "@batijs/oxlint", - "packageVersion": "0.0.1", - "isInPackageManagerWorkspaces": true - } - }, - "targets": { - "check-types": { - "executor": "nx:run-script", - "options": { - "script": "check-types" - }, - "metadata": { - "scriptContent": "tsc --noEmit", - "runCommand": "pnpm run check-types" - }, - "configurations": {}, - "parallelism": true, - "cache": true - }, - "build": { - "executor": "nx:run-script", - "options": { - "script": "build" - }, - "metadata": { - "scriptContent": "bati-compile-boilerplate", - "runCommand": "pnpm run build" - }, - "configurations": {}, - "parallelism": true, - "cache": true, - "dependsOn": [ - "^build" - ], - "inputs": [ - "default", - "^default" - ], - "outputs": [ - "{projectRoot}/dist/**" - ] - } - }, - "implicitDependencies": [] - } - }, - "@batijs/photon": { - "name": "@batijs/photon", - "type": "app", - "data": { - "root": "boilerplates/photon", - "name": "@batijs/photon", - "tags": [ - "npm:private", - "type:boilerplate" - ], - "metadata": { - "targetGroups": { - "NPM Scripts": [ - "check-types", - "build" - ] - }, - "description": "", - "js": { - "packageName": "@batijs/photon", - "packageVersion": "0.0.1", - "isInPackageManagerWorkspaces": true - } - }, - "targets": { - "check-types": { - "executor": "nx:run-script", - "options": { - "script": "check-types" - }, - "metadata": { - "scriptContent": "tsc --noEmit", - "runCommand": "pnpm run check-types" - }, - "configurations": {}, - "parallelism": true, - "cache": true - }, - "build": { - "executor": "nx:run-script", - "options": { - "script": "build" - }, - "metadata": { - "scriptContent": "bati-compile-boilerplate", - "runCommand": "pnpm run build" - }, - "configurations": {}, - "parallelism": true, - "cache": true, - "dependsOn": [ - "^build" - ], - "inputs": [ - "default", - "^default" - ], - "outputs": [ - "{projectRoot}/dist/**" - ] - } - }, - "implicitDependencies": [] - } - }, - "@batijs/prisma": { - "name": "@batijs/prisma", - "type": "app", - "data": { - "root": "boilerplates/prisma", - "name": "@batijs/prisma", - "tags": [ - "npm:private", - "type:boilerplate" - ], - "metadata": { - "targetGroups": { - "NPM Scripts": [ - "check-types", - "build" - ] - }, - "description": "", - "js": { - "packageName": "@batijs/prisma", - "packageVersion": "0.0.1", - "isInPackageManagerWorkspaces": true - } - }, - "targets": { - "check-types": { - "executor": "nx:run-script", - "options": { - "script": "check-types" - }, - "metadata": { - "scriptContent": "tsc --noEmit", - "runCommand": "pnpm run check-types" - }, - "configurations": {}, - "parallelism": true, - "cache": true - }, - "build": { - "executor": "nx:run-script", - "options": { - "script": "build" - }, - "metadata": { - "scriptContent": "bati-compile-boilerplate", - "runCommand": "pnpm run build" - }, - "configurations": {}, - "parallelism": true, - "cache": true, - "dependsOn": [ - "^build" - ], - "inputs": [ - "default", - "^default" - ], - "outputs": [ - "{projectRoot}/dist/**" - ] - } - }, - "implicitDependencies": [] - } - }, - "@batijs/sentry": { - "name": "@batijs/sentry", - "type": "app", - "data": { - "root": "boilerplates/sentry", - "name": "@batijs/sentry", - "tags": [ - "npm:private", - "type:boilerplate" - ], - "metadata": { - "targetGroups": { - "NPM Scripts": [ - "check-types", - "build" - ] - }, - "description": "", - "js": { - "packageName": "@batijs/sentry", - "packageVersion": "0.0.1", - "isInPackageManagerWorkspaces": true - } - }, - "targets": { - "check-types": { - "executor": "nx:run-script", - "options": { - "script": "check-types" - }, - "metadata": { - "scriptContent": "tsc --noEmit", - "runCommand": "pnpm run check-types" - }, - "configurations": {}, - "parallelism": true, - "cache": true - }, - "build": { - "executor": "nx:run-script", - "options": { - "script": "build" - }, - "metadata": { - "scriptContent": "bati-compile-boilerplate", - "runCommand": "pnpm run build" - }, - "configurations": {}, - "parallelism": true, - "cache": true, - "dependsOn": [ - "^build" - ], - "inputs": [ - "default", - "^default" - ], - "outputs": [ - "{projectRoot}/dist/**" - ] - } - }, - "implicitDependencies": [] - } - }, - "@batijs/shared": { - "name": "@batijs/shared", - "type": "lib", - "data": { - "root": "boilerplates/shared", - "name": "@batijs/shared", - "tags": [ - "npm:private", - "type:boilerplate" - ], - "metadata": { - "targetGroups": { - "NPM Scripts": [ - "check-types", - "build" - ] - }, - "description": "", - "js": { - "packageName": "@batijs/shared", - "packageVersion": "0.0.1", - "packageExports": { - "./vite.config": { - "types": "./dist/types/vite.config.d.mts" - } - }, - "isInPackageManagerWorkspaces": true - } - }, - "targets": { - "check-types": { - "executor": "nx:run-script", - "options": { - "script": "check-types" - }, - "metadata": { - "scriptContent": "tsc --noEmit", - "runCommand": "pnpm run check-types" - }, - "configurations": {}, - "parallelism": true, - "cache": true - }, - "build": { - "executor": "nx:run-script", - "options": { - "script": "build" - }, - "metadata": { - "scriptContent": "bati-compile-boilerplate", - "runCommand": "pnpm run build" - }, - "configurations": {}, - "parallelism": true, - "cache": true, - "dependsOn": [ - "^build" - ], - "inputs": [ - "default", - "^default" - ], - "outputs": [ - "{projectRoot}/dist/**" - ] - } - }, - "implicitDependencies": [] - } - }, - "@batijs/sqlite": { - "name": "@batijs/sqlite", - "type": "lib", - "data": { - "root": "boilerplates/sqlite", - "name": "@batijs/sqlite", - "tags": [ - "npm:private", - "type:boilerplate" - ], - "metadata": { - "targetGroups": { - "NPM Scripts": [ - "check-types", - "build" - ] - }, - "description": "", - "js": { - "packageName": "@batijs/sqlite", - "packageVersion": "0.0.1", - "packageExports": { - "./database/sqlite/db": { - "types": "./dist/types/database/sqlite/db.d.mts" - }, - "./database/sqlite/queries/todos": { - "types": "./dist/types/database/sqlite/queries/todos.d.mts" - }, - "./database/sqlite/schema/all": { - "types": "./dist/types/database/sqlite/schema/all.d.mts" - }, - "./database/sqlite/schema/todos": { - "types": "./dist/types/database/sqlite/schema/todos.d.mts" - } - }, - "isInPackageManagerWorkspaces": true - } - }, - "targets": { - "check-types": { - "executor": "nx:run-script", - "options": { - "script": "check-types" - }, - "metadata": { - "scriptContent": "tsc --noEmit", - "runCommand": "pnpm run check-types" - }, - "configurations": {}, - "parallelism": true, - "cache": true - }, - "build": { - "executor": "nx:run-script", - "options": { - "script": "build" - }, - "metadata": { - "scriptContent": "bati-compile-boilerplate", - "runCommand": "pnpm run build" - }, - "configurations": {}, - "parallelism": true, - "cache": true, - "dependsOn": [ - "^build" - ], - "inputs": [ - "default", - "^default" - ], - "outputs": [ - "{projectRoot}/dist/**" - ] - } - }, - "implicitDependencies": [] - } - }, - "@batijs/vercel": { - "name": "@batijs/vercel", - "type": "app", - "data": { - "root": "boilerplates/vercel", - "name": "@batijs/vercel", - "tags": [ - "npm:private", - "type:boilerplate" - ], - "metadata": { - "targetGroups": { - "NPM Scripts": [ - "check-types", - "build" - ] - }, - "description": "", - "js": { - "packageName": "@batijs/vercel", - "packageVersion": "0.0.1", - "isInPackageManagerWorkspaces": true - } - }, - "targets": { - "check-types": { - "executor": "nx:run-script", - "options": { - "script": "check-types" - }, - "metadata": { - "scriptContent": "tsc --noEmit", - "runCommand": "pnpm run check-types" - }, - "configurations": {}, - "parallelism": true, - "cache": true - }, - "build": { - "executor": "nx:run-script", - "options": { - "script": "build" - }, - "metadata": { - "scriptContent": "bati-compile-boilerplate", - "runCommand": "pnpm run build" - }, - "configurations": {}, - "parallelism": true, - "cache": true, - "dependsOn": [ - "^build" - ], - "inputs": [ - "default", - "^default" - ], - "outputs": [ - "{projectRoot}/dist/**" - ] - } - }, - "implicitDependencies": [] - } - }, - "@batijs/auth0": { - "name": "@batijs/auth0", - "type": "app", - "data": { - "root": "boilerplates/auth0", - "name": "@batijs/auth0", - "tags": [ - "npm:private", - "type:boilerplate" - ], - "metadata": { - "targetGroups": { - "NPM Scripts": [ - "check-types", - "build" - ] - }, - "description": "", - "js": { - "packageName": "@batijs/auth0", - "packageVersion": "0.0.1", - "isInPackageManagerWorkspaces": true - } - }, - "targets": { - "check-types": { - "executor": "nx:run-script", - "options": { - "script": "check-types" - }, - "metadata": { - "scriptContent": "tsc --noEmit", - "runCommand": "pnpm run check-types" - }, - "configurations": {}, - "parallelism": true, - "cache": true - }, - "build": { - "executor": "nx:run-script", - "options": { - "script": "build" - }, - "metadata": { - "scriptContent": "bati-compile-boilerplate", - "runCommand": "pnpm run build" - }, - "configurations": {}, - "parallelism": true, - "cache": true, - "dependsOn": [ - "^build" - ], - "inputs": [ - "default", - "^default" - ], - "outputs": [ - "{projectRoot}/dist/**" - ] - } - }, - "implicitDependencies": [] - } - }, - "@batijs/biome": { - "name": "@batijs/biome", - "type": "app", - "data": { - "root": "boilerplates/biome", - "name": "@batijs/biome", - "tags": [ - "npm:private", - "type:boilerplate" - ], - "metadata": { - "targetGroups": { - "NPM Scripts": [ - "check-types", - "build" - ] - }, - "description": "", - "js": { - "packageName": "@batijs/biome", - "packageVersion": "0.0.1", - "isInPackageManagerWorkspaces": true - } - }, - "targets": { - "check-types": { - "executor": "nx:run-script", - "options": { - "script": "check-types" - }, - "metadata": { - "scriptContent": "tsc --noEmit", - "runCommand": "pnpm run check-types" - }, - "configurations": {}, - "parallelism": true, - "cache": true - }, - "build": { - "executor": "nx:run-script", - "options": { - "script": "build" - }, - "metadata": { - "scriptContent": "bati-compile-boilerplate", - "runCommand": "pnpm run build" - }, - "configurations": {}, - "parallelism": true, - "cache": true, - "dependsOn": [ - "^build" - ], - "inputs": [ - "default", - "^default" - ], - "outputs": [ - "{projectRoot}/dist/**" - ] - } - }, - "implicitDependencies": [] - } - }, - "@batijs/react": { - "name": "@batijs/react", - "type": "lib", - "data": { - "root": "boilerplates/react", - "name": "@batijs/react", - "tags": [ - "npm:private", - "type:boilerplate" - ], - "metadata": { - "targetGroups": { - "NPM Scripts": [ - "check-types", - "build" - ] - }, - "description": "", - "js": { - "packageName": "@batijs/react", - "packageVersion": "0.0.1", - "packageExports": { - "./components/Link": { - "types": "./dist/types/components/Link.d.mts" - }, - "./pages/_error/+Page": { - "types": "./dist/types/pages/_error/+Page.d.mts" - }, - "./pages/+config": { - "types": "./dist/types/pages/+config.d.mts" - }, - "./pages/+Head": { - "types": "./dist/types/pages/+Head.d.mts" - }, - "./pages/+Layout": { - "types": "./dist/types/pages/+Layout.d.mts" - }, - "./pages/+onPageTransitionEnd": { - "types": "./dist/types/pages/+onPageTransitionEnd.d.mts" - }, - "./pages/+onPageTransitionStart": { - "types": "./dist/types/pages/+onPageTransitionStart.d.mts" - }, - "./pages/index/+Page": { - "types": "./dist/types/pages/index/+Page.d.mts" - }, - "./pages/index/Counter": { - "types": "./dist/types/pages/index/Counter.d.mts" - }, - "./pages/star-wars/@id/+data": { - "types": "./dist/types/pages/star-wars/@id/+data.d.mts" - }, - "./pages/star-wars/@id/+Page": { - "types": "./dist/types/pages/star-wars/@id/+Page.d.mts" - }, - "./pages/star-wars/index/+data": { - "types": "./dist/types/pages/star-wars/index/+data.d.mts" - }, - "./pages/star-wars/index/+Page": { - "types": "./dist/types/pages/star-wars/index/+Page.d.mts" - }, - "./pages/star-wars/types": { - "types": "./dist/types/pages/star-wars/types.d.mts" - }, - "./pages/todo/+Page": { - "types": "./dist/types/pages/todo/+Page.d.mts" - }, - "./pages/todo/TodoList": { - "types": "./dist/types/pages/todo/TodoList.d.mts" - } - }, - "isInPackageManagerWorkspaces": true - } - }, - "targets": { - "check-types": { - "executor": "nx:run-script", - "options": { - "script": "check-types" - }, - "metadata": { - "scriptContent": "tsc --noEmit", - "runCommand": "pnpm run check-types" - }, - "configurations": {}, - "parallelism": true, - "cache": true - }, - "build": { - "executor": "nx:run-script", - "options": { - "script": "build" - }, - "metadata": { - "scriptContent": "bati-compile-boilerplate", - "runCommand": "pnpm run build" - }, - "configurations": {}, - "parallelism": true, - "cache": true, - "dependsOn": [ - "^build" - ], - "inputs": [ - "default", - "^default" - ], - "outputs": [ - "{projectRoot}/dist/**" - ] - } - }, - "implicitDependencies": [] - } - }, - "@batijs/solid": { - "name": "@batijs/solid", - "type": "lib", - "data": { - "root": "boilerplates/solid", - "name": "@batijs/solid", - "tags": [ - "npm:private", - "type:boilerplate" - ], - "metadata": { - "targetGroups": { - "NPM Scripts": [ - "check-types", - "build" - ] - }, - "description": "", - "js": { - "packageName": "@batijs/solid", - "packageVersion": "0.0.1", - "packageExports": { - "./components/Link": { - "types": "./dist/types/components/Link.d.mts" - }, - "./pages/_error/+Page": { - "types": "./dist/types/pages/_error/+Page.d.mts" - }, - "./pages/+config": { - "types": "./dist/types/pages/+config.d.mts" - }, - "./pages/+Head": { - "types": "./dist/types/pages/+Head.d.mts" - }, - "./pages/+Layout": { - "types": "./dist/types/pages/+Layout.d.mts" - }, - "./pages/+onPageTransitionEnd": { - "types": "./dist/types/pages/+onPageTransitionEnd.d.mts" - }, - "./pages/+onPageTransitionStart": { - "types": "./dist/types/pages/+onPageTransitionStart.d.mts" - }, - "./pages/index/+Page": { - "types": "./dist/types/pages/index/+Page.d.mts" - }, - "./pages/index/Counter": { - "types": "./dist/types/pages/index/Counter.d.mts" - }, - "./pages/star-wars/@id/+data": { - "types": "./dist/types/pages/star-wars/@id/+data.d.mts" - }, - "./pages/star-wars/@id/+Page": { - "types": "./dist/types/pages/star-wars/@id/+Page.d.mts" - }, - "./pages/star-wars/index/+data": { - "types": "./dist/types/pages/star-wars/index/+data.d.mts" - }, - "./pages/star-wars/index/+Page": { - "types": "./dist/types/pages/star-wars/index/+Page.d.mts" - }, - "./pages/star-wars/types": { - "types": "./dist/types/pages/star-wars/types.d.mts" - }, - "./pages/todo/+Page": { - "types": "./dist/types/pages/todo/+Page.d.mts" - }, - "./pages/todo/TodoList": { - "types": "./dist/types/pages/todo/TodoList.d.mts" - } - }, - "isInPackageManagerWorkspaces": true - } - }, - "targets": { - "check-types": { - "executor": "nx:run-script", - "options": { - "script": "check-types" - }, - "metadata": { - "scriptContent": "tsc --noEmit", - "runCommand": "pnpm run check-types" - }, - "configurations": {}, - "parallelism": true, - "cache": true - }, - "build": { - "executor": "nx:run-script", - "options": { - "script": "build" - }, - "metadata": { - "scriptContent": "bati-compile-boilerplate", - "runCommand": "pnpm run build" - }, - "configurations": {}, - "parallelism": true, - "cache": true, - "dependsOn": [ - "^build" - ], - "inputs": [ - "default", - "^default" - ], - "outputs": [ - "{projectRoot}/dist/**" - ] - } - }, - "implicitDependencies": [] - } - }, - "@batijs/features": { - "name": "@batijs/features", - "type": "lib", - "data": { - "root": "packages/features", - "name": "@batijs/features", - "tags": [ - "npm:public" - ], - "metadata": { - "targetGroups": { - "NPM Scripts": [ - "test", - "test:ci", - "prepublishOnly", - "build", - "watch" - ] - }, - "description": "", - "js": { - "packageName": "@batijs/features", - "packageVersion": "0.0.599", - "packageExports": { - ".": "./dist/index.js", - "./rules": "./dist/rules.js" - }, - "packageMain": "./dist/index.js", - "isInPackageManagerWorkspaces": true - } - }, - "targets": { - "test": { - "executor": "nx:run-script", - "options": { - "script": "test" - }, - "metadata": { - "scriptContent": "vitest run", - "runCommand": "pnpm run test" - }, - "configurations": {}, - "parallelism": true, - "cache": true, - "dependsOn": [ - "build" - ] - }, - "test:ci": { - "executor": "nx:run-script", - "options": { - "script": "test:ci" - }, - "metadata": { - "scriptContent": "vitest run", - "runCommand": "pnpm run test:ci" - }, - "configurations": {}, - "parallelism": true - }, - "prepublishOnly": { - "executor": "nx:run-script", - "options": { - "script": "prepublishOnly" - }, - "metadata": { - "scriptContent": "nx run-many --target=build", - "runCommand": "pnpm run prepublishOnly" - }, - "configurations": {}, - "parallelism": true - }, - "build": { - "executor": "nx:run-script", - "options": { - "script": "build" - }, - "metadata": { - "scriptContent": "tsdown", - "runCommand": "pnpm run build" - }, - "configurations": {}, - "parallelism": true, - "cache": true, - "dependsOn": [ - "^build" - ], - "inputs": [ - "default", - "^default" - ], - "outputs": [ - "{projectRoot}/dist/**" - ] - }, - "watch": { - "executor": "nx:run-script", - "options": { - "script": "watch" - }, - "metadata": { - "scriptContent": "tsdown --watch", - "runCommand": "pnpm run watch" - }, - "configurations": {}, - "parallelism": true - } - }, - "implicitDependencies": [] - } - }, - "@batijs/hono": { - "name": "@batijs/hono", - "type": "lib", - "data": { - "root": "boilerplates/hono", - "name": "@batijs/hono", - "tags": [ - "npm:private", - "type:boilerplate" - ], - "metadata": { - "targetGroups": { - "NPM Scripts": [ - "check-types", - "build" - ] - }, - "description": "", - "js": { - "packageName": "@batijs/hono", - "packageVersion": "0.0.1", - "packageExports": { - "./entry_aws_lambda": { - "types": "./dist/types/entry_aws_lambda.d.mts" - }, - "./server/entry": { - "types": "./dist/types/server/entry.d.mts" - } - }, - "isInPackageManagerWorkspaces": true - } - }, - "targets": { - "check-types": { - "executor": "nx:run-script", - "options": { - "script": "check-types" - }, - "metadata": { - "scriptContent": "tsc --noEmit", - "runCommand": "pnpm run check-types" - }, - "configurations": {}, - "parallelism": true, - "cache": true - }, - "build": { - "executor": "nx:run-script", - "options": { - "script": "build" - }, - "metadata": { - "scriptContent": "bati-compile-boilerplate", - "runCommand": "pnpm run build" - }, - "configurations": {}, - "parallelism": true, - "cache": true, - "dependsOn": [ - "^build" - ], - "inputs": [ - "default", - "^default" - ], - "outputs": [ - "{projectRoot}/dist/**" - ] - } - }, - "implicitDependencies": [] - } - }, - "@batijs/pnpm": { - "name": "@batijs/pnpm", - "type": "app", - "data": { - "root": "boilerplates/pnpm", - "name": "@batijs/pnpm", - "tags": [ - "npm:private", - "type:boilerplate" - ], - "metadata": { - "targetGroups": { - "NPM Scripts": [ - "check-types", - "build" - ] - }, - "description": "", - "js": { - "packageName": "@batijs/pnpm", - "packageVersion": "0.0.1", - "isInPackageManagerWorkspaces": true - } - }, - "targets": { - "check-types": { - "executor": "nx:run-script", - "options": { - "script": "check-types" - }, - "metadata": { - "scriptContent": "tsc --noEmit", - "runCommand": "pnpm run check-types" - }, - "configurations": {}, - "parallelism": true, - "cache": true - }, - "build": { - "executor": "nx:run-script", - "options": { - "script": "build" - }, - "metadata": { - "scriptContent": "bati-compile-boilerplate", - "runCommand": "pnpm run build" - }, - "configurations": {}, - "parallelism": true, - "cache": true, - "dependsOn": [ - "^build" - ], - "inputs": [ - "default", - "^default" - ], - "outputs": [ - "{projectRoot}/dist/**" - ] - } - }, - "implicitDependencies": [] - } - }, - "@batijs/trpc": { - "name": "@batijs/trpc", - "type": "lib", - "data": { - "root": "boilerplates/trpc", - "name": "@batijs/trpc", - "tags": [ - "npm:private", - "type:boilerplate" - ], - "metadata": { - "targetGroups": { - "NPM Scripts": [ - "check-types", - "build" - ] - }, - "description": "", - "js": { - "packageName": "@batijs/trpc", - "packageVersion": "0.0.1", - "packageExports": { - "./server/trpc-handler": { - "types": "./dist/types/server/trpc-handler.d.mts" - }, - "./trpc/client": { - "types": "./dist/types/trpc/client.d.mts" - }, - "./trpc/server": { - "types": "./dist/types/trpc/server.d.mts" - } - }, - "isInPackageManagerWorkspaces": true - } - }, - "targets": { - "check-types": { - "executor": "nx:run-script", - "options": { - "script": "check-types" - }, - "metadata": { - "scriptContent": "tsc --noEmit", - "runCommand": "pnpm run check-types" - }, - "configurations": {}, - "parallelism": true, - "cache": true - }, - "build": { - "executor": "nx:run-script", - "options": { - "script": "build" - }, - "metadata": { - "scriptContent": "bati-compile-boilerplate", - "runCommand": "pnpm run build" - }, - "configurations": {}, - "parallelism": true, - "cache": true, - "dependsOn": [ - "^build" - ], - "inputs": [ - "default", - "^default" - ], - "outputs": [ - "{projectRoot}/dist/**" - ] - } - }, - "implicitDependencies": [] - } - }, - "@batijs/aws": { - "name": "@batijs/aws", - "type": "lib", - "data": { - "root": "boilerplates/aws", - "name": "@batijs/aws", - "tags": [ - "npm:private", - "type:boilerplate" - ], - "metadata": { - "targetGroups": { - "NPM Scripts": [ - "check-types", - "build" - ] - }, - "description": "", - "js": { - "packageName": "@batijs/aws", - "packageVersion": "0.0.1", - "packageExports": { - "./cdk/bin/infrastructure": { - "types": "./dist/types/cdk/bin/infrastructure.d.mts" - }, - "./cdk/lib/vike-stack": { - "types": "./dist/types/cdk/lib/vike-stack.d.mts" - }, - "./tests/aws_handler.spec": { - "types": "./dist/types/tests/aws_handler.spec.d.mts" - }, - "./vitest.config": { - "types": "./dist/types/vitest.config.d.mts" - } - }, - "isInPackageManagerWorkspaces": true - } - }, - "targets": { - "check-types": { - "executor": "nx:run-script", - "options": { - "script": "check-types" - }, - "metadata": { - "scriptContent": "tsc --noEmit", - "runCommand": "pnpm run check-types" - }, - "configurations": {}, - "parallelism": true, - "cache": true - }, - "build": { - "executor": "nx:run-script", - "options": { - "script": "build" - }, - "metadata": { - "scriptContent": "bati-compile-boilerplate", - "runCommand": "pnpm run build" - }, - "configurations": {}, - "parallelism": true, - "cache": true, - "dependsOn": [ - "^build" - ], - "inputs": [ - "default", - "^default" - ], - "outputs": [ - "{projectRoot}/dist/**" - ] - } - }, - "implicitDependencies": [] - } - }, - "@batijs/compile": { - "name": "@batijs/compile", - "type": "lib", - "data": { - "root": "packages/compile", - "name": "@batijs/compile", - "tags": [ - "npm:private" - ], - "metadata": { - "targetGroups": { - "NPM Scripts": [ - "check-types", - "prepublishOnly", - "build" - ] - }, - "description": "", - "js": { - "packageName": "@batijs/compile", - "packageVersion": "0.0.599", - "isInPackageManagerWorkspaces": true - } - }, - "targets": { - "check-types": { - "executor": "nx:run-script", - "options": { - "script": "check-types" - }, - "metadata": { - "scriptContent": "tsc --noEmit", - "runCommand": "pnpm run check-types" - }, - "configurations": {}, - "parallelism": true, - "cache": true - }, - "prepublishOnly": { - "executor": "nx:run-script", - "options": { - "script": "prepublishOnly" - }, - "metadata": { - "scriptContent": "nx run-many --target=build", - "runCommand": "pnpm run prepublishOnly" - }, - "configurations": {}, - "parallelism": true - }, - "build": { - "executor": "nx:run-script", - "options": { - "script": "build" - }, - "metadata": { - "scriptContent": "tsdown", - "runCommand": "pnpm run build" - }, - "configurations": {}, - "parallelism": true, - "cache": true, - "dependsOn": [ - "^build" - ], - "inputs": [ - "default", - "^default" - ], - "outputs": [ - "{projectRoot}/dist/**" - ] - } - }, - "implicitDependencies": [] - } - }, - "@batijs/vue": { - "name": "@batijs/vue", - "type": "lib", - "data": { - "root": "boilerplates/vue", - "name": "@batijs/vue", - "tags": [ - "npm:private", - "type:boilerplate" - ], - "metadata": { - "targetGroups": { - "NPM Scripts": [ - "check-types", - "build" - ] - }, - "description": "", - "js": { - "packageName": "@batijs/vue", - "packageVersion": "0.0.1", - "packageExports": { - "./pages/+config": { - "types": "./dist/types/pages/+config.d.mts" - }, - "./pages/+onCreateApp": { - "types": "./dist/types/pages/+onCreateApp.d.mts" - }, - "./pages/+onPageTransitionEnd": { - "types": "./dist/types/pages/+onPageTransitionEnd.d.mts" - }, - "./pages/+onPageTransitionStart": { - "types": "./dist/types/pages/+onPageTransitionStart.d.mts" - }, - "./pages/star-wars/@id/+data": { - "types": "./dist/types/pages/star-wars/@id/+data.d.mts" - }, - "./pages/star-wars/index/+data": { - "types": "./dist/types/pages/star-wars/index/+data.d.mts" - }, - "./pages/star-wars/types": { - "types": "./dist/types/pages/star-wars/types.d.mts" - } - }, - "isInPackageManagerWorkspaces": true - } - }, - "targets": { - "check-types": { - "executor": "nx:run-script", - "options": { - "script": "check-types" - }, - "metadata": { - "scriptContent": "tsc --noEmit", - "runCommand": "pnpm run check-types" - }, - "configurations": {}, - "parallelism": true, - "cache": true - }, - "build": { - "executor": "nx:run-script", - "options": { - "script": "build" - }, - "metadata": { - "scriptContent": "bati-compile-boilerplate", - "runCommand": "pnpm run build" - }, - "configurations": {}, - "parallelism": true, - "cache": true, - "dependsOn": [ - "^build" - ], - "inputs": [ - "default", - "^default" - ], - "outputs": [ - "{projectRoot}/dist/**" - ] - } - }, - "implicitDependencies": [] - } - }, - "@batijs/d1": { - "name": "@batijs/d1", - "type": "lib", - "data": { - "root": "boilerplates/d1", - "name": "@batijs/d1", - "tags": [ - "npm:private", - "type:boilerplate" - ], - "metadata": { - "targetGroups": { - "NPM Scripts": [ - "check-types", - "build" - ] - }, - "description": "", - "js": { - "packageName": "@batijs/d1", - "packageVersion": "0.0.1", - "packageExports": { - "./database/d1/helpers": { - "types": "./dist/types/database/d1/helpers.d.mts" - } - }, - "isInPackageManagerWorkspaces": true - } - }, - "targets": { - "check-types": { - "executor": "nx:run-script", - "options": { - "script": "check-types" - }, - "metadata": { - "scriptContent": "tsc --noEmit", - "runCommand": "pnpm run check-types" - }, - "configurations": {}, - "parallelism": true, - "cache": true - }, - "build": { - "executor": "nx:run-script", - "options": { - "script": "build" - }, - "metadata": { - "scriptContent": "bati-compile-boilerplate", - "runCommand": "pnpm run build" - }, - "configurations": {}, - "parallelism": true, - "cache": true, - "dependsOn": [ - "^build" - ], - "inputs": [ - "default", - "^default" - ], - "outputs": [ - "{projectRoot}/dist/**" - ] - } - }, - "implicitDependencies": [] - } - }, - "@batijs/h3": { - "name": "@batijs/h3", - "type": "lib", - "data": { - "root": "boilerplates/h3", - "name": "@batijs/h3", - "tags": [ - "npm:private", - "type:boilerplate" - ], - "metadata": { - "targetGroups": { - "NPM Scripts": [ - "check-types", - "build" - ] - }, - "description": "", - "js": { - "packageName": "@batijs/h3", - "packageVersion": "0.0.1", - "packageExports": { - "./server/entry": { - "types": "./dist/types/server/entry.d.mts" - } - }, - "isInPackageManagerWorkspaces": true - } - }, - "targets": { - "check-types": { - "executor": "nx:run-script", - "options": { - "script": "check-types" - }, - "metadata": { - "scriptContent": "tsc --noEmit", - "runCommand": "pnpm run check-types" - }, - "configurations": {}, - "parallelism": true, - "cache": true - }, - "build": { - "executor": "nx:run-script", - "options": { - "script": "build" - }, - "metadata": { - "scriptContent": "bati-compile-boilerplate", - "runCommand": "pnpm run build" - }, - "configurations": {}, - "parallelism": true, - "cache": true, - "dependsOn": [ - "^build" - ], - "inputs": [ - "default", - "^default" - ], - "outputs": [ - "{projectRoot}/dist/**" - ] - } - }, - "implicitDependencies": [] - } - }, - "batijs": { - "name": "batijs", - "type": "lib", - "data": { - "root": "packages/batijs", - "name": "batijs", - "tags": [ - "npm:private" - ], - "metadata": { - "targetGroups": {}, - "description": "Next-gen scaffolder. Get started with fully-functional apps, and choose any tool you want", - "js": { - "packageName": "batijs", - "packageVersion": "0.0.599", - "isInPackageManagerWorkspaces": true - } - }, - "targets": {}, - "implicitDependencies": [] - } - }, - "@batijs/build": { - "name": "@batijs/build", - "type": "lib", - "data": { - "root": "packages/build", - "name": "@batijs/build", - "tags": [ - "npm:public" - ], - "metadata": { - "targetGroups": { - "NPM Scripts": [ - "check-types", - "prepublishOnly", - "build" - ] - }, - "description": "", - "js": { - "packageName": "@batijs/build", - "packageVersion": "0.0.599", - "packageExports": { - ".": "./dist/index.js" - }, - "packageMain": "./dist/index.js", - "isInPackageManagerWorkspaces": true - } - }, - "targets": { - "check-types": { - "executor": "nx:run-script", - "options": { - "script": "check-types" - }, - "metadata": { - "scriptContent": "tsc --noEmit", - "runCommand": "pnpm run check-types" - }, - "configurations": {}, - "parallelism": true, - "cache": true - }, - "prepublishOnly": { - "executor": "nx:run-script", - "options": { - "script": "prepublishOnly" - }, - "metadata": { - "scriptContent": "pnpm run build", - "runCommand": "pnpm run prepublishOnly" - }, - "configurations": {}, - "parallelism": true - }, - "build": { - "executor": "nx:run-script", - "options": { - "script": "build" - }, - "metadata": { - "scriptContent": "tsdown", - "runCommand": "pnpm run build" - }, - "configurations": {}, - "parallelism": true, - "cache": true, - "dependsOn": [ - "^build" - ], - "inputs": [ - "default", - "^default" - ], - "outputs": [ - "{projectRoot}/dist/**" - ] - } - }, - "implicitDependencies": [] - } - }, - "@batijs/tests": { - "name": "@batijs/tests", - "type": "app", - "data": { - "root": "packages/tests", - "name": "@batijs/tests", - "tags": [ - "npm:private" - ], - "metadata": { - "targetGroups": { - "NPM Scripts": [ - "check-types", - "start", - "test", - "test:e2e", - "build" - ] - }, - "description": "Next-gen scaffolder. Get started with fully-functional apps, and choose any tool you want", - "js": { - "packageName": "@batijs/tests", - "packageVersion": "0.0.599", - "isInPackageManagerWorkspaces": true - } - }, - "targets": { - "check-types": { - "executor": "nx:run-script", - "options": { - "script": "check-types" - }, - "metadata": { - "scriptContent": "tsc --noEmit", - "runCommand": "pnpm run check-types" - }, - "configurations": {}, - "parallelism": true, - "cache": true - }, - "start": { - "executor": "nx:run-script", - "options": { - "script": "start" - }, - "metadata": { - "scriptContent": "tsx src/index.ts", - "runCommand": "pnpm run start" - }, - "configurations": {}, - "parallelism": true - }, - "test": { - "executor": "nx:run-script", - "options": { - "script": "test" - }, - "metadata": { - "scriptContent": "vitest run", - "runCommand": "pnpm run test" - }, - "configurations": {}, - "parallelism": true, - "cache": true, - "dependsOn": [ - "build" - ] - }, - "test:e2e": { - "executor": "nx:run-script", - "options": { - "script": "test:e2e" - }, - "metadata": { - "scriptContent": "tsx src/index.ts", - "runCommand": "pnpm run test:e2e" - }, - "configurations": {}, - "parallelism": true - }, - "build": { - "executor": "nx:run-script", - "options": { - "script": "build" - }, - "metadata": { - "scriptContent": "tsdown", - "runCommand": "pnpm run build" - }, - "configurations": {}, - "parallelism": true, - "cache": true, - "dependsOn": [ - "^build" - ], - "inputs": [ - "default", - "^default" - ], - "outputs": [ - "{projectRoot}/dist/**" - ] - } - }, - "implicitDependencies": [] - } - }, - "@batijs/core": { - "name": "@batijs/core", - "type": "lib", - "data": { - "root": "packages/core", - "name": "@batijs/core", - "tags": [ - "npm:public" - ], - "metadata": { - "targetGroups": { - "NPM Scripts": [ - "check-types", - "vue", - "test", - "test:ci", - "build" - ] - }, - "description": "", - "js": { - "packageName": "@batijs/core", - "packageVersion": "0.0.599", - "packageExports": { - ".": "./dist/index.js", - "./config": "./dist/config.js", - "./types": { - "types": "./global.d.ts" - } - }, - "isInPackageManagerWorkspaces": true - } - }, - "targets": { - "check-types": { - "executor": "nx:run-script", - "options": { - "script": "check-types" - }, - "metadata": { - "scriptContent": "tsc --noEmit", - "runCommand": "pnpm run check-types" - }, - "configurations": {}, - "parallelism": true, - "cache": true - }, - "vue": { - "executor": "nx:run-script", - "options": { - "script": "vue" - }, - "metadata": { - "scriptContent": "tsx src/parse/linters/vue.ts", - "runCommand": "pnpm run vue" - }, - "configurations": {}, - "parallelism": true - }, - "test": { - "executor": "nx:run-script", - "options": { - "script": "test" - }, - "metadata": { - "scriptContent": "vitest run", - "runCommand": "pnpm run test" - }, - "configurations": {}, - "parallelism": true, - "cache": true, - "dependsOn": [ - "build" - ] - }, - "test:ci": { - "executor": "nx:run-script", - "options": { - "script": "test:ci" - }, - "metadata": { - "scriptContent": "vitest run", - "runCommand": "pnpm run test:ci" - }, - "configurations": {}, - "parallelism": true - }, - "build": { - "executor": "nx:run-script", - "options": { - "script": "build" - }, - "metadata": { - "scriptContent": "tsdown", - "runCommand": "pnpm run build" - }, - "configurations": {}, - "parallelism": true, - "cache": true, - "dependsOn": [ - "^build" - ], - "inputs": [ - "default", - "^default" - ], - "outputs": [ - "{projectRoot}/dist/**" - ] - } - }, - "implicitDependencies": [] - } - }, - "@batijs/cli": { - "name": "@batijs/cli", - "type": "lib", - "data": { - "root": "packages/cli", - "name": "@batijs/cli", - "tags": [ - "npm:public" - ], - "metadata": { - "targetGroups": { - "NPM Scripts": [ - "check-types", - "prepublishOnly", - "build" - ] - }, - "description": "Next-gen scaffolder. Get started with fully-functional apps, and choose any tool you want", - "js": { - "packageName": "@batijs/cli", - "packageVersion": "0.0.599", - "packageExports": { - ".": "./cli.js" - }, - "isInPackageManagerWorkspaces": true - } - }, - "targets": { - "check-types": { - "executor": "nx:run-script", - "options": { - "script": "check-types" - }, - "metadata": { - "scriptContent": "tsc --noEmit", - "runCommand": "pnpm run check-types" - }, - "configurations": {}, - "parallelism": true, - "cache": true - }, - "prepublishOnly": { - "executor": "nx:run-script", - "options": { - "script": "prepublishOnly" - }, - "metadata": { - "scriptContent": "nx run-many --target=build", - "runCommand": "pnpm run prepublishOnly" - }, - "configurations": {}, - "parallelism": true - }, - "build": { - "executor": "nx:run-script", - "options": { - "script": "build" - }, - "metadata": { - "scriptContent": "tsdown", - "runCommand": "pnpm run build" - }, - "configurations": {}, - "parallelism": true, - "cache": true, - "dependsOn": [ - "^build" - ], - "inputs": [ - "default", - "^default" - ], - "outputs": [ - "{projectRoot}/dist/**" - ] - } - }, - "implicitDependencies": [ - "@batijs/auth0", - "@batijs/authjs", - "@batijs/aws", - "@batijs/biome", - "@batijs/cloudflare", - "@batijs/compiled", - "@batijs/d1", - "@batijs/d1-kysely", - "@batijs/d1-sqlite", - "@batijs/drizzle", - "@batijs/eslint", - "@batijs/express", - "@batijs/fastify", - "@batijs/google-analytics", - "@batijs/h3", - "@batijs/hono", - "@batijs/kysely", - "@batijs/mantine", - "@batijs/oxlint", - "@batijs/photon", - "@batijs/plausible.io", - "@batijs/pnpm", - "@batijs/prettier", - "@batijs/prisma", - "@batijs/react", - "@batijs/react-sentry", - "@batijs/sentry", - "@batijs/shadcn-ui", - "@batijs/shared", - "@batijs/shared-db", - "@batijs/shared-server", - "@batijs/shared-todo", - "@batijs/solid", - "@batijs/solid-sentry", - "@batijs/sqlite", - "@batijs/storybook", - "@batijs/tailwindcss", - "@batijs/telefunc", - "@batijs/trpc", - "@batijs/ts-rest", - "@batijs/vercel", - "@batijs/vue", - "@batijs/vue-sentry" - ] - } - }, - "@batijs/elements": { - "name": "@batijs/elements", - "type": "lib", - "data": { - "root": "website", - "name": "@batijs/elements", - "tags": [ - "npm:public", - "npm:bati", - "npm:batijs", - "npm:vike" - ], - "metadata": { - "targetGroups": { - "NPM Scripts": [ - "dev", - "dev:widget", - "build:pages", - "build:widget", - "preview:widget", - "check-types", - "test", - "release-widget", - "release-widget:ci" - ] - }, - "description": "BatiJS website as Web Components", - "js": { - "packageName": "@batijs/elements", - "packageVersion": "0.0.56", - "packageMain": "dist/elements/full.js", - "isInPackageManagerWorkspaces": true - } - }, - "targets": { - "dev": { - "executor": "nx:run-script", - "options": { - "script": "dev" - }, - "metadata": { - "scriptContent": "vike dev", - "runCommand": "pnpm run dev" - }, - "configurations": {}, - "parallelism": true - }, - "dev:widget": { - "executor": "nx:run-script", - "options": { - "script": "dev:widget" - }, - "metadata": { - "scriptContent": "vite dev --mode widget", - "runCommand": "pnpm run dev:widget" - }, - "configurations": {}, - "parallelism": true - }, - "build:pages": { - "executor": "nx:run-script", - "options": { - "script": "build:pages" - }, - "metadata": { - "scriptContent": "vike build", - "runCommand": "pnpm run build:pages" - }, - "configurations": {}, - "parallelism": true - }, - "build:widget": { - "executor": "nx:run-script", - "options": { - "script": "build:widget" - }, - "metadata": { - "scriptContent": "vite build --mode widget", - "runCommand": "pnpm run build:widget" - }, - "configurations": {}, - "parallelism": true - }, - "preview:widget": { - "executor": "nx:run-script", - "options": { - "script": "preview:widget" - }, - "metadata": { - "scriptContent": "http-server .", - "runCommand": "pnpm run preview:widget" - }, - "configurations": {}, - "parallelism": true - }, - "check-types": { - "executor": "nx:run-script", - "options": { - "script": "check-types" - }, - "metadata": { - "scriptContent": "tsc --noEmit", - "runCommand": "pnpm run check-types" - }, - "configurations": {}, - "parallelism": true, - "cache": true - }, - "test": { - "executor": "nx:run-script", - "options": { - "script": "test" - }, - "metadata": { - "scriptContent": "tsc --noEmit", - "runCommand": "pnpm run test" - }, - "configurations": {}, - "parallelism": true, - "cache": true, - "dependsOn": [ - "build" - ] - }, - "release-widget": { - "executor": "nx:run-script", - "options": { - "script": "release-widget" - }, - "metadata": { - "scriptContent": "bumpp --no-tag && pnpm run build:widget && pnpm publish", - "runCommand": "pnpm run release-widget" - }, - "configurations": {}, - "parallelism": true - }, - "release-widget:ci": { - "executor": "nx:run-script", - "options": { - "script": "release-widget:ci" - }, - "metadata": { - "scriptContent": "bumpp --no-tag -y && pnpm run build:widget && pnpm publish", - "runCommand": "pnpm run release-widget:ci" - }, - "configurations": {}, - "parallelism": true - } - }, - "implicitDependencies": [] - } - } - }, - "externalNodes": { - "npm:@auth/core": { - "type": "npm", - "name": "npm:@auth/core", - "data": { - "version": "0.41.1", - "packageName": "@auth/core", - "hash": "sha512-t9cJ2zNYAdWMacGRMT6+r4xr1uybIdmYa49calBPeTqwgAFPV/88ac9TEvCR85pvATiSPt8VaNf+Gt24JIT/uw==" - } - }, - "npm:@aws-cdk/asset-awscli-v1": { - "type": "npm", - "name": "npm:@aws-cdk/asset-awscli-v1", - "data": { - "version": "2.2.263", - "packageName": "@aws-cdk/asset-awscli-v1", - "hash": "sha512-X9JvcJhYcb7PHs8R7m4zMablO5C9PGb/hYfLnxds9h/rKJu6l7MiXE/SabCibuehxPnuO/vk+sVVJiUWrccarQ==" - } - }, - "npm:@aws-cdk/asset-node-proxy-agent-v6": { - "type": "npm", - "name": "npm:@aws-cdk/asset-node-proxy-agent-v6", - "data": { - "version": "2.1.1", - "packageName": "@aws-cdk/asset-node-proxy-agent-v6", - "hash": "sha512-We4bmHaowOPHr+IQR4/FyTGjRfjgBj4ICMjtqmJeBDWad3Q/6St12NT07leNtyuukv2qMhtSZJQorD8KpKTwRA==" - } - }, - "npm:@aws-cdk/cloud-assembly-schema": { - "type": "npm", - "name": "npm:@aws-cdk/cloud-assembly-schema", - "data": { - "version": "52.2.0", - "packageName": "@aws-cdk/cloud-assembly-schema", - "hash": "sha512-ourZjixQ/UfsZc7gdk3vt1eHBODMUjQTYYYCY3ZX8fiXyHtWNDAYZPrXUK96jpCC2fLP+tfHTJrBjZ563pmcEw==" - } - }, - "npm:@babel/code-frame": { - "type": "npm", - "name": "npm:@babel/code-frame", - "data": { - "version": "7.29.0", - "packageName": "@babel/code-frame", - "hash": "sha512-9NhCeYjq9+3uxgdtp20LSiJXJvN0FeCtNGpJxuMFZ1Kv3cWUNb6DOhJwUvcVCzKGR66cw4njwM6hrJLqgOwbcw==" - } - }, - "npm:@babel/compat-data": { - "type": "npm", - "name": "npm:@babel/compat-data", - "data": { - "version": "7.28.6", - "packageName": "@babel/compat-data", - "hash": "sha512-2lfu57JtzctfIrcGMz992hyLlByuzgIk58+hhGCxjKZ3rWI82NnVLjXcaTqkI2NvlcvOskZaiZ5kjUALo3Lpxg==" - } - }, - "npm:@babel/core": { - "type": "npm", - "name": "npm:@babel/core", - "data": { - "version": "7.29.0", - "packageName": "@babel/core", - "hash": "sha512-CGOfOJqWjg2qW/Mb6zNsDm+u5vFQ8DxXfbM09z69p5Z6+mE1ikP2jUXw+j42Pf1XTYED2Rni5f95npYeuwMDQA==" - } - }, - "npm:@babel/generator": { - "type": "npm", - "name": "npm:@babel/generator", - "data": { - "version": "7.29.0", - "packageName": "@babel/generator", - "hash": "sha512-vSH118/wwM/pLR38g/Sgk05sNtro6TlTJKuiMXDaZqPUfjTFcudpCOt00IhOfj+1BFAX+UFAlzCU+6WXr3GLFQ==" - } - }, - "npm:@babel/generator@8.0.0-rc.2": { - "type": "npm", - "name": "npm:@babel/generator@8.0.0-rc.2", - "data": { - "version": "8.0.0-rc.2", - "packageName": "@babel/generator", - "hash": "sha512-oCQ1IKPwkzCeJzAPb7Fv8rQ9k5+1sG8mf2uoHiMInPYvkRfrDJxbTIbH51U+jstlkghus0vAi3EBvkfvEsYNLQ==" - } - }, - "npm:@babel/helper-annotate-as-pure": { - "type": "npm", - "name": "npm:@babel/helper-annotate-as-pure", - "data": { - "version": "7.27.3", - "packageName": "@babel/helper-annotate-as-pure", - "hash": "sha512-fXSwMQqitTGeHLBC08Eq5yXz2m37E4pJX1qAU1+2cNedz/ifv/bVXft90VeSav5nFO61EcNgwr0aJxbyPaWBPg==" - } - }, - "npm:@babel/helper-compilation-targets": { - "type": "npm", - "name": "npm:@babel/helper-compilation-targets", - "data": { - "version": "7.28.6", - "packageName": "@babel/helper-compilation-targets", - "hash": "sha512-JYtls3hqi15fcx5GaSNL7SCTJ2MNmjrkHXg4FSpOA/grxK8KwyZ5bubHsCq8FXCkua6xhuaaBit+3b7+VZRfcA==" - } - }, - "npm:@babel/helper-globals": { - "type": "npm", - "name": "npm:@babel/helper-globals", - "data": { - "version": "7.28.0", - "packageName": "@babel/helper-globals", - "hash": "sha512-+W6cISkXFa1jXsDEdYA8HeevQT/FULhxzR99pxphltZcVaugps53THCeiWA8SguxxpSp3gKPiuYfSWopkLQ4hw==" - } - }, - "npm:@babel/helper-module-imports@7.18.6": { - "type": "npm", - "name": "npm:@babel/helper-module-imports@7.18.6", - "data": { - "version": "7.18.6", - "packageName": "@babel/helper-module-imports", - "hash": "sha512-0NFvs3VkuSYbFi1x2Vd6tKrywq+z/cLeYC/RJNFrIX/30Bf5aiGYbtvGXolEktzJH8o5E5KJ3tT+nkxuuZFVlA==" - } - }, - "npm:@babel/helper-module-imports": { - "type": "npm", - "name": "npm:@babel/helper-module-imports", - "data": { - "version": "7.28.6", - "packageName": "@babel/helper-module-imports", - "hash": "sha512-l5XkZK7r7wa9LucGw9LwZyyCUscb4x37JWTPz7swwFE/0FMQAGpiWUZn8u9DzkSBWEcK25jmvubfpw2dnAMdbw==" - } - }, - "npm:@babel/helper-module-transforms": { - "type": "npm", - "name": "npm:@babel/helper-module-transforms", - "data": { - "version": "7.28.6", - "packageName": "@babel/helper-module-transforms", - "hash": "sha512-67oXFAYr2cDLDVGLXTEABjdBJZ6drElUSI7WKp70NrpyISso3plG9SAGEF6y7zbha/wOzUByWWTJvEDVNIUGcA==" - } - }, - "npm:@babel/helper-plugin-utils": { - "type": "npm", - "name": "npm:@babel/helper-plugin-utils", - "data": { - "version": "7.28.6", - "packageName": "@babel/helper-plugin-utils", - "hash": "sha512-S9gzZ/bz83GRysI7gAD4wPT/AI3uCnY+9xn+Mx/KPs2JwHJIz1W8PZkg2cqyt3RNOBM8ejcXhV6y8Og7ly/Dug==" - } - }, - "npm:@babel/helper-string-parser": { - "type": "npm", - "name": "npm:@babel/helper-string-parser", - "data": { - "version": "7.27.1", - "packageName": "@babel/helper-string-parser", - "hash": "sha512-qMlSxKbpRlAridDExk92nSobyDdpPijUq2DW6oDnUqd0iOGxmQjyqhMIihI9+zv4LPyZdRje2cavWPbCbWm3eA==" - } - }, - "npm:@babel/helper-string-parser@8.0.0-rc.3": { - "type": "npm", - "name": "npm:@babel/helper-string-parser@8.0.0-rc.3", - "data": { - "version": "8.0.0-rc.3", - "packageName": "@babel/helper-string-parser", - "hash": "sha512-AmwWFx1m8G/a5cXkxLxTiWl+YEoWuoFLUCwqMlNuWO1tqAYITQAbCRPUkyBHv1VOFgfjVOqEj6L3u15J5ZCzTA==" - } - }, - "npm:@babel/helper-validator-identifier": { - "type": "npm", - "name": "npm:@babel/helper-validator-identifier", - "data": { - "version": "7.28.5", - "packageName": "@babel/helper-validator-identifier", - "hash": "sha512-qSs4ifwzKJSV39ucNjsvc6WVHs6b7S03sOh2OcHF9UHfVPqWWALUsNUVzhSBiItjRZoLHx7nIarVjqKVusUZ1Q==" - } - }, - "npm:@babel/helper-validator-identifier@8.0.0-rc.2": { - "type": "npm", - "name": "npm:@babel/helper-validator-identifier@8.0.0-rc.2", - "data": { - "version": "8.0.0-rc.2", - "packageName": "@babel/helper-validator-identifier", - "hash": "sha512-xExUBkuXWJjVuIbO7z6q7/BA9bgfJDEhVL0ggrggLMbg0IzCUWGT1hZGE8qUH7Il7/RD/a6cZ3AAFrrlp1LF/A==" - } - }, - "npm:@babel/helper-validator-option": { - "type": "npm", - "name": "npm:@babel/helper-validator-option", - "data": { - "version": "7.27.1", - "packageName": "@babel/helper-validator-option", - "hash": "sha512-YvjJow9FxbhFFKDSuFnVCe2WxXk1zWc22fFePVNEaWJEu8IrZVlda6N0uHwzZrUM1il7NC9Mlp4MaJYbYd9JSg==" - } - }, - "npm:@babel/helpers": { - "type": "npm", - "name": "npm:@babel/helpers", - "data": { - "version": "7.28.6", - "packageName": "@babel/helpers", - "hash": "sha512-xOBvwq86HHdB7WUDTfKfT/Vuxh7gElQ+Sfti2Cy6yIWNW05P8iUslOVcZ4/sKbE+/jQaukQAdz/gf3724kYdqw==" - } - }, - "npm:@babel/parser": { - "type": "npm", - "name": "npm:@babel/parser", - "data": { - "version": "7.29.0", - "packageName": "@babel/parser", - "hash": "sha512-IyDgFV5GeDUVX4YdF/3CPULtVGSXXMLh1xVIgdCgxApktqnQV0r7/8Nqthg+8YLGaAtdyIlo2qIdZrbCv4+7ww==" - } - }, - "npm:@babel/parser@8.0.0-rc.2": { - "type": "npm", - "name": "npm:@babel/parser@8.0.0-rc.2", - "data": { - "version": "8.0.0-rc.2", - "packageName": "@babel/parser", - "hash": "sha512-29AhEtcq4x8Dp3T72qvUMZHx0OMXCj4Jy/TEReQa+KWLln524Cj1fWb3QFi0l/xSpptQBR6y9RNEXuxpFvwiUQ==" - } - }, - "npm:@babel/plugin-syntax-flow": { - "type": "npm", - "name": "npm:@babel/plugin-syntax-flow", - "data": { - "version": "7.28.6", - "packageName": "@babel/plugin-syntax-flow", - "hash": "sha512-D+OrJumc9McXNEBI/JmFnc/0uCM2/Y3PEBG3gfV3QIYkKv5pvnpzFrl1kYCrcHJP8nOeFB/SHi1IHz29pNGuew==" - } - }, - "npm:@babel/plugin-syntax-jsx": { - "type": "npm", - "name": "npm:@babel/plugin-syntax-jsx", - "data": { - "version": "7.28.6", - "packageName": "@babel/plugin-syntax-jsx", - "hash": "sha512-wgEmr06G6sIpqr8YDwA2dSRTE3bJ+V0IfpzfSY3Lfgd7YWOaAdlykvJi13ZKBt8cZHfgH1IXN+CL656W3uUa4w==" - } - }, - "npm:@babel/plugin-transform-flow-strip-types": { - "type": "npm", - "name": "npm:@babel/plugin-transform-flow-strip-types", - "data": { - "version": "7.27.1", - "packageName": "@babel/plugin-transform-flow-strip-types", - "hash": "sha512-G5eDKsu50udECw7DL2AcsysXiQyB7Nfg521t2OAJ4tbfTJ27doHLeF/vlI1NZGlLdbb/v+ibvtL1YBQqYOwJGg==" - } - }, - "npm:@babel/plugin-transform-react-jsx": { - "type": "npm", - "name": "npm:@babel/plugin-transform-react-jsx", - "data": { - "version": "7.28.6", - "packageName": "@babel/plugin-transform-react-jsx", - "hash": "sha512-61bxqhiRfAACulXSLd/GxqmAedUSrRZIu/cbaT18T1CetkTmtDN15it7i80ru4DVqRK1WMxQhXs+Lf9kajm5Ow==" - } - }, - "npm:@babel/runtime": { - "type": "npm", - "name": "npm:@babel/runtime", - "data": { - "version": "7.28.4", - "packageName": "@babel/runtime", - "hash": "sha512-Q/N6JNWvIvPnLDvjlE1OUBLPQHH6l3CltCEsHIujp45zQUSSh8K+gHnaEX45yAT1nyngnINhvWtzN+Nb9D8RAQ==" - } - }, - "npm:@babel/template": { - "type": "npm", - "name": "npm:@babel/template", - "data": { - "version": "7.28.6", - "packageName": "@babel/template", - "hash": "sha512-YA6Ma2KsCdGb+WC6UpBVFJGXL58MDA6oyONbjyF/+5sBgxY/dwkhLogbMT2GXXyU84/IhRw/2D1Os1B/giz+BQ==" - } - }, - "npm:@babel/traverse": { - "type": "npm", - "name": "npm:@babel/traverse", - "data": { - "version": "7.29.0", - "packageName": "@babel/traverse", - "hash": "sha512-4HPiQr0X7+waHfyXPZpWPfWL/J7dcN1mx9gL6WdQVMbPnF3+ZhSMs8tCxN7oHddJE9fhNE7+lxdnlyemKfJRuA==" - } - }, - "npm:@babel/types": { - "type": "npm", - "name": "npm:@babel/types", - "data": { - "version": "7.29.0", - "packageName": "@babel/types", - "hash": "sha512-LwdZHpScM4Qz8Xw2iKSzS+cfglZzJGvofQICy7W7v4caru4EaAmyUuO6BGrbyQ2mYV11W0U8j5mBhd14dd3B0A==" - } - }, - "npm:@babel/types@8.0.0-rc.2": { - "type": "npm", - "name": "npm:@babel/types@8.0.0-rc.2", - "data": { - "version": "8.0.0-rc.2", - "packageName": "@babel/types", - "hash": "sha512-91gAaWRznDwSX4E2tZ1YjBuIfnQVOFDCQ2r0Toby0gu4XEbyF623kXLMA8d4ZbCu+fINcrudkmEcwSUHgDDkNw==" - } - }, - "npm:@batijs/compile": { - "type": "npm", - "name": "npm:@batijs/compile", - "data": { - "version": "file:packages/compile", - "packageName": "@batijs/compile", - "hash": "8949708989012550123" - } - }, - "npm:@biomejs/biome": { - "type": "npm", - "name": "npm:@biomejs/biome", - "data": { - "version": "2.4.8", - "packageName": "@biomejs/biome", - "hash": "sha512-ponn0oKOky1oRXBV+rlSaUlixUxf1aZvWC19Z41zBfUOUesthrQqL3OtiAlSB1EjFjyWpn98Q64DHelhA6jNlA==" - } - }, - "npm:@biomejs/cli-darwin-arm64": { - "type": "npm", - "name": "npm:@biomejs/cli-darwin-arm64", - "data": { - "version": "2.4.8", - "packageName": "@biomejs/cli-darwin-arm64", - "hash": "sha512-ARx0tECE8I7S2C2yjnWYLNbBdDoPdq3oyNLhMglmuctThwUsuzFWRKrHmIGwIRWKz0Mat9DuzLEDp52hGnrxGQ==" - } - }, - "npm:@biomejs/cli-darwin-x64": { - "type": "npm", - "name": "npm:@biomejs/cli-darwin-x64", - "data": { - "version": "2.4.8", - "packageName": "@biomejs/cli-darwin-x64", - "hash": "sha512-Jg9/PsB9vDCJlANE8uhG7qDhb5w0Ix69D7XIIc8IfZPUoiPrbLm33k2Ig3NOJ/7nb3UbesFz3D1aDKm9DvzjhQ==" - } - }, - "npm:@biomejs/cli-linux-arm64-musl": { - "type": "npm", - "name": "npm:@biomejs/cli-linux-arm64-musl", - "data": { - "version": "2.4.8", - "packageName": "@biomejs/cli-linux-arm64-musl", - "hash": "sha512-Zo9OhBQDJ3IBGPlqHiTISloo5H0+FBIpemqIJdW/0edJ+gEcLR+MZeZozcUyz3o1nXkVA7++DdRKQT0599j9jA==" - } - }, - "npm:@biomejs/cli-linux-arm64": { - "type": "npm", - "name": "npm:@biomejs/cli-linux-arm64", - "data": { - "version": "2.4.8", - "packageName": "@biomejs/cli-linux-arm64", - "hash": "sha512-5CdrsJct76XG2hpKFwXnEtlT1p+4g4yV+XvvwBpzKsTNLO9c6iLlAxwcae2BJ7ekPGWjNGw9j09T5KGPKKxQig==" - } - }, - "npm:@biomejs/cli-linux-x64-musl": { - "type": "npm", - "name": "npm:@biomejs/cli-linux-x64-musl", - "data": { - "version": "2.4.8", - "packageName": "@biomejs/cli-linux-x64-musl", - "hash": "sha512-Gi8quv8MEuDdKaPFtS2XjEnMqODPsRg6POT6KhoP+VrkNb+T2ywunVB+TvOU0LX1jAZzfBr+3V1mIbBhzAMKvw==" - } - }, - "npm:@biomejs/cli-linux-x64": { - "type": "npm", - "name": "npm:@biomejs/cli-linux-x64", - "data": { - "version": "2.4.8", - "packageName": "@biomejs/cli-linux-x64", - "hash": "sha512-PdKXspVEaMCQLjtZCn6vfSck/li4KX9KGwSDbZdgIqlrizJ2MnMcE3TvHa2tVfXNmbjMikzcfJpuPWH695yJrw==" - } - }, - "npm:@biomejs/cli-win32-arm64": { - "type": "npm", - "name": "npm:@biomejs/cli-win32-arm64", - "data": { - "version": "2.4.8", - "packageName": "@biomejs/cli-win32-arm64", - "hash": "sha512-LoFatS0tnHv6KkCVpIy3qZCih+MxUMvdYiPWLHRri7mhi2vyOOs8OrbZBcLTUEWCS+ktO72nZMy4F96oMhkOHQ==" - } - }, - "npm:@biomejs/cli-win32-x64": { - "type": "npm", - "name": "npm:@biomejs/cli-win32-x64", - "data": { - "version": "2.4.8", - "packageName": "@biomejs/cli-win32-x64", - "hash": "sha512-vAn7iXDoUbqFXqVocuq1sMYAd33p8+mmurqJkWl6CtIhobd/O6moe4rY5AJvzbunn/qZCdiDVcveqtkFh1e7Hg==" - } - }, - "npm:@biomejs/wasm-nodejs": { - "type": "npm", - "name": "npm:@biomejs/wasm-nodejs", - "data": { - "version": "2.4.8", - "packageName": "@biomejs/wasm-nodejs", - "hash": "sha512-pTfObtbrSfifZqdEE75EQc6R6ZZ3K3dtuS4KqOsmOYz9on8b5RXpXEYRp/VR0MQ5NzRBk4UteKL8PMT4GKHHnw==" - } - }, - "npm:@brillout/import": { - "type": "npm", - "name": "npm:@brillout/import", - "data": { - "version": "0.2.6", - "packageName": "@brillout/import", - "hash": "sha512-1GUTmADc8trUC1YSW2lp9r6PmwluMoEyHajnE1kxVdbKGD0wJOlq/DvTWMUqLtBDCnQR+n//qgMtz6HwA/lotA==" - } - }, - "npm:@brillout/json-serializer": { - "type": "npm", - "name": "npm:@brillout/json-serializer", - "data": { - "version": "0.5.22", - "packageName": "@brillout/json-serializer", - "hash": "sha512-jzcOqcbysKICCeZNlwa755tffF+HfMj8G+ZSuvHe06aCpp4xQiU2D91RHFUeJpF0/RNyfa5uWZ0pRuvFoeoqow==" - } - }, - "npm:@brillout/libassert": { - "type": "npm", - "name": "npm:@brillout/libassert", - "data": { - "version": "0.5.8", - "packageName": "@brillout/libassert", - "hash": "sha512-u/fu+jTRUdNdbLONGq1plCfh+k2/XjSbGVTfnF3rHnSPZd+ABWp0XinR5ifrFkyGOzMbzv8IiQ44lZ4U6ZGrGA==" - } - }, - "npm:@brillout/picocolors": { - "type": "npm", - "name": "npm:@brillout/picocolors", - "data": { - "version": "1.0.30", - "packageName": "@brillout/picocolors", - "hash": "sha512-xJjdgyN1H0qh2nB2xlzazIipiDixuUd9oD5msh/Qv5bXJG9j8MSD/m4lREt6Z10ej6FF31b8vB4tdT7lDUbiyA==" - } - }, - "npm:@brillout/vite-plugin-server-entry": { - "type": "npm", - "name": "npm:@brillout/vite-plugin-server-entry", - "data": { - "version": "0.7.18", - "packageName": "@brillout/vite-plugin-server-entry", - "hash": "sha512-j3neG+vaIZ2AbP2/vGgaIyJwrFIxlK3xd3Ey2EGBswCvAGeI4QSSfXGbb7R3b3H8223PgTTsWOZuZH0Y8Ope2w==" - } - }, - "npm:@browserless/devices": { - "type": "npm", - "name": "npm:@browserless/devices", - "data": { - "version": "10.11.3", - "packageName": "@browserless/devices", - "hash": "sha512-EodVNBa9yLoR18gyuOeLiGRislxDmMLDF0GId9y0cei6lfUE4kW98RtdZwfMul+tVfffpyXK5/SYNbNO+33m5w==" - } - }, - "npm:@browserless/errors": { - "type": "npm", - "name": "npm:@browserless/errors", - "data": { - "version": "10.12.1", - "packageName": "@browserless/errors", - "hash": "sha512-qqbUbNeAFhCNihc4ZxYXKnBGfTP6+ZxqhhapVQz/BRwcEWnBlD6MT9Dgo5Anp7+CBKwWW4TQvkaa294LuuryYQ==" - } - }, - "npm:@browserless/goto": { - "type": "npm", - "name": "npm:@browserless/goto", - "data": { - "version": "10.11.4", - "packageName": "@browserless/goto", - "hash": "sha512-Cpf78Nc8xA6pJa1Jm6dH+uvpEklkkkkG/qYoi2pLK6Zfmv2H6RnirE/S3CSTnKMf97jtCd/JiCOJW3bX9M0bRA==" - } - }, - "npm:@browserless/pdf": { - "type": "npm", - "name": "npm:@browserless/pdf", - "data": { - "version": "10.12.5", - "packageName": "@browserless/pdf", - "hash": "sha512-dCLzs7q+G+17c942tjm1ZqjmLc8hoB/+ruDQjmHK1ERHd+2fKsanbCOAfV7wiBKChWKToldsG9STMV8ixGow1A==" - } - }, - "npm:@browserless/screenshot": { - "type": "npm", - "name": "npm:@browserless/screenshot", - "data": { - "version": "10.12.5", - "packageName": "@browserless/screenshot", - "hash": "sha512-9MtpHCFe1t9zaQY+kHuknpCQLYm85R/qNjgz/dNSWEjqN1PDpqnpeZqdFwdAnM1++6dpW85EYFIkyI6vpBHl3g==" - } - }, - "npm:@chevrotain/cst-dts-gen": { - "type": "npm", - "name": "npm:@chevrotain/cst-dts-gen", - "data": { - "version": "10.5.0", - "packageName": "@chevrotain/cst-dts-gen", - "hash": "sha512-lhmC/FyqQ2o7pGK4Om+hzuDrm9rhFYIJ/AXoQBeongmn870Xeb0L6oGEiuR8nohFNL5sMaQEJWCxr1oIVIVXrw==" - } - }, - "npm:@chevrotain/gast": { - "type": "npm", - "name": "npm:@chevrotain/gast", - "data": { - "version": "10.5.0", - "packageName": "@chevrotain/gast", - "hash": "sha512-pXdMJ9XeDAbgOWKuD1Fldz4ieCs6+nLNmyVhe2gZVqoO7v8HXuHYs5OV2EzUtbuai37TlOAQHrTDvxMnvMJz3A==" - } - }, - "npm:@chevrotain/types": { - "type": "npm", - "name": "npm:@chevrotain/types", - "data": { - "version": "10.5.0", - "packageName": "@chevrotain/types", - "hash": "sha512-f1MAia0x/pAVPWH/T73BJVyO2XU5tI4/iE7cnxb7tqdNTNhQI3Uq3XkqcoteTmD4t1aM0LbHCJOhgIDn07kl2A==" - } - }, - "npm:@chevrotain/utils": { - "type": "npm", - "name": "npm:@chevrotain/utils", - "data": { - "version": "10.5.0", - "packageName": "@chevrotain/utils", - "hash": "sha512-hBzuU5+JjB2cqNZyszkDHZgOSrUUT8V3dhgRl8Q9Gp6dAj/H5+KILGjbhDpc3Iy9qmqlm/akuOI2ut9VUtzJxQ==" - } - }, - "npm:@cloudflare/kv-asset-handler": { - "type": "npm", - "name": "npm:@cloudflare/kv-asset-handler", - "data": { - "version": "0.4.2", - "packageName": "@cloudflare/kv-asset-handler", - "hash": "sha512-SIOD2DxrRRwQ+jgzlXCqoEFiKOFqaPjhnNTGKXSRLvp1HiOvapLaFG2kEr9dYQTYe8rKrd9uvDUzmAITeNyaHQ==" - } - }, - "npm:@cloudflare/unenv-preset": { - "type": "npm", - "name": "npm:@cloudflare/unenv-preset", - "data": { - "version": "2.16.0", - "packageName": "@cloudflare/unenv-preset", - "hash": "sha512-8ovsRpwzPoEqPUzoErAYVv8l3FMZNeBVQfJTvtzP4AgLSRGZISRfuChFxHWUQd3n6cnrwkuTGxT+2cGo8EsyYg==" - } - }, - "npm:@cloudflare/unenv-preset@2.7.13": { - "type": "npm", - "name": "npm:@cloudflare/unenv-preset@2.7.13", - "data": { - "version": "2.7.13", - "packageName": "@cloudflare/unenv-preset", - "hash": "sha512-NulO1H8R/DzsJguLC0ndMuk4Ufv0KSlN+E54ay9rn9ZCQo0kpAPwwh3LhgpZ96a3Dr6L9LqW57M4CqC34iLOvw==" - } - }, - "npm:@cloudflare/vite-plugin": { - "type": "npm", - "name": "npm:@cloudflare/vite-plugin", - "data": { - "version": "1.19.0", - "packageName": "@cloudflare/vite-plugin", - "hash": "sha512-5WpXYB7vwLnqlMyGSrPOO0nKynbn/nA33VXRPQg3II7q3T/3GOACYq/pnv9WBfcq4OnTdehJFm72Zn+psfhBXQ==" - } - }, - "npm:@cloudflare/workerd-darwin-64@1.20251217.0": { - "type": "npm", - "name": "npm:@cloudflare/workerd-darwin-64@1.20251217.0", - "data": { - "version": "1.20251217.0", - "packageName": "@cloudflare/workerd-darwin-64", - "hash": "sha512-DN6vT+9ho61d/1/YuILW4VS+N1JBLaixWRL1vqNmhgbf8J8VHwWWotrRruEUYigJKx2yZyw6YsasE+yLXgx/Fw==" - } - }, - "npm:@cloudflare/workerd-darwin-64@1.20260317.1": { - "type": "npm", - "name": "npm:@cloudflare/workerd-darwin-64@1.20260317.1", - "data": { - "version": "1.20260317.1", - "packageName": "@cloudflare/workerd-darwin-64", - "hash": "sha512-8hjh3sPMwY8M/zedq3/sXoA2Q4BedlGufn3KOOleIG+5a4ReQKLlUah140D7J6zlKmYZAFMJ4tWC7hCuI/s79g==" - } - }, - "npm:@cloudflare/workerd-darwin-arm64@1.20251217.0": { - "type": "npm", - "name": "npm:@cloudflare/workerd-darwin-arm64@1.20251217.0", - "data": { - "version": "1.20251217.0", - "packageName": "@cloudflare/workerd-darwin-arm64", - "hash": "sha512-5nZOpRTkHmtcTc4Wbr1mj/O3dLb6aHZSiJuVBgtdbVcVmOXueSay3hnw1PXEyR+vpTKGUPkM+omUIslKHWnXDw==" - } - }, - "npm:@cloudflare/workerd-darwin-arm64@1.20260317.1": { - "type": "npm", - "name": "npm:@cloudflare/workerd-darwin-arm64@1.20260317.1", - "data": { - "version": "1.20260317.1", - "packageName": "@cloudflare/workerd-darwin-arm64", - "hash": "sha512-M/MnNyvO5HMgoIdr3QHjdCj2T1ki9gt0vIUnxYxBu9ISXS/jgtMl6chUVPJ7zHYBn9MyYr8ByeN6frjYxj0MGg==" - } - }, - "npm:@cloudflare/workerd-linux-64@1.20251217.0": { - "type": "npm", - "name": "npm:@cloudflare/workerd-linux-64@1.20251217.0", - "data": { - "version": "1.20251217.0", - "packageName": "@cloudflare/workerd-linux-64", - "hash": "sha512-uoPGhMaZVXPpCsU0oG3HQzyVpXCGi5rU+jcHRjUI7DXM4EwctBGvZ380Knkja36qtl+ZvSKVR1pUFSGdK+45Pg==" - } - }, - "npm:@cloudflare/workerd-linux-64": { - "type": "npm", - "name": "npm:@cloudflare/workerd-linux-64", - "data": { - "version": "1.20260317.1", - "packageName": "@cloudflare/workerd-linux-64", - "hash": "sha512-1ltuEjkRcS3fsVF7CxsKlWiRmzq2ZqMfqDN0qUOgbUwkpXsLVJsXmoblaLf5OP00ELlcgF0QsN0p2xPEua4Uug==" - } - }, - "npm:@cloudflare/workerd-linux-arm64@1.20251217.0": { - "type": "npm", - "name": "npm:@cloudflare/workerd-linux-arm64@1.20251217.0", - "data": { - "version": "1.20251217.0", - "packageName": "@cloudflare/workerd-linux-arm64", - "hash": "sha512-ixHnHKsiz1Xko+eDgCJOZ7EEUZKtmnYq3AjW3nkVcLFypSLks4C29E45zVewdaN4wq8sCLeyQCl6r1kS17+DQQ==" - } - }, - "npm:@cloudflare/workerd-linux-arm64@1.20260317.1": { - "type": "npm", - "name": "npm:@cloudflare/workerd-linux-arm64@1.20260317.1", - "data": { - "version": "1.20260317.1", - "packageName": "@cloudflare/workerd-linux-arm64", - "hash": "sha512-3QrNnPF1xlaNwkHpasvRvAMidOvQs2NhXQmALJrEfpIJ/IDL2la8g499yXp3eqhG3hVMCB07XVY149GTs42Xtw==" - } - }, - "npm:@cloudflare/workerd-windows-64@1.20251217.0": { - "type": "npm", - "name": "npm:@cloudflare/workerd-windows-64@1.20251217.0", - "data": { - "version": "1.20251217.0", - "packageName": "@cloudflare/workerd-windows-64", - "hash": "sha512-rP6USX+7ctynz3AtmKi+EvlLP3Xdr1ETrSdcnv693/I5QdUwBxq4yE1Lj6CV7GJizX6opXKYg8QMq0Q4eB9zRQ==" - } - }, - "npm:@cloudflare/workerd-windows-64@1.20260317.1": { - "type": "npm", - "name": "npm:@cloudflare/workerd-windows-64@1.20260317.1", - "data": { - "version": "1.20260317.1", - "packageName": "@cloudflare/workerd-windows-64", - "hash": "sha512-MfZTz+7LfuIpMGTa3RLXHX8Z/pnycZLItn94WRdHr8LPVet+C5/1Nzei399w/jr3+kzT4pDKk26JF/tlI5elpQ==" - } - }, - "npm:@cloudflare/workers-types": { - "type": "npm", - "name": "npm:@cloudflare/workers-types", - "data": { - "version": "4.20260317.1", - "packageName": "@cloudflare/workers-types", - "hash": "sha512-+G4eVwyCpm8Au1ex8vQBCuA9wnwqetz4tPNRoB/53qvktERWBRMQnrtvC1k584yRE3emMThtuY0gWshvSJ++PQ==" - } - }, - "npm:@compiled/babel-plugin-strip-runtime": { - "type": "npm", - "name": "npm:@compiled/babel-plugin-strip-runtime", - "data": { - "version": "0.37.1", - "packageName": "@compiled/babel-plugin-strip-runtime", - "hash": "sha512-GESC3QXGhLd5ULzAre8NvbFmrICqD/lUX4VBse00VZmSeMDgbMMetPwFn9mfPdwiUj9tLXNTVswJzyT3OWYwtA==" - } - }, - "npm:@compiled/babel-plugin": { - "type": "npm", - "name": "npm:@compiled/babel-plugin", - "data": { - "version": "0.37.1", - "packageName": "@compiled/babel-plugin", - "hash": "sha512-lZUBJnySZlOHq16EnAUqnmz0EfOkoeclpH1nXZzs4aCJN7NOosnr2UPLbJtAsPuNJ1P2zstMSDGntMKhKOcA8w==" - } - }, - "npm:@compiled/css": { - "type": "npm", - "name": "npm:@compiled/css", - "data": { - "version": "0.20.0", - "packageName": "@compiled/css", - "hash": "sha512-cgRIqM+VWrwiG2S6b9DMkKm9bO5zG8ZMWvU6MNoKzQtkOPFFQ/jU4McN+4ilahHoJxUlHhLE8NoF0qL2UwzH4w==" - } - }, - "npm:@compiled/react": { - "type": "npm", - "name": "npm:@compiled/react", - "data": { - "version": "0.20.0", - "packageName": "@compiled/react", - "hash": "sha512-mEJuYGFxIDST1H7CpksyE6a3HRVRQmeDal26O+bCHTEZlPp7iKvs5KD1FOmd2palng+S60dPFFG+UuoZDRILwA==" - } - }, - "npm:@compiled/utils": { - "type": "npm", - "name": "npm:@compiled/utils", - "data": { - "version": "0.13.2", - "packageName": "@compiled/utils", - "hash": "sha512-UZZv/P+pKN78BSvyu8lHO18sYS2XC1qB/Afi9ggol0wAJFY8eWrAoLvWzXDC6Pt495KOLqUX6HpWXQPyGF9ojA==" - } - }, - "npm:@cspotcode/source-map-support": { - "type": "npm", - "name": "npm:@cspotcode/source-map-support", - "data": { - "version": "0.8.1", - "packageName": "@cspotcode/source-map-support", - "hash": "sha512-IchNf6dN4tHoMFIn/7OE8LWZ19Y6q/67Bmf6vnGREv8RSbBVb9LPJxEcnwrcwX6ixSvaiGoomAUvu4YSxXrVgw==" - } - }, - "npm:@drizzle-team/brocli": { - "type": "npm", - "name": "npm:@drizzle-team/brocli", - "data": { - "version": "0.10.2", - "packageName": "@drizzle-team/brocli", - "hash": "sha512-z33Il7l5dKjUgGULTqBsQBQwckHh5AbIuxhdsIxDDiZAzBOrZO6q9ogcWC65kU382AfynTfgNumVcNIjuIua6w==" - } - }, - "npm:@duckduckgo/autoconsent": { - "type": "npm", - "name": "npm:@duckduckgo/autoconsent", - "data": { - "version": "14.56.0", - "packageName": "@duckduckgo/autoconsent", - "hash": "sha512-0gImNtILoEb4LtQkCXJ7pjwqV3lY4IG7sm9y+cbB218MqKKoMJ/zht9UEI0bJ2J2IZZ0GEcLQE9TsQ3AISFZ5Q==" - } - }, - "npm:@electric-sql/pglite-socket": { - "type": "npm", - "name": "npm:@electric-sql/pglite-socket", - "data": { - "version": "0.0.20", - "packageName": "@electric-sql/pglite-socket", - "hash": "sha512-J5nLGsicnD9wJHnno9r+DGxfcZWh+YJMCe0q/aCgtG6XOm9Z7fKeite8IZSNXgZeGltSigM9U/vAWZQWdgcSFg==" - } - }, - "npm:@electric-sql/pglite-tools": { - "type": "npm", - "name": "npm:@electric-sql/pglite-tools", - "data": { - "version": "0.2.20", - "packageName": "@electric-sql/pglite-tools", - "hash": "sha512-BK50ZnYa3IG7ztXhtgYf0Q7zijV32Iw1cYS8C+ThdQlwx12V5VZ9KRJ42y82Hyb4PkTxZQklVQA9JHyUlex33A==" - } - }, - "npm:@electric-sql/pglite": { - "type": "npm", - "name": "npm:@electric-sql/pglite", - "data": { - "version": "0.3.15", - "packageName": "@electric-sql/pglite", - "hash": "sha512-Cj++n1Mekf9ETfdc16TlDi+cDDQF0W7EcbyRHYOAeZdsAe8M/FJg18itDTSwyHfar2WIezawM9o0EKaRGVKygQ==" - } - }, - "npm:@emnapi/core": { - "type": "npm", - "name": "npm:@emnapi/core", - "data": { - "version": "1.7.1", - "packageName": "@emnapi/core", - "hash": "sha512-o1uhUASyo921r2XtHYOHy7gdkGLge8ghBEQHMWmyJFoXlpU58kIrhhN3w26lpQb6dspetweapMn2CSNwQ8I4wg==" - } - }, - "npm:@emnapi/runtime": { - "type": "npm", - "name": "npm:@emnapi/runtime", - "data": { - "version": "1.7.1", - "packageName": "@emnapi/runtime", - "hash": "sha512-PVtJr5CmLwYAU9PZDMITZoR5iAOShYREoR45EyyLrbntV50mdePTgUn4AmOw90Ifcj+x2kRjdzr1HP3RrNiHGA==" - } - }, - "npm:@emnapi/wasi-threads": { - "type": "npm", - "name": "npm:@emnapi/wasi-threads", - "data": { - "version": "1.1.0", - "packageName": "@emnapi/wasi-threads", - "hash": "sha512-WI0DdZ8xFSbgMjR1sFsKABJ/C5OnRrjT06JXbZKexJGrDuPTzZdDYfFlsgcCXCyf+suG5QU2e/y1Wo2V/OapLQ==" - } - }, - "npm:@emotion/is-prop-valid": { - "type": "npm", - "name": "npm:@emotion/is-prop-valid", - "data": { - "version": "1.4.0", - "packageName": "@emotion/is-prop-valid", - "hash": "sha512-QgD4fyscGcbbKwJmqNvUMSE02OsHUa+lAWKdEUIJKgqe5IwRSKd7+KhibEWdaKwgjLj0DRSHA9biAIqGBk05lw==" - } - }, - "npm:@emotion/memoize": { - "type": "npm", - "name": "npm:@emotion/memoize", - "data": { - "version": "0.9.0", - "packageName": "@emotion/memoize", - "hash": "sha512-30FAj7/EoJ5mwVPOWhAyCX+FPfMDrVecJAM+Iw9NRoSl4BBAQeqj4cApHHUXOVvIPgLVDsCFoz/hGD+5QQD1GQ==" - } - }, - "npm:@esbuild-kit/core-utils": { - "type": "npm", - "name": "npm:@esbuild-kit/core-utils", - "data": { - "version": "3.3.2", - "packageName": "@esbuild-kit/core-utils", - "hash": "sha512-sPRAnw9CdSsRmEtnsl2WXWdyquogVpB3yZ3dgwJfe8zrOzTsV7cJvmwrKVa+0ma5BoiGJ+BoqkMvawbayKUsqQ==" - } - }, - "npm:@esbuild-kit/esm-loader": { - "type": "npm", - "name": "npm:@esbuild-kit/esm-loader", - "data": { - "version": "2.6.5", - "packageName": "@esbuild-kit/esm-loader", - "hash": "sha512-FxEMIkJKnodyA1OaCUoEvbYRkoZlLZ4d/eXFu9Fh8CbBBgP5EmZxrfTRyN0qpXZ4vOvqnE5YdRdcrmUUXuU+dA==" - } - }, - "npm:@esbuild/aix-ppc64@0.25.12": { - "type": "npm", - "name": "npm:@esbuild/aix-ppc64@0.25.12", - "data": { - "version": "0.25.12", - "packageName": "@esbuild/aix-ppc64", - "hash": "sha512-Hhmwd6CInZ3dwpuGTF8fJG6yoWmsToE+vYgD4nytZVxcu1ulHpUQRAB1UJ8+N1Am3Mz4+xOByoQoSZf4D+CpkA==" - } - }, - "npm:@esbuild/aix-ppc64@0.27.3": { - "type": "npm", - "name": "npm:@esbuild/aix-ppc64@0.27.3", - "data": { - "version": "0.27.3", - "packageName": "@esbuild/aix-ppc64", - "hash": "sha512-9fJMTNFTWZMh5qwrBItuziu834eOCUcEqymSH7pY+zoMVEZg3gcPuBNxH1EvfVYe9h0x/Ptw8KBzv7qxb7l8dg==" - } - }, - "npm:@esbuild/aix-ppc64@0.27.4": { - "type": "npm", - "name": "npm:@esbuild/aix-ppc64@0.27.4", - "data": { - "version": "0.27.4", - "packageName": "@esbuild/aix-ppc64", - "hash": "sha512-cQPwL2mp2nSmHHJlCyoXgHGhbEPMrEEU5xhkcy3Hs/O7nGZqEpZ2sUtLaL9MORLtDfRvVl2/3PAuEkYZH0Ty8Q==" - } - }, - "npm:@esbuild/android-arm64@0.18.20": { - "type": "npm", - "name": "npm:@esbuild/android-arm64@0.18.20", - "data": { - "version": "0.18.20", - "packageName": "@esbuild/android-arm64", - "hash": "sha512-Nz4rJcchGDtENV0eMKUNa6L12zz2zBDXuhj/Vjh18zGqB44Bi7MBMSXjgunJgjRhCmKOjnPuZp4Mb6OKqtMHLQ==" - } - }, - "npm:@esbuild/android-arm64@0.25.12": { - "type": "npm", - "name": "npm:@esbuild/android-arm64@0.25.12", - "data": { - "version": "0.25.12", - "packageName": "@esbuild/android-arm64", - "hash": "sha512-6AAmLG7zwD1Z159jCKPvAxZd4y/VTO0VkprYy+3N2FtJ8+BQWFXU+OxARIwA46c5tdD9SsKGZ/1ocqBS/gAKHg==" - } - }, - "npm:@esbuild/android-arm64@0.27.3": { - "type": "npm", - "name": "npm:@esbuild/android-arm64@0.27.3", - "data": { - "version": "0.27.3", - "packageName": "@esbuild/android-arm64", - "hash": "sha512-YdghPYUmj/FX2SYKJ0OZxf+iaKgMsKHVPF1MAq/P8WirnSpCStzKJFjOjzsW0QQ7oIAiccHdcqjbHmJxRb/dmg==" - } - }, - "npm:@esbuild/android-arm64@0.27.4": { - "type": "npm", - "name": "npm:@esbuild/android-arm64@0.27.4", - "data": { - "version": "0.27.4", - "packageName": "@esbuild/android-arm64", - "hash": "sha512-gdLscB7v75wRfu7QSm/zg6Rx29VLdy9eTr2t44sfTW7CxwAtQghZ4ZnqHk3/ogz7xao0QAgrkradbBzcqFPasw==" - } - }, - "npm:@esbuild/android-arm@0.18.20": { - "type": "npm", - "name": "npm:@esbuild/android-arm@0.18.20", - "data": { - "version": "0.18.20", - "packageName": "@esbuild/android-arm", - "hash": "sha512-fyi7TDI/ijKKNZTUJAQqiG5T7YjJXgnzkURqmGj13C6dCqckZBLdl4h7bkhHt/t0WP+zO9/zwroDvANaOqO5Sw==" - } - }, - "npm:@esbuild/android-arm@0.25.12": { - "type": "npm", - "name": "npm:@esbuild/android-arm@0.25.12", - "data": { - "version": "0.25.12", - "packageName": "@esbuild/android-arm", - "hash": "sha512-VJ+sKvNA/GE7Ccacc9Cha7bpS8nyzVv0jdVgwNDaR4gDMC/2TTRc33Ip8qrNYUcpkOHUT5OZ0bUcNNVZQ9RLlg==" - } - }, - "npm:@esbuild/android-arm@0.27.3": { - "type": "npm", - "name": "npm:@esbuild/android-arm@0.27.3", - "data": { - "version": "0.27.3", - "packageName": "@esbuild/android-arm", - "hash": "sha512-i5D1hPY7GIQmXlXhs2w8AWHhenb00+GxjxRncS2ZM7YNVGNfaMxgzSGuO8o8SJzRc/oZwU2bcScvVERk03QhzA==" - } - }, - "npm:@esbuild/android-arm@0.27.4": { - "type": "npm", - "name": "npm:@esbuild/android-arm@0.27.4", - "data": { - "version": "0.27.4", - "packageName": "@esbuild/android-arm", - "hash": "sha512-X9bUgvxiC8CHAGKYufLIHGXPJWnr0OCdR0anD2e21vdvgCI8lIfqFbnoeOz7lBjdrAGUhqLZLcQo6MLhTO2DKQ==" - } - }, - "npm:@esbuild/android-x64@0.18.20": { - "type": "npm", - "name": "npm:@esbuild/android-x64@0.18.20", - "data": { - "version": "0.18.20", - "packageName": "@esbuild/android-x64", - "hash": "sha512-8GDdlePJA8D6zlZYJV/jnrRAi6rOiNaCC/JclcXpB+KIuvfBN4owLtgzY2bsxnx666XjJx2kDPUmnTtR8qKQUg==" - } - }, - "npm:@esbuild/android-x64@0.25.12": { - "type": "npm", - "name": "npm:@esbuild/android-x64@0.25.12", - "data": { - "version": "0.25.12", - "packageName": "@esbuild/android-x64", - "hash": "sha512-5jbb+2hhDHx5phYR2By8GTWEzn6I9UqR11Kwf22iKbNpYrsmRB18aX/9ivc5cabcUiAT/wM+YIZ6SG9QO6a8kg==" - } - }, - "npm:@esbuild/android-x64@0.27.3": { - "type": "npm", - "name": "npm:@esbuild/android-x64@0.27.3", - "data": { - "version": "0.27.3", - "packageName": "@esbuild/android-x64", - "hash": "sha512-IN/0BNTkHtk8lkOM8JWAYFg4ORxBkZQf9zXiEOfERX/CzxW3Vg1ewAhU7QSWQpVIzTW+b8Xy+lGzdYXV6UZObQ==" - } - }, - "npm:@esbuild/android-x64@0.27.4": { - "type": "npm", - "name": "npm:@esbuild/android-x64@0.27.4", - "data": { - "version": "0.27.4", - "packageName": "@esbuild/android-x64", - "hash": "sha512-PzPFnBNVF292sfpfhiyiXCGSn9HZg5BcAz+ivBuSsl6Rk4ga1oEXAamhOXRFyMcjwr2DVtm40G65N3GLeH1Lvw==" - } - }, - "npm:@esbuild/darwin-arm64@0.18.20": { - "type": "npm", - "name": "npm:@esbuild/darwin-arm64@0.18.20", - "data": { - "version": "0.18.20", - "packageName": "@esbuild/darwin-arm64", - "hash": "sha512-bxRHW5kHU38zS2lPTPOyuyTm+S+eobPUnTNkdJEfAddYgEcll4xkT8DB9d2008DtTbl7uJag2HuE5NZAZgnNEA==" - } - }, - "npm:@esbuild/darwin-arm64@0.25.12": { - "type": "npm", - "name": "npm:@esbuild/darwin-arm64@0.25.12", - "data": { - "version": "0.25.12", - "packageName": "@esbuild/darwin-arm64", - "hash": "sha512-N3zl+lxHCifgIlcMUP5016ESkeQjLj/959RxxNYIthIg+CQHInujFuXeWbWMgnTo4cp5XVHqFPmpyu9J65C1Yg==" - } - }, - "npm:@esbuild/darwin-arm64@0.27.3": { - "type": "npm", - "name": "npm:@esbuild/darwin-arm64@0.27.3", - "data": { - "version": "0.27.3", - "packageName": "@esbuild/darwin-arm64", - "hash": "sha512-Re491k7ByTVRy0t3EKWajdLIr0gz2kKKfzafkth4Q8A5n1xTHrkqZgLLjFEHVD+AXdUGgQMq+Godfq45mGpCKg==" - } - }, - "npm:@esbuild/darwin-arm64@0.27.4": { - "type": "npm", - "name": "npm:@esbuild/darwin-arm64@0.27.4", - "data": { - "version": "0.27.4", - "packageName": "@esbuild/darwin-arm64", - "hash": "sha512-b7xaGIwdJlht8ZFCvMkpDN6uiSmnxxK56N2GDTMYPr2/gzvfdQN8rTfBsvVKmIVY/X7EM+/hJKEIbbHs9oA4tQ==" - } - }, - "npm:@esbuild/darwin-x64@0.18.20": { - "type": "npm", - "name": "npm:@esbuild/darwin-x64@0.18.20", - "data": { - "version": "0.18.20", - "packageName": "@esbuild/darwin-x64", - "hash": "sha512-pc5gxlMDxzm513qPGbCbDukOdsGtKhfxD1zJKXjCCcU7ju50O7MeAZ8c4krSJcOIJGFR+qx21yMMVYwiQvyTyQ==" - } - }, - "npm:@esbuild/darwin-x64@0.25.12": { - "type": "npm", - "name": "npm:@esbuild/darwin-x64@0.25.12", - "data": { - "version": "0.25.12", - "packageName": "@esbuild/darwin-x64", - "hash": "sha512-HQ9ka4Kx21qHXwtlTUVbKJOAnmG1ipXhdWTmNXiPzPfWKpXqASVcWdnf2bnL73wgjNrFXAa3yYvBSd9pzfEIpA==" - } - }, - "npm:@esbuild/darwin-x64@0.27.3": { - "type": "npm", - "name": "npm:@esbuild/darwin-x64@0.27.3", - "data": { - "version": "0.27.3", - "packageName": "@esbuild/darwin-x64", - "hash": "sha512-vHk/hA7/1AckjGzRqi6wbo+jaShzRowYip6rt6q7VYEDX4LEy1pZfDpdxCBnGtl+A5zq8iXDcyuxwtv3hNtHFg==" - } - }, - "npm:@esbuild/darwin-x64@0.27.4": { - "type": "npm", - "name": "npm:@esbuild/darwin-x64@0.27.4", - "data": { - "version": "0.27.4", - "packageName": "@esbuild/darwin-x64", - "hash": "sha512-sR+OiKLwd15nmCdqpXMnuJ9W2kpy0KigzqScqHI3Hqwr7IXxBp3Yva+yJwoqh7rE8V77tdoheRYataNKL4QrPw==" - } - }, - "npm:@esbuild/freebsd-arm64@0.18.20": { - "type": "npm", - "name": "npm:@esbuild/freebsd-arm64@0.18.20", - "data": { - "version": "0.18.20", - "packageName": "@esbuild/freebsd-arm64", - "hash": "sha512-yqDQHy4QHevpMAaxhhIwYPMv1NECwOvIpGCZkECn8w2WFHXjEwrBn3CeNIYsibZ/iZEUemj++M26W3cNR5h+Tw==" - } - }, - "npm:@esbuild/freebsd-arm64@0.25.12": { - "type": "npm", - "name": "npm:@esbuild/freebsd-arm64@0.25.12", - "data": { - "version": "0.25.12", - "packageName": "@esbuild/freebsd-arm64", - "hash": "sha512-gA0Bx759+7Jve03K1S0vkOu5Lg/85dou3EseOGUes8flVOGxbhDDh/iZaoek11Y8mtyKPGF3vP8XhnkDEAmzeg==" - } - }, - "npm:@esbuild/freebsd-arm64@0.27.3": { - "type": "npm", - "name": "npm:@esbuild/freebsd-arm64@0.27.3", - "data": { - "version": "0.27.3", - "packageName": "@esbuild/freebsd-arm64", - "hash": "sha512-ipTYM2fjt3kQAYOvo6vcxJx3nBYAzPjgTCk7QEgZG8AUO3ydUhvelmhrbOheMnGOlaSFUoHXB6un+A7q4ygY9w==" - } - }, - "npm:@esbuild/freebsd-arm64@0.27.4": { - "type": "npm", - "name": "npm:@esbuild/freebsd-arm64@0.27.4", - "data": { - "version": "0.27.4", - "packageName": "@esbuild/freebsd-arm64", - "hash": "sha512-jnfpKe+p79tCnm4GVav68A7tUFeKQwQyLgESwEAUzyxk/TJr4QdGog9sqWNcUbr/bZt/O/HXouspuQDd9JxFSw==" - } - }, - "npm:@esbuild/freebsd-x64@0.18.20": { - "type": "npm", - "name": "npm:@esbuild/freebsd-x64@0.18.20", - "data": { - "version": "0.18.20", - "packageName": "@esbuild/freebsd-x64", - "hash": "sha512-tgWRPPuQsd3RmBZwarGVHZQvtzfEBOreNuxEMKFcd5DaDn2PbBxfwLcj4+aenoh7ctXcbXmOQIn8HI6mCSw5MQ==" - } - }, - "npm:@esbuild/freebsd-x64@0.25.12": { - "type": "npm", - "name": "npm:@esbuild/freebsd-x64@0.25.12", - "data": { - "version": "0.25.12", - "packageName": "@esbuild/freebsd-x64", - "hash": "sha512-TGbO26Yw2xsHzxtbVFGEXBFH0FRAP7gtcPE7P5yP7wGy7cXK2oO7RyOhL5NLiqTlBh47XhmIUXuGciXEqYFfBQ==" - } - }, - "npm:@esbuild/freebsd-x64@0.27.3": { - "type": "npm", - "name": "npm:@esbuild/freebsd-x64@0.27.3", - "data": { - "version": "0.27.3", - "packageName": "@esbuild/freebsd-x64", - "hash": "sha512-dDk0X87T7mI6U3K9VjWtHOXqwAMJBNN2r7bejDsc+j03SEjtD9HrOl8gVFByeM0aJksoUuUVU9TBaZa2rgj0oA==" - } - }, - "npm:@esbuild/freebsd-x64@0.27.4": { - "type": "npm", - "name": "npm:@esbuild/freebsd-x64@0.27.4", - "data": { - "version": "0.27.4", - "packageName": "@esbuild/freebsd-x64", - "hash": "sha512-2kb4ceA/CpfUrIcTUl1wrP/9ad9Atrp5J94Lq69w7UwOMolPIGrfLSvAKJp0RTvkPPyn6CIWrNy13kyLikZRZQ==" - } - }, - "npm:@esbuild/linux-arm64@0.18.20": { - "type": "npm", - "name": "npm:@esbuild/linux-arm64@0.18.20", - "data": { - "version": "0.18.20", - "packageName": "@esbuild/linux-arm64", - "hash": "sha512-2YbscF+UL7SQAVIpnWvYwM+3LskyDmPhe31pE7/aoTMFKKzIc9lLbyGUpmmb8a8AixOL61sQ/mFh3jEjHYFvdA==" - } - }, - "npm:@esbuild/linux-arm64@0.25.12": { - "type": "npm", - "name": "npm:@esbuild/linux-arm64@0.25.12", - "data": { - "version": "0.25.12", - "packageName": "@esbuild/linux-arm64", - "hash": "sha512-8bwX7a8FghIgrupcxb4aUmYDLp8pX06rGh5HqDT7bB+8Rdells6mHvrFHHW2JAOPZUbnjUpKTLg6ECyzvas2AQ==" - } - }, - "npm:@esbuild/linux-arm64@0.27.3": { - "type": "npm", - "name": "npm:@esbuild/linux-arm64@0.27.3", - "data": { - "version": "0.27.3", - "packageName": "@esbuild/linux-arm64", - "hash": "sha512-sZOuFz/xWnZ4KH3YfFrKCf1WyPZHakVzTiqji3WDc0BCl2kBwiJLCXpzLzUBLgmp4veFZdvN5ChW4Eq/8Fc2Fg==" - } - }, - "npm:@esbuild/linux-arm64@0.27.4": { - "type": "npm", - "name": "npm:@esbuild/linux-arm64@0.27.4", - "data": { - "version": "0.27.4", - "packageName": "@esbuild/linux-arm64", - "hash": "sha512-7nQOttdzVGth1iz57kxg9uCz57dxQLHWxopL6mYuYthohPKEK0vU0C3O21CcBK6KDlkYVcnDXY099HcCDXd9dA==" - } - }, - "npm:@esbuild/linux-arm@0.18.20": { - "type": "npm", - "name": "npm:@esbuild/linux-arm@0.18.20", - "data": { - "version": "0.18.20", - "packageName": "@esbuild/linux-arm", - "hash": "sha512-/5bHkMWnq1EgKr1V+Ybz3s1hWXok7mDFUMQ4cG10AfW3wL02PSZi5kFpYKrptDsgb2WAJIvRcDm+qIvXf/apvg==" - } - }, - "npm:@esbuild/linux-arm@0.25.12": { - "type": "npm", - "name": "npm:@esbuild/linux-arm@0.25.12", - "data": { - "version": "0.25.12", - "packageName": "@esbuild/linux-arm", - "hash": "sha512-lPDGyC1JPDou8kGcywY0YILzWlhhnRjdof3UlcoqYmS9El818LLfJJc3PXXgZHrHCAKs/Z2SeZtDJr5MrkxtOw==" - } - }, - "npm:@esbuild/linux-arm@0.27.3": { - "type": "npm", - "name": "npm:@esbuild/linux-arm@0.27.3", - "data": { - "version": "0.27.3", - "packageName": "@esbuild/linux-arm", - "hash": "sha512-s6nPv2QkSupJwLYyfS+gwdirm0ukyTFNl3KTgZEAiJDd+iHZcbTPPcWCcRYH+WlNbwChgH2QkE9NSlNrMT8Gfw==" - } - }, - "npm:@esbuild/linux-arm@0.27.4": { - "type": "npm", - "name": "npm:@esbuild/linux-arm@0.27.4", - "data": { - "version": "0.27.4", - "packageName": "@esbuild/linux-arm", - "hash": "sha512-aBYgcIxX/wd5n2ys0yESGeYMGF+pv6g0DhZr3G1ZG4jMfruU9Tl1i2Z+Wnj9/KjGz1lTLCcorqE2viePZqj4Eg==" - } - }, - "npm:@esbuild/linux-ia32@0.18.20": { - "type": "npm", - "name": "npm:@esbuild/linux-ia32@0.18.20", - "data": { - "version": "0.18.20", - "packageName": "@esbuild/linux-ia32", - "hash": "sha512-P4etWwq6IsReT0E1KHU40bOnzMHoH73aXp96Fs8TIT6z9Hu8G6+0SHSw9i2isWrD2nbx2qo5yUqACgdfVGx7TA==" - } - }, - "npm:@esbuild/linux-ia32@0.25.12": { - "type": "npm", - "name": "npm:@esbuild/linux-ia32@0.25.12", - "data": { - "version": "0.25.12", - "packageName": "@esbuild/linux-ia32", - "hash": "sha512-0y9KrdVnbMM2/vG8KfU0byhUN+EFCny9+8g202gYqSSVMonbsCfLjUO+rCci7pM0WBEtz+oK/PIwHkzxkyharA==" - } - }, - "npm:@esbuild/linux-ia32@0.27.3": { - "type": "npm", - "name": "npm:@esbuild/linux-ia32@0.27.3", - "data": { - "version": "0.27.3", - "packageName": "@esbuild/linux-ia32", - "hash": "sha512-yGlQYjdxtLdh0a3jHjuwOrxQjOZYD/C9PfdbgJJF3TIZWnm/tMd/RcNiLngiu4iwcBAOezdnSLAwQDPqTmtTYg==" - } - }, - "npm:@esbuild/linux-ia32@0.27.4": { - "type": "npm", - "name": "npm:@esbuild/linux-ia32@0.27.4", - "data": { - "version": "0.27.4", - "packageName": "@esbuild/linux-ia32", - "hash": "sha512-oPtixtAIzgvzYcKBQM/qZ3R+9TEUd1aNJQu0HhGyqtx6oS7qTpvjheIWBbes4+qu1bNlo2V4cbkISr8q6gRBFA==" - } - }, - "npm:@esbuild/linux-loong64@0.18.20": { - "type": "npm", - "name": "npm:@esbuild/linux-loong64@0.18.20", - "data": { - "version": "0.18.20", - "packageName": "@esbuild/linux-loong64", - "hash": "sha512-nXW8nqBTrOpDLPgPY9uV+/1DjxoQ7DoB2N8eocyq8I9XuqJ7BiAMDMf9n1xZM9TgW0J8zrquIb/A7s3BJv7rjg==" - } - }, - "npm:@esbuild/linux-loong64@0.25.12": { - "type": "npm", - "name": "npm:@esbuild/linux-loong64@0.25.12", - "data": { - "version": "0.25.12", - "packageName": "@esbuild/linux-loong64", - "hash": "sha512-h///Lr5a9rib/v1GGqXVGzjL4TMvVTv+s1DPoxQdz7l/AYv6LDSxdIwzxkrPW438oUXiDtwM10o9PmwS/6Z0Ng==" - } - }, - "npm:@esbuild/linux-loong64@0.27.3": { - "type": "npm", - "name": "npm:@esbuild/linux-loong64@0.27.3", - "data": { - "version": "0.27.3", - "packageName": "@esbuild/linux-loong64", - "hash": "sha512-WO60Sn8ly3gtzhyjATDgieJNet/KqsDlX5nRC5Y3oTFcS1l0KWba+SEa9Ja1GfDqSF1z6hif/SkpQJbL63cgOA==" - } - }, - "npm:@esbuild/linux-loong64@0.27.4": { - "type": "npm", - "name": "npm:@esbuild/linux-loong64@0.27.4", - "data": { - "version": "0.27.4", - "packageName": "@esbuild/linux-loong64", - "hash": "sha512-8mL/vh8qeCoRcFH2nM8wm5uJP+ZcVYGGayMavi8GmRJjuI3g1v6Z7Ni0JJKAJW+m0EtUuARb6Lmp4hMjzCBWzA==" - } - }, - "npm:@esbuild/linux-mips64el@0.18.20": { - "type": "npm", - "name": "npm:@esbuild/linux-mips64el@0.18.20", - "data": { - "version": "0.18.20", - "packageName": "@esbuild/linux-mips64el", - "hash": "sha512-d5NeaXZcHp8PzYy5VnXV3VSd2D328Zb+9dEq5HE6bw6+N86JVPExrA6O68OPwobntbNJ0pzCpUFZTo3w0GyetQ==" - } - }, - "npm:@esbuild/linux-mips64el@0.25.12": { - "type": "npm", - "name": "npm:@esbuild/linux-mips64el@0.25.12", - "data": { - "version": "0.25.12", - "packageName": "@esbuild/linux-mips64el", - "hash": "sha512-iyRrM1Pzy9GFMDLsXn1iHUm18nhKnNMWscjmp4+hpafcZjrr2WbT//d20xaGljXDBYHqRcl8HnxbX6uaA/eGVw==" - } - }, - "npm:@esbuild/linux-mips64el@0.27.3": { - "type": "npm", - "name": "npm:@esbuild/linux-mips64el@0.27.3", - "data": { - "version": "0.27.3", - "packageName": "@esbuild/linux-mips64el", - "hash": "sha512-APsymYA6sGcZ4pD6k+UxbDjOFSvPWyZhjaiPyl/f79xKxwTnrn5QUnXR5prvetuaSMsb4jgeHewIDCIWljrSxw==" - } - }, - "npm:@esbuild/linux-mips64el@0.27.4": { - "type": "npm", - "name": "npm:@esbuild/linux-mips64el@0.27.4", - "data": { - "version": "0.27.4", - "packageName": "@esbuild/linux-mips64el", - "hash": "sha512-1RdrWFFiiLIW7LQq9Q2NES+HiD4NyT8Itj9AUeCl0IVCA459WnPhREKgwrpaIfTOe+/2rdntisegiPWn/r/aAw==" - } - }, - "npm:@esbuild/linux-ppc64@0.18.20": { - "type": "npm", - "name": "npm:@esbuild/linux-ppc64@0.18.20", - "data": { - "version": "0.18.20", - "packageName": "@esbuild/linux-ppc64", - "hash": "sha512-WHPyeScRNcmANnLQkq6AfyXRFr5D6N2sKgkFo2FqguP44Nw2eyDlbTdZwd9GYk98DZG9QItIiTlFLHJHjxP3FA==" - } - }, - "npm:@esbuild/linux-ppc64@0.25.12": { - "type": "npm", - "name": "npm:@esbuild/linux-ppc64@0.25.12", - "data": { - "version": "0.25.12", - "packageName": "@esbuild/linux-ppc64", - "hash": "sha512-9meM/lRXxMi5PSUqEXRCtVjEZBGwB7P/D4yT8UG/mwIdze2aV4Vo6U5gD3+RsoHXKkHCfSxZKzmDssVlRj1QQA==" - } - }, - "npm:@esbuild/linux-ppc64@0.27.3": { - "type": "npm", - "name": "npm:@esbuild/linux-ppc64@0.27.3", - "data": { - "version": "0.27.3", - "packageName": "@esbuild/linux-ppc64", - "hash": "sha512-eizBnTeBefojtDb9nSh4vvVQ3V9Qf9Df01PfawPcRzJH4gFSgrObw+LveUyDoKU3kxi5+9RJTCWlj4FjYXVPEA==" - } - }, - "npm:@esbuild/linux-ppc64@0.27.4": { - "type": "npm", - "name": "npm:@esbuild/linux-ppc64@0.27.4", - "data": { - "version": "0.27.4", - "packageName": "@esbuild/linux-ppc64", - "hash": "sha512-tLCwNG47l3sd9lpfyx9LAGEGItCUeRCWeAx6x2Jmbav65nAwoPXfewtAdtbtit/pJFLUWOhpv0FpS6GQAmPrHA==" - } - }, - "npm:@esbuild/linux-riscv64@0.18.20": { - "type": "npm", - "name": "npm:@esbuild/linux-riscv64@0.18.20", - "data": { - "version": "0.18.20", - "packageName": "@esbuild/linux-riscv64", - "hash": "sha512-WSxo6h5ecI5XH34KC7w5veNnKkju3zBRLEQNY7mv5mtBmrP/MjNBCAlsM2u5hDBlS3NGcTQpoBvRzqBcRtpq1A==" - } - }, - "npm:@esbuild/linux-riscv64@0.25.12": { - "type": "npm", - "name": "npm:@esbuild/linux-riscv64@0.25.12", - "data": { - "version": "0.25.12", - "packageName": "@esbuild/linux-riscv64", - "hash": "sha512-Zr7KR4hgKUpWAwb1f3o5ygT04MzqVrGEGXGLnj15YQDJErYu/BGg+wmFlIDOdJp0PmB0lLvxFIOXZgFRrdjR0w==" - } - }, - "npm:@esbuild/linux-riscv64@0.27.3": { - "type": "npm", - "name": "npm:@esbuild/linux-riscv64@0.27.3", - "data": { - "version": "0.27.3", - "packageName": "@esbuild/linux-riscv64", - "hash": "sha512-3Emwh0r5wmfm3ssTWRQSyVhbOHvqegUDRd0WhmXKX2mkHJe1SFCMJhagUleMq+Uci34wLSipf8Lagt4LlpRFWQ==" - } - }, - "npm:@esbuild/linux-riscv64@0.27.4": { - "type": "npm", - "name": "npm:@esbuild/linux-riscv64@0.27.4", - "data": { - "version": "0.27.4", - "packageName": "@esbuild/linux-riscv64", - "hash": "sha512-BnASypppbUWyqjd1KIpU4AUBiIhVr6YlHx/cnPgqEkNoVOhHg+YiSVxM1RLfiy4t9cAulbRGTNCKOcqHrEQLIw==" - } - }, - "npm:@esbuild/linux-s390x@0.18.20": { - "type": "npm", - "name": "npm:@esbuild/linux-s390x@0.18.20", - "data": { - "version": "0.18.20", - "packageName": "@esbuild/linux-s390x", - "hash": "sha512-+8231GMs3mAEth6Ja1iK0a1sQ3ohfcpzpRLH8uuc5/KVDFneH6jtAJLFGafpzpMRO6DzJ6AvXKze9LfFMrIHVQ==" - } - }, - "npm:@esbuild/linux-s390x@0.25.12": { - "type": "npm", - "name": "npm:@esbuild/linux-s390x@0.25.12", - "data": { - "version": "0.25.12", - "packageName": "@esbuild/linux-s390x", - "hash": "sha512-MsKncOcgTNvdtiISc/jZs/Zf8d0cl/t3gYWX8J9ubBnVOwlk65UIEEvgBORTiljloIWnBzLs4qhzPkJcitIzIg==" - } - }, - "npm:@esbuild/linux-s390x@0.27.3": { - "type": "npm", - "name": "npm:@esbuild/linux-s390x@0.27.3", - "data": { - "version": "0.27.3", - "packageName": "@esbuild/linux-s390x", - "hash": "sha512-pBHUx9LzXWBc7MFIEEL0yD/ZVtNgLytvx60gES28GcWMqil8ElCYR4kvbV2BDqsHOvVDRrOxGySBM9Fcv744hw==" - } - }, - "npm:@esbuild/linux-s390x@0.27.4": { - "type": "npm", - "name": "npm:@esbuild/linux-s390x@0.27.4", - "data": { - "version": "0.27.4", - "packageName": "@esbuild/linux-s390x", - "hash": "sha512-+eUqgb/Z7vxVLezG8bVB9SfBie89gMueS+I0xYh2tJdw3vqA/0ImZJ2ROeWwVJN59ihBeZ7Tu92dF/5dy5FttA==" - } - }, - "npm:@esbuild/linux-x64@0.18.20": { - "type": "npm", - "name": "npm:@esbuild/linux-x64@0.18.20", - "data": { - "version": "0.18.20", - "packageName": "@esbuild/linux-x64", - "hash": "sha512-UYqiqemphJcNsFEskc73jQ7B9jgwjWrSayxawS6UVFZGWrAAtkzjxSqnoclCXxWtfwLdzU+vTpcNYhpn43uP1w==" - } - }, - "npm:@esbuild/linux-x64@0.25.12": { - "type": "npm", - "name": "npm:@esbuild/linux-x64@0.25.12", - "data": { - "version": "0.25.12", - "packageName": "@esbuild/linux-x64", - "hash": "sha512-uqZMTLr/zR/ed4jIGnwSLkaHmPjOjJvnm6TVVitAa08SLS9Z0VM8wIRx7gWbJB5/J54YuIMInDquWyYvQLZkgw==" - } - }, - "npm:@esbuild/linux-x64@0.27.3": { - "type": "npm", - "name": "npm:@esbuild/linux-x64@0.27.3", - "data": { - "version": "0.27.3", - "packageName": "@esbuild/linux-x64", - "hash": "sha512-Czi8yzXUWIQYAtL/2y6vogER8pvcsOsk5cpwL4Gk5nJqH5UZiVByIY8Eorm5R13gq+DQKYg0+JyQoytLQas4dA==" - } - }, - "npm:@esbuild/linux-x64": { - "type": "npm", - "name": "npm:@esbuild/linux-x64", - "data": { - "version": "0.27.4", - "packageName": "@esbuild/linux-x64", - "hash": "sha512-S5qOXrKV8BQEzJPVxAwnryi2+Iq5pB40gTEIT69BQONqR7JH1EPIcQ/Uiv9mCnn05jff9umq/5nqzxlqTOg9NA==" - } - }, - "npm:@esbuild/netbsd-arm64@0.25.12": { - "type": "npm", - "name": "npm:@esbuild/netbsd-arm64@0.25.12", - "data": { - "version": "0.25.12", - "packageName": "@esbuild/netbsd-arm64", - "hash": "sha512-xXwcTq4GhRM7J9A8Gv5boanHhRa/Q9KLVmcyXHCTaM4wKfIpWkdXiMog/KsnxzJ0A1+nD+zoecuzqPmCRyBGjg==" - } - }, - "npm:@esbuild/netbsd-arm64@0.27.3": { - "type": "npm", - "name": "npm:@esbuild/netbsd-arm64@0.27.3", - "data": { - "version": "0.27.3", - "packageName": "@esbuild/netbsd-arm64", - "hash": "sha512-sDpk0RgmTCR/5HguIZa9n9u+HVKf40fbEUt+iTzSnCaGvY9kFP0YKBWZtJaraonFnqef5SlJ8/TiPAxzyS+UoA==" - } - }, - "npm:@esbuild/netbsd-arm64@0.27.4": { - "type": "npm", - "name": "npm:@esbuild/netbsd-arm64@0.27.4", - "data": { - "version": "0.27.4", - "packageName": "@esbuild/netbsd-arm64", - "hash": "sha512-xHT8X4sb0GS8qTqiwzHqpY00C95DPAq7nAwX35Ie/s+LO9830hrMd3oX0ZMKLvy7vsonee73x0lmcdOVXFzd6Q==" - } - }, - "npm:@esbuild/netbsd-x64@0.18.20": { - "type": "npm", - "name": "npm:@esbuild/netbsd-x64@0.18.20", - "data": { - "version": "0.18.20", - "packageName": "@esbuild/netbsd-x64", - "hash": "sha512-iO1c++VP6xUBUmltHZoMtCUdPlnPGdBom6IrO4gyKPFFVBKioIImVooR5I83nTew5UOYrk3gIJhbZh8X44y06A==" - } - }, - "npm:@esbuild/netbsd-x64@0.25.12": { - "type": "npm", - "name": "npm:@esbuild/netbsd-x64@0.25.12", - "data": { - "version": "0.25.12", - "packageName": "@esbuild/netbsd-x64", - "hash": "sha512-Ld5pTlzPy3YwGec4OuHh1aCVCRvOXdH8DgRjfDy/oumVovmuSzWfnSJg+VtakB9Cm0gxNO9BzWkj6mtO1FMXkQ==" - } - }, - "npm:@esbuild/netbsd-x64@0.27.3": { - "type": "npm", - "name": "npm:@esbuild/netbsd-x64@0.27.3", - "data": { - "version": "0.27.3", - "packageName": "@esbuild/netbsd-x64", - "hash": "sha512-P14lFKJl/DdaE00LItAukUdZO5iqNH7+PjoBm+fLQjtxfcfFE20Xf5CrLsmZdq5LFFZzb5JMZ9grUwvtVYzjiA==" - } - }, - "npm:@esbuild/netbsd-x64@0.27.4": { - "type": "npm", - "name": "npm:@esbuild/netbsd-x64@0.27.4", - "data": { - "version": "0.27.4", - "packageName": "@esbuild/netbsd-x64", - "hash": "sha512-RugOvOdXfdyi5Tyv40kgQnI0byv66BFgAqjdgtAKqHoZTbTF2QqfQrFwa7cHEORJf6X2ht+l9ABLMP0dnKYsgg==" - } - }, - "npm:@esbuild/openbsd-arm64@0.25.12": { - "type": "npm", - "name": "npm:@esbuild/openbsd-arm64@0.25.12", - "data": { - "version": "0.25.12", - "packageName": "@esbuild/openbsd-arm64", - "hash": "sha512-fF96T6KsBo/pkQI950FARU9apGNTSlZGsv1jZBAlcLL1MLjLNIWPBkj5NlSz8aAzYKg+eNqknrUJ24QBybeR5A==" - } - }, - "npm:@esbuild/openbsd-arm64@0.27.3": { - "type": "npm", - "name": "npm:@esbuild/openbsd-arm64@0.27.3", - "data": { - "version": "0.27.3", - "packageName": "@esbuild/openbsd-arm64", - "hash": "sha512-AIcMP77AvirGbRl/UZFTq5hjXK+2wC7qFRGoHSDrZ5v5b8DK/GYpXW3CPRL53NkvDqb9D+alBiC/dV0Fb7eJcw==" - } - }, - "npm:@esbuild/openbsd-arm64@0.27.4": { - "type": "npm", - "name": "npm:@esbuild/openbsd-arm64@0.27.4", - "data": { - "version": "0.27.4", - "packageName": "@esbuild/openbsd-arm64", - "hash": "sha512-2MyL3IAaTX+1/qP0O1SwskwcwCoOI4kV2IBX1xYnDDqthmq5ArrW94qSIKCAuRraMgPOmG0RDTA74mzYNQA9ow==" - } - }, - "npm:@esbuild/openbsd-x64@0.18.20": { - "type": "npm", - "name": "npm:@esbuild/openbsd-x64@0.18.20", - "data": { - "version": "0.18.20", - "packageName": "@esbuild/openbsd-x64", - "hash": "sha512-e5e4YSsuQfX4cxcygw/UCPIEP6wbIL+se3sxPdCiMbFLBWu0eiZOJ7WoD+ptCLrmjZBK1Wk7I6D/I3NglUGOxg==" - } - }, - "npm:@esbuild/openbsd-x64@0.25.12": { - "type": "npm", - "name": "npm:@esbuild/openbsd-x64@0.25.12", - "data": { - "version": "0.25.12", - "packageName": "@esbuild/openbsd-x64", - "hash": "sha512-MZyXUkZHjQxUvzK7rN8DJ3SRmrVrke8ZyRusHlP+kuwqTcfWLyqMOE3sScPPyeIXN/mDJIfGXvcMqCgYKekoQw==" - } - }, - "npm:@esbuild/openbsd-x64@0.27.3": { - "type": "npm", - "name": "npm:@esbuild/openbsd-x64@0.27.3", - "data": { - "version": "0.27.3", - "packageName": "@esbuild/openbsd-x64", - "hash": "sha512-DnW2sRrBzA+YnE70LKqnM3P+z8vehfJWHXECbwBmH/CU51z6FiqTQTHFenPlHmo3a8UgpLyH3PT+87OViOh1AQ==" - } - }, - "npm:@esbuild/openbsd-x64@0.27.4": { - "type": "npm", - "name": "npm:@esbuild/openbsd-x64@0.27.4", - "data": { - "version": "0.27.4", - "packageName": "@esbuild/openbsd-x64", - "hash": "sha512-u8fg/jQ5aQDfsnIV6+KwLOf1CmJnfu1ShpwqdwC0uA7ZPwFws55Ngc12vBdeUdnuWoQYx/SOQLGDcdlfXhYmXQ==" - } - }, - "npm:@esbuild/openharmony-arm64@0.25.12": { - "type": "npm", - "name": "npm:@esbuild/openharmony-arm64@0.25.12", - "data": { - "version": "0.25.12", - "packageName": "@esbuild/openharmony-arm64", - "hash": "sha512-rm0YWsqUSRrjncSXGA7Zv78Nbnw4XL6/dzr20cyrQf7ZmRcsovpcRBdhD43Nuk3y7XIoW2OxMVvwuRvk9XdASg==" - } - }, - "npm:@esbuild/openharmony-arm64@0.27.3": { - "type": "npm", - "name": "npm:@esbuild/openharmony-arm64@0.27.3", - "data": { - "version": "0.27.3", - "packageName": "@esbuild/openharmony-arm64", - "hash": "sha512-NinAEgr/etERPTsZJ7aEZQvvg/A6IsZG/LgZy+81wON2huV7SrK3e63dU0XhyZP4RKGyTm7aOgmQk0bGp0fy2g==" - } - }, - "npm:@esbuild/openharmony-arm64@0.27.4": { - "type": "npm", - "name": "npm:@esbuild/openharmony-arm64@0.27.4", - "data": { - "version": "0.27.4", - "packageName": "@esbuild/openharmony-arm64", - "hash": "sha512-JkTZrl6VbyO8lDQO3yv26nNr2RM2yZzNrNHEsj9bm6dOwwu9OYN28CjzZkH57bh4w0I2F7IodpQvUAEd1mbWXg==" - } - }, - "npm:@esbuild/sunos-x64@0.18.20": { - "type": "npm", - "name": "npm:@esbuild/sunos-x64@0.18.20", - "data": { - "version": "0.18.20", - "packageName": "@esbuild/sunos-x64", - "hash": "sha512-kDbFRFp0YpTQVVrqUd5FTYmWo45zGaXe0X8E1G/LKFC0v8x0vWrhOWSLITcCn63lmZIxfOMXtCfti/RxN/0wnQ==" - } - }, - "npm:@esbuild/sunos-x64@0.25.12": { - "type": "npm", - "name": "npm:@esbuild/sunos-x64@0.25.12", - "data": { - "version": "0.25.12", - "packageName": "@esbuild/sunos-x64", - "hash": "sha512-3wGSCDyuTHQUzt0nV7bocDy72r2lI33QL3gkDNGkod22EsYl04sMf0qLb8luNKTOmgF/eDEDP5BFNwoBKH441w==" - } - }, - "npm:@esbuild/sunos-x64@0.27.3": { - "type": "npm", - "name": "npm:@esbuild/sunos-x64@0.27.3", - "data": { - "version": "0.27.3", - "packageName": "@esbuild/sunos-x64", - "hash": "sha512-PanZ+nEz+eWoBJ8/f8HKxTTD172SKwdXebZ0ndd953gt1HRBbhMsaNqjTyYLGLPdoWHy4zLU7bDVJztF5f3BHA==" - } - }, - "npm:@esbuild/sunos-x64@0.27.4": { - "type": "npm", - "name": "npm:@esbuild/sunos-x64@0.27.4", - "data": { - "version": "0.27.4", - "packageName": "@esbuild/sunos-x64", - "hash": "sha512-/gOzgaewZJfeJTlsWhvUEmUG4tWEY2Spp5M20INYRg2ZKl9QPO3QEEgPeRtLjEWSW8FilRNacPOg8R1uaYkA6g==" - } - }, - "npm:@esbuild/win32-arm64@0.18.20": { - "type": "npm", - "name": "npm:@esbuild/win32-arm64@0.18.20", - "data": { - "version": "0.18.20", - "packageName": "@esbuild/win32-arm64", - "hash": "sha512-ddYFR6ItYgoaq4v4JmQQaAI5s7npztfV4Ag6NrhiaW0RrnOXqBkgwZLofVTlq1daVTQNhtI5oieTvkRPfZrePg==" - } - }, - "npm:@esbuild/win32-arm64@0.25.12": { - "type": "npm", - "name": "npm:@esbuild/win32-arm64@0.25.12", - "data": { - "version": "0.25.12", - "packageName": "@esbuild/win32-arm64", - "hash": "sha512-rMmLrur64A7+DKlnSuwqUdRKyd3UE7oPJZmnljqEptesKM8wx9J8gx5u0+9Pq0fQQW8vqeKebwNXdfOyP+8Bsg==" - } - }, - "npm:@esbuild/win32-arm64@0.27.3": { - "type": "npm", - "name": "npm:@esbuild/win32-arm64@0.27.3", - "data": { - "version": "0.27.3", - "packageName": "@esbuild/win32-arm64", - "hash": "sha512-B2t59lWWYrbRDw/tjiWOuzSsFh1Y/E95ofKz7rIVYSQkUYBjfSgf6oeYPNWHToFRr2zx52JKApIcAS/D5TUBnA==" - } - }, - "npm:@esbuild/win32-arm64@0.27.4": { - "type": "npm", - "name": "npm:@esbuild/win32-arm64@0.27.4", - "data": { - "version": "0.27.4", - "packageName": "@esbuild/win32-arm64", - "hash": "sha512-Z9SExBg2y32smoDQdf1HRwHRt6vAHLXcxD2uGgO/v2jK7Y718Ix4ndsbNMU/+1Qiem9OiOdaqitioZwxivhXYg==" - } - }, - "npm:@esbuild/win32-ia32@0.18.20": { - "type": "npm", - "name": "npm:@esbuild/win32-ia32@0.18.20", - "data": { - "version": "0.18.20", - "packageName": "@esbuild/win32-ia32", - "hash": "sha512-Wv7QBi3ID/rROT08SABTS7eV4hX26sVduqDOTe1MvGMjNd3EjOz4b7zeexIR62GTIEKrfJXKL9LFxTYgkyeu7g==" - } - }, - "npm:@esbuild/win32-ia32@0.25.12": { - "type": "npm", - "name": "npm:@esbuild/win32-ia32@0.25.12", - "data": { - "version": "0.25.12", - "packageName": "@esbuild/win32-ia32", - "hash": "sha512-HkqnmmBoCbCwxUKKNPBixiWDGCpQGVsrQfJoVGYLPT41XWF8lHuE5N6WhVia2n4o5QK5M4tYr21827fNhi4byQ==" - } - }, - "npm:@esbuild/win32-ia32@0.27.3": { - "type": "npm", - "name": "npm:@esbuild/win32-ia32@0.27.3", - "data": { - "version": "0.27.3", - "packageName": "@esbuild/win32-ia32", - "hash": "sha512-QLKSFeXNS8+tHW7tZpMtjlNb7HKau0QDpwm49u0vUp9y1WOF+PEzkU84y9GqYaAVW8aH8f3GcBck26jh54cX4Q==" - } - }, - "npm:@esbuild/win32-ia32@0.27.4": { - "type": "npm", - "name": "npm:@esbuild/win32-ia32@0.27.4", - "data": { - "version": "0.27.4", - "packageName": "@esbuild/win32-ia32", - "hash": "sha512-DAyGLS0Jz5G5iixEbMHi5KdiApqHBWMGzTtMiJ72ZOLhbu/bzxgAe8Ue8CTS3n3HbIUHQz/L51yMdGMeoxXNJw==" - } - }, - "npm:@esbuild/win32-x64@0.18.20": { - "type": "npm", - "name": "npm:@esbuild/win32-x64@0.18.20", - "data": { - "version": "0.18.20", - "packageName": "@esbuild/win32-x64", - "hash": "sha512-kTdfRcSiDfQca/y9QIkng02avJ+NCaQvrMejlsB3RRv5sE9rRoeBPISaZpKxHELzRxZyLvNts1P27W3wV+8geQ==" - } - }, - "npm:@esbuild/win32-x64@0.25.12": { - "type": "npm", - "name": "npm:@esbuild/win32-x64@0.25.12", - "data": { - "version": "0.25.12", - "packageName": "@esbuild/win32-x64", - "hash": "sha512-alJC0uCZpTFrSL0CCDjcgleBXPnCrEAhTBILpeAp7M/OFgoqtAetfBzX0xM00MUsVVPpVjlPuMbREqnZCXaTnA==" - } - }, - "npm:@esbuild/win32-x64@0.27.3": { - "type": "npm", - "name": "npm:@esbuild/win32-x64@0.27.3", - "data": { - "version": "0.27.3", - "packageName": "@esbuild/win32-x64", - "hash": "sha512-4uJGhsxuptu3OcpVAzli+/gWusVGwZZHTlS63hh++ehExkVT8SgiEf7/uC/PclrPPkLhZqGgCTjd0VWLo6xMqA==" - } - }, - "npm:@esbuild/win32-x64@0.27.4": { - "type": "npm", - "name": "npm:@esbuild/win32-x64@0.27.4", - "data": { - "version": "0.27.4", - "packageName": "@esbuild/win32-x64", - "hash": "sha512-+knoa0BDoeXgkNvvV1vvbZX4+hizelrkwmGJBdT17t8FNPwG2lKemmuMZlmaNQ3ws3DKKCxpb4zRZEIp3UxFCg==" - } - }, - "npm:@eslint-community/eslint-utils": { - "type": "npm", - "name": "npm:@eslint-community/eslint-utils", - "data": { - "version": "4.9.1", - "packageName": "@eslint-community/eslint-utils", - "hash": "sha512-phrYmNiYppR7znFEdqgfWHXR6NCkZEK7hwWDHZUjit/2/U0r6XvkDl0SYnoM51Hq7FhCGdLDT6zxCCOY1hexsQ==" - } - }, - "npm:@eslint-community/regexpp": { - "type": "npm", - "name": "npm:@eslint-community/regexpp", - "data": { - "version": "4.12.2", - "packageName": "@eslint-community/regexpp", - "hash": "sha512-EriSTlt5OC9/7SXkRSCAhfSxxoSUgBm33OH+IkwbdpgoqsSsUg7y3uh+IICI/Qg4BBWr3U2i39RpmycbxMq4ew==" - } - }, - "npm:@eslint/config-array": { - "type": "npm", - "name": "npm:@eslint/config-array", - "data": { - "version": "0.21.2", - "packageName": "@eslint/config-array", - "hash": "sha512-nJl2KGTlrf9GjLimgIru+V/mzgSK0ABCDQRvxw5BjURL7WfH5uoWmizbH7QB6MmnMBd8cIC9uceWnezL1VZWWw==" - } - }, - "npm:@eslint/config-helpers": { - "type": "npm", - "name": "npm:@eslint/config-helpers", - "data": { - "version": "0.4.2", - "packageName": "@eslint/config-helpers", - "hash": "sha512-gBrxN88gOIf3R7ja5K9slwNayVcZgK6SOUORm2uBzTeIEfeVaIhOpCtTox3P6R7o2jLFwLFTLnC7kU/RGcYEgw==" - } - }, - "npm:@eslint/core": { - "type": "npm", - "name": "npm:@eslint/core", - "data": { - "version": "0.17.0", - "packageName": "@eslint/core", - "hash": "sha512-yL/sLrpmtDaFEiUj1osRP4TI2MDz1AddJL+jZ7KSqvBuliN4xqYY54IfdN8qD8Toa6g1iloph1fxQNkjOxrrpQ==" - } - }, - "npm:@eslint/eslintrc": { - "type": "npm", - "name": "npm:@eslint/eslintrc", - "data": { - "version": "3.3.5", - "packageName": "@eslint/eslintrc", - "hash": "sha512-4IlJx0X0qftVsN5E+/vGujTRIFtwuLbNsVUe7TO6zYPDR1O6nFwvwhIKEKSrl6dZchmYBITazxKoUYOjdtjlRg==" - } - }, - "npm:@eslint/js": { - "type": "npm", - "name": "npm:@eslint/js", - "data": { - "version": "9.39.4", - "packageName": "@eslint/js", - "hash": "sha512-nE7DEIchvtiFTwBw4Lfbu59PG+kCofhjsKaCWzxTpt4lfRjRMqG6uMBzKXuEcyXhOHoUp9riAm7/aWYGhXZ9cw==" - } - }, - "npm:@eslint/object-schema": { - "type": "npm", - "name": "npm:@eslint/object-schema", - "data": { - "version": "2.1.7", - "packageName": "@eslint/object-schema", - "hash": "sha512-VtAOaymWVfZcmZbp6E2mympDIHvyjXs/12LqWYjVw6qjrfF+VK+fyG33kChz3nnK+SU5/NeHOqrTEHS8sXO3OA==" - } - }, - "npm:@eslint/plugin-kit": { - "type": "npm", - "name": "npm:@eslint/plugin-kit", - "data": { - "version": "0.4.1", - "packageName": "@eslint/plugin-kit", - "hash": "sha512-43/qtrDUokr7LJqoF2c3+RInu/t4zfrpYdoSDfYyhg52rwLV6TnOvdG4fXm7IkSB3wErkcmJS9iEhjVtOSEjjA==" - } - }, - "npm:@fastify/ajv-compiler": { - "type": "npm", - "name": "npm:@fastify/ajv-compiler", - "data": { - "version": "4.0.5", - "packageName": "@fastify/ajv-compiler", - "hash": "sha512-KoWKW+MhvfTRWL4qrhUwAAZoaChluo0m0vbiJlGMt2GXvL4LVPQEjt8kSpHI3IBq5Rez8fg+XeH3cneztq+C7A==" - } - }, - "npm:@fastify/error": { - "type": "npm", - "name": "npm:@fastify/error", - "data": { - "version": "4.2.0", - "packageName": "@fastify/error", - "hash": "sha512-RSo3sVDXfHskiBZKBPRgnQTtIqpi/7zhJOEmAxCiBcM7d0uwdGdxLlsCaLzGs8v8NnxIRlfG0N51p5yFaOentQ==" - } - }, - "npm:@fastify/fast-json-stringify-compiler": { - "type": "npm", - "name": "npm:@fastify/fast-json-stringify-compiler", - "data": { - "version": "5.0.3", - "packageName": "@fastify/fast-json-stringify-compiler", - "hash": "sha512-uik7yYHkLr6fxd8hJSZ8c+xF4WafPK+XzneQDPU+D10r5X19GW8lJcom2YijX2+qtFF1ENJlHXKFM9ouXNJYgQ==" - } - }, - "npm:@fastify/forwarded": { - "type": "npm", - "name": "npm:@fastify/forwarded", - "data": { - "version": "3.0.1", - "packageName": "@fastify/forwarded", - "hash": "sha512-JqDochHFqXs3C3Ml3gOY58zM7OqO9ENqPo0UqAjAjH8L01fRZqwX9iLeX34//kiJubF7r2ZQHtBRU36vONbLlw==" - } - }, - "npm:@fastify/merge-json-schemas": { - "type": "npm", - "name": "npm:@fastify/merge-json-schemas", - "data": { - "version": "0.2.1", - "packageName": "@fastify/merge-json-schemas", - "hash": "sha512-OA3KGBCy6KtIvLf8DINC5880o5iBlDX4SxzLQS8HorJAbqluzLRn80UXU0bxZn7UOFhFgpRJDasfwn9nG4FG4A==" - } - }, - "npm:@fastify/proxy-addr": { - "type": "npm", - "name": "npm:@fastify/proxy-addr", - "data": { - "version": "5.1.0", - "packageName": "@fastify/proxy-addr", - "hash": "sha512-INS+6gh91cLUjB+PVHfu1UqcB76Sqtpyp7bnL+FYojhjygvOPA9ctiD/JDKsyD9Xgu4hUhCSJBPig/w7duNajw==" - } - }, - "npm:@floating-ui/core": { - "type": "npm", - "name": "npm:@floating-ui/core", - "data": { - "version": "1.7.5", - "packageName": "@floating-ui/core", - "hash": "sha512-1Ih4WTWyw0+lKyFMcBHGbb5U5FtuHJuujoyyr5zTaWS5EYMeT6Jb2AuDeftsCsEuchO+mM2ij5+q9crhydzLhQ==" - } - }, - "npm:@floating-ui/dom": { - "type": "npm", - "name": "npm:@floating-ui/dom", - "data": { - "version": "1.7.6", - "packageName": "@floating-ui/dom", - "hash": "sha512-9gZSAI5XM36880PPMm//9dfiEngYoC6Am2izES1FF406YFsjvyBMmeJ2g4SAju3xWwtuynNRFL2s9hgxpLI5SQ==" - } - }, - "npm:@floating-ui/react-dom": { - "type": "npm", - "name": "npm:@floating-ui/react-dom", - "data": { - "version": "2.1.6", - "packageName": "@floating-ui/react-dom", - "hash": "sha512-4JX6rEatQEvlmgU80wZyq9RT96HZJa88q8hp0pBd+LrczeDI4o6uA2M+uvxngVHo4Ihr8uibXxH6+70zhAFrVw==" - } - }, - "npm:@floating-ui/react": { - "type": "npm", - "name": "npm:@floating-ui/react", - "data": { - "version": "0.27.16", - "packageName": "@floating-ui/react", - "hash": "sha512-9O8N4SeG2z++TSM8QA/KTeKFBVCNEz/AGS7gWPJf6KFRzmRWixFRnCnkPHRDwSVZW6QPDO6uT0P2SpWNKCc9/g==" - } - }, - "npm:@floating-ui/utils": { - "type": "npm", - "name": "npm:@floating-ui/utils", - "data": { - "version": "0.2.11", - "packageName": "@floating-ui/utils", - "hash": "sha512-RiB/yIh78pcIxl6lLMG0CgBXAZ2Y0eVHqMPYugu+9U0AeT6YBeiJpf7lbdJNIugFP5SIjwNRgo4DhR1Qxi26Gg==" - } - }, - "npm:@ghostery/adblocker-content": { - "type": "npm", - "name": "npm:@ghostery/adblocker-content", - "data": { - "version": "2.14.1", - "packageName": "@ghostery/adblocker-content", - "hash": "sha512-hDE6RAL9xgQonJQiK1knOHy527PEwlAuvKaha4snE0XO6Vmtk0HThce1M2JFVRxGayWR3nTxoWbvEfGWXU7O/A==" - } - }, - "npm:@ghostery/adblocker-extended-selectors": { - "type": "npm", - "name": "npm:@ghostery/adblocker-extended-selectors", - "data": { - "version": "2.14.1", - "packageName": "@ghostery/adblocker-extended-selectors", - "hash": "sha512-3RARO2ukDrfwDqVEMD+HKZIwsM9QjjII+U1zqxhLXZ0dZRHjbtUHlZCsokqfjZ1JAa3ZVKcZrF0nZv5SA2LgyA==" - } - }, - "npm:@ghostery/adblocker-puppeteer": { - "type": "npm", - "name": "npm:@ghostery/adblocker-puppeteer", - "data": { - "version": "2.14.1", - "packageName": "@ghostery/adblocker-puppeteer", - "hash": "sha512-P7SuAWDkDMriOhtLrSMZIERV+kxc9ieFUhfkSEgXHtqieLizsNUeys9ltvtU7m75XX+RTvg6JY8DmwX0HIF/LQ==" - } - }, - "npm:@ghostery/adblocker": { - "type": "npm", - "name": "npm:@ghostery/adblocker", - "data": { - "version": "2.14.1", - "packageName": "@ghostery/adblocker", - "hash": "sha512-/cQTMJRd4/7zpgFHWqe+9wqiRPGTy+BhqfkxplvejPgq8d6spBjC6bSJV61rVHJZw5F4KOO5ReKOvuguaKG28A==" - } - }, - "npm:@ghostery/url-parser": { - "type": "npm", - "name": "npm:@ghostery/url-parser", - "data": { - "version": "1.3.1", - "packageName": "@ghostery/url-parser", - "hash": "sha512-QKqGi+7aDQ4RcyHyCwgEk6B9vWnsBP4Q7htaN0zPJV3ATqTKEQDtSTb9c/AN586oJUDs24YXKcwFYwNweY/YjQ==" - } - }, - "npm:@hono/node-server": { - "type": "npm", - "name": "npm:@hono/node-server", - "data": { - "version": "1.19.9", - "packageName": "@hono/node-server", - "hash": "sha512-vHL6w3ecZsky+8P5MD+eFfaGTyCeOHUIFYMGpQGbrBTSmNNoxv0if69rEZ5giu36weC5saFuznL411gRX7bJDw==" - } - }, - "npm:@humanfs/core": { - "type": "npm", - "name": "npm:@humanfs/core", - "data": { - "version": "0.19.1", - "packageName": "@humanfs/core", - "hash": "sha512-5DyQ4+1JEUzejeK1JGICcideyfUbGixgS9jNgex5nqkW+cY7WZhxBigmieN5Qnw9ZosSNVC9KQKyb+GUaGyKUA==" - } - }, - "npm:@humanfs/node": { - "type": "npm", - "name": "npm:@humanfs/node", - "data": { - "version": "0.16.7", - "packageName": "@humanfs/node", - "hash": "sha512-/zUx+yOsIrG4Y43Eh2peDeKCxlRt/gET6aHfaKpuq267qXdYDFViVHfMaLyygZOnl0kGWxFIgsBy8QFuTLUXEQ==" - } - }, - "npm:@humanwhocodes/module-importer": { - "type": "npm", - "name": "npm:@humanwhocodes/module-importer", - "data": { - "version": "1.0.1", - "packageName": "@humanwhocodes/module-importer", - "hash": "sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA==" - } - }, - "npm:@humanwhocodes/retry": { - "type": "npm", - "name": "npm:@humanwhocodes/retry", - "data": { - "version": "0.4.3", - "packageName": "@humanwhocodes/retry", - "hash": "sha512-bV0Tgo9K4hfPCek+aMAn81RppFKv2ySDQeMoSZuvTASywNTnVJCArCZE2FWqpvIatKu7VMRLWlR1EazvVhDyhQ==" - } - }, - "npm:@img/colour": { - "type": "npm", - "name": "npm:@img/colour", - "data": { - "version": "1.0.0", - "packageName": "@img/colour", - "hash": "sha512-A5P/LfWGFSl6nsckYtjw9da+19jB8hkJ6ACTGcDfEJ0aE+l2n2El7dsVM7UVHZQ9s2lmYMWlrS21YLy2IR1LUw==" - } - }, - "npm:@img/sharp-darwin-arm64@0.33.5": { - "type": "npm", - "name": "npm:@img/sharp-darwin-arm64@0.33.5", - "data": { - "version": "0.33.5", - "packageName": "@img/sharp-darwin-arm64", - "hash": "sha512-UT4p+iz/2H4twwAoLCqfA9UH5pI6DggwKEGuaPy7nCVQ8ZsiY5PIcrRvD1DzuY3qYL07NtIQcWnBSY/heikIFQ==" - } - }, - "npm:@img/sharp-darwin-arm64@0.34.5": { - "type": "npm", - "name": "npm:@img/sharp-darwin-arm64@0.34.5", - "data": { - "version": "0.34.5", - "packageName": "@img/sharp-darwin-arm64", - "hash": "sha512-imtQ3WMJXbMY4fxb/Ndp6HBTNVtWCUI0WdobyheGf5+ad6xX8VIDO8u2xE4qc/fr08CKG/7dDseFtn6M6g/r3w==" - } - }, - "npm:@img/sharp-darwin-x64@0.33.5": { - "type": "npm", - "name": "npm:@img/sharp-darwin-x64@0.33.5", - "data": { - "version": "0.33.5", - "packageName": "@img/sharp-darwin-x64", - "hash": "sha512-fyHac4jIc1ANYGRDxtiqelIbdWkIuQaI84Mv45KvGRRxSAa7o7d1ZKAOBaYbnepLC1WqxfpimdeWfvqqSGwR2Q==" - } - }, - "npm:@img/sharp-darwin-x64@0.34.5": { - "type": "npm", - "name": "npm:@img/sharp-darwin-x64@0.34.5", - "data": { - "version": "0.34.5", - "packageName": "@img/sharp-darwin-x64", - "hash": "sha512-YNEFAF/4KQ/PeW0N+r+aVVsoIY0/qxxikF2SWdp+NRkmMB7y9LBZAVqQ4yhGCm/H3H270OSykqmQMKLBhBJDEw==" - } - }, - "npm:@img/sharp-libvips-darwin-arm64@1.0.4": { - "type": "npm", - "name": "npm:@img/sharp-libvips-darwin-arm64@1.0.4", - "data": { - "version": "1.0.4", - "packageName": "@img/sharp-libvips-darwin-arm64", - "hash": "sha512-XblONe153h0O2zuFfTAbQYAX2JhYmDHeWikp1LM9Hul9gVPjFY427k6dFEcOL72O01QxQsWi761svJ/ev9xEDg==" - } - }, - "npm:@img/sharp-libvips-darwin-arm64@1.2.4": { - "type": "npm", - "name": "npm:@img/sharp-libvips-darwin-arm64@1.2.4", - "data": { - "version": "1.2.4", - "packageName": "@img/sharp-libvips-darwin-arm64", - "hash": "sha512-zqjjo7RatFfFoP0MkQ51jfuFZBnVE2pRiaydKJ1G/rHZvnsrHAOcQALIi9sA5co5xenQdTugCvtb1cuf78Vf4g==" - } - }, - "npm:@img/sharp-libvips-darwin-x64@1.0.4": { - "type": "npm", - "name": "npm:@img/sharp-libvips-darwin-x64@1.0.4", - "data": { - "version": "1.0.4", - "packageName": "@img/sharp-libvips-darwin-x64", - "hash": "sha512-xnGR8YuZYfJGmWPvmlunFaWJsb9T/AO2ykoP3Fz/0X5XV2aoYBPkX6xqCQvUTKKiLddarLaxpzNe+b1hjeWHAQ==" - } - }, - "npm:@img/sharp-libvips-darwin-x64@1.2.4": { - "type": "npm", - "name": "npm:@img/sharp-libvips-darwin-x64@1.2.4", - "data": { - "version": "1.2.4", - "packageName": "@img/sharp-libvips-darwin-x64", - "hash": "sha512-1IOd5xfVhlGwX+zXv2N93k0yMONvUlANylbJw1eTah8K/Jtpi15KC+WSiaX/nBmbm2HxRM1gZ0nSdjSsrZbGKg==" - } - }, - "npm:@img/sharp-libvips-linux-arm64@1.0.4": { - "type": "npm", - "name": "npm:@img/sharp-libvips-linux-arm64@1.0.4", - "data": { - "version": "1.0.4", - "packageName": "@img/sharp-libvips-linux-arm64", - "hash": "sha512-9B+taZ8DlyyqzZQnoeIvDVR/2F4EbMepXMc/NdVbkzsJbzkUjhXv/70GQJ7tdLA4YJgNP25zukcxpX2/SueNrA==" - } - }, - "npm:@img/sharp-libvips-linux-arm64@1.2.4": { - "type": "npm", - "name": "npm:@img/sharp-libvips-linux-arm64@1.2.4", - "data": { - "version": "1.2.4", - "packageName": "@img/sharp-libvips-linux-arm64", - "hash": "sha512-excjX8DfsIcJ10x1Kzr4RcWe1edC9PquDRRPx3YVCvQv+U5p7Yin2s32ftzikXojb1PIFc/9Mt28/y+iRklkrw==" - } - }, - "npm:@img/sharp-libvips-linux-arm@1.0.5": { - "type": "npm", - "name": "npm:@img/sharp-libvips-linux-arm@1.0.5", - "data": { - "version": "1.0.5", - "packageName": "@img/sharp-libvips-linux-arm", - "hash": "sha512-gvcC4ACAOPRNATg/ov8/MnbxFDJqf/pDePbBnuBDcjsI8PssmjoKMAz4LtLaVi+OnSb5FK/yIOamqDwGmXW32g==" - } - }, - "npm:@img/sharp-libvips-linux-arm@1.2.4": { - "type": "npm", - "name": "npm:@img/sharp-libvips-linux-arm@1.2.4", - "data": { - "version": "1.2.4", - "packageName": "@img/sharp-libvips-linux-arm", - "hash": "sha512-bFI7xcKFELdiNCVov8e44Ia4u2byA+l3XtsAj+Q8tfCwO6BQ8iDojYdvoPMqsKDkuoOo+X6HZA0s0q11ANMQ8A==" - } - }, - "npm:@img/sharp-libvips-linux-ppc64": { - "type": "npm", - "name": "npm:@img/sharp-libvips-linux-ppc64", - "data": { - "version": "1.2.4", - "packageName": "@img/sharp-libvips-linux-ppc64", - "hash": "sha512-FMuvGijLDYG6lW+b/UvyilUWu5Ayu+3r2d1S8notiGCIyYU/76eig1UfMmkZ7vwgOrzKzlQbFSuQfgm7GYUPpA==" - } - }, - "npm:@img/sharp-libvips-linux-riscv64": { - "type": "npm", - "name": "npm:@img/sharp-libvips-linux-riscv64", - "data": { - "version": "1.2.4", - "packageName": "@img/sharp-libvips-linux-riscv64", - "hash": "sha512-oVDbcR4zUC0ce82teubSm+x6ETixtKZBh/qbREIOcI3cULzDyb18Sr/Wcyx7NRQeQzOiHTNbZFF1UwPS2scyGA==" - } - }, - "npm:@img/sharp-libvips-linux-s390x@1.0.4": { - "type": "npm", - "name": "npm:@img/sharp-libvips-linux-s390x@1.0.4", - "data": { - "version": "1.0.4", - "packageName": "@img/sharp-libvips-linux-s390x", - "hash": "sha512-u7Wz6ntiSSgGSGcjZ55im6uvTrOxSIS8/dgoVMoiGE9I6JAfU50yH5BoDlYA1tcuGS7g/QNtetJnxA6QEsCVTA==" - } - }, - "npm:@img/sharp-libvips-linux-s390x@1.2.4": { - "type": "npm", - "name": "npm:@img/sharp-libvips-linux-s390x@1.2.4", - "data": { - "version": "1.2.4", - "packageName": "@img/sharp-libvips-linux-s390x", - "hash": "sha512-qmp9VrzgPgMoGZyPvrQHqk02uyjA0/QrTO26Tqk6l4ZV0MPWIW6LTkqOIov+J1yEu7MbFQaDpwdwJKhbJvuRxQ==" - } - }, - "npm:@img/sharp-libvips-linux-x64@1.0.4": { - "type": "npm", - "name": "npm:@img/sharp-libvips-linux-x64@1.0.4", - "data": { - "version": "1.0.4", - "packageName": "@img/sharp-libvips-linux-x64", - "hash": "sha512-MmWmQ3iPFZr0Iev+BAgVMb3ZyC4KeFc3jFxnNbEPas60e1cIfevbtuyf9nDGIzOaW9PdnDciJm+wFFaTlj5xYw==" - } - }, - "npm:@img/sharp-libvips-linux-x64": { - "type": "npm", - "name": "npm:@img/sharp-libvips-linux-x64", - "data": { - "version": "1.2.4", - "packageName": "@img/sharp-libvips-linux-x64", - "hash": "sha512-tJxiiLsmHc9Ax1bz3oaOYBURTXGIRDODBqhveVHonrHJ9/+k89qbLl0bcJns+e4t4rvaNBxaEZsFtSfAdquPrw==" - } - }, - "npm:@img/sharp-libvips-linuxmusl-arm64@1.0.4": { - "type": "npm", - "name": "npm:@img/sharp-libvips-linuxmusl-arm64@1.0.4", - "data": { - "version": "1.0.4", - "packageName": "@img/sharp-libvips-linuxmusl-arm64", - "hash": "sha512-9Ti+BbTYDcsbp4wfYib8Ctm1ilkugkA/uscUn6UXK1ldpC1JjiXbLfFZtRlBhjPZ5o1NCLiDbg8fhUPKStHoTA==" - } - }, - "npm:@img/sharp-libvips-linuxmusl-arm64@1.2.4": { - "type": "npm", - "name": "npm:@img/sharp-libvips-linuxmusl-arm64@1.2.4", - "data": { - "version": "1.2.4", - "packageName": "@img/sharp-libvips-linuxmusl-arm64", - "hash": "sha512-FVQHuwx1IIuNow9QAbYUzJ+En8KcVm9Lk5+uGUQJHaZmMECZmOlix9HnH7n1TRkXMS0pGxIJokIVB9SuqZGGXw==" - } - }, - "npm:@img/sharp-libvips-linuxmusl-x64@1.0.4": { - "type": "npm", - "name": "npm:@img/sharp-libvips-linuxmusl-x64@1.0.4", - "data": { - "version": "1.0.4", - "packageName": "@img/sharp-libvips-linuxmusl-x64", - "hash": "sha512-viYN1KX9m+/hGkJtvYYp+CCLgnJXwiQB39damAO7WMdKWlIhmYTfHjwSbQeUK/20vY154mwezd9HflVFM1wVSw==" - } - }, - "npm:@img/sharp-libvips-linuxmusl-x64": { - "type": "npm", - "name": "npm:@img/sharp-libvips-linuxmusl-x64", - "data": { - "version": "1.2.4", - "packageName": "@img/sharp-libvips-linuxmusl-x64", - "hash": "sha512-+LpyBk7L44ZIXwz/VYfglaX/okxezESc6UxDSoyo2Ks6Jxc4Y7sGjpgU9s4PMgqgjj1gZCylTieNamqA1MF7Dg==" - } - }, - "npm:@img/sharp-linux-arm64@0.33.5": { - "type": "npm", - "name": "npm:@img/sharp-linux-arm64@0.33.5", - "data": { - "version": "0.33.5", - "packageName": "@img/sharp-linux-arm64", - "hash": "sha512-JMVv+AMRyGOHtO1RFBiJy/MBsgz0x4AWrT6QoEVVTyh1E39TrCUpTRI7mx9VksGX4awWASxqCYLCV4wBZHAYxA==" - } - }, - "npm:@img/sharp-linux-arm64@0.34.5": { - "type": "npm", - "name": "npm:@img/sharp-linux-arm64@0.34.5", - "data": { - "version": "0.34.5", - "packageName": "@img/sharp-linux-arm64", - "hash": "sha512-bKQzaJRY/bkPOXyKx5EVup7qkaojECG6NLYswgktOZjaXecSAeCWiZwwiFf3/Y+O1HrauiE3FVsGxFg8c24rZg==" - } - }, - "npm:@img/sharp-linux-arm@0.33.5": { - "type": "npm", - "name": "npm:@img/sharp-linux-arm@0.33.5", - "data": { - "version": "0.33.5", - "packageName": "@img/sharp-linux-arm", - "hash": "sha512-JTS1eldqZbJxjvKaAkxhZmBqPRGmxgu+qFKSInv8moZ2AmT5Yib3EQ1c6gp493HvrvV8QgdOXdyaIBrhvFhBMQ==" - } - }, - "npm:@img/sharp-linux-arm@0.34.5": { - "type": "npm", - "name": "npm:@img/sharp-linux-arm@0.34.5", - "data": { - "version": "0.34.5", - "packageName": "@img/sharp-linux-arm", - "hash": "sha512-9dLqsvwtg1uuXBGZKsxem9595+ujv0sJ6Vi8wcTANSFpwV/GONat5eCkzQo/1O6zRIkh0m/8+5BjrRr7jDUSZw==" - } - }, - "npm:@img/sharp-linux-ppc64": { - "type": "npm", - "name": "npm:@img/sharp-linux-ppc64", - "data": { - "version": "0.34.5", - "packageName": "@img/sharp-linux-ppc64", - "hash": "sha512-7zznwNaqW6YtsfrGGDA6BRkISKAAE1Jo0QdpNYXNMHu2+0dTrPflTLNkpc8l7MUP5M16ZJcUvysVWWrMefZquA==" - } - }, - "npm:@img/sharp-linux-riscv64": { - "type": "npm", - "name": "npm:@img/sharp-linux-riscv64", - "data": { - "version": "0.34.5", - "packageName": "@img/sharp-linux-riscv64", - "hash": "sha512-51gJuLPTKa7piYPaVs8GmByo7/U7/7TZOq+cnXJIHZKavIRHAP77e3N2HEl3dgiqdD/w0yUfiJnII77PuDDFdw==" - } - }, - "npm:@img/sharp-linux-s390x@0.33.5": { - "type": "npm", - "name": "npm:@img/sharp-linux-s390x@0.33.5", - "data": { - "version": "0.33.5", - "packageName": "@img/sharp-linux-s390x", - "hash": "sha512-y/5PCd+mP4CA/sPDKl2961b+C9d+vPAveS33s6Z3zfASk2j5upL6fXVPZi7ztePZ5CuH+1kW8JtvxgbuXHRa4Q==" - } - }, - "npm:@img/sharp-linux-s390x@0.34.5": { - "type": "npm", - "name": "npm:@img/sharp-linux-s390x@0.34.5", - "data": { - "version": "0.34.5", - "packageName": "@img/sharp-linux-s390x", - "hash": "sha512-nQtCk0PdKfho3eC5MrbQoigJ2gd1CgddUMkabUj+rBevs8tZ2cULOx46E7oyX+04WGfABgIwmMC0VqieTiR4jg==" - } - }, - "npm:@img/sharp-linux-x64@0.33.5": { - "type": "npm", - "name": "npm:@img/sharp-linux-x64@0.33.5", - "data": { - "version": "0.33.5", - "packageName": "@img/sharp-linux-x64", - "hash": "sha512-opC+Ok5pRNAzuvq1AG0ar+1owsu842/Ab+4qvU879ippJBHvyY5n2mxF1izXqkPYlGuP/M556uh53jRLJmzTWA==" - } - }, - "npm:@img/sharp-linux-x64": { - "type": "npm", - "name": "npm:@img/sharp-linux-x64", - "data": { - "version": "0.34.5", - "packageName": "@img/sharp-linux-x64", - "hash": "sha512-MEzd8HPKxVxVenwAa+JRPwEC7QFjoPWuS5NZnBt6B3pu7EG2Ge0id1oLHZpPJdn3OQK+BQDiw9zStiHBTJQQQQ==" - } - }, - "npm:@img/sharp-linuxmusl-arm64@0.33.5": { - "type": "npm", - "name": "npm:@img/sharp-linuxmusl-arm64@0.33.5", - "data": { - "version": "0.33.5", - "packageName": "@img/sharp-linuxmusl-arm64", - "hash": "sha512-XrHMZwGQGvJg2V/oRSUfSAfjfPxO+4DkiRh6p2AFjLQztWUuY/o8Mq0eMQVIY7HJ1CDQUJlxGGZRw1a5bqmd1g==" - } - }, - "npm:@img/sharp-linuxmusl-arm64@0.34.5": { - "type": "npm", - "name": "npm:@img/sharp-linuxmusl-arm64@0.34.5", - "data": { - "version": "0.34.5", - "packageName": "@img/sharp-linuxmusl-arm64", - "hash": "sha512-fprJR6GtRsMt6Kyfq44IsChVZeGN97gTD331weR1ex1c1rypDEABN6Tm2xa1wE6lYb5DdEnk03NZPqA7Id21yg==" - } - }, - "npm:@img/sharp-linuxmusl-x64@0.33.5": { - "type": "npm", - "name": "npm:@img/sharp-linuxmusl-x64@0.33.5", - "data": { - "version": "0.33.5", - "packageName": "@img/sharp-linuxmusl-x64", - "hash": "sha512-WT+d/cgqKkkKySYmqoZ8y3pxx7lx9vVejxW/W4DOFMYVSkErR+w7mf2u8m/y4+xHe7yY9DAXQMWQhpnMuFfScw==" - } - }, - "npm:@img/sharp-linuxmusl-x64": { - "type": "npm", - "name": "npm:@img/sharp-linuxmusl-x64", - "data": { - "version": "0.34.5", - "packageName": "@img/sharp-linuxmusl-x64", - "hash": "sha512-Jg8wNT1MUzIvhBFxViqrEhWDGzqymo3sV7z7ZsaWbZNDLXRJZoRGrjulp60YYtV4wfY8VIKcWidjojlLcWrd8Q==" - } - }, - "npm:@img/sharp-wasm32@0.33.5": { - "type": "npm", - "name": "npm:@img/sharp-wasm32@0.33.5", - "data": { - "version": "0.33.5", - "packageName": "@img/sharp-wasm32", - "hash": "sha512-ykUW4LVGaMcU9lu9thv85CbRMAwfeadCJHRsg2GmeRa/cJxsVY9Rbd57JcMxBkKHag5U/x7TSBpScF4U8ElVzg==" - } - }, - "npm:@img/sharp-wasm32@0.34.5": { - "type": "npm", - "name": "npm:@img/sharp-wasm32@0.34.5", - "data": { - "version": "0.34.5", - "packageName": "@img/sharp-wasm32", - "hash": "sha512-OdWTEiVkY2PHwqkbBI8frFxQQFekHaSSkUIJkwzclWZe64O1X4UlUjqqqLaPbUpMOQk6FBu/HtlGXNblIs0huw==" - } - }, - "npm:@img/sharp-win32-arm64": { - "type": "npm", - "name": "npm:@img/sharp-win32-arm64", - "data": { - "version": "0.34.5", - "packageName": "@img/sharp-win32-arm64", - "hash": "sha512-WQ3AgWCWYSb2yt+IG8mnC6Jdk9Whs7O0gxphblsLvdhSpSTtmu69ZG1Gkb6NuvxsNACwiPV6cNSZNzt0KPsw7g==" - } - }, - "npm:@img/sharp-win32-ia32@0.33.5": { - "type": "npm", - "name": "npm:@img/sharp-win32-ia32@0.33.5", - "data": { - "version": "0.33.5", - "packageName": "@img/sharp-win32-ia32", - "hash": "sha512-T36PblLaTwuVJ/zw/LaH0PdZkRz5rd3SmMHX8GSmR7vtNSP5Z6bQkExdSK7xGWyxLw4sUknBuugTelgw2faBbQ==" - } - }, - "npm:@img/sharp-win32-ia32@0.34.5": { - "type": "npm", - "name": "npm:@img/sharp-win32-ia32@0.34.5", - "data": { - "version": "0.34.5", - "packageName": "@img/sharp-win32-ia32", - "hash": "sha512-FV9m/7NmeCmSHDD5j4+4pNI8Cp3aW+JvLoXcTUo0IqyjSfAZJ8dIUmijx1qaJsIiU+Hosw6xM5KijAWRJCSgNg==" - } - }, - "npm:@img/sharp-win32-x64@0.33.5": { - "type": "npm", - "name": "npm:@img/sharp-win32-x64@0.33.5", - "data": { - "version": "0.33.5", - "packageName": "@img/sharp-win32-x64", - "hash": "sha512-MpY/o8/8kj+EcnxwvrP4aTJSWw/aZ7JIGR4aBeZkZw5B7/Jn+tY9/VNwtcoGmdT7GfggGIU4kygOMSbYnOrAbg==" - } - }, - "npm:@img/sharp-win32-x64@0.34.5": { - "type": "npm", - "name": "npm:@img/sharp-win32-x64@0.34.5", - "data": { - "version": "0.34.5", - "packageName": "@img/sharp-win32-x64", - "hash": "sha512-+29YMsqY2/9eFEiW93eqWnuLcWcufowXewwSNIT6UwZdUUCrM3oFjMWH/Z6/TMmb4hlFenmfAVbpWeup2jryCw==" - } - }, - "npm:@inquirer/ansi": { - "type": "npm", - "name": "npm:@inquirer/ansi", - "data": { - "version": "2.0.4", - "packageName": "@inquirer/ansi", - "hash": "sha512-DpcZrQObd7S0R/U3bFdkcT5ebRwbTTC4D3tCc1vsJizmgPLxNJBo+AAFmrZwe8zk30P2QzgzGWZ3Q9uJwWuhIg==" - } - }, - "npm:@inquirer/checkbox": { - "type": "npm", - "name": "npm:@inquirer/checkbox", - "data": { - "version": "5.1.2", - "packageName": "@inquirer/checkbox", - "hash": "sha512-PubpMPO2nJgMufkoB3P2wwxNXEMUXnBIKi/ACzDUYfaoPuM7gSTmuxJeMscoLVEsR4qqrCMf5p0SiYGWnVJ8kw==" - } - }, - "npm:@inquirer/confirm": { - "type": "npm", - "name": "npm:@inquirer/confirm", - "data": { - "version": "6.0.10", - "packageName": "@inquirer/confirm", - "hash": "sha512-tiNyA73pgpQ0FQ7axqtoLUe4GDYjNCDcVsbgcA5anvwg2z6i+suEngLKKJrWKJolT//GFPZHwN30binDIHgSgQ==" - } - }, - "npm:@inquirer/core": { - "type": "npm", - "name": "npm:@inquirer/core", - "data": { - "version": "11.1.7", - "packageName": "@inquirer/core", - "hash": "sha512-1BiBNDk9btIwYIzNZpkikIHXWeNzNncJePPqwDyVMhXhD1ebqbpn1mKGctpoqAbzywZfdG0O4tvmsGIcOevAPQ==" - } - }, - "npm:@inquirer/editor": { - "type": "npm", - "name": "npm:@inquirer/editor", - "data": { - "version": "5.0.10", - "packageName": "@inquirer/editor", - "hash": "sha512-VJx4XyaKea7t8hEApTw5dxeIyMtWXre2OiyJcICCRZI4hkoHsMoCnl/KbUnJJExLbH9csLLHMVR144ZhFE1CwA==" - } - }, - "npm:@inquirer/expand": { - "type": "npm", - "name": "npm:@inquirer/expand", - "data": { - "version": "5.0.10", - "packageName": "@inquirer/expand", - "hash": "sha512-fC0UHJPXsTRvY2fObiwuQYaAnHrp3aDqfwKUJSdfpgv18QUG054ezGbaRNStk/BKD5IPijeMKWej8VV8O5Q/eQ==" - } - }, - "npm:@inquirer/external-editor": { - "type": "npm", - "name": "npm:@inquirer/external-editor", - "data": { - "version": "2.0.4", - "packageName": "@inquirer/external-editor", - "hash": "sha512-Prenuv9C1PHj2Itx0BcAOVBTonz02Hc2Nd2DbU67PdGUaqn0nPCnV34oDyyoaZHnmfRxkpuhh/u51ThkrO+RdA==" - } - }, - "npm:@inquirer/figures": { - "type": "npm", - "name": "npm:@inquirer/figures", - "data": { - "version": "2.0.4", - "packageName": "@inquirer/figures", - "hash": "sha512-eLBsjlS7rPS3WEhmOmh1znQ5IsQrxWzxWDxO51e4urv+iVrSnIHbq4zqJIOiyNdYLa+BVjwOtdetcQx1lWPpiQ==" - } - }, - "npm:@inquirer/input": { - "type": "npm", - "name": "npm:@inquirer/input", - "data": { - "version": "5.0.10", - "packageName": "@inquirer/input", - "hash": "sha512-nvZ6qEVeX/zVtZ1dY2hTGDQpVGD3R7MYPLODPgKO8Y+RAqxkrP3i/3NwF3fZpLdaMiNuK0z2NaYIx9tPwiSegQ==" - } - }, - "npm:@inquirer/number": { - "type": "npm", - "name": "npm:@inquirer/number", - "data": { - "version": "4.0.10", - "packageName": "@inquirer/number", - "hash": "sha512-Ht8OQstxiS3APMGjHV0aYAjRAysidWdwurWEo2i8yI5xbhOBWqizT0+MU1S2GCcuhIBg+3SgWVjEoXgfhY+XaA==" - } - }, - "npm:@inquirer/password": { - "type": "npm", - "name": "npm:@inquirer/password", - "data": { - "version": "5.0.10", - "packageName": "@inquirer/password", - "hash": "sha512-QbNyvIE8q2GTqKLYSsA8ATG+eETo+m31DSR0+AU7x3d2FhaTWzqQek80dj3JGTo743kQc6mhBR0erMjYw5jQ0A==" - } - }, - "npm:@inquirer/prompts": { - "type": "npm", - "name": "npm:@inquirer/prompts", - "data": { - "version": "8.3.2", - "packageName": "@inquirer/prompts", - "hash": "sha512-yFroiSj2iiBFlm59amdTvAcQFvWS6ph5oKESls/uqPBect7rTU2GbjyZO2DqxMGuIwVA8z0P4K6ViPcd/cp+0w==" - } - }, - "npm:@inquirer/rawlist": { - "type": "npm", - "name": "npm:@inquirer/rawlist", - "data": { - "version": "5.2.6", - "packageName": "@inquirer/rawlist", - "hash": "sha512-jfw0MLJ5TilNsa9zlJ6nmRM0ZFVZhhTICt4/6CU2Dv1ndY7l3sqqo1gIYZyMMDw0LvE1u1nzJNisfHEhJIxq5w==" - } - }, - "npm:@inquirer/search": { - "type": "npm", - "name": "npm:@inquirer/search", - "data": { - "version": "4.1.6", - "packageName": "@inquirer/search", - "hash": "sha512-3/6kTRae98hhDevENScy7cdFEuURnSpM3JbBNg8yfXLw88HgTOl+neUuy/l9W0No5NzGsLVydhBzTIxZP7yChQ==" - } - }, - "npm:@inquirer/select": { - "type": "npm", - "name": "npm:@inquirer/select", - "data": { - "version": "5.1.2", - "packageName": "@inquirer/select", - "hash": "sha512-kTK8YIkHV+f02y7bWCh7E0u2/11lul5WepVTclr3UMBtBr05PgcZNWfMa7FY57ihpQFQH/spLMHTcr0rXy50tA==" - } - }, - "npm:@inquirer/type": { - "type": "npm", - "name": "npm:@inquirer/type", - "data": { - "version": "4.0.4", - "packageName": "@inquirer/type", - "hash": "sha512-PamArxO3cFJZoOzspzo6cxVlLeIftyBsZw/S9bKY5DzxqJVZgjoj1oP8d0rskKtp7sZxBycsoer1g6UeJV1BBA==" - } - }, - "npm:@isaacs/cliui@8.0.2": { - "type": "npm", - "name": "npm:@isaacs/cliui@8.0.2", - "data": { - "version": "8.0.2", - "packageName": "@isaacs/cliui", - "hash": "sha512-O8jcjabXaleOG9DQ0+ARXWZBTfnP4WNAqzuiJK7ll44AmxGKv/J2M4TPjxjY3znBCfvBXFzucm1twdyFybFqEA==" - } - }, - "npm:@isaacs/cliui": { - "type": "npm", - "name": "npm:@isaacs/cliui", - "data": { - "version": "9.0.0", - "packageName": "@isaacs/cliui", - "hash": "sha512-AokJm4tuBHillT+FpMtxQ60n8ObyXBatq7jD2/JA9dxbDDokKQm8KMht5ibGzLVU9IJDIKK4TPKgMHEYMn3lMg==" - } - }, - "npm:@isaacs/fs-minipass": { - "type": "npm", - "name": "npm:@isaacs/fs-minipass", - "data": { - "version": "4.0.1", - "packageName": "@isaacs/fs-minipass", - "hash": "sha512-wgm9Ehl2jpeqP3zw/7mo3kRHFp5MEDhqAdwy1fTGkHAwnkGOVsgpvQhL8B5n1qlb01jV3n/bI0ZfZp5lWA1k4w==" - } - }, - "npm:@jest/diff-sequences": { - "type": "npm", - "name": "npm:@jest/diff-sequences", - "data": { - "version": "30.3.0", - "packageName": "@jest/diff-sequences", - "hash": "sha512-cG51MVnLq1ecVUaQ3fr6YuuAOitHK1S4WUJHnsPFE/quQr33ADUx1FfrTCpMCRxvy0Yr9BThKpDjSlcTi91tMA==" - } - }, - "npm:@jest/get-type": { - "type": "npm", - "name": "npm:@jest/get-type", - "data": { - "version": "30.1.0", - "packageName": "@jest/get-type", - "hash": "sha512-eMbZE2hUnx1WV0pmURZY9XoXPkUYjpc55mb0CrhtdWLtzMQPFvu/rZkTLZFTsdaVQa+Tr4eWAteqcUzoawq/uA==" - } - }, - "npm:@jest/schemas": { - "type": "npm", - "name": "npm:@jest/schemas", - "data": { - "version": "30.0.5", - "packageName": "@jest/schemas", - "hash": "sha512-DmdYgtezMkh3cpU8/1uyXakv3tJRcmcXxBOcO0tbaozPwpmh4YMsnWrQm9ZmZMfa5ocbxzbFk6O4bDPEc/iAnA==" - } - }, - "npm:@jridgewell/gen-mapping": { - "type": "npm", - "name": "npm:@jridgewell/gen-mapping", - "data": { - "version": "0.3.13", - "packageName": "@jridgewell/gen-mapping", - "hash": "sha512-2kkt/7niJ6MgEPxF0bYdQ6etZaA+fQvDcLKckhy1yIQOzaoKjBBjSj63/aLVjYE3qhRt5dvM+uUyfCg6UKCBbA==" - } - }, - "npm:@jridgewell/remapping": { - "type": "npm", - "name": "npm:@jridgewell/remapping", - "data": { - "version": "2.3.5", - "packageName": "@jridgewell/remapping", - "hash": "sha512-LI9u/+laYG4Ds1TDKSJW2YPrIlcVYOwi2fUC6xB43lueCjgxV4lffOCZCtYFiH6TNOX+tQKXx97T4IKHbhyHEQ==" - } - }, - "npm:@jridgewell/resolve-uri": { - "type": "npm", - "name": "npm:@jridgewell/resolve-uri", - "data": { - "version": "3.1.2", - "packageName": "@jridgewell/resolve-uri", - "hash": "sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw==" - } - }, - "npm:@jridgewell/sourcemap-codec": { - "type": "npm", - "name": "npm:@jridgewell/sourcemap-codec", - "data": { - "version": "1.5.5", - "packageName": "@jridgewell/sourcemap-codec", - "hash": "sha512-cYQ9310grqxueWbl+WuIUIaiUaDcj7WOq5fVhEljNVgRfOUhY9fy2zTvfoqWsnebh8Sl70VScFbICvJnLKB0Og==" - } - }, - "npm:@jridgewell/trace-mapping": { - "type": "npm", - "name": "npm:@jridgewell/trace-mapping", - "data": { - "version": "0.3.31", - "packageName": "@jridgewell/trace-mapping", - "hash": "sha512-zzNR+SdQSDJzc8joaeP8QQoCQr8NuYx2dIIytl1QeBEZHJ9uW6hebsrYgbz8hJwUQao3TWCMtmfV8Nu1twOLAw==" - } - }, - "npm:@jridgewell/trace-mapping@0.3.9": { - "type": "npm", - "name": "npm:@jridgewell/trace-mapping@0.3.9", - "data": { - "version": "0.3.9", - "packageName": "@jridgewell/trace-mapping", - "hash": "sha512-3Belt6tdc8bPgAtbcmdtNJlirVoTmEb5e2gC94PnkwEW9jI6CAHUeoG85tjWP5WquqfavoMtMwiG4P926ZKKuQ==" - } - }, - "npm:@kikobeats/content-type": { - "type": "npm", - "name": "npm:@kikobeats/content-type", - "data": { - "version": "1.0.3", - "packageName": "@kikobeats/content-type", - "hash": "sha512-5FJ7DRACUgopXmRomCLlncPMAEM3oj6r8jlTT4h/oagn9kdbXDdr3jF/Xaoqu2T1DPPqTBRQJw63QuCwhjb/PQ==" - } - }, - "npm:@kikobeats/time-span": { - "type": "npm", - "name": "npm:@kikobeats/time-span", - "data": { - "version": "1.0.11", - "packageName": "@kikobeats/time-span", - "hash": "sha512-S+msolgD9aPVoJ+ZomVD0WSKm+qJBKvJimzwq8dMvlGKbIPsAyEWhHHdSRuQT3g2VpDIctvbi9nU++kN/VPZaw==" - } - }, - "npm:@ltd/j-toml": { - "type": "npm", - "name": "npm:@ltd/j-toml", - "data": { - "version": "1.38.0", - "packageName": "@ltd/j-toml", - "hash": "sha512-lYtBcmvHustHQtg4X7TXUu1Xa/tbLC3p2wLvgQI+fWVySguVZJF60Snxijw5EiohumxZbR10kWYFFebh1zotiw==" - } - }, - "npm:@mantine/core": { - "type": "npm", - "name": "npm:@mantine/core", - "data": { - "version": "8.3.18", - "packageName": "@mantine/core", - "hash": "sha512-9tph1lTVogKPjTx02eUxDUOdXacPzK62UuSqb4TdGliI54/Xgxftq0Dfqu6XuhCxn9J5MDJaNiLDvL/1KRkYqA==" - } - }, - "npm:@mantine/hooks": { - "type": "npm", - "name": "npm:@mantine/hooks", - "data": { - "version": "8.3.18", - "packageName": "@mantine/hooks", - "hash": "sha512-QoWr9+S8gg5050TQ06aTSxtlpGjYOpIllRbjYYXlRvZeTsUqiTbVfvQROLexu4rEaK+yy9Wwriwl9PMRgbLqPw==" - } - }, - "npm:@manypkg/find-root": { - "type": "npm", - "name": "npm:@manypkg/find-root", - "data": { - "version": "3.1.0", - "packageName": "@manypkg/find-root", - "hash": "sha512-BcSqCyKhBVZ5YkSzOiheMCV41kqAFptW6xGqYSTjkVTl9XQpr+pqHhwgGCOHQtjDCv7Is6EFyA14Sm5GVbVABA==" - } - }, - "npm:@manypkg/tools": { - "type": "npm", - "name": "npm:@manypkg/tools", - "data": { - "version": "2.1.0", - "packageName": "@manypkg/tools", - "hash": "sha512-0FOIepYR4ugPYaHwK7hDeHDkfPOBVvayt9QpvRbi2LT/h2b0GaE/gM9Gag7fsnyYyNaTZ2IGyOuVg07IYepvYQ==" - } - }, - "npm:@mapbox/node-pre-gyp": { - "type": "npm", - "name": "npm:@mapbox/node-pre-gyp", - "data": { - "version": "2.0.0", - "packageName": "@mapbox/node-pre-gyp", - "hash": "sha512-llMXd39jtP0HpQLVI37Bf1m2ADlEb35GYSh1SDSLsBhR+5iCxiNGlT31yqbNtVHygHAtMy6dWFERpU2JgufhPg==" - } - }, - "npm:@motionone/animation": { - "type": "npm", - "name": "npm:@motionone/animation", - "data": { - "version": "10.18.0", - "packageName": "@motionone/animation", - "hash": "sha512-9z2p5GFGCm0gBsZbi8rVMOAJCtw1WqBTIPw3ozk06gDvZInBPIsQcHgYogEJ4yuHJ+akuW8g1SEIOpTOvYs8hw==" - } - }, - "npm:@motionone/dom": { - "type": "npm", - "name": "npm:@motionone/dom", - "data": { - "version": "10.18.0", - "packageName": "@motionone/dom", - "hash": "sha512-bKLP7E0eyO4B2UaHBBN55tnppwRnaE3KFfh3Ps9HhnAkar3Cb69kUCJY9as8LrccVYKgHA+JY5dOQqJLOPhF5A==" - } - }, - "npm:@motionone/easing": { - "type": "npm", - "name": "npm:@motionone/easing", - "data": { - "version": "10.18.0", - "packageName": "@motionone/easing", - "hash": "sha512-VcjByo7XpdLS4o9T8t99JtgxkdMcNWD3yHU/n6CLEz3bkmKDRZyYQ/wmSf6daum8ZXqfUAgFeCZSpJZIMxaCzg==" - } - }, - "npm:@motionone/generators": { - "type": "npm", - "name": "npm:@motionone/generators", - "data": { - "version": "10.18.0", - "packageName": "@motionone/generators", - "hash": "sha512-+qfkC2DtkDj4tHPu+AFKVfR/C30O1vYdvsGYaR13W/1cczPrrcjdvYCj0VLFuRMN+lP1xvpNZHCRNM4fBzn1jg==" - } - }, - "npm:@motionone/types": { - "type": "npm", - "name": "npm:@motionone/types", - "data": { - "version": "10.17.1", - "packageName": "@motionone/types", - "hash": "sha512-KaC4kgiODDz8hswCrS0btrVrzyU2CSQKO7Ps90ibBVSQmjkrt2teqta6/sOG59v7+dPnKMAg13jyqtMKV2yJ7A==" - } - }, - "npm:@motionone/utils": { - "type": "npm", - "name": "npm:@motionone/utils", - "data": { - "version": "10.18.0", - "packageName": "@motionone/utils", - "hash": "sha512-3XVF7sgyTSI2KWvTf6uLlBJ5iAgRgmvp3bpuOiQJvInd4nZ19ET8lX5unn30SlmRH7hXbBbH+Gxd0m0klJ3Xtw==" - } - }, - "npm:@mrleebo/prisma-ast": { - "type": "npm", - "name": "npm:@mrleebo/prisma-ast", - "data": { - "version": "0.13.1", - "packageName": "@mrleebo/prisma-ast", - "hash": "sha512-XyroGQXcHrZdvmrGJvsA9KNeOOgGMg1Vg9OlheUsBOSKznLMDl+YChxbkboRHvtFYJEMRYmlV3uoo/njCw05iw==" - } - }, - "npm:@napi-rs/wasm-runtime": { - "type": "npm", - "name": "npm:@napi-rs/wasm-runtime", - "data": { - "version": "0.2.4", - "packageName": "@napi-rs/wasm-runtime", - "hash": "sha512-9zESzOO5aDByvhIAsOy9TbpZ0Ur2AJbUI7UT73kcUTS2mxAMHOBaa1st/jAymNoCtvrit99kkzT1FZuXVcgfIQ==" - } - }, - "npm:@napi-rs/wasm-runtime@1.1.1": { - "type": "npm", - "name": "npm:@napi-rs/wasm-runtime@1.1.1", - "data": { - "version": "1.1.1", - "packageName": "@napi-rs/wasm-runtime", - "hash": "sha512-p64ah1M1ld8xjWv3qbvFwHiFVWrq1yFvV4f7w+mzaqiR4IlSgkqhcRdHwsGgomwzBH51sRY4NEowLxnaBjcW/A==" - } - }, - "npm:@nodelib/fs.scandir": { - "type": "npm", - "name": "npm:@nodelib/fs.scandir", - "data": { - "version": "2.1.5", - "packageName": "@nodelib/fs.scandir", - "hash": "sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==" - } - }, - "npm:@nodelib/fs.stat": { - "type": "npm", - "name": "npm:@nodelib/fs.stat", - "data": { - "version": "2.0.5", - "packageName": "@nodelib/fs.stat", - "hash": "sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==" - } - }, - "npm:@nodelib/fs.walk": { - "type": "npm", - "name": "npm:@nodelib/fs.walk", - "data": { - "version": "1.2.8", - "packageName": "@nodelib/fs.walk", - "hash": "sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==" - } - }, - "npm:@npmcli/agent": { - "type": "npm", - "name": "npm:@npmcli/agent", - "data": { - "version": "3.0.0", - "packageName": "@npmcli/agent", - "hash": "sha512-S79NdEgDQd/NGCay6TCoVzXSj74skRZIKJcpJjC5lOq34SZzyI6MqtiiWoiVWoVrTcGjNeC4ipbh1VIHlpfF5Q==" - } - }, - "npm:@npmcli/fs": { - "type": "npm", - "name": "npm:@npmcli/fs", - "data": { - "version": "4.0.0", - "packageName": "@npmcli/fs", - "hash": "sha512-/xGlezI6xfGO9NwuJlnwz/K14qD1kCSAGtacBHnGzeAIuJGazcp45KP5NuyARXoKb7cwulAGWVsbeSxdG/cb0Q==" - } - }, - "npm:@nx/nx-darwin-arm64": { - "type": "npm", - "name": "npm:@nx/nx-darwin-arm64", - "data": { - "version": "22.6.1", - "packageName": "@nx/nx-darwin-arm64", - "hash": "sha512-lixkEBGFdEsUiqEZg9LIyjfiTv12Sg1Es/yUgrdOQUAZu+5oiUPMoybyBwrvINl+fZw+PLh66jOmB4GSP2aUMQ==" - } - }, - "npm:@nx/nx-darwin-x64": { - "type": "npm", - "name": "npm:@nx/nx-darwin-x64", - "data": { - "version": "22.6.1", - "packageName": "@nx/nx-darwin-x64", - "hash": "sha512-HvgtOtuWnEf0dpfWb05N0ptdFg040YgzsKFhXg6+qaBJg5Hg0e0AXPKaSgh2PCqCIDlKu40YtwVgF7KXxXAGlA==" - } - }, - "npm:@nx/nx-freebsd-x64": { - "type": "npm", - "name": "npm:@nx/nx-freebsd-x64", - "data": { - "version": "22.6.1", - "packageName": "@nx/nx-freebsd-x64", - "hash": "sha512-g2wUltGX+7/+mdTV5d6ODa0ylrNu/krgb9YdrsbhW6oZeXYm2LeLOAnYqIlL/Kx140NLrb5Kcz7bi7JrBAw4Ow==" - } - }, - "npm:@nx/nx-linux-arm-gnueabihf": { - "type": "npm", - "name": "npm:@nx/nx-linux-arm-gnueabihf", - "data": { - "version": "22.6.1", - "packageName": "@nx/nx-linux-arm-gnueabihf", - "hash": "sha512-TTqisFPAPrj35EihvzotBbajS+0bX++PQggmRVmDmGwSTrpySRJwZnKNHYDqP6s9tigDvkNJOJftK+GkBEFRRA==" - } - }, - "npm:@nx/nx-linux-arm64-gnu": { - "type": "npm", - "name": "npm:@nx/nx-linux-arm64-gnu", - "data": { - "version": "22.6.1", - "packageName": "@nx/nx-linux-arm64-gnu", - "hash": "sha512-uIkPcanSTIcyh7/6LOoX0YpGO/7GkVhMRgyM9Mg/7ItFjCtRaeuPEPrJESsaNeB5zIVVhI4cXbGrM9NDnagiiw==" - } - }, - "npm:@nx/nx-linux-arm64-musl": { - "type": "npm", - "name": "npm:@nx/nx-linux-arm64-musl", - "data": { - "version": "22.6.1", - "packageName": "@nx/nx-linux-arm64-musl", - "hash": "sha512-eqkG8s/7remiRZ1Lo2zIrFLSNsQ/0x9fAj++CV1nqFE+rfykPQhC48F8pqsq6tUQpI5HqRQEfQgv4CnFNpLR+w==" - } - }, - "npm:@nx/nx-linux-x64-gnu": { - "type": "npm", - "name": "npm:@nx/nx-linux-x64-gnu", - "data": { - "version": "22.6.1", - "packageName": "@nx/nx-linux-x64-gnu", - "hash": "sha512-6DhSupCcDa6BYzQ48qsMK4LIdIO+y4E+4xuUBkX2YTGOZh58gctELCv7Gi6/FhiC8rzVzM7hDcygOvHCGc30zA==" - } - }, - "npm:@nx/nx-linux-x64-musl": { - "type": "npm", - "name": "npm:@nx/nx-linux-x64-musl", - "data": { - "version": "22.6.1", - "packageName": "@nx/nx-linux-x64-musl", - "hash": "sha512-QqtfaBhdfLRKGucpP8RSv7KJ51XRWpfUcXPhkb/1dKP/b9/Z0kpaCgczGHdrAtX9m6haWw+sQXYGxnStZIg/TQ==" - } - }, - "npm:@nx/nx-win32-arm64-msvc": { - "type": "npm", - "name": "npm:@nx/nx-win32-arm64-msvc", - "data": { - "version": "22.6.1", - "packageName": "@nx/nx-win32-arm64-msvc", - "hash": "sha512-8pTWXphY5IIgY3edZ5SfzP8yPjBqoAxRV5snAYDctF4e0OC1nDOUims70jLesMle8DTSWiHPSfbLVfp2HkU9WQ==" - } - }, - "npm:@nx/nx-win32-x64-msvc": { - "type": "npm", - "name": "npm:@nx/nx-win32-x64-msvc", - "data": { - "version": "22.6.1", - "packageName": "@nx/nx-win32-x64-msvc", - "hash": "sha512-XMYrtsR5O39uNR4fVpFs65rVB09FyLXvUM735r2rO7IUWWHxHWTAgVcc+gqQaAchBPqR9f1q+3u2i1Inub3Cdw==" - } - }, - "npm:@oxc-parser/binding-android-arm64": { - "type": "npm", - "name": "npm:@oxc-parser/binding-android-arm64", - "data": { - "version": "0.104.0", - "packageName": "@oxc-parser/binding-android-arm64", - "hash": "sha512-2a4tk6mtkPbGwT4Zi8pjOqMkmkrvc/Pussmas+uXoiCVv7sn7P7Jn93ATu/HK49dxIwvrvQCZ3BcS0KhAvKxlQ==" - } - }, - "npm:@oxc-parser/binding-darwin-arm64": { - "type": "npm", - "name": "npm:@oxc-parser/binding-darwin-arm64", - "data": { - "version": "0.104.0", - "packageName": "@oxc-parser/binding-darwin-arm64", - "hash": "sha512-qprm6/Hr35TSCkJoo+huRHq3siyqRyMBtNVNJQkJorZAGcffQTzzdhmzJnA7TQc+WnN36/Jq56D7/INu0/2knQ==" - } - }, - "npm:@oxc-parser/binding-darwin-x64": { - "type": "npm", - "name": "npm:@oxc-parser/binding-darwin-x64", - "data": { - "version": "0.104.0", - "packageName": "@oxc-parser/binding-darwin-x64", - "hash": "sha512-Xpu0l/l2zCUeheIrpu7dz6FxQ96W0f8Dq9rhYE1yLtTqQpMGhefnEV5Lr8qd15clwniZiKWZO6FGQawQ7npt3Q==" - } - }, - "npm:@oxc-parser/binding-freebsd-x64": { - "type": "npm", - "name": "npm:@oxc-parser/binding-freebsd-x64", - "data": { - "version": "0.104.0", - "packageName": "@oxc-parser/binding-freebsd-x64", - "hash": "sha512-I++fE3ZrhjtLzA0mqFcC/GuA6+dWNa/QkJJfm7sS4NGGQhipQQ2vikCK6jZK1YGIsbDFDrSoQCfA3tQfeK6pqg==" - } - }, - "npm:@oxc-parser/binding-linux-arm-gnueabihf": { - "type": "npm", - "name": "npm:@oxc-parser/binding-linux-arm-gnueabihf", - "data": { - "version": "0.104.0", - "packageName": "@oxc-parser/binding-linux-arm-gnueabihf", - "hash": "sha512-JkvwCNZm3ZwVG1r+c3LrcrxpJ1YXAtYEbVwOcwe+wh6LnltGoxEEZk7Zo9259jch8GiWW6AfRGDQY2FxzWJT7A==" - } - }, - "npm:@oxc-parser/binding-linux-arm64-gnu": { - "type": "npm", - "name": "npm:@oxc-parser/binding-linux-arm64-gnu", - "data": { - "version": "0.104.0", - "packageName": "@oxc-parser/binding-linux-arm64-gnu", - "hash": "sha512-CD9Tzp3dfMtujHikS0JwTIOaDUCBWItvziUTDYsMXrfVHjfSaGGsaKqIQmNsG1Qg7QdmtMZtMW0pQcHGZQ2OoA==" - } - }, - "npm:@oxc-parser/binding-linux-arm64-musl": { - "type": "npm", - "name": "npm:@oxc-parser/binding-linux-arm64-musl", - "data": { - "version": "0.104.0", - "packageName": "@oxc-parser/binding-linux-arm64-musl", - "hash": "sha512-lARUu7lrZ7CoAm2arLJQkq9Sem2NiC3DaphmPvlf2X+ngkWcYUCRxZanhe+++x/bVzKrwvxormC3IVaulP51mQ==" - } - }, - "npm:@oxc-parser/binding-linux-riscv64-gnu": { - "type": "npm", - "name": "npm:@oxc-parser/binding-linux-riscv64-gnu", - "data": { - "version": "0.104.0", - "packageName": "@oxc-parser/binding-linux-riscv64-gnu", - "hash": "sha512-hnPWrncj89/7AiMt19Juqpa04z8OpJrIf3/ToGkJafZ3A1ZN50atyNKQD5EmGs2/gdaFxF4hG3zUnLKhX9nTtQ==" - } - }, - "npm:@oxc-parser/binding-linux-s390x-gnu": { - "type": "npm", - "name": "npm:@oxc-parser/binding-linux-s390x-gnu", - "data": { - "version": "0.104.0", - "packageName": "@oxc-parser/binding-linux-s390x-gnu", - "hash": "sha512-VegcKzBgUoHQ/p5NyV+GrdEgJEXhX4AD+kCZng+viP/eNsZJgmp2K1jDBCeLSUZIdSmdldK5wlSma3Bf8MKcUQ==" - } - }, - "npm:@oxc-parser/binding-linux-x64-gnu": { - "type": "npm", - "name": "npm:@oxc-parser/binding-linux-x64-gnu", - "data": { - "version": "0.104.0", - "packageName": "@oxc-parser/binding-linux-x64-gnu", - "hash": "sha512-nDtCJIwaNgVNLR1EOgb1Xsz7VL3TOASLRbQEC+wLZycs3CCETlGNQht5OqwXPNjbem61kl4l8dvuEavu8BRT/Q==" - } - }, - "npm:@oxc-parser/binding-linux-x64-musl": { - "type": "npm", - "name": "npm:@oxc-parser/binding-linux-x64-musl", - "data": { - "version": "0.104.0", - "packageName": "@oxc-parser/binding-linux-x64-musl", - "hash": "sha512-E98MNPE3d88D2xUABQYWH2cYqLA/mmOM4XL3CZHaG5dM68sN3fzCyV0ryK5skq4hVK1L2e6jk79z5oLArsCYyA==" - } - }, - "npm:@oxc-parser/binding-openharmony-arm64": { - "type": "npm", - "name": "npm:@oxc-parser/binding-openharmony-arm64", - "data": { - "version": "0.104.0", - "packageName": "@oxc-parser/binding-openharmony-arm64", - "hash": "sha512-/FNOTg5tzlpB0hunjdI1AiJp2lC8NvBl0HpqMk0qp42KAK+yOe7nyw7XcNpMH7SvhmPe+R3oyJV8UQv953sCvA==" - } - }, - "npm:@oxc-parser/binding-wasm32-wasi": { - "type": "npm", - "name": "npm:@oxc-parser/binding-wasm32-wasi", - "data": { - "version": "0.104.0", - "packageName": "@oxc-parser/binding-wasm32-wasi", - "hash": "sha512-I+xnHDxkInzHBZV+YERIvvrt+GFwEBdgq/RUax5jLl8yHg5iPVq11qtGh3m+2v8zAjQXYPmBbcANNGWwgXqtWQ==" - } - }, - "npm:@oxc-parser/binding-win32-arm64-msvc": { - "type": "npm", - "name": "npm:@oxc-parser/binding-win32-arm64-msvc", - "data": { - "version": "0.104.0", - "packageName": "@oxc-parser/binding-win32-arm64-msvc", - "hash": "sha512-EWHVWfllZGTJFWfjfBKzvS/0uuw6/Z3+o598VTvySamy5fz2f4P1mNElvTi4tGGhbm1sGTYnYRNRW8XBAnGUGg==" - } - }, - "npm:@oxc-parser/binding-win32-x64-msvc": { - "type": "npm", - "name": "npm:@oxc-parser/binding-win32-x64-msvc", - "data": { - "version": "0.104.0", - "packageName": "@oxc-parser/binding-win32-x64-msvc", - "hash": "sha512-Nj7zeywIvxBRRd0I6NrdGufOOdiwQcAKnkRwtWo5dejPTmR1XM+9iRHJztoKacejW5+VOdEwQrfCjpa8MdLJBQ==" - } - }, - "npm:@oxc-project/types": { - "type": "npm", - "name": "npm:@oxc-project/types", - "data": { - "version": "0.104.0", - "packageName": "@oxc-project/types", - "hash": "sha512-We30k+29WpOerl3gCb1v8IFL4vmKTkghjist4TQ89yw7adGDCKFGf8+4mA4H3Ek5ajRzzBZ7BtGY8aIaOv9oFQ==" - } - }, - "npm:@oxc-project/types@0.115.0": { - "type": "npm", - "name": "npm:@oxc-project/types@0.115.0", - "data": { - "version": "0.115.0", - "packageName": "@oxc-project/types", - "hash": "sha512-4n91DKnebUS4yjUHl2g3/b2T+IUdCfmoZGhmwsovZCDaJSs+QkVAM+0AqqTxHSsHfeiMuueT75cZaZcT/m0pSw==" - } - }, - "npm:@oxc-project/types@0.122.0": { - "type": "npm", - "name": "npm:@oxc-project/types@0.122.0", - "data": { - "version": "0.122.0", - "packageName": "@oxc-project/types", - "hash": "sha512-oLAl5kBpV4w69UtFZ9xqcmTi+GENWOcPF7FCrczTiBbmC0ibXxCwyvZGbO39rCVEuLGAZM84DH0pUIyyv/YJzA==" - } - }, - "npm:@oxc-project/types@0.98.0": { - "type": "npm", - "name": "npm:@oxc-project/types@0.98.0", - "data": { - "version": "0.98.0", - "packageName": "@oxc-project/types", - "hash": "sha512-Vzmd6FsqVuz5HQVcRC/hrx7Ujo3WEVeQP7C2UNP5uy1hUY4SQvMB+93jxkI1KRHz9a/6cni3glPOtvteN+zpsw==" - } - }, - "npm:@oxc-resolver/binding-android-arm-eabi": { - "type": "npm", - "name": "npm:@oxc-resolver/binding-android-arm-eabi", - "data": { - "version": "11.19.1", - "packageName": "@oxc-resolver/binding-android-arm-eabi", - "hash": "sha512-aUs47y+xyXHUKlbhqHUjBABjvycq6YSD7bpxSW7vplUmdzAlJ93yXY6ZR0c1o1x5A/QKbENCvs3+NlY8IpIVzg==" - } - }, - "npm:@oxc-resolver/binding-android-arm64": { - "type": "npm", - "name": "npm:@oxc-resolver/binding-android-arm64", - "data": { - "version": "11.19.1", - "packageName": "@oxc-resolver/binding-android-arm64", - "hash": "sha512-oolbkRX+m7Pq2LNjr/kKgYeC7bRDMVTWPgxBGMjSpZi/+UskVo4jsMU3MLheZV55jL6c3rNelPl4oD60ggYmqA==" - } - }, - "npm:@oxc-resolver/binding-darwin-arm64": { - "type": "npm", - "name": "npm:@oxc-resolver/binding-darwin-arm64", - "data": { - "version": "11.19.1", - "packageName": "@oxc-resolver/binding-darwin-arm64", - "hash": "sha512-nUC6d2i3R5B12sUW4O646qD5cnMXf2oBGPLIIeaRfU9doJRORAbE2SGv4eW6rMqhD+G7nf2Y8TTJTLiiO3Q/dQ==" - } - }, - "npm:@oxc-resolver/binding-darwin-x64": { - "type": "npm", - "name": "npm:@oxc-resolver/binding-darwin-x64", - "data": { - "version": "11.19.1", - "packageName": "@oxc-resolver/binding-darwin-x64", - "hash": "sha512-cV50vE5+uAgNcFa3QY1JOeKDSkM/9ReIcc/9wn4TavhW/itkDGrXhw9jaKnkQnGbjJ198Yh5nbX/Gr2mr4Z5jQ==" - } - }, - "npm:@oxc-resolver/binding-freebsd-x64": { - "type": "npm", - "name": "npm:@oxc-resolver/binding-freebsd-x64", - "data": { - "version": "11.19.1", - "packageName": "@oxc-resolver/binding-freebsd-x64", - "hash": "sha512-xZOQiYGFxtk48PBKff+Zwoym7ScPAIVp4c14lfLxizO2LTTTJe5sx9vQNGrBymrf/vatSPNMD4FgsaaRigPkqw==" - } - }, - "npm:@oxc-resolver/binding-linux-arm-gnueabihf": { - "type": "npm", - "name": "npm:@oxc-resolver/binding-linux-arm-gnueabihf", - "data": { - "version": "11.19.1", - "packageName": "@oxc-resolver/binding-linux-arm-gnueabihf", - "hash": "sha512-lXZYWAC6kaGe/ky2su94e9jN9t6M0/6c+GrSlCqL//XO1cxi5lpAhnJYdyrKfm0ZEr/c7RNyAx3P7FSBcBd5+A==" - } - }, - "npm:@oxc-resolver/binding-linux-arm-musleabihf": { - "type": "npm", - "name": "npm:@oxc-resolver/binding-linux-arm-musleabihf", - "data": { - "version": "11.19.1", - "packageName": "@oxc-resolver/binding-linux-arm-musleabihf", - "hash": "sha512-veG1kKsuK5+t2IsO9q0DErYVSw2azvCVvWHnfTOS73WE0STdLLB7Q1bB9WR+yHPQM76ASkFyRbogWo1GR1+WbQ==" - } - }, - "npm:@oxc-resolver/binding-linux-arm64-gnu": { - "type": "npm", - "name": "npm:@oxc-resolver/binding-linux-arm64-gnu", - "data": { - "version": "11.19.1", - "packageName": "@oxc-resolver/binding-linux-arm64-gnu", - "hash": "sha512-heV2+jmXyYnUrpUXSPugqWDRpnsQcDm2AX4wzTuvgdlZfoNYO0O3W2AVpJYaDn9AG4JdM6Kxom8+foE7/BcSig==" - } - }, - "npm:@oxc-resolver/binding-linux-arm64-musl": { - "type": "npm", - "name": "npm:@oxc-resolver/binding-linux-arm64-musl", - "data": { - "version": "11.19.1", - "packageName": "@oxc-resolver/binding-linux-arm64-musl", - "hash": "sha512-jvo2Pjs1c9KPxMuMPIeQsgu0mOJF9rEb3y3TdpsrqwxRM+AN6/nDDwv45n5ZrUnQMsdBy5gIabioMKnQfWo9ew==" - } - }, - "npm:@oxc-resolver/binding-linux-ppc64-gnu": { - "type": "npm", - "name": "npm:@oxc-resolver/binding-linux-ppc64-gnu", - "data": { - "version": "11.19.1", - "packageName": "@oxc-resolver/binding-linux-ppc64-gnu", - "hash": "sha512-vLmdNxWCdN7Uo5suays6A/+ywBby2PWBBPXctWPg5V0+eVuzsJxgAn6MMB4mPlshskYbppjpN2Zg83ArHze9gQ==" - } - }, - "npm:@oxc-resolver/binding-linux-riscv64-gnu": { - "type": "npm", - "name": "npm:@oxc-resolver/binding-linux-riscv64-gnu", - "data": { - "version": "11.19.1", - "packageName": "@oxc-resolver/binding-linux-riscv64-gnu", - "hash": "sha512-/b+WgR+VTSBxzgOhDO7TlMXC1ufPIMR6Vj1zN+/x+MnyXGW7prTLzU9eW85Aj7Th7CCEG9ArCbTeqxCzFWdg2w==" - } - }, - "npm:@oxc-resolver/binding-linux-riscv64-musl": { - "type": "npm", - "name": "npm:@oxc-resolver/binding-linux-riscv64-musl", - "data": { - "version": "11.19.1", - "packageName": "@oxc-resolver/binding-linux-riscv64-musl", - "hash": "sha512-YlRdeWb9j42p29ROh+h4eg/OQ3dTJlpHSa+84pUM9+p6i3djtPz1q55yLJhgW9XfDch7FN1pQ/Vd6YP+xfRIuw==" - } - }, - "npm:@oxc-resolver/binding-linux-s390x-gnu": { - "type": "npm", - "name": "npm:@oxc-resolver/binding-linux-s390x-gnu", - "data": { - "version": "11.19.1", - "packageName": "@oxc-resolver/binding-linux-s390x-gnu", - "hash": "sha512-EDpafVOQWF8/MJynsjOGFThcqhRHy417sRyLfQmeiamJ8qVhSKAn2Dn2VVKUGCjVB9C46VGjhNo7nOPUi1x6uA==" - } - }, - "npm:@oxc-resolver/binding-linux-x64-gnu": { - "type": "npm", - "name": "npm:@oxc-resolver/binding-linux-x64-gnu", - "data": { - "version": "11.19.1", - "packageName": "@oxc-resolver/binding-linux-x64-gnu", - "hash": "sha512-NxjZe+rqWhr+RT8/Ik+5ptA3oz7tUw361Wa5RWQXKnfqwSSHdHyrw6IdcTfYuml9dM856AlKWZIUXDmA9kkiBQ==" - } - }, - "npm:@oxc-resolver/binding-linux-x64-musl": { - "type": "npm", - "name": "npm:@oxc-resolver/binding-linux-x64-musl", - "data": { - "version": "11.19.1", - "packageName": "@oxc-resolver/binding-linux-x64-musl", - "hash": "sha512-cM/hQwsO3ReJg5kR+SpI69DMfvNCp+A/eVR4b4YClE5bVZwz8rh2Nh05InhwI5HR/9cArbEkzMjcKgTHS6UaNw==" - } - }, - "npm:@oxc-resolver/binding-openharmony-arm64": { - "type": "npm", - "name": "npm:@oxc-resolver/binding-openharmony-arm64", - "data": { - "version": "11.19.1", - "packageName": "@oxc-resolver/binding-openharmony-arm64", - "hash": "sha512-QF080IowFB0+9Rh6RcD19bdgh49BpQHUW5TajG1qvWHvmrQznTZZjYlgE2ltLXyKY+qs4F/v5xuX1XS7Is+3qA==" - } - }, - "npm:@oxc-resolver/binding-wasm32-wasi": { - "type": "npm", - "name": "npm:@oxc-resolver/binding-wasm32-wasi", - "data": { - "version": "11.19.1", - "packageName": "@oxc-resolver/binding-wasm32-wasi", - "hash": "sha512-w8UCKhX826cP/ZLokXDS6+milN8y4X7zidsAttEdWlVoamTNf6lhBJldaWr3ukTDiye7s4HRcuPEPOXNC432Vg==" - } - }, - "npm:@oxc-resolver/binding-win32-arm64-msvc": { - "type": "npm", - "name": "npm:@oxc-resolver/binding-win32-arm64-msvc", - "data": { - "version": "11.19.1", - "packageName": "@oxc-resolver/binding-win32-arm64-msvc", - "hash": "sha512-nJ4AsUVZrVKwnU/QRdzPCCrO0TrabBqgJ8pJhXITdZGYOV28TIYystV1VFLbQ7DtAcaBHpocT5/ZJnF78YJPtQ==" - } - }, - "npm:@oxc-resolver/binding-win32-ia32-msvc": { - "type": "npm", - "name": "npm:@oxc-resolver/binding-win32-ia32-msvc", - "data": { - "version": "11.19.1", - "packageName": "@oxc-resolver/binding-win32-ia32-msvc", - "hash": "sha512-EW+ND5q2Tl+a3pH81l1QbfgbF3HmqgwLfDfVithRFheac8OTcnbXt/JxqD2GbDkb7xYEqy1zNaVFRr3oeG8npA==" - } - }, - "npm:@oxc-resolver/binding-win32-x64-msvc": { - "type": "npm", - "name": "npm:@oxc-resolver/binding-win32-x64-msvc", - "data": { - "version": "11.19.1", - "packageName": "@oxc-resolver/binding-win32-x64-msvc", - "hash": "sha512-6hIU3RQu45B+VNTY4Ru8ppFwjVS/S5qwYyGhBotmjxfEKk41I2DlGtRfGJndZ5+6lneE2pwloqunlOyZuX/XAw==" - } - }, - "npm:@oxlint-tsgolint/darwin-arm64": { - "type": "npm", - "name": "npm:@oxlint-tsgolint/darwin-arm64", - "data": { - "version": "0.17.1", - "packageName": "@oxlint-tsgolint/darwin-arm64", - "hash": "sha512-JNWNwyvSDcUQSBlQRl10XrCeNcN66TMvDw3gIDQeop5SNa1F7wFhsEx4zitYb7fGHwGh9095tsNttmuCaNXCbw==" - } - }, - "npm:@oxlint-tsgolint/darwin-x64": { - "type": "npm", - "name": "npm:@oxlint-tsgolint/darwin-x64", - "data": { - "version": "0.17.1", - "packageName": "@oxlint-tsgolint/darwin-x64", - "hash": "sha512-SluNf6CW88pgGPqQUGC5GoK5qESWo2ct1PRDbza3vbf9SK2npx3igvylGQIgE9qYYOcjgnVdLOJ0+q0gItgUmQ==" - } - }, - "npm:@oxlint-tsgolint/linux-arm64": { - "type": "npm", - "name": "npm:@oxlint-tsgolint/linux-arm64", - "data": { - "version": "0.17.1", - "packageName": "@oxlint-tsgolint/linux-arm64", - "hash": "sha512-BJxQ7/cdo2dNdGIBs2PIR6BaPA7cPfe+r1HE/uY+K7g2ygip+0LHB3GUO9GaNDZuWpsnDyjLYYowEGrVK8dokA==" - } - }, - "npm:@oxlint-tsgolint/linux-x64": { - "type": "npm", - "name": "npm:@oxlint-tsgolint/linux-x64", - "data": { - "version": "0.17.1", - "packageName": "@oxlint-tsgolint/linux-x64", - "hash": "sha512-s6UjmuaJbZ4zz/wJKdEw/s5mc0t41rgwxQJCSHPuzMumMK6ylrB7nydhDf8ObTtzhTIZdAS/2S/uayJmDcGbxw==" - } - }, - "npm:@oxlint-tsgolint/win32-arm64": { - "type": "npm", - "name": "npm:@oxlint-tsgolint/win32-arm64", - "data": { - "version": "0.17.1", - "packageName": "@oxlint-tsgolint/win32-arm64", - "hash": "sha512-EO/Oj0ixHX+UQdu9hM7YUzibZI888MvPUo/DF8lSxFBt4JNEt8qGkwJEbCYjB/1LhUNmPHzSw2Tr9dCFVfW9nw==" - } - }, - "npm:@oxlint-tsgolint/win32-x64": { - "type": "npm", - "name": "npm:@oxlint-tsgolint/win32-x64", - "data": { - "version": "0.17.1", - "packageName": "@oxlint-tsgolint/win32-x64", - "hash": "sha512-jhv7XktAJ1sMRSb//yDYTauFSZ06H81i2SLEBPaSUKxSKoPMK8p1ACUJlnmwZX2MgapRLEj1Ml22B6+HiM2YIA==" - } - }, - "npm:@oxlint/binding-android-arm-eabi": { - "type": "npm", - "name": "npm:@oxlint/binding-android-arm-eabi", - "data": { - "version": "1.56.0", - "packageName": "@oxlint/binding-android-arm-eabi", - "hash": "sha512-IyfYPthZyiSKwAv/dLjeO18SaK8MxLI9Yss2JrRDyweQAkuL3LhEy7pwIwI7uA3KQc1Vdn20kdmj3q0oUIQL6A==" - } - }, - "npm:@oxlint/binding-android-arm64": { - "type": "npm", - "name": "npm:@oxlint/binding-android-arm64", - "data": { - "version": "1.56.0", - "packageName": "@oxlint/binding-android-arm64", - "hash": "sha512-Ga5zYrzH6vc/VFxhn6MmyUnYEfy9vRpwTIks99mY3j6Nz30yYpIkWryI0QKPCgvGUtDSXVLEaMum5nA+WrNOSg==" - } - }, - "npm:@oxlint/binding-darwin-arm64": { - "type": "npm", - "name": "npm:@oxlint/binding-darwin-arm64", - "data": { - "version": "1.56.0", - "packageName": "@oxlint/binding-darwin-arm64", - "hash": "sha512-ogmbdJysnw/D4bDcpf1sPLpFThZ48lYp4aKYm10Z/6Nh1SON6NtnNhTNOlhEY296tDFItsZUz+2tgcSYqh8Eyw==" - } - }, - "npm:@oxlint/binding-darwin-x64": { - "type": "npm", - "name": "npm:@oxlint/binding-darwin-x64", - "data": { - "version": "1.56.0", - "packageName": "@oxlint/binding-darwin-x64", - "hash": "sha512-x8QE1h+RAtQ2g+3KPsP6Fk/tdz6zJQUv5c7fTrJxXV3GHOo+Ry5p/PsogU4U+iUZg0rj6hS+E4xi+mnwwlDCWQ==" - } - }, - "npm:@oxlint/binding-freebsd-x64": { - "type": "npm", - "name": "npm:@oxlint/binding-freebsd-x64", - "data": { - "version": "1.56.0", - "packageName": "@oxlint/binding-freebsd-x64", - "hash": "sha512-6G+WMZvwJpMvY7my+/SHEjb7BTk/PFbePqLpmVmUJRIsJMy/UlyYqjpuh0RCgYYkPLcnXm1rUM04kbTk8yS1Yg==" - } - }, - "npm:@oxlint/binding-linux-arm-gnueabihf": { - "type": "npm", - "name": "npm:@oxlint/binding-linux-arm-gnueabihf", - "data": { - "version": "1.56.0", - "packageName": "@oxlint/binding-linux-arm-gnueabihf", - "hash": "sha512-YYHBsk/sl7fYwQOok+6W5lBPeUEvisznV/HZD2IfZmF3Bns6cPC3Z0vCtSEOaAWTjYWN3jVsdu55jMxKlsdlhg==" - } - }, - "npm:@oxlint/binding-linux-arm-musleabihf": { - "type": "npm", - "name": "npm:@oxlint/binding-linux-arm-musleabihf", - "data": { - "version": "1.56.0", - "packageName": "@oxlint/binding-linux-arm-musleabihf", - "hash": "sha512-+AZK8rOUr78y8WT6XkDb04IbMRqauNV+vgT6f8ZLOH8wnpQ9i7Nol0XLxAu+Cq7Sb+J9wC0j6Km5hG8rj47/yQ==" - } - }, - "npm:@oxlint/binding-linux-arm64-gnu": { - "type": "npm", - "name": "npm:@oxlint/binding-linux-arm64-gnu", - "data": { - "version": "1.56.0", - "packageName": "@oxlint/binding-linux-arm64-gnu", - "hash": "sha512-urse2SnugwJRojUkGSSeH2LPMaje5Q50yQtvtL9HFckiyeqXzoFwOAZqD5TR29R2lq7UHidfFDM9EGcchcbb8A==" - } - }, - "npm:@oxlint/binding-linux-arm64-musl": { - "type": "npm", - "name": "npm:@oxlint/binding-linux-arm64-musl", - "data": { - "version": "1.56.0", - "packageName": "@oxlint/binding-linux-arm64-musl", - "hash": "sha512-rkTZkBfJ4TYLjansjSzL6mgZOdN5IvUnSq3oNJSLwBcNvy3dlgQtpHPrRxrCEbbcp7oQ6If0tkNaqfOsphYZ9g==" - } - }, - "npm:@oxlint/binding-linux-ppc64-gnu": { - "type": "npm", - "name": "npm:@oxlint/binding-linux-ppc64-gnu", - "data": { - "version": "1.56.0", - "packageName": "@oxlint/binding-linux-ppc64-gnu", - "hash": "sha512-uqL1kMH3u69/e1CH2EJhP3CP28jw2ExLsku4o8RVAZ7fySo9zOyI2fy9pVlTAp4voBLVgzndXi3SgtdyCTa2aA==" - } - }, - "npm:@oxlint/binding-linux-riscv64-gnu": { - "type": "npm", - "name": "npm:@oxlint/binding-linux-riscv64-gnu", - "data": { - "version": "1.56.0", - "packageName": "@oxlint/binding-linux-riscv64-gnu", - "hash": "sha512-j0CcMBOgV6KsRaBdsebIeiy7hCjEvq2KdEsiULf2LZqAq0v1M1lWjelhCV57LxsqaIGChXFuFJ0RiFrSRHPhSg==" - } - }, - "npm:@oxlint/binding-linux-riscv64-musl": { - "type": "npm", - "name": "npm:@oxlint/binding-linux-riscv64-musl", - "data": { - "version": "1.56.0", - "packageName": "@oxlint/binding-linux-riscv64-musl", - "hash": "sha512-7VDOiL8cDG3DQ/CY3yKjbV1c4YPvc4vH8qW09Vv+5ukq3l/Kcyr6XGCd5NvxUmxqDb2vjMpM+eW/4JrEEsUetA==" - } - }, - "npm:@oxlint/binding-linux-s390x-gnu": { - "type": "npm", - "name": "npm:@oxlint/binding-linux-s390x-gnu", - "data": { - "version": "1.56.0", - "packageName": "@oxlint/binding-linux-s390x-gnu", - "hash": "sha512-JGRpX0M+ikD3WpwJ7vKcHKV6Kg0dT52BW2Eu2BupXotYeqGXBrbY+QPkAyKO6MNgKozyTNaRh3r7g+VWgyAQYQ==" - } - }, - "npm:@oxlint/binding-linux-x64-gnu": { - "type": "npm", - "name": "npm:@oxlint/binding-linux-x64-gnu", - "data": { - "version": "1.56.0", - "packageName": "@oxlint/binding-linux-x64-gnu", - "hash": "sha512-dNaICPvtmuxFP/VbqdofrLqdS3bM/AKJN3LMJD52si44ea7Be1cBk6NpfIahaysG9Uo+L98QKddU9CD5L8UHnQ==" - } - }, - "npm:@oxlint/binding-linux-x64-musl": { - "type": "npm", - "name": "npm:@oxlint/binding-linux-x64-musl", - "data": { - "version": "1.56.0", - "packageName": "@oxlint/binding-linux-x64-musl", - "hash": "sha512-pF1vOtM+GuXmbklM1hV8WMsn6tCNPvkUzklj/Ej98JhlanbmA2RB1BILgOpwSuCTRTIYx2MXssmEyQQ90QF5aA==" - } - }, - "npm:@oxlint/binding-openharmony-arm64": { - "type": "npm", - "name": "npm:@oxlint/binding-openharmony-arm64", - "data": { - "version": "1.56.0", - "packageName": "@oxlint/binding-openharmony-arm64", - "hash": "sha512-bp8NQ4RE6fDIFLa4bdBiOA+TAvkNkg+rslR+AvvjlLTYXLy9/uKAYLQudaQouWihLD/hgkrXIKKzXi5IXOewwg==" - } - }, - "npm:@oxlint/binding-win32-arm64-msvc": { - "type": "npm", - "name": "npm:@oxlint/binding-win32-arm64-msvc", - "data": { - "version": "1.56.0", - "packageName": "@oxlint/binding-win32-arm64-msvc", - "hash": "sha512-PxT4OJDfMOQBzo3OlzFb9gkoSD+n8qSBxyVq2wQSZIHFQYGEqIRTo9M0ZStvZm5fdhMqaVYpOnJvH2hUMEDk/g==" - } - }, - "npm:@oxlint/binding-win32-ia32-msvc": { - "type": "npm", - "name": "npm:@oxlint/binding-win32-ia32-msvc", - "data": { - "version": "1.56.0", - "packageName": "@oxlint/binding-win32-ia32-msvc", - "hash": "sha512-PTRy6sIEPqy2x8PTP1baBNReN/BNEFmde0L+mYeHmjXE1Vlcc9+I5nsqENsB2yAm5wLkzPoTNCMY/7AnabT4/A==" - } - }, - "npm:@oxlint/binding-win32-x64-msvc": { - "type": "npm", - "name": "npm:@oxlint/binding-win32-x64-msvc", - "data": { - "version": "1.56.0", - "packageName": "@oxlint/binding-win32-x64-msvc", - "hash": "sha512-ZHa0clocjLmIDr+1LwoWtxRcoYniAvERotvwKUYKhH41NVfl0Y4LNbyQkwMZzwDvKklKGvGZ5+DAG58/Ik47tQ==" - } - }, - "npm:@panva/hkdf": { - "type": "npm", - "name": "npm:@panva/hkdf", - "data": { - "version": "1.2.1", - "packageName": "@panva/hkdf", - "hash": "sha512-6oclG6Y3PiDFcoyk8srjLfVKyMfVCKJ27JwNPViuXziFpmdz+MZnZN/aKY0JGXgYuO/VghU0jcOAZgWXZ1Dmrw==" - } - }, - "npm:@photonjs/cloudflare": { - "type": "npm", - "name": "npm:@photonjs/cloudflare", - "data": { - "version": "0.1.13", - "packageName": "@photonjs/cloudflare", - "hash": "sha512-gyu26ZIEJTLVU47U3OC7iqsT6tvp5qpk1KtTT0zCGpTInTc5p7s3db7xAzq+egZ09SSrU+SbQpoYAlAboLaryA==" - } - }, - "npm:@photonjs/core": { - "type": "npm", - "name": "npm:@photonjs/core", - "data": { - "version": "0.1.21", - "packageName": "@photonjs/core", - "hash": "sha512-dfAUHhWGsKYPNAKqBaOfvGPKOm6l80yWJ3dq1vSG4GICa5ZJemM1xK5JRJhT1lZD4rEHPOJfQncZ8LHiMPivcg==" - } - }, - "npm:@photonjs/express": { - "type": "npm", - "name": "npm:@photonjs/express", - "data": { - "version": "0.1.13", - "packageName": "@photonjs/express", - "hash": "sha512-3PQUhwH6jtoaCFzKB8MWLcNLgEb2vDis1x5wms6ixcHbiacUiVsCO5aMTZv96+SFd5XfLe7MzsVIazM6RLBZpA==" - } - }, - "npm:@photonjs/fastify": { - "type": "npm", - "name": "npm:@photonjs/fastify", - "data": { - "version": "0.1.12", - "packageName": "@photonjs/fastify", - "hash": "sha512-L5Keb7z0D1VL5aAaanwYCRp0RpmOZDeVW2gWhQRB8WL1E6NuEAJP/bmTyGlEjNNM/jPw19f5wlGa2erE/oICww==" - } - }, - "npm:@photonjs/h3": { - "type": "npm", - "name": "npm:@photonjs/h3", - "data": { - "version": "0.1.12", - "packageName": "@photonjs/h3", - "hash": "sha512-kszTOtsHIHP3loYXxpVqFHFqmtU8adw41c6Xvg+pJ2/2LkMus71PIZ5UHpPzacD/JB5AkPFd5IPNYwA97d+sew==" - } - }, - "npm:@photonjs/hono": { - "type": "npm", - "name": "npm:@photonjs/hono", - "data": { - "version": "0.1.12", - "packageName": "@photonjs/hono", - "hash": "sha512-S/fiW3H5ivgayfLbr2cXQQdXZ82olMwLPBbKF4I/6nNH29s2+/nvsH4kswjVg8+ZVJ/WDibO1tCensbknEvM3w==" - } - }, - "npm:@photonjs/runtime": { - "type": "npm", - "name": "npm:@photonjs/runtime", - "data": { - "version": "0.1.16", - "packageName": "@photonjs/runtime", - "hash": "sha512-04ejZcSfQ3f16cpv22tJyJbqGMepuhpg2NBVoxK8YOiJltkBK1fF5lY/EORTF8ZTxYd1M2HGvn0ZfCAlTfZmng==" - } - }, - "npm:@photonjs/srvx": { - "type": "npm", - "name": "npm:@photonjs/srvx", - "data": { - "version": "0.1.12", - "packageName": "@photonjs/srvx", - "hash": "sha512-UT/ukFPdmLsEm6Z5kKIl2DXhayxP0braPBcKRZ4bE1l2sFpN67/54JlZXyFgS/Qdmuo3Hpn94sDIX9uoEBVlGQ==" - } - }, - "npm:@photonjs/vercel": { - "type": "npm", - "name": "npm:@photonjs/vercel", - "data": { - "version": "0.1.22", - "packageName": "@photonjs/vercel", - "hash": "sha512-D+1rl94Jh/d54TwoMf+h9VlV3ITRt18Tdxc9BepSIIc7/tqHm88K9bPBzrAVQ7I+clI/0o2N7ZVVkp1hqDASQQ==" - } - }, - "npm:@pinojs/redact": { - "type": "npm", - "name": "npm:@pinojs/redact", - "data": { - "version": "0.4.0", - "packageName": "@pinojs/redact", - "hash": "sha512-k2ENnmBugE/rzQfEcdWHcCY+/FM3VLzH9cYEsbdsoqrvzAKRhUZeRNhAZvB8OitQJ1TBed3yqWtdjzS6wJKBwg==" - } - }, - "npm:@pkgjs/parseargs": { - "type": "npm", - "name": "npm:@pkgjs/parseargs", - "data": { - "version": "0.11.0", - "packageName": "@pkgjs/parseargs", - "hash": "sha512-+1VkjdD0QBLPodGrJUeqarH8VAIvQODIbwh9XpP5Syisf7YoQgsJKPNFoqqLQlu+VQ/tVSshMR6loPMn8U+dPg==" - } - }, - "npm:@pkgr/core": { - "type": "npm", - "name": "npm:@pkgr/core", - "data": { - "version": "0.2.9", - "packageName": "@pkgr/core", - "hash": "sha512-QNqXyfVS2wm9hweSYD2O7F0G06uurj9kZ96TRQE5Y9hU7+tgdZwIkbAKc5Ocy1HxEY2kuDQa6cQ1WRs/O5LFKA==" - } - }, - "npm:@polka/url": { - "type": "npm", - "name": "npm:@polka/url", - "data": { - "version": "1.0.0-next.29", - "packageName": "@polka/url", - "hash": "sha512-wwQAWhWSuHaag8c4q/KN/vCoeOJYshAIvMQwD4GpSb3OiZklFfvAgmj0VCBBImRpuF/aFgIRzllXlVX93Jevww==" - } - }, - "npm:@poppinss/colors": { - "type": "npm", - "name": "npm:@poppinss/colors", - "data": { - "version": "4.1.5", - "packageName": "@poppinss/colors", - "hash": "sha512-FvdDqtcRCtz6hThExcFOgW0cWX+xwSMWcRuQe5ZEb2m7cVQOAVZOIMt+/v9RxGiD9/OY16qJBXK4CVKWAPalBw==" - } - }, - "npm:@poppinss/dumper": { - "type": "npm", - "name": "npm:@poppinss/dumper", - "data": { - "version": "0.6.4", - "packageName": "@poppinss/dumper", - "hash": "sha512-iG0TIdqv8xJ3Lt9O8DrPRxw1MRLjNpoqiSGU03P/wNLP/s0ra0udPJ1J2Tx5M0J3H/cVyEgpbn8xUKRY9j59kQ==" - } - }, - "npm:@poppinss/exception": { - "type": "npm", - "name": "npm:@poppinss/exception", - "data": { - "version": "1.2.2", - "packageName": "@poppinss/exception", - "hash": "sha512-m7bpKCD4QMlFCjA/nKTs23fuvoVFoA83brRKmObCUNmi/9tVu8Ve3w4YQAnJu4q3Tjf5fr685HYIC/IA2zHRSg==" - } - }, - "npm:@prisma/client-runtime-utils": { - "type": "npm", - "name": "npm:@prisma/client-runtime-utils", - "data": { - "version": "7.5.0", - "packageName": "@prisma/client-runtime-utils", - "hash": "sha512-KnJ2b4Si/pcWEtK68uM+h0h1oh80CZt2suhLTVuLaSKg4n58Q9jBF/A42Kw6Ma+aThy1yAhfDeTC0JvEmeZnFQ==" - } - }, - "npm:@prisma/client": { - "type": "npm", - "name": "npm:@prisma/client", - "data": { - "version": "7.5.0", - "packageName": "@prisma/client", - "hash": "sha512-h4hF9ctp+kSRs7ENHGsFQmHAgHcfkOCxbYt6Ti9Xi8x7D+kP4tTi9x51UKmiTH/OqdyJAO+8V+r+JA5AWdav7w==" - } - }, - "npm:@prisma/config": { - "type": "npm", - "name": "npm:@prisma/config", - "data": { - "version": "7.5.0", - "packageName": "@prisma/config", - "hash": "sha512-1J/9YEX7A889xM46PYg9e8VAuSL1IUmXJW3tEhMv7XQHDWlfC9YSkIw9sTYRaq5GswGlxZ+GnnyiNsUZ9JJhSQ==" - } - }, - "npm:@prisma/debug@7.2.0": { - "type": "npm", - "name": "npm:@prisma/debug@7.2.0", - "data": { - "version": "7.2.0", - "packageName": "@prisma/debug", - "hash": "sha512-YSGTiSlBAVJPzX4ONZmMotL+ozJwQjRmZweQNIq/ER0tQJKJynNkRB3kyvt37eOfsbMCXk3gnLF6J9OJ4QWftw==" - } - }, - "npm:@prisma/debug": { - "type": "npm", - "name": "npm:@prisma/debug", - "data": { - "version": "7.5.0", - "packageName": "@prisma/debug", - "hash": "sha512-163+nffny0JoPEkDhfNco0vcuT3ymIJc9+WX7MHSQhfkeKUmKe9/wqvGk5SjppT93DtBjVwr5HPJYlXbzm6qtg==" - } - }, - "npm:@prisma/dev": { - "type": "npm", - "name": "npm:@prisma/dev", - "data": { - "version": "0.20.0", - "packageName": "@prisma/dev", - "hash": "sha512-ovlBYwWor0OzG+yH4J3Ot+AneD818BttLA+Ii7wjbcLHUrnC4tbUPVGyNd3c/+71KETPKZfjhkTSpdS15dmXNQ==" - } - }, - "npm:@prisma/engines-version": { - "type": "npm", - "name": "npm:@prisma/engines-version", - "data": { - "version": "7.5.0-15.280c870be64f457428992c43c1f6d557fab6e29e", - "packageName": "@prisma/engines-version", - "hash": "sha512-E+iRV/vbJLl8iGjVr6g/TEWokA+gjkV/doZkaQN1i/ULVdDwGnPJDfLUIFGS3BVwlG/m6L8T4x1x5isl8hGMxA==" - } - }, - "npm:@prisma/engines": { - "type": "npm", - "name": "npm:@prisma/engines", - "data": { - "version": "7.5.0", - "packageName": "@prisma/engines", - "hash": "sha512-ondGRhzoaVpRWvFaQ5wH5zS1BIbhzbKqczKjCn6j3L0Zfe/LInjcEg8+xtB49AuZBX30qyx1ZtGoootUohz2pw==" - } - }, - "npm:@prisma/fetch-engine": { - "type": "npm", - "name": "npm:@prisma/fetch-engine", - "data": { - "version": "7.5.0", - "packageName": "@prisma/fetch-engine", - "hash": "sha512-kZCl2FV54qnyrVdnII8MI6qvt7HfU6Cbiz8dZ8PXz4f4lbSw45jEB9/gEMK2SGdiNhBKyk/Wv95uthoLhGMLYA==" - } - }, - "npm:@prisma/get-platform": { - "type": "npm", - "name": "npm:@prisma/get-platform", - "data": { - "version": "7.2.0", - "packageName": "@prisma/get-platform", - "hash": "sha512-k1V0l0Td1732EHpAfi2eySTezyllok9dXb6UQanajkJQzPUGi3vO2z7jdkz67SypFTdmbnyGYxvEvYZdZsMAVA==" - } - }, - "npm:@prisma/get-platform@7.5.0": { - "type": "npm", - "name": "npm:@prisma/get-platform@7.5.0", - "data": { - "version": "7.5.0", - "packageName": "@prisma/get-platform", - "hash": "sha512-7I+2y1nu/gkEKSiHHbcZ1HPe/euGdEqJZxEEMT0246q4De1+hla0ZzlTgvaT9dHcVCgLSuCG8v39db5qUUWNgw==" - } - }, - "npm:@prisma/query-plan-executor": { - "type": "npm", - "name": "npm:@prisma/query-plan-executor", - "data": { - "version": "7.2.0", - "packageName": "@prisma/query-plan-executor", - "hash": "sha512-EOZmNzcV8uJ0mae3DhTsiHgoNCuu1J9mULQpGCh62zN3PxPTd+qI9tJvk5jOst8WHKQNwJWR3b39t0XvfBB0WQ==" - } - }, - "npm:@prisma/studio-core": { - "type": "npm", - "name": "npm:@prisma/studio-core", - "data": { - "version": "0.21.1", - "packageName": "@prisma/studio-core", - "hash": "sha512-bOGqG/eMQtKC0XVvcVLRmhWWzm/I+0QUWqAEhEBtetpuS3k3V4IWqKGUONkAIT223DNXJMxMtZp36b1FmcdPeg==" - } - }, - "npm:@puppeteer/browsers": { - "type": "npm", - "name": "npm:@puppeteer/browsers", - "data": { - "version": "2.13.0", - "packageName": "@puppeteer/browsers", - "hash": "sha512-46BZJYJjc/WwmKjsvDFykHtXrtomsCIrwYQPOP7VfMJoZY2bsDF9oROBABR3paDjDcmkUye1Pb1BqdcdiipaWA==" - } - }, - "npm:@quansync/fs": { - "type": "npm", - "name": "npm:@quansync/fs", - "data": { - "version": "1.0.0", - "packageName": "@quansync/fs", - "hash": "sha512-4TJ3DFtlf1L5LDMaM6CanJ/0lckGNtJcMjQ1NAV6zDmA0tEHKZtxNKin8EgPaVX1YzljbxckyT2tJrpQKAtngQ==" - } - }, - "npm:@radix-ui/react-icons": { - "type": "npm", - "name": "npm:@radix-ui/react-icons", - "data": { - "version": "1.3.2", - "packageName": "@radix-ui/react-icons", - "hash": "sha512-fyQIhGDhzfc9pK2kH6Pl9c4BDJGfMkPqkyIgYDthyNYoNg3wVhoJMMh19WS4Up/1KMPFVpNsT2q3WmXn2N1m6g==" - } - }, - "npm:@remix-run/node-fetch-server": { - "type": "npm", - "name": "npm:@remix-run/node-fetch-server", - "data": { - "version": "0.8.1", - "packageName": "@remix-run/node-fetch-server", - "hash": "sha512-J1dev372wtJqmqn9U/qbpbZxbJSQrogNN2+Qv1lKlpATpe/WQ9aCZfl/xSb9d2Rgh1IyLSvNxZAXPZxruO6Xig==" - } - }, - "npm:@remusao/guess-url-type": { - "type": "npm", - "name": "npm:@remusao/guess-url-type", - "data": { - "version": "2.1.0", - "packageName": "@remusao/guess-url-type", - "hash": "sha512-zI3dlTUxpjvx2GCxp9nLOSK5yEIqDCpxlAVGwb2Y49RKkS72oeNaxxo+VWS5+XQ5+Mf8Zfp9ZXIlk+G5eoEN8A==" - } - }, - "npm:@remusao/small": { - "type": "npm", - "name": "npm:@remusao/small", - "data": { - "version": "2.1.0", - "packageName": "@remusao/small", - "hash": "sha512-Y1kyjZp7JU7dXdyOdxHVNfoTr1XLZJTyQP36/esZUU/WRWq9XY0PV2HsE3CsIHuaTf4pvgWv2pvzvnZ//UHIJQ==" - } - }, - "npm:@remusao/smaz-compress": { - "type": "npm", - "name": "npm:@remusao/smaz-compress", - "data": { - "version": "2.2.0", - "packageName": "@remusao/smaz-compress", - "hash": "sha512-TXpTPgILRUYOt2rEe0+9PC12xULPvBqeMpmipzB9A7oM4fa9Ztvy9lLYzPTd7tiQEeoNa1pmxihpKfJtsxnM/w==" - } - }, - "npm:@remusao/smaz-decompress": { - "type": "npm", - "name": "npm:@remusao/smaz-decompress", - "data": { - "version": "2.2.0", - "packageName": "@remusao/smaz-decompress", - "hash": "sha512-ERAPwxPaA0/yg4hkNU7T2S+lnp9jj1sApcQMtOyROvOQyo+Zuh6Hn/oRcXr8mmjlYzyRaC7E6r3mT1nrdHR6pg==" - } - }, - "npm:@remusao/smaz": { - "type": "npm", - "name": "npm:@remusao/smaz", - "data": { - "version": "2.2.0", - "packageName": "@remusao/smaz", - "hash": "sha512-eSd3Qs0ELP/e7tU1SI5RWXcCn9KjDgvBY+KtWbL4i2QvvHhJOfdIt4v0AA3S5BbLWAr5dCEC7C4LUfogDm6q/Q==" - } - }, - "npm:@remusao/trie": { - "type": "npm", - "name": "npm:@remusao/trie", - "data": { - "version": "2.1.0", - "packageName": "@remusao/trie", - "hash": "sha512-Er3Q8q0/2OcCJPQYJOPLmCuqO0wu7cav3SPtpjlxSbjFi1x+A1pZkkLD6c9q2rGEkGW/tkrRzfrhNMt8VQjzXg==" - } - }, - "npm:@rolldown/binding-android-arm64@1.0.0-beta.51": { - "type": "npm", - "name": "npm:@rolldown/binding-android-arm64@1.0.0-beta.51", - "data": { - "version": "1.0.0-beta.51", - "packageName": "@rolldown/binding-android-arm64", - "hash": "sha512-Ctn8FUXKWWQI9pWC61P1yumS9WjQtelNS9riHwV7oCkknPGaAry4o7eFx2KgoLMnI2BgFJYpW7Im8/zX3BuONg==" - } - }, - "npm:@rolldown/binding-android-arm64@1.0.0-rc.11": { - "type": "npm", - "name": "npm:@rolldown/binding-android-arm64@1.0.0-rc.11", - "data": { - "version": "1.0.0-rc.11", - "packageName": "@rolldown/binding-android-arm64", - "hash": "sha512-SJ+/g+xNnOh6NqYxD0V3uVN4W3VfnrGsC9/hoglicgTNfABFG9JjISvkkU0dNY84MNHLWyOgxP9v9Y9pX4S7+A==" - } - }, - "npm:@rolldown/binding-android-arm64@1.0.0-rc.9": { - "type": "npm", - "name": "npm:@rolldown/binding-android-arm64@1.0.0-rc.9", - "data": { - "version": "1.0.0-rc.9", - "packageName": "@rolldown/binding-android-arm64", - "hash": "sha512-lcJL0bN5hpgJfSIz/8PIf02irmyL43P+j1pTCfbD1DbLkmGRuFIA4DD3B3ZOvGqG0XiVvRznbKtN0COQVaKUTg==" - } - }, - "npm:@rolldown/binding-darwin-arm64@1.0.0-beta.51": { - "type": "npm", - "name": "npm:@rolldown/binding-darwin-arm64@1.0.0-beta.51", - "data": { - "version": "1.0.0-beta.51", - "packageName": "@rolldown/binding-darwin-arm64", - "hash": "sha512-EL1aRW2Oq15ShUEkBPsDtLMO8GTqfb/ktM/dFaVzXKQiEE96Ss6nexMgfgQrg8dGnNpndFyffVDb5IdSibsu1g==" - } - }, - "npm:@rolldown/binding-darwin-arm64@1.0.0-rc.11": { - "type": "npm", - "name": "npm:@rolldown/binding-darwin-arm64@1.0.0-rc.11", - "data": { - "version": "1.0.0-rc.11", - "packageName": "@rolldown/binding-darwin-arm64", - "hash": "sha512-7WQgR8SfOPwmDZGFkThUvsmd/nwAWv91oCO4I5LS7RKrssPZmOt7jONN0cW17ydGC1n/+puol1IpoieKqQidmg==" - } - }, - "npm:@rolldown/binding-darwin-arm64@1.0.0-rc.9": { - "type": "npm", - "name": "npm:@rolldown/binding-darwin-arm64@1.0.0-rc.9", - "data": { - "version": "1.0.0-rc.9", - "packageName": "@rolldown/binding-darwin-arm64", - "hash": "sha512-J7Zk3kLYFsLtuH6U+F4pS2sYVzac0qkjcO5QxHS7OS7yZu2LRs+IXo+uvJ/mvpyUljDJ3LROZPoQfgBIpCMhdQ==" - } - }, - "npm:@rolldown/binding-darwin-x64@1.0.0-beta.51": { - "type": "npm", - "name": "npm:@rolldown/binding-darwin-x64@1.0.0-beta.51", - "data": { - "version": "1.0.0-beta.51", - "packageName": "@rolldown/binding-darwin-x64", - "hash": "sha512-uGtYKlFen9pMIPvkHPWZVDtmYhMQi5g5Ddsndg1gf3atScKYKYgs5aDP4DhHeTwGXQglhfBG7lEaOIZ4UAIWww==" - } - }, - "npm:@rolldown/binding-darwin-x64@1.0.0-rc.11": { - "type": "npm", - "name": "npm:@rolldown/binding-darwin-x64@1.0.0-rc.11", - "data": { - "version": "1.0.0-rc.11", - "packageName": "@rolldown/binding-darwin-x64", - "hash": "sha512-39Ks6UvIHq4rEogIfQBoBRusj0Q0nPVWIvqmwBLaT6aqQGIakHdESBVOPRRLacy4WwUPIx4ZKzfZ9PMW+IeyUQ==" - } - }, - "npm:@rolldown/binding-darwin-x64@1.0.0-rc.9": { - "type": "npm", - "name": "npm:@rolldown/binding-darwin-x64@1.0.0-rc.9", - "data": { - "version": "1.0.0-rc.9", - "packageName": "@rolldown/binding-darwin-x64", - "hash": "sha512-iwtmmghy8nhfRGeNAIltcNXzD0QMNaaA5U/NyZc1Ia4bxrzFByNMDoppoC+hl7cDiUq5/1CnFthpT9n+UtfFyg==" - } - }, - "npm:@rolldown/binding-freebsd-x64@1.0.0-beta.51": { - "type": "npm", - "name": "npm:@rolldown/binding-freebsd-x64@1.0.0-beta.51", - "data": { - "version": "1.0.0-beta.51", - "packageName": "@rolldown/binding-freebsd-x64", - "hash": "sha512-JRoVTQtHYbZj1P07JLiuTuXjiBtIa7ag7/qgKA6CIIXnAcdl4LrOf7nfDuHPJcuRKaP5dzecMgY99itvWfmUFQ==" - } - }, - "npm:@rolldown/binding-freebsd-x64@1.0.0-rc.11": { - "type": "npm", - "name": "npm:@rolldown/binding-freebsd-x64@1.0.0-rc.11", - "data": { - "version": "1.0.0-rc.11", - "packageName": "@rolldown/binding-freebsd-x64", - "hash": "sha512-jfsm0ZHfhiqrvWjJAmzsqiIFPz5e7mAoCOPBNTcNgkiid/LaFKiq92+0ojH+nmJmKYkre4t71BWXUZDNp7vsag==" - } - }, - "npm:@rolldown/binding-freebsd-x64@1.0.0-rc.9": { - "type": "npm", - "name": "npm:@rolldown/binding-freebsd-x64@1.0.0-rc.9", - "data": { - "version": "1.0.0-rc.9", - "packageName": "@rolldown/binding-freebsd-x64", - "hash": "sha512-DLFYI78SCiZr5VvdEplsVC2Vx53lnA4/Ga5C65iyldMVaErr86aiqCoNBLl92PXPfDtUYjUh+xFFor40ueNs4Q==" - } - }, - "npm:@rolldown/binding-linux-arm-gnueabihf@1.0.0-beta.51": { - "type": "npm", - "name": "npm:@rolldown/binding-linux-arm-gnueabihf@1.0.0-beta.51", - "data": { - "version": "1.0.0-beta.51", - "packageName": "@rolldown/binding-linux-arm-gnueabihf", - "hash": "sha512-BKATVnpPZ0TYBW9XfDwyd4kPGgvf964HiotIwUgpMrFOFYWqpZ+9ONNzMV4UFAYC7Hb5C2qgYQk/qj2OnAd4RQ==" - } - }, - "npm:@rolldown/binding-linux-arm-gnueabihf@1.0.0-rc.11": { - "type": "npm", - "name": "npm:@rolldown/binding-linux-arm-gnueabihf@1.0.0-rc.11", - "data": { - "version": "1.0.0-rc.11", - "packageName": "@rolldown/binding-linux-arm-gnueabihf", - "hash": "sha512-zjQaUtSyq1nVe3nxmlSCuR96T1LPlpvmJ0SZy0WJFEsV4kFbXcq2u68L4E6O0XeFj4aex9bEauqjW8UQBeAvfQ==" - } - }, - "npm:@rolldown/binding-linux-arm-gnueabihf@1.0.0-rc.9": { - "type": "npm", - "name": "npm:@rolldown/binding-linux-arm-gnueabihf@1.0.0-rc.9", - "data": { - "version": "1.0.0-rc.9", - "packageName": "@rolldown/binding-linux-arm-gnueabihf", - "hash": "sha512-CsjTmTwd0Hri6iTw/DRMK7kOZ7FwAkrO4h8YWKoX/kcj833e4coqo2wzIFywtch/8Eb5enQ/lwLM7w6JX1W5RQ==" - } - }, - "npm:@rolldown/binding-linux-arm64-gnu@1.0.0-beta.51": { - "type": "npm", - "name": "npm:@rolldown/binding-linux-arm64-gnu@1.0.0-beta.51", - "data": { - "version": "1.0.0-beta.51", - "packageName": "@rolldown/binding-linux-arm64-gnu", - "hash": "sha512-xLd7da5jkfbVsBCm1buIRdWtuXY8+hU3+6ESXY/Tk5X5DPHaifrUblhYDgmA34dQt6WyNC2kfXGgrduPEvDI6Q==" - } - }, - "npm:@rolldown/binding-linux-arm64-gnu@1.0.0-rc.11": { - "type": "npm", - "name": "npm:@rolldown/binding-linux-arm64-gnu@1.0.0-rc.11", - "data": { - "version": "1.0.0-rc.11", - "packageName": "@rolldown/binding-linux-arm64-gnu", - "hash": "sha512-WMW1yE6IOnehTcFE9eipFkm3XN63zypWlrJQ2iF7NrQ9b2LDRjumFoOGJE8RJJTJCTBAdmLMnJ8uVitACUUo1Q==" - } - }, - "npm:@rolldown/binding-linux-arm64-gnu@1.0.0-rc.9": { - "type": "npm", - "name": "npm:@rolldown/binding-linux-arm64-gnu@1.0.0-rc.9", - "data": { - "version": "1.0.0-rc.9", - "packageName": "@rolldown/binding-linux-arm64-gnu", - "hash": "sha512-2x9O2JbSPxpxMDhP9Z74mahAStibTlrBMW0520+epJH5sac7/LwZW5Bmg/E6CXuEF53JJFW509uP+lSedaUNxg==" - } - }, - "npm:@rolldown/binding-linux-arm64-musl@1.0.0-beta.51": { - "type": "npm", - "name": "npm:@rolldown/binding-linux-arm64-musl@1.0.0-beta.51", - "data": { - "version": "1.0.0-beta.51", - "packageName": "@rolldown/binding-linux-arm64-musl", - "hash": "sha512-EQFXTgHxxTzv3t5EmjUP/DfxzFYx9sMndfLsYaAY4DWF6KsK1fXGYsiupif6qPTViPC9eVmRm78q0pZU/kuIPg==" - } - }, - "npm:@rolldown/binding-linux-arm64-musl@1.0.0-rc.11": { - "type": "npm", - "name": "npm:@rolldown/binding-linux-arm64-musl@1.0.0-rc.11", - "data": { - "version": "1.0.0-rc.11", - "packageName": "@rolldown/binding-linux-arm64-musl", - "hash": "sha512-jfndI9tsfm4APzjNt6QdBkYwre5lRPUgHeDHoI7ydKUuJvz3lZeCfMsI56BZj+7BYqiKsJm7cfd/6KYV7ubrBg==" - } - }, - "npm:@rolldown/binding-linux-arm64-musl@1.0.0-rc.9": { - "type": "npm", - "name": "npm:@rolldown/binding-linux-arm64-musl@1.0.0-rc.9", - "data": { - "version": "1.0.0-rc.9", - "packageName": "@rolldown/binding-linux-arm64-musl", - "hash": "sha512-JA1QRW31ogheAIRhIg9tjMfsYbglXXYGNPLdPEYrwFxdbkQCAzvpSCSHCDWNl4hTtrol8WeboCSEpjdZK8qrCg==" - } - }, - "npm:@rolldown/binding-linux-ppc64-gnu@1.0.0-rc.11": { - "type": "npm", - "name": "npm:@rolldown/binding-linux-ppc64-gnu@1.0.0-rc.11", - "data": { - "version": "1.0.0-rc.11", - "packageName": "@rolldown/binding-linux-ppc64-gnu", - "hash": "sha512-ZlFgw46NOAGMgcdvdYwAGu2Q+SLFA9LzbJLW+iyMOJyhj5wk6P3KEE9Gct4xWwSzFoPI7JCdYmYMzVtlgQ+zfw==" - } - }, - "npm:@rolldown/binding-linux-ppc64-gnu@1.0.0-rc.9": { - "type": "npm", - "name": "npm:@rolldown/binding-linux-ppc64-gnu@1.0.0-rc.9", - "data": { - "version": "1.0.0-rc.9", - "packageName": "@rolldown/binding-linux-ppc64-gnu", - "hash": "sha512-aOKU9dJheda8Kj8Y3w9gnt9QFOO+qKPAl8SWd7JPHP+Cu0EuDAE5wokQubLzIDQWg2myXq2XhTpOVS07qqvT+w==" - } - }, - "npm:@rolldown/binding-linux-s390x-gnu@1.0.0-rc.11": { - "type": "npm", - "name": "npm:@rolldown/binding-linux-s390x-gnu@1.0.0-rc.11", - "data": { - "version": "1.0.0-rc.11", - "packageName": "@rolldown/binding-linux-s390x-gnu", - "hash": "sha512-hIOYmuT6ofM4K04XAZd3OzMySEO4K0/nc9+jmNcxNAxRi6c5UWpqfw3KMFV4MVFWL+jQsSh+bGw2VqmaPMTLyw==" - } - }, - "npm:@rolldown/binding-linux-s390x-gnu@1.0.0-rc.9": { - "type": "npm", - "name": "npm:@rolldown/binding-linux-s390x-gnu@1.0.0-rc.9", - "data": { - "version": "1.0.0-rc.9", - "packageName": "@rolldown/binding-linux-s390x-gnu", - "hash": "sha512-OalO94fqj7IWRn3VdXWty75jC5dk4C197AWEuMhIpvVv2lw9fiPhud0+bW2ctCxb3YoBZor71QHbY+9/WToadA==" - } - }, - "npm:@rolldown/binding-linux-x64-gnu@1.0.0-beta.51": { - "type": "npm", - "name": "npm:@rolldown/binding-linux-x64-gnu@1.0.0-beta.51", - "data": { - "version": "1.0.0-beta.51", - "packageName": "@rolldown/binding-linux-x64-gnu", - "hash": "sha512-p5P6Xpa68w3yFaAdSzIZJbj+AfuDnMDqNSeglBXM7UlJT14Q4zwK+rV+8Mhp9MiUb4XFISZtbI/seBprhkQbiQ==" - } - }, - "npm:@rolldown/binding-linux-x64-gnu": { - "type": "npm", - "name": "npm:@rolldown/binding-linux-x64-gnu", - "data": { - "version": "1.0.0-rc.11", - "packageName": "@rolldown/binding-linux-x64-gnu", - "hash": "sha512-qXBQQO9OvkjjQPLdUVr7Nr2t3QTZI7s4KZtfw7HzBgjbmAPSFwSv4rmET9lLSgq3rH/ndA3ngv3Qb8l2njoPNA==" - } - }, - "npm:@rolldown/binding-linux-x64-gnu@1.0.0-rc.9": { - "type": "npm", - "name": "npm:@rolldown/binding-linux-x64-gnu@1.0.0-rc.9", - "data": { - "version": "1.0.0-rc.9", - "packageName": "@rolldown/binding-linux-x64-gnu", - "hash": "sha512-cVEl1vZtBsBZna3YMjGXNvnYYrOJ7RzuWvZU0ffvJUexWkukMaDuGhUXn0rjnV0ptzGVkvc+vW9Yqy6h8YX4pg==" - } - }, - "npm:@rolldown/binding-linux-x64-musl@1.0.0-beta.51": { - "type": "npm", - "name": "npm:@rolldown/binding-linux-x64-musl@1.0.0-beta.51", - "data": { - "version": "1.0.0-beta.51", - "packageName": "@rolldown/binding-linux-x64-musl", - "hash": "sha512-sNVVyLa8HB8wkFipdfz1s6i0YWinwpbMWk5hO5S+XAYH2UH67YzUT13gs6wZTKg2x/3gtgXzYnHyF5wMIqoDAw==" - } - }, - "npm:@rolldown/binding-linux-x64-musl": { - "type": "npm", - "name": "npm:@rolldown/binding-linux-x64-musl", - "data": { - "version": "1.0.0-rc.11", - "packageName": "@rolldown/binding-linux-x64-musl", - "hash": "sha512-/tpFfoSTzUkH9LPY+cYbqZBDyyX62w5fICq9qzsHLL8uTI6BHip3Q9Uzft0wylk/i8OOwKik8OxW+QAhDmzwmg==" - } - }, - "npm:@rolldown/binding-linux-x64-musl@1.0.0-rc.9": { - "type": "npm", - "name": "npm:@rolldown/binding-linux-x64-musl@1.0.0-rc.9", - "data": { - "version": "1.0.0-rc.9", - "packageName": "@rolldown/binding-linux-x64-musl", - "hash": "sha512-UzYnKCIIc4heAKgI4PZ3dfBGUZefGCJ1TPDuLHoCzgrMYPb5Rv6TLFuYtyM4rWyHM7hymNdsg5ik2C+UD9VDbA==" - } - }, - "npm:@rolldown/binding-openharmony-arm64@1.0.0-beta.51": { - "type": "npm", - "name": "npm:@rolldown/binding-openharmony-arm64@1.0.0-beta.51", - "data": { - "version": "1.0.0-beta.51", - "packageName": "@rolldown/binding-openharmony-arm64", - "hash": "sha512-e/JMTz9Q8+T3g/deEi8DK44sFWZWGKr9AOCW5e8C8SCVWzAXqYXAG7FXBWBNzWEZK0Rcwo9TQHTQ9Q0gXgdCaA==" - } - }, - "npm:@rolldown/binding-openharmony-arm64@1.0.0-rc.11": { - "type": "npm", - "name": "npm:@rolldown/binding-openharmony-arm64@1.0.0-rc.11", - "data": { - "version": "1.0.0-rc.11", - "packageName": "@rolldown/binding-openharmony-arm64", - "hash": "sha512-mcp3Rio2w72IvdZG0oQ4bM2c2oumtwHfUfKncUM6zGgz0KgPz4YmDPQfnXEiY5t3+KD/i8HG2rOB/LxdmieK2g==" - } - }, - "npm:@rolldown/binding-openharmony-arm64@1.0.0-rc.9": { - "type": "npm", - "name": "npm:@rolldown/binding-openharmony-arm64@1.0.0-rc.9", - "data": { - "version": "1.0.0-rc.9", - "packageName": "@rolldown/binding-openharmony-arm64", - "hash": "sha512-+6zoiF+RRyf5cdlFQP7nm58mq7+/2PFaY2DNQeD4B87N36JzfF/l9mdBkkmTvSYcYPE8tMh/o3cRlsx1ldLfog==" - } - }, - "npm:@rolldown/binding-wasm32-wasi@1.0.0-beta.51": { - "type": "npm", - "name": "npm:@rolldown/binding-wasm32-wasi@1.0.0-beta.51", - "data": { - "version": "1.0.0-beta.51", - "packageName": "@rolldown/binding-wasm32-wasi", - "hash": "sha512-We3LWqSu6J9s5Y0MK+N7fUiiu37aBGPG3Pc347EoaROuAwkCS2u9xJ5dpIyLW4B49CIbS3KaPmn4kTgPb3EyPw==" - } - }, - "npm:@rolldown/binding-wasm32-wasi@1.0.0-rc.11": { - "type": "npm", - "name": "npm:@rolldown/binding-wasm32-wasi@1.0.0-rc.11", - "data": { - "version": "1.0.0-rc.11", - "packageName": "@rolldown/binding-wasm32-wasi", - "hash": "sha512-LXk5Hii1Ph9asuGRjBuz8TUxdc1lWzB7nyfdoRgI0WGPZKmCxvlKk8KfYysqtr4MfGElu/f/pEQRh8fcEgkrWw==" - } - }, - "npm:@rolldown/binding-wasm32-wasi@1.0.0-rc.9": { - "type": "npm", - "name": "npm:@rolldown/binding-wasm32-wasi@1.0.0-rc.9", - "data": { - "version": "1.0.0-rc.9", - "packageName": "@rolldown/binding-wasm32-wasi", - "hash": "sha512-rgFN6sA/dyebil3YTlL2evvi/M+ivhfnyxec7AccTpRPccno/rPoNlqybEZQBkcbZu8Hy+eqNJCqfBR8P7Pg8g==" - } - }, - "npm:@rolldown/binding-win32-arm64-msvc@1.0.0-beta.51": { - "type": "npm", - "name": "npm:@rolldown/binding-win32-arm64-msvc@1.0.0-beta.51", - "data": { - "version": "1.0.0-beta.51", - "packageName": "@rolldown/binding-win32-arm64-msvc", - "hash": "sha512-fj56buHRuMM+r/cb6ZYfNjNvO/0xeFybI6cTkTROJatdP4fvmQ1NS8D/Lm10FCSDEOkqIz8hK3TGpbAThbPHsA==" - } - }, - "npm:@rolldown/binding-win32-arm64-msvc@1.0.0-rc.11": { - "type": "npm", - "name": "npm:@rolldown/binding-win32-arm64-msvc@1.0.0-rc.11", - "data": { - "version": "1.0.0-rc.11", - "packageName": "@rolldown/binding-win32-arm64-msvc", - "hash": "sha512-dDwf5otnx0XgRY1yqxOC4ITizcdzS/8cQ3goOWv3jFAo4F+xQYni+hnMuO6+LssHHdJW7+OCVL3CoU4ycnh35Q==" - } - }, - "npm:@rolldown/binding-win32-arm64-msvc@1.0.0-rc.9": { - "type": "npm", - "name": "npm:@rolldown/binding-win32-arm64-msvc@1.0.0-rc.9", - "data": { - "version": "1.0.0-rc.9", - "packageName": "@rolldown/binding-win32-arm64-msvc", - "hash": "sha512-lHVNUG/8nlF1IQk1C0Ci574qKYyty2goMiPlRqkC5R+3LkXDkL5Dhx8ytbxq35m+pkHVIvIxviD+TWLdfeuadA==" - } - }, - "npm:@rolldown/binding-win32-ia32-msvc": { - "type": "npm", - "name": "npm:@rolldown/binding-win32-ia32-msvc", - "data": { - "version": "1.0.0-beta.51", - "packageName": "@rolldown/binding-win32-ia32-msvc", - "hash": "sha512-fkqEqaeEx8AySXiDm54b/RdINb3C0VovzJA3osMhZsbn6FoD73H0AOIiaVAtGr6x63hefruVKTX8irAm4Jkt2w==" - } - }, - "npm:@rolldown/binding-win32-x64-msvc@1.0.0-beta.51": { - "type": "npm", - "name": "npm:@rolldown/binding-win32-x64-msvc@1.0.0-beta.51", - "data": { - "version": "1.0.0-beta.51", - "packageName": "@rolldown/binding-win32-x64-msvc", - "hash": "sha512-CWuLG/HMtrVcjKGa0C4GnuxONrku89g0+CsH8nT0SNhOtREXuzwgjIXNJImpE/A/DMf9JF+1Xkrq/YRr+F/rCg==" - } - }, - "npm:@rolldown/binding-win32-x64-msvc@1.0.0-rc.11": { - "type": "npm", - "name": "npm:@rolldown/binding-win32-x64-msvc@1.0.0-rc.11", - "data": { - "version": "1.0.0-rc.11", - "packageName": "@rolldown/binding-win32-x64-msvc", - "hash": "sha512-LN4/skhSggybX71ews7dAj6r2geaMJfm3kMbK2KhFMg9B10AZXnKoLCVVgzhMHL0S+aKtr4p8QbAW8k+w95bAA==" - } - }, - "npm:@rolldown/binding-win32-x64-msvc@1.0.0-rc.9": { - "type": "npm", - "name": "npm:@rolldown/binding-win32-x64-msvc@1.0.0-rc.9", - "data": { - "version": "1.0.0-rc.9", - "packageName": "@rolldown/binding-win32-x64-msvc", - "hash": "sha512-G0oA4+w1iY5AGi5HcDTxWsoxF509hrFIPB2rduV5aDqS9FtDg1CAfa7V34qImbjfhIcA8C+RekocJZA96EarwQ==" - } - }, - "npm:@rolldown/pluginutils@1.0.0-beta.51": { - "type": "npm", - "name": "npm:@rolldown/pluginutils@1.0.0-beta.51", - "data": { - "version": "1.0.0-beta.51", - "packageName": "@rolldown/pluginutils", - "hash": "sha512-51/8cNXMrqWqX3o8DZidhwz1uYq0BhHDDSfVygAND1Skx5s1TDw3APSSxCMcFFedwgqGcx34gRouwY+m404BBQ==" - } - }, - "npm:@rolldown/pluginutils@1.0.0-rc.11": { - "type": "npm", - "name": "npm:@rolldown/pluginutils@1.0.0-rc.11", - "data": { - "version": "1.0.0-rc.11", - "packageName": "@rolldown/pluginutils", - "hash": "sha512-xQO9vbwBecJRv9EUcQ/y0dzSTJgA7Q6UVN7xp6B81+tBGSLVAK03yJ9NkJaUA7JFD91kbjxRSC/mDnmvXzbHoQ==" - } - }, - "npm:@rolldown/pluginutils@1.0.0-rc.2": { - "type": "npm", - "name": "npm:@rolldown/pluginutils@1.0.0-rc.2", - "data": { - "version": "1.0.0-rc.2", - "packageName": "@rolldown/pluginutils", - "hash": "sha512-izyXV/v+cHiRfozX62W9htOAvwMo4/bXKDrQ+vom1L1qRuexPock/7VZDAhnpHCLNejd3NJ6hiab+tO0D44Rgw==" - } - }, - "npm:@rolldown/pluginutils": { - "type": "npm", - "name": "npm:@rolldown/pluginutils", - "data": { - "version": "1.0.0-rc.7", - "packageName": "@rolldown/pluginutils", - "hash": "sha512-qujRfC8sFVInYSPPMLQByRh7zhwkGFS4+tyMQ83srV1qrxL4g8E2tyxVVyxd0+8QeBM1mIk9KbWxkegRr76XzA==" - } - }, - "npm:@rolldown/pluginutils@1.0.0-rc.9": { - "type": "npm", - "name": "npm:@rolldown/pluginutils@1.0.0-rc.9", - "data": { - "version": "1.0.0-rc.9", - "packageName": "@rolldown/pluginutils", - "hash": "sha512-w6oiRWgEBl04QkFZgmW+jnU1EC9b57Oihi2ot3HNWIQRqgHp5PnYDia5iZ5FF7rpa4EQdiqMDXjlqKGXBhsoXw==" - } - }, - "npm:@rollup/pluginutils": { - "type": "npm", - "name": "npm:@rollup/pluginutils", - "data": { - "version": "5.3.0", - "packageName": "@rollup/pluginutils", - "hash": "sha512-5EdhGZtnu3V88ces7s53hhfK5KSASnJZv8Lulpc04cWO3REESroJXg73DFsOmgbU2BhwV0E20bu2IDZb3VKW4Q==" - } - }, - "npm:@sec-ant/readable-stream": { - "type": "npm", - "name": "npm:@sec-ant/readable-stream", - "data": { - "version": "0.4.1", - "packageName": "@sec-ant/readable-stream", - "hash": "sha512-831qok9r2t8AlxLko40y2ebgSDhenenCatLVeW/uBtnHPyhHOvG0C7TvfgecV+wHzIm5KUICgzmVpWS+IMEAeg==" - } - }, - "npm:@sentry-internal/browser-utils": { - "type": "npm", - "name": "npm:@sentry-internal/browser-utils", - "data": { - "version": "10.45.0", - "packageName": "@sentry-internal/browser-utils", - "hash": "sha512-ZPZpeIarXKScvquGx2AfNKcYiVNDA4wegMmjyGVsTA2JPmP0TrJoO3UybJS6KGDeee8V3I3EfD/ruauMm7jOFQ==" - } - }, - "npm:@sentry-internal/feedback": { - "type": "npm", - "name": "npm:@sentry-internal/feedback", - "data": { - "version": "10.45.0", - "packageName": "@sentry-internal/feedback", - "hash": "sha512-vCSurazFVq7RUeYiM5X326jA5gOVrWYD6lYX2fbjBOMcyCEhDnveNxMT62zKkZDyNT/jyD194nz/cjntBUkyWA==" - } - }, - "npm:@sentry-internal/replay-canvas": { - "type": "npm", - "name": "npm:@sentry-internal/replay-canvas", - "data": { - "version": "10.45.0", - "packageName": "@sentry-internal/replay-canvas", - "hash": "sha512-nvq/AocdZTuD7y0KSiWi3gVaY0s5HOFy86mC/v1kDZmT/jsBAzN5LDkk/f1FvsWma1peqQmpUqxvhC+YIW294Q==" - } - }, - "npm:@sentry-internal/replay": { - "type": "npm", - "name": "npm:@sentry-internal/replay", - "data": { - "version": "10.45.0", - "packageName": "@sentry-internal/replay", - "hash": "sha512-vjosRoGA1bzhVAEO1oce+CsRdd70quzBeo7WvYqpcUnoLe/Rv8qpOMqWX3j26z7XfFHMExWQNQeLxmtYOArvlw==" - } - }, - "npm:@sentry/babel-plugin-component-annotate": { - "type": "npm", - "name": "npm:@sentry/babel-plugin-component-annotate", - "data": { - "version": "5.1.1", - "packageName": "@sentry/babel-plugin-component-annotate", - "hash": "sha512-x2wEpBHwsTyTF2rWsLKJlzrRF1TTIGOfX+ngdE+Yd5DBkoS58HwQv824QOviPGQRla4/ypISqAXzjdDPL/zalg==" - } - }, - "npm:@sentry/browser": { - "type": "npm", - "name": "npm:@sentry/browser", - "data": { - "version": "10.45.0", - "packageName": "@sentry/browser", - "hash": "sha512-e/a8UMiQhqqv706McSIcG6XK+AoQf9INthi2pD+giZfNRTzXTdqHzUT5OIO5hg8Am6eF63nDJc+vrYNPhzs51Q==" - } - }, - "npm:@sentry/bundler-plugin-core": { - "type": "npm", - "name": "npm:@sentry/bundler-plugin-core", - "data": { - "version": "5.1.1", - "packageName": "@sentry/bundler-plugin-core", - "hash": "sha512-F+itpwR9DyQR7gEkrXd2tigREPTvtF5lC8qu6e4anxXYRTui1+dVR0fXNwjpyAZMhIesLfXRN7WY7ggdj7hi0Q==" - } - }, - "npm:@sentry/cli-darwin": { - "type": "npm", - "name": "npm:@sentry/cli-darwin", - "data": { - "version": "2.58.5", - "packageName": "@sentry/cli-darwin", - "hash": "sha512-lYrNzenZFJftfwSya7gwrHGxtE+Kob/e1sr9lmHMFOd4utDlmq0XFDllmdZAMf21fxcPRI1GL28ejZ3bId01fQ==" - } - }, - "npm:@sentry/cli-linux-arm64": { - "type": "npm", - "name": "npm:@sentry/cli-linux-arm64", - "data": { - "version": "2.58.5", - "packageName": "@sentry/cli-linux-arm64", - "hash": "sha512-/4gywFeBqRB6tR/iGMRAJ3HRqY6Z7Yp4l8ZCbl0TDLAfHNxu7schEw4tSnm2/Hh9eNMiOVy4z58uzAWlZXAYBQ==" - } - }, - "npm:@sentry/cli-linux-arm": { - "type": "npm", - "name": "npm:@sentry/cli-linux-arm", - "data": { - "version": "2.58.5", - "packageName": "@sentry/cli-linux-arm", - "hash": "sha512-KtHweSIomYL4WVDrBrYSYJricKAAzxUgX86kc6OnlikbyOhoK6Fy8Vs6vwd52P6dvWPjgrMpUYjW2M5pYXQDUw==" - } - }, - "npm:@sentry/cli-linux-i686": { - "type": "npm", - "name": "npm:@sentry/cli-linux-i686", - "data": { - "version": "2.58.5", - "packageName": "@sentry/cli-linux-i686", - "hash": "sha512-G7261dkmyxqlMdyvyP06b+RTIVzp1gZNgglj5UksxSouSUqRd/46W/2pQeOMPhloDYo9yLtCN2YFb3Mw4aUsWw==" - } - }, - "npm:@sentry/cli-linux-x64": { - "type": "npm", - "name": "npm:@sentry/cli-linux-x64", - "data": { - "version": "2.58.5", - "packageName": "@sentry/cli-linux-x64", - "hash": "sha512-rP04494RSmt86xChkQ+ecBNRYSPbyXc4u0IA7R7N1pSLCyO74e5w5Al+LnAq35cMfVbZgz5Sm0iGLjyiUu4I1g==" - } - }, - "npm:@sentry/cli-win32-arm64": { - "type": "npm", - "name": "npm:@sentry/cli-win32-arm64", - "data": { - "version": "2.58.5", - "packageName": "@sentry/cli-win32-arm64", - "hash": "sha512-AOJ2nCXlQL1KBaCzv38m3i2VmSHNurUpm7xVKd6yAHX+ZoVBI8VT0EgvwmtJR2TY2N2hNCC7UrgRmdUsQ152bA==" - } - }, - "npm:@sentry/cli-win32-i686": { - "type": "npm", - "name": "npm:@sentry/cli-win32-i686", - "data": { - "version": "2.58.5", - "packageName": "@sentry/cli-win32-i686", - "hash": "sha512-EsuboLSOnlrN7MMPJ1eFvfMDm+BnzOaSWl8eYhNo8W/BIrmNgpRUdBwnWn9Q2UOjJj5ZopukmsiMYtU/D7ml9g==" - } - }, - "npm:@sentry/cli-win32-x64": { - "type": "npm", - "name": "npm:@sentry/cli-win32-x64", - "data": { - "version": "2.58.5", - "packageName": "@sentry/cli-win32-x64", - "hash": "sha512-IZf+XIMiQwj+5NzqbOQfywlOitmCV424Vtf9c+ep61AaVScUFD1TSrQbOcJJv5xGxhlxNOMNgMeZhdexdzrKZg==" - } - }, - "npm:@sentry/cli": { - "type": "npm", - "name": "npm:@sentry/cli", - "data": { - "version": "2.58.5", - "packageName": "@sentry/cli", - "hash": "sha512-tavJ7yGUZV+z3Ct2/ZB6mg339i08sAk6HDkgqmSRuQEu2iLS5sl9HIvuXfM6xjv8fwlgFOSy++WNABNAcGHUbg==" - } - }, - "npm:@sentry/core": { - "type": "npm", - "name": "npm:@sentry/core", - "data": { - "version": "10.45.0", - "packageName": "@sentry/core", - "hash": "sha512-s69UXxvefeQxuZ5nY7/THtTrIEvJxNVCp3ns4kwoCw1qMpgpvn/296WCKVmM7MiwnaAdzEKnAvLAwaxZc2nM7Q==" - } - }, - "npm:@sentry/react": { - "type": "npm", - "name": "npm:@sentry/react", - "data": { - "version": "10.45.0", - "packageName": "@sentry/react", - "hash": "sha512-jLezuxi4BUIU3raKyAPR5xMbQG/nhwnWmKo5p11NCbLmWzkS+lxoyDTUB4B8TAKZLfdtdkKLOn1S0tFc8vbUHw==" - } - }, - "npm:@sentry/rollup-plugin": { - "type": "npm", - "name": "npm:@sentry/rollup-plugin", - "data": { - "version": "5.1.1", - "packageName": "@sentry/rollup-plugin", - "hash": "sha512-1d5NkdRR6aKWBP7czkY8sFFWiKnfmfRpQOj+m9bJTsyTjbMiEQJst6315w5pCVlRItPhBqpAraqAhutZFgvyVg==" - } - }, - "npm:@sentry/solid": { - "type": "npm", - "name": "npm:@sentry/solid", - "data": { - "version": "10.45.0", - "packageName": "@sentry/solid", - "hash": "sha512-dhdFrlCHeA39ukkXTGI6ltW3z5flMI3zeRT54+q/e700VR7802OpojHJlboz1YB5wStH+grhVnxf7p0UZyz7Nw==" - } - }, - "npm:@sentry/vite-plugin": { - "type": "npm", - "name": "npm:@sentry/vite-plugin", - "data": { - "version": "5.1.1", - "packageName": "@sentry/vite-plugin", - "hash": "sha512-i6NWUDi2SDikfSUeMJvJTRdwEKYSfTd+mvBO2Ja51S1YK+hnickBuDfD+RvPerIXLuyRu3GamgNPbNqgCGUg/Q==" - } - }, - "npm:@sentry/vue": { - "type": "npm", - "name": "npm:@sentry/vue", - "data": { - "version": "10.45.0", - "packageName": "@sentry/vue", - "hash": "sha512-p6ghTgQtiCBZ+Yw0B2xmC69S8AdCRRsYvbTHW7MJYspwNnJDs7rqgCBqOxNhvr3tsKdDuEOEHLtf/5hbKi+8xQ==" - } - }, - "npm:@sinclair/typebox": { - "type": "npm", - "name": "npm:@sinclair/typebox", - "data": { - "version": "0.34.48", - "packageName": "@sinclair/typebox", - "hash": "sha512-kKJTNuK3AQOrgjjotVxMrCn1sUJwM76wMszfq1kdU4uYVJjvEWuFQ6HgvLt4Xz3fSmZlTOxJ/Ie13KnIcWQXFA==" - } - }, - "npm:@sindresorhus/is": { - "type": "npm", - "name": "npm:@sindresorhus/is", - "data": { - "version": "4.6.0", - "packageName": "@sindresorhus/is", - "hash": "sha512-t09vSN3MdfsyCHoFcTRCH/iUtG7OJ0CsjzB8cjAmKc/va/kIgeDI/TxsigdncE/4be734m0cvIYwNaV4i2XqAw==" - } - }, - "npm:@sindresorhus/is@7.1.0": { - "type": "npm", - "name": "npm:@sindresorhus/is@7.1.0", - "data": { - "version": "7.1.0", - "packageName": "@sindresorhus/is", - "hash": "sha512-7F/yz2IphV39hiS2zB4QYVkivrptHHh0K8qJJd9HhuWSdvf8AN7NpebW3CcDZDBQsUPMoDKWsY2WWgW7bqOcfA==" - } - }, - "npm:@sindresorhus/merge-streams": { - "type": "npm", - "name": "npm:@sindresorhus/merge-streams", - "data": { - "version": "4.0.0", - "packageName": "@sindresorhus/merge-streams", - "hash": "sha512-tlqY9xq5ukxTUZBmoOp+m61cqwQD5pHJtFY3Mn8CA8ps6yghLH/Hw8UPdqg4OLmFW3IFlcXnQNmo/dh8HzXYIQ==" - } - }, - "npm:@solid-primitives/props": { - "type": "npm", - "name": "npm:@solid-primitives/props", - "data": { - "version": "3.2.2", - "packageName": "@solid-primitives/props", - "hash": "sha512-lZOTwFJajBrshSyg14nBMEP0h8MXzPowGO0s3OeiR3z6nXHTfj0FhzDtJMv+VYoRJKQHG2QRnJTgCzK6erARAw==" - } - }, - "npm:@solid-primitives/refs": { - "type": "npm", - "name": "npm:@solid-primitives/refs", - "data": { - "version": "1.1.2", - "packageName": "@solid-primitives/refs", - "hash": "sha512-K7tf2thy7L+YJjdqXspXOg5xvNEOH8tgEWsp0+1mQk3obHBRD6hEjYZk7p7FlJphSZImS35je3UfmWuD7MhDfg==" - } - }, - "npm:@solid-primitives/scheduled": { - "type": "npm", - "name": "npm:@solid-primitives/scheduled", - "data": { - "version": "1.5.3", - "packageName": "@solid-primitives/scheduled", - "hash": "sha512-oNwLE6E6lxJAWrc8QXuwM0k2oU1BnANnkChwMw82aK1j3+mWGJkG1IFe5gCwbV+afYmjI76t9JJV3md/8tLw+g==" - } - }, - "npm:@solid-primitives/transition-group": { - "type": "npm", - "name": "npm:@solid-primitives/transition-group", - "data": { - "version": "1.1.2", - "packageName": "@solid-primitives/transition-group", - "hash": "sha512-gnHS0OmcdjeoHN9n7Khu8KNrOlRc8a2weETDt2YT6o1zeW/XtUC6Db3Q9pkMU/9cCKdEmN4b0a/41MKAHRhzWA==" - } - }, - "npm:@solid-primitives/utils": { - "type": "npm", - "name": "npm:@solid-primitives/utils", - "data": { - "version": "6.3.2", - "packageName": "@solid-primitives/utils", - "hash": "sha512-hZ/M/qr25QOCcwDPOHtGjxTD8w2mNyVAYvcfgwzBHq2RwNqHNdDNsMZYap20+ruRwW4A3Cdkczyoz0TSxLCAPQ==" - } - }, - "npm:@speed-highlight/core": { - "type": "npm", - "name": "npm:@speed-highlight/core", - "data": { - "version": "1.2.7", - "packageName": "@speed-highlight/core", - "hash": "sha512-0dxmVj4gxg3Jg879kvFS/msl4s9F3T9UXC1InxgOf7t5NvcPD97u/WTA5vL/IxWHMn7qSxBozqrnnE2wvl1m8g==" - } - }, - "npm:@stackblitz/sdk": { - "type": "npm", - "name": "npm:@stackblitz/sdk", - "data": { - "version": "1.11.0", - "packageName": "@stackblitz/sdk", - "hash": "sha512-DFQGANNkEZRzFk1/rDP6TcFdM82ycHE+zfl9C/M/jXlH68jiqHWHFMQURLELoD8koxvu/eW5uhg94NSAZlYrUQ==" - } - }, - "npm:@standard-schema/spec": { - "type": "npm", - "name": "npm:@standard-schema/spec", - "data": { - "version": "1.1.0", - "packageName": "@standard-schema/spec", - "hash": "sha512-l2aFy5jALhniG5HgqrD6jXLi/rUWrKvqN/qJx6yoJsgKhblVd+iqqU4RCXavm/jPityDo5TCvKMnpjKnOriy0w==" - } - }, - "npm:@szmarczak/http-timer": { - "type": "npm", - "name": "npm:@szmarczak/http-timer", - "data": { - "version": "4.0.6", - "packageName": "@szmarczak/http-timer", - "hash": "sha512-4BAffykYOgO+5nzBWYwE3W90sBgLJoUPRWWcL8wlyiM8IB8ipJz3UMJ9KXQd1RKQXpKp8Tutn80HZtWsu2u76w==" - } - }, - "npm:@tailwindcss/node": { - "type": "npm", - "name": "npm:@tailwindcss/node", - "data": { - "version": "4.2.2", - "packageName": "@tailwindcss/node", - "hash": "sha512-pXS+wJ2gZpVXqFaUEjojq7jzMpTGf8rU6ipJz5ovJV6PUGmlJ+jvIwGrzdHdQ80Sg+wmQxUFuoW1UAAwHNEdFA==" - } - }, - "npm:@tailwindcss/oxide-android-arm64": { - "type": "npm", - "name": "npm:@tailwindcss/oxide-android-arm64", - "data": { - "version": "4.2.2", - "packageName": "@tailwindcss/oxide-android-arm64", - "hash": "sha512-dXGR1n+P3B6748jZO/SvHZq7qBOqqzQ+yFrXpoOWWALWndF9MoSKAT3Q0fYgAzYzGhxNYOoysRvYlpixRBBoDg==" - } - }, - "npm:@tailwindcss/oxide-darwin-arm64": { - "type": "npm", - "name": "npm:@tailwindcss/oxide-darwin-arm64", - "data": { - "version": "4.2.2", - "packageName": "@tailwindcss/oxide-darwin-arm64", - "hash": "sha512-iq9Qjr6knfMpZHj55/37ouZeykwbDqF21gPFtfnhCCKGDcPI/21FKC9XdMO/XyBM7qKORx6UIhGgg6jLl7BZlg==" - } - }, - "npm:@tailwindcss/oxide-darwin-x64": { - "type": "npm", - "name": "npm:@tailwindcss/oxide-darwin-x64", - "data": { - "version": "4.2.2", - "packageName": "@tailwindcss/oxide-darwin-x64", - "hash": "sha512-BlR+2c3nzc8f2G639LpL89YY4bdcIdUmiOOkv2GQv4/4M0vJlpXEa0JXNHhCHU7VWOKWT/CjqHdTP8aUuDJkuw==" - } - }, - "npm:@tailwindcss/oxide-freebsd-x64": { - "type": "npm", - "name": "npm:@tailwindcss/oxide-freebsd-x64", - "data": { - "version": "4.2.2", - "packageName": "@tailwindcss/oxide-freebsd-x64", - "hash": "sha512-YUqUgrGMSu2CDO82hzlQ5qSb5xmx3RUrke/QgnoEx7KvmRJHQuZHZmZTLSuuHwFf0DJPybFMXMYf+WJdxHy/nQ==" - } - }, - "npm:@tailwindcss/oxide-linux-arm-gnueabihf": { - "type": "npm", - "name": "npm:@tailwindcss/oxide-linux-arm-gnueabihf", - "data": { - "version": "4.2.2", - "packageName": "@tailwindcss/oxide-linux-arm-gnueabihf", - "hash": "sha512-FPdhvsW6g06T9BWT0qTwiVZYE2WIFo2dY5aCSpjG/S/u1tby+wXoslXS0kl3/KXnULlLr1E3NPRRw0g7t2kgaQ==" - } - }, - "npm:@tailwindcss/oxide-linux-arm64-gnu": { - "type": "npm", - "name": "npm:@tailwindcss/oxide-linux-arm64-gnu", - "data": { - "version": "4.2.2", - "packageName": "@tailwindcss/oxide-linux-arm64-gnu", - "hash": "sha512-4og1V+ftEPXGttOO7eCmW7VICmzzJWgMx+QXAJRAhjrSjumCwWqMfkDrNu1LXEQzNAwz28NCUpucgQPrR4S2yw==" - } - }, - "npm:@tailwindcss/oxide-linux-arm64-musl": { - "type": "npm", - "name": "npm:@tailwindcss/oxide-linux-arm64-musl", - "data": { - "version": "4.2.2", - "packageName": "@tailwindcss/oxide-linux-arm64-musl", - "hash": "sha512-oCfG/mS+/+XRlwNjnsNLVwnMWYH7tn/kYPsNPh+JSOMlnt93mYNCKHYzylRhI51X+TbR+ufNhhKKzm6QkqX8ag==" - } - }, - "npm:@tailwindcss/oxide-linux-x64-gnu": { - "type": "npm", - "name": "npm:@tailwindcss/oxide-linux-x64-gnu", - "data": { - "version": "4.2.2", - "packageName": "@tailwindcss/oxide-linux-x64-gnu", - "hash": "sha512-rTAGAkDgqbXHNp/xW0iugLVmX62wOp2PoE39BTCGKjv3Iocf6AFbRP/wZT/kuCxC9QBh9Pu8XPkv/zCZB2mcMg==" - } - }, - "npm:@tailwindcss/oxide-linux-x64-musl": { - "type": "npm", - "name": "npm:@tailwindcss/oxide-linux-x64-musl", - "data": { - "version": "4.2.2", - "packageName": "@tailwindcss/oxide-linux-x64-musl", - "hash": "sha512-XW3t3qwbIwiSyRCggeO2zxe3KWaEbM0/kW9e8+0XpBgyKU4ATYzcVSMKteZJ1iukJ3HgHBjbg9P5YPRCVUxlnQ==" - } - }, - "npm:@tailwindcss/oxide-wasm32-wasi": { - "type": "npm", - "name": "npm:@tailwindcss/oxide-wasm32-wasi", - "data": { - "version": "4.2.2", - "packageName": "@tailwindcss/oxide-wasm32-wasi", - "hash": "sha512-eKSztKsmEsn1O5lJ4ZAfyn41NfG7vzCg496YiGtMDV86jz1q/irhms5O0VrY6ZwTUkFy/EKG3RfWgxSI3VbZ8Q==" - } - }, - "npm:@tailwindcss/oxide-win32-arm64-msvc": { - "type": "npm", - "name": "npm:@tailwindcss/oxide-win32-arm64-msvc", - "data": { - "version": "4.2.2", - "packageName": "@tailwindcss/oxide-win32-arm64-msvc", - "hash": "sha512-qPmaQM4iKu5mxpsrWZMOZRgZv1tOZpUm+zdhhQP0VhJfyGGO3aUKdbh3gDZc/dPLQwW4eSqWGrrcWNBZWUWaXQ==" - } - }, - "npm:@tailwindcss/oxide-win32-x64-msvc": { - "type": "npm", - "name": "npm:@tailwindcss/oxide-win32-x64-msvc", - "data": { - "version": "4.2.2", - "packageName": "@tailwindcss/oxide-win32-x64-msvc", - "hash": "sha512-1T/37VvI7WyH66b+vqHj/cLwnCxt7Qt3WFu5Q8hk65aOvlwAhs7rAp1VkulBJw/N4tMirXjVnylTR72uI0HGcA==" - } - }, - "npm:@tailwindcss/oxide": { - "type": "npm", - "name": "npm:@tailwindcss/oxide", - "data": { - "version": "4.2.2", - "packageName": "@tailwindcss/oxide", - "hash": "sha512-qEUA07+E5kehxYp9BVMpq9E8vnJuBHfJEC0vPC5e7iL/hw7HR61aDKoVoKzrG+QKp56vhNZe4qwkRmMC0zDLvg==" - } - }, - "npm:@tailwindcss/vite": { - "type": "npm", - "name": "npm:@tailwindcss/vite", - "data": { - "version": "4.2.2", - "packageName": "@tailwindcss/vite", - "hash": "sha512-mEiF5HO1QqCLXoNEfXVA1Tzo+cYsrqV7w9Juj2wdUFyW07JRenqMG225MvPwr3ZD9N1bFQj46X7r33iHxLUW0w==" - } - }, - "npm:@tootallnate/quickjs-emscripten": { - "type": "npm", - "name": "npm:@tootallnate/quickjs-emscripten", - "data": { - "version": "0.23.0", - "packageName": "@tootallnate/quickjs-emscripten", - "hash": "sha512-C5Mc6rdnsaJDjO3UpGW/CQTHtCKaYlScZTly4JIu97Jxo/odCiH0ITnDXSJPTOrEKk/ycSZ0AOgTmkDtkOsvIA==" - } - }, - "npm:@trpc/client": { - "type": "npm", - "name": "npm:@trpc/client", - "data": { - "version": "11.14.1", - "packageName": "@trpc/client", - "hash": "sha512-zjIq7JGm50/hIfo7/WR2BQEyngB0SDVlHJi9J3o5cLrOhUAxArYC6F8xpch1a1vatsN9rkayc6hJ3OXHDUOWow==" - } - }, - "npm:@trpc/server": { - "type": "npm", - "name": "npm:@trpc/server", - "data": { - "version": "11.14.1", - "packageName": "@trpc/server", - "hash": "sha512-5sl9cpbrFm1mnDW0/SoOSQBNmwj+cal/JDUNLmLBp1thPvsbN7UerTZjeyLu0BCNxG/FKhnF12BgqYY8SEtCWw==" - } - }, - "npm:@trysound/sax": { - "type": "npm", - "name": "npm:@trysound/sax", - "data": { - "version": "0.2.0", - "packageName": "@trysound/sax", - "hash": "sha512-L7z9BgrNEcYyUYtF+HaEfiS5ebkh9jXqbszz7pC0hRBPaatV0XjSD3+eHrpqFemQfgwiFF0QPIarnIihIDn7OA==" - } - }, - "npm:@ts-morph/common": { - "type": "npm", - "name": "npm:@ts-morph/common", - "data": { - "version": "0.27.0", - "packageName": "@ts-morph/common", - "hash": "sha512-Wf29UqxWDpc+i61k3oIOzcUfQt79PIT9y/MWfAGlrkjg6lBC1hwDECLXPVJAhWjiGbfBCxZd65F/LIZF3+jeJQ==" - } - }, - "npm:@ts-rest/core": { - "type": "npm", - "name": "npm:@ts-rest/core", - "data": { - "version": "3.52.1", - "packageName": "@ts-rest/core", - "hash": "sha512-tAjz7Kxq/grJodcTA1Anop4AVRDlD40fkksEV5Mmal88VoZeRKAG8oMHsDwdwPZz+B/zgnz0q2sF+cm5M7Bc7g==" - } - }, - "npm:@ts-rest/serverless": { - "type": "npm", - "name": "npm:@ts-rest/serverless", - "data": { - "version": "3.52.1", - "packageName": "@ts-rest/serverless", - "hash": "sha512-9lz6SVC/zOjR7Q70Uige1i4fgSLS5cPpei/ocBgdwhc/TJhKWTMQog2IQX3pT2nIA4B4QvZ54YyrBkSiwbrGPw==" - } - }, - "npm:@turbo/darwin-64": { - "type": "npm", - "name": "npm:@turbo/darwin-64", - "data": { - "version": "2.8.20", - "packageName": "@turbo/darwin-64", - "hash": "sha512-FQ9EX1xMU5nbwjxXxM3yU88AQQ6Sqc6S44exPRroMcx9XZHqqppl5ymJF0Ig/z3nvQNwDmz1Gsnvxubo+nXWjQ==" - } - }, - "npm:@turbo/darwin-arm64": { - "type": "npm", - "name": "npm:@turbo/darwin-arm64", - "data": { - "version": "2.8.20", - "packageName": "@turbo/darwin-arm64", - "hash": "sha512-Gpyh9ATFGThD6/s9L95YWY54cizg/VRWl2B67h0yofG8BpHf67DFAh9nuJVKG7bY0+SBJDAo5cMur+wOl9YOYw==" - } - }, - "npm:@turbo/linux-64": { - "type": "npm", - "name": "npm:@turbo/linux-64", - "data": { - "version": "2.8.20", - "packageName": "@turbo/linux-64", - "hash": "sha512-p2QxWUYyYUgUFG0b0kR+pPi8t7c9uaVlRtjTTI1AbCvVqkpjUfCcReBn6DgG/Hu8xrWdKLuyQFaLYFzQskZbcA==" - } - }, - "npm:@turbo/linux-arm64": { - "type": "npm", - "name": "npm:@turbo/linux-arm64", - "data": { - "version": "2.8.20", - "packageName": "@turbo/linux-arm64", - "hash": "sha512-Gn5yjlZGLRZWarLWqdQzv0wMqyBNIdq1QLi48F1oY5Lo9kiohuf7BPQWtWxeNVS2NgJ1+nb/DzK1JduYC4AWOA==" - } - }, - "npm:@turbo/windows-64": { - "type": "npm", - "name": "npm:@turbo/windows-64", - "data": { - "version": "2.8.20", - "packageName": "@turbo/windows-64", - "hash": "sha512-vyaDpYk/8T6Qz5V/X+ihKvKFEZFUoC0oxYpC1sZanK6gaESJlmV3cMRT3Qhcg4D2VxvtC2Jjs9IRkrZGL+exLw==" - } - }, - "npm:@turbo/windows-arm64": { - "type": "npm", - "name": "npm:@turbo/windows-arm64", - "data": { - "version": "2.8.20", - "packageName": "@turbo/windows-arm64", - "hash": "sha512-voicVULvUV5yaGXo0Iue13BcHGYW3u0VgqSbfQwBaHbpj1zLjYV4KIe+7fYIo6DO8FVUJzxFps3ODCQG/Wy2Qw==" - } - }, - "npm:@tybys/wasm-util@0.10.1": { - "type": "npm", - "name": "npm:@tybys/wasm-util@0.10.1", - "data": { - "version": "0.10.1", - "packageName": "@tybys/wasm-util", - "hash": "sha512-9tTaPJLSiejZKx+Bmog4uSubteqTvFrVrURwkmHixBo0G4seD0zUxp98E1DzUBJxLQ3NPwXrGKDiVjwx/DpPsg==" - } - }, - "npm:@tybys/wasm-util": { - "type": "npm", - "name": "npm:@tybys/wasm-util", - "data": { - "version": "0.9.0", - "packageName": "@tybys/wasm-util", - "hash": "sha512-6+7nlbMVX/PVDCwaIQ8nTOPveOcFLSt8GcXdx8hD0bt39uWxYT88uXzqTd4fTvqta7oeUJqudepapKNt2DYJFw==" - } - }, - "npm:@types/aws-lambda": { - "type": "npm", - "name": "npm:@types/aws-lambda", - "data": { - "version": "8.10.161", - "packageName": "@types/aws-lambda", - "hash": "sha512-rUYdp+MQwSFocxIOcSsYSF3YYYC/uUpMbCY/mbO21vGqfrEYvNSoPyKYDj6RhXXpPfS0KstW9RwG3qXh9sL7FQ==" - } - }, - "npm:@types/babel__core": { - "type": "npm", - "name": "npm:@types/babel__core", - "data": { - "version": "7.20.5", - "packageName": "@types/babel__core", - "hash": "sha512-qoQprZvz5wQFJwMDqeseRXWv3rqMvhgpbXFfVyWhbx9X47POIA6i/+dXefEmZKoAgOaTdaIgNSMqMIU61yRyzA==" - } - }, - "npm:@types/babel__generator": { - "type": "npm", - "name": "npm:@types/babel__generator", - "data": { - "version": "7.27.0", - "packageName": "@types/babel__generator", - "hash": "sha512-ufFd2Xi92OAVPYsy+P4n7/U7e68fex0+Ee8gSG9KX7eo084CWiQ4sdxktvdl0bOPupXtVJPY19zk6EwWqUQ8lg==" - } - }, - "npm:@types/babel__template": { - "type": "npm", - "name": "npm:@types/babel__template", - "data": { - "version": "7.4.4", - "packageName": "@types/babel__template", - "hash": "sha512-h/NUaSyG5EyxBIp8YRxo4RMe2/qQgvyowRwVMzhYhBCONbW8PUsg4lkFMrhgZhUe5z3L3MiLDuvyJ/CaPa2A8A==" - } - }, - "npm:@types/babel__traverse": { - "type": "npm", - "name": "npm:@types/babel__traverse", - "data": { - "version": "7.28.0", - "packageName": "@types/babel__traverse", - "hash": "sha512-8PvcXf70gTDZBgt9ptxJ8elBeBjcLOAcOtoO/mPJjtji1+CdGbHgm77om1GrsPxsiE+uXIpNSK64UYaIwQXd4Q==" - } - }, - "npm:@types/better-sqlite3": { - "type": "npm", - "name": "npm:@types/better-sqlite3", - "data": { - "version": "7.6.13", - "packageName": "@types/better-sqlite3", - "hash": "sha512-NMv9ASNARoKksWtsq/SHakpYAYnhBrQgGD8zkLYk/jaK8jUGn08CfEdTRgYhMypUQAfzSP8W6gNLe0q19/t4VA==" - } - }, - "npm:@types/body-parser": { - "type": "npm", - "name": "npm:@types/body-parser", - "data": { - "version": "1.19.6", - "packageName": "@types/body-parser", - "hash": "sha512-HLFeCYgz89uk22N5Qg3dvGvsv46B8GLvKKo1zKG4NybA8U2DiEO3w9lqGg29t/tfLRJpJ6iQxnVw4OnB7MoM9g==" - } - }, - "npm:@types/cacheable-request": { - "type": "npm", - "name": "npm:@types/cacheable-request", - "data": { - "version": "6.0.3", - "packageName": "@types/cacheable-request", - "hash": "sha512-IQ3EbTzGxIigb1I3qPZc1rWJnH0BmSKv5QYTalEwweFvyBDLSAe24zP0le/hyi7ecGfZVlIVAg4BZqb8WBwKqw==" - } - }, - "npm:@types/chai": { - "type": "npm", - "name": "npm:@types/chai", - "data": { - "version": "5.2.2", - "packageName": "@types/chai", - "hash": "sha512-8kB30R7Hwqf40JPiKhVzodJs2Qc1ZJ5zuT3uzw5Hq/dhNCl3G3l83jfpdI1e20BP348+fV7VIL/+FxaXkqBmWg==" - } - }, - "npm:@types/connect": { - "type": "npm", - "name": "npm:@types/connect", - "data": { - "version": "3.4.38", - "packageName": "@types/connect", - "hash": "sha512-K6uROf1LD88uDQqJCktA4yzL1YYAK6NgfsI0v/mTgyPKWsX1CnJ0XPSDhViejru1GcRkLWb8RlzFYJRqGUbaug==" - } - }, - "npm:@types/debug": { - "type": "npm", - "name": "npm:@types/debug", - "data": { - "version": "4.1.12", - "packageName": "@types/debug", - "hash": "sha512-vIChWdVG3LG1SMxEvI/AK+FWJthlrqlTu7fbrlywTkkaONwk/UAGaULXRlf8vkzFBLVm0zkMdCquhL5aOjhXPQ==" - } - }, - "npm:@types/deep-eql": { - "type": "npm", - "name": "npm:@types/deep-eql", - "data": { - "version": "4.0.2", - "packageName": "@types/deep-eql", - "hash": "sha512-c9h9dVVMigMPc4bwTvC5dxqtqJZwQPePsWjPlpSOnojbor6pGqdk541lfA7AqFQr5pB1BRdq0juY9db81BwyFw==" - } - }, - "npm:@types/eslint": { - "type": "npm", - "name": "npm:@types/eslint", - "data": { - "version": "9.6.1", - "packageName": "@types/eslint", - "hash": "sha512-FXx2pKgId/WyYo2jXw63kk7/+TY7u7AziEJxJAnSFzHlqTAS3Ync6SvgYAN/k4/PQpnnVuzoMuVnByKK2qp0ag==" - } - }, - "npm:@types/estree": { - "type": "npm", - "name": "npm:@types/estree", - "data": { - "version": "1.0.8", - "packageName": "@types/estree", - "hash": "sha512-dWHzHa2WqEXI/O1E9OjrocMTKJl2mSrEolh1Iomrv6U+JuNwaHXsXx9bLu5gG7BUWFIN0skIQJQ/L1rIex4X6w==" - } - }, - "npm:@types/express-serve-static-core": { - "type": "npm", - "name": "npm:@types/express-serve-static-core", - "data": { - "version": "5.1.0", - "packageName": "@types/express-serve-static-core", - "hash": "sha512-jnHMsrd0Mwa9Cf4IdOzbz543y4XJepXrbia2T4b6+spXC2We3t1y6K44D3mR8XMFSXMCf3/l7rCgddfx7UNVBA==" - } - }, - "npm:@types/express": { - "type": "npm", - "name": "npm:@types/express", - "data": { - "version": "5.0.6", - "packageName": "@types/express", - "hash": "sha512-sKYVuV7Sv9fbPIt/442koC7+IIwK5olP1KWeD88e/idgoJqDm3JV/YUiPwkoKK92ylff2MGxSz1CSjsXelx0YA==" - } - }, - "npm:@types/http-cache-semantics": { - "type": "npm", - "name": "npm:@types/http-cache-semantics", - "data": { - "version": "4.0.4", - "packageName": "@types/http-cache-semantics", - "hash": "sha512-1m0bIFVc7eJWyve9S0RnuRgcQqF/Xd5QsUZAZeQFr1Q3/p9JWoQQEqmVy+DPTNpGXwhgIetAoYF8JSc33q29QA==" - } - }, - "npm:@types/http-errors": { - "type": "npm", - "name": "npm:@types/http-errors", - "data": { - "version": "2.0.5", - "packageName": "@types/http-errors", - "hash": "sha512-r8Tayk8HJnX0FztbZN7oVqGccWgw98T/0neJphO91KkmOzug1KkofZURD4UaD5uH8AqcFLfdPErnBod0u71/qg==" - } - }, - "npm:@types/jsesc": { - "type": "npm", - "name": "npm:@types/jsesc", - "data": { - "version": "2.5.1", - "packageName": "@types/jsesc", - "hash": "sha512-9VN+6yxLOPLOav+7PwjZbxiID2bVaeq0ED4qSQmdQTdjnXJSaCVKTR58t15oqH1H5t8Ng2ZX1SabJVoN9Q34bw==" - } - }, - "npm:@types/json-schema": { - "type": "npm", - "name": "npm:@types/json-schema", - "data": { - "version": "7.0.15", - "packageName": "@types/json-schema", - "hash": "sha512-5+fP8P8MFNC+AyZCDxrB2pkZFPGzqQWUzpSeuuVLvm8VMcorNYavBqoFcxK8bQz4Qsbn4oUEEem4wDLfcysGHA==" - } - }, - "npm:@types/keyv": { - "type": "npm", - "name": "npm:@types/keyv", - "data": { - "version": "3.1.4", - "packageName": "@types/keyv", - "hash": "sha512-BQ5aZNSCpj7D6K2ksrRCTmKRLEpnPvWDiLPfoGyhZ++8YtiK9d/3DBKPJgry359X/P1PfruyYwvnvwFjuEiEIg==" - } - }, - "npm:@types/mdast": { - "type": "npm", - "name": "npm:@types/mdast", - "data": { - "version": "4.0.4", - "packageName": "@types/mdast", - "hash": "sha512-kGaNbPh1k7AFzgpud/gMdvIm5xuECykRR+JnWKQno9TAXVa6WIVCGTPvYGekIDL4uwCZQSYbUxNBSb1aUo79oA==" - } - }, - "npm:@types/ms": { - "type": "npm", - "name": "npm:@types/ms", - "data": { - "version": "2.1.0", - "packageName": "@types/ms", - "hash": "sha512-GsCCIZDE/p3i96vtEqx+7dBUGXrc7zeSK3wwPHIaRThS+9OhWIXRqzs4d6k1SVU8g91DrNRWxWUGhp5KXQb2VA==" - } - }, - "npm:@types/node": { - "type": "npm", - "name": "npm:@types/node", - "data": { - "version": "20.19.37", - "packageName": "@types/node", - "hash": "sha512-8kzdPJ3FsNsVIurqBs7oodNnCEVbni9yUEkaHbgptDACOPW04jimGagZ51E6+lXUwJjgnBw+hyko/lkFWCldqw==" - } - }, - "npm:@types/qs": { - "type": "npm", - "name": "npm:@types/qs", - "data": { - "version": "6.14.0", - "packageName": "@types/qs", - "hash": "sha512-eOunJqu0K1923aExK6y8p6fsihYEn/BYuQ4g0CxAAgFc4b/ZLN4CrsRZ55srTdqoiLzU2B2evC+apEIxprEzkQ==" - } - }, - "npm:@types/range-parser": { - "type": "npm", - "name": "npm:@types/range-parser", - "data": { - "version": "1.2.7", - "packageName": "@types/range-parser", - "hash": "sha512-hKormJbkJqzQGhziax5PItDUTMAM9uE2XXQmM37dyd4hVM+5aVl7oVxMVUiVQn2oCQFN/LKCZdvSM0pFRqbSmQ==" - } - }, - "npm:@types/react-dom": { - "type": "npm", - "name": "npm:@types/react-dom", - "data": { - "version": "19.2.3", - "packageName": "@types/react-dom", - "hash": "sha512-jp2L/eY6fn+KgVVQAOqYItbF0VY/YApe5Mz2F0aykSO8gx31bYCZyvSeYxCHKvzHG5eZjc+zyaS5BrBWya2+kQ==" - } - }, - "npm:@types/react": { - "type": "npm", - "name": "npm:@types/react", - "data": { - "version": "19.2.14", - "packageName": "@types/react", - "hash": "sha512-ilcTH/UniCkMdtexkoCN0bI7pMcJDvmQFPvuPvmEaYA/NSfFTAgdUSLAoVjaRJm7+6PvcM+q1zYOwS4wTYMF9w==" - } - }, - "npm:@types/responselike": { - "type": "npm", - "name": "npm:@types/responselike", - "data": { - "version": "1.0.3", - "packageName": "@types/responselike", - "hash": "sha512-H/+L+UkTV33uf49PH5pCAUBVPNj2nDBXTN+qS1dOwyyg24l3CcicicCA7ca+HMvJBZcFgl5r8e+RR6elsb4Lyw==" - } - }, - "npm:@types/retry": { - "type": "npm", - "name": "npm:@types/retry", - "data": { - "version": "0.12.0", - "packageName": "@types/retry", - "hash": "sha512-wWKOClTTiizcZhXnPY4wikVAwmdYHp8q6DmC+EJUzAMsycb7HB32Kh9RN4+0gExjmPmZSAQjgURXIGATPegAvA==" - } - }, - "npm:@types/send": { - "type": "npm", - "name": "npm:@types/send", - "data": { - "version": "1.2.0", - "packageName": "@types/send", - "hash": "sha512-zBF6vZJn1IaMpg3xUF25VK3gd3l8zwE0ZLRX7dsQyQi+jp4E8mMDJNGDYnYse+bQhYwWERTxVwHpi3dMOq7RKQ==" - } - }, - "npm:@types/serve-static": { - "type": "npm", - "name": "npm:@types/serve-static", - "data": { - "version": "2.2.0", - "packageName": "@types/serve-static", - "hash": "sha512-8mam4H1NHLtu7nmtalF7eyBH14QyOASmcxHhSfEoRyr0nP/YdoesEtU+uSRvMe96TW/HPTtkoKqQLl53N7UXMQ==" - } - }, - "npm:@types/ungap__structured-clone": { - "type": "npm", - "name": "npm:@types/ungap__structured-clone", - "data": { - "version": "1.2.0", - "packageName": "@types/ungap__structured-clone", - "hash": "sha512-ZoaihZNLeZSxESbk9PUAPZOlSpcKx81I1+4emtULDVmBLkYutTcMlCj2K9VNlf9EWODxdO6gkAqEaLorXwZQVA==" - } - }, - "npm:@types/unist": { - "type": "npm", - "name": "npm:@types/unist", - "data": { - "version": "2.0.11", - "packageName": "@types/unist", - "hash": "sha512-CmBKiL6NNo/OqgmMn95Fk9Whlp2mtvIv+KNpQKN2F4SjvrEesubTRWGYSg+BnWZOnlCaSTU1sMpsBOzgbYhnsA==" - } - }, - "npm:@types/unist@3.0.3": { - "type": "npm", - "name": "npm:@types/unist@3.0.3", - "data": { - "version": "3.0.3", - "packageName": "@types/unist", - "hash": "sha512-ko/gIFJRv177XgZsZcBwnqJN5x/Gien8qNOn0D5bQU/zAzVf9Zt3BlcUiLqhV9y4ARk0GbT3tnUiPNgnTXzc/Q==" - } - }, - "npm:@types/which": { - "type": "npm", - "name": "npm:@types/which", - "data": { - "version": "3.0.4", - "packageName": "@types/which", - "hash": "sha512-liyfuo/106JdlgSchJzXEQCVArk0CvevqPote8F8HgWgJ3dRCcTHgJIsLDuee0kxk/mhbInzIZk3QWSZJ8R+2w==" - } - }, - "npm:@types/yauzl": { - "type": "npm", - "name": "npm:@types/yauzl", - "data": { - "version": "2.10.3", - "packageName": "@types/yauzl", - "hash": "sha512-oJoftv0LSuaDZE3Le4DbKX+KS9G36NzOeSap90UIK0yMA/NhKJhqlSGtNDORNRaIbQfzjXDrQa0ytJ6mNRGz/Q==" - } - }, - "npm:@typescript-eslint/eslint-plugin": { - "type": "npm", - "name": "npm:@typescript-eslint/eslint-plugin", - "data": { - "version": "8.57.1", - "packageName": "@typescript-eslint/eslint-plugin", - "hash": "sha512-Gn3aqnvNl4NGc6x3/Bqk1AOn0thyTU9bqDRhiRnUWezgvr2OnhYCWCgC8zXXRVqBsIL1pSDt7T9nJUe0oM0kDQ==" - } - }, - "npm:@typescript-eslint/parser": { - "type": "npm", - "name": "npm:@typescript-eslint/parser", - "data": { - "version": "8.57.1", - "packageName": "@typescript-eslint/parser", - "hash": "sha512-k4eNDan0EIMTT/dUKc/g+rsJ6wcHYhNPdY19VoX/EOtaAG8DLtKCykhrUnuHPYvinn5jhAPgD2Qw9hXBwrahsw==" - } - }, - "npm:@typescript-eslint/project-service": { - "type": "npm", - "name": "npm:@typescript-eslint/project-service", - "data": { - "version": "8.57.1", - "packageName": "@typescript-eslint/project-service", - "hash": "sha512-vx1F37BRO1OftsYlmG9xay1TqnjNVlqALymwWVuYTdo18XuKxtBpCj1QlzNIEHlvlB27osvXFWptYiEWsVdYsg==" - } - }, - "npm:@typescript-eslint/scope-manager": { - "type": "npm", - "name": "npm:@typescript-eslint/scope-manager", - "data": { - "version": "8.57.1", - "packageName": "@typescript-eslint/scope-manager", - "hash": "sha512-hs/QcpCwlwT2L5S+3fT6gp0PabyGk4Q0Rv2doJXA0435/OpnSR3VRgvrp8Xdoc3UAYSg9cyUjTeFXZEPg/3OKg==" - } - }, - "npm:@typescript-eslint/tsconfig-utils": { - "type": "npm", - "name": "npm:@typescript-eslint/tsconfig-utils", - "data": { - "version": "8.57.1", - "packageName": "@typescript-eslint/tsconfig-utils", - "hash": "sha512-0lgOZB8cl19fHO4eI46YUx2EceQqhgkPSuCGLlGi79L2jwYY1cxeYc1Nae8Aw1xjgW3PKVDLlr3YJ6Bxx8HkWg==" - } - }, - "npm:@typescript-eslint/type-utils": { - "type": "npm", - "name": "npm:@typescript-eslint/type-utils", - "data": { - "version": "8.57.1", - "packageName": "@typescript-eslint/type-utils", - "hash": "sha512-+Bwwm0ScukFdyoJsh2u6pp4S9ktegF98pYUU0hkphOOqdMB+1sNQhIz8y5E9+4pOioZijrkfNO/HUJVAFFfPKA==" - } - }, - "npm:@typescript-eslint/types": { - "type": "npm", - "name": "npm:@typescript-eslint/types", - "data": { - "version": "8.57.1", - "packageName": "@typescript-eslint/types", - "hash": "sha512-S29BOBPJSFUiblEl6RzPPjJt6w25A6XsBqRVDt53tA/tlL8q7ceQNZHTjPeONt/3S7KRI4quk+yP9jK2WjBiPQ==" - } - }, - "npm:@typescript-eslint/typescript-estree": { - "type": "npm", - "name": "npm:@typescript-eslint/typescript-estree", - "data": { - "version": "8.57.1", - "packageName": "@typescript-eslint/typescript-estree", - "hash": "sha512-ybe2hS9G6pXpqGtPli9Gx9quNV0TWLOmh58ADlmZe9DguLq0tiAKVjirSbtM1szG6+QH6rVXyU6GTLQbWnMY+g==" - } - }, - "npm:@typescript-eslint/utils": { - "type": "npm", - "name": "npm:@typescript-eslint/utils", - "data": { - "version": "8.57.1", - "packageName": "@typescript-eslint/utils", - "hash": "sha512-XUNSJ/lEVFttPMMoDVA2r2bwrl8/oPx8cURtczkSEswY5T3AeLmCy+EKWQNdL4u0MmAHOjcWrqJp2cdvgjn8dQ==" - } - }, - "npm:@typescript-eslint/visitor-keys": { - "type": "npm", - "name": "npm:@typescript-eslint/visitor-keys", - "data": { - "version": "8.57.1", - "packageName": "@typescript-eslint/visitor-keys", - "hash": "sha512-YWnmJkXbofiz9KbnbbwuA2rpGkFPLbAIetcCNO6mJ8gdhdZ/v7WDXsoGFAJuM6ikUFKTlSQnjWnVO4ux+UzS6A==" - } - }, - "npm:@ungap/structured-clone": { - "type": "npm", - "name": "npm:@ungap/structured-clone", - "data": { - "version": "1.3.0", - "packageName": "@ungap/structured-clone", - "hash": "sha512-WmoN8qaIAo7WTYWbAZuG8PYEhn5fkz7dZrqTBZ7dtt//lL2Gwms1IcnQ5yHqjDfX8Ft5j4YzDM23f87zBfDe9g==" - } - }, - "npm:@universal-middleware/cloudflare": { - "type": "npm", - "name": "npm:@universal-middleware/cloudflare", - "data": { - "version": "0.4.10", - "packageName": "@universal-middleware/cloudflare", - "hash": "sha512-ZY+N0KKoH+H+BB3wsaD5yqTiiFtX7uklPyCBqGLqEijOtZA5ZgFIExfWDjiIUjezUBAbRB8kUZ/WlPITY+hyTg==" - } - }, - "npm:@universal-middleware/compress": { - "type": "npm", - "name": "npm:@universal-middleware/compress", - "data": { - "version": "0.2.35", - "packageName": "@universal-middleware/compress", - "hash": "sha512-uLwwPtGLlK6KCYG5SksLdifOFhx6O10hArtz7PaD2hbqRE+IiWa1zntDCtKIkOHhA8Upz2koIbScyRpY/z/a3w==" - } - }, - "npm:@universal-middleware/core": { - "type": "npm", - "name": "npm:@universal-middleware/core", - "data": { - "version": "0.4.17", - "packageName": "@universal-middleware/core", - "hash": "sha512-q+/nXW9DQ94RtmlghC57DhwEvjrqxX57EtU40iaM3U+eYTKc+FVnEdlpdrYX8kCAdEU7zVBLBlFgJre+VrXoUg==" - } - }, - "npm:@universal-middleware/express": { - "type": "npm", - "name": "npm:@universal-middleware/express", - "data": { - "version": "0.4.22", - "packageName": "@universal-middleware/express", - "hash": "sha512-4aIrnK52NJmYKokZnwpWja/vT2m/HoZ8zxQyYLdokkSQdx0B1k1VsmYGeWENvpDQBgLjnfyvDzyaxch6Tib/hA==" - } - }, - "npm:@universal-middleware/fastify": { - "type": "npm", - "name": "npm:@universal-middleware/fastify", - "data": { - "version": "0.5.22", - "packageName": "@universal-middleware/fastify", - "hash": "sha512-6axgXhhi69V4RHh6DjUxRmWnRN8U9cW/Ro/1lB0weTe4Y07pI/9603XGcg9iNltbqEhjRvK+Jch3WwwIfVdIBg==" - } - }, - "npm:@universal-middleware/h3": { - "type": "npm", - "name": "npm:@universal-middleware/h3", - "data": { - "version": "0.4.15", - "packageName": "@universal-middleware/h3", - "hash": "sha512-IdoQ9cHSQEh7R1MtUppstuOrKLo//6hFv1AdVx0fyqCOELk0+rGH63VJ2MjnA26/xqysqrbjkiNQilBucAyfxw==" - } - }, - "npm:@universal-middleware/hono": { - "type": "npm", - "name": "npm:@universal-middleware/hono", - "data": { - "version": "0.4.18", - "packageName": "@universal-middleware/hono", - "hash": "sha512-RpnX8hKh2zx7hwVYzI32DjvH7KBYpt7MLIHWYw9QBSEzpD1ErqL+SpkvvlJaINjFs+sYJKH5IOoL53uHCL5alw==" - } - }, - "npm:@universal-middleware/sirv": { - "type": "npm", - "name": "npm:@universal-middleware/sirv", - "data": { - "version": "0.1.25", - "packageName": "@universal-middleware/sirv", - "hash": "sha512-yjOJE/PmEFfTPYOpwXzZyGnDRZOvDphMrsNLaNkdNVlCBFnTLEGIJP9WnsOKNr65iyqFkMXzXvmyZd65RlN8yg==" - } - }, - "npm:@universal-middleware/srvx": { - "type": "npm", - "name": "npm:@universal-middleware/srvx", - "data": { - "version": "0.1.1", - "packageName": "@universal-middleware/srvx", - "hash": "sha512-nTy4BZvaEI+rFO8sWEVvZrZWwFuqEXlXPNvIBAfl16+nKcorwiwm1x+qzuDrSqLd/kr5LSsGR3/KenTvESS9dQ==" - } - }, - "npm:@universal-middleware/vercel": { - "type": "npm", - "name": "npm:@universal-middleware/vercel", - "data": { - "version": "0.4.29", - "packageName": "@universal-middleware/vercel", - "hash": "sha512-w/2/cPat0MnKAI6w5I8OTYZSGCOLRe/yAGsPqfUyQtubuSpOpXnv/ELwC6iXO6EIoZcI9kCkO/Eucjuv55V6Xw==" - } - }, - "npm:@vercel/build-utils": { - "type": "npm", - "name": "npm:@vercel/build-utils", - "data": { - "version": "13.2.4", - "packageName": "@vercel/build-utils", - "hash": "sha512-12m+8Z+wsxJUoWZ+JQqRk8v1O0ioJhGYWz+yStW8abuzfNz75QW2rRcbn0hSHuF8c7b3D2papmMdh94kSSYQEw==" - } - }, - "npm:@vercel/nft@0.30.4": { - "type": "npm", - "name": "npm:@vercel/nft@0.30.4", - "data": { - "version": "0.30.4", - "packageName": "@vercel/nft", - "hash": "sha512-wE6eAGSXScra60N2l6jWvNtVK0m+sh873CpfZW4KI2v8EHuUQp+mSEi4T+IcdPCSEDgCdAS/7bizbhQlkjzrSA==" - } - }, - "npm:@vercel/nft": { - "type": "npm", - "name": "npm:@vercel/nft", - "data": { - "version": "1.1.1", - "packageName": "@vercel/nft", - "hash": "sha512-mKMGa7CEUcXU75474kOeqHbtvK1kAcu4wiahhmlUenB5JbTQB8wVlDI8CyHR3rpGo0qlzoRWqcDzI41FUoBJCA==" - } - }, - "npm:@vercel/routing-utils": { - "type": "npm", - "name": "npm:@vercel/routing-utils", - "data": { - "version": "5.3.1", - "packageName": "@vercel/routing-utils", - "hash": "sha512-HlqFRdB6Dm20xgEWtEatchf9X28NifweXPdDoEGyj5ItngaiqpywtkgkuiAk3xK9eAu2oXM36wEJbDDTxMblUg==" - } - }, - "npm:@vikejs/biome-config": { - "type": "npm", - "name": "npm:@vikejs/biome-config", - "data": { - "version": "2.0.1", - "packageName": "@vikejs/biome-config", - "hash": "sha512-kqVIZSWS7WCwTJYSzPnrhq3k+OdsOD67BM+lYtOaxkmoMfmtjz00ckGvFO8PxF8GJGeKTu7S/+pL6YmxC/Ht3Q==" - } - }, - "npm:@vite-plugin-vercel/schemas": { - "type": "npm", - "name": "npm:@vite-plugin-vercel/schemas", - "data": { - "version": "1.1.0", - "packageName": "@vite-plugin-vercel/schemas", - "hash": "sha512-Vl7r+Itu7oS2/Ypo0wyPOB87AHdoU4EsmDNkSjTeKc7wl9xxHafCMd2Uc9qLOcX0tlDtcwJkjvB4A//ObqL8/w==" - } - }, - "npm:@vitejs/plugin-react": { - "type": "npm", - "name": "npm:@vitejs/plugin-react", - "data": { - "version": "6.0.1", - "packageName": "@vitejs/plugin-react", - "hash": "sha512-l9X/E3cDb+xY3SWzlG1MOGt2usfEHGMNIaegaUGFsLkb3RCn/k8/TOXBcab+OndDI4TBtktT8/9BwwW8Vi9KUQ==" - } - }, - "npm:@vitejs/plugin-vue": { - "type": "npm", - "name": "npm:@vitejs/plugin-vue", - "data": { - "version": "6.0.5", - "packageName": "@vitejs/plugin-vue", - "hash": "sha512-bL3AxKuQySfk1iGcBsQnoRVexTPJq0Z/ixFVM8OhVJAP6ZXXXLtM7NFKWhLl30Kg7uTBqIaPXbh+nuQCuBDedg==" - } - }, - "npm:@vitest/expect": { - "type": "npm", - "name": "npm:@vitest/expect", - "data": { - "version": "4.1.0", - "packageName": "@vitest/expect", - "hash": "sha512-EIxG7k4wlWweuCLG9Y5InKFwpMEOyrMb6ZJ1ihYu02LVj/bzUwn2VMU+13PinsjRW75XnITeFrQBMH5+dLvCDA==" - } - }, - "npm:@vitest/mocker": { - "type": "npm", - "name": "npm:@vitest/mocker", - "data": { - "version": "4.1.0", - "packageName": "@vitest/mocker", - "hash": "sha512-evxREh+Hork43+Y4IOhTo+h5lGmVRyjqI739Rz4RlUPqwrkFFDF6EMvOOYjTx4E8Tl6gyCLRL8Mu7Ry12a13Tw==" - } - }, - "npm:@vitest/pretty-format": { - "type": "npm", - "name": "npm:@vitest/pretty-format", - "data": { - "version": "4.1.0", - "packageName": "@vitest/pretty-format", - "hash": "sha512-3RZLZlh88Ib0J7NQTRATfc/3ZPOnSUn2uDBUoGNn5T36+bALixmzphN26OUD3LRXWkJu4H0s5vvUeqBiw+kS0A==" - } - }, - "npm:@vitest/runner": { - "type": "npm", - "name": "npm:@vitest/runner", - "data": { - "version": "4.1.0", - "packageName": "@vitest/runner", - "hash": "sha512-Duvx2OzQ7d6OjchL+trw+aSrb9idh7pnNfxrklo14p3zmNL4qPCDeIJAK+eBKYjkIwG96Bc6vYuxhqDXQOWpoQ==" - } - }, - "npm:@vitest/snapshot": { - "type": "npm", - "name": "npm:@vitest/snapshot", - "data": { - "version": "4.1.0", - "packageName": "@vitest/snapshot", - "hash": "sha512-0Vy9euT1kgsnj1CHttwi9i9o+4rRLEaPRSOJ5gyv579GJkNpgJK+B4HSv/rAWixx2wdAFci1X4CEPjiu2bXIMg==" - } - }, - "npm:@vitest/spy": { - "type": "npm", - "name": "npm:@vitest/spy", - "data": { - "version": "4.1.0", - "packageName": "@vitest/spy", - "hash": "sha512-pz77k+PgNpyMDv2FV6qmk5ZVau6c3R8HC8v342T2xlFxQKTrSeYw9waIJG8KgV9fFwAtTu4ceRzMivPTH6wSxw==" - } - }, - "npm:@vitest/utils": { - "type": "npm", - "name": "npm:@vitest/utils", - "data": { - "version": "4.1.0", - "packageName": "@vitest/utils", - "hash": "sha512-XfPXT6a8TZY3dcGY8EdwsBulFCIw+BeeX0RZn2x/BtiY/75YGh8FeWGG8QISN/WhaqSrE2OrlDgtF8q5uhOTmw==" - } - }, - "npm:@vue/compiler-core": { - "type": "npm", - "name": "npm:@vue/compiler-core", - "data": { - "version": "3.5.30", - "packageName": "@vue/compiler-core", - "hash": "sha512-s3DfdZkcu/qExZ+td75015ljzHc6vE+30cFMGRPROYjqkroYI5NV2X1yAMX9UeyBNWB9MxCfPcsjpLS11nzkkw==" - } - }, - "npm:@vue/compiler-dom": { - "type": "npm", - "name": "npm:@vue/compiler-dom", - "data": { - "version": "3.5.30", - "packageName": "@vue/compiler-dom", - "hash": "sha512-eCFYESUEVYHhiMuK4SQTldO3RYxyMR/UQL4KdGD1Yrkfdx4m/HYuZ9jSfPdA+nWJY34VWndiYdW/wZXyiPEB9g==" - } - }, - "npm:@vue/compiler-sfc": { - "type": "npm", - "name": "npm:@vue/compiler-sfc", - "data": { - "version": "3.5.30", - "packageName": "@vue/compiler-sfc", - "hash": "sha512-LqmFPDn89dtU9vI3wHJnwaV6GfTRD87AjWpTWpyrdVOObVtjIuSeZr181z5C4PmVx/V3j2p+0f7edFKGRMpQ5A==" - } - }, - "npm:@vue/compiler-ssr": { - "type": "npm", - "name": "npm:@vue/compiler-ssr", - "data": { - "version": "3.5.30", - "packageName": "@vue/compiler-ssr", - "hash": "sha512-NsYK6OMTnx109PSL2IAyf62JP6EUdk4Dmj6AkWcJGBvN0dQoMYtVekAmdqgTtWQgEJo+Okstbf/1p7qZr5H+bA==" - } - }, - "npm:@vue/reactivity": { - "type": "npm", - "name": "npm:@vue/reactivity", - "data": { - "version": "3.5.30", - "packageName": "@vue/reactivity", - "hash": "sha512-179YNgKATuwj9gB+66snskRDOitDiuOZqkYia7mHKJaidOMo/WJxHKF8DuGc4V4XbYTJANlfEKb0yxTQotnx4Q==" - } - }, - "npm:@vue/runtime-core": { - "type": "npm", - "name": "npm:@vue/runtime-core", - "data": { - "version": "3.5.30", - "packageName": "@vue/runtime-core", - "hash": "sha512-e0Z+8PQsUTdwV8TtEsLzUM7SzC7lQwYKePydb7K2ZnmS6jjND+WJXkmmfh/swYzRyfP1EY3fpdesyYoymCzYfg==" - } - }, - "npm:@vue/runtime-dom": { - "type": "npm", - "name": "npm:@vue/runtime-dom", - "data": { - "version": "3.5.30", - "packageName": "@vue/runtime-dom", - "hash": "sha512-2UIGakjU4WSQ0T4iwDEW0W7vQj6n7AFn7taqZ9Cvm0Q/RA2FFOziLESrDL4GmtI1wV3jXg5nMoJSYO66egDUBw==" - } - }, - "npm:@vue/server-renderer": { - "type": "npm", - "name": "npm:@vue/server-renderer", - "data": { - "version": "3.5.30", - "packageName": "@vue/server-renderer", - "hash": "sha512-v+R34icapydRwbZRD0sXwtHqrQJv38JuMB4JxbOxd8NEpGLny7cncMp53W9UH/zo4j8eDHjQ1dEJXwzFQknjtQ==" - } - }, - "npm:@vue/shared": { - "type": "npm", - "name": "npm:@vue/shared", - "data": { - "version": "3.5.30", - "packageName": "@vue/shared", - "hash": "sha512-YXgQ7JjaO18NeK2K9VTbDHaFy62WrObMa6XERNfNOkAhD1F1oDSf3ZJ7K6GqabZ0BvSDHajp8qfS5Sa2I9n8uQ==" - } - }, - "npm:@yarnpkg/lockfile": { - "type": "npm", - "name": "npm:@yarnpkg/lockfile", - "data": { - "version": "1.1.0", - "packageName": "@yarnpkg/lockfile", - "hash": "sha512-GpSwvyXOcOOlV70vbnzjj4fW5xW/FdUF6nQEt1ENy7m4ZCczi1+/buVUPAqmGfqznsORNFzUMjctTIp8a9tuCQ==" - } - }, - "npm:@yarnpkg/parsers": { - "type": "npm", - "name": "npm:@yarnpkg/parsers", - "data": { - "version": "3.0.2", - "packageName": "@yarnpkg/parsers", - "hash": "sha512-/HcYgtUSiJiot/XWGLOlGxPYUG65+/31V8oqk17vZLW1xlCoR4PampyePljOxY2n8/3jz9+tIFzICsyGujJZoA==" - } - }, - "npm:@zkochan/js-yaml": { - "type": "npm", - "name": "npm:@zkochan/js-yaml", - "data": { - "version": "0.0.7", - "packageName": "@zkochan/js-yaml", - "hash": "sha512-nrUSn7hzt7J6JWgWGz78ZYI8wj+gdIJdk0Ynjpp8l+trkn58Uqsf6RYrYkEK+3X18EX+TNdtJI0WxAtc+L84SQ==" - } - }, - "npm:abbrev": { - "type": "npm", - "name": "npm:abbrev", - "data": { - "version": "3.0.1", - "packageName": "abbrev", - "hash": "sha512-AO2ac6pjRB3SJmGJo+v5/aK6Omggp6fsLrs6wN9bd35ulu4cCwaAU9+7ZhXjeqHVkaHThLuzH0nZr0YpCDhygg==" - } - }, - "npm:abstract-logging": { - "type": "npm", - "name": "npm:abstract-logging", - "data": { - "version": "2.0.1", - "packageName": "abstract-logging", - "hash": "sha512-2BjRTZxTPvheOvGbBslFSYOUkr+SjPtOnrLP33f+VIWLzezQpZcqVg7ja3L4dBXmzzgwT+a029jRx5PCi3JuiA==" - } - }, - "npm:accepts": { - "type": "npm", - "name": "npm:accepts", - "data": { - "version": "2.0.0", - "packageName": "accepts", - "hash": "sha512-5cvg6CtKwfgdmVqY1WIiXKc3Q1bkRqGLi+2W/6ao+6Y7gu/RCwRuAhGEzh5B4KlszSuTLgZYuqFqo5bImjNKng==" - } - }, - "npm:acorn-import-attributes": { - "type": "npm", - "name": "npm:acorn-import-attributes", - "data": { - "version": "1.9.5", - "packageName": "acorn-import-attributes", - "hash": "sha512-n02Vykv5uA3eHGM/Z2dQrcD56kL8TyDb2p1+0P83PClMnC/nc+anbQRhIOWnSq4Ke/KvDPrY3C9hDtC/A3eHnQ==" - } - }, - "npm:acorn-jsx": { - "type": "npm", - "name": "npm:acorn-jsx", - "data": { - "version": "5.3.2", - "packageName": "acorn-jsx", - "hash": "sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==" - } - }, - "npm:acorn-walk": { - "type": "npm", - "name": "npm:acorn-walk", - "data": { - "version": "8.3.2", - "packageName": "acorn-walk", - "hash": "sha512-cjkyv4OtNCIeqhHrfS81QWXoCBPExR/J62oyEqepVw8WaQeSqpW2uhuLPh1m9eWhDuOo/jUXVTlifvesOWp/4A==" - } - }, - "npm:acorn@8.14.0": { - "type": "npm", - "name": "npm:acorn@8.14.0", - "data": { - "version": "8.14.0", - "packageName": "acorn", - "hash": "sha512-cl669nCJTZBsL97OF4kUQm5g5hC2uihk0NxY3WENAC0TYdILVkAyHymAntgxGkl7K+t0cXIrH5siy5S4XkFycA==" - } - }, - "npm:acorn": { - "type": "npm", - "name": "npm:acorn", - "data": { - "version": "8.16.0", - "packageName": "acorn", - "hash": "sha512-UVJyE9MttOsBQIDKw1skb9nAwQuR5wuGD3+82K6JgJlm/Y+KI92oNsMNGZCYdDsVtRHSak0pcV5Dno5+4jh9sw==" - } - }, - "npm:agent-base@6.0.2": { - "type": "npm", - "name": "npm:agent-base@6.0.2", - "data": { - "version": "6.0.2", - "packageName": "agent-base", - "hash": "sha512-RZNwNclF7+MS/8bDg70amg32dyeZGZxiDuQmZxKLAlQjr3jGyLx+4Kkk58UO7D2QdgFIQCovuSuZESne6RG6XQ==" - } - }, - "npm:agent-base": { - "type": "npm", - "name": "npm:agent-base", - "data": { - "version": "7.1.4", - "packageName": "agent-base", - "hash": "sha512-MnA+YT8fwfJPgBx3m60MNqakm30XOkyIoH1y6huTQvC0PwZG7ki8NacLBcrPbNoo8vEZy7Jpuk7+jMO+CUovTQ==" - } - }, - "npm:ajv-formats": { - "type": "npm", - "name": "npm:ajv-formats", - "data": { - "version": "3.0.1", - "packageName": "ajv-formats", - "hash": "sha512-8iUql50EUR+uUcdRQ3HDqa6EVyo3docL8g5WJ3FNcWmu62IbkGUue/pEyLBW8VGKKucTPgqeks4fIU1DA4yowQ==" - } - }, - "npm:ajv": { - "type": "npm", - "name": "npm:ajv", - "data": { - "version": "6.14.0", - "packageName": "ajv", - "hash": "sha512-IWrosm/yrn43eiKqkfkHis7QioDleaXQHdDVPKg0FSwwd/DuvyX79TZnFOnYpB7dcsFAMmtFztZuXPDvSePkFw==" - } - }, - "npm:ajv@8.18.0": { - "type": "npm", - "name": "npm:ajv@8.18.0", - "data": { - "version": "8.18.0", - "packageName": "ajv", - "hash": "sha512-PlXPeEWMXMZ7sPYOHqmDyCJzcfNrUr3fGNKtezX14ykXOEIvyK81d+qydx89KY5O71FKMPaQ2vBfBFI5NHR63A==" - } - }, - "npm:ansi-colors": { - "type": "npm", - "name": "npm:ansi-colors", - "data": { - "version": "4.1.3", - "packageName": "ansi-colors", - "hash": "sha512-/6w/C21Pm1A7aZitlI5Ni/2J6FFQN8i1Cvz3kHABAAbw93v/NlvKdVOqz7CCWz/3iv/JplRSEEZ83XION15ovw==" - } - }, - "npm:ansi-regex@5.0.1": { - "type": "npm", - "name": "npm:ansi-regex@5.0.1", - "data": { - "version": "5.0.1", - "packageName": "ansi-regex", - "hash": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==" - } - }, - "npm:ansi-regex": { - "type": "npm", - "name": "npm:ansi-regex", - "data": { - "version": "6.2.2", - "packageName": "ansi-regex", - "hash": "sha512-Bq3SmSpyFHaWjPk8If9yc6svM8c56dB5BAtW4Qbw5jHTwwXXcTLoRMkpDJp6VL0XzlWaCHTXrkFURMYmD0sLqg==" - } - }, - "npm:ansi-styles@4.3.0": { - "type": "npm", - "name": "npm:ansi-styles@4.3.0", - "data": { - "version": "4.3.0", - "packageName": "ansi-styles", - "hash": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==" - } - }, - "npm:ansi-styles@5.2.0": { - "type": "npm", - "name": "npm:ansi-styles@5.2.0", - "data": { - "version": "5.2.0", - "packageName": "ansi-styles", - "hash": "sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA==" - } - }, - "npm:ansi-styles": { - "type": "npm", - "name": "npm:ansi-styles", - "data": { - "version": "6.2.3", - "packageName": "ansi-styles", - "hash": "sha512-4Dj6M28JB+oAH8kFkTLUo+a2jwOFkuqb3yucU0CANcRRUbxS0cP0nZYCGjcc3BNXwRIsUVmDGgzawme7zvJHvg==" - } - }, - "npm:ansis": { - "type": "npm", - "name": "npm:ansis", - "data": { - "version": "4.2.0", - "packageName": "ansis", - "hash": "sha512-HqZ5rWlFjGiV0tDm3UxxgNRqsOTniqoKZu0pIAfh7TZQMGuZK+hH0drySty0si0QXj1ieop4+SkSfPZBPPkHig==" - } - }, - "npm:argparse@1.0.10": { - "type": "npm", - "name": "npm:argparse@1.0.10", - "data": { - "version": "1.0.10", - "packageName": "argparse", - "hash": "sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==" - } - }, - "npm:argparse": { - "type": "npm", - "name": "npm:argparse", - "data": { - "version": "2.0.1", - "packageName": "argparse", - "hash": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==" - } - }, - "npm:args-tokenizer": { - "type": "npm", - "name": "npm:args-tokenizer", - "data": { - "version": "0.3.0", - "packageName": "args-tokenizer", - "hash": "sha512-xXAd7G2Mll5W8uo37GETpQ2VrE84M181Z7ugHFGQnJZ50M2mbOv0osSZ9VsSgPfJQ+LVG0prSi0th+ELMsno7Q==" - } - }, - "npm:array-buffer-byte-length": { - "type": "npm", - "name": "npm:array-buffer-byte-length", - "data": { - "version": "1.0.2", - "packageName": "array-buffer-byte-length", - "hash": "sha512-LHE+8BuR7RYGDKvnrmcuSq3tDcKv9OFEXQt/HpbZhY7V6h0zlUXutnAD82GiFx9rdieCMjkvtcsPqBwgUl1Iiw==" - } - }, - "npm:array-includes": { - "type": "npm", - "name": "npm:array-includes", - "data": { - "version": "3.1.9", - "packageName": "array-includes", - "hash": "sha512-FmeCCAenzH0KH381SPT5FZmiA/TmpndpcaShhfgEN9eCVjnFBqq3l1xrI42y8+PPLI6hypzou4GXw00WHmPBLQ==" - } - }, - "npm:array.prototype.findlast": { - "type": "npm", - "name": "npm:array.prototype.findlast", - "data": { - "version": "1.2.5", - "packageName": "array.prototype.findlast", - "hash": "sha512-CVvd6FHg1Z3POpBLxO6E6zr+rSKEQ9L6rZHAaY7lLfhKsWYUBBOuMs0e9o24oopj6H+geRCX0YJ+TJLBK2eHyQ==" - } - }, - "npm:array.prototype.flat": { - "type": "npm", - "name": "npm:array.prototype.flat", - "data": { - "version": "1.3.3", - "packageName": "array.prototype.flat", - "hash": "sha512-rwG/ja1neyLqCuGZ5YYrznA62D4mZXg0i1cIskIUKSiqF3Cje9/wXAls9B9s1Wa2fomMsIv8czB8jZcPmxCXFg==" - } - }, - "npm:array.prototype.flatmap": { - "type": "npm", - "name": "npm:array.prototype.flatmap", - "data": { - "version": "1.3.3", - "packageName": "array.prototype.flatmap", - "hash": "sha512-Y7Wt51eKJSyi80hFrJCePGGNo5ktJCslFuboqJsbf57CCPcm5zztluPlc4/aD8sWsKvlwatezpV4U1efk8kpjg==" - } - }, - "npm:array.prototype.tosorted": { - "type": "npm", - "name": "npm:array.prototype.tosorted", - "data": { - "version": "1.1.4", - "packageName": "array.prototype.tosorted", - "hash": "sha512-p6Fx8B7b7ZhL/gmUsAy0D15WhvDccw3mnGNbZpi3pmeJdxtWsj2jEaI4Y6oo3XiHfzuSgPwKc04MYt6KgvC/wA==" - } - }, - "npm:arraybuffer.prototype.slice": { - "type": "npm", - "name": "npm:arraybuffer.prototype.slice", - "data": { - "version": "1.0.4", - "packageName": "arraybuffer.prototype.slice", - "hash": "sha512-BNoCY6SXXPQ7gF2opIP4GBE+Xw7U+pHMYKuzjgCN3GwiaIR09UUeKfheyIry77QtrCBlC0KK0q5/TER/tYh3PQ==" - } - }, - "npm:ast-kit": { - "type": "npm", - "name": "npm:ast-kit", - "data": { - "version": "3.0.0-beta.1", - "packageName": "ast-kit", - "hash": "sha512-trmleAnZ2PxN/loHWVhhx1qeOHSRXq4TDsBBxq3GqeJitfk3+jTQ+v/C1km/KYq9M7wKqCewMh+/NAvVH7m+bw==" - } - }, - "npm:ast-types": { - "type": "npm", - "name": "npm:ast-types", - "data": { - "version": "0.13.4", - "packageName": "ast-types", - "hash": "sha512-x1FCFnFifvYDDzTaLII71vG5uvDwgtmDTEVWAxrgeiR8VjMONcCXJx7E+USjDtHlwFmt9MysbqgF9b9Vjr6w+w==" - } - }, - "npm:async-function": { - "type": "npm", - "name": "npm:async-function", - "data": { - "version": "1.0.0", - "packageName": "async-function", - "hash": "sha512-hsU18Ae8CDTR6Kgu9DYf0EbCr/a5iGL0rytQDobUcdpYOKokk8LEjVphnXkDkgpi0wYVsqrXuP0bZxJaTqdgoA==" - } - }, - "npm:async-sema": { - "type": "npm", - "name": "npm:async-sema", - "data": { - "version": "3.1.1", - "packageName": "async-sema", - "hash": "sha512-tLRNUXati5MFePdAk8dw7Qt7DpxPB60ofAgn8WRhW6a2rcimZnYBP9oxHiv0OHy+Wz7kPMG+t4LGdt31+4EmGg==" - } - }, - "npm:async": { - "type": "npm", - "name": "npm:async", - "data": { - "version": "3.2.6", - "packageName": "async", - "hash": "sha512-htCUDlxyyCLMgaM3xXg0C0LW2xqfuQ6p05pCEIsXuyQ+a1koYKTuBMzRNwmybfLgvJDMd0r1LTn4+E0Ti6C2AA==" - } - }, - "npm:asynckit": { - "type": "npm", - "name": "npm:asynckit", - "data": { - "version": "0.4.0", - "packageName": "asynckit", - "hash": "sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q==" - } - }, - "npm:atomic-sleep": { - "type": "npm", - "name": "npm:atomic-sleep", - "data": { - "version": "1.0.0", - "packageName": "atomic-sleep", - "hash": "sha512-kNOjDqAh7px0XWNI+4QbzoiR/nTkHAWNud2uvnJquD1/x5a7EQZMJT0AczqK0Qn67oY/TTQ1LbUKajZpp3I9tQ==" - } - }, - "npm:attributes-parser": { - "type": "npm", - "name": "npm:attributes-parser", - "data": { - "version": "2.2.3", - "packageName": "attributes-parser", - "hash": "sha512-zjOUWt95la8AdUO+kP1GBOonWrV5jy9NjJP+z9tva/DSA6FIzGKcN/gk3tdqQf/pOeB8dkyd3FCPrjhELMmrkg==" - } - }, - "npm:automad-prism-themes": { - "type": "npm", - "name": "npm:automad-prism-themes", - "data": { - "version": "0.3.7", - "packageName": "automad-prism-themes", - "hash": "sha512-iTe1K6OCNJqilDapONlBQrbmQZO1u7JiJbEAJxfWUs0rGYxwyvpFmEiQ1TgZ0CmhYAYRtM1/ZT6GXbPeyw/XPg==" - } - }, - "npm:autoprefixer": { - "type": "npm", - "name": "npm:autoprefixer", - "data": { - "version": "10.4.27", - "packageName": "autoprefixer", - "hash": "sha512-NP9APE+tO+LuJGn7/9+cohklunJsXWiaWEfV3si4Gi/XHDwVNgkwr1J3RQYFIvPy76GmJ9/bW8vyoU1LcxwKHA==" - } - }, - "npm:available-typed-arrays": { - "type": "npm", - "name": "npm:available-typed-arrays", - "data": { - "version": "1.0.7", - "packageName": "available-typed-arrays", - "hash": "sha512-wvUjBtSGN7+7SjNpq/9M2Tg350UZD3q62IFZLbRAR1bSMlCo1ZaeW+BJ+D090e4hIIZLBcTDWe4Mh4jvUDajzQ==" - } - }, - "npm:avvio": { - "type": "npm", - "name": "npm:avvio", - "data": { - "version": "9.2.0", - "packageName": "avvio", - "hash": "sha512-2t/sy01ArdHHE0vRH5Hsay+RtCZt3dLPji7W7/MMOCEgze5b7SNDC4j5H6FnVgPkI1MTNFGzHdHrVXDDl7QSSQ==" - } - }, - "npm:aws-cdk-lib": { - "type": "npm", - "name": "npm:aws-cdk-lib", - "data": { - "version": "2.244.0", - "packageName": "aws-cdk-lib", - "hash": "sha512-j5FVeZv5W+v6j6OnW8RjoN04T+8pYvDJJV7yXhhj4IiGDKPgMH3fflQLQXJousd2QQk+nSAjghDVJcrZ4GFyGA==" - } - }, - "npm:aws-cdk": { - "type": "npm", - "name": "npm:aws-cdk", - "data": { - "version": "2.1112.0", - "packageName": "aws-cdk", - "hash": "sha512-IYUbsd9tpBQRqEO2evWsG+p2ZNa6wG5/sJvmWaqo45V1ep8BW+mrf+jEpFLD9uDPXqRA57EZGVGils7QLbOhNA==" - } - }, - "npm:aws-ssl-profiles": { - "type": "npm", - "name": "npm:aws-ssl-profiles", - "data": { - "version": "1.1.2", - "packageName": "aws-ssl-profiles", - "hash": "sha512-NZKeq9AfyQvEeNlN0zSYAaWrmBffJh3IELMZfRpJVWgrpEbtEpnjvzqBPf+mxoI287JohRDoa+/nsfqqiZmF6g==" - } - }, - "npm:axios": { - "type": "npm", - "name": "npm:axios", - "data": { - "version": "1.13.6", - "packageName": "axios", - "hash": "sha512-ChTCHMouEe2kn713WHbQGcuYrr6fXTBiu460OTwWrWob16g1bXn4vtz07Ope7ewMozJAnEquLk5lWQWtBig9DQ==" - } - }, - "npm:b4a": { - "type": "npm", - "name": "npm:b4a", - "data": { - "version": "1.7.3", - "packageName": "b4a", - "hash": "sha512-5Q2mfq2WfGuFp3uS//0s6baOJLMoVduPYVeNmDYxu5OUA1/cBfvr2RIS7vi62LdNj/urk1hfmj867I3qt6uZ7Q==" - } - }, - "npm:babel-plugin-jsx-dom-expressions": { - "type": "npm", - "name": "npm:babel-plugin-jsx-dom-expressions", - "data": { - "version": "0.40.3", - "packageName": "babel-plugin-jsx-dom-expressions", - "hash": "sha512-5HOwwt0BYiv/zxl7j8Pf2bGL6rDXfV6nUhLs8ygBX+EFJXzBPHM/euj9j/6deMZ6wa52Wb2PBaAV5U/jKwIY1w==" - } - }, - "npm:babel-plugin-module-resolver": { - "type": "npm", - "name": "npm:babel-plugin-module-resolver", - "data": { - "version": "5.0.2", - "packageName": "babel-plugin-module-resolver", - "hash": "sha512-9KtaCazHee2xc0ibfqsDeamwDps6FZNo5S0Q81dUqEuFzVwPhcT4J5jOqIVvgCA3Q/wO9hKYxN/Ds3tIsp5ygg==" - } - }, - "npm:babel-preset-solid": { - "type": "npm", - "name": "npm:babel-preset-solid", - "data": { - "version": "1.9.10", - "packageName": "babel-preset-solid", - "hash": "sha512-HCelrgua/Y+kqO8RyL04JBWS/cVdrtUv/h45GntgQY+cJl4eBcKkCDV3TdMjtKx1nXwRaR9QXslM/Npm1dxdZQ==" - } - }, - "npm:balanced-match": { - "type": "npm", - "name": "npm:balanced-match", - "data": { - "version": "1.0.2", - "packageName": "balanced-match", - "hash": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==" - } - }, - "npm:balanced-match@4.0.2": { - "type": "npm", - "name": "npm:balanced-match@4.0.2", - "data": { - "version": "4.0.2", - "packageName": "balanced-match", - "hash": "sha512-x0K50QvKQ97fdEz2kPehIerj+YTeptKF9hyYkKf6egnwmMWAkADiO0QCzSp0R5xN8FTZgYaBfSaue46Ej62nMg==" - } - }, - "npm:bare-events": { - "type": "npm", - "name": "npm:bare-events", - "data": { - "version": "2.8.0", - "packageName": "bare-events", - "hash": "sha512-AOhh6Bg5QmFIXdViHbMc2tLDsBIRxdkIaIddPslJF9Z5De3APBScuqGP2uThXnIpqFrgoxMNC6km7uXNIMLHXA==" - } - }, - "npm:bare-fs": { - "type": "npm", - "name": "npm:bare-fs", - "data": { - "version": "4.4.11", - "packageName": "bare-fs", - "hash": "sha512-Bejmm9zRMvMTRoHS+2adgmXw1ANZnCNx+B5dgZpGwlP1E3x6Yuxea8RToddHUbWtVV0iUMWqsgZr8+jcgUI2SA==" - } - }, - "npm:bare-os": { - "type": "npm", - "name": "npm:bare-os", - "data": { - "version": "3.6.2", - "packageName": "bare-os", - "hash": "sha512-T+V1+1srU2qYNBmJCXZkUY5vQ0B4FSlL3QDROnKQYOqeiQR8UbjNHlPa+TIbM4cuidiN9GaTaOZgSEgsvPbh5A==" - } - }, - "npm:bare-path": { - "type": "npm", - "name": "npm:bare-path", - "data": { - "version": "3.0.0", - "packageName": "bare-path", - "hash": "sha512-tyfW2cQcB5NN8Saijrhqn0Zh7AnFNsnczRcuWODH0eYAXBsJ5gVxAUuNr7tsHSC6IZ77cA0SitzT+s47kot8Mw==" - } - }, - "npm:bare-stream": { - "type": "npm", - "name": "npm:bare-stream", - "data": { - "version": "2.7.0", - "packageName": "bare-stream", - "hash": "sha512-oyXQNicV1y8nc2aKffH+BUHFRXmx6VrPzlnaEvMhram0nPBrKcEdcyBg5r08D0i8VxngHFAiVyn1QKXpSG0B8A==" - } - }, - "npm:bare-url": { - "type": "npm", - "name": "npm:bare-url", - "data": { - "version": "2.3.0", - "packageName": "bare-url", - "hash": "sha512-c+RCqMSZbkz97Mw1LWR0gcOqwK82oyYKfLoHJ8k13ybi1+I80ffdDzUy0TdAburdrR/kI0/VuN8YgEnJqX+Nyw==" - } - }, - "npm:base64-js": { - "type": "npm", - "name": "npm:base64-js", - "data": { - "version": "1.5.1", - "packageName": "base64-js", - "hash": "sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==" - } - }, - "npm:baseline-browser-mapping": { - "type": "npm", - "name": "npm:baseline-browser-mapping", - "data": { - "version": "2.9.7", - "packageName": "baseline-browser-mapping", - "hash": "sha512-k9xFKplee6KIio3IDbwj+uaCLpqzOwakOgmqzPezM0sFJlFKcg30vk2wOiAJtkTSfx0SSQDSe8q+mWA/fSH5Zg==" - } - }, - "npm:basic-auth": { - "type": "npm", - "name": "npm:basic-auth", - "data": { - "version": "2.0.1", - "packageName": "basic-auth", - "hash": "sha512-NF+epuEdnUYVlGuhaxbbq+dvJttwLnGY+YixlXlME5KpQ5W3CnXA5cVTneY3SPbPDRkcjMbifrwmFYcClgOZeg==" - } - }, - "npm:basic-ftp": { - "type": "npm", - "name": "npm:basic-ftp", - "data": { - "version": "5.0.5", - "packageName": "basic-ftp", - "hash": "sha512-4Bcg1P8xhUuqcii/S0Z9wiHIrQVPMermM1any+MX5GeGD7faD3/msQUDGLol9wOcz4/jbg/WJnGqoJF6LiBdtg==" - } - }, - "npm:better-sqlite3": { - "type": "npm", - "name": "npm:better-sqlite3", - "data": { - "version": "12.8.0", - "packageName": "better-sqlite3", - "hash": "sha512-RxD2Vd96sQDjQr20kdP+F+dK/1OUNiVOl200vKBZY8u0vTwysfolF6Hq+3ZK2+h8My9YvZhHsF+RSGZW2VYrPQ==" - } - }, - "npm:bindings": { - "type": "npm", - "name": "npm:bindings", - "data": { - "version": "1.5.0", - "packageName": "bindings", - "hash": "sha512-p2q/t/mhvuOj/UeLlV6566GD/guowlr0hHxClI0W9m7MWYkL1F0hLo+0Aexs9HSPCtR1SXQ0TD3MMKrXZajbiQ==" - } - }, - "npm:birpc": { - "type": "npm", - "name": "npm:birpc", - "data": { - "version": "4.0.0", - "packageName": "birpc", - "hash": "sha512-LShSxJP0KTmd101b6DRyGBj57LZxSDYWKitQNW/mi8GRMvZb078Uf9+pveax1DrVL89vm7mWe+TovdI/UDOuPw==" - } - }, - "npm:bl": { - "type": "npm", - "name": "npm:bl", - "data": { - "version": "4.1.0", - "packageName": "bl", - "hash": "sha512-1W07cM9gS6DcLperZfFSj+bWLtaPGSOHWhPiGzXmvVJbRLdG82sH/Kn8EtW1VqWVA54AKf2h5k5BbnIbwF3h6w==" - } - }, - "npm:blake3-wasm": { - "type": "npm", - "name": "npm:blake3-wasm", - "data": { - "version": "2.1.5", - "packageName": "blake3-wasm", - "hash": "sha512-F1+K8EbfOZE49dtoPtmxUQrpXaBIl3ICvasLh+nJta0xkz+9kF/7uet9fLnwKqhDrmj6g+6K3Tw9yQPUg2ka5g==" - } - }, - "npm:body-parser": { - "type": "npm", - "name": "npm:body-parser", - "data": { - "version": "2.2.1", - "packageName": "body-parser", - "hash": "sha512-nfDwkulwiZYQIGwxdy0RUmowMhKcFVcYXUU7m4QlKYim1rUtg83xm2yjZ40QjDuc291AJjjeSc9b++AWHSgSHw==" - } - }, - "npm:boolbase": { - "type": "npm", - "name": "npm:boolbase", - "data": { - "version": "1.0.0", - "packageName": "boolbase", - "hash": "sha512-JZOSA7Mo9sNGB8+UjSgzdLtokWAky1zbztM3WRLCbZ70/3cTANmQmOdR7y2g+J0e2WXywy1yS468tY+IruqEww==" - } - }, - "npm:brace-expansion@1.1.12": { - "type": "npm", - "name": "npm:brace-expansion@1.1.12", - "data": { - "version": "1.1.12", - "packageName": "brace-expansion", - "hash": "sha512-9T9UjW3r0UW5c1Q7GTwllptXwhvYmEzFhzMfZ9H7FQWt+uZePjZPjBP/W1ZEyZ1twGWom5/56TF4lPcqjnDHcg==" - } - }, - "npm:brace-expansion@2.0.2": { - "type": "npm", - "name": "npm:brace-expansion@2.0.2", - "data": { - "version": "2.0.2", - "packageName": "brace-expansion", - "hash": "sha512-Jt0vHyM+jmUBqojB7E1NIYadt0vI0Qxjxd2TErW94wDz+E2LAm5vKMXXwg6ZZBTHPuUlDgQHKXvjGBdfcF1ZDQ==" - } - }, - "npm:brace-expansion": { - "type": "npm", - "name": "npm:brace-expansion", - "data": { - "version": "5.0.2", - "packageName": "brace-expansion", - "hash": "sha512-Pdk8c9poy+YhOgVWw1JNN22/HcivgKWwpxKq04M/jTmHyCZn12WPJebZxdjSa5TmBqISrUSgNYU3eRORljfCCw==" - } - }, - "npm:braces": { - "type": "npm", - "name": "npm:braces", - "data": { - "version": "3.0.3", - "packageName": "braces", - "hash": "sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA==" - } - }, - "npm:browserless": { - "type": "npm", - "name": "npm:browserless", - "data": { - "version": "10.12.5", - "packageName": "browserless", - "hash": "sha512-7FZIdkSDYfIIcLyGOnqVYwLURVArQzhZQ5KrLXJFb9Hnc0Hfg11LI3Rak7K6WD6PGw45SzeJRxPc7np3bSLWnw==" - } - }, - "npm:browserslist": { - "type": "npm", - "name": "npm:browserslist", - "data": { - "version": "4.28.1", - "packageName": "browserslist", - "hash": "sha512-ZC5Bd0LgJXgwGqUknZY/vkUQ04r8NXnJZ3yYi4vDmSiZmC/pdSN0NbNRPxZpbtO4uAfDUAFffO8IZoM3Gj8IkA==" - } - }, - "npm:buffer-crc32": { - "type": "npm", - "name": "npm:buffer-crc32", - "data": { - "version": "0.2.13", - "packageName": "buffer-crc32", - "hash": "sha512-VO9Ht/+p3SN7SKWqcrgEzjGbRSJYTx+Q1pTQC0wrWqHx0vpJraQ6GtHx8tvcg1rlK1byhU5gccxgOgj7B0TDkQ==" - } - }, - "npm:buffer-from": { - "type": "npm", - "name": "npm:buffer-from", - "data": { - "version": "1.1.2", - "packageName": "buffer-from", - "hash": "sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ==" - } - }, - "npm:buffer": { - "type": "npm", - "name": "npm:buffer", - "data": { - "version": "5.7.1", - "packageName": "buffer", - "hash": "sha512-EHcyIPBQ4BSGlvjB16k5KgAJ27CIsHY/2JBmCRReo48y9rQ3MaUzWX3KVlBa4U7MyX02HdVj0K7C3WaB3ju7FQ==" - } - }, - "npm:bumpp": { - "type": "npm", - "name": "npm:bumpp", - "data": { - "version": "11.0.1", - "packageName": "bumpp", - "hash": "sha512-X0ti27I/ewsx/u0EJSyl0IZWWOE95q+wIpAG/60kc5gqMNR4a23YJdd3lL7JsBN11TgLbCM4KpfGMuFfdigb4g==" - } - }, - "npm:bytes": { - "type": "npm", - "name": "npm:bytes", - "data": { - "version": "3.1.2", - "packageName": "bytes", - "hash": "sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg==" - } - }, - "npm:c12": { - "type": "npm", - "name": "npm:c12", - "data": { - "version": "3.1.0", - "packageName": "c12", - "hash": "sha512-uWoS8OU1MEIsOv8p/5a82c3H31LsWVR5qiyXVfBNOzfffjUWtPnhAb4BYI2uG2HfGmZmFjCtui5XNWaps+iFuw==" - } - }, - "npm:cac@6.7.14": { - "type": "npm", - "name": "npm:cac@6.7.14", - "data": { - "version": "6.7.14", - "packageName": "cac", - "hash": "sha512-b6Ilus+c3RrdDk+JhLKUAQfzzgLEPy6wcXqS7f/xe1EETvsDP6GORG7SFuOs6cID5YkqchW/LXZbX5bc8j7ZcQ==" - } - }, - "npm:cac": { - "type": "npm", - "name": "npm:cac", - "data": { - "version": "7.0.0", - "packageName": "cac", - "hash": "sha512-tixWYgm5ZoOD+3g6UTea91eow5z6AAHaho3g0V9CNSNb45gM8SmflpAc+GRd1InC4AqN/07Unrgp56Y94N9hJQ==" - } - }, - "npm:cacache": { - "type": "npm", - "name": "npm:cacache", - "data": { - "version": "19.0.1", - "packageName": "cacache", - "hash": "sha512-hdsUxulXCi5STId78vRVYEtDAjq99ICAUktLTeTYsLoTE6Z8dS0c8pWNCxwdrk9YfJeobDZc2Y186hD/5ZQgFQ==" - } - }, - "npm:cacheable-lookup": { - "type": "npm", - "name": "npm:cacheable-lookup", - "data": { - "version": "5.0.4", - "packageName": "cacheable-lookup", - "hash": "sha512-2/kNscPhpcxrOigMZzbiWF7dz8ilhb/nIHU3EyZiXWXpeq/au8qJ8VhdftMkty3n7Gj6HIGalQG8oiBNB3AJgA==" - } - }, - "npm:cacheable-request": { - "type": "npm", - "name": "npm:cacheable-request", - "data": { - "version": "7.0.4", - "packageName": "cacheable-request", - "hash": "sha512-v+p6ongsrp0yTGbJXjgxPow2+DL93DASP4kXCDKb8/bwRtt9OEF3whggkkDkGNzgcWy2XaF4a8nZglC7uElscg==" - } - }, - "npm:call-bind-apply-helpers": { - "type": "npm", - "name": "npm:call-bind-apply-helpers", - "data": { - "version": "1.0.2", - "packageName": "call-bind-apply-helpers", - "hash": "sha512-Sp1ablJ0ivDkSzjcaJdxEunN5/XvksFJ2sMBFfq6x0ryhQV/2b/KwFe21cMpmHtPOSij8K99/wSfoEuTObmuMQ==" - } - }, - "npm:call-bind": { - "type": "npm", - "name": "npm:call-bind", - "data": { - "version": "1.0.8", - "packageName": "call-bind", - "hash": "sha512-oKlSFMcMwpUg2ednkhQ454wfWiU/ul3CkJe/PEHcTKuiX6RpbehUiFMXu13HalGZxfUwCQzZG747YXBn1im9ww==" - } - }, - "npm:call-bound": { - "type": "npm", - "name": "npm:call-bound", - "data": { - "version": "1.0.4", - "packageName": "call-bound", - "hash": "sha512-+ys997U96po4Kx/ABpBCqhA9EuxJaQWDQg7295H4hBphv3IZg0boBKuwYpt4YXp6MZ5AmZQnU/tyMTlRpaSejg==" - } - }, - "npm:callsites": { - "type": "npm", - "name": "npm:callsites", - "data": { - "version": "3.1.0", - "packageName": "callsites", - "hash": "sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==" - } - }, - "npm:camelcase-css": { - "type": "npm", - "name": "npm:camelcase-css", - "data": { - "version": "2.0.1", - "packageName": "camelcase-css", - "hash": "sha512-QOSvevhslijgYwRx6Rv7zKdMF8lbRmx+uQGx2+vDc+KI/eBnsy9kit5aj23AgGu3pa4t9AgwbnXWqS+iOY+2aA==" - } - }, - "npm:caniuse-api": { - "type": "npm", - "name": "npm:caniuse-api", - "data": { - "version": "3.0.0", - "packageName": "caniuse-api", - "hash": "sha512-bsTwuIg/BZZK/vreVTYYbSWoe2F+71P7K5QGEX+pT250DZbfU1MQ5prOKpPR+LL6uWKK3KMwMCAS74QB3Um1uw==" - } - }, - "npm:caniuse-lite": { - "type": "npm", - "name": "npm:caniuse-lite", - "data": { - "version": "1.0.30001775", - "packageName": "caniuse-lite", - "hash": "sha512-s3Qv7Lht9zbVKE9XoTyRG6wVDCKdtOFIjBGg3+Yhn6JaytuNKPIjBMTMIY1AnOH3seL5mvF+x33oGAyK3hVt3A==" - } - }, - "npm:cdk": { - "type": "npm", - "name": "npm:cdk", - "data": { - "version": "2.1112.0", - "packageName": "cdk", - "hash": "sha512-a9asUnTapvEldOntOH7GZISwmYcr12HJas4v7183hWX0iZ8/Cb31IyPr9L5sz2tP6a9OugA45AXkjFgTCjH2+g==" - } - }, - "npm:chai": { - "type": "npm", - "name": "npm:chai", - "data": { - "version": "6.2.2", - "packageName": "chai", - "hash": "sha512-NUPRluOfOiTKBKvWPtSD4PhFvWCqOi0BGStNWs57X9js7XGTprSmFoz5F0tWhR4WPjNeR9jXqdC7/UpSJTnlRg==" - } - }, - "npm:chalk": { - "type": "npm", - "name": "npm:chalk", - "data": { - "version": "4.1.2", - "packageName": "chalk", - "hash": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==" - } - }, - "npm:character-entities": { - "type": "npm", - "name": "npm:character-entities", - "data": { - "version": "2.0.2", - "packageName": "character-entities", - "hash": "sha512-shx7oQ0Awen/BRIdkjkvz54PnEEI/EjwXDSIZp86/KKdbafHh1Df/RYGBhn4hbe2+uKC9FnT5UCEdyPz3ai9hQ==" - } - }, - "npm:chardet": { - "type": "npm", - "name": "npm:chardet", - "data": { - "version": "2.1.1", - "packageName": "chardet", - "hash": "sha512-PsezH1rqdV9VvyNhxxOW32/d75r01NY7TQCmOqomRo15ZSOKbpTFVsfjghxo6JloQUCGnH4k1LGu0R4yCLlWQQ==" - } - }, - "npm:chevrotain": { - "type": "npm", - "name": "npm:chevrotain", - "data": { - "version": "10.5.0", - "packageName": "chevrotain", - "hash": "sha512-Pkv5rBY3+CsHOYfV5g/Vs5JY9WTHHDEKOlohI2XeygaZhUeqhAlldZ8Hz9cRmxu709bvS08YzxHdTPHhffc13A==" - } - }, - "npm:chokidar": { - "type": "npm", - "name": "npm:chokidar", - "data": { - "version": "4.0.3", - "packageName": "chokidar", - "hash": "sha512-Qgzu8kfBvo+cA4962jnP1KkS6Dop5NS6g7R5LFYJr4b8Ub94PPQXUksCw9PvXoeXPRRddRNC5C1JQUR2SMGtnA==" - } - }, - "npm:chownr": { - "type": "npm", - "name": "npm:chownr", - "data": { - "version": "1.1.4", - "packageName": "chownr", - "hash": "sha512-jJ0bqzaylmJtVnNgzTeSOs8DPavpbYgEr/b0YL8/2GO3xJEhInFmhKMUnEJQjZumK7KXGFhUy89PrsJWlakBVg==" - } - }, - "npm:chownr@3.0.0": { - "type": "npm", - "name": "npm:chownr@3.0.0", - "data": { - "version": "3.0.0", - "packageName": "chownr", - "hash": "sha512-+IxzY9BZOQd/XuYPRmrvEVjF/nqj5kgT4kEq7VofrDoM1MxoRjEWkrCC3EtLi59TVawxTAn+orJwFQcrqEN1+g==" - } - }, - "npm:chromium-bidi": { - "type": "npm", - "name": "npm:chromium-bidi", - "data": { - "version": "14.0.0", - "packageName": "chromium-bidi", - "hash": "sha512-9gYlLtS6tStdRWzrtXaTMnqcM4dudNegMXJxkR0I/CXObHalYeYcAMPrL19eroNZHtJ8DQmu1E+ZNOYu/IXMXw==" - } - }, - "npm:citty@0.1.6": { - "type": "npm", - "name": "npm:citty@0.1.6", - "data": { - "version": "0.1.6", - "packageName": "citty", - "hash": "sha512-tskPPKEs8D2KPafUypv2gxwJP8h/OaJmC82QQGGDQcHvXX43xF2VDACcJVmZ0EuSxkpO9Kc4MlrA3q0+FG58AQ==" - } - }, - "npm:citty": { - "type": "npm", - "name": "npm:citty", - "data": { - "version": "0.2.1", - "packageName": "citty", - "hash": "sha512-kEV95lFBhQgtogAPlQfJJ0WGVSokvLr/UEoFPiKKOXF7pl98HfUVUD0ejsuTCld/9xH9vogSywZ5KqHzXrZpqg==" - } - }, - "npm:class-variance-authority": { - "type": "npm", - "name": "npm:class-variance-authority", - "data": { - "version": "0.7.1", - "packageName": "class-variance-authority", - "hash": "sha512-Ka+9Trutv7G8M6WT6SeiRWz792K5qEqIGEGzXKhAE6xOWAY6pPH8U+9IY3oCMv6kqTmLsv7Xh/2w2RigkePMsg==" - } - }, - "npm:cli-cursor": { - "type": "npm", - "name": "npm:cli-cursor", - "data": { - "version": "3.1.0", - "packageName": "cli-cursor", - "hash": "sha512-I/zHAwsKf9FqGoXM4WWRACob9+SNukZTd94DWF57E4toouRulbCxcUh6RKUEOQlYTHJnzkPMySvPNaaSLNfLZw==" - } - }, - "npm:cli-spinners": { - "type": "npm", - "name": "npm:cli-spinners", - "data": { - "version": "2.6.1", - "packageName": "cli-spinners", - "hash": "sha512-x/5fWmGMnbKQAaNwN+UZlV79qBLM9JFnJuJ03gIi5whrob0xV0ofNVHy9DhwGdsMJQc2OKv0oGmLzvaqvAVv+g==" - } - }, - "npm:cli-width": { - "type": "npm", - "name": "npm:cli-width", - "data": { - "version": "4.1.0", - "packageName": "cli-width", - "hash": "sha512-ouuZd4/dm2Sw5Gmqy6bGyNNNe1qt9RpmxveLSO7KcgsTnU7RXfsw+/bukWGo1abgBiMAic068rclZsO4IWmmxQ==" - } - }, - "npm:cliui": { - "type": "npm", - "name": "npm:cliui", - "data": { - "version": "8.0.1", - "packageName": "cliui", - "hash": "sha512-BSeNnyus75C4//NQ9gQt1/csTXyo/8Sb+afLAkzAptFuMsod9HFokGNudZpi/oQV73hnVK+sR+5PVRMd+Dr7YQ==" - } - }, - "npm:clone-response": { - "type": "npm", - "name": "npm:clone-response", - "data": { - "version": "1.0.3", - "packageName": "clone-response", - "hash": "sha512-ROoL94jJH2dUVML2Y/5PEDNaSHgeOdSDicUyS7izcF63G6sTc/FTjLub4b8Il9S8S0beOfYt0TaA5qvFK+w0wA==" - } - }, - "npm:clone": { - "type": "npm", - "name": "npm:clone", - "data": { - "version": "1.0.4", - "packageName": "clone", - "hash": "sha512-JQHZ2QMW6l3aH/j6xCqQThY/9OH4D/9ls34cgkUBiEeocRTU04tHfKPBsUK1PqZCUQM7GiA0IIXJSuXHI64Kbg==" - } - }, - "npm:clsx": { - "type": "npm", - "name": "npm:clsx", - "data": { - "version": "2.1.1", - "packageName": "clsx", - "hash": "sha512-eYm0QWBtUrBWZWG0d386OGAw16Z995PiOVo2B7bjWSbHedGl5e0ZWaq65kOGgUSNesEIDkB9ISbTg/JK9dhCZA==" - } - }, - "npm:code-block-writer": { - "type": "npm", - "name": "npm:code-block-writer", - "data": { - "version": "13.0.3", - "packageName": "code-block-writer", - "hash": "sha512-Oofo0pq3IKnsFtuHqSF7TqBfr71aeyZDVJ0HpmqB7FBM2qEigL0iPONSCZSO9pE9dZTAxANe5XHG9Uy0YMv8cg==" - } - }, - "npm:color-convert": { - "type": "npm", - "name": "npm:color-convert", - "data": { - "version": "2.0.1", - "packageName": "color-convert", - "hash": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==" - } - }, - "npm:color-name": { - "type": "npm", - "name": "npm:color-name", - "data": { - "version": "1.1.4", - "packageName": "color-name", - "hash": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" - } - }, - "npm:color-string": { - "type": "npm", - "name": "npm:color-string", - "data": { - "version": "1.9.1", - "packageName": "color-string", - "hash": "sha512-shrVawQFojnZv6xM40anx4CkoDP+fZsw/ZerEMsW/pyzsRbElpsL/DBVW7q3ExxwusdNXI3lXpuhEZkzs8p5Eg==" - } - }, - "npm:color": { - "type": "npm", - "name": "npm:color", - "data": { - "version": "4.2.3", - "packageName": "color", - "hash": "sha512-1rXeuUUiGGrykh+CeBdu5Ie7OJwinCgQY0bc7GCRxy5xVHy+moaqkpL/jqQq0MtQOeYcrqEz4abc5f0KtU7W4A==" - } - }, - "npm:colord": { - "type": "npm", - "name": "npm:colord", - "data": { - "version": "2.9.3", - "packageName": "colord", - "hash": "sha512-jeC1axXpnb0/2nn/Y1LPuLdgXBLH7aDcHu4KEKfqw3CUhX7ZpfBSlPKyqXE6btIgEzfWtrX3/tyBCaCvXvMkOw==" - } - }, - "npm:colorette": { - "type": "npm", - "name": "npm:colorette", - "data": { - "version": "2.0.20", - "packageName": "colorette", - "hash": "sha512-IfEDxwoWIjkeXL1eXcDiow4UbKjhLdq6/EuSVR9GMN7KVH3r9gQ83e73hsz1Nd1T3ijd5xv1wcWRYO+D6kCI2w==" - } - }, - "npm:combined-stream": { - "type": "npm", - "name": "npm:combined-stream", - "data": { - "version": "1.0.8", - "packageName": "combined-stream", - "hash": "sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==" - } - }, - "npm:commander": { - "type": "npm", - "name": "npm:commander", - "data": { - "version": "7.2.0", - "packageName": "commander", - "hash": "sha512-QrWXB+ZQSVPmIWIhtEO9H+gwHaMGYiF5ChvoJ+K9ZGHG/sVsa6yiesAD1GC/x46sET00Xlwo1u49RVVVzvcSkw==" - } - }, - "npm:component-register": { - "type": "npm", - "name": "npm:component-register", - "data": { - "version": "0.8.8", - "packageName": "component-register", - "hash": "sha512-djhwcxjY+X9dacaYUEOkOm7tda8uOEDiMDigWysu3xv54M8o6XDlsjR1qt5Y8QLGiKg51fqXFIR2HUTmt9ys0Q==" - } - }, - "npm:concat-map": { - "type": "npm", - "name": "npm:concat-map", - "data": { - "version": "0.0.1", - "packageName": "concat-map", - "hash": "sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==" - } - }, - "npm:confbox@0.1.8": { - "type": "npm", - "name": "npm:confbox@0.1.8", - "data": { - "version": "0.1.8", - "packageName": "confbox", - "hash": "sha512-RMtmw0iFkeR4YV+fUOSucriAQNb9g8zFR52MWCtl+cCZOFRNL6zeB395vPzFhEjjn4fMxXudmELnl/KF/WrK6w==" - } - }, - "npm:confbox": { - "type": "npm", - "name": "npm:confbox", - "data": { - "version": "0.2.2", - "packageName": "confbox", - "hash": "sha512-1NB+BKqhtNipMsov4xI/NnhCKp9XG9NamYp5PVm9klAT0fsrNPjaFICsCFhNhwZJKNh7zB/3q8qXz0E9oaMNtQ==" - } - }, - "npm:consola": { - "type": "npm", - "name": "npm:consola", - "data": { - "version": "3.4.2", - "packageName": "consola", - "hash": "sha512-5IKcdX0nnYavi6G7TtOhwkYzyjfJlatbjMjuLSfE2kYT5pMDOilZ4OvMhi637CcDICTmz3wARPoyhqyX1Y+XvA==" - } - }, - "npm:constructs": { - "type": "npm", - "name": "npm:constructs", - "data": { - "version": "10.5.1", - "packageName": "constructs", - "hash": "sha512-f/TfFXiS3G/yVIXDjOQn9oTlyu9Wo7Fxyjj7lb8r92iO81jR2uST+9MstxZTmDGx/CgIbxCXkFXgupnLTNxQZg==" - } - }, - "npm:content-disposition": { - "type": "npm", - "name": "npm:content-disposition", - "data": { - "version": "1.0.1", - "packageName": "content-disposition", - "hash": "sha512-oIXISMynqSqm241k6kcQ5UwttDILMK4BiurCfGEREw6+X9jkkpEe5T9FZaApyLGGOnFuyMWZpdolTXMtvEJ08Q==" - } - }, - "npm:content-type": { - "type": "npm", - "name": "npm:content-type", - "data": { - "version": "1.0.5", - "packageName": "content-type", - "hash": "sha512-nTjqfcBFEipKdXCv4YDQWCfmcLZKm81ldF0pAopTvyrFGVbcR6P/VAAd5G7N+0tTr8QqiU0tFadD6FK4NtJwOA==" - } - }, - "npm:convert-route": { - "type": "npm", - "name": "npm:convert-route", - "data": { - "version": "0.1.2", - "packageName": "convert-route", - "hash": "sha512-KSp+HiFELyZGWsrderXM0EjVo8Hj2eDT2LvJXNz9vnK6BVgEvlhREkAYz1oV6bx3ulhXvOtuRyE94BovdPigCQ==" - } - }, - "npm:convert-source-map": { - "type": "npm", - "name": "npm:convert-source-map", - "data": { - "version": "2.0.0", - "packageName": "convert-source-map", - "hash": "sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg==" - } - }, - "npm:cookie-es": { - "type": "npm", - "name": "npm:cookie-es", - "data": { - "version": "1.2.2", - "packageName": "cookie-es", - "hash": "sha512-+W7VmiVINB+ywl1HGXJXmrqkOhpKrIiVZV6tQuV54ZyQC7MMuBt81Vc336GMLoHBq5hV/F9eXgt5Mnx0Rha5Fg==" - } - }, - "npm:cookie-signature": { - "type": "npm", - "name": "npm:cookie-signature", - "data": { - "version": "1.2.2", - "packageName": "cookie-signature", - "hash": "sha512-D76uU73ulSXrD1UXF4KE2TMxVVwhsnCgfAyTg9k8P6KGZjlXKrOLe4dJQKI3Bxi5wjesZoFXJWElNWBjPZMbhg==" - } - }, - "npm:cookie": { - "type": "npm", - "name": "npm:cookie", - "data": { - "version": "0.7.2", - "packageName": "cookie", - "hash": "sha512-yki5XnKuf750l50uGTllt6kKILY4nQ1eNIQatoXEByZ5dWgnKqbnqmTrBE5B4N7lrMJKQ2ytWMiTO2o0v6Ew/w==" - } - }, - "npm:cookie@1.1.1": { - "type": "npm", - "name": "npm:cookie@1.1.1", - "data": { - "version": "1.1.1", - "packageName": "cookie", - "hash": "sha512-ei8Aos7ja0weRpFzJnEA9UHJ/7XQmqglbRwnf2ATjcB9Wq874VKH9kfjjirM6UhU2/E5fFYadylyhFldcqSidQ==" - } - }, - "npm:corser": { - "type": "npm", - "name": "npm:corser", - "data": { - "version": "2.0.1", - "packageName": "corser", - "hash": "sha512-utCYNzRSQIZNPIcGZdQc92UVJYAhtGAteCFg0yRaFm8f0P+CPtyGyHXJcGXnffjCybUCEx3FQ2G7U3/o9eIkVQ==" - } - }, - "npm:cosmiconfig": { - "type": "npm", - "name": "npm:cosmiconfig", - "data": { - "version": "9.0.0", - "packageName": "cosmiconfig", - "hash": "sha512-itvL5h8RETACmOTFc4UfIyB2RfEHi71Ax6E/PivVxq9NseKbOWpeyHEOIbmAw1rs8Ak0VursQNww7lf7YtUwzg==" - } - }, - "npm:cross-spawn": { - "type": "npm", - "name": "npm:cross-spawn", - "data": { - "version": "7.0.6", - "packageName": "cross-spawn", - "hash": "sha512-uV2QOWP2nWzsy2aMp8aRibhi9dlzF5Hgh5SHaB9OiTGEyDTiJJyx0uy51QXdyWbtAHNua4XJzUKca3OzKUd3vA==" - } - }, - "npm:crossws": { - "type": "npm", - "name": "npm:crossws", - "data": { - "version": "0.3.5", - "packageName": "crossws", - "hash": "sha512-ojKiDvcmByhwa8YYqbQI/hg7MEU0NC03+pSdEq4ZUnZR9xXpwk7E43SMNGkn+JxJGPFtNvQ48+vV2p+P1ml5PA==" - } - }, - "npm:css-declaration-sorter": { - "type": "npm", - "name": "npm:css-declaration-sorter", - "data": { - "version": "6.4.1", - "packageName": "css-declaration-sorter", - "hash": "sha512-rtdthzxKuyq6IzqX6jEcIzQF/YqccluefyCYheovBOLhFT/drQA9zj/UbRAa9J7C0o6EG6u3E6g+vKkay7/k3g==" - } - }, - "npm:css-select": { - "type": "npm", - "name": "npm:css-select", - "data": { - "version": "4.3.0", - "packageName": "css-select", - "hash": "sha512-wPpOYtnsVontu2mODhA19JrqWxNsfdatRKd64kmpRbQgh1KtItko5sTnEpPdpSaJszTOhEMlF/RPz28qj4HqhQ==" - } - }, - "npm:css-tree": { - "type": "npm", - "name": "npm:css-tree", - "data": { - "version": "1.1.3", - "packageName": "css-tree", - "hash": "sha512-tRpdppF7TRazZrjJ6v3stzv93qxRcSsFmW6cX0Zm2NVKpxE1WV1HblnghVv9TreireHkqI/VDEsfolRF1p6y7Q==" - } - }, - "npm:css-what": { - "type": "npm", - "name": "npm:css-what", - "data": { - "version": "6.2.2", - "packageName": "css-what", - "hash": "sha512-u/O3vwbptzhMs3L1fQE82ZSLHQQfto5gyZzwteVIEyeaY5Fc7R4dapF/BvRoSYFeqfBk4m0V1Vafq5Pjv25wvA==" - } - }, - "npm:cssesc": { - "type": "npm", - "name": "npm:cssesc", - "data": { - "version": "3.0.0", - "packageName": "cssesc", - "hash": "sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg==" - } - }, - "npm:cssnano-preset-default": { - "type": "npm", - "name": "npm:cssnano-preset-default", - "data": { - "version": "5.2.14", - "packageName": "cssnano-preset-default", - "hash": "sha512-t0SFesj/ZV2OTylqQVOrFgEh5uanxbO6ZAdeCrNsUQ6fVuXwYTxJPNAGvGTxHbD68ldIJNec7PyYZDBrfDQ+6A==" - } - }, - "npm:cssnano-utils": { - "type": "npm", - "name": "npm:cssnano-utils", - "data": { - "version": "3.1.0", - "packageName": "cssnano-utils", - "hash": "sha512-JQNR19/YZhz4psLX/rQ9M83e3z2Wf/HdJbryzte4a3NSuafyp9w/I4U+hx5C2S9g41qlstH7DEWnZaaj83OuEA==" - } - }, - "npm:csso": { - "type": "npm", - "name": "npm:csso", - "data": { - "version": "4.2.0", - "packageName": "csso", - "hash": "sha512-wvlcdIbf6pwKEk7vHj8/Bkc0B4ylXZruLvOgs9doS5eOsOpuodOV2zJChSpkp+pRpYQLQMeF04nr3Z68Sta9jA==" - } - }, - "npm:csstype": { - "type": "npm", - "name": "npm:csstype", - "data": { - "version": "3.2.3", - "packageName": "csstype", - "hash": "sha512-z1HGKcYy2xA8AGQfwrn0PAy+PB7X/GSj3UVJW9qKyn43xWa+gl5nXmU4qqLMRzWVLFC8KusUX8T/0kCiOYpAIQ==" - } - }, - "npm:daisyui": { - "type": "npm", - "name": "npm:daisyui", - "data": { - "version": "5.5.19", - "packageName": "daisyui", - "hash": "sha512-pbFAkl1VCEh/MPCeclKL61I/MqRIFFhNU7yiXoDDRapXN4/qNCoMxeCCswyxEEhqL5eiTTfwHvucFtOE71C9sA==" - } - }, - "npm:data-uri-to-buffer": { - "type": "npm", - "name": "npm:data-uri-to-buffer", - "data": { - "version": "4.0.1", - "packageName": "data-uri-to-buffer", - "hash": "sha512-0R9ikRb668HB7QDxT1vkpuUBtqc53YyAwMwGeUFKRojY/NWKvdZ+9UYtRfGmhqNbRkTSVpMbmyhXipFFv2cb/A==" - } - }, - "npm:data-uri-to-buffer@6.0.2": { - "type": "npm", - "name": "npm:data-uri-to-buffer@6.0.2", - "data": { - "version": "6.0.2", - "packageName": "data-uri-to-buffer", - "hash": "sha512-7hvf7/GW8e86rW0ptuwS3OcBGDjIi6SZva7hCyWC0yYry2cOPmLIjXAUHI6DK2HsnwJd9ifmt57i8eV2n4YNpw==" - } - }, - "npm:data-view-buffer": { - "type": "npm", - "name": "npm:data-view-buffer", - "data": { - "version": "1.0.2", - "packageName": "data-view-buffer", - "hash": "sha512-EmKO5V3OLXh1rtK2wgXRansaK1/mtVdTUEiEI0W8RkvgT05kfxaH29PliLnpLP73yYO6142Q72QNa8Wx/A5CqQ==" - } - }, - "npm:data-view-byte-length": { - "type": "npm", - "name": "npm:data-view-byte-length", - "data": { - "version": "1.0.2", - "packageName": "data-view-byte-length", - "hash": "sha512-tuhGbE6CfTM9+5ANGf+oQb72Ky/0+s3xKUpHvShfiz2RxMFgFPjsXuRLBVMtvMs15awe45SRb83D6wH4ew6wlQ==" - } - }, - "npm:data-view-byte-offset": { - "type": "npm", - "name": "npm:data-view-byte-offset", - "data": { - "version": "1.0.1", - "packageName": "data-view-byte-offset", - "hash": "sha512-BS8PfmtDGnrgYdOonGZQdLZslWIeCGFP9tpan0hi1Co2Zr2NKADsvGYA8XxuG/4UWgJ6Cjtv+YJnB6MM69QGlQ==" - } - }, - "npm:debug-logfmt": { - "type": "npm", - "name": "npm:debug-logfmt", - "data": { - "version": "1.4.8", - "packageName": "debug-logfmt", - "hash": "sha512-tdHndIqcBCy5vEjDBCcyv9FnCkn38QrPRP0Q5B5qi+0S2Lgc6JOPjy2ozsLt00qslzJVbxoO2W05PXNYNB0IMQ==" - } - }, - "npm:debug": { - "type": "npm", - "name": "npm:debug", - "data": { - "version": "4.4.3", - "packageName": "debug", - "hash": "sha512-RGwwWnwQvkVfavKVt22FGLw+xYSdzARwm0ru6DhTVA3umU5hZc28V3kO4stgYryrTlLpuvgI9GiijltAjNbcqA==" - } - }, - "npm:decode-named-character-reference": { - "type": "npm", - "name": "npm:decode-named-character-reference", - "data": { - "version": "1.2.0", - "packageName": "decode-named-character-reference", - "hash": "sha512-c6fcElNV6ShtZXmsgNgFFV5tVX2PaV4g+MOAkb8eXHvn6sryJBrZa9r0zV6+dtTyoCKxtDy5tyQ5ZwQuidtd+Q==" - } - }, - "npm:decompress-response": { - "type": "npm", - "name": "npm:decompress-response", - "data": { - "version": "6.0.0", - "packageName": "decompress-response", - "hash": "sha512-aW35yZM6Bb/4oJlZncMH2LCoZtJXTRxES17vE3hoRiowU2kWHaJKFkSBDnDR+cm9J+9QhXmREyIfv0pji9ejCQ==" - } - }, - "npm:deep-extend": { - "type": "npm", - "name": "npm:deep-extend", - "data": { - "version": "0.6.0", - "packageName": "deep-extend", - "hash": "sha512-LOHxIOaPYdHlJRtCQfDIVZtfw/ufM8+rVj649RIHzcm/vGwQRXFt6OPqIFWsm2XEMrNIEtWR64sY1LEKD2vAOA==" - } - }, - "npm:deep-is": { - "type": "npm", - "name": "npm:deep-is", - "data": { - "version": "0.1.4", - "packageName": "deep-is", - "hash": "sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==" - } - }, - "npm:deepmerge-ts": { - "type": "npm", - "name": "npm:deepmerge-ts", - "data": { - "version": "7.1.5", - "packageName": "deepmerge-ts", - "hash": "sha512-HOJkrhaYsweh+W+e74Yn7YStZOilkoPb6fycpwNLKzSPtruFs48nYis0zy5yJz1+ktUhHxoRDJ27RQAWLIJVJw==" - } - }, - "npm:defaults": { - "type": "npm", - "name": "npm:defaults", - "data": { - "version": "1.0.4", - "packageName": "defaults", - "hash": "sha512-eFuaLoy/Rxalv2kr+lqMlUnrDWV+3j4pljOIJgLIhI058IQfWJ7vXhyEIHu+HtC738klGALYxOKDO0bQP3tg8A==" - } - }, - "npm:defer-to-connect": { - "type": "npm", - "name": "npm:defer-to-connect", - "data": { - "version": "2.0.1", - "packageName": "defer-to-connect", - "hash": "sha512-4tvttepXG1VaYGrRibk5EwJd1t4udunSOVMdLSAL6mId1ix438oPwPZMALY41FCijukO1L0twNcGsdzS7dHgDg==" - } - }, - "npm:define-data-property": { - "type": "npm", - "name": "npm:define-data-property", - "data": { - "version": "1.1.4", - "packageName": "define-data-property", - "hash": "sha512-rBMvIzlpA8v6E+SJZoo++HAYqsLrkg7MSfIinMPFhmkorw7X+dOXVJQs+QT69zGkzMyfDnIMN2Wid1+NbL3T+A==" - } - }, - "npm:define-lazy-prop": { - "type": "npm", - "name": "npm:define-lazy-prop", - "data": { - "version": "2.0.0", - "packageName": "define-lazy-prop", - "hash": "sha512-Ds09qNh8yw3khSjiJjiUInaGX9xlqZDY7JVryGxdxV7NPeuqQfplOpQ66yJFZut3jLa5zOwkXw1g9EI2uKh4Og==" - } - }, - "npm:define-properties": { - "type": "npm", - "name": "npm:define-properties", - "data": { - "version": "1.2.1", - "packageName": "define-properties", - "hash": "sha512-8QmQKqEASLd5nx0U1B1okLElbUuuttJ/AnYmRXbbbGDWh6uS208EjD4Xqq/I9wK7u0v6O08XhTWnt5XtEbR6Dg==" - } - }, - "npm:defu": { - "type": "npm", - "name": "npm:defu", - "data": { - "version": "6.1.4", - "packageName": "defu", - "hash": "sha512-mEQCMmwJu317oSz8CwdIOdwf3xMif1ttiM8LTufzc3g6kR+9Pe236twL8j3IYT1F7GfRgGcW6MWxzZjLIkuHIg==" - } - }, - "npm:degenerator": { - "type": "npm", - "name": "npm:degenerator", - "data": { - "version": "5.0.1", - "packageName": "degenerator", - "hash": "sha512-TllpMR/t0M5sqCXfj85i4XaAzxmS5tVA16dqvdkMwGmzI+dXLXnw3J+3Vdv7VKw+ThlTMboK6i9rnZ6Nntj5CQ==" - } - }, - "npm:delayed-stream": { - "type": "npm", - "name": "npm:delayed-stream", - "data": { - "version": "1.0.0", - "packageName": "delayed-stream", - "hash": "sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ==" - } - }, - "npm:denque": { - "type": "npm", - "name": "npm:denque", - "data": { - "version": "2.1.0", - "packageName": "denque", - "hash": "sha512-HVQE3AAb/pxF8fQAoiqpvg9i3evqug3hoiwakOyZAwJm+6vZehbkYXZ0l4JxS+I3QxM97v5aaRNhj8v5oBhekw==" - } - }, - "npm:depd": { - "type": "npm", - "name": "npm:depd", - "data": { - "version": "2.0.0", - "packageName": "depd", - "hash": "sha512-g7nH6P6dyDioJogAAGprGpCtVImJhpPk/roCzdb3fIh61/s/nPsfR6onyMwkCAR/OlC3yBC0lESvUoQEAssIrw==" - } - }, - "npm:dequal": { - "type": "npm", - "name": "npm:dequal", - "data": { - "version": "2.0.3", - "packageName": "dequal", - "hash": "sha512-0je+qPKHEMohvfRTCEo3CrPG6cAzAYgmzKyxRiYSSDkS6eGJdyVJm7WaYA5ECaAD9wLB2T4EEeymA5aFVcYXCA==" - } - }, - "npm:destr": { - "type": "npm", - "name": "npm:destr", - "data": { - "version": "2.0.5", - "packageName": "destr", - "hash": "sha512-ugFTXCtDZunbzasqBxrK93Ik/DRYsO6S/fedkWEMKqt04xZ4csmnmwGDBAb07QWNaGMAmnTIemsYZCksjATwsA==" - } - }, - "npm:detect-libc": { - "type": "npm", - "name": "npm:detect-libc", - "data": { - "version": "2.1.2", - "packageName": "detect-libc", - "hash": "sha512-Btj2BOOO83o3WyH59e8MgXsxEQVcarkUOpEYrubB0urwnN10yQ364rsiByU11nZlqWYZm05i/of7io4mzihBtQ==" - } - }, - "npm:detect-node-es": { - "type": "npm", - "name": "npm:detect-node-es", - "data": { - "version": "1.1.0", - "packageName": "detect-node-es", - "hash": "sha512-ypdmJU/TbBby2Dxibuv7ZLW3Bs1QEmM7nHjEANfohJLvE0XVujisn1qPJcZxg+qDucsr+bP6fLD1rPS3AhJ7EQ==" - } - }, - "npm:devlop": { - "type": "npm", - "name": "npm:devlop", - "data": { - "version": "1.1.0", - "packageName": "devlop", - "hash": "sha512-RWmIqhcFf1lRYBvNmr7qTNuyCt/7/ns2jbpp1+PalgE/rDQcBT0fioSMUpJ93irlUhC5hrg4cYqe6U+0ImW0rA==" - } - }, - "npm:devtools-protocol": { - "type": "npm", - "name": "npm:devtools-protocol", - "data": { - "version": "0.0.1581282", - "packageName": "devtools-protocol", - "hash": "sha512-nv7iKtNZQshSW2hKzYNr46nM/Cfh5SEvE2oV0/SEGgc9XupIY5ggf84Cz8eJIkBce7S3bmTAauFD6aysMpnqsQ==" - } - }, - "npm:didyoumean3": { - "type": "npm", - "name": "npm:didyoumean3", - "data": { - "version": "1.2.5", - "packageName": "didyoumean3", - "hash": "sha512-ROol2k9IQ04NjrCiB98knunQ1cOmoXdYaGFjMfDIcXl9PuaxNVHxAZrG163aWkrRq5jIL+LatmqCgPasOvRwSQ==" - } - }, - "npm:doctrine": { - "type": "npm", - "name": "npm:doctrine", - "data": { - "version": "2.1.0", - "packageName": "doctrine", - "hash": "sha512-35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw==" - } - }, - "npm:dom-serializer": { - "type": "npm", - "name": "npm:dom-serializer", - "data": { - "version": "1.4.1", - "packageName": "dom-serializer", - "hash": "sha512-VHwB3KfrcOOkelEG2ZOfxqLZdfkil8PtJi4P8N2MMXucZq2yLp75ClViUlOVwyoHEDjYU433Aq+5zWP61+RGag==" - } - }, - "npm:domelementtype": { - "type": "npm", - "name": "npm:domelementtype", - "data": { - "version": "2.3.0", - "packageName": "domelementtype", - "hash": "sha512-OLETBj6w0OsagBwdXnPdN0cnMfF9opN69co+7ZrbfPGrdpPVNBUj02spi6B1N7wChLQiPn4CSH/zJvXw56gmHw==" - } - }, - "npm:domhandler": { - "type": "npm", - "name": "npm:domhandler", - "data": { - "version": "4.3.1", - "packageName": "domhandler", - "hash": "sha512-GrwoxYN+uWlzO8uhUXRl0P+kHE4GtVPfYzVLcUxPL7KNdHKj66vvlhiweIHqYYXWlw+T8iLMp42Lm67ghw4WMQ==" - } - }, - "npm:domutils": { - "type": "npm", - "name": "npm:domutils", - "data": { - "version": "2.8.0", - "packageName": "domutils", - "hash": "sha512-w96Cjofp72M5IIhpjgobBimYEfoPjx1Vx0BSX9P30WBdZW2WIKU0T1Bd0kz2eNZ9ikjKgHbEyKx8BB6H1L3h3A==" - } - }, - "npm:dotenv-expand": { - "type": "npm", - "name": "npm:dotenv-expand", - "data": { - "version": "11.0.7", - "packageName": "dotenv-expand", - "hash": "sha512-zIHwmZPRshsCdpMDyVsqGmgyP0yT8GAgXUnkdAoJisxvf33k7yO6OuoKmcTGuXPWSsm8Oh88nZicRLA9Y0rUeA==" - } - }, - "npm:dotenv@16.4.7": { - "type": "npm", - "name": "npm:dotenv@16.4.7", - "data": { - "version": "16.4.7", - "packageName": "dotenv", - "hash": "sha512-47qPchRCykZC03FhkYAhrvwU4xDBFIj1QPqaarj6mdM/hgUzfPHcpkHJOn3mJAufFeeAxAzeGsr5X0M4k6fLZQ==" - } - }, - "npm:dotenv@16.6.1": { - "type": "npm", - "name": "npm:dotenv@16.6.1", - "data": { - "version": "16.6.1", - "packageName": "dotenv", - "hash": "sha512-uBq4egWHTcTt33a72vpSG0z3HnPuIl6NqYcTrKEg2azoEyl2hpW0zqlxysq2pK9HlDIHyHyakeYaYnSAwd8bow==" - } - }, - "npm:dotenv": { - "type": "npm", - "name": "npm:dotenv", - "data": { - "version": "17.3.1", - "packageName": "dotenv", - "hash": "sha512-IO8C/dzEb6O3F9/twg6ZLXz164a2fhTnEWb95H23Dm4OuN+92NmEAlTrupP9VW6Jm3sO26tQlqyvyi4CsnY9GA==" - } - }, - "npm:drizzle-kit": { - "type": "npm", - "name": "npm:drizzle-kit", - "data": { - "version": "0.31.10", - "packageName": "drizzle-kit", - "hash": "sha512-7OZcmQUrdGI+DUNNsKBn1aW8qSoKuTH7d0mYgSP8bAzdFzKoovxEFnoGQp2dVs82EOJeYycqRtciopszwUf8bw==" - } - }, - "npm:drizzle-orm": { - "type": "npm", - "name": "npm:drizzle-orm", - "data": { - "version": "0.45.1", - "packageName": "drizzle-orm", - "hash": "sha512-Te0FOdKIistGNPMq2jscdqngBRfBpC8uMFVwqjf6gtTVJHIQ/dosgV/CLBU2N4ZJBsXL5savCba9b0YJskKdcA==" - } - }, - "npm:dts-resolver": { - "type": "npm", - "name": "npm:dts-resolver", - "data": { - "version": "2.1.3", - "packageName": "dts-resolver", - "hash": "sha512-bihc7jPC90VrosXNzK0LTE2cuLP6jr0Ro8jk+kMugHReJVLIpHz/xadeq3MhuwyO4TD4OA3L1Q8pBBFRc08Tsw==" - } - }, - "npm:dunder-proto": { - "type": "npm", - "name": "npm:dunder-proto", - "data": { - "version": "1.0.1", - "packageName": "dunder-proto", - "hash": "sha512-KIN/nDJBQRcXw0MLVhZE9iQHmG68qAVIBg9CqmUYjmQIhgij9U5MFvrqkUL5FbtyyzZuOeOt0zdeRe4UY7ct+A==" - } - }, - "npm:eastasianwidth": { - "type": "npm", - "name": "npm:eastasianwidth", - "data": { - "version": "0.2.0", - "packageName": "eastasianwidth", - "hash": "sha512-I88TYZWc9XiYHRQ4/3c5rjjfgkjhLyW2luGIheGERbNQ6OY7yTybanSpDXZa8y7VUP9YmDcYa+eyq4ca7iLqWA==" - } - }, - "npm:ee-first": { - "type": "npm", - "name": "npm:ee-first", - "data": { - "version": "1.1.1", - "packageName": "ee-first", - "hash": "sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow==" - } - }, - "npm:effect": { - "type": "npm", - "name": "npm:effect", - "data": { - "version": "3.18.4", - "packageName": "effect", - "hash": "sha512-b1LXQJLe9D11wfnOKAk3PKxuqYshQ0Heez+y5pnkd3jLj1yx9QhM72zZ9uUrOQyNvrs2GZZd/3maL0ZV18YuDA==" - } - }, - "npm:ejs": { - "type": "npm", - "name": "npm:ejs", - "data": { - "version": "3.1.10", - "packageName": "ejs", - "hash": "sha512-UeJmFfOrAQS8OJWPZ4qtgHyWExa088/MtK5UEyoJGFH67cDEXkZSviOiKRCZ4Xij0zxI3JECgYs3oKx+AizQBA==" - } - }, - "npm:electron-to-chromium": { - "type": "npm", - "name": "npm:electron-to-chromium", - "data": { - "version": "1.5.267", - "packageName": "electron-to-chromium", - "hash": "sha512-0Drusm6MVRXSOJpGbaSVgcQsuB4hEkMpHXaVstcPmhu5LIedxs1xNK/nIxmQIU/RPC0+1/o0AVZfBTkTNJOdUw==" - } - }, - "npm:emoji-regex": { - "type": "npm", - "name": "npm:emoji-regex", - "data": { - "version": "8.0.0", - "packageName": "emoji-regex", - "hash": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==" - } - }, - "npm:emoji-regex@9.2.2": { - "type": "npm", - "name": "npm:emoji-regex@9.2.2", - "data": { - "version": "9.2.2", - "packageName": "emoji-regex", - "hash": "sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==" - } - }, - "npm:empathic": { - "type": "npm", - "name": "npm:empathic", - "data": { - "version": "2.0.0", - "packageName": "empathic", - "hash": "sha512-i6UzDscO/XfAcNYD75CfICkmfLedpyPDdozrLMmQc5ORaQcdMoc21OnlEylMIqI7U8eniKrPMxxtj8k0vhmJhA==" - } - }, - "npm:encodeurl": { - "type": "npm", - "name": "npm:encodeurl", - "data": { - "version": "2.0.0", - "packageName": "encodeurl", - "hash": "sha512-Q0n9HRi4m6JuGIV1eFlmvJB7ZEVxu93IrMyiMsGC0lrMJMWzRgx6WGquyfQgZVb31vhGgXnfmPNNXmxnOkRBrg==" - } - }, - "npm:encoding": { - "type": "npm", - "name": "npm:encoding", - "data": { - "version": "0.1.13", - "packageName": "encoding", - "hash": "sha512-ETBauow1T35Y/WZMkio9jiM0Z5xjHHmJ4XmjZOq1l/dXz3lr2sRn87nJy20RupqSh1F2m3HHPSp8ShIPQJrJ3A==" - } - }, - "npm:end-of-stream": { - "type": "npm", - "name": "npm:end-of-stream", - "data": { - "version": "1.4.5", - "packageName": "end-of-stream", - "hash": "sha512-ooEGc6HP26xXq/N+GCGOT0JKCLDGrq2bQUZrQ7gyrJiZANJ/8YDTxTpQBXGMn+WbIQXNVpyWymm7KYVICQnyOg==" - } - }, - "npm:enhanced-resolve": { - "type": "npm", - "name": "npm:enhanced-resolve", - "data": { - "version": "5.19.0", - "packageName": "enhanced-resolve", - "hash": "sha512-phv3E1Xl4tQOShqSte26C7Fl84EwUdZsyOuSSk9qtAGyyQs2s3jJzComh+Abf4g187lUUAvH+H26omrqia2aGg==" - } - }, - "npm:enquirer": { - "type": "npm", - "name": "npm:enquirer", - "data": { - "version": "2.3.6", - "packageName": "enquirer", - "hash": "sha512-yjNnPr315/FjS4zIsUxYguYUPP2e1NK4d7E7ZOLiyYCcbFBiTMyID+2wvm2w6+pZ/odMA7cRkjhsPbltwBOrLg==" - } - }, - "npm:ensure-error": { - "type": "npm", - "name": "npm:ensure-error", - "data": { - "version": "3.0.1", - "packageName": "ensure-error", - "hash": "sha512-J2e5Z3sgnA8en6+alf2VkO5cRwe75hHgSw0rJiMn5CEE4Yyw6GSgH31IBgwN9lugeCuPKHzuOF3X/RozAFsuhQ==" - } - }, - "npm:entities@2.2.0": { - "type": "npm", - "name": "npm:entities@2.2.0", - "data": { - "version": "2.2.0", - "packageName": "entities", - "hash": "sha512-p92if5Nz619I0w+akJrLZH0MX0Pb5DX39XOwQTtXSdQQOaYH03S1uIQp4mhOZtAXrxq4ViO67YTiLBo2638o9A==" - } - }, - "npm:entities@6.0.1": { - "type": "npm", - "name": "npm:entities@6.0.1", - "data": { - "version": "6.0.1", - "packageName": "entities", - "hash": "sha512-aN97NXWF6AWBTahfVOIrB/NShkzi5H7F9r1s9mD3cDj4Ko5f2qhhVoYMibXF7GlLveb/D2ioWay8lxI97Ven3g==" - } - }, - "npm:entities": { - "type": "npm", - "name": "npm:entities", - "data": { - "version": "7.0.1", - "packageName": "entities", - "hash": "sha512-TWrgLOFUQTH994YUyl1yT4uyavY5nNB5muff+RtWaqNVCAK408b5ZnnbNAUEWLTCpum9w6arT70i1XdQ4UeOPA==" - } - }, - "npm:env-paths": { - "type": "npm", - "name": "npm:env-paths", - "data": { - "version": "2.2.1", - "packageName": "env-paths", - "hash": "sha512-+h1lkLKhZMTYjog1VEpJNG7NZJWcuc2DDk/qsqSTRRCOXiLjeQ1d1/udrUGhqMxUgAlwKNZ0cf2uqan5GLuS2A==" - } - }, - "npm:err-code": { - "type": "npm", - "name": "npm:err-code", - "data": { - "version": "2.0.3", - "packageName": "err-code", - "hash": "sha512-2bmlRpNKBxT/CRmPOlyISQpNj+qSeYvcym/uT0Jx2bMOlKLtSy1ZmLuVxSEKKyor/N5yhvp/ZiG1oE3DEYMSFA==" - } - }, - "npm:error-ex": { - "type": "npm", - "name": "npm:error-ex", - "data": { - "version": "1.3.4", - "packageName": "error-ex", - "hash": "sha512-sqQamAnR14VgCr1A618A3sGrygcpK+HEbenA/HiEAkkUwcZIIB/tgWqHFxWgOyDh4nB4JCRimh79dR5Ywc9MDQ==" - } - }, - "npm:error-stack-parser-es": { - "type": "npm", - "name": "npm:error-stack-parser-es", - "data": { - "version": "1.0.5", - "packageName": "error-stack-parser-es", - "hash": "sha512-5qucVt2XcuGMcEGgWI7i+yZpmpByQ8J1lHhcL7PwqCwu9FPP3VUXzT4ltHe5i2z9dePwEHcDVOAfSnHsOlCXRA==" - } - }, - "npm:es-abstract": { - "type": "npm", - "name": "npm:es-abstract", - "data": { - "version": "1.24.0", - "packageName": "es-abstract", - "hash": "sha512-WSzPgsdLtTcQwm4CROfS5ju2Wa1QQcVeT37jFjYzdFz1r9ahadC8B8/a4qxJxM+09F18iumCdRmlr96ZYkQvEg==" - } - }, - "npm:es-define-property": { - "type": "npm", - "name": "npm:es-define-property", - "data": { - "version": "1.0.1", - "packageName": "es-define-property", - "hash": "sha512-e3nRfgfUZ4rNGL232gUgX06QNyyez04KdjFrF+LTRoOXmrOgFKDg4BCdsjW8EnT69eqdYGmRpJwiPVYNrCaW3g==" - } - }, - "npm:es-errors": { - "type": "npm", - "name": "npm:es-errors", - "data": { - "version": "1.3.0", - "packageName": "es-errors", - "hash": "sha512-Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw==" - } - }, - "npm:es-iterator-helpers": { - "type": "npm", - "name": "npm:es-iterator-helpers", - "data": { - "version": "1.2.1", - "packageName": "es-iterator-helpers", - "hash": "sha512-uDn+FE1yrDzyC0pCo961B2IHbdM8y/ACZsKD4dG6WqrjV53BADjwa7D+1aom2rsNVfLyDgU/eigvlJGJ08OQ4w==" - } - }, - "npm:es-module-lexer": { - "type": "npm", - "name": "npm:es-module-lexer", - "data": { - "version": "1.7.0", - "packageName": "es-module-lexer", - "hash": "sha512-jEQoCwk8hyb2AZziIOLhDqpm5+2ww5uIE6lkO/6jcOCusfk6LhMHpXXfBLXTZ7Ydyt0j4VoUQv6uGNYbdW+kBA==" - } - }, - "npm:es-module-lexer@2.0.0": { - "type": "npm", - "name": "npm:es-module-lexer@2.0.0", - "data": { - "version": "2.0.0", - "packageName": "es-module-lexer", - "hash": "sha512-5POEcUuZybH7IdmGsD8wlf0AI55wMecM9rVBTI/qEAy2c1kTOm3DjFYjrBdI2K3BaJjJYfYFeRtM0t9ssnRuxw==" - } - }, - "npm:es-object-atoms": { - "type": "npm", - "name": "npm:es-object-atoms", - "data": { - "version": "1.1.1", - "packageName": "es-object-atoms", - "hash": "sha512-FGgH2h8zKNim9ljj7dankFPcICIK9Cp5bm+c2gQSYePhpaG5+esrLODihIorn+Pe6FGJzWhXQotPv73jTaldXA==" - } - }, - "npm:es-set-tostringtag": { - "type": "npm", - "name": "npm:es-set-tostringtag", - "data": { - "version": "2.1.0", - "packageName": "es-set-tostringtag", - "hash": "sha512-j6vWzfrGVfyXxge+O0x5sh6cvxAog0a/4Rdd2K36zCMV5eJ+/+tOAngRO8cODMNWbVRdVlmGZQL2YS3yR8bIUA==" - } - }, - "npm:es-shim-unscopables": { - "type": "npm", - "name": "npm:es-shim-unscopables", - "data": { - "version": "1.1.0", - "packageName": "es-shim-unscopables", - "hash": "sha512-d9T8ucsEhh8Bi1woXCf+TIKDIROLG5WCkxg8geBCbvk22kzwC5G2OnXVMO6FUsvQlgUUXQ2itephWDLqDzbeCw==" - } - }, - "npm:es-to-primitive": { - "type": "npm", - "name": "npm:es-to-primitive", - "data": { - "version": "1.3.0", - "packageName": "es-to-primitive", - "hash": "sha512-w+5mJ3GuFL+NjVtJlvydShqE1eN3h3PbI7/5LAsYJP/2qtuMXjfL2LpHSRqo4b4eSF5K/DH1JXKUAHSB2UW50g==" - } - }, - "npm:esbuild@0.18.20": { - "type": "npm", - "name": "npm:esbuild@0.18.20", - "data": { - "version": "0.18.20", - "packageName": "esbuild", - "hash": "sha512-ceqxoedUrcayh7Y7ZX6NdbbDzGROiyVBgC4PriJThBKSVPWnnFHZAkfI1lJT8QFkOwH4qOS2SJkS4wvpGl8BpA==" - } - }, - "npm:esbuild@0.25.12": { - "type": "npm", - "name": "npm:esbuild@0.25.12", - "data": { - "version": "0.25.12", - "packageName": "esbuild", - "hash": "sha512-bbPBYYrtZbkt6Os6FiTLCTFxvq4tt3JKall1vRwshA3fdVztsLAatFaZobhkBC8/BrPetoa0oksYoKXoG4ryJg==" - } - }, - "npm:esbuild@0.27.3": { - "type": "npm", - "name": "npm:esbuild@0.27.3", - "data": { - "version": "0.27.3", - "packageName": "esbuild", - "hash": "sha512-8VwMnyGCONIs6cWue2IdpHxHnAjzxnw2Zr7MkVxB2vjmQ2ivqGFb4LEG3SMnv0Gb2F/G/2yA8zUaiL1gywDCCg==" - } - }, - "npm:esbuild": { - "type": "npm", - "name": "npm:esbuild", - "data": { - "version": "0.27.4", - "packageName": "esbuild", - "hash": "sha512-Rq4vbHnYkK5fws5NF7MYTU68FPRE1ajX7heQ/8QXXWqNgqqJ/GkmmyxIzUnf2Sr/bakf8l54716CcMGHYhMrrQ==" - } - }, - "npm:escalade": { - "type": "npm", - "name": "npm:escalade", - "data": { - "version": "3.2.0", - "packageName": "escalade", - "hash": "sha512-WUj2qlxaQtO4g6Pq5c29GTcWGDyd8itL8zTlipgECz3JesAiiOKotd8JU6otB3PACgG6xkJUyVhboMS+bje/jA==" - } - }, - "npm:escape-html": { - "type": "npm", - "name": "npm:escape-html", - "data": { - "version": "1.0.3", - "packageName": "escape-html", - "hash": "sha512-NiSupZ4OeuGwr68lGIeym/ksIZMJodUGOSCZ/FSnTxcrekbvqrgdUxlJOMpijaKZVjAJrWrGs/6Jy8OMuyj9ow==" - } - }, - "npm:escape-string-regexp@1.0.5": { - "type": "npm", - "name": "npm:escape-string-regexp@1.0.5", - "data": { - "version": "1.0.5", - "packageName": "escape-string-regexp", - "hash": "sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==" - } - }, - "npm:escape-string-regexp": { - "type": "npm", - "name": "npm:escape-string-regexp", - "data": { - "version": "4.0.0", - "packageName": "escape-string-regexp", - "hash": "sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==" - } - }, - "npm:escodegen": { - "type": "npm", - "name": "npm:escodegen", - "data": { - "version": "2.1.0", - "packageName": "escodegen", - "hash": "sha512-2NlIDTwUWJN0mRPQOdtQBzbUHvdGY2P1VXSyU83Q3xKxM7WHX2Ql8dKq782Q9TgQUNOLEzEYu9bzLNj1q88I5w==" - } - }, - "npm:eslint-config-prettier": { - "type": "npm", - "name": "npm:eslint-config-prettier", - "data": { - "version": "10.1.8", - "packageName": "eslint-config-prettier", - "hash": "sha512-82GZUjRS0p/jganf6q1rEO25VSoHH0hKPCTrgillPjdI/3bgBhAE1QzHrHTizjpRvy6pGAvKjDJtk2pF9NDq8w==" - } - }, - "npm:eslint-plugin-prettier": { - "type": "npm", - "name": "npm:eslint-plugin-prettier", - "data": { - "version": "5.5.5", - "packageName": "eslint-plugin-prettier", - "hash": "sha512-hscXkbqUZ2sPithAuLm5MXL+Wph+U7wHngPBv9OMWwlP8iaflyxpjTYZkmdgB4/vPIhemRlBEoLrH7UC1n7aUw==" - } - }, - "npm:eslint-plugin-react": { - "type": "npm", - "name": "npm:eslint-plugin-react", - "data": { - "version": "7.37.5", - "packageName": "eslint-plugin-react", - "hash": "sha512-Qteup0SqU15kdocexFNAJMvCJEfa2xUKNV4CC1xsVMrIIqEy3SQ/rqyxCWNzfrd3/ldy6HMlD2e0JDVpDg2qIA==" - } - }, - "npm:eslint-plugin-solid": { - "type": "npm", - "name": "npm:eslint-plugin-solid", - "data": { - "version": "0.14.5", - "packageName": "eslint-plugin-solid", - "hash": "sha512-nfuYK09ah5aJG/oEN6P1qziy1zLgW4PDWe75VNPi4CEFYk1x2AEqwFeQfEPR7gNn0F2jOeqKhx2E+5oNCOBYWQ==" - } - }, - "npm:eslint-plugin-vue": { - "type": "npm", - "name": "npm:eslint-plugin-vue", - "data": { - "version": "10.8.0", - "packageName": "eslint-plugin-vue", - "hash": "sha512-f1J/tcbnrpgC8suPN5AtdJ5MQjuXbSU9pGRSSYAuF3SHoiYCOdEX6O22pLaRyLHXvDcOe+O5ENgc1owQ587agA==" - } - }, - "npm:eslint-rule-composer": { - "type": "npm", - "name": "npm:eslint-rule-composer", - "data": { - "version": "0.3.0", - "packageName": "eslint-rule-composer", - "hash": "sha512-bt+Sh8CtDmn2OajxvNO+BX7Wn4CIWMpTRm3MaiKPCQcnnlm0CS2mhui6QaoeQugs+3Kj2ESKEEGJUdVafwhiCg==" - } - }, - "npm:eslint-scope": { - "type": "npm", - "name": "npm:eslint-scope", - "data": { - "version": "8.4.0", - "packageName": "eslint-scope", - "hash": "sha512-sNXOfKCn74rt8RICKMvJS7XKV/Xk9kA7DyJr8mJik3S7Cwgy3qlkkmyS2uQB3jiJg6VNdZd/pDBJu0nvG2NlTg==" - } - }, - "npm:eslint-visitor-keys@3.4.3": { - "type": "npm", - "name": "npm:eslint-visitor-keys@3.4.3", - "data": { - "version": "3.4.3", - "packageName": "eslint-visitor-keys", - "hash": "sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag==" - } - }, - "npm:eslint-visitor-keys": { - "type": "npm", - "name": "npm:eslint-visitor-keys", - "data": { - "version": "4.2.1", - "packageName": "eslint-visitor-keys", - "hash": "sha512-Uhdk5sfqcee/9H/rCOJikYz67o0a2Tw2hGRPOG2Y1R2dg7brRe1uG0yaNQDHu+TO/uQPF/5eCapvYSmHUjt7JQ==" - } - }, - "npm:eslint-visitor-keys@5.0.1": { - "type": "npm", - "name": "npm:eslint-visitor-keys@5.0.1", - "data": { - "version": "5.0.1", - "packageName": "eslint-visitor-keys", - "hash": "sha512-tD40eHxA35h0PEIZNeIjkHoDR4YjjJp34biM0mDvplBe//mB+IHCqHDGV7pxF+7MklTvighcCPPZC7ynWyjdTA==" - } - }, - "npm:eslint": { - "type": "npm", - "name": "npm:eslint", - "data": { - "version": "9.39.4", - "packageName": "eslint", - "hash": "sha512-XoMjdBOwe/esVgEvLmNsD3IRHkm7fbKIUGvrleloJXUZgDHig2IPWNniv+GwjyJXzuNqVjlr5+4yVUZjycJwfQ==" - } - }, - "npm:espree@10.4.0": { - "type": "npm", - "name": "npm:espree@10.4.0", - "data": { - "version": "10.4.0", - "packageName": "espree", - "hash": "sha512-j6PAQ2uUr79PZhBjP5C5fhl8e39FmRnOjsD5lGnWrFU8i2G776tBK7+nP8KuQUTTyAZUwfQqXAgrVH5MbH9CYQ==" - } - }, - "npm:espree": { - "type": "npm", - "name": "npm:espree", - "data": { - "version": "11.2.0", - "packageName": "espree", - "hash": "sha512-7p3DrVEIopW1B1avAGLuCSh1jubc01H2JHc8B4qqGblmg5gI9yumBgACjWo4JlIc04ufug4xJ3SQI8HkS/Rgzw==" - } - }, - "npm:esprima": { - "type": "npm", - "name": "npm:esprima", - "data": { - "version": "4.0.1", - "packageName": "esprima", - "hash": "sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==" - } - }, - "npm:esquery": { - "type": "npm", - "name": "npm:esquery", - "data": { - "version": "1.6.0", - "packageName": "esquery", - "hash": "sha512-ca9pw9fomFcKPvFLXhBKUK90ZvGibiGOvRJNbjljY7s7uq/5YO4BOzcYtJqExdx99rF6aAcnRxHmcUHcz6sQsg==" - } - }, - "npm:esrecurse": { - "type": "npm", - "name": "npm:esrecurse", - "data": { - "version": "4.3.0", - "packageName": "esrecurse", - "hash": "sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==" - } - }, - "npm:estraverse": { - "type": "npm", - "name": "npm:estraverse", - "data": { - "version": "5.3.0", - "packageName": "estraverse", - "hash": "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==" - } - }, - "npm:estree-walker@2.0.2": { - "type": "npm", - "name": "npm:estree-walker@2.0.2", - "data": { - "version": "2.0.2", - "packageName": "estree-walker", - "hash": "sha512-Rfkk/Mp/DL7JVje3u18FxFujQlTNR2q6QfMSMB7AvCBx91NGj/ba3kCfza0f6dVDbw7YlRf/nDrn7pQrCCyQ/w==" - } - }, - "npm:estree-walker": { - "type": "npm", - "name": "npm:estree-walker", - "data": { - "version": "3.0.3", - "packageName": "estree-walker", - "hash": "sha512-7RUKfXgSMMkzt6ZuXmqapOurLGPPfgj6l9uRZ7lRGolvk0y2yocc35LdcxKC5PQZdn2DMqioAQ2NoWcrTKmm6g==" - } - }, - "npm:esutils": { - "type": "npm", - "name": "npm:esutils", - "data": { - "version": "2.0.3", - "packageName": "esutils", - "hash": "sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==" - } - }, - "npm:etag": { - "type": "npm", - "name": "npm:etag", - "data": { - "version": "1.8.1", - "packageName": "etag", - "hash": "sha512-aIL5Fx7mawVa300al2BnEE4iNvo1qETxLrPI/o05L7z6go7fCw1J6EQmbK4FmJ2AS7kgVF/KEZWufBfdClMcPg==" - } - }, - "npm:eventemitter3": { - "type": "npm", - "name": "npm:eventemitter3", - "data": { - "version": "4.0.7", - "packageName": "eventemitter3", - "hash": "sha512-8guHBZCwKnFhYdHr2ysuRWErTwhoN2X8XELRlrRwpmfeY2jjuUN4taQMsULKUVo1K4DvZl+0pgfyoysHxvmvEw==" - } - }, - "npm:events-universal": { - "type": "npm", - "name": "npm:events-universal", - "data": { - "version": "1.0.1", - "packageName": "events-universal", - "hash": "sha512-LUd5euvbMLpwOF8m6ivPCbhQeSiYVNb8Vs0fQ8QjXo0JTkEHpz8pxdQf0gStltaPpw0Cca8b39KxvK9cfKRiAw==" - } - }, - "npm:execa": { - "type": "npm", - "name": "npm:execa", - "data": { - "version": "9.6.1", - "packageName": "execa", - "hash": "sha512-9Be3ZoN4LmYR90tUoVu2te2BsbzHfhJyfEiAVfz7N5/zv+jduIfLrV2xdQXOHbaD6KgpGdO9PRPM1Y4Q9QkPkA==" - } - }, - "npm:exit-hook": { - "type": "npm", - "name": "npm:exit-hook", - "data": { - "version": "2.2.1", - "packageName": "exit-hook", - "hash": "sha512-eNTPlAD67BmP31LDINZ3U7HSF8l57TxOY2PmBJ1shpCvpnxBF93mWCE8YHBnXs8qiUZJc9WDcWIeC3a2HIAMfw==" - } - }, - "npm:expand-template": { - "type": "npm", - "name": "npm:expand-template", - "data": { - "version": "2.0.3", - "packageName": "expand-template", - "hash": "sha512-XYfuKMvj4O35f/pOXLObndIRvyQ+/+6AhODh+OKWj9S9498pHHn/IMszH+gt0fBCRWMNfk1ZSp5x3AifmnI2vg==" - } - }, - "npm:expect-type": { - "type": "npm", - "name": "npm:expect-type", - "data": { - "version": "1.3.0", - "packageName": "expect-type", - "hash": "sha512-knvyeauYhqjOYvQ66MznSMs83wmHrCycNEN6Ao+2AeYEfxUIkuiVxdEa1qlGEPK+We3n0THiDciYSsCcgW/DoA==" - } - }, - "npm:exponential-backoff": { - "type": "npm", - "name": "npm:exponential-backoff", - "data": { - "version": "3.1.3", - "packageName": "exponential-backoff", - "hash": "sha512-ZgEeZXj30q+I0EN+CbSSpIyPaJ5HVQD18Z1m+u1FXbAeT94mr1zw50q4q6jiiC447Nl/YTcIYSAftiGqetwXCA==" - } - }, - "npm:express": { - "type": "npm", - "name": "npm:express", - "data": { - "version": "5.2.1", - "packageName": "express", - "hash": "sha512-hIS4idWWai69NezIdRt2xFVofaF4j+6INOpJlVOLDO8zXGpUVEVzIYk12UUi2JzjEzWL3IOAxcTubgz9Po0yXw==" - } - }, - "npm:exsolve": { - "type": "npm", - "name": "npm:exsolve", - "data": { - "version": "1.0.8", - "packageName": "exsolve", - "hash": "sha512-LmDxfWXwcTArk8fUEnOfSZpHOJ6zOMUJKOtFLFqJLoKJetuQG874Uc7/Kki7zFLzYybmZhp1M7+98pfMqeX8yA==" - } - }, - "npm:extract-zip": { - "type": "npm", - "name": "npm:extract-zip", - "data": { - "version": "2.0.1", - "packageName": "extract-zip", - "hash": "sha512-GDhU9ntwuKyGXdZBUgTIe+vXnWj0fppUEtMDL0+idd5Sta8TGpHssn/eusA9mrPr9qNDym6SxAYZjNvCn/9RBg==" - } - }, - "npm:fast-check": { - "type": "npm", - "name": "npm:fast-check", - "data": { - "version": "3.23.2", - "packageName": "fast-check", - "hash": "sha512-h5+1OzzfCC3Ef7VbtKdcv7zsstUQwUDlYpUTvjeUsJAssPgLn7QzbboPtL5ro04Mq0rPOsMzl7q5hIbRs2wD1A==" - } - }, - "npm:fast-decode-uri-component": { - "type": "npm", - "name": "npm:fast-decode-uri-component", - "data": { - "version": "1.0.1", - "packageName": "fast-decode-uri-component", - "hash": "sha512-WKgKWg5eUxvRZGwW8FvfbaH7AXSh2cL+3j5fMGzUMCxWBJ3dV3a7Wz8y2f/uQ0e3B6WmodD3oS54jTQ9HVTIIg==" - } - }, - "npm:fast-deep-equal": { - "type": "npm", - "name": "npm:fast-deep-equal", - "data": { - "version": "3.1.3", - "packageName": "fast-deep-equal", - "hash": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==" - } - }, - "npm:fast-diff": { - "type": "npm", - "name": "npm:fast-diff", - "data": { - "version": "1.3.0", - "packageName": "fast-diff", - "hash": "sha512-VxPP4NqbUjj6MaAOafWeUn2cXWLcCtljklUtZf0Ind4XQ+QPtmA0b18zZy0jIQx+ExRVCR/ZQpBmik5lXshNsw==" - } - }, - "npm:fast-fifo": { - "type": "npm", - "name": "npm:fast-fifo", - "data": { - "version": "1.3.2", - "packageName": "fast-fifo", - "hash": "sha512-/d9sfos4yxzpwkDkuN7k2SqFKtYNmCTzgfEpz82x34IM9/zc8KGxQoXg1liNC/izpRM/MBdt44Nmx41ZWqk+FQ==" - } - }, - "npm:fast-glob": { - "type": "npm", - "name": "npm:fast-glob", - "data": { - "version": "3.3.3", - "packageName": "fast-glob", - "hash": "sha512-7MptL8U0cqcFdzIzwOTHoilX9x5BrNqye7Z/LuC7kCMRio1EMSyqRK3BEAUD7sXRq4iT4AzTVuZdhgQ2TCvYLg==" - } - }, - "npm:fast-json-stable-stringify": { - "type": "npm", - "name": "npm:fast-json-stable-stringify", - "data": { - "version": "2.1.0", - "packageName": "fast-json-stable-stringify", - "hash": "sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==" - } - }, - "npm:fast-json-stringify": { - "type": "npm", - "name": "npm:fast-json-stringify", - "data": { - "version": "6.3.0", - "packageName": "fast-json-stringify", - "hash": "sha512-oRCntNDY/329HJPlmdNLIdogNtt6Vyjb1WuT01Soss3slIdyUp8kAcDU3saQTOquEK8KFVfwIIF7FebxUAu+yA==" - } - }, - "npm:fast-levenshtein": { - "type": "npm", - "name": "npm:fast-levenshtein", - "data": { - "version": "2.0.6", - "packageName": "fast-levenshtein", - "hash": "sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==" - } - }, - "npm:fast-querystring": { - "type": "npm", - "name": "npm:fast-querystring", - "data": { - "version": "1.1.2", - "packageName": "fast-querystring", - "hash": "sha512-g6KuKWmFXc0fID8WWH0jit4g0AGBoJhCkJMb1RmbsSEUNvQ+ZC8D6CUZ+GtF8nMzSPXnhiePyyqqipzNNEnHjg==" - } - }, - "npm:fast-string-truncated-width": { - "type": "npm", - "name": "npm:fast-string-truncated-width", - "data": { - "version": "3.0.3", - "packageName": "fast-string-truncated-width", - "hash": "sha512-0jjjIEL6+0jag3l2XWWizO64/aZVtpiGE3t0Zgqxv0DPuxiMjvB3M24fCyhZUO4KomJQPj3LTSUnDP3GpdwC0g==" - } - }, - "npm:fast-string-width": { - "type": "npm", - "name": "npm:fast-string-width", - "data": { - "version": "3.0.2", - "packageName": "fast-string-width", - "hash": "sha512-gX8LrtNEI5hq8DVUfRQMbr5lpaS4nMIWV+7XEbXk2b8kiQIizgnlr12B4dA3ZEx3308ze0O4Q1R+cHts8kyUJg==" - } - }, - "npm:fast-uri": { - "type": "npm", - "name": "npm:fast-uri", - "data": { - "version": "3.1.0", - "packageName": "fast-uri", - "hash": "sha512-iPeeDKJSWf4IEOasVVrknXpaBV0IApz/gp7S2bb7Z4Lljbl2MGJRqInZiUrQwV16cpzw/D3S5j5Julj/gT52AA==" - } - }, - "npm:fast-wrap-ansi": { - "type": "npm", - "name": "npm:fast-wrap-ansi", - "data": { - "version": "0.2.0", - "packageName": "fast-wrap-ansi", - "hash": "sha512-rLV8JHxTyhVmFYhBJuMujcrHqOT2cnO5Zxj37qROj23CP39GXubJRBUFF0z8KFK77Uc0SukZUf7JZhsVEQ6n8w==" - } - }, - "npm:fastify-plugin": { - "type": "npm", - "name": "npm:fastify-plugin", - "data": { - "version": "5.1.0", - "packageName": "fastify-plugin", - "hash": "sha512-FAIDA8eovSt5qcDgcBvDuX/v0Cjz0ohGhENZ/wpc3y+oZCY2afZ9Baqql3g/lC+OHRnciQol4ww7tuthOb9idw==" - } - }, - "npm:fastify-raw-body": { - "type": "npm", - "name": "npm:fastify-raw-body", - "data": { - "version": "5.0.0", - "packageName": "fastify-raw-body", - "hash": "sha512-2qfoaQ3BQDhZ1gtbkKZd6n0kKxJISJGM6u/skD9ljdWItAscjXrtZ1lnjr7PavmXX9j4EyCPmBDiIsLn07d5vA==" - } - }, - "npm:fastify": { - "type": "npm", - "name": "npm:fastify", - "data": { - "version": "5.8.2", - "packageName": "fastify", - "hash": "sha512-lZmt3navvZG915IE+f7/TIVamxIwmBd+OMB+O9WBzcpIwOo6F0LTh0sluoMFk5VkrKTvvrwIaoJPkir4Z+jtAg==" - } - }, - "npm:fastq": { - "type": "npm", - "name": "npm:fastq", - "data": { - "version": "1.20.1", - "packageName": "fastq", - "hash": "sha512-GGToxJ/w1x32s/D2EKND7kTil4n8OVk/9mycTc4VDza13lOvpUZTGX3mFSCtV9ksdGBVzvsyAVLM6mHFThxXxw==" - } - }, - "npm:fd-package-json": { - "type": "npm", - "name": "npm:fd-package-json", - "data": { - "version": "2.0.0", - "packageName": "fd-package-json", - "hash": "sha512-jKmm9YtsNXN789RS/0mSzOC1NUq9mkVd65vbSSVsKdjGvYXBuE4oWe2QOEoFeRmJg+lPuZxpmrfFclNhoRMneQ==" - } - }, - "npm:fd-slicer": { - "type": "npm", - "name": "npm:fd-slicer", - "data": { - "version": "1.1.0", - "packageName": "fd-slicer", - "hash": "sha512-cE1qsB/VwyQozZ+q1dGxR8LBYNZeofhEdUNGSMbQD3Gw2lAzX9Zb3uIU6Ebc/Fmyjo9AWWfnn0AUCHqtevs/8g==" - } - }, - "npm:fdir": { - "type": "npm", - "name": "npm:fdir", - "data": { - "version": "6.5.0", - "packageName": "fdir", - "hash": "sha512-tIbYtZbucOs0BRGqPJkshJUYdL+SDH7dVM8gjy+ERp3WAUjLEFJE+02kanyHtwjWOnwrKYBiwAmM0p4kLJAnXg==" - } - }, - "npm:fetch-blob": { - "type": "npm", - "name": "npm:fetch-blob", - "data": { - "version": "3.2.0", - "packageName": "fetch-blob", - "hash": "sha512-7yAQpD2UMJzLi1Dqv7qFYnPbaPx7ZfFK6PiIxQ4PfkGPyNyl2Ugx+a/umUonmKqjhM4DnfbMvdX6otXq83soQQ==" - } - }, - "npm:figures@3.2.0": { - "type": "npm", - "name": "npm:figures@3.2.0", - "data": { - "version": "3.2.0", - "packageName": "figures", - "hash": "sha512-yaduQFRKLXYOGgEn6AZau90j3ggSOyiqXU0F9JZfeXYhNa+Jk4X+s45A2zg5jns87GAFa34BBm2kXw4XpNcbdg==" - } - }, - "npm:figures": { - "type": "npm", - "name": "npm:figures", - "data": { - "version": "6.1.0", - "packageName": "figures", - "hash": "sha512-d+l3qxjSesT4V7v2fh+QnmFnUWv9lSpjarhShNTgBOfA0ttejbQUAlHLitbjkoRiDulW0OPoQPYIGhIC8ohejg==" - } - }, - "npm:file-entry-cache": { - "type": "npm", - "name": "npm:file-entry-cache", - "data": { - "version": "8.0.0", - "packageName": "file-entry-cache", - "hash": "sha512-XXTUwCvisa5oacNGRP9SfNtYBNAMi+RPwBFmblZEF7N7swHYQS6/Zfk7SRwx4D5j3CH211YNRco1DEMNVfZCnQ==" - } - }, - "npm:file-uri-to-path": { - "type": "npm", - "name": "npm:file-uri-to-path", - "data": { - "version": "1.0.0", - "packageName": "file-uri-to-path", - "hash": "sha512-0Zt+s3L7Vf1biwWZ29aARiVYLx7iMGnEUl9x33fbB/j3jR81u/O2LbqK+Bm1CDSNDKVtJ/YjwY7TUd5SkeLQLw==" - } - }, - "npm:filelist": { - "type": "npm", - "name": "npm:filelist", - "data": { - "version": "1.0.6", - "packageName": "filelist", - "hash": "sha512-5giy2PkLYY1cP39p17Ech+2xlpTRL9HLspOfEgm0L6CwBXBTgsK5ou0JtzYuepxkaQ/tvhCFIJ5uXo0OrM2DxA==" - } - }, - "npm:fill-range": { - "type": "npm", - "name": "npm:fill-range", - "data": { - "version": "7.1.1", - "packageName": "fill-range", - "hash": "sha512-YsGpe3WHLK8ZYi4tWDg2Jy3ebRz2rXowDxnld4bkQB00cc/1Zw9AWnC0i9ztDJitivtQvaI9KaLyKrc+hBW0yg==" - } - }, - "npm:finalhandler": { - "type": "npm", - "name": "npm:finalhandler", - "data": { - "version": "2.1.1", - "packageName": "finalhandler", - "hash": "sha512-S8KoZgRZN+a5rNwqTxlZZePjT/4cnm0ROV70LedRHZ0p8u9fRID0hJUZQpkKLzro8LfmC8sx23bY6tVNxv8pQA==" - } - }, - "npm:find-babel-config": { - "type": "npm", - "name": "npm:find-babel-config", - "data": { - "version": "2.1.2", - "packageName": "find-babel-config", - "hash": "sha512-ZfZp1rQyp4gyuxqt1ZqjFGVeVBvmpURMqdIWXbPRfB97Bf6BzdK/xSIbylEINzQ0kB5tlDQfn9HkNXXWsqTqLg==" - } - }, - "npm:find-my-way": { - "type": "npm", - "name": "npm:find-my-way", - "data": { - "version": "9.5.0", - "packageName": "find-my-way", - "hash": "sha512-VW2RfnmscZO5KgBY5XVyKREMW5nMZcxDy+buTOsL+zIPnBlbKm+00sgzoQzq1EVh4aALZLfKdwv6atBGcjvjrQ==" - } - }, - "npm:find-up@3.0.0": { - "type": "npm", - "name": "npm:find-up@3.0.0", - "data": { - "version": "3.0.0", - "packageName": "find-up", - "hash": "sha512-1yD6RmLI1XBfxugvORwlck6f75tYL+iR0jqwsOrOxMZyGYqUuDhJ0l4AXdO1iX/FTs9cBAMEk1gWSEx1kSbylg==" - } - }, - "npm:find-up": { - "type": "npm", - "name": "npm:find-up", - "data": { - "version": "5.0.0", - "packageName": "find-up", - "hash": "sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==" - } - }, - "npm:flat-cache": { - "type": "npm", - "name": "npm:flat-cache", - "data": { - "version": "4.0.1", - "packageName": "flat-cache", - "hash": "sha512-f7ccFPK3SXFHpx15UIGyRJ/FJQctuKZ0zVuN3frBo4HnK3cay9VEW0R6yPYFHC0AgqhukPzKjq22t5DmAyqGyw==" - } - }, - "npm:flat": { - "type": "npm", - "name": "npm:flat", - "data": { - "version": "5.0.2", - "packageName": "flat", - "hash": "sha512-b6suED+5/3rTpUBdG1gupIl8MPFCAMA0QXwmljLhvCUKcUvdE4gWky9zpuGCcXHOsz4J9wPGNWq6OKpmIzz3hQ==" - } - }, - "npm:flatted": { - "type": "npm", - "name": "npm:flatted", - "data": { - "version": "3.3.3", - "packageName": "flatted", - "hash": "sha512-GX+ysw4PBCz0PzosHDepZGANEuFCMLrnRTiEy9McGjmkCQYwRq4A/X786G/fjM/+OjsWSU1ZrY5qyARZmO/uwg==" - } - }, - "npm:follow-redirects": { - "type": "npm", - "name": "npm:follow-redirects", - "data": { - "version": "1.15.11", - "packageName": "follow-redirects", - "hash": "sha512-deG2P0JfjrTxl50XGCDyfI97ZGVCxIpfKYmfyrQ54n5FO/0gfIES8C/Psl6kWVDolizcaaxZJnTS0QSMxvnsBQ==" - } - }, - "npm:for-each": { - "type": "npm", - "name": "npm:for-each", - "data": { - "version": "0.3.5", - "packageName": "for-each", - "hash": "sha512-dKx12eRCVIzqCxFGplyFKJMPvLEWgmNtUrpTiJIR5u97zEhRG8ySrtboPHZXx7daLxQVrl643cTzbab2tkQjxg==" - } - }, - "npm:foreground-child": { - "type": "npm", - "name": "npm:foreground-child", - "data": { - "version": "3.3.1", - "packageName": "foreground-child", - "hash": "sha512-gIXjKqtFuWEgzFRJA9WCQeSJLZDjgJUOMCMzxtvFq/37KojM1BFGufqsCy0r4qSQmYLsZYMeyRqzIWOMup03sw==" - } - }, - "npm:form-data": { - "type": "npm", - "name": "npm:form-data", - "data": { - "version": "4.0.5", - "packageName": "form-data", - "hash": "sha512-8RipRLol37bNs2bhoV67fiTEvdTrbMUYcFTiy3+wuuOnUog2QBHCZWXDRijWQfAkhBj2Uf5UnVaiWwA5vdd82w==" - } - }, - "npm:formatly": { - "type": "npm", - "name": "npm:formatly", - "data": { - "version": "0.3.0", - "packageName": "formatly", - "hash": "sha512-9XNj/o4wrRFyhSMJOvsuyMwy8aUfBaZ1VrqHVfohyXf0Sw0e+yfKG+xZaY3arGCOMdwFsqObtzVOc1gU9KiT9w==" - } - }, - "npm:formdata-polyfill": { - "type": "npm", - "name": "npm:formdata-polyfill", - "data": { - "version": "4.0.10", - "packageName": "formdata-polyfill", - "hash": "sha512-buewHzMvYL29jdeQTVILecSaZKnt/RJWjoZCF5OW60Z67/GmSLBkOFM7qh1PI3zFNtJbaZL5eQu1vLfazOwj4g==" - } - }, - "npm:forwarded": { - "type": "npm", - "name": "npm:forwarded", - "data": { - "version": "0.2.0", - "packageName": "forwarded", - "hash": "sha512-buRG0fpBtRHSTCOASe6hD258tEubFoRLb4ZNA6NxMVHNw2gOcwHo9wyablzMzOA5z9xA9L1KNjk/Nt6MT9aYow==" - } - }, - "npm:fraction.js": { - "type": "npm", - "name": "npm:fraction.js", - "data": { - "version": "5.3.4", - "packageName": "fraction.js", - "hash": "sha512-1X1NTtiJphryn/uLQz3whtY6jK3fTqoE3ohKs0tT+Ujr1W59oopxmoEh7Lu5p6vBaPbgoM0bzveAW4Qi5RyWDQ==" - } - }, - "npm:fresh": { - "type": "npm", - "name": "npm:fresh", - "data": { - "version": "2.0.0", - "packageName": "fresh", - "hash": "sha512-Rx/WycZ60HOaqLKAi6cHRKKI7zxWbJ31MhntmtwMoaTeF7XFH9hhBp8vITaMidfljRQ6eYWCKkaTK+ykVJHP2A==" - } - }, - "npm:front-matter": { - "type": "npm", - "name": "npm:front-matter", - "data": { - "version": "4.0.2", - "packageName": "front-matter", - "hash": "sha512-I8ZuJ/qG92NWX8i5x1Y8qyj3vizhXS31OxjKDu3LKP+7/qBgfIKValiZIEwoVoJKUHlhWtYrktkxV1XsX+pPlg==" - } - }, - "npm:fs-constants": { - "type": "npm", - "name": "npm:fs-constants", - "data": { - "version": "1.0.0", - "packageName": "fs-constants", - "hash": "sha512-y6OAwoSIf7FyjMIv94u+b5rdheZEjzR63GTyZJm5qh4Bi+2YgwLCcI/fPFZkL5PSixOt6ZNKm+w+Hfp/Bciwow==" - } - }, - "npm:fs-minipass": { - "type": "npm", - "name": "npm:fs-minipass", - "data": { - "version": "3.0.3", - "packageName": "fs-minipass", - "hash": "sha512-XUBA9XClHbnJWSfBzjkm6RvPsyg3sryZt06BEQoXcF7EK/xpGaQYJgQKDJSUH5SGZ76Y7pFx1QBnXz09rU5Fbw==" - } - }, - "npm:fs.realpath": { - "type": "npm", - "name": "npm:fs.realpath", - "data": { - "version": "1.0.0", - "packageName": "fs.realpath", - "hash": "sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==" - } - }, - "npm:fsevents": { - "type": "npm", - "name": "npm:fsevents", - "data": { - "version": "2.3.3", - "packageName": "fsevents", - "hash": "sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==" - } - }, - "npm:function-bind": { - "type": "npm", - "name": "npm:function-bind", - "data": { - "version": "1.1.2", - "packageName": "function-bind", - "hash": "sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==" - } - }, - "npm:function.prototype.name": { - "type": "npm", - "name": "npm:function.prototype.name", - "data": { - "version": "1.1.8", - "packageName": "function.prototype.name", - "hash": "sha512-e5iwyodOHhbMr/yNrc7fDYG4qlbIvI5gajyzPnb5TCwyhjApznQh1BMFou9b30SevY43gCJKXycoCBjMbsuW0Q==" - } - }, - "npm:functions-have-names": { - "type": "npm", - "name": "npm:functions-have-names", - "data": { - "version": "1.2.3", - "packageName": "functions-have-names", - "hash": "sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ==" - } - }, - "npm:generate-function": { - "type": "npm", - "name": "npm:generate-function", - "data": { - "version": "2.3.1", - "packageName": "generate-function", - "hash": "sha512-eeB5GfMNeevm/GRYq20ShmsaGcmI81kIX2K9XQx5miC8KdHaC6Jm0qQ8ZNeGOi7wYB8OsdxKs+Y2oVuTFuVwKQ==" - } - }, - "npm:generator-function": { - "type": "npm", - "name": "npm:generator-function", - "data": { - "version": "2.0.1", - "packageName": "generator-function", - "hash": "sha512-SFdFmIJi+ybC0vjlHN0ZGVGHc3lgE0DxPAT0djjVg+kjOnSqclqmj0KQ7ykTOLP6YxoqOvuAODGdcHJn+43q3g==" - } - }, - "npm:gensync": { - "type": "npm", - "name": "npm:gensync", - "data": { - "version": "1.0.0-beta.2", - "packageName": "gensync", - "hash": "sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==" - } - }, - "npm:get-caller-file": { - "type": "npm", - "name": "npm:get-caller-file", - "data": { - "version": "2.0.5", - "packageName": "get-caller-file", - "hash": "sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==" - } - }, - "npm:get-intrinsic": { - "type": "npm", - "name": "npm:get-intrinsic", - "data": { - "version": "1.3.0", - "packageName": "get-intrinsic", - "hash": "sha512-9fSjSaos/fRIVIp+xSJlE6lfwhES7LNtKaCBIamHsjr2na1BiABJPo0mOjjz8GJDURarmCPGqaiVg5mfjb98CQ==" - } - }, - "npm:get-nonce": { - "type": "npm", - "name": "npm:get-nonce", - "data": { - "version": "1.0.1", - "packageName": "get-nonce", - "hash": "sha512-FJhYRoDaiatfEkUK8HKlicmu/3SGFD51q3itKDGoSTysQJBnfOcxU5GxnhE1E6soB76MbT0MBtnKJuXyAx+96Q==" - } - }, - "npm:get-port-please": { - "type": "npm", - "name": "npm:get-port-please", - "data": { - "version": "3.2.0", - "packageName": "get-port-please", - "hash": "sha512-I9QVvBw5U/hw3RmWpYKRumUeaDgxTPd401x364rLmWBJcOQ753eov1eTgzDqRG9bqFIfDc7gfzcQEWrUri3o1A==" - } - }, - "npm:get-port": { - "type": "npm", - "name": "npm:get-port", - "data": { - "version": "7.2.0", - "packageName": "get-port", - "hash": "sha512-afP4W205ONCuMoPBqcR6PSXnzX35KTcJygfJfcp+QY+uwm3p20p1YczWXhlICIzGMCxYBQcySEcOgsJcrkyobg==" - } - }, - "npm:get-proto": { - "type": "npm", - "name": "npm:get-proto", - "data": { - "version": "1.0.1", - "packageName": "get-proto", - "hash": "sha512-sTSfBjoXBp89JvIKIefqw7U2CCebsc74kiY6awiGogKtoSGbgjYE/G/+l9sF3MWFPNc9IcoOC4ODfKHfxFmp0g==" - } - }, - "npm:get-stream@5.2.0": { - "type": "npm", - "name": "npm:get-stream@5.2.0", - "data": { - "version": "5.2.0", - "packageName": "get-stream", - "hash": "sha512-nBF+F1rAZVCu/p7rjzgA+Yb4lfYXrpl7a6VmJrU8wF9I1CKvP/QwPNZHnOlwbTkY6dvtFIzFMSyQXbLoTQPRpA==" - } - }, - "npm:get-stream": { - "type": "npm", - "name": "npm:get-stream", - "data": { - "version": "9.0.1", - "packageName": "get-stream", - "hash": "sha512-kVCxPF3vQM/N0B1PmoqVUqgHP+EeVjmZSQn+1oCRPxd2P21P2F19lIgbR3HBosbB1PUhOAoctJnfEn2GbN2eZA==" - } - }, - "npm:get-symbol-description": { - "type": "npm", - "name": "npm:get-symbol-description", - "data": { - "version": "1.1.0", - "packageName": "get-symbol-description", - "hash": "sha512-w9UMqWwJxHNOvoNzSJ2oPF5wvYcvP7jUvYzhp67yEhTi17ZDBBC1z9pTdGuzjD+EFIqLSYRweZjqfiPzQ06Ebg==" - } - }, - "npm:get-tsconfig": { - "type": "npm", - "name": "npm:get-tsconfig", - "data": { - "version": "4.13.7", - "packageName": "get-tsconfig", - "hash": "sha512-7tN6rFgBlMgpBML5j8typ92BKFi2sFQvIdpAqLA2beia5avZDrMs0FLZiM5etShWq5irVyGcGMEA1jcDaK7A/Q==" - } - }, - "npm:get-uri": { - "type": "npm", - "name": "npm:get-uri", - "data": { - "version": "6.0.5", - "packageName": "get-uri", - "hash": "sha512-b1O07XYq8eRuVzBNgJLstU6FYc1tS6wnMtF1I1D9lE8LxZSOGZ7LhxN54yPP6mGw5f2CkXY2BQUL9Fx41qvcIg==" - } - }, - "npm:giget": { - "type": "npm", - "name": "npm:giget", - "data": { - "version": "2.0.0", - "packageName": "giget", - "hash": "sha512-L5bGsVkxJbJgdnwyuheIunkGatUF/zssUoxxjACCseZYAVbaqdh9Tsmmlkl8vYan09H7sbvKt4pS8GqKLBrEzA==" - } - }, - "npm:github-from-package": { - "type": "npm", - "name": "npm:github-from-package", - "data": { - "version": "0.0.0", - "packageName": "github-from-package", - "hash": "sha512-SyHy3T1v2NUXn29OsWdxmK6RwHD+vkj3v8en8AOBZ1wBQ/hCAQ5bAQTD02kW4W9tUp/3Qh6J8r9EvntiyCmOOw==" - } - }, - "npm:github-slugger": { - "type": "npm", - "name": "npm:github-slugger", - "data": { - "version": "2.0.0", - "packageName": "github-slugger", - "hash": "sha512-IaOQ9puYtjrkq7Y0Ygl9KDZnrf/aiUJYUpVf89y8kyaxbRG7Y1SrX/jaumrv81vc61+kiMempujsM3Yw7w5qcw==" - } - }, - "npm:glob-parent@5.1.2": { - "type": "npm", - "name": "npm:glob-parent@5.1.2", - "data": { - "version": "5.1.2", - "packageName": "glob-parent", - "hash": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==" - } - }, - "npm:glob-parent": { - "type": "npm", - "name": "npm:glob-parent", - "data": { - "version": "6.0.2", - "packageName": "glob-parent", - "hash": "sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==" - } - }, - "npm:glob-to-regexp": { - "type": "npm", - "name": "npm:glob-to-regexp", - "data": { - "version": "0.4.1", - "packageName": "glob-to-regexp", - "hash": "sha512-lkX1HJXwyMcprw/5YUZc2s7DrpAiHB21/V+E1rHUrVNokkvB6bqMzT0VfV6/86ZNabt1k14YOIaT7nDvOX3Iiw==" - } - }, - "npm:glob@10.5.0": { - "type": "npm", - "name": "npm:glob@10.5.0", - "data": { - "version": "10.5.0", - "packageName": "glob", - "hash": "sha512-DfXN8DfhJ7NH3Oe7cFmu3NCu1wKbkReJ8TorzSAFbSKrlNaQSKfIzqYqVY8zlbs2NLBbWpRiU52GX2PbaBVNkg==" - } - }, - "npm:glob": { - "type": "npm", - "name": "npm:glob", - "data": { - "version": "13.0.6", - "packageName": "glob", - "hash": "sha512-Wjlyrolmm8uDpm/ogGyXZXb1Z+Ca2B8NbJwqBVg0axK9GbBeoS7yGV6vjXnYdGm6X53iehEuxxbyiKp8QmN4Vw==" - } - }, - "npm:glob@9.3.5": { - "type": "npm", - "name": "npm:glob@9.3.5", - "data": { - "version": "9.3.5", - "packageName": "glob", - "hash": "sha512-e1LleDykUz2Iu+MTYdkSsuWX8lvAjAcs0Xef0lNIu0S2wOAzuTxCJtcd9S3cijlwYF18EsU3rzb8jPVobxDh9Q==" - } - }, - "npm:globals@14.0.0": { - "type": "npm", - "name": "npm:globals@14.0.0", - "data": { - "version": "14.0.0", - "packageName": "globals", - "hash": "sha512-oahGvuMGQlPw/ivIYBjVSrWAfWLBeku5tpPE2fOPLi+WHffIWbuh2tCjhyQhTBPMf5E9jDEH4FOmTYgYwbKwtQ==" - } - }, - "npm:globals": { - "type": "npm", - "name": "npm:globals", - "data": { - "version": "17.4.0", - "packageName": "globals", - "hash": "sha512-hjrNztw/VajQwOLsMNT1cbJiH2muO3OROCHnbehc8eY5JyD2gqz4AcMHPqgaOR59DjgUjYAYLeH699g/eWi2jw==" - } - }, - "npm:globalthis": { - "type": "npm", - "name": "npm:globalthis", - "data": { - "version": "1.0.4", - "packageName": "globalthis", - "hash": "sha512-DpLKbNU4WylpxJykQujfCcwYWiV/Jhm50Goo0wrVILAv5jOr9d+H+UR3PhSCD2rCCEIg0uc+G+muBTwD54JhDQ==" - } - }, - "npm:globby": { - "type": "npm", - "name": "npm:globby", - "data": { - "version": "16.1.1", - "packageName": "globby", - "hash": "sha512-dW7vl+yiAJSp6aCekaVnVJxurRv7DCOLyXqEG3RYMYUg7AuJ2jCqPkZTA8ooqC2vtnkaMcV5WfFBMuEnTu1OQg==" - } - }, - "npm:gopd": { - "type": "npm", - "name": "npm:gopd", - "data": { - "version": "1.2.0", - "packageName": "gopd", - "hash": "sha512-ZUKRh6/kUFoAiTAtTYPZJ3hw9wNxx+BIBOijnlG9PnrJsCcSjs1wyyD6vJpaYtgnzDrKYRSqf3OO6Rfa93xsRg==" - } - }, - "npm:got": { - "type": "npm", - "name": "npm:got", - "data": { - "version": "11.8.6", - "packageName": "got", - "hash": "sha512-6tfZ91bOr7bOXnK7PRDCGBLa1H4U080YHNaAQ2KsMGlLEzRbk44nsZF2E1IeRc3vtJHPVbKCYgdFbaGO2ljd8g==" - } - }, - "npm:graceful-fs": { - "type": "npm", - "name": "npm:graceful-fs", - "data": { - "version": "4.2.11", - "packageName": "graceful-fs", - "hash": "sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==" - } - }, - "npm:gradient-parser": { - "type": "npm", - "name": "npm:gradient-parser", - "data": { - "version": "1.1.1", - "packageName": "gradient-parser", - "hash": "sha512-Hu0YfNU+38EsTmnUfLXUKFMXq9yz7htGYpF4x+dlbBhUCvIvzLt0yVLT/gJRmvLKFJdqNFrz4eKkIUjIXSr7Tw==" - } - }, - "npm:grammex": { - "type": "npm", - "name": "npm:grammex", - "data": { - "version": "3.1.12", - "packageName": "grammex", - "hash": "sha512-6ufJOsSA7LcQehIJNCO7HIBykfM7DXQual0Ny780/DEcJIpBlHRvcqEBWGPYd7hrXL2GJ3oJI1MIhaXjWmLQOQ==" - } - }, - "npm:graphmatch": { - "type": "npm", - "name": "npm:graphmatch", - "data": { - "version": "1.1.0", - "packageName": "graphmatch", - "hash": "sha512-0E62MaTW5rPZVRLyIJZG/YejmdA/Xr1QydHEw3Vt+qOKkMIOE8WDLc9ZX2bmAjtJFZcId4lEdrdmASsEy7D1QA==" - } - }, - "npm:h3": { - "type": "npm", - "name": "npm:h3", - "data": { - "version": "1.15.10", - "packageName": "h3", - "hash": "sha512-YzJeWSkDZxAhvmp8dexjRK5hxziRO7I9m0N53WhvYL5NiWfkUkzssVzY9jvGu0HBoLFW6+duYmNSn6MaZBCCtg==" - } - }, - "npm:has-bigints": { - "type": "npm", - "name": "npm:has-bigints", - "data": { - "version": "1.1.0", - "packageName": "has-bigints", - "hash": "sha512-R3pbpkcIqv2Pm3dUwgjclDRVmWpTJW2DcMzcIhEXEx1oh/CEMObMm3KLmRJOdvhM7o4uQBnwr8pzRK2sJWIqfg==" - } - }, - "npm:has-flag": { - "type": "npm", - "name": "npm:has-flag", - "data": { - "version": "4.0.0", - "packageName": "has-flag", - "hash": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==" - } - }, - "npm:has-property-descriptors": { - "type": "npm", - "name": "npm:has-property-descriptors", - "data": { - "version": "1.0.2", - "packageName": "has-property-descriptors", - "hash": "sha512-55JNKuIW+vq4Ke1BjOTjM2YctQIvCT7GFzHwmfZPGo5wnrgkid0YQtnAleFSqumZm4az3n2BS+erby5ipJdgrg==" - } - }, - "npm:has-proto": { - "type": "npm", - "name": "npm:has-proto", - "data": { - "version": "1.2.0", - "packageName": "has-proto", - "hash": "sha512-KIL7eQPfHQRC8+XluaIw7BHUwwqL19bQn4hzNgdr+1wXoU0KKj6rufu47lhY7KbJR2C6T6+PfyN0Ea7wkSS+qQ==" - } - }, - "npm:has-symbols": { - "type": "npm", - "name": "npm:has-symbols", - "data": { - "version": "1.1.0", - "packageName": "has-symbols", - "hash": "sha512-1cDNdwJ2Jaohmb3sg4OmKaMBwuC48sYni5HUw2DvsC8LjGTLK9h+eb1X6RyuOHe4hT0ULCW68iomhjUoKUqlPQ==" - } - }, - "npm:has-tostringtag": { - "type": "npm", - "name": "npm:has-tostringtag", - "data": { - "version": "1.0.2", - "packageName": "has-tostringtag", - "hash": "sha512-NqADB8VjPFLM2V0VvHUewwwsw0ZWBaIdgo+ieHtK3hasLz4qeCRjYcqfB6AQrBggRKppKF8L52/VqdVsO47Dlw==" - } - }, - "npm:hasown": { - "type": "npm", - "name": "npm:hasown", - "data": { - "version": "2.0.2", - "packageName": "hasown", - "hash": "sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ==" - } - }, - "npm:he": { - "type": "npm", - "name": "npm:he", - "data": { - "version": "1.2.0", - "packageName": "he", - "hash": "sha512-F/1DnUGPopORZi0ni+CvrCgHQ5FyEAHRLSApuYWMmrbSwoN2Mn/7k+Gl38gJnR7yyDZk6WLXwiGod1JOWNDKGw==" - } - }, - "npm:hey-listen": { - "type": "npm", - "name": "npm:hey-listen", - "data": { - "version": "1.0.8", - "packageName": "hey-listen", - "hash": "sha512-COpmrF2NOg4TBWUJ5UVyaCU2A88wEMkUPK4hNqyCkqHbxT92BbvfjoSozkAIIm6XhicGlJHhFdullInrdhwU8Q==" - } - }, - "npm:hono@4.11.4": { - "type": "npm", - "name": "npm:hono@4.11.4", - "data": { - "version": "4.11.4", - "packageName": "hono", - "hash": "sha512-U7tt8JsyrxSRKspfhtLET79pU8K+tInj5QZXs1jSugO1Vq5dFj3kmZsRldo29mTBfcjDRVRXrEZ6LS63Cog9ZA==" - } - }, - "npm:hono": { - "type": "npm", - "name": "npm:hono", - "data": { - "version": "4.12.8", - "packageName": "hono", - "hash": "sha512-VJCEvtrezO1IAR+kqEYnxUOoStaQPGrCmX3j4wDTNOcD1uRPFpGlwQUIW8niPuvHXaTUxeOUl5MMDGrl+tmO9A==" - } - }, - "npm:hookable": { - "type": "npm", - "name": "npm:hookable", - "data": { - "version": "6.1.0", - "packageName": "hookable", - "hash": "sha512-ZoKZSJgu8voGK2geJS+6YtYjvIzu9AOM/KZXsBxr83uhLL++e9pEv/dlgwgy3dvHg06kTz6JOh1hk3C8Ceiymw==" - } - }, - "npm:html-encoding-sniffer": { - "type": "npm", - "name": "npm:html-encoding-sniffer", - "data": { - "version": "3.0.0", - "packageName": "html-encoding-sniffer", - "hash": "sha512-oWv4T4yJ52iKrufjnyZPkrN0CH3QnrUqdB6In1g5Fe1mia8GmF36gnfNySxoZtxD5+NmYw1EElVXiBk93UeskA==" - } - }, - "npm:html-entities": { - "type": "npm", - "name": "npm:html-entities", - "data": { - "version": "2.3.3", - "packageName": "html-entities", - "hash": "sha512-DV5Ln36z34NNTDgnz0EWGBLZENelNAtkiFA4kyNOG2tDI6Mz1uSWiq1wAKdyjnJwyDiDO7Fa2SO1CTxPXL8VxA==" - } - }, - "npm:html-tags": { - "type": "npm", - "name": "npm:html-tags", - "data": { - "version": "3.3.1", - "packageName": "html-tags", - "hash": "sha512-ztqyC3kLto0e9WbNp0aeP+M3kTt+nbaIveGmUxAtZa+8iFgKLUOD4YKM5j+f3QD89bra7UeumolZHKuOXnTmeQ==" - } - }, - "npm:http-cache-semantics": { - "type": "npm", - "name": "npm:http-cache-semantics", - "data": { - "version": "4.2.0", - "packageName": "http-cache-semantics", - "hash": "sha512-dTxcvPXqPvXBQpq5dUr6mEMJX4oIEFv6bwom3FDwKRDsuIjjJGANqhBuoAn9c1RQJIdAKav33ED65E2ys+87QQ==" - } - }, - "npm:http-errors": { - "type": "npm", - "name": "npm:http-errors", - "data": { - "version": "2.0.1", - "packageName": "http-errors", - "hash": "sha512-4FbRdAX+bSdmo4AUFuS0WNiPz8NgFt+r8ThgNWmlrjQjt1Q7ZR9+zTlce2859x4KSXrwIsaeTqDoKQmtP8pLmQ==" - } - }, - "npm:http-proxy-agent": { - "type": "npm", - "name": "npm:http-proxy-agent", - "data": { - "version": "7.0.2", - "packageName": "http-proxy-agent", - "hash": "sha512-T1gkAiYYDWYx3V5Bmyu7HcfcvL7mUrTWiM6yOfa3PIphViJ/gFPbvidQ+veqSOHci/PxBcDabeUNCzpOODJZig==" - } - }, - "npm:http-proxy": { - "type": "npm", - "name": "npm:http-proxy", - "data": { - "version": "1.18.1", - "packageName": "http-proxy", - "hash": "sha512-7mz/721AbnJwIVbnaSv1Cz3Am0ZLT/UBwkC92VlxhXv/k/BBQfM2fXElQNC27BVGr0uwUpplYPQM9LnaBMR5NQ==" - } - }, - "npm:http-server": { - "type": "npm", - "name": "npm:http-server", - "data": { - "version": "14.1.1", - "packageName": "http-server", - "hash": "sha512-+cbxadF40UXd9T01zUHgA+rlo2Bg1Srer4+B4NwIHdaGxAGGv59nYRnGGDJ9LBk7alpS0US+J+bLLdQOOkJq4A==" - } - }, - "npm:http-status-codes": { - "type": "npm", - "name": "npm:http-status-codes", - "data": { - "version": "2.3.0", - "packageName": "http-status-codes", - "hash": "sha512-RJ8XvFvpPM/Dmc5SV+dC4y5PCeOhT3x1Hq0NU3rjGeg5a/CqlhZ7uudknPwZFz4aeAXDcbAyaeP7GAo9lvngtA==" - } - }, - "npm:http2-wrapper": { - "type": "npm", - "name": "npm:http2-wrapper", - "data": { - "version": "1.0.3", - "packageName": "http2-wrapper", - "hash": "sha512-V+23sDMr12Wnz7iTcDeJr3O6AIxlnvT/bmaAAAP/Xda35C90p9599p0F1eHR/N1KILWSoWVAiOMFjBBXaXSMxg==" - } - }, - "npm:https-proxy-agent": { - "type": "npm", - "name": "npm:https-proxy-agent", - "data": { - "version": "5.0.1", - "packageName": "https-proxy-agent", - "hash": "sha512-dFcAjpTQFgoLMzC2VwU+C/CbS7uRL0lWmxDITmqm7C+7F0Odmj6s9l6alZc6AELXhrnggM2CeWSXHGOdX2YtwA==" - } - }, - "npm:https-proxy-agent@7.0.6": { - "type": "npm", - "name": "npm:https-proxy-agent@7.0.6", - "data": { - "version": "7.0.6", - "packageName": "https-proxy-agent", - "hash": "sha512-vK9P5/iUfdl95AI+JVyUuIcVtd4ofvtrOr3HNtM2yxC9bnMbEdp3x01OhQNnjb8IJYi38VlTE3mBXwcfvywuSw==" - } - }, - "npm:human-signals": { - "type": "npm", - "name": "npm:human-signals", - "data": { - "version": "8.0.1", - "packageName": "human-signals", - "hash": "sha512-eKCa6bwnJhvxj14kZk5NCPc6Hb6BdsU9DZcOnmQKSnO1VKrfV0zCvtttPZUsBvjmNDn8rpcJfpwSYnHBjc95MQ==" - } - }, - "npm:humanize-list": { - "type": "npm", - "name": "npm:humanize-list", - "data": { - "version": "1.0.1", - "packageName": "humanize-list", - "hash": "sha512-4+p3fCRF21oUqxhK0yZ6yaSP/H5/wZumc7q1fH99RkW7Q13aAxDeP78BKjoR+6y+kaHqKF/JWuQhsNuuI2NKtA==" - } - }, - "npm:iconv-lite": { - "type": "npm", - "name": "npm:iconv-lite", - "data": { - "version": "0.6.3", - "packageName": "iconv-lite", - "hash": "sha512-4fCk79wshMdzMp2rH06qWrJE4iolqLhCUH+OiuIgU++RB0+94NlDL81atO7GX55uUKueo0txHNtvEyI6D7WdMw==" - } - }, - "npm:iconv-lite@0.7.2": { - "type": "npm", - "name": "npm:iconv-lite@0.7.2", - "data": { - "version": "0.7.2", - "packageName": "iconv-lite", - "hash": "sha512-im9DjEDQ55s9fL4EYzOAv0yMqmMBSZp6G0VvFyTMPKWxiSBHUj9NW/qqLmXUwXrrM7AvqSlTCfvqRb0cM8yYqw==" - } - }, - "npm:ieee754": { - "type": "npm", - "name": "npm:ieee754", - "data": { - "version": "1.2.1", - "packageName": "ieee754", - "hash": "sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==" - } - }, - "npm:ignore": { - "type": "npm", - "name": "npm:ignore", - "data": { - "version": "5.3.2", - "packageName": "ignore", - "hash": "sha512-hsBTNUqQTDwkWtcdYI2i06Y/nUBEsNEDJKjWdigLvegy8kDuJAS8uRlpkkcQpyEXL0Z/pjDy5HBmMjRCJ2gq+g==" - } - }, - "npm:ignore@7.0.5": { - "type": "npm", - "name": "npm:ignore@7.0.5", - "data": { - "version": "7.0.5", - "packageName": "ignore", - "hash": "sha512-Hs59xBNfUIunMFgWAbGX5cq6893IbWg4KnrjbYwX3tx0ztorVgTDA6B2sxf8ejHJ4wz8BqGUMYlnzNBer5NvGg==" - } - }, - "npm:import-fresh": { - "type": "npm", - "name": "npm:import-fresh", - "data": { - "version": "3.3.1", - "packageName": "import-fresh", - "hash": "sha512-TR3KfrTZTYLPB6jUjfx6MF9WcWrHL9su5TObK4ZkYgBdWKPOFoSoQIdEuTuR82pmtxH2spWG9h6etwfr1pLBqQ==" - } - }, - "npm:import-without-cache": { - "type": "npm", - "name": "npm:import-without-cache", - "data": { - "version": "0.2.5", - "packageName": "import-without-cache", - "hash": "sha512-B6Lc2s6yApwnD2/pMzFh/d5AVjdsDXjgkeJ766FmFuJELIGHNycKRj+l3A39yZPM4CchqNCB4RITEAYB1KUM6A==" - } - }, - "npm:imurmurhash": { - "type": "npm", - "name": "npm:imurmurhash", - "data": { - "version": "0.1.4", - "packageName": "imurmurhash", - "hash": "sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==" - } - }, - "npm:inherits": { - "type": "npm", - "name": "npm:inherits", - "data": { - "version": "2.0.4", - "packageName": "inherits", - "hash": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==" - } - }, - "npm:ini": { - "type": "npm", - "name": "npm:ini", - "data": { - "version": "1.3.8", - "packageName": "ini", - "hash": "sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew==" - } - }, - "npm:inline-style-parser": { - "type": "npm", - "name": "npm:inline-style-parser", - "data": { - "version": "0.2.4", - "packageName": "inline-style-parser", - "hash": "sha512-0aO8FkhNZlj/ZIbNi7Lxxr12obT7cL1moPfE4tg1LkX7LlLfC6DeX4l2ZEud1ukP9jNQyNnfzQVqwbwmAATY4Q==" - } - }, - "npm:install-artifact-from-github": { - "type": "npm", - "name": "npm:install-artifact-from-github", - "data": { - "version": "1.4.0", - "packageName": "install-artifact-from-github", - "hash": "sha512-+y6WywKZREw5rq7U2jvr2nmZpT7cbWbQQ0N/qfcseYnzHFz2cZz1Et52oY+XttYuYeTkI8Y+R2JNWj68MpQFSg==" - } - }, - "npm:internal-slot": { - "type": "npm", - "name": "npm:internal-slot", - "data": { - "version": "1.1.0", - "packageName": "internal-slot", - "hash": "sha512-4gd7VpWNQNB4UKKCFFVcp1AVv+FMOgs9NKzjHKusc8jTMhd5eL1NqQqOpE0KzMds804/yHlglp3uxgluOqAPLw==" - } - }, - "npm:ip-address": { - "type": "npm", - "name": "npm:ip-address", - "data": { - "version": "10.0.1", - "packageName": "ip-address", - "hash": "sha512-NWv9YLW4PoW2B7xtzaS3NCot75m6nK7Icdv0o3lfMceJVRfSoQwqD4wEH5rLwoKJwUiZ/rfpiVBhnaF0FK4HoA==" - } - }, - "npm:ip-regex": { - "type": "npm", - "name": "npm:ip-regex", - "data": { - "version": "4.3.0", - "packageName": "ip-regex", - "hash": "sha512-B9ZWJxHHOHUhUjCPrMpLD4xEq35bUTClHM1S6CBU5ixQnkZmwipwgc96vAd7AAGM9TGHvJR+Uss+/Ak6UphK+Q==" - } - }, - "npm:ipaddr.js@1.9.1": { - "type": "npm", - "name": "npm:ipaddr.js@1.9.1", - "data": { - "version": "1.9.1", - "packageName": "ipaddr.js", - "hash": "sha512-0KI/607xoxSToH7GjN1FfSbLoU0+btTicjsQSWQlh/hZykN8KpmMf7uYwPW3R+akZ6R/w18ZlXSHBYXiYUPO3g==" - } - }, - "npm:ipaddr.js": { - "type": "npm", - "name": "npm:ipaddr.js", - "data": { - "version": "2.3.0", - "packageName": "ipaddr.js", - "hash": "sha512-Zv/pA+ciVFbCSBBjGfaKUya/CcGmUHzTydLMaTwrUUEM2DIEO3iZvueGxmacvmN50fGpGVKeTXpb2LcYQxeVdg==" - } - }, - "npm:iron-webcrypto": { - "type": "npm", - "name": "npm:iron-webcrypto", - "data": { - "version": "1.2.1", - "packageName": "iron-webcrypto", - "hash": "sha512-feOM6FaSr6rEABp/eDfVseKyTMDt+KGpeB35SkVn9Tyn0CqvVsY3EwI0v5i8nMHyJnzCIQf7nsy3p41TPkJZhg==" - } - }, - "npm:is-array-buffer": { - "type": "npm", - "name": "npm:is-array-buffer", - "data": { - "version": "3.0.5", - "packageName": "is-array-buffer", - "hash": "sha512-DDfANUiiG2wC1qawP66qlTugJeL5HyzMpfr8lLK+jMQirGzNod0B12cFB/9q838Ru27sBwfw78/rdoU7RERz6A==" - } - }, - "npm:is-arrayish": { - "type": "npm", - "name": "npm:is-arrayish", - "data": { - "version": "0.2.1", - "packageName": "is-arrayish", - "hash": "sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg==" - } - }, - "npm:is-arrayish@0.3.4": { - "type": "npm", - "name": "npm:is-arrayish@0.3.4", - "data": { - "version": "0.3.4", - "packageName": "is-arrayish", - "hash": "sha512-m6UrgzFVUYawGBh1dUsWR5M2Clqic9RVXC/9f8ceNlv2IcO9j9J/z8UoCLPqtsPBFNzEpfR3xftohbfqDx8EQA==" - } - }, - "npm:is-async-function": { - "type": "npm", - "name": "npm:is-async-function", - "data": { - "version": "2.1.1", - "packageName": "is-async-function", - "hash": "sha512-9dgM/cZBnNvjzaMYHVoxxfPj2QXt22Ev7SuuPrs+xav0ukGB0S6d4ydZdEiM48kLx5kDV+QBPrpVnFyefL8kkQ==" - } - }, - "npm:is-bigint": { - "type": "npm", - "name": "npm:is-bigint", - "data": { - "version": "1.1.0", - "packageName": "is-bigint", - "hash": "sha512-n4ZT37wG78iz03xPRKJrHTdZbe3IicyucEtdRsV5yglwc3GyUfbAfpSeD0FJ41NbUNSt5wbhqfp1fS+BgnvDFQ==" - } - }, - "npm:is-boolean-object": { - "type": "npm", - "name": "npm:is-boolean-object", - "data": { - "version": "1.2.2", - "packageName": "is-boolean-object", - "hash": "sha512-wa56o2/ElJMYqjCjGkXri7it5FbebW5usLw/nPmCMs5DeZ7eziSYZhSmPRn0txqeW4LnAmQQU7FgqLpsEFKM4A==" - } - }, - "npm:is-callable": { - "type": "npm", - "name": "npm:is-callable", - "data": { - "version": "1.2.7", - "packageName": "is-callable", - "hash": "sha512-1BC0BVFhS/p0qtw6enp8e+8OD0UrK0oFLztSjNzhcKA3WDuJxxAPXzPuPtKkjEY9UUoEWlX/8fgKeu2S8i9JTA==" - } - }, - "npm:is-core-module": { - "type": "npm", - "name": "npm:is-core-module", - "data": { - "version": "2.16.1", - "packageName": "is-core-module", - "hash": "sha512-UfoeMA6fIJ8wTYFEUjelnaGI67v6+N7qXJEvQuIGa99l4xsCruSYOVSQ0uPANn4dAzm8lkYPaKLrrijLq7x23w==" - } - }, - "npm:is-data-view": { - "type": "npm", - "name": "npm:is-data-view", - "data": { - "version": "1.0.2", - "packageName": "is-data-view", - "hash": "sha512-RKtWF8pGmS87i2D6gqQu/l7EYRlVdfzemCJN/P3UOs//x1QE7mfhvzHIApBTRf7axvT6DMGwSwBXYCT0nfB9xw==" - } - }, - "npm:is-date-object": { - "type": "npm", - "name": "npm:is-date-object", - "data": { - "version": "1.1.0", - "packageName": "is-date-object", - "hash": "sha512-PwwhEakHVKTdRNVOw+/Gyh0+MzlCl4R6qKvkhuvLtPMggI1WAHt9sOwZxQLSGpUaDnrdyDsomoRgNnCfKNSXXg==" - } - }, - "npm:is-docker": { - "type": "npm", - "name": "npm:is-docker", - "data": { - "version": "2.2.1", - "packageName": "is-docker", - "hash": "sha512-F+i2BKsFrH66iaUFc0woD8sLy8getkwTwtOBjvs56Cx4CgJDeKQeqfz8wAYiSb8JOprWhHH5p77PbmYCvvUuXQ==" - } - }, - "npm:is-extglob": { - "type": "npm", - "name": "npm:is-extglob", - "data": { - "version": "2.1.1", - "packageName": "is-extglob", - "hash": "sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==" - } - }, - "npm:is-finalizationregistry": { - "type": "npm", - "name": "npm:is-finalizationregistry", - "data": { - "version": "1.1.1", - "packageName": "is-finalizationregistry", - "hash": "sha512-1pC6N8qWJbWoPtEjgcL2xyhQOP491EQjeUo3qTKcmV8YSDDJrOepfG8pcC7h/QgnQHYSv0mJ3Z/ZWxmatVrysg==" - } - }, - "npm:is-fullwidth-code-point": { - "type": "npm", - "name": "npm:is-fullwidth-code-point", - "data": { - "version": "3.0.0", - "packageName": "is-fullwidth-code-point", - "hash": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==" - } - }, - "npm:is-generator-function": { - "type": "npm", - "name": "npm:is-generator-function", - "data": { - "version": "1.1.2", - "packageName": "is-generator-function", - "hash": "sha512-upqt1SkGkODW9tsGNG5mtXTXtECizwtS2kA161M+gJPc1xdb/Ax629af6YrTwcOeQHbewrPNlE5Dx7kzvXTizA==" - } - }, - "npm:is-glob": { - "type": "npm", - "name": "npm:is-glob", - "data": { - "version": "4.0.3", - "packageName": "is-glob", - "hash": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==" - } - }, - "npm:is-html-content": { - "type": "npm", - "name": "npm:is-html-content", - "data": { - "version": "1.0.0", - "packageName": "is-html-content", - "hash": "sha512-GhUQOpN/YQ65rybhJ77MjabmrY39IZ/OHiKJZPC+WPg6KytNaqKlbs1tNizJ0Aluz4MOuAV9ItVSBKIZTAx0Iw==" - } - }, - "npm:is-html": { - "type": "npm", - "name": "npm:is-html", - "data": { - "version": "2.0.0", - "packageName": "is-html", - "hash": "sha512-S+OpgB5i7wzIue/YSE5hg0e5ZYfG3hhpNh9KGl6ayJ38p7ED6wxQLd1TV91xHpcTvw90KMJ9EwN3F/iNflHBVg==" - } - }, - "npm:is-interactive": { - "type": "npm", - "name": "npm:is-interactive", - "data": { - "version": "1.0.0", - "packageName": "is-interactive", - "hash": "sha512-2HvIEKRoqS62guEC+qBjpvRubdX910WCMuJTZ+I9yvqKU2/12eSL549HMwtabb4oupdj2sMP50k+XJfB/8JE6w==" - } - }, - "npm:is-map": { - "type": "npm", - "name": "npm:is-map", - "data": { - "version": "2.0.3", - "packageName": "is-map", - "hash": "sha512-1Qed0/Hr2m+YqxnM09CjA2d/i6YZNfF6R2oRAOj36eUdS6qIV/huPJNSEpKbupewFs+ZsJlxsjjPbc0/afW6Lw==" - } - }, - "npm:is-negative-zero": { - "type": "npm", - "name": "npm:is-negative-zero", - "data": { - "version": "2.0.3", - "packageName": "is-negative-zero", - "hash": "sha512-5KoIu2Ngpyek75jXodFvnafB6DJgr3u8uuK0LEZJjrU19DrMD3EVERaR8sjz8CCGgpZvxPl9SuE1GMVPFHx1mw==" - } - }, - "npm:is-number-object": { - "type": "npm", - "name": "npm:is-number-object", - "data": { - "version": "1.1.1", - "packageName": "is-number-object", - "hash": "sha512-lZhclumE1G6VYD8VHe35wFaIif+CTy5SJIi5+3y4psDgWu4wPDoBhF8NxUOinEc7pHgiTsT6MaBb92rKhhD+Xw==" - } - }, - "npm:is-number": { - "type": "npm", - "name": "npm:is-number", - "data": { - "version": "7.0.0", - "packageName": "is-number", - "hash": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==" - } - }, - "npm:is-path-inside": { - "type": "npm", - "name": "npm:is-path-inside", - "data": { - "version": "4.0.0", - "packageName": "is-path-inside", - "hash": "sha512-lJJV/5dYS+RcL8uQdBDW9c9uWFLLBNRyFhnAKXw5tVqLlKZ4RMGZKv+YQ/IA3OhD+RpbJa1LLFM1FQPGyIXvOA==" - } - }, - "npm:is-plain-obj": { - "type": "npm", - "name": "npm:is-plain-obj", - "data": { - "version": "4.1.0", - "packageName": "is-plain-obj", - "hash": "sha512-+Pgi+vMuUNkJyExiMBt5IlFoMyKnr5zhJ4Uspz58WOhBF5QoIZkFyNHIbBAtHwzVAgk5RtndVNsDRN61/mmDqg==" - } - }, - "npm:is-promise": { - "type": "npm", - "name": "npm:is-promise", - "data": { - "version": "4.0.0", - "packageName": "is-promise", - "hash": "sha512-hvpoI6korhJMnej285dSg6nu1+e6uxs7zG3BYAm5byqDsgJNWwxzM6z6iZiAgQR4TJ30JmBTOwqZUw3WlyH3AQ==" - } - }, - "npm:is-property": { - "type": "npm", - "name": "npm:is-property", - "data": { - "version": "1.0.2", - "packageName": "is-property", - "hash": "sha512-Ks/IoX00TtClbGQr4TWXemAnktAQvYB7HzcCxDGqEZU6oCmb2INHuOoKxbtR+HFkmYWBKv/dOZtGRiAjDhj92g==" - } - }, - "npm:is-regex": { - "type": "npm", - "name": "npm:is-regex", - "data": { - "version": "1.2.1", - "packageName": "is-regex", - "hash": "sha512-MjYsKHO5O7mCsmRGxWcLWheFqN9DJ/2TmngvjKXihe6efViPqc274+Fx/4fYj/r03+ESvBdTXK0V6tA3rgez1g==" - } - }, - "npm:is-set": { - "type": "npm", - "name": "npm:is-set", - "data": { - "version": "2.0.3", - "packageName": "is-set", - "hash": "sha512-iPAjerrse27/ygGLxw+EBR9agv9Y6uLeYVJMu+QNCoouJ1/1ri0mGrcWpfCqFZuzzx3WjtwxG098X+n4OuRkPg==" - } - }, - "npm:is-shared-array-buffer": { - "type": "npm", - "name": "npm:is-shared-array-buffer", - "data": { - "version": "1.0.4", - "packageName": "is-shared-array-buffer", - "hash": "sha512-ISWac8drv4ZGfwKl5slpHG9OwPNty4jOWPRIhBpxOoD+hqITiwuipOQ2bNthAzwA3B4fIjO4Nln74N0S9byq8A==" - } - }, - "npm:is-stream": { - "type": "npm", - "name": "npm:is-stream", - "data": { - "version": "4.0.1", - "packageName": "is-stream", - "hash": "sha512-Dnz92NInDqYckGEUJv689RbRiTSEHCQ7wOVeALbkOz999YpqT46yMRIGtSNl2iCL1waAZSx40+h59NV/EwzV/A==" - } - }, - "npm:is-string": { - "type": "npm", - "name": "npm:is-string", - "data": { - "version": "1.1.1", - "packageName": "is-string", - "hash": "sha512-BtEeSsoaQjlSPBemMQIrY1MY0uM6vnS1g5fmufYOtnxLGUZM2178PKbhsk7Ffv58IX+ZtcvoGwccYsh0PglkAA==" - } - }, - "npm:is-symbol": { - "type": "npm", - "name": "npm:is-symbol", - "data": { - "version": "1.1.1", - "packageName": "is-symbol", - "hash": "sha512-9gGx6GTtCQM73BgmHQXfDmLtfjjTUDSyoxTCbp5WtoixAhfgsDirWIcVQ/IHpvI5Vgd5i/J5F7B9cN/WlVbC/w==" - } - }, - "npm:is-typed-array": { - "type": "npm", - "name": "npm:is-typed-array", - "data": { - "version": "1.1.15", - "packageName": "is-typed-array", - "hash": "sha512-p3EcsicXjit7SaskXHs1hA91QxgTw46Fv6EFKKGS5DRFLD8yKnohjF3hxoju94b/OcMZoQukzpPpBE9uLVKzgQ==" - } - }, - "npm:is-unicode-supported@0.1.0": { - "type": "npm", - "name": "npm:is-unicode-supported@0.1.0", - "data": { - "version": "0.1.0", - "packageName": "is-unicode-supported", - "hash": "sha512-knxG2q4UC3u8stRGyAVJCOdxFmv5DZiRcdlIaAQXAbSfJya+OhopNotLQrstBhququ4ZpuKbDc/8S6mgXgPFPw==" - } - }, - "npm:is-unicode-supported": { - "type": "npm", - "name": "npm:is-unicode-supported", - "data": { - "version": "2.1.0", - "packageName": "is-unicode-supported", - "hash": "sha512-mE00Gnza5EEB3Ds0HfMyllZzbBrmLOX3vfWoj9A9PEnTfratQ/BcaJOuMhnkhjXvb2+FkY3VuHqtAGpTPmglFQ==" - } - }, - "npm:is-url-http": { - "type": "npm", - "name": "npm:is-url-http", - "data": { - "version": "2.3.13", - "packageName": "is-url-http", - "hash": "sha512-DUPPybagMEVM0W968iMk0J4ztU72/HOuwMs04Kd8SCDQ/CEV31SdudlOR7qn4zMXmJuLN6+Ak5K60tcVE8tlRA==" - } - }, - "npm:is-url-superb": { - "type": "npm", - "name": "npm:is-url-superb", - "data": { - "version": "4.0.0", - "packageName": "is-url-superb", - "hash": "sha512-GI+WjezhPPcbM+tqE9LnmsY5qqjwHzTvjJ36wxYX5ujNXefSUJ/T17r5bqDV8yLhcgB59KTPNOc9O9cmHTPWsA==" - } - }, - "npm:is-weakmap": { - "type": "npm", - "name": "npm:is-weakmap", - "data": { - "version": "2.0.2", - "packageName": "is-weakmap", - "hash": "sha512-K5pXYOm9wqY1RgjpL3YTkF39tni1XajUIkawTLUo9EZEVUFga5gSQJF8nNS7ZwJQ02y+1YCNYcMh+HIf1ZqE+w==" - } - }, - "npm:is-weakref": { - "type": "npm", - "name": "npm:is-weakref", - "data": { - "version": "1.1.1", - "packageName": "is-weakref", - "hash": "sha512-6i9mGWSlqzNMEqpCp93KwRS1uUOodk2OJ6b+sq7ZPDSy2WuI5NFIxp/254TytR8ftefexkWn5xNiHUNpPOfSew==" - } - }, - "npm:is-weakset": { - "type": "npm", - "name": "npm:is-weakset", - "data": { - "version": "2.0.4", - "packageName": "is-weakset", - "hash": "sha512-mfcwb6IzQyOKTs84CQMrOwW4gQcaTOAWJ0zzJCl2WSPDrWk/OzDaImWFH3djXhb24g4eudZfLRozAvPGw4d9hQ==" - } - }, - "npm:is-what": { - "type": "npm", - "name": "npm:is-what", - "data": { - "version": "4.1.16", - "packageName": "is-what", - "hash": "sha512-ZhMwEosbFJkA0YhFnNDgTM4ZxDRsS6HqTo7qsZM08fehyRYIYa0yHu5R6mgo1n/8MgaPBXiPimPD77baVFYg+A==" - } - }, - "npm:is-wsl": { - "type": "npm", - "name": "npm:is-wsl", - "data": { - "version": "2.2.0", - "packageName": "is-wsl", - "hash": "sha512-fKzAra0rGJUUBwGBgNkHZuToZcn+TtXHpeCgmkMJMMYx1sQDYaCSyjJBSCa2nH1DGm7s3n1oBnohoVTBaN7Lww==" - } - }, - "npm:isarray": { - "type": "npm", - "name": "npm:isarray", - "data": { - "version": "2.0.5", - "packageName": "isarray", - "hash": "sha512-xHjhDr3cNBK0BzdUJSPXZntQUx/mwMS5Rw4A7lPJ90XGAO6ISP/ePDNuo0vhqOZU+UD5JoodwCAAoZQd3FeAKw==" - } - }, - "npm:isbot-fast": { - "type": "npm", - "name": "npm:isbot-fast", - "data": { - "version": "1.2.0", - "packageName": "isbot-fast", - "hash": "sha512-twjuQzy2gKMDVfKGQyQqrx6Uy4opu/fiVUTTpdqtFsd7OQijIp5oXvb27n5EemYXaijh5fomndJt/SPRLsEdSg==" - } - }, - "npm:isexe@2.0.0": { - "type": "npm", - "name": "npm:isexe@2.0.0", - "data": { - "version": "2.0.0", - "packageName": "isexe", - "hash": "sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==" - } - }, - "npm:isexe@3.1.1": { - "type": "npm", - "name": "npm:isexe@3.1.1", - "data": { - "version": "3.1.1", - "packageName": "isexe", - "hash": "sha512-LpB/54B+/2J5hqQ7imZHfdU31OlgQqx7ZicVlkm9kzg9/w8GKLEcFfJl/t7DCEDueOyBAD6zCCwTO6Fzs0NoEQ==" - } - }, - "npm:isexe": { - "type": "npm", - "name": "npm:isexe", - "data": { - "version": "4.0.0", - "packageName": "isexe", - "hash": "sha512-FFUtZMpoZ8RqHS3XeXEmHWLA4thH+ZxCv2lOiPIn1Xc7CxrqhWzNSDzD+/chS/zbYezmiwWLdQC09JdQKmthOw==" - } - }, - "npm:iterator.prototype": { - "type": "npm", - "name": "npm:iterator.prototype", - "data": { - "version": "1.1.5", - "packageName": "iterator.prototype", - "hash": "sha512-H0dkQoCa3b2VEeKQBOxFph+JAbcrQdE7KC0UkqwpLmv2EC4P41QXP+rqo9wYodACiG5/WM5s9oDApTU8utwj9g==" - } - }, - "npm:itty-router": { - "type": "npm", - "name": "npm:itty-router", - "data": { - "version": "5.0.22", - "packageName": "itty-router", - "hash": "sha512-9hmdGErWdYDOurGYxSbqLhy4EFReIwk71hMZTJ5b+zfa2zjMNV1ftFno2b8VjAQvX615gNB8Qxbl9JMRqHnIVA==" - } - }, - "npm:jackspeak@3.4.3": { - "type": "npm", - "name": "npm:jackspeak@3.4.3", - "data": { - "version": "3.4.3", - "packageName": "jackspeak", - "hash": "sha512-OGlZQpz2yfahA/Rd1Y8Cd9SIEsqvXkLVoSw/cgwhnhFMDbsQFeZYoJJ7bIZBS9BcamUW96asq/npPWugM+RQBw==" - } - }, - "npm:jackspeak": { - "type": "npm", - "name": "npm:jackspeak", - "data": { - "version": "4.2.3", - "packageName": "jackspeak", - "hash": "sha512-ykkVRwrYvFm1nb2AJfKKYPr0emF6IiXDYUaFx4Zn9ZuIH7MrzEZ3sD5RlqGXNRpHtvUHJyOnCEFxOlNDtGo7wg==" - } - }, - "npm:jake": { - "type": "npm", - "name": "npm:jake", - "data": { - "version": "10.9.4", - "packageName": "jake", - "hash": "sha512-wpHYzhxiVQL+IV05BLE2Xn34zW1S223hvjtqk0+gsPrwd/8JNLXJgZZM/iPFsYc1xyphF+6M6EvdE5E9MBGkDA==" - } - }, - "npm:jest-diff": { - "type": "npm", - "name": "npm:jest-diff", - "data": { - "version": "30.3.0", - "packageName": "jest-diff", - "hash": "sha512-n3q4PDQjS4LrKxfWB3Z5KNk1XjXtZTBwQp71OP0Jo03Z6V60x++K5L8k6ZrW8MY8pOFylZvHM0zsjS1RqlHJZQ==" - } - }, - "npm:jiti": { - "type": "npm", - "name": "npm:jiti", - "data": { - "version": "2.6.1", - "packageName": "jiti", - "hash": "sha512-ekilCSN1jwRvIbgeg/57YFh8qQDNbwDb9xT/qu2DAHbFFZUicIl4ygVaAvzveMhMVr3LnpSKTNnwt8PoOfmKhQ==" - } - }, - "npm:jju": { - "type": "npm", - "name": "npm:jju", - "data": { - "version": "1.4.0", - "packageName": "jju", - "hash": "sha512-8wb9Yw966OSxApiCt0K3yNJL8pnNeIv+OEq2YMidz4FKP6nonSRoOXc80iXY4JaN2FC11B9qsNmDsm+ZOfMROA==" - } - }, - "npm:jose": { - "type": "npm", - "name": "npm:jose", - "data": { - "version": "6.1.0", - "packageName": "jose", - "hash": "sha512-TTQJyoEoKcC1lscpVDCSsVgYzUDg/0Bt3WE//WiTPK6uOCQC2KZS4MpugbMWt/zyjkopgZoXhZuCi00gLudfUA==" - } - }, - "npm:js-tokens": { - "type": "npm", - "name": "npm:js-tokens", - "data": { - "version": "4.0.0", - "packageName": "js-tokens", - "hash": "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==" - } - }, - "npm:js-yaml@3.14.2": { - "type": "npm", - "name": "npm:js-yaml@3.14.2", - "data": { - "version": "3.14.2", - "packageName": "js-yaml", - "hash": "sha512-PMSmkqxr106Xa156c2M265Z+FTrPl+oxd/rgOQy2tijQeK5TxQ43psO1ZCwhVOSdnn+RzkzlRz/eY4BgJBYVpg==" - } - }, - "npm:js-yaml": { - "type": "npm", - "name": "npm:js-yaml", - "data": { - "version": "4.1.1", - "packageName": "js-yaml", - "hash": "sha512-qQKT4zQxXl8lLwBtHMWwaTcGfFOZviOJet3Oy/xmGk2gZH677CJM9EvtfdSkgWcATZhj/55JZ0rmy3myCT5lsA==" - } - }, - "npm:jsesc": { - "type": "npm", - "name": "npm:jsesc", - "data": { - "version": "3.1.0", - "packageName": "jsesc", - "hash": "sha512-/sM3dO2FOzXjKQhJuo0Q173wf2KOo8t4I8vHy6lF9poUp7bKT0/NHE8fPX23PwfhnykfqnC2xRxOnVw5XuGIaA==" - } - }, - "npm:json-buffer": { - "type": "npm", - "name": "npm:json-buffer", - "data": { - "version": "3.0.1", - "packageName": "json-buffer", - "hash": "sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ==" - } - }, - "npm:json-loose": { - "type": "npm", - "name": "npm:json-loose", - "data": { - "version": "1.2.4", - "packageName": "json-loose", - "hash": "sha512-lwMWNC5pvVI33rhYWmAsmtICWE2IH7euDY/iIPeMFE5AuzAifYgqQrjqSMzwbrFV6MWPs41XD+CajElHI4cZMQ==" - } - }, - "npm:json-parse-even-better-errors@2.3.1": { - "type": "npm", - "name": "npm:json-parse-even-better-errors@2.3.1", - "data": { - "version": "2.3.1", - "packageName": "json-parse-even-better-errors", - "hash": "sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w==" - } - }, - "npm:json-parse-even-better-errors": { - "type": "npm", - "name": "npm:json-parse-even-better-errors", - "data": { - "version": "4.0.0", - "packageName": "json-parse-even-better-errors", - "hash": "sha512-lR4MXjGNgkJc7tkQ97kb2nuEMnNCyU//XYVH0MKTGcXEiSudQ5MKGKen3C5QubYy0vmq+JGitUg92uuywGEwIA==" - } - }, - "npm:json-schema-ref-resolver": { - "type": "npm", - "name": "npm:json-schema-ref-resolver", - "data": { - "version": "3.0.0", - "packageName": "json-schema-ref-resolver", - "hash": "sha512-hOrZIVL5jyYFjzk7+y7n5JDzGlU8rfWDuYyHwGa2WA8/pcmMHezp2xsVwxrebD/Q9t8Nc5DboieySDpCp4WG4A==" - } - }, - "npm:json-schema-traverse": { - "type": "npm", - "name": "npm:json-schema-traverse", - "data": { - "version": "0.4.1", - "packageName": "json-schema-traverse", - "hash": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==" - } - }, - "npm:json-schema-traverse@1.0.0": { - "type": "npm", - "name": "npm:json-schema-traverse@1.0.0", - "data": { - "version": "1.0.0", - "packageName": "json-schema-traverse", - "hash": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==" - } - }, - "npm:json-stable-stringify-without-jsonify": { - "type": "npm", - "name": "npm:json-stable-stringify-without-jsonify", - "data": { - "version": "1.0.1", - "packageName": "json-stable-stringify-without-jsonify", - "hash": "sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==" - } - }, - "npm:json5": { - "type": "npm", - "name": "npm:json5", - "data": { - "version": "2.2.3", - "packageName": "json5", - "hash": "sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==" - } - }, - "npm:jsonc-parser@3.2.0": { - "type": "npm", - "name": "npm:jsonc-parser@3.2.0", - "data": { - "version": "3.2.0", - "packageName": "jsonc-parser", - "hash": "sha512-gfFQZrcTc8CnKXp6Y4/CBT3fTc0OVuDofpre4aEeEpSBPV5X5v4+Vmx+8snU7RLPrNHPKSgLxGo9YuQzz20o+w==" - } - }, - "npm:jsonc-parser": { - "type": "npm", - "name": "npm:jsonc-parser", - "data": { - "version": "3.3.1", - "packageName": "jsonc-parser", - "hash": "sha512-HUgH65KyejrUFPvHFPbqOY0rsFip3Bo5wb4ngvdi1EpCYWUQDC5V+Y7mZws+DLkr4M//zQJoanu1SP+87Dv1oQ==" - } - }, - "npm:jsx-ast-utils": { - "type": "npm", - "name": "npm:jsx-ast-utils", - "data": { - "version": "3.3.5", - "packageName": "jsx-ast-utils", - "hash": "sha512-ZZow9HBI5O6EPgSJLUb8n2NKgmVWTwCvHGwFuJlMjvLFqlGG6pjirPhtdsseaLZjSibD8eegzmYpUZwoIlj2cQ==" - } - }, - "npm:kebab-case": { - "type": "npm", - "name": "npm:kebab-case", - "data": { - "version": "1.0.2", - "packageName": "kebab-case", - "hash": "sha512-7n6wXq4gNgBELfDCpzKc+mRrZFs7D+wgfF5WRFLNAr4DA/qtr9Js8uOAVAfHhuLMfAcQ0pRKqbpjx+TcJVdE1Q==" - } - }, - "npm:keyv": { - "type": "npm", - "name": "npm:keyv", - "data": { - "version": "4.5.4", - "packageName": "keyv", - "hash": "sha512-oxVHkHR/EJf2CNXnWxRLW6mg7JyCCUcG0DtEGmL2ctUo1PNTin1PUil+r/+4r5MpVgC/fn1kjsx7mjSujKqIpw==" - } - }, - "npm:kill-process-group": { - "type": "npm", - "name": "npm:kill-process-group", - "data": { - "version": "1.0.13", - "packageName": "kill-process-group", - "hash": "sha512-BbOC8H7O8mvETYdkp2t5B3TmhNkwbFXUAb6by48wBei0bbUHXXEaD+80uOaTGAmeuSq37P6CUYHetsK5xB2vCA==" - } - }, - "npm:kleur": { - "type": "npm", - "name": "npm:kleur", - "data": { - "version": "4.1.5", - "packageName": "kleur", - "hash": "sha512-o+NO+8WrRiQEE4/7nwRJhN1HWpVmJm511pBHUxPLtp0BUISzlBplORYSmTclCnJvQq2tKu/sgl3xVpkc7ZWuQQ==" - } - }, - "npm:knip": { - "type": "npm", - "name": "npm:knip", - "data": { - "version": "5.88.1", - "packageName": "knip", - "hash": "sha512-tpy5o7zu1MjawVkLPuahymVJekYY3kYjvzcoInhIchgePxTlo+api90tBv2KfhAIe5uXh+mez1tAfmbv8/TiZg==" - } - }, - "npm:known-css-properties": { - "type": "npm", - "name": "npm:known-css-properties", - "data": { - "version": "0.30.0", - "packageName": "known-css-properties", - "hash": "sha512-VSWXYUnsPu9+WYKkfmJyLKtIvaRJi1kXUqVmBACORXZQxT5oZDsoZ2vQP+bQFDnWtpI/4eq3MLoRMjI2fnLzTQ==" - } - }, - "npm:kysely-d1": { - "type": "npm", - "name": "npm:kysely-d1", - "data": { - "version": "0.4.0", - "packageName": "kysely-d1", - "hash": "sha512-wUcVvQNtm30OTfuo7Ad5vYJ1qHqPXOCZc+zWchVKNyuvqY3u8OuGw4gmUx1Ypdx2wRVFLHVQC9I7v0pTmF7Nkw==" - } - }, - "npm:kysely": { - "type": "npm", - "name": "npm:kysely", - "data": { - "version": "0.28.14", - "packageName": "kysely", - "hash": "sha512-SU3lgh0rPvq7upc6vvdVrCsSMUG1h3ChvHVOY7wJ2fw4C9QEB7X3d5eyYEyULUX7UQtxZJtZXGuT6U2US72UYA==" - } - }, - "npm:levn": { - "type": "npm", - "name": "npm:levn", - "data": { - "version": "0.4.1", - "packageName": "levn", - "hash": "sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==" - } - }, - "npm:light-my-request": { - "type": "npm", - "name": "npm:light-my-request", - "data": { - "version": "6.6.0", - "packageName": "light-my-request", - "hash": "sha512-CHYbu8RtboSIoVsHZ6Ye4cj4Aw/yg2oAFimlF7mNvfDV192LR7nDiKtSIfCuLT7KokPSTn/9kfVLm5OGN0A28A==" - } - }, - "npm:lightningcss-android-arm64": { - "type": "npm", - "name": "npm:lightningcss-android-arm64", - "data": { - "version": "1.32.0", - "packageName": "lightningcss-android-arm64", - "hash": "sha512-YK7/ClTt4kAK0vo6w3X+Pnm0D2cf2vPHbhOXdoNti1Ga0al1P4TBZhwjATvjNwLEBCnKvjJc2jQgHXH0NEwlAg==" - } - }, - "npm:lightningcss-darwin-arm64": { - "type": "npm", - "name": "npm:lightningcss-darwin-arm64", - "data": { - "version": "1.32.0", - "packageName": "lightningcss-darwin-arm64", - "hash": "sha512-RzeG9Ju5bag2Bv1/lwlVJvBE3q6TtXskdZLLCyfg5pt+HLz9BqlICO7LZM7VHNTTn/5PRhHFBSjk5lc4cmscPQ==" - } - }, - "npm:lightningcss-darwin-x64": { - "type": "npm", - "name": "npm:lightningcss-darwin-x64", - "data": { - "version": "1.32.0", - "packageName": "lightningcss-darwin-x64", - "hash": "sha512-U+QsBp2m/s2wqpUYT/6wnlagdZbtZdndSmut/NJqlCcMLTWp5muCrID+K5UJ6jqD2BFshejCYXniPDbNh73V8w==" - } - }, - "npm:lightningcss-freebsd-x64": { - "type": "npm", - "name": "npm:lightningcss-freebsd-x64", - "data": { - "version": "1.32.0", - "packageName": "lightningcss-freebsd-x64", - "hash": "sha512-JCTigedEksZk3tHTTthnMdVfGf61Fky8Ji2E4YjUTEQX14xiy/lTzXnu1vwiZe3bYe0q+SpsSH/CTeDXK6WHig==" - } - }, - "npm:lightningcss-linux-arm-gnueabihf": { - "type": "npm", - "name": "npm:lightningcss-linux-arm-gnueabihf", - "data": { - "version": "1.32.0", - "packageName": "lightningcss-linux-arm-gnueabihf", - "hash": "sha512-x6rnnpRa2GL0zQOkt6rts3YDPzduLpWvwAF6EMhXFVZXD4tPrBkEFqzGowzCsIWsPjqSK+tyNEODUBXeeVHSkw==" - } - }, - "npm:lightningcss-linux-arm64-gnu": { - "type": "npm", - "name": "npm:lightningcss-linux-arm64-gnu", - "data": { - "version": "1.32.0", - "packageName": "lightningcss-linux-arm64-gnu", - "hash": "sha512-0nnMyoyOLRJXfbMOilaSRcLH3Jw5z9HDNGfT/gwCPgaDjnx0i8w7vBzFLFR1f6CMLKF8gVbebmkUN3fa/kQJpQ==" - } - }, - "npm:lightningcss-linux-arm64-musl": { - "type": "npm", - "name": "npm:lightningcss-linux-arm64-musl", - "data": { - "version": "1.32.0", - "packageName": "lightningcss-linux-arm64-musl", - "hash": "sha512-UpQkoenr4UJEzgVIYpI80lDFvRmPVg6oqboNHfoH4CQIfNA+HOrZ7Mo7KZP02dC6LjghPQJeBsvXhJod/wnIBg==" - } - }, - "npm:lightningcss-linux-x64-gnu": { - "type": "npm", - "name": "npm:lightningcss-linux-x64-gnu", - "data": { - "version": "1.32.0", - "packageName": "lightningcss-linux-x64-gnu", - "hash": "sha512-V7Qr52IhZmdKPVr+Vtw8o+WLsQJYCTd8loIfpDaMRWGUZfBOYEJeyJIkqGIDMZPwPx24pUMfwSxxI8phr/MbOA==" - } - }, - "npm:lightningcss-linux-x64-musl": { - "type": "npm", - "name": "npm:lightningcss-linux-x64-musl", - "data": { - "version": "1.32.0", - "packageName": "lightningcss-linux-x64-musl", - "hash": "sha512-bYcLp+Vb0awsiXg/80uCRezCYHNg1/l3mt0gzHnWV9XP1W5sKa5/TCdGWaR/zBM2PeF/HbsQv/j2URNOiVuxWg==" - } - }, - "npm:lightningcss-win32-arm64-msvc": { - "type": "npm", - "name": "npm:lightningcss-win32-arm64-msvc", - "data": { - "version": "1.32.0", - "packageName": "lightningcss-win32-arm64-msvc", - "hash": "sha512-8SbC8BR40pS6baCM8sbtYDSwEVQd4JlFTOlaD3gWGHfThTcABnNDBda6eTZeqbofalIJhFx0qKzgHJmcPTnGdw==" - } - }, - "npm:lightningcss-win32-x64-msvc": { - "type": "npm", - "name": "npm:lightningcss-win32-x64-msvc", - "data": { - "version": "1.32.0", - "packageName": "lightningcss-win32-x64-msvc", - "hash": "sha512-Amq9B/SoZYdDi1kFrojnoqPLxYhQ4Wo5XiL8EVJrVsB8ARoC1PWW6VGtT0WKCemjy8aC+louJnjS7U18x3b06Q==" - } - }, - "npm:lightningcss": { - "type": "npm", - "name": "npm:lightningcss", - "data": { - "version": "1.32.0", - "packageName": "lightningcss", - "hash": "sha512-NXYBzinNrblfraPGyrbPoD19C1h9lfI/1mzgWYvXUTe414Gz/X1FD2XBZSZM7rRTrMA8JL3OtAaGifrIKhQ5yQ==" - } - }, - "npm:lilconfig": { - "type": "npm", - "name": "npm:lilconfig", - "data": { - "version": "2.1.0", - "packageName": "lilconfig", - "hash": "sha512-utWOt/GHzuUxnLKxB6dk81RoOeoNeHgbrXiuGk4yyF5qlRz+iIVWu56E2fqGHFrXz0QNUhLB/8nKqvRH66JKGQ==" - } - }, - "npm:lines-and-columns@1.2.4": { - "type": "npm", - "name": "npm:lines-and-columns@1.2.4", - "data": { - "version": "1.2.4", - "packageName": "lines-and-columns", - "hash": "sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==" - } - }, - "npm:lines-and-columns": { - "type": "npm", - "name": "npm:lines-and-columns", - "data": { - "version": "2.0.3", - "packageName": "lines-and-columns", - "hash": "sha512-cNOjgCnLB+FnvWWtyRTzmB3POJ+cXxTA81LoW7u8JdmhfXzriropYwpjShnz1QLLWsQwY7nIxoDmcPTwphDK9w==" - } - }, - "npm:locate-path@3.0.0": { - "type": "npm", - "name": "npm:locate-path@3.0.0", - "data": { - "version": "3.0.0", - "packageName": "locate-path", - "hash": "sha512-7AO748wWnIhNqAuaty2ZWHkQHRSNfPVIsPIfwEOWO22AmaoVrWavlOcMR5nzTLNYvp36X220/maaRsrec1G65A==" - } - }, - "npm:locate-path": { - "type": "npm", - "name": "npm:locate-path", - "data": { - "version": "6.0.0", - "packageName": "locate-path", - "hash": "sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==" - } - }, - "npm:lodash.memoize": { - "type": "npm", - "name": "npm:lodash.memoize", - "data": { - "version": "4.1.2", - "packageName": "lodash.memoize", - "hash": "sha512-t7j+NzmgnQzTAYXcsHYLgimltOV1MXHtlOWf6GjL9Kj8GK5FInw5JotxvbOs+IvV1/Dzo04/fCGfLVs7aXb4Ag==" - } - }, - "npm:lodash.merge": { - "type": "npm", - "name": "npm:lodash.merge", - "data": { - "version": "4.6.2", - "packageName": "lodash.merge", - "hash": "sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==" - } - }, - "npm:lodash.uniq": { - "type": "npm", - "name": "npm:lodash.uniq", - "data": { - "version": "4.5.0", - "packageName": "lodash.uniq", - "hash": "sha512-xfBaXQd9ryd9dlSDvnvI0lvxfLJlYAZzXomUYzLKtUeOQvOP5piqAWuGtrhWeqaXK9hhoM/iyJc5AV+XfsX3HQ==" - } - }, - "npm:lodash@4.17.21": { - "type": "npm", - "name": "npm:lodash@4.17.21", - "data": { - "version": "4.17.21", - "packageName": "lodash", - "hash": "sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==" - } - }, - "npm:lodash": { - "type": "npm", - "name": "npm:lodash", - "data": { - "version": "4.17.23", - "packageName": "lodash", - "hash": "sha512-LgVTMpQtIopCi79SJeDiP0TfWi5CNEc/L/aRdTh3yIvmZXTnheWpKjSZhnvMl8iXbC1tFg9gdHHDMLoV7CnG+w==" - } - }, - "npm:log-symbols": { - "type": "npm", - "name": "npm:log-symbols", - "data": { - "version": "4.1.0", - "packageName": "log-symbols", - "hash": "sha512-8XPvpAA8uyhfteu8pIvQxpJZ7SYYdpUivZpGy6sFsBuKRY/7rQGavedeB8aK+Zkyq6upMFVL/9AW6vOYzfRyLg==" - } - }, - "npm:long": { - "type": "npm", - "name": "npm:long", - "data": { - "version": "5.3.2", - "packageName": "long", - "hash": "sha512-mNAgZ1GmyNhD7AuqnTG3/VQ26o760+ZYBPKjPvugO8+nLbYfX6TVpJPseBvopbdY+qpZ/lKUnmEc1LeZYS3QAA==" - } - }, - "npm:longest-streak": { - "type": "npm", - "name": "npm:longest-streak", - "data": { - "version": "3.1.0", - "packageName": "longest-streak", - "hash": "sha512-9Ri+o0JYgehTaVBBDoMqIl8GXtbWg711O3srftcHhZ0dqnETqLaoIK0x17fUw9rFSlK/0NlsKe0Ahhyl5pXE2g==" - } - }, - "npm:loose-envify": { - "type": "npm", - "name": "npm:loose-envify", - "data": { - "version": "1.4.0", - "packageName": "loose-envify", - "hash": "sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==" - } - }, - "npm:lowercase-keys": { - "type": "npm", - "name": "npm:lowercase-keys", - "data": { - "version": "2.0.0", - "packageName": "lowercase-keys", - "hash": "sha512-tqNXrS78oMOE73NMxK4EMLQsQowWf8jKooH9g7xPavRT706R6bkQJ6DY2Te7QukaZsulxa30wQ7bk0pm4XiHmA==" - } - }, - "npm:lru-cache@10.4.3": { - "type": "npm", - "name": "npm:lru-cache@10.4.3", - "data": { - "version": "10.4.3", - "packageName": "lru-cache", - "hash": "sha512-JNAzZcXrCt42VGLuYz0zfAzDfAvJWW6AfYlDBQyDV5DClI2m5sAmK+OIO7s59XfsRsWHp02jAJrRadPRGTt6SQ==" - } - }, - "npm:lru-cache@11.2.2": { - "type": "npm", - "name": "npm:lru-cache@11.2.2", - "data": { - "version": "11.2.2", - "packageName": "lru-cache", - "hash": "sha512-F9ODfyqML2coTIsQpSkRHnLSZMtkU8Q+mSfcaIyKwy58u+8k5nvAYeiNhsyMARvzNcXJ9QfWVrcPsC9e9rAxtg==" - } - }, - "npm:lru-cache": { - "type": "npm", - "name": "npm:lru-cache", - "data": { - "version": "5.1.1", - "packageName": "lru-cache", - "hash": "sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==" - } - }, - "npm:lru-cache@7.18.3": { - "type": "npm", - "name": "npm:lru-cache@7.18.3", - "data": { - "version": "7.18.3", - "packageName": "lru-cache", - "hash": "sha512-jumlc0BIUrS3qJGgIkWZsyfAM7NCWiBcCDhnd+3NNM5KbBmLTgHVfWBcg6W+rLUsIpzpERPsvwUP7CckAQSOoA==" - } - }, - "npm:lru.min": { - "type": "npm", - "name": "npm:lru.min", - "data": { - "version": "1.1.3", - "packageName": "lru.min", - "hash": "sha512-Lkk/vx6ak3rYkRR0Nhu4lFUT2VDnQSxBe8Hbl7f36358p6ow8Bnvr8lrLt98H8J1aGxfhbX4Fs5tYg2+FTwr5Q==" - } - }, - "npm:lucide-react": { - "type": "npm", - "name": "npm:lucide-react", - "data": { - "version": "0.577.0", - "packageName": "lucide-react", - "hash": "sha512-4LjoFv2eEPwYDPg/CUdBJQSDfPyzXCRrVW1X7jrx/trgxnxkHFjnVZINbzvzxjN70dxychOfg+FTYwBiS3pQ5A==" - } - }, - "npm:magic-regexp": { - "type": "npm", - "name": "npm:magic-regexp", - "data": { - "version": "0.10.0", - "packageName": "magic-regexp", - "hash": "sha512-Uly1Bu4lO1hwHUW0CQeSWuRtzCMNO00CmXtS8N6fyvB3B979GOEEeAkiTUDsmbYLAbvpUS/Kt5c4ibosAzVyVg==" - } - }, - "npm:magic-string": { - "type": "npm", - "name": "npm:magic-string", - "data": { - "version": "0.30.21", - "packageName": "magic-string", - "hash": "sha512-vd2F4YUyEXKGcLHoq+TEyCjxueSeHnFxyyjNp80yg0XV4vUhnDer/lvvlqM/arB5bXQN5K2/3oinyCRyx8T2CQ==" - } - }, - "npm:magicast": { - "type": "npm", - "name": "npm:magicast", - "data": { - "version": "0.5.2", - "packageName": "magicast", - "hash": "sha512-E3ZJh4J3S9KfwdjZhe2afj6R9lGIN5Pher1pF39UGrXRqq/VDaGVIGN13BjHd2u8B61hArAGOnso7nBOouW3TQ==" - } - }, - "npm:make-fetch-happen": { - "type": "npm", - "name": "npm:make-fetch-happen", - "data": { - "version": "14.0.3", - "packageName": "make-fetch-happen", - "hash": "sha512-QMjGbFTP0blj97EeidG5hk/QhKQ3T4ICckQGLgz38QF7Vgbk6e6FTARN8KhKxyBbWn8R0HU+bnw8aSoFPD4qtQ==" - } - }, - "npm:map-values-deep": { - "type": "npm", - "name": "npm:map-values-deep", - "data": { - "version": "1.0.2", - "packageName": "map-values-deep", - "hash": "sha512-br+tp4aANql3WnpDRjD14H7hHopPlJRnzCL0ZlGCRHAQZTU0g0x1rUQFq/ikb3zZQK+lW2AG7RJi+CFfQ8kSPA==" - } - }, - "npm:math-intrinsics": { - "type": "npm", - "name": "npm:math-intrinsics", - "data": { - "version": "1.1.0", - "packageName": "math-intrinsics", - "hash": "sha512-/IXtbwEk5HTPyEwyKX6hGkYXxM9nbj64B+ilVJnC/R6B0pH5G4V3b0pVbL7DBj4tkhBAppbQUlf6F6Xl9LHu1g==" - } - }, - "npm:mdast-builder": { - "type": "npm", - "name": "npm:mdast-builder", - "data": { - "version": "1.1.1", - "packageName": "mdast-builder", - "hash": "sha512-a3KBk/LmYD6wKsWi8WJrGU/rXR4yuF4Men0JO0z6dSZCm5FrXXWTRDjqK0vGSqa+1M6p9edeuypZAZAzSehTUw==" - } - }, - "npm:mdast-util-from-markdown": { - "type": "npm", - "name": "npm:mdast-util-from-markdown", - "data": { - "version": "2.0.3", - "packageName": "mdast-util-from-markdown", - "hash": "sha512-W4mAWTvSlKvf8L6J+VN9yLSqQ9AOAAvHuoDAmPkz4dHf553m5gVj2ejadHJhoJmcmxEnOv6Pa8XJhpxE93kb8Q==" - } - }, - "npm:mdast-util-phrasing": { - "type": "npm", - "name": "npm:mdast-util-phrasing", - "data": { - "version": "4.1.0", - "packageName": "mdast-util-phrasing", - "hash": "sha512-TqICwyvJJpBwvGAMZjj4J2n0X8QWp21b9l0o7eXyVJ25YNWYbJDVIyD1bZXE6WtV6RmKJVYmQAKWa0zWOABz2w==" - } - }, - "npm:mdast-util-to-markdown": { - "type": "npm", - "name": "npm:mdast-util-to-markdown", - "data": { - "version": "2.1.2", - "packageName": "mdast-util-to-markdown", - "hash": "sha512-xj68wMTvGXVOKonmog6LwyJKrYXZPvlwabaryTjLh9LuvovB/KAH+kvi8Gjj+7rJjsFi23nkUxRQv1KqSroMqA==" - } - }, - "npm:mdast-util-to-string": { - "type": "npm", - "name": "npm:mdast-util-to-string", - "data": { - "version": "4.0.0", - "packageName": "mdast-util-to-string", - "hash": "sha512-0H44vDimn51F0YwvxSJSm0eCDOJTRlmN0R1yBh4HLj9wiV1Dn0QoXGbvFAWj2hSItVTlCmBF1hqKlIyUBVFLPg==" - } - }, - "npm:mdast-util-toc": { - "type": "npm", - "name": "npm:mdast-util-toc", - "data": { - "version": "7.1.0", - "packageName": "mdast-util-toc", - "hash": "sha512-2TVKotOQzqdY7THOdn2gGzS9d1Sdd66bvxUyw3aNpWfcPXCLYSJCCgfPy30sEtuzkDraJgqF35dzgmz6xlvH/w==" - } - }, - "npm:mdn-data": { - "type": "npm", - "name": "npm:mdn-data", - "data": { - "version": "2.0.14", - "packageName": "mdn-data", - "hash": "sha512-dn6wd0uw5GsdswPFfsgMp5NSB0/aDe6fK94YJV/AJDYXL6HVLWBsxeq7js7Ad+mU2K9LAlwpk6kN2D5mwCPVow==" - } - }, - "npm:media-typer": { - "type": "npm", - "name": "npm:media-typer", - "data": { - "version": "1.1.0", - "packageName": "media-typer", - "hash": "sha512-aisnrDP4GNe06UcKFnV5bfMNPBUw4jsLGaWwWfnH3v02GnBuXX2MCVn5RbrWo0j3pczUilYblq7fQ7Nw2t5XKw==" - } - }, - "npm:memoize-one": { - "type": "npm", - "name": "npm:memoize-one", - "data": { - "version": "6.0.0", - "packageName": "memoize-one", - "hash": "sha512-rkpe71W0N0c0Xz6QD0eJETuWAJGnJ9afsl1srmwPrI+yBCkge5EycXXbYRyvL29zZVUWQCY7InPRCv3GDXuZNw==" - } - }, - "npm:memorystream": { - "type": "npm", - "name": "npm:memorystream", - "data": { - "version": "0.3.1", - "packageName": "memorystream", - "hash": "sha512-S3UwM3yj5mtUSEfP41UZmt/0SCoVYUcU1rkXv+BQ5Ig8ndL4sPoJNBUJERafdPb5jjHJGuMgytgKvKIf58XNBw==" - } - }, - "npm:merge-anything": { - "type": "npm", - "name": "npm:merge-anything", - "data": { - "version": "5.1.7", - "packageName": "merge-anything", - "hash": "sha512-eRtbOb1N5iyH0tkQDAoQ4Ipsp/5qSR79Dzrz8hEPxRX10RWWR/iQXdoKmBSRCThY1Fh5EhISDtpSc93fpxUniQ==" - } - }, - "npm:merge-descriptors": { - "type": "npm", - "name": "npm:merge-descriptors", - "data": { - "version": "2.0.0", - "packageName": "merge-descriptors", - "hash": "sha512-Snk314V5ayFLhp3fkUREub6WtjBfPdCPY1Ln8/8munuLuiYhsABgBVWsozAG+MWMbVEvcdcpbi9R7ww22l9Q3g==" - } - }, - "npm:merge2": { - "type": "npm", - "name": "npm:merge2", - "data": { - "version": "1.4.1", - "packageName": "merge2", - "hash": "sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==" - } - }, - "npm:micromark-core-commonmark": { - "type": "npm", - "name": "npm:micromark-core-commonmark", - "data": { - "version": "2.0.3", - "packageName": "micromark-core-commonmark", - "hash": "sha512-RDBrHEMSxVFLg6xvnXmb1Ayr2WzLAWjeSATAoxwKYJV94TeNavgoIdA0a9ytzDSVzBy2YKFK+emCPOEibLeCrg==" - } - }, - "npm:micromark-factory-destination": { - "type": "npm", - "name": "npm:micromark-factory-destination", - "data": { - "version": "2.0.1", - "packageName": "micromark-factory-destination", - "hash": "sha512-Xe6rDdJlkmbFRExpTOmRj9N3MaWmbAgdpSrBQvCFqhezUn4AHqJHbaEnfbVYYiexVSs//tqOdY/DxhjdCiJnIA==" - } - }, - "npm:micromark-factory-label": { - "type": "npm", - "name": "npm:micromark-factory-label", - "data": { - "version": "2.0.1", - "packageName": "micromark-factory-label", - "hash": "sha512-VFMekyQExqIW7xIChcXn4ok29YE3rnuyveW3wZQWWqF4Nv9Wk5rgJ99KzPvHjkmPXF93FXIbBp6YdW3t71/7Vg==" - } - }, - "npm:micromark-factory-space": { - "type": "npm", - "name": "npm:micromark-factory-space", - "data": { - "version": "2.0.1", - "packageName": "micromark-factory-space", - "hash": "sha512-zRkxjtBxxLd2Sc0d+fbnEunsTj46SWXgXciZmHq0kDYGnck/ZSGj9/wULTV95uoeYiK5hRXP2mJ98Uo4cq/LQg==" - } - }, - "npm:micromark-factory-title": { - "type": "npm", - "name": "npm:micromark-factory-title", - "data": { - "version": "2.0.1", - "packageName": "micromark-factory-title", - "hash": "sha512-5bZ+3CjhAd9eChYTHsjy6TGxpOFSKgKKJPJxr293jTbfry2KDoWkhBb6TcPVB4NmzaPhMs1Frm9AZH7OD4Cjzw==" - } - }, - "npm:micromark-factory-whitespace": { - "type": "npm", - "name": "npm:micromark-factory-whitespace", - "data": { - "version": "2.0.1", - "packageName": "micromark-factory-whitespace", - "hash": "sha512-Ob0nuZ3PKt/n0hORHyvoD9uZhr+Za8sFoP+OnMcnWK5lngSzALgQYKMr9RJVOWLqQYuyn6ulqGWSXdwf6F80lQ==" - } - }, - "npm:micromark-util-character": { - "type": "npm", - "name": "npm:micromark-util-character", - "data": { - "version": "2.1.1", - "packageName": "micromark-util-character", - "hash": "sha512-wv8tdUTJ3thSFFFJKtpYKOYiGP2+v96Hvk4Tu8KpCAsTMs6yi+nVmGh1syvSCsaxz45J6Jbw+9DD6g97+NV67Q==" - } - }, - "npm:micromark-util-chunked": { - "type": "npm", - "name": "npm:micromark-util-chunked", - "data": { - "version": "2.0.1", - "packageName": "micromark-util-chunked", - "hash": "sha512-QUNFEOPELfmvv+4xiNg2sRYeS/P84pTW0TCgP5zc9FpXetHY0ab7SxKyAQCNCc1eK0459uoLI1y5oO5Vc1dbhA==" - } - }, - "npm:micromark-util-classify-character": { - "type": "npm", - "name": "npm:micromark-util-classify-character", - "data": { - "version": "2.0.1", - "packageName": "micromark-util-classify-character", - "hash": "sha512-K0kHzM6afW/MbeWYWLjoHQv1sgg2Q9EccHEDzSkxiP/EaagNzCm7T/WMKZ3rjMbvIpvBiZgwR3dKMygtA4mG1Q==" - } - }, - "npm:micromark-util-combine-extensions": { - "type": "npm", - "name": "npm:micromark-util-combine-extensions", - "data": { - "version": "2.0.1", - "packageName": "micromark-util-combine-extensions", - "hash": "sha512-OnAnH8Ujmy59JcyZw8JSbK9cGpdVY44NKgSM7E9Eh7DiLS2E9RNQf0dONaGDzEG9yjEl5hcqeIsj4hfRkLH/Bg==" - } - }, - "npm:micromark-util-decode-numeric-character-reference": { - "type": "npm", - "name": "npm:micromark-util-decode-numeric-character-reference", - "data": { - "version": "2.0.2", - "packageName": "micromark-util-decode-numeric-character-reference", - "hash": "sha512-ccUbYk6CwVdkmCQMyr64dXz42EfHGkPQlBj5p7YVGzq8I7CtjXZJrubAYezf7Rp+bjPseiROqe7G6foFd+lEuw==" - } - }, - "npm:micromark-util-decode-string": { - "type": "npm", - "name": "npm:micromark-util-decode-string", - "data": { - "version": "2.0.1", - "packageName": "micromark-util-decode-string", - "hash": "sha512-nDV/77Fj6eH1ynwscYTOsbK7rR//Uj0bZXBwJZRfaLEJ1iGBR6kIfNmlNqaqJf649EP0F3NWNdeJi03elllNUQ==" - } - }, - "npm:micromark-util-encode": { - "type": "npm", - "name": "npm:micromark-util-encode", - "data": { - "version": "2.0.1", - "packageName": "micromark-util-encode", - "hash": "sha512-c3cVx2y4KqUnwopcO9b/SCdo2O67LwJJ/UyqGfbigahfegL9myoEFoDYZgkT7f36T0bLrM9hZTAaAyH+PCAXjw==" - } - }, - "npm:micromark-util-html-tag-name": { - "type": "npm", - "name": "npm:micromark-util-html-tag-name", - "data": { - "version": "2.0.1", - "packageName": "micromark-util-html-tag-name", - "hash": "sha512-2cNEiYDhCWKI+Gs9T0Tiysk136SnR13hhO8yW6BGNyhOC4qYFnwF1nKfD3HFAIXA5c45RrIG1ub11GiXeYd1xA==" - } - }, - "npm:micromark-util-normalize-identifier": { - "type": "npm", - "name": "npm:micromark-util-normalize-identifier", - "data": { - "version": "2.0.1", - "packageName": "micromark-util-normalize-identifier", - "hash": "sha512-sxPqmo70LyARJs0w2UclACPUUEqltCkJ6PhKdMIDuJ3gSf/Q+/GIe3WKl0Ijb/GyH9lOpUkRAO2wp0GVkLvS9Q==" - } - }, - "npm:micromark-util-resolve-all": { - "type": "npm", - "name": "npm:micromark-util-resolve-all", - "data": { - "version": "2.0.1", - "packageName": "micromark-util-resolve-all", - "hash": "sha512-VdQyxFWFT2/FGJgwQnJYbe1jjQoNTS4RjglmSjTUlpUMa95Htx9NHeYW4rGDJzbjvCsl9eLjMQwGeElsqmzcHg==" - } - }, - "npm:micromark-util-sanitize-uri": { - "type": "npm", - "name": "npm:micromark-util-sanitize-uri", - "data": { - "version": "2.0.1", - "packageName": "micromark-util-sanitize-uri", - "hash": "sha512-9N9IomZ/YuGGZZmQec1MbgxtlgougxTodVwDzzEouPKo3qFWvymFHWcnDi2vzV1ff6kas9ucW+o3yzJK9YB1AQ==" - } - }, - "npm:micromark-util-subtokenize": { - "type": "npm", - "name": "npm:micromark-util-subtokenize", - "data": { - "version": "2.1.0", - "packageName": "micromark-util-subtokenize", - "hash": "sha512-XQLu552iSctvnEcgXw6+Sx75GflAPNED1qx7eBJ+wydBb2KCbRZe+NwvIEEMM83uml1+2WSXpBAcp9IUCgCYWA==" - } - }, - "npm:micromark-util-symbol": { - "type": "npm", - "name": "npm:micromark-util-symbol", - "data": { - "version": "2.0.1", - "packageName": "micromark-util-symbol", - "hash": "sha512-vs5t8Apaud9N28kgCrRUdEed4UJ+wWNvicHLPxCa9ENlYuAY31M0ETy5y1vA33YoNPDFTghEbnh6efaE8h4x0Q==" - } - }, - "npm:micromark-util-types": { - "type": "npm", - "name": "npm:micromark-util-types", - "data": { - "version": "2.0.2", - "packageName": "micromark-util-types", - "hash": "sha512-Yw0ECSpJoViF1qTU4DC6NwtC4aWGt1EkzaQB8KPPyCRR8z9TWeV0HbEFGTO+ZY1wB22zmxnJqhPyTpOVCpeHTA==" - } - }, - "npm:micromark": { - "type": "npm", - "name": "npm:micromark", - "data": { - "version": "4.0.2", - "packageName": "micromark", - "hash": "sha512-zpe98Q6kvavpCr1NPVSCMebCKfD7CA2NqZ+rykeNhONIJBpc1tFKt9hucLGwha3jNTNI8lHpctWJWoimVF4PfA==" - } - }, - "npm:micromatch": { - "type": "npm", - "name": "npm:micromatch", - "data": { - "version": "4.0.8", - "packageName": "micromatch", - "hash": "sha512-PXwfBhYu0hBCPw8Dn0E+WDYb7af3dSLVWKi3HGv84IdF4TyFoC0ysxFd0Goxw7nSv4T/PzEJQxsYsEiFCKo2BA==" - } - }, - "npm:mime-db@1.52.0": { - "type": "npm", - "name": "npm:mime-db@1.52.0", - "data": { - "version": "1.52.0", - "packageName": "mime-db", - "hash": "sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==" - } - }, - "npm:mime-db": { - "type": "npm", - "name": "npm:mime-db", - "data": { - "version": "1.54.0", - "packageName": "mime-db", - "hash": "sha512-aU5EJuIN2WDemCcAp2vFBfp/m4EAhWJnUNSSw0ixs7/kXbd6Pg64EmwJkNdFhB8aWt1sH2CTXrLxo/iAGV3oPQ==" - } - }, - "npm:mime-types@2.1.35": { - "type": "npm", - "name": "npm:mime-types@2.1.35", - "data": { - "version": "2.1.35", - "packageName": "mime-types", - "hash": "sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==" - } - }, - "npm:mime-types": { - "type": "npm", - "name": "npm:mime-types", - "data": { - "version": "3.0.2", - "packageName": "mime-types", - "hash": "sha512-Lbgzdk0h4juoQ9fCKXW4by0UJqj+nOOrI9MJ1sSj4nI8aI2eo1qmvQEie4VD1glsS250n15LsWsYtCugiStS5A==" - } - }, - "npm:mime": { - "type": "npm", - "name": "npm:mime", - "data": { - "version": "1.6.0", - "packageName": "mime", - "hash": "sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg==" - } - }, - "npm:mime@3.0.0": { - "type": "npm", - "name": "npm:mime@3.0.0", - "data": { - "version": "3.0.0", - "packageName": "mime", - "hash": "sha512-jSCU7/VB1loIWBZe14aEYHU/+1UMEHoaO7qxCOVJOw9GgH72VAWppxNcjU+x9a2k3GSIBXNKxXQFqRvvZ7vr3A==" - } - }, - "npm:mimic-fn": { - "type": "npm", - "name": "npm:mimic-fn", - "data": { - "version": "2.1.0", - "packageName": "mimic-fn", - "hash": "sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==" - } - }, - "npm:mimic-response@1.0.1": { - "type": "npm", - "name": "npm:mimic-response@1.0.1", - "data": { - "version": "1.0.1", - "packageName": "mimic-response", - "hash": "sha512-j5EctnkH7amfV/q5Hgmoal1g2QHFJRraOtmx0JpIqkxhBhI/lJSl1nMpQ45hVarwNETOoWEimndZ4QK0RHxuxQ==" - } - }, - "npm:mimic-response": { - "type": "npm", - "name": "npm:mimic-response", - "data": { - "version": "3.1.0", - "packageName": "mimic-response", - "hash": "sha512-z0yWI+4FDrrweS8Zmt4Ej5HdJmky15+L2e6Wgn3+iK5fWzb6T3fhNFq2+MeTRb064c6Wr4N/wv0DzQTjNzHNGQ==" - } - }, - "npm:miniflare@4.20251217.0": { - "type": "npm", - "name": "npm:miniflare@4.20251217.0", - "data": { - "version": "4.20251217.0", - "packageName": "miniflare", - "hash": "sha512-8xsTQbPS6YV+ABZl9qiJIbsum6hbpbhqiyKpOVdzZrhK+1N8EFpT8R6aBZff7kezGmxYZSntjgjqTwJmj3JLgA==" - } - }, - "npm:miniflare": { - "type": "npm", - "name": "npm:miniflare", - "data": { - "version": "4.20260317.1", - "packageName": "miniflare", - "hash": "sha512-A3csI1HXEIfqe3oscgpoRMHdYlkReQKPH/g5JE53vFSjoM6YIAOGAzyDNeYffwd9oQkPWDj9xER8+vpxei8klA==" - } - }, - "npm:minimatch@10.2.3": { - "type": "npm", - "name": "npm:minimatch@10.2.3", - "data": { - "version": "10.2.3", - "packageName": "minimatch", - "hash": "sha512-Rwi3pnapEqirPSbWbrZaa6N3nmqq4Xer/2XooiOKyV3q12ML06f7MOuc5DVH8ONZIFhwIYQ3yzPH4nt7iWHaTg==" - } - }, - "npm:minimatch@10.2.4": { - "type": "npm", - "name": "npm:minimatch@10.2.4", - "data": { - "version": "10.2.4", - "packageName": "minimatch", - "hash": "sha512-oRjTw/97aTBN0RHbYCdtF1MQfvusSIBQM0IZEgzl6426+8jSC0nF1a/GmnVLpfB9yyr6g6FTqWqiZVbxrtaCIg==" - } - }, - "npm:minimatch": { - "type": "npm", - "name": "npm:minimatch", - "data": { - "version": "3.1.5", - "packageName": "minimatch", - "hash": "sha512-VgjWUsnnT6n+NUk6eZq77zeFdpW2LWDzP6zFGrCbHXiYNul5Dzqk2HHQ5uFH2DNW5Xbp8+jVzaeNt94ssEEl4w==" - } - }, - "npm:minimatch@5.1.9": { - "type": "npm", - "name": "npm:minimatch@5.1.9", - "data": { - "version": "5.1.9", - "packageName": "minimatch", - "hash": "sha512-7o1wEA2RyMP7Iu7GNba9vc0RWWGACJOCZBJX2GJWip0ikV+wcOsgVuY9uE8CPiyQhkGFSlhuSkZPavN7u1c2Fw==" - } - }, - "npm:minimatch@8.0.4": { - "type": "npm", - "name": "npm:minimatch@8.0.4", - "data": { - "version": "8.0.4", - "packageName": "minimatch", - "hash": "sha512-W0Wvr9HyFXZRGIDgCicunpQ299OKXs9RgZfaukz4qAW/pJhcpUfupc9c+OObPOFueNy8VSrZgEmDtk6Kh4WzDA==" - } - }, - "npm:minimatch@9.0.5": { - "type": "npm", - "name": "npm:minimatch@9.0.5", - "data": { - "version": "9.0.5", - "packageName": "minimatch", - "hash": "sha512-G6T0ZX48xgozx7587koeX9Ys2NYy6Gmv//P89sEte9V9whIapMNF4idKxnW2QtCcLiTWlb/wfCabAtAFWhhBow==" - } - }, - "npm:minimist": { - "type": "npm", - "name": "npm:minimist", - "data": { - "version": "1.2.8", - "packageName": "minimist", - "hash": "sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==" - } - }, - "npm:minipass-collect": { - "type": "npm", - "name": "npm:minipass-collect", - "data": { - "version": "2.0.1", - "packageName": "minipass-collect", - "hash": "sha512-D7V8PO9oaz7PWGLbCACuI1qEOsq7UKfLotx/C0Aet43fCUB/wfQ7DYeq2oR/svFJGYDHPr38SHATeaj/ZoKHKw==" - } - }, - "npm:minipass-fetch": { - "type": "npm", - "name": "npm:minipass-fetch", - "data": { - "version": "4.0.1", - "packageName": "minipass-fetch", - "hash": "sha512-j7U11C5HXigVuutxebFadoYBbd7VSdZWggSe64NVdvWNBqGAiXPL2QVCehjmw7lY1oF9gOllYbORh+hiNgfPgQ==" - } - }, - "npm:minipass-flush": { - "type": "npm", - "name": "npm:minipass-flush", - "data": { - "version": "1.0.5", - "packageName": "minipass-flush", - "hash": "sha512-JmQSYYpPUqX5Jyn1mXaRwOda1uQ8HP5KAT/oDSLCzt1BYRhQU0/hDtsB1ufZfEEzMZ9aAVmsBw8+FWsIXlClWw==" - } - }, - "npm:minipass-pipeline": { - "type": "npm", - "name": "npm:minipass-pipeline", - "data": { - "version": "1.2.4", - "packageName": "minipass-pipeline", - "hash": "sha512-xuIq7cIOt09RPRJ19gdi4b+RiNvDFYe5JH+ggNvBqGqpQXcru3PcRmOZuHBKWK1Txf9+cQ+HMVN4d6z46LZP7A==" - } - }, - "npm:minipass-sized": { - "type": "npm", - "name": "npm:minipass-sized", - "data": { - "version": "1.0.3", - "packageName": "minipass-sized", - "hash": "sha512-MbkQQ2CTiBMlA2Dm/5cY+9SWFEN8pzzOXi6rlM5Xxq0Yqbda5ZQy9sU75a673FE9ZK0Zsbr6Y5iP6u9nktfg2g==" - } - }, - "npm:minipass@3.3.6": { - "type": "npm", - "name": "npm:minipass@3.3.6", - "data": { - "version": "3.3.6", - "packageName": "minipass", - "hash": "sha512-DxiNidxSEK+tHG6zOIklvNOwm3hvCrbUrdtzY74U6HKTJxvIDfOUL5W5P2Ghd3DTkhhKPYGqeNUIh5qcM4YBfw==" - } - }, - "npm:minipass@4.2.8": { - "type": "npm", - "name": "npm:minipass@4.2.8", - "data": { - "version": "4.2.8", - "packageName": "minipass", - "hash": "sha512-fNzuVyifolSLFL4NzpF+wEF4qrgqaaKX0haXPQEdQ7NKAN+WecoKMHV09YcuL/DHxrUsYQOK3MiuDf7Ip2OXfQ==" - } - }, - "npm:minipass": { - "type": "npm", - "name": "npm:minipass", - "data": { - "version": "7.1.3", - "packageName": "minipass", - "hash": "sha512-tEBHqDnIoM/1rXME1zgka9g6Q2lcoCkxHLuc7ODJ5BxbP5d4c2Z5cGgtXAku59200Cx7diuHTOYfSBD8n6mm8A==" - } - }, - "npm:minizlib": { - "type": "npm", - "name": "npm:minizlib", - "data": { - "version": "3.1.0", - "packageName": "minizlib", - "hash": "sha512-KZxYo1BUkWD2TVFLr0MQoM8vUUigWD3LlD83a/75BqC+4qE0Hb1Vo5v1FgcfaNXvfXzr+5EhQ6ing/CaBijTlw==" - } - }, - "npm:mitt": { - "type": "npm", - "name": "npm:mitt", - "data": { - "version": "3.0.1", - "packageName": "mitt", - "hash": "sha512-vKivATfr97l2/QBCYAkXYDbrIWPM2IIKEl7YPhjCvKlG3kE2gm+uBo6nEXK3M5/Ffh/FLpKExzOQ3JJoJGFKBw==" - } - }, - "npm:mkdirp-classic": { - "type": "npm", - "name": "npm:mkdirp-classic", - "data": { - "version": "0.5.3", - "packageName": "mkdirp-classic", - "hash": "sha512-gKLcREMhtuZRwRAfqP3RFW+TK4JqApVBtOIftVgjuABpAtpxhPGaDcfvbhNvD0B8iD1oUr/txX35NjcaY6Ns/A==" - } - }, - "npm:mlly": { - "type": "npm", - "name": "npm:mlly", - "data": { - "version": "1.8.0", - "packageName": "mlly", - "hash": "sha512-l8D9ODSRWLe2KHJSifWGwBqpTZXIXTeo8mlKjY+E2HAakaTeNpqAyBZ8GSqLzHgw4XmHmC8whvpjJNMbFZN7/g==" - } - }, - "npm:moo": { - "type": "npm", - "name": "npm:moo", - "data": { - "version": "0.5.2", - "packageName": "moo", - "hash": "sha512-iSAJLHYKnX41mKcJKjqvnAN9sf0LMDTXDEvFv+ffuRR9a1MIuXLjMNL6EsnDHSkKLTWNqQQ5uo61P4EbU4NU+Q==" - } - }, - "npm:mri": { - "type": "npm", - "name": "npm:mri", - "data": { - "version": "1.2.0", - "packageName": "mri", - "hash": "sha512-tzzskb3bG8LvYGFF/mDTpq3jpI6Q9wc3LEmBaghu+DdCssd1FakN7Bc0hVNmEyGq1bq3RgfkCb3cmQLpNPOroA==" - } - }, - "npm:mrmime": { - "type": "npm", - "name": "npm:mrmime", - "data": { - "version": "2.0.1", - "packageName": "mrmime", - "hash": "sha512-Y3wQdFg2Va6etvQ5I82yUhGdsKrcYox6p7FfL1LbK2J4V01F9TGlepTIhnK24t7koZibmg82KGglhA1XK5IsLQ==" - } - }, - "npm:ms": { - "type": "npm", - "name": "npm:ms", - "data": { - "version": "2.1.3", - "packageName": "ms", - "hash": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==" - } - }, - "npm:mute-stream": { - "type": "npm", - "name": "npm:mute-stream", - "data": { - "version": "3.0.0", - "packageName": "mute-stream", - "hash": "sha512-dkEJPVvun4FryqBmZ5KhDo0K9iDXAwn08tMLDinNdRBNPcYEDiWYysLcc6k3mjTMlbP9KyylvRpd4wFtwrT9rw==" - } - }, - "npm:mysql2": { - "type": "npm", - "name": "npm:mysql2", - "data": { - "version": "3.15.3", - "packageName": "mysql2", - "hash": "sha512-FBrGau0IXmuqg4haEZRBfHNWB5mUARw6hNwPDXXGg0XzVJ50mr/9hb267lvpVMnhZ1FON3qNd4Xfcez1rbFwSg==" - } - }, - "npm:named-placeholders": { - "type": "npm", - "name": "npm:named-placeholders", - "data": { - "version": "1.1.3", - "packageName": "named-placeholders", - "hash": "sha512-eLoBxg6wE/rZkJPhU/xRX1WTpkFEwDJEN96oxFrTsqBdbT5ec295Q+CoHrL9IT0DipqKhmGcaZmwOt8OON5x1w==" - } - }, - "npm:nan": { - "type": "npm", - "name": "npm:nan", - "data": { - "version": "2.23.0", - "packageName": "nan", - "hash": "sha512-1UxuyYGdoQHcGg87Lkqm3FzefucTa0NAiOcuRsDmysep3c1LVCRK2krrUDafMWtjSG04htvAmvg96+SDknOmgQ==" - } - }, - "npm:nanoid": { - "type": "npm", - "name": "npm:nanoid", - "data": { - "version": "3.3.11", - "packageName": "nanoid", - "hash": "sha512-N8SpfPUnUp1bK+PMYW8qSWdl9U+wwNWI4QKxOYDy9JAro3WMX7p2OeVRF9v+347pnakNevPmiHhNmZ2HbFA76w==" - } - }, - "npm:napi-build-utils": { - "type": "npm", - "name": "npm:napi-build-utils", - "data": { - "version": "2.0.0", - "packageName": "napi-build-utils", - "hash": "sha512-GEbrYkbfF7MoNaoh2iGG84Mnf/WZfB0GdGEsM8wz7Expx/LlWf5U8t9nvJKXSp3qr5IsEbK04cBGhol/KwOsWA==" - } - }, - "npm:natural-compare": { - "type": "npm", - "name": "npm:natural-compare", - "data": { - "version": "1.4.0", - "packageName": "natural-compare", - "hash": "sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==" - } - }, - "npm:negotiator": { - "type": "npm", - "name": "npm:negotiator", - "data": { - "version": "1.0.0", - "packageName": "negotiator", - "hash": "sha512-8Ofs/AUQh8MaEcrlq5xOX0CQ9ypTF5dl78mjlMNfOK08fzpgTHQRQPBxcPlEtIw0yRpws+Zo/3r+5WRby7u3Gg==" - } - }, - "npm:netmask": { - "type": "npm", - "name": "npm:netmask", - "data": { - "version": "2.0.2", - "packageName": "netmask", - "hash": "sha512-dBpDMdxv9Irdq66304OLfEmQ9tbNRFnFTuZiLo+bD+r332bBmMJ8GBLXklIXXgxd3+v9+KUnZaUR5PJMa75Gsg==" - } - }, - "npm:node-abi": { - "type": "npm", - "name": "npm:node-abi", - "data": { - "version": "3.78.0", - "packageName": "node-abi", - "hash": "sha512-E2wEyrgX/CqvicaQYU3Ze1PFGjc4QYPGsjUrlYkqAE0WjHEZwgOsGMPMzkMse4LjJbDmaEuDX3CM036j5K2DSQ==" - } - }, - "npm:node-domexception": { - "type": "npm", - "name": "npm:node-domexception", - "data": { - "version": "1.0.0", - "packageName": "node-domexception", - "hash": "sha512-/jKZoMpw0F8GRwl4/eLROPA3cfcXtLApP0QzLmUT/HuPCZWyB7IY9ZrMeKw2O/nFIqPQB3PVM9aYm0F312AXDQ==" - } - }, - "npm:node-fetch-native": { - "type": "npm", - "name": "npm:node-fetch-native", - "data": { - "version": "1.6.7", - "packageName": "node-fetch-native", - "hash": "sha512-g9yhqoedzIUm0nTnTqAQvueMPVOuIY16bqgAJJC8XOOubYFNwz6IER9qs0Gq2Xd0+CecCKFjtdDTMA4u4xG06Q==" - } - }, - "npm:node-fetch@2.7.0": { - "type": "npm", - "name": "npm:node-fetch@2.7.0", - "data": { - "version": "2.7.0", - "packageName": "node-fetch", - "hash": "sha512-c4FRfUm/dbcWZ7U+1Wq0AwCyFL+3nt2bEw05wfxSz+DWpWsitgmSgYmy2dQdWyKC1694ELPqMs/YzUSNozLt8A==" - } - }, - "npm:node-fetch": { - "type": "npm", - "name": "npm:node-fetch", - "data": { - "version": "3.3.2", - "packageName": "node-fetch", - "hash": "sha512-dRB78srN/l6gqWulah9SrxeYnxeddIG30+GOqK/9OlLVyLg3HPnr6SqOWTWOXKRwC2eGYCkZ59NNuSgvSrpgOA==" - } - }, - "npm:node-gyp-build": { - "type": "npm", - "name": "npm:node-gyp-build", - "data": { - "version": "4.8.4", - "packageName": "node-gyp-build", - "hash": "sha512-LA4ZjwlnUblHVgq0oBF3Jl/6h/Nvs5fzBLwdEF4nuxnFdsfajde4WfxtJr3CaiH+F6ewcIB/q4jQ4UzPyid+CQ==" - } - }, - "npm:node-gyp": { - "type": "npm", - "name": "npm:node-gyp", - "data": { - "version": "11.5.0", - "packageName": "node-gyp", - "hash": "sha512-ra7Kvlhxn5V9Slyus0ygMa2h+UqExPqUIkfk7Pc8QTLT956JLSy51uWFwHtIYy0vI8cB4BDhc/S03+880My/LQ==" - } - }, - "npm:node-mock-http": { - "type": "npm", - "name": "npm:node-mock-http", - "data": { - "version": "1.0.4", - "packageName": "node-mock-http", - "hash": "sha512-8DY+kFsDkNXy1sJglUfuODx1/opAGJGyrTuFqEoN90oRc2Vk0ZbD4K2qmKXBBEhZQzdKHIVfEJpDU8Ak2NJEvQ==" - } - }, - "npm:node-releases": { - "type": "npm", - "name": "npm:node-releases", - "data": { - "version": "2.0.27", - "packageName": "node-releases", - "hash": "sha512-nmh3lCkYZ3grZvqcCH+fjmQ7X+H0OeZgP40OierEaAptX4XofMh5kwNbWh7lBduUzCcV/8kZ+NDLCwm2iorIlA==" - } - }, - "npm:nopt": { - "type": "npm", - "name": "npm:nopt", - "data": { - "version": "8.1.0", - "packageName": "nopt", - "hash": "sha512-ieGu42u/Qsa4TFktmaKEwM6MQH0pOWnaB3htzh0JRtx84+Mebc0cbZYN5bC+6WTZ4+77xrL9Pn5m7CV6VIkV7A==" - } - }, - "npm:normalize-url": { - "type": "npm", - "name": "npm:normalize-url", - "data": { - "version": "6.1.0", - "packageName": "normalize-url", - "hash": "sha512-DlL+XwOy3NxAQ8xuC0okPgK46iuVNAK01YN7RueYBqqFeGsBjV9XmCAzAdgt+667bCl5kPh9EqKKDwnaPG1I7A==" - } - }, - "npm:npm-normalize-package-bin": { - "type": "npm", - "name": "npm:npm-normalize-package-bin", - "data": { - "version": "4.0.0", - "packageName": "npm-normalize-package-bin", - "hash": "sha512-TZKxPvItzai9kN9H/TkmCtx/ZN/hvr3vUycjlfmH0ootY9yFBzNOpiXAdIn1Iteqsvk4lQn6B5PTrt+n6h8k/w==" - } - }, - "npm:npm-run-all2": { - "type": "npm", - "name": "npm:npm-run-all2", - "data": { - "version": "8.0.4", - "packageName": "npm-run-all2", - "hash": "sha512-wdbB5My48XKp2ZfJUlhnLVihzeuA1hgBnqB2J9ahV77wLS+/YAJAlN8I+X3DIFIPZ3m5L7nplmlbhNiFDmXRDA==" - } - }, - "npm:npm-run-path@4.0.1": { - "type": "npm", - "name": "npm:npm-run-path@4.0.1", - "data": { - "version": "4.0.1", - "packageName": "npm-run-path", - "hash": "sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw==" - } - }, - "npm:npm-run-path": { - "type": "npm", - "name": "npm:npm-run-path", - "data": { - "version": "6.0.0", - "packageName": "npm-run-path", - "hash": "sha512-9qny7Z9DsQU8Ou39ERsPU4OZQlSTP47ShQzuKZ6PRXpYLtIFgl/DEBYEXKlvcEa+9tHVcK8CF81Y2V72qaZhWA==" - } - }, - "npm:nth-check": { - "type": "npm", - "name": "npm:nth-check", - "data": { - "version": "2.1.1", - "packageName": "nth-check", - "hash": "sha512-lqjrjmaOoAnWfMmBPL+XNnynZh2+swxiX3WUE0s4yEHI6m+AwrK2UZOimIRl3X/4QctVqS8AiZjFqyOGrMXb/w==" - } - }, - "npm:null-prototype-object": { - "type": "npm", - "name": "npm:null-prototype-object", - "data": { - "version": "1.2.5", - "packageName": "null-prototype-object", - "hash": "sha512-YAPMPwBVlXXmIx/eIHx/KwIL1Bsd8I+YHQdFpW0Ydvez6vu5Bx2CaP4GrEnH5c1huVWZD9MqEuFwAJoBMm5LJQ==" - } - }, - "npm:nx": { - "type": "npm", - "name": "npm:nx", - "data": { - "version": "22.6.1", - "packageName": "nx", - "hash": "sha512-b4eo52o5aCVt3oG6LPYvD2Cul3JFBMgr2p9OjMBIo6oU6QfSR693H2/UuUMepLtO6jcIniPKOcIrf6Ue8aXAww==" - } - }, - "npm:nypm": { - "type": "npm", - "name": "npm:nypm", - "data": { - "version": "0.6.2", - "packageName": "nypm", - "hash": "sha512-7eM+hpOtrKrBDCh7Ypu2lJ9Z7PNZBdi/8AT3AX8xoCj43BBVHD0hPSTEvMtkMpfs8FCqBGhxB+uToIQimA111g==" - } - }, - "npm:oauth4webapi": { - "type": "npm", - "name": "npm:oauth4webapi", - "data": { - "version": "3.8.2", - "packageName": "oauth4webapi", - "hash": "sha512-FzZZ+bht5X0FKe7Mwz3DAVAmlH1BV5blSak/lHMBKz0/EBMhX6B10GlQYI51+oRp8ObJaX0g6pXrAxZh5s8rjw==" - } - }, - "npm:object-assign": { - "type": "npm", - "name": "npm:object-assign", - "data": { - "version": "4.1.1", - "packageName": "object-assign", - "hash": "sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==" - } - }, - "npm:object-inspect": { - "type": "npm", - "name": "npm:object-inspect", - "data": { - "version": "1.13.4", - "packageName": "object-inspect", - "hash": "sha512-W67iLl4J2EXEGTbfeHCffrjDfitvLANg0UlX3wFUUSTx92KXRFegMHUVgSqE+wvhAbi4WqjGg9czysTV2Epbew==" - } - }, - "npm:object-keys": { - "type": "npm", - "name": "npm:object-keys", - "data": { - "version": "1.1.1", - "packageName": "object-keys", - "hash": "sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==" - } - }, - "npm:object.assign": { - "type": "npm", - "name": "npm:object.assign", - "data": { - "version": "4.1.7", - "packageName": "object.assign", - "hash": "sha512-nK28WOo+QIjBkDduTINE4JkF/UJJKyf2EJxvJKfblDpyg0Q+pkOHNTL0Qwy6NP6FhE/EnzV73BxxqcJaXY9anw==" - } - }, - "npm:object.entries": { - "type": "npm", - "name": "npm:object.entries", - "data": { - "version": "1.1.9", - "packageName": "object.entries", - "hash": "sha512-8u/hfXFRBD1O0hPUjioLhoWFHRmt6tKA4/vZPyckBr18l1KE9uHrFaFaUi8MDRTpi4uak2goyPTSNJLXX2k2Hw==" - } - }, - "npm:object.fromentries": { - "type": "npm", - "name": "npm:object.fromentries", - "data": { - "version": "2.0.8", - "packageName": "object.fromentries", - "hash": "sha512-k6E21FzySsSK5a21KRADBd/NGneRegFO5pLHfdQLpRDETUNJueLXs3WCzyQ3tFRDYgbq3KHGXfTbi2bs8WQ6rQ==" - } - }, - "npm:object.values": { - "type": "npm", - "name": "npm:object.values", - "data": { - "version": "1.2.1", - "packageName": "object.values", - "hash": "sha512-gXah6aZrcUxjWg2zR2MwouP2eHlCBzdV4pygudehaKXSGW4v2AsRQUK+lwwXhii6KFZcunEnmSUoYp5CXibxtA==" - } - }, - "npm:obug": { - "type": "npm", - "name": "npm:obug", - "data": { - "version": "2.1.1", - "packageName": "obug", - "hash": "sha512-uTqF9MuPraAQ+IsnPf366RG4cP9RtUi7MLO1N3KEc+wb0a6yKpeL0lmk2IB1jY5KHPAlTc6T/JRdC/YqxHNwkQ==" - } - }, - "npm:ohash": { - "type": "npm", - "name": "npm:ohash", - "data": { - "version": "2.0.11", - "packageName": "ohash", - "hash": "sha512-RdR9FQrFwNBNXAr4GixM8YaRZRJ5PUWbKYbE5eOsrwAjJW0q2REGcf79oYPsLyskQCZG1PLN+S/K1V00joZAoQ==" - } - }, - "npm:on-exit-leak-free": { - "type": "npm", - "name": "npm:on-exit-leak-free", - "data": { - "version": "2.1.2", - "packageName": "on-exit-leak-free", - "hash": "sha512-0eJJY6hXLGf1udHwfNftBqH+g73EU4B504nZeKpz1sYRKafAghwxEJunB2O7rDZkL4PGfsMVnTXZ2EjibbqcsA==" - } - }, - "npm:on-finished": { - "type": "npm", - "name": "npm:on-finished", - "data": { - "version": "2.4.1", - "packageName": "on-finished", - "hash": "sha512-oVlzkg3ENAhCk2zdv7IJwd/QUD4z2RxRwpkcGY8psCVcCYZNq4wYnVWALHM+brtuJjePWiYF/ClmuDr8Ch5+kg==" - } - }, - "npm:once": { - "type": "npm", - "name": "npm:once", - "data": { - "version": "1.4.0", - "packageName": "once", - "hash": "sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==" - } - }, - "npm:onetime": { - "type": "npm", - "name": "npm:onetime", - "data": { - "version": "5.1.2", - "packageName": "onetime", - "hash": "sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg==" - } - }, - "npm:open": { - "type": "npm", - "name": "npm:open", - "data": { - "version": "8.4.2", - "packageName": "open", - "hash": "sha512-7x81NCL719oNbsq/3mh+hVrAWmFuEYUqrq/Iw3kUzH8ReypT9QQ0BLoJS7/G9k6N81XjW4qHWtjWwe/9eLy1EQ==" - } - }, - "npm:opener": { - "type": "npm", - "name": "npm:opener", - "data": { - "version": "1.5.2", - "packageName": "opener", - "hash": "sha512-ur5UIdyw5Y7yEj9wLzhqXiy6GZ3Mwx0yGI+5sMn2r0N0v3cKJvUmFH5yPP+WXh9e0xfyzyJX95D8l088DNFj7A==" - } - }, - "npm:optionator": { - "type": "npm", - "name": "npm:optionator", - "data": { - "version": "0.9.4", - "packageName": "optionator", - "hash": "sha512-6IpQ7mKUxRcZNLIObR0hz7lxsapSSIYNZJwXPGeF0mTVqGKFIXj1DQcMoT22S3ROcLyY/rz0PWaWZ9ayWmad9g==" - } - }, - "npm:ora": { - "type": "npm", - "name": "npm:ora", - "data": { - "version": "5.3.0", - "packageName": "ora", - "hash": "sha512-zAKMgGXUim0Jyd6CXK9lraBnD3H5yPGBPPOkC23a2BG6hsm4Zu6OQSjQuEtV0BHDf4aKHcUFvJiGRrFuW3MG8g==" - } - }, - "npm:own-keys": { - "type": "npm", - "name": "npm:own-keys", - "data": { - "version": "1.0.1", - "packageName": "own-keys", - "hash": "sha512-qFOyK5PjiWZd+QQIh+1jhdb9LpxTF0qs7Pm8o5QHYZ0M3vKqSqzsZaEB6oWlxZ+q2sJBMI/Ktgd2N5ZwQoRHfg==" - } - }, - "npm:oxc-parser": { - "type": "npm", - "name": "npm:oxc-parser", - "data": { - "version": "0.104.0", - "packageName": "oxc-parser", - "hash": "sha512-sIEpobLwe7KhW1JdTvBJkNDgjJarHNsx+Q37iRNyASvmlDOD+f8Qirvwp6nFNz7Q5q3JcsJ1dpKM+oMPTDF/dw==" - } - }, - "npm:oxc-resolver": { - "type": "npm", - "name": "npm:oxc-resolver", - "data": { - "version": "11.19.1", - "packageName": "oxc-resolver", - "hash": "sha512-qE/CIg/spwrTBFt5aKmwe3ifeDdLfA2NESN30E42X/lII5ClF8V7Wt6WIJhcGZjp0/Q+nQ+9vgxGk//xZNX2hg==" - } - }, - "npm:oxc-walker": { - "type": "npm", - "name": "npm:oxc-walker", - "data": { - "version": "0.6.0", - "packageName": "oxc-walker", - "hash": "sha512-BA3hlxq5+Sgzp7TCQF52XDXCK5mwoIZuIuxv/+JuuTzOs2RXkLqWZgZ69d8pJDDjnL7wiREZTWHBzFp/UWH88Q==" - } - }, - "npm:oxlint-tsgolint": { - "type": "npm", - "name": "npm:oxlint-tsgolint", - "data": { - "version": "0.17.1", - "packageName": "oxlint-tsgolint", - "hash": "sha512-gJc7hb1ZQFbWjRDYpu1XG+5IRdr1S/Jz/W2ohcpaqIXuDmHU0ujGiM0x05J0nIfwMF3HOEcANi/+j6T0Uecdpg==" - } - }, - "npm:oxlint": { - "type": "npm", - "name": "npm:oxlint", - "data": { - "version": "1.56.0", - "packageName": "oxlint", - "hash": "sha512-Q+5Mj5PVaH/R6/fhMMFzw4dT+KPB+kQW4kaL8FOIq7tfhlnEVp6+3lcWqFruuTNlUo9srZUW3qH7Id4pskeR6g==" - } - }, - "npm:p-cancelable": { - "type": "npm", - "name": "npm:p-cancelable", - "data": { - "version": "2.1.1", - "packageName": "p-cancelable", - "hash": "sha512-BZOr3nRQHOntUjTrH8+Lh54smKHoHyur8We1V8DSMVrl5A2malOOwuJRnKRDjSnkoeBh4at6BwEnb5I7Jl31wg==" - } - }, - "npm:p-limit@2.3.0": { - "type": "npm", - "name": "npm:p-limit@2.3.0", - "data": { - "version": "2.3.0", - "packageName": "p-limit", - "hash": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==" - } - }, - "npm:p-limit@3.1.0": { - "type": "npm", - "name": "npm:p-limit@3.1.0", - "data": { - "version": "3.1.0", - "packageName": "p-limit", - "hash": "sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==" - } - }, - "npm:p-limit": { - "type": "npm", - "name": "npm:p-limit", - "data": { - "version": "7.3.0", - "packageName": "p-limit", - "hash": "sha512-7cIXg/Z0M5WZRblrsOla88S4wAK+zOQQWeBYfV3qJuJXMr+LnbYjaadrFaS0JILfEDPVqHyKnZ1Z/1d6J9VVUw==" - } - }, - "npm:p-locate@3.0.0": { - "type": "npm", - "name": "npm:p-locate@3.0.0", - "data": { - "version": "3.0.0", - "packageName": "p-locate", - "hash": "sha512-x+12w/To+4GFfgJhBEpiDcLozRJGegY+Ei7/z0tSLkMmxGZNybVMSfWj9aJn8Z5Fc7dBUNJOOVgPv2H7IwulSQ==" - } - }, - "npm:p-locate": { - "type": "npm", - "name": "npm:p-locate", - "data": { - "version": "5.0.0", - "packageName": "p-locate", - "hash": "sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==" - } - }, - "npm:p-map": { - "type": "npm", - "name": "npm:p-map", - "data": { - "version": "7.0.3", - "packageName": "p-map", - "hash": "sha512-VkndIv2fIB99swvQoA65bm+fsmt6UNdGeIB0oxBs+WhAhdh08QA04JXpI7rbB9r08/nkbysKoya9rtDERYOYMA==" - } - }, - "npm:p-reflect": { - "type": "npm", - "name": "npm:p-reflect", - "data": { - "version": "2.1.0", - "packageName": "p-reflect", - "hash": "sha512-paHV8NUz8zDHu5lhr/ngGWQiW067DK/+IbJ+RfZ4k+s8y4EKyYCz8pGYWjxCg35eHztpJAt+NUgvN4L+GCbPlg==" - } - }, - "npm:p-retry": { - "type": "npm", - "name": "npm:p-retry", - "data": { - "version": "4.6.2", - "packageName": "p-retry", - "hash": "sha512-312Id396EbJdvRONlngUx0NydfrIQ5lsYu0znKVUzVvArzEIt08V1qhtyESbGVd1FGX7UKtiFp5uwKZdM8wIuQ==" - } - }, - "npm:p-timeout": { - "type": "npm", - "name": "npm:p-timeout", - "data": { - "version": "4.1.0", - "packageName": "p-timeout", - "hash": "sha512-+/wmHtzJuWii1sXn3HCuH/FTwGhrp4tmJTxSKJbfS+vkipci6osxXM5mY0jUiRzWKMTgUT8l7HFbeSwZAynqHw==" - } - }, - "npm:p-try": { - "type": "npm", - "name": "npm:p-try", - "data": { - "version": "2.2.0", - "packageName": "p-try", - "hash": "sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==" - } - }, - "npm:pac-proxy-agent": { - "type": "npm", - "name": "npm:pac-proxy-agent", - "data": { - "version": "7.2.0", - "packageName": "pac-proxy-agent", - "hash": "sha512-TEB8ESquiLMc0lV8vcd5Ql/JAKAoyzHFXaStwjkzpOpC5Yv+pIzLfHvjTSdf3vpa2bMiUQrg9i6276yn8666aA==" - } - }, - "npm:pac-resolver": { - "type": "npm", - "name": "npm:pac-resolver", - "data": { - "version": "7.0.1", - "packageName": "pac-resolver", - "hash": "sha512-5NPgf87AT2STgwa2ntRMr45jTKrYBGkVU36yT0ig/n/GMAa3oPqhZfIQ2kMEimReg0+t9kZViDVZ83qfVUlckg==" - } - }, - "npm:package-json-from-dist": { - "type": "npm", - "name": "npm:package-json-from-dist", - "data": { - "version": "1.0.1", - "packageName": "package-json-from-dist", - "hash": "sha512-UEZIS3/by4OC8vL3P2dTXRETpebLI2NiI5vIrjaD/5UtrkFX/tNbwjTSRAGC/+7CAo2pIcBaRgWmcBBHcsaCIw==" - } - }, - "npm:package-manager-detector": { - "type": "npm", - "name": "npm:package-manager-detector", - "data": { - "version": "1.6.0", - "packageName": "package-manager-detector", - "hash": "sha512-61A5ThoTiDG/C8s8UMZwSorAGwMJ0ERVGj2OjoW5pAalsNOg15+iQiPzrLJ4jhZ1HJzmC2PIHT2oEiH3R5fzNA==" - } - }, - "npm:parent-module": { - "type": "npm", - "name": "npm:parent-module", - "data": { - "version": "1.0.1", - "packageName": "parent-module", - "hash": "sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==" - } - }, - "npm:parse-json": { - "type": "npm", - "name": "npm:parse-json", - "data": { - "version": "5.2.0", - "packageName": "parse-json", - "hash": "sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg==" - } - }, - "npm:parse-ms@2.1.0": { - "type": "npm", - "name": "npm:parse-ms@2.1.0", - "data": { - "version": "2.1.0", - "packageName": "parse-ms", - "hash": "sha512-kHt7kzLoS9VBZfUsiKjv43mr91ea+U05EyKkEtqp7vNbHxmaVuEqN7XxeEVnGrMtYOAxGrDElSi96K7EgO1zCA==" - } - }, - "npm:parse-ms": { - "type": "npm", - "name": "npm:parse-ms", - "data": { - "version": "4.0.0", - "packageName": "parse-ms", - "hash": "sha512-TXfryirbmq34y8QBwgqCVLi+8oA3oWx2eAnSn62ITyEhEYaWRlVZ2DvMM9eZbMs/RfxPu/PK/aBLyGj4IrqMHw==" - } - }, - "npm:parse5": { - "type": "npm", - "name": "npm:parse5", - "data": { - "version": "7.3.0", - "packageName": "parse5", - "hash": "sha512-IInvU7fabl34qmi9gY8XOVxhYyMyuH2xUNpb2q8/Y+7552KlejkRvqvD19nMoUW/uQGGbqNpA6Tufu5FL5BZgw==" - } - }, - "npm:parseurl": { - "type": "npm", - "name": "npm:parseurl", - "data": { - "version": "1.3.3", - "packageName": "parseurl", - "hash": "sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ==" - } - }, - "npm:path-browserify": { - "type": "npm", - "name": "npm:path-browserify", - "data": { - "version": "1.0.1", - "packageName": "path-browserify", - "hash": "sha512-b7uo2UCUOYZcnF/3ID0lulOJi/bafxa1xPe7ZPsammBSpjSWQkjNxlt635YGS2MiR9GjvuXCtz2emr3jbsz98g==" - } - }, - "npm:path-exists@3.0.0": { - "type": "npm", - "name": "npm:path-exists@3.0.0", - "data": { - "version": "3.0.0", - "packageName": "path-exists", - "hash": "sha512-bpC7GYwiDYQ4wYLe+FA8lhRjhQCMcQGuSgGGqDkg/QerRWw9CmGRT0iSOVRSZJ29NMLZgIzqaljJ63oaL4NIJQ==" - } - }, - "npm:path-exists": { - "type": "npm", - "name": "npm:path-exists", - "data": { - "version": "4.0.0", - "packageName": "path-exists", - "hash": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==" - } - }, - "npm:path-key": { - "type": "npm", - "name": "npm:path-key", - "data": { - "version": "3.1.1", - "packageName": "path-key", - "hash": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==" - } - }, - "npm:path-key@4.0.0": { - "type": "npm", - "name": "npm:path-key@4.0.0", - "data": { - "version": "4.0.0", - "packageName": "path-key", - "hash": "sha512-haREypq7xkM7ErfgIyA0z+Bj4AGKlMSdlQE2jvJo6huWD1EdkKYV+G/T4nq0YEF2vgTT8kqMFKo1uHn950r4SQ==" - } - }, - "npm:path-parse": { - "type": "npm", - "name": "npm:path-parse", - "data": { - "version": "1.0.7", - "packageName": "path-parse", - "hash": "sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==" - } - }, - "npm:path-scurry@1.11.1": { - "type": "npm", - "name": "npm:path-scurry@1.11.1", - "data": { - "version": "1.11.1", - "packageName": "path-scurry", - "hash": "sha512-Xa4Nw17FS9ApQFJ9umLiJS4orGjm7ZzwUrwamcGQuHSzDyth9boKDaycYdDcZDuqYATXw4HFXgaqWTctW/v1HA==" - } - }, - "npm:path-scurry": { - "type": "npm", - "name": "npm:path-scurry", - "data": { - "version": "2.0.2", - "packageName": "path-scurry", - "hash": "sha512-3O/iVVsJAPsOnpwWIeD+d6z/7PmqApyQePUtCndjatj/9I5LylHvt5qluFaBT3I5h3r1ejfR056c+FCv+NnNXg==" - } - }, - "npm:path-to-regexp@6.1.0": { - "type": "npm", - "name": "npm:path-to-regexp@6.1.0", - "data": { - "version": "6.1.0", - "packageName": "path-to-regexp", - "hash": "sha512-h9DqehX3zZZDCEm+xbfU0ZmwCGFCAAraPJWMXJ4+v32NjZJilVg3k1TcKsRgIb8IQ/izZSaydDc1OhJCZvs2Dw==" - } - }, - "npm:path-to-regexp@6.3.0": { - "type": "npm", - "name": "npm:path-to-regexp@6.3.0", - "data": { - "version": "6.3.0", - "packageName": "path-to-regexp", - "hash": "sha512-Yhpw4T9C6hPpgPeA28us07OJeqZ5EzQTkbfwuhsUg0c237RomFoETJgmp2sa3F/41gfLE6G5cqcYwznmeEeOlQ==" - } - }, - "npm:path-to-regexp": { - "type": "npm", - "name": "npm:path-to-regexp", - "data": { - "version": "8.3.0", - "packageName": "path-to-regexp", - "hash": "sha512-7jdwVIRtsP8MYpdXSwOS0YdD0Du+qOoF/AEPIt88PcCFrZCzx41oxku1jD88hZBwbNUIEfpqvuhjFaMAqMTWnA==" - } - }, - "npm:path-to-regexp-updated": { - "type": "npm", - "name": "npm:path-to-regexp-updated", - "data": { - "version": "npm:path-to-regexp@6.3.0", - "packageName": "path-to-regexp-updated", - "hash": "sha512-Yhpw4T9C6hPpgPeA28us07OJeqZ5EzQTkbfwuhsUg0c237RomFoETJgmp2sa3F/41gfLE6G5cqcYwznmeEeOlQ==" - } - }, - "npm:pathe": { - "type": "npm", - "name": "npm:pathe", - "data": { - "version": "2.0.3", - "packageName": "pathe", - "hash": "sha512-WUjGcAqP1gQacoQe+OBJsFA7Ld4DyXuUIjZ5cc75cLHvJ7dtNsTugphxIADwspS+AraAUePCKrSVtPLFj/F88w==" - } - }, - "npm:pend": { - "type": "npm", - "name": "npm:pend", - "data": { - "version": "1.2.0", - "packageName": "pend", - "hash": "sha512-F3asv42UuXchdzt+xXqfW1OGlVBe+mxa2mqI0pg5yAHZPvFmY3Y6drSf/GQ1A86WgWEN9Kzh/WrgKa6iGcHXLg==" - } - }, - "npm:perfect-debounce": { - "type": "npm", - "name": "npm:perfect-debounce", - "data": { - "version": "1.0.0", - "packageName": "perfect-debounce", - "hash": "sha512-xCy9V055GLEqoFaHoC1SoLIaLmWctgCUaBaWxDZ7/Zx4CTyX7cJQLJOok/orfjZAh9kEYpjJa4d0KcJmCbctZA==" - } - }, - "npm:picocolors": { - "type": "npm", - "name": "npm:picocolors", - "data": { - "version": "1.1.1", - "packageName": "picocolors", - "hash": "sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==" - } - }, - "npm:picomatch@2.3.1": { - "type": "npm", - "name": "npm:picomatch@2.3.1", - "data": { - "version": "2.3.1", - "packageName": "picomatch", - "hash": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==" - } - }, - "npm:picomatch": { - "type": "npm", - "name": "npm:picomatch", - "data": { - "version": "4.0.3", - "packageName": "picomatch", - "hash": "sha512-5gTmgEY/sqK6gFXLIsQNH19lWb4ebPDLA4SdLP7dsWkIXHWlG66oPuVvXSGFPppYZz8ZDZq0dYYrbHfBCVUb1Q==" - } - }, - "npm:pidtree": { - "type": "npm", - "name": "npm:pidtree", - "data": { - "version": "0.6.0", - "packageName": "pidtree", - "hash": "sha512-eG2dWTVw5bzqGRztnHExczNxt5VGsE6OwTeCG3fdUf9KBsZzO3R5OIIIzWR+iZA0NtZ+RDVdaoE2dK1cn6jH4g==" - } - }, - "npm:pino-abstract-transport": { - "type": "npm", - "name": "npm:pino-abstract-transport", - "data": { - "version": "3.0.0", - "packageName": "pino-abstract-transport", - "hash": "sha512-wlfUczU+n7Hy/Ha5j9a/gZNy7We5+cXp8YL+X+PG8S0KXxw7n/JXA3c46Y0zQznIJ83URJiwy7Lh56WLokNuxg==" - } - }, - "npm:pino-std-serializers": { - "type": "npm", - "name": "npm:pino-std-serializers", - "data": { - "version": "7.1.0", - "packageName": "pino-std-serializers", - "hash": "sha512-BndPH67/JxGExRgiX1dX0w1FvZck5Wa4aal9198SrRhZjH3GxKQUKIBnYJTdj2HDN3UQAS06HlfcSbQj2OHmaw==" - } - }, - "npm:pino": { - "type": "npm", - "name": "npm:pino", - "data": { - "version": "10.3.1", - "packageName": "pino", - "hash": "sha512-r34yH/GlQpKZbU1BvFFqOjhISRo1MNx1tWYsYvmj6KIRHSPMT2+yHOEb1SG6NMvRoHRF0a07kCOox/9yakl1vg==" - } - }, - "npm:pkg-types@1.3.1": { - "type": "npm", - "name": "npm:pkg-types@1.3.1", - "data": { - "version": "1.3.1", - "packageName": "pkg-types", - "hash": "sha512-/Jm5M4RvtBFVkKWRu2BLUTNP8/M2a+UwuAX+ae4770q1qVGtfjG+WTCupoZixokjmHiry8uI+dlY8KXYV5HVVQ==" - } - }, - "npm:pkg-types": { - "type": "npm", - "name": "npm:pkg-types", - "data": { - "version": "2.3.0", - "packageName": "pkg-types", - "hash": "sha512-SIqCzDRg0s9npO5XQ3tNZioRY1uK06lA41ynBC1YmFTmnY6FjUjVt6s4LoADmwoig1qqD0oK8h1p/8mlMx8Oig==" - } - }, - "npm:pkg-up": { - "type": "npm", - "name": "npm:pkg-up", - "data": { - "version": "3.1.0", - "packageName": "pkg-up", - "hash": "sha512-nDywThFk1i4BQK4twPQ6TA4RT8bDY96yeuCVBWL3ePARCiEKDRSrNGbFIgUJpLp+XeIR65v8ra7WuJOFUBtkMA==" - } - }, - "npm:portfinder": { - "type": "npm", - "name": "npm:portfinder", - "data": { - "version": "1.0.38", - "packageName": "portfinder", - "hash": "sha512-rEwq/ZHlJIKw++XtLAO8PPuOQA/zaPJOZJ37BVuN97nLpMJeuDVLVGRwbFoBgLudgdTMP2hdRJP++H+8QOA3vg==" - } - }, - "npm:possible-typed-array-names": { - "type": "npm", - "name": "npm:possible-typed-array-names", - "data": { - "version": "1.1.0", - "packageName": "possible-typed-array-names", - "hash": "sha512-/+5VFTchJDoVj3bhoqi6UeymcD00DAwb1nJwamzPvHEszJ4FpF6SNNbUbOS8yI56qHzdV8eK0qEfOSiodkTdxg==" - } - }, - "npm:postcss-calc": { - "type": "npm", - "name": "npm:postcss-calc", - "data": { - "version": "8.2.4", - "packageName": "postcss-calc", - "hash": "sha512-SmWMSJmB8MRnnULldx0lQIyhSNvuDl9HfrZkaqqE/WHAhToYsAvDq+yAsA/kIyINDszOp3Rh0GFoNuH5Ypsm3Q==" - } - }, - "npm:postcss-colormin": { - "type": "npm", - "name": "npm:postcss-colormin", - "data": { - "version": "5.3.1", - "packageName": "postcss-colormin", - "hash": "sha512-UsWQG0AqTFQmpBegeLLc1+c3jIqBNB0zlDGRWR+dQ3pRKJL1oeMzyqmH3o2PIfn9MBdNrVPWhDbT769LxCTLJQ==" - } - }, - "npm:postcss-convert-values": { - "type": "npm", - "name": "npm:postcss-convert-values", - "data": { - "version": "5.1.3", - "packageName": "postcss-convert-values", - "hash": "sha512-82pC1xkJZtcJEfiLw6UXnXVXScgtBrjlO5CBmuDQc+dlb88ZYheFsjTn40+zBVi3DkfF7iezO0nJUPLcJK3pvA==" - } - }, - "npm:postcss-discard-comments": { - "type": "npm", - "name": "npm:postcss-discard-comments", - "data": { - "version": "5.1.2", - "packageName": "postcss-discard-comments", - "hash": "sha512-+L8208OVbHVF2UQf1iDmRcbdjJkuBF6IS29yBDSiWUIzpYaAhtNl6JYnYm12FnkeCwQqF5LeklOu6rAqgfBZqQ==" - } - }, - "npm:postcss-discard-duplicates@5.1.0": { - "type": "npm", - "name": "npm:postcss-discard-duplicates@5.1.0", - "data": { - "version": "5.1.0", - "packageName": "postcss-discard-duplicates", - "hash": "sha512-zmX3IoSI2aoenxHV6C7plngHWWhUOV3sP1T8y2ifzxzbtnuhk1EdPwm0S1bIUNaJ2eNbWeGLEwzw8huPD67aQw==" - } - }, - "npm:postcss-discard-duplicates": { - "type": "npm", - "name": "npm:postcss-discard-duplicates", - "data": { - "version": "6.0.3", - "packageName": "postcss-discard-duplicates", - "hash": "sha512-+JA0DCvc5XvFAxwx6f/e68gQu/7Z9ud584VLmcgto28eB8FqSFZwtrLwB5Kcp70eIoWP/HXqz4wpo8rD8gpsTw==" - } - }, - "npm:postcss-discard-empty": { - "type": "npm", - "name": "npm:postcss-discard-empty", - "data": { - "version": "5.1.1", - "packageName": "postcss-discard-empty", - "hash": "sha512-zPz4WljiSuLWsI0ir4Mcnr4qQQ5e1Ukc3i7UfE2XcrwKK2LIPIqE5jxMRxO6GbI3cv//ztXDsXwEWT3BHOGh3A==" - } - }, - "npm:postcss-discard-overridden": { - "type": "npm", - "name": "npm:postcss-discard-overridden", - "data": { - "version": "5.1.0", - "packageName": "postcss-discard-overridden", - "hash": "sha512-21nOL7RqWR1kasIVdKs8HNqQJhFxLsyRfAnUDm4Fe4t4mCWL9OJiHvlHPjcd8zc5Myu89b/7wZDnOSjFgeWRtw==" - } - }, - "npm:postcss-js": { - "type": "npm", - "name": "npm:postcss-js", - "data": { - "version": "4.1.0", - "packageName": "postcss-js", - "hash": "sha512-oIAOTqgIo7q2EOwbhb8UalYePMvYoIeRY2YKntdpFQXNosSu3vLrniGgmH9OKs/qAkfoj5oB3le/7mINW1LCfw==" - } - }, - "npm:postcss-merge-longhand": { - "type": "npm", - "name": "npm:postcss-merge-longhand", - "data": { - "version": "5.1.7", - "packageName": "postcss-merge-longhand", - "hash": "sha512-YCI9gZB+PLNskrK0BB3/2OzPnGhPkBEwmwhfYk1ilBHYVAZB7/tkTHFBAnCrvBBOmeYyMYw3DMjT55SyxMBzjQ==" - } - }, - "npm:postcss-merge-rules": { - "type": "npm", - "name": "npm:postcss-merge-rules", - "data": { - "version": "5.1.4", - "packageName": "postcss-merge-rules", - "hash": "sha512-0R2IuYpgU93y9lhVbO/OylTtKMVcHb67zjWIfCiKR9rWL3GUk1677LAqD/BcHizukdZEjT8Ru3oHRoAYoJy44g==" - } - }, - "npm:postcss-minify-font-values": { - "type": "npm", - "name": "npm:postcss-minify-font-values", - "data": { - "version": "5.1.0", - "packageName": "postcss-minify-font-values", - "hash": "sha512-el3mYTgx13ZAPPirSVsHqFzl+BBBDrXvbySvPGFnQcTI4iNslrPaFq4muTkLZmKlGk4gyFAYUBMH30+HurREyA==" - } - }, - "npm:postcss-minify-gradients": { - "type": "npm", - "name": "npm:postcss-minify-gradients", - "data": { - "version": "5.1.1", - "packageName": "postcss-minify-gradients", - "hash": "sha512-VGvXMTpCEo4qHTNSa9A0a3D+dxGFZCYwR6Jokk+/3oB6flu2/PnPXAh2x7x52EkY5xlIHLm+Le8tJxe/7TNhzw==" - } - }, - "npm:postcss-minify-params": { - "type": "npm", - "name": "npm:postcss-minify-params", - "data": { - "version": "5.1.4", - "packageName": "postcss-minify-params", - "hash": "sha512-+mePA3MgdmVmv6g+30rn57USjOGSAyuxUmkfiWpzalZ8aiBkdPYjXWtHuwJGm1v5Ojy0Z0LaSYhHaLJQB0P8Jw==" - } - }, - "npm:postcss-minify-selectors": { - "type": "npm", - "name": "npm:postcss-minify-selectors", - "data": { - "version": "5.2.1", - "packageName": "postcss-minify-selectors", - "hash": "sha512-nPJu7OjZJTsVUmPdm2TcaiohIwxP+v8ha9NehQ2ye9szv4orirRU3SDdtUmKH+10nzn0bAyOXZ0UEr7OpvLehg==" - } - }, - "npm:postcss-mixins": { - "type": "npm", - "name": "npm:postcss-mixins", - "data": { - "version": "12.1.2", - "packageName": "postcss-mixins", - "hash": "sha512-90pSxmZVfbX9e5xCv7tI5RV1mnjdf16y89CJKbf/hD7GyOz1FCxcYMl8ZYA8Hc56dbApTKKmU9HfvgfWdCxlwg==" - } - }, - "npm:postcss-nested@5.0.6": { - "type": "npm", - "name": "npm:postcss-nested@5.0.6", - "data": { - "version": "5.0.6", - "packageName": "postcss-nested", - "hash": "sha512-rKqm2Fk0KbA8Vt3AdGN0FB9OBOMDVajMG6ZCf/GoHgdxUJ4sBFp0A/uMIRm+MJUdo33YXEtjqIz8u7DAp8B7DA==" - } - }, - "npm:postcss-nested": { - "type": "npm", - "name": "npm:postcss-nested", - "data": { - "version": "7.0.2", - "packageName": "postcss-nested", - "hash": "sha512-5osppouFc0VR9/VYzYxO03VaDa3e8F23Kfd6/9qcZTUI8P58GIYlArOET2Wq0ywSl2o2PjELhYOFI4W7l5QHKw==" - } - }, - "npm:postcss-normalize-charset": { - "type": "npm", - "name": "npm:postcss-normalize-charset", - "data": { - "version": "5.1.0", - "packageName": "postcss-normalize-charset", - "hash": "sha512-mSgUJ+pd/ldRGVx26p2wz9dNZ7ji6Pn8VWBajMXFf8jk7vUoSrZ2lt/wZR7DtlZYKesmZI680qjr2CeFF2fbUg==" - } - }, - "npm:postcss-normalize-display-values": { - "type": "npm", - "name": "npm:postcss-normalize-display-values", - "data": { - "version": "5.1.0", - "packageName": "postcss-normalize-display-values", - "hash": "sha512-WP4KIM4o2dazQXWmFaqMmcvsKmhdINFblgSeRgn8BJ6vxaMyaJkwAzpPpuvSIoG/rmX3M+IrRZEz2H0glrQNEA==" - } - }, - "npm:postcss-normalize-positions": { - "type": "npm", - "name": "npm:postcss-normalize-positions", - "data": { - "version": "5.1.1", - "packageName": "postcss-normalize-positions", - "hash": "sha512-6UpCb0G4eofTCQLFVuI3EVNZzBNPiIKcA1AKVka+31fTVySphr3VUgAIULBhxZkKgwLImhzMR2Bw1ORK+37INg==" - } - }, - "npm:postcss-normalize-repeat-style": { - "type": "npm", - "name": "npm:postcss-normalize-repeat-style", - "data": { - "version": "5.1.1", - "packageName": "postcss-normalize-repeat-style", - "hash": "sha512-mFpLspGWkQtBcWIRFLmewo8aC3ImN2i/J3v8YCFUwDnPu3Xz4rLohDO26lGjwNsQxB3YF0KKRwspGzE2JEuS0g==" - } - }, - "npm:postcss-normalize-string": { - "type": "npm", - "name": "npm:postcss-normalize-string", - "data": { - "version": "5.1.0", - "packageName": "postcss-normalize-string", - "hash": "sha512-oYiIJOf4T9T1N4i+abeIc7Vgm/xPCGih4bZz5Nm0/ARVJ7K6xrDlLwvwqOydvyL3RHNf8qZk6vo3aatiw/go3w==" - } - }, - "npm:postcss-normalize-timing-functions": { - "type": "npm", - "name": "npm:postcss-normalize-timing-functions", - "data": { - "version": "5.1.0", - "packageName": "postcss-normalize-timing-functions", - "hash": "sha512-DOEkzJ4SAXv5xkHl0Wa9cZLF3WCBhF3o1SKVxKQAa+0pYKlueTpCgvkFAHfk+Y64ezX9+nITGrDZeVGgITJXjg==" - } - }, - "npm:postcss-normalize-unicode": { - "type": "npm", - "name": "npm:postcss-normalize-unicode", - "data": { - "version": "5.1.1", - "packageName": "postcss-normalize-unicode", - "hash": "sha512-qnCL5jzkNUmKVhZoENp1mJiGNPcsJCs1aaRmURmeJGES23Z/ajaln+EPTD+rBeNkSryI+2WTdW+lwcVdOikrpA==" - } - }, - "npm:postcss-normalize-url": { - "type": "npm", - "name": "npm:postcss-normalize-url", - "data": { - "version": "5.1.0", - "packageName": "postcss-normalize-url", - "hash": "sha512-5upGeDO+PVthOxSmds43ZeMeZfKH+/DKgGRD7TElkkyS46JXAUhMzIKiCa7BabPeIy3AQcTkXwVVN7DbqsiCew==" - } - }, - "npm:postcss-normalize-whitespace": { - "type": "npm", - "name": "npm:postcss-normalize-whitespace", - "data": { - "version": "5.1.1", - "packageName": "postcss-normalize-whitespace", - "hash": "sha512-83ZJ4t3NUDETIHTa3uEg6asWjSBYL5EdkVB0sDncx9ERzOKBVJIUeDO9RyA9Zwtig8El1d79HBp0JEi8wvGQnA==" - } - }, - "npm:postcss-ordered-values": { - "type": "npm", - "name": "npm:postcss-ordered-values", - "data": { - "version": "5.1.3", - "packageName": "postcss-ordered-values", - "hash": "sha512-9UO79VUhPwEkzbb3RNpqqghc6lcYej1aveQteWY+4POIwlqkYE21HKWaLDF6lWNuqCobEAyTovVhtI32Rbv2RQ==" - } - }, - "npm:postcss-preset-mantine": { - "type": "npm", - "name": "npm:postcss-preset-mantine", - "data": { - "version": "1.18.0", - "packageName": "postcss-preset-mantine", - "hash": "sha512-sP6/s1oC7cOtBdl4mw/IRKmKvYTuzpRrH/vT6v9enMU/EQEQ31eQnHcWtFghOXLH87AAthjL/Q75rLmin1oZoA==" - } - }, - "npm:postcss-reduce-initial": { - "type": "npm", - "name": "npm:postcss-reduce-initial", - "data": { - "version": "5.1.2", - "packageName": "postcss-reduce-initial", - "hash": "sha512-dE/y2XRaqAi6OvjzD22pjTUQ8eOfc6m/natGHgKFBK9DxFmIm69YmaRVQrGgFlEfc1HePIurY0TmDeROK05rIg==" - } - }, - "npm:postcss-reduce-transforms": { - "type": "npm", - "name": "npm:postcss-reduce-transforms", - "data": { - "version": "5.1.0", - "packageName": "postcss-reduce-transforms", - "hash": "sha512-2fbdbmgir5AvpW9RLtdONx1QoYG2/EtqpNQbFASDlixBbAYuTcJ0dECwlqNqH7VbaUnEnh8SrxOe2sRIn24XyQ==" - } - }, - "npm:postcss-selector-parser@6.1.2": { - "type": "npm", - "name": "npm:postcss-selector-parser@6.1.2", - "data": { - "version": "6.1.2", - "packageName": "postcss-selector-parser", - "hash": "sha512-Q8qQfPiZ+THO/3ZrOrO0cJJKfpYCagtMUkXbnEfmgUjwXg6z/WBeOyS9APBBPCTSiDV+s4SwQGu8yFsiMRIudg==" - } - }, - "npm:postcss-selector-parser": { - "type": "npm", - "name": "npm:postcss-selector-parser", - "data": { - "version": "7.1.0", - "packageName": "postcss-selector-parser", - "hash": "sha512-8sLjZwK0R+JlxlYcTuVnyT2v+htpdrjDOKuMcOVdYjt52Lh8hWRYpxBPoKx/Zg+bcjc3wx6fmQevMmUztS/ccA==" - } - }, - "npm:postcss-simple-vars": { - "type": "npm", - "name": "npm:postcss-simple-vars", - "data": { - "version": "7.0.1", - "packageName": "postcss-simple-vars", - "hash": "sha512-5GLLXaS8qmzHMOjVxqkk1TZPf1jMqesiI7qLhnlyERalG0sMbHIbJqrcnrpmZdKCLglHnRHoEBB61RtGTsj++A==" - } - }, - "npm:postcss-svgo": { - "type": "npm", - "name": "npm:postcss-svgo", - "data": { - "version": "5.1.0", - "packageName": "postcss-svgo", - "hash": "sha512-D75KsH1zm5ZrHyxPakAxJWtkyXew5qwS70v56exwvw542d9CRtTo78K0WeFxZB4G7JXKKMbEZtZayTGdIky/eA==" - } - }, - "npm:postcss-unique-selectors": { - "type": "npm", - "name": "npm:postcss-unique-selectors", - "data": { - "version": "5.1.1", - "packageName": "postcss-unique-selectors", - "hash": "sha512-5JiODlELrz8L2HwxfPnhOWZYWDxVHWL83ufOv84NrcgipI7TaeRsatAhK4Tr2/ZiYldpK/wBvw5BD3qfaK96GA==" - } - }, - "npm:postcss-value-parser": { - "type": "npm", - "name": "npm:postcss-value-parser", - "data": { - "version": "4.2.0", - "packageName": "postcss-value-parser", - "hash": "sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==" - } - }, - "npm:postcss-values-parser": { - "type": "npm", - "name": "npm:postcss-values-parser", - "data": { - "version": "6.0.2", - "packageName": "postcss-values-parser", - "hash": "sha512-YLJpK0N1brcNJrs9WatuJFtHaV9q5aAOj+S4DI5S7jgHlRfm0PIbDCAFRYMQD5SHq7Fy6xsDhyutgS0QOAs0qw==" - } - }, - "npm:postcss": { - "type": "npm", - "name": "npm:postcss", - "data": { - "version": "8.5.8", - "packageName": "postcss", - "hash": "sha512-OW/rX8O/jXnm82Ey1k44pObPtdblfiuWnrd8X7GJ7emImCOstunGbXUpp7HdBrFQX6rJzn3sPT397Wp5aCwCHg==" - } - }, - "npm:postgres": { - "type": "npm", - "name": "npm:postgres", - "data": { - "version": "3.4.7", - "packageName": "postgres", - "hash": "sha512-Jtc2612XINuBjIl/QTWsV5UvE8UHuNblcO3vVADSrKsrc6RqGX6lOW1cEo3CM2v0XG4Nat8nI+YM7/f26VxXLw==" - } - }, - "npm:preact-render-to-string": { - "type": "npm", - "name": "npm:preact-render-to-string", - "data": { - "version": "6.5.11", - "packageName": "preact-render-to-string", - "hash": "sha512-ubnauqoGczeGISiOh6RjX0/cdaF8v/oDXIjO85XALCQjwQP+SB4RDXXtvZ6yTYSjG+PC1QRP2AhPgCEsM2EvUw==" - } - }, - "npm:preact": { - "type": "npm", - "name": "npm:preact", - "data": { - "version": "10.24.3", - "packageName": "preact", - "hash": "sha512-Z2dPnBnMUfyQfSQ+GBdsGa16hz35YmLmtTLhM169uW944hYL6xzTYkJjC07j+Wosz733pMWx0fgON3JNw1jJQA==" - } - }, - "npm:prebuild-install": { - "type": "npm", - "name": "npm:prebuild-install", - "data": { - "version": "7.1.3", - "packageName": "prebuild-install", - "hash": "sha512-8Mf2cbV7x1cXPUILADGI3wuhfqWvtiLA1iclTDbFRZkgRQS0NqsPZphna9V+HyTEadheuPmjaJMsbzKQFOzLug==" - } - }, - "npm:prelude-ls": { - "type": "npm", - "name": "npm:prelude-ls", - "data": { - "version": "1.2.1", - "packageName": "prelude-ls", - "hash": "sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==" - } - }, - "npm:prettier-linter-helpers": { - "type": "npm", - "name": "npm:prettier-linter-helpers", - "data": { - "version": "1.0.1", - "packageName": "prettier-linter-helpers", - "hash": "sha512-SxToR7P8Y2lWmv/kTzVLC1t/GDI2WGjMwNhLLE9qtH8Q13C+aEmuRlzDst4Up4s0Wc8sF2M+J57iB3cMLqftfg==" - } - }, - "npm:prettier": { - "type": "npm", - "name": "npm:prettier", - "data": { - "version": "3.8.1", - "packageName": "prettier", - "hash": "sha512-UOnG6LftzbdaHZcKoPFtOcCKztrQ57WkHDeRD9t/PTQtmT0NHSeWWepj6pS0z/N7+08BHFDQVUrfmfMRcZwbMg==" - } - }, - "npm:pretty-format": { - "type": "npm", - "name": "npm:pretty-format", - "data": { - "version": "30.3.0", - "packageName": "pretty-format", - "hash": "sha512-oG4T3wCbfeuvljnyAzhBvpN45E8iOTXCU/TD3zXW80HA3dQ4ahdqMkWGiPWZvjpQwlbyHrPTWUAqUzGzv4l1JQ==" - } - }, - "npm:pretty-ms@7.0.1": { - "type": "npm", - "name": "npm:pretty-ms@7.0.1", - "data": { - "version": "7.0.1", - "packageName": "pretty-ms", - "hash": "sha512-973driJZvxiGOQ5ONsFhOF/DtzPMOMtgC11kCpUrPGMTgqp2q/1gwzCquocrN33is0VZ5GFHXZYMM9l6h67v2Q==" - } - }, - "npm:pretty-ms": { - "type": "npm", - "name": "npm:pretty-ms", - "data": { - "version": "9.3.0", - "packageName": "pretty-ms", - "hash": "sha512-gjVS5hOP+M3wMm5nmNOucbIrqudzs9v/57bWRHQWLYklXqoXKrVfYW2W9+glfGsqtPgpiz5WwyEEB+ksXIx3gQ==" - } - }, - "npm:prism-themes": { - "type": "npm", - "name": "npm:prism-themes", - "data": { - "version": "1.9.0", - "packageName": "prism-themes", - "hash": "sha512-tX2AYsehKDw1EORwBps+WhBFKc2kxfoFpQAjxBndbZKr4fRmMkv47XN0BghC/K1qwodB1otbe4oF23vUTFDokw==" - } - }, - "npm:prisma": { - "type": "npm", - "name": "npm:prisma", - "data": { - "version": "7.5.0", - "packageName": "prisma", - "hash": "sha512-n30qZpWehaYQzigLjmuPisyEsvOzHt7bZeRyg8gZ5DvJo9FGjD+gNaY59Ns3hlLD5/jZH5GBeftIss0jDbUoLg==" - } - }, - "npm:proc-log": { - "type": "npm", - "name": "npm:proc-log", - "data": { - "version": "5.0.0", - "packageName": "proc-log", - "hash": "sha512-Azwzvl90HaF0aCz1JrDdXQykFakSSNPaPoiZ9fm5qJIMHioDZEi7OAdRwSm6rSoPtY3Qutnm3L7ogmg3dc+wbQ==" - } - }, - "npm:process-warning@4.0.1": { - "type": "npm", - "name": "npm:process-warning@4.0.1", - "data": { - "version": "4.0.1", - "packageName": "process-warning", - "hash": "sha512-3c2LzQ3rY9d0hc1emcsHhfT9Jwz0cChib/QN89oME2R451w5fy3f0afAhERFZAwrbDU43wk12d0ORBpDVME50Q==" - } - }, - "npm:process-warning": { - "type": "npm", - "name": "npm:process-warning", - "data": { - "version": "5.0.0", - "packageName": "process-warning", - "hash": "sha512-a39t9ApHNx2L4+HBnQKqxxHNs1r7KF+Intd8Q/g1bUh6q0WIp9voPXJ/x0j+ZL45KF1pJd9+q2jLIRMfvEshkA==" - } - }, - "npm:progress": { - "type": "npm", - "name": "npm:progress", - "data": { - "version": "2.0.3", - "packageName": "progress", - "hash": "sha512-7PiHtLll5LdnKIMw100I+8xJXR5gW2QwWYkT6iJva0bXitZKa/XMrSbdmg3r2Xnaidz9Qumd0VPaMrZlF9V9sA==" - } - }, - "npm:promise-retry": { - "type": "npm", - "name": "npm:promise-retry", - "data": { - "version": "2.0.1", - "packageName": "promise-retry", - "hash": "sha512-y+WKFlBR8BGXnsNlIHFGPZmyDf3DFMoLhaflAnyZgV6rG6xu+JwesTo2Q9R6XwYmtmwAFCkAk3e35jEdoeh/3g==" - } - }, - "npm:prop-types": { - "type": "npm", - "name": "npm:prop-types", - "data": { - "version": "15.8.1", - "packageName": "prop-types", - "hash": "sha512-oj87CgZICdulUohogVAR7AjlC0327U4el4L6eAvOqCeudMDVU0NThNaV+b9Df4dXgSP1gXMTnPdhfe/2qDH5cg==" - } - }, - "npm:proper-lockfile": { - "type": "npm", - "name": "npm:proper-lockfile", - "data": { - "version": "4.1.2", - "packageName": "proper-lockfile", - "hash": "sha512-TjNPblN4BwAWMXU8s9AEz4JmQxnD1NNL7bNOY/AKUzyamc379FWASUhc/K1pL2noVb+XmZKLL68cjzLsiOAMaA==" - } - }, - "npm:proxy-addr": { - "type": "npm", - "name": "npm:proxy-addr", - "data": { - "version": "2.0.7", - "packageName": "proxy-addr", - "hash": "sha512-llQsMLSUDUPT44jdrU/O37qlnifitDP+ZwrmmZcoSKyLKvtZxpyV0n2/bD/N4tBAAZ/gJEdZU7KMraoK1+XYAg==" - } - }, - "npm:proxy-agent": { - "type": "npm", - "name": "npm:proxy-agent", - "data": { - "version": "6.5.0", - "packageName": "proxy-agent", - "hash": "sha512-TmatMXdr2KlRiA2CyDu8GqR8EjahTG3aY3nXjdzFyoZbmB8hrBsTyMezhULIXKnC0jpfjlmiZ3+EaCzoInSu/A==" - } - }, - "npm:proxy-from-env": { - "type": "npm", - "name": "npm:proxy-from-env", - "data": { - "version": "1.1.0", - "packageName": "proxy-from-env", - "hash": "sha512-D+zkORCbA9f1tdWRK0RaCR3GPv50cMxcrz4X8k5LTSUD1Dkw47mKJEZQNunItRTkWwgtaUSo1RVFRIG9ZXiFYg==" - } - }, - "npm:pump": { - "type": "npm", - "name": "npm:pump", - "data": { - "version": "3.0.3", - "packageName": "pump", - "hash": "sha512-todwxLMY7/heScKmntwQG8CXVkWUOdYxIvY2s0VWAAMh/nd8SoYiRaKjlr7+iCs984f2P8zvrfWcDDYVb73NfA==" - } - }, - "npm:punycode-regex": { - "type": "npm", - "name": "npm:punycode-regex", - "data": { - "version": "1.0.1", - "packageName": "punycode-regex", - "hash": "sha512-6twir6Wqa80MGTpqRMxxwWNHHdgQI+UC81g8YyYDY7UYiPIVQ20ZlskmXOWIq195eRzyGzyD3qT645OTz9AAZA==" - } - }, - "npm:punycode": { - "type": "npm", - "name": "npm:punycode", - "data": { - "version": "2.3.1", - "packageName": "punycode", - "hash": "sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg==" - } - }, - "npm:puppeteer-core": { - "type": "npm", - "name": "npm:puppeteer-core", - "data": { - "version": "24.40.0", - "packageName": "puppeteer-core", - "hash": "sha512-MWL3XbUCfVgGR0gRsidzT6oKJT2QydPLhMITU6HoVWiiv4gkb6gJi3pcdAa8q4HwjBTbqISOWVP4aJiiyUJvag==" - } - }, - "npm:puppeteer": { - "type": "npm", - "name": "npm:puppeteer", - "data": { - "version": "24.40.0", - "packageName": "puppeteer", - "hash": "sha512-IxQbDq93XHVVLWHrAkFP7F7iHvb9o0mgfsSIMlhHb+JM+JjM1V4v4MNSQfcRWJopx9dsNOr9adYv0U5fm9BJBQ==" - } - }, - "npm:pure-rand": { - "type": "npm", - "name": "npm:pure-rand", - "data": { - "version": "6.1.0", - "packageName": "pure-rand", - "hash": "sha512-bVWawvoZoBYpp6yIoQtQXHZjmz35RSVHnUOTefl8Vcjr8snTPY1wnpSPMWekcFwbxI6gtmT7rSYPFvz71ldiOA==" - } - }, - "npm:qs": { - "type": "npm", - "name": "npm:qs", - "data": { - "version": "6.14.0", - "packageName": "qs", - "hash": "sha512-YWWTjgABSKcvs/nWBi9PycY/JiPJqOD4JA6o9Sej2AtvSGarXxKC3OQSk4pAarbdQlKAh5D4FCQkJNkW+GAn3w==" - } - }, - "npm:quansync": { - "type": "npm", - "name": "npm:quansync", - "data": { - "version": "1.0.0", - "packageName": "quansync", - "hash": "sha512-5xZacEEufv3HSTPQuchrvV6soaiACMFnq1H8wkVioctoH3TRha9Sz66lOxRwPK/qZj7HPiSveih9yAyh98gvqA==" - } - }, - "npm:queue-microtask": { - "type": "npm", - "name": "npm:queue-microtask", - "data": { - "version": "1.2.3", - "packageName": "queue-microtask", - "hash": "sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==" - } - }, - "npm:quick-format-unescaped": { - "type": "npm", - "name": "npm:quick-format-unescaped", - "data": { - "version": "4.0.4", - "packageName": "quick-format-unescaped", - "hash": "sha512-tYC1Q1hgyRuHgloV/YXs2w15unPVh8qfu/qCTfhTYamaw7fyhumKa2yGpdSo87vY32rIclj+4fWYQXUMs9EHvg==" - } - }, - "npm:quick-lru": { - "type": "npm", - "name": "npm:quick-lru", - "data": { - "version": "5.1.1", - "packageName": "quick-lru", - "hash": "sha512-WuyALRjWPDGtt/wzJiadO5AXY+8hZ80hVpe6MyivgraREW751X3SbhRvG3eLKOYN+8VEvqLcf3wdnt44Z4S4SA==" - } - }, - "npm:quote-unquote": { - "type": "npm", - "name": "npm:quote-unquote", - "data": { - "version": "1.0.0", - "packageName": "quote-unquote", - "hash": "sha512-twwRO/ilhlG/FIgYeKGFqyHhoEhqgnKVkcmqMKi2r524gz3ZbDTcyFt38E9xjJI2vT+KbRNHVbnJ/e0I25Azwg==" - } - }, - "npm:radix3": { - "type": "npm", - "name": "npm:radix3", - "data": { - "version": "1.1.2", - "packageName": "radix3", - "hash": "sha512-b484I/7b8rDEdSDKckSSBA8knMpcdsXudlE/LNL639wFoHKwLbEkQFZHWEYwDC0wa0FKUcCY+GAF73Z7wxNVFA==" - } - }, - "npm:range-parser": { - "type": "npm", - "name": "npm:range-parser", - "data": { - "version": "1.2.1", - "packageName": "range-parser", - "hash": "sha512-Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg==" - } - }, - "npm:raw-body": { - "type": "npm", - "name": "npm:raw-body", - "data": { - "version": "3.0.2", - "packageName": "raw-body", - "hash": "sha512-K5zQjDllxWkf7Z5xJdV0/B0WTNqx6vxG70zJE4N0kBs4LovmEYWJzQGxC9bS9RAKu3bgM40lrd5zoLJ12MQ5BA==" - } - }, - "npm:rc9": { - "type": "npm", - "name": "npm:rc9", - "data": { - "version": "2.1.2", - "packageName": "rc9", - "hash": "sha512-btXCnMmRIBINM2LDZoEmOogIZU7Qe7zn4BpomSKZ/ykbLObuBdvG+mFq11DL6fjH1DRwHhrlgtYWG96bJiC7Cg==" - } - }, - "npm:rc": { - "type": "npm", - "name": "npm:rc", - "data": { - "version": "1.2.8", - "packageName": "rc", - "hash": "sha512-y3bGgqKj3QBdxLbLkomlohkvsA8gdAiUQlSBJnBhfn+BPxg4bc62d8TcBW15wavDfgexCgccckhcZvywyQYPOw==" - } - }, - "npm:re2": { - "type": "npm", - "name": "npm:re2", - "data": { - "version": "1.22.1", - "packageName": "re2", - "hash": "sha512-E4J0EtgyNLdIr0wTg0dQPefuiqNY29KaLacytiUAYYRzxCG+zOkWoUygt1rI+TA1LrhN49/njrfSO1DHtVC5Vw==" - } - }, - "npm:react-dom": { - "type": "npm", - "name": "npm:react-dom", - "data": { - "version": "19.2.4", - "packageName": "react-dom", - "hash": "sha512-AXJdLo8kgMbimY95O2aKQqsz2iWi9jMgKJhRBAxECE4IFxfcazB2LmzloIoibJI3C12IlY20+KFaLv+71bUJeQ==" - } - }, - "npm:react-is": { - "type": "npm", - "name": "npm:react-is", - "data": { - "version": "16.13.1", - "packageName": "react-is", - "hash": "sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ==" - } - }, - "npm:react-is@18.3.1": { - "type": "npm", - "name": "npm:react-is@18.3.1", - "data": { - "version": "18.3.1", - "packageName": "react-is", - "hash": "sha512-/LLMVyas0ljjAtoYiPqYiL8VWXzUUdThrmU5+n20DZv+a+ClRoevUzw5JxU+Ieh5/c87ytoTBV9G1FiKfNJdmg==" - } - }, - "npm:react-number-format": { - "type": "npm", - "name": "npm:react-number-format", - "data": { - "version": "5.4.4", - "packageName": "react-number-format", - "hash": "sha512-wOmoNZoOpvMminhifQYiYSTCLUDOiUbBunrMrMjA+dV52sY+vck1S4UhR6PkgnoCquvvMSeJjErXZ4qSaWCliA==" - } - }, - "npm:react-remove-scroll-bar": { - "type": "npm", - "name": "npm:react-remove-scroll-bar", - "data": { - "version": "2.3.8", - "packageName": "react-remove-scroll-bar", - "hash": "sha512-9r+yi9+mgU33AKcj6IbT9oRCO78WriSj6t/cF8DWBZJ9aOGPOTEDvdUDz1FwKim7QXWwmHqtdHnRJfhAxEG46Q==" - } - }, - "npm:react-remove-scroll": { - "type": "npm", - "name": "npm:react-remove-scroll", - "data": { - "version": "2.7.1", - "packageName": "react-remove-scroll", - "hash": "sha512-HpMh8+oahmIdOuS5aFKKY6Pyog+FNaZV/XyJOq7b4YFwsFHe5yYfdbIalI4k3vU2nSDql7YskmUseHsRrJqIPA==" - } - }, - "npm:react-streaming": { - "type": "npm", - "name": "npm:react-streaming", - "data": { - "version": "0.4.16", - "packageName": "react-streaming", - "hash": "sha512-qaDUklKjpmPStven+MvFFk3SWN+UaeIugBNwKgd97UPIR8IMUzk68gIg2iPR1fN7+HkrpLmTVwZE9dGoLZTcCA==" - } - }, - "npm:react-style-singleton": { - "type": "npm", - "name": "npm:react-style-singleton", - "data": { - "version": "2.2.3", - "packageName": "react-style-singleton", - "hash": "sha512-b6jSvxvVnyptAiLjbkWLE/lOnR4lfTtDAl+eUC7RZy+QQWc6wRzIV2CE6xBuMmDxc2qIihtDCZD5NPOFl7fRBQ==" - } - }, - "npm:react-textarea-autosize": { - "type": "npm", - "name": "npm:react-textarea-autosize", - "data": { - "version": "8.5.9", - "packageName": "react-textarea-autosize", - "hash": "sha512-U1DGlIQN5AwgjTyOEnI1oCcMuEr1pv1qOtklB2l4nyMGbHzWrI0eFsYK0zos2YWqAolJyG0IWJaqWmWj5ETh0A==" - } - }, - "npm:react": { - "type": "npm", - "name": "npm:react", - "data": { - "version": "19.2.4", - "packageName": "react", - "hash": "sha512-9nfp2hYpCwOjAN+8TZFGhtWEwgvWHXqESH8qT89AT/lWklpLON22Lc8pEtnpsZz7VmawabSU0gCjnj8aC0euHQ==" - } - }, - "npm:read-package-json-fast": { - "type": "npm", - "name": "npm:read-package-json-fast", - "data": { - "version": "4.0.0", - "packageName": "read-package-json-fast", - "hash": "sha512-qpt8EwugBWDw2cgE2W+/3oxC+KTez2uSVR8JU9Q36TXPAGCaozfQUs59v4j4GFpWTaw0i6hAZSvOmu1J0uOEUg==" - } - }, - "npm:readable-stream": { - "type": "npm", - "name": "npm:readable-stream", - "data": { - "version": "3.6.2", - "packageName": "readable-stream", - "hash": "sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==" - } - }, - "npm:readdirp": { - "type": "npm", - "name": "npm:readdirp", - "data": { - "version": "4.1.2", - "packageName": "readdirp", - "hash": "sha512-GDhwkLfywWL2s6vEjyhri+eXmfH6j1L7JE27WhqLeYzoh/A3DBaYGEj2H/HFZCn/kMfim73FXxEJTw06WtxQwg==" - } - }, - "npm:real-require": { - "type": "npm", - "name": "npm:real-require", - "data": { - "version": "0.2.0", - "packageName": "real-require", - "hash": "sha512-57frrGM/OCTLqLOAh0mhVA9VBMHd+9U7Zb2THMGdBUoZVOtGbJzjxsYGDJ3A9AYYCP4hn6y1TVbaOfzWtm5GFg==" - } - }, - "npm:reflect.getprototypeof": { - "type": "npm", - "name": "npm:reflect.getprototypeof", - "data": { - "version": "1.0.10", - "packageName": "reflect.getprototypeof", - "hash": "sha512-00o4I+DVrefhv+nX0ulyi3biSHCPDe+yLv5o/p6d/UVlirijB8E16FtfwSAi4g3tcqrQ4lRAqQSoFEZJehYEcw==" - } - }, - "npm:regexp-to-ast": { - "type": "npm", - "name": "npm:regexp-to-ast", - "data": { - "version": "0.5.0", - "packageName": "regexp-to-ast", - "hash": "sha512-tlbJqcMHnPKI9zSrystikWKwHkBqu2a/Sgw01h3zFjvYrMxEDYHzzoMZnUrbIfpTFEsoRnnviOXNCzFiSc54Qw==" - } - }, - "npm:regexp-tree": { - "type": "npm", - "name": "npm:regexp-tree", - "data": { - "version": "0.1.27", - "packageName": "regexp-tree", - "hash": "sha512-iETxpjK6YoRWJG5o6hXLwvjYAoW+FEZn9os0PD/b6AP6xQwsa/Y7lCVgIixBbUPMfhu+i2LtdeAqVTgGlQarfA==" - } - }, - "npm:regexp.prototype.flags": { - "type": "npm", - "name": "npm:regexp.prototype.flags", - "data": { - "version": "1.5.4", - "packageName": "regexp.prototype.flags", - "hash": "sha512-dYqgNSZbDwkaJ2ceRd9ojCGjBq+mOm9LmtXnAnEGyHhN/5R7iDW2TRw3h+o/jCFxus3P2LfWIIiwowAjANm7IA==" - } - }, - "npm:regexparam": { - "type": "npm", - "name": "npm:regexparam", - "data": { - "version": "3.0.0", - "packageName": "regexparam", - "hash": "sha512-RSYAtP31mvYLkAHrOlh25pCNQ5hWnT106VukGaaFfuJrZFkGRX5GhUAdPqpSDXxOhA2c4akmRuplv1mRqnBn6Q==" - } - }, - "npm:remeda": { - "type": "npm", - "name": "npm:remeda", - "data": { - "version": "2.33.4", - "packageName": "remeda", - "hash": "sha512-ygHswjlc/opg2VrtiYvUOPLjxjtdKvjGz1/plDhkG66hjNjFr1xmfrs2ClNFo/E6TyUFiwYNh53bKV26oBoMGQ==" - } - }, - "npm:require-directory": { - "type": "npm", - "name": "npm:require-directory", - "data": { - "version": "2.1.1", - "packageName": "require-directory", - "hash": "sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q==" - } - }, - "npm:require-from-string": { - "type": "npm", - "name": "npm:require-from-string", - "data": { - "version": "2.0.2", - "packageName": "require-from-string", - "hash": "sha512-Xf0nWe6RseziFMu+Ap9biiUbmplq6S9/p+7w7YXP/JBHhrUDDUhwa+vANyubuqfZWTveU//DYVGsDG7RKL/vEw==" - } - }, - "npm:require-one-of": { - "type": "npm", - "name": "npm:require-one-of", - "data": { - "version": "1.0.24", - "packageName": "require-one-of", - "hash": "sha512-aaj1WcxnuPnyTDH89d9dCret7OF+mYBed5imq+eotBeJ7wd2X3w6llRB7CTQ3Qsl3FAIoobDrRSEekUKHSDqKQ==" - } - }, - "npm:requires-port": { - "type": "npm", - "name": "npm:requires-port", - "data": { - "version": "1.0.0", - "packageName": "requires-port", - "hash": "sha512-KigOCHcocU3XODJxsu8i/j8T9tzT4adHiecwORRQ0ZZFcp7ahwXuRU1m+yuO90C5ZUyGeGfocHDI14M3L3yDAQ==" - } - }, - "npm:reselect": { - "type": "npm", - "name": "npm:reselect", - "data": { - "version": "4.1.8", - "packageName": "reselect", - "hash": "sha512-ab9EmR80F/zQTMNeneUr4cv+jSwPJgIlvEmVwLerwrWVbpLlBuls9XHzIeTFy4cegU2NHBp3va0LKOzU5qFEYQ==" - } - }, - "npm:resolve-alpn": { - "type": "npm", - "name": "npm:resolve-alpn", - "data": { - "version": "1.2.1", - "packageName": "resolve-alpn", - "hash": "sha512-0a1F4l73/ZFZOakJnQ3FvkJ2+gSTQWz/r2KE5OdDY0TxPm5h4GkqkWWfM47T7HsbnOtcJVEF4epCVy6u7Q3K+g==" - } - }, - "npm:resolve-from@4.0.0": { - "type": "npm", - "name": "npm:resolve-from@4.0.0", - "data": { - "version": "4.0.0", - "packageName": "resolve-from", - "hash": "sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==" - } - }, - "npm:resolve-from": { - "type": "npm", - "name": "npm:resolve-from", - "data": { - "version": "5.0.0", - "packageName": "resolve-from", - "hash": "sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw==" - } - }, - "npm:resolve-pkg-maps": { - "type": "npm", - "name": "npm:resolve-pkg-maps", - "data": { - "version": "1.0.0", - "packageName": "resolve-pkg-maps", - "hash": "sha512-seS2Tj26TBVOC2NIc2rOe2y2ZO7efxITtLZcGSOnHHNOQ7CkiUBfw0Iw2ck6xkIhPwLhKNLS8BO+hEpngQlqzw==" - } - }, - "npm:resolve.exports": { - "type": "npm", - "name": "npm:resolve.exports", - "data": { - "version": "2.0.3", - "packageName": "resolve.exports", - "hash": "sha512-OcXjMsGdhL4XnbShKpAcSqPMzQoYkYyhbEaeSko47MjRP9NfEQMhZkXL1DoFlt9LWQn4YttrdnV6X2OiyzBi+A==" - } - }, - "npm:resolve@1.22.10": { - "type": "npm", - "name": "npm:resolve@1.22.10", - "data": { - "version": "1.22.10", - "packageName": "resolve", - "hash": "sha512-NPRy+/ncIMeDlTAsuqwKIiferiawhefFJtkNSW0qZJEqMEb+qBt/77B/jGeeek+F0uOeN05CDa6HXbbIgtVX4w==" - } - }, - "npm:resolve": { - "type": "npm", - "name": "npm:resolve", - "data": { - "version": "2.0.0-next.5", - "packageName": "resolve", - "hash": "sha512-U7WjGVG9sH8tvjW5SmGbQuui75FiyjAX72HX15DwBBwF9dNiQZRQAg9nnPhYy+TUnE0+VcrttuvNI8oSxZcocA==" - } - }, - "npm:responselike": { - "type": "npm", - "name": "npm:responselike", - "data": { - "version": "2.0.1", - "packageName": "responselike", - "hash": "sha512-4gl03wn3hj1HP3yzgdI7d3lCkF95F21Pz4BPGvKHinyQzALR5CapwC8yIi0Rh58DEMQ/SguC03wFj2k0M/mHhw==" - } - }, - "npm:restore-cursor": { - "type": "npm", - "name": "npm:restore-cursor", - "data": { - "version": "3.1.0", - "packageName": "restore-cursor", - "hash": "sha512-l+sSefzHpj5qimhFSE5a8nufZYAM3sBSVMAPtYkmC+4EH2anSGaEMXSD0izRQbu9nfyQ9y5JrVmp7E8oZrUjvA==" - } - }, - "npm:ret": { - "type": "npm", - "name": "npm:ret", - "data": { - "version": "0.5.0", - "packageName": "ret", - "hash": "sha512-I1XxrZSQ+oErkRR4jYbAyEEu2I0avBvvMM5JN+6EBprOGRCs63ENqZ3vjavq8fBw2+62G5LF5XelKwuJpcvcxw==" - } - }, - "npm:retry@0.12.0": { - "type": "npm", - "name": "npm:retry@0.12.0", - "data": { - "version": "0.12.0", - "packageName": "retry", - "hash": "sha512-9LkiTwjUh6rT555DtE9rTX+BKByPfrMzEAtnlEtdEwr3Nkffwiihqe2bWADg+OQRjt9gl6ICdmB/ZFDCGAtSow==" - } - }, - "npm:retry": { - "type": "npm", - "name": "npm:retry", - "data": { - "version": "0.13.1", - "packageName": "retry", - "hash": "sha512-XQBQ3I8W1Cge0Seh+6gjj03LbmRFWuoszgK9ooCpwYIrhhoO80pfq4cUkU5DkknwfOfFteRwlZ56PYOGYyFWdg==" - } - }, - "npm:reusify": { - "type": "npm", - "name": "npm:reusify", - "data": { - "version": "1.1.0", - "packageName": "reusify", - "hash": "sha512-g6QUff04oZpHs0eG5p83rFLhHeV00ug/Yf9nZM6fLeUrPguBTkTQOdpAWWspMh55TZfVQDPaN3NQJfbVRAxdIw==" - } - }, - "npm:rfdc": { - "type": "npm", - "name": "npm:rfdc", - "data": { - "version": "1.4.1", - "packageName": "rfdc", - "hash": "sha512-q1b3N5QkRUWUl7iyylaaj3kOpIT0N2i9MqIEQXP73GVsN9cw3fdx8X63cEmWhJGi2PPCF23Ijp7ktmd39rawIA==" - } - }, - "npm:rimraf": { - "type": "npm", - "name": "npm:rimraf", - "data": { - "version": "6.1.3", - "packageName": "rimraf", - "hash": "sha512-LKg+Cr2ZF61fkcaK1UdkH2yEBBKnYjTyWzTJT6KNPcSPaiT7HSdhtMXQuN5wkTX0Xu72KQ1l8S42rlmexS2hSA==" - } - }, - "npm:rolldown-plugin-dts": { - "type": "npm", - "name": "npm:rolldown-plugin-dts", - "data": { - "version": "0.22.5", - "packageName": "rolldown-plugin-dts", - "hash": "sha512-M/HXfM4cboo+jONx9Z0X+CUf3B5tCi7ni+kR5fUW50Fp9AlZk0oVLesibGWgCXDKFp5lpgQ9yhKoImUFjl3VZw==" - } - }, - "npm:rolldown@1.0.0-beta.51": { - "type": "npm", - "name": "npm:rolldown@1.0.0-beta.51", - "data": { - "version": "1.0.0-beta.51", - "packageName": "rolldown", - "hash": "sha512-ZRLgPlS91l4JztLYEZnmMcd3Umcla1hkXJgiEiR4HloRJBBoeaX8qogTu5Jfu36rRMVLndzqYv0h+M5gJAkUfg==" - } - }, - "npm:rolldown@1.0.0-rc.11": { - "type": "npm", - "name": "npm:rolldown@1.0.0-rc.11", - "data": { - "version": "1.0.0-rc.11", - "packageName": "rolldown", - "hash": "sha512-NRjoKMusSjfRbSYiH3VSumlkgFe7kYAa3pzVOsVYVFY3zb5d7nS+a3KGQ7hJKXuYWbzJKPVQ9Wxq2UvyK+ENpw==" - } - }, - "npm:rolldown": { - "type": "npm", - "name": "npm:rolldown", - "data": { - "version": "1.0.0-rc.9", - "packageName": "rolldown", - "hash": "sha512-9EbgWge7ZH+yqb4d2EnELAntgPTWbfL8ajiTW+SyhJEC4qhBbkCKbqFV4Ge4zmu5ziQuVbWxb/XwLZ+RIO7E8Q==" - } - }, - "npm:router": { - "type": "npm", - "name": "npm:router", - "data": { - "version": "2.2.0", - "packageName": "router", - "hash": "sha512-nLTrUKm2UyiL7rlhapu/Zl45FwNgkZGaCpZbIHajDYgwlJCOzLSk+cIPAnsEqV955GjILJnKbdQC1nVPz+gAYQ==" - } - }, - "npm:run-parallel": { - "type": "npm", - "name": "npm:run-parallel", - "data": { - "version": "1.2.0", - "packageName": "run-parallel", - "hash": "sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==" - } - }, - "npm:safe-array-concat": { - "type": "npm", - "name": "npm:safe-array-concat", - "data": { - "version": "1.1.3", - "packageName": "safe-array-concat", - "hash": "sha512-AURm5f0jYEOydBj7VQlVvDrjeFgthDdEF5H1dP+6mNpoXOMo1quQqJ4wvJDyRZ9+pO3kGWoOdmV08cSv2aJV6Q==" - } - }, - "npm:safe-buffer": { - "type": "npm", - "name": "npm:safe-buffer", - "data": { - "version": "5.1.2", - "packageName": "safe-buffer", - "hash": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==" - } - }, - "npm:safe-buffer@5.2.1": { - "type": "npm", - "name": "npm:safe-buffer@5.2.1", - "data": { - "version": "5.2.1", - "packageName": "safe-buffer", - "hash": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==" - } - }, - "npm:safe-push-apply": { - "type": "npm", - "name": "npm:safe-push-apply", - "data": { - "version": "1.0.0", - "packageName": "safe-push-apply", - "hash": "sha512-iKE9w/Z7xCzUMIZqdBsp6pEQvwuEebH4vdpjcDWnyzaI6yl6O9FHvVpmGelvEHNsoY6wGblkxR6Zty/h00WiSA==" - } - }, - "npm:safe-regex-test": { - "type": "npm", - "name": "npm:safe-regex-test", - "data": { - "version": "1.1.0", - "packageName": "safe-regex-test", - "hash": "sha512-x/+Cz4YrimQxQccJf5mKEbIa1NzeCRNI5Ecl/ekmlYaampdNLPalVyIcCZNNH3MvmqBugV5TMYZXv0ljslUlaw==" - } - }, - "npm:safe-regex2": { - "type": "npm", - "name": "npm:safe-regex2", - "data": { - "version": "5.0.0", - "packageName": "safe-regex2", - "hash": "sha512-YwJwe5a51WlK7KbOJREPdjNrpViQBI3p4T50lfwPuDhZnE3XGVTlGvi+aolc5+RvxDD6bnUmjVsU9n1eboLUYw==" - } - }, - "npm:safe-stable-stringify": { - "type": "npm", - "name": "npm:safe-stable-stringify", - "data": { - "version": "2.5.0", - "packageName": "safe-stable-stringify", - "hash": "sha512-b3rppTKm9T+PsVCBEOUR46GWI7fdOs00VKZ1+9c1EWDaDMvjQc6tUwuFyIprgGgTcWoVHSKrU8H31ZHA2e0RHA==" - } - }, - "npm:safer-buffer": { - "type": "npm", - "name": "npm:safer-buffer", - "data": { - "version": "2.1.2", - "packageName": "safer-buffer", - "hash": "sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==" - } - }, - "npm:scheduler": { - "type": "npm", - "name": "npm:scheduler", - "data": { - "version": "0.27.0", - "packageName": "scheduler", - "hash": "sha512-eNv+WrVbKu1f3vbYJT/xtiF5syA5HPIMtf9IgY/nKg0sWqzAUEvqY/xm7OcZc/qafLx/iO9FgOmeSAp4v5ti/Q==" - } - }, - "npm:scule": { - "type": "npm", - "name": "npm:scule", - "data": { - "version": "1.3.0", - "packageName": "scule", - "hash": "sha512-6FtHJEvt+pVMIB9IBY+IcCJ6Z5f1iQnytgyfKMhDKgmzYG+TeH/wx1y3l27rshSbLiSanrR9ffZDrEsmjlQF2g==" - } - }, - "npm:secure-compare": { - "type": "npm", - "name": "npm:secure-compare", - "data": { - "version": "3.0.1", - "packageName": "secure-compare", - "hash": "sha512-AckIIV90rPDcBcglUwXPF3kg0P0qmPsPXAj6BBEENQE1p5yA1xfmDJzfi1Tappj37Pv2mVbKpL3Z1T+Nn7k1Qw==" - } - }, - "npm:secure-json-parse": { - "type": "npm", - "name": "npm:secure-json-parse", - "data": { - "version": "2.7.0", - "packageName": "secure-json-parse", - "hash": "sha512-6aU+Rwsezw7VR8/nyvKTx8QpWH9FrcYiXXlqC4z5d5XQBDRqtbfsRjnwGyqbi3gddNtWHuEk9OANUotL26qKUw==" - } - }, - "npm:secure-json-parse@4.1.0": { - "type": "npm", - "name": "npm:secure-json-parse@4.1.0", - "data": { - "version": "4.1.0", - "packageName": "secure-json-parse", - "hash": "sha512-l4KnYfEyqYJxDwlNVyRfO2E4NTHfMKAWdUuA8J0yve2Dz/E/PdBepY03RvyJpssIpRFwJoCD55wA+mEDs6ByWA==" - } - }, - "npm:semver": { - "type": "npm", - "name": "npm:semver", - "data": { - "version": "6.3.1", - "packageName": "semver", - "hash": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==" - } - }, - "npm:semver@7.7.4": { - "type": "npm", - "name": "npm:semver@7.7.4", - "data": { - "version": "7.7.4", - "packageName": "semver", - "hash": "sha512-vFKC2IEtQnVhpT78h1Yp8wzwrf8CM+MzKMHGJZfBtzhZNycRFnXsHk6E5TxIkkMsgNS7mdX3AGB7x2QM2di4lA==" - } - }, - "npm:send": { - "type": "npm", - "name": "npm:send", - "data": { - "version": "1.2.0", - "packageName": "send", - "hash": "sha512-uaW0WwXKpL9blXE2o0bRhoL2EGXIrZxQ2ZQ4mgcfoBxdFmQold+qWsD2jLrfZ0trjKL6vOw0j//eAwcALFjKSw==" - } - }, - "npm:seq-queue": { - "type": "npm", - "name": "npm:seq-queue", - "data": { - "version": "0.0.5", - "packageName": "seq-queue", - "hash": "sha512-hr3Wtp/GZIc/6DAGPDcV4/9WoZhjrkXsi5B/07QgX8tsdc6ilr7BFM6PM6rbdAX1kFSDYeZGLipIZZKyQP0O5Q==" - } - }, - "npm:serialize-error": { - "type": "npm", - "name": "npm:serialize-error", - "data": { - "version": "8.1.0", - "packageName": "serialize-error", - "hash": "sha512-3NnuWfM6vBYoy5gZFvHiYsVbafvI9vZv/+jlIigFn4oP4zjNPK3LhcY0xSCgeb1a5L8jO71Mit9LlNoi2UfDDQ==" - } - }, - "npm:seroval-plugins": { - "type": "npm", - "name": "npm:seroval-plugins", - "data": { - "version": "1.5.0", - "packageName": "seroval-plugins", - "hash": "sha512-EAHqADIQondwRZIdeW2I636zgsODzoBDwb3PT/+7TLDWyw1Dy/Xv7iGUIEXXav7usHDE9HVhOU61irI3EnyyHA==" - } - }, - "npm:seroval": { - "type": "npm", - "name": "npm:seroval", - "data": { - "version": "1.5.0", - "packageName": "seroval", - "hash": "sha512-OE4cvmJ1uSPrKorFIH9/w/Qwuvi/IMcGbv5RKgcJ/zjA/IohDLU6SVaxFN9FwajbP7nsX0dQqMDes1whk3y+yw==" - } - }, - "npm:serve-static": { - "type": "npm", - "name": "npm:serve-static", - "data": { - "version": "2.2.0", - "packageName": "serve-static", - "hash": "sha512-61g9pCh0Vnh7IutZjtLGGpTA355+OPn2TyDv/6ivP2h/AdAVX9azsoxmg2/M6nZeQZNYBEwIcsne1mJd9oQItQ==" - } - }, - "npm:set-cookie-parser": { - "type": "npm", - "name": "npm:set-cookie-parser", - "data": { - "version": "2.7.2", - "packageName": "set-cookie-parser", - "hash": "sha512-oeM1lpU/UvhTxw+g3cIfxXHyJRc/uidd3yK1P242gzHds0udQBYzs3y8j4gCCW+ZJ7ad0yctld8RYO+bdurlvw==" - } - }, - "npm:set-function-length": { - "type": "npm", - "name": "npm:set-function-length", - "data": { - "version": "1.2.2", - "packageName": "set-function-length", - "hash": "sha512-pgRc4hJ4/sNjWCSS9AmnS40x3bNMDTknHgL5UaMBTMyJnU90EgWh1Rz+MC9eFu4BuN/UwZjKQuY/1v3rM7HMfg==" - } - }, - "npm:set-function-name": { - "type": "npm", - "name": "npm:set-function-name", - "data": { - "version": "2.0.2", - "packageName": "set-function-name", - "hash": "sha512-7PGFlmtwsEADb0WYyvCMa1t+yke6daIG4Wirafur5kcf+MhUnPms1UeR0CKQdTZD81yESwMHbtn+TR+dMviakQ==" - } - }, - "npm:set-proto": { - "type": "npm", - "name": "npm:set-proto", - "data": { - "version": "1.0.0", - "packageName": "set-proto", - "hash": "sha512-RJRdvCo6IAnPdsvP/7m6bsQqNnn1FCBX5ZNtFL98MmFF/4xAIJTIg1YbHW5DC2W5SKZanrC6i4HsJqlajw/dZw==" - } - }, - "npm:setprototypeof": { - "type": "npm", - "name": "npm:setprototypeof", - "data": { - "version": "1.2.0", - "packageName": "setprototypeof", - "hash": "sha512-E5LDX7Wrp85Kil5bhZv46j8jOeboKq5JMmYM3gVGdGH8xFpPWXUMsNrlODCrkoxMEeNi/XZIwuRvY4XNwYMJpw==" - } - }, - "npm:shallow-equal": { - "type": "npm", - "name": "npm:shallow-equal", - "data": { - "version": "3.1.0", - "packageName": "shallow-equal", - "hash": "sha512-pfVOw8QZIXpMbhBWvzBISicvToTiM5WBF1EeAUZDDSb5Dt29yl4AYbyywbJFSEsRUMr7gJaxqCdr4L3tQf9wVg==" - } - }, - "npm:sharp@0.33.5": { - "type": "npm", - "name": "npm:sharp@0.33.5", - "data": { - "version": "0.33.5", - "packageName": "sharp", - "hash": "sha512-haPVm1EkS9pgvHrQ/F3Xy+hgcuMV0Wm9vfIBSiwZ05k+xgb0PkBQpGsAA/oWdDobNaZTH5ppvHtzCFbnSEwHVw==" - } - }, - "npm:sharp": { - "type": "npm", - "name": "npm:sharp", - "data": { - "version": "0.34.5", - "packageName": "sharp", - "hash": "sha512-Ou9I5Ft9WNcCbXrU9cMgPBcCK8LiwLqcbywW3t4oDV37n1pzpuNLsYiAV8eODnjbtQlSDwZ2cUEeQz4E54Hltg==" - } - }, - "npm:shebang-command": { - "type": "npm", - "name": "npm:shebang-command", - "data": { - "version": "2.0.0", - "packageName": "shebang-command", - "hash": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==" - } - }, - "npm:shebang-regex": { - "type": "npm", - "name": "npm:shebang-regex", - "data": { - "version": "3.0.0", - "packageName": "shebang-regex", - "hash": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==" - } - }, - "npm:shell-quote": { - "type": "npm", - "name": "npm:shell-quote", - "data": { - "version": "1.8.3", - "packageName": "shell-quote", - "hash": "sha512-ObmnIF4hXNg1BqhnHmgbDETF8dLPCggZWBjkQfhZpbszZnYur5DUljTcCHii5LC3J5E0yeO/1LIMyH+UvHQgyw==" - } - }, - "npm:side-channel-list": { - "type": "npm", - "name": "npm:side-channel-list", - "data": { - "version": "1.0.0", - "packageName": "side-channel-list", - "hash": "sha512-FCLHtRD/gnpCiCHEiJLOwdmFP+wzCmDEkc9y7NsYxeF4u7Btsn1ZuwgwJGxImImHicJArLP4R0yX4c2KCrMrTA==" - } - }, - "npm:side-channel-map": { - "type": "npm", - "name": "npm:side-channel-map", - "data": { - "version": "1.0.1", - "packageName": "side-channel-map", - "hash": "sha512-VCjCNfgMsby3tTdo02nbjtM/ewra6jPHmpThenkTYh8pG9ucZ/1P8So4u4FGBek/BjpOVsDCMoLA/iuBKIFXRA==" - } - }, - "npm:side-channel-weakmap": { - "type": "npm", - "name": "npm:side-channel-weakmap", - "data": { - "version": "1.0.2", - "packageName": "side-channel-weakmap", - "hash": "sha512-WPS/HvHQTYnHisLo9McqBHOJk2FkHO/tlpvldyrnem4aeQp4hai3gythswg6p01oSoTl58rcpiFAjF2br2Ak2A==" - } - }, - "npm:side-channel": { - "type": "npm", - "name": "npm:side-channel", - "data": { - "version": "1.1.0", - "packageName": "side-channel", - "hash": "sha512-ZX99e6tRweoUXqR+VBrslhda51Nh5MTQwou5tnUDgbtyM0dBgmhEDtWGP/xbKn6hqfPRHujUNwz5fy/wbbhnpw==" - } - }, - "npm:siginfo": { - "type": "npm", - "name": "npm:siginfo", - "data": { - "version": "2.0.0", - "packageName": "siginfo", - "hash": "sha512-ybx0WO1/8bSBLEWXZvEd7gMW3Sn3JFlW3TvX1nREbDLRNQNaeNN8WK0meBwPdAaOI7TtRRRJn/Es1zhrrCHu7g==" - } - }, - "npm:signal-exit@3.0.7": { - "type": "npm", - "name": "npm:signal-exit@3.0.7", - "data": { - "version": "3.0.7", - "packageName": "signal-exit", - "hash": "sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==" - } - }, - "npm:signal-exit": { - "type": "npm", - "name": "npm:signal-exit", - "data": { - "version": "4.1.0", - "packageName": "signal-exit", - "hash": "sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==" - } - }, - "npm:simple-concat": { - "type": "npm", - "name": "npm:simple-concat", - "data": { - "version": "1.0.1", - "packageName": "simple-concat", - "hash": "sha512-cSFtAPtRhljv69IK0hTVZQ+OfE9nePi/rtJmw5UjHeVyVroEqJXP1sFztKUy1qU+xvz3u/sfYJLa947b7nAN2Q==" - } - }, - "npm:simple-get": { - "type": "npm", - "name": "npm:simple-get", - "data": { - "version": "4.0.1", - "packageName": "simple-get", - "hash": "sha512-brv7p5WgH0jmQJr1ZDDfKDOSeWWg+OVypG99A/5vYGPqJ6pxiaHLy8nxtFjBA7oMa01ebA9gfh1uMCFqOuXxvA==" - } - }, - "npm:simple-swizzle": { - "type": "npm", - "name": "npm:simple-swizzle", - "data": { - "version": "0.2.4", - "packageName": "simple-swizzle", - "hash": "sha512-nAu1WFPQSMNr2Zn9PGSZK9AGn4t/y97lEm+MXTtUDwfP0ksAIX4nO+6ruD9Jwut4C49SB1Ws+fbXsm/yScWOHw==" - } - }, - "npm:sirv": { - "type": "npm", - "name": "npm:sirv", - "data": { - "version": "3.0.2", - "packageName": "sirv", - "hash": "sha512-2wcC/oGxHis/BoHkkPwldgiPSYcpZK3JU28WoMVv55yHJgcZ8rlXvuG9iZggz+sU1d4bRgIGASwyWqjxu3FM0g==" - } - }, - "npm:slash": { - "type": "npm", - "name": "npm:slash", - "data": { - "version": "5.1.0", - "packageName": "slash", - "hash": "sha512-ZA6oR3T/pEyuqwMgAKT0/hAv8oAXckzbkmR0UkUosQ+Mc4RxGoJkRmwHgHufaenlyAgE1Mxgpdcrf75y6XcnDg==" - } - }, - "npm:smart-buffer": { - "type": "npm", - "name": "npm:smart-buffer", - "data": { - "version": "4.2.0", - "packageName": "smart-buffer", - "hash": "sha512-94hK0Hh8rPqQl2xXc3HsaBoOXKV20MToPkcXvwbISWLEs+64sBq5kFgn2kJDHb1Pry9yrP0dxrCI9RRci7RXKg==" - } - }, - "npm:smol-toml": { - "type": "npm", - "name": "npm:smol-toml", - "data": { - "version": "1.5.2", - "packageName": "smol-toml", - "hash": "sha512-QlaZEqcAH3/RtNyet1IPIYPsEWAaYyXXv1Krsi+1L/QHppjX4Ifm8MQsBISz9vE8cHicIq3clogsheili5vhaQ==" - } - }, - "npm:socks-proxy-agent": { - "type": "npm", - "name": "npm:socks-proxy-agent", - "data": { - "version": "8.0.5", - "packageName": "socks-proxy-agent", - "hash": "sha512-HehCEsotFqbPW9sJ8WVYB6UbmIMv7kUUORIF2Nncq4VQvBfNBLibW9YZR5dlYCSUhwcD628pRllm7n+E+YTzJw==" - } - }, - "npm:socks": { - "type": "npm", - "name": "npm:socks", - "data": { - "version": "2.8.7", - "packageName": "socks", - "hash": "sha512-HLpt+uLy/pxB+bum/9DzAgiKS8CX1EvbWxI4zlmgGCExImLdiad2iCwXT5Z4c9c3Eq8rP2318mPW2c+QbtjK8A==" - } - }, - "npm:solid-element": { - "type": "npm", - "name": "npm:solid-element", - "data": { - "version": "1.9.1", - "packageName": "solid-element", - "hash": "sha512-baJy6Qz27oAUgkPlqOf3Y+7RsBiuVQrS51Nrh1ddDbrqrNPvJbIvehpUsTzLNFb2ZHIoHuNnDg330go/ZKcRdg==" - } - }, - "npm:solid-js": { - "type": "npm", - "name": "npm:solid-js", - "data": { - "version": "1.9.11", - "packageName": "solid-js", - "hash": "sha512-WEJtcc5mkh/BnHA6Yrg4whlF8g6QwpmXXRg4P2ztPmcKeHHlH4+djYecBLhSpecZY2RRECXYUwIc/C2r3yzQ4Q==" - } - }, - "npm:solid-motionone": { - "type": "npm", - "name": "npm:solid-motionone", - "data": { - "version": "1.0.4", - "packageName": "solid-motionone", - "hash": "sha512-aqEjgecoO9raDFznu/dEci7ORSmA26Kjj9J4Cn1Gyr0GZuOVdvsNxdxClTL9J40Aq/uYFx4GLwC8n70fMLHiuA==" - } - }, - "npm:solid-refresh": { - "type": "npm", - "name": "npm:solid-refresh", - "data": { - "version": "0.6.3", - "packageName": "solid-refresh", - "hash": "sha512-F3aPsX6hVw9ttm5LYlth8Q15x6MlI/J3Dn+o3EQyRTtTxidepSTwAYdozt01/YA+7ObcciagGEyXIopGZzQtbA==" - } - }, - "npm:sonic-boom": { - "type": "npm", - "name": "npm:sonic-boom", - "data": { - "version": "4.2.1", - "packageName": "sonic-boom", - "hash": "sha512-w6AxtubXa2wTXAUsZMMWERrsIRAdrK0Sc+FUytWvYAhBJLyuI4llrMIC1DtlNSdI99EI86KZum2MMq3EAZlF9Q==" - } - }, - "npm:source-map-js": { - "type": "npm", - "name": "npm:source-map-js", - "data": { - "version": "1.2.1", - "packageName": "source-map-js", - "hash": "sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA==" - } - }, - "npm:source-map-support": { - "type": "npm", - "name": "npm:source-map-support", - "data": { - "version": "0.5.21", - "packageName": "source-map-support", - "hash": "sha512-uBHU3L3czsIyYXKX88fdrGovxdSCoTGDRZ6SYXtSRxLZUzHg5P/66Ht6uoUlHu9EZod+inXhKo3qQgwXUT/y1w==" - } - }, - "npm:source-map": { - "type": "npm", - "name": "npm:source-map", - "data": { - "version": "0.6.1", - "packageName": "source-map", - "hash": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==" - } - }, - "npm:source-map@0.7.6": { - "type": "npm", - "name": "npm:source-map@0.7.6", - "data": { - "version": "0.7.6", - "packageName": "source-map", - "hash": "sha512-i5uvt8C3ikiWeNZSVZNWcfZPItFQOsYTUAOkcUPGd8DqDy1uOUikjt5dG+uRlwyvR108Fb9DOd4GvXfT0N2/uQ==" - } - }, - "npm:split2": { - "type": "npm", - "name": "npm:split2", - "data": { - "version": "4.2.0", - "packageName": "split2", - "hash": "sha512-UcjcJOWknrNkF6PLX83qcHM6KHgVKNkV62Y8a5uYDVv9ydGQVwAHMKqHdJje1VTWpljG0WYpCDhrCdAOYH4TWg==" - } - }, - "npm:sprintf-js": { - "type": "npm", - "name": "npm:sprintf-js", - "data": { - "version": "1.0.3", - "packageName": "sprintf-js", - "hash": "sha512-D9cPgkvLlV3t3IzL0D0YLvGA9Ahk4PcvVwUbN0dSGr1aP0Nrt4AEnTUbuGvquEC0mA64Gqt1fzirlRs5ibXx8g==" - } - }, - "npm:sqlstring": { - "type": "npm", - "name": "npm:sqlstring", - "data": { - "version": "2.3.3", - "packageName": "sqlstring", - "hash": "sha512-qC9iz2FlN7DQl3+wjwn3802RTyjCx7sDvfQEXchwa6CWOx07/WVfh91gBmQ9fahw8snwGEWU3xGzOt4tFyHLxg==" - } - }, - "npm:squirrelly": { - "type": "npm", - "name": "npm:squirrelly", - "data": { - "version": "9.1.0", - "packageName": "squirrelly", - "hash": "sha512-kvjFqb7qzC4gX4lkqSaU8QPvUHhDLMiDpxpz7a66vjTH0JtjLJqAXbPrc7ST61EefuuuW05sne2rjGskunrF2A==" - } - }, - "npm:srvx": { - "type": "npm", - "name": "npm:srvx", - "data": { - "version": "0.9.8", - "packageName": "srvx", - "hash": "sha512-RZaxTKJEE/14HYn8COLuUOJAt0U55N9l1Xf6jj+T0GoA01EUH1Xz5JtSUOI+EHn+AEgPCVn7gk6jHJffrr06fQ==" - } - }, - "npm:ssri": { - "type": "npm", - "name": "npm:ssri", - "data": { - "version": "12.0.0", - "packageName": "ssri", - "hash": "sha512-S7iGNosepx9RadX82oimUkvr0Ct7IjJbEbs4mJcTxst8um95J3sDYU1RBEOvdu6oL1Wek2ODI5i4MAw+dZ6cAQ==" - } - }, - "npm:stable": { - "type": "npm", - "name": "npm:stable", - "data": { - "version": "0.1.8", - "packageName": "stable", - "hash": "sha512-ji9qxRnOVfcuLDySj9qzhGSEFVobyt1kIOSkj1qZzYLzq7Tos/oUUWvotUPQLlrsidqsK6tBH89Bc9kL5zHA6w==" - } - }, - "npm:stackback": { - "type": "npm", - "name": "npm:stackback", - "data": { - "version": "0.0.2", - "packageName": "stackback", - "hash": "sha512-1XMJE5fQo1jGH6Y/7ebnwPOBEkIEnT4QF32d5R1+VXdXveM0IBMJt8zfaxX1P3QhVwrYe+576+jkANtSS2mBbw==" - } - }, - "npm:standaloner": { - "type": "npm", - "name": "npm:standaloner", - "data": { - "version": "0.1.11", - "packageName": "standaloner", - "hash": "sha512-JeLFj5rKTmy3UJj7/oGUVnmFaBIWmJQVP5Hv3s2D6Ju8kVPZYbGxOhMQS45QiEr2V0ngI83d/Vv4Zh62Ojs/rQ==" - } - }, - "npm:standaloner@0.2.2": { - "type": "npm", - "name": "npm:standaloner@0.2.2", - "data": { - "version": "0.2.2", - "packageName": "standaloner", - "hash": "sha512-u2petNp6YcEvRM96SIynC/ly4UI3EsevXGzdUcdAmXn7vA7iFaQCLd5+uyWRc7wSUsHfXck6VLEPrmI03Uy5Ug==" - } - }, - "npm:statuses": { - "type": "npm", - "name": "npm:statuses", - "data": { - "version": "2.0.2", - "packageName": "statuses", - "hash": "sha512-DvEy55V3DB7uknRo+4iOGT5fP1slR8wQohVdknigZPMpMstaKJQWhwiYBACJE3Ul2pTnATihhBYnRhZQHGBiRw==" - } - }, - "npm:std-env@3.10.0": { - "type": "npm", - "name": "npm:std-env@3.10.0", - "data": { - "version": "3.10.0", - "packageName": "std-env", - "hash": "sha512-5GS12FdOZNliM5mAOxFRg7Ir0pWz8MdpYm6AY6VPkGpbA7ZzmbzNcBJQ0GPvvyWgcY7QAhCgf9Uy89I03faLkg==" - } - }, - "npm:std-env": { - "type": "npm", - "name": "npm:std-env", - "data": { - "version": "4.0.0", - "packageName": "std-env", - "hash": "sha512-zUMPtQ/HBY3/50VbpkupYHbRroTRZJPRLvreamgErJVys0ceuzMkD44J/QjqhHjOzK42GQ3QZIeFG1OYfOtKqQ==" - } - }, - "npm:stop-iteration-iterator": { - "type": "npm", - "name": "npm:stop-iteration-iterator", - "data": { - "version": "1.1.0", - "packageName": "stop-iteration-iterator", - "hash": "sha512-eLoXW/DHyl62zxY4SCaIgnRhuMr6ri4juEYARS8E6sCEqzKpOiE521Ucofdx+KnDZl5xmvGYaaKCk5FEOxJCoQ==" - } - }, - "npm:stoppable": { - "type": "npm", - "name": "npm:stoppable", - "data": { - "version": "1.1.0", - "packageName": "stoppable", - "hash": "sha512-KXDYZ9dszj6bzvnEMRYvxgeTHU74QBFL54XKtP3nyMuJ81CFYtABZ3bAzL2EdFUaEwJOBOgENyFj3R7oTzDyyw==" - } - }, - "npm:streamx": { - "type": "npm", - "name": "npm:streamx", - "data": { - "version": "2.23.0", - "packageName": "streamx", - "hash": "sha512-kn+e44esVfn2Fa/O0CPFcex27fjIL6MkVae0Mm6q+E6f0hWv578YCERbv+4m02cjxvDsPKLnmxral/rR6lBMAg==" - } - }, - "npm:string-width": { - "type": "npm", - "name": "npm:string-width", - "data": { - "version": "4.2.3", - "packageName": "string-width", - "hash": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==" - } - }, - "npm:string-width@5.1.2": { - "type": "npm", - "name": "npm:string-width@5.1.2", - "data": { - "version": "5.1.2", - "packageName": "string-width", - "hash": "sha512-HnLOCR3vjcY8beoNLtcjZ5/nxn2afmME6lhrDrebokqMap+XbeW8n9TXpPDOqdGK5qcI3oT0GKTW6wC7EMiVqA==" - } - }, - "npm:string-width-cjs": { - "type": "npm", - "name": "npm:string-width-cjs", - "data": { - "version": "npm:string-width@4.2.3", - "packageName": "string-width-cjs", - "hash": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==" - } - }, - "npm:string.prototype.matchall": { - "type": "npm", - "name": "npm:string.prototype.matchall", - "data": { - "version": "4.0.12", - "packageName": "string.prototype.matchall", - "hash": "sha512-6CC9uyBL+/48dYizRf7H7VAYCMCNTBeM78x/VTUe9bFEaxBepPJDa1Ow99LqI/1yF7kuy7Q3cQsYMrcjGUcskA==" - } - }, - "npm:string.prototype.repeat": { - "type": "npm", - "name": "npm:string.prototype.repeat", - "data": { - "version": "1.0.0", - "packageName": "string.prototype.repeat", - "hash": "sha512-0u/TldDbKD8bFCQ/4f5+mNRrXwZ8hg2w7ZR8wa16e8z9XpePWl3eGEcUD0OXpEH/VJH/2G3gjUtR3ZOiBe2S/w==" - } - }, - "npm:string.prototype.trim": { - "type": "npm", - "name": "npm:string.prototype.trim", - "data": { - "version": "1.2.10", - "packageName": "string.prototype.trim", - "hash": "sha512-Rs66F0P/1kedk5lyYyH9uBzuiI/kNRmwJAR9quK6VOtIpZ2G+hMZd+HQbbv25MgCA6gEffoMZYxlTod4WcdrKA==" - } - }, - "npm:string.prototype.trimend": { - "type": "npm", - "name": "npm:string.prototype.trimend", - "data": { - "version": "1.0.9", - "packageName": "string.prototype.trimend", - "hash": "sha512-G7Ok5C6E/j4SGfyLCloXTrngQIQU3PWtXGst3yM7Bea9FRURf1S42ZHlZZtsNque2FN2PoUhfZXYLNWwEr4dLQ==" - } - }, - "npm:string.prototype.trimstart": { - "type": "npm", - "name": "npm:string.prototype.trimstart", - "data": { - "version": "1.0.8", - "packageName": "string.prototype.trimstart", - "hash": "sha512-UXSH262CSZY1tfu3G3Secr6uGLCFVPMhIqHjlgCUtCCcgihYc/xKs9djMTMUOb2j1mVSeU8EU6NWc/iQKU6Gfg==" - } - }, - "npm:string_decoder": { - "type": "npm", - "name": "npm:string_decoder", - "data": { - "version": "1.3.0", - "packageName": "string_decoder", - "hash": "sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA==" - } - }, - "npm:strip-ansi@6.0.1": { - "type": "npm", - "name": "npm:strip-ansi@6.0.1", - "data": { - "version": "6.0.1", - "packageName": "strip-ansi", - "hash": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==" - } - }, - "npm:strip-ansi": { - "type": "npm", - "name": "npm:strip-ansi", - "data": { - "version": "7.1.2", - "packageName": "strip-ansi", - "hash": "sha512-gmBGslpoQJtgnMAvOVqGZpEz9dyoKTCzy2nfz/n8aIFhN/jCE/rCmcxabB6jOOHV+0WNnylOxaxBQPSvcWklhA==" - } - }, - "npm:strip-ansi-cjs": { - "type": "npm", - "name": "npm:strip-ansi-cjs", - "data": { - "version": "npm:strip-ansi@6.0.1", - "packageName": "strip-ansi-cjs", - "hash": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==" - } - }, - "npm:strip-bom": { - "type": "npm", - "name": "npm:strip-bom", - "data": { - "version": "3.0.0", - "packageName": "strip-bom", - "hash": "sha512-vavAMRXOgBVNF6nyEEmL3DBK19iRpDcoIwW+swQ+CbGiu7lju6t+JklA1MHweoWtadgt4ISVUsXLyDq34ddcwA==" - } - }, - "npm:strip-final-newline": { - "type": "npm", - "name": "npm:strip-final-newline", - "data": { - "version": "4.0.0", - "packageName": "strip-final-newline", - "hash": "sha512-aulFJcD6YK8V1G7iRB5tigAP4TsHBZZrOV8pjV++zdUwmeV8uzbY7yn6h9MswN62adStNZFuCIx4haBnRuMDaw==" - } - }, - "npm:strip-json-comments@2.0.1": { - "type": "npm", - "name": "npm:strip-json-comments@2.0.1", - "data": { - "version": "2.0.1", - "packageName": "strip-json-comments", - "hash": "sha512-4gB8na07fecVVkOI6Rs4e7T6NOTki5EmL7TUduTs6bu3EdnSycntVJ4re8kgZA+wx9IueI2Y11bfbgwtzuE0KQ==" - } - }, - "npm:strip-json-comments@3.1.1": { - "type": "npm", - "name": "npm:strip-json-comments@3.1.1", - "data": { - "version": "3.1.1", - "packageName": "strip-json-comments", - "hash": "sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==" - } - }, - "npm:strip-json-comments": { - "type": "npm", - "name": "npm:strip-json-comments", - "data": { - "version": "5.0.3", - "packageName": "strip-json-comments", - "hash": "sha512-1tB5mhVo7U+ETBKNf92xT4hrQa3pm0MZ0PQvuDnWgAAGHDsfp4lPSpiS6psrSiet87wyGPh9ft6wmhOMQ0hDiw==" - } - }, - "npm:style-to-object": { - "type": "npm", - "name": "npm:style-to-object", - "data": { - "version": "1.0.11", - "packageName": "style-to-object", - "hash": "sha512-5A560JmXr7wDyGLK12Nq/EYS38VkGlglVzkis1JEdbGWSnbQIEhZzTJhzURXN5/8WwwFCs/f/VVcmkTppbXLow==" - } - }, - "npm:stylehacks": { - "type": "npm", - "name": "npm:stylehacks", - "data": { - "version": "5.1.1", - "packageName": "stylehacks", - "hash": "sha512-sBpcd5Hx7G6seo7b1LkpttvTz7ikD0LlH5RmdcBNb6fFR0Fl7LQwHDFr300q4cwUqi+IYrFGmsIHieMBfnN/Bw==" - } - }, - "npm:sugarss": { - "type": "npm", - "name": "npm:sugarss", - "data": { - "version": "5.0.1", - "packageName": "sugarss", - "hash": "sha512-ctS5RYCBVvPoZAnzIaX5QSShK8ZiZxD5HUqSxlusvEMC+QZQIPCPOIJg6aceFX+K2rf4+SH89eu++h1Zmsr2nw==" - } - }, - "npm:superlock": { - "type": "npm", - "name": "npm:superlock", - "data": { - "version": "1.2.6", - "packageName": "superlock", - "hash": "sha512-V8XeWhjfZK1YA80gEGppesCtwXwGaqqoy1IoPRCZaap+sSgsDtRatAQlEfwoyHaHuR/ZR9KIk7JEpY96oRJ7TA==" - } - }, - "npm:supports-color@10.2.2": { - "type": "npm", - "name": "npm:supports-color@10.2.2", - "data": { - "version": "10.2.2", - "packageName": "supports-color", - "hash": "sha512-SS+jx45GF1QjgEXQx4NJZV9ImqmO2NPz5FNsIHrsDjh2YsHnawpan7SNQ1o8NuhrbHZy9AZhIoCUiCeaW/C80g==" - } - }, - "npm:supports-color": { - "type": "npm", - "name": "npm:supports-color", - "data": { - "version": "7.2.0", - "packageName": "supports-color", - "hash": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==" - } - }, - "npm:supports-preserve-symlinks-flag": { - "type": "npm", - "name": "npm:supports-preserve-symlinks-flag", - "data": { - "version": "1.0.0", - "packageName": "supports-preserve-symlinks-flag", - "hash": "sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==" - } - }, - "npm:svg-gradient": { - "type": "npm", - "name": "npm:svg-gradient", - "data": { - "version": "1.0.4", - "packageName": "svg-gradient", - "hash": "sha512-ugzdjn3dVLI3NG/UXzgL8hRcFS1Dwcj/EzXJ04F6EGgHGc5BbCGND3MhLcYsHeUICoUBnzbTXgNUKK2wMPm10Q==" - } - }, - "npm:svgo": { - "type": "npm", - "name": "npm:svgo", - "data": { - "version": "2.8.0", - "packageName": "svgo", - "hash": "sha512-+N/Q9kV1+F+UeWYoSiULYo4xYSDQlTgb+ayMobAXPwMnLvop7oxKMo9OzIrX5x3eS4L4f2UHhc9axXwY8DpChg==" - } - }, - "npm:synckit": { - "type": "npm", - "name": "npm:synckit", - "data": { - "version": "0.11.12", - "packageName": "synckit", - "hash": "sha512-Bh7QjT8/SuKUIfObSXNHNSK6WHo6J1tHCqJsuaFDP7gP0fkzSfTxI8y85JrppZ0h8l0maIgc2tfuZQ6/t3GtnQ==" - } - }, - "npm:tabbable": { - "type": "npm", - "name": "npm:tabbable", - "data": { - "version": "6.2.0", - "packageName": "tabbable", - "hash": "sha512-Cat63mxsVJlzYvN51JmVXIgNoUokrIaT2zLclCXjRd8boZ0004U4KCs/sToJ75C6sdlByWxpYnb5Boif1VSFew==" - } - }, - "npm:tailwind-merge": { - "type": "npm", - "name": "npm:tailwind-merge", - "data": { - "version": "3.5.0", - "packageName": "tailwind-merge", - "hash": "sha512-I8K9wewnVDkL1NTGoqWmVEIlUcB9gFriAEkXkfCjX5ib8ezGxtR3xD7iZIxrfArjEsH7F1CHD4RFUtxefdqV/A==" - } - }, - "npm:tailwindcss": { - "type": "npm", - "name": "npm:tailwindcss", - "data": { - "version": "4.2.2", - "packageName": "tailwindcss", - "hash": "sha512-KWBIxs1Xb6NoLdMVqhbhgwZf2PGBpPEiwOqgI4pFIYbNTfBXiKYyWoTsXgBQ9WFg/OlhnvHaY+AEpW7wSmFo2Q==" - } - }, - "npm:tapable": { - "type": "npm", - "name": "npm:tapable", - "data": { - "version": "2.3.0", - "packageName": "tapable", - "hash": "sha512-g9ljZiwki/LfxmQADO3dEY1CbpmXT5Hm2fJ+QaGKwSXUylMybePR7/67YW7jOrrvjEgL1Fmz5kzyAjWVWLlucg==" - } - }, - "npm:tar-fs@2.1.4": { - "type": "npm", - "name": "npm:tar-fs@2.1.4", - "data": { - "version": "2.1.4", - "packageName": "tar-fs", - "hash": "sha512-mDAjwmZdh7LTT6pNleZ05Yt65HC3E+NiQzl672vQG38jIrehtJk/J3mNwIg+vShQPcLF/LV7CMnDW6vjj6sfYQ==" - } - }, - "npm:tar-fs": { - "type": "npm", - "name": "npm:tar-fs", - "data": { - "version": "3.1.1", - "packageName": "tar-fs", - "hash": "sha512-LZA0oaPOc2fVo82Txf3gw+AkEd38szODlptMYejQUhndHMLQ9M059uXR+AfS7DNo0NpINvSqDsvyaCrBVkptWg==" - } - }, - "npm:tar-stream": { - "type": "npm", - "name": "npm:tar-stream", - "data": { - "version": "2.2.0", - "packageName": "tar-stream", - "hash": "sha512-ujeqbceABgwMZxEJnk2HDY2DlnUZ+9oEcb1KzTVfYHio0UE6dG71n60d8D2I4qNvleWrrXpmjpt7vZeF1LnMZQ==" - } - }, - "npm:tar-stream@3.1.7": { - "type": "npm", - "name": "npm:tar-stream@3.1.7", - "data": { - "version": "3.1.7", - "packageName": "tar-stream", - "hash": "sha512-qJj60CXt7IU1Ffyc3NJMjh6EkuCFej46zUqJ4J7pqYlThyd9bO0XBTmcOIhSzZJVWfsLks0+nle/j538YAW9RQ==" - } - }, - "npm:tar": { - "type": "npm", - "name": "npm:tar", - "data": { - "version": "7.5.1", - "packageName": "tar", - "hash": "sha512-nlGpxf+hv0v7GkWBK2V9spgactGOp0qvfWRxUMjqHyzrt3SgwE48DIv/FhqPHJYLHpgW1opq3nERbz5Anq7n1g==" - } - }, - "npm:telefunc": { - "type": "npm", - "name": "npm:telefunc", - "data": { - "version": "0.2.19", - "packageName": "telefunc", - "hash": "sha512-bCN3OtmAsRGXrsz23BFUENGSSOXJ3+5GEu5VTWGeWNw+bnWNkoR7h24zEmvlwbYi7g7mtzGndsdEVIhoA2R87g==" - } - }, - "npm:text-decoder": { - "type": "npm", - "name": "npm:text-decoder", - "data": { - "version": "1.2.3", - "packageName": "text-decoder", - "hash": "sha512-3/o9z3X0X0fTupwsYvR03pJ/DjWuqqrfwBgTQzdWDiQSm9KitAyz/9WqsT2JQW7KV2m+bC2ol/zqpW37NHxLaA==" - } - }, - "npm:thread-stream": { - "type": "npm", - "name": "npm:thread-stream", - "data": { - "version": "4.0.0", - "packageName": "thread-stream", - "hash": "sha512-4iMVL6HAINXWf1ZKZjIPcz5wYaOdPhtO8ATvZ+Xqp3BTdaqtAwQkNmKORqcIo5YkQqGXq5cwfswDwMqqQNrpJA==" - } - }, - "npm:tinybench": { - "type": "npm", - "name": "npm:tinybench", - "data": { - "version": "2.9.0", - "packageName": "tinybench", - "hash": "sha512-0+DUvqWMValLmha6lr4kD8iAMK1HzV0/aKnCtWb9v9641TnP/MFb7Pc2bxoxQjTXAErryXVgUOfv2YqNllqGeg==" - } - }, - "npm:tinyexec": { - "type": "npm", - "name": "npm:tinyexec", - "data": { - "version": "1.0.4", - "packageName": "tinyexec", - "hash": "sha512-u9r3uZC0bdpGOXtlxUIdwf9pkmvhqJdrVCH9fapQtgy/OeTTMZ1nqH7agtvEfmGui6e1XxjcdrlxvxJvc3sMqw==" - } - }, - "npm:tinyglobby": { - "type": "npm", - "name": "npm:tinyglobby", - "data": { - "version": "0.2.15", - "packageName": "tinyglobby", - "hash": "sha512-j2Zq4NyQYG5XMST4cbs02Ak8iJUdxRM0XI5QyxXuZOzKOINmWurp3smXu3y5wDcJrptwpSjgXHzIQxR0omXljQ==" - } - }, - "npm:tinyrainbow": { - "type": "npm", - "name": "npm:tinyrainbow", - "data": { - "version": "3.0.3", - "packageName": "tinyrainbow", - "hash": "sha512-PSkbLUoxOFRzJYjjxHJt9xro7D+iilgMX/C9lawzVuYiIdcihh9DXmVibBe8lmcFrRi/VzlPjBxbN7rH24q8/Q==" - } - }, - "npm:tlds": { - "type": "npm", - "name": "npm:tlds", - "data": { - "version": "1.260.0", - "packageName": "tlds", - "hash": "sha512-78+28EWBhCEE7qlyaHA9OR3IPvbCLiDh3Ckla593TksfFc9vfTsgvH7eS+dr3o9qr31gwGbogcI16yN91PoRjQ==" - } - }, - "npm:tldts-core": { - "type": "npm", - "name": "npm:tldts-core", - "data": { - "version": "7.0.25", - "packageName": "tldts-core", - "hash": "sha512-ZjCZK0rppSBu7rjHYDYsEaMOIbbT+nWF57hKkv4IUmZWBNrBWBOjIElc0mKRgLM8bm7x/BBlof6t2gi/Oq/Asw==" - } - }, - "npm:tldts-experimental": { - "type": "npm", - "name": "npm:tldts-experimental", - "data": { - "version": "7.0.25", - "packageName": "tldts-experimental", - "hash": "sha512-rFB8lPWHAf4II9+Zdlc6dwcJLIe6sqEzndcjfbcv9PdsFTlNYBgRI4y9aJzo7VMHvg/GRaUlFK+qZUyKpcE6zA==" - } - }, - "npm:tldts": { - "type": "npm", - "name": "npm:tldts", - "data": { - "version": "7.0.17", - "packageName": "tldts", - "hash": "sha512-Y1KQBgDd/NUc+LfOtKS6mNsC9CCaH+m2P1RoIZy7RAPo3C3/t8X45+zgut31cRZtZ3xKPjfn3TkGTrctC2TQIQ==" - } - }, - "npm:tmp": { - "type": "npm", - "name": "npm:tmp", - "data": { - "version": "0.2.5", - "packageName": "tmp", - "hash": "sha512-voyz6MApa1rQGUxT3E+BK7/ROe8itEx7vD8/HEvt4xwXucvQ5G5oeEiHkmHZJuBO21RpOf+YYm9MOivj709jow==" - } - }, - "npm:to-regex-range": { - "type": "npm", - "name": "npm:to-regex-range", - "data": { - "version": "5.0.1", - "packageName": "to-regex-range", - "hash": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==" - } - }, - "npm:toad-cache": { - "type": "npm", - "name": "npm:toad-cache", - "data": { - "version": "3.7.0", - "packageName": "toad-cache", - "hash": "sha512-/m8M+2BJUpoJdgAHoG+baCwBT+tf2VraSfkBgl0Y00qIWt41DJ8R5B8nsEw0I58YwF5IZH6z24/2TobDKnqSWw==" - } - }, - "npm:toidentifier": { - "type": "npm", - "name": "npm:toidentifier", - "data": { - "version": "1.0.1", - "packageName": "toidentifier", - "hash": "sha512-o5sSPKEkg/DIQNmH43V0/uerLrpzVedkUh8tGNvaeXpfpuwjKenlSox/2O/BTlZUtEe+JG7s5YhEz608PlAHRA==" - } - }, - "npm:totalist": { - "type": "npm", - "name": "npm:totalist", - "data": { - "version": "3.0.1", - "packageName": "totalist", - "hash": "sha512-sf4i37nQ2LBx4m3wB74y+ubopq6W/dIzXg0FDGjsYnZHVa1Da8FH853wlL2gtUhg+xJXjfk3kUZS3BRoQeoQBQ==" - } - }, - "npm:tough-cookie": { - "type": "npm", - "name": "npm:tough-cookie", - "data": { - "version": "6.0.0", - "packageName": "tough-cookie", - "hash": "sha512-kXuRi1mtaKMrsLUxz3sQYvVl37B0Ns6MzfrtV5DvJceE9bPyspOqk9xxv7XbZWcfLWbFmm997vl83qUWVJA64w==" - } - }, - "npm:tr46": { - "type": "npm", - "name": "npm:tr46", - "data": { - "version": "0.0.3", - "packageName": "tr46", - "hash": "sha512-N3WMsuqV66lT30CrXNbEjx4GEwlow3v6rr4mCcv6prnfwhS01rkgyFdjPNBYd9br7LpXV1+Emh01fHnq2Gdgrw==" - } - }, - "npm:tree-kill": { - "type": "npm", - "name": "npm:tree-kill", - "data": { - "version": "1.2.2", - "packageName": "tree-kill", - "hash": "sha512-L0Orpi8qGpRG//Nd+H90vFB+3iHnue1zSSGmNOOCh1GLJ7rUKVwV2HvijphGQS2UmhUZewS9VgvxYIdgr+fG1A==" - } - }, - "npm:ts-api-utils": { - "type": "npm", - "name": "npm:ts-api-utils", - "data": { - "version": "2.4.0", - "packageName": "ts-api-utils", - "hash": "sha512-3TaVTaAv2gTiMB35i3FiGJaRfwb3Pyn/j3m/bfAvGe8FB7CF6u+LMYqYlDh7reQf7UNvoTvdfAqHGmPGOSsPmA==" - } - }, - "npm:ts-deepmerge": { - "type": "npm", - "name": "npm:ts-deepmerge", - "data": { - "version": "7.0.3", - "packageName": "ts-deepmerge", - "hash": "sha512-Du/ZW2RfwV/D4cmA5rXafYjBQVuvu4qGiEEla4EmEHVHgRdx68Gftx7i66jn2bzHPwSVZY36Ae6OuDn9el4ZKA==" - } - }, - "npm:ts-morph": { - "type": "npm", - "name": "npm:ts-morph", - "data": { - "version": "26.0.0", - "packageName": "ts-morph", - "hash": "sha512-ztMO++owQnz8c/gIENcM9XfCEzgoGphTv+nKpYNM1bgsdOVC/jRZuEBf6N+mLLDNg68Kl+GgUZfOySaRiG1/Ug==" - } - }, - "npm:tsconfig-paths": { - "type": "npm", - "name": "npm:tsconfig-paths", - "data": { - "version": "4.2.0", - "packageName": "tsconfig-paths", - "hash": "sha512-NoZ4roiN7LnbKn9QqE1amc9DJfzvZXxF4xDavcOWt1BPkdx+m+0gJuPM+S0vCe7zTJMYUP0R8pO2XMr+Y8oLIg==" - } - }, - "npm:tsdown": { - "type": "npm", - "name": "npm:tsdown", - "data": { - "version": "0.21.4", - "packageName": "tsdown", - "hash": "sha512-Q/kBi8SXkr4X6JI/NAZKZY1UuiEcbuXtIskL4tZCsgpDiEPM/2W6lC+OonNA31S+V3KsWedFvbFDBs23hvt+Aw==" - } - }, - "npm:tslib": { - "type": "npm", - "name": "npm:tslib", - "data": { - "version": "2.8.1", - "packageName": "tslib", - "hash": "sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w==" - } - }, - "npm:tsx": { - "type": "npm", - "name": "npm:tsx", - "data": { - "version": "4.21.0", - "packageName": "tsx", - "hash": "sha512-5C1sg4USs1lfG0GFb2RLXsdpXqBSEhAaA/0kPL01wxzpMqLILNxIxIOKiILz+cdg/pLnOUxFYOR5yhHU666wbw==" - } - }, - "npm:tunnel-agent": { - "type": "npm", - "name": "npm:tunnel-agent", - "data": { - "version": "0.6.0", - "packageName": "tunnel-agent", - "hash": "sha512-McnNiV1l8RYeY8tBgEpuodCC1mLUdbSN+CYBL7kJsJNInOP8UjDDEwdk6Mw60vdLLrr5NHKZhMAOSrR2NZuQ+w==" - } - }, - "npm:turbo": { - "type": "npm", - "name": "npm:turbo", - "data": { - "version": "2.8.20", - "packageName": "turbo", - "hash": "sha512-Rb4qk5YT8RUwwdXtkLpkVhNEe/lor6+WV7S5tTlLpxSz6MjV5Qi8jGNn4gS6NAvrYGA/rNrE6YUQM85sCZUDbQ==" - } - }, - "npm:tw-animate-css": { - "type": "npm", - "name": "npm:tw-animate-css", - "data": { - "version": "1.4.0", - "packageName": "tw-animate-css", - "hash": "sha512-7bziOlRqH0hJx80h/3mbicLW7o8qLsH5+RaLR2t+OHM3D0JlWGODQKQ4cxbK7WlvmUxpcj6Kgu6EKqjrGFe3QQ==" - } - }, - "npm:type-check": { - "type": "npm", - "name": "npm:type-check", - "data": { - "version": "0.4.0", - "packageName": "type-check", - "hash": "sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==" - } - }, - "npm:type-fest@0.20.2": { - "type": "npm", - "name": "npm:type-fest@0.20.2", - "data": { - "version": "0.20.2", - "packageName": "type-fest", - "hash": "sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==" - } - }, - "npm:type-fest": { - "type": "npm", - "name": "npm:type-fest", - "data": { - "version": "4.41.0", - "packageName": "type-fest", - "hash": "sha512-TeTSQ6H5YHvpqVwBRcnLDCBnDOHWYu7IvGbHT6N8AOymcr9PJGjc1GTtiWZTYg0NCgYwvnYWEkVChQAr9bjfwA==" - } - }, - "npm:type-is": { - "type": "npm", - "name": "npm:type-is", - "data": { - "version": "2.0.1", - "packageName": "type-is", - "hash": "sha512-OZs6gsjF4vMp32qrCbiVSkrFmXtG/AZhY3t0iAMrMBiAZyV9oALtXO8hsrHbMXF9x6L3grlFuwW2oAz7cav+Gw==" - } - }, - "npm:type-level-regexp": { - "type": "npm", - "name": "npm:type-level-regexp", - "data": { - "version": "0.1.17", - "packageName": "type-level-regexp", - "hash": "sha512-wTk4DH3cxwk196uGLK/E9pE45aLfeKJacKmcEgEOA/q5dnPGNxXt0cfYdFxb57L+sEpf1oJH4Dnx/pnRcku9jg==" - } - }, - "npm:typed-array-buffer": { - "type": "npm", - "name": "npm:typed-array-buffer", - "data": { - "version": "1.0.3", - "packageName": "typed-array-buffer", - "hash": "sha512-nAYYwfY3qnzX30IkA6AQZjVbtK6duGontcQm1WSG1MD94YLqK0515GNApXkoxKOWMusVssAHWLh9SeaoefYFGw==" - } - }, - "npm:typed-array-byte-length": { - "type": "npm", - "name": "npm:typed-array-byte-length", - "data": { - "version": "1.0.3", - "packageName": "typed-array-byte-length", - "hash": "sha512-BaXgOuIxz8n8pIq3e7Atg/7s+DpiYrxn4vdot3w9KbnBhcRQq6o3xemQdIfynqSeXeDrF32x+WvfzmOjPiY9lg==" - } - }, - "npm:typed-array-byte-offset": { - "type": "npm", - "name": "npm:typed-array-byte-offset", - "data": { - "version": "1.0.4", - "packageName": "typed-array-byte-offset", - "hash": "sha512-bTlAFB/FBYMcuX81gbL4OcpH5PmlFHqlCCpAl8AlEzMz5k53oNDvN8p1PNOWLEmI2x4orp3raOFB51tv9X+MFQ==" - } - }, - "npm:typed-array-length": { - "type": "npm", - "name": "npm:typed-array-length", - "data": { - "version": "1.0.7", - "packageName": "typed-array-length", - "hash": "sha512-3KS2b+kL7fsuk/eJZ7EQdnEmQoaho/r6KUef7hxvltNA5DR8NAUM+8wJMbJyZ4G9/7i3v5zPBIMN5aybAh2/Jg==" - } - }, - "npm:typed-query-selector": { - "type": "npm", - "name": "npm:typed-query-selector", - "data": { - "version": "2.12.1", - "packageName": "typed-query-selector", - "hash": "sha512-uzR+FzI8qrUEIu96oaeBJmd9E7CFEiQ3goA5qCVgc4s5llSubcfGHq9yUstZx/k4s9dXHVKsE35YWoFyvEqEHA==" - } - }, - "npm:typescript-eslint": { - "type": "npm", - "name": "npm:typescript-eslint", - "data": { - "version": "8.57.1", - "packageName": "typescript-eslint", - "hash": "sha512-fLvZWf+cAGw3tqMCYzGIU6yR8K+Y9NT2z23RwOjlNFF2HwSB3KhdEFI5lSBv8tNmFkkBShSjsCjzx1vahZfISA==" - } - }, - "npm:typescript": { - "type": "npm", - "name": "npm:typescript", - "data": { - "version": "6.0.2", - "packageName": "typescript", - "hash": "sha512-bGdAIrZ0wiGDo5l8c++HWtbaNCWTS4UTv7RaTH/ThVIgjkveJt83m74bBHMJkuCbslY8ixgLBVZJIOiQlQTjfQ==" - } - }, - "npm:ufo": { - "type": "npm", - "name": "npm:ufo", - "data": { - "version": "1.6.3", - "packageName": "ufo", - "hash": "sha512-yDJTmhydvl5lJzBmy/hyOAA0d+aqCBuwl818haVdYCRrWV84o7YyeVm4QlVHStqNrrJSTb6jKuFAVqAFsr+K3Q==" - } - }, - "npm:unbash": { - "type": "npm", - "name": "npm:unbash", - "data": { - "version": "2.2.0", - "packageName": "unbash", - "hash": "sha512-X2wH19RAPZE3+ldGicOkoj/SIA83OIxcJ6Cuaw23hf8Xc6fQpvZXY0SftE2JgS0QhYLUG4uwodSI3R53keyh7w==" - } - }, - "npm:unbox-primitive": { - "type": "npm", - "name": "npm:unbox-primitive", - "data": { - "version": "1.1.0", - "packageName": "unbox-primitive", - "hash": "sha512-nWJ91DjeOkej/TA8pXQ3myruKpKEYgqvpw9lz4OPHj/NWFNluYrjbz9j01CJ8yKQd2g4jFoOkINCTW2I5LEEyw==" - } - }, - "npm:unconfig-core": { - "type": "npm", - "name": "npm:unconfig-core", - "data": { - "version": "7.5.0", - "packageName": "unconfig-core", - "hash": "sha512-Su3FauozOGP44ZmKdHy2oE6LPjk51M/TRRjHv2HNCWiDvfvCoxC2lno6jevMA91MYAdCdwP05QnWdWpSbncX/w==" - } - }, - "npm:unconfig": { - "type": "npm", - "name": "npm:unconfig", - "data": { - "version": "7.5.0", - "packageName": "unconfig", - "hash": "sha512-oi8Qy2JV4D3UQ0PsopR28CzdQ3S/5A1zwsUwp/rosSbfhJ5z7b90bIyTwi/F7hCLD4SGcZVjDzd4XoUQcEanvA==" - } - }, - "npm:uncrypto": { - "type": "npm", - "name": "npm:uncrypto", - "data": { - "version": "0.1.3", - "packageName": "uncrypto", - "hash": "sha512-Ql87qFHB3s/De2ClA9e0gsnS6zXG27SkTiSJwjCc9MebbfapQfuPzumMIUMi38ezPZVNFcHI9sUIepeQfw8J8Q==" - } - }, - "npm:undici-types": { - "type": "npm", - "name": "npm:undici-types", - "data": { - "version": "6.21.0", - "packageName": "undici-types", - "hash": "sha512-iwDZqg0QAGrg9Rav5H4n0M64c3mkR59cJ6wQp+7C4nI0gsmExaedaYLNO44eT4AtBBwjbTiGPMlt2Md0T9H9JQ==" - } - }, - "npm:undici@7.14.0": { - "type": "npm", - "name": "npm:undici@7.14.0", - "data": { - "version": "7.14.0", - "packageName": "undici", - "hash": "sha512-Vqs8HTzjpQXZeXdpsfChQTlafcMQaaIwnGwLam1wudSSjlJeQ3bw1j+TLPePgrCnCpUXx7Ba5Pdpf5OBih62NQ==" - } - }, - "npm:undici": { - "type": "npm", - "name": "npm:undici", - "data": { - "version": "7.24.4", - "packageName": "undici", - "hash": "sha512-BM/JzwwaRXxrLdElV2Uo6cTLEjhSb3WXboncJamZ15NgUURmvlXvxa6xkwIOILIjPNo9i8ku136ZvWV0Uly8+w==" - } - }, - "npm:unenv": { - "type": "npm", - "name": "npm:unenv", - "data": { - "version": "2.0.0-rc.24", - "packageName": "unenv", - "hash": "sha512-i7qRCmY42zmCwnYlh9H2SvLEypEFGye5iRmEMKjcGi7zk9UquigRjFtTLz0TYqr0ZGLZhaMHl/foy1bZR+Cwlw==" - } - }, - "npm:unicorn-magic@0.3.0": { - "type": "npm", - "name": "npm:unicorn-magic@0.3.0", - "data": { - "version": "0.3.0", - "packageName": "unicorn-magic", - "hash": "sha512-+QBBXBCvifc56fsbuxZQ6Sic3wqqc3WWaqxs58gvJrcOuN83HGTCwz3oS5phzU9LthRNE9VrJCFCLUgHeeFnfA==" - } - }, - "npm:unicorn-magic": { - "type": "npm", - "name": "npm:unicorn-magic", - "data": { - "version": "0.4.0", - "packageName": "unicorn-magic", - "hash": "sha512-wH590V9VNgYH9g3lH9wWjTrUoKsjLF6sGLjhR4sH1LWpLmCOH0Zf7PukhDA8BiS7KHe4oPNkcTHqYkj7SOGUOw==" - } - }, - "npm:union": { - "type": "npm", - "name": "npm:union", - "data": { - "version": "0.5.0", - "packageName": "union", - "hash": "sha512-N6uOhuW6zO95P3Mel2I2zMsbsanvvtgn6jVqJv4vbVcz/JN0OkL9suomjQGmWtxJQXOCqUJvquc1sMeNz/IwlA==" - } - }, - "npm:unique-filename": { - "type": "npm", - "name": "npm:unique-filename", - "data": { - "version": "4.0.0", - "packageName": "unique-filename", - "hash": "sha512-XSnEewXmQ+veP7xX2dS5Q4yZAvO40cBN2MWkJ7D/6sW4Dg6wYBNwM1Vrnz1FhH5AdeLIlUXRI9e28z1YZi71NQ==" - } - }, - "npm:unique-slug": { - "type": "npm", - "name": "npm:unique-slug", - "data": { - "version": "5.0.0", - "packageName": "unique-slug", - "hash": "sha512-9OdaqO5kwqR+1kVgHAhsp5vPNU0hnxRa26rBFNfNgM7M6pNtgzeBn3s/xbyCQL3dcjzOatcef6UUHpB/6MaETg==" - } - }, - "npm:unist-util-is": { - "type": "npm", - "name": "npm:unist-util-is", - "data": { - "version": "6.0.1", - "packageName": "unist-util-is", - "hash": "sha512-LsiILbtBETkDz8I9p1dQ0uyRUWuaQzd/cuEeS1hoRSyW5E5XGmTzlwY1OrNzzakGowI9Dr/I8HVaw4hTtnxy8g==" - } - }, - "npm:unist-util-stringify-position": { - "type": "npm", - "name": "npm:unist-util-stringify-position", - "data": { - "version": "4.0.0", - "packageName": "unist-util-stringify-position", - "hash": "sha512-0ASV06AAoKCDkS2+xw5RXJywruurpbC4JZSm7nr7MOt1ojAzvyyaO+UxZf18j8FCF6kmzCZKcAgN/yu2gm2XgQ==" - } - }, - "npm:unist-util-visit-parents": { - "type": "npm", - "name": "npm:unist-util-visit-parents", - "data": { - "version": "6.0.2", - "packageName": "unist-util-visit-parents", - "hash": "sha512-goh1s1TBrqSqukSc8wrjwWhL0hiJxgA8m4kFxGlQ+8FYQ3C/m11FcTs4YYem7V664AhHVvgoQLk890Ssdsr2IQ==" - } - }, - "npm:unist-util-visit": { - "type": "npm", - "name": "npm:unist-util-visit", - "data": { - "version": "5.0.0", - "packageName": "unist-util-visit", - "hash": "sha512-MR04uvD+07cwl/yhVuVWAtw+3GOR/knlL55Nd/wAdblk27GCVt3lqpTivy/tkJcZoNPzTwS1Y+KMojlLDhoTzg==" - } - }, - "npm:unpipe": { - "type": "npm", - "name": "npm:unpipe", - "data": { - "version": "1.0.0", - "packageName": "unpipe", - "hash": "sha512-pjy2bYhSsufwWlKwPc+l3cN7+wuJlK6uz0YdJEOlQDbl6jo/YlPi4mb8agUkVC8BF7V8NuzeyPNqRksA3hztKQ==" - } - }, - "npm:unplugin-purge-polyfills": { - "type": "npm", - "name": "npm:unplugin-purge-polyfills", - "data": { - "version": "0.1.0", - "packageName": "unplugin-purge-polyfills", - "hash": "sha512-dHahgAhuzaHZHU65oY7BU24vqH/AtcXppdH1B1SmrBeglyX7NOBtkryjp2F8mOD4tL2RVxfAc41JRqRKTAeAkA==" - } - }, - "npm:unplugin": { - "type": "npm", - "name": "npm:unplugin", - "data": { - "version": "2.3.10", - "packageName": "unplugin", - "hash": "sha512-6NCPkv1ClwH+/BGE9QeoTIl09nuiAt0gS28nn1PvYXsGKRwM2TCbFA2QiilmehPDTXIe684k4rZI1yl3A1PCUw==" - } - }, - "npm:unrun": { - "type": "npm", - "name": "npm:unrun", - "data": { - "version": "0.2.32", - "packageName": "unrun", - "hash": "sha512-opd3z6791rf281JdByf0RdRQrpcc7WyzqittqIXodM/5meNWdTwrVxeyzbaCp4/Rgls/um14oUaif1gomO8YGg==" - } - }, - "npm:update-browserslist-db": { - "type": "npm", - "name": "npm:update-browserslist-db", - "data": { - "version": "1.2.2", - "packageName": "update-browserslist-db", - "hash": "sha512-E85pfNzMQ9jpKkA7+TJAi4TJN+tBCuWh5rUcS/sv6cFi+1q9LYDwDI5dpUL0u/73EElyQ8d3TEaeW4sPedBqYA==" - } - }, - "npm:uri-js": { - "type": "npm", - "name": "npm:uri-js", - "data": { - "version": "4.4.1", - "packageName": "uri-js", - "hash": "sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==" - } - }, - "npm:url-http": { - "type": "npm", - "name": "npm:url-http", - "data": { - "version": "1.3.2", - "packageName": "url-http", - "hash": "sha512-w2ooUk48t/nTJE7axsVsj+pretcM0FA1NdoUg5/H68OWj12bE8pbS6+JvqaGiU9TBaruWUDomZyC/uriT9bFNQ==" - } - }, - "npm:url-join": { - "type": "npm", - "name": "npm:url-join", - "data": { - "version": "4.0.1", - "packageName": "url-join", - "hash": "sha512-jk1+QP6ZJqyOiuEI9AEWQfju/nB2Pw466kbA0LEZljHwKeMgd9WrAEgEGxjPDD2+TNbbb37rTyhEfrCXfuKXnA==" - } - }, - "npm:url-regex-safe": { - "type": "npm", - "name": "npm:url-regex-safe", - "data": { - "version": "4.0.0", - "packageName": "url-regex-safe", - "hash": "sha512-BrnFCWKNFrFnRzKD66NtJqQepfJrUHNPvPxE5y5NSAhXBb4OlobQjt7907Jm4ItPiXaeX+dDWMkcnOd4jR9N8A==" - } - }, - "npm:use-callback-ref": { - "type": "npm", - "name": "npm:use-callback-ref", - "data": { - "version": "1.3.3", - "packageName": "use-callback-ref", - "hash": "sha512-jQL3lRnocaFtu3V00JToYz/4QkNWswxijDaCVNZRiRTO3HQDLsdu1ZtmIUvV4yPp+rvWm5j0y0TG/S61cuijTg==" - } - }, - "npm:use-composed-ref": { - "type": "npm", - "name": "npm:use-composed-ref", - "data": { - "version": "1.4.0", - "packageName": "use-composed-ref", - "hash": "sha512-djviaxuOOh7wkj0paeO1Q/4wMZ8Zrnag5H6yBvzN7AKKe8beOaED9SF5/ByLqsku8NP4zQqsvM2u3ew/tJK8/w==" - } - }, - "npm:use-isomorphic-layout-effect": { - "type": "npm", - "name": "npm:use-isomorphic-layout-effect", - "data": { - "version": "1.2.1", - "packageName": "use-isomorphic-layout-effect", - "hash": "sha512-tpZZ+EX0gaghDAiFR37hj5MgY6ZN55kLiPkJsKxBMZ6GZdOSPJXiOzPM984oPYZ5AnehYx5WQp1+ME8I/P/pRA==" - } - }, - "npm:use-latest": { - "type": "npm", - "name": "npm:use-latest", - "data": { - "version": "1.3.0", - "packageName": "use-latest", - "hash": "sha512-mhg3xdm9NaM8q+gLT8KryJPnRFOz1/5XPBhmDEVZK1webPzDjrPk7f/mbpeLqTgB9msytYWANxgALOCJKnLvcQ==" - } - }, - "npm:use-sidecar": { - "type": "npm", - "name": "npm:use-sidecar", - "data": { - "version": "1.1.3", - "packageName": "use-sidecar", - "hash": "sha512-Fedw0aZvkhynoPYlA5WXrMCAMm+nSWdZt6lzJQ7Ok8S6Q+VsHmHpRWndVRJ8Be0ZbkfPc5LRYH+5XrzXcEeLRQ==" - } - }, - "npm:util-deprecate": { - "type": "npm", - "name": "npm:util-deprecate", - "data": { - "version": "1.0.2", - "packageName": "util-deprecate", - "hash": "sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==" - } - }, - "npm:valibot": { - "type": "npm", - "name": "npm:valibot", - "data": { - "version": "1.2.0", - "packageName": "valibot", - "hash": "sha512-mm1rxUsmOxzrwnX5arGS+U4T25RdvpPjPN4yR0u9pUBov9+zGVtO84tif1eY4r6zWxVxu3KzIyknJy3rxfRZZg==" - } - }, - "npm:vary": { - "type": "npm", - "name": "npm:vary", - "data": { - "version": "1.1.2", - "packageName": "vary", - "hash": "sha512-BNGbWLfd0eUPabhkXUVm0j8uuvREyTh5ovRa/dyow/BqAbZJyC+5fU+IzQOzmAKzYqYRAISoRhdQr3eIZ/PXqg==" - } - }, - "npm:vike-photon": { - "type": "npm", - "name": "npm:vike-photon", - "data": { - "version": "0.1.25", - "packageName": "vike-photon", - "hash": "sha512-vvK2cDmhG+VKijg4Ec1Fq3ZlNplOj/OjI7i1wSp2QPtDUbCZhzKObvM3ZLGTTDkf6fEas0mPXGqLRyRnD0yyuA==" - } - }, - "npm:vike-react": { - "type": "npm", - "name": "npm:vike-react", - "data": { - "version": "0.6.21", - "packageName": "vike-react", - "hash": "sha512-mZyskc8xXJbUbK8/Lsztgd0MhrCxnQjHhCpruMVokA+jJC1uuZEAgwoO5Fptoiyqm2pjDfqtAGDw+1pZ97d9OA==" - } - }, - "npm:vike-solid": { - "type": "npm", - "name": "npm:vike-solid", - "data": { - "version": "0.8.1", - "packageName": "vike-solid", - "hash": "sha512-Zn2wmRmf+KnXb8HYF452kztkwPHiPxwTtthTdCgNXcLWxi8udP1vbkCyXZ1IXJkE0cQtonpqhLviBiotEIh6UA==" - } - }, - "npm:vike-vue": { - "type": "npm", - "name": "npm:vike-vue", - "data": { - "version": "0.9.11", - "packageName": "vike-vue", - "hash": "sha512-Ujcu7NG/ZFsiAgEomA0PtuHFg0J/BMcol/QHiDzaIlov2JSiDfapyBLidrPVTrHwLHvmeCnxa4ruVqG+/Vj1XA==" - } - }, - "npm:vike": { - "type": "npm", - "name": "npm:vike", - "data": { - "version": "0.4.255", - "packageName": "vike", - "hash": "sha512-pVRovPzIcxPiSg1nkkHg0+PGDc+qMupHw/xgWCvmJHhHO0qfuQ6UgiMq+OdEKB9q64NJJ6uuDXDtpVgvmYUu3w==" - } - }, - "npm:vite-plugin-compiled-react": { - "type": "npm", - "name": "npm:vite-plugin-compiled-react", - "data": { - "version": "1.3.1", - "packageName": "vite-plugin-compiled-react", - "hash": "sha512-RewxZHCMTnxC1Zi1UPMSTh0JSEqFAkVYaalkpmfecefv62VfJ3zq+NTiRuQOzsRGBfWQlKdgdvsDgkZMxVJokQ==" - } - }, - "npm:vite-plugin-solid": { - "type": "npm", - "name": "npm:vite-plugin-solid", - "data": { - "version": "2.11.11", - "packageName": "vite-plugin-solid", - "hash": "sha512-YMZCXsLw9kyuvQFEdwLP27fuTQJLmjNoHy90AOJnbRuJ6DwShUxKFo38gdFrWn9v11hnGicKCZEaeI/TFs6JKw==" - } - }, - "npm:vite-plugin-wasm": { - "type": "npm", - "name": "npm:vite-plugin-wasm", - "data": { - "version": "3.5.0", - "packageName": "vite-plugin-wasm", - "hash": "sha512-X5VWgCnqiQEGb+omhlBVsvTfxikKtoOgAzQ95+BZ8gQ+VfMHIjSHr0wyvXFQCa0eKQ0fKyaL0kWcEnYqBac4lQ==" - } - }, - "npm:vite": { - "type": "npm", - "name": "npm:vite", - "data": { - "version": "8.0.2", - "packageName": "vite", - "hash": "sha512-1gFhNi+bHhRE/qKZOJXACm6tX4bA3Isy9KuKF15AgSRuRazNBOJfdDemPBU16/mpMxApDPrWvZ08DcLPEoRnuA==" - } - }, - "npm:vitefu": { - "type": "npm", - "name": "npm:vitefu", - "data": { - "version": "1.1.1", - "packageName": "vitefu", - "hash": "sha512-B/Fegf3i8zh0yFbpzZ21amWzHmuNlLlmJT6n7bu5e+pCHUKQIfXSYokrqOBGEMMe9UG2sostKQF9mml/vYaWJQ==" - } - }, - "npm:vitest": { - "type": "npm", - "name": "npm:vitest", - "data": { - "version": "4.1.0", - "packageName": "vitest", - "hash": "sha512-YbDrMF9jM2Lqc++2530UourxZHmkKLxrs4+mYhEwqWS97WJ7wOYEkcr+QfRgJ3PW9wz3odRijLZjHEaRLTNbqw==" - } - }, - "npm:vue-eslint-parser": { - "type": "npm", - "name": "npm:vue-eslint-parser", - "data": { - "version": "10.4.0", - "packageName": "vue-eslint-parser", - "hash": "sha512-Vxi9pJdbN3ZnVGLODVtZ7y4Y2kzAAE2Cm0CZ3ZDRvydVYxZ6VrnBhLikBsRS+dpwj4Jv4UCv21PTEwF5rQ9WXg==" - } - }, - "npm:vue-gtag": { - "type": "npm", - "name": "npm:vue-gtag", - "data": { - "version": "3.7.0", - "packageName": "vue-gtag", - "hash": "sha512-o/ng/NjiVgEnOBZlSnWyg9IsVzIXUWmSuwbd+lGRX/T/h8gxdYN1IMcz5MT8e7o6GYhextvWpsupVAsWbYb+Gg==" - } - }, - "npm:vue": { - "type": "npm", - "name": "npm:vue", - "data": { - "version": "3.5.30", - "packageName": "vue", - "hash": "sha512-hTHLc6VNZyzzEH/l7PFGjpcTvUgiaPK5mdLkbjrTeWSRcEfxFrv56g/XckIYlE9ckuobsdwqd5mk2g1sBkMewg==" - } - }, - "npm:walk-up-path": { - "type": "npm", - "name": "npm:walk-up-path", - "data": { - "version": "4.0.0", - "packageName": "walk-up-path", - "hash": "sha512-3hu+tD8YzSLGuFYtPRb48vdhKMi0KQV5sn+uWr8+7dMEq/2G/dtLrdDinkLjqq5TIbIBjYJ4Ax/n3YiaW7QM8A==" - } - }, - "npm:wcwidth": { - "type": "npm", - "name": "npm:wcwidth", - "data": { - "version": "1.0.1", - "packageName": "wcwidth", - "hash": "sha512-XHPEwS0q6TaxcvG85+8EYkbiCux2XtWG2mkc47Ng2A77BQu9+DqIOJldST4HgPkuea7dvKSj5VgX3P1d4rW8Tg==" - } - }, - "npm:web-streams-polyfill": { - "type": "npm", - "name": "npm:web-streams-polyfill", - "data": { - "version": "3.3.3", - "packageName": "web-streams-polyfill", - "hash": "sha512-d2JWLCivmZYTSIoge9MsgFCZrt571BikcWGYkjC1khllbTeDlGqZ2D8vD8E/lJa8WGWbb7Plm8/XJYV7IJHZZw==" - } - }, - "npm:webdriver-bidi-protocol": { - "type": "npm", - "name": "npm:webdriver-bidi-protocol", - "data": { - "version": "0.4.1", - "packageName": "webdriver-bidi-protocol", - "hash": "sha512-ARrjNjtWRRs2w4Tk7nqrf2gBI0QXWuOmMCx2hU+1jUt6d00MjMxURrhxhGbrsoiZKJrhTSTzbIrc554iKI10qw==" - } - }, - "npm:webidl-conversions": { - "type": "npm", - "name": "npm:webidl-conversions", - "data": { - "version": "3.0.1", - "packageName": "webidl-conversions", - "hash": "sha512-2JAn3z8AR6rjK8Sm8orRC0h/bcl/DqL7tRPdGZ4I1CjdF+EaMLmYxBHyXuKL849eucPFhvBoxMsflfOb8kxaeQ==" - } - }, - "npm:webpack-virtual-modules": { - "type": "npm", - "name": "npm:webpack-virtual-modules", - "data": { - "version": "0.6.2", - "packageName": "webpack-virtual-modules", - "hash": "sha512-66/V2i5hQanC51vBQKPH4aI8NMAcBW59FVBs+rC7eGHupMyfn34q7rZIE+ETlJ+XTevqfUhVVBgSUNSW2flEUQ==" - } - }, - "npm:whatwg-encoding": { - "type": "npm", - "name": "npm:whatwg-encoding", - "data": { - "version": "2.0.0", - "packageName": "whatwg-encoding", - "hash": "sha512-p41ogyeMUrw3jWclHWTQg1k05DSVXPLcVxRTYsXUk+ZooOCZLcoYgPZ/HL/D/N+uQPOtcp1me1WhBEaX02mhWg==" - } - }, - "npm:whatwg-url": { - "type": "npm", - "name": "npm:whatwg-url", - "data": { - "version": "5.0.0", - "packageName": "whatwg-url", - "hash": "sha512-saE57nupxk6v3HY35+jzBwYa0rKSy0XR8JSxZPwgLr7ys0IBzhGviA1/TUGJLmSVqs8pb9AnvICXEuOHLprYTw==" - } - }, - "npm:which-boxed-primitive": { - "type": "npm", - "name": "npm:which-boxed-primitive", - "data": { - "version": "1.1.1", - "packageName": "which-boxed-primitive", - "hash": "sha512-TbX3mj8n0odCBFVlY8AxkqcHASw3L60jIuF8jFP78az3C2YhmGvqbHBpAjTRH2/xqYunrJ9g1jSyjCjpoWzIAA==" - } - }, - "npm:which-builtin-type": { - "type": "npm", - "name": "npm:which-builtin-type", - "data": { - "version": "1.2.1", - "packageName": "which-builtin-type", - "hash": "sha512-6iBczoX+kDQ7a3+YJBnh3T+KZRxM/iYNPXicqk66/Qfm1b93iu+yOImkg0zHbj5LNOcNv1TEADiZ0xa34B4q6Q==" - } - }, - "npm:which-collection": { - "type": "npm", - "name": "npm:which-collection", - "data": { - "version": "1.0.2", - "packageName": "which-collection", - "hash": "sha512-K4jVyjnBdgvc86Y6BkaLZEN933SwYOuBFkdmBu9ZfkcAbdVbpITnDmjvZ/aQjRXQrv5EPkTnD1s39GiiqbngCw==" - } - }, - "npm:which-typed-array": { - "type": "npm", - "name": "npm:which-typed-array", - "data": { - "version": "1.1.19", - "packageName": "which-typed-array", - "hash": "sha512-rEvr90Bck4WZt9HHFC4DJMsjvu7x+r6bImz0/BrbWb7A2djJ8hnZMrWnHo9F8ssv0OMErasDhftrfROTyqSDrw==" - } - }, - "npm:which@2.0.2": { - "type": "npm", - "name": "npm:which@2.0.2", - "data": { - "version": "2.0.2", - "packageName": "which", - "hash": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==" - } - }, - "npm:which@5.0.0": { - "type": "npm", - "name": "npm:which@5.0.0", - "data": { - "version": "5.0.0", - "packageName": "which", - "hash": "sha512-JEdGzHwwkrbWoGOlIHqQ5gtprKGOenpDHpxE9zVR1bWbOtYRyPPHMe9FaP6x61CmNaTThSkb0DAJte5jD+DmzQ==" - } - }, - "npm:which": { - "type": "npm", - "name": "npm:which", - "data": { - "version": "6.0.1", - "packageName": "which", - "hash": "sha512-oGLe46MIrCRqX7ytPUf66EAYvdeMIZYn3WaocqqKZAxrBpkqHfL/qvTyJ/bTk5+AqHCjXmrv3CEWgy368zhRUg==" - } - }, - "npm:whoops": { - "type": "npm", - "name": "npm:whoops", - "data": { - "version": "5.1.0", - "packageName": "whoops", - "hash": "sha512-JVrjrkswIIaFcZ4DZRHObijOhhXIcADrup/USchmrHo6p8PZcU3TmILSHqs/7d2GrWN17uTKScik/7Mq0wBkMA==" - } - }, - "npm:why-is-node-running": { - "type": "npm", - "name": "npm:why-is-node-running", - "data": { - "version": "2.3.0", - "packageName": "why-is-node-running", - "hash": "sha512-hUrmaWBdVDcxvYqnyh09zunKzROWjbZTiNy8dBEjkS7ehEDQibXJ7XvlmtbwuTclUiIyN+CyXQD4Vmko8fNm8w==" - } - }, - "npm:word-wrap": { - "type": "npm", - "name": "npm:word-wrap", - "data": { - "version": "1.2.5", - "packageName": "word-wrap", - "hash": "sha512-BN22B5eaMMI9UMtjrGd5g5eCYPpCPDUy0FJXbYsaT5zYxjFOckS53SQDE3pWkVoWpHXVb3BrYcEN4Twa55B5cA==" - } - }, - "npm:workerd@1.20251217.0": { - "type": "npm", - "name": "npm:workerd@1.20251217.0", - "data": { - "version": "1.20251217.0", - "packageName": "workerd", - "hash": "sha512-s3mHDSWwHTduyY8kpHOsl27ZJ4ziDBJlc18PfBvNMqNnhO7yBeemlxH7bo7yQyU1foJrIZ6IENHDDg0Z9N8zQA==" - } - }, - "npm:workerd": { - "type": "npm", - "name": "npm:workerd", - "data": { - "version": "1.20260317.1", - "packageName": "workerd", - "hash": "sha512-ZuEq1OdrJBS+NV+L5HMYPCzVn49a2O60slQiiLpG44jqtlOo+S167fWC76kEXteXLLLydeuRrluRel7WdOUa4g==" - } - }, - "npm:wrangler": { - "type": "npm", - "name": "npm:wrangler", - "data": { - "version": "4.76.0", - "packageName": "wrangler", - "hash": "sha512-Wan+CU5a0tu4HIxGOrzjNbkmxCT27HUmzrMj6kc7aoAnjSLv50Ggcn2Ant7wNQrD6xW3g31phKupZJgTZ8wZfQ==" - } - }, - "npm:wrap-ansi": { - "type": "npm", - "name": "npm:wrap-ansi", - "data": { - "version": "7.0.0", - "packageName": "wrap-ansi", - "hash": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==" - } - }, - "npm:wrap-ansi@8.1.0": { - "type": "npm", - "name": "npm:wrap-ansi@8.1.0", - "data": { - "version": "8.1.0", - "packageName": "wrap-ansi", - "hash": "sha512-si7QWI6zUMq56bESFvagtmzMdGOtoxfR+Sez11Mobfc7tm+VkUckk9bW2UeffTGVUbOksxmSw0AA2gs8g71NCQ==" - } - }, - "npm:wrap-ansi-cjs": { - "type": "npm", - "name": "npm:wrap-ansi-cjs", - "data": { - "version": "npm:wrap-ansi@7.0.0", - "packageName": "wrap-ansi-cjs", - "hash": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==" - } - }, - "npm:wrappy": { - "type": "npm", - "name": "npm:wrappy", - "data": { - "version": "1.0.2", - "packageName": "wrappy", - "hash": "sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==" - } - }, - "npm:ws": { - "type": "npm", - "name": "npm:ws", - "data": { - "version": "8.18.0", - "packageName": "ws", - "hash": "sha512-8VbfWfHLbbwu3+N6OKsOMpBdT4kXPDDB9cJk2bJ6mh9ucxdlnNvH1e+roYkKmN9Nxw2yjz7VzeO9oOz2zJ04Pw==" - } - }, - "npm:ws@8.19.0": { - "type": "npm", - "name": "npm:ws@8.19.0", - "data": { - "version": "8.19.0", - "packageName": "ws", - "hash": "sha512-blAT2mjOEIi0ZzruJfIhb3nps74PRWTCz1IjglWEEpQl5XS/UNama6u2/rjFkDDouqr4L67ry+1aGIALViWjDg==" - } - }, - "npm:xml-name-validator": { - "type": "npm", - "name": "npm:xml-name-validator", - "data": { - "version": "4.0.0", - "packageName": "xml-name-validator", - "hash": "sha512-ICP2e+jsHvAj2E2lIHxa5tjXRlKDJo4IdvPvCXbXQGdzSfmSpNVyIKMvoZHjDY9DP0zV17iI85o90vRFXNccRw==" - } - }, - "npm:y18n": { - "type": "npm", - "name": "npm:y18n", - "data": { - "version": "5.0.8", - "packageName": "y18n", - "hash": "sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA==" - } - }, - "npm:yallist": { - "type": "npm", - "name": "npm:yallist", - "data": { - "version": "3.1.1", - "packageName": "yallist", - "hash": "sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==" - } - }, - "npm:yallist@4.0.0": { - "type": "npm", - "name": "npm:yallist@4.0.0", - "data": { - "version": "4.0.0", - "packageName": "yallist", - "hash": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==" - } - }, - "npm:yallist@5.0.0": { - "type": "npm", - "name": "npm:yallist@5.0.0", - "data": { - "version": "5.0.0", - "packageName": "yallist", - "hash": "sha512-YgvUTfwqyc7UXVMrB+SImsVYSmTS8X/tSrtdNZMImM+n7+QTriRXyXim0mBrTXNeqzVF0KWGgHPeiyViFFrNDw==" - } - }, - "npm:yaml": { - "type": "npm", - "name": "npm:yaml", - "data": { - "version": "2.8.3", - "packageName": "yaml", - "hash": "sha512-AvbaCLOO2Otw/lW5bmh9d/WEdcDFdQp2Z2ZUH3pX9U2ihyUY0nvLv7J6TrWowklRGPYbB/IuIMfYgxaCPg5Bpg==" - } - }, - "npm:yargs-parser": { - "type": "npm", - "name": "npm:yargs-parser", - "data": { - "version": "21.1.1", - "packageName": "yargs-parser", - "hash": "sha512-tVpsJW7DdjecAiFpbIB1e3qxIQsE6NoPc5/eTdrbbIC4h0LVsWhnoa3g+m2HclBIujHzsxZ4VJVA+GUuc2/LBw==" - } - }, - "npm:yargs": { - "type": "npm", - "name": "npm:yargs", - "data": { - "version": "17.7.2", - "packageName": "yargs", - "hash": "sha512-7dSzzRQ++CKnNI/krKnYRV7JKKPUXMEh61soaHKg9mrWEhzFWhFnxPxGl+69cD1Ou63C13NUPCnmIcrvqCuM6w==" - } - }, - "npm:yauzl": { - "type": "npm", - "name": "npm:yauzl", - "data": { - "version": "2.10.0", - "packageName": "yauzl", - "hash": "sha512-p4a9I6X6nu6IhoGmBqAcbJy1mlC4j27vEPZX9F4L4/vZT3Lyq1VkFHw/V/PUcB9Buo+DG3iHkT0x3Qya58zc3g==" - } - }, - "npm:yocto-queue@0.1.0": { - "type": "npm", - "name": "npm:yocto-queue@0.1.0", - "data": { - "version": "0.1.0", - "packageName": "yocto-queue", - "hash": "sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==" - } - }, - "npm:yocto-queue": { - "type": "npm", - "name": "npm:yocto-queue", - "data": { - "version": "1.2.1", - "packageName": "yocto-queue", - "hash": "sha512-AyeEbWOu/TAXdxlV9wmGcR0+yh2j3vYPGOECcIj2S7MkrLyC7ne+oye2BKTItt0ii2PHk4cDy+95+LshzbXnGg==" - } - }, - "npm:yoctocolors": { - "type": "npm", - "name": "npm:yoctocolors", - "data": { - "version": "2.1.2", - "packageName": "yoctocolors", - "hash": "sha512-CzhO+pFNo8ajLM2d2IW/R93ipy99LWjtwblvC1RsoSUMZgyLbYFr221TnSNT7GjGdYui6P459mw9JH/g/zW2ug==" - } - }, - "npm:youch-core": { - "type": "npm", - "name": "npm:youch-core", - "data": { - "version": "0.3.3", - "packageName": "youch-core", - "hash": "sha512-ho7XuGjLaJ2hWHoK8yFnsUGy2Y5uDpqSTq1FkHLK4/oqKtyUU1AFbOOxY4IpC9f0fTLjwYbslUz0Po5BpD1wrA==" - } - }, - "npm:youch": { - "type": "npm", - "name": "npm:youch", - "data": { - "version": "4.1.0-beta.10", - "packageName": "youch", - "hash": "sha512-rLfVLB4FgQneDr0dv1oddCVZmKjcJ6yX6mS4pU82Mq/Dt9a3cLZQ62pDBL4AUO+uVrCvtWz3ZFUL2HFAFJ/BXQ==" - } - }, - "npm:zeptomatch": { - "type": "npm", - "name": "npm:zeptomatch", - "data": { - "version": "2.1.0", - "packageName": "zeptomatch", - "hash": "sha512-KiGErG2J0G82LSpniV0CtIzjlJ10E04j02VOudJsPyPwNZgGnRKQy7I1R7GMyg/QswnE4l7ohSGrQbQbjXPPDA==" - } - }, - "npm:zod@3.22.3": { - "type": "npm", - "name": "npm:zod@3.22.3", - "data": { - "version": "3.22.3", - "packageName": "zod", - "hash": "sha512-EjIevzuJRiRPbVH4mGc8nApb/lVLKVpmUhAaR5R5doKGfAnGJ6Gr3CViAVjP+4FWSxCsybeWQdcgCtbX+7oZug==" - } - }, - "npm:zod": { - "type": "npm", - "name": "npm:zod", - "data": { - "version": "3.25.76", - "packageName": "zod", - "hash": "sha512-gzUt/qt81nXsFGKIFcC3YnfEAx5NkunCfnDlvuBSSFS02bcXu4Lmea0AFIUwbLWxWPx3d9p8S5QoaujKcNQxcQ==" - } - }, - "npm:zod@4.3.6": { - "type": "npm", - "name": "npm:zod@4.3.6", - "data": { - "version": "4.3.6", - "packageName": "zod", - "hash": "sha512-rftlrkhHZOcjDwkGlnUtZZkvaPHCsDATp4pGpuOOMDaTdDDXF91wuVDJoWoPsKX/3YPQ5fHuF3STjcYyKr+Qhg==" - } - }, - "npm:zwitch": { - "type": "npm", - "name": "npm:zwitch", - "data": { - "version": "2.0.4", - "packageName": "zwitch", - "hash": "sha512-bXE4cR/kVZhKZX/RjPEflHaKVhUVl85noU3v6b8apfQEc1x4A+zBxjZ4lN8LqGd6WZ3dl98pY4o717VFmoPp+A==" - } - }, - "npm:zx": { - "type": "npm", - "name": "npm:zx", - "data": { - "version": "8.8.5", - "packageName": "zx", - "hash": "sha512-SNgDF5L0gfN7FwVOdEFguY3orU5AkfFZm9B5YSHog/UDHv+lvmd82ZAsOenOkQixigwH2+yyH198AwNdKhj+RA==" - } - } - }, - "dependencies": { - "@batijs/google-analytics": [ - { - "source": "@batijs/google-analytics", - "target": "@batijs/compile", - "type": "static" - }, - { - "source": "@batijs/google-analytics", - "target": "npm:@types/node", - "type": "static" - }, - { - "source": "@batijs/google-analytics", - "target": "@batijs/core", - "type": "static" - } - ], - "@batijs/create-app": [ - { - "source": "@batijs/create-app", - "target": "@batijs/cli", - "type": "static" - } - ], - "@batijs/shared-server": [ - { - "source": "@batijs/shared-server", - "target": "@batijs/compile", - "type": "static" - }, - { - "source": "@batijs/shared-server", - "target": "npm:@types/node", - "type": "static" - }, - { - "source": "@batijs/shared-server", - "target": "npm:@universal-middleware/core", - "type": "static" - }, - { - "source": "@batijs/shared-server", - "target": "npm:vike", - "type": "static" - }, - { - "source": "@batijs/shared-server", - "target": "npm:vite", - "type": "static" - } - ], - "@batijs/plausible.io": [ - { - "source": "@batijs/plausible.io", - "target": "@batijs/compile", - "type": "static" - }, - { - "source": "@batijs/plausible.io", - "target": "npm:@types/node", - "type": "static" - }, - { - "source": "@batijs/plausible.io", - "target": "@batijs/core", - "type": "static" - } - ], - "@batijs/react-sentry": [ - { - "source": "@batijs/react-sentry", - "target": "@batijs/compile", - "type": "static" - }, - { - "source": "@batijs/react-sentry", - "target": "npm:@sentry/react", - "type": "static" - }, - { - "source": "@batijs/react-sentry", - "target": "npm:@types/node", - "type": "static" - }, - { - "source": "@batijs/react-sentry", - "target": "npm:@types/react", - "type": "static" - }, - { - "source": "@batijs/react-sentry", - "target": "npm:@types/react-dom", - "type": "static" - }, - { - "source": "@batijs/react-sentry", - "target": "npm:react", - "type": "static" - }, - { - "source": "@batijs/react-sentry", - "target": "npm:react-dom", - "type": "static" - }, - { - "source": "@batijs/react-sentry", - "target": "npm:vite", - "type": "static" - }, - { - "source": "@batijs/react-sentry", - "target": "@batijs/core", - "type": "static" - } - ], - "@batijs/solid-sentry": [ - { - "source": "@batijs/solid-sentry", - "target": "@batijs/compile", - "type": "static" - }, - { - "source": "@batijs/solid-sentry", - "target": "npm:@sentry/solid", - "type": "static" - }, - { - "source": "@batijs/solid-sentry", - "target": "npm:@types/node", - "type": "static" - }, - { - "source": "@batijs/solid-sentry", - "target": "npm:solid-js", - "type": "static" - }, - { - "source": "@batijs/solid-sentry", - "target": "npm:vike-solid", - "type": "static" - }, - { - "source": "@batijs/solid-sentry", - "target": "npm:vite", - "type": "static" - }, - { - "source": "@batijs/solid-sentry", - "target": "@batijs/core", - "type": "static" - } - ], - "@batijs/shared-todo": [ - { - "source": "@batijs/shared-todo", - "target": "@batijs/compile", - "type": "static" - }, - { - "source": "@batijs/shared-todo", - "target": "npm:@types/node", - "type": "static" - }, - { - "source": "@batijs/shared-todo", - "target": "npm:vike", - "type": "static" - }, - { - "source": "@batijs/shared-todo", - "target": "@batijs/core", - "type": "static" - } - ], - "@batijs/tailwindcss": [ - { - "source": "@batijs/tailwindcss", - "target": "@batijs/compile", - "type": "static" - }, - { - "source": "@batijs/tailwindcss", - "target": "npm:@tailwindcss/vite", - "type": "static" - }, - { - "source": "@batijs/tailwindcss", - "target": "npm:@types/node", - "type": "static" - }, - { - "source": "@batijs/tailwindcss", - "target": "npm:autoprefixer", - "type": "static" - }, - { - "source": "@batijs/tailwindcss", - "target": "npm:daisyui", - "type": "static" - }, - { - "source": "@batijs/tailwindcss", - "target": "npm:tailwindcss", - "type": "static" - }, - { - "source": "@batijs/tailwindcss", - "target": "npm:vike", - "type": "static" - }, - { - "source": "@batijs/tailwindcss", - "target": "npm:vite", - "type": "static" - }, - { - "source": "@batijs/tailwindcss", - "target": "@batijs/core", - "type": "static" - } - ], - "@batijs/cloudflare": [ - { - "source": "@batijs/cloudflare", - "target": "@batijs/compile", - "type": "static" - }, - { - "source": "@batijs/cloudflare", - "target": "npm:@photonjs/cloudflare", - "type": "static" - }, - { - "source": "@batijs/cloudflare", - "target": "npm:@types/node", - "type": "static" - }, - { - "source": "@batijs/cloudflare", - "target": "npm:wrangler", - "type": "static" - }, - { - "source": "@batijs/cloudflare", - "target": "@batijs/core", - "type": "static" - } - ], - "@batijs/vue-sentry": [ - { - "source": "@batijs/vue-sentry", - "target": "@batijs/compile", - "type": "static" - }, - { - "source": "@batijs/vue-sentry", - "target": "npm:@sentry/vue", - "type": "static" - }, - { - "source": "@batijs/vue-sentry", - "target": "npm:@types/node", - "type": "static" - }, - { - "source": "@batijs/vue-sentry", - "target": "npm:vike-vue", - "type": "static" - }, - { - "source": "@batijs/vue-sentry", - "target": "npm:vite", - "type": "static" - }, - { - "source": "@batijs/vue-sentry", - "target": "npm:vue", - "type": "static" - }, - { - "source": "@batijs/vue-sentry", - "target": "@batijs/core", - "type": "static" - } - ], - "@batijs/d1-kysely": [ - { - "source": "@batijs/d1-kysely", - "target": "@batijs/compile", - "type": "static" - }, - { - "source": "@batijs/d1-kysely", - "target": "npm:@types/node", - "type": "static" - }, - { - "source": "@batijs/d1-kysely", - "target": "@batijs/core", - "type": "static" - } - ], - "@batijs/d1-sqlite": [ - { - "source": "@batijs/d1-sqlite", - "target": "@batijs/compile", - "type": "static" - }, - { - "source": "@batijs/d1-sqlite", - "target": "npm:@types/node", - "type": "static" - }, - { - "source": "@batijs/d1-sqlite", - "target": "npm:@universal-middleware/core", - "type": "static" - }, - { - "source": "@batijs/d1-sqlite", - "target": "npm:vike", - "type": "static" - }, - { - "source": "@batijs/d1-sqlite", - "target": "@batijs/core", - "type": "static" - } - ], - "@batijs/shadcn-ui": [ - { - "source": "@batijs/shadcn-ui", - "target": "@batijs/compile", - "type": "static" - }, - { - "source": "@batijs/shadcn-ui", - "target": "npm:@radix-ui/react-icons", - "type": "static" - }, - { - "source": "@batijs/shadcn-ui", - "target": "npm:@types/node", - "type": "static" - }, - { - "source": "@batijs/shadcn-ui", - "target": "npm:autoprefixer", - "type": "static" - }, - { - "source": "@batijs/shadcn-ui", - "target": "npm:class-variance-authority", - "type": "static" - }, - { - "source": "@batijs/shadcn-ui", - "target": "npm:clsx", - "type": "static" - }, - { - "source": "@batijs/shadcn-ui", - "target": "npm:lucide-react", - "type": "static" - }, - { - "source": "@batijs/shadcn-ui", - "target": "npm:tailwind-merge", - "type": "static" - }, - { - "source": "@batijs/shadcn-ui", - "target": "npm:tailwindcss", - "type": "static" - }, - { - "source": "@batijs/shadcn-ui", - "target": "npm:tw-animate-css", - "type": "static" - }, - { - "source": "@batijs/shadcn-ui", - "target": "@batijs/core", - "type": "static" - } - ], - "@batijs/shared-db": [ - { - "source": "@batijs/shared-db", - "target": "@batijs/compile", - "type": "static" - }, - { - "source": "@batijs/shared-db", - "target": "npm:@types/node", - "type": "static" - }, - { - "source": "@batijs/shared-db", - "target": "npm:@universal-middleware/core", - "type": "static" - }, - { - "source": "@batijs/shared-db", - "target": "@batijs/core", - "type": "static" - } - ], - "@batijs/storybook": [ - { - "source": "@batijs/storybook", - "target": "@batijs/compile", - "type": "static" - }, - { - "source": "@batijs/storybook", - "target": "npm:@types/node", - "type": "static" - }, - { - "source": "@batijs/storybook", - "target": "@batijs/core", - "type": "static" - } - ], - "@batijs/compiled": [ - { - "source": "@batijs/compiled", - "target": "@batijs/compile", - "type": "static" - }, - { - "source": "@batijs/compiled", - "target": "npm:@types/node", - "type": "static" - }, - { - "source": "@batijs/compiled", - "target": "npm:vite", - "type": "static" - }, - { - "source": "@batijs/compiled", - "target": "npm:vite-plugin-compiled-react", - "type": "static" - }, - { - "source": "@batijs/compiled", - "target": "@batijs/core", - "type": "static" - }, - { - "source": "@batijs/compiled", - "target": "npm:@compiled/react", - "type": "static" - } - ], - "@batijs/prettier": [ - { - "source": "@batijs/prettier", - "target": "@batijs/compile", - "type": "static" - }, - { - "source": "@batijs/prettier", - "target": "npm:@types/node", - "type": "static" - }, - { - "source": "@batijs/prettier", - "target": "npm:prettier", - "type": "static" - }, - { - "source": "@batijs/prettier", - "target": "@batijs/core", - "type": "static" - } - ], - "@batijs/telefunc": [ - { - "source": "@batijs/telefunc", - "target": "@batijs/compile", - "type": "static" - }, - { - "source": "@batijs/telefunc", - "target": "npm:@types/node", - "type": "static" - }, - { - "source": "@batijs/telefunc", - "target": "npm:@universal-middleware/core", - "type": "static" - }, - { - "source": "@batijs/telefunc", - "target": "npm:telefunc", - "type": "static" - }, - { - "source": "@batijs/telefunc", - "target": "npm:vike", - "type": "static" - }, - { - "source": "@batijs/telefunc", - "target": "npm:vite", - "type": "static" - }, - { - "source": "@batijs/telefunc", - "target": "@batijs/core", - "type": "static" - } - ], - "@batijs/drizzle": [ - { - "source": "@batijs/drizzle", - "target": "@batijs/compile", - "type": "static" - }, - { - "source": "@batijs/drizzle", - "target": "npm:@types/better-sqlite3", - "type": "static" - }, - { - "source": "@batijs/drizzle", - "target": "npm:@types/node", - "type": "static" - }, - { - "source": "@batijs/drizzle", - "target": "npm:better-sqlite3", - "type": "static" - }, - { - "source": "@batijs/drizzle", - "target": "npm:dotenv", - "type": "static" - }, - { - "source": "@batijs/drizzle", - "target": "npm:drizzle-kit", - "type": "static" - }, - { - "source": "@batijs/drizzle", - "target": "npm:drizzle-orm", - "type": "static" - }, - { - "source": "@batijs/drizzle", - "target": "@batijs/core", - "type": "static" - } - ], - "@batijs/express": [ - { - "source": "@batijs/express", - "target": "npm:@auth/core", - "type": "static" - }, - { - "source": "@batijs/express", - "target": "@batijs/compile", - "type": "static" - }, - { - "source": "@batijs/express", - "target": "npm:@photonjs/express", - "type": "static" - }, - { - "source": "@batijs/express", - "target": "npm:@trpc/server", - "type": "static" - }, - { - "source": "@batijs/express", - "target": "npm:@types/express", - "type": "static" - }, - { - "source": "@batijs/express", - "target": "npm:@types/node", - "type": "static" - }, - { - "source": "@batijs/express", - "target": "npm:dotenv", - "type": "static" - }, - { - "source": "@batijs/express", - "target": "npm:express", - "type": "static" - }, - { - "source": "@batijs/express", - "target": "npm:telefunc", - "type": "static" - }, - { - "source": "@batijs/express", - "target": "npm:vike", - "type": "static" - }, - { - "source": "@batijs/express", - "target": "npm:vite", - "type": "static" - }, - { - "source": "@batijs/express", - "target": "@batijs/core", - "type": "static" - } - ], - "@batijs/fastify": [ - { - "source": "@batijs/fastify", - "target": "npm:@auth/core", - "type": "static" - }, - { - "source": "@batijs/fastify", - "target": "@batijs/compile", - "type": "static" - }, - { - "source": "@batijs/fastify", - "target": "npm:@photonjs/fastify", - "type": "static" - }, - { - "source": "@batijs/fastify", - "target": "npm:@trpc/server", - "type": "static" - }, - { - "source": "@batijs/fastify", - "target": "npm:@types/express", - "type": "static" - }, - { - "source": "@batijs/fastify", - "target": "npm:@types/node", - "type": "static" - }, - { - "source": "@batijs/fastify", - "target": "npm:dotenv", - "type": "static" - }, - { - "source": "@batijs/fastify", - "target": "npm:fastify", - "type": "static" - }, - { - "source": "@batijs/fastify", - "target": "npm:fastify-raw-body", - "type": "static" - }, - { - "source": "@batijs/fastify", - "target": "npm:telefunc", - "type": "static" - }, - { - "source": "@batijs/fastify", - "target": "npm:vike", - "type": "static" - }, - { - "source": "@batijs/fastify", - "target": "npm:vite", - "type": "static" - }, - { - "source": "@batijs/fastify", - "target": "@batijs/core", - "type": "static" - } - ], - "@batijs/mantine": [ - { - "source": "@batijs/mantine", - "target": "@batijs/compile", - "type": "static" - }, - { - "source": "@batijs/mantine", - "target": "npm:@mantine/core", - "type": "static" - }, - { - "source": "@batijs/mantine", - "target": "npm:@mantine/hooks", - "type": "static" - }, - { - "source": "@batijs/mantine", - "target": "npm:@types/node", - "type": "static" - }, - { - "source": "@batijs/mantine", - "target": "npm:@types/react", - "type": "static" - }, - { - "source": "@batijs/mantine", - "target": "npm:@types/react-dom", - "type": "static" - }, - { - "source": "@batijs/mantine", - "target": "npm:postcss", - "type": "static" - }, - { - "source": "@batijs/mantine", - "target": "npm:postcss-preset-mantine", - "type": "static" - }, - { - "source": "@batijs/mantine", - "target": "npm:postcss-simple-vars", - "type": "static" - }, - { - "source": "@batijs/mantine", - "target": "npm:react", - "type": "static" - }, - { - "source": "@batijs/mantine", - "target": "npm:react-dom", - "type": "static" - }, - { - "source": "@batijs/mantine", - "target": "npm:vike-react", - "type": "static" - }, - { - "source": "@batijs/mantine", - "target": "npm:vite", - "type": "static" - }, - { - "source": "@batijs/mantine", - "target": "npm:vite-plugin-compiled-react", - "type": "static" - }, - { - "source": "@batijs/mantine", - "target": "@batijs/core", - "type": "static" - } - ], - "@batijs/tests-utils": [ - { - "source": "@batijs/tests-utils", - "target": "npm:@types/node", - "type": "static" - }, - { - "source": "@batijs/tests-utils", - "target": "npm:@types/which", - "type": "static" - }, - { - "source": "@batijs/tests-utils", - "target": "npm:tsdown", - "type": "static" - }, - { - "source": "@batijs/tests-utils", - "target": "npm:tsx", - "type": "static" - }, - { - "source": "@batijs/tests-utils", - "target": "npm:typescript", - "type": "static" - }, - { - "source": "@batijs/tests-utils", - "target": "npm:get-port", - "type": "static" - }, - { - "source": "@batijs/tests-utils", - "target": "npm:node-fetch", - "type": "static" - }, - { - "source": "@batijs/tests-utils", - "target": "npm:vitest", - "type": "static" - }, - { - "source": "@batijs/tests-utils", - "target": "npm:which", - "type": "static" - }, - { - "source": "@batijs/tests-utils", - "target": "npm:zx", - "type": "static" - } - ], - "@batijs/ts-rest": [ - { - "source": "@batijs/ts-rest", - "target": "@batijs/compile", - "type": "static" - }, - { - "source": "@batijs/ts-rest", - "target": "npm:@ts-rest/core", - "type": "static" - }, - { - "source": "@batijs/ts-rest", - "target": "npm:@ts-rest/serverless", - "type": "static" - }, - { - "source": "@batijs/ts-rest", - "target": "npm:@types/node", - "type": "static" - }, - { - "source": "@batijs/ts-rest", - "target": "npm:@universal-middleware/core", - "type": "static" - }, - { - "source": "@batijs/ts-rest", - "target": "npm:zod", - "type": "static" - }, - { - "source": "@batijs/ts-rest", - "target": "@batijs/core", - "type": "static" - } - ], - "create-vike": [ - { - "source": "create-vike", - "target": "@batijs/cli", - "type": "static" - } - ], - "@batijs/authjs": [ - { - "source": "@batijs/authjs", - "target": "npm:@auth/core", - "type": "static" - }, - { - "source": "@batijs/authjs", - "target": "@batijs/compile", - "type": "static" - }, - { - "source": "@batijs/authjs", - "target": "npm:@types/node", - "type": "static" - }, - { - "source": "@batijs/authjs", - "target": "npm:@universal-middleware/core", - "type": "static" - }, - { - "source": "@batijs/authjs", - "target": "@batijs/core", - "type": "static" - } - ], - "@batijs/eslint": [ - { - "source": "@batijs/eslint", - "target": "@batijs/compile", - "type": "static" - }, - { - "source": "@batijs/eslint", - "target": "npm:@eslint/js", - "type": "static" - }, - { - "source": "@batijs/eslint", - "target": "npm:eslint", - "type": "static" - }, - { - "source": "@batijs/eslint", - "target": "npm:eslint-config-prettier", - "type": "static" - }, - { - "source": "@batijs/eslint", - "target": "npm:eslint-plugin-prettier", - "type": "static" - }, - { - "source": "@batijs/eslint", - "target": "npm:eslint-plugin-react", - "type": "static" - }, - { - "source": "@batijs/eslint", - "target": "npm:eslint-plugin-solid", - "type": "static" - }, - { - "source": "@batijs/eslint", - "target": "npm:eslint-plugin-vue", - "type": "static" - }, - { - "source": "@batijs/eslint", - "target": "npm:globals", - "type": "static" - }, - { - "source": "@batijs/eslint", - "target": "npm:typescript-eslint", - "type": "static" - }, - { - "source": "@batijs/eslint", - "target": "npm:vue-eslint-parser", - "type": "static" - }, - { - "source": "@batijs/eslint", - "target": "@batijs/core", - "type": "static" - } - ], - "@batijs/kysely": [ - { - "source": "@batijs/kysely", - "target": "@batijs/compile", - "type": "static" - }, - { - "source": "@batijs/kysely", - "target": "npm:@cloudflare/workers-types", - "type": "static" - }, - { - "source": "@batijs/kysely", - "target": "npm:@types/better-sqlite3", - "type": "static" - }, - { - "source": "@batijs/kysely", - "target": "npm:@types/node", - "type": "static" - }, - { - "source": "@batijs/kysely", - "target": "npm:better-sqlite3", - "type": "static" - }, - { - "source": "@batijs/kysely", - "target": "npm:dotenv", - "type": "static" - }, - { - "source": "@batijs/kysely", - "target": "npm:kysely", - "type": "static" - }, - { - "source": "@batijs/kysely", - "target": "npm:kysely-d1", - "type": "static" - }, - { - "source": "@batijs/kysely", - "target": "npm:tsx", - "type": "static" - }, - { - "source": "@batijs/kysely", - "target": "@batijs/core", - "type": "static" - } - ], - "@batijs/oxlint": [ - { - "source": "@batijs/oxlint", - "target": "@batijs/compile", - "type": "static" - }, - { - "source": "@batijs/oxlint", - "target": "npm:@types/node", - "type": "static" - }, - { - "source": "@batijs/oxlint", - "target": "npm:oxlint", - "type": "static" - }, - { - "source": "@batijs/oxlint", - "target": "npm:oxlint-tsgolint", - "type": "static" - }, - { - "source": "@batijs/oxlint", - "target": "@batijs/core", - "type": "static" - } - ], - "@batijs/photon": [ - { - "source": "@batijs/photon", - "target": "@batijs/compile", - "type": "static" - }, - { - "source": "@batijs/photon", - "target": "npm:@types/node", - "type": "static" - }, - { - "source": "@batijs/photon", - "target": "npm:vike-photon", - "type": "static" - }, - { - "source": "@batijs/photon", - "target": "@batijs/core", - "type": "static" - } - ], - "@batijs/prisma": [ - { - "source": "@batijs/prisma", - "target": "@batijs/compile", - "type": "static" - }, - { - "source": "@batijs/prisma", - "target": "npm:@prisma/client", - "type": "static" - }, - { - "source": "@batijs/prisma", - "target": "npm:@types/node", - "type": "static" - }, - { - "source": "@batijs/prisma", - "target": "npm:colorette", - "type": "static" - }, - { - "source": "@batijs/prisma", - "target": "npm:prisma", - "type": "static" - }, - { - "source": "@batijs/prisma", - "target": "@batijs/core", - "type": "static" - } - ], - "@batijs/sentry": [ - { - "source": "@batijs/sentry", - "target": "@batijs/compile", - "type": "static" - }, - { - "source": "@batijs/sentry", - "target": "npm:@sentry/vite-plugin", - "type": "static" - }, - { - "source": "@batijs/sentry", - "target": "npm:@types/node", - "type": "static" - }, - { - "source": "@batijs/sentry", - "target": "npm:vite", - "type": "static" - }, - { - "source": "@batijs/sentry", - "target": "@batijs/core", - "type": "static" - } - ], - "@batijs/shared": [ - { - "source": "@batijs/shared", - "target": "@batijs/compile", - "type": "static" - }, - { - "source": "@batijs/shared", - "target": "npm:@types/node", - "type": "static" - }, - { - "source": "@batijs/shared", - "target": "npm:vike", - "type": "static" - }, - { - "source": "@batijs/shared", - "target": "npm:vite", - "type": "static" - } - ], - "@batijs/sqlite": [ - { - "source": "@batijs/sqlite", - "target": "@batijs/compile", - "type": "static" - }, - { - "source": "@batijs/sqlite", - "target": "npm:@types/better-sqlite3", - "type": "static" - }, - { - "source": "@batijs/sqlite", - "target": "npm:@types/node", - "type": "static" - }, - { - "source": "@batijs/sqlite", - "target": "npm:better-sqlite3", - "type": "static" - }, - { - "source": "@batijs/sqlite", - "target": "npm:dotenv", - "type": "static" - }, - { - "source": "@batijs/sqlite", - "target": "npm:tsx", - "type": "static" - }, - { - "source": "@batijs/sqlite", - "target": "@batijs/core", - "type": "static" - } - ], - "@batijs/vercel": [ - { - "source": "@batijs/vercel", - "target": "@batijs/compile", - "type": "static" - }, - { - "source": "@batijs/vercel", - "target": "npm:@photonjs/vercel", - "type": "static" - }, - { - "source": "@batijs/vercel", - "target": "npm:@types/node", - "type": "static" - }, - { - "source": "@batijs/vercel", - "target": "npm:h3", - "type": "static" - }, - { - "source": "@batijs/vercel", - "target": "npm:vike", - "type": "static" - }, - { - "source": "@batijs/vercel", - "target": "npm:vite", - "type": "static" - }, - { - "source": "@batijs/vercel", - "target": "@batijs/core", - "type": "static" - } - ], - "@batijs/auth0": [ - { - "source": "@batijs/auth0", - "target": "@batijs/compile", - "type": "static" - }, - { - "source": "@batijs/auth0", - "target": "npm:@types/node", - "type": "static" - }, - { - "source": "@batijs/auth0", - "target": "@batijs/core", - "type": "static" - } - ], - "@batijs/biome": [ - { - "source": "@batijs/biome", - "target": "@batijs/compile", - "type": "static" - }, - { - "source": "@batijs/biome", - "target": "npm:@biomejs/biome", - "type": "static" - }, - { - "source": "@batijs/biome", - "target": "npm:@biomejs/wasm-nodejs", - "type": "static" - }, - { - "source": "@batijs/biome", - "target": "npm:@types/node", - "type": "static" - }, - { - "source": "@batijs/biome", - "target": "@batijs/core", - "type": "static" - } - ], - "@batijs/react": [ - { - "source": "@batijs/react", - "target": "npm:@babel/core", - "type": "static" - }, - { - "source": "@batijs/react", - "target": "npm:@babel/plugin-syntax-flow", - "type": "static" - }, - { - "source": "@batijs/react", - "target": "npm:@babel/plugin-transform-react-jsx", - "type": "static" - }, - { - "source": "@batijs/react", - "target": "@batijs/compile", - "type": "static" - }, - { - "source": "@batijs/react", - "target": "npm:@mantine/core", - "type": "static" - }, - { - "source": "@batijs/react", - "target": "npm:@types/node", - "type": "static" - }, - { - "source": "@batijs/react", - "target": "npm:@types/react", - "type": "static" - }, - { - "source": "@batijs/react", - "target": "npm:@types/react-dom", - "type": "static" - }, - { - "source": "@batijs/react", - "target": "npm:@vitejs/plugin-react", - "type": "static" - }, - { - "source": "@batijs/react", - "target": "npm:react", - "type": "static" - }, - { - "source": "@batijs/react", - "target": "npm:react-dom", - "type": "static" - }, - { - "source": "@batijs/react", - "target": "npm:tailwindcss", - "type": "static" - }, - { - "source": "@batijs/react", - "target": "npm:typescript", - "type": "static" - }, - { - "source": "@batijs/react", - "target": "npm:vike", - "type": "static" - }, - { - "source": "@batijs/react", - "target": "npm:vike-photon", - "type": "static" - }, - { - "source": "@batijs/react", - "target": "npm:vike-react", - "type": "static" - }, - { - "source": "@batijs/react", - "target": "npm:vite", - "type": "static" - }, - { - "source": "@batijs/react", - "target": "npm:vite-plugin-compiled-react", - "type": "static" - }, - { - "source": "@batijs/react", - "target": "@batijs/core", - "type": "static" - } - ], - "@batijs/solid": [ - { - "source": "@batijs/solid", - "target": "@batijs/compile", - "type": "static" - }, - { - "source": "@batijs/solid", - "target": "npm:@types/node", - "type": "static" - }, - { - "source": "@batijs/solid", - "target": "npm:solid-js", - "type": "static" - }, - { - "source": "@batijs/solid", - "target": "npm:tailwindcss", - "type": "static" - }, - { - "source": "@batijs/solid", - "target": "npm:typescript", - "type": "static" - }, - { - "source": "@batijs/solid", - "target": "npm:vike", - "type": "static" - }, - { - "source": "@batijs/solid", - "target": "npm:vike-photon", - "type": "static" - }, - { - "source": "@batijs/solid", - "target": "npm:vike-solid", - "type": "static" - }, - { - "source": "@batijs/solid", - "target": "npm:vite", - "type": "static" - }, - { - "source": "@batijs/solid", - "target": "npm:vite-plugin-solid", - "type": "static" - }, - { - "source": "@batijs/solid", - "target": "@batijs/core", - "type": "static" - } - ], - "@batijs/features": [ - { - "source": "@batijs/features", - "target": "npm:@types/node", - "type": "static" - }, - { - "source": "@batijs/features", - "target": "npm:tsdown", - "type": "static" - }, - { - "source": "@batijs/features", - "target": "npm:vitest", - "type": "static" - } - ], - "@batijs/hono": [ - { - "source": "@batijs/hono", - "target": "npm:@auth/core", - "type": "static" - }, - { - "source": "@batijs/hono", - "target": "@batijs/compile", - "type": "static" - }, - { - "source": "@batijs/hono", - "target": "npm:@photonjs/hono", - "type": "static" - }, - { - "source": "@batijs/hono", - "target": "npm:@trpc/server", - "type": "static" - }, - { - "source": "@batijs/hono", - "target": "npm:@types/aws-lambda", - "type": "static" - }, - { - "source": "@batijs/hono", - "target": "npm:@types/node", - "type": "static" - }, - { - "source": "@batijs/hono", - "target": "npm:dotenv", - "type": "static" - }, - { - "source": "@batijs/hono", - "target": "npm:hono", - "type": "static" - }, - { - "source": "@batijs/hono", - "target": "npm:telefunc", - "type": "static" - }, - { - "source": "@batijs/hono", - "target": "npm:vike", - "type": "static" - }, - { - "source": "@batijs/hono", - "target": "npm:vike-photon", - "type": "static" - }, - { - "source": "@batijs/hono", - "target": "npm:vite", - "type": "static" - }, - { - "source": "@batijs/hono", - "target": "@batijs/core", - "type": "static" - } - ], - "@batijs/pnpm": [ - { - "source": "@batijs/pnpm", - "target": "@batijs/compile", - "type": "static" - }, - { - "source": "@batijs/pnpm", - "target": "npm:@types/node", - "type": "static" - }, - { - "source": "@batijs/pnpm", - "target": "@batijs/core", - "type": "static" - } - ], - "@batijs/trpc": [ - { - "source": "@batijs/trpc", - "target": "@batijs/compile", - "type": "static" - }, - { - "source": "@batijs/trpc", - "target": "npm:@trpc/client", - "type": "static" - }, - { - "source": "@batijs/trpc", - "target": "npm:@trpc/server", - "type": "static" - }, - { - "source": "@batijs/trpc", - "target": "npm:@types/node", - "type": "static" - }, - { - "source": "@batijs/trpc", - "target": "npm:@universal-middleware/core", - "type": "static" - }, - { - "source": "@batijs/trpc", - "target": "npm:vite", - "type": "static" - }, - { - "source": "@batijs/trpc", - "target": "@batijs/core", - "type": "static" - } - ], - "@batijs/aws": [ - { - "source": "@batijs/aws", - "target": "@batijs/compile", - "type": "static" - }, - { - "source": "@batijs/aws", - "target": "npm:@types/node", - "type": "static" - }, - { - "source": "@batijs/aws", - "target": "npm:@types/which", - "type": "static" - }, - { - "source": "@batijs/aws", - "target": "npm:aws-cdk", - "type": "static" - }, - { - "source": "@batijs/aws", - "target": "npm:aws-cdk-lib", - "type": "static" - }, - { - "source": "@batijs/aws", - "target": "npm:cdk", - "type": "static" - }, - { - "source": "@batijs/aws", - "target": "npm:constructs", - "type": "static" - }, - { - "source": "@batijs/aws", - "target": "npm:esbuild", - "type": "static" - }, - { - "source": "@batijs/aws", - "target": "npm:npm-run-all2", - "type": "static" - }, - { - "source": "@batijs/aws", - "target": "npm:source-map-support", - "type": "static" - }, - { - "source": "@batijs/aws", - "target": "npm:tsx", - "type": "static" - }, - { - "source": "@batijs/aws", - "target": "npm:typescript", - "type": "static" - }, - { - "source": "@batijs/aws", - "target": "npm:vitest", - "type": "static" - }, - { - "source": "@batijs/aws", - "target": "npm:which", - "type": "static" - }, - { - "source": "@batijs/aws", - "target": "@batijs/core", - "type": "static" - } - ], - "@batijs/compile": [ - { - "source": "@batijs/compile", - "target": "npm:@types/node", - "type": "static" - }, - { - "source": "@batijs/compile", - "target": "npm:typescript", - "type": "static" - }, - { - "source": "@batijs/compile", - "target": "npm:unplugin-purge-polyfills", - "type": "static" - }, - { - "source": "@batijs/compile", - "target": "npm:globby", - "type": "static" - }, - { - "source": "@batijs/compile", - "target": "npm:tsdown", - "type": "static" - } - ], - "@batijs/vue": [ - { - "source": "@batijs/vue", - "target": "@batijs/compile", - "type": "static" - }, - { - "source": "@batijs/vue", - "target": "@batijs/tailwindcss", - "type": "static" - }, - { - "source": "@batijs/vue", - "target": "npm:@types/node", - "type": "static" - }, - { - "source": "@batijs/vue", - "target": "npm:@vitejs/plugin-vue", - "type": "static" - }, - { - "source": "@batijs/vue", - "target": "npm:tailwindcss", - "type": "static" - }, - { - "source": "@batijs/vue", - "target": "npm:typescript", - "type": "static" - }, - { - "source": "@batijs/vue", - "target": "npm:vike", - "type": "static" - }, - { - "source": "@batijs/vue", - "target": "npm:vike-photon", - "type": "static" - }, - { - "source": "@batijs/vue", - "target": "npm:vike-vue", - "type": "static" - }, - { - "source": "@batijs/vue", - "target": "npm:vite", - "type": "static" - }, - { - "source": "@batijs/vue", - "target": "npm:vue", - "type": "static" - }, - { - "source": "@batijs/vue", - "target": "npm:vue-gtag", - "type": "static" - }, - { - "source": "@batijs/vue", - "target": "@batijs/core", - "type": "static" - } - ], - "@batijs/d1": [ - { - "source": "@batijs/d1", - "target": "@batijs/compile", - "type": "static" - }, - { - "source": "@batijs/d1", - "target": "npm:@types/node", - "type": "static" - }, - { - "source": "@batijs/d1", - "target": "npm:@universal-middleware/core", - "type": "static" - }, - { - "source": "@batijs/d1", - "target": "npm:vike", - "type": "static" - }, - { - "source": "@batijs/d1", - "target": "npm:wrangler", - "type": "static" - }, - { - "source": "@batijs/d1", - "target": "@batijs/core", - "type": "static" - } - ], - "@batijs/h3": [ - { - "source": "@batijs/h3", - "target": "npm:@auth/core", - "type": "static" - }, - { - "source": "@batijs/h3", - "target": "@batijs/compile", - "type": "static" - }, - { - "source": "@batijs/h3", - "target": "npm:@photonjs/h3", - "type": "static" - }, - { - "source": "@batijs/h3", - "target": "npm:@trpc/server", - "type": "static" - }, - { - "source": "@batijs/h3", - "target": "npm:@types/express", - "type": "static" - }, - { - "source": "@batijs/h3", - "target": "npm:@types/node", - "type": "static" - }, - { - "source": "@batijs/h3", - "target": "npm:@universal-middleware/core", - "type": "static" - }, - { - "source": "@batijs/h3", - "target": "npm:dotenv", - "type": "static" - }, - { - "source": "@batijs/h3", - "target": "npm:h3", - "type": "static" - }, - { - "source": "@batijs/h3", - "target": "npm:telefunc", - "type": "static" - }, - { - "source": "@batijs/h3", - "target": "npm:vike", - "type": "static" - }, - { - "source": "@batijs/h3", - "target": "npm:vike-photon", - "type": "static" - }, - { - "source": "@batijs/h3", - "target": "npm:vite", - "type": "static" - }, - { - "source": "@batijs/h3", - "target": "@batijs/core", - "type": "static" - } - ], - "batijs": [ - { - "source": "batijs", - "target": "@batijs/cli", - "type": "static" - } - ], - "@batijs/build": [ - { - "source": "@batijs/build", - "target": "@batijs/core", - "type": "static" - }, - { - "source": "@batijs/build", - "target": "@batijs/compile", - "type": "static" - }, - { - "source": "@batijs/build", - "target": "@batijs/features", - "type": "static" - }, - { - "source": "@batijs/build", - "target": "npm:@types/node", - "type": "static" - }, - { - "source": "@batijs/build", - "target": "npm:tsdown", - "type": "static" - } - ], - "@batijs/tests": [ - { - "source": "@batijs/tests", - "target": "@batijs/core", - "type": "static" - }, - { - "source": "@batijs/tests", - "target": "@batijs/features", - "type": "static" - }, - { - "source": "@batijs/tests", - "target": "@batijs/tests-utils", - "type": "static" - }, - { - "source": "@batijs/tests", - "target": "npm:@types/node", - "type": "static" - }, - { - "source": "@batijs/tests", - "target": "npm:@types/which", - "type": "static" - }, - { - "source": "@batijs/tests", - "target": "npm:dotenv", - "type": "static" - }, - { - "source": "@batijs/tests", - "target": "npm:fast-glob", - "type": "static" - }, - { - "source": "@batijs/tests", - "target": "npm:knip", - "type": "static" - }, - { - "source": "@batijs/tests", - "target": "npm:mri", - "type": "static" - }, - { - "source": "@batijs/tests", - "target": "npm:p-limit", - "type": "static" - }, - { - "source": "@batijs/tests", - "target": "npm:tsdown", - "type": "static" - }, - { - "source": "@batijs/tests", - "target": "npm:tsx", - "type": "static" - }, - { - "source": "@batijs/tests", - "target": "npm:turbo", - "type": "static" - }, - { - "source": "@batijs/tests", - "target": "npm:typescript", - "type": "static" - }, - { - "source": "@batijs/tests", - "target": "npm:vitest", - "type": "static" - }, - { - "source": "@batijs/tests", - "target": "npm:yaml", - "type": "static" - } - ], - "@batijs/core": [ - { - "source": "@batijs/core", - "target": "@batijs/features", - "type": "static" - }, - { - "source": "@batijs/core", - "target": "npm:@types/eslint", - "type": "static" - }, - { - "source": "@batijs/core", - "target": "npm:@types/estree", - "type": "static" - }, - { - "source": "@batijs/core", - "target": "npm:@types/node", - "type": "static" - }, - { - "source": "@batijs/core", - "target": "npm:@types/which", - "type": "static" - }, - { - "source": "@batijs/core", - "target": "npm:@typescript-eslint/parser", - "type": "static" - }, - { - "source": "@batijs/core", - "target": "npm:@typescript-eslint/utils", - "type": "static" - }, - { - "source": "@batijs/core", - "target": "npm:attributes-parser", - "type": "static" - }, - { - "source": "@batijs/core", - "target": "npm:colorette", - "type": "static" - }, - { - "source": "@batijs/core", - "target": "npm:esbuild", - "type": "static" - }, - { - "source": "@batijs/core", - "target": "npm:eslint", - "type": "static" - }, - { - "source": "@batijs/core", - "target": "npm:eslint-plugin-solid", - "type": "static" - }, - { - "source": "@batijs/core", - "target": "npm:eslint-rule-composer", - "type": "static" - }, - { - "source": "@batijs/core", - "target": "npm:espree", - "type": "static" - }, - { - "source": "@batijs/core", - "target": "npm:magicast", - "type": "static" - }, - { - "source": "@batijs/core", - "target": "npm:mdast-builder", - "type": "static" - }, - { - "source": "@batijs/core", - "target": "npm:mdast-util-from-markdown", - "type": "static" - }, - { - "source": "@batijs/core", - "target": "npm:mdast-util-to-markdown", - "type": "static" - }, - { - "source": "@batijs/core", - "target": "npm:mdast-util-to-string", - "type": "static" - }, - { - "source": "@batijs/core", - "target": "npm:mdast-util-toc", - "type": "static" - }, - { - "source": "@batijs/core", - "target": "npm:prettier", - "type": "static" - }, - { - "source": "@batijs/core", - "target": "npm:squirrelly", - "type": "static" - }, - { - "source": "@batijs/core", - "target": "npm:tsdown", - "type": "static" - }, - { - "source": "@batijs/core", - "target": "npm:tsx", - "type": "static" - }, - { - "source": "@batijs/core", - "target": "npm:typescript", - "type": "static" - }, - { - "source": "@batijs/core", - "target": "npm:unplugin-purge-polyfills", - "type": "static" - }, - { - "source": "@batijs/core", - "target": "npm:vitest", - "type": "static" - }, - { - "source": "@batijs/core", - "target": "npm:vue-eslint-parser", - "type": "static" - }, - { - "source": "@batijs/core", - "target": "npm:which", - "type": "static" - }, - { - "source": "@batijs/core", - "target": "npm:yaml", - "type": "static" - } - ], - "@batijs/cli": [ - { - "source": "@batijs/cli", - "target": "@batijs/auth0", - "type": "implicit" - }, - { - "source": "@batijs/cli", - "target": "@batijs/authjs", - "type": "implicit" - }, - { - "source": "@batijs/cli", - "target": "@batijs/aws", - "type": "implicit" - }, - { - "source": "@batijs/cli", - "target": "@batijs/biome", - "type": "implicit" - }, - { - "source": "@batijs/cli", - "target": "@batijs/cloudflare", - "type": "implicit" - }, - { - "source": "@batijs/cli", - "target": "@batijs/compiled", - "type": "implicit" - }, - { - "source": "@batijs/cli", - "target": "@batijs/d1", - "type": "implicit" - }, - { - "source": "@batijs/cli", - "target": "@batijs/d1-kysely", - "type": "implicit" - }, - { - "source": "@batijs/cli", - "target": "@batijs/d1-sqlite", - "type": "implicit" - }, - { - "source": "@batijs/cli", - "target": "@batijs/drizzle", - "type": "implicit" - }, - { - "source": "@batijs/cli", - "target": "@batijs/eslint", - "type": "implicit" - }, - { - "source": "@batijs/cli", - "target": "@batijs/express", - "type": "implicit" - }, - { - "source": "@batijs/cli", - "target": "@batijs/fastify", - "type": "implicit" - }, - { - "source": "@batijs/cli", - "target": "@batijs/google-analytics", - "type": "implicit" - }, - { - "source": "@batijs/cli", - "target": "@batijs/h3", - "type": "implicit" - }, - { - "source": "@batijs/cli", - "target": "@batijs/hono", - "type": "implicit" - }, - { - "source": "@batijs/cli", - "target": "@batijs/kysely", - "type": "implicit" - }, - { - "source": "@batijs/cli", - "target": "@batijs/mantine", - "type": "implicit" - }, - { - "source": "@batijs/cli", - "target": "@batijs/oxlint", - "type": "implicit" - }, - { - "source": "@batijs/cli", - "target": "@batijs/photon", - "type": "implicit" - }, - { - "source": "@batijs/cli", - "target": "@batijs/plausible.io", - "type": "implicit" - }, - { - "source": "@batijs/cli", - "target": "@batijs/pnpm", - "type": "implicit" - }, - { - "source": "@batijs/cli", - "target": "@batijs/prettier", - "type": "implicit" - }, - { - "source": "@batijs/cli", - "target": "@batijs/prisma", - "type": "implicit" - }, - { - "source": "@batijs/cli", - "target": "@batijs/react", - "type": "implicit" - }, - { - "source": "@batijs/cli", - "target": "@batijs/react-sentry", - "type": "implicit" - }, - { - "source": "@batijs/cli", - "target": "@batijs/sentry", - "type": "implicit" - }, - { - "source": "@batijs/cli", - "target": "@batijs/shadcn-ui", - "type": "implicit" - }, - { - "source": "@batijs/cli", - "target": "@batijs/shared", - "type": "implicit" - }, - { - "source": "@batijs/cli", - "target": "@batijs/shared-db", - "type": "implicit" - }, - { - "source": "@batijs/cli", - "target": "@batijs/shared-server", - "type": "implicit" - }, - { - "source": "@batijs/cli", - "target": "@batijs/shared-todo", - "type": "implicit" - }, - { - "source": "@batijs/cli", - "target": "@batijs/solid", - "type": "implicit" - }, - { - "source": "@batijs/cli", - "target": "@batijs/solid-sentry", - "type": "implicit" - }, - { - "source": "@batijs/cli", - "target": "@batijs/sqlite", - "type": "implicit" - }, - { - "source": "@batijs/cli", - "target": "@batijs/storybook", - "type": "implicit" - }, - { - "source": "@batijs/cli", - "target": "@batijs/tailwindcss", - "type": "implicit" - }, - { - "source": "@batijs/cli", - "target": "@batijs/telefunc", - "type": "implicit" - }, - { - "source": "@batijs/cli", - "target": "@batijs/trpc", - "type": "implicit" - }, - { - "source": "@batijs/cli", - "target": "@batijs/ts-rest", - "type": "implicit" - }, - { - "source": "@batijs/cli", - "target": "@batijs/vercel", - "type": "implicit" - }, - { - "source": "@batijs/cli", - "target": "@batijs/vue", - "type": "implicit" - }, - { - "source": "@batijs/cli", - "target": "@batijs/vue-sentry", - "type": "implicit" - }, - { - "source": "@batijs/cli", - "target": "@batijs/build", - "type": "static" - }, - { - "source": "@batijs/cli", - "target": "@batijs/compile", - "type": "static" - }, - { - "source": "@batijs/cli", - "target": "npm:@inquirer/prompts", - "type": "static" - }, - { - "source": "@batijs/cli", - "target": "npm:@types/node", - "type": "static" - }, - { - "source": "@batijs/cli", - "target": "npm:@types/which", - "type": "static" - }, - { - "source": "@batijs/cli", - "target": "npm:citty", - "type": "static" - }, - { - "source": "@batijs/cli", - "target": "npm:colorette", - "type": "static" - }, - { - "source": "@batijs/cli", - "target": "npm:esbuild", - "type": "static" - }, - { - "source": "@batijs/cli", - "target": "npm:execa", - "type": "static" - }, - { - "source": "@batijs/cli", - "target": "npm:scule", - "type": "static" - }, - { - "source": "@batijs/cli", - "target": "npm:tsdown", - "type": "static" - }, - { - "source": "@batijs/cli", - "target": "npm:typescript", - "type": "static" - }, - { - "source": "@batijs/cli", - "target": "npm:unplugin-purge-polyfills", - "type": "static" - }, - { - "source": "@batijs/cli", - "target": "npm:vite", - "type": "static" - }, - { - "source": "@batijs/cli", - "target": "@batijs/core", - "type": "static" - }, - { - "source": "@batijs/cli", - "target": "@batijs/features", - "type": "static" - } - ], - "@batijs/elements": [ - { - "source": "@batijs/elements", - "target": "npm:@babel/core", - "type": "static" - }, - { - "source": "@batijs/elements", - "target": "@batijs/features", - "type": "static" - }, - { - "source": "@batijs/elements", - "target": "npm:@floating-ui/dom", - "type": "static" - }, - { - "source": "@batijs/elements", - "target": "npm:@floating-ui/utils", - "type": "static" - }, - { - "source": "@batijs/elements", - "target": "npm:@solid-primitives/scheduled", - "type": "static" - }, - { - "source": "@batijs/elements", - "target": "npm:@stackblitz/sdk", - "type": "static" - }, - { - "source": "@batijs/elements", - "target": "npm:@tailwindcss/vite", - "type": "static" - }, - { - "source": "@batijs/elements", - "target": "npm:babel-preset-solid", - "type": "static" - }, - { - "source": "@batijs/elements", - "target": "npm:bumpp", - "type": "static" - }, - { - "source": "@batijs/elements", - "target": "npm:clsx", - "type": "static" - }, - { - "source": "@batijs/elements", - "target": "npm:daisyui", - "type": "static" - }, - { - "source": "@batijs/elements", - "target": "npm:esbuild", - "type": "static" - }, - { - "source": "@batijs/elements", - "target": "npm:http-server", - "type": "static" - }, - { - "source": "@batijs/elements", - "target": "npm:solid-element", - "type": "static" - }, - { - "source": "@batijs/elements", - "target": "npm:solid-js", - "type": "static" - }, - { - "source": "@batijs/elements", - "target": "npm:solid-motionone", - "type": "static" - }, - { - "source": "@batijs/elements", - "target": "npm:tailwindcss", - "type": "static" - }, - { - "source": "@batijs/elements", - "target": "npm:tslib", - "type": "static" - }, - { - "source": "@batijs/elements", - "target": "npm:typescript", - "type": "static" - }, - { - "source": "@batijs/elements", - "target": "npm:vike", - "type": "static" - }, - { - "source": "@batijs/elements", - "target": "npm:vike-solid", - "type": "static" - }, - { - "source": "@batijs/elements", - "target": "npm:vite", - "type": "static" - }, - { - "source": "@batijs/elements", - "target": "npm:vite-plugin-solid", - "type": "static" - } - ], - "npm:@auth/core": [ - { - "source": "npm:@auth/core", - "target": "npm:@panva/hkdf", - "type": "static" - }, - { - "source": "npm:@auth/core", - "target": "npm:jose", - "type": "static" - }, - { - "source": "npm:@auth/core", - "target": "npm:oauth4webapi", - "type": "static" - }, - { - "source": "npm:@auth/core", - "target": "npm:preact", - "type": "static" - }, - { - "source": "npm:@auth/core", - "target": "npm:preact-render-to-string", - "type": "static" - } - ], - "npm:@babel/code-frame": [ - { - "source": "npm:@babel/code-frame", - "target": "npm:@babel/helper-validator-identifier", - "type": "static" - }, - { - "source": "npm:@babel/code-frame", - "target": "npm:js-tokens", - "type": "static" - }, - { - "source": "npm:@babel/code-frame", - "target": "npm:picocolors", - "type": "static" - } - ], - "npm:@babel/core": [ - { - "source": "npm:@babel/core", - "target": "npm:@babel/code-frame", - "type": "static" - }, - { - "source": "npm:@babel/core", - "target": "npm:@babel/generator", - "type": "static" - }, - { - "source": "npm:@babel/core", - "target": "npm:@babel/helper-compilation-targets", - "type": "static" - }, - { - "source": "npm:@babel/core", - "target": "npm:@babel/helper-module-transforms", - "type": "static" - }, - { - "source": "npm:@babel/core", - "target": "npm:@babel/helpers", - "type": "static" - }, - { - "source": "npm:@babel/core", - "target": "npm:@babel/parser", - "type": "static" - }, - { - "source": "npm:@babel/core", - "target": "npm:@babel/template", - "type": "static" - }, - { - "source": "npm:@babel/core", - "target": "npm:@babel/traverse", - "type": "static" - }, - { - "source": "npm:@babel/core", - "target": "npm:@babel/types", - "type": "static" - }, - { - "source": "npm:@babel/core", - "target": "npm:@jridgewell/remapping", - "type": "static" - }, - { - "source": "npm:@babel/core", - "target": "npm:convert-source-map", - "type": "static" - }, - { - "source": "npm:@babel/core", - "target": "npm:debug", - "type": "static" - }, - { - "source": "npm:@babel/core", - "target": "npm:gensync", - "type": "static" - }, - { - "source": "npm:@babel/core", - "target": "npm:json5", - "type": "static" - }, - { - "source": "npm:@babel/core", - "target": "npm:semver", - "type": "static" - } - ], - "npm:@babel/generator": [ - { - "source": "npm:@babel/generator", - "target": "npm:@babel/parser", - "type": "static" - }, - { - "source": "npm:@babel/generator", - "target": "npm:@babel/types", - "type": "static" - }, - { - "source": "npm:@babel/generator", - "target": "npm:@jridgewell/gen-mapping", - "type": "static" - }, - { - "source": "npm:@babel/generator", - "target": "npm:@jridgewell/trace-mapping", - "type": "static" - }, - { - "source": "npm:@babel/generator", - "target": "npm:jsesc", - "type": "static" - } - ], - "npm:@babel/generator@8.0.0-rc.2": [ - { - "source": "npm:@babel/generator@8.0.0-rc.2", - "target": "npm:@babel/parser@8.0.0-rc.2", - "type": "static" - }, - { - "source": "npm:@babel/generator@8.0.0-rc.2", - "target": "npm:@babel/types@8.0.0-rc.2", - "type": "static" - }, - { - "source": "npm:@babel/generator@8.0.0-rc.2", - "target": "npm:@jridgewell/gen-mapping", - "type": "static" - }, - { - "source": "npm:@babel/generator@8.0.0-rc.2", - "target": "npm:@jridgewell/trace-mapping", - "type": "static" - }, - { - "source": "npm:@babel/generator@8.0.0-rc.2", - "target": "npm:@types/jsesc", - "type": "static" - }, - { - "source": "npm:@babel/generator@8.0.0-rc.2", - "target": "npm:jsesc", - "type": "static" - } - ], - "npm:@babel/helper-annotate-as-pure": [ - { - "source": "npm:@babel/helper-annotate-as-pure", - "target": "npm:@babel/types", - "type": "static" - } - ], - "npm:@babel/helper-compilation-targets": [ - { - "source": "npm:@babel/helper-compilation-targets", - "target": "npm:@babel/compat-data", - "type": "static" - }, - { - "source": "npm:@babel/helper-compilation-targets", - "target": "npm:@babel/helper-validator-option", - "type": "static" - }, - { - "source": "npm:@babel/helper-compilation-targets", - "target": "npm:browserslist", - "type": "static" - }, - { - "source": "npm:@babel/helper-compilation-targets", - "target": "npm:lru-cache", - "type": "static" - }, - { - "source": "npm:@babel/helper-compilation-targets", - "target": "npm:semver", - "type": "static" - } - ], - "npm:@babel/helper-module-imports@7.18.6": [ - { - "source": "npm:@babel/helper-module-imports@7.18.6", - "target": "npm:@babel/types", - "type": "static" - } - ], - "npm:@babel/helper-module-imports": [ - { - "source": "npm:@babel/helper-module-imports", - "target": "npm:@babel/traverse", - "type": "static" - }, - { - "source": "npm:@babel/helper-module-imports", - "target": "npm:@babel/types", - "type": "static" - } - ], - "npm:@babel/helper-module-transforms": [ - { - "source": "npm:@babel/helper-module-transforms", - "target": "npm:@babel/core", - "type": "static" - }, - { - "source": "npm:@babel/helper-module-transforms", - "target": "npm:@babel/helper-module-imports", - "type": "static" - }, - { - "source": "npm:@babel/helper-module-transforms", - "target": "npm:@babel/helper-validator-identifier", - "type": "static" - }, - { - "source": "npm:@babel/helper-module-transforms", - "target": "npm:@babel/traverse", - "type": "static" - } - ], - "npm:@babel/helpers": [ - { - "source": "npm:@babel/helpers", - "target": "npm:@babel/template", - "type": "static" - }, - { - "source": "npm:@babel/helpers", - "target": "npm:@babel/types", - "type": "static" - } - ], - "npm:@babel/parser": [ - { - "source": "npm:@babel/parser", - "target": "npm:@babel/types", - "type": "static" - } - ], - "npm:@babel/parser@8.0.0-rc.2": [ - { - "source": "npm:@babel/parser@8.0.0-rc.2", - "target": "npm:@babel/types@8.0.0-rc.2", - "type": "static" - } - ], - "npm:@babel/plugin-syntax-flow": [ - { - "source": "npm:@babel/plugin-syntax-flow", - "target": "npm:@babel/core", - "type": "static" - }, - { - "source": "npm:@babel/plugin-syntax-flow", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - } - ], - "npm:@babel/plugin-syntax-jsx": [ - { - "source": "npm:@babel/plugin-syntax-jsx", - "target": "npm:@babel/core", - "type": "static" - }, - { - "source": "npm:@babel/plugin-syntax-jsx", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - } - ], - "npm:@babel/plugin-transform-flow-strip-types": [ - { - "source": "npm:@babel/plugin-transform-flow-strip-types", - "target": "npm:@babel/core", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-flow-strip-types", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-flow-strip-types", - "target": "npm:@babel/plugin-syntax-flow", - "type": "static" - } - ], - "npm:@babel/plugin-transform-react-jsx": [ - { - "source": "npm:@babel/plugin-transform-react-jsx", - "target": "npm:@babel/core", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-react-jsx", - "target": "npm:@babel/helper-annotate-as-pure", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-react-jsx", - "target": "npm:@babel/helper-module-imports", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-react-jsx", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-react-jsx", - "target": "npm:@babel/plugin-syntax-jsx", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-react-jsx", - "target": "npm:@babel/types", - "type": "static" - } - ], - "npm:@babel/template": [ - { - "source": "npm:@babel/template", - "target": "npm:@babel/code-frame", - "type": "static" - }, - { - "source": "npm:@babel/template", - "target": "npm:@babel/parser", - "type": "static" - }, - { - "source": "npm:@babel/template", - "target": "npm:@babel/types", - "type": "static" - } - ], - "npm:@babel/traverse": [ - { - "source": "npm:@babel/traverse", - "target": "npm:@babel/code-frame", - "type": "static" - }, - { - "source": "npm:@babel/traverse", - "target": "npm:@babel/generator", - "type": "static" - }, - { - "source": "npm:@babel/traverse", - "target": "npm:@babel/helper-globals", - "type": "static" - }, - { - "source": "npm:@babel/traverse", - "target": "npm:@babel/parser", - "type": "static" - }, - { - "source": "npm:@babel/traverse", - "target": "npm:@babel/template", - "type": "static" - }, - { - "source": "npm:@babel/traverse", - "target": "npm:@babel/types", - "type": "static" - }, - { - "source": "npm:@babel/traverse", - "target": "npm:debug", - "type": "static" - } - ], - "npm:@babel/types": [ - { - "source": "npm:@babel/types", - "target": "npm:@babel/helper-string-parser", - "type": "static" - }, - { - "source": "npm:@babel/types", - "target": "npm:@babel/helper-validator-identifier", - "type": "static" - } - ], - "npm:@babel/types@8.0.0-rc.2": [ - { - "source": "npm:@babel/types@8.0.0-rc.2", - "target": "npm:@babel/helper-string-parser@8.0.0-rc.3", - "type": "static" - }, - { - "source": "npm:@babel/types@8.0.0-rc.2", - "target": "npm:@babel/helper-validator-identifier@8.0.0-rc.2", - "type": "static" - } - ], - "npm:@batijs/compile": [ - { - "source": "npm:@batijs/compile", - "target": "npm:globby", - "type": "static" - }, - { - "source": "npm:@batijs/compile", - "target": "npm:tsdown", - "type": "static" - } - ], - "npm:@biomejs/biome": [ - { - "source": "npm:@biomejs/biome", - "target": "npm:@biomejs/cli-darwin-arm64", - "type": "static" - }, - { - "source": "npm:@biomejs/biome", - "target": "npm:@biomejs/cli-darwin-x64", - "type": "static" - }, - { - "source": "npm:@biomejs/biome", - "target": "npm:@biomejs/cli-linux-arm64", - "type": "static" - }, - { - "source": "npm:@biomejs/biome", - "target": "npm:@biomejs/cli-linux-arm64-musl", - "type": "static" - }, - { - "source": "npm:@biomejs/biome", - "target": "npm:@biomejs/cli-linux-x64", - "type": "static" - }, - { - "source": "npm:@biomejs/biome", - "target": "npm:@biomejs/cli-linux-x64-musl", - "type": "static" - }, - { - "source": "npm:@biomejs/biome", - "target": "npm:@biomejs/cli-win32-arm64", - "type": "static" - }, - { - "source": "npm:@biomejs/biome", - "target": "npm:@biomejs/cli-win32-x64", - "type": "static" - } - ], - "npm:@brillout/vite-plugin-server-entry": [ - { - "source": "npm:@brillout/vite-plugin-server-entry", - "target": "npm:@brillout/import", - "type": "static" - }, - { - "source": "npm:@brillout/vite-plugin-server-entry", - "target": "npm:@brillout/picocolors", - "type": "static" - } - ], - "npm:@browserless/devices": [ - { - "source": "npm:@browserless/devices", - "target": "npm:didyoumean3", - "type": "static" - }, - { - "source": "npm:@browserless/devices", - "target": "npm:memoize-one", - "type": "static" - }, - { - "source": "npm:@browserless/devices", - "target": "npm:require-one-of", - "type": "static" - } - ], - "npm:@browserless/errors": [ - { - "source": "npm:@browserless/errors", - "target": "npm:debug-logfmt", - "type": "static" - }, - { - "source": "npm:@browserless/errors", - "target": "npm:ensure-error", - "type": "static" - }, - { - "source": "npm:@browserless/errors", - "target": "npm:serialize-error", - "type": "static" - }, - { - "source": "npm:@browserless/errors", - "target": "npm:whoops", - "type": "static" - } - ], - "npm:@browserless/goto": [ - { - "source": "npm:@browserless/goto", - "target": "npm:@browserless/devices", - "type": "static" - }, - { - "source": "npm:@browserless/goto", - "target": "npm:@duckduckgo/autoconsent", - "type": "static" - }, - { - "source": "npm:@browserless/goto", - "target": "npm:@ghostery/adblocker-puppeteer", - "type": "static" - }, - { - "source": "npm:@browserless/goto", - "target": "npm:debug-logfmt", - "type": "static" - }, - { - "source": "npm:@browserless/goto", - "target": "npm:got", - "type": "static" - }, - { - "source": "npm:@browserless/goto", - "target": "npm:is-url-http", - "type": "static" - }, - { - "source": "npm:@browserless/goto", - "target": "npm:p-reflect", - "type": "static" - }, - { - "source": "npm:@browserless/goto", - "target": "npm:p-timeout", - "type": "static" - }, - { - "source": "npm:@browserless/goto", - "target": "npm:shallow-equal", - "type": "static" - }, - { - "source": "npm:@browserless/goto", - "target": "npm:tough-cookie", - "type": "static" - } - ], - "npm:@browserless/pdf": [ - { - "source": "npm:@browserless/pdf", - "target": "npm:@browserless/goto", - "type": "static" - }, - { - "source": "npm:@browserless/pdf", - "target": "npm:@browserless/screenshot", - "type": "static" - }, - { - "source": "npm:@browserless/pdf", - "target": "npm:@kikobeats/time-span", - "type": "static" - }, - { - "source": "npm:@browserless/pdf", - "target": "npm:debug-logfmt", - "type": "static" - }, - { - "source": "npm:@browserless/pdf", - "target": "npm:pretty-ms@7.0.1", - "type": "static" - } - ], - "npm:@browserless/screenshot": [ - { - "source": "npm:@browserless/screenshot", - "target": "npm:@browserless/goto", - "type": "static" - }, - { - "source": "npm:@browserless/screenshot", - "target": "npm:@kikobeats/content-type", - "type": "static" - }, - { - "source": "npm:@browserless/screenshot", - "target": "npm:@kikobeats/time-span", - "type": "static" - }, - { - "source": "npm:@browserless/screenshot", - "target": "npm:automad-prism-themes", - "type": "static" - }, - { - "source": "npm:@browserless/screenshot", - "target": "npm:debug-logfmt", - "type": "static" - }, - { - "source": "npm:@browserless/screenshot", - "target": "npm:got", - "type": "static" - }, - { - "source": "npm:@browserless/screenshot", - "target": "npm:is-html-content", - "type": "static" - }, - { - "source": "npm:@browserless/screenshot", - "target": "npm:is-url-http", - "type": "static" - }, - { - "source": "npm:@browserless/screenshot", - "target": "npm:lodash", - "type": "static" - }, - { - "source": "npm:@browserless/screenshot", - "target": "npm:map-values-deep", - "type": "static" - }, - { - "source": "npm:@browserless/screenshot", - "target": "npm:mime@3.0.0", - "type": "static" - }, - { - "source": "npm:@browserless/screenshot", - "target": "npm:null-prototype-object", - "type": "static" - }, - { - "source": "npm:@browserless/screenshot", - "target": "npm:p-reflect", - "type": "static" - }, - { - "source": "npm:@browserless/screenshot", - "target": "npm:pretty-ms@7.0.1", - "type": "static" - }, - { - "source": "npm:@browserless/screenshot", - "target": "npm:prism-themes", - "type": "static" - }, - { - "source": "npm:@browserless/screenshot", - "target": "npm:sharp", - "type": "static" - }, - { - "source": "npm:@browserless/screenshot", - "target": "npm:svg-gradient", - "type": "static" - } - ], - "npm:@chevrotain/cst-dts-gen": [ - { - "source": "npm:@chevrotain/cst-dts-gen", - "target": "npm:@chevrotain/gast", - "type": "static" - }, - { - "source": "npm:@chevrotain/cst-dts-gen", - "target": "npm:@chevrotain/types", - "type": "static" - }, - { - "source": "npm:@chevrotain/cst-dts-gen", - "target": "npm:lodash@4.17.21", - "type": "static" - } - ], - "npm:@chevrotain/gast": [ - { - "source": "npm:@chevrotain/gast", - "target": "npm:@chevrotain/types", - "type": "static" - }, - { - "source": "npm:@chevrotain/gast", - "target": "npm:lodash@4.17.21", - "type": "static" - } - ], - "npm:@cloudflare/unenv-preset": [ - { - "source": "npm:@cloudflare/unenv-preset", - "target": "npm:unenv", - "type": "static" - }, - { - "source": "npm:@cloudflare/unenv-preset", - "target": "npm:workerd", - "type": "static" - } - ], - "npm:@cloudflare/unenv-preset@2.7.13": [ - { - "source": "npm:@cloudflare/unenv-preset@2.7.13", - "target": "npm:unenv", - "type": "static" - }, - { - "source": "npm:@cloudflare/unenv-preset@2.7.13", - "target": "npm:workerd", - "type": "static" - } - ], - "npm:@cloudflare/vite-plugin": [ - { - "source": "npm:@cloudflare/vite-plugin", - "target": "npm:@cloudflare/unenv-preset@2.7.13", - "type": "static" - }, - { - "source": "npm:@cloudflare/vite-plugin", - "target": "npm:@remix-run/node-fetch-server", - "type": "static" - }, - { - "source": "npm:@cloudflare/vite-plugin", - "target": "npm:defu", - "type": "static" - }, - { - "source": "npm:@cloudflare/vite-plugin", - "target": "npm:get-port", - "type": "static" - }, - { - "source": "npm:@cloudflare/vite-plugin", - "target": "npm:miniflare@4.20251217.0", - "type": "static" - }, - { - "source": "npm:@cloudflare/vite-plugin", - "target": "npm:picocolors", - "type": "static" - }, - { - "source": "npm:@cloudflare/vite-plugin", - "target": "npm:tinyglobby", - "type": "static" - }, - { - "source": "npm:@cloudflare/vite-plugin", - "target": "npm:unenv", - "type": "static" - }, - { - "source": "npm:@cloudflare/vite-plugin", - "target": "npm:vite", - "type": "static" - }, - { - "source": "npm:@cloudflare/vite-plugin", - "target": "npm:wrangler", - "type": "static" - }, - { - "source": "npm:@cloudflare/vite-plugin", - "target": "npm:ws", - "type": "static" - } - ], - "npm:@compiled/babel-plugin-strip-runtime": [ - { - "source": "npm:@compiled/babel-plugin-strip-runtime", - "target": "npm:@babel/core", - "type": "static" - }, - { - "source": "npm:@compiled/babel-plugin-strip-runtime", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@compiled/babel-plugin-strip-runtime", - "target": "npm:@babel/template", - "type": "static" - }, - { - "source": "npm:@compiled/babel-plugin-strip-runtime", - "target": "npm:@babel/traverse", - "type": "static" - }, - { - "source": "npm:@compiled/babel-plugin-strip-runtime", - "target": "npm:@babel/types", - "type": "static" - }, - { - "source": "npm:@compiled/babel-plugin-strip-runtime", - "target": "npm:@compiled/css", - "type": "static" - }, - { - "source": "npm:@compiled/babel-plugin-strip-runtime", - "target": "npm:@compiled/utils", - "type": "static" - } - ], - "npm:@compiled/babel-plugin": [ - { - "source": "npm:@compiled/babel-plugin", - "target": "npm:@babel/core", - "type": "static" - }, - { - "source": "npm:@compiled/babel-plugin", - "target": "npm:@babel/generator", - "type": "static" - }, - { - "source": "npm:@compiled/babel-plugin", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@compiled/babel-plugin", - "target": "npm:@babel/parser", - "type": "static" - }, - { - "source": "npm:@compiled/babel-plugin", - "target": "npm:@babel/plugin-syntax-jsx", - "type": "static" - }, - { - "source": "npm:@compiled/babel-plugin", - "target": "npm:@babel/plugin-transform-flow-strip-types", - "type": "static" - }, - { - "source": "npm:@compiled/babel-plugin", - "target": "npm:@babel/template", - "type": "static" - }, - { - "source": "npm:@compiled/babel-plugin", - "target": "npm:@babel/traverse", - "type": "static" - }, - { - "source": "npm:@compiled/babel-plugin", - "target": "npm:@babel/types", - "type": "static" - }, - { - "source": "npm:@compiled/babel-plugin", - "target": "npm:@compiled/css", - "type": "static" - }, - { - "source": "npm:@compiled/babel-plugin", - "target": "npm:@compiled/utils", - "type": "static" - }, - { - "source": "npm:@compiled/babel-plugin", - "target": "npm:@emotion/is-prop-valid", - "type": "static" - }, - { - "source": "npm:@compiled/babel-plugin", - "target": "npm:resolve@1.22.10", - "type": "static" - } - ], - "npm:@compiled/css": [ - { - "source": "npm:@compiled/css", - "target": "npm:@compiled/utils", - "type": "static" - }, - { - "source": "npm:@compiled/css", - "target": "npm:autoprefixer", - "type": "static" - }, - { - "source": "npm:@compiled/css", - "target": "npm:cssnano-preset-default", - "type": "static" - }, - { - "source": "npm:@compiled/css", - "target": "npm:postcss", - "type": "static" - }, - { - "source": "npm:@compiled/css", - "target": "npm:postcss-discard-duplicates", - "type": "static" - }, - { - "source": "npm:@compiled/css", - "target": "npm:postcss-nested@5.0.6", - "type": "static" - }, - { - "source": "npm:@compiled/css", - "target": "npm:postcss-normalize-whitespace", - "type": "static" - }, - { - "source": "npm:@compiled/css", - "target": "npm:postcss-selector-parser@6.1.2", - "type": "static" - }, - { - "source": "npm:@compiled/css", - "target": "npm:postcss-values-parser", - "type": "static" - } - ], - "npm:@compiled/react": [ - { - "source": "npm:@compiled/react", - "target": "npm:csstype", - "type": "static" - }, - { - "source": "npm:@compiled/react", - "target": "npm:react", - "type": "static" - } - ], - "npm:@compiled/utils": [ - { - "source": "npm:@compiled/utils", - "target": "npm:convert-source-map", - "type": "static" - }, - { - "source": "npm:@compiled/utils", - "target": "npm:source-map@0.7.6", - "type": "static" - } - ], - "npm:@cspotcode/source-map-support": [ - { - "source": "npm:@cspotcode/source-map-support", - "target": "npm:@jridgewell/trace-mapping@0.3.9", - "type": "static" - } - ], - "npm:@duckduckgo/autoconsent": [ - { - "source": "npm:@duckduckgo/autoconsent", - "target": "npm:@ghostery/adblocker", - "type": "static" - }, - { - "source": "npm:@duckduckgo/autoconsent", - "target": "npm:@ghostery/adblocker-content", - "type": "static" - }, - { - "source": "npm:@duckduckgo/autoconsent", - "target": "npm:tldts-experimental", - "type": "static" - } - ], - "npm:@electric-sql/pglite-socket": [ - { - "source": "npm:@electric-sql/pglite-socket", - "target": "npm:@electric-sql/pglite", - "type": "static" - } - ], - "npm:@electric-sql/pglite-tools": [ - { - "source": "npm:@electric-sql/pglite-tools", - "target": "npm:@electric-sql/pglite", - "type": "static" - } - ], - "npm:@emnapi/core": [ - { - "source": "npm:@emnapi/core", - "target": "npm:@emnapi/wasi-threads", - "type": "static" - }, - { - "source": "npm:@emnapi/core", - "target": "npm:tslib", - "type": "static" - } - ], - "npm:@emnapi/runtime": [ - { - "source": "npm:@emnapi/runtime", - "target": "npm:tslib", - "type": "static" - } - ], - "npm:@emnapi/wasi-threads": [ - { - "source": "npm:@emnapi/wasi-threads", - "target": "npm:tslib", - "type": "static" - } - ], - "npm:@emotion/is-prop-valid": [ - { - "source": "npm:@emotion/is-prop-valid", - "target": "npm:@emotion/memoize", - "type": "static" - } - ], - "npm:@esbuild-kit/core-utils": [ - { - "source": "npm:@esbuild-kit/core-utils", - "target": "npm:esbuild@0.18.20", - "type": "static" - }, - { - "source": "npm:@esbuild-kit/core-utils", - "target": "npm:source-map-support", - "type": "static" - } - ], - "npm:@esbuild-kit/esm-loader": [ - { - "source": "npm:@esbuild-kit/esm-loader", - "target": "npm:@esbuild-kit/core-utils", - "type": "static" - }, - { - "source": "npm:@esbuild-kit/esm-loader", - "target": "npm:get-tsconfig", - "type": "static" - } - ], - "npm:@eslint-community/eslint-utils": [ - { - "source": "npm:@eslint-community/eslint-utils", - "target": "npm:eslint", - "type": "static" - }, - { - "source": "npm:@eslint-community/eslint-utils", - "target": "npm:eslint-visitor-keys@3.4.3", - "type": "static" - } - ], - "npm:@eslint/config-array": [ - { - "source": "npm:@eslint/config-array", - "target": "npm:@eslint/object-schema", - "type": "static" - }, - { - "source": "npm:@eslint/config-array", - "target": "npm:debug", - "type": "static" - }, - { - "source": "npm:@eslint/config-array", - "target": "npm:minimatch", - "type": "static" - } - ], - "npm:@eslint/config-helpers": [ - { - "source": "npm:@eslint/config-helpers", - "target": "npm:@eslint/core", - "type": "static" - } - ], - "npm:@eslint/core": [ - { - "source": "npm:@eslint/core", - "target": "npm:@types/json-schema", - "type": "static" - } - ], - "npm:@eslint/eslintrc": [ - { - "source": "npm:@eslint/eslintrc", - "target": "npm:ajv", - "type": "static" - }, - { - "source": "npm:@eslint/eslintrc", - "target": "npm:debug", - "type": "static" - }, - { - "source": "npm:@eslint/eslintrc", - "target": "npm:espree@10.4.0", - "type": "static" - }, - { - "source": "npm:@eslint/eslintrc", - "target": "npm:globals@14.0.0", - "type": "static" - }, - { - "source": "npm:@eslint/eslintrc", - "target": "npm:ignore", - "type": "static" - }, - { - "source": "npm:@eslint/eslintrc", - "target": "npm:import-fresh", - "type": "static" - }, - { - "source": "npm:@eslint/eslintrc", - "target": "npm:js-yaml", - "type": "static" - }, - { - "source": "npm:@eslint/eslintrc", - "target": "npm:minimatch", - "type": "static" - }, - { - "source": "npm:@eslint/eslintrc", - "target": "npm:strip-json-comments@3.1.1", - "type": "static" - } - ], - "npm:@eslint/plugin-kit": [ - { - "source": "npm:@eslint/plugin-kit", - "target": "npm:@eslint/core", - "type": "static" - }, - { - "source": "npm:@eslint/plugin-kit", - "target": "npm:levn", - "type": "static" - } - ], - "npm:@fastify/ajv-compiler": [ - { - "source": "npm:@fastify/ajv-compiler", - "target": "npm:ajv@8.18.0", - "type": "static" - }, - { - "source": "npm:@fastify/ajv-compiler", - "target": "npm:ajv-formats", - "type": "static" - }, - { - "source": "npm:@fastify/ajv-compiler", - "target": "npm:fast-uri", - "type": "static" - } - ], - "npm:@fastify/fast-json-stringify-compiler": [ - { - "source": "npm:@fastify/fast-json-stringify-compiler", - "target": "npm:fast-json-stringify", - "type": "static" - } - ], - "npm:@fastify/merge-json-schemas": [ - { - "source": "npm:@fastify/merge-json-schemas", - "target": "npm:dequal", - "type": "static" - } - ], - "npm:@fastify/proxy-addr": [ - { - "source": "npm:@fastify/proxy-addr", - "target": "npm:@fastify/forwarded", - "type": "static" - }, - { - "source": "npm:@fastify/proxy-addr", - "target": "npm:ipaddr.js", - "type": "static" - } - ], - "npm:@floating-ui/core": [ - { - "source": "npm:@floating-ui/core", - "target": "npm:@floating-ui/utils", - "type": "static" - } - ], - "npm:@floating-ui/dom": [ - { - "source": "npm:@floating-ui/dom", - "target": "npm:@floating-ui/core", - "type": "static" - }, - { - "source": "npm:@floating-ui/dom", - "target": "npm:@floating-ui/utils", - "type": "static" - } - ], - "npm:@floating-ui/react-dom": [ - { - "source": "npm:@floating-ui/react-dom", - "target": "npm:@floating-ui/dom", - "type": "static" - }, - { - "source": "npm:@floating-ui/react-dom", - "target": "npm:react", - "type": "static" - }, - { - "source": "npm:@floating-ui/react-dom", - "target": "npm:react-dom", - "type": "static" - } - ], - "npm:@floating-ui/react": [ - { - "source": "npm:@floating-ui/react", - "target": "npm:@floating-ui/react-dom", - "type": "static" - }, - { - "source": "npm:@floating-ui/react", - "target": "npm:@floating-ui/utils", - "type": "static" - }, - { - "source": "npm:@floating-ui/react", - "target": "npm:react", - "type": "static" - }, - { - "source": "npm:@floating-ui/react", - "target": "npm:react-dom", - "type": "static" - }, - { - "source": "npm:@floating-ui/react", - "target": "npm:tabbable", - "type": "static" - } - ], - "npm:@ghostery/adblocker-content": [ - { - "source": "npm:@ghostery/adblocker-content", - "target": "npm:@ghostery/adblocker-extended-selectors", - "type": "static" - } - ], - "npm:@ghostery/adblocker-puppeteer": [ - { - "source": "npm:@ghostery/adblocker-puppeteer", - "target": "npm:@ghostery/adblocker", - "type": "static" - }, - { - "source": "npm:@ghostery/adblocker-puppeteer", - "target": "npm:@ghostery/adblocker-content", - "type": "static" - }, - { - "source": "npm:@ghostery/adblocker-puppeteer", - "target": "npm:puppeteer", - "type": "static" - }, - { - "source": "npm:@ghostery/adblocker-puppeteer", - "target": "npm:tldts-experimental", - "type": "static" - } - ], - "npm:@ghostery/adblocker": [ - { - "source": "npm:@ghostery/adblocker", - "target": "npm:@ghostery/adblocker-content", - "type": "static" - }, - { - "source": "npm:@ghostery/adblocker", - "target": "npm:@ghostery/adblocker-extended-selectors", - "type": "static" - }, - { - "source": "npm:@ghostery/adblocker", - "target": "npm:@ghostery/url-parser", - "type": "static" - }, - { - "source": "npm:@ghostery/adblocker", - "target": "npm:@remusao/guess-url-type", - "type": "static" - }, - { - "source": "npm:@ghostery/adblocker", - "target": "npm:@remusao/small", - "type": "static" - }, - { - "source": "npm:@ghostery/adblocker", - "target": "npm:@remusao/smaz", - "type": "static" - }, - { - "source": "npm:@ghostery/adblocker", - "target": "npm:tldts-experimental", - "type": "static" - } - ], - "npm:@ghostery/url-parser": [ - { - "source": "npm:@ghostery/url-parser", - "target": "npm:tldts-experimental", - "type": "static" - } - ], - "npm:@hono/node-server": [ - { - "source": "npm:@hono/node-server", - "target": "npm:hono@4.11.4", - "type": "static" - }, - { - "source": "npm:@hono/node-server", - "target": "npm:hono", - "type": "static" - } - ], - "npm:@humanfs/node": [ - { - "source": "npm:@humanfs/node", - "target": "npm:@humanfs/core", - "type": "static" - }, - { - "source": "npm:@humanfs/node", - "target": "npm:@humanwhocodes/retry", - "type": "static" - } - ], - "npm:@img/sharp-darwin-arm64@0.33.5": [ - { - "source": "npm:@img/sharp-darwin-arm64@0.33.5", - "target": "npm:@img/sharp-libvips-darwin-arm64@1.0.4", - "type": "static" - } - ], - "npm:@img/sharp-darwin-arm64@0.34.5": [ - { - "source": "npm:@img/sharp-darwin-arm64@0.34.5", - "target": "npm:@img/sharp-libvips-darwin-arm64@1.2.4", - "type": "static" - } - ], - "npm:@img/sharp-darwin-x64@0.33.5": [ - { - "source": "npm:@img/sharp-darwin-x64@0.33.5", - "target": "npm:@img/sharp-libvips-darwin-x64@1.0.4", - "type": "static" - } - ], - "npm:@img/sharp-darwin-x64@0.34.5": [ - { - "source": "npm:@img/sharp-darwin-x64@0.34.5", - "target": "npm:@img/sharp-libvips-darwin-x64@1.2.4", - "type": "static" - } - ], - "npm:@img/sharp-linux-arm64@0.33.5": [ - { - "source": "npm:@img/sharp-linux-arm64@0.33.5", - "target": "npm:@img/sharp-libvips-linux-arm64@1.0.4", - "type": "static" - } - ], - "npm:@img/sharp-linux-arm64@0.34.5": [ - { - "source": "npm:@img/sharp-linux-arm64@0.34.5", - "target": "npm:@img/sharp-libvips-linux-arm64@1.2.4", - "type": "static" - } - ], - "npm:@img/sharp-linux-arm@0.33.5": [ - { - "source": "npm:@img/sharp-linux-arm@0.33.5", - "target": "npm:@img/sharp-libvips-linux-arm@1.0.5", - "type": "static" - } - ], - "npm:@img/sharp-linux-arm@0.34.5": [ - { - "source": "npm:@img/sharp-linux-arm@0.34.5", - "target": "npm:@img/sharp-libvips-linux-arm@1.2.4", - "type": "static" - } - ], - "npm:@img/sharp-linux-ppc64": [ - { - "source": "npm:@img/sharp-linux-ppc64", - "target": "npm:@img/sharp-libvips-linux-ppc64", - "type": "static" - } - ], - "npm:@img/sharp-linux-riscv64": [ - { - "source": "npm:@img/sharp-linux-riscv64", - "target": "npm:@img/sharp-libvips-linux-riscv64", - "type": "static" - } - ], - "npm:@img/sharp-linux-s390x@0.33.5": [ - { - "source": "npm:@img/sharp-linux-s390x@0.33.5", - "target": "npm:@img/sharp-libvips-linux-s390x@1.0.4", - "type": "static" - } - ], - "npm:@img/sharp-linux-s390x@0.34.5": [ - { - "source": "npm:@img/sharp-linux-s390x@0.34.5", - "target": "npm:@img/sharp-libvips-linux-s390x@1.2.4", - "type": "static" - } - ], - "npm:@img/sharp-linux-x64@0.33.5": [ - { - "source": "npm:@img/sharp-linux-x64@0.33.5", - "target": "npm:@img/sharp-libvips-linux-x64@1.0.4", - "type": "static" - } - ], - "npm:@img/sharp-linux-x64": [ - { - "source": "npm:@img/sharp-linux-x64", - "target": "npm:@img/sharp-libvips-linux-x64", - "type": "static" - } - ], - "npm:@img/sharp-linuxmusl-arm64@0.33.5": [ - { - "source": "npm:@img/sharp-linuxmusl-arm64@0.33.5", - "target": "npm:@img/sharp-libvips-linuxmusl-arm64@1.0.4", - "type": "static" - } - ], - "npm:@img/sharp-linuxmusl-arm64@0.34.5": [ - { - "source": "npm:@img/sharp-linuxmusl-arm64@0.34.5", - "target": "npm:@img/sharp-libvips-linuxmusl-arm64@1.2.4", - "type": "static" - } - ], - "npm:@img/sharp-linuxmusl-x64@0.33.5": [ - { - "source": "npm:@img/sharp-linuxmusl-x64@0.33.5", - "target": "npm:@img/sharp-libvips-linuxmusl-x64@1.0.4", - "type": "static" - } - ], - "npm:@img/sharp-linuxmusl-x64": [ - { - "source": "npm:@img/sharp-linuxmusl-x64", - "target": "npm:@img/sharp-libvips-linuxmusl-x64", - "type": "static" - } - ], - "npm:@img/sharp-wasm32@0.33.5": [ - { - "source": "npm:@img/sharp-wasm32@0.33.5", - "target": "npm:@emnapi/runtime", - "type": "static" - } - ], - "npm:@img/sharp-wasm32@0.34.5": [ - { - "source": "npm:@img/sharp-wasm32@0.34.5", - "target": "npm:@emnapi/runtime", - "type": "static" - } - ], - "npm:@inquirer/checkbox": [ - { - "source": "npm:@inquirer/checkbox", - "target": "npm:@inquirer/ansi", - "type": "static" - }, - { - "source": "npm:@inquirer/checkbox", - "target": "npm:@inquirer/core", - "type": "static" - }, - { - "source": "npm:@inquirer/checkbox", - "target": "npm:@inquirer/figures", - "type": "static" - }, - { - "source": "npm:@inquirer/checkbox", - "target": "npm:@inquirer/type", - "type": "static" - }, - { - "source": "npm:@inquirer/checkbox", - "target": "npm:@types/node", - "type": "static" - } - ], - "npm:@inquirer/confirm": [ - { - "source": "npm:@inquirer/confirm", - "target": "npm:@inquirer/core", - "type": "static" - }, - { - "source": "npm:@inquirer/confirm", - "target": "npm:@inquirer/type", - "type": "static" - }, - { - "source": "npm:@inquirer/confirm", - "target": "npm:@types/node", - "type": "static" - } - ], - "npm:@inquirer/core": [ - { - "source": "npm:@inquirer/core", - "target": "npm:@inquirer/ansi", - "type": "static" - }, - { - "source": "npm:@inquirer/core", - "target": "npm:@inquirer/figures", - "type": "static" - }, - { - "source": "npm:@inquirer/core", - "target": "npm:@inquirer/type", - "type": "static" - }, - { - "source": "npm:@inquirer/core", - "target": "npm:cli-width", - "type": "static" - }, - { - "source": "npm:@inquirer/core", - "target": "npm:fast-wrap-ansi", - "type": "static" - }, - { - "source": "npm:@inquirer/core", - "target": "npm:mute-stream", - "type": "static" - }, - { - "source": "npm:@inquirer/core", - "target": "npm:signal-exit", - "type": "static" - }, - { - "source": "npm:@inquirer/core", - "target": "npm:@types/node", - "type": "static" - } - ], - "npm:@inquirer/editor": [ - { - "source": "npm:@inquirer/editor", - "target": "npm:@inquirer/core", - "type": "static" - }, - { - "source": "npm:@inquirer/editor", - "target": "npm:@inquirer/external-editor", - "type": "static" - }, - { - "source": "npm:@inquirer/editor", - "target": "npm:@inquirer/type", - "type": "static" - }, - { - "source": "npm:@inquirer/editor", - "target": "npm:@types/node", - "type": "static" - } - ], - "npm:@inquirer/expand": [ - { - "source": "npm:@inquirer/expand", - "target": "npm:@inquirer/core", - "type": "static" - }, - { - "source": "npm:@inquirer/expand", - "target": "npm:@inquirer/type", - "type": "static" - }, - { - "source": "npm:@inquirer/expand", - "target": "npm:@types/node", - "type": "static" - } - ], - "npm:@inquirer/external-editor": [ - { - "source": "npm:@inquirer/external-editor", - "target": "npm:chardet", - "type": "static" - }, - { - "source": "npm:@inquirer/external-editor", - "target": "npm:iconv-lite@0.7.2", - "type": "static" - }, - { - "source": "npm:@inquirer/external-editor", - "target": "npm:@types/node", - "type": "static" - } - ], - "npm:@inquirer/input": [ - { - "source": "npm:@inquirer/input", - "target": "npm:@inquirer/core", - "type": "static" - }, - { - "source": "npm:@inquirer/input", - "target": "npm:@inquirer/type", - "type": "static" - }, - { - "source": "npm:@inquirer/input", - "target": "npm:@types/node", - "type": "static" - } - ], - "npm:@inquirer/number": [ - { - "source": "npm:@inquirer/number", - "target": "npm:@inquirer/core", - "type": "static" - }, - { - "source": "npm:@inquirer/number", - "target": "npm:@inquirer/type", - "type": "static" - }, - { - "source": "npm:@inquirer/number", - "target": "npm:@types/node", - "type": "static" - } - ], - "npm:@inquirer/password": [ - { - "source": "npm:@inquirer/password", - "target": "npm:@inquirer/ansi", - "type": "static" - }, - { - "source": "npm:@inquirer/password", - "target": "npm:@inquirer/core", - "type": "static" - }, - { - "source": "npm:@inquirer/password", - "target": "npm:@inquirer/type", - "type": "static" - }, - { - "source": "npm:@inquirer/password", - "target": "npm:@types/node", - "type": "static" - } - ], - "npm:@inquirer/prompts": [ - { - "source": "npm:@inquirer/prompts", - "target": "npm:@inquirer/checkbox", - "type": "static" - }, - { - "source": "npm:@inquirer/prompts", - "target": "npm:@inquirer/confirm", - "type": "static" - }, - { - "source": "npm:@inquirer/prompts", - "target": "npm:@inquirer/editor", - "type": "static" - }, - { - "source": "npm:@inquirer/prompts", - "target": "npm:@inquirer/expand", - "type": "static" - }, - { - "source": "npm:@inquirer/prompts", - "target": "npm:@inquirer/input", - "type": "static" - }, - { - "source": "npm:@inquirer/prompts", - "target": "npm:@inquirer/number", - "type": "static" - }, - { - "source": "npm:@inquirer/prompts", - "target": "npm:@inquirer/password", - "type": "static" - }, - { - "source": "npm:@inquirer/prompts", - "target": "npm:@inquirer/rawlist", - "type": "static" - }, - { - "source": "npm:@inquirer/prompts", - "target": "npm:@inquirer/search", - "type": "static" - }, - { - "source": "npm:@inquirer/prompts", - "target": "npm:@inquirer/select", - "type": "static" - }, - { - "source": "npm:@inquirer/prompts", - "target": "npm:@types/node", - "type": "static" - } - ], - "npm:@inquirer/rawlist": [ - { - "source": "npm:@inquirer/rawlist", - "target": "npm:@inquirer/core", - "type": "static" - }, - { - "source": "npm:@inquirer/rawlist", - "target": "npm:@inquirer/type", - "type": "static" - }, - { - "source": "npm:@inquirer/rawlist", - "target": "npm:@types/node", - "type": "static" - } - ], - "npm:@inquirer/search": [ - { - "source": "npm:@inquirer/search", - "target": "npm:@inquirer/core", - "type": "static" - }, - { - "source": "npm:@inquirer/search", - "target": "npm:@inquirer/figures", - "type": "static" - }, - { - "source": "npm:@inquirer/search", - "target": "npm:@inquirer/type", - "type": "static" - }, - { - "source": "npm:@inquirer/search", - "target": "npm:@types/node", - "type": "static" - } - ], - "npm:@inquirer/select": [ - { - "source": "npm:@inquirer/select", - "target": "npm:@inquirer/ansi", - "type": "static" - }, - { - "source": "npm:@inquirer/select", - "target": "npm:@inquirer/core", - "type": "static" - }, - { - "source": "npm:@inquirer/select", - "target": "npm:@inquirer/figures", - "type": "static" - }, - { - "source": "npm:@inquirer/select", - "target": "npm:@inquirer/type", - "type": "static" - }, - { - "source": "npm:@inquirer/select", - "target": "npm:@types/node", - "type": "static" - } - ], - "npm:@inquirer/type": [ - { - "source": "npm:@inquirer/type", - "target": "npm:@types/node", - "type": "static" - } - ], - "npm:@isaacs/cliui@8.0.2": [ - { - "source": "npm:@isaacs/cliui@8.0.2", - "target": "npm:string-width@5.1.2", - "type": "static" - }, - { - "source": "npm:@isaacs/cliui@8.0.2", - "target": "npm:string-width-cjs", - "type": "static" - }, - { - "source": "npm:@isaacs/cliui@8.0.2", - "target": "npm:strip-ansi", - "type": "static" - }, - { - "source": "npm:@isaacs/cliui@8.0.2", - "target": "npm:strip-ansi-cjs", - "type": "static" - }, - { - "source": "npm:@isaacs/cliui@8.0.2", - "target": "npm:wrap-ansi@8.1.0", - "type": "static" - }, - { - "source": "npm:@isaacs/cliui@8.0.2", - "target": "npm:wrap-ansi-cjs", - "type": "static" - } - ], - "npm:@isaacs/fs-minipass": [ - { - "source": "npm:@isaacs/fs-minipass", - "target": "npm:minipass", - "type": "static" - } - ], - "npm:@jest/schemas": [ - { - "source": "npm:@jest/schemas", - "target": "npm:@sinclair/typebox", - "type": "static" - } - ], - "npm:@jridgewell/gen-mapping": [ - { - "source": "npm:@jridgewell/gen-mapping", - "target": "npm:@jridgewell/sourcemap-codec", - "type": "static" - }, - { - "source": "npm:@jridgewell/gen-mapping", - "target": "npm:@jridgewell/trace-mapping", - "type": "static" - } - ], - "npm:@jridgewell/remapping": [ - { - "source": "npm:@jridgewell/remapping", - "target": "npm:@jridgewell/gen-mapping", - "type": "static" - }, - { - "source": "npm:@jridgewell/remapping", - "target": "npm:@jridgewell/trace-mapping", - "type": "static" - } - ], - "npm:@jridgewell/trace-mapping": [ - { - "source": "npm:@jridgewell/trace-mapping", - "target": "npm:@jridgewell/resolve-uri", - "type": "static" - }, - { - "source": "npm:@jridgewell/trace-mapping", - "target": "npm:@jridgewell/sourcemap-codec", - "type": "static" - } - ], - "npm:@jridgewell/trace-mapping@0.3.9": [ - { - "source": "npm:@jridgewell/trace-mapping@0.3.9", - "target": "npm:@jridgewell/resolve-uri", - "type": "static" - }, - { - "source": "npm:@jridgewell/trace-mapping@0.3.9", - "target": "npm:@jridgewell/sourcemap-codec", - "type": "static" - } - ], - "npm:@mantine/core": [ - { - "source": "npm:@mantine/core", - "target": "npm:@floating-ui/react", - "type": "static" - }, - { - "source": "npm:@mantine/core", - "target": "npm:@mantine/hooks", - "type": "static" - }, - { - "source": "npm:@mantine/core", - "target": "npm:clsx", - "type": "static" - }, - { - "source": "npm:@mantine/core", - "target": "npm:react", - "type": "static" - }, - { - "source": "npm:@mantine/core", - "target": "npm:react-dom", - "type": "static" - }, - { - "source": "npm:@mantine/core", - "target": "npm:react-number-format", - "type": "static" - }, - { - "source": "npm:@mantine/core", - "target": "npm:react-remove-scroll", - "type": "static" - }, - { - "source": "npm:@mantine/core", - "target": "npm:react-textarea-autosize", - "type": "static" - }, - { - "source": "npm:@mantine/core", - "target": "npm:type-fest", - "type": "static" - } - ], - "npm:@mantine/hooks": [ - { - "source": "npm:@mantine/hooks", - "target": "npm:react", - "type": "static" - } - ], - "npm:@manypkg/find-root": [ - { - "source": "npm:@manypkg/find-root", - "target": "npm:@manypkg/tools", - "type": "static" - } - ], - "npm:@manypkg/tools": [ - { - "source": "npm:@manypkg/tools", - "target": "npm:jju", - "type": "static" - }, - { - "source": "npm:@manypkg/tools", - "target": "npm:js-yaml", - "type": "static" - }, - { - "source": "npm:@manypkg/tools", - "target": "npm:tinyglobby", - "type": "static" - } - ], - "npm:@mapbox/node-pre-gyp": [ - { - "source": "npm:@mapbox/node-pre-gyp", - "target": "npm:consola", - "type": "static" - }, - { - "source": "npm:@mapbox/node-pre-gyp", - "target": "npm:detect-libc", - "type": "static" - }, - { - "source": "npm:@mapbox/node-pre-gyp", - "target": "npm:https-proxy-agent@7.0.6", - "type": "static" - }, - { - "source": "npm:@mapbox/node-pre-gyp", - "target": "npm:node-fetch@2.7.0", - "type": "static" - }, - { - "source": "npm:@mapbox/node-pre-gyp", - "target": "npm:nopt", - "type": "static" - }, - { - "source": "npm:@mapbox/node-pre-gyp", - "target": "npm:semver@7.7.4", - "type": "static" - }, - { - "source": "npm:@mapbox/node-pre-gyp", - "target": "npm:tar", - "type": "static" - } - ], - "npm:@motionone/animation": [ - { - "source": "npm:@motionone/animation", - "target": "npm:@motionone/easing", - "type": "static" - }, - { - "source": "npm:@motionone/animation", - "target": "npm:@motionone/types", - "type": "static" - }, - { - "source": "npm:@motionone/animation", - "target": "npm:@motionone/utils", - "type": "static" - }, - { - "source": "npm:@motionone/animation", - "target": "npm:tslib", - "type": "static" - } - ], - "npm:@motionone/dom": [ - { - "source": "npm:@motionone/dom", - "target": "npm:@motionone/animation", - "type": "static" - }, - { - "source": "npm:@motionone/dom", - "target": "npm:@motionone/generators", - "type": "static" - }, - { - "source": "npm:@motionone/dom", - "target": "npm:@motionone/types", - "type": "static" - }, - { - "source": "npm:@motionone/dom", - "target": "npm:@motionone/utils", - "type": "static" - }, - { - "source": "npm:@motionone/dom", - "target": "npm:hey-listen", - "type": "static" - }, - { - "source": "npm:@motionone/dom", - "target": "npm:tslib", - "type": "static" - } - ], - "npm:@motionone/easing": [ - { - "source": "npm:@motionone/easing", - "target": "npm:@motionone/utils", - "type": "static" - }, - { - "source": "npm:@motionone/easing", - "target": "npm:tslib", - "type": "static" - } - ], - "npm:@motionone/generators": [ - { - "source": "npm:@motionone/generators", - "target": "npm:@motionone/types", - "type": "static" - }, - { - "source": "npm:@motionone/generators", - "target": "npm:@motionone/utils", - "type": "static" - }, - { - "source": "npm:@motionone/generators", - "target": "npm:tslib", - "type": "static" - } - ], - "npm:@motionone/utils": [ - { - "source": "npm:@motionone/utils", - "target": "npm:@motionone/types", - "type": "static" - }, - { - "source": "npm:@motionone/utils", - "target": "npm:hey-listen", - "type": "static" - }, - { - "source": "npm:@motionone/utils", - "target": "npm:tslib", - "type": "static" - } - ], - "npm:@mrleebo/prisma-ast": [ - { - "source": "npm:@mrleebo/prisma-ast", - "target": "npm:chevrotain", - "type": "static" - }, - { - "source": "npm:@mrleebo/prisma-ast", - "target": "npm:lilconfig", - "type": "static" - } - ], - "npm:@napi-rs/wasm-runtime": [ - { - "source": "npm:@napi-rs/wasm-runtime", - "target": "npm:@emnapi/core", - "type": "static" - }, - { - "source": "npm:@napi-rs/wasm-runtime", - "target": "npm:@emnapi/runtime", - "type": "static" - }, - { - "source": "npm:@napi-rs/wasm-runtime", - "target": "npm:@tybys/wasm-util", - "type": "static" - } - ], - "npm:@napi-rs/wasm-runtime@1.1.1": [ - { - "source": "npm:@napi-rs/wasm-runtime@1.1.1", - "target": "npm:@emnapi/core", - "type": "static" - }, - { - "source": "npm:@napi-rs/wasm-runtime@1.1.1", - "target": "npm:@emnapi/runtime", - "type": "static" - }, - { - "source": "npm:@napi-rs/wasm-runtime@1.1.1", - "target": "npm:@tybys/wasm-util@0.10.1", - "type": "static" - } - ], - "npm:@nodelib/fs.scandir": [ - { - "source": "npm:@nodelib/fs.scandir", - "target": "npm:@nodelib/fs.stat", - "type": "static" - }, - { - "source": "npm:@nodelib/fs.scandir", - "target": "npm:run-parallel", - "type": "static" - } - ], - "npm:@nodelib/fs.walk": [ - { - "source": "npm:@nodelib/fs.walk", - "target": "npm:@nodelib/fs.scandir", - "type": "static" - }, - { - "source": "npm:@nodelib/fs.walk", - "target": "npm:fastq", - "type": "static" - } - ], - "npm:@npmcli/agent": [ - { - "source": "npm:@npmcli/agent", - "target": "npm:agent-base", - "type": "static" - }, - { - "source": "npm:@npmcli/agent", - "target": "npm:http-proxy-agent", - "type": "static" - }, - { - "source": "npm:@npmcli/agent", - "target": "npm:https-proxy-agent@7.0.6", - "type": "static" - }, - { - "source": "npm:@npmcli/agent", - "target": "npm:lru-cache@10.4.3", - "type": "static" - }, - { - "source": "npm:@npmcli/agent", - "target": "npm:socks-proxy-agent", - "type": "static" - } - ], - "npm:@npmcli/fs": [ - { - "source": "npm:@npmcli/fs", - "target": "npm:semver@7.7.4", - "type": "static" - } - ], - "npm:@oxc-parser/binding-wasm32-wasi": [ - { - "source": "npm:@oxc-parser/binding-wasm32-wasi", - "target": "npm:@napi-rs/wasm-runtime@1.1.1", - "type": "static" - } - ], - "npm:@oxc-resolver/binding-wasm32-wasi": [ - { - "source": "npm:@oxc-resolver/binding-wasm32-wasi", - "target": "npm:@napi-rs/wasm-runtime@1.1.1", - "type": "static" - } - ], - "npm:@photonjs/cloudflare": [ - { - "source": "npm:@photonjs/cloudflare", - "target": "npm:@cloudflare/vite-plugin", - "type": "static" - }, - { - "source": "npm:@photonjs/cloudflare", - "target": "npm:@photonjs/core", - "type": "static" - }, - { - "source": "npm:@photonjs/cloudflare", - "target": "npm:@universal-middleware/cloudflare", - "type": "static" - } - ], - "npm:@photonjs/core": [ - { - "source": "npm:@photonjs/core", - "target": "npm:@brillout/vite-plugin-server-entry", - "type": "static" - }, - { - "source": "npm:@photonjs/core", - "target": "npm:@universal-middleware/cloudflare", - "type": "static" - }, - { - "source": "npm:@photonjs/core", - "target": "npm:@universal-middleware/compress", - "type": "static" - }, - { - "source": "npm:@photonjs/core", - "target": "npm:@universal-middleware/core", - "type": "static" - }, - { - "source": "npm:@photonjs/core", - "target": "npm:@universal-middleware/express", - "type": "static" - }, - { - "source": "npm:@photonjs/core", - "target": "npm:@universal-middleware/sirv", - "type": "static" - }, - { - "source": "npm:@photonjs/core", - "target": "npm:estree-walker", - "type": "static" - }, - { - "source": "npm:@photonjs/core", - "target": "npm:ts-deepmerge", - "type": "static" - }, - { - "source": "npm:@photonjs/core", - "target": "npm:zod@4.3.6", - "type": "static" - }, - { - "source": "npm:@photonjs/core", - "target": "npm:vite", - "type": "static" - } - ], - "npm:@photonjs/express": [ - { - "source": "npm:@photonjs/express", - "target": "npm:@photonjs/core", - "type": "static" - }, - { - "source": "npm:@photonjs/express", - "target": "npm:@universal-middleware/express", - "type": "static" - }, - { - "source": "npm:@photonjs/express", - "target": "npm:vite", - "type": "static" - } - ], - "npm:@photonjs/fastify": [ - { - "source": "npm:@photonjs/fastify", - "target": "npm:@photonjs/core", - "type": "static" - }, - { - "source": "npm:@photonjs/fastify", - "target": "npm:@universal-middleware/fastify", - "type": "static" - }, - { - "source": "npm:@photonjs/fastify", - "target": "npm:vite", - "type": "static" - } - ], - "npm:@photonjs/h3": [ - { - "source": "npm:@photonjs/h3", - "target": "npm:@photonjs/core", - "type": "static" - }, - { - "source": "npm:@photonjs/h3", - "target": "npm:@universal-middleware/h3", - "type": "static" - }, - { - "source": "npm:@photonjs/h3", - "target": "npm:vite", - "type": "static" - } - ], - "npm:@photonjs/hono": [ - { - "source": "npm:@photonjs/hono", - "target": "npm:@photonjs/core", - "type": "static" - }, - { - "source": "npm:@photonjs/hono", - "target": "npm:@universal-middleware/hono", - "type": "static" - }, - { - "source": "npm:@photonjs/hono", - "target": "npm:@hono/node-server", - "type": "static" - }, - { - "source": "npm:@photonjs/hono", - "target": "npm:vite", - "type": "static" - } - ], - "npm:@photonjs/runtime": [ - { - "source": "npm:@photonjs/runtime", - "target": "npm:@photonjs/core", - "type": "static" - }, - { - "source": "npm:@photonjs/runtime", - "target": "npm:@photonjs/srvx", - "type": "static" - }, - { - "source": "npm:@photonjs/runtime", - "target": "npm:@universal-middleware/core", - "type": "static" - }, - { - "source": "npm:@photonjs/runtime", - "target": "npm:@universal-middleware/sirv", - "type": "static" - }, - { - "source": "npm:@photonjs/runtime", - "target": "npm:srvx", - "type": "static" - }, - { - "source": "npm:@photonjs/runtime", - "target": "npm:standaloner", - "type": "static" - }, - { - "source": "npm:@photonjs/runtime", - "target": "npm:vite", - "type": "static" - } - ], - "npm:@photonjs/srvx": [ - { - "source": "npm:@photonjs/srvx", - "target": "npm:@photonjs/core", - "type": "static" - }, - { - "source": "npm:@photonjs/srvx", - "target": "npm:@universal-middleware/srvx", - "type": "static" - }, - { - "source": "npm:@photonjs/srvx", - "target": "npm:vite", - "type": "static" - } - ], - "npm:@photonjs/vercel": [ - { - "source": "npm:@photonjs/vercel", - "target": "npm:@brillout/libassert", - "type": "static" - }, - { - "source": "npm:@photonjs/vercel", - "target": "npm:@manypkg/find-root", - "type": "static" - }, - { - "source": "npm:@photonjs/vercel", - "target": "npm:@photonjs/core", - "type": "static" - }, - { - "source": "npm:@photonjs/vercel", - "target": "npm:@photonjs/runtime", - "type": "static" - }, - { - "source": "npm:@photonjs/vercel", - "target": "npm:@universal-middleware/core", - "type": "static" - }, - { - "source": "npm:@photonjs/vercel", - "target": "npm:@universal-middleware/vercel", - "type": "static" - }, - { - "source": "npm:@photonjs/vercel", - "target": "npm:@vercel/build-utils", - "type": "static" - }, - { - "source": "npm:@photonjs/vercel", - "target": "npm:@vercel/nft", - "type": "static" - }, - { - "source": "npm:@photonjs/vercel", - "target": "npm:@vercel/routing-utils", - "type": "static" - }, - { - "source": "npm:@photonjs/vercel", - "target": "npm:@vite-plugin-vercel/schemas", - "type": "static" - }, - { - "source": "npm:@photonjs/vercel", - "target": "npm:convert-route", - "type": "static" - }, - { - "source": "npm:@photonjs/vercel", - "target": "npm:esbuild", - "type": "static" - }, - { - "source": "npm:@photonjs/vercel", - "target": "npm:fast-glob", - "type": "static" - }, - { - "source": "npm:@photonjs/vercel", - "target": "npm:magicast", - "type": "static" - }, - { - "source": "npm:@photonjs/vercel", - "target": "npm:path-to-regexp", - "type": "static" - }, - { - "source": "npm:@photonjs/vercel", - "target": "npm:strip-ansi", - "type": "static" - }, - { - "source": "npm:@photonjs/vercel", - "target": "npm:vite", - "type": "static" - }, - { - "source": "npm:@photonjs/vercel", - "target": "npm:vite-plugin-wasm", - "type": "static" - } - ], - "npm:@poppinss/colors": [ - { - "source": "npm:@poppinss/colors", - "target": "npm:kleur", - "type": "static" - } - ], - "npm:@poppinss/dumper": [ - { - "source": "npm:@poppinss/dumper", - "target": "npm:@poppinss/colors", - "type": "static" - }, - { - "source": "npm:@poppinss/dumper", - "target": "npm:@sindresorhus/is@7.1.0", - "type": "static" - }, - { - "source": "npm:@poppinss/dumper", - "target": "npm:supports-color@10.2.2", - "type": "static" - } - ], - "npm:@prisma/client": [ - { - "source": "npm:@prisma/client", - "target": "npm:@prisma/client-runtime-utils", - "type": "static" - }, - { - "source": "npm:@prisma/client", - "target": "npm:prisma", - "type": "static" - }, - { - "source": "npm:@prisma/client", - "target": "npm:typescript", - "type": "static" - } - ], - "npm:@prisma/config": [ - { - "source": "npm:@prisma/config", - "target": "npm:c12", - "type": "static" - }, - { - "source": "npm:@prisma/config", - "target": "npm:deepmerge-ts", - "type": "static" - }, - { - "source": "npm:@prisma/config", - "target": "npm:effect", - "type": "static" - }, - { - "source": "npm:@prisma/config", - "target": "npm:empathic", - "type": "static" - } - ], - "npm:@prisma/dev": [ - { - "source": "npm:@prisma/dev", - "target": "npm:@electric-sql/pglite", - "type": "static" - }, - { - "source": "npm:@prisma/dev", - "target": "npm:@electric-sql/pglite-socket", - "type": "static" - }, - { - "source": "npm:@prisma/dev", - "target": "npm:@electric-sql/pglite-tools", - "type": "static" - }, - { - "source": "npm:@prisma/dev", - "target": "npm:@hono/node-server", - "type": "static" - }, - { - "source": "npm:@prisma/dev", - "target": "npm:@mrleebo/prisma-ast", - "type": "static" - }, - { - "source": "npm:@prisma/dev", - "target": "npm:@prisma/get-platform", - "type": "static" - }, - { - "source": "npm:@prisma/dev", - "target": "npm:@prisma/query-plan-executor", - "type": "static" - }, - { - "source": "npm:@prisma/dev", - "target": "npm:foreground-child", - "type": "static" - }, - { - "source": "npm:@prisma/dev", - "target": "npm:get-port-please", - "type": "static" - }, - { - "source": "npm:@prisma/dev", - "target": "npm:hono@4.11.4", - "type": "static" - }, - { - "source": "npm:@prisma/dev", - "target": "npm:http-status-codes", - "type": "static" - }, - { - "source": "npm:@prisma/dev", - "target": "npm:pathe", - "type": "static" - }, - { - "source": "npm:@prisma/dev", - "target": "npm:proper-lockfile", - "type": "static" - }, - { - "source": "npm:@prisma/dev", - "target": "npm:remeda", - "type": "static" - }, - { - "source": "npm:@prisma/dev", - "target": "npm:std-env@3.10.0", - "type": "static" - }, - { - "source": "npm:@prisma/dev", - "target": "npm:valibot", - "type": "static" - }, - { - "source": "npm:@prisma/dev", - "target": "npm:zeptomatch", - "type": "static" - } - ], - "npm:@prisma/engines": [ - { - "source": "npm:@prisma/engines", - "target": "npm:@prisma/debug", - "type": "static" - }, - { - "source": "npm:@prisma/engines", - "target": "npm:@prisma/engines-version", - "type": "static" - }, - { - "source": "npm:@prisma/engines", - "target": "npm:@prisma/fetch-engine", - "type": "static" - }, - { - "source": "npm:@prisma/engines", - "target": "npm:@prisma/get-platform@7.5.0", - "type": "static" - } - ], - "npm:@prisma/fetch-engine": [ - { - "source": "npm:@prisma/fetch-engine", - "target": "npm:@prisma/debug", - "type": "static" - }, - { - "source": "npm:@prisma/fetch-engine", - "target": "npm:@prisma/engines-version", - "type": "static" - }, - { - "source": "npm:@prisma/fetch-engine", - "target": "npm:@prisma/get-platform@7.5.0", - "type": "static" - } - ], - "npm:@prisma/get-platform": [ - { - "source": "npm:@prisma/get-platform", - "target": "npm:@prisma/debug@7.2.0", - "type": "static" - } - ], - "npm:@prisma/get-platform@7.5.0": [ - { - "source": "npm:@prisma/get-platform@7.5.0", - "target": "npm:@prisma/debug", - "type": "static" - } - ], - "npm:@prisma/studio-core": [ - { - "source": "npm:@prisma/studio-core", - "target": "npm:@types/react", - "type": "static" - }, - { - "source": "npm:@prisma/studio-core", - "target": "npm:react", - "type": "static" - }, - { - "source": "npm:@prisma/studio-core", - "target": "npm:react-dom", - "type": "static" - } - ], - "npm:@puppeteer/browsers": [ - { - "source": "npm:@puppeteer/browsers", - "target": "npm:debug", - "type": "static" - }, - { - "source": "npm:@puppeteer/browsers", - "target": "npm:extract-zip", - "type": "static" - }, - { - "source": "npm:@puppeteer/browsers", - "target": "npm:progress", - "type": "static" - }, - { - "source": "npm:@puppeteer/browsers", - "target": "npm:proxy-agent", - "type": "static" - }, - { - "source": "npm:@puppeteer/browsers", - "target": "npm:semver@7.7.4", - "type": "static" - }, - { - "source": "npm:@puppeteer/browsers", - "target": "npm:tar-fs", - "type": "static" - }, - { - "source": "npm:@puppeteer/browsers", - "target": "npm:yargs", - "type": "static" - } - ], - "npm:@quansync/fs": [ - { - "source": "npm:@quansync/fs", - "target": "npm:quansync", - "type": "static" - } - ], - "npm:@radix-ui/react-icons": [ - { - "source": "npm:@radix-ui/react-icons", - "target": "npm:react", - "type": "static" - } - ], - "npm:@remusao/smaz-compress": [ - { - "source": "npm:@remusao/smaz-compress", - "target": "npm:@remusao/trie", - "type": "static" - } - ], - "npm:@remusao/smaz": [ - { - "source": "npm:@remusao/smaz", - "target": "npm:@remusao/smaz-compress", - "type": "static" - }, - { - "source": "npm:@remusao/smaz", - "target": "npm:@remusao/smaz-decompress", - "type": "static" - } - ], - "npm:@rolldown/binding-wasm32-wasi@1.0.0-beta.51": [ - { - "source": "npm:@rolldown/binding-wasm32-wasi@1.0.0-beta.51", - "target": "npm:@napi-rs/wasm-runtime@1.1.1", - "type": "static" - } - ], - "npm:@rolldown/binding-wasm32-wasi@1.0.0-rc.11": [ - { - "source": "npm:@rolldown/binding-wasm32-wasi@1.0.0-rc.11", - "target": "npm:@napi-rs/wasm-runtime@1.1.1", - "type": "static" - } - ], - "npm:@rolldown/binding-wasm32-wasi@1.0.0-rc.9": [ - { - "source": "npm:@rolldown/binding-wasm32-wasi@1.0.0-rc.9", - "target": "npm:@napi-rs/wasm-runtime@1.1.1", - "type": "static" - } - ], - "npm:@rollup/pluginutils": [ - { - "source": "npm:@rollup/pluginutils", - "target": "npm:@types/estree", - "type": "static" - }, - { - "source": "npm:@rollup/pluginutils", - "target": "npm:estree-walker@2.0.2", - "type": "static" - }, - { - "source": "npm:@rollup/pluginutils", - "target": "npm:picomatch", - "type": "static" - } - ], - "npm:@sentry-internal/browser-utils": [ - { - "source": "npm:@sentry-internal/browser-utils", - "target": "npm:@sentry/core", - "type": "static" - } - ], - "npm:@sentry-internal/feedback": [ - { - "source": "npm:@sentry-internal/feedback", - "target": "npm:@sentry/core", - "type": "static" - } - ], - "npm:@sentry-internal/replay-canvas": [ - { - "source": "npm:@sentry-internal/replay-canvas", - "target": "npm:@sentry-internal/replay", - "type": "static" - }, - { - "source": "npm:@sentry-internal/replay-canvas", - "target": "npm:@sentry/core", - "type": "static" - } - ], - "npm:@sentry-internal/replay": [ - { - "source": "npm:@sentry-internal/replay", - "target": "npm:@sentry-internal/browser-utils", - "type": "static" - }, - { - "source": "npm:@sentry-internal/replay", - "target": "npm:@sentry/core", - "type": "static" - } - ], - "npm:@sentry/browser": [ - { - "source": "npm:@sentry/browser", - "target": "npm:@sentry-internal/browser-utils", - "type": "static" - }, - { - "source": "npm:@sentry/browser", - "target": "npm:@sentry-internal/feedback", - "type": "static" - }, - { - "source": "npm:@sentry/browser", - "target": "npm:@sentry-internal/replay", - "type": "static" - }, - { - "source": "npm:@sentry/browser", - "target": "npm:@sentry-internal/replay-canvas", - "type": "static" - }, - { - "source": "npm:@sentry/browser", - "target": "npm:@sentry/core", - "type": "static" - } - ], - "npm:@sentry/bundler-plugin-core": [ - { - "source": "npm:@sentry/bundler-plugin-core", - "target": "npm:@babel/core", - "type": "static" - }, - { - "source": "npm:@sentry/bundler-plugin-core", - "target": "npm:@sentry/babel-plugin-component-annotate", - "type": "static" - }, - { - "source": "npm:@sentry/bundler-plugin-core", - "target": "npm:@sentry/cli", - "type": "static" - }, - { - "source": "npm:@sentry/bundler-plugin-core", - "target": "npm:dotenv@16.6.1", - "type": "static" - }, - { - "source": "npm:@sentry/bundler-plugin-core", - "target": "npm:find-up", - "type": "static" - }, - { - "source": "npm:@sentry/bundler-plugin-core", - "target": "npm:glob", - "type": "static" - }, - { - "source": "npm:@sentry/bundler-plugin-core", - "target": "npm:magic-string", - "type": "static" - } - ], - "npm:@sentry/cli": [ - { - "source": "npm:@sentry/cli", - "target": "npm:https-proxy-agent", - "type": "static" - }, - { - "source": "npm:@sentry/cli", - "target": "npm:node-fetch@2.7.0", - "type": "static" - }, - { - "source": "npm:@sentry/cli", - "target": "npm:progress", - "type": "static" - }, - { - "source": "npm:@sentry/cli", - "target": "npm:proxy-from-env", - "type": "static" - }, - { - "source": "npm:@sentry/cli", - "target": "npm:which@2.0.2", - "type": "static" - }, - { - "source": "npm:@sentry/cli", - "target": "npm:@sentry/cli-darwin", - "type": "static" - }, - { - "source": "npm:@sentry/cli", - "target": "npm:@sentry/cli-linux-arm", - "type": "static" - }, - { - "source": "npm:@sentry/cli", - "target": "npm:@sentry/cli-linux-arm64", - "type": "static" - }, - { - "source": "npm:@sentry/cli", - "target": "npm:@sentry/cli-linux-i686", - "type": "static" - }, - { - "source": "npm:@sentry/cli", - "target": "npm:@sentry/cli-linux-x64", - "type": "static" - }, - { - "source": "npm:@sentry/cli", - "target": "npm:@sentry/cli-win32-arm64", - "type": "static" - }, - { - "source": "npm:@sentry/cli", - "target": "npm:@sentry/cli-win32-i686", - "type": "static" - }, - { - "source": "npm:@sentry/cli", - "target": "npm:@sentry/cli-win32-x64", - "type": "static" - } - ], - "npm:@sentry/react": [ - { - "source": "npm:@sentry/react", - "target": "npm:@sentry/browser", - "type": "static" - }, - { - "source": "npm:@sentry/react", - "target": "npm:@sentry/core", - "type": "static" - }, - { - "source": "npm:@sentry/react", - "target": "npm:react", - "type": "static" - } - ], - "npm:@sentry/rollup-plugin": [ - { - "source": "npm:@sentry/rollup-plugin", - "target": "npm:@sentry/bundler-plugin-core", - "type": "static" - }, - { - "source": "npm:@sentry/rollup-plugin", - "target": "npm:magic-string", - "type": "static" - } - ], - "npm:@sentry/solid": [ - { - "source": "npm:@sentry/solid", - "target": "npm:@sentry/browser", - "type": "static" - }, - { - "source": "npm:@sentry/solid", - "target": "npm:@sentry/core", - "type": "static" - }, - { - "source": "npm:@sentry/solid", - "target": "npm:solid-js", - "type": "static" - } - ], - "npm:@sentry/vite-plugin": [ - { - "source": "npm:@sentry/vite-plugin", - "target": "npm:@sentry/bundler-plugin-core", - "type": "static" - }, - { - "source": "npm:@sentry/vite-plugin", - "target": "npm:@sentry/rollup-plugin", - "type": "static" - } - ], - "npm:@sentry/vue": [ - { - "source": "npm:@sentry/vue", - "target": "npm:@sentry/browser", - "type": "static" - }, - { - "source": "npm:@sentry/vue", - "target": "npm:@sentry/core", - "type": "static" - }, - { - "source": "npm:@sentry/vue", - "target": "npm:vue", - "type": "static" - } - ], - "npm:@solid-primitives/props": [ - { - "source": "npm:@solid-primitives/props", - "target": "npm:@solid-primitives/utils", - "type": "static" - }, - { - "source": "npm:@solid-primitives/props", - "target": "npm:solid-js", - "type": "static" - } - ], - "npm:@solid-primitives/refs": [ - { - "source": "npm:@solid-primitives/refs", - "target": "npm:@solid-primitives/utils", - "type": "static" - }, - { - "source": "npm:@solid-primitives/refs", - "target": "npm:solid-js", - "type": "static" - } - ], - "npm:@solid-primitives/scheduled": [ - { - "source": "npm:@solid-primitives/scheduled", - "target": "npm:solid-js", - "type": "static" - } - ], - "npm:@solid-primitives/transition-group": [ - { - "source": "npm:@solid-primitives/transition-group", - "target": "npm:solid-js", - "type": "static" - } - ], - "npm:@solid-primitives/utils": [ - { - "source": "npm:@solid-primitives/utils", - "target": "npm:solid-js", - "type": "static" - } - ], - "npm:@szmarczak/http-timer": [ - { - "source": "npm:@szmarczak/http-timer", - "target": "npm:defer-to-connect", - "type": "static" - } - ], - "npm:@tailwindcss/node": [ - { - "source": "npm:@tailwindcss/node", - "target": "npm:@jridgewell/remapping", - "type": "static" - }, - { - "source": "npm:@tailwindcss/node", - "target": "npm:enhanced-resolve", - "type": "static" - }, - { - "source": "npm:@tailwindcss/node", - "target": "npm:jiti", - "type": "static" - }, - { - "source": "npm:@tailwindcss/node", - "target": "npm:lightningcss", - "type": "static" - }, - { - "source": "npm:@tailwindcss/node", - "target": "npm:magic-string", - "type": "static" - }, - { - "source": "npm:@tailwindcss/node", - "target": "npm:source-map-js", - "type": "static" - }, - { - "source": "npm:@tailwindcss/node", - "target": "npm:tailwindcss", - "type": "static" - } - ], - "npm:@tailwindcss/oxide": [ - { - "source": "npm:@tailwindcss/oxide", - "target": "npm:@tailwindcss/oxide-android-arm64", - "type": "static" - }, - { - "source": "npm:@tailwindcss/oxide", - "target": "npm:@tailwindcss/oxide-darwin-arm64", - "type": "static" - }, - { - "source": "npm:@tailwindcss/oxide", - "target": "npm:@tailwindcss/oxide-darwin-x64", - "type": "static" - }, - { - "source": "npm:@tailwindcss/oxide", - "target": "npm:@tailwindcss/oxide-freebsd-x64", - "type": "static" - }, - { - "source": "npm:@tailwindcss/oxide", - "target": "npm:@tailwindcss/oxide-linux-arm-gnueabihf", - "type": "static" - }, - { - "source": "npm:@tailwindcss/oxide", - "target": "npm:@tailwindcss/oxide-linux-arm64-gnu", - "type": "static" - }, - { - "source": "npm:@tailwindcss/oxide", - "target": "npm:@tailwindcss/oxide-linux-arm64-musl", - "type": "static" - }, - { - "source": "npm:@tailwindcss/oxide", - "target": "npm:@tailwindcss/oxide-linux-x64-gnu", - "type": "static" - }, - { - "source": "npm:@tailwindcss/oxide", - "target": "npm:@tailwindcss/oxide-linux-x64-musl", - "type": "static" - }, - { - "source": "npm:@tailwindcss/oxide", - "target": "npm:@tailwindcss/oxide-wasm32-wasi", - "type": "static" - }, - { - "source": "npm:@tailwindcss/oxide", - "target": "npm:@tailwindcss/oxide-win32-arm64-msvc", - "type": "static" - }, - { - "source": "npm:@tailwindcss/oxide", - "target": "npm:@tailwindcss/oxide-win32-x64-msvc", - "type": "static" - } - ], - "npm:@tailwindcss/vite": [ - { - "source": "npm:@tailwindcss/vite", - "target": "npm:@tailwindcss/node", - "type": "static" - }, - { - "source": "npm:@tailwindcss/vite", - "target": "npm:@tailwindcss/oxide", - "type": "static" - }, - { - "source": "npm:@tailwindcss/vite", - "target": "npm:tailwindcss", - "type": "static" - }, - { - "source": "npm:@tailwindcss/vite", - "target": "npm:vite", - "type": "static" - } - ], - "npm:@trpc/client": [ - { - "source": "npm:@trpc/client", - "target": "npm:@trpc/server", - "type": "static" - }, - { - "source": "npm:@trpc/client", - "target": "npm:typescript", - "type": "static" - } - ], - "npm:@trpc/server": [ - { - "source": "npm:@trpc/server", - "target": "npm:typescript", - "type": "static" - } - ], - "npm:@ts-morph/common": [ - { - "source": "npm:@ts-morph/common", - "target": "npm:fast-glob", - "type": "static" - }, - { - "source": "npm:@ts-morph/common", - "target": "npm:minimatch@10.2.3", - "type": "static" - }, - { - "source": "npm:@ts-morph/common", - "target": "npm:path-browserify", - "type": "static" - } - ], - "npm:@ts-rest/core": [ - { - "source": "npm:@ts-rest/core", - "target": "npm:@types/node", - "type": "static" - }, - { - "source": "npm:@ts-rest/core", - "target": "npm:zod", - "type": "static" - } - ], - "npm:@ts-rest/serverless": [ - { - "source": "npm:@ts-rest/serverless", - "target": "npm:@ts-rest/core", - "type": "static" - }, - { - "source": "npm:@ts-rest/serverless", - "target": "npm:itty-router", - "type": "static" - }, - { - "source": "npm:@ts-rest/serverless", - "target": "npm:@types/aws-lambda", - "type": "static" - }, - { - "source": "npm:@ts-rest/serverless", - "target": "npm:zod", - "type": "static" - } - ], - "npm:@tybys/wasm-util@0.10.1": [ - { - "source": "npm:@tybys/wasm-util@0.10.1", - "target": "npm:tslib", - "type": "static" - } - ], - "npm:@tybys/wasm-util": [ - { - "source": "npm:@tybys/wasm-util", - "target": "npm:tslib", - "type": "static" - } - ], - "npm:@types/babel__core": [ - { - "source": "npm:@types/babel__core", - "target": "npm:@babel/parser", - "type": "static" - }, - { - "source": "npm:@types/babel__core", - "target": "npm:@babel/types", - "type": "static" - }, - { - "source": "npm:@types/babel__core", - "target": "npm:@types/babel__generator", - "type": "static" - }, - { - "source": "npm:@types/babel__core", - "target": "npm:@types/babel__template", - "type": "static" - }, - { - "source": "npm:@types/babel__core", - "target": "npm:@types/babel__traverse", - "type": "static" - } - ], - "npm:@types/babel__generator": [ - { - "source": "npm:@types/babel__generator", - "target": "npm:@babel/types", - "type": "static" - } - ], - "npm:@types/babel__template": [ - { - "source": "npm:@types/babel__template", - "target": "npm:@babel/parser", - "type": "static" - }, - { - "source": "npm:@types/babel__template", - "target": "npm:@babel/types", - "type": "static" - } - ], - "npm:@types/babel__traverse": [ - { - "source": "npm:@types/babel__traverse", - "target": "npm:@babel/types", - "type": "static" - } - ], - "npm:@types/better-sqlite3": [ - { - "source": "npm:@types/better-sqlite3", - "target": "npm:@types/node", - "type": "static" - } - ], - "npm:@types/body-parser": [ - { - "source": "npm:@types/body-parser", - "target": "npm:@types/connect", - "type": "static" - }, - { - "source": "npm:@types/body-parser", - "target": "npm:@types/node", - "type": "static" - } - ], - "npm:@types/cacheable-request": [ - { - "source": "npm:@types/cacheable-request", - "target": "npm:@types/http-cache-semantics", - "type": "static" - }, - { - "source": "npm:@types/cacheable-request", - "target": "npm:@types/keyv", - "type": "static" - }, - { - "source": "npm:@types/cacheable-request", - "target": "npm:@types/node", - "type": "static" - }, - { - "source": "npm:@types/cacheable-request", - "target": "npm:@types/responselike", - "type": "static" - } - ], - "npm:@types/chai": [ - { - "source": "npm:@types/chai", - "target": "npm:@types/deep-eql", - "type": "static" - } - ], - "npm:@types/connect": [ - { - "source": "npm:@types/connect", - "target": "npm:@types/node", - "type": "static" - } - ], - "npm:@types/debug": [ - { - "source": "npm:@types/debug", - "target": "npm:@types/ms", - "type": "static" - } - ], - "npm:@types/eslint": [ - { - "source": "npm:@types/eslint", - "target": "npm:@types/estree", - "type": "static" - }, - { - "source": "npm:@types/eslint", - "target": "npm:@types/json-schema", - "type": "static" - } - ], - "npm:@types/express-serve-static-core": [ - { - "source": "npm:@types/express-serve-static-core", - "target": "npm:@types/node", - "type": "static" - }, - { - "source": "npm:@types/express-serve-static-core", - "target": "npm:@types/qs", - "type": "static" - }, - { - "source": "npm:@types/express-serve-static-core", - "target": "npm:@types/range-parser", - "type": "static" - }, - { - "source": "npm:@types/express-serve-static-core", - "target": "npm:@types/send", - "type": "static" - } - ], - "npm:@types/express": [ - { - "source": "npm:@types/express", - "target": "npm:@types/body-parser", - "type": "static" - }, - { - "source": "npm:@types/express", - "target": "npm:@types/express-serve-static-core", - "type": "static" - }, - { - "source": "npm:@types/express", - "target": "npm:@types/serve-static", - "type": "static" - } - ], - "npm:@types/keyv": [ - { - "source": "npm:@types/keyv", - "target": "npm:@types/node", - "type": "static" - } - ], - "npm:@types/mdast": [ - { - "source": "npm:@types/mdast", - "target": "npm:@types/unist@3.0.3", - "type": "static" - } - ], - "npm:@types/node": [ - { - "source": "npm:@types/node", - "target": "npm:undici-types", - "type": "static" - } - ], - "npm:@types/react-dom": [ - { - "source": "npm:@types/react-dom", - "target": "npm:@types/react", - "type": "static" - } - ], - "npm:@types/react": [ - { - "source": "npm:@types/react", - "target": "npm:csstype", - "type": "static" - } - ], - "npm:@types/responselike": [ - { - "source": "npm:@types/responselike", - "target": "npm:@types/node", - "type": "static" - } - ], - "npm:@types/send": [ - { - "source": "npm:@types/send", - "target": "npm:@types/node", - "type": "static" - } - ], - "npm:@types/serve-static": [ - { - "source": "npm:@types/serve-static", - "target": "npm:@types/http-errors", - "type": "static" - }, - { - "source": "npm:@types/serve-static", - "target": "npm:@types/node", - "type": "static" - } - ], - "npm:@types/yauzl": [ - { - "source": "npm:@types/yauzl", - "target": "npm:@types/node", - "type": "static" - } - ], - "npm:@typescript-eslint/eslint-plugin": [ - { - "source": "npm:@typescript-eslint/eslint-plugin", - "target": "npm:@eslint-community/regexpp", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/eslint-plugin", - "target": "npm:@typescript-eslint/parser", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/eslint-plugin", - "target": "npm:@typescript-eslint/scope-manager", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/eslint-plugin", - "target": "npm:@typescript-eslint/type-utils", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/eslint-plugin", - "target": "npm:@typescript-eslint/utils", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/eslint-plugin", - "target": "npm:@typescript-eslint/visitor-keys", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/eslint-plugin", - "target": "npm:eslint", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/eslint-plugin", - "target": "npm:ignore@7.0.5", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/eslint-plugin", - "target": "npm:natural-compare", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/eslint-plugin", - "target": "npm:ts-api-utils", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/eslint-plugin", - "target": "npm:typescript", - "type": "static" - } - ], - "npm:@typescript-eslint/parser": [ - { - "source": "npm:@typescript-eslint/parser", - "target": "npm:@typescript-eslint/scope-manager", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/parser", - "target": "npm:@typescript-eslint/types", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/parser", - "target": "npm:@typescript-eslint/typescript-estree", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/parser", - "target": "npm:@typescript-eslint/visitor-keys", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/parser", - "target": "npm:debug", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/parser", - "target": "npm:eslint", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/parser", - "target": "npm:typescript", - "type": "static" - } - ], - "npm:@typescript-eslint/project-service": [ - { - "source": "npm:@typescript-eslint/project-service", - "target": "npm:@typescript-eslint/tsconfig-utils", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/project-service", - "target": "npm:@typescript-eslint/types", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/project-service", - "target": "npm:debug", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/project-service", - "target": "npm:typescript", - "type": "static" - } - ], - "npm:@typescript-eslint/scope-manager": [ - { - "source": "npm:@typescript-eslint/scope-manager", - "target": "npm:@typescript-eslint/types", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/scope-manager", - "target": "npm:@typescript-eslint/visitor-keys", - "type": "static" - } - ], - "npm:@typescript-eslint/tsconfig-utils": [ - { - "source": "npm:@typescript-eslint/tsconfig-utils", - "target": "npm:typescript", - "type": "static" - } - ], - "npm:@typescript-eslint/type-utils": [ - { - "source": "npm:@typescript-eslint/type-utils", - "target": "npm:@typescript-eslint/types", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/type-utils", - "target": "npm:@typescript-eslint/typescript-estree", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/type-utils", - "target": "npm:@typescript-eslint/utils", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/type-utils", - "target": "npm:debug", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/type-utils", - "target": "npm:eslint", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/type-utils", - "target": "npm:ts-api-utils", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/type-utils", - "target": "npm:typescript", - "type": "static" - } - ], - "npm:@typescript-eslint/typescript-estree": [ - { - "source": "npm:@typescript-eslint/typescript-estree", - "target": "npm:@typescript-eslint/project-service", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/typescript-estree", - "target": "npm:@typescript-eslint/tsconfig-utils", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/typescript-estree", - "target": "npm:@typescript-eslint/types", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/typescript-estree", - "target": "npm:@typescript-eslint/visitor-keys", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/typescript-estree", - "target": "npm:debug", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/typescript-estree", - "target": "npm:minimatch@10.2.3", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/typescript-estree", - "target": "npm:semver@7.7.4", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/typescript-estree", - "target": "npm:tinyglobby", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/typescript-estree", - "target": "npm:ts-api-utils", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/typescript-estree", - "target": "npm:typescript", - "type": "static" - } - ], - "npm:@typescript-eslint/utils": [ - { - "source": "npm:@typescript-eslint/utils", - "target": "npm:@eslint-community/eslint-utils", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/utils", - "target": "npm:@typescript-eslint/scope-manager", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/utils", - "target": "npm:@typescript-eslint/types", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/utils", - "target": "npm:@typescript-eslint/typescript-estree", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/utils", - "target": "npm:eslint", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/utils", - "target": "npm:typescript", - "type": "static" - } - ], - "npm:@typescript-eslint/visitor-keys": [ - { - "source": "npm:@typescript-eslint/visitor-keys", - "target": "npm:@typescript-eslint/types", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/visitor-keys", - "target": "npm:eslint-visitor-keys@5.0.1", - "type": "static" - } - ], - "npm:@universal-middleware/cloudflare": [ - { - "source": "npm:@universal-middleware/cloudflare", - "target": "npm:@universal-middleware/core", - "type": "static" - } - ], - "npm:@universal-middleware/core": [ - { - "source": "npm:@universal-middleware/core", - "target": "npm:regexparam", - "type": "static" - }, - { - "source": "npm:@universal-middleware/core", - "target": "npm:tough-cookie", - "type": "static" - }, - { - "source": "npm:@universal-middleware/core", - "target": "npm:@cloudflare/workers-types", - "type": "static" - }, - { - "source": "npm:@universal-middleware/core", - "target": "npm:@types/express", - "type": "static" - }, - { - "source": "npm:@universal-middleware/core", - "target": "npm:fastify", - "type": "static" - }, - { - "source": "npm:@universal-middleware/core", - "target": "npm:h3", - "type": "static" - }, - { - "source": "npm:@universal-middleware/core", - "target": "npm:hono", - "type": "static" - }, - { - "source": "npm:@universal-middleware/core", - "target": "npm:srvx", - "type": "static" - } - ], - "npm:@universal-middleware/express": [ - { - "source": "npm:@universal-middleware/express", - "target": "npm:@universal-middleware/core", - "type": "static" - } - ], - "npm:@universal-middleware/fastify": [ - { - "source": "npm:@universal-middleware/fastify", - "target": "npm:@universal-middleware/core", - "type": "static" - }, - { - "source": "npm:@universal-middleware/fastify", - "target": "npm:@universal-middleware/express", - "type": "static" - }, - { - "source": "npm:@universal-middleware/fastify", - "target": "npm:fastify-raw-body", - "type": "static" - } - ], - "npm:@universal-middleware/h3": [ - { - "source": "npm:@universal-middleware/h3", - "target": "npm:@universal-middleware/core", - "type": "static" - } - ], - "npm:@universal-middleware/hono": [ - { - "source": "npm:@universal-middleware/hono", - "target": "npm:@universal-middleware/core", - "type": "static" - } - ], - "npm:@universal-middleware/sirv": [ - { - "source": "npm:@universal-middleware/sirv", - "target": "npm:mrmime", - "type": "static" - }, - { - "source": "npm:@universal-middleware/sirv", - "target": "npm:totalist", - "type": "static" - } - ], - "npm:@universal-middleware/srvx": [ - { - "source": "npm:@universal-middleware/srvx", - "target": "npm:@universal-middleware/core", - "type": "static" - } - ], - "npm:@universal-middleware/vercel": [ - { - "source": "npm:@universal-middleware/vercel", - "target": "npm:@universal-middleware/core", - "type": "static" - }, - { - "source": "npm:@universal-middleware/vercel", - "target": "npm:@universal-middleware/express", - "type": "static" - }, - { - "source": "npm:@universal-middleware/vercel", - "target": "npm:@universal-middleware/h3", - "type": "static" - }, - { - "source": "npm:@universal-middleware/vercel", - "target": "npm:express", - "type": "static" - }, - { - "source": "npm:@universal-middleware/vercel", - "target": "npm:fastify", - "type": "static" - }, - { - "source": "npm:@universal-middleware/vercel", - "target": "npm:h3", - "type": "static" - }, - { - "source": "npm:@universal-middleware/vercel", - "target": "npm:hono", - "type": "static" - }, - { - "source": "npm:@universal-middleware/vercel", - "target": "npm:srvx", - "type": "static" - } - ], - "npm:@vercel/nft@0.30.4": [ - { - "source": "npm:@vercel/nft@0.30.4", - "target": "npm:@mapbox/node-pre-gyp", - "type": "static" - }, - { - "source": "npm:@vercel/nft@0.30.4", - "target": "npm:@rollup/pluginutils", - "type": "static" - }, - { - "source": "npm:@vercel/nft@0.30.4", - "target": "npm:acorn", - "type": "static" - }, - { - "source": "npm:@vercel/nft@0.30.4", - "target": "npm:acorn-import-attributes", - "type": "static" - }, - { - "source": "npm:@vercel/nft@0.30.4", - "target": "npm:async-sema", - "type": "static" - }, - { - "source": "npm:@vercel/nft@0.30.4", - "target": "npm:bindings", - "type": "static" - }, - { - "source": "npm:@vercel/nft@0.30.4", - "target": "npm:estree-walker@2.0.2", - "type": "static" - }, - { - "source": "npm:@vercel/nft@0.30.4", - "target": "npm:glob@10.5.0", - "type": "static" - }, - { - "source": "npm:@vercel/nft@0.30.4", - "target": "npm:graceful-fs", - "type": "static" - }, - { - "source": "npm:@vercel/nft@0.30.4", - "target": "npm:node-gyp-build", - "type": "static" - }, - { - "source": "npm:@vercel/nft@0.30.4", - "target": "npm:picomatch", - "type": "static" - }, - { - "source": "npm:@vercel/nft@0.30.4", - "target": "npm:resolve-from", - "type": "static" - } - ], - "npm:@vercel/nft": [ - { - "source": "npm:@vercel/nft", - "target": "npm:@mapbox/node-pre-gyp", - "type": "static" - }, - { - "source": "npm:@vercel/nft", - "target": "npm:@rollup/pluginutils", - "type": "static" - }, - { - "source": "npm:@vercel/nft", - "target": "npm:acorn", - "type": "static" - }, - { - "source": "npm:@vercel/nft", - "target": "npm:acorn-import-attributes", - "type": "static" - }, - { - "source": "npm:@vercel/nft", - "target": "npm:async-sema", - "type": "static" - }, - { - "source": "npm:@vercel/nft", - "target": "npm:bindings", - "type": "static" - }, - { - "source": "npm:@vercel/nft", - "target": "npm:estree-walker@2.0.2", - "type": "static" - }, - { - "source": "npm:@vercel/nft", - "target": "npm:glob", - "type": "static" - }, - { - "source": "npm:@vercel/nft", - "target": "npm:graceful-fs", - "type": "static" - }, - { - "source": "npm:@vercel/nft", - "target": "npm:node-gyp-build", - "type": "static" - }, - { - "source": "npm:@vercel/nft", - "target": "npm:picomatch", - "type": "static" - }, - { - "source": "npm:@vercel/nft", - "target": "npm:resolve-from", - "type": "static" - } - ], - "npm:@vercel/routing-utils": [ - { - "source": "npm:@vercel/routing-utils", - "target": "npm:path-to-regexp@6.1.0", - "type": "static" - }, - { - "source": "npm:@vercel/routing-utils", - "target": "npm:path-to-regexp-updated", - "type": "static" - }, - { - "source": "npm:@vercel/routing-utils", - "target": "npm:ajv", - "type": "static" - } - ], - "npm:@vikejs/biome-config": [ - { - "source": "npm:@vikejs/biome-config", - "target": "npm:@biomejs/biome", - "type": "static" - } - ], - "npm:@vite-plugin-vercel/schemas": [ - { - "source": "npm:@vite-plugin-vercel/schemas", - "target": "npm:zod@4.3.6", - "type": "static" - } - ], - "npm:@vitejs/plugin-react": [ - { - "source": "npm:@vitejs/plugin-react", - "target": "npm:@rolldown/pluginutils", - "type": "static" - }, - { - "source": "npm:@vitejs/plugin-react", - "target": "npm:vite", - "type": "static" - } - ], - "npm:@vitejs/plugin-vue": [ - { - "source": "npm:@vitejs/plugin-vue", - "target": "npm:@rolldown/pluginutils@1.0.0-rc.2", - "type": "static" - }, - { - "source": "npm:@vitejs/plugin-vue", - "target": "npm:vite", - "type": "static" - }, - { - "source": "npm:@vitejs/plugin-vue", - "target": "npm:vue", - "type": "static" - } - ], - "npm:@vitest/expect": [ - { - "source": "npm:@vitest/expect", - "target": "npm:@standard-schema/spec", - "type": "static" - }, - { - "source": "npm:@vitest/expect", - "target": "npm:@types/chai", - "type": "static" - }, - { - "source": "npm:@vitest/expect", - "target": "npm:@vitest/spy", - "type": "static" - }, - { - "source": "npm:@vitest/expect", - "target": "npm:@vitest/utils", - "type": "static" - }, - { - "source": "npm:@vitest/expect", - "target": "npm:chai", - "type": "static" - }, - { - "source": "npm:@vitest/expect", - "target": "npm:tinyrainbow", - "type": "static" - } - ], - "npm:@vitest/mocker": [ - { - "source": "npm:@vitest/mocker", - "target": "npm:@vitest/spy", - "type": "static" - }, - { - "source": "npm:@vitest/mocker", - "target": "npm:estree-walker", - "type": "static" - }, - { - "source": "npm:@vitest/mocker", - "target": "npm:magic-string", - "type": "static" - }, - { - "source": "npm:@vitest/mocker", - "target": "npm:vite", - "type": "static" - } - ], - "npm:@vitest/pretty-format": [ - { - "source": "npm:@vitest/pretty-format", - "target": "npm:tinyrainbow", - "type": "static" - } - ], - "npm:@vitest/runner": [ - { - "source": "npm:@vitest/runner", - "target": "npm:@vitest/utils", - "type": "static" - }, - { - "source": "npm:@vitest/runner", - "target": "npm:pathe", - "type": "static" - } - ], - "npm:@vitest/snapshot": [ - { - "source": "npm:@vitest/snapshot", - "target": "npm:@vitest/pretty-format", - "type": "static" - }, - { - "source": "npm:@vitest/snapshot", - "target": "npm:@vitest/utils", - "type": "static" - }, - { - "source": "npm:@vitest/snapshot", - "target": "npm:magic-string", - "type": "static" - }, - { - "source": "npm:@vitest/snapshot", - "target": "npm:pathe", - "type": "static" - } - ], - "npm:@vitest/utils": [ - { - "source": "npm:@vitest/utils", - "target": "npm:@vitest/pretty-format", - "type": "static" - }, - { - "source": "npm:@vitest/utils", - "target": "npm:convert-source-map", - "type": "static" - }, - { - "source": "npm:@vitest/utils", - "target": "npm:tinyrainbow", - "type": "static" - } - ], - "npm:@vue/compiler-core": [ - { - "source": "npm:@vue/compiler-core", - "target": "npm:@babel/parser", - "type": "static" - }, - { - "source": "npm:@vue/compiler-core", - "target": "npm:@vue/shared", - "type": "static" - }, - { - "source": "npm:@vue/compiler-core", - "target": "npm:entities", - "type": "static" - }, - { - "source": "npm:@vue/compiler-core", - "target": "npm:estree-walker@2.0.2", - "type": "static" - }, - { - "source": "npm:@vue/compiler-core", - "target": "npm:source-map-js", - "type": "static" - } - ], - "npm:@vue/compiler-dom": [ - { - "source": "npm:@vue/compiler-dom", - "target": "npm:@vue/compiler-core", - "type": "static" - }, - { - "source": "npm:@vue/compiler-dom", - "target": "npm:@vue/shared", - "type": "static" - } - ], - "npm:@vue/compiler-sfc": [ - { - "source": "npm:@vue/compiler-sfc", - "target": "npm:@babel/parser", - "type": "static" - }, - { - "source": "npm:@vue/compiler-sfc", - "target": "npm:@vue/compiler-core", - "type": "static" - }, - { - "source": "npm:@vue/compiler-sfc", - "target": "npm:@vue/compiler-dom", - "type": "static" - }, - { - "source": "npm:@vue/compiler-sfc", - "target": "npm:@vue/compiler-ssr", - "type": "static" - }, - { - "source": "npm:@vue/compiler-sfc", - "target": "npm:@vue/shared", - "type": "static" - }, - { - "source": "npm:@vue/compiler-sfc", - "target": "npm:estree-walker@2.0.2", - "type": "static" - }, - { - "source": "npm:@vue/compiler-sfc", - "target": "npm:magic-string", - "type": "static" - }, - { - "source": "npm:@vue/compiler-sfc", - "target": "npm:postcss", - "type": "static" - }, - { - "source": "npm:@vue/compiler-sfc", - "target": "npm:source-map-js", - "type": "static" - } - ], - "npm:@vue/compiler-ssr": [ - { - "source": "npm:@vue/compiler-ssr", - "target": "npm:@vue/compiler-dom", - "type": "static" - }, - { - "source": "npm:@vue/compiler-ssr", - "target": "npm:@vue/shared", - "type": "static" - } - ], - "npm:@vue/reactivity": [ - { - "source": "npm:@vue/reactivity", - "target": "npm:@vue/shared", - "type": "static" - } - ], - "npm:@vue/runtime-core": [ - { - "source": "npm:@vue/runtime-core", - "target": "npm:@vue/reactivity", - "type": "static" - }, - { - "source": "npm:@vue/runtime-core", - "target": "npm:@vue/shared", - "type": "static" - } - ], - "npm:@vue/runtime-dom": [ - { - "source": "npm:@vue/runtime-dom", - "target": "npm:@vue/reactivity", - "type": "static" - }, - { - "source": "npm:@vue/runtime-dom", - "target": "npm:@vue/runtime-core", - "type": "static" - }, - { - "source": "npm:@vue/runtime-dom", - "target": "npm:@vue/shared", - "type": "static" - }, - { - "source": "npm:@vue/runtime-dom", - "target": "npm:csstype", - "type": "static" - } - ], - "npm:@vue/server-renderer": [ - { - "source": "npm:@vue/server-renderer", - "target": "npm:@vue/compiler-ssr", - "type": "static" - }, - { - "source": "npm:@vue/server-renderer", - "target": "npm:@vue/shared", - "type": "static" - }, - { - "source": "npm:@vue/server-renderer", - "target": "npm:vue", - "type": "static" - } - ], - "npm:@yarnpkg/parsers": [ - { - "source": "npm:@yarnpkg/parsers", - "target": "npm:js-yaml@3.14.2", - "type": "static" - }, - { - "source": "npm:@yarnpkg/parsers", - "target": "npm:tslib", - "type": "static" - } - ], - "npm:@zkochan/js-yaml": [ - { - "source": "npm:@zkochan/js-yaml", - "target": "npm:argparse", - "type": "static" - } - ], - "npm:accepts": [ - { - "source": "npm:accepts", - "target": "npm:mime-types", - "type": "static" - }, - { - "source": "npm:accepts", - "target": "npm:negotiator", - "type": "static" - } - ], - "npm:acorn-import-attributes": [ - { - "source": "npm:acorn-import-attributes", - "target": "npm:acorn", - "type": "static" - } - ], - "npm:acorn-jsx": [ - { - "source": "npm:acorn-jsx", - "target": "npm:acorn", - "type": "static" - } - ], - "npm:agent-base@6.0.2": [ - { - "source": "npm:agent-base@6.0.2", - "target": "npm:debug", - "type": "static" - } - ], - "npm:ajv-formats": [ - { - "source": "npm:ajv-formats", - "target": "npm:ajv@8.18.0", - "type": "static" - } - ], - "npm:ajv": [ - { - "source": "npm:ajv", - "target": "npm:fast-deep-equal", - "type": "static" - }, - { - "source": "npm:ajv", - "target": "npm:fast-json-stable-stringify", - "type": "static" - }, - { - "source": "npm:ajv", - "target": "npm:json-schema-traverse", - "type": "static" - }, - { - "source": "npm:ajv", - "target": "npm:uri-js", - "type": "static" - } - ], - "npm:ajv@8.18.0": [ - { - "source": "npm:ajv@8.18.0", - "target": "npm:fast-deep-equal", - "type": "static" - }, - { - "source": "npm:ajv@8.18.0", - "target": "npm:fast-uri", - "type": "static" - }, - { - "source": "npm:ajv@8.18.0", - "target": "npm:json-schema-traverse@1.0.0", - "type": "static" - }, - { - "source": "npm:ajv@8.18.0", - "target": "npm:require-from-string", - "type": "static" - } - ], - "npm:ansi-styles@4.3.0": [ - { - "source": "npm:ansi-styles@4.3.0", - "target": "npm:color-convert", - "type": "static" - } - ], - "npm:argparse@1.0.10": [ - { - "source": "npm:argparse@1.0.10", - "target": "npm:sprintf-js", - "type": "static" - } - ], - "npm:array-buffer-byte-length": [ - { - "source": "npm:array-buffer-byte-length", - "target": "npm:call-bound", - "type": "static" - }, - { - "source": "npm:array-buffer-byte-length", - "target": "npm:is-array-buffer", - "type": "static" - } - ], - "npm:array-includes": [ - { - "source": "npm:array-includes", - "target": "npm:call-bind", - "type": "static" - }, - { - "source": "npm:array-includes", - "target": "npm:call-bound", - "type": "static" - }, - { - "source": "npm:array-includes", - "target": "npm:define-properties", - "type": "static" - }, - { - "source": "npm:array-includes", - "target": "npm:es-abstract", - "type": "static" - }, - { - "source": "npm:array-includes", - "target": "npm:es-object-atoms", - "type": "static" - }, - { - "source": "npm:array-includes", - "target": "npm:get-intrinsic", - "type": "static" - }, - { - "source": "npm:array-includes", - "target": "npm:is-string", - "type": "static" - }, - { - "source": "npm:array-includes", - "target": "npm:math-intrinsics", - "type": "static" - } - ], - "npm:array.prototype.findlast": [ - { - "source": "npm:array.prototype.findlast", - "target": "npm:call-bind", - "type": "static" - }, - { - "source": "npm:array.prototype.findlast", - "target": "npm:define-properties", - "type": "static" - }, - { - "source": "npm:array.prototype.findlast", - "target": "npm:es-abstract", - "type": "static" - }, - { - "source": "npm:array.prototype.findlast", - "target": "npm:es-errors", - "type": "static" - }, - { - "source": "npm:array.prototype.findlast", - "target": "npm:es-object-atoms", - "type": "static" - }, - { - "source": "npm:array.prototype.findlast", - "target": "npm:es-shim-unscopables", - "type": "static" - } - ], - "npm:array.prototype.flat": [ - { - "source": "npm:array.prototype.flat", - "target": "npm:call-bind", - "type": "static" - }, - { - "source": "npm:array.prototype.flat", - "target": "npm:define-properties", - "type": "static" - }, - { - "source": "npm:array.prototype.flat", - "target": "npm:es-abstract", - "type": "static" - }, - { - "source": "npm:array.prototype.flat", - "target": "npm:es-shim-unscopables", - "type": "static" - } - ], - "npm:array.prototype.flatmap": [ - { - "source": "npm:array.prototype.flatmap", - "target": "npm:call-bind", - "type": "static" - }, - { - "source": "npm:array.prototype.flatmap", - "target": "npm:define-properties", - "type": "static" - }, - { - "source": "npm:array.prototype.flatmap", - "target": "npm:es-abstract", - "type": "static" - }, - { - "source": "npm:array.prototype.flatmap", - "target": "npm:es-shim-unscopables", - "type": "static" - } - ], - "npm:array.prototype.tosorted": [ - { - "source": "npm:array.prototype.tosorted", - "target": "npm:call-bind", - "type": "static" - }, - { - "source": "npm:array.prototype.tosorted", - "target": "npm:define-properties", - "type": "static" - }, - { - "source": "npm:array.prototype.tosorted", - "target": "npm:es-abstract", - "type": "static" - }, - { - "source": "npm:array.prototype.tosorted", - "target": "npm:es-errors", - "type": "static" - }, - { - "source": "npm:array.prototype.tosorted", - "target": "npm:es-shim-unscopables", - "type": "static" - } - ], - "npm:arraybuffer.prototype.slice": [ - { - "source": "npm:arraybuffer.prototype.slice", - "target": "npm:array-buffer-byte-length", - "type": "static" - }, - { - "source": "npm:arraybuffer.prototype.slice", - "target": "npm:call-bind", - "type": "static" - }, - { - "source": "npm:arraybuffer.prototype.slice", - "target": "npm:define-properties", - "type": "static" - }, - { - "source": "npm:arraybuffer.prototype.slice", - "target": "npm:es-abstract", - "type": "static" - }, - { - "source": "npm:arraybuffer.prototype.slice", - "target": "npm:es-errors", - "type": "static" - }, - { - "source": "npm:arraybuffer.prototype.slice", - "target": "npm:get-intrinsic", - "type": "static" - }, - { - "source": "npm:arraybuffer.prototype.slice", - "target": "npm:is-array-buffer", - "type": "static" - } - ], - "npm:ast-kit": [ - { - "source": "npm:ast-kit", - "target": "npm:@babel/parser@8.0.0-rc.2", - "type": "static" - }, - { - "source": "npm:ast-kit", - "target": "npm:estree-walker", - "type": "static" - }, - { - "source": "npm:ast-kit", - "target": "npm:pathe", - "type": "static" - } - ], - "npm:ast-types": [ - { - "source": "npm:ast-types", - "target": "npm:tslib", - "type": "static" - } - ], - "npm:attributes-parser": [ - { - "source": "npm:attributes-parser", - "target": "npm:json-loose", - "type": "static" - } - ], - "npm:autoprefixer": [ - { - "source": "npm:autoprefixer", - "target": "npm:browserslist", - "type": "static" - }, - { - "source": "npm:autoprefixer", - "target": "npm:caniuse-lite", - "type": "static" - }, - { - "source": "npm:autoprefixer", - "target": "npm:fraction.js", - "type": "static" - }, - { - "source": "npm:autoprefixer", - "target": "npm:picocolors", - "type": "static" - }, - { - "source": "npm:autoprefixer", - "target": "npm:postcss", - "type": "static" - }, - { - "source": "npm:autoprefixer", - "target": "npm:postcss-value-parser", - "type": "static" - } - ], - "npm:available-typed-arrays": [ - { - "source": "npm:available-typed-arrays", - "target": "npm:possible-typed-array-names", - "type": "static" - } - ], - "npm:avvio": [ - { - "source": "npm:avvio", - "target": "npm:@fastify/error", - "type": "static" - }, - { - "source": "npm:avvio", - "target": "npm:fastq", - "type": "static" - } - ], - "npm:aws-cdk-lib": [ - { - "source": "npm:aws-cdk-lib", - "target": "npm:@aws-cdk/asset-awscli-v1", - "type": "static" - }, - { - "source": "npm:aws-cdk-lib", - "target": "npm:@aws-cdk/asset-node-proxy-agent-v6", - "type": "static" - }, - { - "source": "npm:aws-cdk-lib", - "target": "npm:@aws-cdk/cloud-assembly-schema", - "type": "static" - }, - { - "source": "npm:aws-cdk-lib", - "target": "npm:constructs", - "type": "static" - } - ], - "npm:axios": [ - { - "source": "npm:axios", - "target": "npm:follow-redirects", - "type": "static" - }, - { - "source": "npm:axios", - "target": "npm:form-data", - "type": "static" - }, - { - "source": "npm:axios", - "target": "npm:proxy-from-env", - "type": "static" - } - ], - "npm:babel-plugin-jsx-dom-expressions": [ - { - "source": "npm:babel-plugin-jsx-dom-expressions", - "target": "npm:@babel/core", - "type": "static" - }, - { - "source": "npm:babel-plugin-jsx-dom-expressions", - "target": "npm:@babel/helper-module-imports@7.18.6", - "type": "static" - }, - { - "source": "npm:babel-plugin-jsx-dom-expressions", - "target": "npm:@babel/plugin-syntax-jsx", - "type": "static" - }, - { - "source": "npm:babel-plugin-jsx-dom-expressions", - "target": "npm:@babel/types", - "type": "static" - }, - { - "source": "npm:babel-plugin-jsx-dom-expressions", - "target": "npm:html-entities", - "type": "static" - }, - { - "source": "npm:babel-plugin-jsx-dom-expressions", - "target": "npm:parse5", - "type": "static" - } - ], - "npm:babel-plugin-module-resolver": [ - { - "source": "npm:babel-plugin-module-resolver", - "target": "npm:find-babel-config", - "type": "static" - }, - { - "source": "npm:babel-plugin-module-resolver", - "target": "npm:glob@9.3.5", - "type": "static" - }, - { - "source": "npm:babel-plugin-module-resolver", - "target": "npm:pkg-up", - "type": "static" - }, - { - "source": "npm:babel-plugin-module-resolver", - "target": "npm:reselect", - "type": "static" - }, - { - "source": "npm:babel-plugin-module-resolver", - "target": "npm:resolve@1.22.10", - "type": "static" - } - ], - "npm:babel-preset-solid": [ - { - "source": "npm:babel-preset-solid", - "target": "npm:@babel/core", - "type": "static" - }, - { - "source": "npm:babel-preset-solid", - "target": "npm:babel-plugin-jsx-dom-expressions", - "type": "static" - }, - { - "source": "npm:babel-preset-solid", - "target": "npm:solid-js", - "type": "static" - } - ], - "npm:balanced-match@4.0.2": [ - { - "source": "npm:balanced-match@4.0.2", - "target": "npm:jackspeak", - "type": "static" - } - ], - "npm:bare-fs": [ - { - "source": "npm:bare-fs", - "target": "npm:bare-events", - "type": "static" - }, - { - "source": "npm:bare-fs", - "target": "npm:bare-path", - "type": "static" - }, - { - "source": "npm:bare-fs", - "target": "npm:bare-stream", - "type": "static" - }, - { - "source": "npm:bare-fs", - "target": "npm:bare-url", - "type": "static" - }, - { - "source": "npm:bare-fs", - "target": "npm:fast-fifo", - "type": "static" - } - ], - "npm:bare-path": [ - { - "source": "npm:bare-path", - "target": "npm:bare-os", - "type": "static" - } - ], - "npm:bare-stream": [ - { - "source": "npm:bare-stream", - "target": "npm:streamx", - "type": "static" - }, - { - "source": "npm:bare-stream", - "target": "npm:bare-events", - "type": "static" - } - ], - "npm:bare-url": [ - { - "source": "npm:bare-url", - "target": "npm:bare-path", - "type": "static" - } - ], - "npm:basic-auth": [ - { - "source": "npm:basic-auth", - "target": "npm:safe-buffer", - "type": "static" - } - ], - "npm:better-sqlite3": [ - { - "source": "npm:better-sqlite3", - "target": "npm:bindings", - "type": "static" - }, - { - "source": "npm:better-sqlite3", - "target": "npm:prebuild-install", - "type": "static" - } - ], - "npm:bindings": [ - { - "source": "npm:bindings", - "target": "npm:file-uri-to-path", - "type": "static" - } - ], - "npm:bl": [ - { - "source": "npm:bl", - "target": "npm:buffer", - "type": "static" - }, - { - "source": "npm:bl", - "target": "npm:inherits", - "type": "static" - }, - { - "source": "npm:bl", - "target": "npm:readable-stream", - "type": "static" - } - ], - "npm:body-parser": [ - { - "source": "npm:body-parser", - "target": "npm:bytes", - "type": "static" - }, - { - "source": "npm:body-parser", - "target": "npm:content-type", - "type": "static" - }, - { - "source": "npm:body-parser", - "target": "npm:debug", - "type": "static" - }, - { - "source": "npm:body-parser", - "target": "npm:http-errors", - "type": "static" - }, - { - "source": "npm:body-parser", - "target": "npm:iconv-lite@0.7.2", - "type": "static" - }, - { - "source": "npm:body-parser", - "target": "npm:on-finished", - "type": "static" - }, - { - "source": "npm:body-parser", - "target": "npm:qs", - "type": "static" - }, - { - "source": "npm:body-parser", - "target": "npm:raw-body", - "type": "static" - }, - { - "source": "npm:body-parser", - "target": "npm:type-is", - "type": "static" - } - ], - "npm:brace-expansion@1.1.12": [ - { - "source": "npm:brace-expansion@1.1.12", - "target": "npm:balanced-match", - "type": "static" - }, - { - "source": "npm:brace-expansion@1.1.12", - "target": "npm:concat-map", - "type": "static" - } - ], - "npm:brace-expansion@2.0.2": [ - { - "source": "npm:brace-expansion@2.0.2", - "target": "npm:balanced-match", - "type": "static" - } - ], - "npm:brace-expansion": [ - { - "source": "npm:brace-expansion", - "target": "npm:balanced-match@4.0.2", - "type": "static" - } - ], - "npm:braces": [ - { - "source": "npm:braces", - "target": "npm:fill-range", - "type": "static" - } - ], - "npm:browserless": [ - { - "source": "npm:browserless", - "target": "npm:@browserless/errors", - "type": "static" - }, - { - "source": "npm:browserless", - "target": "npm:@browserless/goto", - "type": "static" - }, - { - "source": "npm:browserless", - "target": "npm:@browserless/pdf", - "type": "static" - }, - { - "source": "npm:browserless", - "target": "npm:@browserless/screenshot", - "type": "static" - }, - { - "source": "npm:browserless", - "target": "npm:debug-logfmt", - "type": "static" - }, - { - "source": "npm:browserless", - "target": "npm:kill-process-group", - "type": "static" - }, - { - "source": "npm:browserless", - "target": "npm:p-reflect", - "type": "static" - }, - { - "source": "npm:browserless", - "target": "npm:p-retry", - "type": "static" - }, - { - "source": "npm:browserless", - "target": "npm:p-timeout", - "type": "static" - }, - { - "source": "npm:browserless", - "target": "npm:require-one-of", - "type": "static" - }, - { - "source": "npm:browserless", - "target": "npm:superlock", - "type": "static" - } - ], - "npm:browserslist": [ - { - "source": "npm:browserslist", - "target": "npm:baseline-browser-mapping", - "type": "static" - }, - { - "source": "npm:browserslist", - "target": "npm:caniuse-lite", - "type": "static" - }, - { - "source": "npm:browserslist", - "target": "npm:electron-to-chromium", - "type": "static" - }, - { - "source": "npm:browserslist", - "target": "npm:node-releases", - "type": "static" - }, - { - "source": "npm:browserslist", - "target": "npm:update-browserslist-db", - "type": "static" - } - ], - "npm:buffer": [ - { - "source": "npm:buffer", - "target": "npm:base64-js", - "type": "static" - }, - { - "source": "npm:buffer", - "target": "npm:ieee754", - "type": "static" - } - ], - "npm:bumpp": [ - { - "source": "npm:bumpp", - "target": "npm:args-tokenizer", - "type": "static" - }, - { - "source": "npm:bumpp", - "target": "npm:cac", - "type": "static" - }, - { - "source": "npm:bumpp", - "target": "npm:jsonc-parser", - "type": "static" - }, - { - "source": "npm:bumpp", - "target": "npm:package-manager-detector", - "type": "static" - }, - { - "source": "npm:bumpp", - "target": "npm:semver@7.7.4", - "type": "static" - }, - { - "source": "npm:bumpp", - "target": "npm:tinyexec", - "type": "static" - }, - { - "source": "npm:bumpp", - "target": "npm:tinyglobby", - "type": "static" - }, - { - "source": "npm:bumpp", - "target": "npm:unconfig", - "type": "static" - }, - { - "source": "npm:bumpp", - "target": "npm:yaml", - "type": "static" - } - ], - "npm:c12": [ - { - "source": "npm:c12", - "target": "npm:chokidar", - "type": "static" - }, - { - "source": "npm:c12", - "target": "npm:confbox", - "type": "static" - }, - { - "source": "npm:c12", - "target": "npm:defu", - "type": "static" - }, - { - "source": "npm:c12", - "target": "npm:dotenv@16.6.1", - "type": "static" - }, - { - "source": "npm:c12", - "target": "npm:exsolve", - "type": "static" - }, - { - "source": "npm:c12", - "target": "npm:giget", - "type": "static" - }, - { - "source": "npm:c12", - "target": "npm:jiti", - "type": "static" - }, - { - "source": "npm:c12", - "target": "npm:ohash", - "type": "static" - }, - { - "source": "npm:c12", - "target": "npm:pathe", - "type": "static" - }, - { - "source": "npm:c12", - "target": "npm:perfect-debounce", - "type": "static" - }, - { - "source": "npm:c12", - "target": "npm:pkg-types", - "type": "static" - }, - { - "source": "npm:c12", - "target": "npm:rc9", - "type": "static" - } - ], - "npm:cacache": [ - { - "source": "npm:cacache", - "target": "npm:@npmcli/fs", - "type": "static" - }, - { - "source": "npm:cacache", - "target": "npm:fs-minipass", - "type": "static" - }, - { - "source": "npm:cacache", - "target": "npm:glob@10.5.0", - "type": "static" - }, - { - "source": "npm:cacache", - "target": "npm:lru-cache@10.4.3", - "type": "static" - }, - { - "source": "npm:cacache", - "target": "npm:minipass", - "type": "static" - }, - { - "source": "npm:cacache", - "target": "npm:minipass-collect", - "type": "static" - }, - { - "source": "npm:cacache", - "target": "npm:minipass-flush", - "type": "static" - }, - { - "source": "npm:cacache", - "target": "npm:minipass-pipeline", - "type": "static" - }, - { - "source": "npm:cacache", - "target": "npm:p-map", - "type": "static" - }, - { - "source": "npm:cacache", - "target": "npm:ssri", - "type": "static" - }, - { - "source": "npm:cacache", - "target": "npm:tar", - "type": "static" - }, - { - "source": "npm:cacache", - "target": "npm:unique-filename", - "type": "static" - } - ], - "npm:cacheable-request": [ - { - "source": "npm:cacheable-request", - "target": "npm:clone-response", - "type": "static" - }, - { - "source": "npm:cacheable-request", - "target": "npm:get-stream@5.2.0", - "type": "static" - }, - { - "source": "npm:cacheable-request", - "target": "npm:http-cache-semantics", - "type": "static" - }, - { - "source": "npm:cacheable-request", - "target": "npm:keyv", - "type": "static" - }, - { - "source": "npm:cacheable-request", - "target": "npm:lowercase-keys", - "type": "static" - }, - { - "source": "npm:cacheable-request", - "target": "npm:normalize-url", - "type": "static" - }, - { - "source": "npm:cacheable-request", - "target": "npm:responselike", - "type": "static" - } - ], - "npm:call-bind-apply-helpers": [ - { - "source": "npm:call-bind-apply-helpers", - "target": "npm:es-errors", - "type": "static" - }, - { - "source": "npm:call-bind-apply-helpers", - "target": "npm:function-bind", - "type": "static" - } - ], - "npm:call-bind": [ - { - "source": "npm:call-bind", - "target": "npm:call-bind-apply-helpers", - "type": "static" - }, - { - "source": "npm:call-bind", - "target": "npm:es-define-property", - "type": "static" - }, - { - "source": "npm:call-bind", - "target": "npm:get-intrinsic", - "type": "static" - }, - { - "source": "npm:call-bind", - "target": "npm:set-function-length", - "type": "static" - } - ], - "npm:call-bound": [ - { - "source": "npm:call-bound", - "target": "npm:call-bind-apply-helpers", - "type": "static" - }, - { - "source": "npm:call-bound", - "target": "npm:get-intrinsic", - "type": "static" - } - ], - "npm:caniuse-api": [ - { - "source": "npm:caniuse-api", - "target": "npm:browserslist", - "type": "static" - }, - { - "source": "npm:caniuse-api", - "target": "npm:caniuse-lite", - "type": "static" - }, - { - "source": "npm:caniuse-api", - "target": "npm:lodash.memoize", - "type": "static" - }, - { - "source": "npm:caniuse-api", - "target": "npm:lodash.uniq", - "type": "static" - } - ], - "npm:cdk": [ - { - "source": "npm:cdk", - "target": "npm:aws-cdk", - "type": "static" - } - ], - "npm:chalk": [ - { - "source": "npm:chalk", - "target": "npm:ansi-styles@4.3.0", - "type": "static" - }, - { - "source": "npm:chalk", - "target": "npm:supports-color", - "type": "static" - } - ], - "npm:chevrotain": [ - { - "source": "npm:chevrotain", - "target": "npm:@chevrotain/cst-dts-gen", - "type": "static" - }, - { - "source": "npm:chevrotain", - "target": "npm:@chevrotain/gast", - "type": "static" - }, - { - "source": "npm:chevrotain", - "target": "npm:@chevrotain/types", - "type": "static" - }, - { - "source": "npm:chevrotain", - "target": "npm:@chevrotain/utils", - "type": "static" - }, - { - "source": "npm:chevrotain", - "target": "npm:lodash@4.17.21", - "type": "static" - }, - { - "source": "npm:chevrotain", - "target": "npm:regexp-to-ast", - "type": "static" - } - ], - "npm:chokidar": [ - { - "source": "npm:chokidar", - "target": "npm:readdirp", - "type": "static" - } - ], - "npm:chromium-bidi": [ - { - "source": "npm:chromium-bidi", - "target": "npm:devtools-protocol", - "type": "static" - }, - { - "source": "npm:chromium-bidi", - "target": "npm:mitt", - "type": "static" - }, - { - "source": "npm:chromium-bidi", - "target": "npm:zod", - "type": "static" - } - ], - "npm:citty@0.1.6": [ - { - "source": "npm:citty@0.1.6", - "target": "npm:consola", - "type": "static" - } - ], - "npm:class-variance-authority": [ - { - "source": "npm:class-variance-authority", - "target": "npm:clsx", - "type": "static" - } - ], - "npm:cli-cursor": [ - { - "source": "npm:cli-cursor", - "target": "npm:restore-cursor", - "type": "static" - } - ], - "npm:cliui": [ - { - "source": "npm:cliui", - "target": "npm:string-width", - "type": "static" - }, - { - "source": "npm:cliui", - "target": "npm:strip-ansi@6.0.1", - "type": "static" - }, - { - "source": "npm:cliui", - "target": "npm:wrap-ansi", - "type": "static" - } - ], - "npm:clone-response": [ - { - "source": "npm:clone-response", - "target": "npm:mimic-response@1.0.1", - "type": "static" - } - ], - "npm:color-convert": [ - { - "source": "npm:color-convert", - "target": "npm:color-name", - "type": "static" - } - ], - "npm:color-string": [ - { - "source": "npm:color-string", - "target": "npm:color-name", - "type": "static" - }, - { - "source": "npm:color-string", - "target": "npm:simple-swizzle", - "type": "static" - } - ], - "npm:color": [ - { - "source": "npm:color", - "target": "npm:color-convert", - "type": "static" - }, - { - "source": "npm:color", - "target": "npm:color-string", - "type": "static" - } - ], - "npm:combined-stream": [ - { - "source": "npm:combined-stream", - "target": "npm:delayed-stream", - "type": "static" - } - ], - "npm:cosmiconfig": [ - { - "source": "npm:cosmiconfig", - "target": "npm:env-paths", - "type": "static" - }, - { - "source": "npm:cosmiconfig", - "target": "npm:import-fresh", - "type": "static" - }, - { - "source": "npm:cosmiconfig", - "target": "npm:js-yaml", - "type": "static" - }, - { - "source": "npm:cosmiconfig", - "target": "npm:parse-json", - "type": "static" - }, - { - "source": "npm:cosmiconfig", - "target": "npm:typescript", - "type": "static" - } - ], - "npm:cross-spawn": [ - { - "source": "npm:cross-spawn", - "target": "npm:path-key", - "type": "static" - }, - { - "source": "npm:cross-spawn", - "target": "npm:shebang-command", - "type": "static" - }, - { - "source": "npm:cross-spawn", - "target": "npm:which@2.0.2", - "type": "static" - } - ], - "npm:crossws": [ - { - "source": "npm:crossws", - "target": "npm:uncrypto", - "type": "static" - } - ], - "npm:css-declaration-sorter": [ - { - "source": "npm:css-declaration-sorter", - "target": "npm:postcss", - "type": "static" - } - ], - "npm:css-select": [ - { - "source": "npm:css-select", - "target": "npm:boolbase", - "type": "static" - }, - { - "source": "npm:css-select", - "target": "npm:css-what", - "type": "static" - }, - { - "source": "npm:css-select", - "target": "npm:domhandler", - "type": "static" - }, - { - "source": "npm:css-select", - "target": "npm:domutils", - "type": "static" - }, - { - "source": "npm:css-select", - "target": "npm:nth-check", - "type": "static" - } - ], - "npm:css-tree": [ - { - "source": "npm:css-tree", - "target": "npm:mdn-data", - "type": "static" - }, - { - "source": "npm:css-tree", - "target": "npm:source-map", - "type": "static" - } - ], - "npm:cssnano-preset-default": [ - { - "source": "npm:cssnano-preset-default", - "target": "npm:css-declaration-sorter", - "type": "static" - }, - { - "source": "npm:cssnano-preset-default", - "target": "npm:cssnano-utils", - "type": "static" - }, - { - "source": "npm:cssnano-preset-default", - "target": "npm:postcss", - "type": "static" - }, - { - "source": "npm:cssnano-preset-default", - "target": "npm:postcss-calc", - "type": "static" - }, - { - "source": "npm:cssnano-preset-default", - "target": "npm:postcss-colormin", - "type": "static" - }, - { - "source": "npm:cssnano-preset-default", - "target": "npm:postcss-convert-values", - "type": "static" - }, - { - "source": "npm:cssnano-preset-default", - "target": "npm:postcss-discard-comments", - "type": "static" - }, - { - "source": "npm:cssnano-preset-default", - "target": "npm:postcss-discard-duplicates@5.1.0", - "type": "static" - }, - { - "source": "npm:cssnano-preset-default", - "target": "npm:postcss-discard-empty", - "type": "static" - }, - { - "source": "npm:cssnano-preset-default", - "target": "npm:postcss-discard-overridden", - "type": "static" - }, - { - "source": "npm:cssnano-preset-default", - "target": "npm:postcss-merge-longhand", - "type": "static" - }, - { - "source": "npm:cssnano-preset-default", - "target": "npm:postcss-merge-rules", - "type": "static" - }, - { - "source": "npm:cssnano-preset-default", - "target": "npm:postcss-minify-font-values", - "type": "static" - }, - { - "source": "npm:cssnano-preset-default", - "target": "npm:postcss-minify-gradients", - "type": "static" - }, - { - "source": "npm:cssnano-preset-default", - "target": "npm:postcss-minify-params", - "type": "static" - }, - { - "source": "npm:cssnano-preset-default", - "target": "npm:postcss-minify-selectors", - "type": "static" - }, - { - "source": "npm:cssnano-preset-default", - "target": "npm:postcss-normalize-charset", - "type": "static" - }, - { - "source": "npm:cssnano-preset-default", - "target": "npm:postcss-normalize-display-values", - "type": "static" - }, - { - "source": "npm:cssnano-preset-default", - "target": "npm:postcss-normalize-positions", - "type": "static" - }, - { - "source": "npm:cssnano-preset-default", - "target": "npm:postcss-normalize-repeat-style", - "type": "static" - }, - { - "source": "npm:cssnano-preset-default", - "target": "npm:postcss-normalize-string", - "type": "static" - }, - { - "source": "npm:cssnano-preset-default", - "target": "npm:postcss-normalize-timing-functions", - "type": "static" - }, - { - "source": "npm:cssnano-preset-default", - "target": "npm:postcss-normalize-unicode", - "type": "static" - }, - { - "source": "npm:cssnano-preset-default", - "target": "npm:postcss-normalize-url", - "type": "static" - }, - { - "source": "npm:cssnano-preset-default", - "target": "npm:postcss-normalize-whitespace", - "type": "static" - }, - { - "source": "npm:cssnano-preset-default", - "target": "npm:postcss-ordered-values", - "type": "static" - }, - { - "source": "npm:cssnano-preset-default", - "target": "npm:postcss-reduce-initial", - "type": "static" - }, - { - "source": "npm:cssnano-preset-default", - "target": "npm:postcss-reduce-transforms", - "type": "static" - }, - { - "source": "npm:cssnano-preset-default", - "target": "npm:postcss-svgo", - "type": "static" - }, - { - "source": "npm:cssnano-preset-default", - "target": "npm:postcss-unique-selectors", - "type": "static" - } - ], - "npm:cssnano-utils": [ - { - "source": "npm:cssnano-utils", - "target": "npm:postcss", - "type": "static" - } - ], - "npm:csso": [ - { - "source": "npm:csso", - "target": "npm:css-tree", - "type": "static" - } - ], - "npm:data-view-buffer": [ - { - "source": "npm:data-view-buffer", - "target": "npm:call-bound", - "type": "static" - }, - { - "source": "npm:data-view-buffer", - "target": "npm:es-errors", - "type": "static" - }, - { - "source": "npm:data-view-buffer", - "target": "npm:is-data-view", - "type": "static" - } - ], - "npm:data-view-byte-length": [ - { - "source": "npm:data-view-byte-length", - "target": "npm:call-bound", - "type": "static" - }, - { - "source": "npm:data-view-byte-length", - "target": "npm:es-errors", - "type": "static" - }, - { - "source": "npm:data-view-byte-length", - "target": "npm:is-data-view", - "type": "static" - } - ], - "npm:data-view-byte-offset": [ - { - "source": "npm:data-view-byte-offset", - "target": "npm:call-bound", - "type": "static" - }, - { - "source": "npm:data-view-byte-offset", - "target": "npm:es-errors", - "type": "static" - }, - { - "source": "npm:data-view-byte-offset", - "target": "npm:is-data-view", - "type": "static" - } - ], - "npm:debug-logfmt": [ - { - "source": "npm:debug-logfmt", - "target": "npm:@kikobeats/time-span", - "type": "static" - }, - { - "source": "npm:debug-logfmt", - "target": "npm:null-prototype-object", - "type": "static" - }, - { - "source": "npm:debug-logfmt", - "target": "npm:pretty-ms@7.0.1", - "type": "static" - } - ], - "npm:debug": [ - { - "source": "npm:debug", - "target": "npm:ms", - "type": "static" - } - ], - "npm:decode-named-character-reference": [ - { - "source": "npm:decode-named-character-reference", - "target": "npm:character-entities", - "type": "static" - } - ], - "npm:decompress-response": [ - { - "source": "npm:decompress-response", - "target": "npm:mimic-response", - "type": "static" - } - ], - "npm:defaults": [ - { - "source": "npm:defaults", - "target": "npm:clone", - "type": "static" - } - ], - "npm:define-data-property": [ - { - "source": "npm:define-data-property", - "target": "npm:es-define-property", - "type": "static" - }, - { - "source": "npm:define-data-property", - "target": "npm:es-errors", - "type": "static" - }, - { - "source": "npm:define-data-property", - "target": "npm:gopd", - "type": "static" - } - ], - "npm:define-properties": [ - { - "source": "npm:define-properties", - "target": "npm:define-data-property", - "type": "static" - }, - { - "source": "npm:define-properties", - "target": "npm:has-property-descriptors", - "type": "static" - }, - { - "source": "npm:define-properties", - "target": "npm:object-keys", - "type": "static" - } - ], - "npm:degenerator": [ - { - "source": "npm:degenerator", - "target": "npm:ast-types", - "type": "static" - }, - { - "source": "npm:degenerator", - "target": "npm:escodegen", - "type": "static" - }, - { - "source": "npm:degenerator", - "target": "npm:esprima", - "type": "static" - } - ], - "npm:devlop": [ - { - "source": "npm:devlop", - "target": "npm:dequal", - "type": "static" - } - ], - "npm:doctrine": [ - { - "source": "npm:doctrine", - "target": "npm:esutils", - "type": "static" - } - ], - "npm:dom-serializer": [ - { - "source": "npm:dom-serializer", - "target": "npm:domelementtype", - "type": "static" - }, - { - "source": "npm:dom-serializer", - "target": "npm:domhandler", - "type": "static" - }, - { - "source": "npm:dom-serializer", - "target": "npm:entities@2.2.0", - "type": "static" - } - ], - "npm:domhandler": [ - { - "source": "npm:domhandler", - "target": "npm:domelementtype", - "type": "static" - } - ], - "npm:domutils": [ - { - "source": "npm:domutils", - "target": "npm:dom-serializer", - "type": "static" - }, - { - "source": "npm:domutils", - "target": "npm:domelementtype", - "type": "static" - }, - { - "source": "npm:domutils", - "target": "npm:domhandler", - "type": "static" - } - ], - "npm:dotenv-expand": [ - { - "source": "npm:dotenv-expand", - "target": "npm:dotenv@16.6.1", - "type": "static" - } - ], - "npm:drizzle-kit": [ - { - "source": "npm:drizzle-kit", - "target": "npm:@drizzle-team/brocli", - "type": "static" - }, - { - "source": "npm:drizzle-kit", - "target": "npm:@esbuild-kit/esm-loader", - "type": "static" - }, - { - "source": "npm:drizzle-kit", - "target": "npm:esbuild@0.25.12", - "type": "static" - }, - { - "source": "npm:drizzle-kit", - "target": "npm:tsx", - "type": "static" - } - ], - "npm:drizzle-orm": [ - { - "source": "npm:drizzle-orm", - "target": "npm:@cloudflare/workers-types", - "type": "static" - }, - { - "source": "npm:drizzle-orm", - "target": "npm:@electric-sql/pglite", - "type": "static" - }, - { - "source": "npm:drizzle-orm", - "target": "npm:@prisma/client", - "type": "static" - }, - { - "source": "npm:drizzle-orm", - "target": "npm:@types/better-sqlite3", - "type": "static" - }, - { - "source": "npm:drizzle-orm", - "target": "npm:better-sqlite3", - "type": "static" - }, - { - "source": "npm:drizzle-orm", - "target": "npm:kysely", - "type": "static" - }, - { - "source": "npm:drizzle-orm", - "target": "npm:mysql2", - "type": "static" - }, - { - "source": "npm:drizzle-orm", - "target": "npm:postgres", - "type": "static" - }, - { - "source": "npm:drizzle-orm", - "target": "npm:prisma", - "type": "static" - } - ], - "npm:dts-resolver": [ - { - "source": "npm:dts-resolver", - "target": "npm:oxc-resolver", - "type": "static" - } - ], - "npm:dunder-proto": [ - { - "source": "npm:dunder-proto", - "target": "npm:call-bind-apply-helpers", - "type": "static" - }, - { - "source": "npm:dunder-proto", - "target": "npm:es-errors", - "type": "static" - }, - { - "source": "npm:dunder-proto", - "target": "npm:gopd", - "type": "static" - } - ], - "npm:effect": [ - { - "source": "npm:effect", - "target": "npm:@standard-schema/spec", - "type": "static" - }, - { - "source": "npm:effect", - "target": "npm:fast-check", - "type": "static" - } - ], - "npm:ejs": [ - { - "source": "npm:ejs", - "target": "npm:jake", - "type": "static" - } - ], - "npm:encoding": [ - { - "source": "npm:encoding", - "target": "npm:iconv-lite", - "type": "static" - } - ], - "npm:end-of-stream": [ - { - "source": "npm:end-of-stream", - "target": "npm:once", - "type": "static" - } - ], - "npm:enhanced-resolve": [ - { - "source": "npm:enhanced-resolve", - "target": "npm:graceful-fs", - "type": "static" - }, - { - "source": "npm:enhanced-resolve", - "target": "npm:tapable", - "type": "static" - } - ], - "npm:enquirer": [ - { - "source": "npm:enquirer", - "target": "npm:ansi-colors", - "type": "static" - } - ], - "npm:error-ex": [ - { - "source": "npm:error-ex", - "target": "npm:is-arrayish", - "type": "static" - } - ], - "npm:es-abstract": [ - { - "source": "npm:es-abstract", - "target": "npm:array-buffer-byte-length", - "type": "static" - }, - { - "source": "npm:es-abstract", - "target": "npm:arraybuffer.prototype.slice", - "type": "static" - }, - { - "source": "npm:es-abstract", - "target": "npm:available-typed-arrays", - "type": "static" - }, - { - "source": "npm:es-abstract", - "target": "npm:call-bind", - "type": "static" - }, - { - "source": "npm:es-abstract", - "target": "npm:call-bound", - "type": "static" - }, - { - "source": "npm:es-abstract", - "target": "npm:data-view-buffer", - "type": "static" - }, - { - "source": "npm:es-abstract", - "target": "npm:data-view-byte-length", - "type": "static" - }, - { - "source": "npm:es-abstract", - "target": "npm:data-view-byte-offset", - "type": "static" - }, - { - "source": "npm:es-abstract", - "target": "npm:es-define-property", - "type": "static" - }, - { - "source": "npm:es-abstract", - "target": "npm:es-errors", - "type": "static" - }, - { - "source": "npm:es-abstract", - "target": "npm:es-object-atoms", - "type": "static" - }, - { - "source": "npm:es-abstract", - "target": "npm:es-set-tostringtag", - "type": "static" - }, - { - "source": "npm:es-abstract", - "target": "npm:es-to-primitive", - "type": "static" - }, - { - "source": "npm:es-abstract", - "target": "npm:function.prototype.name", - "type": "static" - }, - { - "source": "npm:es-abstract", - "target": "npm:get-intrinsic", - "type": "static" - }, - { - "source": "npm:es-abstract", - "target": "npm:get-proto", - "type": "static" - }, - { - "source": "npm:es-abstract", - "target": "npm:get-symbol-description", - "type": "static" - }, - { - "source": "npm:es-abstract", - "target": "npm:globalthis", - "type": "static" - }, - { - "source": "npm:es-abstract", - "target": "npm:gopd", - "type": "static" - }, - { - "source": "npm:es-abstract", - "target": "npm:has-property-descriptors", - "type": "static" - }, - { - "source": "npm:es-abstract", - "target": "npm:has-proto", - "type": "static" - }, - { - "source": "npm:es-abstract", - "target": "npm:has-symbols", - "type": "static" - }, - { - "source": "npm:es-abstract", - "target": "npm:hasown", - "type": "static" - }, - { - "source": "npm:es-abstract", - "target": "npm:internal-slot", - "type": "static" - }, - { - "source": "npm:es-abstract", - "target": "npm:is-array-buffer", - "type": "static" - }, - { - "source": "npm:es-abstract", - "target": "npm:is-callable", - "type": "static" - }, - { - "source": "npm:es-abstract", - "target": "npm:is-data-view", - "type": "static" - }, - { - "source": "npm:es-abstract", - "target": "npm:is-negative-zero", - "type": "static" - }, - { - "source": "npm:es-abstract", - "target": "npm:is-regex", - "type": "static" - }, - { - "source": "npm:es-abstract", - "target": "npm:is-set", - "type": "static" - }, - { - "source": "npm:es-abstract", - "target": "npm:is-shared-array-buffer", - "type": "static" - }, - { - "source": "npm:es-abstract", - "target": "npm:is-string", - "type": "static" - }, - { - "source": "npm:es-abstract", - "target": "npm:is-typed-array", - "type": "static" - }, - { - "source": "npm:es-abstract", - "target": "npm:is-weakref", - "type": "static" - }, - { - "source": "npm:es-abstract", - "target": "npm:math-intrinsics", - "type": "static" - }, - { - "source": "npm:es-abstract", - "target": "npm:object-inspect", - "type": "static" - }, - { - "source": "npm:es-abstract", - "target": "npm:object-keys", - "type": "static" - }, - { - "source": "npm:es-abstract", - "target": "npm:object.assign", - "type": "static" - }, - { - "source": "npm:es-abstract", - "target": "npm:own-keys", - "type": "static" - }, - { - "source": "npm:es-abstract", - "target": "npm:regexp.prototype.flags", - "type": "static" - }, - { - "source": "npm:es-abstract", - "target": "npm:safe-array-concat", - "type": "static" - }, - { - "source": "npm:es-abstract", - "target": "npm:safe-push-apply", - "type": "static" - }, - { - "source": "npm:es-abstract", - "target": "npm:safe-regex-test", - "type": "static" - }, - { - "source": "npm:es-abstract", - "target": "npm:set-proto", - "type": "static" - }, - { - "source": "npm:es-abstract", - "target": "npm:stop-iteration-iterator", - "type": "static" - }, - { - "source": "npm:es-abstract", - "target": "npm:string.prototype.trim", - "type": "static" - }, - { - "source": "npm:es-abstract", - "target": "npm:string.prototype.trimend", - "type": "static" - }, - { - "source": "npm:es-abstract", - "target": "npm:string.prototype.trimstart", - "type": "static" - }, - { - "source": "npm:es-abstract", - "target": "npm:typed-array-buffer", - "type": "static" - }, - { - "source": "npm:es-abstract", - "target": "npm:typed-array-byte-length", - "type": "static" - }, - { - "source": "npm:es-abstract", - "target": "npm:typed-array-byte-offset", - "type": "static" - }, - { - "source": "npm:es-abstract", - "target": "npm:typed-array-length", - "type": "static" - }, - { - "source": "npm:es-abstract", - "target": "npm:unbox-primitive", - "type": "static" - }, - { - "source": "npm:es-abstract", - "target": "npm:which-typed-array", - "type": "static" - } - ], - "npm:es-iterator-helpers": [ - { - "source": "npm:es-iterator-helpers", - "target": "npm:call-bind", - "type": "static" - }, - { - "source": "npm:es-iterator-helpers", - "target": "npm:call-bound", - "type": "static" - }, - { - "source": "npm:es-iterator-helpers", - "target": "npm:define-properties", - "type": "static" - }, - { - "source": "npm:es-iterator-helpers", - "target": "npm:es-abstract", - "type": "static" - }, - { - "source": "npm:es-iterator-helpers", - "target": "npm:es-errors", - "type": "static" - }, - { - "source": "npm:es-iterator-helpers", - "target": "npm:es-set-tostringtag", - "type": "static" - }, - { - "source": "npm:es-iterator-helpers", - "target": "npm:function-bind", - "type": "static" - }, - { - "source": "npm:es-iterator-helpers", - "target": "npm:get-intrinsic", - "type": "static" - }, - { - "source": "npm:es-iterator-helpers", - "target": "npm:globalthis", - "type": "static" - }, - { - "source": "npm:es-iterator-helpers", - "target": "npm:gopd", - "type": "static" - }, - { - "source": "npm:es-iterator-helpers", - "target": "npm:has-property-descriptors", - "type": "static" - }, - { - "source": "npm:es-iterator-helpers", - "target": "npm:has-proto", - "type": "static" - }, - { - "source": "npm:es-iterator-helpers", - "target": "npm:has-symbols", - "type": "static" - }, - { - "source": "npm:es-iterator-helpers", - "target": "npm:internal-slot", - "type": "static" - }, - { - "source": "npm:es-iterator-helpers", - "target": "npm:iterator.prototype", - "type": "static" - }, - { - "source": "npm:es-iterator-helpers", - "target": "npm:safe-array-concat", - "type": "static" - } - ], - "npm:es-object-atoms": [ - { - "source": "npm:es-object-atoms", - "target": "npm:es-errors", - "type": "static" - } - ], - "npm:es-set-tostringtag": [ - { - "source": "npm:es-set-tostringtag", - "target": "npm:es-errors", - "type": "static" - }, - { - "source": "npm:es-set-tostringtag", - "target": "npm:get-intrinsic", - "type": "static" - }, - { - "source": "npm:es-set-tostringtag", - "target": "npm:has-tostringtag", - "type": "static" - }, - { - "source": "npm:es-set-tostringtag", - "target": "npm:hasown", - "type": "static" - } - ], - "npm:es-shim-unscopables": [ - { - "source": "npm:es-shim-unscopables", - "target": "npm:hasown", - "type": "static" - } - ], - "npm:es-to-primitive": [ - { - "source": "npm:es-to-primitive", - "target": "npm:is-callable", - "type": "static" - }, - { - "source": "npm:es-to-primitive", - "target": "npm:is-date-object", - "type": "static" - }, - { - "source": "npm:es-to-primitive", - "target": "npm:is-symbol", - "type": "static" - } - ], - "npm:esbuild@0.18.20": [ - { - "source": "npm:esbuild@0.18.20", - "target": "npm:@esbuild/android-arm@0.18.20", - "type": "static" - }, - { - "source": "npm:esbuild@0.18.20", - "target": "npm:@esbuild/android-arm64@0.18.20", - "type": "static" - }, - { - "source": "npm:esbuild@0.18.20", - "target": "npm:@esbuild/android-x64@0.18.20", - "type": "static" - }, - { - "source": "npm:esbuild@0.18.20", - "target": "npm:@esbuild/darwin-arm64@0.18.20", - "type": "static" - }, - { - "source": "npm:esbuild@0.18.20", - "target": "npm:@esbuild/darwin-x64@0.18.20", - "type": "static" - }, - { - "source": "npm:esbuild@0.18.20", - "target": "npm:@esbuild/freebsd-arm64@0.18.20", - "type": "static" - }, - { - "source": "npm:esbuild@0.18.20", - "target": "npm:@esbuild/freebsd-x64@0.18.20", - "type": "static" - }, - { - "source": "npm:esbuild@0.18.20", - "target": "npm:@esbuild/linux-arm@0.18.20", - "type": "static" - }, - { - "source": "npm:esbuild@0.18.20", - "target": "npm:@esbuild/linux-arm64@0.18.20", - "type": "static" - }, - { - "source": "npm:esbuild@0.18.20", - "target": "npm:@esbuild/linux-ia32@0.18.20", - "type": "static" - }, - { - "source": "npm:esbuild@0.18.20", - "target": "npm:@esbuild/linux-loong64@0.18.20", - "type": "static" - }, - { - "source": "npm:esbuild@0.18.20", - "target": "npm:@esbuild/linux-mips64el@0.18.20", - "type": "static" - }, - { - "source": "npm:esbuild@0.18.20", - "target": "npm:@esbuild/linux-ppc64@0.18.20", - "type": "static" - }, - { - "source": "npm:esbuild@0.18.20", - "target": "npm:@esbuild/linux-riscv64@0.18.20", - "type": "static" - }, - { - "source": "npm:esbuild@0.18.20", - "target": "npm:@esbuild/linux-s390x@0.18.20", - "type": "static" - }, - { - "source": "npm:esbuild@0.18.20", - "target": "npm:@esbuild/linux-x64@0.18.20", - "type": "static" - }, - { - "source": "npm:esbuild@0.18.20", - "target": "npm:@esbuild/netbsd-x64@0.18.20", - "type": "static" - }, - { - "source": "npm:esbuild@0.18.20", - "target": "npm:@esbuild/openbsd-x64@0.18.20", - "type": "static" - }, - { - "source": "npm:esbuild@0.18.20", - "target": "npm:@esbuild/sunos-x64@0.18.20", - "type": "static" - }, - { - "source": "npm:esbuild@0.18.20", - "target": "npm:@esbuild/win32-arm64@0.18.20", - "type": "static" - }, - { - "source": "npm:esbuild@0.18.20", - "target": "npm:@esbuild/win32-ia32@0.18.20", - "type": "static" - }, - { - "source": "npm:esbuild@0.18.20", - "target": "npm:@esbuild/win32-x64@0.18.20", - "type": "static" - } - ], - "npm:esbuild@0.25.12": [ - { - "source": "npm:esbuild@0.25.12", - "target": "npm:@esbuild/aix-ppc64@0.25.12", - "type": "static" - }, - { - "source": "npm:esbuild@0.25.12", - "target": "npm:@esbuild/android-arm@0.25.12", - "type": "static" - }, - { - "source": "npm:esbuild@0.25.12", - "target": "npm:@esbuild/android-arm64@0.25.12", - "type": "static" - }, - { - "source": "npm:esbuild@0.25.12", - "target": "npm:@esbuild/android-x64@0.25.12", - "type": "static" - }, - { - "source": "npm:esbuild@0.25.12", - "target": "npm:@esbuild/darwin-arm64@0.25.12", - "type": "static" - }, - { - "source": "npm:esbuild@0.25.12", - "target": "npm:@esbuild/darwin-x64@0.25.12", - "type": "static" - }, - { - "source": "npm:esbuild@0.25.12", - "target": "npm:@esbuild/freebsd-arm64@0.25.12", - "type": "static" - }, - { - "source": "npm:esbuild@0.25.12", - "target": "npm:@esbuild/freebsd-x64@0.25.12", - "type": "static" - }, - { - "source": "npm:esbuild@0.25.12", - "target": "npm:@esbuild/linux-arm@0.25.12", - "type": "static" - }, - { - "source": "npm:esbuild@0.25.12", - "target": "npm:@esbuild/linux-arm64@0.25.12", - "type": "static" - }, - { - "source": "npm:esbuild@0.25.12", - "target": "npm:@esbuild/linux-ia32@0.25.12", - "type": "static" - }, - { - "source": "npm:esbuild@0.25.12", - "target": "npm:@esbuild/linux-loong64@0.25.12", - "type": "static" - }, - { - "source": "npm:esbuild@0.25.12", - "target": "npm:@esbuild/linux-mips64el@0.25.12", - "type": "static" - }, - { - "source": "npm:esbuild@0.25.12", - "target": "npm:@esbuild/linux-ppc64@0.25.12", - "type": "static" - }, - { - "source": "npm:esbuild@0.25.12", - "target": "npm:@esbuild/linux-riscv64@0.25.12", - "type": "static" - }, - { - "source": "npm:esbuild@0.25.12", - "target": "npm:@esbuild/linux-s390x@0.25.12", - "type": "static" - }, - { - "source": "npm:esbuild@0.25.12", - "target": "npm:@esbuild/linux-x64@0.25.12", - "type": "static" - }, - { - "source": "npm:esbuild@0.25.12", - "target": "npm:@esbuild/netbsd-arm64@0.25.12", - "type": "static" - }, - { - "source": "npm:esbuild@0.25.12", - "target": "npm:@esbuild/netbsd-x64@0.25.12", - "type": "static" - }, - { - "source": "npm:esbuild@0.25.12", - "target": "npm:@esbuild/openbsd-arm64@0.25.12", - "type": "static" - }, - { - "source": "npm:esbuild@0.25.12", - "target": "npm:@esbuild/openbsd-x64@0.25.12", - "type": "static" - }, - { - "source": "npm:esbuild@0.25.12", - "target": "npm:@esbuild/openharmony-arm64@0.25.12", - "type": "static" - }, - { - "source": "npm:esbuild@0.25.12", - "target": "npm:@esbuild/sunos-x64@0.25.12", - "type": "static" - }, - { - "source": "npm:esbuild@0.25.12", - "target": "npm:@esbuild/win32-arm64@0.25.12", - "type": "static" - }, - { - "source": "npm:esbuild@0.25.12", - "target": "npm:@esbuild/win32-ia32@0.25.12", - "type": "static" - }, - { - "source": "npm:esbuild@0.25.12", - "target": "npm:@esbuild/win32-x64@0.25.12", - "type": "static" - } - ], - "npm:esbuild@0.27.3": [ - { - "source": "npm:esbuild@0.27.3", - "target": "npm:@esbuild/aix-ppc64@0.27.3", - "type": "static" - }, - { - "source": "npm:esbuild@0.27.3", - "target": "npm:@esbuild/android-arm@0.27.3", - "type": "static" - }, - { - "source": "npm:esbuild@0.27.3", - "target": "npm:@esbuild/android-arm64@0.27.3", - "type": "static" - }, - { - "source": "npm:esbuild@0.27.3", - "target": "npm:@esbuild/android-x64@0.27.3", - "type": "static" - }, - { - "source": "npm:esbuild@0.27.3", - "target": "npm:@esbuild/darwin-arm64@0.27.3", - "type": "static" - }, - { - "source": "npm:esbuild@0.27.3", - "target": "npm:@esbuild/darwin-x64@0.27.3", - "type": "static" - }, - { - "source": "npm:esbuild@0.27.3", - "target": "npm:@esbuild/freebsd-arm64@0.27.3", - "type": "static" - }, - { - "source": "npm:esbuild@0.27.3", - "target": "npm:@esbuild/freebsd-x64@0.27.3", - "type": "static" - }, - { - "source": "npm:esbuild@0.27.3", - "target": "npm:@esbuild/linux-arm@0.27.3", - "type": "static" - }, - { - "source": "npm:esbuild@0.27.3", - "target": "npm:@esbuild/linux-arm64@0.27.3", - "type": "static" - }, - { - "source": "npm:esbuild@0.27.3", - "target": "npm:@esbuild/linux-ia32@0.27.3", - "type": "static" - }, - { - "source": "npm:esbuild@0.27.3", - "target": "npm:@esbuild/linux-loong64@0.27.3", - "type": "static" - }, - { - "source": "npm:esbuild@0.27.3", - "target": "npm:@esbuild/linux-mips64el@0.27.3", - "type": "static" - }, - { - "source": "npm:esbuild@0.27.3", - "target": "npm:@esbuild/linux-ppc64@0.27.3", - "type": "static" - }, - { - "source": "npm:esbuild@0.27.3", - "target": "npm:@esbuild/linux-riscv64@0.27.3", - "type": "static" - }, - { - "source": "npm:esbuild@0.27.3", - "target": "npm:@esbuild/linux-s390x@0.27.3", - "type": "static" - }, - { - "source": "npm:esbuild@0.27.3", - "target": "npm:@esbuild/linux-x64@0.27.3", - "type": "static" - }, - { - "source": "npm:esbuild@0.27.3", - "target": "npm:@esbuild/netbsd-arm64@0.27.3", - "type": "static" - }, - { - "source": "npm:esbuild@0.27.3", - "target": "npm:@esbuild/netbsd-x64@0.27.3", - "type": "static" - }, - { - "source": "npm:esbuild@0.27.3", - "target": "npm:@esbuild/openbsd-arm64@0.27.3", - "type": "static" - }, - { - "source": "npm:esbuild@0.27.3", - "target": "npm:@esbuild/openbsd-x64@0.27.3", - "type": "static" - }, - { - "source": "npm:esbuild@0.27.3", - "target": "npm:@esbuild/openharmony-arm64@0.27.3", - "type": "static" - }, - { - "source": "npm:esbuild@0.27.3", - "target": "npm:@esbuild/sunos-x64@0.27.3", - "type": "static" - }, - { - "source": "npm:esbuild@0.27.3", - "target": "npm:@esbuild/win32-arm64@0.27.3", - "type": "static" - }, - { - "source": "npm:esbuild@0.27.3", - "target": "npm:@esbuild/win32-ia32@0.27.3", - "type": "static" - }, - { - "source": "npm:esbuild@0.27.3", - "target": "npm:@esbuild/win32-x64@0.27.3", - "type": "static" - } - ], - "npm:esbuild": [ - { - "source": "npm:esbuild", - "target": "npm:@esbuild/aix-ppc64@0.27.4", - "type": "static" - }, - { - "source": "npm:esbuild", - "target": "npm:@esbuild/android-arm@0.27.4", - "type": "static" - }, - { - "source": "npm:esbuild", - "target": "npm:@esbuild/android-arm64@0.27.4", - "type": "static" - }, - { - "source": "npm:esbuild", - "target": "npm:@esbuild/android-x64@0.27.4", - "type": "static" - }, - { - "source": "npm:esbuild", - "target": "npm:@esbuild/darwin-arm64@0.27.4", - "type": "static" - }, - { - "source": "npm:esbuild", - "target": "npm:@esbuild/darwin-x64@0.27.4", - "type": "static" - }, - { - "source": "npm:esbuild", - "target": "npm:@esbuild/freebsd-arm64@0.27.4", - "type": "static" - }, - { - "source": "npm:esbuild", - "target": "npm:@esbuild/freebsd-x64@0.27.4", - "type": "static" - }, - { - "source": "npm:esbuild", - "target": "npm:@esbuild/linux-arm@0.27.4", - "type": "static" - }, - { - "source": "npm:esbuild", - "target": "npm:@esbuild/linux-arm64@0.27.4", - "type": "static" - }, - { - "source": "npm:esbuild", - "target": "npm:@esbuild/linux-ia32@0.27.4", - "type": "static" - }, - { - "source": "npm:esbuild", - "target": "npm:@esbuild/linux-loong64@0.27.4", - "type": "static" - }, - { - "source": "npm:esbuild", - "target": "npm:@esbuild/linux-mips64el@0.27.4", - "type": "static" - }, - { - "source": "npm:esbuild", - "target": "npm:@esbuild/linux-ppc64@0.27.4", - "type": "static" - }, - { - "source": "npm:esbuild", - "target": "npm:@esbuild/linux-riscv64@0.27.4", - "type": "static" - }, - { - "source": "npm:esbuild", - "target": "npm:@esbuild/linux-s390x@0.27.4", - "type": "static" - }, - { - "source": "npm:esbuild", - "target": "npm:@esbuild/linux-x64", - "type": "static" - }, - { - "source": "npm:esbuild", - "target": "npm:@esbuild/netbsd-arm64@0.27.4", - "type": "static" - }, - { - "source": "npm:esbuild", - "target": "npm:@esbuild/netbsd-x64@0.27.4", - "type": "static" - }, - { - "source": "npm:esbuild", - "target": "npm:@esbuild/openbsd-arm64@0.27.4", - "type": "static" - }, - { - "source": "npm:esbuild", - "target": "npm:@esbuild/openbsd-x64@0.27.4", - "type": "static" - }, - { - "source": "npm:esbuild", - "target": "npm:@esbuild/openharmony-arm64@0.27.4", - "type": "static" - }, - { - "source": "npm:esbuild", - "target": "npm:@esbuild/sunos-x64@0.27.4", - "type": "static" - }, - { - "source": "npm:esbuild", - "target": "npm:@esbuild/win32-arm64@0.27.4", - "type": "static" - }, - { - "source": "npm:esbuild", - "target": "npm:@esbuild/win32-ia32@0.27.4", - "type": "static" - }, - { - "source": "npm:esbuild", - "target": "npm:@esbuild/win32-x64@0.27.4", - "type": "static" - } - ], - "npm:escodegen": [ - { - "source": "npm:escodegen", - "target": "npm:esprima", - "type": "static" - }, - { - "source": "npm:escodegen", - "target": "npm:estraverse", - "type": "static" - }, - { - "source": "npm:escodegen", - "target": "npm:esutils", - "type": "static" - }, - { - "source": "npm:escodegen", - "target": "npm:source-map", - "type": "static" - } - ], - "npm:eslint-config-prettier": [ - { - "source": "npm:eslint-config-prettier", - "target": "npm:eslint", - "type": "static" - } - ], - "npm:eslint-plugin-prettier": [ - { - "source": "npm:eslint-plugin-prettier", - "target": "npm:eslint", - "type": "static" - }, - { - "source": "npm:eslint-plugin-prettier", - "target": "npm:prettier", - "type": "static" - }, - { - "source": "npm:eslint-plugin-prettier", - "target": "npm:prettier-linter-helpers", - "type": "static" - }, - { - "source": "npm:eslint-plugin-prettier", - "target": "npm:synckit", - "type": "static" - }, - { - "source": "npm:eslint-plugin-prettier", - "target": "npm:@types/eslint", - "type": "static" - }, - { - "source": "npm:eslint-plugin-prettier", - "target": "npm:eslint-config-prettier", - "type": "static" - } - ], - "npm:eslint-plugin-react": [ - { - "source": "npm:eslint-plugin-react", - "target": "npm:array-includes", - "type": "static" - }, - { - "source": "npm:eslint-plugin-react", - "target": "npm:array.prototype.findlast", - "type": "static" - }, - { - "source": "npm:eslint-plugin-react", - "target": "npm:array.prototype.flatmap", - "type": "static" - }, - { - "source": "npm:eslint-plugin-react", - "target": "npm:array.prototype.tosorted", - "type": "static" - }, - { - "source": "npm:eslint-plugin-react", - "target": "npm:doctrine", - "type": "static" - }, - { - "source": "npm:eslint-plugin-react", - "target": "npm:es-iterator-helpers", - "type": "static" - }, - { - "source": "npm:eslint-plugin-react", - "target": "npm:eslint", - "type": "static" - }, - { - "source": "npm:eslint-plugin-react", - "target": "npm:estraverse", - "type": "static" - }, - { - "source": "npm:eslint-plugin-react", - "target": "npm:hasown", - "type": "static" - }, - { - "source": "npm:eslint-plugin-react", - "target": "npm:jsx-ast-utils", - "type": "static" - }, - { - "source": "npm:eslint-plugin-react", - "target": "npm:minimatch", - "type": "static" - }, - { - "source": "npm:eslint-plugin-react", - "target": "npm:object.entries", - "type": "static" - }, - { - "source": "npm:eslint-plugin-react", - "target": "npm:object.fromentries", - "type": "static" - }, - { - "source": "npm:eslint-plugin-react", - "target": "npm:object.values", - "type": "static" - }, - { - "source": "npm:eslint-plugin-react", - "target": "npm:prop-types", - "type": "static" - }, - { - "source": "npm:eslint-plugin-react", - "target": "npm:resolve", - "type": "static" - }, - { - "source": "npm:eslint-plugin-react", - "target": "npm:semver", - "type": "static" - }, - { - "source": "npm:eslint-plugin-react", - "target": "npm:string.prototype.matchall", - "type": "static" - }, - { - "source": "npm:eslint-plugin-react", - "target": "npm:string.prototype.repeat", - "type": "static" - } - ], - "npm:eslint-plugin-solid": [ - { - "source": "npm:eslint-plugin-solid", - "target": "npm:@typescript-eslint/utils", - "type": "static" - }, - { - "source": "npm:eslint-plugin-solid", - "target": "npm:eslint", - "type": "static" - }, - { - "source": "npm:eslint-plugin-solid", - "target": "npm:estraverse", - "type": "static" - }, - { - "source": "npm:eslint-plugin-solid", - "target": "npm:is-html", - "type": "static" - }, - { - "source": "npm:eslint-plugin-solid", - "target": "npm:kebab-case", - "type": "static" - }, - { - "source": "npm:eslint-plugin-solid", - "target": "npm:known-css-properties", - "type": "static" - }, - { - "source": "npm:eslint-plugin-solid", - "target": "npm:style-to-object", - "type": "static" - }, - { - "source": "npm:eslint-plugin-solid", - "target": "npm:typescript", - "type": "static" - } - ], - "npm:eslint-plugin-vue": [ - { - "source": "npm:eslint-plugin-vue", - "target": "npm:@eslint-community/eslint-utils", - "type": "static" - }, - { - "source": "npm:eslint-plugin-vue", - "target": "npm:eslint", - "type": "static" - }, - { - "source": "npm:eslint-plugin-vue", - "target": "npm:natural-compare", - "type": "static" - }, - { - "source": "npm:eslint-plugin-vue", - "target": "npm:nth-check", - "type": "static" - }, - { - "source": "npm:eslint-plugin-vue", - "target": "npm:postcss-selector-parser", - "type": "static" - }, - { - "source": "npm:eslint-plugin-vue", - "target": "npm:semver@7.7.4", - "type": "static" - }, - { - "source": "npm:eslint-plugin-vue", - "target": "npm:vue-eslint-parser", - "type": "static" - }, - { - "source": "npm:eslint-plugin-vue", - "target": "npm:xml-name-validator", - "type": "static" - }, - { - "source": "npm:eslint-plugin-vue", - "target": "npm:@typescript-eslint/parser", - "type": "static" - } - ], - "npm:eslint-scope": [ - { - "source": "npm:eslint-scope", - "target": "npm:esrecurse", - "type": "static" - }, - { - "source": "npm:eslint-scope", - "target": "npm:estraverse", - "type": "static" - } - ], - "npm:eslint": [ - { - "source": "npm:eslint", - "target": "npm:@eslint-community/eslint-utils", - "type": "static" - }, - { - "source": "npm:eslint", - "target": "npm:@eslint-community/regexpp", - "type": "static" - }, - { - "source": "npm:eslint", - "target": "npm:@eslint/config-array", - "type": "static" - }, - { - "source": "npm:eslint", - "target": "npm:@eslint/config-helpers", - "type": "static" - }, - { - "source": "npm:eslint", - "target": "npm:@eslint/core", - "type": "static" - }, - { - "source": "npm:eslint", - "target": "npm:@eslint/eslintrc", - "type": "static" - }, - { - "source": "npm:eslint", - "target": "npm:@eslint/js", - "type": "static" - }, - { - "source": "npm:eslint", - "target": "npm:@eslint/plugin-kit", - "type": "static" - }, - { - "source": "npm:eslint", - "target": "npm:@humanfs/node", - "type": "static" - }, - { - "source": "npm:eslint", - "target": "npm:@humanwhocodes/module-importer", - "type": "static" - }, - { - "source": "npm:eslint", - "target": "npm:@humanwhocodes/retry", - "type": "static" - }, - { - "source": "npm:eslint", - "target": "npm:@types/estree", - "type": "static" - }, - { - "source": "npm:eslint", - "target": "npm:ajv", - "type": "static" - }, - { - "source": "npm:eslint", - "target": "npm:chalk", - "type": "static" - }, - { - "source": "npm:eslint", - "target": "npm:cross-spawn", - "type": "static" - }, - { - "source": "npm:eslint", - "target": "npm:debug", - "type": "static" - }, - { - "source": "npm:eslint", - "target": "npm:escape-string-regexp", - "type": "static" - }, - { - "source": "npm:eslint", - "target": "npm:eslint-scope", - "type": "static" - }, - { - "source": "npm:eslint", - "target": "npm:eslint-visitor-keys", - "type": "static" - }, - { - "source": "npm:eslint", - "target": "npm:espree@10.4.0", - "type": "static" - }, - { - "source": "npm:eslint", - "target": "npm:esquery", - "type": "static" - }, - { - "source": "npm:eslint", - "target": "npm:esutils", - "type": "static" - }, - { - "source": "npm:eslint", - "target": "npm:fast-deep-equal", - "type": "static" - }, - { - "source": "npm:eslint", - "target": "npm:file-entry-cache", - "type": "static" - }, - { - "source": "npm:eslint", - "target": "npm:find-up", - "type": "static" - }, - { - "source": "npm:eslint", - "target": "npm:glob-parent", - "type": "static" - }, - { - "source": "npm:eslint", - "target": "npm:ignore", - "type": "static" - }, - { - "source": "npm:eslint", - "target": "npm:imurmurhash", - "type": "static" - }, - { - "source": "npm:eslint", - "target": "npm:is-glob", - "type": "static" - }, - { - "source": "npm:eslint", - "target": "npm:json-stable-stringify-without-jsonify", - "type": "static" - }, - { - "source": "npm:eslint", - "target": "npm:lodash.merge", - "type": "static" - }, - { - "source": "npm:eslint", - "target": "npm:minimatch", - "type": "static" - }, - { - "source": "npm:eslint", - "target": "npm:natural-compare", - "type": "static" - }, - { - "source": "npm:eslint", - "target": "npm:optionator", - "type": "static" - }, - { - "source": "npm:eslint", - "target": "npm:jiti", - "type": "static" - } - ], - "npm:espree@10.4.0": [ - { - "source": "npm:espree@10.4.0", - "target": "npm:acorn", - "type": "static" - }, - { - "source": "npm:espree@10.4.0", - "target": "npm:acorn-jsx", - "type": "static" - }, - { - "source": "npm:espree@10.4.0", - "target": "npm:eslint-visitor-keys", - "type": "static" - } - ], - "npm:espree": [ - { - "source": "npm:espree", - "target": "npm:acorn", - "type": "static" - }, - { - "source": "npm:espree", - "target": "npm:acorn-jsx", - "type": "static" - }, - { - "source": "npm:espree", - "target": "npm:eslint-visitor-keys@5.0.1", - "type": "static" - } - ], - "npm:esquery": [ - { - "source": "npm:esquery", - "target": "npm:estraverse", - "type": "static" - } - ], - "npm:esrecurse": [ - { - "source": "npm:esrecurse", - "target": "npm:estraverse", - "type": "static" - } - ], - "npm:estree-walker": [ - { - "source": "npm:estree-walker", - "target": "npm:@types/estree", - "type": "static" - } - ], - "npm:events-universal": [ - { - "source": "npm:events-universal", - "target": "npm:bare-events", - "type": "static" - } - ], - "npm:execa": [ - { - "source": "npm:execa", - "target": "npm:@sindresorhus/merge-streams", - "type": "static" - }, - { - "source": "npm:execa", - "target": "npm:cross-spawn", - "type": "static" - }, - { - "source": "npm:execa", - "target": "npm:figures", - "type": "static" - }, - { - "source": "npm:execa", - "target": "npm:get-stream", - "type": "static" - }, - { - "source": "npm:execa", - "target": "npm:human-signals", - "type": "static" - }, - { - "source": "npm:execa", - "target": "npm:is-plain-obj", - "type": "static" - }, - { - "source": "npm:execa", - "target": "npm:is-stream", - "type": "static" - }, - { - "source": "npm:execa", - "target": "npm:npm-run-path", - "type": "static" - }, - { - "source": "npm:execa", - "target": "npm:pretty-ms", - "type": "static" - }, - { - "source": "npm:execa", - "target": "npm:signal-exit", - "type": "static" - }, - { - "source": "npm:execa", - "target": "npm:strip-final-newline", - "type": "static" - }, - { - "source": "npm:execa", - "target": "npm:yoctocolors", - "type": "static" - } - ], - "npm:express": [ - { - "source": "npm:express", - "target": "npm:accepts", - "type": "static" - }, - { - "source": "npm:express", - "target": "npm:body-parser", - "type": "static" - }, - { - "source": "npm:express", - "target": "npm:content-disposition", - "type": "static" - }, - { - "source": "npm:express", - "target": "npm:content-type", - "type": "static" - }, - { - "source": "npm:express", - "target": "npm:cookie", - "type": "static" - }, - { - "source": "npm:express", - "target": "npm:cookie-signature", - "type": "static" - }, - { - "source": "npm:express", - "target": "npm:debug", - "type": "static" - }, - { - "source": "npm:express", - "target": "npm:depd", - "type": "static" - }, - { - "source": "npm:express", - "target": "npm:encodeurl", - "type": "static" - }, - { - "source": "npm:express", - "target": "npm:escape-html", - "type": "static" - }, - { - "source": "npm:express", - "target": "npm:etag", - "type": "static" - }, - { - "source": "npm:express", - "target": "npm:finalhandler", - "type": "static" - }, - { - "source": "npm:express", - "target": "npm:fresh", - "type": "static" - }, - { - "source": "npm:express", - "target": "npm:http-errors", - "type": "static" - }, - { - "source": "npm:express", - "target": "npm:merge-descriptors", - "type": "static" - }, - { - "source": "npm:express", - "target": "npm:mime-types", - "type": "static" - }, - { - "source": "npm:express", - "target": "npm:on-finished", - "type": "static" - }, - { - "source": "npm:express", - "target": "npm:once", - "type": "static" - }, - { - "source": "npm:express", - "target": "npm:parseurl", - "type": "static" - }, - { - "source": "npm:express", - "target": "npm:proxy-addr", - "type": "static" - }, - { - "source": "npm:express", - "target": "npm:qs", - "type": "static" - }, - { - "source": "npm:express", - "target": "npm:range-parser", - "type": "static" - }, - { - "source": "npm:express", - "target": "npm:router", - "type": "static" - }, - { - "source": "npm:express", - "target": "npm:send", - "type": "static" - }, - { - "source": "npm:express", - "target": "npm:serve-static", - "type": "static" - }, - { - "source": "npm:express", - "target": "npm:statuses", - "type": "static" - }, - { - "source": "npm:express", - "target": "npm:type-is", - "type": "static" - }, - { - "source": "npm:express", - "target": "npm:vary", - "type": "static" - } - ], - "npm:extract-zip": [ - { - "source": "npm:extract-zip", - "target": "npm:debug", - "type": "static" - }, - { - "source": "npm:extract-zip", - "target": "npm:get-stream@5.2.0", - "type": "static" - }, - { - "source": "npm:extract-zip", - "target": "npm:yauzl", - "type": "static" - }, - { - "source": "npm:extract-zip", - "target": "npm:@types/yauzl", - "type": "static" - } - ], - "npm:fast-check": [ - { - "source": "npm:fast-check", - "target": "npm:pure-rand", - "type": "static" - } - ], - "npm:fast-glob": [ - { - "source": "npm:fast-glob", - "target": "npm:@nodelib/fs.stat", - "type": "static" - }, - { - "source": "npm:fast-glob", - "target": "npm:@nodelib/fs.walk", - "type": "static" - }, - { - "source": "npm:fast-glob", - "target": "npm:glob-parent@5.1.2", - "type": "static" - }, - { - "source": "npm:fast-glob", - "target": "npm:merge2", - "type": "static" - }, - { - "source": "npm:fast-glob", - "target": "npm:micromatch", - "type": "static" - } - ], - "npm:fast-json-stringify": [ - { - "source": "npm:fast-json-stringify", - "target": "npm:@fastify/merge-json-schemas", - "type": "static" - }, - { - "source": "npm:fast-json-stringify", - "target": "npm:ajv@8.18.0", - "type": "static" - }, - { - "source": "npm:fast-json-stringify", - "target": "npm:ajv-formats", - "type": "static" - }, - { - "source": "npm:fast-json-stringify", - "target": "npm:fast-uri", - "type": "static" - }, - { - "source": "npm:fast-json-stringify", - "target": "npm:json-schema-ref-resolver", - "type": "static" - }, - { - "source": "npm:fast-json-stringify", - "target": "npm:rfdc", - "type": "static" - } - ], - "npm:fast-querystring": [ - { - "source": "npm:fast-querystring", - "target": "npm:fast-decode-uri-component", - "type": "static" - } - ], - "npm:fast-string-width": [ - { - "source": "npm:fast-string-width", - "target": "npm:fast-string-truncated-width", - "type": "static" - } - ], - "npm:fast-wrap-ansi": [ - { - "source": "npm:fast-wrap-ansi", - "target": "npm:fast-string-width", - "type": "static" - } - ], - "npm:fastify-raw-body": [ - { - "source": "npm:fastify-raw-body", - "target": "npm:fastify-plugin", - "type": "static" - }, - { - "source": "npm:fastify-raw-body", - "target": "npm:raw-body", - "type": "static" - }, - { - "source": "npm:fastify-raw-body", - "target": "npm:secure-json-parse", - "type": "static" - } - ], - "npm:fastify": [ - { - "source": "npm:fastify", - "target": "npm:@fastify/ajv-compiler", - "type": "static" - }, - { - "source": "npm:fastify", - "target": "npm:@fastify/error", - "type": "static" - }, - { - "source": "npm:fastify", - "target": "npm:@fastify/fast-json-stringify-compiler", - "type": "static" - }, - { - "source": "npm:fastify", - "target": "npm:@fastify/proxy-addr", - "type": "static" - }, - { - "source": "npm:fastify", - "target": "npm:abstract-logging", - "type": "static" - }, - { - "source": "npm:fastify", - "target": "npm:avvio", - "type": "static" - }, - { - "source": "npm:fastify", - "target": "npm:fast-json-stringify", - "type": "static" - }, - { - "source": "npm:fastify", - "target": "npm:find-my-way", - "type": "static" - }, - { - "source": "npm:fastify", - "target": "npm:light-my-request", - "type": "static" - }, - { - "source": "npm:fastify", - "target": "npm:pino", - "type": "static" - }, - { - "source": "npm:fastify", - "target": "npm:process-warning", - "type": "static" - }, - { - "source": "npm:fastify", - "target": "npm:rfdc", - "type": "static" - }, - { - "source": "npm:fastify", - "target": "npm:secure-json-parse@4.1.0", - "type": "static" - }, - { - "source": "npm:fastify", - "target": "npm:semver@7.7.4", - "type": "static" - }, - { - "source": "npm:fastify", - "target": "npm:toad-cache", - "type": "static" - } - ], - "npm:fastq": [ - { - "source": "npm:fastq", - "target": "npm:reusify", - "type": "static" - } - ], - "npm:fd-package-json": [ - { - "source": "npm:fd-package-json", - "target": "npm:walk-up-path", - "type": "static" - } - ], - "npm:fd-slicer": [ - { - "source": "npm:fd-slicer", - "target": "npm:pend", - "type": "static" - } - ], - "npm:fdir": [ - { - "source": "npm:fdir", - "target": "npm:picomatch", - "type": "static" - } - ], - "npm:fetch-blob": [ - { - "source": "npm:fetch-blob", - "target": "npm:node-domexception", - "type": "static" - }, - { - "source": "npm:fetch-blob", - "target": "npm:web-streams-polyfill", - "type": "static" - } - ], - "npm:figures@3.2.0": [ - { - "source": "npm:figures@3.2.0", - "target": "npm:escape-string-regexp@1.0.5", - "type": "static" - } - ], - "npm:figures": [ - { - "source": "npm:figures", - "target": "npm:is-unicode-supported", - "type": "static" - } - ], - "npm:file-entry-cache": [ - { - "source": "npm:file-entry-cache", - "target": "npm:flat-cache", - "type": "static" - } - ], - "npm:filelist": [ - { - "source": "npm:filelist", - "target": "npm:minimatch@5.1.9", - "type": "static" - } - ], - "npm:fill-range": [ - { - "source": "npm:fill-range", - "target": "npm:to-regex-range", - "type": "static" - } - ], - "npm:finalhandler": [ - { - "source": "npm:finalhandler", - "target": "npm:debug", - "type": "static" - }, - { - "source": "npm:finalhandler", - "target": "npm:encodeurl", - "type": "static" - }, - { - "source": "npm:finalhandler", - "target": "npm:escape-html", - "type": "static" - }, - { - "source": "npm:finalhandler", - "target": "npm:on-finished", - "type": "static" - }, - { - "source": "npm:finalhandler", - "target": "npm:parseurl", - "type": "static" - }, - { - "source": "npm:finalhandler", - "target": "npm:statuses", - "type": "static" - } - ], - "npm:find-babel-config": [ - { - "source": "npm:find-babel-config", - "target": "npm:json5", - "type": "static" - } - ], - "npm:find-my-way": [ - { - "source": "npm:find-my-way", - "target": "npm:fast-deep-equal", - "type": "static" - }, - { - "source": "npm:find-my-way", - "target": "npm:fast-querystring", - "type": "static" - }, - { - "source": "npm:find-my-way", - "target": "npm:safe-regex2", - "type": "static" - } - ], - "npm:find-up@3.0.0": [ - { - "source": "npm:find-up@3.0.0", - "target": "npm:locate-path@3.0.0", - "type": "static" - } - ], - "npm:find-up": [ - { - "source": "npm:find-up", - "target": "npm:locate-path", - "type": "static" - }, - { - "source": "npm:find-up", - "target": "npm:path-exists", - "type": "static" - } - ], - "npm:flat-cache": [ - { - "source": "npm:flat-cache", - "target": "npm:flatted", - "type": "static" - }, - { - "source": "npm:flat-cache", - "target": "npm:keyv", - "type": "static" - } - ], - "npm:for-each": [ - { - "source": "npm:for-each", - "target": "npm:is-callable", - "type": "static" - } - ], - "npm:foreground-child": [ - { - "source": "npm:foreground-child", - "target": "npm:cross-spawn", - "type": "static" - }, - { - "source": "npm:foreground-child", - "target": "npm:signal-exit", - "type": "static" - } - ], - "npm:form-data": [ - { - "source": "npm:form-data", - "target": "npm:asynckit", - "type": "static" - }, - { - "source": "npm:form-data", - "target": "npm:combined-stream", - "type": "static" - }, - { - "source": "npm:form-data", - "target": "npm:es-set-tostringtag", - "type": "static" - }, - { - "source": "npm:form-data", - "target": "npm:hasown", - "type": "static" - }, - { - "source": "npm:form-data", - "target": "npm:mime-types@2.1.35", - "type": "static" - } - ], - "npm:formatly": [ - { - "source": "npm:formatly", - "target": "npm:fd-package-json", - "type": "static" - } - ], - "npm:formdata-polyfill": [ - { - "source": "npm:formdata-polyfill", - "target": "npm:fetch-blob", - "type": "static" - } - ], - "npm:front-matter": [ - { - "source": "npm:front-matter", - "target": "npm:js-yaml@3.14.2", - "type": "static" - } - ], - "npm:fs-minipass": [ - { - "source": "npm:fs-minipass", - "target": "npm:minipass", - "type": "static" - } - ], - "npm:function.prototype.name": [ - { - "source": "npm:function.prototype.name", - "target": "npm:call-bind", - "type": "static" - }, - { - "source": "npm:function.prototype.name", - "target": "npm:call-bound", - "type": "static" - }, - { - "source": "npm:function.prototype.name", - "target": "npm:define-properties", - "type": "static" - }, - { - "source": "npm:function.prototype.name", - "target": "npm:functions-have-names", - "type": "static" - }, - { - "source": "npm:function.prototype.name", - "target": "npm:hasown", - "type": "static" - }, - { - "source": "npm:function.prototype.name", - "target": "npm:is-callable", - "type": "static" - } - ], - "npm:generate-function": [ - { - "source": "npm:generate-function", - "target": "npm:is-property", - "type": "static" - } - ], - "npm:get-intrinsic": [ - { - "source": "npm:get-intrinsic", - "target": "npm:call-bind-apply-helpers", - "type": "static" - }, - { - "source": "npm:get-intrinsic", - "target": "npm:es-define-property", - "type": "static" - }, - { - "source": "npm:get-intrinsic", - "target": "npm:es-errors", - "type": "static" - }, - { - "source": "npm:get-intrinsic", - "target": "npm:es-object-atoms", - "type": "static" - }, - { - "source": "npm:get-intrinsic", - "target": "npm:function-bind", - "type": "static" - }, - { - "source": "npm:get-intrinsic", - "target": "npm:get-proto", - "type": "static" - }, - { - "source": "npm:get-intrinsic", - "target": "npm:gopd", - "type": "static" - }, - { - "source": "npm:get-intrinsic", - "target": "npm:has-symbols", - "type": "static" - }, - { - "source": "npm:get-intrinsic", - "target": "npm:hasown", - "type": "static" - }, - { - "source": "npm:get-intrinsic", - "target": "npm:math-intrinsics", - "type": "static" - } - ], - "npm:get-proto": [ - { - "source": "npm:get-proto", - "target": "npm:dunder-proto", - "type": "static" - }, - { - "source": "npm:get-proto", - "target": "npm:es-object-atoms", - "type": "static" - } - ], - "npm:get-stream@5.2.0": [ - { - "source": "npm:get-stream@5.2.0", - "target": "npm:pump", - "type": "static" - } - ], - "npm:get-stream": [ - { - "source": "npm:get-stream", - "target": "npm:@sec-ant/readable-stream", - "type": "static" - }, - { - "source": "npm:get-stream", - "target": "npm:is-stream", - "type": "static" - } - ], - "npm:get-symbol-description": [ - { - "source": "npm:get-symbol-description", - "target": "npm:call-bound", - "type": "static" - }, - { - "source": "npm:get-symbol-description", - "target": "npm:es-errors", - "type": "static" - }, - { - "source": "npm:get-symbol-description", - "target": "npm:get-intrinsic", - "type": "static" - } - ], - "npm:get-tsconfig": [ - { - "source": "npm:get-tsconfig", - "target": "npm:resolve-pkg-maps", - "type": "static" - } - ], - "npm:get-uri": [ - { - "source": "npm:get-uri", - "target": "npm:basic-ftp", - "type": "static" - }, - { - "source": "npm:get-uri", - "target": "npm:data-uri-to-buffer@6.0.2", - "type": "static" - }, - { - "source": "npm:get-uri", - "target": "npm:debug", - "type": "static" - } - ], - "npm:giget": [ - { - "source": "npm:giget", - "target": "npm:citty@0.1.6", - "type": "static" - }, - { - "source": "npm:giget", - "target": "npm:consola", - "type": "static" - }, - { - "source": "npm:giget", - "target": "npm:defu", - "type": "static" - }, - { - "source": "npm:giget", - "target": "npm:node-fetch-native", - "type": "static" - }, - { - "source": "npm:giget", - "target": "npm:nypm", - "type": "static" - }, - { - "source": "npm:giget", - "target": "npm:pathe", - "type": "static" - } - ], - "npm:glob-parent@5.1.2": [ - { - "source": "npm:glob-parent@5.1.2", - "target": "npm:is-glob", - "type": "static" - } - ], - "npm:glob-parent": [ - { - "source": "npm:glob-parent", - "target": "npm:is-glob", - "type": "static" - } - ], - "npm:glob@10.5.0": [ - { - "source": "npm:glob@10.5.0", - "target": "npm:foreground-child", - "type": "static" - }, - { - "source": "npm:glob@10.5.0", - "target": "npm:jackspeak@3.4.3", - "type": "static" - }, - { - "source": "npm:glob@10.5.0", - "target": "npm:minimatch@9.0.5", - "type": "static" - }, - { - "source": "npm:glob@10.5.0", - "target": "npm:minipass", - "type": "static" - }, - { - "source": "npm:glob@10.5.0", - "target": "npm:package-json-from-dist", - "type": "static" - }, - { - "source": "npm:glob@10.5.0", - "target": "npm:path-scurry@1.11.1", - "type": "static" - } - ], - "npm:glob": [ - { - "source": "npm:glob", - "target": "npm:minimatch@10.2.3", - "type": "static" - }, - { - "source": "npm:glob", - "target": "npm:minipass", - "type": "static" - }, - { - "source": "npm:glob", - "target": "npm:path-scurry", - "type": "static" - } - ], - "npm:glob@9.3.5": [ - { - "source": "npm:glob@9.3.5", - "target": "npm:fs.realpath", - "type": "static" - }, - { - "source": "npm:glob@9.3.5", - "target": "npm:minimatch@8.0.4", - "type": "static" - }, - { - "source": "npm:glob@9.3.5", - "target": "npm:minipass@4.2.8", - "type": "static" - }, - { - "source": "npm:glob@9.3.5", - "target": "npm:path-scurry@1.11.1", - "type": "static" - } - ], - "npm:globalthis": [ - { - "source": "npm:globalthis", - "target": "npm:define-properties", - "type": "static" - }, - { - "source": "npm:globalthis", - "target": "npm:gopd", - "type": "static" - } - ], - "npm:globby": [ - { - "source": "npm:globby", - "target": "npm:@sindresorhus/merge-streams", - "type": "static" - }, - { - "source": "npm:globby", - "target": "npm:fast-glob", - "type": "static" - }, - { - "source": "npm:globby", - "target": "npm:ignore@7.0.5", - "type": "static" - }, - { - "source": "npm:globby", - "target": "npm:is-path-inside", - "type": "static" - }, - { - "source": "npm:globby", - "target": "npm:slash", - "type": "static" - }, - { - "source": "npm:globby", - "target": "npm:unicorn-magic", - "type": "static" - } - ], - "npm:got": [ - { - "source": "npm:got", - "target": "npm:@sindresorhus/is", - "type": "static" - }, - { - "source": "npm:got", - "target": "npm:@szmarczak/http-timer", - "type": "static" - }, - { - "source": "npm:got", - "target": "npm:@types/cacheable-request", - "type": "static" - }, - { - "source": "npm:got", - "target": "npm:@types/responselike", - "type": "static" - }, - { - "source": "npm:got", - "target": "npm:cacheable-lookup", - "type": "static" - }, - { - "source": "npm:got", - "target": "npm:cacheable-request", - "type": "static" - }, - { - "source": "npm:got", - "target": "npm:decompress-response", - "type": "static" - }, - { - "source": "npm:got", - "target": "npm:http2-wrapper", - "type": "static" - }, - { - "source": "npm:got", - "target": "npm:lowercase-keys", - "type": "static" - }, - { - "source": "npm:got", - "target": "npm:p-cancelable", - "type": "static" - }, - { - "source": "npm:got", - "target": "npm:responselike", - "type": "static" - } - ], - "npm:h3": [ - { - "source": "npm:h3", - "target": "npm:cookie-es", - "type": "static" - }, - { - "source": "npm:h3", - "target": "npm:crossws", - "type": "static" - }, - { - "source": "npm:h3", - "target": "npm:defu", - "type": "static" - }, - { - "source": "npm:h3", - "target": "npm:destr", - "type": "static" - }, - { - "source": "npm:h3", - "target": "npm:iron-webcrypto", - "type": "static" - }, - { - "source": "npm:h3", - "target": "npm:node-mock-http", - "type": "static" - }, - { - "source": "npm:h3", - "target": "npm:radix3", - "type": "static" - }, - { - "source": "npm:h3", - "target": "npm:ufo", - "type": "static" - }, - { - "source": "npm:h3", - "target": "npm:uncrypto", - "type": "static" - } - ], - "npm:has-property-descriptors": [ - { - "source": "npm:has-property-descriptors", - "target": "npm:es-define-property", - "type": "static" - } - ], - "npm:has-proto": [ - { - "source": "npm:has-proto", - "target": "npm:dunder-proto", - "type": "static" - } - ], - "npm:has-tostringtag": [ - { - "source": "npm:has-tostringtag", - "target": "npm:has-symbols", - "type": "static" - } - ], - "npm:hasown": [ - { - "source": "npm:hasown", - "target": "npm:function-bind", - "type": "static" - } - ], - "npm:html-encoding-sniffer": [ - { - "source": "npm:html-encoding-sniffer", - "target": "npm:whatwg-encoding", - "type": "static" - } - ], - "npm:http-errors": [ - { - "source": "npm:http-errors", - "target": "npm:depd", - "type": "static" - }, - { - "source": "npm:http-errors", - "target": "npm:inherits", - "type": "static" - }, - { - "source": "npm:http-errors", - "target": "npm:setprototypeof", - "type": "static" - }, - { - "source": "npm:http-errors", - "target": "npm:statuses", - "type": "static" - }, - { - "source": "npm:http-errors", - "target": "npm:toidentifier", - "type": "static" - } - ], - "npm:http-proxy-agent": [ - { - "source": "npm:http-proxy-agent", - "target": "npm:agent-base", - "type": "static" - }, - { - "source": "npm:http-proxy-agent", - "target": "npm:debug", - "type": "static" - } - ], - "npm:http-proxy": [ - { - "source": "npm:http-proxy", - "target": "npm:eventemitter3", - "type": "static" - }, - { - "source": "npm:http-proxy", - "target": "npm:follow-redirects", - "type": "static" - }, - { - "source": "npm:http-proxy", - "target": "npm:requires-port", - "type": "static" - } - ], - "npm:http-server": [ - { - "source": "npm:http-server", - "target": "npm:basic-auth", - "type": "static" - }, - { - "source": "npm:http-server", - "target": "npm:chalk", - "type": "static" - }, - { - "source": "npm:http-server", - "target": "npm:corser", - "type": "static" - }, - { - "source": "npm:http-server", - "target": "npm:he", - "type": "static" - }, - { - "source": "npm:http-server", - "target": "npm:html-encoding-sniffer", - "type": "static" - }, - { - "source": "npm:http-server", - "target": "npm:http-proxy", - "type": "static" - }, - { - "source": "npm:http-server", - "target": "npm:mime", - "type": "static" - }, - { - "source": "npm:http-server", - "target": "npm:minimist", - "type": "static" - }, - { - "source": "npm:http-server", - "target": "npm:opener", - "type": "static" - }, - { - "source": "npm:http-server", - "target": "npm:portfinder", - "type": "static" - }, - { - "source": "npm:http-server", - "target": "npm:secure-compare", - "type": "static" - }, - { - "source": "npm:http-server", - "target": "npm:union", - "type": "static" - }, - { - "source": "npm:http-server", - "target": "npm:url-join", - "type": "static" - } - ], - "npm:http2-wrapper": [ - { - "source": "npm:http2-wrapper", - "target": "npm:quick-lru", - "type": "static" - }, - { - "source": "npm:http2-wrapper", - "target": "npm:resolve-alpn", - "type": "static" - } - ], - "npm:https-proxy-agent": [ - { - "source": "npm:https-proxy-agent", - "target": "npm:agent-base@6.0.2", - "type": "static" - }, - { - "source": "npm:https-proxy-agent", - "target": "npm:debug", - "type": "static" - } - ], - "npm:https-proxy-agent@7.0.6": [ - { - "source": "npm:https-proxy-agent@7.0.6", - "target": "npm:agent-base", - "type": "static" - }, - { - "source": "npm:https-proxy-agent@7.0.6", - "target": "npm:debug", - "type": "static" - } - ], - "npm:iconv-lite": [ - { - "source": "npm:iconv-lite", - "target": "npm:safer-buffer", - "type": "static" - } - ], - "npm:iconv-lite@0.7.2": [ - { - "source": "npm:iconv-lite@0.7.2", - "target": "npm:safer-buffer", - "type": "static" - } - ], - "npm:import-fresh": [ - { - "source": "npm:import-fresh", - "target": "npm:parent-module", - "type": "static" - }, - { - "source": "npm:import-fresh", - "target": "npm:resolve-from@4.0.0", - "type": "static" - } - ], - "npm:internal-slot": [ - { - "source": "npm:internal-slot", - "target": "npm:es-errors", - "type": "static" - }, - { - "source": "npm:internal-slot", - "target": "npm:hasown", - "type": "static" - }, - { - "source": "npm:internal-slot", - "target": "npm:side-channel", - "type": "static" - } - ], - "npm:is-array-buffer": [ - { - "source": "npm:is-array-buffer", - "target": "npm:call-bind", - "type": "static" - }, - { - "source": "npm:is-array-buffer", - "target": "npm:call-bound", - "type": "static" - }, - { - "source": "npm:is-array-buffer", - "target": "npm:get-intrinsic", - "type": "static" - } - ], - "npm:is-async-function": [ - { - "source": "npm:is-async-function", - "target": "npm:async-function", - "type": "static" - }, - { - "source": "npm:is-async-function", - "target": "npm:call-bound", - "type": "static" - }, - { - "source": "npm:is-async-function", - "target": "npm:get-proto", - "type": "static" - }, - { - "source": "npm:is-async-function", - "target": "npm:has-tostringtag", - "type": "static" - }, - { - "source": "npm:is-async-function", - "target": "npm:safe-regex-test", - "type": "static" - } - ], - "npm:is-bigint": [ - { - "source": "npm:is-bigint", - "target": "npm:has-bigints", - "type": "static" - } - ], - "npm:is-boolean-object": [ - { - "source": "npm:is-boolean-object", - "target": "npm:call-bound", - "type": "static" - }, - { - "source": "npm:is-boolean-object", - "target": "npm:has-tostringtag", - "type": "static" - } - ], - "npm:is-core-module": [ - { - "source": "npm:is-core-module", - "target": "npm:hasown", - "type": "static" - } - ], - "npm:is-data-view": [ - { - "source": "npm:is-data-view", - "target": "npm:call-bound", - "type": "static" - }, - { - "source": "npm:is-data-view", - "target": "npm:get-intrinsic", - "type": "static" - }, - { - "source": "npm:is-data-view", - "target": "npm:is-typed-array", - "type": "static" - } - ], - "npm:is-date-object": [ - { - "source": "npm:is-date-object", - "target": "npm:call-bound", - "type": "static" - }, - { - "source": "npm:is-date-object", - "target": "npm:has-tostringtag", - "type": "static" - } - ], - "npm:is-finalizationregistry": [ - { - "source": "npm:is-finalizationregistry", - "target": "npm:call-bound", - "type": "static" - } - ], - "npm:is-generator-function": [ - { - "source": "npm:is-generator-function", - "target": "npm:call-bound", - "type": "static" - }, - { - "source": "npm:is-generator-function", - "target": "npm:generator-function", - "type": "static" - }, - { - "source": "npm:is-generator-function", - "target": "npm:get-proto", - "type": "static" - }, - { - "source": "npm:is-generator-function", - "target": "npm:has-tostringtag", - "type": "static" - }, - { - "source": "npm:is-generator-function", - "target": "npm:safe-regex-test", - "type": "static" - } - ], - "npm:is-glob": [ - { - "source": "npm:is-glob", - "target": "npm:is-extglob", - "type": "static" - } - ], - "npm:is-html": [ - { - "source": "npm:is-html", - "target": "npm:html-tags", - "type": "static" - } - ], - "npm:is-number-object": [ - { - "source": "npm:is-number-object", - "target": "npm:call-bound", - "type": "static" - }, - { - "source": "npm:is-number-object", - "target": "npm:has-tostringtag", - "type": "static" - } - ], - "npm:is-regex": [ - { - "source": "npm:is-regex", - "target": "npm:call-bound", - "type": "static" - }, - { - "source": "npm:is-regex", - "target": "npm:gopd", - "type": "static" - }, - { - "source": "npm:is-regex", - "target": "npm:has-tostringtag", - "type": "static" - }, - { - "source": "npm:is-regex", - "target": "npm:hasown", - "type": "static" - } - ], - "npm:is-shared-array-buffer": [ - { - "source": "npm:is-shared-array-buffer", - "target": "npm:call-bound", - "type": "static" - } - ], - "npm:is-string": [ - { - "source": "npm:is-string", - "target": "npm:call-bound", - "type": "static" - }, - { - "source": "npm:is-string", - "target": "npm:has-tostringtag", - "type": "static" - } - ], - "npm:is-symbol": [ - { - "source": "npm:is-symbol", - "target": "npm:call-bound", - "type": "static" - }, - { - "source": "npm:is-symbol", - "target": "npm:has-symbols", - "type": "static" - }, - { - "source": "npm:is-symbol", - "target": "npm:safe-regex-test", - "type": "static" - } - ], - "npm:is-typed-array": [ - { - "source": "npm:is-typed-array", - "target": "npm:which-typed-array", - "type": "static" - } - ], - "npm:is-url-http": [ - { - "source": "npm:is-url-http", - "target": "npm:url-http", - "type": "static" - } - ], - "npm:is-weakref": [ - { - "source": "npm:is-weakref", - "target": "npm:call-bound", - "type": "static" - } - ], - "npm:is-weakset": [ - { - "source": "npm:is-weakset", - "target": "npm:call-bound", - "type": "static" - }, - { - "source": "npm:is-weakset", - "target": "npm:get-intrinsic", - "type": "static" - } - ], - "npm:is-wsl": [ - { - "source": "npm:is-wsl", - "target": "npm:is-docker", - "type": "static" - } - ], - "npm:iterator.prototype": [ - { - "source": "npm:iterator.prototype", - "target": "npm:define-data-property", - "type": "static" - }, - { - "source": "npm:iterator.prototype", - "target": "npm:es-object-atoms", - "type": "static" - }, - { - "source": "npm:iterator.prototype", - "target": "npm:get-intrinsic", - "type": "static" - }, - { - "source": "npm:iterator.prototype", - "target": "npm:get-proto", - "type": "static" - }, - { - "source": "npm:iterator.prototype", - "target": "npm:has-symbols", - "type": "static" - }, - { - "source": "npm:iterator.prototype", - "target": "npm:set-function-name", - "type": "static" - } - ], - "npm:jackspeak@3.4.3": [ - { - "source": "npm:jackspeak@3.4.3", - "target": "npm:@isaacs/cliui@8.0.2", - "type": "static" - }, - { - "source": "npm:jackspeak@3.4.3", - "target": "npm:@pkgjs/parseargs", - "type": "static" - } - ], - "npm:jackspeak": [ - { - "source": "npm:jackspeak", - "target": "npm:@isaacs/cliui", - "type": "static" - } - ], - "npm:jake": [ - { - "source": "npm:jake", - "target": "npm:async", - "type": "static" - }, - { - "source": "npm:jake", - "target": "npm:filelist", - "type": "static" - }, - { - "source": "npm:jake", - "target": "npm:picocolors", - "type": "static" - } - ], - "npm:jest-diff": [ - { - "source": "npm:jest-diff", - "target": "npm:@jest/diff-sequences", - "type": "static" - }, - { - "source": "npm:jest-diff", - "target": "npm:@jest/get-type", - "type": "static" - }, - { - "source": "npm:jest-diff", - "target": "npm:chalk", - "type": "static" - }, - { - "source": "npm:jest-diff", - "target": "npm:pretty-format", - "type": "static" - } - ], - "npm:js-yaml@3.14.2": [ - { - "source": "npm:js-yaml@3.14.2", - "target": "npm:argparse@1.0.10", - "type": "static" - }, - { - "source": "npm:js-yaml@3.14.2", - "target": "npm:esprima", - "type": "static" - } - ], - "npm:js-yaml": [ - { - "source": "npm:js-yaml", - "target": "npm:argparse", - "type": "static" - } - ], - "npm:json-loose": [ - { - "source": "npm:json-loose", - "target": "npm:moo", - "type": "static" - } - ], - "npm:json-schema-ref-resolver": [ - { - "source": "npm:json-schema-ref-resolver", - "target": "npm:dequal", - "type": "static" - } - ], - "npm:jsx-ast-utils": [ - { - "source": "npm:jsx-ast-utils", - "target": "npm:array-includes", - "type": "static" - }, - { - "source": "npm:jsx-ast-utils", - "target": "npm:array.prototype.flat", - "type": "static" - }, - { - "source": "npm:jsx-ast-utils", - "target": "npm:object.assign", - "type": "static" - }, - { - "source": "npm:jsx-ast-utils", - "target": "npm:object.values", - "type": "static" - } - ], - "npm:keyv": [ - { - "source": "npm:keyv", - "target": "npm:json-buffer", - "type": "static" - } - ], - "npm:knip": [ - { - "source": "npm:knip", - "target": "npm:@nodelib/fs.walk", - "type": "static" - }, - { - "source": "npm:knip", - "target": "npm:@types/node", - "type": "static" - }, - { - "source": "npm:knip", - "target": "npm:fast-glob", - "type": "static" - }, - { - "source": "npm:knip", - "target": "npm:formatly", - "type": "static" - }, - { - "source": "npm:knip", - "target": "npm:jiti", - "type": "static" - }, - { - "source": "npm:knip", - "target": "npm:minimist", - "type": "static" - }, - { - "source": "npm:knip", - "target": "npm:oxc-resolver", - "type": "static" - }, - { - "source": "npm:knip", - "target": "npm:picocolors", - "type": "static" - }, - { - "source": "npm:knip", - "target": "npm:picomatch", - "type": "static" - }, - { - "source": "npm:knip", - "target": "npm:smol-toml", - "type": "static" - }, - { - "source": "npm:knip", - "target": "npm:strip-json-comments", - "type": "static" - }, - { - "source": "npm:knip", - "target": "npm:typescript", - "type": "static" - }, - { - "source": "npm:knip", - "target": "npm:unbash", - "type": "static" - }, - { - "source": "npm:knip", - "target": "npm:yaml", - "type": "static" - }, - { - "source": "npm:knip", - "target": "npm:zod@4.3.6", - "type": "static" - } - ], - "npm:kysely-d1": [ - { - "source": "npm:kysely-d1", - "target": "npm:kysely", - "type": "static" - } - ], - "npm:levn": [ - { - "source": "npm:levn", - "target": "npm:prelude-ls", - "type": "static" - }, - { - "source": "npm:levn", - "target": "npm:type-check", - "type": "static" - } - ], - "npm:light-my-request": [ - { - "source": "npm:light-my-request", - "target": "npm:cookie@1.1.1", - "type": "static" - }, - { - "source": "npm:light-my-request", - "target": "npm:process-warning@4.0.1", - "type": "static" - }, - { - "source": "npm:light-my-request", - "target": "npm:set-cookie-parser", - "type": "static" - } - ], - "npm:lightningcss": [ - { - "source": "npm:lightningcss", - "target": "npm:detect-libc", - "type": "static" - }, - { - "source": "npm:lightningcss", - "target": "npm:lightningcss-android-arm64", - "type": "static" - }, - { - "source": "npm:lightningcss", - "target": "npm:lightningcss-darwin-arm64", - "type": "static" - }, - { - "source": "npm:lightningcss", - "target": "npm:lightningcss-darwin-x64", - "type": "static" - }, - { - "source": "npm:lightningcss", - "target": "npm:lightningcss-freebsd-x64", - "type": "static" - }, - { - "source": "npm:lightningcss", - "target": "npm:lightningcss-linux-arm-gnueabihf", - "type": "static" - }, - { - "source": "npm:lightningcss", - "target": "npm:lightningcss-linux-arm64-gnu", - "type": "static" - }, - { - "source": "npm:lightningcss", - "target": "npm:lightningcss-linux-arm64-musl", - "type": "static" - }, - { - "source": "npm:lightningcss", - "target": "npm:lightningcss-linux-x64-gnu", - "type": "static" - }, - { - "source": "npm:lightningcss", - "target": "npm:lightningcss-linux-x64-musl", - "type": "static" - }, - { - "source": "npm:lightningcss", - "target": "npm:lightningcss-win32-arm64-msvc", - "type": "static" - }, - { - "source": "npm:lightningcss", - "target": "npm:lightningcss-win32-x64-msvc", - "type": "static" - } - ], - "npm:locate-path@3.0.0": [ - { - "source": "npm:locate-path@3.0.0", - "target": "npm:p-locate@3.0.0", - "type": "static" - }, - { - "source": "npm:locate-path@3.0.0", - "target": "npm:path-exists@3.0.0", - "type": "static" - } - ], - "npm:locate-path": [ - { - "source": "npm:locate-path", - "target": "npm:p-locate", - "type": "static" - } - ], - "npm:log-symbols": [ - { - "source": "npm:log-symbols", - "target": "npm:chalk", - "type": "static" - }, - { - "source": "npm:log-symbols", - "target": "npm:is-unicode-supported@0.1.0", - "type": "static" - } - ], - "npm:loose-envify": [ - { - "source": "npm:loose-envify", - "target": "npm:js-tokens", - "type": "static" - } - ], - "npm:lru-cache": [ - { - "source": "npm:lru-cache", - "target": "npm:yallist", - "type": "static" - } - ], - "npm:lucide-react": [ - { - "source": "npm:lucide-react", - "target": "npm:react", - "type": "static" - } - ], - "npm:magic-regexp": [ - { - "source": "npm:magic-regexp", - "target": "npm:estree-walker", - "type": "static" - }, - { - "source": "npm:magic-regexp", - "target": "npm:magic-string", - "type": "static" - }, - { - "source": "npm:magic-regexp", - "target": "npm:mlly", - "type": "static" - }, - { - "source": "npm:magic-regexp", - "target": "npm:regexp-tree", - "type": "static" - }, - { - "source": "npm:magic-regexp", - "target": "npm:type-level-regexp", - "type": "static" - }, - { - "source": "npm:magic-regexp", - "target": "npm:ufo", - "type": "static" - }, - { - "source": "npm:magic-regexp", - "target": "npm:unplugin", - "type": "static" - } - ], - "npm:magic-string": [ - { - "source": "npm:magic-string", - "target": "npm:@jridgewell/sourcemap-codec", - "type": "static" - } - ], - "npm:magicast": [ - { - "source": "npm:magicast", - "target": "npm:@babel/parser", - "type": "static" - }, - { - "source": "npm:magicast", - "target": "npm:@babel/types", - "type": "static" - }, - { - "source": "npm:magicast", - "target": "npm:source-map-js", - "type": "static" - } - ], - "npm:make-fetch-happen": [ - { - "source": "npm:make-fetch-happen", - "target": "npm:@npmcli/agent", - "type": "static" - }, - { - "source": "npm:make-fetch-happen", - "target": "npm:cacache", - "type": "static" - }, - { - "source": "npm:make-fetch-happen", - "target": "npm:http-cache-semantics", - "type": "static" - }, - { - "source": "npm:make-fetch-happen", - "target": "npm:minipass", - "type": "static" - }, - { - "source": "npm:make-fetch-happen", - "target": "npm:minipass-fetch", - "type": "static" - }, - { - "source": "npm:make-fetch-happen", - "target": "npm:minipass-flush", - "type": "static" - }, - { - "source": "npm:make-fetch-happen", - "target": "npm:minipass-pipeline", - "type": "static" - }, - { - "source": "npm:make-fetch-happen", - "target": "npm:negotiator", - "type": "static" - }, - { - "source": "npm:make-fetch-happen", - "target": "npm:proc-log", - "type": "static" - }, - { - "source": "npm:make-fetch-happen", - "target": "npm:promise-retry", - "type": "static" - }, - { - "source": "npm:make-fetch-happen", - "target": "npm:ssri", - "type": "static" - } - ], - "npm:mdast-builder": [ - { - "source": "npm:mdast-builder", - "target": "npm:@types/unist", - "type": "static" - } - ], - "npm:mdast-util-from-markdown": [ - { - "source": "npm:mdast-util-from-markdown", - "target": "npm:@types/mdast", - "type": "static" - }, - { - "source": "npm:mdast-util-from-markdown", - "target": "npm:@types/unist@3.0.3", - "type": "static" - }, - { - "source": "npm:mdast-util-from-markdown", - "target": "npm:decode-named-character-reference", - "type": "static" - }, - { - "source": "npm:mdast-util-from-markdown", - "target": "npm:devlop", - "type": "static" - }, - { - "source": "npm:mdast-util-from-markdown", - "target": "npm:mdast-util-to-string", - "type": "static" - }, - { - "source": "npm:mdast-util-from-markdown", - "target": "npm:micromark", - "type": "static" - }, - { - "source": "npm:mdast-util-from-markdown", - "target": "npm:micromark-util-decode-numeric-character-reference", - "type": "static" - }, - { - "source": "npm:mdast-util-from-markdown", - "target": "npm:micromark-util-decode-string", - "type": "static" - }, - { - "source": "npm:mdast-util-from-markdown", - "target": "npm:micromark-util-normalize-identifier", - "type": "static" - }, - { - "source": "npm:mdast-util-from-markdown", - "target": "npm:micromark-util-symbol", - "type": "static" - }, - { - "source": "npm:mdast-util-from-markdown", - "target": "npm:micromark-util-types", - "type": "static" - }, - { - "source": "npm:mdast-util-from-markdown", - "target": "npm:unist-util-stringify-position", - "type": "static" - } - ], - "npm:mdast-util-phrasing": [ - { - "source": "npm:mdast-util-phrasing", - "target": "npm:@types/mdast", - "type": "static" - }, - { - "source": "npm:mdast-util-phrasing", - "target": "npm:unist-util-is", - "type": "static" - } - ], - "npm:mdast-util-to-markdown": [ - { - "source": "npm:mdast-util-to-markdown", - "target": "npm:@types/mdast", - "type": "static" - }, - { - "source": "npm:mdast-util-to-markdown", - "target": "npm:@types/unist@3.0.3", - "type": "static" - }, - { - "source": "npm:mdast-util-to-markdown", - "target": "npm:longest-streak", - "type": "static" - }, - { - "source": "npm:mdast-util-to-markdown", - "target": "npm:mdast-util-phrasing", - "type": "static" - }, - { - "source": "npm:mdast-util-to-markdown", - "target": "npm:mdast-util-to-string", - "type": "static" - }, - { - "source": "npm:mdast-util-to-markdown", - "target": "npm:micromark-util-classify-character", - "type": "static" - }, - { - "source": "npm:mdast-util-to-markdown", - "target": "npm:micromark-util-decode-string", - "type": "static" - }, - { - "source": "npm:mdast-util-to-markdown", - "target": "npm:unist-util-visit", - "type": "static" - }, - { - "source": "npm:mdast-util-to-markdown", - "target": "npm:zwitch", - "type": "static" - } - ], - "npm:mdast-util-to-string": [ - { - "source": "npm:mdast-util-to-string", - "target": "npm:@types/mdast", - "type": "static" - } - ], - "npm:mdast-util-toc": [ - { - "source": "npm:mdast-util-toc", - "target": "npm:@types/mdast", - "type": "static" - }, - { - "source": "npm:mdast-util-toc", - "target": "npm:@types/ungap__structured-clone", - "type": "static" - }, - { - "source": "npm:mdast-util-toc", - "target": "npm:@ungap/structured-clone", - "type": "static" - }, - { - "source": "npm:mdast-util-toc", - "target": "npm:github-slugger", - "type": "static" - }, - { - "source": "npm:mdast-util-toc", - "target": "npm:mdast-util-to-string", - "type": "static" - }, - { - "source": "npm:mdast-util-toc", - "target": "npm:unist-util-is", - "type": "static" - }, - { - "source": "npm:mdast-util-toc", - "target": "npm:unist-util-visit", - "type": "static" - } - ], - "npm:merge-anything": [ - { - "source": "npm:merge-anything", - "target": "npm:is-what", - "type": "static" - } - ], - "npm:micromark-core-commonmark": [ - { - "source": "npm:micromark-core-commonmark", - "target": "npm:decode-named-character-reference", - "type": "static" - }, - { - "source": "npm:micromark-core-commonmark", - "target": "npm:devlop", - "type": "static" - }, - { - "source": "npm:micromark-core-commonmark", - "target": "npm:micromark-factory-destination", - "type": "static" - }, - { - "source": "npm:micromark-core-commonmark", - "target": "npm:micromark-factory-label", - "type": "static" - }, - { - "source": "npm:micromark-core-commonmark", - "target": "npm:micromark-factory-space", - "type": "static" - }, - { - "source": "npm:micromark-core-commonmark", - "target": "npm:micromark-factory-title", - "type": "static" - }, - { - "source": "npm:micromark-core-commonmark", - "target": "npm:micromark-factory-whitespace", - "type": "static" - }, - { - "source": "npm:micromark-core-commonmark", - "target": "npm:micromark-util-character", - "type": "static" - }, - { - "source": "npm:micromark-core-commonmark", - "target": "npm:micromark-util-chunked", - "type": "static" - }, - { - "source": "npm:micromark-core-commonmark", - "target": "npm:micromark-util-classify-character", - "type": "static" - }, - { - "source": "npm:micromark-core-commonmark", - "target": "npm:micromark-util-html-tag-name", - "type": "static" - }, - { - "source": "npm:micromark-core-commonmark", - "target": "npm:micromark-util-normalize-identifier", - "type": "static" - }, - { - "source": "npm:micromark-core-commonmark", - "target": "npm:micromark-util-resolve-all", - "type": "static" - }, - { - "source": "npm:micromark-core-commonmark", - "target": "npm:micromark-util-subtokenize", - "type": "static" - }, - { - "source": "npm:micromark-core-commonmark", - "target": "npm:micromark-util-symbol", - "type": "static" - }, - { - "source": "npm:micromark-core-commonmark", - "target": "npm:micromark-util-types", - "type": "static" - } - ], - "npm:micromark-factory-destination": [ - { - "source": "npm:micromark-factory-destination", - "target": "npm:micromark-util-character", - "type": "static" - }, - { - "source": "npm:micromark-factory-destination", - "target": "npm:micromark-util-symbol", - "type": "static" - }, - { - "source": "npm:micromark-factory-destination", - "target": "npm:micromark-util-types", - "type": "static" - } - ], - "npm:micromark-factory-label": [ - { - "source": "npm:micromark-factory-label", - "target": "npm:devlop", - "type": "static" - }, - { - "source": "npm:micromark-factory-label", - "target": "npm:micromark-util-character", - "type": "static" - }, - { - "source": "npm:micromark-factory-label", - "target": "npm:micromark-util-symbol", - "type": "static" - }, - { - "source": "npm:micromark-factory-label", - "target": "npm:micromark-util-types", - "type": "static" - } - ], - "npm:micromark-factory-space": [ - { - "source": "npm:micromark-factory-space", - "target": "npm:micromark-util-character", - "type": "static" - }, - { - "source": "npm:micromark-factory-space", - "target": "npm:micromark-util-types", - "type": "static" - } - ], - "npm:micromark-factory-title": [ - { - "source": "npm:micromark-factory-title", - "target": "npm:micromark-factory-space", - "type": "static" - }, - { - "source": "npm:micromark-factory-title", - "target": "npm:micromark-util-character", - "type": "static" - }, - { - "source": "npm:micromark-factory-title", - "target": "npm:micromark-util-symbol", - "type": "static" - }, - { - "source": "npm:micromark-factory-title", - "target": "npm:micromark-util-types", - "type": "static" - } - ], - "npm:micromark-factory-whitespace": [ - { - "source": "npm:micromark-factory-whitespace", - "target": "npm:micromark-factory-space", - "type": "static" - }, - { - "source": "npm:micromark-factory-whitespace", - "target": "npm:micromark-util-character", - "type": "static" - }, - { - "source": "npm:micromark-factory-whitespace", - "target": "npm:micromark-util-symbol", - "type": "static" - }, - { - "source": "npm:micromark-factory-whitespace", - "target": "npm:micromark-util-types", - "type": "static" - } - ], - "npm:micromark-util-character": [ - { - "source": "npm:micromark-util-character", - "target": "npm:micromark-util-symbol", - "type": "static" - }, - { - "source": "npm:micromark-util-character", - "target": "npm:micromark-util-types", - "type": "static" - } - ], - "npm:micromark-util-chunked": [ - { - "source": "npm:micromark-util-chunked", - "target": "npm:micromark-util-symbol", - "type": "static" - } - ], - "npm:micromark-util-classify-character": [ - { - "source": "npm:micromark-util-classify-character", - "target": "npm:micromark-util-character", - "type": "static" - }, - { - "source": "npm:micromark-util-classify-character", - "target": "npm:micromark-util-symbol", - "type": "static" - }, - { - "source": "npm:micromark-util-classify-character", - "target": "npm:micromark-util-types", - "type": "static" - } - ], - "npm:micromark-util-combine-extensions": [ - { - "source": "npm:micromark-util-combine-extensions", - "target": "npm:micromark-util-chunked", - "type": "static" - }, - { - "source": "npm:micromark-util-combine-extensions", - "target": "npm:micromark-util-types", - "type": "static" - } - ], - "npm:micromark-util-decode-numeric-character-reference": [ - { - "source": "npm:micromark-util-decode-numeric-character-reference", - "target": "npm:micromark-util-symbol", - "type": "static" - } - ], - "npm:micromark-util-decode-string": [ - { - "source": "npm:micromark-util-decode-string", - "target": "npm:decode-named-character-reference", - "type": "static" - }, - { - "source": "npm:micromark-util-decode-string", - "target": "npm:micromark-util-character", - "type": "static" - }, - { - "source": "npm:micromark-util-decode-string", - "target": "npm:micromark-util-decode-numeric-character-reference", - "type": "static" - }, - { - "source": "npm:micromark-util-decode-string", - "target": "npm:micromark-util-symbol", - "type": "static" - } - ], - "npm:micromark-util-normalize-identifier": [ - { - "source": "npm:micromark-util-normalize-identifier", - "target": "npm:micromark-util-symbol", - "type": "static" - } - ], - "npm:micromark-util-resolve-all": [ - { - "source": "npm:micromark-util-resolve-all", - "target": "npm:micromark-util-types", - "type": "static" - } - ], - "npm:micromark-util-sanitize-uri": [ - { - "source": "npm:micromark-util-sanitize-uri", - "target": "npm:micromark-util-character", - "type": "static" - }, - { - "source": "npm:micromark-util-sanitize-uri", - "target": "npm:micromark-util-encode", - "type": "static" - }, - { - "source": "npm:micromark-util-sanitize-uri", - "target": "npm:micromark-util-symbol", - "type": "static" - } - ], - "npm:micromark-util-subtokenize": [ - { - "source": "npm:micromark-util-subtokenize", - "target": "npm:devlop", - "type": "static" - }, - { - "source": "npm:micromark-util-subtokenize", - "target": "npm:micromark-util-chunked", - "type": "static" - }, - { - "source": "npm:micromark-util-subtokenize", - "target": "npm:micromark-util-symbol", - "type": "static" - }, - { - "source": "npm:micromark-util-subtokenize", - "target": "npm:micromark-util-types", - "type": "static" - } - ], - "npm:micromark": [ - { - "source": "npm:micromark", - "target": "npm:@types/debug", - "type": "static" - }, - { - "source": "npm:micromark", - "target": "npm:debug", - "type": "static" - }, - { - "source": "npm:micromark", - "target": "npm:decode-named-character-reference", - "type": "static" - }, - { - "source": "npm:micromark", - "target": "npm:devlop", - "type": "static" - }, - { - "source": "npm:micromark", - "target": "npm:micromark-core-commonmark", - "type": "static" - }, - { - "source": "npm:micromark", - "target": "npm:micromark-factory-space", - "type": "static" - }, - { - "source": "npm:micromark", - "target": "npm:micromark-util-character", - "type": "static" - }, - { - "source": "npm:micromark", - "target": "npm:micromark-util-chunked", - "type": "static" - }, - { - "source": "npm:micromark", - "target": "npm:micromark-util-combine-extensions", - "type": "static" - }, - { - "source": "npm:micromark", - "target": "npm:micromark-util-decode-numeric-character-reference", - "type": "static" - }, - { - "source": "npm:micromark", - "target": "npm:micromark-util-encode", - "type": "static" - }, - { - "source": "npm:micromark", - "target": "npm:micromark-util-normalize-identifier", - "type": "static" - }, - { - "source": "npm:micromark", - "target": "npm:micromark-util-resolve-all", - "type": "static" - }, - { - "source": "npm:micromark", - "target": "npm:micromark-util-sanitize-uri", - "type": "static" - }, - { - "source": "npm:micromark", - "target": "npm:micromark-util-subtokenize", - "type": "static" - }, - { - "source": "npm:micromark", - "target": "npm:micromark-util-symbol", - "type": "static" - }, - { - "source": "npm:micromark", - "target": "npm:micromark-util-types", - "type": "static" - } - ], - "npm:micromatch": [ - { - "source": "npm:micromatch", - "target": "npm:braces", - "type": "static" - }, - { - "source": "npm:micromatch", - "target": "npm:picomatch@2.3.1", - "type": "static" - } - ], - "npm:mime-types@2.1.35": [ - { - "source": "npm:mime-types@2.1.35", - "target": "npm:mime-db@1.52.0", - "type": "static" - } - ], - "npm:mime-types": [ - { - "source": "npm:mime-types", - "target": "npm:mime-db", - "type": "static" - } - ], - "npm:miniflare@4.20251217.0": [ - { - "source": "npm:miniflare@4.20251217.0", - "target": "npm:@cspotcode/source-map-support", - "type": "static" - }, - { - "source": "npm:miniflare@4.20251217.0", - "target": "npm:acorn@8.14.0", - "type": "static" - }, - { - "source": "npm:miniflare@4.20251217.0", - "target": "npm:acorn-walk", - "type": "static" - }, - { - "source": "npm:miniflare@4.20251217.0", - "target": "npm:exit-hook", - "type": "static" - }, - { - "source": "npm:miniflare@4.20251217.0", - "target": "npm:glob-to-regexp", - "type": "static" - }, - { - "source": "npm:miniflare@4.20251217.0", - "target": "npm:sharp@0.33.5", - "type": "static" - }, - { - "source": "npm:miniflare@4.20251217.0", - "target": "npm:stoppable", - "type": "static" - }, - { - "source": "npm:miniflare@4.20251217.0", - "target": "npm:undici@7.14.0", - "type": "static" - }, - { - "source": "npm:miniflare@4.20251217.0", - "target": "npm:workerd@1.20251217.0", - "type": "static" - }, - { - "source": "npm:miniflare@4.20251217.0", - "target": "npm:ws", - "type": "static" - }, - { - "source": "npm:miniflare@4.20251217.0", - "target": "npm:youch", - "type": "static" - }, - { - "source": "npm:miniflare@4.20251217.0", - "target": "npm:zod@3.22.3", - "type": "static" - } - ], - "npm:miniflare": [ - { - "source": "npm:miniflare", - "target": "npm:@cspotcode/source-map-support", - "type": "static" - }, - { - "source": "npm:miniflare", - "target": "npm:sharp", - "type": "static" - }, - { - "source": "npm:miniflare", - "target": "npm:undici", - "type": "static" - }, - { - "source": "npm:miniflare", - "target": "npm:workerd", - "type": "static" - }, - { - "source": "npm:miniflare", - "target": "npm:ws", - "type": "static" - }, - { - "source": "npm:miniflare", - "target": "npm:youch", - "type": "static" - } - ], - "npm:minimatch@10.2.3": [ - { - "source": "npm:minimatch@10.2.3", - "target": "npm:brace-expansion", - "type": "static" - } - ], - "npm:minimatch@10.2.4": [ - { - "source": "npm:minimatch@10.2.4", - "target": "npm:brace-expansion", - "type": "static" - } - ], - "npm:minimatch": [ - { - "source": "npm:minimatch", - "target": "npm:brace-expansion@1.1.12", - "type": "static" - } - ], - "npm:minimatch@5.1.9": [ - { - "source": "npm:minimatch@5.1.9", - "target": "npm:brace-expansion@2.0.2", - "type": "static" - } - ], - "npm:minimatch@8.0.4": [ - { - "source": "npm:minimatch@8.0.4", - "target": "npm:brace-expansion@2.0.2", - "type": "static" - } - ], - "npm:minimatch@9.0.5": [ - { - "source": "npm:minimatch@9.0.5", - "target": "npm:brace-expansion@2.0.2", - "type": "static" - } - ], - "npm:minipass-collect": [ - { - "source": "npm:minipass-collect", - "target": "npm:minipass", - "type": "static" - } - ], - "npm:minipass-fetch": [ - { - "source": "npm:minipass-fetch", - "target": "npm:minipass", - "type": "static" - }, - { - "source": "npm:minipass-fetch", - "target": "npm:minipass-sized", - "type": "static" - }, - { - "source": "npm:minipass-fetch", - "target": "npm:minizlib", - "type": "static" - }, - { - "source": "npm:minipass-fetch", - "target": "npm:encoding", - "type": "static" - } - ], - "npm:minipass-flush": [ - { - "source": "npm:minipass-flush", - "target": "npm:minipass@3.3.6", - "type": "static" - } - ], - "npm:minipass-pipeline": [ - { - "source": "npm:minipass-pipeline", - "target": "npm:minipass@3.3.6", - "type": "static" - } - ], - "npm:minipass-sized": [ - { - "source": "npm:minipass-sized", - "target": "npm:minipass@3.3.6", - "type": "static" - } - ], - "npm:minipass@3.3.6": [ - { - "source": "npm:minipass@3.3.6", - "target": "npm:yallist@4.0.0", - "type": "static" - } - ], - "npm:minizlib": [ - { - "source": "npm:minizlib", - "target": "npm:minipass", - "type": "static" - } - ], - "npm:mlly": [ - { - "source": "npm:mlly", - "target": "npm:acorn", - "type": "static" - }, - { - "source": "npm:mlly", - "target": "npm:pathe", - "type": "static" - }, - { - "source": "npm:mlly", - "target": "npm:pkg-types@1.3.1", - "type": "static" - }, - { - "source": "npm:mlly", - "target": "npm:ufo", - "type": "static" - } - ], - "npm:mysql2": [ - { - "source": "npm:mysql2", - "target": "npm:aws-ssl-profiles", - "type": "static" - }, - { - "source": "npm:mysql2", - "target": "npm:denque", - "type": "static" - }, - { - "source": "npm:mysql2", - "target": "npm:generate-function", - "type": "static" - }, - { - "source": "npm:mysql2", - "target": "npm:iconv-lite@0.7.2", - "type": "static" - }, - { - "source": "npm:mysql2", - "target": "npm:long", - "type": "static" - }, - { - "source": "npm:mysql2", - "target": "npm:lru.min", - "type": "static" - }, - { - "source": "npm:mysql2", - "target": "npm:named-placeholders", - "type": "static" - }, - { - "source": "npm:mysql2", - "target": "npm:seq-queue", - "type": "static" - }, - { - "source": "npm:mysql2", - "target": "npm:sqlstring", - "type": "static" - } - ], - "npm:named-placeholders": [ - { - "source": "npm:named-placeholders", - "target": "npm:lru-cache@7.18.3", - "type": "static" - } - ], - "npm:node-abi": [ - { - "source": "npm:node-abi", - "target": "npm:semver@7.7.4", - "type": "static" - } - ], - "npm:node-fetch@2.7.0": [ - { - "source": "npm:node-fetch@2.7.0", - "target": "npm:whatwg-url", - "type": "static" - }, - { - "source": "npm:node-fetch@2.7.0", - "target": "npm:encoding", - "type": "static" - } - ], - "npm:node-fetch": [ - { - "source": "npm:node-fetch", - "target": "npm:data-uri-to-buffer", - "type": "static" - }, - { - "source": "npm:node-fetch", - "target": "npm:fetch-blob", - "type": "static" - }, - { - "source": "npm:node-fetch", - "target": "npm:formdata-polyfill", - "type": "static" - } - ], - "npm:node-gyp": [ - { - "source": "npm:node-gyp", - "target": "npm:env-paths", - "type": "static" - }, - { - "source": "npm:node-gyp", - "target": "npm:exponential-backoff", - "type": "static" - }, - { - "source": "npm:node-gyp", - "target": "npm:graceful-fs", - "type": "static" - }, - { - "source": "npm:node-gyp", - "target": "npm:make-fetch-happen", - "type": "static" - }, - { - "source": "npm:node-gyp", - "target": "npm:nopt", - "type": "static" - }, - { - "source": "npm:node-gyp", - "target": "npm:proc-log", - "type": "static" - }, - { - "source": "npm:node-gyp", - "target": "npm:semver@7.7.4", - "type": "static" - }, - { - "source": "npm:node-gyp", - "target": "npm:tar", - "type": "static" - }, - { - "source": "npm:node-gyp", - "target": "npm:tinyglobby", - "type": "static" - }, - { - "source": "npm:node-gyp", - "target": "npm:which@5.0.0", - "type": "static" - } - ], - "npm:nopt": [ - { - "source": "npm:nopt", - "target": "npm:abbrev", - "type": "static" - } - ], - "npm:npm-run-all2": [ - { - "source": "npm:npm-run-all2", - "target": "npm:ansi-styles", - "type": "static" - }, - { - "source": "npm:npm-run-all2", - "target": "npm:cross-spawn", - "type": "static" - }, - { - "source": "npm:npm-run-all2", - "target": "npm:memorystream", - "type": "static" - }, - { - "source": "npm:npm-run-all2", - "target": "npm:picomatch", - "type": "static" - }, - { - "source": "npm:npm-run-all2", - "target": "npm:pidtree", - "type": "static" - }, - { - "source": "npm:npm-run-all2", - "target": "npm:read-package-json-fast", - "type": "static" - }, - { - "source": "npm:npm-run-all2", - "target": "npm:shell-quote", - "type": "static" - }, - { - "source": "npm:npm-run-all2", - "target": "npm:which@5.0.0", - "type": "static" - } - ], - "npm:npm-run-path@4.0.1": [ - { - "source": "npm:npm-run-path@4.0.1", - "target": "npm:path-key", - "type": "static" - } - ], - "npm:npm-run-path": [ - { - "source": "npm:npm-run-path", - "target": "npm:path-key@4.0.0", - "type": "static" - }, - { - "source": "npm:npm-run-path", - "target": "npm:unicorn-magic@0.3.0", - "type": "static" - } - ], - "npm:nth-check": [ - { - "source": "npm:nth-check", - "target": "npm:boolbase", - "type": "static" - } - ], - "npm:nx": [ - { - "source": "npm:nx", - "target": "npm:@ltd/j-toml", - "type": "static" - }, - { - "source": "npm:nx", - "target": "npm:@napi-rs/wasm-runtime", - "type": "static" - }, - { - "source": "npm:nx", - "target": "npm:@yarnpkg/lockfile", - "type": "static" - }, - { - "source": "npm:nx", - "target": "npm:@yarnpkg/parsers", - "type": "static" - }, - { - "source": "npm:nx", - "target": "npm:@zkochan/js-yaml", - "type": "static" - }, - { - "source": "npm:nx", - "target": "npm:axios", - "type": "static" - }, - { - "source": "npm:nx", - "target": "npm:cli-cursor", - "type": "static" - }, - { - "source": "npm:nx", - "target": "npm:cli-spinners", - "type": "static" - }, - { - "source": "npm:nx", - "target": "npm:cliui", - "type": "static" - }, - { - "source": "npm:nx", - "target": "npm:dotenv@16.4.7", - "type": "static" - }, - { - "source": "npm:nx", - "target": "npm:dotenv-expand", - "type": "static" - }, - { - "source": "npm:nx", - "target": "npm:ejs", - "type": "static" - }, - { - "source": "npm:nx", - "target": "npm:enquirer", - "type": "static" - }, - { - "source": "npm:nx", - "target": "npm:figures@3.2.0", - "type": "static" - }, - { - "source": "npm:nx", - "target": "npm:flat", - "type": "static" - }, - { - "source": "npm:nx", - "target": "npm:front-matter", - "type": "static" - }, - { - "source": "npm:nx", - "target": "npm:ignore@7.0.5", - "type": "static" - }, - { - "source": "npm:nx", - "target": "npm:jest-diff", - "type": "static" - }, - { - "source": "npm:nx", - "target": "npm:jsonc-parser@3.2.0", - "type": "static" - }, - { - "source": "npm:nx", - "target": "npm:lines-and-columns", - "type": "static" - }, - { - "source": "npm:nx", - "target": "npm:minimatch@10.2.4", - "type": "static" - }, - { - "source": "npm:nx", - "target": "npm:npm-run-path@4.0.1", - "type": "static" - }, - { - "source": "npm:nx", - "target": "npm:open", - "type": "static" - }, - { - "source": "npm:nx", - "target": "npm:ora", - "type": "static" - }, - { - "source": "npm:nx", - "target": "npm:picocolors", - "type": "static" - }, - { - "source": "npm:nx", - "target": "npm:resolve.exports", - "type": "static" - }, - { - "source": "npm:nx", - "target": "npm:semver@7.7.4", - "type": "static" - }, - { - "source": "npm:nx", - "target": "npm:string-width", - "type": "static" - }, - { - "source": "npm:nx", - "target": "npm:tar-stream", - "type": "static" - }, - { - "source": "npm:nx", - "target": "npm:tmp", - "type": "static" - }, - { - "source": "npm:nx", - "target": "npm:tree-kill", - "type": "static" - }, - { - "source": "npm:nx", - "target": "npm:tsconfig-paths", - "type": "static" - }, - { - "source": "npm:nx", - "target": "npm:tslib", - "type": "static" - }, - { - "source": "npm:nx", - "target": "npm:yaml", - "type": "static" - }, - { - "source": "npm:nx", - "target": "npm:yargs", - "type": "static" - }, - { - "source": "npm:nx", - "target": "npm:yargs-parser", - "type": "static" - }, - { - "source": "npm:nx", - "target": "npm:@nx/nx-darwin-arm64", - "type": "static" - }, - { - "source": "npm:nx", - "target": "npm:@nx/nx-darwin-x64", - "type": "static" - }, - { - "source": "npm:nx", - "target": "npm:@nx/nx-freebsd-x64", - "type": "static" - }, - { - "source": "npm:nx", - "target": "npm:@nx/nx-linux-arm-gnueabihf", - "type": "static" - }, - { - "source": "npm:nx", - "target": "npm:@nx/nx-linux-arm64-gnu", - "type": "static" - }, - { - "source": "npm:nx", - "target": "npm:@nx/nx-linux-arm64-musl", - "type": "static" - }, - { - "source": "npm:nx", - "target": "npm:@nx/nx-linux-x64-gnu", - "type": "static" - }, - { - "source": "npm:nx", - "target": "npm:@nx/nx-linux-x64-musl", - "type": "static" - }, - { - "source": "npm:nx", - "target": "npm:@nx/nx-win32-arm64-msvc", - "type": "static" - }, - { - "source": "npm:nx", - "target": "npm:@nx/nx-win32-x64-msvc", - "type": "static" - } - ], - "npm:nypm": [ - { - "source": "npm:nypm", - "target": "npm:citty@0.1.6", - "type": "static" - }, - { - "source": "npm:nypm", - "target": "npm:consola", - "type": "static" - }, - { - "source": "npm:nypm", - "target": "npm:pathe", - "type": "static" - }, - { - "source": "npm:nypm", - "target": "npm:pkg-types", - "type": "static" - }, - { - "source": "npm:nypm", - "target": "npm:tinyexec", - "type": "static" - } - ], - "npm:object.assign": [ - { - "source": "npm:object.assign", - "target": "npm:call-bind", - "type": "static" - }, - { - "source": "npm:object.assign", - "target": "npm:call-bound", - "type": "static" - }, - { - "source": "npm:object.assign", - "target": "npm:define-properties", - "type": "static" - }, - { - "source": "npm:object.assign", - "target": "npm:es-object-atoms", - "type": "static" - }, - { - "source": "npm:object.assign", - "target": "npm:has-symbols", - "type": "static" - }, - { - "source": "npm:object.assign", - "target": "npm:object-keys", - "type": "static" - } - ], - "npm:object.entries": [ - { - "source": "npm:object.entries", - "target": "npm:call-bind", - "type": "static" - }, - { - "source": "npm:object.entries", - "target": "npm:call-bound", - "type": "static" - }, - { - "source": "npm:object.entries", - "target": "npm:define-properties", - "type": "static" - }, - { - "source": "npm:object.entries", - "target": "npm:es-object-atoms", - "type": "static" - } - ], - "npm:object.fromentries": [ - { - "source": "npm:object.fromentries", - "target": "npm:call-bind", - "type": "static" - }, - { - "source": "npm:object.fromentries", - "target": "npm:define-properties", - "type": "static" - }, - { - "source": "npm:object.fromentries", - "target": "npm:es-abstract", - "type": "static" - }, - { - "source": "npm:object.fromentries", - "target": "npm:es-object-atoms", - "type": "static" - } - ], - "npm:object.values": [ - { - "source": "npm:object.values", - "target": "npm:call-bind", - "type": "static" - }, - { - "source": "npm:object.values", - "target": "npm:call-bound", - "type": "static" - }, - { - "source": "npm:object.values", - "target": "npm:define-properties", - "type": "static" - }, - { - "source": "npm:object.values", - "target": "npm:es-object-atoms", - "type": "static" - } - ], - "npm:on-finished": [ - { - "source": "npm:on-finished", - "target": "npm:ee-first", - "type": "static" - } - ], - "npm:once": [ - { - "source": "npm:once", - "target": "npm:wrappy", - "type": "static" - } - ], - "npm:onetime": [ - { - "source": "npm:onetime", - "target": "npm:mimic-fn", - "type": "static" - } - ], - "npm:open": [ - { - "source": "npm:open", - "target": "npm:define-lazy-prop", - "type": "static" - }, - { - "source": "npm:open", - "target": "npm:is-docker", - "type": "static" - }, - { - "source": "npm:open", - "target": "npm:is-wsl", - "type": "static" - } - ], - "npm:optionator": [ - { - "source": "npm:optionator", - "target": "npm:deep-is", - "type": "static" - }, - { - "source": "npm:optionator", - "target": "npm:fast-levenshtein", - "type": "static" - }, - { - "source": "npm:optionator", - "target": "npm:levn", - "type": "static" - }, - { - "source": "npm:optionator", - "target": "npm:prelude-ls", - "type": "static" - }, - { - "source": "npm:optionator", - "target": "npm:type-check", - "type": "static" - }, - { - "source": "npm:optionator", - "target": "npm:word-wrap", - "type": "static" - } - ], - "npm:ora": [ - { - "source": "npm:ora", - "target": "npm:bl", - "type": "static" - }, - { - "source": "npm:ora", - "target": "npm:chalk", - "type": "static" - }, - { - "source": "npm:ora", - "target": "npm:cli-cursor", - "type": "static" - }, - { - "source": "npm:ora", - "target": "npm:cli-spinners", - "type": "static" - }, - { - "source": "npm:ora", - "target": "npm:is-interactive", - "type": "static" - }, - { - "source": "npm:ora", - "target": "npm:log-symbols", - "type": "static" - }, - { - "source": "npm:ora", - "target": "npm:strip-ansi@6.0.1", - "type": "static" - }, - { - "source": "npm:ora", - "target": "npm:wcwidth", - "type": "static" - } - ], - "npm:own-keys": [ - { - "source": "npm:own-keys", - "target": "npm:get-intrinsic", - "type": "static" - }, - { - "source": "npm:own-keys", - "target": "npm:object-keys", - "type": "static" - }, - { - "source": "npm:own-keys", - "target": "npm:safe-push-apply", - "type": "static" - } - ], - "npm:oxc-parser": [ - { - "source": "npm:oxc-parser", - "target": "npm:@oxc-project/types", - "type": "static" - }, - { - "source": "npm:oxc-parser", - "target": "npm:@oxc-parser/binding-android-arm64", - "type": "static" - }, - { - "source": "npm:oxc-parser", - "target": "npm:@oxc-parser/binding-darwin-arm64", - "type": "static" - }, - { - "source": "npm:oxc-parser", - "target": "npm:@oxc-parser/binding-darwin-x64", - "type": "static" - }, - { - "source": "npm:oxc-parser", - "target": "npm:@oxc-parser/binding-freebsd-x64", - "type": "static" - }, - { - "source": "npm:oxc-parser", - "target": "npm:@oxc-parser/binding-linux-arm-gnueabihf", - "type": "static" - }, - { - "source": "npm:oxc-parser", - "target": "npm:@oxc-parser/binding-linux-arm64-gnu", - "type": "static" - }, - { - "source": "npm:oxc-parser", - "target": "npm:@oxc-parser/binding-linux-arm64-musl", - "type": "static" - }, - { - "source": "npm:oxc-parser", - "target": "npm:@oxc-parser/binding-linux-riscv64-gnu", - "type": "static" - }, - { - "source": "npm:oxc-parser", - "target": "npm:@oxc-parser/binding-linux-s390x-gnu", - "type": "static" - }, - { - "source": "npm:oxc-parser", - "target": "npm:@oxc-parser/binding-linux-x64-gnu", - "type": "static" - }, - { - "source": "npm:oxc-parser", - "target": "npm:@oxc-parser/binding-linux-x64-musl", - "type": "static" - }, - { - "source": "npm:oxc-parser", - "target": "npm:@oxc-parser/binding-openharmony-arm64", - "type": "static" - }, - { - "source": "npm:oxc-parser", - "target": "npm:@oxc-parser/binding-wasm32-wasi", - "type": "static" - }, - { - "source": "npm:oxc-parser", - "target": "npm:@oxc-parser/binding-win32-arm64-msvc", - "type": "static" - }, - { - "source": "npm:oxc-parser", - "target": "npm:@oxc-parser/binding-win32-x64-msvc", - "type": "static" - } - ], - "npm:oxc-resolver": [ - { - "source": "npm:oxc-resolver", - "target": "npm:@oxc-resolver/binding-android-arm-eabi", - "type": "static" - }, - { - "source": "npm:oxc-resolver", - "target": "npm:@oxc-resolver/binding-android-arm64", - "type": "static" - }, - { - "source": "npm:oxc-resolver", - "target": "npm:@oxc-resolver/binding-darwin-arm64", - "type": "static" - }, - { - "source": "npm:oxc-resolver", - "target": "npm:@oxc-resolver/binding-darwin-x64", - "type": "static" - }, - { - "source": "npm:oxc-resolver", - "target": "npm:@oxc-resolver/binding-freebsd-x64", - "type": "static" - }, - { - "source": "npm:oxc-resolver", - "target": "npm:@oxc-resolver/binding-linux-arm-gnueabihf", - "type": "static" - }, - { - "source": "npm:oxc-resolver", - "target": "npm:@oxc-resolver/binding-linux-arm-musleabihf", - "type": "static" - }, - { - "source": "npm:oxc-resolver", - "target": "npm:@oxc-resolver/binding-linux-arm64-gnu", - "type": "static" - }, - { - "source": "npm:oxc-resolver", - "target": "npm:@oxc-resolver/binding-linux-arm64-musl", - "type": "static" - }, - { - "source": "npm:oxc-resolver", - "target": "npm:@oxc-resolver/binding-linux-ppc64-gnu", - "type": "static" - }, - { - "source": "npm:oxc-resolver", - "target": "npm:@oxc-resolver/binding-linux-riscv64-gnu", - "type": "static" - }, - { - "source": "npm:oxc-resolver", - "target": "npm:@oxc-resolver/binding-linux-riscv64-musl", - "type": "static" - }, - { - "source": "npm:oxc-resolver", - "target": "npm:@oxc-resolver/binding-linux-s390x-gnu", - "type": "static" - }, - { - "source": "npm:oxc-resolver", - "target": "npm:@oxc-resolver/binding-linux-x64-gnu", - "type": "static" - }, - { - "source": "npm:oxc-resolver", - "target": "npm:@oxc-resolver/binding-linux-x64-musl", - "type": "static" - }, - { - "source": "npm:oxc-resolver", - "target": "npm:@oxc-resolver/binding-openharmony-arm64", - "type": "static" - }, - { - "source": "npm:oxc-resolver", - "target": "npm:@oxc-resolver/binding-wasm32-wasi", - "type": "static" - }, - { - "source": "npm:oxc-resolver", - "target": "npm:@oxc-resolver/binding-win32-arm64-msvc", - "type": "static" - }, - { - "source": "npm:oxc-resolver", - "target": "npm:@oxc-resolver/binding-win32-ia32-msvc", - "type": "static" - }, - { - "source": "npm:oxc-resolver", - "target": "npm:@oxc-resolver/binding-win32-x64-msvc", - "type": "static" - } - ], - "npm:oxc-walker": [ - { - "source": "npm:oxc-walker", - "target": "npm:magic-regexp", - "type": "static" - }, - { - "source": "npm:oxc-walker", - "target": "npm:oxc-parser", - "type": "static" - } - ], - "npm:oxlint-tsgolint": [ - { - "source": "npm:oxlint-tsgolint", - "target": "npm:@oxlint-tsgolint/darwin-arm64", - "type": "static" - }, - { - "source": "npm:oxlint-tsgolint", - "target": "npm:@oxlint-tsgolint/darwin-x64", - "type": "static" - }, - { - "source": "npm:oxlint-tsgolint", - "target": "npm:@oxlint-tsgolint/linux-arm64", - "type": "static" - }, - { - "source": "npm:oxlint-tsgolint", - "target": "npm:@oxlint-tsgolint/linux-x64", - "type": "static" - }, - { - "source": "npm:oxlint-tsgolint", - "target": "npm:@oxlint-tsgolint/win32-arm64", - "type": "static" - }, - { - "source": "npm:oxlint-tsgolint", - "target": "npm:@oxlint-tsgolint/win32-x64", - "type": "static" - } - ], - "npm:oxlint": [ - { - "source": "npm:oxlint", - "target": "npm:@oxlint/binding-android-arm-eabi", - "type": "static" - }, - { - "source": "npm:oxlint", - "target": "npm:@oxlint/binding-android-arm64", - "type": "static" - }, - { - "source": "npm:oxlint", - "target": "npm:@oxlint/binding-darwin-arm64", - "type": "static" - }, - { - "source": "npm:oxlint", - "target": "npm:@oxlint/binding-darwin-x64", - "type": "static" - }, - { - "source": "npm:oxlint", - "target": "npm:@oxlint/binding-freebsd-x64", - "type": "static" - }, - { - "source": "npm:oxlint", - "target": "npm:@oxlint/binding-linux-arm-gnueabihf", - "type": "static" - }, - { - "source": "npm:oxlint", - "target": "npm:@oxlint/binding-linux-arm-musleabihf", - "type": "static" - }, - { - "source": "npm:oxlint", - "target": "npm:@oxlint/binding-linux-arm64-gnu", - "type": "static" - }, - { - "source": "npm:oxlint", - "target": "npm:@oxlint/binding-linux-arm64-musl", - "type": "static" - }, - { - "source": "npm:oxlint", - "target": "npm:@oxlint/binding-linux-ppc64-gnu", - "type": "static" - }, - { - "source": "npm:oxlint", - "target": "npm:@oxlint/binding-linux-riscv64-gnu", - "type": "static" - }, - { - "source": "npm:oxlint", - "target": "npm:@oxlint/binding-linux-riscv64-musl", - "type": "static" - }, - { - "source": "npm:oxlint", - "target": "npm:@oxlint/binding-linux-s390x-gnu", - "type": "static" - }, - { - "source": "npm:oxlint", - "target": "npm:@oxlint/binding-linux-x64-gnu", - "type": "static" - }, - { - "source": "npm:oxlint", - "target": "npm:@oxlint/binding-linux-x64-musl", - "type": "static" - }, - { - "source": "npm:oxlint", - "target": "npm:@oxlint/binding-openharmony-arm64", - "type": "static" - }, - { - "source": "npm:oxlint", - "target": "npm:@oxlint/binding-win32-arm64-msvc", - "type": "static" - }, - { - "source": "npm:oxlint", - "target": "npm:@oxlint/binding-win32-ia32-msvc", - "type": "static" - }, - { - "source": "npm:oxlint", - "target": "npm:@oxlint/binding-win32-x64-msvc", - "type": "static" - }, - { - "source": "npm:oxlint", - "target": "npm:oxlint-tsgolint", - "type": "static" - } - ], - "npm:p-limit@2.3.0": [ - { - "source": "npm:p-limit@2.3.0", - "target": "npm:p-try", - "type": "static" - } - ], - "npm:p-limit@3.1.0": [ - { - "source": "npm:p-limit@3.1.0", - "target": "npm:yocto-queue@0.1.0", - "type": "static" - } - ], - "npm:p-limit": [ - { - "source": "npm:p-limit", - "target": "npm:yocto-queue", - "type": "static" - } - ], - "npm:p-locate@3.0.0": [ - { - "source": "npm:p-locate@3.0.0", - "target": "npm:p-limit@2.3.0", - "type": "static" - } - ], - "npm:p-locate": [ - { - "source": "npm:p-locate", - "target": "npm:p-limit@3.1.0", - "type": "static" - } - ], - "npm:p-retry": [ - { - "source": "npm:p-retry", - "target": "npm:@types/retry", - "type": "static" - }, - { - "source": "npm:p-retry", - "target": "npm:retry", - "type": "static" - } - ], - "npm:pac-proxy-agent": [ - { - "source": "npm:pac-proxy-agent", - "target": "npm:@tootallnate/quickjs-emscripten", - "type": "static" - }, - { - "source": "npm:pac-proxy-agent", - "target": "npm:agent-base", - "type": "static" - }, - { - "source": "npm:pac-proxy-agent", - "target": "npm:debug", - "type": "static" - }, - { - "source": "npm:pac-proxy-agent", - "target": "npm:get-uri", - "type": "static" - }, - { - "source": "npm:pac-proxy-agent", - "target": "npm:http-proxy-agent", - "type": "static" - }, - { - "source": "npm:pac-proxy-agent", - "target": "npm:https-proxy-agent@7.0.6", - "type": "static" - }, - { - "source": "npm:pac-proxy-agent", - "target": "npm:pac-resolver", - "type": "static" - }, - { - "source": "npm:pac-proxy-agent", - "target": "npm:socks-proxy-agent", - "type": "static" - } - ], - "npm:pac-resolver": [ - { - "source": "npm:pac-resolver", - "target": "npm:degenerator", - "type": "static" - }, - { - "source": "npm:pac-resolver", - "target": "npm:netmask", - "type": "static" - } - ], - "npm:parent-module": [ - { - "source": "npm:parent-module", - "target": "npm:callsites", - "type": "static" - } - ], - "npm:parse-json": [ - { - "source": "npm:parse-json", - "target": "npm:@babel/code-frame", - "type": "static" - }, - { - "source": "npm:parse-json", - "target": "npm:error-ex", - "type": "static" - }, - { - "source": "npm:parse-json", - "target": "npm:json-parse-even-better-errors@2.3.1", - "type": "static" - }, - { - "source": "npm:parse-json", - "target": "npm:lines-and-columns@1.2.4", - "type": "static" - } - ], - "npm:parse5": [ - { - "source": "npm:parse5", - "target": "npm:entities@6.0.1", - "type": "static" - } - ], - "npm:path-scurry@1.11.1": [ - { - "source": "npm:path-scurry@1.11.1", - "target": "npm:lru-cache@10.4.3", - "type": "static" - }, - { - "source": "npm:path-scurry@1.11.1", - "target": "npm:minipass", - "type": "static" - } - ], - "npm:path-scurry": [ - { - "source": "npm:path-scurry", - "target": "npm:lru-cache@11.2.2", - "type": "static" - }, - { - "source": "npm:path-scurry", - "target": "npm:minipass", - "type": "static" - } - ], - "npm:pino-abstract-transport": [ - { - "source": "npm:pino-abstract-transport", - "target": "npm:split2", - "type": "static" - } - ], - "npm:pino": [ - { - "source": "npm:pino", - "target": "npm:@pinojs/redact", - "type": "static" - }, - { - "source": "npm:pino", - "target": "npm:atomic-sleep", - "type": "static" - }, - { - "source": "npm:pino", - "target": "npm:on-exit-leak-free", - "type": "static" - }, - { - "source": "npm:pino", - "target": "npm:pino-abstract-transport", - "type": "static" - }, - { - "source": "npm:pino", - "target": "npm:pino-std-serializers", - "type": "static" - }, - { - "source": "npm:pino", - "target": "npm:process-warning", - "type": "static" - }, - { - "source": "npm:pino", - "target": "npm:quick-format-unescaped", - "type": "static" - }, - { - "source": "npm:pino", - "target": "npm:real-require", - "type": "static" - }, - { - "source": "npm:pino", - "target": "npm:safe-stable-stringify", - "type": "static" - }, - { - "source": "npm:pino", - "target": "npm:sonic-boom", - "type": "static" - }, - { - "source": "npm:pino", - "target": "npm:thread-stream", - "type": "static" - } - ], - "npm:pkg-types@1.3.1": [ - { - "source": "npm:pkg-types@1.3.1", - "target": "npm:confbox@0.1.8", - "type": "static" - }, - { - "source": "npm:pkg-types@1.3.1", - "target": "npm:mlly", - "type": "static" - }, - { - "source": "npm:pkg-types@1.3.1", - "target": "npm:pathe", - "type": "static" - } - ], - "npm:pkg-types": [ - { - "source": "npm:pkg-types", - "target": "npm:confbox", - "type": "static" - }, - { - "source": "npm:pkg-types", - "target": "npm:exsolve", - "type": "static" - }, - { - "source": "npm:pkg-types", - "target": "npm:pathe", - "type": "static" - } - ], - "npm:pkg-up": [ - { - "source": "npm:pkg-up", - "target": "npm:find-up@3.0.0", - "type": "static" - } - ], - "npm:portfinder": [ - { - "source": "npm:portfinder", - "target": "npm:async", - "type": "static" - }, - { - "source": "npm:portfinder", - "target": "npm:debug", - "type": "static" - } - ], - "npm:postcss-calc": [ - { - "source": "npm:postcss-calc", - "target": "npm:postcss", - "type": "static" - }, - { - "source": "npm:postcss-calc", - "target": "npm:postcss-selector-parser@6.1.2", - "type": "static" - }, - { - "source": "npm:postcss-calc", - "target": "npm:postcss-value-parser", - "type": "static" - } - ], - "npm:postcss-colormin": [ - { - "source": "npm:postcss-colormin", - "target": "npm:browserslist", - "type": "static" - }, - { - "source": "npm:postcss-colormin", - "target": "npm:caniuse-api", - "type": "static" - }, - { - "source": "npm:postcss-colormin", - "target": "npm:colord", - "type": "static" - }, - { - "source": "npm:postcss-colormin", - "target": "npm:postcss", - "type": "static" - }, - { - "source": "npm:postcss-colormin", - "target": "npm:postcss-value-parser", - "type": "static" - } - ], - "npm:postcss-convert-values": [ - { - "source": "npm:postcss-convert-values", - "target": "npm:browserslist", - "type": "static" - }, - { - "source": "npm:postcss-convert-values", - "target": "npm:postcss", - "type": "static" - }, - { - "source": "npm:postcss-convert-values", - "target": "npm:postcss-value-parser", - "type": "static" - } - ], - "npm:postcss-discard-comments": [ - { - "source": "npm:postcss-discard-comments", - "target": "npm:postcss", - "type": "static" - } - ], - "npm:postcss-discard-duplicates@5.1.0": [ - { - "source": "npm:postcss-discard-duplicates@5.1.0", - "target": "npm:postcss", - "type": "static" - } - ], - "npm:postcss-discard-duplicates": [ - { - "source": "npm:postcss-discard-duplicates", - "target": "npm:postcss", - "type": "static" - } - ], - "npm:postcss-discard-empty": [ - { - "source": "npm:postcss-discard-empty", - "target": "npm:postcss", - "type": "static" - } - ], - "npm:postcss-discard-overridden": [ - { - "source": "npm:postcss-discard-overridden", - "target": "npm:postcss", - "type": "static" - } - ], - "npm:postcss-js": [ - { - "source": "npm:postcss-js", - "target": "npm:camelcase-css", - "type": "static" - }, - { - "source": "npm:postcss-js", - "target": "npm:postcss", - "type": "static" - } - ], - "npm:postcss-merge-longhand": [ - { - "source": "npm:postcss-merge-longhand", - "target": "npm:postcss", - "type": "static" - }, - { - "source": "npm:postcss-merge-longhand", - "target": "npm:postcss-value-parser", - "type": "static" - }, - { - "source": "npm:postcss-merge-longhand", - "target": "npm:stylehacks", - "type": "static" - } - ], - "npm:postcss-merge-rules": [ - { - "source": "npm:postcss-merge-rules", - "target": "npm:browserslist", - "type": "static" - }, - { - "source": "npm:postcss-merge-rules", - "target": "npm:caniuse-api", - "type": "static" - }, - { - "source": "npm:postcss-merge-rules", - "target": "npm:cssnano-utils", - "type": "static" - }, - { - "source": "npm:postcss-merge-rules", - "target": "npm:postcss", - "type": "static" - }, - { - "source": "npm:postcss-merge-rules", - "target": "npm:postcss-selector-parser@6.1.2", - "type": "static" - } - ], - "npm:postcss-minify-font-values": [ - { - "source": "npm:postcss-minify-font-values", - "target": "npm:postcss", - "type": "static" - }, - { - "source": "npm:postcss-minify-font-values", - "target": "npm:postcss-value-parser", - "type": "static" - } - ], - "npm:postcss-minify-gradients": [ - { - "source": "npm:postcss-minify-gradients", - "target": "npm:colord", - "type": "static" - }, - { - "source": "npm:postcss-minify-gradients", - "target": "npm:cssnano-utils", - "type": "static" - }, - { - "source": "npm:postcss-minify-gradients", - "target": "npm:postcss", - "type": "static" - }, - { - "source": "npm:postcss-minify-gradients", - "target": "npm:postcss-value-parser", - "type": "static" - } - ], - "npm:postcss-minify-params": [ - { - "source": "npm:postcss-minify-params", - "target": "npm:browserslist", - "type": "static" - }, - { - "source": "npm:postcss-minify-params", - "target": "npm:cssnano-utils", - "type": "static" - }, - { - "source": "npm:postcss-minify-params", - "target": "npm:postcss", - "type": "static" - }, - { - "source": "npm:postcss-minify-params", - "target": "npm:postcss-value-parser", - "type": "static" - } - ], - "npm:postcss-minify-selectors": [ - { - "source": "npm:postcss-minify-selectors", - "target": "npm:postcss", - "type": "static" - }, - { - "source": "npm:postcss-minify-selectors", - "target": "npm:postcss-selector-parser@6.1.2", - "type": "static" - } - ], - "npm:postcss-mixins": [ - { - "source": "npm:postcss-mixins", - "target": "npm:postcss", - "type": "static" - }, - { - "source": "npm:postcss-mixins", - "target": "npm:postcss-js", - "type": "static" - }, - { - "source": "npm:postcss-mixins", - "target": "npm:postcss-simple-vars", - "type": "static" - }, - { - "source": "npm:postcss-mixins", - "target": "npm:sugarss", - "type": "static" - }, - { - "source": "npm:postcss-mixins", - "target": "npm:tinyglobby", - "type": "static" - } - ], - "npm:postcss-nested@5.0.6": [ - { - "source": "npm:postcss-nested@5.0.6", - "target": "npm:postcss", - "type": "static" - }, - { - "source": "npm:postcss-nested@5.0.6", - "target": "npm:postcss-selector-parser@6.1.2", - "type": "static" - } - ], - "npm:postcss-nested": [ - { - "source": "npm:postcss-nested", - "target": "npm:postcss", - "type": "static" - }, - { - "source": "npm:postcss-nested", - "target": "npm:postcss-selector-parser", - "type": "static" - } - ], - "npm:postcss-normalize-charset": [ - { - "source": "npm:postcss-normalize-charset", - "target": "npm:postcss", - "type": "static" - } - ], - "npm:postcss-normalize-display-values": [ - { - "source": "npm:postcss-normalize-display-values", - "target": "npm:postcss", - "type": "static" - }, - { - "source": "npm:postcss-normalize-display-values", - "target": "npm:postcss-value-parser", - "type": "static" - } - ], - "npm:postcss-normalize-positions": [ - { - "source": "npm:postcss-normalize-positions", - "target": "npm:postcss", - "type": "static" - }, - { - "source": "npm:postcss-normalize-positions", - "target": "npm:postcss-value-parser", - "type": "static" - } - ], - "npm:postcss-normalize-repeat-style": [ - { - "source": "npm:postcss-normalize-repeat-style", - "target": "npm:postcss", - "type": "static" - }, - { - "source": "npm:postcss-normalize-repeat-style", - "target": "npm:postcss-value-parser", - "type": "static" - } - ], - "npm:postcss-normalize-string": [ - { - "source": "npm:postcss-normalize-string", - "target": "npm:postcss", - "type": "static" - }, - { - "source": "npm:postcss-normalize-string", - "target": "npm:postcss-value-parser", - "type": "static" - } - ], - "npm:postcss-normalize-timing-functions": [ - { - "source": "npm:postcss-normalize-timing-functions", - "target": "npm:postcss", - "type": "static" - }, - { - "source": "npm:postcss-normalize-timing-functions", - "target": "npm:postcss-value-parser", - "type": "static" - } - ], - "npm:postcss-normalize-unicode": [ - { - "source": "npm:postcss-normalize-unicode", - "target": "npm:browserslist", - "type": "static" - }, - { - "source": "npm:postcss-normalize-unicode", - "target": "npm:postcss", - "type": "static" - }, - { - "source": "npm:postcss-normalize-unicode", - "target": "npm:postcss-value-parser", - "type": "static" - } - ], - "npm:postcss-normalize-url": [ - { - "source": "npm:postcss-normalize-url", - "target": "npm:normalize-url", - "type": "static" - }, - { - "source": "npm:postcss-normalize-url", - "target": "npm:postcss", - "type": "static" - }, - { - "source": "npm:postcss-normalize-url", - "target": "npm:postcss-value-parser", - "type": "static" - } - ], - "npm:postcss-normalize-whitespace": [ - { - "source": "npm:postcss-normalize-whitespace", - "target": "npm:postcss", - "type": "static" - }, - { - "source": "npm:postcss-normalize-whitespace", - "target": "npm:postcss-value-parser", - "type": "static" - } - ], - "npm:postcss-ordered-values": [ - { - "source": "npm:postcss-ordered-values", - "target": "npm:cssnano-utils", - "type": "static" - }, - { - "source": "npm:postcss-ordered-values", - "target": "npm:postcss", - "type": "static" - }, - { - "source": "npm:postcss-ordered-values", - "target": "npm:postcss-value-parser", - "type": "static" - } - ], - "npm:postcss-preset-mantine": [ - { - "source": "npm:postcss-preset-mantine", - "target": "npm:postcss", - "type": "static" - }, - { - "source": "npm:postcss-preset-mantine", - "target": "npm:postcss-mixins", - "type": "static" - }, - { - "source": "npm:postcss-preset-mantine", - "target": "npm:postcss-nested", - "type": "static" - } - ], - "npm:postcss-reduce-initial": [ - { - "source": "npm:postcss-reduce-initial", - "target": "npm:browserslist", - "type": "static" - }, - { - "source": "npm:postcss-reduce-initial", - "target": "npm:caniuse-api", - "type": "static" - }, - { - "source": "npm:postcss-reduce-initial", - "target": "npm:postcss", - "type": "static" - } - ], - "npm:postcss-reduce-transforms": [ - { - "source": "npm:postcss-reduce-transforms", - "target": "npm:postcss", - "type": "static" - }, - { - "source": "npm:postcss-reduce-transforms", - "target": "npm:postcss-value-parser", - "type": "static" - } - ], - "npm:postcss-selector-parser@6.1.2": [ - { - "source": "npm:postcss-selector-parser@6.1.2", - "target": "npm:cssesc", - "type": "static" - }, - { - "source": "npm:postcss-selector-parser@6.1.2", - "target": "npm:util-deprecate", - "type": "static" - } - ], - "npm:postcss-selector-parser": [ - { - "source": "npm:postcss-selector-parser", - "target": "npm:cssesc", - "type": "static" - }, - { - "source": "npm:postcss-selector-parser", - "target": "npm:util-deprecate", - "type": "static" - } - ], - "npm:postcss-simple-vars": [ - { - "source": "npm:postcss-simple-vars", - "target": "npm:postcss", - "type": "static" - } - ], - "npm:postcss-svgo": [ - { - "source": "npm:postcss-svgo", - "target": "npm:postcss", - "type": "static" - }, - { - "source": "npm:postcss-svgo", - "target": "npm:postcss-value-parser", - "type": "static" - }, - { - "source": "npm:postcss-svgo", - "target": "npm:svgo", - "type": "static" - } - ], - "npm:postcss-unique-selectors": [ - { - "source": "npm:postcss-unique-selectors", - "target": "npm:postcss", - "type": "static" - }, - { - "source": "npm:postcss-unique-selectors", - "target": "npm:postcss-selector-parser@6.1.2", - "type": "static" - } - ], - "npm:postcss-values-parser": [ - { - "source": "npm:postcss-values-parser", - "target": "npm:color-name", - "type": "static" - }, - { - "source": "npm:postcss-values-parser", - "target": "npm:is-url-superb", - "type": "static" - }, - { - "source": "npm:postcss-values-parser", - "target": "npm:postcss", - "type": "static" - }, - { - "source": "npm:postcss-values-parser", - "target": "npm:quote-unquote", - "type": "static" - } - ], - "npm:postcss": [ - { - "source": "npm:postcss", - "target": "npm:nanoid", - "type": "static" - }, - { - "source": "npm:postcss", - "target": "npm:picocolors", - "type": "static" - }, - { - "source": "npm:postcss", - "target": "npm:source-map-js", - "type": "static" - } - ], - "npm:preact-render-to-string": [ - { - "source": "npm:preact-render-to-string", - "target": "npm:preact", - "type": "static" - } - ], - "npm:prebuild-install": [ - { - "source": "npm:prebuild-install", - "target": "npm:detect-libc", - "type": "static" - }, - { - "source": "npm:prebuild-install", - "target": "npm:expand-template", - "type": "static" - }, - { - "source": "npm:prebuild-install", - "target": "npm:github-from-package", - "type": "static" - }, - { - "source": "npm:prebuild-install", - "target": "npm:minimist", - "type": "static" - }, - { - "source": "npm:prebuild-install", - "target": "npm:mkdirp-classic", - "type": "static" - }, - { - "source": "npm:prebuild-install", - "target": "npm:napi-build-utils", - "type": "static" - }, - { - "source": "npm:prebuild-install", - "target": "npm:node-abi", - "type": "static" - }, - { - "source": "npm:prebuild-install", - "target": "npm:pump", - "type": "static" - }, - { - "source": "npm:prebuild-install", - "target": "npm:rc", - "type": "static" - }, - { - "source": "npm:prebuild-install", - "target": "npm:simple-get", - "type": "static" - }, - { - "source": "npm:prebuild-install", - "target": "npm:tar-fs@2.1.4", - "type": "static" - }, - { - "source": "npm:prebuild-install", - "target": "npm:tunnel-agent", - "type": "static" - } - ], - "npm:prettier-linter-helpers": [ - { - "source": "npm:prettier-linter-helpers", - "target": "npm:fast-diff", - "type": "static" - } - ], - "npm:pretty-format": [ - { - "source": "npm:pretty-format", - "target": "npm:@jest/schemas", - "type": "static" - }, - { - "source": "npm:pretty-format", - "target": "npm:ansi-styles@5.2.0", - "type": "static" - }, - { - "source": "npm:pretty-format", - "target": "npm:react-is@18.3.1", - "type": "static" - } - ], - "npm:pretty-ms@7.0.1": [ - { - "source": "npm:pretty-ms@7.0.1", - "target": "npm:parse-ms@2.1.0", - "type": "static" - } - ], - "npm:pretty-ms": [ - { - "source": "npm:pretty-ms", - "target": "npm:parse-ms", - "type": "static" - } - ], - "npm:prisma": [ - { - "source": "npm:prisma", - "target": "npm:@prisma/config", - "type": "static" - }, - { - "source": "npm:prisma", - "target": "npm:@prisma/dev", - "type": "static" - }, - { - "source": "npm:prisma", - "target": "npm:@prisma/engines", - "type": "static" - }, - { - "source": "npm:prisma", - "target": "npm:@prisma/studio-core", - "type": "static" - }, - { - "source": "npm:prisma", - "target": "npm:mysql2", - "type": "static" - }, - { - "source": "npm:prisma", - "target": "npm:postgres", - "type": "static" - }, - { - "source": "npm:prisma", - "target": "npm:better-sqlite3", - "type": "static" - }, - { - "source": "npm:prisma", - "target": "npm:typescript", - "type": "static" - } - ], - "npm:promise-retry": [ - { - "source": "npm:promise-retry", - "target": "npm:err-code", - "type": "static" - }, - { - "source": "npm:promise-retry", - "target": "npm:retry@0.12.0", - "type": "static" - } - ], - "npm:prop-types": [ - { - "source": "npm:prop-types", - "target": "npm:loose-envify", - "type": "static" - }, - { - "source": "npm:prop-types", - "target": "npm:object-assign", - "type": "static" - }, - { - "source": "npm:prop-types", - "target": "npm:react-is", - "type": "static" - } - ], - "npm:proper-lockfile": [ - { - "source": "npm:proper-lockfile", - "target": "npm:graceful-fs", - "type": "static" - }, - { - "source": "npm:proper-lockfile", - "target": "npm:retry@0.12.0", - "type": "static" - }, - { - "source": "npm:proper-lockfile", - "target": "npm:signal-exit@3.0.7", - "type": "static" - } - ], - "npm:proxy-addr": [ - { - "source": "npm:proxy-addr", - "target": "npm:forwarded", - "type": "static" - }, - { - "source": "npm:proxy-addr", - "target": "npm:ipaddr.js@1.9.1", - "type": "static" - } - ], - "npm:proxy-agent": [ - { - "source": "npm:proxy-agent", - "target": "npm:agent-base", - "type": "static" - }, - { - "source": "npm:proxy-agent", - "target": "npm:debug", - "type": "static" - }, - { - "source": "npm:proxy-agent", - "target": "npm:http-proxy-agent", - "type": "static" - }, - { - "source": "npm:proxy-agent", - "target": "npm:https-proxy-agent@7.0.6", - "type": "static" - }, - { - "source": "npm:proxy-agent", - "target": "npm:lru-cache@7.18.3", - "type": "static" - }, - { - "source": "npm:proxy-agent", - "target": "npm:pac-proxy-agent", - "type": "static" - }, - { - "source": "npm:proxy-agent", - "target": "npm:proxy-from-env", - "type": "static" - }, - { - "source": "npm:proxy-agent", - "target": "npm:socks-proxy-agent", - "type": "static" - } - ], - "npm:pump": [ - { - "source": "npm:pump", - "target": "npm:end-of-stream", - "type": "static" - }, - { - "source": "npm:pump", - "target": "npm:once", - "type": "static" - } - ], - "npm:puppeteer-core": [ - { - "source": "npm:puppeteer-core", - "target": "npm:@puppeteer/browsers", - "type": "static" - }, - { - "source": "npm:puppeteer-core", - "target": "npm:chromium-bidi", - "type": "static" - }, - { - "source": "npm:puppeteer-core", - "target": "npm:debug", - "type": "static" - }, - { - "source": "npm:puppeteer-core", - "target": "npm:devtools-protocol", - "type": "static" - }, - { - "source": "npm:puppeteer-core", - "target": "npm:typed-query-selector", - "type": "static" - }, - { - "source": "npm:puppeteer-core", - "target": "npm:webdriver-bidi-protocol", - "type": "static" - }, - { - "source": "npm:puppeteer-core", - "target": "npm:ws@8.19.0", - "type": "static" - } - ], - "npm:puppeteer": [ - { - "source": "npm:puppeteer", - "target": "npm:@puppeteer/browsers", - "type": "static" - }, - { - "source": "npm:puppeteer", - "target": "npm:chromium-bidi", - "type": "static" - }, - { - "source": "npm:puppeteer", - "target": "npm:cosmiconfig", - "type": "static" - }, - { - "source": "npm:puppeteer", - "target": "npm:devtools-protocol", - "type": "static" - }, - { - "source": "npm:puppeteer", - "target": "npm:puppeteer-core", - "type": "static" - }, - { - "source": "npm:puppeteer", - "target": "npm:typed-query-selector", - "type": "static" - } - ], - "npm:qs": [ - { - "source": "npm:qs", - "target": "npm:side-channel", - "type": "static" - } - ], - "npm:raw-body": [ - { - "source": "npm:raw-body", - "target": "npm:bytes", - "type": "static" - }, - { - "source": "npm:raw-body", - "target": "npm:http-errors", - "type": "static" - }, - { - "source": "npm:raw-body", - "target": "npm:iconv-lite@0.7.2", - "type": "static" - }, - { - "source": "npm:raw-body", - "target": "npm:unpipe", - "type": "static" - } - ], - "npm:rc9": [ - { - "source": "npm:rc9", - "target": "npm:defu", - "type": "static" - }, - { - "source": "npm:rc9", - "target": "npm:destr", - "type": "static" - } - ], - "npm:rc": [ - { - "source": "npm:rc", - "target": "npm:deep-extend", - "type": "static" - }, - { - "source": "npm:rc", - "target": "npm:ini", - "type": "static" - }, - { - "source": "npm:rc", - "target": "npm:minimist", - "type": "static" - }, - { - "source": "npm:rc", - "target": "npm:strip-json-comments@2.0.1", - "type": "static" - } - ], - "npm:re2": [ - { - "source": "npm:re2", - "target": "npm:install-artifact-from-github", - "type": "static" - }, - { - "source": "npm:re2", - "target": "npm:nan", - "type": "static" - }, - { - "source": "npm:re2", - "target": "npm:node-gyp", - "type": "static" - } - ], - "npm:react-dom": [ - { - "source": "npm:react-dom", - "target": "npm:react", - "type": "static" - }, - { - "source": "npm:react-dom", - "target": "npm:scheduler", - "type": "static" - } - ], - "npm:react-number-format": [ - { - "source": "npm:react-number-format", - "target": "npm:react", - "type": "static" - }, - { - "source": "npm:react-number-format", - "target": "npm:react-dom", - "type": "static" - } - ], - "npm:react-remove-scroll-bar": [ - { - "source": "npm:react-remove-scroll-bar", - "target": "npm:react", - "type": "static" - }, - { - "source": "npm:react-remove-scroll-bar", - "target": "npm:react-style-singleton", - "type": "static" - }, - { - "source": "npm:react-remove-scroll-bar", - "target": "npm:tslib", - "type": "static" - }, - { - "source": "npm:react-remove-scroll-bar", - "target": "npm:@types/react", - "type": "static" - } - ], - "npm:react-remove-scroll": [ - { - "source": "npm:react-remove-scroll", - "target": "npm:react", - "type": "static" - }, - { - "source": "npm:react-remove-scroll", - "target": "npm:react-remove-scroll-bar", - "type": "static" - }, - { - "source": "npm:react-remove-scroll", - "target": "npm:react-style-singleton", - "type": "static" - }, - { - "source": "npm:react-remove-scroll", - "target": "npm:tslib", - "type": "static" - }, - { - "source": "npm:react-remove-scroll", - "target": "npm:use-callback-ref", - "type": "static" - }, - { - "source": "npm:react-remove-scroll", - "target": "npm:use-sidecar", - "type": "static" - }, - { - "source": "npm:react-remove-scroll", - "target": "npm:@types/react", - "type": "static" - } - ], - "npm:react-streaming": [ - { - "source": "npm:react-streaming", - "target": "npm:@brillout/import", - "type": "static" - }, - { - "source": "npm:react-streaming", - "target": "npm:@brillout/json-serializer", - "type": "static" - }, - { - "source": "npm:react-streaming", - "target": "npm:@brillout/picocolors", - "type": "static" - }, - { - "source": "npm:react-streaming", - "target": "npm:isbot-fast", - "type": "static" - }, - { - "source": "npm:react-streaming", - "target": "npm:react", - "type": "static" - }, - { - "source": "npm:react-streaming", - "target": "npm:react-dom", - "type": "static" - } - ], - "npm:react-style-singleton": [ - { - "source": "npm:react-style-singleton", - "target": "npm:get-nonce", - "type": "static" - }, - { - "source": "npm:react-style-singleton", - "target": "npm:react", - "type": "static" - }, - { - "source": "npm:react-style-singleton", - "target": "npm:tslib", - "type": "static" - }, - { - "source": "npm:react-style-singleton", - "target": "npm:@types/react", - "type": "static" - } - ], - "npm:react-textarea-autosize": [ - { - "source": "npm:react-textarea-autosize", - "target": "npm:@babel/runtime", - "type": "static" - }, - { - "source": "npm:react-textarea-autosize", - "target": "npm:react", - "type": "static" - }, - { - "source": "npm:react-textarea-autosize", - "target": "npm:use-composed-ref", - "type": "static" - }, - { - "source": "npm:react-textarea-autosize", - "target": "npm:use-latest", - "type": "static" - } - ], - "npm:read-package-json-fast": [ - { - "source": "npm:read-package-json-fast", - "target": "npm:json-parse-even-better-errors", - "type": "static" - }, - { - "source": "npm:read-package-json-fast", - "target": "npm:npm-normalize-package-bin", - "type": "static" - } - ], - "npm:readable-stream": [ - { - "source": "npm:readable-stream", - "target": "npm:inherits", - "type": "static" - }, - { - "source": "npm:readable-stream", - "target": "npm:string_decoder", - "type": "static" - }, - { - "source": "npm:readable-stream", - "target": "npm:util-deprecate", - "type": "static" - } - ], - "npm:reflect.getprototypeof": [ - { - "source": "npm:reflect.getprototypeof", - "target": "npm:call-bind", - "type": "static" - }, - { - "source": "npm:reflect.getprototypeof", - "target": "npm:define-properties", - "type": "static" - }, - { - "source": "npm:reflect.getprototypeof", - "target": "npm:es-abstract", - "type": "static" - }, - { - "source": "npm:reflect.getprototypeof", - "target": "npm:es-errors", - "type": "static" - }, - { - "source": "npm:reflect.getprototypeof", - "target": "npm:es-object-atoms", - "type": "static" - }, - { - "source": "npm:reflect.getprototypeof", - "target": "npm:get-intrinsic", - "type": "static" - }, - { - "source": "npm:reflect.getprototypeof", - "target": "npm:get-proto", - "type": "static" - }, - { - "source": "npm:reflect.getprototypeof", - "target": "npm:which-builtin-type", - "type": "static" - } - ], - "npm:regexp.prototype.flags": [ - { - "source": "npm:regexp.prototype.flags", - "target": "npm:call-bind", - "type": "static" - }, - { - "source": "npm:regexp.prototype.flags", - "target": "npm:define-properties", - "type": "static" - }, - { - "source": "npm:regexp.prototype.flags", - "target": "npm:es-errors", - "type": "static" - }, - { - "source": "npm:regexp.prototype.flags", - "target": "npm:get-proto", - "type": "static" - }, - { - "source": "npm:regexp.prototype.flags", - "target": "npm:gopd", - "type": "static" - }, - { - "source": "npm:regexp.prototype.flags", - "target": "npm:set-function-name", - "type": "static" - } - ], - "npm:require-one-of": [ - { - "source": "npm:require-one-of", - "target": "npm:debug", - "type": "static" - }, - { - "source": "npm:require-one-of", - "target": "npm:humanize-list", - "type": "static" - }, - { - "source": "npm:require-one-of", - "target": "npm:null-prototype-object", - "type": "static" - }, - { - "source": "npm:require-one-of", - "target": "npm:resolve-from", - "type": "static" - } - ], - "npm:resolve@1.22.10": [ - { - "source": "npm:resolve@1.22.10", - "target": "npm:is-core-module", - "type": "static" - }, - { - "source": "npm:resolve@1.22.10", - "target": "npm:path-parse", - "type": "static" - }, - { - "source": "npm:resolve@1.22.10", - "target": "npm:supports-preserve-symlinks-flag", - "type": "static" - } - ], - "npm:resolve": [ - { - "source": "npm:resolve", - "target": "npm:is-core-module", - "type": "static" - }, - { - "source": "npm:resolve", - "target": "npm:path-parse", - "type": "static" - }, - { - "source": "npm:resolve", - "target": "npm:supports-preserve-symlinks-flag", - "type": "static" - } - ], - "npm:responselike": [ - { - "source": "npm:responselike", - "target": "npm:lowercase-keys", - "type": "static" - } - ], - "npm:restore-cursor": [ - { - "source": "npm:restore-cursor", - "target": "npm:onetime", - "type": "static" - }, - { - "source": "npm:restore-cursor", - "target": "npm:signal-exit@3.0.7", - "type": "static" - } - ], - "npm:rimraf": [ - { - "source": "npm:rimraf", - "target": "npm:glob", - "type": "static" - }, - { - "source": "npm:rimraf", - "target": "npm:package-json-from-dist", - "type": "static" - } - ], - "npm:rolldown-plugin-dts": [ - { - "source": "npm:rolldown-plugin-dts", - "target": "npm:@babel/generator@8.0.0-rc.2", - "type": "static" - }, - { - "source": "npm:rolldown-plugin-dts", - "target": "npm:@babel/helper-validator-identifier@8.0.0-rc.2", - "type": "static" - }, - { - "source": "npm:rolldown-plugin-dts", - "target": "npm:@babel/parser@8.0.0-rc.2", - "type": "static" - }, - { - "source": "npm:rolldown-plugin-dts", - "target": "npm:@babel/types@8.0.0-rc.2", - "type": "static" - }, - { - "source": "npm:rolldown-plugin-dts", - "target": "npm:ast-kit", - "type": "static" - }, - { - "source": "npm:rolldown-plugin-dts", - "target": "npm:birpc", - "type": "static" - }, - { - "source": "npm:rolldown-plugin-dts", - "target": "npm:dts-resolver", - "type": "static" - }, - { - "source": "npm:rolldown-plugin-dts", - "target": "npm:get-tsconfig", - "type": "static" - }, - { - "source": "npm:rolldown-plugin-dts", - "target": "npm:obug", - "type": "static" - }, - { - "source": "npm:rolldown-plugin-dts", - "target": "npm:rolldown", - "type": "static" - }, - { - "source": "npm:rolldown-plugin-dts", - "target": "npm:typescript", - "type": "static" - } - ], - "npm:rolldown@1.0.0-beta.51": [ - { - "source": "npm:rolldown@1.0.0-beta.51", - "target": "npm:@oxc-project/types@0.98.0", - "type": "static" - }, - { - "source": "npm:rolldown@1.0.0-beta.51", - "target": "npm:@rolldown/pluginutils@1.0.0-beta.51", - "type": "static" - }, - { - "source": "npm:rolldown@1.0.0-beta.51", - "target": "npm:@rolldown/binding-android-arm64@1.0.0-beta.51", - "type": "static" - }, - { - "source": "npm:rolldown@1.0.0-beta.51", - "target": "npm:@rolldown/binding-darwin-arm64@1.0.0-beta.51", - "type": "static" - }, - { - "source": "npm:rolldown@1.0.0-beta.51", - "target": "npm:@rolldown/binding-darwin-x64@1.0.0-beta.51", - "type": "static" - }, - { - "source": "npm:rolldown@1.0.0-beta.51", - "target": "npm:@rolldown/binding-freebsd-x64@1.0.0-beta.51", - "type": "static" - }, - { - "source": "npm:rolldown@1.0.0-beta.51", - "target": "npm:@rolldown/binding-linux-arm-gnueabihf@1.0.0-beta.51", - "type": "static" - }, - { - "source": "npm:rolldown@1.0.0-beta.51", - "target": "npm:@rolldown/binding-linux-arm64-gnu@1.0.0-beta.51", - "type": "static" - }, - { - "source": "npm:rolldown@1.0.0-beta.51", - "target": "npm:@rolldown/binding-linux-arm64-musl@1.0.0-beta.51", - "type": "static" - }, - { - "source": "npm:rolldown@1.0.0-beta.51", - "target": "npm:@rolldown/binding-linux-x64-gnu@1.0.0-beta.51", - "type": "static" - }, - { - "source": "npm:rolldown@1.0.0-beta.51", - "target": "npm:@rolldown/binding-linux-x64-musl@1.0.0-beta.51", - "type": "static" - }, - { - "source": "npm:rolldown@1.0.0-beta.51", - "target": "npm:@rolldown/binding-openharmony-arm64@1.0.0-beta.51", - "type": "static" - }, - { - "source": "npm:rolldown@1.0.0-beta.51", - "target": "npm:@rolldown/binding-wasm32-wasi@1.0.0-beta.51", - "type": "static" - }, - { - "source": "npm:rolldown@1.0.0-beta.51", - "target": "npm:@rolldown/binding-win32-arm64-msvc@1.0.0-beta.51", - "type": "static" - }, - { - "source": "npm:rolldown@1.0.0-beta.51", - "target": "npm:@rolldown/binding-win32-ia32-msvc", - "type": "static" - }, - { - "source": "npm:rolldown@1.0.0-beta.51", - "target": "npm:@rolldown/binding-win32-x64-msvc@1.0.0-beta.51", - "type": "static" - } - ], - "npm:rolldown@1.0.0-rc.11": [ - { - "source": "npm:rolldown@1.0.0-rc.11", - "target": "npm:@oxc-project/types@0.122.0", - "type": "static" - }, - { - "source": "npm:rolldown@1.0.0-rc.11", - "target": "npm:@rolldown/pluginutils@1.0.0-rc.11", - "type": "static" - }, - { - "source": "npm:rolldown@1.0.0-rc.11", - "target": "npm:@rolldown/binding-android-arm64@1.0.0-rc.11", - "type": "static" - }, - { - "source": "npm:rolldown@1.0.0-rc.11", - "target": "npm:@rolldown/binding-darwin-arm64@1.0.0-rc.11", - "type": "static" - }, - { - "source": "npm:rolldown@1.0.0-rc.11", - "target": "npm:@rolldown/binding-darwin-x64@1.0.0-rc.11", - "type": "static" - }, - { - "source": "npm:rolldown@1.0.0-rc.11", - "target": "npm:@rolldown/binding-freebsd-x64@1.0.0-rc.11", - "type": "static" - }, - { - "source": "npm:rolldown@1.0.0-rc.11", - "target": "npm:@rolldown/binding-linux-arm-gnueabihf@1.0.0-rc.11", - "type": "static" - }, - { - "source": "npm:rolldown@1.0.0-rc.11", - "target": "npm:@rolldown/binding-linux-arm64-gnu@1.0.0-rc.11", - "type": "static" - }, - { - "source": "npm:rolldown@1.0.0-rc.11", - "target": "npm:@rolldown/binding-linux-arm64-musl@1.0.0-rc.11", - "type": "static" - }, - { - "source": "npm:rolldown@1.0.0-rc.11", - "target": "npm:@rolldown/binding-linux-ppc64-gnu@1.0.0-rc.11", - "type": "static" - }, - { - "source": "npm:rolldown@1.0.0-rc.11", - "target": "npm:@rolldown/binding-linux-s390x-gnu@1.0.0-rc.11", - "type": "static" - }, - { - "source": "npm:rolldown@1.0.0-rc.11", - "target": "npm:@rolldown/binding-linux-x64-gnu", - "type": "static" - }, - { - "source": "npm:rolldown@1.0.0-rc.11", - "target": "npm:@rolldown/binding-linux-x64-musl", - "type": "static" - }, - { - "source": "npm:rolldown@1.0.0-rc.11", - "target": "npm:@rolldown/binding-openharmony-arm64@1.0.0-rc.11", - "type": "static" - }, - { - "source": "npm:rolldown@1.0.0-rc.11", - "target": "npm:@rolldown/binding-wasm32-wasi@1.0.0-rc.11", - "type": "static" - }, - { - "source": "npm:rolldown@1.0.0-rc.11", - "target": "npm:@rolldown/binding-win32-arm64-msvc@1.0.0-rc.11", - "type": "static" - }, - { - "source": "npm:rolldown@1.0.0-rc.11", - "target": "npm:@rolldown/binding-win32-x64-msvc@1.0.0-rc.11", - "type": "static" - } - ], - "npm:rolldown": [ - { - "source": "npm:rolldown", - "target": "npm:@oxc-project/types@0.115.0", - "type": "static" - }, - { - "source": "npm:rolldown", - "target": "npm:@rolldown/pluginutils@1.0.0-rc.9", - "type": "static" - }, - { - "source": "npm:rolldown", - "target": "npm:@rolldown/binding-android-arm64@1.0.0-rc.9", - "type": "static" - }, - { - "source": "npm:rolldown", - "target": "npm:@rolldown/binding-darwin-arm64@1.0.0-rc.9", - "type": "static" - }, - { - "source": "npm:rolldown", - "target": "npm:@rolldown/binding-darwin-x64@1.0.0-rc.9", - "type": "static" - }, - { - "source": "npm:rolldown", - "target": "npm:@rolldown/binding-freebsd-x64@1.0.0-rc.9", - "type": "static" - }, - { - "source": "npm:rolldown", - "target": "npm:@rolldown/binding-linux-arm-gnueabihf@1.0.0-rc.9", - "type": "static" - }, - { - "source": "npm:rolldown", - "target": "npm:@rolldown/binding-linux-arm64-gnu@1.0.0-rc.9", - "type": "static" - }, - { - "source": "npm:rolldown", - "target": "npm:@rolldown/binding-linux-arm64-musl@1.0.0-rc.9", - "type": "static" - }, - { - "source": "npm:rolldown", - "target": "npm:@rolldown/binding-linux-ppc64-gnu@1.0.0-rc.9", - "type": "static" - }, - { - "source": "npm:rolldown", - "target": "npm:@rolldown/binding-linux-s390x-gnu@1.0.0-rc.9", - "type": "static" - }, - { - "source": "npm:rolldown", - "target": "npm:@rolldown/binding-linux-x64-gnu@1.0.0-rc.9", - "type": "static" - }, - { - "source": "npm:rolldown", - "target": "npm:@rolldown/binding-linux-x64-musl@1.0.0-rc.9", - "type": "static" - }, - { - "source": "npm:rolldown", - "target": "npm:@rolldown/binding-openharmony-arm64@1.0.0-rc.9", - "type": "static" - }, - { - "source": "npm:rolldown", - "target": "npm:@rolldown/binding-wasm32-wasi@1.0.0-rc.9", - "type": "static" - }, - { - "source": "npm:rolldown", - "target": "npm:@rolldown/binding-win32-arm64-msvc@1.0.0-rc.9", - "type": "static" - }, - { - "source": "npm:rolldown", - "target": "npm:@rolldown/binding-win32-x64-msvc@1.0.0-rc.9", - "type": "static" - } - ], - "npm:router": [ - { - "source": "npm:router", - "target": "npm:debug", - "type": "static" - }, - { - "source": "npm:router", - "target": "npm:depd", - "type": "static" - }, - { - "source": "npm:router", - "target": "npm:is-promise", - "type": "static" - }, - { - "source": "npm:router", - "target": "npm:parseurl", - "type": "static" - }, - { - "source": "npm:router", - "target": "npm:path-to-regexp", - "type": "static" - } - ], - "npm:run-parallel": [ - { - "source": "npm:run-parallel", - "target": "npm:queue-microtask", - "type": "static" - } - ], - "npm:safe-array-concat": [ - { - "source": "npm:safe-array-concat", - "target": "npm:call-bind", - "type": "static" - }, - { - "source": "npm:safe-array-concat", - "target": "npm:call-bound", - "type": "static" - }, - { - "source": "npm:safe-array-concat", - "target": "npm:get-intrinsic", - "type": "static" - }, - { - "source": "npm:safe-array-concat", - "target": "npm:has-symbols", - "type": "static" - }, - { - "source": "npm:safe-array-concat", - "target": "npm:isarray", - "type": "static" - } - ], - "npm:safe-push-apply": [ - { - "source": "npm:safe-push-apply", - "target": "npm:es-errors", - "type": "static" - }, - { - "source": "npm:safe-push-apply", - "target": "npm:isarray", - "type": "static" - } - ], - "npm:safe-regex-test": [ - { - "source": "npm:safe-regex-test", - "target": "npm:call-bound", - "type": "static" - }, - { - "source": "npm:safe-regex-test", - "target": "npm:es-errors", - "type": "static" - }, - { - "source": "npm:safe-regex-test", - "target": "npm:is-regex", - "type": "static" - } - ], - "npm:safe-regex2": [ - { - "source": "npm:safe-regex2", - "target": "npm:ret", - "type": "static" - } - ], - "npm:send": [ - { - "source": "npm:send", - "target": "npm:debug", - "type": "static" - }, - { - "source": "npm:send", - "target": "npm:encodeurl", - "type": "static" - }, - { - "source": "npm:send", - "target": "npm:escape-html", - "type": "static" - }, - { - "source": "npm:send", - "target": "npm:etag", - "type": "static" - }, - { - "source": "npm:send", - "target": "npm:fresh", - "type": "static" - }, - { - "source": "npm:send", - "target": "npm:http-errors", - "type": "static" - }, - { - "source": "npm:send", - "target": "npm:mime-types", - "type": "static" - }, - { - "source": "npm:send", - "target": "npm:ms", - "type": "static" - }, - { - "source": "npm:send", - "target": "npm:on-finished", - "type": "static" - }, - { - "source": "npm:send", - "target": "npm:range-parser", - "type": "static" - }, - { - "source": "npm:send", - "target": "npm:statuses", - "type": "static" - } - ], - "npm:serialize-error": [ - { - "source": "npm:serialize-error", - "target": "npm:type-fest@0.20.2", - "type": "static" - } - ], - "npm:seroval-plugins": [ - { - "source": "npm:seroval-plugins", - "target": "npm:seroval", - "type": "static" - } - ], - "npm:serve-static": [ - { - "source": "npm:serve-static", - "target": "npm:encodeurl", - "type": "static" - }, - { - "source": "npm:serve-static", - "target": "npm:escape-html", - "type": "static" - }, - { - "source": "npm:serve-static", - "target": "npm:parseurl", - "type": "static" - }, - { - "source": "npm:serve-static", - "target": "npm:send", - "type": "static" - } - ], - "npm:set-function-length": [ - { - "source": "npm:set-function-length", - "target": "npm:define-data-property", - "type": "static" - }, - { - "source": "npm:set-function-length", - "target": "npm:es-errors", - "type": "static" - }, - { - "source": "npm:set-function-length", - "target": "npm:function-bind", - "type": "static" - }, - { - "source": "npm:set-function-length", - "target": "npm:get-intrinsic", - "type": "static" - }, - { - "source": "npm:set-function-length", - "target": "npm:gopd", - "type": "static" - }, - { - "source": "npm:set-function-length", - "target": "npm:has-property-descriptors", - "type": "static" - } - ], - "npm:set-function-name": [ - { - "source": "npm:set-function-name", - "target": "npm:define-data-property", - "type": "static" - }, - { - "source": "npm:set-function-name", - "target": "npm:es-errors", - "type": "static" - }, - { - "source": "npm:set-function-name", - "target": "npm:functions-have-names", - "type": "static" - }, - { - "source": "npm:set-function-name", - "target": "npm:has-property-descriptors", - "type": "static" - } - ], - "npm:set-proto": [ - { - "source": "npm:set-proto", - "target": "npm:dunder-proto", - "type": "static" - }, - { - "source": "npm:set-proto", - "target": "npm:es-errors", - "type": "static" - }, - { - "source": "npm:set-proto", - "target": "npm:es-object-atoms", - "type": "static" - } - ], - "npm:sharp@0.33.5": [ - { - "source": "npm:sharp@0.33.5", - "target": "npm:color", - "type": "static" - }, - { - "source": "npm:sharp@0.33.5", - "target": "npm:detect-libc", - "type": "static" - }, - { - "source": "npm:sharp@0.33.5", - "target": "npm:semver@7.7.4", - "type": "static" - }, - { - "source": "npm:sharp@0.33.5", - "target": "npm:@img/sharp-darwin-arm64@0.33.5", - "type": "static" - }, - { - "source": "npm:sharp@0.33.5", - "target": "npm:@img/sharp-darwin-x64@0.33.5", - "type": "static" - }, - { - "source": "npm:sharp@0.33.5", - "target": "npm:@img/sharp-libvips-darwin-arm64@1.0.4", - "type": "static" - }, - { - "source": "npm:sharp@0.33.5", - "target": "npm:@img/sharp-libvips-darwin-x64@1.0.4", - "type": "static" - }, - { - "source": "npm:sharp@0.33.5", - "target": "npm:@img/sharp-libvips-linux-arm@1.0.5", - "type": "static" - }, - { - "source": "npm:sharp@0.33.5", - "target": "npm:@img/sharp-libvips-linux-arm64@1.0.4", - "type": "static" - }, - { - "source": "npm:sharp@0.33.5", - "target": "npm:@img/sharp-libvips-linux-s390x@1.0.4", - "type": "static" - }, - { - "source": "npm:sharp@0.33.5", - "target": "npm:@img/sharp-libvips-linux-x64@1.0.4", - "type": "static" - }, - { - "source": "npm:sharp@0.33.5", - "target": "npm:@img/sharp-libvips-linuxmusl-arm64@1.0.4", - "type": "static" - }, - { - "source": "npm:sharp@0.33.5", - "target": "npm:@img/sharp-libvips-linuxmusl-x64@1.0.4", - "type": "static" - }, - { - "source": "npm:sharp@0.33.5", - "target": "npm:@img/sharp-linux-arm@0.33.5", - "type": "static" - }, - { - "source": "npm:sharp@0.33.5", - "target": "npm:@img/sharp-linux-arm64@0.33.5", - "type": "static" - }, - { - "source": "npm:sharp@0.33.5", - "target": "npm:@img/sharp-linux-s390x@0.33.5", - "type": "static" - }, - { - "source": "npm:sharp@0.33.5", - "target": "npm:@img/sharp-linux-x64@0.33.5", - "type": "static" - }, - { - "source": "npm:sharp@0.33.5", - "target": "npm:@img/sharp-linuxmusl-arm64@0.33.5", - "type": "static" - }, - { - "source": "npm:sharp@0.33.5", - "target": "npm:@img/sharp-linuxmusl-x64@0.33.5", - "type": "static" - }, - { - "source": "npm:sharp@0.33.5", - "target": "npm:@img/sharp-wasm32@0.33.5", - "type": "static" - }, - { - "source": "npm:sharp@0.33.5", - "target": "npm:@img/sharp-win32-ia32@0.33.5", - "type": "static" - }, - { - "source": "npm:sharp@0.33.5", - "target": "npm:@img/sharp-win32-x64@0.33.5", - "type": "static" - } - ], - "npm:sharp": [ - { - "source": "npm:sharp", - "target": "npm:@img/colour", - "type": "static" - }, - { - "source": "npm:sharp", - "target": "npm:detect-libc", - "type": "static" - }, - { - "source": "npm:sharp", - "target": "npm:semver@7.7.4", - "type": "static" - }, - { - "source": "npm:sharp", - "target": "npm:@img/sharp-darwin-arm64@0.34.5", - "type": "static" - }, - { - "source": "npm:sharp", - "target": "npm:@img/sharp-darwin-x64@0.34.5", - "type": "static" - }, - { - "source": "npm:sharp", - "target": "npm:@img/sharp-libvips-darwin-arm64@1.2.4", - "type": "static" - }, - { - "source": "npm:sharp", - "target": "npm:@img/sharp-libvips-darwin-x64@1.2.4", - "type": "static" - }, - { - "source": "npm:sharp", - "target": "npm:@img/sharp-libvips-linux-arm@1.2.4", - "type": "static" - }, - { - "source": "npm:sharp", - "target": "npm:@img/sharp-libvips-linux-arm64@1.2.4", - "type": "static" - }, - { - "source": "npm:sharp", - "target": "npm:@img/sharp-libvips-linux-ppc64", - "type": "static" - }, - { - "source": "npm:sharp", - "target": "npm:@img/sharp-libvips-linux-riscv64", - "type": "static" - }, - { - "source": "npm:sharp", - "target": "npm:@img/sharp-libvips-linux-s390x@1.2.4", - "type": "static" - }, - { - "source": "npm:sharp", - "target": "npm:@img/sharp-libvips-linux-x64", - "type": "static" - }, - { - "source": "npm:sharp", - "target": "npm:@img/sharp-libvips-linuxmusl-arm64@1.2.4", - "type": "static" - }, - { - "source": "npm:sharp", - "target": "npm:@img/sharp-libvips-linuxmusl-x64", - "type": "static" - }, - { - "source": "npm:sharp", - "target": "npm:@img/sharp-linux-arm@0.34.5", - "type": "static" - }, - { - "source": "npm:sharp", - "target": "npm:@img/sharp-linux-arm64@0.34.5", - "type": "static" - }, - { - "source": "npm:sharp", - "target": "npm:@img/sharp-linux-ppc64", - "type": "static" - }, - { - "source": "npm:sharp", - "target": "npm:@img/sharp-linux-riscv64", - "type": "static" - }, - { - "source": "npm:sharp", - "target": "npm:@img/sharp-linux-s390x@0.34.5", - "type": "static" - }, - { - "source": "npm:sharp", - "target": "npm:@img/sharp-linux-x64", - "type": "static" - }, - { - "source": "npm:sharp", - "target": "npm:@img/sharp-linuxmusl-arm64@0.34.5", - "type": "static" - }, - { - "source": "npm:sharp", - "target": "npm:@img/sharp-linuxmusl-x64", - "type": "static" - }, - { - "source": "npm:sharp", - "target": "npm:@img/sharp-wasm32@0.34.5", - "type": "static" - }, - { - "source": "npm:sharp", - "target": "npm:@img/sharp-win32-arm64", - "type": "static" - }, - { - "source": "npm:sharp", - "target": "npm:@img/sharp-win32-ia32@0.34.5", - "type": "static" - }, - { - "source": "npm:sharp", - "target": "npm:@img/sharp-win32-x64@0.34.5", - "type": "static" - } - ], - "npm:shebang-command": [ - { - "source": "npm:shebang-command", - "target": "npm:shebang-regex", - "type": "static" - } - ], - "npm:side-channel-list": [ - { - "source": "npm:side-channel-list", - "target": "npm:es-errors", - "type": "static" - }, - { - "source": "npm:side-channel-list", - "target": "npm:object-inspect", - "type": "static" - } - ], - "npm:side-channel-map": [ - { - "source": "npm:side-channel-map", - "target": "npm:call-bound", - "type": "static" - }, - { - "source": "npm:side-channel-map", - "target": "npm:es-errors", - "type": "static" - }, - { - "source": "npm:side-channel-map", - "target": "npm:get-intrinsic", - "type": "static" - }, - { - "source": "npm:side-channel-map", - "target": "npm:object-inspect", - "type": "static" - } - ], - "npm:side-channel-weakmap": [ - { - "source": "npm:side-channel-weakmap", - "target": "npm:call-bound", - "type": "static" - }, - { - "source": "npm:side-channel-weakmap", - "target": "npm:es-errors", - "type": "static" - }, - { - "source": "npm:side-channel-weakmap", - "target": "npm:get-intrinsic", - "type": "static" - }, - { - "source": "npm:side-channel-weakmap", - "target": "npm:object-inspect", - "type": "static" - }, - { - "source": "npm:side-channel-weakmap", - "target": "npm:side-channel-map", - "type": "static" - } - ], - "npm:side-channel": [ - { - "source": "npm:side-channel", - "target": "npm:es-errors", - "type": "static" - }, - { - "source": "npm:side-channel", - "target": "npm:object-inspect", - "type": "static" - }, - { - "source": "npm:side-channel", - "target": "npm:side-channel-list", - "type": "static" - }, - { - "source": "npm:side-channel", - "target": "npm:side-channel-map", - "type": "static" - }, - { - "source": "npm:side-channel", - "target": "npm:side-channel-weakmap", - "type": "static" - } - ], - "npm:simple-get": [ - { - "source": "npm:simple-get", - "target": "npm:decompress-response", - "type": "static" - }, - { - "source": "npm:simple-get", - "target": "npm:once", - "type": "static" - }, - { - "source": "npm:simple-get", - "target": "npm:simple-concat", - "type": "static" - } - ], - "npm:simple-swizzle": [ - { - "source": "npm:simple-swizzle", - "target": "npm:is-arrayish@0.3.4", - "type": "static" - } - ], - "npm:sirv": [ - { - "source": "npm:sirv", - "target": "npm:@polka/url", - "type": "static" - }, - { - "source": "npm:sirv", - "target": "npm:mrmime", - "type": "static" - }, - { - "source": "npm:sirv", - "target": "npm:totalist", - "type": "static" - } - ], - "npm:socks-proxy-agent": [ - { - "source": "npm:socks-proxy-agent", - "target": "npm:agent-base", - "type": "static" - }, - { - "source": "npm:socks-proxy-agent", - "target": "npm:debug", - "type": "static" - }, - { - "source": "npm:socks-proxy-agent", - "target": "npm:socks", - "type": "static" - } - ], - "npm:socks": [ - { - "source": "npm:socks", - "target": "npm:ip-address", - "type": "static" - }, - { - "source": "npm:socks", - "target": "npm:smart-buffer", - "type": "static" - } - ], - "npm:solid-element": [ - { - "source": "npm:solid-element", - "target": "npm:component-register", - "type": "static" - }, - { - "source": "npm:solid-element", - "target": "npm:solid-js", - "type": "static" - } - ], - "npm:solid-js": [ - { - "source": "npm:solid-js", - "target": "npm:csstype", - "type": "static" - }, - { - "source": "npm:solid-js", - "target": "npm:seroval", - "type": "static" - }, - { - "source": "npm:solid-js", - "target": "npm:seroval-plugins", - "type": "static" - } - ], - "npm:solid-motionone": [ - { - "source": "npm:solid-motionone", - "target": "npm:@motionone/dom", - "type": "static" - }, - { - "source": "npm:solid-motionone", - "target": "npm:@motionone/utils", - "type": "static" - }, - { - "source": "npm:solid-motionone", - "target": "npm:@solid-primitives/props", - "type": "static" - }, - { - "source": "npm:solid-motionone", - "target": "npm:@solid-primitives/refs", - "type": "static" - }, - { - "source": "npm:solid-motionone", - "target": "npm:@solid-primitives/transition-group", - "type": "static" - }, - { - "source": "npm:solid-motionone", - "target": "npm:csstype", - "type": "static" - }, - { - "source": "npm:solid-motionone", - "target": "npm:solid-js", - "type": "static" - } - ], - "npm:solid-refresh": [ - { - "source": "npm:solid-refresh", - "target": "npm:@babel/generator", - "type": "static" - }, - { - "source": "npm:solid-refresh", - "target": "npm:@babel/helper-module-imports", - "type": "static" - }, - { - "source": "npm:solid-refresh", - "target": "npm:@babel/types", - "type": "static" - }, - { - "source": "npm:solid-refresh", - "target": "npm:solid-js", - "type": "static" - } - ], - "npm:sonic-boom": [ - { - "source": "npm:sonic-boom", - "target": "npm:atomic-sleep", - "type": "static" - } - ], - "npm:source-map-support": [ - { - "source": "npm:source-map-support", - "target": "npm:buffer-from", - "type": "static" - }, - { - "source": "npm:source-map-support", - "target": "npm:source-map", - "type": "static" - } - ], - "npm:ssri": [ - { - "source": "npm:ssri", - "target": "npm:minipass", - "type": "static" - } - ], - "npm:standaloner": [ - { - "source": "npm:standaloner", - "target": "npm:@vercel/nft@0.30.4", - "type": "static" - }, - { - "source": "npm:standaloner", - "target": "npm:acorn", - "type": "static" - }, - { - "source": "npm:standaloner", - "target": "npm:estree-walker", - "type": "static" - }, - { - "source": "npm:standaloner", - "target": "npm:magic-string", - "type": "static" - }, - { - "source": "npm:standaloner", - "target": "npm:rolldown@1.0.0-beta.51", - "type": "static" - } - ], - "npm:standaloner@0.2.2": [ - { - "source": "npm:standaloner@0.2.2", - "target": "npm:@vercel/nft", - "type": "static" - }, - { - "source": "npm:standaloner@0.2.2", - "target": "npm:acorn", - "type": "static" - }, - { - "source": "npm:standaloner@0.2.2", - "target": "npm:estree-walker", - "type": "static" - }, - { - "source": "npm:standaloner@0.2.2", - "target": "npm:magic-string", - "type": "static" - }, - { - "source": "npm:standaloner@0.2.2", - "target": "npm:p-limit", - "type": "static" - }, - { - "source": "npm:standaloner@0.2.2", - "target": "npm:rolldown@1.0.0-beta.51", - "type": "static" - } - ], - "npm:stop-iteration-iterator": [ - { - "source": "npm:stop-iteration-iterator", - "target": "npm:es-errors", - "type": "static" - }, - { - "source": "npm:stop-iteration-iterator", - "target": "npm:internal-slot", - "type": "static" - } - ], - "npm:streamx": [ - { - "source": "npm:streamx", - "target": "npm:events-universal", - "type": "static" - }, - { - "source": "npm:streamx", - "target": "npm:fast-fifo", - "type": "static" - }, - { - "source": "npm:streamx", - "target": "npm:text-decoder", - "type": "static" - } - ], - "npm:string-width": [ - { - "source": "npm:string-width", - "target": "npm:emoji-regex", - "type": "static" - }, - { - "source": "npm:string-width", - "target": "npm:is-fullwidth-code-point", - "type": "static" - }, - { - "source": "npm:string-width", - "target": "npm:strip-ansi@6.0.1", - "type": "static" - } - ], - "npm:string-width-cjs": [ - { - "source": "npm:string-width-cjs", - "target": "npm:emoji-regex", - "type": "static" - }, - { - "source": "npm:string-width-cjs", - "target": "npm:is-fullwidth-code-point", - "type": "static" - }, - { - "source": "npm:string-width-cjs", - "target": "npm:strip-ansi@6.0.1", - "type": "static" - } - ], - "npm:string-width@5.1.2": [ - { - "source": "npm:string-width@5.1.2", - "target": "npm:eastasianwidth", - "type": "static" - }, - { - "source": "npm:string-width@5.1.2", - "target": "npm:emoji-regex@9.2.2", - "type": "static" - }, - { - "source": "npm:string-width@5.1.2", - "target": "npm:strip-ansi", - "type": "static" - } - ], - "npm:string.prototype.matchall": [ - { - "source": "npm:string.prototype.matchall", - "target": "npm:call-bind", - "type": "static" - }, - { - "source": "npm:string.prototype.matchall", - "target": "npm:call-bound", - "type": "static" - }, - { - "source": "npm:string.prototype.matchall", - "target": "npm:define-properties", - "type": "static" - }, - { - "source": "npm:string.prototype.matchall", - "target": "npm:es-abstract", - "type": "static" - }, - { - "source": "npm:string.prototype.matchall", - "target": "npm:es-errors", - "type": "static" - }, - { - "source": "npm:string.prototype.matchall", - "target": "npm:es-object-atoms", - "type": "static" - }, - { - "source": "npm:string.prototype.matchall", - "target": "npm:get-intrinsic", - "type": "static" - }, - { - "source": "npm:string.prototype.matchall", - "target": "npm:gopd", - "type": "static" - }, - { - "source": "npm:string.prototype.matchall", - "target": "npm:has-symbols", - "type": "static" - }, - { - "source": "npm:string.prototype.matchall", - "target": "npm:internal-slot", - "type": "static" - }, - { - "source": "npm:string.prototype.matchall", - "target": "npm:regexp.prototype.flags", - "type": "static" - }, - { - "source": "npm:string.prototype.matchall", - "target": "npm:set-function-name", - "type": "static" - }, - { - "source": "npm:string.prototype.matchall", - "target": "npm:side-channel", - "type": "static" - } - ], - "npm:string.prototype.repeat": [ - { - "source": "npm:string.prototype.repeat", - "target": "npm:define-properties", - "type": "static" - }, - { - "source": "npm:string.prototype.repeat", - "target": "npm:es-abstract", - "type": "static" - } - ], - "npm:string.prototype.trim": [ - { - "source": "npm:string.prototype.trim", - "target": "npm:call-bind", - "type": "static" - }, - { - "source": "npm:string.prototype.trim", - "target": "npm:call-bound", - "type": "static" - }, - { - "source": "npm:string.prototype.trim", - "target": "npm:define-data-property", - "type": "static" - }, - { - "source": "npm:string.prototype.trim", - "target": "npm:define-properties", - "type": "static" - }, - { - "source": "npm:string.prototype.trim", - "target": "npm:es-abstract", - "type": "static" - }, - { - "source": "npm:string.prototype.trim", - "target": "npm:es-object-atoms", - "type": "static" - }, - { - "source": "npm:string.prototype.trim", - "target": "npm:has-property-descriptors", - "type": "static" - } - ], - "npm:string.prototype.trimend": [ - { - "source": "npm:string.prototype.trimend", - "target": "npm:call-bind", - "type": "static" - }, - { - "source": "npm:string.prototype.trimend", - "target": "npm:call-bound", - "type": "static" - }, - { - "source": "npm:string.prototype.trimend", - "target": "npm:define-properties", - "type": "static" - }, - { - "source": "npm:string.prototype.trimend", - "target": "npm:es-object-atoms", - "type": "static" - } - ], - "npm:string.prototype.trimstart": [ - { - "source": "npm:string.prototype.trimstart", - "target": "npm:call-bind", - "type": "static" - }, - { - "source": "npm:string.prototype.trimstart", - "target": "npm:define-properties", - "type": "static" - }, - { - "source": "npm:string.prototype.trimstart", - "target": "npm:es-object-atoms", - "type": "static" - } - ], - "npm:string_decoder": [ - { - "source": "npm:string_decoder", - "target": "npm:safe-buffer@5.2.1", - "type": "static" - } - ], - "npm:strip-ansi@6.0.1": [ - { - "source": "npm:strip-ansi@6.0.1", - "target": "npm:ansi-regex@5.0.1", - "type": "static" - } - ], - "npm:strip-ansi-cjs": [ - { - "source": "npm:strip-ansi-cjs", - "target": "npm:ansi-regex@5.0.1", - "type": "static" - } - ], - "npm:strip-ansi": [ - { - "source": "npm:strip-ansi", - "target": "npm:ansi-regex", - "type": "static" - } - ], - "npm:style-to-object": [ - { - "source": "npm:style-to-object", - "target": "npm:inline-style-parser", - "type": "static" - } - ], - "npm:stylehacks": [ - { - "source": "npm:stylehacks", - "target": "npm:browserslist", - "type": "static" - }, - { - "source": "npm:stylehacks", - "target": "npm:postcss", - "type": "static" - }, - { - "source": "npm:stylehacks", - "target": "npm:postcss-selector-parser@6.1.2", - "type": "static" - } - ], - "npm:sugarss": [ - { - "source": "npm:sugarss", - "target": "npm:postcss", - "type": "static" - } - ], - "npm:supports-color": [ - { - "source": "npm:supports-color", - "target": "npm:has-flag", - "type": "static" - } - ], - "npm:svg-gradient": [ - { - "source": "npm:svg-gradient", - "target": "npm:gradient-parser", - "type": "static" - }, - { - "source": "npm:svg-gradient", - "target": "npm:whoops", - "type": "static" - } - ], - "npm:svgo": [ - { - "source": "npm:svgo", - "target": "npm:@trysound/sax", - "type": "static" - }, - { - "source": "npm:svgo", - "target": "npm:commander", - "type": "static" - }, - { - "source": "npm:svgo", - "target": "npm:css-select", - "type": "static" - }, - { - "source": "npm:svgo", - "target": "npm:css-tree", - "type": "static" - }, - { - "source": "npm:svgo", - "target": "npm:csso", - "type": "static" - }, - { - "source": "npm:svgo", - "target": "npm:picocolors", - "type": "static" - }, - { - "source": "npm:svgo", - "target": "npm:stable", - "type": "static" - } - ], - "npm:synckit": [ - { - "source": "npm:synckit", - "target": "npm:@pkgr/core", - "type": "static" - } - ], - "npm:tar-fs@2.1.4": [ - { - "source": "npm:tar-fs@2.1.4", - "target": "npm:chownr", - "type": "static" - }, - { - "source": "npm:tar-fs@2.1.4", - "target": "npm:mkdirp-classic", - "type": "static" - }, - { - "source": "npm:tar-fs@2.1.4", - "target": "npm:pump", - "type": "static" - }, - { - "source": "npm:tar-fs@2.1.4", - "target": "npm:tar-stream", - "type": "static" - } - ], - "npm:tar-fs": [ - { - "source": "npm:tar-fs", - "target": "npm:pump", - "type": "static" - }, - { - "source": "npm:tar-fs", - "target": "npm:tar-stream@3.1.7", - "type": "static" - }, - { - "source": "npm:tar-fs", - "target": "npm:bare-fs", - "type": "static" - }, - { - "source": "npm:tar-fs", - "target": "npm:bare-path", - "type": "static" - } - ], - "npm:tar-stream": [ - { - "source": "npm:tar-stream", - "target": "npm:bl", - "type": "static" - }, - { - "source": "npm:tar-stream", - "target": "npm:end-of-stream", - "type": "static" - }, - { - "source": "npm:tar-stream", - "target": "npm:fs-constants", - "type": "static" - }, - { - "source": "npm:tar-stream", - "target": "npm:inherits", - "type": "static" - }, - { - "source": "npm:tar-stream", - "target": "npm:readable-stream", - "type": "static" - } - ], - "npm:tar-stream@3.1.7": [ - { - "source": "npm:tar-stream@3.1.7", - "target": "npm:b4a", - "type": "static" - }, - { - "source": "npm:tar-stream@3.1.7", - "target": "npm:fast-fifo", - "type": "static" - }, - { - "source": "npm:tar-stream@3.1.7", - "target": "npm:streamx", - "type": "static" - } - ], - "npm:tar": [ - { - "source": "npm:tar", - "target": "npm:@isaacs/fs-minipass", - "type": "static" - }, - { - "source": "npm:tar", - "target": "npm:chownr@3.0.0", - "type": "static" - }, - { - "source": "npm:tar", - "target": "npm:minipass", - "type": "static" - }, - { - "source": "npm:tar", - "target": "npm:minizlib", - "type": "static" - }, - { - "source": "npm:tar", - "target": "npm:yallist@5.0.0", - "type": "static" - } - ], - "npm:telefunc": [ - { - "source": "npm:telefunc", - "target": "npm:@brillout/import", - "type": "static" - }, - { - "source": "npm:telefunc", - "target": "npm:@brillout/json-serializer", - "type": "static" - }, - { - "source": "npm:telefunc", - "target": "npm:@brillout/picocolors", - "type": "static" - }, - { - "source": "npm:telefunc", - "target": "npm:@brillout/vite-plugin-server-entry", - "type": "static" - }, - { - "source": "npm:telefunc", - "target": "npm:es-module-lexer", - "type": "static" - }, - { - "source": "npm:telefunc", - "target": "npm:magic-string", - "type": "static" - }, - { - "source": "npm:telefunc", - "target": "npm:ts-morph", - "type": "static" - }, - { - "source": "npm:telefunc", - "target": "npm:@babel/core", - "type": "static" - }, - { - "source": "npm:telefunc", - "target": "npm:@babel/parser", - "type": "static" - }, - { - "source": "npm:telefunc", - "target": "npm:@babel/types", - "type": "static" - }, - { - "source": "npm:telefunc", - "target": "npm:react", - "type": "static" - }, - { - "source": "npm:telefunc", - "target": "npm:react-streaming", - "type": "static" - }, - { - "source": "npm:telefunc", - "target": "npm:vite", - "type": "static" - } - ], - "npm:text-decoder": [ - { - "source": "npm:text-decoder", - "target": "npm:b4a", - "type": "static" - } - ], - "npm:thread-stream": [ - { - "source": "npm:thread-stream", - "target": "npm:real-require", - "type": "static" - } - ], - "npm:tinyglobby": [ - { - "source": "npm:tinyglobby", - "target": "npm:fdir", - "type": "static" - }, - { - "source": "npm:tinyglobby", - "target": "npm:picomatch", - "type": "static" - } - ], - "npm:tldts-experimental": [ - { - "source": "npm:tldts-experimental", - "target": "npm:tldts-core", - "type": "static" - } - ], - "npm:tldts": [ - { - "source": "npm:tldts", - "target": "npm:tldts-core", - "type": "static" - } - ], - "npm:to-regex-range": [ - { - "source": "npm:to-regex-range", - "target": "npm:is-number", - "type": "static" - } - ], - "npm:tough-cookie": [ - { - "source": "npm:tough-cookie", - "target": "npm:tldts", - "type": "static" - } - ], - "npm:ts-api-utils": [ - { - "source": "npm:ts-api-utils", - "target": "npm:typescript", - "type": "static" - } - ], - "npm:ts-morph": [ - { - "source": "npm:ts-morph", - "target": "npm:@ts-morph/common", - "type": "static" - }, - { - "source": "npm:ts-morph", - "target": "npm:code-block-writer", - "type": "static" - } - ], - "npm:tsconfig-paths": [ - { - "source": "npm:tsconfig-paths", - "target": "npm:json5", - "type": "static" - }, - { - "source": "npm:tsconfig-paths", - "target": "npm:minimist", - "type": "static" - }, - { - "source": "npm:tsconfig-paths", - "target": "npm:strip-bom", - "type": "static" - } - ], - "npm:tsdown": [ - { - "source": "npm:tsdown", - "target": "npm:ansis", - "type": "static" - }, - { - "source": "npm:tsdown", - "target": "npm:cac", - "type": "static" - }, - { - "source": "npm:tsdown", - "target": "npm:defu", - "type": "static" - }, - { - "source": "npm:tsdown", - "target": "npm:empathic", - "type": "static" - }, - { - "source": "npm:tsdown", - "target": "npm:hookable", - "type": "static" - }, - { - "source": "npm:tsdown", - "target": "npm:import-without-cache", - "type": "static" - }, - { - "source": "npm:tsdown", - "target": "npm:obug", - "type": "static" - }, - { - "source": "npm:tsdown", - "target": "npm:picomatch", - "type": "static" - }, - { - "source": "npm:tsdown", - "target": "npm:rolldown", - "type": "static" - }, - { - "source": "npm:tsdown", - "target": "npm:rolldown-plugin-dts", - "type": "static" - }, - { - "source": "npm:tsdown", - "target": "npm:semver@7.7.4", - "type": "static" - }, - { - "source": "npm:tsdown", - "target": "npm:tinyexec", - "type": "static" - }, - { - "source": "npm:tsdown", - "target": "npm:tinyglobby", - "type": "static" - }, - { - "source": "npm:tsdown", - "target": "npm:tree-kill", - "type": "static" - }, - { - "source": "npm:tsdown", - "target": "npm:unconfig-core", - "type": "static" - }, - { - "source": "npm:tsdown", - "target": "npm:unrun", - "type": "static" - }, - { - "source": "npm:tsdown", - "target": "npm:typescript", - "type": "static" - } - ], - "npm:tsx": [ - { - "source": "npm:tsx", - "target": "npm:esbuild", - "type": "static" - }, - { - "source": "npm:tsx", - "target": "npm:get-tsconfig", - "type": "static" - }, - { - "source": "npm:tsx", - "target": "npm:fsevents", - "type": "static" - } - ], - "npm:tunnel-agent": [ - { - "source": "npm:tunnel-agent", - "target": "npm:safe-buffer@5.2.1", - "type": "static" - } - ], - "npm:turbo": [ - { - "source": "npm:turbo", - "target": "npm:@turbo/darwin-64", - "type": "static" - }, - { - "source": "npm:turbo", - "target": "npm:@turbo/darwin-arm64", - "type": "static" - }, - { - "source": "npm:turbo", - "target": "npm:@turbo/linux-64", - "type": "static" - }, - { - "source": "npm:turbo", - "target": "npm:@turbo/linux-arm64", - "type": "static" - }, - { - "source": "npm:turbo", - "target": "npm:@turbo/windows-64", - "type": "static" - }, - { - "source": "npm:turbo", - "target": "npm:@turbo/windows-arm64", - "type": "static" - } - ], - "npm:type-check": [ - { - "source": "npm:type-check", - "target": "npm:prelude-ls", - "type": "static" - } - ], - "npm:type-is": [ - { - "source": "npm:type-is", - "target": "npm:content-type", - "type": "static" - }, - { - "source": "npm:type-is", - "target": "npm:media-typer", - "type": "static" - }, - { - "source": "npm:type-is", - "target": "npm:mime-types", - "type": "static" - } - ], - "npm:typed-array-buffer": [ - { - "source": "npm:typed-array-buffer", - "target": "npm:call-bound", - "type": "static" - }, - { - "source": "npm:typed-array-buffer", - "target": "npm:es-errors", - "type": "static" - }, - { - "source": "npm:typed-array-buffer", - "target": "npm:is-typed-array", - "type": "static" - } - ], - "npm:typed-array-byte-length": [ - { - "source": "npm:typed-array-byte-length", - "target": "npm:call-bind", - "type": "static" - }, - { - "source": "npm:typed-array-byte-length", - "target": "npm:for-each", - "type": "static" - }, - { - "source": "npm:typed-array-byte-length", - "target": "npm:gopd", - "type": "static" - }, - { - "source": "npm:typed-array-byte-length", - "target": "npm:has-proto", - "type": "static" - }, - { - "source": "npm:typed-array-byte-length", - "target": "npm:is-typed-array", - "type": "static" - } - ], - "npm:typed-array-byte-offset": [ - { - "source": "npm:typed-array-byte-offset", - "target": "npm:available-typed-arrays", - "type": "static" - }, - { - "source": "npm:typed-array-byte-offset", - "target": "npm:call-bind", - "type": "static" - }, - { - "source": "npm:typed-array-byte-offset", - "target": "npm:for-each", - "type": "static" - }, - { - "source": "npm:typed-array-byte-offset", - "target": "npm:gopd", - "type": "static" - }, - { - "source": "npm:typed-array-byte-offset", - "target": "npm:has-proto", - "type": "static" - }, - { - "source": "npm:typed-array-byte-offset", - "target": "npm:is-typed-array", - "type": "static" - }, - { - "source": "npm:typed-array-byte-offset", - "target": "npm:reflect.getprototypeof", - "type": "static" - } - ], - "npm:typed-array-length": [ - { - "source": "npm:typed-array-length", - "target": "npm:call-bind", - "type": "static" - }, - { - "source": "npm:typed-array-length", - "target": "npm:for-each", - "type": "static" - }, - { - "source": "npm:typed-array-length", - "target": "npm:gopd", - "type": "static" - }, - { - "source": "npm:typed-array-length", - "target": "npm:is-typed-array", - "type": "static" - }, - { - "source": "npm:typed-array-length", - "target": "npm:possible-typed-array-names", - "type": "static" - }, - { - "source": "npm:typed-array-length", - "target": "npm:reflect.getprototypeof", - "type": "static" - } - ], - "npm:typescript-eslint": [ - { - "source": "npm:typescript-eslint", - "target": "npm:@typescript-eslint/eslint-plugin", - "type": "static" - }, - { - "source": "npm:typescript-eslint", - "target": "npm:@typescript-eslint/parser", - "type": "static" - }, - { - "source": "npm:typescript-eslint", - "target": "npm:@typescript-eslint/typescript-estree", - "type": "static" - }, - { - "source": "npm:typescript-eslint", - "target": "npm:@typescript-eslint/utils", - "type": "static" - }, - { - "source": "npm:typescript-eslint", - "target": "npm:eslint", - "type": "static" - }, - { - "source": "npm:typescript-eslint", - "target": "npm:typescript", - "type": "static" - } - ], - "npm:unbox-primitive": [ - { - "source": "npm:unbox-primitive", - "target": "npm:call-bound", - "type": "static" - }, - { - "source": "npm:unbox-primitive", - "target": "npm:has-bigints", - "type": "static" - }, - { - "source": "npm:unbox-primitive", - "target": "npm:has-symbols", - "type": "static" - }, - { - "source": "npm:unbox-primitive", - "target": "npm:which-boxed-primitive", - "type": "static" - } - ], - "npm:unconfig-core": [ - { - "source": "npm:unconfig-core", - "target": "npm:@quansync/fs", - "type": "static" - }, - { - "source": "npm:unconfig-core", - "target": "npm:quansync", - "type": "static" - } - ], - "npm:unconfig": [ - { - "source": "npm:unconfig", - "target": "npm:@quansync/fs", - "type": "static" - }, - { - "source": "npm:unconfig", - "target": "npm:defu", - "type": "static" - }, - { - "source": "npm:unconfig", - "target": "npm:jiti", - "type": "static" - }, - { - "source": "npm:unconfig", - "target": "npm:quansync", - "type": "static" - }, - { - "source": "npm:unconfig", - "target": "npm:unconfig-core", - "type": "static" - } - ], - "npm:unenv": [ - { - "source": "npm:unenv", - "target": "npm:pathe", - "type": "static" - } - ], - "npm:union": [ - { - "source": "npm:union", - "target": "npm:qs", - "type": "static" - } - ], - "npm:unique-filename": [ - { - "source": "npm:unique-filename", - "target": "npm:unique-slug", - "type": "static" - } - ], - "npm:unique-slug": [ - { - "source": "npm:unique-slug", - "target": "npm:imurmurhash", - "type": "static" - } - ], - "npm:unist-util-is": [ - { - "source": "npm:unist-util-is", - "target": "npm:@types/unist@3.0.3", - "type": "static" - } - ], - "npm:unist-util-stringify-position": [ - { - "source": "npm:unist-util-stringify-position", - "target": "npm:@types/unist@3.0.3", - "type": "static" - } - ], - "npm:unist-util-visit-parents": [ - { - "source": "npm:unist-util-visit-parents", - "target": "npm:@types/unist@3.0.3", - "type": "static" - }, - { - "source": "npm:unist-util-visit-parents", - "target": "npm:unist-util-is", - "type": "static" - } - ], - "npm:unist-util-visit": [ - { - "source": "npm:unist-util-visit", - "target": "npm:@types/unist@3.0.3", - "type": "static" - }, - { - "source": "npm:unist-util-visit", - "target": "npm:unist-util-is", - "type": "static" - }, - { - "source": "npm:unist-util-visit", - "target": "npm:unist-util-visit-parents", - "type": "static" - } - ], - "npm:unplugin-purge-polyfills": [ - { - "source": "npm:unplugin-purge-polyfills", - "target": "npm:defu", - "type": "static" - }, - { - "source": "npm:unplugin-purge-polyfills", - "target": "npm:magic-string", - "type": "static" - }, - { - "source": "npm:unplugin-purge-polyfills", - "target": "npm:mlly", - "type": "static" - }, - { - "source": "npm:unplugin-purge-polyfills", - "target": "npm:unplugin", - "type": "static" - } - ], - "npm:unplugin": [ - { - "source": "npm:unplugin", - "target": "npm:@jridgewell/remapping", - "type": "static" - }, - { - "source": "npm:unplugin", - "target": "npm:acorn", - "type": "static" - }, - { - "source": "npm:unplugin", - "target": "npm:picomatch", - "type": "static" - }, - { - "source": "npm:unplugin", - "target": "npm:webpack-virtual-modules", - "type": "static" - } - ], - "npm:unrun": [ - { - "source": "npm:unrun", - "target": "npm:rolldown", - "type": "static" - }, - { - "source": "npm:unrun", - "target": "npm:synckit", - "type": "static" - } - ], - "npm:update-browserslist-db": [ - { - "source": "npm:update-browserslist-db", - "target": "npm:browserslist", - "type": "static" - }, - { - "source": "npm:update-browserslist-db", - "target": "npm:escalade", - "type": "static" - }, - { - "source": "npm:update-browserslist-db", - "target": "npm:picocolors", - "type": "static" - } - ], - "npm:uri-js": [ - { - "source": "npm:uri-js", - "target": "npm:punycode", - "type": "static" - } - ], - "npm:url-http": [ - { - "source": "npm:url-http", - "target": "npm:punycode-regex", - "type": "static" - }, - { - "source": "npm:url-http", - "target": "npm:re2", - "type": "static" - }, - { - "source": "npm:url-http", - "target": "npm:url-regex-safe", - "type": "static" - } - ], - "npm:url-regex-safe": [ - { - "source": "npm:url-regex-safe", - "target": "npm:ip-regex", - "type": "static" - }, - { - "source": "npm:url-regex-safe", - "target": "npm:tlds", - "type": "static" - }, - { - "source": "npm:url-regex-safe", - "target": "npm:re2", - "type": "static" - } - ], - "npm:use-callback-ref": [ - { - "source": "npm:use-callback-ref", - "target": "npm:react", - "type": "static" - }, - { - "source": "npm:use-callback-ref", - "target": "npm:tslib", - "type": "static" - }, - { - "source": "npm:use-callback-ref", - "target": "npm:@types/react", - "type": "static" - } - ], - "npm:use-composed-ref": [ - { - "source": "npm:use-composed-ref", - "target": "npm:react", - "type": "static" - }, - { - "source": "npm:use-composed-ref", - "target": "npm:@types/react", - "type": "static" - } - ], - "npm:use-isomorphic-layout-effect": [ - { - "source": "npm:use-isomorphic-layout-effect", - "target": "npm:react", - "type": "static" - }, - { - "source": "npm:use-isomorphic-layout-effect", - "target": "npm:@types/react", - "type": "static" - } - ], - "npm:use-latest": [ - { - "source": "npm:use-latest", - "target": "npm:react", - "type": "static" - }, - { - "source": "npm:use-latest", - "target": "npm:use-isomorphic-layout-effect", - "type": "static" - }, - { - "source": "npm:use-latest", - "target": "npm:@types/react", - "type": "static" - } - ], - "npm:use-sidecar": [ - { - "source": "npm:use-sidecar", - "target": "npm:detect-node-es", - "type": "static" - }, - { - "source": "npm:use-sidecar", - "target": "npm:react", - "type": "static" - }, - { - "source": "npm:use-sidecar", - "target": "npm:tslib", - "type": "static" - }, - { - "source": "npm:use-sidecar", - "target": "npm:@types/react", - "type": "static" - } - ], - "npm:valibot": [ - { - "source": "npm:valibot", - "target": "npm:typescript", - "type": "static" - } - ], - "npm:vike-photon": [ - { - "source": "npm:vike-photon", - "target": "npm:@brillout/picocolors", - "type": "static" - }, - { - "source": "npm:vike-photon", - "target": "npm:@brillout/vite-plugin-server-entry", - "type": "static" - }, - { - "source": "npm:vike-photon", - "target": "npm:@photonjs/core", - "type": "static" - }, - { - "source": "npm:vike-photon", - "target": "npm:@photonjs/runtime", - "type": "static" - }, - { - "source": "npm:vike-photon", - "target": "npm:@universal-middleware/compress", - "type": "static" - }, - { - "source": "npm:vike-photon", - "target": "npm:@universal-middleware/core", - "type": "static" - }, - { - "source": "npm:vike-photon", - "target": "npm:@universal-middleware/sirv", - "type": "static" - }, - { - "source": "npm:vike-photon", - "target": "npm:pkg-types", - "type": "static" - }, - { - "source": "npm:vike-photon", - "target": "npm:standaloner@0.2.2", - "type": "static" - }, - { - "source": "npm:vike-photon", - "target": "npm:vike", - "type": "static" - }, - { - "source": "npm:vike-photon", - "target": "npm:@photonjs/cloudflare", - "type": "static" - }, - { - "source": "npm:vike-photon", - "target": "npm:@photonjs/vercel", - "type": "static" - }, - { - "source": "npm:vike-photon", - "target": "npm:vite", - "type": "static" - } - ], - "npm:vike-react": [ - { - "source": "npm:vike-react", - "target": "npm:react", - "type": "static" - }, - { - "source": "npm:vike-react", - "target": "npm:react-dom", - "type": "static" - }, - { - "source": "npm:vike-react", - "target": "npm:react-streaming", - "type": "static" - }, - { - "source": "npm:vike-react", - "target": "npm:vike", - "type": "static" - } - ], - "npm:vike-solid": [ - { - "source": "npm:vike-solid", - "target": "npm:isbot-fast", - "type": "static" - }, - { - "source": "npm:vike-solid", - "target": "npm:solid-js", - "type": "static" - }, - { - "source": "npm:vike-solid", - "target": "npm:vike", - "type": "static" - }, - { - "source": "npm:vike-solid", - "target": "npm:vite-plugin-solid", - "type": "static" - } - ], - "npm:vike-vue": [ - { - "source": "npm:vike-vue", - "target": "npm:magic-string", - "type": "static" - }, - { - "source": "npm:vike-vue", - "target": "npm:oxc-parser", - "type": "static" - }, - { - "source": "npm:vike-vue", - "target": "npm:oxc-walker", - "type": "static" - }, - { - "source": "npm:vike-vue", - "target": "npm:vike", - "type": "static" - }, - { - "source": "npm:vike-vue", - "target": "npm:vue", - "type": "static" - } - ], - "npm:vike": [ - { - "source": "npm:vike", - "target": "npm:@babel/core", - "type": "static" - }, - { - "source": "npm:vike", - "target": "npm:@babel/types", - "type": "static" - }, - { - "source": "npm:vike", - "target": "npm:@brillout/import", - "type": "static" - }, - { - "source": "npm:vike", - "target": "npm:@brillout/json-serializer", - "type": "static" - }, - { - "source": "npm:vike", - "target": "npm:@brillout/picocolors", - "type": "static" - }, - { - "source": "npm:vike", - "target": "npm:@brillout/vite-plugin-server-entry", - "type": "static" - }, - { - "source": "npm:vike", - "target": "npm:cac@6.7.14", - "type": "static" - }, - { - "source": "npm:vike", - "target": "npm:es-module-lexer", - "type": "static" - }, - { - "source": "npm:vike", - "target": "npm:esbuild", - "type": "static" - }, - { - "source": "npm:vike", - "target": "npm:json5", - "type": "static" - }, - { - "source": "npm:vike", - "target": "npm:magic-string", - "type": "static" - }, - { - "source": "npm:vike", - "target": "npm:picomatch", - "type": "static" - }, - { - "source": "npm:vike", - "target": "npm:semver@7.7.4", - "type": "static" - }, - { - "source": "npm:vike", - "target": "npm:sirv", - "type": "static" - }, - { - "source": "npm:vike", - "target": "npm:source-map-support", - "type": "static" - }, - { - "source": "npm:vike", - "target": "npm:tinyglobby", - "type": "static" - }, - { - "source": "npm:vike", - "target": "npm:vite", - "type": "static" - }, - { - "source": "npm:vike", - "target": "npm:react-streaming", - "type": "static" - } - ], - "npm:vite-plugin-compiled-react": [ - { - "source": "npm:vite-plugin-compiled-react", - "target": "npm:@babel/types", - "type": "static" - }, - { - "source": "npm:vite-plugin-compiled-react", - "target": "npm:@compiled/babel-plugin", - "type": "static" - }, - { - "source": "npm:vite-plugin-compiled-react", - "target": "npm:@compiled/babel-plugin-strip-runtime", - "type": "static" - }, - { - "source": "npm:vite-plugin-compiled-react", - "target": "npm:@compiled/react", - "type": "static" - }, - { - "source": "npm:vite-plugin-compiled-react", - "target": "npm:@vitejs/plugin-react", - "type": "static" - }, - { - "source": "npm:vite-plugin-compiled-react", - "target": "npm:babel-plugin-module-resolver", - "type": "static" - }, - { - "source": "npm:vite-plugin-compiled-react", - "target": "npm:vite", - "type": "static" - } - ], - "npm:vite-plugin-solid": [ - { - "source": "npm:vite-plugin-solid", - "target": "npm:@babel/core", - "type": "static" - }, - { - "source": "npm:vite-plugin-solid", - "target": "npm:@types/babel__core", - "type": "static" - }, - { - "source": "npm:vite-plugin-solid", - "target": "npm:babel-preset-solid", - "type": "static" - }, - { - "source": "npm:vite-plugin-solid", - "target": "npm:merge-anything", - "type": "static" - }, - { - "source": "npm:vite-plugin-solid", - "target": "npm:solid-js", - "type": "static" - }, - { - "source": "npm:vite-plugin-solid", - "target": "npm:solid-refresh", - "type": "static" - }, - { - "source": "npm:vite-plugin-solid", - "target": "npm:vite", - "type": "static" - }, - { - "source": "npm:vite-plugin-solid", - "target": "npm:vitefu", - "type": "static" - } - ], - "npm:vite-plugin-wasm": [ - { - "source": "npm:vite-plugin-wasm", - "target": "npm:vite", - "type": "static" - } - ], - "npm:vite": [ - { - "source": "npm:vite", - "target": "npm:lightningcss", - "type": "static" - }, - { - "source": "npm:vite", - "target": "npm:picomatch", - "type": "static" - }, - { - "source": "npm:vite", - "target": "npm:postcss", - "type": "static" - }, - { - "source": "npm:vite", - "target": "npm:rolldown@1.0.0-rc.11", - "type": "static" - }, - { - "source": "npm:vite", - "target": "npm:tinyglobby", - "type": "static" - }, - { - "source": "npm:vite", - "target": "npm:@types/node", - "type": "static" - }, - { - "source": "npm:vite", - "target": "npm:esbuild", - "type": "static" - }, - { - "source": "npm:vite", - "target": "npm:fsevents", - "type": "static" - }, - { - "source": "npm:vite", - "target": "npm:jiti", - "type": "static" - }, - { - "source": "npm:vite", - "target": "npm:sugarss", - "type": "static" - }, - { - "source": "npm:vite", - "target": "npm:tsx", - "type": "static" - }, - { - "source": "npm:vite", - "target": "npm:yaml", - "type": "static" - } - ], - "npm:vitefu": [ - { - "source": "npm:vitefu", - "target": "npm:vite", - "type": "static" - } - ], - "npm:vitest": [ - { - "source": "npm:vitest", - "target": "npm:@vitest/expect", - "type": "static" - }, - { - "source": "npm:vitest", - "target": "npm:@vitest/mocker", - "type": "static" - }, - { - "source": "npm:vitest", - "target": "npm:@vitest/pretty-format", - "type": "static" - }, - { - "source": "npm:vitest", - "target": "npm:@vitest/runner", - "type": "static" - }, - { - "source": "npm:vitest", - "target": "npm:@vitest/snapshot", - "type": "static" - }, - { - "source": "npm:vitest", - "target": "npm:@vitest/spy", - "type": "static" - }, - { - "source": "npm:vitest", - "target": "npm:@vitest/utils", - "type": "static" - }, - { - "source": "npm:vitest", - "target": "npm:es-module-lexer@2.0.0", - "type": "static" - }, - { - "source": "npm:vitest", - "target": "npm:expect-type", - "type": "static" - }, - { - "source": "npm:vitest", - "target": "npm:magic-string", - "type": "static" - }, - { - "source": "npm:vitest", - "target": "npm:obug", - "type": "static" - }, - { - "source": "npm:vitest", - "target": "npm:pathe", - "type": "static" - }, - { - "source": "npm:vitest", - "target": "npm:picomatch", - "type": "static" - }, - { - "source": "npm:vitest", - "target": "npm:std-env", - "type": "static" - }, - { - "source": "npm:vitest", - "target": "npm:tinybench", - "type": "static" - }, - { - "source": "npm:vitest", - "target": "npm:tinyexec", - "type": "static" - }, - { - "source": "npm:vitest", - "target": "npm:tinyglobby", - "type": "static" - }, - { - "source": "npm:vitest", - "target": "npm:tinyrainbow", - "type": "static" - }, - { - "source": "npm:vitest", - "target": "npm:vite", - "type": "static" - }, - { - "source": "npm:vitest", - "target": "npm:why-is-node-running", - "type": "static" - }, - { - "source": "npm:vitest", - "target": "npm:@types/node", - "type": "static" - } - ], - "npm:vue-eslint-parser": [ - { - "source": "npm:vue-eslint-parser", - "target": "npm:debug", - "type": "static" - }, - { - "source": "npm:vue-eslint-parser", - "target": "npm:eslint", - "type": "static" - }, - { - "source": "npm:vue-eslint-parser", - "target": "npm:eslint-scope", - "type": "static" - }, - { - "source": "npm:vue-eslint-parser", - "target": "npm:eslint-visitor-keys@5.0.1", - "type": "static" - }, - { - "source": "npm:vue-eslint-parser", - "target": "npm:espree", - "type": "static" - }, - { - "source": "npm:vue-eslint-parser", - "target": "npm:esquery", - "type": "static" - }, - { - "source": "npm:vue-eslint-parser", - "target": "npm:semver@7.7.4", - "type": "static" - } - ], - "npm:vue-gtag": [ - { - "source": "npm:vue-gtag", - "target": "npm:vue", - "type": "static" - } - ], - "npm:vue": [ - { - "source": "npm:vue", - "target": "npm:@vue/compiler-dom", - "type": "static" - }, - { - "source": "npm:vue", - "target": "npm:@vue/compiler-sfc", - "type": "static" - }, - { - "source": "npm:vue", - "target": "npm:@vue/runtime-dom", - "type": "static" - }, - { - "source": "npm:vue", - "target": "npm:@vue/server-renderer", - "type": "static" - }, - { - "source": "npm:vue", - "target": "npm:@vue/shared", - "type": "static" - }, - { - "source": "npm:vue", - "target": "npm:typescript", - "type": "static" - } - ], - "npm:wcwidth": [ - { - "source": "npm:wcwidth", - "target": "npm:defaults", - "type": "static" - } - ], - "npm:whatwg-encoding": [ - { - "source": "npm:whatwg-encoding", - "target": "npm:iconv-lite", - "type": "static" - } - ], - "npm:whatwg-url": [ - { - "source": "npm:whatwg-url", - "target": "npm:tr46", - "type": "static" - }, - { - "source": "npm:whatwg-url", - "target": "npm:webidl-conversions", - "type": "static" - } - ], - "npm:which-boxed-primitive": [ - { - "source": "npm:which-boxed-primitive", - "target": "npm:is-bigint", - "type": "static" - }, - { - "source": "npm:which-boxed-primitive", - "target": "npm:is-boolean-object", - "type": "static" - }, - { - "source": "npm:which-boxed-primitive", - "target": "npm:is-number-object", - "type": "static" - }, - { - "source": "npm:which-boxed-primitive", - "target": "npm:is-string", - "type": "static" - }, - { - "source": "npm:which-boxed-primitive", - "target": "npm:is-symbol", - "type": "static" - } - ], - "npm:which-builtin-type": [ - { - "source": "npm:which-builtin-type", - "target": "npm:call-bound", - "type": "static" - }, - { - "source": "npm:which-builtin-type", - "target": "npm:function.prototype.name", - "type": "static" - }, - { - "source": "npm:which-builtin-type", - "target": "npm:has-tostringtag", - "type": "static" - }, - { - "source": "npm:which-builtin-type", - "target": "npm:is-async-function", - "type": "static" - }, - { - "source": "npm:which-builtin-type", - "target": "npm:is-date-object", - "type": "static" - }, - { - "source": "npm:which-builtin-type", - "target": "npm:is-finalizationregistry", - "type": "static" - }, - { - "source": "npm:which-builtin-type", - "target": "npm:is-generator-function", - "type": "static" - }, - { - "source": "npm:which-builtin-type", - "target": "npm:is-regex", - "type": "static" - }, - { - "source": "npm:which-builtin-type", - "target": "npm:is-weakref", - "type": "static" - }, - { - "source": "npm:which-builtin-type", - "target": "npm:isarray", - "type": "static" - }, - { - "source": "npm:which-builtin-type", - "target": "npm:which-boxed-primitive", - "type": "static" - }, - { - "source": "npm:which-builtin-type", - "target": "npm:which-collection", - "type": "static" - }, - { - "source": "npm:which-builtin-type", - "target": "npm:which-typed-array", - "type": "static" - } - ], - "npm:which-collection": [ - { - "source": "npm:which-collection", - "target": "npm:is-map", - "type": "static" - }, - { - "source": "npm:which-collection", - "target": "npm:is-set", - "type": "static" - }, - { - "source": "npm:which-collection", - "target": "npm:is-weakmap", - "type": "static" - }, - { - "source": "npm:which-collection", - "target": "npm:is-weakset", - "type": "static" - } - ], - "npm:which-typed-array": [ - { - "source": "npm:which-typed-array", - "target": "npm:available-typed-arrays", - "type": "static" - }, - { - "source": "npm:which-typed-array", - "target": "npm:call-bind", - "type": "static" - }, - { - "source": "npm:which-typed-array", - "target": "npm:call-bound", - "type": "static" - }, - { - "source": "npm:which-typed-array", - "target": "npm:for-each", - "type": "static" - }, - { - "source": "npm:which-typed-array", - "target": "npm:get-proto", - "type": "static" - }, - { - "source": "npm:which-typed-array", - "target": "npm:gopd", - "type": "static" - }, - { - "source": "npm:which-typed-array", - "target": "npm:has-tostringtag", - "type": "static" - } - ], - "npm:which@2.0.2": [ - { - "source": "npm:which@2.0.2", - "target": "npm:isexe@2.0.0", - "type": "static" - } - ], - "npm:which@5.0.0": [ - { - "source": "npm:which@5.0.0", - "target": "npm:isexe@3.1.1", - "type": "static" - } - ], - "npm:which": [ - { - "source": "npm:which", - "target": "npm:isexe", - "type": "static" - } - ], - "npm:why-is-node-running": [ - { - "source": "npm:why-is-node-running", - "target": "npm:siginfo", - "type": "static" - }, - { - "source": "npm:why-is-node-running", - "target": "npm:stackback", - "type": "static" - } - ], - "npm:workerd@1.20251217.0": [ - { - "source": "npm:workerd@1.20251217.0", - "target": "npm:@cloudflare/workerd-darwin-64@1.20251217.0", - "type": "static" - }, - { - "source": "npm:workerd@1.20251217.0", - "target": "npm:@cloudflare/workerd-darwin-arm64@1.20251217.0", - "type": "static" - }, - { - "source": "npm:workerd@1.20251217.0", - "target": "npm:@cloudflare/workerd-linux-64@1.20251217.0", - "type": "static" - }, - { - "source": "npm:workerd@1.20251217.0", - "target": "npm:@cloudflare/workerd-linux-arm64@1.20251217.0", - "type": "static" - }, - { - "source": "npm:workerd@1.20251217.0", - "target": "npm:@cloudflare/workerd-windows-64@1.20251217.0", - "type": "static" - } - ], - "npm:workerd": [ - { - "source": "npm:workerd", - "target": "npm:@cloudflare/workerd-darwin-64@1.20260317.1", - "type": "static" - }, - { - "source": "npm:workerd", - "target": "npm:@cloudflare/workerd-darwin-arm64@1.20260317.1", - "type": "static" - }, - { - "source": "npm:workerd", - "target": "npm:@cloudflare/workerd-linux-64", - "type": "static" - }, - { - "source": "npm:workerd", - "target": "npm:@cloudflare/workerd-linux-arm64@1.20260317.1", - "type": "static" - }, - { - "source": "npm:workerd", - "target": "npm:@cloudflare/workerd-windows-64@1.20260317.1", - "type": "static" - } - ], - "npm:wrangler": [ - { - "source": "npm:wrangler", - "target": "npm:@cloudflare/kv-asset-handler", - "type": "static" - }, - { - "source": "npm:wrangler", - "target": "npm:@cloudflare/unenv-preset", - "type": "static" - }, - { - "source": "npm:wrangler", - "target": "npm:blake3-wasm", - "type": "static" - }, - { - "source": "npm:wrangler", - "target": "npm:esbuild@0.27.3", - "type": "static" - }, - { - "source": "npm:wrangler", - "target": "npm:miniflare", - "type": "static" - }, - { - "source": "npm:wrangler", - "target": "npm:path-to-regexp@6.3.0", - "type": "static" - }, - { - "source": "npm:wrangler", - "target": "npm:unenv", - "type": "static" - }, - { - "source": "npm:wrangler", - "target": "npm:workerd", - "type": "static" - }, - { - "source": "npm:wrangler", - "target": "npm:@cloudflare/workers-types", - "type": "static" - }, - { - "source": "npm:wrangler", - "target": "npm:fsevents", - "type": "static" - } - ], - "npm:wrap-ansi": [ - { - "source": "npm:wrap-ansi", - "target": "npm:ansi-styles@4.3.0", - "type": "static" - }, - { - "source": "npm:wrap-ansi", - "target": "npm:string-width", - "type": "static" - }, - { - "source": "npm:wrap-ansi", - "target": "npm:strip-ansi@6.0.1", - "type": "static" - } - ], - "npm:wrap-ansi-cjs": [ - { - "source": "npm:wrap-ansi-cjs", - "target": "npm:ansi-styles@4.3.0", - "type": "static" - }, - { - "source": "npm:wrap-ansi-cjs", - "target": "npm:string-width", - "type": "static" - }, - { - "source": "npm:wrap-ansi-cjs", - "target": "npm:strip-ansi@6.0.1", - "type": "static" - } - ], - "npm:wrap-ansi@8.1.0": [ - { - "source": "npm:wrap-ansi@8.1.0", - "target": "npm:ansi-styles", - "type": "static" - }, - { - "source": "npm:wrap-ansi@8.1.0", - "target": "npm:string-width@5.1.2", - "type": "static" - }, - { - "source": "npm:wrap-ansi@8.1.0", - "target": "npm:strip-ansi", - "type": "static" - } - ], - "npm:yargs": [ - { - "source": "npm:yargs", - "target": "npm:cliui", - "type": "static" - }, - { - "source": "npm:yargs", - "target": "npm:escalade", - "type": "static" - }, - { - "source": "npm:yargs", - "target": "npm:get-caller-file", - "type": "static" - }, - { - "source": "npm:yargs", - "target": "npm:require-directory", - "type": "static" - }, - { - "source": "npm:yargs", - "target": "npm:string-width", - "type": "static" - }, - { - "source": "npm:yargs", - "target": "npm:y18n", - "type": "static" - }, - { - "source": "npm:yargs", - "target": "npm:yargs-parser", - "type": "static" - } - ], - "npm:yauzl": [ - { - "source": "npm:yauzl", - "target": "npm:buffer-crc32", - "type": "static" - }, - { - "source": "npm:yauzl", - "target": "npm:fd-slicer", - "type": "static" - } - ], - "npm:youch-core": [ - { - "source": "npm:youch-core", - "target": "npm:@poppinss/exception", - "type": "static" - }, - { - "source": "npm:youch-core", - "target": "npm:error-stack-parser-es", - "type": "static" - } - ], - "npm:youch": [ - { - "source": "npm:youch", - "target": "npm:@poppinss/colors", - "type": "static" - }, - { - "source": "npm:youch", - "target": "npm:@poppinss/dumper", - "type": "static" - }, - { - "source": "npm:youch", - "target": "npm:@speed-highlight/core", - "type": "static" - }, - { - "source": "npm:youch", - "target": "npm:cookie@1.1.1", - "type": "static" - }, - { - "source": "npm:youch", - "target": "npm:youch-core", - "type": "static" - } - ], - "npm:zeptomatch": [ - { - "source": "npm:zeptomatch", - "target": "npm:grammex", - "type": "static" - }, - { - "source": "npm:zeptomatch", - "target": "npm:graphmatch", - "type": "static" - } - ] - }, - "version": "6.0", - "errors": [], - "computedAt": 1774449441474 -} \ No newline at end of file diff --git a/.nx/workspace-data/project-graph.lock b/.nx/workspace-data/project-graph.lock deleted file mode 100644 index e69de29bb..000000000 diff --git a/.nx/workspace-data/source-maps.json b/.nx/workspace-data/source-maps.json deleted file mode 100644 index a87b720be..000000000 --- a/.nx/workspace-data/source-maps.json +++ /dev/null @@ -1,8346 +0,0 @@ -{ - "boilerplates/auth0": { - "root": [ - "boilerplates/auth0/package.json", - "nx/core/package-json" - ], - "name": [ - "boilerplates/auth0/package.json", - "nx/core/package-json" - ], - "tags": [ - "boilerplates/auth0/package.json", - "nx/core/package-json" - ], - "tags.npm:private": [ - "boilerplates/auth0/package.json", - "nx/core/package-json" - ], - "tags.type:boilerplate": [ - "boilerplates/auth0/package.json", - "nx/core/package-json" - ], - "metadata.targetGroups": [ - "boilerplates/auth0/package.json", - "nx/core/package-json" - ], - "metadata.targetGroups.NPM Scripts": [ - "boilerplates/auth0/package.json", - "nx/core/package-json" - ], - "metadata.targetGroups.NPM Scripts.0": [ - "boilerplates/auth0/package.json", - "nx/core/package-json" - ], - "metadata.targetGroups.NPM Scripts.1": [ - "boilerplates/auth0/package.json", - "nx/core/package-json" - ], - "metadata.description": [ - "boilerplates/auth0/package.json", - "nx/core/package-json" - ], - "metadata.js": [ - "boilerplates/auth0/package.json", - "nx/core/package-json" - ], - "metadata.js.packageName": [ - "boilerplates/auth0/package.json", - "nx/core/package-json" - ], - "metadata.js.packageVersion": [ - "boilerplates/auth0/package.json", - "nx/core/package-json" - ], - "metadata.js.isInPackageManagerWorkspaces": [ - "boilerplates/auth0/package.json", - "nx/core/package-json" - ], - "targets": [ - "boilerplates/auth0/package.json", - "nx/core/package-json" - ], - "targets.check-types": [ - "boilerplates/auth0/package.json", - "nx/core/package-json" - ], - "targets.check-types.executor": [ - "boilerplates/auth0/package.json", - "nx/core/package-json" - ], - "targets.check-types.options": [ - "boilerplates/auth0/package.json", - "nx/core/package-json" - ], - "targets.check-types.metadata": [ - "boilerplates/auth0/package.json", - "nx/core/package-json" - ], - "targets.check-types.options.script": [ - "boilerplates/auth0/package.json", - "nx/core/package-json" - ], - "targets.check-types.metadata.scriptContent": [ - "boilerplates/auth0/package.json", - "nx/core/package-json" - ], - "targets.check-types.metadata.runCommand": [ - "boilerplates/auth0/package.json", - "nx/core/package-json" - ], - "targets.build": [ - "boilerplates/auth0/package.json", - "nx/core/package-json" - ], - "targets.build.executor": [ - "boilerplates/auth0/package.json", - "nx/core/package-json" - ], - "targets.build.options": [ - "boilerplates/auth0/package.json", - "nx/core/package-json" - ], - "targets.build.metadata": [ - "boilerplates/auth0/package.json", - "nx/core/package-json" - ], - "targets.build.options.script": [ - "boilerplates/auth0/package.json", - "nx/core/package-json" - ], - "targets.build.metadata.scriptContent": [ - "boilerplates/auth0/package.json", - "nx/core/package-json" - ], - "targets.build.metadata.runCommand": [ - "boilerplates/auth0/package.json", - "nx/core/package-json" - ], - "targets.check-types.cache": [ - "nx.json", - "nx/target-defaults" - ], - "targets.check-types.parallelism": [ - "nx.json", - "nx/target-defaults" - ], - "targets.build.cache": [ - "nx.json", - "nx/target-defaults" - ], - "targets.build.dependsOn": [ - "nx.json", - "nx/target-defaults" - ], - "targets.build.inputs": [ - "nx.json", - "nx/target-defaults" - ], - "targets.build.outputs": [ - "nx.json", - "nx/target-defaults" - ], - "targets.build.parallelism": [ - "nx.json", - "nx/target-defaults" - ] - }, - "boilerplates/authjs": { - "root": [ - "boilerplates/authjs/package.json", - "nx/core/package-json" - ], - "name": [ - "boilerplates/authjs/package.json", - "nx/core/package-json" - ], - "tags": [ - "boilerplates/authjs/package.json", - "nx/core/package-json" - ], - "tags.npm:private": [ - "boilerplates/authjs/package.json", - "nx/core/package-json" - ], - "tags.type:boilerplate": [ - "boilerplates/authjs/package.json", - "nx/core/package-json" - ], - "metadata.targetGroups": [ - "boilerplates/authjs/package.json", - "nx/core/package-json" - ], - "metadata.targetGroups.NPM Scripts": [ - "boilerplates/authjs/package.json", - "nx/core/package-json" - ], - "metadata.targetGroups.NPM Scripts.0": [ - "boilerplates/authjs/package.json", - "nx/core/package-json" - ], - "metadata.targetGroups.NPM Scripts.1": [ - "boilerplates/authjs/package.json", - "nx/core/package-json" - ], - "metadata.description": [ - "boilerplates/authjs/package.json", - "nx/core/package-json" - ], - "metadata.js": [ - "boilerplates/authjs/package.json", - "nx/core/package-json" - ], - "metadata.js.packageName": [ - "boilerplates/authjs/package.json", - "nx/core/package-json" - ], - "metadata.js.packageVersion": [ - "boilerplates/authjs/package.json", - "nx/core/package-json" - ], - "metadata.js.packageExports": [ - "boilerplates/authjs/package.json", - "nx/core/package-json" - ], - "metadata.js.isInPackageManagerWorkspaces": [ - "boilerplates/authjs/package.json", - "nx/core/package-json" - ], - "targets": [ - "boilerplates/authjs/package.json", - "nx/core/package-json" - ], - "targets.check-types": [ - "boilerplates/authjs/package.json", - "nx/core/package-json" - ], - "targets.check-types.executor": [ - "boilerplates/authjs/package.json", - "nx/core/package-json" - ], - "targets.check-types.options": [ - "boilerplates/authjs/package.json", - "nx/core/package-json" - ], - "targets.check-types.metadata": [ - "boilerplates/authjs/package.json", - "nx/core/package-json" - ], - "targets.check-types.options.script": [ - "boilerplates/authjs/package.json", - "nx/core/package-json" - ], - "targets.check-types.metadata.scriptContent": [ - "boilerplates/authjs/package.json", - "nx/core/package-json" - ], - "targets.check-types.metadata.runCommand": [ - "boilerplates/authjs/package.json", - "nx/core/package-json" - ], - "targets.build": [ - "boilerplates/authjs/package.json", - "nx/core/package-json" - ], - "targets.build.executor": [ - "boilerplates/authjs/package.json", - "nx/core/package-json" - ], - "targets.build.options": [ - "boilerplates/authjs/package.json", - "nx/core/package-json" - ], - "targets.build.metadata": [ - "boilerplates/authjs/package.json", - "nx/core/package-json" - ], - "targets.build.options.script": [ - "boilerplates/authjs/package.json", - "nx/core/package-json" - ], - "targets.build.metadata.scriptContent": [ - "boilerplates/authjs/package.json", - "nx/core/package-json" - ], - "targets.build.metadata.runCommand": [ - "boilerplates/authjs/package.json", - "nx/core/package-json" - ], - "targets.check-types.cache": [ - "nx.json", - "nx/target-defaults" - ], - "targets.check-types.parallelism": [ - "nx.json", - "nx/target-defaults" - ], - "targets.build.cache": [ - "nx.json", - "nx/target-defaults" - ], - "targets.build.dependsOn": [ - "nx.json", - "nx/target-defaults" - ], - "targets.build.inputs": [ - "nx.json", - "nx/target-defaults" - ], - "targets.build.outputs": [ - "nx.json", - "nx/target-defaults" - ], - "targets.build.parallelism": [ - "nx.json", - "nx/target-defaults" - ] - }, - "boilerplates/aws": { - "root": [ - "boilerplates/aws/package.json", - "nx/core/package-json" - ], - "name": [ - "boilerplates/aws/package.json", - "nx/core/package-json" - ], - "tags": [ - "boilerplates/aws/package.json", - "nx/core/package-json" - ], - "tags.npm:private": [ - "boilerplates/aws/package.json", - "nx/core/package-json" - ], - "tags.type:boilerplate": [ - "boilerplates/aws/package.json", - "nx/core/package-json" - ], - "metadata.targetGroups": [ - "boilerplates/aws/package.json", - "nx/core/package-json" - ], - "metadata.targetGroups.NPM Scripts": [ - "boilerplates/aws/package.json", - "nx/core/package-json" - ], - "metadata.targetGroups.NPM Scripts.0": [ - "boilerplates/aws/package.json", - "nx/core/package-json" - ], - "metadata.targetGroups.NPM Scripts.1": [ - "boilerplates/aws/package.json", - "nx/core/package-json" - ], - "metadata.description": [ - "boilerplates/aws/package.json", - "nx/core/package-json" - ], - "metadata.js": [ - "boilerplates/aws/package.json", - "nx/core/package-json" - ], - "metadata.js.packageName": [ - "boilerplates/aws/package.json", - "nx/core/package-json" - ], - "metadata.js.packageVersion": [ - "boilerplates/aws/package.json", - "nx/core/package-json" - ], - "metadata.js.packageExports": [ - "boilerplates/aws/package.json", - "nx/core/package-json" - ], - "metadata.js.isInPackageManagerWorkspaces": [ - "boilerplates/aws/package.json", - "nx/core/package-json" - ], - "targets": [ - "boilerplates/aws/package.json", - "nx/core/package-json" - ], - "targets.check-types": [ - "boilerplates/aws/package.json", - "nx/core/package-json" - ], - "targets.check-types.executor": [ - "boilerplates/aws/package.json", - "nx/core/package-json" - ], - "targets.check-types.options": [ - "boilerplates/aws/package.json", - "nx/core/package-json" - ], - "targets.check-types.metadata": [ - "boilerplates/aws/package.json", - "nx/core/package-json" - ], - "targets.check-types.options.script": [ - "boilerplates/aws/package.json", - "nx/core/package-json" - ], - "targets.check-types.metadata.scriptContent": [ - "boilerplates/aws/package.json", - "nx/core/package-json" - ], - "targets.check-types.metadata.runCommand": [ - "boilerplates/aws/package.json", - "nx/core/package-json" - ], - "targets.build": [ - "boilerplates/aws/package.json", - "nx/core/package-json" - ], - "targets.build.executor": [ - "boilerplates/aws/package.json", - "nx/core/package-json" - ], - "targets.build.options": [ - "boilerplates/aws/package.json", - "nx/core/package-json" - ], - "targets.build.metadata": [ - "boilerplates/aws/package.json", - "nx/core/package-json" - ], - "targets.build.options.script": [ - "boilerplates/aws/package.json", - "nx/core/package-json" - ], - "targets.build.metadata.scriptContent": [ - "boilerplates/aws/package.json", - "nx/core/package-json" - ], - "targets.build.metadata.runCommand": [ - "boilerplates/aws/package.json", - "nx/core/package-json" - ], - "targets.check-types.cache": [ - "nx.json", - "nx/target-defaults" - ], - "targets.check-types.parallelism": [ - "nx.json", - "nx/target-defaults" - ], - "targets.build.cache": [ - "nx.json", - "nx/target-defaults" - ], - "targets.build.dependsOn": [ - "nx.json", - "nx/target-defaults" - ], - "targets.build.inputs": [ - "nx.json", - "nx/target-defaults" - ], - "targets.build.outputs": [ - "nx.json", - "nx/target-defaults" - ], - "targets.build.parallelism": [ - "nx.json", - "nx/target-defaults" - ] - }, - "boilerplates/biome": { - "root": [ - "boilerplates/biome/package.json", - "nx/core/package-json" - ], - "name": [ - "boilerplates/biome/package.json", - "nx/core/package-json" - ], - "tags": [ - "boilerplates/biome/package.json", - "nx/core/package-json" - ], - "tags.npm:private": [ - "boilerplates/biome/package.json", - "nx/core/package-json" - ], - "tags.type:boilerplate": [ - "boilerplates/biome/package.json", - "nx/core/package-json" - ], - "metadata.targetGroups": [ - "boilerplates/biome/package.json", - "nx/core/package-json" - ], - "metadata.targetGroups.NPM Scripts": [ - "boilerplates/biome/package.json", - "nx/core/package-json" - ], - "metadata.targetGroups.NPM Scripts.0": [ - "boilerplates/biome/package.json", - "nx/core/package-json" - ], - "metadata.targetGroups.NPM Scripts.1": [ - "boilerplates/biome/package.json", - "nx/core/package-json" - ], - "metadata.description": [ - "boilerplates/biome/package.json", - "nx/core/package-json" - ], - "metadata.js": [ - "boilerplates/biome/package.json", - "nx/core/package-json" - ], - "metadata.js.packageName": [ - "boilerplates/biome/package.json", - "nx/core/package-json" - ], - "metadata.js.packageVersion": [ - "boilerplates/biome/package.json", - "nx/core/package-json" - ], - "metadata.js.isInPackageManagerWorkspaces": [ - "boilerplates/biome/package.json", - "nx/core/package-json" - ], - "targets": [ - "boilerplates/biome/package.json", - "nx/core/package-json" - ], - "targets.check-types": [ - "boilerplates/biome/package.json", - "nx/core/package-json" - ], - "targets.check-types.executor": [ - "boilerplates/biome/package.json", - "nx/core/package-json" - ], - "targets.check-types.options": [ - "boilerplates/biome/package.json", - "nx/core/package-json" - ], - "targets.check-types.metadata": [ - "boilerplates/biome/package.json", - "nx/core/package-json" - ], - "targets.check-types.options.script": [ - "boilerplates/biome/package.json", - "nx/core/package-json" - ], - "targets.check-types.metadata.scriptContent": [ - "boilerplates/biome/package.json", - "nx/core/package-json" - ], - "targets.check-types.metadata.runCommand": [ - "boilerplates/biome/package.json", - "nx/core/package-json" - ], - "targets.build": [ - "boilerplates/biome/package.json", - "nx/core/package-json" - ], - "targets.build.executor": [ - "boilerplates/biome/package.json", - "nx/core/package-json" - ], - "targets.build.options": [ - "boilerplates/biome/package.json", - "nx/core/package-json" - ], - "targets.build.metadata": [ - "boilerplates/biome/package.json", - "nx/core/package-json" - ], - "targets.build.options.script": [ - "boilerplates/biome/package.json", - "nx/core/package-json" - ], - "targets.build.metadata.scriptContent": [ - "boilerplates/biome/package.json", - "nx/core/package-json" - ], - "targets.build.metadata.runCommand": [ - "boilerplates/biome/package.json", - "nx/core/package-json" - ], - "targets.check-types.cache": [ - "nx.json", - "nx/target-defaults" - ], - "targets.check-types.parallelism": [ - "nx.json", - "nx/target-defaults" - ], - "targets.build.cache": [ - "nx.json", - "nx/target-defaults" - ], - "targets.build.dependsOn": [ - "nx.json", - "nx/target-defaults" - ], - "targets.build.inputs": [ - "nx.json", - "nx/target-defaults" - ], - "targets.build.outputs": [ - "nx.json", - "nx/target-defaults" - ], - "targets.build.parallelism": [ - "nx.json", - "nx/target-defaults" - ] - }, - "boilerplates/cloudflare": { - "root": [ - "boilerplates/cloudflare/package.json", - "nx/core/package-json" - ], - "name": [ - "boilerplates/cloudflare/package.json", - "nx/core/package-json" - ], - "tags": [ - "boilerplates/cloudflare/package.json", - "nx/core/package-json" - ], - "tags.npm:private": [ - "boilerplates/cloudflare/package.json", - "nx/core/package-json" - ], - "tags.type:boilerplate": [ - "boilerplates/cloudflare/package.json", - "nx/core/package-json" - ], - "metadata.targetGroups": [ - "boilerplates/cloudflare/package.json", - "nx/core/package-json" - ], - "metadata.targetGroups.NPM Scripts": [ - "boilerplates/cloudflare/package.json", - "nx/core/package-json" - ], - "metadata.targetGroups.NPM Scripts.0": [ - "boilerplates/cloudflare/package.json", - "nx/core/package-json" - ], - "metadata.targetGroups.NPM Scripts.1": [ - "boilerplates/cloudflare/package.json", - "nx/core/package-json" - ], - "metadata.description": [ - "boilerplates/cloudflare/package.json", - "nx/core/package-json" - ], - "metadata.js": [ - "boilerplates/cloudflare/package.json", - "nx/core/package-json" - ], - "metadata.js.packageName": [ - "boilerplates/cloudflare/package.json", - "nx/core/package-json" - ], - "metadata.js.packageVersion": [ - "boilerplates/cloudflare/package.json", - "nx/core/package-json" - ], - "metadata.js.isInPackageManagerWorkspaces": [ - "boilerplates/cloudflare/package.json", - "nx/core/package-json" - ], - "targets": [ - "boilerplates/cloudflare/package.json", - "nx/core/package-json" - ], - "targets.check-types": [ - "boilerplates/cloudflare/package.json", - "nx/core/package-json" - ], - "targets.check-types.executor": [ - "boilerplates/cloudflare/package.json", - "nx/core/package-json" - ], - "targets.check-types.options": [ - "boilerplates/cloudflare/package.json", - "nx/core/package-json" - ], - "targets.check-types.metadata": [ - "boilerplates/cloudflare/package.json", - "nx/core/package-json" - ], - "targets.check-types.options.script": [ - "boilerplates/cloudflare/package.json", - "nx/core/package-json" - ], - "targets.check-types.metadata.scriptContent": [ - "boilerplates/cloudflare/package.json", - "nx/core/package-json" - ], - "targets.check-types.metadata.runCommand": [ - "boilerplates/cloudflare/package.json", - "nx/core/package-json" - ], - "targets.build": [ - "boilerplates/cloudflare/package.json", - "nx/core/package-json" - ], - "targets.build.executor": [ - "boilerplates/cloudflare/package.json", - "nx/core/package-json" - ], - "targets.build.options": [ - "boilerplates/cloudflare/package.json", - "nx/core/package-json" - ], - "targets.build.metadata": [ - "boilerplates/cloudflare/package.json", - "nx/core/package-json" - ], - "targets.build.options.script": [ - "boilerplates/cloudflare/package.json", - "nx/core/package-json" - ], - "targets.build.metadata.scriptContent": [ - "boilerplates/cloudflare/package.json", - "nx/core/package-json" - ], - "targets.build.metadata.runCommand": [ - "boilerplates/cloudflare/package.json", - "nx/core/package-json" - ], - "targets.check-types.cache": [ - "nx.json", - "nx/target-defaults" - ], - "targets.check-types.parallelism": [ - "nx.json", - "nx/target-defaults" - ], - "targets.build.cache": [ - "nx.json", - "nx/target-defaults" - ], - "targets.build.dependsOn": [ - "nx.json", - "nx/target-defaults" - ], - "targets.build.inputs": [ - "nx.json", - "nx/target-defaults" - ], - "targets.build.outputs": [ - "nx.json", - "nx/target-defaults" - ], - "targets.build.parallelism": [ - "nx.json", - "nx/target-defaults" - ] - }, - "boilerplates/compiled": { - "root": [ - "boilerplates/compiled/package.json", - "nx/core/package-json" - ], - "name": [ - "boilerplates/compiled/package.json", - "nx/core/package-json" - ], - "tags": [ - "boilerplates/compiled/package.json", - "nx/core/package-json" - ], - "tags.npm:private": [ - "boilerplates/compiled/package.json", - "nx/core/package-json" - ], - "tags.type:boilerplate": [ - "boilerplates/compiled/package.json", - "nx/core/package-json" - ], - "metadata.targetGroups": [ - "boilerplates/compiled/package.json", - "nx/core/package-json" - ], - "metadata.targetGroups.NPM Scripts": [ - "boilerplates/compiled/package.json", - "nx/core/package-json" - ], - "metadata.targetGroups.NPM Scripts.0": [ - "boilerplates/compiled/package.json", - "nx/core/package-json" - ], - "metadata.targetGroups.NPM Scripts.1": [ - "boilerplates/compiled/package.json", - "nx/core/package-json" - ], - "metadata.description": [ - "boilerplates/compiled/package.json", - "nx/core/package-json" - ], - "metadata.js": [ - "boilerplates/compiled/package.json", - "nx/core/package-json" - ], - "metadata.js.packageName": [ - "boilerplates/compiled/package.json", - "nx/core/package-json" - ], - "metadata.js.packageVersion": [ - "boilerplates/compiled/package.json", - "nx/core/package-json" - ], - "metadata.js.isInPackageManagerWorkspaces": [ - "boilerplates/compiled/package.json", - "nx/core/package-json" - ], - "targets": [ - "boilerplates/compiled/package.json", - "nx/core/package-json" - ], - "targets.check-types": [ - "boilerplates/compiled/package.json", - "nx/core/package-json" - ], - "targets.check-types.executor": [ - "boilerplates/compiled/package.json", - "nx/core/package-json" - ], - "targets.check-types.options": [ - "boilerplates/compiled/package.json", - "nx/core/package-json" - ], - "targets.check-types.metadata": [ - "boilerplates/compiled/package.json", - "nx/core/package-json" - ], - "targets.check-types.options.script": [ - "boilerplates/compiled/package.json", - "nx/core/package-json" - ], - "targets.check-types.metadata.scriptContent": [ - "boilerplates/compiled/package.json", - "nx/core/package-json" - ], - "targets.check-types.metadata.runCommand": [ - "boilerplates/compiled/package.json", - "nx/core/package-json" - ], - "targets.build": [ - "boilerplates/compiled/package.json", - "nx/core/package-json" - ], - "targets.build.executor": [ - "boilerplates/compiled/package.json", - "nx/core/package-json" - ], - "targets.build.options": [ - "boilerplates/compiled/package.json", - "nx/core/package-json" - ], - "targets.build.metadata": [ - "boilerplates/compiled/package.json", - "nx/core/package-json" - ], - "targets.build.options.script": [ - "boilerplates/compiled/package.json", - "nx/core/package-json" - ], - "targets.build.metadata.scriptContent": [ - "boilerplates/compiled/package.json", - "nx/core/package-json" - ], - "targets.build.metadata.runCommand": [ - "boilerplates/compiled/package.json", - "nx/core/package-json" - ], - "targets.check-types.cache": [ - "nx.json", - "nx/target-defaults" - ], - "targets.check-types.parallelism": [ - "nx.json", - "nx/target-defaults" - ], - "targets.build.cache": [ - "nx.json", - "nx/target-defaults" - ], - "targets.build.dependsOn": [ - "nx.json", - "nx/target-defaults" - ], - "targets.build.inputs": [ - "nx.json", - "nx/target-defaults" - ], - "targets.build.outputs": [ - "nx.json", - "nx/target-defaults" - ], - "targets.build.parallelism": [ - "nx.json", - "nx/target-defaults" - ] - }, - "boilerplates/d1": { - "root": [ - "boilerplates/d1/package.json", - "nx/core/package-json" - ], - "name": [ - "boilerplates/d1/package.json", - "nx/core/package-json" - ], - "tags": [ - "boilerplates/d1/package.json", - "nx/core/package-json" - ], - "tags.npm:private": [ - "boilerplates/d1/package.json", - "nx/core/package-json" - ], - "tags.type:boilerplate": [ - "boilerplates/d1/package.json", - "nx/core/package-json" - ], - "metadata.targetGroups": [ - "boilerplates/d1/package.json", - "nx/core/package-json" - ], - "metadata.targetGroups.NPM Scripts": [ - "boilerplates/d1/package.json", - "nx/core/package-json" - ], - "metadata.targetGroups.NPM Scripts.0": [ - "boilerplates/d1/package.json", - "nx/core/package-json" - ], - "metadata.targetGroups.NPM Scripts.1": [ - "boilerplates/d1/package.json", - "nx/core/package-json" - ], - "metadata.description": [ - "boilerplates/d1/package.json", - "nx/core/package-json" - ], - "metadata.js": [ - "boilerplates/d1/package.json", - "nx/core/package-json" - ], - "metadata.js.packageName": [ - "boilerplates/d1/package.json", - "nx/core/package-json" - ], - "metadata.js.packageVersion": [ - "boilerplates/d1/package.json", - "nx/core/package-json" - ], - "metadata.js.packageExports": [ - "boilerplates/d1/package.json", - "nx/core/package-json" - ], - "metadata.js.isInPackageManagerWorkspaces": [ - "boilerplates/d1/package.json", - "nx/core/package-json" - ], - "targets": [ - "boilerplates/d1/package.json", - "nx/core/package-json" - ], - "targets.check-types": [ - "boilerplates/d1/package.json", - "nx/core/package-json" - ], - "targets.check-types.executor": [ - "boilerplates/d1/package.json", - "nx/core/package-json" - ], - "targets.check-types.options": [ - "boilerplates/d1/package.json", - "nx/core/package-json" - ], - "targets.check-types.metadata": [ - "boilerplates/d1/package.json", - "nx/core/package-json" - ], - "targets.check-types.options.script": [ - "boilerplates/d1/package.json", - "nx/core/package-json" - ], - "targets.check-types.metadata.scriptContent": [ - "boilerplates/d1/package.json", - "nx/core/package-json" - ], - "targets.check-types.metadata.runCommand": [ - "boilerplates/d1/package.json", - "nx/core/package-json" - ], - "targets.build": [ - "boilerplates/d1/package.json", - "nx/core/package-json" - ], - "targets.build.executor": [ - "boilerplates/d1/package.json", - "nx/core/package-json" - ], - "targets.build.options": [ - "boilerplates/d1/package.json", - "nx/core/package-json" - ], - "targets.build.metadata": [ - "boilerplates/d1/package.json", - "nx/core/package-json" - ], - "targets.build.options.script": [ - "boilerplates/d1/package.json", - "nx/core/package-json" - ], - "targets.build.metadata.scriptContent": [ - "boilerplates/d1/package.json", - "nx/core/package-json" - ], - "targets.build.metadata.runCommand": [ - "boilerplates/d1/package.json", - "nx/core/package-json" - ], - "targets.check-types.cache": [ - "nx.json", - "nx/target-defaults" - ], - "targets.check-types.parallelism": [ - "nx.json", - "nx/target-defaults" - ], - "targets.build.cache": [ - "nx.json", - "nx/target-defaults" - ], - "targets.build.dependsOn": [ - "nx.json", - "nx/target-defaults" - ], - "targets.build.inputs": [ - "nx.json", - "nx/target-defaults" - ], - "targets.build.outputs": [ - "nx.json", - "nx/target-defaults" - ], - "targets.build.parallelism": [ - "nx.json", - "nx/target-defaults" - ] - }, - "boilerplates/d1-kysely": { - "root": [ - "boilerplates/d1-kysely/package.json", - "nx/core/package-json" - ], - "name": [ - "boilerplates/d1-kysely/package.json", - "nx/core/package-json" - ], - "tags": [ - "boilerplates/d1-kysely/package.json", - "nx/core/package-json" - ], - "tags.npm:private": [ - "boilerplates/d1-kysely/package.json", - "nx/core/package-json" - ], - "tags.type:boilerplate": [ - "boilerplates/d1-kysely/package.json", - "nx/core/package-json" - ], - "metadata.targetGroups": [ - "boilerplates/d1-kysely/package.json", - "nx/core/package-json" - ], - "metadata.targetGroups.NPM Scripts": [ - "boilerplates/d1-kysely/package.json", - "nx/core/package-json" - ], - "metadata.targetGroups.NPM Scripts.0": [ - "boilerplates/d1-kysely/package.json", - "nx/core/package-json" - ], - "metadata.targetGroups.NPM Scripts.1": [ - "boilerplates/d1-kysely/package.json", - "nx/core/package-json" - ], - "metadata.description": [ - "boilerplates/d1-kysely/package.json", - "nx/core/package-json" - ], - "metadata.js": [ - "boilerplates/d1-kysely/package.json", - "nx/core/package-json" - ], - "metadata.js.packageName": [ - "boilerplates/d1-kysely/package.json", - "nx/core/package-json" - ], - "metadata.js.packageVersion": [ - "boilerplates/d1-kysely/package.json", - "nx/core/package-json" - ], - "metadata.js.isInPackageManagerWorkspaces": [ - "boilerplates/d1-kysely/package.json", - "nx/core/package-json" - ], - "targets": [ - "boilerplates/d1-kysely/package.json", - "nx/core/package-json" - ], - "targets.check-types": [ - "boilerplates/d1-kysely/package.json", - "nx/core/package-json" - ], - "targets.check-types.executor": [ - "boilerplates/d1-kysely/package.json", - "nx/core/package-json" - ], - "targets.check-types.options": [ - "boilerplates/d1-kysely/package.json", - "nx/core/package-json" - ], - "targets.check-types.metadata": [ - "boilerplates/d1-kysely/package.json", - "nx/core/package-json" - ], - "targets.check-types.options.script": [ - "boilerplates/d1-kysely/package.json", - "nx/core/package-json" - ], - "targets.check-types.metadata.scriptContent": [ - "boilerplates/d1-kysely/package.json", - "nx/core/package-json" - ], - "targets.check-types.metadata.runCommand": [ - "boilerplates/d1-kysely/package.json", - "nx/core/package-json" - ], - "targets.build": [ - "boilerplates/d1-kysely/package.json", - "nx/core/package-json" - ], - "targets.build.executor": [ - "boilerplates/d1-kysely/package.json", - "nx/core/package-json" - ], - "targets.build.options": [ - "boilerplates/d1-kysely/package.json", - "nx/core/package-json" - ], - "targets.build.metadata": [ - "boilerplates/d1-kysely/package.json", - "nx/core/package-json" - ], - "targets.build.options.script": [ - "boilerplates/d1-kysely/package.json", - "nx/core/package-json" - ], - "targets.build.metadata.scriptContent": [ - "boilerplates/d1-kysely/package.json", - "nx/core/package-json" - ], - "targets.build.metadata.runCommand": [ - "boilerplates/d1-kysely/package.json", - "nx/core/package-json" - ], - "targets.check-types.cache": [ - "nx.json", - "nx/target-defaults" - ], - "targets.check-types.parallelism": [ - "nx.json", - "nx/target-defaults" - ], - "targets.build.cache": [ - "nx.json", - "nx/target-defaults" - ], - "targets.build.dependsOn": [ - "nx.json", - "nx/target-defaults" - ], - "targets.build.inputs": [ - "nx.json", - "nx/target-defaults" - ], - "targets.build.outputs": [ - "nx.json", - "nx/target-defaults" - ], - "targets.build.parallelism": [ - "nx.json", - "nx/target-defaults" - ] - }, - "boilerplates/d1-sqlite": { - "root": [ - "boilerplates/d1-sqlite/package.json", - "nx/core/package-json" - ], - "name": [ - "boilerplates/d1-sqlite/package.json", - "nx/core/package-json" - ], - "tags": [ - "boilerplates/d1-sqlite/package.json", - "nx/core/package-json" - ], - "tags.npm:private": [ - "boilerplates/d1-sqlite/package.json", - "nx/core/package-json" - ], - "tags.type:boilerplate": [ - "boilerplates/d1-sqlite/package.json", - "nx/core/package-json" - ], - "metadata.targetGroups": [ - "boilerplates/d1-sqlite/package.json", - "nx/core/package-json" - ], - "metadata.targetGroups.NPM Scripts": [ - "boilerplates/d1-sqlite/package.json", - "nx/core/package-json" - ], - "metadata.targetGroups.NPM Scripts.0": [ - "boilerplates/d1-sqlite/package.json", - "nx/core/package-json" - ], - "metadata.targetGroups.NPM Scripts.1": [ - "boilerplates/d1-sqlite/package.json", - "nx/core/package-json" - ], - "metadata.description": [ - "boilerplates/d1-sqlite/package.json", - "nx/core/package-json" - ], - "metadata.js": [ - "boilerplates/d1-sqlite/package.json", - "nx/core/package-json" - ], - "metadata.js.packageName": [ - "boilerplates/d1-sqlite/package.json", - "nx/core/package-json" - ], - "metadata.js.packageVersion": [ - "boilerplates/d1-sqlite/package.json", - "nx/core/package-json" - ], - "metadata.js.packageExports": [ - "boilerplates/d1-sqlite/package.json", - "nx/core/package-json" - ], - "metadata.js.isInPackageManagerWorkspaces": [ - "boilerplates/d1-sqlite/package.json", - "nx/core/package-json" - ], - "targets": [ - "boilerplates/d1-sqlite/package.json", - "nx/core/package-json" - ], - "targets.check-types": [ - "boilerplates/d1-sqlite/package.json", - "nx/core/package-json" - ], - "targets.check-types.executor": [ - "boilerplates/d1-sqlite/package.json", - "nx/core/package-json" - ], - "targets.check-types.options": [ - "boilerplates/d1-sqlite/package.json", - "nx/core/package-json" - ], - "targets.check-types.metadata": [ - "boilerplates/d1-sqlite/package.json", - "nx/core/package-json" - ], - "targets.check-types.options.script": [ - "boilerplates/d1-sqlite/package.json", - "nx/core/package-json" - ], - "targets.check-types.metadata.scriptContent": [ - "boilerplates/d1-sqlite/package.json", - "nx/core/package-json" - ], - "targets.check-types.metadata.runCommand": [ - "boilerplates/d1-sqlite/package.json", - "nx/core/package-json" - ], - "targets.build": [ - "boilerplates/d1-sqlite/package.json", - "nx/core/package-json" - ], - "targets.build.executor": [ - "boilerplates/d1-sqlite/package.json", - "nx/core/package-json" - ], - "targets.build.options": [ - "boilerplates/d1-sqlite/package.json", - "nx/core/package-json" - ], - "targets.build.metadata": [ - "boilerplates/d1-sqlite/package.json", - "nx/core/package-json" - ], - "targets.build.options.script": [ - "boilerplates/d1-sqlite/package.json", - "nx/core/package-json" - ], - "targets.build.metadata.scriptContent": [ - "boilerplates/d1-sqlite/package.json", - "nx/core/package-json" - ], - "targets.build.metadata.runCommand": [ - "boilerplates/d1-sqlite/package.json", - "nx/core/package-json" - ], - "targets.check-types.cache": [ - "nx.json", - "nx/target-defaults" - ], - "targets.check-types.parallelism": [ - "nx.json", - "nx/target-defaults" - ], - "targets.build.cache": [ - "nx.json", - "nx/target-defaults" - ], - "targets.build.dependsOn": [ - "nx.json", - "nx/target-defaults" - ], - "targets.build.inputs": [ - "nx.json", - "nx/target-defaults" - ], - "targets.build.outputs": [ - "nx.json", - "nx/target-defaults" - ], - "targets.build.parallelism": [ - "nx.json", - "nx/target-defaults" - ] - }, - "boilerplates/drizzle": { - "root": [ - "boilerplates/drizzle/package.json", - "nx/core/package-json" - ], - "name": [ - "boilerplates/drizzle/package.json", - "nx/core/package-json" - ], - "tags": [ - "boilerplates/drizzle/package.json", - "nx/core/package-json" - ], - "tags.npm:private": [ - "boilerplates/drizzle/package.json", - "nx/core/package-json" - ], - "tags.type:boilerplate": [ - "boilerplates/drizzle/package.json", - "nx/core/package-json" - ], - "metadata.targetGroups": [ - "boilerplates/drizzle/package.json", - "nx/core/package-json" - ], - "metadata.targetGroups.NPM Scripts": [ - "boilerplates/drizzle/package.json", - "nx/core/package-json" - ], - "metadata.targetGroups.NPM Scripts.0": [ - "boilerplates/drizzle/package.json", - "nx/core/package-json" - ], - "metadata.targetGroups.NPM Scripts.1": [ - "boilerplates/drizzle/package.json", - "nx/core/package-json" - ], - "metadata.description": [ - "boilerplates/drizzle/package.json", - "nx/core/package-json" - ], - "metadata.js": [ - "boilerplates/drizzle/package.json", - "nx/core/package-json" - ], - "metadata.js.packageName": [ - "boilerplates/drizzle/package.json", - "nx/core/package-json" - ], - "metadata.js.packageVersion": [ - "boilerplates/drizzle/package.json", - "nx/core/package-json" - ], - "metadata.js.packageExports": [ - "boilerplates/drizzle/package.json", - "nx/core/package-json" - ], - "metadata.js.isInPackageManagerWorkspaces": [ - "boilerplates/drizzle/package.json", - "nx/core/package-json" - ], - "targets": [ - "boilerplates/drizzle/package.json", - "nx/core/package-json" - ], - "targets.check-types": [ - "boilerplates/drizzle/package.json", - "nx/core/package-json" - ], - "targets.check-types.executor": [ - "boilerplates/drizzle/package.json", - "nx/core/package-json" - ], - "targets.check-types.options": [ - "boilerplates/drizzle/package.json", - "nx/core/package-json" - ], - "targets.check-types.metadata": [ - "boilerplates/drizzle/package.json", - "nx/core/package-json" - ], - "targets.check-types.options.script": [ - "boilerplates/drizzle/package.json", - "nx/core/package-json" - ], - "targets.check-types.metadata.scriptContent": [ - "boilerplates/drizzle/package.json", - "nx/core/package-json" - ], - "targets.check-types.metadata.runCommand": [ - "boilerplates/drizzle/package.json", - "nx/core/package-json" - ], - "targets.build": [ - "boilerplates/drizzle/package.json", - "nx/core/package-json" - ], - "targets.build.executor": [ - "boilerplates/drizzle/package.json", - "nx/core/package-json" - ], - "targets.build.options": [ - "boilerplates/drizzle/package.json", - "nx/core/package-json" - ], - "targets.build.metadata": [ - "boilerplates/drizzle/package.json", - "nx/core/package-json" - ], - "targets.build.options.script": [ - "boilerplates/drizzle/package.json", - "nx/core/package-json" - ], - "targets.build.metadata.scriptContent": [ - "boilerplates/drizzle/package.json", - "nx/core/package-json" - ], - "targets.build.metadata.runCommand": [ - "boilerplates/drizzle/package.json", - "nx/core/package-json" - ], - "targets.check-types.cache": [ - "nx.json", - "nx/target-defaults" - ], - "targets.check-types.parallelism": [ - "nx.json", - "nx/target-defaults" - ], - "targets.build.cache": [ - "nx.json", - "nx/target-defaults" - ], - "targets.build.dependsOn": [ - "nx.json", - "nx/target-defaults" - ], - "targets.build.inputs": [ - "nx.json", - "nx/target-defaults" - ], - "targets.build.outputs": [ - "nx.json", - "nx/target-defaults" - ], - "targets.build.parallelism": [ - "nx.json", - "nx/target-defaults" - ] - }, - "boilerplates/eslint": { - "root": [ - "boilerplates/eslint/package.json", - "nx/core/package-json" - ], - "name": [ - "boilerplates/eslint/package.json", - "nx/core/package-json" - ], - "tags": [ - "boilerplates/eslint/package.json", - "nx/core/package-json" - ], - "tags.npm:private": [ - "boilerplates/eslint/package.json", - "nx/core/package-json" - ], - "tags.type:boilerplate": [ - "boilerplates/eslint/package.json", - "nx/core/package-json" - ], - "metadata.targetGroups": [ - "boilerplates/eslint/package.json", - "nx/core/package-json" - ], - "metadata.targetGroups.NPM Scripts": [ - "boilerplates/eslint/package.json", - "nx/core/package-json" - ], - "metadata.targetGroups.NPM Scripts.0": [ - "boilerplates/eslint/package.json", - "nx/core/package-json" - ], - "metadata.targetGroups.NPM Scripts.1": [ - "boilerplates/eslint/package.json", - "nx/core/package-json" - ], - "metadata.description": [ - "boilerplates/eslint/package.json", - "nx/core/package-json" - ], - "metadata.js": [ - "boilerplates/eslint/package.json", - "nx/core/package-json" - ], - "metadata.js.packageName": [ - "boilerplates/eslint/package.json", - "nx/core/package-json" - ], - "metadata.js.packageVersion": [ - "boilerplates/eslint/package.json", - "nx/core/package-json" - ], - "metadata.js.packageExports": [ - "boilerplates/eslint/package.json", - "nx/core/package-json" - ], - "metadata.js.isInPackageManagerWorkspaces": [ - "boilerplates/eslint/package.json", - "nx/core/package-json" - ], - "targets": [ - "boilerplates/eslint/package.json", - "nx/core/package-json" - ], - "targets.check-types": [ - "boilerplates/eslint/package.json", - "nx/core/package-json" - ], - "targets.check-types.executor": [ - "boilerplates/eslint/package.json", - "nx/core/package-json" - ], - "targets.check-types.options": [ - "boilerplates/eslint/package.json", - "nx/core/package-json" - ], - "targets.check-types.metadata": [ - "boilerplates/eslint/package.json", - "nx/core/package-json" - ], - "targets.check-types.options.script": [ - "boilerplates/eslint/package.json", - "nx/core/package-json" - ], - "targets.check-types.metadata.scriptContent": [ - "boilerplates/eslint/package.json", - "nx/core/package-json" - ], - "targets.check-types.metadata.runCommand": [ - "boilerplates/eslint/package.json", - "nx/core/package-json" - ], - "targets.build": [ - "boilerplates/eslint/package.json", - "nx/core/package-json" - ], - "targets.build.executor": [ - "boilerplates/eslint/package.json", - "nx/core/package-json" - ], - "targets.build.options": [ - "boilerplates/eslint/package.json", - "nx/core/package-json" - ], - "targets.build.metadata": [ - "boilerplates/eslint/package.json", - "nx/core/package-json" - ], - "targets.build.options.script": [ - "boilerplates/eslint/package.json", - "nx/core/package-json" - ], - "targets.build.metadata.scriptContent": [ - "boilerplates/eslint/package.json", - "nx/core/package-json" - ], - "targets.build.metadata.runCommand": [ - "boilerplates/eslint/package.json", - "nx/core/package-json" - ], - "targets.check-types.cache": [ - "nx.json", - "nx/target-defaults" - ], - "targets.check-types.parallelism": [ - "nx.json", - "nx/target-defaults" - ], - "targets.build.cache": [ - "nx.json", - "nx/target-defaults" - ], - "targets.build.dependsOn": [ - "nx.json", - "nx/target-defaults" - ], - "targets.build.inputs": [ - "nx.json", - "nx/target-defaults" - ], - "targets.build.outputs": [ - "nx.json", - "nx/target-defaults" - ], - "targets.build.parallelism": [ - "nx.json", - "nx/target-defaults" - ] - }, - "boilerplates/express": { - "root": [ - "boilerplates/express/package.json", - "nx/core/package-json" - ], - "name": [ - "boilerplates/express/package.json", - "nx/core/package-json" - ], - "tags": [ - "boilerplates/express/package.json", - "nx/core/package-json" - ], - "tags.npm:private": [ - "boilerplates/express/package.json", - "nx/core/package-json" - ], - "tags.type:boilerplate": [ - "boilerplates/express/package.json", - "nx/core/package-json" - ], - "metadata.targetGroups": [ - "boilerplates/express/package.json", - "nx/core/package-json" - ], - "metadata.targetGroups.NPM Scripts": [ - "boilerplates/express/package.json", - "nx/core/package-json" - ], - "metadata.targetGroups.NPM Scripts.0": [ - "boilerplates/express/package.json", - "nx/core/package-json" - ], - "metadata.targetGroups.NPM Scripts.1": [ - "boilerplates/express/package.json", - "nx/core/package-json" - ], - "metadata.description": [ - "boilerplates/express/package.json", - "nx/core/package-json" - ], - "metadata.js": [ - "boilerplates/express/package.json", - "nx/core/package-json" - ], - "metadata.js.packageName": [ - "boilerplates/express/package.json", - "nx/core/package-json" - ], - "metadata.js.packageVersion": [ - "boilerplates/express/package.json", - "nx/core/package-json" - ], - "metadata.js.packageExports": [ - "boilerplates/express/package.json", - "nx/core/package-json" - ], - "metadata.js.isInPackageManagerWorkspaces": [ - "boilerplates/express/package.json", - "nx/core/package-json" - ], - "targets": [ - "boilerplates/express/package.json", - "nx/core/package-json" - ], - "targets.check-types": [ - "boilerplates/express/package.json", - "nx/core/package-json" - ], - "targets.check-types.executor": [ - "boilerplates/express/package.json", - "nx/core/package-json" - ], - "targets.check-types.options": [ - "boilerplates/express/package.json", - "nx/core/package-json" - ], - "targets.check-types.metadata": [ - "boilerplates/express/package.json", - "nx/core/package-json" - ], - "targets.check-types.options.script": [ - "boilerplates/express/package.json", - "nx/core/package-json" - ], - "targets.check-types.metadata.scriptContent": [ - "boilerplates/express/package.json", - "nx/core/package-json" - ], - "targets.check-types.metadata.runCommand": [ - "boilerplates/express/package.json", - "nx/core/package-json" - ], - "targets.build": [ - "boilerplates/express/package.json", - "nx/core/package-json" - ], - "targets.build.executor": [ - "boilerplates/express/package.json", - "nx/core/package-json" - ], - "targets.build.options": [ - "boilerplates/express/package.json", - "nx/core/package-json" - ], - "targets.build.metadata": [ - "boilerplates/express/package.json", - "nx/core/package-json" - ], - "targets.build.options.script": [ - "boilerplates/express/package.json", - "nx/core/package-json" - ], - "targets.build.metadata.scriptContent": [ - "boilerplates/express/package.json", - "nx/core/package-json" - ], - "targets.build.metadata.runCommand": [ - "boilerplates/express/package.json", - "nx/core/package-json" - ], - "targets.check-types.cache": [ - "nx.json", - "nx/target-defaults" - ], - "targets.check-types.parallelism": [ - "nx.json", - "nx/target-defaults" - ], - "targets.build.cache": [ - "nx.json", - "nx/target-defaults" - ], - "targets.build.dependsOn": [ - "nx.json", - "nx/target-defaults" - ], - "targets.build.inputs": [ - "nx.json", - "nx/target-defaults" - ], - "targets.build.outputs": [ - "nx.json", - "nx/target-defaults" - ], - "targets.build.parallelism": [ - "nx.json", - "nx/target-defaults" - ] - }, - "boilerplates/fastify": { - "root": [ - "boilerplates/fastify/package.json", - "nx/core/package-json" - ], - "name": [ - "boilerplates/fastify/package.json", - "nx/core/package-json" - ], - "tags": [ - "boilerplates/fastify/package.json", - "nx/core/package-json" - ], - "tags.npm:private": [ - "boilerplates/fastify/package.json", - "nx/core/package-json" - ], - "tags.type:boilerplate": [ - "boilerplates/fastify/package.json", - "nx/core/package-json" - ], - "metadata.targetGroups": [ - "boilerplates/fastify/package.json", - "nx/core/package-json" - ], - "metadata.targetGroups.NPM Scripts": [ - "boilerplates/fastify/package.json", - "nx/core/package-json" - ], - "metadata.targetGroups.NPM Scripts.0": [ - "boilerplates/fastify/package.json", - "nx/core/package-json" - ], - "metadata.targetGroups.NPM Scripts.1": [ - "boilerplates/fastify/package.json", - "nx/core/package-json" - ], - "metadata.description": [ - "boilerplates/fastify/package.json", - "nx/core/package-json" - ], - "metadata.js": [ - "boilerplates/fastify/package.json", - "nx/core/package-json" - ], - "metadata.js.packageName": [ - "boilerplates/fastify/package.json", - "nx/core/package-json" - ], - "metadata.js.packageVersion": [ - "boilerplates/fastify/package.json", - "nx/core/package-json" - ], - "metadata.js.packageExports": [ - "boilerplates/fastify/package.json", - "nx/core/package-json" - ], - "metadata.js.isInPackageManagerWorkspaces": [ - "boilerplates/fastify/package.json", - "nx/core/package-json" - ], - "targets": [ - "boilerplates/fastify/package.json", - "nx/core/package-json" - ], - "targets.check-types": [ - "boilerplates/fastify/package.json", - "nx/core/package-json" - ], - "targets.check-types.executor": [ - "boilerplates/fastify/package.json", - "nx/core/package-json" - ], - "targets.check-types.options": [ - "boilerplates/fastify/package.json", - "nx/core/package-json" - ], - "targets.check-types.metadata": [ - "boilerplates/fastify/package.json", - "nx/core/package-json" - ], - "targets.check-types.options.script": [ - "boilerplates/fastify/package.json", - "nx/core/package-json" - ], - "targets.check-types.metadata.scriptContent": [ - "boilerplates/fastify/package.json", - "nx/core/package-json" - ], - "targets.check-types.metadata.runCommand": [ - "boilerplates/fastify/package.json", - "nx/core/package-json" - ], - "targets.build": [ - "boilerplates/fastify/package.json", - "nx/core/package-json" - ], - "targets.build.executor": [ - "boilerplates/fastify/package.json", - "nx/core/package-json" - ], - "targets.build.options": [ - "boilerplates/fastify/package.json", - "nx/core/package-json" - ], - "targets.build.metadata": [ - "boilerplates/fastify/package.json", - "nx/core/package-json" - ], - "targets.build.options.script": [ - "boilerplates/fastify/package.json", - "nx/core/package-json" - ], - "targets.build.metadata.scriptContent": [ - "boilerplates/fastify/package.json", - "nx/core/package-json" - ], - "targets.build.metadata.runCommand": [ - "boilerplates/fastify/package.json", - "nx/core/package-json" - ], - "targets.check-types.cache": [ - "nx.json", - "nx/target-defaults" - ], - "targets.check-types.parallelism": [ - "nx.json", - "nx/target-defaults" - ], - "targets.build.cache": [ - "nx.json", - "nx/target-defaults" - ], - "targets.build.dependsOn": [ - "nx.json", - "nx/target-defaults" - ], - "targets.build.inputs": [ - "nx.json", - "nx/target-defaults" - ], - "targets.build.outputs": [ - "nx.json", - "nx/target-defaults" - ], - "targets.build.parallelism": [ - "nx.json", - "nx/target-defaults" - ] - }, - "boilerplates/google-analytics": { - "root": [ - "boilerplates/google-analytics/package.json", - "nx/core/package-json" - ], - "name": [ - "boilerplates/google-analytics/package.json", - "nx/core/package-json" - ], - "tags": [ - "boilerplates/google-analytics/package.json", - "nx/core/package-json" - ], - "tags.npm:private": [ - "boilerplates/google-analytics/package.json", - "nx/core/package-json" - ], - "tags.type:boilerplate": [ - "boilerplates/google-analytics/package.json", - "nx/core/package-json" - ], - "metadata.targetGroups": [ - "boilerplates/google-analytics/package.json", - "nx/core/package-json" - ], - "metadata.targetGroups.NPM Scripts": [ - "boilerplates/google-analytics/package.json", - "nx/core/package-json" - ], - "metadata.targetGroups.NPM Scripts.0": [ - "boilerplates/google-analytics/package.json", - "nx/core/package-json" - ], - "metadata.targetGroups.NPM Scripts.1": [ - "boilerplates/google-analytics/package.json", - "nx/core/package-json" - ], - "metadata.description": [ - "boilerplates/google-analytics/package.json", - "nx/core/package-json" - ], - "metadata.js": [ - "boilerplates/google-analytics/package.json", - "nx/core/package-json" - ], - "metadata.js.packageName": [ - "boilerplates/google-analytics/package.json", - "nx/core/package-json" - ], - "metadata.js.packageVersion": [ - "boilerplates/google-analytics/package.json", - "nx/core/package-json" - ], - "metadata.js.isInPackageManagerWorkspaces": [ - "boilerplates/google-analytics/package.json", - "nx/core/package-json" - ], - "targets": [ - "boilerplates/google-analytics/package.json", - "nx/core/package-json" - ], - "targets.check-types": [ - "boilerplates/google-analytics/package.json", - "nx/core/package-json" - ], - "targets.check-types.executor": [ - "boilerplates/google-analytics/package.json", - "nx/core/package-json" - ], - "targets.check-types.options": [ - "boilerplates/google-analytics/package.json", - "nx/core/package-json" - ], - "targets.check-types.metadata": [ - "boilerplates/google-analytics/package.json", - "nx/core/package-json" - ], - "targets.check-types.options.script": [ - "boilerplates/google-analytics/package.json", - "nx/core/package-json" - ], - "targets.check-types.metadata.scriptContent": [ - "boilerplates/google-analytics/package.json", - "nx/core/package-json" - ], - "targets.check-types.metadata.runCommand": [ - "boilerplates/google-analytics/package.json", - "nx/core/package-json" - ], - "targets.build": [ - "boilerplates/google-analytics/package.json", - "nx/core/package-json" - ], - "targets.build.executor": [ - "boilerplates/google-analytics/package.json", - "nx/core/package-json" - ], - "targets.build.options": [ - "boilerplates/google-analytics/package.json", - "nx/core/package-json" - ], - "targets.build.metadata": [ - "boilerplates/google-analytics/package.json", - "nx/core/package-json" - ], - "targets.build.options.script": [ - "boilerplates/google-analytics/package.json", - "nx/core/package-json" - ], - "targets.build.metadata.scriptContent": [ - "boilerplates/google-analytics/package.json", - "nx/core/package-json" - ], - "targets.build.metadata.runCommand": [ - "boilerplates/google-analytics/package.json", - "nx/core/package-json" - ], - "targets.check-types.cache": [ - "nx.json", - "nx/target-defaults" - ], - "targets.check-types.parallelism": [ - "nx.json", - "nx/target-defaults" - ], - "targets.build.cache": [ - "nx.json", - "nx/target-defaults" - ], - "targets.build.dependsOn": [ - "nx.json", - "nx/target-defaults" - ], - "targets.build.inputs": [ - "nx.json", - "nx/target-defaults" - ], - "targets.build.outputs": [ - "nx.json", - "nx/target-defaults" - ], - "targets.build.parallelism": [ - "nx.json", - "nx/target-defaults" - ] - }, - "boilerplates/h3": { - "root": [ - "boilerplates/h3/package.json", - "nx/core/package-json" - ], - "name": [ - "boilerplates/h3/package.json", - "nx/core/package-json" - ], - "tags": [ - "boilerplates/h3/package.json", - "nx/core/package-json" - ], - "tags.npm:private": [ - "boilerplates/h3/package.json", - "nx/core/package-json" - ], - "tags.type:boilerplate": [ - "boilerplates/h3/package.json", - "nx/core/package-json" - ], - "metadata.targetGroups": [ - "boilerplates/h3/package.json", - "nx/core/package-json" - ], - "metadata.targetGroups.NPM Scripts": [ - "boilerplates/h3/package.json", - "nx/core/package-json" - ], - "metadata.targetGroups.NPM Scripts.0": [ - "boilerplates/h3/package.json", - "nx/core/package-json" - ], - "metadata.targetGroups.NPM Scripts.1": [ - "boilerplates/h3/package.json", - "nx/core/package-json" - ], - "metadata.description": [ - "boilerplates/h3/package.json", - "nx/core/package-json" - ], - "metadata.js": [ - "boilerplates/h3/package.json", - "nx/core/package-json" - ], - "metadata.js.packageName": [ - "boilerplates/h3/package.json", - "nx/core/package-json" - ], - "metadata.js.packageVersion": [ - "boilerplates/h3/package.json", - "nx/core/package-json" - ], - "metadata.js.packageExports": [ - "boilerplates/h3/package.json", - "nx/core/package-json" - ], - "metadata.js.isInPackageManagerWorkspaces": [ - "boilerplates/h3/package.json", - "nx/core/package-json" - ], - "targets": [ - "boilerplates/h3/package.json", - "nx/core/package-json" - ], - "targets.check-types": [ - "boilerplates/h3/package.json", - "nx/core/package-json" - ], - "targets.check-types.executor": [ - "boilerplates/h3/package.json", - "nx/core/package-json" - ], - "targets.check-types.options": [ - "boilerplates/h3/package.json", - "nx/core/package-json" - ], - "targets.check-types.metadata": [ - "boilerplates/h3/package.json", - "nx/core/package-json" - ], - "targets.check-types.options.script": [ - "boilerplates/h3/package.json", - "nx/core/package-json" - ], - "targets.check-types.metadata.scriptContent": [ - "boilerplates/h3/package.json", - "nx/core/package-json" - ], - "targets.check-types.metadata.runCommand": [ - "boilerplates/h3/package.json", - "nx/core/package-json" - ], - "targets.build": [ - "boilerplates/h3/package.json", - "nx/core/package-json" - ], - "targets.build.executor": [ - "boilerplates/h3/package.json", - "nx/core/package-json" - ], - "targets.build.options": [ - "boilerplates/h3/package.json", - "nx/core/package-json" - ], - "targets.build.metadata": [ - "boilerplates/h3/package.json", - "nx/core/package-json" - ], - "targets.build.options.script": [ - "boilerplates/h3/package.json", - "nx/core/package-json" - ], - "targets.build.metadata.scriptContent": [ - "boilerplates/h3/package.json", - "nx/core/package-json" - ], - "targets.build.metadata.runCommand": [ - "boilerplates/h3/package.json", - "nx/core/package-json" - ], - "targets.check-types.cache": [ - "nx.json", - "nx/target-defaults" - ], - "targets.check-types.parallelism": [ - "nx.json", - "nx/target-defaults" - ], - "targets.build.cache": [ - "nx.json", - "nx/target-defaults" - ], - "targets.build.dependsOn": [ - "nx.json", - "nx/target-defaults" - ], - "targets.build.inputs": [ - "nx.json", - "nx/target-defaults" - ], - "targets.build.outputs": [ - "nx.json", - "nx/target-defaults" - ], - "targets.build.parallelism": [ - "nx.json", - "nx/target-defaults" - ] - }, - "boilerplates/hono": { - "root": [ - "boilerplates/hono/package.json", - "nx/core/package-json" - ], - "name": [ - "boilerplates/hono/package.json", - "nx/core/package-json" - ], - "tags": [ - "boilerplates/hono/package.json", - "nx/core/package-json" - ], - "tags.npm:private": [ - "boilerplates/hono/package.json", - "nx/core/package-json" - ], - "tags.type:boilerplate": [ - "boilerplates/hono/package.json", - "nx/core/package-json" - ], - "metadata.targetGroups": [ - "boilerplates/hono/package.json", - "nx/core/package-json" - ], - "metadata.targetGroups.NPM Scripts": [ - "boilerplates/hono/package.json", - "nx/core/package-json" - ], - "metadata.targetGroups.NPM Scripts.0": [ - "boilerplates/hono/package.json", - "nx/core/package-json" - ], - "metadata.targetGroups.NPM Scripts.1": [ - "boilerplates/hono/package.json", - "nx/core/package-json" - ], - "metadata.description": [ - "boilerplates/hono/package.json", - "nx/core/package-json" - ], - "metadata.js": [ - "boilerplates/hono/package.json", - "nx/core/package-json" - ], - "metadata.js.packageName": [ - "boilerplates/hono/package.json", - "nx/core/package-json" - ], - "metadata.js.packageVersion": [ - "boilerplates/hono/package.json", - "nx/core/package-json" - ], - "metadata.js.packageExports": [ - "boilerplates/hono/package.json", - "nx/core/package-json" - ], - "metadata.js.isInPackageManagerWorkspaces": [ - "boilerplates/hono/package.json", - "nx/core/package-json" - ], - "targets": [ - "boilerplates/hono/package.json", - "nx/core/package-json" - ], - "targets.check-types": [ - "boilerplates/hono/package.json", - "nx/core/package-json" - ], - "targets.check-types.executor": [ - "boilerplates/hono/package.json", - "nx/core/package-json" - ], - "targets.check-types.options": [ - "boilerplates/hono/package.json", - "nx/core/package-json" - ], - "targets.check-types.metadata": [ - "boilerplates/hono/package.json", - "nx/core/package-json" - ], - "targets.check-types.options.script": [ - "boilerplates/hono/package.json", - "nx/core/package-json" - ], - "targets.check-types.metadata.scriptContent": [ - "boilerplates/hono/package.json", - "nx/core/package-json" - ], - "targets.check-types.metadata.runCommand": [ - "boilerplates/hono/package.json", - "nx/core/package-json" - ], - "targets.build": [ - "boilerplates/hono/package.json", - "nx/core/package-json" - ], - "targets.build.executor": [ - "boilerplates/hono/package.json", - "nx/core/package-json" - ], - "targets.build.options": [ - "boilerplates/hono/package.json", - "nx/core/package-json" - ], - "targets.build.metadata": [ - "boilerplates/hono/package.json", - "nx/core/package-json" - ], - "targets.build.options.script": [ - "boilerplates/hono/package.json", - "nx/core/package-json" - ], - "targets.build.metadata.scriptContent": [ - "boilerplates/hono/package.json", - "nx/core/package-json" - ], - "targets.build.metadata.runCommand": [ - "boilerplates/hono/package.json", - "nx/core/package-json" - ], - "targets.check-types.cache": [ - "nx.json", - "nx/target-defaults" - ], - "targets.check-types.parallelism": [ - "nx.json", - "nx/target-defaults" - ], - "targets.build.cache": [ - "nx.json", - "nx/target-defaults" - ], - "targets.build.dependsOn": [ - "nx.json", - "nx/target-defaults" - ], - "targets.build.inputs": [ - "nx.json", - "nx/target-defaults" - ], - "targets.build.outputs": [ - "nx.json", - "nx/target-defaults" - ], - "targets.build.parallelism": [ - "nx.json", - "nx/target-defaults" - ] - }, - "boilerplates/kysely": { - "root": [ - "boilerplates/kysely/package.json", - "nx/core/package-json" - ], - "name": [ - "boilerplates/kysely/package.json", - "nx/core/package-json" - ], - "tags": [ - "boilerplates/kysely/package.json", - "nx/core/package-json" - ], - "tags.npm:private": [ - "boilerplates/kysely/package.json", - "nx/core/package-json" - ], - "tags.type:boilerplate": [ - "boilerplates/kysely/package.json", - "nx/core/package-json" - ], - "metadata.targetGroups": [ - "boilerplates/kysely/package.json", - "nx/core/package-json" - ], - "metadata.targetGroups.NPM Scripts": [ - "boilerplates/kysely/package.json", - "nx/core/package-json" - ], - "metadata.targetGroups.NPM Scripts.0": [ - "boilerplates/kysely/package.json", - "nx/core/package-json" - ], - "metadata.targetGroups.NPM Scripts.1": [ - "boilerplates/kysely/package.json", - "nx/core/package-json" - ], - "metadata.description": [ - "boilerplates/kysely/package.json", - "nx/core/package-json" - ], - "metadata.js": [ - "boilerplates/kysely/package.json", - "nx/core/package-json" - ], - "metadata.js.packageName": [ - "boilerplates/kysely/package.json", - "nx/core/package-json" - ], - "metadata.js.packageVersion": [ - "boilerplates/kysely/package.json", - "nx/core/package-json" - ], - "metadata.js.packageExports": [ - "boilerplates/kysely/package.json", - "nx/core/package-json" - ], - "metadata.js.isInPackageManagerWorkspaces": [ - "boilerplates/kysely/package.json", - "nx/core/package-json" - ], - "targets": [ - "boilerplates/kysely/package.json", - "nx/core/package-json" - ], - "targets.check-types": [ - "boilerplates/kysely/package.json", - "nx/core/package-json" - ], - "targets.check-types.executor": [ - "boilerplates/kysely/package.json", - "nx/core/package-json" - ], - "targets.check-types.options": [ - "boilerplates/kysely/package.json", - "nx/core/package-json" - ], - "targets.check-types.metadata": [ - "boilerplates/kysely/package.json", - "nx/core/package-json" - ], - "targets.check-types.options.script": [ - "boilerplates/kysely/package.json", - "nx/core/package-json" - ], - "targets.check-types.metadata.scriptContent": [ - "boilerplates/kysely/package.json", - "nx/core/package-json" - ], - "targets.check-types.metadata.runCommand": [ - "boilerplates/kysely/package.json", - "nx/core/package-json" - ], - "targets.build": [ - "boilerplates/kysely/package.json", - "nx/core/package-json" - ], - "targets.build.executor": [ - "boilerplates/kysely/package.json", - "nx/core/package-json" - ], - "targets.build.options": [ - "boilerplates/kysely/package.json", - "nx/core/package-json" - ], - "targets.build.metadata": [ - "boilerplates/kysely/package.json", - "nx/core/package-json" - ], - "targets.build.options.script": [ - "boilerplates/kysely/package.json", - "nx/core/package-json" - ], - "targets.build.metadata.scriptContent": [ - "boilerplates/kysely/package.json", - "nx/core/package-json" - ], - "targets.build.metadata.runCommand": [ - "boilerplates/kysely/package.json", - "nx/core/package-json" - ], - "targets.check-types.cache": [ - "nx.json", - "nx/target-defaults" - ], - "targets.check-types.parallelism": [ - "nx.json", - "nx/target-defaults" - ], - "targets.build.cache": [ - "nx.json", - "nx/target-defaults" - ], - "targets.build.dependsOn": [ - "nx.json", - "nx/target-defaults" - ], - "targets.build.inputs": [ - "nx.json", - "nx/target-defaults" - ], - "targets.build.outputs": [ - "nx.json", - "nx/target-defaults" - ], - "targets.build.parallelism": [ - "nx.json", - "nx/target-defaults" - ] - }, - "boilerplates/mantine": { - "root": [ - "boilerplates/mantine/package.json", - "nx/core/package-json" - ], - "name": [ - "boilerplates/mantine/package.json", - "nx/core/package-json" - ], - "tags": [ - "boilerplates/mantine/package.json", - "nx/core/package-json" - ], - "tags.npm:private": [ - "boilerplates/mantine/package.json", - "nx/core/package-json" - ], - "tags.type:boilerplate": [ - "boilerplates/mantine/package.json", - "nx/core/package-json" - ], - "metadata.targetGroups": [ - "boilerplates/mantine/package.json", - "nx/core/package-json" - ], - "metadata.targetGroups.NPM Scripts": [ - "boilerplates/mantine/package.json", - "nx/core/package-json" - ], - "metadata.targetGroups.NPM Scripts.0": [ - "boilerplates/mantine/package.json", - "nx/core/package-json" - ], - "metadata.targetGroups.NPM Scripts.1": [ - "boilerplates/mantine/package.json", - "nx/core/package-json" - ], - "metadata.description": [ - "boilerplates/mantine/package.json", - "nx/core/package-json" - ], - "metadata.js": [ - "boilerplates/mantine/package.json", - "nx/core/package-json" - ], - "metadata.js.packageName": [ - "boilerplates/mantine/package.json", - "nx/core/package-json" - ], - "metadata.js.packageVersion": [ - "boilerplates/mantine/package.json", - "nx/core/package-json" - ], - "metadata.js.packageExports": [ - "boilerplates/mantine/package.json", - "nx/core/package-json" - ], - "metadata.js.isInPackageManagerWorkspaces": [ - "boilerplates/mantine/package.json", - "nx/core/package-json" - ], - "targets": [ - "boilerplates/mantine/package.json", - "nx/core/package-json" - ], - "targets.check-types": [ - "boilerplates/mantine/package.json", - "nx/core/package-json" - ], - "targets.check-types.executor": [ - "boilerplates/mantine/package.json", - "nx/core/package-json" - ], - "targets.check-types.options": [ - "boilerplates/mantine/package.json", - "nx/core/package-json" - ], - "targets.check-types.metadata": [ - "boilerplates/mantine/package.json", - "nx/core/package-json" - ], - "targets.check-types.options.script": [ - "boilerplates/mantine/package.json", - "nx/core/package-json" - ], - "targets.check-types.metadata.scriptContent": [ - "boilerplates/mantine/package.json", - "nx/core/package-json" - ], - "targets.check-types.metadata.runCommand": [ - "boilerplates/mantine/package.json", - "nx/core/package-json" - ], - "targets.build": [ - "boilerplates/mantine/package.json", - "nx/core/package-json" - ], - "targets.build.executor": [ - "boilerplates/mantine/package.json", - "nx/core/package-json" - ], - "targets.build.options": [ - "boilerplates/mantine/package.json", - "nx/core/package-json" - ], - "targets.build.metadata": [ - "boilerplates/mantine/package.json", - "nx/core/package-json" - ], - "targets.build.options.script": [ - "boilerplates/mantine/package.json", - "nx/core/package-json" - ], - "targets.build.metadata.scriptContent": [ - "boilerplates/mantine/package.json", - "nx/core/package-json" - ], - "targets.build.metadata.runCommand": [ - "boilerplates/mantine/package.json", - "nx/core/package-json" - ], - "targets.check-types.cache": [ - "nx.json", - "nx/target-defaults" - ], - "targets.check-types.parallelism": [ - "nx.json", - "nx/target-defaults" - ], - "targets.build.cache": [ - "nx.json", - "nx/target-defaults" - ], - "targets.build.dependsOn": [ - "nx.json", - "nx/target-defaults" - ], - "targets.build.inputs": [ - "nx.json", - "nx/target-defaults" - ], - "targets.build.outputs": [ - "nx.json", - "nx/target-defaults" - ], - "targets.build.parallelism": [ - "nx.json", - "nx/target-defaults" - ] - }, - "boilerplates/oxlint": { - "root": [ - "boilerplates/oxlint/package.json", - "nx/core/package-json" - ], - "name": [ - "boilerplates/oxlint/package.json", - "nx/core/package-json" - ], - "tags": [ - "boilerplates/oxlint/package.json", - "nx/core/package-json" - ], - "tags.npm:private": [ - "boilerplates/oxlint/package.json", - "nx/core/package-json" - ], - "tags.type:boilerplate": [ - "boilerplates/oxlint/package.json", - "nx/core/package-json" - ], - "metadata.targetGroups": [ - "boilerplates/oxlint/package.json", - "nx/core/package-json" - ], - "metadata.targetGroups.NPM Scripts": [ - "boilerplates/oxlint/package.json", - "nx/core/package-json" - ], - "metadata.targetGroups.NPM Scripts.0": [ - "boilerplates/oxlint/package.json", - "nx/core/package-json" - ], - "metadata.targetGroups.NPM Scripts.1": [ - "boilerplates/oxlint/package.json", - "nx/core/package-json" - ], - "metadata.description": [ - "boilerplates/oxlint/package.json", - "nx/core/package-json" - ], - "metadata.js": [ - "boilerplates/oxlint/package.json", - "nx/core/package-json" - ], - "metadata.js.packageName": [ - "boilerplates/oxlint/package.json", - "nx/core/package-json" - ], - "metadata.js.packageVersion": [ - "boilerplates/oxlint/package.json", - "nx/core/package-json" - ], - "metadata.js.isInPackageManagerWorkspaces": [ - "boilerplates/oxlint/package.json", - "nx/core/package-json" - ], - "targets": [ - "boilerplates/oxlint/package.json", - "nx/core/package-json" - ], - "targets.check-types": [ - "boilerplates/oxlint/package.json", - "nx/core/package-json" - ], - "targets.check-types.executor": [ - "boilerplates/oxlint/package.json", - "nx/core/package-json" - ], - "targets.check-types.options": [ - "boilerplates/oxlint/package.json", - "nx/core/package-json" - ], - "targets.check-types.metadata": [ - "boilerplates/oxlint/package.json", - "nx/core/package-json" - ], - "targets.check-types.options.script": [ - "boilerplates/oxlint/package.json", - "nx/core/package-json" - ], - "targets.check-types.metadata.scriptContent": [ - "boilerplates/oxlint/package.json", - "nx/core/package-json" - ], - "targets.check-types.metadata.runCommand": [ - "boilerplates/oxlint/package.json", - "nx/core/package-json" - ], - "targets.build": [ - "boilerplates/oxlint/package.json", - "nx/core/package-json" - ], - "targets.build.executor": [ - "boilerplates/oxlint/package.json", - "nx/core/package-json" - ], - "targets.build.options": [ - "boilerplates/oxlint/package.json", - "nx/core/package-json" - ], - "targets.build.metadata": [ - "boilerplates/oxlint/package.json", - "nx/core/package-json" - ], - "targets.build.options.script": [ - "boilerplates/oxlint/package.json", - "nx/core/package-json" - ], - "targets.build.metadata.scriptContent": [ - "boilerplates/oxlint/package.json", - "nx/core/package-json" - ], - "targets.build.metadata.runCommand": [ - "boilerplates/oxlint/package.json", - "nx/core/package-json" - ], - "targets.check-types.cache": [ - "nx.json", - "nx/target-defaults" - ], - "targets.check-types.parallelism": [ - "nx.json", - "nx/target-defaults" - ], - "targets.build.cache": [ - "nx.json", - "nx/target-defaults" - ], - "targets.build.dependsOn": [ - "nx.json", - "nx/target-defaults" - ], - "targets.build.inputs": [ - "nx.json", - "nx/target-defaults" - ], - "targets.build.outputs": [ - "nx.json", - "nx/target-defaults" - ], - "targets.build.parallelism": [ - "nx.json", - "nx/target-defaults" - ] - }, - "boilerplates/photon": { - "root": [ - "boilerplates/photon/package.json", - "nx/core/package-json" - ], - "name": [ - "boilerplates/photon/package.json", - "nx/core/package-json" - ], - "tags": [ - "boilerplates/photon/package.json", - "nx/core/package-json" - ], - "tags.npm:private": [ - "boilerplates/photon/package.json", - "nx/core/package-json" - ], - "tags.type:boilerplate": [ - "boilerplates/photon/package.json", - "nx/core/package-json" - ], - "metadata.targetGroups": [ - "boilerplates/photon/package.json", - "nx/core/package-json" - ], - "metadata.targetGroups.NPM Scripts": [ - "boilerplates/photon/package.json", - "nx/core/package-json" - ], - "metadata.targetGroups.NPM Scripts.0": [ - "boilerplates/photon/package.json", - "nx/core/package-json" - ], - "metadata.targetGroups.NPM Scripts.1": [ - "boilerplates/photon/package.json", - "nx/core/package-json" - ], - "metadata.description": [ - "boilerplates/photon/package.json", - "nx/core/package-json" - ], - "metadata.js": [ - "boilerplates/photon/package.json", - "nx/core/package-json" - ], - "metadata.js.packageName": [ - "boilerplates/photon/package.json", - "nx/core/package-json" - ], - "metadata.js.packageVersion": [ - "boilerplates/photon/package.json", - "nx/core/package-json" - ], - "metadata.js.isInPackageManagerWorkspaces": [ - "boilerplates/photon/package.json", - "nx/core/package-json" - ], - "targets": [ - "boilerplates/photon/package.json", - "nx/core/package-json" - ], - "targets.check-types": [ - "boilerplates/photon/package.json", - "nx/core/package-json" - ], - "targets.check-types.executor": [ - "boilerplates/photon/package.json", - "nx/core/package-json" - ], - "targets.check-types.options": [ - "boilerplates/photon/package.json", - "nx/core/package-json" - ], - "targets.check-types.metadata": [ - "boilerplates/photon/package.json", - "nx/core/package-json" - ], - "targets.check-types.options.script": [ - "boilerplates/photon/package.json", - "nx/core/package-json" - ], - "targets.check-types.metadata.scriptContent": [ - "boilerplates/photon/package.json", - "nx/core/package-json" - ], - "targets.check-types.metadata.runCommand": [ - "boilerplates/photon/package.json", - "nx/core/package-json" - ], - "targets.build": [ - "boilerplates/photon/package.json", - "nx/core/package-json" - ], - "targets.build.executor": [ - "boilerplates/photon/package.json", - "nx/core/package-json" - ], - "targets.build.options": [ - "boilerplates/photon/package.json", - "nx/core/package-json" - ], - "targets.build.metadata": [ - "boilerplates/photon/package.json", - "nx/core/package-json" - ], - "targets.build.options.script": [ - "boilerplates/photon/package.json", - "nx/core/package-json" - ], - "targets.build.metadata.scriptContent": [ - "boilerplates/photon/package.json", - "nx/core/package-json" - ], - "targets.build.metadata.runCommand": [ - "boilerplates/photon/package.json", - "nx/core/package-json" - ], - "targets.check-types.cache": [ - "nx.json", - "nx/target-defaults" - ], - "targets.check-types.parallelism": [ - "nx.json", - "nx/target-defaults" - ], - "targets.build.cache": [ - "nx.json", - "nx/target-defaults" - ], - "targets.build.dependsOn": [ - "nx.json", - "nx/target-defaults" - ], - "targets.build.inputs": [ - "nx.json", - "nx/target-defaults" - ], - "targets.build.outputs": [ - "nx.json", - "nx/target-defaults" - ], - "targets.build.parallelism": [ - "nx.json", - "nx/target-defaults" - ] - }, - "boilerplates/plausible.io": { - "root": [ - "boilerplates/plausible.io/package.json", - "nx/core/package-json" - ], - "name": [ - "boilerplates/plausible.io/package.json", - "nx/core/package-json" - ], - "tags": [ - "boilerplates/plausible.io/package.json", - "nx/core/package-json" - ], - "tags.npm:private": [ - "boilerplates/plausible.io/package.json", - "nx/core/package-json" - ], - "tags.type:boilerplate": [ - "boilerplates/plausible.io/package.json", - "nx/core/package-json" - ], - "metadata.targetGroups": [ - "boilerplates/plausible.io/package.json", - "nx/core/package-json" - ], - "metadata.targetGroups.NPM Scripts": [ - "boilerplates/plausible.io/package.json", - "nx/core/package-json" - ], - "metadata.targetGroups.NPM Scripts.0": [ - "boilerplates/plausible.io/package.json", - "nx/core/package-json" - ], - "metadata.targetGroups.NPM Scripts.1": [ - "boilerplates/plausible.io/package.json", - "nx/core/package-json" - ], - "metadata.description": [ - "boilerplates/plausible.io/package.json", - "nx/core/package-json" - ], - "metadata.js": [ - "boilerplates/plausible.io/package.json", - "nx/core/package-json" - ], - "metadata.js.packageName": [ - "boilerplates/plausible.io/package.json", - "nx/core/package-json" - ], - "metadata.js.packageVersion": [ - "boilerplates/plausible.io/package.json", - "nx/core/package-json" - ], - "metadata.js.isInPackageManagerWorkspaces": [ - "boilerplates/plausible.io/package.json", - "nx/core/package-json" - ], - "targets": [ - "boilerplates/plausible.io/package.json", - "nx/core/package-json" - ], - "targets.check-types": [ - "boilerplates/plausible.io/package.json", - "nx/core/package-json" - ], - "targets.check-types.executor": [ - "boilerplates/plausible.io/package.json", - "nx/core/package-json" - ], - "targets.check-types.options": [ - "boilerplates/plausible.io/package.json", - "nx/core/package-json" - ], - "targets.check-types.metadata": [ - "boilerplates/plausible.io/package.json", - "nx/core/package-json" - ], - "targets.check-types.options.script": [ - "boilerplates/plausible.io/package.json", - "nx/core/package-json" - ], - "targets.check-types.metadata.scriptContent": [ - "boilerplates/plausible.io/package.json", - "nx/core/package-json" - ], - "targets.check-types.metadata.runCommand": [ - "boilerplates/plausible.io/package.json", - "nx/core/package-json" - ], - "targets.build": [ - "boilerplates/plausible.io/package.json", - "nx/core/package-json" - ], - "targets.build.executor": [ - "boilerplates/plausible.io/package.json", - "nx/core/package-json" - ], - "targets.build.options": [ - "boilerplates/plausible.io/package.json", - "nx/core/package-json" - ], - "targets.build.metadata": [ - "boilerplates/plausible.io/package.json", - "nx/core/package-json" - ], - "targets.build.options.script": [ - "boilerplates/plausible.io/package.json", - "nx/core/package-json" - ], - "targets.build.metadata.scriptContent": [ - "boilerplates/plausible.io/package.json", - "nx/core/package-json" - ], - "targets.build.metadata.runCommand": [ - "boilerplates/plausible.io/package.json", - "nx/core/package-json" - ], - "targets.check-types.cache": [ - "nx.json", - "nx/target-defaults" - ], - "targets.check-types.parallelism": [ - "nx.json", - "nx/target-defaults" - ], - "targets.build.cache": [ - "nx.json", - "nx/target-defaults" - ], - "targets.build.dependsOn": [ - "nx.json", - "nx/target-defaults" - ], - "targets.build.inputs": [ - "nx.json", - "nx/target-defaults" - ], - "targets.build.outputs": [ - "nx.json", - "nx/target-defaults" - ], - "targets.build.parallelism": [ - "nx.json", - "nx/target-defaults" - ] - }, - "boilerplates/pnpm": { - "root": [ - "boilerplates/pnpm/package.json", - "nx/core/package-json" - ], - "name": [ - "boilerplates/pnpm/package.json", - "nx/core/package-json" - ], - "tags": [ - "boilerplates/pnpm/package.json", - "nx/core/package-json" - ], - "tags.npm:private": [ - "boilerplates/pnpm/package.json", - "nx/core/package-json" - ], - "tags.type:boilerplate": [ - "boilerplates/pnpm/package.json", - "nx/core/package-json" - ], - "metadata.targetGroups": [ - "boilerplates/pnpm/package.json", - "nx/core/package-json" - ], - "metadata.targetGroups.NPM Scripts": [ - "boilerplates/pnpm/package.json", - "nx/core/package-json" - ], - "metadata.targetGroups.NPM Scripts.0": [ - "boilerplates/pnpm/package.json", - "nx/core/package-json" - ], - "metadata.targetGroups.NPM Scripts.1": [ - "boilerplates/pnpm/package.json", - "nx/core/package-json" - ], - "metadata.description": [ - "boilerplates/pnpm/package.json", - "nx/core/package-json" - ], - "metadata.js": [ - "boilerplates/pnpm/package.json", - "nx/core/package-json" - ], - "metadata.js.packageName": [ - "boilerplates/pnpm/package.json", - "nx/core/package-json" - ], - "metadata.js.packageVersion": [ - "boilerplates/pnpm/package.json", - "nx/core/package-json" - ], - "metadata.js.isInPackageManagerWorkspaces": [ - "boilerplates/pnpm/package.json", - "nx/core/package-json" - ], - "targets": [ - "boilerplates/pnpm/package.json", - "nx/core/package-json" - ], - "targets.check-types": [ - "boilerplates/pnpm/package.json", - "nx/core/package-json" - ], - "targets.check-types.executor": [ - "boilerplates/pnpm/package.json", - "nx/core/package-json" - ], - "targets.check-types.options": [ - "boilerplates/pnpm/package.json", - "nx/core/package-json" - ], - "targets.check-types.metadata": [ - "boilerplates/pnpm/package.json", - "nx/core/package-json" - ], - "targets.check-types.options.script": [ - "boilerplates/pnpm/package.json", - "nx/core/package-json" - ], - "targets.check-types.metadata.scriptContent": [ - "boilerplates/pnpm/package.json", - "nx/core/package-json" - ], - "targets.check-types.metadata.runCommand": [ - "boilerplates/pnpm/package.json", - "nx/core/package-json" - ], - "targets.build": [ - "boilerplates/pnpm/package.json", - "nx/core/package-json" - ], - "targets.build.executor": [ - "boilerplates/pnpm/package.json", - "nx/core/package-json" - ], - "targets.build.options": [ - "boilerplates/pnpm/package.json", - "nx/core/package-json" - ], - "targets.build.metadata": [ - "boilerplates/pnpm/package.json", - "nx/core/package-json" - ], - "targets.build.options.script": [ - "boilerplates/pnpm/package.json", - "nx/core/package-json" - ], - "targets.build.metadata.scriptContent": [ - "boilerplates/pnpm/package.json", - "nx/core/package-json" - ], - "targets.build.metadata.runCommand": [ - "boilerplates/pnpm/package.json", - "nx/core/package-json" - ], - "targets.check-types.cache": [ - "nx.json", - "nx/target-defaults" - ], - "targets.check-types.parallelism": [ - "nx.json", - "nx/target-defaults" - ], - "targets.build.cache": [ - "nx.json", - "nx/target-defaults" - ], - "targets.build.dependsOn": [ - "nx.json", - "nx/target-defaults" - ], - "targets.build.inputs": [ - "nx.json", - "nx/target-defaults" - ], - "targets.build.outputs": [ - "nx.json", - "nx/target-defaults" - ], - "targets.build.parallelism": [ - "nx.json", - "nx/target-defaults" - ] - }, - "boilerplates/prettier": { - "root": [ - "boilerplates/prettier/package.json", - "nx/core/package-json" - ], - "name": [ - "boilerplates/prettier/package.json", - "nx/core/package-json" - ], - "tags": [ - "boilerplates/prettier/package.json", - "nx/core/package-json" - ], - "tags.npm:private": [ - "boilerplates/prettier/package.json", - "nx/core/package-json" - ], - "tags.type:boilerplate": [ - "boilerplates/prettier/package.json", - "nx/core/package-json" - ], - "metadata.targetGroups": [ - "boilerplates/prettier/package.json", - "nx/core/package-json" - ], - "metadata.targetGroups.NPM Scripts": [ - "boilerplates/prettier/package.json", - "nx/core/package-json" - ], - "metadata.targetGroups.NPM Scripts.0": [ - "boilerplates/prettier/package.json", - "nx/core/package-json" - ], - "metadata.targetGroups.NPM Scripts.1": [ - "boilerplates/prettier/package.json", - "nx/core/package-json" - ], - "metadata.description": [ - "boilerplates/prettier/package.json", - "nx/core/package-json" - ], - "metadata.js": [ - "boilerplates/prettier/package.json", - "nx/core/package-json" - ], - "metadata.js.packageName": [ - "boilerplates/prettier/package.json", - "nx/core/package-json" - ], - "metadata.js.packageVersion": [ - "boilerplates/prettier/package.json", - "nx/core/package-json" - ], - "metadata.js.isInPackageManagerWorkspaces": [ - "boilerplates/prettier/package.json", - "nx/core/package-json" - ], - "targets": [ - "boilerplates/prettier/package.json", - "nx/core/package-json" - ], - "targets.check-types": [ - "boilerplates/prettier/package.json", - "nx/core/package-json" - ], - "targets.check-types.executor": [ - "boilerplates/prettier/package.json", - "nx/core/package-json" - ], - "targets.check-types.options": [ - "boilerplates/prettier/package.json", - "nx/core/package-json" - ], - "targets.check-types.metadata": [ - "boilerplates/prettier/package.json", - "nx/core/package-json" - ], - "targets.check-types.options.script": [ - "boilerplates/prettier/package.json", - "nx/core/package-json" - ], - "targets.check-types.metadata.scriptContent": [ - "boilerplates/prettier/package.json", - "nx/core/package-json" - ], - "targets.check-types.metadata.runCommand": [ - "boilerplates/prettier/package.json", - "nx/core/package-json" - ], - "targets.build": [ - "boilerplates/prettier/package.json", - "nx/core/package-json" - ], - "targets.build.executor": [ - "boilerplates/prettier/package.json", - "nx/core/package-json" - ], - "targets.build.options": [ - "boilerplates/prettier/package.json", - "nx/core/package-json" - ], - "targets.build.metadata": [ - "boilerplates/prettier/package.json", - "nx/core/package-json" - ], - "targets.build.options.script": [ - "boilerplates/prettier/package.json", - "nx/core/package-json" - ], - "targets.build.metadata.scriptContent": [ - "boilerplates/prettier/package.json", - "nx/core/package-json" - ], - "targets.build.metadata.runCommand": [ - "boilerplates/prettier/package.json", - "nx/core/package-json" - ], - "targets.check-types.cache": [ - "nx.json", - "nx/target-defaults" - ], - "targets.check-types.parallelism": [ - "nx.json", - "nx/target-defaults" - ], - "targets.build.cache": [ - "nx.json", - "nx/target-defaults" - ], - "targets.build.dependsOn": [ - "nx.json", - "nx/target-defaults" - ], - "targets.build.inputs": [ - "nx.json", - "nx/target-defaults" - ], - "targets.build.outputs": [ - "nx.json", - "nx/target-defaults" - ], - "targets.build.parallelism": [ - "nx.json", - "nx/target-defaults" - ] - }, - "boilerplates/prisma": { - "root": [ - "boilerplates/prisma/package.json", - "nx/core/package-json" - ], - "name": [ - "boilerplates/prisma/package.json", - "nx/core/package-json" - ], - "tags": [ - "boilerplates/prisma/package.json", - "nx/core/package-json" - ], - "tags.npm:private": [ - "boilerplates/prisma/package.json", - "nx/core/package-json" - ], - "tags.type:boilerplate": [ - "boilerplates/prisma/package.json", - "nx/core/package-json" - ], - "metadata.targetGroups": [ - "boilerplates/prisma/package.json", - "nx/core/package-json" - ], - "metadata.targetGroups.NPM Scripts": [ - "boilerplates/prisma/package.json", - "nx/core/package-json" - ], - "metadata.targetGroups.NPM Scripts.0": [ - "boilerplates/prisma/package.json", - "nx/core/package-json" - ], - "metadata.targetGroups.NPM Scripts.1": [ - "boilerplates/prisma/package.json", - "nx/core/package-json" - ], - "metadata.description": [ - "boilerplates/prisma/package.json", - "nx/core/package-json" - ], - "metadata.js": [ - "boilerplates/prisma/package.json", - "nx/core/package-json" - ], - "metadata.js.packageName": [ - "boilerplates/prisma/package.json", - "nx/core/package-json" - ], - "metadata.js.packageVersion": [ - "boilerplates/prisma/package.json", - "nx/core/package-json" - ], - "metadata.js.isInPackageManagerWorkspaces": [ - "boilerplates/prisma/package.json", - "nx/core/package-json" - ], - "targets": [ - "boilerplates/prisma/package.json", - "nx/core/package-json" - ], - "targets.check-types": [ - "boilerplates/prisma/package.json", - "nx/core/package-json" - ], - "targets.check-types.executor": [ - "boilerplates/prisma/package.json", - "nx/core/package-json" - ], - "targets.check-types.options": [ - "boilerplates/prisma/package.json", - "nx/core/package-json" - ], - "targets.check-types.metadata": [ - "boilerplates/prisma/package.json", - "nx/core/package-json" - ], - "targets.check-types.options.script": [ - "boilerplates/prisma/package.json", - "nx/core/package-json" - ], - "targets.check-types.metadata.scriptContent": [ - "boilerplates/prisma/package.json", - "nx/core/package-json" - ], - "targets.check-types.metadata.runCommand": [ - "boilerplates/prisma/package.json", - "nx/core/package-json" - ], - "targets.build": [ - "boilerplates/prisma/package.json", - "nx/core/package-json" - ], - "targets.build.executor": [ - "boilerplates/prisma/package.json", - "nx/core/package-json" - ], - "targets.build.options": [ - "boilerplates/prisma/package.json", - "nx/core/package-json" - ], - "targets.build.metadata": [ - "boilerplates/prisma/package.json", - "nx/core/package-json" - ], - "targets.build.options.script": [ - "boilerplates/prisma/package.json", - "nx/core/package-json" - ], - "targets.build.metadata.scriptContent": [ - "boilerplates/prisma/package.json", - "nx/core/package-json" - ], - "targets.build.metadata.runCommand": [ - "boilerplates/prisma/package.json", - "nx/core/package-json" - ], - "targets.check-types.cache": [ - "nx.json", - "nx/target-defaults" - ], - "targets.check-types.parallelism": [ - "nx.json", - "nx/target-defaults" - ], - "targets.build.cache": [ - "nx.json", - "nx/target-defaults" - ], - "targets.build.dependsOn": [ - "nx.json", - "nx/target-defaults" - ], - "targets.build.inputs": [ - "nx.json", - "nx/target-defaults" - ], - "targets.build.outputs": [ - "nx.json", - "nx/target-defaults" - ], - "targets.build.parallelism": [ - "nx.json", - "nx/target-defaults" - ] - }, - "boilerplates/react": { - "root": [ - "boilerplates/react/package.json", - "nx/core/package-json" - ], - "name": [ - "boilerplates/react/package.json", - "nx/core/package-json" - ], - "tags": [ - "boilerplates/react/package.json", - "nx/core/package-json" - ], - "tags.npm:private": [ - "boilerplates/react/package.json", - "nx/core/package-json" - ], - "tags.type:boilerplate": [ - "boilerplates/react/package.json", - "nx/core/package-json" - ], - "metadata.targetGroups": [ - "boilerplates/react/package.json", - "nx/core/package-json" - ], - "metadata.targetGroups.NPM Scripts": [ - "boilerplates/react/package.json", - "nx/core/package-json" - ], - "metadata.targetGroups.NPM Scripts.0": [ - "boilerplates/react/package.json", - "nx/core/package-json" - ], - "metadata.targetGroups.NPM Scripts.1": [ - "boilerplates/react/package.json", - "nx/core/package-json" - ], - "metadata.description": [ - "boilerplates/react/package.json", - "nx/core/package-json" - ], - "metadata.js": [ - "boilerplates/react/package.json", - "nx/core/package-json" - ], - "metadata.js.packageName": [ - "boilerplates/react/package.json", - "nx/core/package-json" - ], - "metadata.js.packageVersion": [ - "boilerplates/react/package.json", - "nx/core/package-json" - ], - "metadata.js.packageExports": [ - "boilerplates/react/package.json", - "nx/core/package-json" - ], - "metadata.js.isInPackageManagerWorkspaces": [ - "boilerplates/react/package.json", - "nx/core/package-json" - ], - "targets": [ - "boilerplates/react/package.json", - "nx/core/package-json" - ], - "targets.check-types": [ - "boilerplates/react/package.json", - "nx/core/package-json" - ], - "targets.check-types.executor": [ - "boilerplates/react/package.json", - "nx/core/package-json" - ], - "targets.check-types.options": [ - "boilerplates/react/package.json", - "nx/core/package-json" - ], - "targets.check-types.metadata": [ - "boilerplates/react/package.json", - "nx/core/package-json" - ], - "targets.check-types.options.script": [ - "boilerplates/react/package.json", - "nx/core/package-json" - ], - "targets.check-types.metadata.scriptContent": [ - "boilerplates/react/package.json", - "nx/core/package-json" - ], - "targets.check-types.metadata.runCommand": [ - "boilerplates/react/package.json", - "nx/core/package-json" - ], - "targets.build": [ - "boilerplates/react/package.json", - "nx/core/package-json" - ], - "targets.build.executor": [ - "boilerplates/react/package.json", - "nx/core/package-json" - ], - "targets.build.options": [ - "boilerplates/react/package.json", - "nx/core/package-json" - ], - "targets.build.metadata": [ - "boilerplates/react/package.json", - "nx/core/package-json" - ], - "targets.build.options.script": [ - "boilerplates/react/package.json", - "nx/core/package-json" - ], - "targets.build.metadata.scriptContent": [ - "boilerplates/react/package.json", - "nx/core/package-json" - ], - "targets.build.metadata.runCommand": [ - "boilerplates/react/package.json", - "nx/core/package-json" - ], - "targets.check-types.cache": [ - "nx.json", - "nx/target-defaults" - ], - "targets.check-types.parallelism": [ - "nx.json", - "nx/target-defaults" - ], - "targets.build.cache": [ - "nx.json", - "nx/target-defaults" - ], - "targets.build.dependsOn": [ - "nx.json", - "nx/target-defaults" - ], - "targets.build.inputs": [ - "nx.json", - "nx/target-defaults" - ], - "targets.build.outputs": [ - "nx.json", - "nx/target-defaults" - ], - "targets.build.parallelism": [ - "nx.json", - "nx/target-defaults" - ] - }, - "boilerplates/react-sentry": { - "root": [ - "boilerplates/react-sentry/package.json", - "nx/core/package-json" - ], - "name": [ - "boilerplates/react-sentry/package.json", - "nx/core/package-json" - ], - "tags": [ - "boilerplates/react-sentry/package.json", - "nx/core/package-json" - ], - "tags.npm:private": [ - "boilerplates/react-sentry/package.json", - "nx/core/package-json" - ], - "tags.type:boilerplate": [ - "boilerplates/react-sentry/package.json", - "nx/core/package-json" - ], - "metadata.targetGroups": [ - "boilerplates/react-sentry/package.json", - "nx/core/package-json" - ], - "metadata.targetGroups.NPM Scripts": [ - "boilerplates/react-sentry/package.json", - "nx/core/package-json" - ], - "metadata.targetGroups.NPM Scripts.0": [ - "boilerplates/react-sentry/package.json", - "nx/core/package-json" - ], - "metadata.targetGroups.NPM Scripts.1": [ - "boilerplates/react-sentry/package.json", - "nx/core/package-json" - ], - "metadata.description": [ - "boilerplates/react-sentry/package.json", - "nx/core/package-json" - ], - "metadata.js": [ - "boilerplates/react-sentry/package.json", - "nx/core/package-json" - ], - "metadata.js.packageName": [ - "boilerplates/react-sentry/package.json", - "nx/core/package-json" - ], - "metadata.js.packageVersion": [ - "boilerplates/react-sentry/package.json", - "nx/core/package-json" - ], - "metadata.js.packageExports": [ - "boilerplates/react-sentry/package.json", - "nx/core/package-json" - ], - "metadata.js.isInPackageManagerWorkspaces": [ - "boilerplates/react-sentry/package.json", - "nx/core/package-json" - ], - "targets": [ - "boilerplates/react-sentry/package.json", - "nx/core/package-json" - ], - "targets.check-types": [ - "boilerplates/react-sentry/package.json", - "nx/core/package-json" - ], - "targets.check-types.executor": [ - "boilerplates/react-sentry/package.json", - "nx/core/package-json" - ], - "targets.check-types.options": [ - "boilerplates/react-sentry/package.json", - "nx/core/package-json" - ], - "targets.check-types.metadata": [ - "boilerplates/react-sentry/package.json", - "nx/core/package-json" - ], - "targets.check-types.options.script": [ - "boilerplates/react-sentry/package.json", - "nx/core/package-json" - ], - "targets.check-types.metadata.scriptContent": [ - "boilerplates/react-sentry/package.json", - "nx/core/package-json" - ], - "targets.check-types.metadata.runCommand": [ - "boilerplates/react-sentry/package.json", - "nx/core/package-json" - ], - "targets.build": [ - "boilerplates/react-sentry/package.json", - "nx/core/package-json" - ], - "targets.build.executor": [ - "boilerplates/react-sentry/package.json", - "nx/core/package-json" - ], - "targets.build.options": [ - "boilerplates/react-sentry/package.json", - "nx/core/package-json" - ], - "targets.build.metadata": [ - "boilerplates/react-sentry/package.json", - "nx/core/package-json" - ], - "targets.build.options.script": [ - "boilerplates/react-sentry/package.json", - "nx/core/package-json" - ], - "targets.build.metadata.scriptContent": [ - "boilerplates/react-sentry/package.json", - "nx/core/package-json" - ], - "targets.build.metadata.runCommand": [ - "boilerplates/react-sentry/package.json", - "nx/core/package-json" - ], - "targets.check-types.cache": [ - "nx.json", - "nx/target-defaults" - ], - "targets.check-types.parallelism": [ - "nx.json", - "nx/target-defaults" - ], - "targets.build.cache": [ - "nx.json", - "nx/target-defaults" - ], - "targets.build.dependsOn": [ - "nx.json", - "nx/target-defaults" - ], - "targets.build.inputs": [ - "nx.json", - "nx/target-defaults" - ], - "targets.build.outputs": [ - "nx.json", - "nx/target-defaults" - ], - "targets.build.parallelism": [ - "nx.json", - "nx/target-defaults" - ] - }, - "boilerplates/sentry": { - "root": [ - "boilerplates/sentry/package.json", - "nx/core/package-json" - ], - "name": [ - "boilerplates/sentry/package.json", - "nx/core/package-json" - ], - "tags": [ - "boilerplates/sentry/package.json", - "nx/core/package-json" - ], - "tags.npm:private": [ - "boilerplates/sentry/package.json", - "nx/core/package-json" - ], - "tags.type:boilerplate": [ - "boilerplates/sentry/package.json", - "nx/core/package-json" - ], - "metadata.targetGroups": [ - "boilerplates/sentry/package.json", - "nx/core/package-json" - ], - "metadata.targetGroups.NPM Scripts": [ - "boilerplates/sentry/package.json", - "nx/core/package-json" - ], - "metadata.targetGroups.NPM Scripts.0": [ - "boilerplates/sentry/package.json", - "nx/core/package-json" - ], - "metadata.targetGroups.NPM Scripts.1": [ - "boilerplates/sentry/package.json", - "nx/core/package-json" - ], - "metadata.description": [ - "boilerplates/sentry/package.json", - "nx/core/package-json" - ], - "metadata.js": [ - "boilerplates/sentry/package.json", - "nx/core/package-json" - ], - "metadata.js.packageName": [ - "boilerplates/sentry/package.json", - "nx/core/package-json" - ], - "metadata.js.packageVersion": [ - "boilerplates/sentry/package.json", - "nx/core/package-json" - ], - "metadata.js.isInPackageManagerWorkspaces": [ - "boilerplates/sentry/package.json", - "nx/core/package-json" - ], - "targets": [ - "boilerplates/sentry/package.json", - "nx/core/package-json" - ], - "targets.check-types": [ - "boilerplates/sentry/package.json", - "nx/core/package-json" - ], - "targets.check-types.executor": [ - "boilerplates/sentry/package.json", - "nx/core/package-json" - ], - "targets.check-types.options": [ - "boilerplates/sentry/package.json", - "nx/core/package-json" - ], - "targets.check-types.metadata": [ - "boilerplates/sentry/package.json", - "nx/core/package-json" - ], - "targets.check-types.options.script": [ - "boilerplates/sentry/package.json", - "nx/core/package-json" - ], - "targets.check-types.metadata.scriptContent": [ - "boilerplates/sentry/package.json", - "nx/core/package-json" - ], - "targets.check-types.metadata.runCommand": [ - "boilerplates/sentry/package.json", - "nx/core/package-json" - ], - "targets.build": [ - "boilerplates/sentry/package.json", - "nx/core/package-json" - ], - "targets.build.executor": [ - "boilerplates/sentry/package.json", - "nx/core/package-json" - ], - "targets.build.options": [ - "boilerplates/sentry/package.json", - "nx/core/package-json" - ], - "targets.build.metadata": [ - "boilerplates/sentry/package.json", - "nx/core/package-json" - ], - "targets.build.options.script": [ - "boilerplates/sentry/package.json", - "nx/core/package-json" - ], - "targets.build.metadata.scriptContent": [ - "boilerplates/sentry/package.json", - "nx/core/package-json" - ], - "targets.build.metadata.runCommand": [ - "boilerplates/sentry/package.json", - "nx/core/package-json" - ], - "targets.check-types.cache": [ - "nx.json", - "nx/target-defaults" - ], - "targets.check-types.parallelism": [ - "nx.json", - "nx/target-defaults" - ], - "targets.build.cache": [ - "nx.json", - "nx/target-defaults" - ], - "targets.build.dependsOn": [ - "nx.json", - "nx/target-defaults" - ], - "targets.build.inputs": [ - "nx.json", - "nx/target-defaults" - ], - "targets.build.outputs": [ - "nx.json", - "nx/target-defaults" - ], - "targets.build.parallelism": [ - "nx.json", - "nx/target-defaults" - ] - }, - "boilerplates/shadcn-ui": { - "root": [ - "boilerplates/shadcn-ui/package.json", - "nx/core/package-json" - ], - "name": [ - "boilerplates/shadcn-ui/package.json", - "nx/core/package-json" - ], - "tags": [ - "boilerplates/shadcn-ui/package.json", - "nx/core/package-json" - ], - "tags.npm:private": [ - "boilerplates/shadcn-ui/package.json", - "nx/core/package-json" - ], - "tags.type:boilerplate": [ - "boilerplates/shadcn-ui/package.json", - "nx/core/package-json" - ], - "metadata.targetGroups": [ - "boilerplates/shadcn-ui/package.json", - "nx/core/package-json" - ], - "metadata.targetGroups.NPM Scripts": [ - "boilerplates/shadcn-ui/package.json", - "nx/core/package-json" - ], - "metadata.targetGroups.NPM Scripts.0": [ - "boilerplates/shadcn-ui/package.json", - "nx/core/package-json" - ], - "metadata.targetGroups.NPM Scripts.1": [ - "boilerplates/shadcn-ui/package.json", - "nx/core/package-json" - ], - "metadata.description": [ - "boilerplates/shadcn-ui/package.json", - "nx/core/package-json" - ], - "metadata.js": [ - "boilerplates/shadcn-ui/package.json", - "nx/core/package-json" - ], - "metadata.js.packageName": [ - "boilerplates/shadcn-ui/package.json", - "nx/core/package-json" - ], - "metadata.js.packageVersion": [ - "boilerplates/shadcn-ui/package.json", - "nx/core/package-json" - ], - "metadata.js.packageExports": [ - "boilerplates/shadcn-ui/package.json", - "nx/core/package-json" - ], - "metadata.js.isInPackageManagerWorkspaces": [ - "boilerplates/shadcn-ui/package.json", - "nx/core/package-json" - ], - "targets": [ - "boilerplates/shadcn-ui/package.json", - "nx/core/package-json" - ], - "targets.check-types": [ - "boilerplates/shadcn-ui/package.json", - "nx/core/package-json" - ], - "targets.check-types.executor": [ - "boilerplates/shadcn-ui/package.json", - "nx/core/package-json" - ], - "targets.check-types.options": [ - "boilerplates/shadcn-ui/package.json", - "nx/core/package-json" - ], - "targets.check-types.metadata": [ - "boilerplates/shadcn-ui/package.json", - "nx/core/package-json" - ], - "targets.check-types.options.script": [ - "boilerplates/shadcn-ui/package.json", - "nx/core/package-json" - ], - "targets.check-types.metadata.scriptContent": [ - "boilerplates/shadcn-ui/package.json", - "nx/core/package-json" - ], - "targets.check-types.metadata.runCommand": [ - "boilerplates/shadcn-ui/package.json", - "nx/core/package-json" - ], - "targets.build": [ - "boilerplates/shadcn-ui/package.json", - "nx/core/package-json" - ], - "targets.build.executor": [ - "boilerplates/shadcn-ui/package.json", - "nx/core/package-json" - ], - "targets.build.options": [ - "boilerplates/shadcn-ui/package.json", - "nx/core/package-json" - ], - "targets.build.metadata": [ - "boilerplates/shadcn-ui/package.json", - "nx/core/package-json" - ], - "targets.build.options.script": [ - "boilerplates/shadcn-ui/package.json", - "nx/core/package-json" - ], - "targets.build.metadata.scriptContent": [ - "boilerplates/shadcn-ui/package.json", - "nx/core/package-json" - ], - "targets.build.metadata.runCommand": [ - "boilerplates/shadcn-ui/package.json", - "nx/core/package-json" - ], - "targets.check-types.cache": [ - "nx.json", - "nx/target-defaults" - ], - "targets.check-types.parallelism": [ - "nx.json", - "nx/target-defaults" - ], - "targets.build.cache": [ - "nx.json", - "nx/target-defaults" - ], - "targets.build.dependsOn": [ - "nx.json", - "nx/target-defaults" - ], - "targets.build.inputs": [ - "nx.json", - "nx/target-defaults" - ], - "targets.build.outputs": [ - "nx.json", - "nx/target-defaults" - ], - "targets.build.parallelism": [ - "nx.json", - "nx/target-defaults" - ] - }, - "boilerplates/shared": { - "root": [ - "boilerplates/shared/package.json", - "nx/core/package-json" - ], - "name": [ - "boilerplates/shared/package.json", - "nx/core/package-json" - ], - "tags": [ - "boilerplates/shared/package.json", - "nx/core/package-json" - ], - "tags.npm:private": [ - "boilerplates/shared/package.json", - "nx/core/package-json" - ], - "tags.type:boilerplate": [ - "boilerplates/shared/package.json", - "nx/core/package-json" - ], - "metadata.targetGroups": [ - "boilerplates/shared/package.json", - "nx/core/package-json" - ], - "metadata.targetGroups.NPM Scripts": [ - "boilerplates/shared/package.json", - "nx/core/package-json" - ], - "metadata.targetGroups.NPM Scripts.0": [ - "boilerplates/shared/package.json", - "nx/core/package-json" - ], - "metadata.targetGroups.NPM Scripts.1": [ - "boilerplates/shared/package.json", - "nx/core/package-json" - ], - "metadata.description": [ - "boilerplates/shared/package.json", - "nx/core/package-json" - ], - "metadata.js": [ - "boilerplates/shared/package.json", - "nx/core/package-json" - ], - "metadata.js.packageName": [ - "boilerplates/shared/package.json", - "nx/core/package-json" - ], - "metadata.js.packageVersion": [ - "boilerplates/shared/package.json", - "nx/core/package-json" - ], - "metadata.js.packageExports": [ - "boilerplates/shared/package.json", - "nx/core/package-json" - ], - "metadata.js.isInPackageManagerWorkspaces": [ - "boilerplates/shared/package.json", - "nx/core/package-json" - ], - "targets": [ - "boilerplates/shared/package.json", - "nx/core/package-json" - ], - "targets.check-types": [ - "boilerplates/shared/package.json", - "nx/core/package-json" - ], - "targets.check-types.executor": [ - "boilerplates/shared/package.json", - "nx/core/package-json" - ], - "targets.check-types.options": [ - "boilerplates/shared/package.json", - "nx/core/package-json" - ], - "targets.check-types.metadata": [ - "boilerplates/shared/package.json", - "nx/core/package-json" - ], - "targets.check-types.options.script": [ - "boilerplates/shared/package.json", - "nx/core/package-json" - ], - "targets.check-types.metadata.scriptContent": [ - "boilerplates/shared/package.json", - "nx/core/package-json" - ], - "targets.check-types.metadata.runCommand": [ - "boilerplates/shared/package.json", - "nx/core/package-json" - ], - "targets.build": [ - "boilerplates/shared/package.json", - "nx/core/package-json" - ], - "targets.build.executor": [ - "boilerplates/shared/package.json", - "nx/core/package-json" - ], - "targets.build.options": [ - "boilerplates/shared/package.json", - "nx/core/package-json" - ], - "targets.build.metadata": [ - "boilerplates/shared/package.json", - "nx/core/package-json" - ], - "targets.build.options.script": [ - "boilerplates/shared/package.json", - "nx/core/package-json" - ], - "targets.build.metadata.scriptContent": [ - "boilerplates/shared/package.json", - "nx/core/package-json" - ], - "targets.build.metadata.runCommand": [ - "boilerplates/shared/package.json", - "nx/core/package-json" - ], - "targets.check-types.cache": [ - "nx.json", - "nx/target-defaults" - ], - "targets.check-types.parallelism": [ - "nx.json", - "nx/target-defaults" - ], - "targets.build.cache": [ - "nx.json", - "nx/target-defaults" - ], - "targets.build.dependsOn": [ - "nx.json", - "nx/target-defaults" - ], - "targets.build.inputs": [ - "nx.json", - "nx/target-defaults" - ], - "targets.build.outputs": [ - "nx.json", - "nx/target-defaults" - ], - "targets.build.parallelism": [ - "nx.json", - "nx/target-defaults" - ] - }, - "boilerplates/shared-db": { - "root": [ - "boilerplates/shared-db/package.json", - "nx/core/package-json" - ], - "name": [ - "boilerplates/shared-db/package.json", - "nx/core/package-json" - ], - "tags": [ - "boilerplates/shared-db/package.json", - "nx/core/package-json" - ], - "tags.npm:private": [ - "boilerplates/shared-db/package.json", - "nx/core/package-json" - ], - "tags.type:boilerplate": [ - "boilerplates/shared-db/package.json", - "nx/core/package-json" - ], - "metadata.targetGroups": [ - "boilerplates/shared-db/package.json", - "nx/core/package-json" - ], - "metadata.targetGroups.NPM Scripts": [ - "boilerplates/shared-db/package.json", - "nx/core/package-json" - ], - "metadata.targetGroups.NPM Scripts.0": [ - "boilerplates/shared-db/package.json", - "nx/core/package-json" - ], - "metadata.targetGroups.NPM Scripts.1": [ - "boilerplates/shared-db/package.json", - "nx/core/package-json" - ], - "metadata.description": [ - "boilerplates/shared-db/package.json", - "nx/core/package-json" - ], - "metadata.js": [ - "boilerplates/shared-db/package.json", - "nx/core/package-json" - ], - "metadata.js.packageName": [ - "boilerplates/shared-db/package.json", - "nx/core/package-json" - ], - "metadata.js.packageVersion": [ - "boilerplates/shared-db/package.json", - "nx/core/package-json" - ], - "metadata.js.packageExports": [ - "boilerplates/shared-db/package.json", - "nx/core/package-json" - ], - "metadata.js.isInPackageManagerWorkspaces": [ - "boilerplates/shared-db/package.json", - "nx/core/package-json" - ], - "targets": [ - "boilerplates/shared-db/package.json", - "nx/core/package-json" - ], - "targets.check-types": [ - "boilerplates/shared-db/package.json", - "nx/core/package-json" - ], - "targets.check-types.executor": [ - "boilerplates/shared-db/package.json", - "nx/core/package-json" - ], - "targets.check-types.options": [ - "boilerplates/shared-db/package.json", - "nx/core/package-json" - ], - "targets.check-types.metadata": [ - "boilerplates/shared-db/package.json", - "nx/core/package-json" - ], - "targets.check-types.options.script": [ - "boilerplates/shared-db/package.json", - "nx/core/package-json" - ], - "targets.check-types.metadata.scriptContent": [ - "boilerplates/shared-db/package.json", - "nx/core/package-json" - ], - "targets.check-types.metadata.runCommand": [ - "boilerplates/shared-db/package.json", - "nx/core/package-json" - ], - "targets.build": [ - "boilerplates/shared-db/package.json", - "nx/core/package-json" - ], - "targets.build.executor": [ - "boilerplates/shared-db/package.json", - "nx/core/package-json" - ], - "targets.build.options": [ - "boilerplates/shared-db/package.json", - "nx/core/package-json" - ], - "targets.build.metadata": [ - "boilerplates/shared-db/package.json", - "nx/core/package-json" - ], - "targets.build.options.script": [ - "boilerplates/shared-db/package.json", - "nx/core/package-json" - ], - "targets.build.metadata.scriptContent": [ - "boilerplates/shared-db/package.json", - "nx/core/package-json" - ], - "targets.build.metadata.runCommand": [ - "boilerplates/shared-db/package.json", - "nx/core/package-json" - ], - "targets.check-types.cache": [ - "nx.json", - "nx/target-defaults" - ], - "targets.check-types.parallelism": [ - "nx.json", - "nx/target-defaults" - ], - "targets.build.cache": [ - "nx.json", - "nx/target-defaults" - ], - "targets.build.dependsOn": [ - "nx.json", - "nx/target-defaults" - ], - "targets.build.inputs": [ - "nx.json", - "nx/target-defaults" - ], - "targets.build.outputs": [ - "nx.json", - "nx/target-defaults" - ], - "targets.build.parallelism": [ - "nx.json", - "nx/target-defaults" - ] - }, - "boilerplates/shared-server": { - "root": [ - "boilerplates/shared-server/package.json", - "nx/core/package-json" - ], - "name": [ - "boilerplates/shared-server/package.json", - "nx/core/package-json" - ], - "tags": [ - "boilerplates/shared-server/package.json", - "nx/core/package-json" - ], - "tags.npm:private": [ - "boilerplates/shared-server/package.json", - "nx/core/package-json" - ], - "tags.type:boilerplate": [ - "boilerplates/shared-server/package.json", - "nx/core/package-json" - ], - "metadata.targetGroups": [ - "boilerplates/shared-server/package.json", - "nx/core/package-json" - ], - "metadata.targetGroups.NPM Scripts": [ - "boilerplates/shared-server/package.json", - "nx/core/package-json" - ], - "metadata.targetGroups.NPM Scripts.0": [ - "boilerplates/shared-server/package.json", - "nx/core/package-json" - ], - "metadata.targetGroups.NPM Scripts.1": [ - "boilerplates/shared-server/package.json", - "nx/core/package-json" - ], - "metadata.description": [ - "boilerplates/shared-server/package.json", - "nx/core/package-json" - ], - "metadata.js": [ - "boilerplates/shared-server/package.json", - "nx/core/package-json" - ], - "metadata.js.packageName": [ - "boilerplates/shared-server/package.json", - "nx/core/package-json" - ], - "metadata.js.packageVersion": [ - "boilerplates/shared-server/package.json", - "nx/core/package-json" - ], - "metadata.js.packageExports": [ - "boilerplates/shared-server/package.json", - "nx/core/package-json" - ], - "metadata.js.isInPackageManagerWorkspaces": [ - "boilerplates/shared-server/package.json", - "nx/core/package-json" - ], - "targets": [ - "boilerplates/shared-server/package.json", - "nx/core/package-json" - ], - "targets.check-types": [ - "boilerplates/shared-server/package.json", - "nx/core/package-json" - ], - "targets.check-types.executor": [ - "boilerplates/shared-server/package.json", - "nx/core/package-json" - ], - "targets.check-types.options": [ - "boilerplates/shared-server/package.json", - "nx/core/package-json" - ], - "targets.check-types.metadata": [ - "boilerplates/shared-server/package.json", - "nx/core/package-json" - ], - "targets.check-types.options.script": [ - "boilerplates/shared-server/package.json", - "nx/core/package-json" - ], - "targets.check-types.metadata.scriptContent": [ - "boilerplates/shared-server/package.json", - "nx/core/package-json" - ], - "targets.check-types.metadata.runCommand": [ - "boilerplates/shared-server/package.json", - "nx/core/package-json" - ], - "targets.build": [ - "boilerplates/shared-server/package.json", - "nx/core/package-json" - ], - "targets.build.executor": [ - "boilerplates/shared-server/package.json", - "nx/core/package-json" - ], - "targets.build.options": [ - "boilerplates/shared-server/package.json", - "nx/core/package-json" - ], - "targets.build.metadata": [ - "boilerplates/shared-server/package.json", - "nx/core/package-json" - ], - "targets.build.options.script": [ - "boilerplates/shared-server/package.json", - "nx/core/package-json" - ], - "targets.build.metadata.scriptContent": [ - "boilerplates/shared-server/package.json", - "nx/core/package-json" - ], - "targets.build.metadata.runCommand": [ - "boilerplates/shared-server/package.json", - "nx/core/package-json" - ], - "targets.check-types.cache": [ - "nx.json", - "nx/target-defaults" - ], - "targets.check-types.parallelism": [ - "nx.json", - "nx/target-defaults" - ], - "targets.build.cache": [ - "nx.json", - "nx/target-defaults" - ], - "targets.build.dependsOn": [ - "nx.json", - "nx/target-defaults" - ], - "targets.build.inputs": [ - "nx.json", - "nx/target-defaults" - ], - "targets.build.outputs": [ - "nx.json", - "nx/target-defaults" - ], - "targets.build.parallelism": [ - "nx.json", - "nx/target-defaults" - ] - }, - "boilerplates/shared-todo": { - "root": [ - "boilerplates/shared-todo/package.json", - "nx/core/package-json" - ], - "name": [ - "boilerplates/shared-todo/package.json", - "nx/core/package-json" - ], - "tags": [ - "boilerplates/shared-todo/package.json", - "nx/core/package-json" - ], - "tags.npm:private": [ - "boilerplates/shared-todo/package.json", - "nx/core/package-json" - ], - "tags.type:boilerplate": [ - "boilerplates/shared-todo/package.json", - "nx/core/package-json" - ], - "metadata.targetGroups": [ - "boilerplates/shared-todo/package.json", - "nx/core/package-json" - ], - "metadata.targetGroups.NPM Scripts": [ - "boilerplates/shared-todo/package.json", - "nx/core/package-json" - ], - "metadata.targetGroups.NPM Scripts.0": [ - "boilerplates/shared-todo/package.json", - "nx/core/package-json" - ], - "metadata.targetGroups.NPM Scripts.1": [ - "boilerplates/shared-todo/package.json", - "nx/core/package-json" - ], - "metadata.description": [ - "boilerplates/shared-todo/package.json", - "nx/core/package-json" - ], - "metadata.js": [ - "boilerplates/shared-todo/package.json", - "nx/core/package-json" - ], - "metadata.js.packageName": [ - "boilerplates/shared-todo/package.json", - "nx/core/package-json" - ], - "metadata.js.packageVersion": [ - "boilerplates/shared-todo/package.json", - "nx/core/package-json" - ], - "metadata.js.packageExports": [ - "boilerplates/shared-todo/package.json", - "nx/core/package-json" - ], - "metadata.js.isInPackageManagerWorkspaces": [ - "boilerplates/shared-todo/package.json", - "nx/core/package-json" - ], - "targets": [ - "boilerplates/shared-todo/package.json", - "nx/core/package-json" - ], - "targets.check-types": [ - "boilerplates/shared-todo/package.json", - "nx/core/package-json" - ], - "targets.check-types.executor": [ - "boilerplates/shared-todo/package.json", - "nx/core/package-json" - ], - "targets.check-types.options": [ - "boilerplates/shared-todo/package.json", - "nx/core/package-json" - ], - "targets.check-types.metadata": [ - "boilerplates/shared-todo/package.json", - "nx/core/package-json" - ], - "targets.check-types.options.script": [ - "boilerplates/shared-todo/package.json", - "nx/core/package-json" - ], - "targets.check-types.metadata.scriptContent": [ - "boilerplates/shared-todo/package.json", - "nx/core/package-json" - ], - "targets.check-types.metadata.runCommand": [ - "boilerplates/shared-todo/package.json", - "nx/core/package-json" - ], - "targets.build": [ - "boilerplates/shared-todo/package.json", - "nx/core/package-json" - ], - "targets.build.executor": [ - "boilerplates/shared-todo/package.json", - "nx/core/package-json" - ], - "targets.build.options": [ - "boilerplates/shared-todo/package.json", - "nx/core/package-json" - ], - "targets.build.metadata": [ - "boilerplates/shared-todo/package.json", - "nx/core/package-json" - ], - "targets.build.options.script": [ - "boilerplates/shared-todo/package.json", - "nx/core/package-json" - ], - "targets.build.metadata.scriptContent": [ - "boilerplates/shared-todo/package.json", - "nx/core/package-json" - ], - "targets.build.metadata.runCommand": [ - "boilerplates/shared-todo/package.json", - "nx/core/package-json" - ], - "targets.check-types.cache": [ - "nx.json", - "nx/target-defaults" - ], - "targets.check-types.parallelism": [ - "nx.json", - "nx/target-defaults" - ], - "targets.build.cache": [ - "nx.json", - "nx/target-defaults" - ], - "targets.build.dependsOn": [ - "nx.json", - "nx/target-defaults" - ], - "targets.build.inputs": [ - "nx.json", - "nx/target-defaults" - ], - "targets.build.outputs": [ - "nx.json", - "nx/target-defaults" - ], - "targets.build.parallelism": [ - "nx.json", - "nx/target-defaults" - ] - }, - "boilerplates/solid": { - "root": [ - "boilerplates/solid/package.json", - "nx/core/package-json" - ], - "name": [ - "boilerplates/solid/package.json", - "nx/core/package-json" - ], - "tags": [ - "boilerplates/solid/package.json", - "nx/core/package-json" - ], - "tags.npm:private": [ - "boilerplates/solid/package.json", - "nx/core/package-json" - ], - "tags.type:boilerplate": [ - "boilerplates/solid/package.json", - "nx/core/package-json" - ], - "metadata.targetGroups": [ - "boilerplates/solid/package.json", - "nx/core/package-json" - ], - "metadata.targetGroups.NPM Scripts": [ - "boilerplates/solid/package.json", - "nx/core/package-json" - ], - "metadata.targetGroups.NPM Scripts.0": [ - "boilerplates/solid/package.json", - "nx/core/package-json" - ], - "metadata.targetGroups.NPM Scripts.1": [ - "boilerplates/solid/package.json", - "nx/core/package-json" - ], - "metadata.description": [ - "boilerplates/solid/package.json", - "nx/core/package-json" - ], - "metadata.js": [ - "boilerplates/solid/package.json", - "nx/core/package-json" - ], - "metadata.js.packageName": [ - "boilerplates/solid/package.json", - "nx/core/package-json" - ], - "metadata.js.packageVersion": [ - "boilerplates/solid/package.json", - "nx/core/package-json" - ], - "metadata.js.packageExports": [ - "boilerplates/solid/package.json", - "nx/core/package-json" - ], - "metadata.js.isInPackageManagerWorkspaces": [ - "boilerplates/solid/package.json", - "nx/core/package-json" - ], - "targets": [ - "boilerplates/solid/package.json", - "nx/core/package-json" - ], - "targets.check-types": [ - "boilerplates/solid/package.json", - "nx/core/package-json" - ], - "targets.check-types.executor": [ - "boilerplates/solid/package.json", - "nx/core/package-json" - ], - "targets.check-types.options": [ - "boilerplates/solid/package.json", - "nx/core/package-json" - ], - "targets.check-types.metadata": [ - "boilerplates/solid/package.json", - "nx/core/package-json" - ], - "targets.check-types.options.script": [ - "boilerplates/solid/package.json", - "nx/core/package-json" - ], - "targets.check-types.metadata.scriptContent": [ - "boilerplates/solid/package.json", - "nx/core/package-json" - ], - "targets.check-types.metadata.runCommand": [ - "boilerplates/solid/package.json", - "nx/core/package-json" - ], - "targets.build": [ - "boilerplates/solid/package.json", - "nx/core/package-json" - ], - "targets.build.executor": [ - "boilerplates/solid/package.json", - "nx/core/package-json" - ], - "targets.build.options": [ - "boilerplates/solid/package.json", - "nx/core/package-json" - ], - "targets.build.metadata": [ - "boilerplates/solid/package.json", - "nx/core/package-json" - ], - "targets.build.options.script": [ - "boilerplates/solid/package.json", - "nx/core/package-json" - ], - "targets.build.metadata.scriptContent": [ - "boilerplates/solid/package.json", - "nx/core/package-json" - ], - "targets.build.metadata.runCommand": [ - "boilerplates/solid/package.json", - "nx/core/package-json" - ], - "targets.check-types.cache": [ - "nx.json", - "nx/target-defaults" - ], - "targets.check-types.parallelism": [ - "nx.json", - "nx/target-defaults" - ], - "targets.build.cache": [ - "nx.json", - "nx/target-defaults" - ], - "targets.build.dependsOn": [ - "nx.json", - "nx/target-defaults" - ], - "targets.build.inputs": [ - "nx.json", - "nx/target-defaults" - ], - "targets.build.outputs": [ - "nx.json", - "nx/target-defaults" - ], - "targets.build.parallelism": [ - "nx.json", - "nx/target-defaults" - ] - }, - "boilerplates/solid-sentry": { - "root": [ - "boilerplates/solid-sentry/package.json", - "nx/core/package-json" - ], - "name": [ - "boilerplates/solid-sentry/package.json", - "nx/core/package-json" - ], - "tags": [ - "boilerplates/solid-sentry/package.json", - "nx/core/package-json" - ], - "tags.npm:private": [ - "boilerplates/solid-sentry/package.json", - "nx/core/package-json" - ], - "tags.type:boilerplate": [ - "boilerplates/solid-sentry/package.json", - "nx/core/package-json" - ], - "metadata.targetGroups": [ - "boilerplates/solid-sentry/package.json", - "nx/core/package-json" - ], - "metadata.targetGroups.NPM Scripts": [ - "boilerplates/solid-sentry/package.json", - "nx/core/package-json" - ], - "metadata.targetGroups.NPM Scripts.0": [ - "boilerplates/solid-sentry/package.json", - "nx/core/package-json" - ], - "metadata.targetGroups.NPM Scripts.1": [ - "boilerplates/solid-sentry/package.json", - "nx/core/package-json" - ], - "metadata.description": [ - "boilerplates/solid-sentry/package.json", - "nx/core/package-json" - ], - "metadata.js": [ - "boilerplates/solid-sentry/package.json", - "nx/core/package-json" - ], - "metadata.js.packageName": [ - "boilerplates/solid-sentry/package.json", - "nx/core/package-json" - ], - "metadata.js.packageVersion": [ - "boilerplates/solid-sentry/package.json", - "nx/core/package-json" - ], - "metadata.js.packageExports": [ - "boilerplates/solid-sentry/package.json", - "nx/core/package-json" - ], - "metadata.js.isInPackageManagerWorkspaces": [ - "boilerplates/solid-sentry/package.json", - "nx/core/package-json" - ], - "targets": [ - "boilerplates/solid-sentry/package.json", - "nx/core/package-json" - ], - "targets.check-types": [ - "boilerplates/solid-sentry/package.json", - "nx/core/package-json" - ], - "targets.check-types.executor": [ - "boilerplates/solid-sentry/package.json", - "nx/core/package-json" - ], - "targets.check-types.options": [ - "boilerplates/solid-sentry/package.json", - "nx/core/package-json" - ], - "targets.check-types.metadata": [ - "boilerplates/solid-sentry/package.json", - "nx/core/package-json" - ], - "targets.check-types.options.script": [ - "boilerplates/solid-sentry/package.json", - "nx/core/package-json" - ], - "targets.check-types.metadata.scriptContent": [ - "boilerplates/solid-sentry/package.json", - "nx/core/package-json" - ], - "targets.check-types.metadata.runCommand": [ - "boilerplates/solid-sentry/package.json", - "nx/core/package-json" - ], - "targets.build": [ - "boilerplates/solid-sentry/package.json", - "nx/core/package-json" - ], - "targets.build.executor": [ - "boilerplates/solid-sentry/package.json", - "nx/core/package-json" - ], - "targets.build.options": [ - "boilerplates/solid-sentry/package.json", - "nx/core/package-json" - ], - "targets.build.metadata": [ - "boilerplates/solid-sentry/package.json", - "nx/core/package-json" - ], - "targets.build.options.script": [ - "boilerplates/solid-sentry/package.json", - "nx/core/package-json" - ], - "targets.build.metadata.scriptContent": [ - "boilerplates/solid-sentry/package.json", - "nx/core/package-json" - ], - "targets.build.metadata.runCommand": [ - "boilerplates/solid-sentry/package.json", - "nx/core/package-json" - ], - "targets.check-types.cache": [ - "nx.json", - "nx/target-defaults" - ], - "targets.check-types.parallelism": [ - "nx.json", - "nx/target-defaults" - ], - "targets.build.cache": [ - "nx.json", - "nx/target-defaults" - ], - "targets.build.dependsOn": [ - "nx.json", - "nx/target-defaults" - ], - "targets.build.inputs": [ - "nx.json", - "nx/target-defaults" - ], - "targets.build.outputs": [ - "nx.json", - "nx/target-defaults" - ], - "targets.build.parallelism": [ - "nx.json", - "nx/target-defaults" - ] - }, - "boilerplates/sqlite": { - "root": [ - "boilerplates/sqlite/package.json", - "nx/core/package-json" - ], - "name": [ - "boilerplates/sqlite/package.json", - "nx/core/package-json" - ], - "tags": [ - "boilerplates/sqlite/package.json", - "nx/core/package-json" - ], - "tags.npm:private": [ - "boilerplates/sqlite/package.json", - "nx/core/package-json" - ], - "tags.type:boilerplate": [ - "boilerplates/sqlite/package.json", - "nx/core/package-json" - ], - "metadata.targetGroups": [ - "boilerplates/sqlite/package.json", - "nx/core/package-json" - ], - "metadata.targetGroups.NPM Scripts": [ - "boilerplates/sqlite/package.json", - "nx/core/package-json" - ], - "metadata.targetGroups.NPM Scripts.0": [ - "boilerplates/sqlite/package.json", - "nx/core/package-json" - ], - "metadata.targetGroups.NPM Scripts.1": [ - "boilerplates/sqlite/package.json", - "nx/core/package-json" - ], - "metadata.description": [ - "boilerplates/sqlite/package.json", - "nx/core/package-json" - ], - "metadata.js": [ - "boilerplates/sqlite/package.json", - "nx/core/package-json" - ], - "metadata.js.packageName": [ - "boilerplates/sqlite/package.json", - "nx/core/package-json" - ], - "metadata.js.packageVersion": [ - "boilerplates/sqlite/package.json", - "nx/core/package-json" - ], - "metadata.js.packageExports": [ - "boilerplates/sqlite/package.json", - "nx/core/package-json" - ], - "metadata.js.isInPackageManagerWorkspaces": [ - "boilerplates/sqlite/package.json", - "nx/core/package-json" - ], - "targets": [ - "boilerplates/sqlite/package.json", - "nx/core/package-json" - ], - "targets.check-types": [ - "boilerplates/sqlite/package.json", - "nx/core/package-json" - ], - "targets.check-types.executor": [ - "boilerplates/sqlite/package.json", - "nx/core/package-json" - ], - "targets.check-types.options": [ - "boilerplates/sqlite/package.json", - "nx/core/package-json" - ], - "targets.check-types.metadata": [ - "boilerplates/sqlite/package.json", - "nx/core/package-json" - ], - "targets.check-types.options.script": [ - "boilerplates/sqlite/package.json", - "nx/core/package-json" - ], - "targets.check-types.metadata.scriptContent": [ - "boilerplates/sqlite/package.json", - "nx/core/package-json" - ], - "targets.check-types.metadata.runCommand": [ - "boilerplates/sqlite/package.json", - "nx/core/package-json" - ], - "targets.build": [ - "boilerplates/sqlite/package.json", - "nx/core/package-json" - ], - "targets.build.executor": [ - "boilerplates/sqlite/package.json", - "nx/core/package-json" - ], - "targets.build.options": [ - "boilerplates/sqlite/package.json", - "nx/core/package-json" - ], - "targets.build.metadata": [ - "boilerplates/sqlite/package.json", - "nx/core/package-json" - ], - "targets.build.options.script": [ - "boilerplates/sqlite/package.json", - "nx/core/package-json" - ], - "targets.build.metadata.scriptContent": [ - "boilerplates/sqlite/package.json", - "nx/core/package-json" - ], - "targets.build.metadata.runCommand": [ - "boilerplates/sqlite/package.json", - "nx/core/package-json" - ], - "targets.check-types.cache": [ - "nx.json", - "nx/target-defaults" - ], - "targets.check-types.parallelism": [ - "nx.json", - "nx/target-defaults" - ], - "targets.build.cache": [ - "nx.json", - "nx/target-defaults" - ], - "targets.build.dependsOn": [ - "nx.json", - "nx/target-defaults" - ], - "targets.build.inputs": [ - "nx.json", - "nx/target-defaults" - ], - "targets.build.outputs": [ - "nx.json", - "nx/target-defaults" - ], - "targets.build.parallelism": [ - "nx.json", - "nx/target-defaults" - ] - }, - "boilerplates/storybook": { - "root": [ - "boilerplates/storybook/package.json", - "nx/core/package-json" - ], - "name": [ - "boilerplates/storybook/package.json", - "nx/core/package-json" - ], - "tags": [ - "boilerplates/storybook/package.json", - "nx/core/package-json" - ], - "tags.npm:private": [ - "boilerplates/storybook/package.json", - "nx/core/package-json" - ], - "tags.type:boilerplate": [ - "boilerplates/storybook/package.json", - "nx/core/package-json" - ], - "metadata.targetGroups": [ - "boilerplates/storybook/package.json", - "nx/core/package-json" - ], - "metadata.targetGroups.NPM Scripts": [ - "boilerplates/storybook/package.json", - "nx/core/package-json" - ], - "metadata.targetGroups.NPM Scripts.0": [ - "boilerplates/storybook/package.json", - "nx/core/package-json" - ], - "metadata.targetGroups.NPM Scripts.1": [ - "boilerplates/storybook/package.json", - "nx/core/package-json" - ], - "metadata.description": [ - "boilerplates/storybook/package.json", - "nx/core/package-json" - ], - "metadata.js": [ - "boilerplates/storybook/package.json", - "nx/core/package-json" - ], - "metadata.js.packageName": [ - "boilerplates/storybook/package.json", - "nx/core/package-json" - ], - "metadata.js.packageVersion": [ - "boilerplates/storybook/package.json", - "nx/core/package-json" - ], - "metadata.js.isInPackageManagerWorkspaces": [ - "boilerplates/storybook/package.json", - "nx/core/package-json" - ], - "targets": [ - "boilerplates/storybook/package.json", - "nx/core/package-json" - ], - "targets.check-types": [ - "boilerplates/storybook/package.json", - "nx/core/package-json" - ], - "targets.check-types.executor": [ - "boilerplates/storybook/package.json", - "nx/core/package-json" - ], - "targets.check-types.options": [ - "boilerplates/storybook/package.json", - "nx/core/package-json" - ], - "targets.check-types.metadata": [ - "boilerplates/storybook/package.json", - "nx/core/package-json" - ], - "targets.check-types.options.script": [ - "boilerplates/storybook/package.json", - "nx/core/package-json" - ], - "targets.check-types.metadata.scriptContent": [ - "boilerplates/storybook/package.json", - "nx/core/package-json" - ], - "targets.check-types.metadata.runCommand": [ - "boilerplates/storybook/package.json", - "nx/core/package-json" - ], - "targets.build": [ - "boilerplates/storybook/package.json", - "nx/core/package-json" - ], - "targets.build.executor": [ - "boilerplates/storybook/package.json", - "nx/core/package-json" - ], - "targets.build.options": [ - "boilerplates/storybook/package.json", - "nx/core/package-json" - ], - "targets.build.metadata": [ - "boilerplates/storybook/package.json", - "nx/core/package-json" - ], - "targets.build.options.script": [ - "boilerplates/storybook/package.json", - "nx/core/package-json" - ], - "targets.build.metadata.scriptContent": [ - "boilerplates/storybook/package.json", - "nx/core/package-json" - ], - "targets.build.metadata.runCommand": [ - "boilerplates/storybook/package.json", - "nx/core/package-json" - ], - "targets.check-types.cache": [ - "nx.json", - "nx/target-defaults" - ], - "targets.check-types.parallelism": [ - "nx.json", - "nx/target-defaults" - ], - "targets.build.cache": [ - "nx.json", - "nx/target-defaults" - ], - "targets.build.dependsOn": [ - "nx.json", - "nx/target-defaults" - ], - "targets.build.inputs": [ - "nx.json", - "nx/target-defaults" - ], - "targets.build.outputs": [ - "nx.json", - "nx/target-defaults" - ], - "targets.build.parallelism": [ - "nx.json", - "nx/target-defaults" - ] - }, - "boilerplates/tailwindcss": { - "root": [ - "boilerplates/tailwindcss/package.json", - "nx/core/package-json" - ], - "name": [ - "boilerplates/tailwindcss/package.json", - "nx/core/package-json" - ], - "tags": [ - "boilerplates/tailwindcss/package.json", - "nx/core/package-json" - ], - "tags.npm:private": [ - "boilerplates/tailwindcss/package.json", - "nx/core/package-json" - ], - "tags.type:boilerplate": [ - "boilerplates/tailwindcss/package.json", - "nx/core/package-json" - ], - "metadata.targetGroups": [ - "boilerplates/tailwindcss/package.json", - "nx/core/package-json" - ], - "metadata.targetGroups.NPM Scripts": [ - "boilerplates/tailwindcss/package.json", - "nx/core/package-json" - ], - "metadata.targetGroups.NPM Scripts.0": [ - "boilerplates/tailwindcss/package.json", - "nx/core/package-json" - ], - "metadata.targetGroups.NPM Scripts.1": [ - "boilerplates/tailwindcss/package.json", - "nx/core/package-json" - ], - "metadata.description": [ - "boilerplates/tailwindcss/package.json", - "nx/core/package-json" - ], - "metadata.js": [ - "boilerplates/tailwindcss/package.json", - "nx/core/package-json" - ], - "metadata.js.packageName": [ - "boilerplates/tailwindcss/package.json", - "nx/core/package-json" - ], - "metadata.js.packageVersion": [ - "boilerplates/tailwindcss/package.json", - "nx/core/package-json" - ], - "metadata.js.isInPackageManagerWorkspaces": [ - "boilerplates/tailwindcss/package.json", - "nx/core/package-json" - ], - "targets": [ - "boilerplates/tailwindcss/package.json", - "nx/core/package-json" - ], - "targets.check-types": [ - "boilerplates/tailwindcss/package.json", - "nx/core/package-json" - ], - "targets.check-types.executor": [ - "boilerplates/tailwindcss/package.json", - "nx/core/package-json" - ], - "targets.check-types.options": [ - "boilerplates/tailwindcss/package.json", - "nx/core/package-json" - ], - "targets.check-types.metadata": [ - "boilerplates/tailwindcss/package.json", - "nx/core/package-json" - ], - "targets.check-types.options.script": [ - "boilerplates/tailwindcss/package.json", - "nx/core/package-json" - ], - "targets.check-types.metadata.scriptContent": [ - "boilerplates/tailwindcss/package.json", - "nx/core/package-json" - ], - "targets.check-types.metadata.runCommand": [ - "boilerplates/tailwindcss/package.json", - "nx/core/package-json" - ], - "targets.build": [ - "boilerplates/tailwindcss/package.json", - "nx/core/package-json" - ], - "targets.build.executor": [ - "boilerplates/tailwindcss/package.json", - "nx/core/package-json" - ], - "targets.build.options": [ - "boilerplates/tailwindcss/package.json", - "nx/core/package-json" - ], - "targets.build.metadata": [ - "boilerplates/tailwindcss/package.json", - "nx/core/package-json" - ], - "targets.build.options.script": [ - "boilerplates/tailwindcss/package.json", - "nx/core/package-json" - ], - "targets.build.metadata.scriptContent": [ - "boilerplates/tailwindcss/package.json", - "nx/core/package-json" - ], - "targets.build.metadata.runCommand": [ - "boilerplates/tailwindcss/package.json", - "nx/core/package-json" - ], - "targets.check-types.cache": [ - "nx.json", - "nx/target-defaults" - ], - "targets.check-types.parallelism": [ - "nx.json", - "nx/target-defaults" - ], - "targets.build.cache": [ - "nx.json", - "nx/target-defaults" - ], - "targets.build.dependsOn": [ - "nx.json", - "nx/target-defaults" - ], - "targets.build.inputs": [ - "nx.json", - "nx/target-defaults" - ], - "targets.build.outputs": [ - "nx.json", - "nx/target-defaults" - ], - "targets.build.parallelism": [ - "nx.json", - "nx/target-defaults" - ] - }, - "boilerplates/telefunc": { - "root": [ - "boilerplates/telefunc/package.json", - "nx/core/package-json" - ], - "name": [ - "boilerplates/telefunc/package.json", - "nx/core/package-json" - ], - "tags": [ - "boilerplates/telefunc/package.json", - "nx/core/package-json" - ], - "tags.npm:private": [ - "boilerplates/telefunc/package.json", - "nx/core/package-json" - ], - "tags.type:boilerplate": [ - "boilerplates/telefunc/package.json", - "nx/core/package-json" - ], - "metadata.targetGroups": [ - "boilerplates/telefunc/package.json", - "nx/core/package-json" - ], - "metadata.targetGroups.NPM Scripts": [ - "boilerplates/telefunc/package.json", - "nx/core/package-json" - ], - "metadata.targetGroups.NPM Scripts.0": [ - "boilerplates/telefunc/package.json", - "nx/core/package-json" - ], - "metadata.targetGroups.NPM Scripts.1": [ - "boilerplates/telefunc/package.json", - "nx/core/package-json" - ], - "metadata.description": [ - "boilerplates/telefunc/package.json", - "nx/core/package-json" - ], - "metadata.js": [ - "boilerplates/telefunc/package.json", - "nx/core/package-json" - ], - "metadata.js.packageName": [ - "boilerplates/telefunc/package.json", - "nx/core/package-json" - ], - "metadata.js.packageVersion": [ - "boilerplates/telefunc/package.json", - "nx/core/package-json" - ], - "metadata.js.packageExports": [ - "boilerplates/telefunc/package.json", - "nx/core/package-json" - ], - "metadata.js.isInPackageManagerWorkspaces": [ - "boilerplates/telefunc/package.json", - "nx/core/package-json" - ], - "targets": [ - "boilerplates/telefunc/package.json", - "nx/core/package-json" - ], - "targets.check-types": [ - "boilerplates/telefunc/package.json", - "nx/core/package-json" - ], - "targets.check-types.executor": [ - "boilerplates/telefunc/package.json", - "nx/core/package-json" - ], - "targets.check-types.options": [ - "boilerplates/telefunc/package.json", - "nx/core/package-json" - ], - "targets.check-types.metadata": [ - "boilerplates/telefunc/package.json", - "nx/core/package-json" - ], - "targets.check-types.options.script": [ - "boilerplates/telefunc/package.json", - "nx/core/package-json" - ], - "targets.check-types.metadata.scriptContent": [ - "boilerplates/telefunc/package.json", - "nx/core/package-json" - ], - "targets.check-types.metadata.runCommand": [ - "boilerplates/telefunc/package.json", - "nx/core/package-json" - ], - "targets.build": [ - "boilerplates/telefunc/package.json", - "nx/core/package-json" - ], - "targets.build.executor": [ - "boilerplates/telefunc/package.json", - "nx/core/package-json" - ], - "targets.build.options": [ - "boilerplates/telefunc/package.json", - "nx/core/package-json" - ], - "targets.build.metadata": [ - "boilerplates/telefunc/package.json", - "nx/core/package-json" - ], - "targets.build.options.script": [ - "boilerplates/telefunc/package.json", - "nx/core/package-json" - ], - "targets.build.metadata.scriptContent": [ - "boilerplates/telefunc/package.json", - "nx/core/package-json" - ], - "targets.build.metadata.runCommand": [ - "boilerplates/telefunc/package.json", - "nx/core/package-json" - ], - "targets.check-types.cache": [ - "nx.json", - "nx/target-defaults" - ], - "targets.check-types.parallelism": [ - "nx.json", - "nx/target-defaults" - ], - "targets.build.cache": [ - "nx.json", - "nx/target-defaults" - ], - "targets.build.dependsOn": [ - "nx.json", - "nx/target-defaults" - ], - "targets.build.inputs": [ - "nx.json", - "nx/target-defaults" - ], - "targets.build.outputs": [ - "nx.json", - "nx/target-defaults" - ], - "targets.build.parallelism": [ - "nx.json", - "nx/target-defaults" - ] - }, - "boilerplates/trpc": { - "root": [ - "boilerplates/trpc/package.json", - "nx/core/package-json" - ], - "name": [ - "boilerplates/trpc/package.json", - "nx/core/package-json" - ], - "tags": [ - "boilerplates/trpc/package.json", - "nx/core/package-json" - ], - "tags.npm:private": [ - "boilerplates/trpc/package.json", - "nx/core/package-json" - ], - "tags.type:boilerplate": [ - "boilerplates/trpc/package.json", - "nx/core/package-json" - ], - "metadata.targetGroups": [ - "boilerplates/trpc/package.json", - "nx/core/package-json" - ], - "metadata.targetGroups.NPM Scripts": [ - "boilerplates/trpc/package.json", - "nx/core/package-json" - ], - "metadata.targetGroups.NPM Scripts.0": [ - "boilerplates/trpc/package.json", - "nx/core/package-json" - ], - "metadata.targetGroups.NPM Scripts.1": [ - "boilerplates/trpc/package.json", - "nx/core/package-json" - ], - "metadata.description": [ - "boilerplates/trpc/package.json", - "nx/core/package-json" - ], - "metadata.js": [ - "boilerplates/trpc/package.json", - "nx/core/package-json" - ], - "metadata.js.packageName": [ - "boilerplates/trpc/package.json", - "nx/core/package-json" - ], - "metadata.js.packageVersion": [ - "boilerplates/trpc/package.json", - "nx/core/package-json" - ], - "metadata.js.packageExports": [ - "boilerplates/trpc/package.json", - "nx/core/package-json" - ], - "metadata.js.isInPackageManagerWorkspaces": [ - "boilerplates/trpc/package.json", - "nx/core/package-json" - ], - "targets": [ - "boilerplates/trpc/package.json", - "nx/core/package-json" - ], - "targets.check-types": [ - "boilerplates/trpc/package.json", - "nx/core/package-json" - ], - "targets.check-types.executor": [ - "boilerplates/trpc/package.json", - "nx/core/package-json" - ], - "targets.check-types.options": [ - "boilerplates/trpc/package.json", - "nx/core/package-json" - ], - "targets.check-types.metadata": [ - "boilerplates/trpc/package.json", - "nx/core/package-json" - ], - "targets.check-types.options.script": [ - "boilerplates/trpc/package.json", - "nx/core/package-json" - ], - "targets.check-types.metadata.scriptContent": [ - "boilerplates/trpc/package.json", - "nx/core/package-json" - ], - "targets.check-types.metadata.runCommand": [ - "boilerplates/trpc/package.json", - "nx/core/package-json" - ], - "targets.build": [ - "boilerplates/trpc/package.json", - "nx/core/package-json" - ], - "targets.build.executor": [ - "boilerplates/trpc/package.json", - "nx/core/package-json" - ], - "targets.build.options": [ - "boilerplates/trpc/package.json", - "nx/core/package-json" - ], - "targets.build.metadata": [ - "boilerplates/trpc/package.json", - "nx/core/package-json" - ], - "targets.build.options.script": [ - "boilerplates/trpc/package.json", - "nx/core/package-json" - ], - "targets.build.metadata.scriptContent": [ - "boilerplates/trpc/package.json", - "nx/core/package-json" - ], - "targets.build.metadata.runCommand": [ - "boilerplates/trpc/package.json", - "nx/core/package-json" - ], - "targets.check-types.cache": [ - "nx.json", - "nx/target-defaults" - ], - "targets.check-types.parallelism": [ - "nx.json", - "nx/target-defaults" - ], - "targets.build.cache": [ - "nx.json", - "nx/target-defaults" - ], - "targets.build.dependsOn": [ - "nx.json", - "nx/target-defaults" - ], - "targets.build.inputs": [ - "nx.json", - "nx/target-defaults" - ], - "targets.build.outputs": [ - "nx.json", - "nx/target-defaults" - ], - "targets.build.parallelism": [ - "nx.json", - "nx/target-defaults" - ] - }, - "boilerplates/ts-rest": { - "root": [ - "boilerplates/ts-rest/package.json", - "nx/core/package-json" - ], - "name": [ - "boilerplates/ts-rest/package.json", - "nx/core/package-json" - ], - "tags": [ - "boilerplates/ts-rest/package.json", - "nx/core/package-json" - ], - "tags.npm:private": [ - "boilerplates/ts-rest/package.json", - "nx/core/package-json" - ], - "tags.type:boilerplate": [ - "boilerplates/ts-rest/package.json", - "nx/core/package-json" - ], - "metadata.targetGroups": [ - "boilerplates/ts-rest/package.json", - "nx/core/package-json" - ], - "metadata.targetGroups.NPM Scripts": [ - "boilerplates/ts-rest/package.json", - "nx/core/package-json" - ], - "metadata.targetGroups.NPM Scripts.0": [ - "boilerplates/ts-rest/package.json", - "nx/core/package-json" - ], - "metadata.targetGroups.NPM Scripts.1": [ - "boilerplates/ts-rest/package.json", - "nx/core/package-json" - ], - "metadata.description": [ - "boilerplates/ts-rest/package.json", - "nx/core/package-json" - ], - "metadata.js": [ - "boilerplates/ts-rest/package.json", - "nx/core/package-json" - ], - "metadata.js.packageName": [ - "boilerplates/ts-rest/package.json", - "nx/core/package-json" - ], - "metadata.js.packageVersion": [ - "boilerplates/ts-rest/package.json", - "nx/core/package-json" - ], - "metadata.js.packageExports": [ - "boilerplates/ts-rest/package.json", - "nx/core/package-json" - ], - "metadata.js.isInPackageManagerWorkspaces": [ - "boilerplates/ts-rest/package.json", - "nx/core/package-json" - ], - "targets": [ - "boilerplates/ts-rest/package.json", - "nx/core/package-json" - ], - "targets.check-types": [ - "boilerplates/ts-rest/package.json", - "nx/core/package-json" - ], - "targets.check-types.executor": [ - "boilerplates/ts-rest/package.json", - "nx/core/package-json" - ], - "targets.check-types.options": [ - "boilerplates/ts-rest/package.json", - "nx/core/package-json" - ], - "targets.check-types.metadata": [ - "boilerplates/ts-rest/package.json", - "nx/core/package-json" - ], - "targets.check-types.options.script": [ - "boilerplates/ts-rest/package.json", - "nx/core/package-json" - ], - "targets.check-types.metadata.scriptContent": [ - "boilerplates/ts-rest/package.json", - "nx/core/package-json" - ], - "targets.check-types.metadata.runCommand": [ - "boilerplates/ts-rest/package.json", - "nx/core/package-json" - ], - "targets.build": [ - "boilerplates/ts-rest/package.json", - "nx/core/package-json" - ], - "targets.build.executor": [ - "boilerplates/ts-rest/package.json", - "nx/core/package-json" - ], - "targets.build.options": [ - "boilerplates/ts-rest/package.json", - "nx/core/package-json" - ], - "targets.build.metadata": [ - "boilerplates/ts-rest/package.json", - "nx/core/package-json" - ], - "targets.build.options.script": [ - "boilerplates/ts-rest/package.json", - "nx/core/package-json" - ], - "targets.build.metadata.scriptContent": [ - "boilerplates/ts-rest/package.json", - "nx/core/package-json" - ], - "targets.build.metadata.runCommand": [ - "boilerplates/ts-rest/package.json", - "nx/core/package-json" - ], - "targets.check-types.cache": [ - "nx.json", - "nx/target-defaults" - ], - "targets.check-types.parallelism": [ - "nx.json", - "nx/target-defaults" - ], - "targets.build.cache": [ - "nx.json", - "nx/target-defaults" - ], - "targets.build.dependsOn": [ - "nx.json", - "nx/target-defaults" - ], - "targets.build.inputs": [ - "nx.json", - "nx/target-defaults" - ], - "targets.build.outputs": [ - "nx.json", - "nx/target-defaults" - ], - "targets.build.parallelism": [ - "nx.json", - "nx/target-defaults" - ] - }, - "boilerplates/vercel": { - "root": [ - "boilerplates/vercel/package.json", - "nx/core/package-json" - ], - "name": [ - "boilerplates/vercel/package.json", - "nx/core/package-json" - ], - "tags": [ - "boilerplates/vercel/package.json", - "nx/core/package-json" - ], - "tags.npm:private": [ - "boilerplates/vercel/package.json", - "nx/core/package-json" - ], - "tags.type:boilerplate": [ - "boilerplates/vercel/package.json", - "nx/core/package-json" - ], - "metadata.targetGroups": [ - "boilerplates/vercel/package.json", - "nx/core/package-json" - ], - "metadata.targetGroups.NPM Scripts": [ - "boilerplates/vercel/package.json", - "nx/core/package-json" - ], - "metadata.targetGroups.NPM Scripts.0": [ - "boilerplates/vercel/package.json", - "nx/core/package-json" - ], - "metadata.targetGroups.NPM Scripts.1": [ - "boilerplates/vercel/package.json", - "nx/core/package-json" - ], - "metadata.description": [ - "boilerplates/vercel/package.json", - "nx/core/package-json" - ], - "metadata.js": [ - "boilerplates/vercel/package.json", - "nx/core/package-json" - ], - "metadata.js.packageName": [ - "boilerplates/vercel/package.json", - "nx/core/package-json" - ], - "metadata.js.packageVersion": [ - "boilerplates/vercel/package.json", - "nx/core/package-json" - ], - "metadata.js.isInPackageManagerWorkspaces": [ - "boilerplates/vercel/package.json", - "nx/core/package-json" - ], - "targets": [ - "boilerplates/vercel/package.json", - "nx/core/package-json" - ], - "targets.check-types": [ - "boilerplates/vercel/package.json", - "nx/core/package-json" - ], - "targets.check-types.executor": [ - "boilerplates/vercel/package.json", - "nx/core/package-json" - ], - "targets.check-types.options": [ - "boilerplates/vercel/package.json", - "nx/core/package-json" - ], - "targets.check-types.metadata": [ - "boilerplates/vercel/package.json", - "nx/core/package-json" - ], - "targets.check-types.options.script": [ - "boilerplates/vercel/package.json", - "nx/core/package-json" - ], - "targets.check-types.metadata.scriptContent": [ - "boilerplates/vercel/package.json", - "nx/core/package-json" - ], - "targets.check-types.metadata.runCommand": [ - "boilerplates/vercel/package.json", - "nx/core/package-json" - ], - "targets.build": [ - "boilerplates/vercel/package.json", - "nx/core/package-json" - ], - "targets.build.executor": [ - "boilerplates/vercel/package.json", - "nx/core/package-json" - ], - "targets.build.options": [ - "boilerplates/vercel/package.json", - "nx/core/package-json" - ], - "targets.build.metadata": [ - "boilerplates/vercel/package.json", - "nx/core/package-json" - ], - "targets.build.options.script": [ - "boilerplates/vercel/package.json", - "nx/core/package-json" - ], - "targets.build.metadata.scriptContent": [ - "boilerplates/vercel/package.json", - "nx/core/package-json" - ], - "targets.build.metadata.runCommand": [ - "boilerplates/vercel/package.json", - "nx/core/package-json" - ], - "targets.check-types.cache": [ - "nx.json", - "nx/target-defaults" - ], - "targets.check-types.parallelism": [ - "nx.json", - "nx/target-defaults" - ], - "targets.build.cache": [ - "nx.json", - "nx/target-defaults" - ], - "targets.build.dependsOn": [ - "nx.json", - "nx/target-defaults" - ], - "targets.build.inputs": [ - "nx.json", - "nx/target-defaults" - ], - "targets.build.outputs": [ - "nx.json", - "nx/target-defaults" - ], - "targets.build.parallelism": [ - "nx.json", - "nx/target-defaults" - ] - }, - "boilerplates/vue": { - "root": [ - "boilerplates/vue/package.json", - "nx/core/package-json" - ], - "name": [ - "boilerplates/vue/package.json", - "nx/core/package-json" - ], - "tags": [ - "boilerplates/vue/package.json", - "nx/core/package-json" - ], - "tags.npm:private": [ - "boilerplates/vue/package.json", - "nx/core/package-json" - ], - "tags.type:boilerplate": [ - "boilerplates/vue/package.json", - "nx/core/package-json" - ], - "metadata.targetGroups": [ - "boilerplates/vue/package.json", - "nx/core/package-json" - ], - "metadata.targetGroups.NPM Scripts": [ - "boilerplates/vue/package.json", - "nx/core/package-json" - ], - "metadata.targetGroups.NPM Scripts.0": [ - "boilerplates/vue/package.json", - "nx/core/package-json" - ], - "metadata.targetGroups.NPM Scripts.1": [ - "boilerplates/vue/package.json", - "nx/core/package-json" - ], - "metadata.description": [ - "boilerplates/vue/package.json", - "nx/core/package-json" - ], - "metadata.js": [ - "boilerplates/vue/package.json", - "nx/core/package-json" - ], - "metadata.js.packageName": [ - "boilerplates/vue/package.json", - "nx/core/package-json" - ], - "metadata.js.packageVersion": [ - "boilerplates/vue/package.json", - "nx/core/package-json" - ], - "metadata.js.packageExports": [ - "boilerplates/vue/package.json", - "nx/core/package-json" - ], - "metadata.js.isInPackageManagerWorkspaces": [ - "boilerplates/vue/package.json", - "nx/core/package-json" - ], - "targets": [ - "boilerplates/vue/package.json", - "nx/core/package-json" - ], - "targets.check-types": [ - "boilerplates/vue/package.json", - "nx/core/package-json" - ], - "targets.check-types.executor": [ - "boilerplates/vue/package.json", - "nx/core/package-json" - ], - "targets.check-types.options": [ - "boilerplates/vue/package.json", - "nx/core/package-json" - ], - "targets.check-types.metadata": [ - "boilerplates/vue/package.json", - "nx/core/package-json" - ], - "targets.check-types.options.script": [ - "boilerplates/vue/package.json", - "nx/core/package-json" - ], - "targets.check-types.metadata.scriptContent": [ - "boilerplates/vue/package.json", - "nx/core/package-json" - ], - "targets.check-types.metadata.runCommand": [ - "boilerplates/vue/package.json", - "nx/core/package-json" - ], - "targets.build": [ - "boilerplates/vue/package.json", - "nx/core/package-json" - ], - "targets.build.executor": [ - "boilerplates/vue/package.json", - "nx/core/package-json" - ], - "targets.build.options": [ - "boilerplates/vue/package.json", - "nx/core/package-json" - ], - "targets.build.metadata": [ - "boilerplates/vue/package.json", - "nx/core/package-json" - ], - "targets.build.options.script": [ - "boilerplates/vue/package.json", - "nx/core/package-json" - ], - "targets.build.metadata.scriptContent": [ - "boilerplates/vue/package.json", - "nx/core/package-json" - ], - "targets.build.metadata.runCommand": [ - "boilerplates/vue/package.json", - "nx/core/package-json" - ], - "targets.check-types.cache": [ - "nx.json", - "nx/target-defaults" - ], - "targets.check-types.parallelism": [ - "nx.json", - "nx/target-defaults" - ], - "targets.build.cache": [ - "nx.json", - "nx/target-defaults" - ], - "targets.build.dependsOn": [ - "nx.json", - "nx/target-defaults" - ], - "targets.build.inputs": [ - "nx.json", - "nx/target-defaults" - ], - "targets.build.outputs": [ - "nx.json", - "nx/target-defaults" - ], - "targets.build.parallelism": [ - "nx.json", - "nx/target-defaults" - ] - }, - "boilerplates/vue-sentry": { - "root": [ - "boilerplates/vue-sentry/package.json", - "nx/core/package-json" - ], - "name": [ - "boilerplates/vue-sentry/package.json", - "nx/core/package-json" - ], - "tags": [ - "boilerplates/vue-sentry/package.json", - "nx/core/package-json" - ], - "tags.npm:private": [ - "boilerplates/vue-sentry/package.json", - "nx/core/package-json" - ], - "tags.type:boilerplate": [ - "boilerplates/vue-sentry/package.json", - "nx/core/package-json" - ], - "metadata.targetGroups": [ - "boilerplates/vue-sentry/package.json", - "nx/core/package-json" - ], - "metadata.targetGroups.NPM Scripts": [ - "boilerplates/vue-sentry/package.json", - "nx/core/package-json" - ], - "metadata.targetGroups.NPM Scripts.0": [ - "boilerplates/vue-sentry/package.json", - "nx/core/package-json" - ], - "metadata.targetGroups.NPM Scripts.1": [ - "boilerplates/vue-sentry/package.json", - "nx/core/package-json" - ], - "metadata.description": [ - "boilerplates/vue-sentry/package.json", - "nx/core/package-json" - ], - "metadata.js": [ - "boilerplates/vue-sentry/package.json", - "nx/core/package-json" - ], - "metadata.js.packageName": [ - "boilerplates/vue-sentry/package.json", - "nx/core/package-json" - ], - "metadata.js.packageVersion": [ - "boilerplates/vue-sentry/package.json", - "nx/core/package-json" - ], - "metadata.js.packageExports": [ - "boilerplates/vue-sentry/package.json", - "nx/core/package-json" - ], - "metadata.js.isInPackageManagerWorkspaces": [ - "boilerplates/vue-sentry/package.json", - "nx/core/package-json" - ], - "targets": [ - "boilerplates/vue-sentry/package.json", - "nx/core/package-json" - ], - "targets.check-types": [ - "boilerplates/vue-sentry/package.json", - "nx/core/package-json" - ], - "targets.check-types.executor": [ - "boilerplates/vue-sentry/package.json", - "nx/core/package-json" - ], - "targets.check-types.options": [ - "boilerplates/vue-sentry/package.json", - "nx/core/package-json" - ], - "targets.check-types.metadata": [ - "boilerplates/vue-sentry/package.json", - "nx/core/package-json" - ], - "targets.check-types.options.script": [ - "boilerplates/vue-sentry/package.json", - "nx/core/package-json" - ], - "targets.check-types.metadata.scriptContent": [ - "boilerplates/vue-sentry/package.json", - "nx/core/package-json" - ], - "targets.check-types.metadata.runCommand": [ - "boilerplates/vue-sentry/package.json", - "nx/core/package-json" - ], - "targets.build": [ - "boilerplates/vue-sentry/package.json", - "nx/core/package-json" - ], - "targets.build.executor": [ - "boilerplates/vue-sentry/package.json", - "nx/core/package-json" - ], - "targets.build.options": [ - "boilerplates/vue-sentry/package.json", - "nx/core/package-json" - ], - "targets.build.metadata": [ - "boilerplates/vue-sentry/package.json", - "nx/core/package-json" - ], - "targets.build.options.script": [ - "boilerplates/vue-sentry/package.json", - "nx/core/package-json" - ], - "targets.build.metadata.scriptContent": [ - "boilerplates/vue-sentry/package.json", - "nx/core/package-json" - ], - "targets.build.metadata.runCommand": [ - "boilerplates/vue-sentry/package.json", - "nx/core/package-json" - ], - "targets.check-types.cache": [ - "nx.json", - "nx/target-defaults" - ], - "targets.check-types.parallelism": [ - "nx.json", - "nx/target-defaults" - ], - "targets.build.cache": [ - "nx.json", - "nx/target-defaults" - ], - "targets.build.dependsOn": [ - "nx.json", - "nx/target-defaults" - ], - "targets.build.inputs": [ - "nx.json", - "nx/target-defaults" - ], - "targets.build.outputs": [ - "nx.json", - "nx/target-defaults" - ], - "targets.build.parallelism": [ - "nx.json", - "nx/target-defaults" - ] - }, - "packages/batijs": { - "root": [ - "packages/batijs/package.json", - "nx/core/package-json" - ], - "name": [ - "packages/batijs/package.json", - "nx/core/package-json" - ], - "tags": [ - "packages/batijs/package.json", - "nx/core/package-json" - ], - "tags.npm:private": [ - "packages/batijs/package.json", - "nx/core/package-json" - ], - "metadata.targetGroups": [ - "packages/batijs/package.json", - "nx/core/package-json" - ], - "metadata.description": [ - "packages/batijs/package.json", - "nx/core/package-json" - ], - "metadata.js": [ - "packages/batijs/package.json", - "nx/core/package-json" - ], - "metadata.js.packageName": [ - "packages/batijs/package.json", - "nx/core/package-json" - ], - "metadata.js.packageVersion": [ - "packages/batijs/package.json", - "nx/core/package-json" - ], - "metadata.js.isInPackageManagerWorkspaces": [ - "packages/batijs/package.json", - "nx/core/package-json" - ], - "targets": [ - "packages/batijs/package.json", - "nx/core/package-json" - ] - }, - "packages/build": { - "root": [ - "packages/build/package.json", - "nx/core/package-json" - ], - "name": [ - "packages/build/package.json", - "nx/core/package-json" - ], - "tags": [ - "packages/build/package.json", - "nx/core/package-json" - ], - "tags.npm:public": [ - "packages/build/package.json", - "nx/core/package-json" - ], - "metadata.targetGroups": [ - "packages/build/package.json", - "nx/core/package-json" - ], - "metadata.targetGroups.NPM Scripts": [ - "packages/build/package.json", - "nx/core/package-json" - ], - "metadata.targetGroups.NPM Scripts.0": [ - "packages/build/package.json", - "nx/core/package-json" - ], - "metadata.targetGroups.NPM Scripts.1": [ - "packages/build/package.json", - "nx/core/package-json" - ], - "metadata.targetGroups.NPM Scripts.2": [ - "packages/build/package.json", - "nx/core/package-json" - ], - "metadata.description": [ - "packages/build/package.json", - "nx/core/package-json" - ], - "metadata.js": [ - "packages/build/package.json", - "nx/core/package-json" - ], - "metadata.js.packageName": [ - "packages/build/package.json", - "nx/core/package-json" - ], - "metadata.js.packageVersion": [ - "packages/build/package.json", - "nx/core/package-json" - ], - "metadata.js.packageExports": [ - "packages/build/package.json", - "nx/core/package-json" - ], - "metadata.js.packageMain": [ - "packages/build/package.json", - "nx/core/package-json" - ], - "metadata.js.isInPackageManagerWorkspaces": [ - "packages/build/package.json", - "nx/core/package-json" - ], - "targets": [ - "packages/build/package.json", - "nx/core/package-json" - ], - "targets.check-types": [ - "packages/build/package.json", - "nx/core/package-json" - ], - "targets.check-types.executor": [ - "packages/build/package.json", - "nx/core/package-json" - ], - "targets.check-types.options": [ - "packages/build/package.json", - "nx/core/package-json" - ], - "targets.check-types.metadata": [ - "packages/build/package.json", - "nx/core/package-json" - ], - "targets.check-types.options.script": [ - "packages/build/package.json", - "nx/core/package-json" - ], - "targets.check-types.metadata.scriptContent": [ - "packages/build/package.json", - "nx/core/package-json" - ], - "targets.check-types.metadata.runCommand": [ - "packages/build/package.json", - "nx/core/package-json" - ], - "targets.prepublishOnly": [ - "packages/build/package.json", - "nx/core/package-json" - ], - "targets.prepublishOnly.executor": [ - "packages/build/package.json", - "nx/core/package-json" - ], - "targets.prepublishOnly.options": [ - "packages/build/package.json", - "nx/core/package-json" - ], - "targets.prepublishOnly.metadata": [ - "packages/build/package.json", - "nx/core/package-json" - ], - "targets.prepublishOnly.options.script": [ - "packages/build/package.json", - "nx/core/package-json" - ], - "targets.prepublishOnly.metadata.scriptContent": [ - "packages/build/package.json", - "nx/core/package-json" - ], - "targets.prepublishOnly.metadata.runCommand": [ - "packages/build/package.json", - "nx/core/package-json" - ], - "targets.build": [ - "packages/build/package.json", - "nx/core/package-json" - ], - "targets.build.executor": [ - "packages/build/package.json", - "nx/core/package-json" - ], - "targets.build.options": [ - "packages/build/package.json", - "nx/core/package-json" - ], - "targets.build.metadata": [ - "packages/build/package.json", - "nx/core/package-json" - ], - "targets.build.options.script": [ - "packages/build/package.json", - "nx/core/package-json" - ], - "targets.build.metadata.scriptContent": [ - "packages/build/package.json", - "nx/core/package-json" - ], - "targets.build.metadata.runCommand": [ - "packages/build/package.json", - "nx/core/package-json" - ], - "targets.check-types.cache": [ - "nx.json", - "nx/target-defaults" - ], - "targets.check-types.parallelism": [ - "nx.json", - "nx/target-defaults" - ], - "targets.build.cache": [ - "nx.json", - "nx/target-defaults" - ], - "targets.build.dependsOn": [ - "nx.json", - "nx/target-defaults" - ], - "targets.build.inputs": [ - "nx.json", - "nx/target-defaults" - ], - "targets.build.outputs": [ - "nx.json", - "nx/target-defaults" - ], - "targets.build.parallelism": [ - "nx.json", - "nx/target-defaults" - ] - }, - "packages/cli": { - "root": [ - "packages/cli/project.json", - "nx/core/project-json" - ], - "name": [ - "packages/cli/project.json", - "nx/core/project-json" - ], - "tags": [ - "packages/cli/package.json", - "nx/core/package-json" - ], - "tags.npm:public": [ - "packages/cli/package.json", - "nx/core/package-json" - ], - "metadata.targetGroups": [ - "packages/cli/package.json", - "nx/core/package-json" - ], - "metadata.targetGroups.NPM Scripts": [ - "packages/cli/package.json", - "nx/core/package-json" - ], - "metadata.targetGroups.NPM Scripts.0": [ - "packages/cli/package.json", - "nx/core/package-json" - ], - "metadata.targetGroups.NPM Scripts.1": [ - "packages/cli/package.json", - "nx/core/package-json" - ], - "metadata.targetGroups.NPM Scripts.2": [ - "packages/cli/package.json", - "nx/core/package-json" - ], - "metadata.description": [ - "packages/cli/package.json", - "nx/core/package-json" - ], - "metadata.js": [ - "packages/cli/package.json", - "nx/core/package-json" - ], - "metadata.js.packageName": [ - "packages/cli/package.json", - "nx/core/package-json" - ], - "metadata.js.packageVersion": [ - "packages/cli/package.json", - "nx/core/package-json" - ], - "metadata.js.packageExports": [ - "packages/cli/package.json", - "nx/core/package-json" - ], - "metadata.js.isInPackageManagerWorkspaces": [ - "packages/cli/package.json", - "nx/core/package-json" - ], - "targets": [ - "packages/cli/package.json", - "nx/core/package-json" - ], - "targets.check-types": [ - "packages/cli/package.json", - "nx/core/package-json" - ], - "targets.check-types.executor": [ - "packages/cli/package.json", - "nx/core/package-json" - ], - "targets.check-types.options": [ - "packages/cli/package.json", - "nx/core/package-json" - ], - "targets.check-types.metadata": [ - "packages/cli/package.json", - "nx/core/package-json" - ], - "targets.check-types.options.script": [ - "packages/cli/package.json", - "nx/core/package-json" - ], - "targets.check-types.metadata.scriptContent": [ - "packages/cli/package.json", - "nx/core/package-json" - ], - "targets.check-types.metadata.runCommand": [ - "packages/cli/package.json", - "nx/core/package-json" - ], - "targets.prepublishOnly": [ - "packages/cli/package.json", - "nx/core/package-json" - ], - "targets.prepublishOnly.executor": [ - "packages/cli/package.json", - "nx/core/package-json" - ], - "targets.prepublishOnly.options": [ - "packages/cli/package.json", - "nx/core/package-json" - ], - "targets.prepublishOnly.metadata": [ - "packages/cli/package.json", - "nx/core/package-json" - ], - "targets.prepublishOnly.options.script": [ - "packages/cli/package.json", - "nx/core/package-json" - ], - "targets.prepublishOnly.metadata.scriptContent": [ - "packages/cli/package.json", - "nx/core/package-json" - ], - "targets.prepublishOnly.metadata.runCommand": [ - "packages/cli/package.json", - "nx/core/package-json" - ], - "targets.build": [ - "packages/cli/package.json", - "nx/core/package-json" - ], - "targets.build.executor": [ - "packages/cli/package.json", - "nx/core/package-json" - ], - "targets.build.options": [ - "packages/cli/package.json", - "nx/core/package-json" - ], - "targets.build.metadata": [ - "packages/cli/package.json", - "nx/core/package-json" - ], - "targets.build.options.script": [ - "packages/cli/package.json", - "nx/core/package-json" - ], - "targets.build.metadata.scriptContent": [ - "packages/cli/package.json", - "nx/core/package-json" - ], - "targets.build.metadata.runCommand": [ - "packages/cli/package.json", - "nx/core/package-json" - ], - "implicitDependencies": [ - "packages/cli/project.json", - "nx/core/project-json" - ], - "implicitDependencies.tag:type:boilerplate": [ - "packages/cli/project.json", - "nx/core/project-json" - ], - "targets.check-types.cache": [ - "nx.json", - "nx/target-defaults" - ], - "targets.check-types.parallelism": [ - "nx.json", - "nx/target-defaults" - ], - "targets.build.cache": [ - "nx.json", - "nx/target-defaults" - ], - "targets.build.dependsOn": [ - "nx.json", - "nx/target-defaults" - ], - "targets.build.inputs": [ - "nx.json", - "nx/target-defaults" - ], - "targets.build.outputs": [ - "nx.json", - "nx/target-defaults" - ], - "targets.build.parallelism": [ - "nx.json", - "nx/target-defaults" - ] - }, - "packages/compile": { - "root": [ - "packages/compile/package.json", - "nx/core/package-json" - ], - "name": [ - "packages/compile/package.json", - "nx/core/package-json" - ], - "tags": [ - "packages/compile/package.json", - "nx/core/package-json" - ], - "tags.npm:private": [ - "packages/compile/package.json", - "nx/core/package-json" - ], - "metadata.targetGroups": [ - "packages/compile/package.json", - "nx/core/package-json" - ], - "metadata.targetGroups.NPM Scripts": [ - "packages/compile/package.json", - "nx/core/package-json" - ], - "metadata.targetGroups.NPM Scripts.0": [ - "packages/compile/package.json", - "nx/core/package-json" - ], - "metadata.targetGroups.NPM Scripts.1": [ - "packages/compile/package.json", - "nx/core/package-json" - ], - "metadata.targetGroups.NPM Scripts.2": [ - "packages/compile/package.json", - "nx/core/package-json" - ], - "metadata.description": [ - "packages/compile/package.json", - "nx/core/package-json" - ], - "metadata.js": [ - "packages/compile/package.json", - "nx/core/package-json" - ], - "metadata.js.packageName": [ - "packages/compile/package.json", - "nx/core/package-json" - ], - "metadata.js.packageVersion": [ - "packages/compile/package.json", - "nx/core/package-json" - ], - "metadata.js.isInPackageManagerWorkspaces": [ - "packages/compile/package.json", - "nx/core/package-json" - ], - "targets": [ - "packages/compile/package.json", - "nx/core/package-json" - ], - "targets.check-types": [ - "packages/compile/package.json", - "nx/core/package-json" - ], - "targets.check-types.executor": [ - "packages/compile/package.json", - "nx/core/package-json" - ], - "targets.check-types.options": [ - "packages/compile/package.json", - "nx/core/package-json" - ], - "targets.check-types.metadata": [ - "packages/compile/package.json", - "nx/core/package-json" - ], - "targets.check-types.options.script": [ - "packages/compile/package.json", - "nx/core/package-json" - ], - "targets.check-types.metadata.scriptContent": [ - "packages/compile/package.json", - "nx/core/package-json" - ], - "targets.check-types.metadata.runCommand": [ - "packages/compile/package.json", - "nx/core/package-json" - ], - "targets.prepublishOnly": [ - "packages/compile/package.json", - "nx/core/package-json" - ], - "targets.prepublishOnly.executor": [ - "packages/compile/package.json", - "nx/core/package-json" - ], - "targets.prepublishOnly.options": [ - "packages/compile/package.json", - "nx/core/package-json" - ], - "targets.prepublishOnly.metadata": [ - "packages/compile/package.json", - "nx/core/package-json" - ], - "targets.prepublishOnly.options.script": [ - "packages/compile/package.json", - "nx/core/package-json" - ], - "targets.prepublishOnly.metadata.scriptContent": [ - "packages/compile/package.json", - "nx/core/package-json" - ], - "targets.prepublishOnly.metadata.runCommand": [ - "packages/compile/package.json", - "nx/core/package-json" - ], - "targets.build": [ - "packages/compile/package.json", - "nx/core/package-json" - ], - "targets.build.executor": [ - "packages/compile/package.json", - "nx/core/package-json" - ], - "targets.build.options": [ - "packages/compile/package.json", - "nx/core/package-json" - ], - "targets.build.metadata": [ - "packages/compile/package.json", - "nx/core/package-json" - ], - "targets.build.options.script": [ - "packages/compile/package.json", - "nx/core/package-json" - ], - "targets.build.metadata.scriptContent": [ - "packages/compile/package.json", - "nx/core/package-json" - ], - "targets.build.metadata.runCommand": [ - "packages/compile/package.json", - "nx/core/package-json" - ], - "targets.check-types.cache": [ - "nx.json", - "nx/target-defaults" - ], - "targets.check-types.parallelism": [ - "nx.json", - "nx/target-defaults" - ], - "targets.build.cache": [ - "nx.json", - "nx/target-defaults" - ], - "targets.build.dependsOn": [ - "nx.json", - "nx/target-defaults" - ], - "targets.build.inputs": [ - "nx.json", - "nx/target-defaults" - ], - "targets.build.outputs": [ - "nx.json", - "nx/target-defaults" - ], - "targets.build.parallelism": [ - "nx.json", - "nx/target-defaults" - ] - }, - "packages/core": { - "root": [ - "packages/core/package.json", - "nx/core/package-json" - ], - "name": [ - "packages/core/package.json", - "nx/core/package-json" - ], - "tags": [ - "packages/core/package.json", - "nx/core/package-json" - ], - "tags.npm:public": [ - "packages/core/package.json", - "nx/core/package-json" - ], - "metadata.targetGroups": [ - "packages/core/package.json", - "nx/core/package-json" - ], - "metadata.targetGroups.NPM Scripts": [ - "packages/core/package.json", - "nx/core/package-json" - ], - "metadata.targetGroups.NPM Scripts.0": [ - "packages/core/package.json", - "nx/core/package-json" - ], - "metadata.targetGroups.NPM Scripts.1": [ - "packages/core/package.json", - "nx/core/package-json" - ], - "metadata.targetGroups.NPM Scripts.2": [ - "packages/core/package.json", - "nx/core/package-json" - ], - "metadata.targetGroups.NPM Scripts.3": [ - "packages/core/package.json", - "nx/core/package-json" - ], - "metadata.targetGroups.NPM Scripts.4": [ - "packages/core/package.json", - "nx/core/package-json" - ], - "metadata.description": [ - "packages/core/package.json", - "nx/core/package-json" - ], - "metadata.js": [ - "packages/core/package.json", - "nx/core/package-json" - ], - "metadata.js.packageName": [ - "packages/core/package.json", - "nx/core/package-json" - ], - "metadata.js.packageVersion": [ - "packages/core/package.json", - "nx/core/package-json" - ], - "metadata.js.packageExports": [ - "packages/core/package.json", - "nx/core/package-json" - ], - "metadata.js.isInPackageManagerWorkspaces": [ - "packages/core/package.json", - "nx/core/package-json" - ], - "targets": [ - "packages/core/package.json", - "nx/core/package-json" - ], - "targets.check-types": [ - "packages/core/package.json", - "nx/core/package-json" - ], - "targets.check-types.executor": [ - "packages/core/package.json", - "nx/core/package-json" - ], - "targets.check-types.options": [ - "packages/core/package.json", - "nx/core/package-json" - ], - "targets.check-types.metadata": [ - "packages/core/package.json", - "nx/core/package-json" - ], - "targets.check-types.options.script": [ - "packages/core/package.json", - "nx/core/package-json" - ], - "targets.check-types.metadata.scriptContent": [ - "packages/core/package.json", - "nx/core/package-json" - ], - "targets.check-types.metadata.runCommand": [ - "packages/core/package.json", - "nx/core/package-json" - ], - "targets.vue": [ - "packages/core/package.json", - "nx/core/package-json" - ], - "targets.vue.executor": [ - "packages/core/package.json", - "nx/core/package-json" - ], - "targets.vue.options": [ - "packages/core/package.json", - "nx/core/package-json" - ], - "targets.vue.metadata": [ - "packages/core/package.json", - "nx/core/package-json" - ], - "targets.vue.options.script": [ - "packages/core/package.json", - "nx/core/package-json" - ], - "targets.vue.metadata.scriptContent": [ - "packages/core/package.json", - "nx/core/package-json" - ], - "targets.vue.metadata.runCommand": [ - "packages/core/package.json", - "nx/core/package-json" - ], - "targets.test": [ - "packages/core/package.json", - "nx/core/package-json" - ], - "targets.test.executor": [ - "packages/core/package.json", - "nx/core/package-json" - ], - "targets.test.options": [ - "packages/core/package.json", - "nx/core/package-json" - ], - "targets.test.metadata": [ - "packages/core/package.json", - "nx/core/package-json" - ], - "targets.test.options.script": [ - "packages/core/package.json", - "nx/core/package-json" - ], - "targets.test.metadata.scriptContent": [ - "packages/core/package.json", - "nx/core/package-json" - ], - "targets.test.metadata.runCommand": [ - "packages/core/package.json", - "nx/core/package-json" - ], - "targets.test:ci": [ - "packages/core/package.json", - "nx/core/package-json" - ], - "targets.test:ci.executor": [ - "packages/core/package.json", - "nx/core/package-json" - ], - "targets.test:ci.options": [ - "packages/core/package.json", - "nx/core/package-json" - ], - "targets.test:ci.metadata": [ - "packages/core/package.json", - "nx/core/package-json" - ], - "targets.test:ci.options.script": [ - "packages/core/package.json", - "nx/core/package-json" - ], - "targets.test:ci.metadata.scriptContent": [ - "packages/core/package.json", - "nx/core/package-json" - ], - "targets.test:ci.metadata.runCommand": [ - "packages/core/package.json", - "nx/core/package-json" - ], - "targets.build": [ - "packages/core/package.json", - "nx/core/package-json" - ], - "targets.build.executor": [ - "packages/core/package.json", - "nx/core/package-json" - ], - "targets.build.options": [ - "packages/core/package.json", - "nx/core/package-json" - ], - "targets.build.metadata": [ - "packages/core/package.json", - "nx/core/package-json" - ], - "targets.build.options.script": [ - "packages/core/package.json", - "nx/core/package-json" - ], - "targets.build.metadata.scriptContent": [ - "packages/core/package.json", - "nx/core/package-json" - ], - "targets.build.metadata.runCommand": [ - "packages/core/package.json", - "nx/core/package-json" - ], - "targets.check-types.cache": [ - "nx.json", - "nx/target-defaults" - ], - "targets.check-types.parallelism": [ - "nx.json", - "nx/target-defaults" - ], - "targets.test.cache": [ - "nx.json", - "nx/target-defaults" - ], - "targets.test.dependsOn": [ - "nx.json", - "nx/target-defaults" - ], - "targets.test.parallelism": [ - "nx.json", - "nx/target-defaults" - ], - "targets.build.cache": [ - "nx.json", - "nx/target-defaults" - ], - "targets.build.dependsOn": [ - "nx.json", - "nx/target-defaults" - ], - "targets.build.inputs": [ - "nx.json", - "nx/target-defaults" - ], - "targets.build.outputs": [ - "nx.json", - "nx/target-defaults" - ], - "targets.build.parallelism": [ - "nx.json", - "nx/target-defaults" - ] - }, - "packages/create-bati": { - "root": [ - "packages/create-bati/package.json", - "nx/core/package-json" - ], - "name": [ - "packages/create-bati/package.json", - "nx/core/package-json" - ], - "tags": [ - "packages/create-bati/package.json", - "nx/core/package-json" - ], - "tags.npm:public": [ - "packages/create-bati/package.json", - "nx/core/package-json" - ], - "metadata.targetGroups": [ - "packages/create-bati/package.json", - "nx/core/package-json" - ], - "metadata.description": [ - "packages/create-bati/package.json", - "nx/core/package-json" - ], - "metadata.js": [ - "packages/create-bati/package.json", - "nx/core/package-json" - ], - "metadata.js.packageName": [ - "packages/create-bati/package.json", - "nx/core/package-json" - ], - "metadata.js.packageVersion": [ - "packages/create-bati/package.json", - "nx/core/package-json" - ], - "metadata.js.isInPackageManagerWorkspaces": [ - "packages/create-bati/package.json", - "nx/core/package-json" - ], - "targets": [ - "packages/create-bati/package.json", - "nx/core/package-json" - ] - }, - "packages/create-batijs-app": { - "root": [ - "packages/create-batijs-app/package.json", - "nx/core/package-json" - ], - "name": [ - "packages/create-batijs-app/package.json", - "nx/core/package-json" - ], - "tags": [ - "packages/create-batijs-app/package.json", - "nx/core/package-json" - ], - "tags.npm:public": [ - "packages/create-batijs-app/package.json", - "nx/core/package-json" - ], - "metadata.targetGroups": [ - "packages/create-batijs-app/package.json", - "nx/core/package-json" - ], - "metadata.description": [ - "packages/create-batijs-app/package.json", - "nx/core/package-json" - ], - "metadata.js": [ - "packages/create-batijs-app/package.json", - "nx/core/package-json" - ], - "metadata.js.packageName": [ - "packages/create-batijs-app/package.json", - "nx/core/package-json" - ], - "metadata.js.packageVersion": [ - "packages/create-batijs-app/package.json", - "nx/core/package-json" - ], - "metadata.js.isInPackageManagerWorkspaces": [ - "packages/create-batijs-app/package.json", - "nx/core/package-json" - ], - "targets": [ - "packages/create-batijs-app/package.json", - "nx/core/package-json" - ] - }, - "packages/features": { - "root": [ - "packages/features/package.json", - "nx/core/package-json" - ], - "name": [ - "packages/features/package.json", - "nx/core/package-json" - ], - "tags": [ - "packages/features/package.json", - "nx/core/package-json" - ], - "tags.npm:public": [ - "packages/features/package.json", - "nx/core/package-json" - ], - "metadata.targetGroups": [ - "packages/features/package.json", - "nx/core/package-json" - ], - "metadata.targetGroups.NPM Scripts": [ - "packages/features/package.json", - "nx/core/package-json" - ], - "metadata.targetGroups.NPM Scripts.0": [ - "packages/features/package.json", - "nx/core/package-json" - ], - "metadata.targetGroups.NPM Scripts.1": [ - "packages/features/package.json", - "nx/core/package-json" - ], - "metadata.targetGroups.NPM Scripts.2": [ - "packages/features/package.json", - "nx/core/package-json" - ], - "metadata.targetGroups.NPM Scripts.3": [ - "packages/features/package.json", - "nx/core/package-json" - ], - "metadata.targetGroups.NPM Scripts.4": [ - "packages/features/package.json", - "nx/core/package-json" - ], - "metadata.description": [ - "packages/features/package.json", - "nx/core/package-json" - ], - "metadata.js": [ - "packages/features/package.json", - "nx/core/package-json" - ], - "metadata.js.packageName": [ - "packages/features/package.json", - "nx/core/package-json" - ], - "metadata.js.packageVersion": [ - "packages/features/package.json", - "nx/core/package-json" - ], - "metadata.js.packageExports": [ - "packages/features/package.json", - "nx/core/package-json" - ], - "metadata.js.packageMain": [ - "packages/features/package.json", - "nx/core/package-json" - ], - "metadata.js.isInPackageManagerWorkspaces": [ - "packages/features/package.json", - "nx/core/package-json" - ], - "targets": [ - "packages/features/package.json", - "nx/core/package-json" - ], - "targets.test": [ - "packages/features/package.json", - "nx/core/package-json" - ], - "targets.test.executor": [ - "packages/features/package.json", - "nx/core/package-json" - ], - "targets.test.options": [ - "packages/features/package.json", - "nx/core/package-json" - ], - "targets.test.metadata": [ - "packages/features/package.json", - "nx/core/package-json" - ], - "targets.test.options.script": [ - "packages/features/package.json", - "nx/core/package-json" - ], - "targets.test.metadata.scriptContent": [ - "packages/features/package.json", - "nx/core/package-json" - ], - "targets.test.metadata.runCommand": [ - "packages/features/package.json", - "nx/core/package-json" - ], - "targets.test:ci": [ - "packages/features/package.json", - "nx/core/package-json" - ], - "targets.test:ci.executor": [ - "packages/features/package.json", - "nx/core/package-json" - ], - "targets.test:ci.options": [ - "packages/features/package.json", - "nx/core/package-json" - ], - "targets.test:ci.metadata": [ - "packages/features/package.json", - "nx/core/package-json" - ], - "targets.test:ci.options.script": [ - "packages/features/package.json", - "nx/core/package-json" - ], - "targets.test:ci.metadata.scriptContent": [ - "packages/features/package.json", - "nx/core/package-json" - ], - "targets.test:ci.metadata.runCommand": [ - "packages/features/package.json", - "nx/core/package-json" - ], - "targets.prepublishOnly": [ - "packages/features/package.json", - "nx/core/package-json" - ], - "targets.prepublishOnly.executor": [ - "packages/features/package.json", - "nx/core/package-json" - ], - "targets.prepublishOnly.options": [ - "packages/features/package.json", - "nx/core/package-json" - ], - "targets.prepublishOnly.metadata": [ - "packages/features/package.json", - "nx/core/package-json" - ], - "targets.prepublishOnly.options.script": [ - "packages/features/package.json", - "nx/core/package-json" - ], - "targets.prepublishOnly.metadata.scriptContent": [ - "packages/features/package.json", - "nx/core/package-json" - ], - "targets.prepublishOnly.metadata.runCommand": [ - "packages/features/package.json", - "nx/core/package-json" - ], - "targets.build": [ - "packages/features/package.json", - "nx/core/package-json" - ], - "targets.build.executor": [ - "packages/features/package.json", - "nx/core/package-json" - ], - "targets.build.options": [ - "packages/features/package.json", - "nx/core/package-json" - ], - "targets.build.metadata": [ - "packages/features/package.json", - "nx/core/package-json" - ], - "targets.build.options.script": [ - "packages/features/package.json", - "nx/core/package-json" - ], - "targets.build.metadata.scriptContent": [ - "packages/features/package.json", - "nx/core/package-json" - ], - "targets.build.metadata.runCommand": [ - "packages/features/package.json", - "nx/core/package-json" - ], - "targets.watch": [ - "packages/features/package.json", - "nx/core/package-json" - ], - "targets.watch.executor": [ - "packages/features/package.json", - "nx/core/package-json" - ], - "targets.watch.options": [ - "packages/features/package.json", - "nx/core/package-json" - ], - "targets.watch.metadata": [ - "packages/features/package.json", - "nx/core/package-json" - ], - "targets.watch.options.script": [ - "packages/features/package.json", - "nx/core/package-json" - ], - "targets.watch.metadata.scriptContent": [ - "packages/features/package.json", - "nx/core/package-json" - ], - "targets.watch.metadata.runCommand": [ - "packages/features/package.json", - "nx/core/package-json" - ], - "targets.test.cache": [ - "nx.json", - "nx/target-defaults" - ], - "targets.test.dependsOn": [ - "nx.json", - "nx/target-defaults" - ], - "targets.test.parallelism": [ - "nx.json", - "nx/target-defaults" - ], - "targets.build.cache": [ - "nx.json", - "nx/target-defaults" - ], - "targets.build.dependsOn": [ - "nx.json", - "nx/target-defaults" - ], - "targets.build.inputs": [ - "nx.json", - "nx/target-defaults" - ], - "targets.build.outputs": [ - "nx.json", - "nx/target-defaults" - ], - "targets.build.parallelism": [ - "nx.json", - "nx/target-defaults" - ] - }, - "packages/tests": { - "root": [ - "packages/tests/package.json", - "nx/core/package-json" - ], - "name": [ - "packages/tests/package.json", - "nx/core/package-json" - ], - "tags": [ - "packages/tests/package.json", - "nx/core/package-json" - ], - "tags.npm:private": [ - "packages/tests/package.json", - "nx/core/package-json" - ], - "metadata.targetGroups": [ - "packages/tests/package.json", - "nx/core/package-json" - ], - "metadata.targetGroups.NPM Scripts": [ - "packages/tests/package.json", - "nx/core/package-json" - ], - "metadata.targetGroups.NPM Scripts.0": [ - "packages/tests/package.json", - "nx/core/package-json" - ], - "metadata.targetGroups.NPM Scripts.1": [ - "packages/tests/package.json", - "nx/core/package-json" - ], - "metadata.targetGroups.NPM Scripts.2": [ - "packages/tests/package.json", - "nx/core/package-json" - ], - "metadata.targetGroups.NPM Scripts.3": [ - "packages/tests/package.json", - "nx/core/package-json" - ], - "metadata.targetGroups.NPM Scripts.4": [ - "packages/tests/package.json", - "nx/core/package-json" - ], - "metadata.description": [ - "packages/tests/package.json", - "nx/core/package-json" - ], - "metadata.js": [ - "packages/tests/package.json", - "nx/core/package-json" - ], - "metadata.js.packageName": [ - "packages/tests/package.json", - "nx/core/package-json" - ], - "metadata.js.packageVersion": [ - "packages/tests/package.json", - "nx/core/package-json" - ], - "metadata.js.isInPackageManagerWorkspaces": [ - "packages/tests/package.json", - "nx/core/package-json" - ], - "targets": [ - "packages/tests/package.json", - "nx/core/package-json" - ], - "targets.check-types": [ - "packages/tests/package.json", - "nx/core/package-json" - ], - "targets.check-types.executor": [ - "packages/tests/package.json", - "nx/core/package-json" - ], - "targets.check-types.options": [ - "packages/tests/package.json", - "nx/core/package-json" - ], - "targets.check-types.metadata": [ - "packages/tests/package.json", - "nx/core/package-json" - ], - "targets.check-types.options.script": [ - "packages/tests/package.json", - "nx/core/package-json" - ], - "targets.check-types.metadata.scriptContent": [ - "packages/tests/package.json", - "nx/core/package-json" - ], - "targets.check-types.metadata.runCommand": [ - "packages/tests/package.json", - "nx/core/package-json" - ], - "targets.start": [ - "packages/tests/package.json", - "nx/core/package-json" - ], - "targets.start.executor": [ - "packages/tests/package.json", - "nx/core/package-json" - ], - "targets.start.options": [ - "packages/tests/package.json", - "nx/core/package-json" - ], - "targets.start.metadata": [ - "packages/tests/package.json", - "nx/core/package-json" - ], - "targets.start.options.script": [ - "packages/tests/package.json", - "nx/core/package-json" - ], - "targets.start.metadata.scriptContent": [ - "packages/tests/package.json", - "nx/core/package-json" - ], - "targets.start.metadata.runCommand": [ - "packages/tests/package.json", - "nx/core/package-json" - ], - "targets.test": [ - "packages/tests/package.json", - "nx/core/package-json" - ], - "targets.test.executor": [ - "packages/tests/package.json", - "nx/core/package-json" - ], - "targets.test.options": [ - "packages/tests/package.json", - "nx/core/package-json" - ], - "targets.test.metadata": [ - "packages/tests/package.json", - "nx/core/package-json" - ], - "targets.test.options.script": [ - "packages/tests/package.json", - "nx/core/package-json" - ], - "targets.test.metadata.scriptContent": [ - "packages/tests/package.json", - "nx/core/package-json" - ], - "targets.test.metadata.runCommand": [ - "packages/tests/package.json", - "nx/core/package-json" - ], - "targets.test:e2e": [ - "packages/tests/package.json", - "nx/core/package-json" - ], - "targets.test:e2e.executor": [ - "packages/tests/package.json", - "nx/core/package-json" - ], - "targets.test:e2e.options": [ - "packages/tests/package.json", - "nx/core/package-json" - ], - "targets.test:e2e.metadata": [ - "packages/tests/package.json", - "nx/core/package-json" - ], - "targets.test:e2e.options.script": [ - "packages/tests/package.json", - "nx/core/package-json" - ], - "targets.test:e2e.metadata.scriptContent": [ - "packages/tests/package.json", - "nx/core/package-json" - ], - "targets.test:e2e.metadata.runCommand": [ - "packages/tests/package.json", - "nx/core/package-json" - ], - "targets.build": [ - "packages/tests/package.json", - "nx/core/package-json" - ], - "targets.build.executor": [ - "packages/tests/package.json", - "nx/core/package-json" - ], - "targets.build.options": [ - "packages/tests/package.json", - "nx/core/package-json" - ], - "targets.build.metadata": [ - "packages/tests/package.json", - "nx/core/package-json" - ], - "targets.build.options.script": [ - "packages/tests/package.json", - "nx/core/package-json" - ], - "targets.build.metadata.scriptContent": [ - "packages/tests/package.json", - "nx/core/package-json" - ], - "targets.build.metadata.runCommand": [ - "packages/tests/package.json", - "nx/core/package-json" - ], - "targets.check-types.cache": [ - "nx.json", - "nx/target-defaults" - ], - "targets.check-types.parallelism": [ - "nx.json", - "nx/target-defaults" - ], - "targets.test.cache": [ - "nx.json", - "nx/target-defaults" - ], - "targets.test.dependsOn": [ - "nx.json", - "nx/target-defaults" - ], - "targets.test.parallelism": [ - "nx.json", - "nx/target-defaults" - ], - "targets.build.cache": [ - "nx.json", - "nx/target-defaults" - ], - "targets.build.dependsOn": [ - "nx.json", - "nx/target-defaults" - ], - "targets.build.inputs": [ - "nx.json", - "nx/target-defaults" - ], - "targets.build.outputs": [ - "nx.json", - "nx/target-defaults" - ], - "targets.build.parallelism": [ - "nx.json", - "nx/target-defaults" - ] - }, - "packages/tests-utils": { - "root": [ - "packages/tests-utils/package.json", - "nx/core/package-json" - ], - "name": [ - "packages/tests-utils/package.json", - "nx/core/package-json" - ], - "tags": [ - "packages/tests-utils/package.json", - "nx/core/package-json" - ], - "tags.npm:private": [ - "packages/tests-utils/package.json", - "nx/core/package-json" - ], - "metadata.targetGroups": [ - "packages/tests-utils/package.json", - "nx/core/package-json" - ], - "metadata.targetGroups.NPM Scripts": [ - "packages/tests-utils/package.json", - "nx/core/package-json" - ], - "metadata.targetGroups.NPM Scripts.0": [ - "packages/tests-utils/package.json", - "nx/core/package-json" - ], - "metadata.targetGroups.NPM Scripts.1": [ - "packages/tests-utils/package.json", - "nx/core/package-json" - ], - "metadata.description": [ - "packages/tests-utils/package.json", - "nx/core/package-json" - ], - "metadata.js": [ - "packages/tests-utils/package.json", - "nx/core/package-json" - ], - "metadata.js.packageName": [ - "packages/tests-utils/package.json", - "nx/core/package-json" - ], - "metadata.js.packageVersion": [ - "packages/tests-utils/package.json", - "nx/core/package-json" - ], - "metadata.js.packageExports": [ - "packages/tests-utils/package.json", - "nx/core/package-json" - ], - "metadata.js.packageMain": [ - "packages/tests-utils/package.json", - "nx/core/package-json" - ], - "metadata.js.isInPackageManagerWorkspaces": [ - "packages/tests-utils/package.json", - "nx/core/package-json" - ], - "targets": [ - "packages/tests-utils/package.json", - "nx/core/package-json" - ], - "targets.check-types": [ - "packages/tests-utils/package.json", - "nx/core/package-json" - ], - "targets.check-types.executor": [ - "packages/tests-utils/package.json", - "nx/core/package-json" - ], - "targets.check-types.options": [ - "packages/tests-utils/package.json", - "nx/core/package-json" - ], - "targets.check-types.metadata": [ - "packages/tests-utils/package.json", - "nx/core/package-json" - ], - "targets.check-types.options.script": [ - "packages/tests-utils/package.json", - "nx/core/package-json" - ], - "targets.check-types.metadata.scriptContent": [ - "packages/tests-utils/package.json", - "nx/core/package-json" - ], - "targets.check-types.metadata.runCommand": [ - "packages/tests-utils/package.json", - "nx/core/package-json" - ], - "targets.build": [ - "packages/tests-utils/package.json", - "nx/core/package-json" - ], - "targets.build.executor": [ - "packages/tests-utils/package.json", - "nx/core/package-json" - ], - "targets.build.options": [ - "packages/tests-utils/package.json", - "nx/core/package-json" - ], - "targets.build.metadata": [ - "packages/tests-utils/package.json", - "nx/core/package-json" - ], - "targets.build.options.script": [ - "packages/tests-utils/package.json", - "nx/core/package-json" - ], - "targets.build.metadata.scriptContent": [ - "packages/tests-utils/package.json", - "nx/core/package-json" - ], - "targets.build.metadata.runCommand": [ - "packages/tests-utils/package.json", - "nx/core/package-json" - ], - "targets.check-types.cache": [ - "nx.json", - "nx/target-defaults" - ], - "targets.check-types.parallelism": [ - "nx.json", - "nx/target-defaults" - ], - "targets.build.cache": [ - "nx.json", - "nx/target-defaults" - ], - "targets.build.dependsOn": [ - "nx.json", - "nx/target-defaults" - ], - "targets.build.inputs": [ - "nx.json", - "nx/target-defaults" - ], - "targets.build.outputs": [ - "nx.json", - "nx/target-defaults" - ], - "targets.build.parallelism": [ - "nx.json", - "nx/target-defaults" - ] - }, - "website": { - "root": [ - "website/package.json", - "nx/core/package-json" - ], - "name": [ - "website/package.json", - "nx/core/package-json" - ], - "tags": [ - "website/package.json", - "nx/core/package-json" - ], - "tags.npm:public": [ - "website/package.json", - "nx/core/package-json" - ], - "tags.npm:bati": [ - "website/package.json", - "nx/core/package-json" - ], - "tags.npm:batijs": [ - "website/package.json", - "nx/core/package-json" - ], - "tags.npm:vike": [ - "website/package.json", - "nx/core/package-json" - ], - "metadata.targetGroups": [ - "website/package.json", - "nx/core/package-json" - ], - "metadata.targetGroups.NPM Scripts": [ - "website/package.json", - "nx/core/package-json" - ], - "metadata.targetGroups.NPM Scripts.0": [ - "website/package.json", - "nx/core/package-json" - ], - "metadata.targetGroups.NPM Scripts.1": [ - "website/package.json", - "nx/core/package-json" - ], - "metadata.targetGroups.NPM Scripts.2": [ - "website/package.json", - "nx/core/package-json" - ], - "metadata.targetGroups.NPM Scripts.3": [ - "website/package.json", - "nx/core/package-json" - ], - "metadata.targetGroups.NPM Scripts.4": [ - "website/package.json", - "nx/core/package-json" - ], - "metadata.targetGroups.NPM Scripts.5": [ - "website/package.json", - "nx/core/package-json" - ], - "metadata.targetGroups.NPM Scripts.6": [ - "website/package.json", - "nx/core/package-json" - ], - "metadata.targetGroups.NPM Scripts.7": [ - "website/package.json", - "nx/core/package-json" - ], - "metadata.targetGroups.NPM Scripts.8": [ - "website/package.json", - "nx/core/package-json" - ], - "metadata.description": [ - "website/package.json", - "nx/core/package-json" - ], - "metadata.js": [ - "website/package.json", - "nx/core/package-json" - ], - "metadata.js.packageName": [ - "website/package.json", - "nx/core/package-json" - ], - "metadata.js.packageVersion": [ - "website/package.json", - "nx/core/package-json" - ], - "metadata.js.packageMain": [ - "website/package.json", - "nx/core/package-json" - ], - "metadata.js.isInPackageManagerWorkspaces": [ - "website/package.json", - "nx/core/package-json" - ], - "targets": [ - "website/package.json", - "nx/core/package-json" - ], - "targets.dev": [ - "website/package.json", - "nx/core/package-json" - ], - "targets.dev.executor": [ - "website/package.json", - "nx/core/package-json" - ], - "targets.dev.options": [ - "website/package.json", - "nx/core/package-json" - ], - "targets.dev.metadata": [ - "website/package.json", - "nx/core/package-json" - ], - "targets.dev.options.script": [ - "website/package.json", - "nx/core/package-json" - ], - "targets.dev.metadata.scriptContent": [ - "website/package.json", - "nx/core/package-json" - ], - "targets.dev.metadata.runCommand": [ - "website/package.json", - "nx/core/package-json" - ], - "targets.dev:widget": [ - "website/package.json", - "nx/core/package-json" - ], - "targets.dev:widget.executor": [ - "website/package.json", - "nx/core/package-json" - ], - "targets.dev:widget.options": [ - "website/package.json", - "nx/core/package-json" - ], - "targets.dev:widget.metadata": [ - "website/package.json", - "nx/core/package-json" - ], - "targets.dev:widget.options.script": [ - "website/package.json", - "nx/core/package-json" - ], - "targets.dev:widget.metadata.scriptContent": [ - "website/package.json", - "nx/core/package-json" - ], - "targets.dev:widget.metadata.runCommand": [ - "website/package.json", - "nx/core/package-json" - ], - "targets.build:pages": [ - "website/package.json", - "nx/core/package-json" - ], - "targets.build:pages.executor": [ - "website/package.json", - "nx/core/package-json" - ], - "targets.build:pages.options": [ - "website/package.json", - "nx/core/package-json" - ], - "targets.build:pages.metadata": [ - "website/package.json", - "nx/core/package-json" - ], - "targets.build:pages.options.script": [ - "website/package.json", - "nx/core/package-json" - ], - "targets.build:pages.metadata.scriptContent": [ - "website/package.json", - "nx/core/package-json" - ], - "targets.build:pages.metadata.runCommand": [ - "website/package.json", - "nx/core/package-json" - ], - "targets.build:widget": [ - "website/package.json", - "nx/core/package-json" - ], - "targets.build:widget.executor": [ - "website/package.json", - "nx/core/package-json" - ], - "targets.build:widget.options": [ - "website/package.json", - "nx/core/package-json" - ], - "targets.build:widget.metadata": [ - "website/package.json", - "nx/core/package-json" - ], - "targets.build:widget.options.script": [ - "website/package.json", - "nx/core/package-json" - ], - "targets.build:widget.metadata.scriptContent": [ - "website/package.json", - "nx/core/package-json" - ], - "targets.build:widget.metadata.runCommand": [ - "website/package.json", - "nx/core/package-json" - ], - "targets.preview:widget": [ - "website/package.json", - "nx/core/package-json" - ], - "targets.preview:widget.executor": [ - "website/package.json", - "nx/core/package-json" - ], - "targets.preview:widget.options": [ - "website/package.json", - "nx/core/package-json" - ], - "targets.preview:widget.metadata": [ - "website/package.json", - "nx/core/package-json" - ], - "targets.preview:widget.options.script": [ - "website/package.json", - "nx/core/package-json" - ], - "targets.preview:widget.metadata.scriptContent": [ - "website/package.json", - "nx/core/package-json" - ], - "targets.preview:widget.metadata.runCommand": [ - "website/package.json", - "nx/core/package-json" - ], - "targets.check-types": [ - "website/package.json", - "nx/core/package-json" - ], - "targets.check-types.executor": [ - "website/package.json", - "nx/core/package-json" - ], - "targets.check-types.options": [ - "website/package.json", - "nx/core/package-json" - ], - "targets.check-types.metadata": [ - "website/package.json", - "nx/core/package-json" - ], - "targets.check-types.options.script": [ - "website/package.json", - "nx/core/package-json" - ], - "targets.check-types.metadata.scriptContent": [ - "website/package.json", - "nx/core/package-json" - ], - "targets.check-types.metadata.runCommand": [ - "website/package.json", - "nx/core/package-json" - ], - "targets.test": [ - "website/package.json", - "nx/core/package-json" - ], - "targets.test.executor": [ - "website/package.json", - "nx/core/package-json" - ], - "targets.test.options": [ - "website/package.json", - "nx/core/package-json" - ], - "targets.test.metadata": [ - "website/package.json", - "nx/core/package-json" - ], - "targets.test.options.script": [ - "website/package.json", - "nx/core/package-json" - ], - "targets.test.metadata.scriptContent": [ - "website/package.json", - "nx/core/package-json" - ], - "targets.test.metadata.runCommand": [ - "website/package.json", - "nx/core/package-json" - ], - "targets.release-widget": [ - "website/package.json", - "nx/core/package-json" - ], - "targets.release-widget.executor": [ - "website/package.json", - "nx/core/package-json" - ], - "targets.release-widget.options": [ - "website/package.json", - "nx/core/package-json" - ], - "targets.release-widget.metadata": [ - "website/package.json", - "nx/core/package-json" - ], - "targets.release-widget.options.script": [ - "website/package.json", - "nx/core/package-json" - ], - "targets.release-widget.metadata.scriptContent": [ - "website/package.json", - "nx/core/package-json" - ], - "targets.release-widget.metadata.runCommand": [ - "website/package.json", - "nx/core/package-json" - ], - "targets.release-widget:ci": [ - "website/package.json", - "nx/core/package-json" - ], - "targets.release-widget:ci.executor": [ - "website/package.json", - "nx/core/package-json" - ], - "targets.release-widget:ci.options": [ - "website/package.json", - "nx/core/package-json" - ], - "targets.release-widget:ci.metadata": [ - "website/package.json", - "nx/core/package-json" - ], - "targets.release-widget:ci.options.script": [ - "website/package.json", - "nx/core/package-json" - ], - "targets.release-widget:ci.metadata.scriptContent": [ - "website/package.json", - "nx/core/package-json" - ], - "targets.release-widget:ci.metadata.runCommand": [ - "website/package.json", - "nx/core/package-json" - ], - "targets.check-types.cache": [ - "nx.json", - "nx/target-defaults" - ], - "targets.check-types.parallelism": [ - "nx.json", - "nx/target-defaults" - ], - "targets.test.cache": [ - "nx.json", - "nx/target-defaults" - ], - "targets.test.dependsOn": [ - "nx.json", - "nx/target-defaults" - ], - "targets.test.parallelism": [ - "nx.json", - "nx/target-defaults" - ] - } -} \ No newline at end of file From 843c7361b63f85359322fab074f1ea342edb77cf Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Wed, 25 Mar 2026 14:56:42 +0000 Subject: [PATCH 04/23] Fix bati-compile-boilerplate to write package.json with trailing newline Co-authored-by: magne4000 <1098371+magne4000@users.noreply.github.com> Agent-Logs-Url: https://github.com/vikejs/bati/sessions/0c41f2d5-ee26-4f6b-ac72-d4f05545b7fc --- boilerplates/auth0/package.json | 2 +- boilerplates/authjs/package.json | 2 +- boilerplates/aws/package.json | 2 +- boilerplates/biome/package.json | 2 +- boilerplates/cloudflare/package.json | 2 +- boilerplates/compiled/package.json | 2 +- boilerplates/d1-kysely/package.json | 2 +- boilerplates/d1-sqlite/package.json | 2 +- boilerplates/d1/package.json | 2 +- boilerplates/drizzle/package.json | 2 +- boilerplates/eslint/package.json | 2 +- boilerplates/express/package.json | 2 +- boilerplates/fastify/package.json | 2 +- boilerplates/google-analytics/package.json | 2 +- boilerplates/h3/package.json | 2 +- boilerplates/hono/package.json | 2 +- boilerplates/kysely/package.json | 2 +- boilerplates/mantine/package.json | 8 +++---- boilerplates/oxlint/package.json | 2 +- boilerplates/photon/package.json | 2 +- boilerplates/plausible.io/package.json | 2 +- boilerplates/pnpm/package.json | 2 +- boilerplates/prettier/package.json | 2 +- boilerplates/prisma/package.json | 2 +- boilerplates/react-sentry/package.json | 2 +- boilerplates/react/package.json | 2 +- boilerplates/sentry/package.json | 2 +- boilerplates/shadcn-ui/package.json | 2 +- boilerplates/shared-db/package.json | 14 +++++++++++- boilerplates/shared-server/package.json | 14 +++++++++++- boilerplates/shared-todo/package.json | 2 +- boilerplates/shared/package.json | 2 +- boilerplates/solid-sentry/package.json | 2 +- boilerplates/solid/package.json | 2 +- boilerplates/sqlite/package.json | 2 +- boilerplates/storybook/package.json | 2 +- boilerplates/tailwindcss/package.json | 2 +- boilerplates/telefunc/package.json | 2 +- boilerplates/trpc/package.json | 26 +++++++++++++++++++++- boilerplates/ts-rest/package.json | 2 +- boilerplates/vercel/package.json | 2 +- boilerplates/vue-sentry/package.json | 2 +- boilerplates/vue/package.json | 2 +- package.json | 4 ++-- packages/compile/build.ts | 8 +++++-- 45 files changed, 102 insertions(+), 50 deletions(-) diff --git a/boilerplates/auth0/package.json b/boilerplates/auth0/package.json index b7968e20a..a3e496322 100644 --- a/boilerplates/auth0/package.json +++ b/boilerplates/auth0/package.json @@ -26,4 +26,4 @@ "type:boilerplate" ] } -} \ No newline at end of file +} diff --git a/boilerplates/authjs/package.json b/boilerplates/authjs/package.json index 96e394072..6dfbbd5c9 100644 --- a/boilerplates/authjs/package.json +++ b/boilerplates/authjs/package.json @@ -40,4 +40,4 @@ "type:boilerplate" ] } -} \ No newline at end of file +} diff --git a/boilerplates/aws/package.json b/boilerplates/aws/package.json index 166077f46..3f0e4b88a 100644 --- a/boilerplates/aws/package.json +++ b/boilerplates/aws/package.json @@ -68,4 +68,4 @@ "type:boilerplate" ] } -} \ No newline at end of file +} diff --git a/boilerplates/biome/package.json b/boilerplates/biome/package.json index bd607480b..f23417d31 100644 --- a/boilerplates/biome/package.json +++ b/boilerplates/biome/package.json @@ -28,4 +28,4 @@ "type:boilerplate" ] } -} \ No newline at end of file +} diff --git a/boilerplates/cloudflare/package.json b/boilerplates/cloudflare/package.json index 6386613ae..b5250ba83 100644 --- a/boilerplates/cloudflare/package.json +++ b/boilerplates/cloudflare/package.json @@ -28,4 +28,4 @@ "type:boilerplate" ] } -} \ No newline at end of file +} diff --git a/boilerplates/compiled/package.json b/boilerplates/compiled/package.json index 5514c8dd3..66e5efc5e 100644 --- a/boilerplates/compiled/package.json +++ b/boilerplates/compiled/package.json @@ -29,4 +29,4 @@ "type:boilerplate" ] } -} \ No newline at end of file +} diff --git a/boilerplates/d1-kysely/package.json b/boilerplates/d1-kysely/package.json index 6fba812da..4a63aa4b3 100644 --- a/boilerplates/d1-kysely/package.json +++ b/boilerplates/d1-kysely/package.json @@ -26,4 +26,4 @@ "type:boilerplate" ] } -} \ No newline at end of file +} diff --git a/boilerplates/d1-sqlite/package.json b/boilerplates/d1-sqlite/package.json index 28556cf30..f6314ded4 100644 --- a/boilerplates/d1-sqlite/package.json +++ b/boilerplates/d1-sqlite/package.json @@ -40,4 +40,4 @@ "type:boilerplate" ] } -} \ No newline at end of file +} diff --git a/boilerplates/d1/package.json b/boilerplates/d1/package.json index 99f25c6dd..5c0fe5f83 100644 --- a/boilerplates/d1/package.json +++ b/boilerplates/d1/package.json @@ -41,4 +41,4 @@ "type:boilerplate" ] } -} \ No newline at end of file +} diff --git a/boilerplates/drizzle/package.json b/boilerplates/drizzle/package.json index e5b4680be..9f0c7a8be 100644 --- a/boilerplates/drizzle/package.json +++ b/boilerplates/drizzle/package.json @@ -61,4 +61,4 @@ "type:boilerplate" ] } -} \ No newline at end of file +} diff --git a/boilerplates/eslint/package.json b/boilerplates/eslint/package.json index bda66084f..5159823f6 100644 --- a/boilerplates/eslint/package.json +++ b/boilerplates/eslint/package.json @@ -47,4 +47,4 @@ "type:boilerplate" ] } -} \ No newline at end of file +} diff --git a/boilerplates/express/package.json b/boilerplates/express/package.json index aeb37f14a..b1e3fa275 100644 --- a/boilerplates/express/package.json +++ b/boilerplates/express/package.json @@ -47,4 +47,4 @@ "type:boilerplate" ] } -} \ No newline at end of file +} diff --git a/boilerplates/fastify/package.json b/boilerplates/fastify/package.json index 135db1a4c..e51a23ad7 100644 --- a/boilerplates/fastify/package.json +++ b/boilerplates/fastify/package.json @@ -48,4 +48,4 @@ "type:boilerplate" ] } -} \ No newline at end of file +} diff --git a/boilerplates/google-analytics/package.json b/boilerplates/google-analytics/package.json index d87aa4b1d..0f7e93bb0 100644 --- a/boilerplates/google-analytics/package.json +++ b/boilerplates/google-analytics/package.json @@ -26,4 +26,4 @@ "type:boilerplate" ] } -} \ No newline at end of file +} diff --git a/boilerplates/h3/package.json b/boilerplates/h3/package.json index 63173f07a..cbbbba089 100644 --- a/boilerplates/h3/package.json +++ b/boilerplates/h3/package.json @@ -49,4 +49,4 @@ "type:boilerplate" ] } -} \ No newline at end of file +} diff --git a/boilerplates/hono/package.json b/boilerplates/hono/package.json index 5c7f29291..6df0c23b3 100644 --- a/boilerplates/hono/package.json +++ b/boilerplates/hono/package.json @@ -54,4 +54,4 @@ "type:boilerplate" ] } -} \ No newline at end of file +} diff --git a/boilerplates/kysely/package.json b/boilerplates/kysely/package.json index d0187f2ea..576ad1ecc 100644 --- a/boilerplates/kysely/package.json +++ b/boilerplates/kysely/package.json @@ -69,4 +69,4 @@ "type:boilerplate" ] } -} \ No newline at end of file +} diff --git a/boilerplates/mantine/package.json b/boilerplates/mantine/package.json index 2d0661435..a5a983508 100644 --- a/boilerplates/mantine/package.json +++ b/boilerplates/mantine/package.json @@ -43,11 +43,11 @@ }, "typesVersions": { "*": { - "pages/+Layout": [ - "./dist/types/pages/+Layout.d.mts" - ], "components/Link": [ "./dist/types/components/Link.d.mts" + ], + "pages/+Layout": [ + "./dist/types/pages/+Layout.d.mts" ] } }, @@ -56,4 +56,4 @@ "type:boilerplate" ] } -} \ No newline at end of file +} diff --git a/boilerplates/oxlint/package.json b/boilerplates/oxlint/package.json index cf5b35f22..dfc1767e0 100644 --- a/boilerplates/oxlint/package.json +++ b/boilerplates/oxlint/package.json @@ -28,4 +28,4 @@ "type:boilerplate" ] } -} \ No newline at end of file +} diff --git a/boilerplates/photon/package.json b/boilerplates/photon/package.json index e48318616..1aa452d15 100644 --- a/boilerplates/photon/package.json +++ b/boilerplates/photon/package.json @@ -27,4 +27,4 @@ "type:boilerplate" ] } -} \ No newline at end of file +} diff --git a/boilerplates/plausible.io/package.json b/boilerplates/plausible.io/package.json index 6d2f42cdc..c40995fd0 100644 --- a/boilerplates/plausible.io/package.json +++ b/boilerplates/plausible.io/package.json @@ -26,4 +26,4 @@ "type:boilerplate" ] } -} \ No newline at end of file +} diff --git a/boilerplates/pnpm/package.json b/boilerplates/pnpm/package.json index 4a33a6507..13ba4a1d1 100644 --- a/boilerplates/pnpm/package.json +++ b/boilerplates/pnpm/package.json @@ -26,4 +26,4 @@ "type:boilerplate" ] } -} \ No newline at end of file +} diff --git a/boilerplates/prettier/package.json b/boilerplates/prettier/package.json index 6ec2cd4ab..bed52d675 100644 --- a/boilerplates/prettier/package.json +++ b/boilerplates/prettier/package.json @@ -27,4 +27,4 @@ "type:boilerplate" ] } -} \ No newline at end of file +} diff --git a/boilerplates/prisma/package.json b/boilerplates/prisma/package.json index 22b3688ea..9233d696b 100644 --- a/boilerplates/prisma/package.json +++ b/boilerplates/prisma/package.json @@ -29,4 +29,4 @@ "type:boilerplate" ] } -} \ No newline at end of file +} diff --git a/boilerplates/react-sentry/package.json b/boilerplates/react-sentry/package.json index 331fa17f2..629d9e19a 100644 --- a/boilerplates/react-sentry/package.json +++ b/boilerplates/react-sentry/package.json @@ -50,4 +50,4 @@ "type:boilerplate" ] } -} \ No newline at end of file +} diff --git a/boilerplates/react/package.json b/boilerplates/react/package.json index fcfd1dec5..de2ff7870 100644 --- a/boilerplates/react/package.json +++ b/boilerplates/react/package.json @@ -144,4 +144,4 @@ "type:boilerplate" ] } -} \ No newline at end of file +} diff --git a/boilerplates/sentry/package.json b/boilerplates/sentry/package.json index 001e72ebd..1a3f5231d 100644 --- a/boilerplates/sentry/package.json +++ b/boilerplates/sentry/package.json @@ -28,4 +28,4 @@ "type:boilerplate" ] } -} \ No newline at end of file +} diff --git a/boilerplates/shadcn-ui/package.json b/boilerplates/shadcn-ui/package.json index 0a105557e..70fd8ad69 100644 --- a/boilerplates/shadcn-ui/package.json +++ b/boilerplates/shadcn-ui/package.json @@ -46,4 +46,4 @@ "type:boilerplate" ] } -} \ No newline at end of file +} diff --git a/boilerplates/shared-db/package.json b/boilerplates/shared-db/package.json index b7af958e4..e4d027ea2 100644 --- a/boilerplates/shared-db/package.json +++ b/boilerplates/shared-db/package.json @@ -26,6 +26,12 @@ "./drizzle/dist/types/database/drizzle/db": { "types": "./dist/types/drizzle/dist/types/database/drizzle/db.d.mts" }, + "./kysely/dist/types/database/kysely/db": { + "types": "./dist/types/kysely/dist/types/database/kysely/db.d.mts" + }, + "./kysely/dist/types/database/kysely/types": { + "types": "./dist/types/kysely/dist/types/database/kysely/types.d.mts" + }, "./server/db-middleware": { "types": "./dist/types/server/db-middleware.d.mts" }, @@ -43,6 +49,12 @@ ], "sqlite/dist/types/database/sqlite/db": [ "./dist/types/sqlite/dist/types/database/sqlite/db.d.mts" + ], + "kysely/dist/types/database/kysely/db": [ + "./dist/types/kysely/dist/types/database/kysely/db.d.mts" + ], + "kysely/dist/types/database/kysely/types": [ + "./dist/types/kysely/dist/types/database/kysely/types.d.mts" ] } }, @@ -51,4 +63,4 @@ "type:boilerplate" ] } -} \ No newline at end of file +} diff --git a/boilerplates/shared-server/package.json b/boilerplates/shared-server/package.json index 5d7846c1d..4dc99f454 100644 --- a/boilerplates/shared-server/package.json +++ b/boilerplates/shared-server/package.json @@ -26,6 +26,12 @@ "./drizzle/dist/types/database/drizzle/db": { "types": "./dist/types/drizzle/dist/types/database/drizzle/db.d.mts" }, + "./kysely/dist/types/database/kysely/db": { + "types": "./dist/types/kysely/dist/types/database/kysely/db.d.mts" + }, + "./kysely/dist/types/database/kysely/types": { + "types": "./dist/types/kysely/dist/types/database/kysely/types.d.mts" + }, "./server/create-todo-handler": { "types": "./dist/types/server/create-todo-handler.d.mts" }, @@ -41,6 +47,12 @@ "drizzle/dist/types/database/drizzle/db": [ "./dist/types/drizzle/dist/types/database/drizzle/db.d.mts" ], + "kysely/dist/types/database/kysely/db": [ + "./dist/types/kysely/dist/types/database/kysely/db.d.mts" + ], + "kysely/dist/types/database/kysely/types": [ + "./dist/types/kysely/dist/types/database/kysely/types.d.mts" + ], "sqlite/dist/types/database/sqlite/db": [ "./dist/types/sqlite/dist/types/database/sqlite/db.d.mts" ] @@ -51,4 +63,4 @@ "type:boilerplate" ] } -} \ No newline at end of file +} diff --git a/boilerplates/shared-todo/package.json b/boilerplates/shared-todo/package.json index 4ed07e811..d3265c70e 100644 --- a/boilerplates/shared-todo/package.json +++ b/boilerplates/shared-todo/package.json @@ -45,4 +45,4 @@ "type:boilerplate" ] } -} \ No newline at end of file +} diff --git a/boilerplates/shared/package.json b/boilerplates/shared/package.json index 9ada8267e..b548a1837 100644 --- a/boilerplates/shared/package.json +++ b/boilerplates/shared/package.json @@ -39,4 +39,4 @@ "type:boilerplate" ] } -} \ No newline at end of file +} diff --git a/boilerplates/solid-sentry/package.json b/boilerplates/solid-sentry/package.json index 49a508069..ff8ec00cb 100644 --- a/boilerplates/solid-sentry/package.json +++ b/boilerplates/solid-sentry/package.json @@ -48,4 +48,4 @@ "type:boilerplate" ] } -} \ No newline at end of file +} diff --git a/boilerplates/solid/package.json b/boilerplates/solid/package.json index bdc4f1fc7..0fecda1f1 100644 --- a/boilerplates/solid/package.json +++ b/boilerplates/solid/package.json @@ -136,4 +136,4 @@ "type:boilerplate" ] } -} \ No newline at end of file +} diff --git a/boilerplates/sqlite/package.json b/boilerplates/sqlite/package.json index a952b9ba0..c41590e33 100644 --- a/boilerplates/sqlite/package.json +++ b/boilerplates/sqlite/package.json @@ -60,4 +60,4 @@ "type:boilerplate" ] } -} \ No newline at end of file +} diff --git a/boilerplates/storybook/package.json b/boilerplates/storybook/package.json index 480e95c2a..5492c9ae6 100644 --- a/boilerplates/storybook/package.json +++ b/boilerplates/storybook/package.json @@ -26,4 +26,4 @@ "type:boilerplate" ] } -} \ No newline at end of file +} diff --git a/boilerplates/tailwindcss/package.json b/boilerplates/tailwindcss/package.json index e379f3da5..bba84f6a6 100644 --- a/boilerplates/tailwindcss/package.json +++ b/boilerplates/tailwindcss/package.json @@ -32,4 +32,4 @@ "type:boilerplate" ] } -} \ No newline at end of file +} diff --git a/boilerplates/telefunc/package.json b/boilerplates/telefunc/package.json index 6bfa0e6ac..d148e92c0 100644 --- a/boilerplates/telefunc/package.json +++ b/boilerplates/telefunc/package.json @@ -48,4 +48,4 @@ "type:boilerplate" ] } -} \ No newline at end of file +} diff --git a/boilerplates/trpc/package.json b/boilerplates/trpc/package.json index ed98914a5..61e6c28a6 100644 --- a/boilerplates/trpc/package.json +++ b/boilerplates/trpc/package.json @@ -35,13 +35,37 @@ ], "trpc/server": [ "./dist/types/trpc/server.d.mts" + ], + "drizzle/dist/types/database/drizzle/db": [ + "./dist/types/drizzle/dist/types/database/drizzle/db.d.mts" + ], + "kysely/dist/types/database/kysely/db": [ + "./dist/types/kysely/dist/types/database/kysely/db.d.mts" + ], + "kysely/dist/types/database/kysely/types": [ + "./dist/types/kysely/dist/types/database/kysely/types.d.mts" + ], + "sqlite/dist/types/database/sqlite/db": [ + "./dist/types/sqlite/dist/types/database/sqlite/db.d.mts" ] } }, "exports": { + "./drizzle/dist/types/database/drizzle/db": { + "types": "./dist/types/drizzle/dist/types/database/drizzle/db.d.mts" + }, + "./kysely/dist/types/database/kysely/db": { + "types": "./dist/types/kysely/dist/types/database/kysely/db.d.mts" + }, + "./kysely/dist/types/database/kysely/types": { + "types": "./dist/types/kysely/dist/types/database/kysely/types.d.mts" + }, "./server/trpc-handler": { "types": "./dist/types/server/trpc-handler.d.mts" }, + "./sqlite/dist/types/database/sqlite/db": { + "types": "./dist/types/sqlite/dist/types/database/sqlite/db.d.mts" + }, "./trpc/client": { "types": "./dist/types/trpc/client.d.mts" }, @@ -54,4 +78,4 @@ "type:boilerplate" ] } -} \ No newline at end of file +} diff --git a/boilerplates/ts-rest/package.json b/boilerplates/ts-rest/package.json index 344c78c14..e07dba3b9 100644 --- a/boilerplates/ts-rest/package.json +++ b/boilerplates/ts-rest/package.json @@ -54,4 +54,4 @@ "type:boilerplate" ] } -} \ No newline at end of file +} diff --git a/boilerplates/vercel/package.json b/boilerplates/vercel/package.json index 7b7da27dd..94c465a3a 100644 --- a/boilerplates/vercel/package.json +++ b/boilerplates/vercel/package.json @@ -30,4 +30,4 @@ "type:boilerplate" ] } -} \ No newline at end of file +} diff --git a/boilerplates/vue-sentry/package.json b/boilerplates/vue-sentry/package.json index 55ea36710..7d95978df 100644 --- a/boilerplates/vue-sentry/package.json +++ b/boilerplates/vue-sentry/package.json @@ -42,4 +42,4 @@ "type:boilerplate" ] } -} \ No newline at end of file +} diff --git a/boilerplates/vue/package.json b/boilerplates/vue/package.json index f8b24a90a..b86a24fb1 100644 --- a/boilerplates/vue/package.json +++ b/boilerplates/vue/package.json @@ -84,4 +84,4 @@ "type:boilerplate" ] } -} \ No newline at end of file +} diff --git a/package.json b/package.json index abfa472d0..d3cd198e2 100644 --- a/package.json +++ b/package.json @@ -17,8 +17,8 @@ "test:e2e": "pnpm run build && pnpm --filter \"@batijs/tests\" test:e2e", "test:e2e:workflow-write": "pnpm test:e2e workflow-write", "cli": "pnpm run build && rimraf /tmp/bati-app && node packages/cli/dist/index.js /tmp/bati-app", - "build": "nx run-many --target=build && pnpm run format", - "build:force": "nx run-many --target=build --skip-nx-cache && pnpm run format", + "build": "nx run-many --target=build", + "build:force": "nx run-many --target=build --skip-nx-cache", "lint": "biome lint", "format": "biome format --write", "check": "biome check --write", diff --git a/packages/compile/build.ts b/packages/compile/build.ts index 0d5a5c273..08d427312 100644 --- a/packages/compile/build.ts +++ b/packages/compile/build.ts @@ -127,7 +127,11 @@ export async function build() { packageJson.exports = sortObject(packageJsonTypes.exports); packageJson.typesVersions = sortObject(packageJsonTypes.typesVersions); - await writeFile("package.json", JSON.stringify(packageJson, undefined, 2).replace(/\r\n/g, "\n"), "utf-8"); + await writeFile( + "package.json", + `${JSON.stringify(packageJson, undefined, 2).replace(/\r\n/g, "\n")}\n`, + "utf-8", + ); console.log("Types generated into", distDir); console.log("Build step complete"); @@ -140,7 +144,7 @@ export async function build() { delete packageJson.exports; delete packageJson.typesVersions; - await writeFile("package.json", JSON.stringify(packageJson, undefined, 2).replace(/\r\n/g, "\n"), "utf-8"); + await writeFile("package.json", `${JSON.stringify(packageJson, undefined, 2).replace(/\r\n/g, "\n")}\n`, "utf-8"); } buildPromises.push(removeTypes()); From 1524c2295a74e6ffa4771dc63d997d5e561bf9b4 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Wed, 25 Mar 2026 15:15:10 +0000 Subject: [PATCH 05/23] Fix prepublishOnly scripts to only build individual packages, not full workspace Co-authored-by: magne4000 <1098371+magne4000@users.noreply.github.com> Agent-Logs-Url: https://github.com/vikejs/bati/sessions/6507d732-297e-4613-a5b4-d77d206dc7e6 --- boilerplates/shared-db/package.json | 18 ------------------ boilerplates/shared-server/package.json | 18 ------------------ packages/cli/package.json | 2 +- packages/compile/package.json | 2 +- packages/features/package.json | 2 +- 5 files changed, 3 insertions(+), 39 deletions(-) diff --git a/boilerplates/shared-db/package.json b/boilerplates/shared-db/package.json index e4d027ea2..dd1a53304 100644 --- a/boilerplates/shared-db/package.json +++ b/boilerplates/shared-db/package.json @@ -26,17 +26,8 @@ "./drizzle/dist/types/database/drizzle/db": { "types": "./dist/types/drizzle/dist/types/database/drizzle/db.d.mts" }, - "./kysely/dist/types/database/kysely/db": { - "types": "./dist/types/kysely/dist/types/database/kysely/db.d.mts" - }, - "./kysely/dist/types/database/kysely/types": { - "types": "./dist/types/kysely/dist/types/database/kysely/types.d.mts" - }, "./server/db-middleware": { "types": "./dist/types/server/db-middleware.d.mts" - }, - "./sqlite/dist/types/database/sqlite/db": { - "types": "./dist/types/sqlite/dist/types/database/sqlite/db.d.mts" } }, "typesVersions": { @@ -46,15 +37,6 @@ ], "drizzle/dist/types/database/drizzle/db": [ "./dist/types/drizzle/dist/types/database/drizzle/db.d.mts" - ], - "sqlite/dist/types/database/sqlite/db": [ - "./dist/types/sqlite/dist/types/database/sqlite/db.d.mts" - ], - "kysely/dist/types/database/kysely/db": [ - "./dist/types/kysely/dist/types/database/kysely/db.d.mts" - ], - "kysely/dist/types/database/kysely/types": [ - "./dist/types/kysely/dist/types/database/kysely/types.d.mts" ] } }, diff --git a/boilerplates/shared-server/package.json b/boilerplates/shared-server/package.json index 4dc99f454..a895e24b3 100644 --- a/boilerplates/shared-server/package.json +++ b/boilerplates/shared-server/package.json @@ -26,17 +26,8 @@ "./drizzle/dist/types/database/drizzle/db": { "types": "./dist/types/drizzle/dist/types/database/drizzle/db.d.mts" }, - "./kysely/dist/types/database/kysely/db": { - "types": "./dist/types/kysely/dist/types/database/kysely/db.d.mts" - }, - "./kysely/dist/types/database/kysely/types": { - "types": "./dist/types/kysely/dist/types/database/kysely/types.d.mts" - }, "./server/create-todo-handler": { "types": "./dist/types/server/create-todo-handler.d.mts" - }, - "./sqlite/dist/types/database/sqlite/db": { - "types": "./dist/types/sqlite/dist/types/database/sqlite/db.d.mts" } }, "typesVersions": { @@ -46,15 +37,6 @@ ], "drizzle/dist/types/database/drizzle/db": [ "./dist/types/drizzle/dist/types/database/drizzle/db.d.mts" - ], - "kysely/dist/types/database/kysely/db": [ - "./dist/types/kysely/dist/types/database/kysely/db.d.mts" - ], - "kysely/dist/types/database/kysely/types": [ - "./dist/types/kysely/dist/types/database/kysely/types.d.mts" - ], - "sqlite/dist/types/database/sqlite/db": [ - "./dist/types/sqlite/dist/types/database/sqlite/db.d.mts" ] } }, diff --git a/packages/cli/package.json b/packages/cli/package.json index 288c89a13..eeeb7f90f 100644 --- a/packages/cli/package.json +++ b/packages/cli/package.json @@ -4,7 +4,7 @@ "type": "module", "scripts": { "check-types": "tsc --noEmit", - "prepublishOnly": "nx run-many --target=build", + "prepublishOnly": "pnpm run build", "build": "tsdown" }, "keywords": [], diff --git a/packages/compile/package.json b/packages/compile/package.json index c52b9fee7..190059bae 100644 --- a/packages/compile/package.json +++ b/packages/compile/package.json @@ -6,7 +6,7 @@ "type": "module", "scripts": { "check-types": "tsc --noEmit", - "prepublishOnly": "nx run-many --target=build", + "prepublishOnly": "pnpm run build", "build": "tsdown" }, "keywords": [], diff --git a/packages/features/package.json b/packages/features/package.json index 412aadfa5..43f6352f2 100644 --- a/packages/features/package.json +++ b/packages/features/package.json @@ -6,7 +6,7 @@ "scripts": { "test": "vitest run", "test:ci": "vitest run", - "prepublishOnly": "nx run-many --target=build", + "prepublishOnly": "pnpm run build", "build": "tsdown", "watch": "tsdown --watch" }, From b5d2605921383d2615acdcdd446211ce4f40f005 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Wed, 25 Mar 2026 16:05:32 +0000 Subject: [PATCH 06/23] Remove turbo and nx from E2E test infrastructure; clean up stale /dist/ exports in boilerplates Co-authored-by: magne4000 <1098371+magne4000@users.noreply.github.com> Agent-Logs-Url: https://github.com/vikejs/bati/sessions/a49572b5-0875-4ed6-a6db-e41d96d16541 --- .github/workflows/reusable.init-tests.yml | 6 -- .github/workflows/reusable.run-tests.yml | 40 +++++------- boilerplates/shared-db/package.json | 18 ++++++ boilerplates/shared-server/package.json | 18 ++++++ boilerplates/trpc/package.json | 12 ---- packages/tests/package.json | 1 - packages/tests/src/common.ts | 49 +-------------- packages/tests/src/exec-bati.ts | 2 +- packages/tests/src/index.ts | 75 +++++------------------ packages/tests/src/prepare.ts | 6 +- packages/tests/src/tmp.ts | 2 +- pnpm-lock.yaml | 64 ------------------- 12 files changed, 74 insertions(+), 219 deletions(-) diff --git a/.github/workflows/reusable.init-tests.yml b/.github/workflows/reusable.init-tests.yml index 5837b6273..55451b289 100644 --- a/.github/workflows/reusable.init-tests.yml +++ b/.github/workflows/reusable.init-tests.yml @@ -34,12 +34,6 @@ jobs: node-version: ${{ env.NODE_VERSION }} cache: 'pnpm' - - name: mkdir temp folder - run: mkdir -p ${{ runner.temp }}/bati-cache - -# - name: Cache for Turbo -# uses: rharkor/caching-for-turbo@v1.8 - - name: Install dependencies run: pnpm install diff --git a/.github/workflows/reusable.run-tests.yml b/.github/workflows/reusable.run-tests.yml index fed9d86d5..7dd128f01 100644 --- a/.github/workflows/reusable.run-tests.yml +++ b/.github/workflows/reusable.run-tests.yml @@ -43,9 +43,6 @@ jobs: with: node-version: ${{ env.NODE_VERSION }} -# - name: Cache for Turbo -# uses: rharkor/caching-for-turbo@v1.8 - - uses: oven-sh/setup-bun@v2 name: Install bun with: @@ -107,52 +104,47 @@ jobs: run: bun install working-directory: ${{ inputs.destination }} + - name: Generate types + if: contains(inputs.flags, '--cloudflare') + shell: bash + run: bun run generate-types + working-directory: ${{ inputs.destination }} + - name: Run build shell: bash - run: - bun turbo run build --no-update-notifier --framework-inference false - --env-mode loose + run: bun run build working-directory: ${{ inputs.destination }} - name: Run tests shell: bash # Bun hangs on Windows - run: - ${{ runner.os == 'Windows' && 'npm run test' || 'bun turbo run test --only - --no-update-notifier --framework-inference false --env-mode loose' }} + run: ${{ runner.os == 'Windows' && 'npm run test' || 'bun run test' }} working-directory: ${{ inputs.destination }} - name: Run lint:eslint + if: contains(inputs.flags, '--eslint') shell: bash - run: - bun turbo run lint:eslint --only --no-update-notifier --framework-inference - false --env-mode loose + run: bun run lint:eslint working-directory: ${{ inputs.destination }} - name: Run lint:biome + if: contains(inputs.flags, '--biome') shell: bash - run: - bun turbo run lint:biome --only --no-update-notifier --framework-inference - false --env-mode loose + run: bun run lint:biome working-directory: ${{ inputs.destination }} - name: Run lint:oxlint + if: contains(inputs.flags, '--oxlint') shell: bash - run: - bun turbo run lint:oxlint --only --no-update-notifier --framework-inference - false --env-mode loose + run: bun run lint:oxlint working-directory: ${{ inputs.destination }} - name: Run typecheck shell: bash - run: - bun turbo run typecheck --only --no-update-notifier --framework-inference - false --env-mode loose + run: bun run typecheck working-directory: ${{ inputs.destination }} - name: Run knip shell: bash - run: - bun turbo run knip --only --no-update-notifier --framework-inference false - --env-mode loose + run: bun run knip working-directory: ${{ inputs.destination }} diff --git a/boilerplates/shared-db/package.json b/boilerplates/shared-db/package.json index dd1a53304..a65d55dd2 100644 --- a/boilerplates/shared-db/package.json +++ b/boilerplates/shared-db/package.json @@ -26,8 +26,17 @@ "./drizzle/dist/types/database/drizzle/db": { "types": "./dist/types/drizzle/dist/types/database/drizzle/db.d.mts" }, + "./kysely/dist/types/database/kysely/db": { + "types": "./dist/types/kysely/dist/types/database/kysely/db.d.mts" + }, + "./kysely/dist/types/database/kysely/types": { + "types": "./dist/types/kysely/dist/types/database/kysely/types.d.mts" + }, "./server/db-middleware": { "types": "./dist/types/server/db-middleware.d.mts" + }, + "./sqlite/dist/types/database/sqlite/db": { + "types": "./dist/types/sqlite/dist/types/database/sqlite/db.d.mts" } }, "typesVersions": { @@ -35,8 +44,17 @@ "server/db-middleware": [ "./dist/types/server/db-middleware.d.mts" ], + "kysely/dist/types/database/kysely/db": [ + "./dist/types/kysely/dist/types/database/kysely/db.d.mts" + ], + "kysely/dist/types/database/kysely/types": [ + "./dist/types/kysely/dist/types/database/kysely/types.d.mts" + ], "drizzle/dist/types/database/drizzle/db": [ "./dist/types/drizzle/dist/types/database/drizzle/db.d.mts" + ], + "sqlite/dist/types/database/sqlite/db": [ + "./dist/types/sqlite/dist/types/database/sqlite/db.d.mts" ] } }, diff --git a/boilerplates/shared-server/package.json b/boilerplates/shared-server/package.json index a895e24b3..4dc99f454 100644 --- a/boilerplates/shared-server/package.json +++ b/boilerplates/shared-server/package.json @@ -26,8 +26,17 @@ "./drizzle/dist/types/database/drizzle/db": { "types": "./dist/types/drizzle/dist/types/database/drizzle/db.d.mts" }, + "./kysely/dist/types/database/kysely/db": { + "types": "./dist/types/kysely/dist/types/database/kysely/db.d.mts" + }, + "./kysely/dist/types/database/kysely/types": { + "types": "./dist/types/kysely/dist/types/database/kysely/types.d.mts" + }, "./server/create-todo-handler": { "types": "./dist/types/server/create-todo-handler.d.mts" + }, + "./sqlite/dist/types/database/sqlite/db": { + "types": "./dist/types/sqlite/dist/types/database/sqlite/db.d.mts" } }, "typesVersions": { @@ -37,6 +46,15 @@ ], "drizzle/dist/types/database/drizzle/db": [ "./dist/types/drizzle/dist/types/database/drizzle/db.d.mts" + ], + "kysely/dist/types/database/kysely/db": [ + "./dist/types/kysely/dist/types/database/kysely/db.d.mts" + ], + "kysely/dist/types/database/kysely/types": [ + "./dist/types/kysely/dist/types/database/kysely/types.d.mts" + ], + "sqlite/dist/types/database/sqlite/db": [ + "./dist/types/sqlite/dist/types/database/sqlite/db.d.mts" ] } }, diff --git a/boilerplates/trpc/package.json b/boilerplates/trpc/package.json index 61e6c28a6..6133ec54c 100644 --- a/boilerplates/trpc/package.json +++ b/boilerplates/trpc/package.json @@ -39,12 +39,6 @@ "drizzle/dist/types/database/drizzle/db": [ "./dist/types/drizzle/dist/types/database/drizzle/db.d.mts" ], - "kysely/dist/types/database/kysely/db": [ - "./dist/types/kysely/dist/types/database/kysely/db.d.mts" - ], - "kysely/dist/types/database/kysely/types": [ - "./dist/types/kysely/dist/types/database/kysely/types.d.mts" - ], "sqlite/dist/types/database/sqlite/db": [ "./dist/types/sqlite/dist/types/database/sqlite/db.d.mts" ] @@ -54,12 +48,6 @@ "./drizzle/dist/types/database/drizzle/db": { "types": "./dist/types/drizzle/dist/types/database/drizzle/db.d.mts" }, - "./kysely/dist/types/database/kysely/db": { - "types": "./dist/types/kysely/dist/types/database/kysely/db.d.mts" - }, - "./kysely/dist/types/database/kysely/types": { - "types": "./dist/types/kysely/dist/types/database/kysely/types.d.mts" - }, "./server/trpc-handler": { "types": "./dist/types/server/trpc-handler.d.mts" }, diff --git a/packages/tests/package.json b/packages/tests/package.json index 66c3e84b7..cf957aa58 100644 --- a/packages/tests/package.json +++ b/packages/tests/package.json @@ -28,7 +28,6 @@ "p-limit": "^7.3.0", "tsdown": "^0.21.4", "tsx": "^4.21.0", - "turbo": "2.8.20", "typescript": "^6.0.2", "vitest": "^4.1.0", "yaml": "^2.8.3" diff --git a/packages/tests/src/common.ts b/packages/tests/src/common.ts index 9a02da900..29b5a7632 100644 --- a/packages/tests/src/common.ts +++ b/packages/tests/src/common.ts @@ -2,14 +2,12 @@ import { readFile, writeFile } from "node:fs/promises"; import { basename, join } from "node:path"; import { isNode, parseDocument } from "yaml"; import packageJson from "../package.json" with { type: "json" }; -import type { GlobalContext } from "./types.js"; export async function updatePackageJson( projectDir: string, flags: string[], packedTestsUtils?: string, packageManager?: string, - addTurbo?: boolean, ) { // add vitest and lint script const pkgjson = JSON.parse(await readFile(join(projectDir, "package.json"), "utf-8")); @@ -30,6 +28,8 @@ export async function updatePackageJson( // Storybook create .ts files that imports .vue files, and tsc complains about that if (!flags.includes("storybook") || !flags.includes("vue")) { pkgjson.scripts.typecheck = "tsc --noEmit"; + } else { + pkgjson.scripts.typecheck = "echo 'typecheck skipped for storybook+vue'"; } pkgjson.devDependencies ??= {}; pkgjson.devDependencies.vitest = packageJson.devDependencies.vitest; @@ -42,9 +42,6 @@ export async function updatePackageJson( if (packageManager) { pkgjson.packageManager = packageManager; } - if (addTurbo) { - pkgjson.devDependencies.turbo = packageJson.devDependencies.turbo; - } await writeFile(join(projectDir, "package.json"), JSON.stringify(pkgjson, undefined, 2), "utf-8"); return pkgjson; @@ -76,48 +73,6 @@ export default defineConfig({ ); } -export async function createTurboConfig(context: GlobalContext) { - await writeFile( - join(context.tmpdir, "turbo.json"), - JSON.stringify({ - $schema: "https://turbo.build/schema.json", - tasks: { - "generate-types": { - outputs: ["worker-configuration.d.ts"], - }, - build: { - dependsOn: ["^build", "generate-types"], - outputs: ["dist/**"], - }, - test: { - dependsOn: ["generate-types", "build"], - env: ["TEST_*"], - }, - "lint:eslint": { - dependsOn: ["generate-types", "build"], - }, - "lint:biome": { - dependsOn: ["generate-types", "build"], - }, - "lint:oxlint": { - dependsOn: ["build"], - }, - typecheck: { - dependsOn: ["generate-types", "build"], - }, - knip: { - // adding "test" because of possible race conditions as knip can execute some files - dependsOn: ["build", "test"], - }, - }, - remoteCache: { - signature: false, - }, - }), - "utf-8", - ); -} - export async function createBatiConfig(projectDir: string, flags: string[]) { await writeFile( join(projectDir, "bati.config.json"), diff --git a/packages/tests/src/exec-bati.ts b/packages/tests/src/exec-bati.ts index 155977c35..a33cb3257 100644 --- a/packages/tests/src/exec-bati.ts +++ b/packages/tests/src/exec-bati.ts @@ -8,7 +8,7 @@ const __dirname = dirname(__filename); export async function execLocalBati(context: GlobalContext, flags: string[], monorepo = true) { const digest = flags.join("--") || "empty"; - // --skip-git ensures proper turborepo cache computation + // --skip-git prevents git init in generated projects // --knip generates knip.json for E2E tests const mappedFlags = ["skip-git", "knip", ...flags].map((f) => `--${f}`); diff --git a/packages/tests/src/index.ts b/packages/tests/src/index.ts index e0ab3e23f..0ad343311 100644 --- a/packages/tests/src/index.ts +++ b/packages/tests/src/index.ts @@ -1,6 +1,6 @@ import { copyFile, readFile, rm, writeFile } from "node:fs/promises"; import http from "node:http"; -import { cpus, tmpdir } from "node:os"; +import { cpus } from "node:os"; import { basename, dirname, join, resolve } from "node:path"; import * as process from "node:process"; import { fileURLToPath } from "node:url"; @@ -10,10 +10,8 @@ import mri from "mri"; import pLimit from "p-limit"; import { Document, parseDocument, YAMLMap, YAMLSeq } from "yaml"; -import packageJson from "../package.json" with { type: "json" }; import { createBatiConfig, - createTurboConfig, extractPnpmOnlyBuiltDependencies, updatePackageJson, updateTsconfig, @@ -64,9 +62,6 @@ async function createWorkspacePackageJson(context: GlobalContext) { JSON.stringify({ name: "bati-tests", private: true, - devDependencies: { - turbo: packageJson.devDependencies.turbo, - }, ...(npmCli === "bun" ? { workspaces: ["packages/*"] } : {}), packageManager: `${npmCli}@${version}`, }), @@ -97,7 +92,6 @@ function linkTestUtils() { async function packageManagerInstall(context: GlobalContext) { { - // we use --prefer-offline in order to hit turborepo cache more often (as there is no bun/pnpm lock file) const child = exec(npmCli, ["install", "--prefer-offline", ...(npmCli === "bun" ? ["--linker", "isolated"] : [])], { // really slow on Windows CI timeout: 5 * 60 * 1000, @@ -132,53 +126,22 @@ async function pnpmRebuild(projectDirs: string[]) { } } -async function execTurborepo(context: GlobalContext, args: mri.Argv) { - const steps = args.steps ? args.steps.split(",") : undefined; - const args_1 = [npmCli === "bun" ? "x" : "exec", "turbo", "run"]; - const args_2 = ["--no-update-notifier", "--framework-inference", "false", "--env-mode", "loose"]; +async function execSteps(context: GlobalContext, args: mri.Argv) { + const steps = args.steps + ? args.steps.split(",") + : ["generate-types", "build", "test", "lint:eslint", "lint:biome", "lint:oxlint", "typecheck", "knip"]; - const cacheDir = process.env.CI ? false : join(tmpdir(), "bati-cache"); - if (cacheDir) { - console.log("[turborepo] Using cache dir", cacheDir); - args_2.push(`--cache-dir`); - args_2.push(cacheDir); - } - - // GitHub CI seems to fail more often with default concurrency - // Also local tests with @cloudflare/vite-plugin can easily crash because of memory overflow without it - args_2.push("--concurrency"); - args_2.push("3"); - - if (args.force) { - args_2.push("--force"); - } - - if (args.summarize) { - // Debug cache hits - args_2.push("--summarize"); - } + for (const step of steps) { + const execArgs = + npmCli === "bun" + ? ["run", "--filter=*", step] + : ["run", "-r", "--workspace-concurrency", "3", "--if-present", step]; - await exec( - npmCli, - [ - ...args_1, - ...(steps ?? [ - "generate-types", - "build", - "test", - "lint:eslint", - "lint:biome", - "lint:oxlint", - "typecheck", - "knip", - ]), - ...args_2, - ], - { + await exec(npmCli, execArgs, { timeout: 35 * 60 * 1000, // 35min cwd: context.tmpdir, - }, - ); + }); + } } function isVerdaccioRunning() { @@ -347,12 +310,9 @@ async function main(context: GlobalContext, args: mri.Argv) { await createPnpmWorkspaceYaml(context, onlyBuiltDependencies); } - // create .gitignore file, used by turborepo cache hash computation + // create .gitignore file await createGitIgnore(context); - // create turbo config - await createTurboConfig(context); - // pnpm/bun link in @batijs/tests-utils so that it can be used inside /tmt/bati/* await linkTestUtils(); @@ -364,8 +324,8 @@ async function main(context: GlobalContext, args: mri.Argv) { await pnpmRebuild(pnpmRebuildProjectDirs); } - // exec turbo run test lint build - await execTurborepo(context, args); + // exec test steps across all generated packages + await execSteps(context, args); } const argv = process.argv.slice(2); @@ -380,8 +340,7 @@ try { } finally { if (context.tmpdir && !args.keep) { // Delete all tmp dirs - // We keep this folder on CI because it's cleared automatically, and because we want to upload the json summaries - // which are generated in `${context.tmpdir}/.turbo/runs` + // We keep this folder on CI because it's cleared automatically await spinner("Cleaning temporary folder...", () => rm(context.tmpdir, { recursive: true, force: true, maxRetries: 2 }), ); diff --git a/packages/tests/src/prepare.ts b/packages/tests/src/prepare.ts index e7f3c1177..c4c503ec0 100644 --- a/packages/tests/src/prepare.ts +++ b/packages/tests/src/prepare.ts @@ -2,7 +2,6 @@ import { readdirSync } from "node:fs"; import mri from "mri"; import { createBatiConfig, - createTurboConfig, updatePackageJson, updateTsconfig, updateVitestConfig, @@ -17,12 +16,9 @@ async function prepare(flags: string[], testFiles: string) { } // @ts-expect-error - await updatePackageJson(projectDir, flags, `./${packedTestUtils}`, `bun@${Bun.version}`, true); + await updatePackageJson(projectDir, flags, `./${packedTestUtils}`, `bun@${Bun.version}`); await updateTsconfig(projectDir); await updateVitestConfig(projectDir, testFiles); - await createTurboConfig({ - tmpdir: projectDir, - }); // knip.json is generated by CLI with --knip flag await createBatiConfig(projectDir, flags); } diff --git a/packages/tests/src/tmp.ts b/packages/tests/src/tmp.ts index 606cdd733..b875998be 100644 --- a/packages/tests/src/tmp.ts +++ b/packages/tests/src/tmp.ts @@ -5,7 +5,7 @@ import process from "node:process"; import type { GlobalContext } from "./types.js"; export async function initTmpDir(context: GlobalContext) { - // turborepo hash seems to include cwd(), so always use the same temp folder + // always use the same temp folder for predictable cleanup // context.tmpdir = await mkdtemp(join(tmpdir(), "bati-")); context.tmpdir = join(process.env.CI ? process.env.RUNNER_TEMP || tmpdir() : tmpdir(), "bati"); diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index e36027b46..abe5cd0c8 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -1436,9 +1436,6 @@ importers: tsx: specifier: ^4.21.0 version: 4.21.0 - turbo: - specifier: 2.8.20 - version: 2.8.20 typescript: specifier: ^6.0.2 version: 6.0.2 @@ -4377,36 +4374,6 @@ packages: zod: optional: true - '@turbo/darwin-64@2.8.20': - resolution: {integrity: sha512-FQ9EX1xMU5nbwjxXxM3yU88AQQ6Sqc6S44exPRroMcx9XZHqqppl5ymJF0Ig/z3nvQNwDmz1Gsnvxubo+nXWjQ==} - cpu: [x64] - os: [darwin] - - '@turbo/darwin-arm64@2.8.20': - resolution: {integrity: sha512-Gpyh9ATFGThD6/s9L95YWY54cizg/VRWl2B67h0yofG8BpHf67DFAh9nuJVKG7bY0+SBJDAo5cMur+wOl9YOYw==} - cpu: [arm64] - os: [darwin] - - '@turbo/linux-64@2.8.20': - resolution: {integrity: sha512-p2QxWUYyYUgUFG0b0kR+pPi8t7c9uaVlRtjTTI1AbCvVqkpjUfCcReBn6DgG/Hu8xrWdKLuyQFaLYFzQskZbcA==} - cpu: [x64] - os: [linux] - - '@turbo/linux-arm64@2.8.20': - resolution: {integrity: sha512-Gn5yjlZGLRZWarLWqdQzv0wMqyBNIdq1QLi48F1oY5Lo9kiohuf7BPQWtWxeNVS2NgJ1+nb/DzK1JduYC4AWOA==} - cpu: [arm64] - os: [linux] - - '@turbo/windows-64@2.8.20': - resolution: {integrity: sha512-vyaDpYk/8T6Qz5V/X+ihKvKFEZFUoC0oxYpC1sZanK6gaESJlmV3cMRT3Qhcg4D2VxvtC2Jjs9IRkrZGL+exLw==} - cpu: [x64] - os: [win32] - - '@turbo/windows-arm64@2.8.20': - resolution: {integrity: sha512-voicVULvUV5yaGXo0Iue13BcHGYW3u0VgqSbfQwBaHbpj1zLjYV4KIe+7fYIo6DO8FVUJzxFps3ODCQG/Wy2Qw==} - cpu: [arm64] - os: [win32] - '@tybys/wasm-util@0.10.1': resolution: {integrity: sha512-9tTaPJLSiejZKx+Bmog4uSubteqTvFrVrURwkmHixBo0G4seD0zUxp98E1DzUBJxLQ3NPwXrGKDiVjwx/DpPsg==} @@ -8720,10 +8687,6 @@ packages: tunnel-agent@0.6.0: resolution: {integrity: sha512-McnNiV1l8RYeY8tBgEpuodCC1mLUdbSN+CYBL7kJsJNInOP8UjDDEwdk6Mw60vdLLrr5NHKZhMAOSrR2NZuQ+w==} - turbo@2.8.20: - resolution: {integrity: sha512-Rb4qk5YT8RUwwdXtkLpkVhNEe/lor6+WV7S5tTlLpxSz6MjV5Qi8jGNn4gS6NAvrYGA/rNrE6YUQM85sCZUDbQ==} - hasBin: true - tw-animate-css@1.4.0: resolution: {integrity: sha512-7bziOlRqH0hJx80h/3mbicLW7o8qLsH5+RaLR2t+OHM3D0JlWGODQKQ4cxbK7WlvmUxpcj6Kgu6EKqjrGFe3QQ==} @@ -11716,24 +11679,6 @@ snapshots: '@types/aws-lambda': 8.10.161 zod: 3.25.76 - '@turbo/darwin-64@2.8.20': - optional: true - - '@turbo/darwin-arm64@2.8.20': - optional: true - - '@turbo/linux-64@2.8.20': - optional: true - - '@turbo/linux-arm64@2.8.20': - optional: true - - '@turbo/windows-64@2.8.20': - optional: true - - '@turbo/windows-arm64@2.8.20': - optional: true - '@tybys/wasm-util@0.10.1': dependencies: tslib: 2.8.1 @@ -16846,15 +16791,6 @@ snapshots: dependencies: safe-buffer: 5.2.1 - turbo@2.8.20: - optionalDependencies: - '@turbo/darwin-64': 2.8.20 - '@turbo/darwin-arm64': 2.8.20 - '@turbo/linux-64': 2.8.20 - '@turbo/linux-arm64': 2.8.20 - '@turbo/windows-64': 2.8.20 - '@turbo/windows-arm64': 2.8.20 - tw-animate-css@1.4.0: {} type-check@0.4.0: From dad055da0326ce69183604fd8531474cafb98028 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Wed, 25 Mar 2026 16:30:35 +0000 Subject: [PATCH 07/23] Fix storybook E2E: run generated project in runner.temp to avoid Nx detection Co-authored-by: magne4000 <1098371+magne4000@users.noreply.github.com> Agent-Logs-Url: https://github.com/vikejs/bati/sessions/a7dc85a1-8071-4118-9688-032ccfaf8b0d --- .github/workflows/reusable.run-tests.yml | 34 +++++++++++++----------- 1 file changed, 18 insertions(+), 16 deletions(-) diff --git a/.github/workflows/reusable.run-tests.yml b/.github/workflows/reusable.run-tests.yml index 7dd128f01..c6a4b212f 100644 --- a/.github/workflows/reusable.run-tests.yml +++ b/.github/workflows/reusable.run-tests.yml @@ -80,71 +80,73 @@ jobs: - name: Run Bati CLI shell: bash - run: bun ./bati-cli/index.js --knip ${{ inputs.flags }} ${{ inputs.destination }} + # Run the CLI with the destination outside the checkout to prevent tools + # like Storybook from walking up and detecting nx.json in the repo root. + run: bun ${{ github.workspace }}/bati-cli/index.js --knip ${{ inputs.flags }} ${{ runner.temp }}/${{ inputs.destination }} - name: Link tests-utils shell: bash - run: cp -s ../bati-tests-utils/* . - working-directory: ${{ inputs.destination }} + run: cp -s ${{ github.workspace }}/bati-tests-utils/* . + working-directory: ${{ runner.temp }}/${{ inputs.destination }} - name: Link tests files shell: bash - run: cp -s ../bati-tests-files/* . - working-directory: ${{ inputs.destination }} + run: cp -s ${{ github.workspace }}/bati-tests-files/* . + working-directory: ${{ runner.temp }}/${{ inputs.destination }} - name: Prepare Bati tests shell: bash run: - bun ../bati-tests/prepare.js --test-files='${{ inputs.test-files }}' ${{ + bun ${{ github.workspace }}/bati-tests/prepare.js --test-files='${{ inputs.test-files }}' ${{ inputs.flags }} - working-directory: ${{ inputs.destination }} + working-directory: ${{ runner.temp }}/${{ inputs.destination }} - name: Install dependencies shell: bash run: bun install - working-directory: ${{ inputs.destination }} + working-directory: ${{ runner.temp }}/${{ inputs.destination }} - name: Generate types if: contains(inputs.flags, '--cloudflare') shell: bash run: bun run generate-types - working-directory: ${{ inputs.destination }} + working-directory: ${{ runner.temp }}/${{ inputs.destination }} - name: Run build shell: bash run: bun run build - working-directory: ${{ inputs.destination }} + working-directory: ${{ runner.temp }}/${{ inputs.destination }} - name: Run tests shell: bash # Bun hangs on Windows run: ${{ runner.os == 'Windows' && 'npm run test' || 'bun run test' }} - working-directory: ${{ inputs.destination }} + working-directory: ${{ runner.temp }}/${{ inputs.destination }} - name: Run lint:eslint if: contains(inputs.flags, '--eslint') shell: bash run: bun run lint:eslint - working-directory: ${{ inputs.destination }} + working-directory: ${{ runner.temp }}/${{ inputs.destination }} - name: Run lint:biome if: contains(inputs.flags, '--biome') shell: bash run: bun run lint:biome - working-directory: ${{ inputs.destination }} + working-directory: ${{ runner.temp }}/${{ inputs.destination }} - name: Run lint:oxlint if: contains(inputs.flags, '--oxlint') shell: bash run: bun run lint:oxlint - working-directory: ${{ inputs.destination }} + working-directory: ${{ runner.temp }}/${{ inputs.destination }} - name: Run typecheck shell: bash run: bun run typecheck - working-directory: ${{ inputs.destination }} + working-directory: ${{ runner.temp }}/${{ inputs.destination }} - name: Run knip shell: bash run: bun run knip - working-directory: ${{ inputs.destination }} + working-directory: ${{ runner.temp }}/${{ inputs.destination }} From 5a0aa3aa4f35f042e4e3cdff043a1c270592c449 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jo=C3=ABl=20Charles?= Date: Wed, 25 Mar 2026 17:54:31 +0100 Subject: [PATCH 08/23] chore --- boilerplates/shared-db/package.json | 6 +++--- boilerplates/solid/package.json | 6 +++--- boilerplates/trpc/package.json | 12 ------------ nx.json | 3 ++- packages/compile/build.ts | 1 + packages/tests/src/prepare.ts | 7 +------ pnpm-workspace.yaml | 1 + scripts/new-boilerplate.ts | 1 - 8 files changed, 11 insertions(+), 26 deletions(-) diff --git a/boilerplates/shared-db/package.json b/boilerplates/shared-db/package.json index a65d55dd2..f57fb966e 100644 --- a/boilerplates/shared-db/package.json +++ b/boilerplates/shared-db/package.json @@ -44,15 +44,15 @@ "server/db-middleware": [ "./dist/types/server/db-middleware.d.mts" ], + "drizzle/dist/types/database/drizzle/db": [ + "./dist/types/drizzle/dist/types/database/drizzle/db.d.mts" + ], "kysely/dist/types/database/kysely/db": [ "./dist/types/kysely/dist/types/database/kysely/db.d.mts" ], "kysely/dist/types/database/kysely/types": [ "./dist/types/kysely/dist/types/database/kysely/types.d.mts" ], - "drizzle/dist/types/database/drizzle/db": [ - "./dist/types/drizzle/dist/types/database/drizzle/db.d.mts" - ], "sqlite/dist/types/database/sqlite/db": [ "./dist/types/sqlite/dist/types/database/sqlite/db.d.mts" ] diff --git a/boilerplates/solid/package.json b/boilerplates/solid/package.json index 0fecda1f1..43f1b7eac 100644 --- a/boilerplates/solid/package.json +++ b/boilerplates/solid/package.json @@ -108,15 +108,15 @@ "pages/index/Counter": [ "./dist/types/pages/index/Counter.d.mts" ], - "pages/star-wars/types": [ - "./dist/types/pages/star-wars/types.d.mts" - ], "pages/todo/+Page": [ "./dist/types/pages/todo/+Page.d.mts" ], "pages/todo/TodoList": [ "./dist/types/pages/todo/TodoList.d.mts" ], + "pages/star-wars/types": [ + "./dist/types/pages/star-wars/types.d.mts" + ], "pages/star-wars/@id/+Page": [ "./dist/types/pages/star-wars/@id/+Page.d.mts" ], diff --git a/boilerplates/trpc/package.json b/boilerplates/trpc/package.json index 6133ec54c..9196000a8 100644 --- a/boilerplates/trpc/package.json +++ b/boilerplates/trpc/package.json @@ -35,25 +35,13 @@ ], "trpc/server": [ "./dist/types/trpc/server.d.mts" - ], - "drizzle/dist/types/database/drizzle/db": [ - "./dist/types/drizzle/dist/types/database/drizzle/db.d.mts" - ], - "sqlite/dist/types/database/sqlite/db": [ - "./dist/types/sqlite/dist/types/database/sqlite/db.d.mts" ] } }, "exports": { - "./drizzle/dist/types/database/drizzle/db": { - "types": "./dist/types/drizzle/dist/types/database/drizzle/db.d.mts" - }, "./server/trpc-handler": { "types": "./dist/types/server/trpc-handler.d.mts" }, - "./sqlite/dist/types/database/sqlite/db": { - "types": "./dist/types/sqlite/dist/types/database/sqlite/db.d.mts" - }, "./trpc/client": { "types": "./dist/types/trpc/client.d.mts" }, diff --git a/nx.json b/nx.json index 59da98f44..b0a0cdefc 100644 --- a/nx.json +++ b/nx.json @@ -14,5 +14,6 @@ "check-types": { "cache": true } - } + }, + "analytics": false } diff --git a/packages/compile/build.ts b/packages/compile/build.ts index 08d427312..1c377b920 100644 --- a/packages/compile/build.ts +++ b/packages/compile/build.ts @@ -103,6 +103,7 @@ export async function build() { }, deps: { skipNodeModulesBundle: true, + neverBundle: [/@batijs\/.*/], }, onSuccess: async () => { const distDir = path.join(process.cwd(), "dist", "types"); diff --git a/packages/tests/src/prepare.ts b/packages/tests/src/prepare.ts index c4c503ec0..5dc874015 100644 --- a/packages/tests/src/prepare.ts +++ b/packages/tests/src/prepare.ts @@ -1,11 +1,6 @@ import { readdirSync } from "node:fs"; import mri from "mri"; -import { - createBatiConfig, - updatePackageJson, - updateTsconfig, - updateVitestConfig, -} from "./common.js"; +import { createBatiConfig, updatePackageJson, updateTsconfig, updateVitestConfig } from "./common.js"; async function prepare(flags: string[], testFiles: string) { const projectDir = "."; diff --git a/pnpm-workspace.yaml b/pnpm-workspace.yaml index 3249c12ff..4a263db71 100644 --- a/pnpm-workspace.yaml +++ b/pnpm-workspace.yaml @@ -27,6 +27,7 @@ onlyBuiltDependencies: - better-sqlite3 - es5-ext - esbuild + - nx - oxc-resolver - prisma - protobufjs diff --git a/scripts/new-boilerplate.ts b/scripts/new-boilerplate.ts index 3022d5c23..791626b30 100644 --- a/scripts/new-boilerplate.ts +++ b/scripts/new-boilerplate.ts @@ -111,4 +111,3 @@ const main = defineCommand({ }); runMain(main); - From 27b02b86bb453c61ad177f2379b039e6da098d29 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Wed, 25 Mar 2026 18:12:01 +0000 Subject: [PATCH 09/23] Restore nx-based test orchestration for local e2e runs; fix Windows path escaping in CI workflow Co-authored-by: magne4000 <1098371+magne4000@users.noreply.github.com> Agent-Logs-Url: https://github.com/vikejs/bati/sessions/3146ee67-a55a-4562-80ea-6eef09bb3fbf --- .github/workflows/reusable.run-tests.yml | 10 +++-- packages/tests/src/common.ts | 48 ++++++++++++++++++++++++ packages/tests/src/index.ts | 34 +++++++++++------ 3 files changed, 77 insertions(+), 15 deletions(-) diff --git a/.github/workflows/reusable.run-tests.yml b/.github/workflows/reusable.run-tests.yml index c6a4b212f..7ca2e4c8c 100644 --- a/.github/workflows/reusable.run-tests.yml +++ b/.github/workflows/reusable.run-tests.yml @@ -82,22 +82,24 @@ jobs: shell: bash # Run the CLI with the destination outside the checkout to prevent tools # like Storybook from walking up and detecting nx.json in the repo root. - run: bun ${{ github.workspace }}/bati-cli/index.js --knip ${{ inputs.flags }} ${{ runner.temp }}/${{ inputs.destination }} + # Use $GITHUB_WORKSPACE/$RUNNER_TEMP env vars (not ${{ }} expressions) so bash + # does not interpret backslashes in Windows paths as escape sequences. + run: bun "$GITHUB_WORKSPACE/bati-cli/index.js" --knip ${{ inputs.flags }} "$RUNNER_TEMP/${{ inputs.destination }}" - name: Link tests-utils shell: bash - run: cp -s ${{ github.workspace }}/bati-tests-utils/* . + run: cp -s "$GITHUB_WORKSPACE/bati-tests-utils/"* . working-directory: ${{ runner.temp }}/${{ inputs.destination }} - name: Link tests files shell: bash - run: cp -s ${{ github.workspace }}/bati-tests-files/* . + run: cp -s "$GITHUB_WORKSPACE/bati-tests-files/"* . working-directory: ${{ runner.temp }}/${{ inputs.destination }} - name: Prepare Bati tests shell: bash run: - bun ${{ github.workspace }}/bati-tests/prepare.js --test-files='${{ inputs.test-files }}' ${{ + bun "$GITHUB_WORKSPACE/bati-tests/prepare.js" --test-files='${{ inputs.test-files }}' ${{ inputs.flags }} working-directory: ${{ runner.temp }}/${{ inputs.destination }} diff --git a/packages/tests/src/common.ts b/packages/tests/src/common.ts index 29b5a7632..d43382e68 100644 --- a/packages/tests/src/common.ts +++ b/packages/tests/src/common.ts @@ -2,6 +2,7 @@ import { readFile, writeFile } from "node:fs/promises"; import { basename, join } from "node:path"; import { isNode, parseDocument } from "yaml"; import packageJson from "../package.json" with { type: "json" }; +import type { GlobalContext } from "./types.js"; export async function updatePackageJson( projectDir: string, @@ -99,3 +100,50 @@ export async function extractPnpmOnlyBuiltDependencies(projectDir: string, onlyB // noop } } + +export async function createNxConfig(context: GlobalContext) { + await writeFile( + join(context.tmpdir, "nx.json"), + JSON.stringify( + { + $schema: "https://nx.dev/reference/nx-json", + targetDefaults: { + "generate-types": { + cache: false, + }, + build: { + dependsOn: ["generate-types"], + cache: false, + }, + test: { + dependsOn: ["build"], + cache: false, + }, + "lint:eslint": { + dependsOn: ["build"], + cache: false, + }, + "lint:biome": { + dependsOn: ["build"], + cache: false, + }, + "lint:oxlint": { + dependsOn: ["build"], + cache: false, + }, + typecheck: { + dependsOn: ["build"], + cache: false, + }, + knip: { + dependsOn: ["build", "test"], + cache: false, + }, + }, + }, + undefined, + 2, + ) + "\n", + "utf-8", + ); +} diff --git a/packages/tests/src/index.ts b/packages/tests/src/index.ts index 0ad343311..f1142c422 100644 --- a/packages/tests/src/index.ts +++ b/packages/tests/src/index.ts @@ -10,8 +10,10 @@ import mri from "mri"; import pLimit from "p-limit"; import { Document, parseDocument, YAMLMap, YAMLSeq } from "yaml"; +import rootPackageJson from "../../../package.json" with { type: "json" }; import { createBatiConfig, + createNxConfig, extractPnpmOnlyBuiltDependencies, updatePackageJson, updateTsconfig, @@ -62,6 +64,9 @@ async function createWorkspacePackageJson(context: GlobalContext) { JSON.stringify({ name: "bati-tests", private: true, + devDependencies: { + nx: rootPackageJson.devDependencies.nx, + }, ...(npmCli === "bun" ? { workspaces: ["packages/*"] } : {}), packageManager: `${npmCli}@${version}`, }), @@ -126,21 +131,24 @@ async function pnpmRebuild(projectDirs: string[]) { } } -async function execSteps(context: GlobalContext, args: mri.Argv) { +async function execNx(context: GlobalContext, args: mri.Argv) { const steps = args.steps ? args.steps.split(",") : ["generate-types", "build", "test", "lint:eslint", "lint:biome", "lint:oxlint", "typecheck", "knip"]; for (const step of steps) { - const execArgs = - npmCli === "bun" - ? ["run", "--filter=*", step] - : ["run", "-r", "--workspace-concurrency", "3", "--if-present", step]; - - await exec(npmCli, execArgs, { - timeout: 35 * 60 * 1000, // 35min - cwd: context.tmpdir, - }); + await exec( + npmCli, + [npmCli === "bun" ? "x" : "exec", "nx", "run-many", `--target=${step}`], + { + timeout: 35 * 60 * 1000, // 35min + cwd: context.tmpdir, + env: { + NX_DAEMON: "false", + NX_TUI: "false", + }, + }, + ); } } @@ -313,6 +321,10 @@ async function main(context: GlobalContext, args: mri.Argv) { // create .gitignore file await createGitIgnore(context); + // create nx config for workspace-level task orchestration + // Note: nx.json is created AFTER execLocalBati so storybook init cannot detect it + await createNxConfig(context); + // pnpm/bun link in @batijs/tests-utils so that it can be used inside /tmt/bati/* await linkTestUtils(); @@ -325,7 +337,7 @@ async function main(context: GlobalContext, args: mri.Argv) { } // exec test steps across all generated packages - await execSteps(context, args); + await execNx(context, args); } const argv = process.argv.slice(2); From 5c64457c52705b9ec44d62aefff50fc64bd934ba Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Wed, 25 Mar 2026 19:19:03 +0000 Subject: [PATCH 10/23] Add forceExit to vitest config to prevent hanging in aws/vercel E2E tests Co-authored-by: magne4000 <1098371+magne4000@users.noreply.github.com> Agent-Logs-Url: https://github.com/vikejs/bati/sessions/6bae1201-0805-4ae3-ad3e-43ccb0592660 --- packages/tests/src/common.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/packages/tests/src/common.ts b/packages/tests/src/common.ts index d43382e68..c91291963 100644 --- a/packages/tests/src/common.ts +++ b/packages/tests/src/common.ts @@ -67,6 +67,7 @@ export default defineConfig({ test: { include: ${testFiles ? JSON.stringify(testFiles.split(",")) : '["*.spec.ts"]'}, testTimeout: 100000, + forceExit: true, }, } as ViteUserConfig); `, From a84d05222c6937814b21e32b5c530c0e415366c8 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Wed, 25 Mar 2026 21:49:04 +0000 Subject: [PATCH 11/23] Fix aws/vercel E2E hanging and Windows test failure MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Add timeout:90s to execSync in aws spec so cdk synth cannot block the event loop indefinitely (hookTimeout can now fire) - Remove dependsOn from createNxConfig: execNx already sequences steps manually, so dependsOn was silently re-running build before test/lint/ typecheck/knip — causing tests to appear hung on slow machines - Change cp -s to cp in reusable.run-tests.yml: Windows symlink creation requires elevated privileges in Git Bash; plain copy is portable Co-authored-by: magne4000 <1098371+magne4000@users.noreply.github.com> Agent-Logs-Url: https://github.com/vikejs/bati/sessions/78cea5d1-663b-43b7-85f4-930ea8b6e830 --- .github/workflows/reusable.run-tests.yml | 8 ++++---- packages/tests/src/common.ts | 7 ------- packages/tests/tests/FRAMEWORK+aws.spec.ts | 1 + 3 files changed, 5 insertions(+), 11 deletions(-) diff --git a/.github/workflows/reusable.run-tests.yml b/.github/workflows/reusable.run-tests.yml index 7ca2e4c8c..b22adf954 100644 --- a/.github/workflows/reusable.run-tests.yml +++ b/.github/workflows/reusable.run-tests.yml @@ -86,14 +86,14 @@ jobs: # does not interpret backslashes in Windows paths as escape sequences. run: bun "$GITHUB_WORKSPACE/bati-cli/index.js" --knip ${{ inputs.flags }} "$RUNNER_TEMP/${{ inputs.destination }}" - - name: Link tests-utils + - name: Copy tests-utils shell: bash - run: cp -s "$GITHUB_WORKSPACE/bati-tests-utils/"* . + run: cp "$GITHUB_WORKSPACE/bati-tests-utils/"* . working-directory: ${{ runner.temp }}/${{ inputs.destination }} - - name: Link tests files + - name: Copy tests files shell: bash - run: cp -s "$GITHUB_WORKSPACE/bati-tests-files/"* . + run: cp "$GITHUB_WORKSPACE/bati-tests-files/"* . working-directory: ${{ runner.temp }}/${{ inputs.destination }} - name: Prepare Bati tests diff --git a/packages/tests/src/common.ts b/packages/tests/src/common.ts index c91291963..e4bc16227 100644 --- a/packages/tests/src/common.ts +++ b/packages/tests/src/common.ts @@ -113,31 +113,24 @@ export async function createNxConfig(context: GlobalContext) { cache: false, }, build: { - dependsOn: ["generate-types"], cache: false, }, test: { - dependsOn: ["build"], cache: false, }, "lint:eslint": { - dependsOn: ["build"], cache: false, }, "lint:biome": { - dependsOn: ["build"], cache: false, }, "lint:oxlint": { - dependsOn: ["build"], cache: false, }, typecheck: { - dependsOn: ["build"], cache: false, }, knip: { - dependsOn: ["build", "test"], cache: false, }, }, diff --git a/packages/tests/tests/FRAMEWORK+aws.spec.ts b/packages/tests/tests/FRAMEWORK+aws.spec.ts index 4483c3ba4..59cdf57ca 100644 --- a/packages/tests/tests/FRAMEWORK+aws.spec.ts +++ b/packages/tests/tests/FRAMEWORK+aws.spec.ts @@ -20,6 +20,7 @@ await describeBati( execSync(synthCommand, { encoding: "utf8", maxBuffer: 50 * 1024 * 1024, + timeout: 90 * 1000, // 90s — unblocks the event loop so hookTimeout can fire env: { BUN_LOCKFILE: "../../bun.lockb", // This is to make sure that the correct lockfile is used in a bun project PATH: process.env.PATH, From dc6313390eadadfde41ceef034108bda18545467 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Wed, 25 Mar 2026 22:03:19 +0000 Subject: [PATCH 12/23] Add debug instrumentation; restore cp -s and dependsOn+caching - Add [bati-test] logs to beforeAll/afterAll (mode, cwd, PID, timing) - Log dev server start command and ready URL + PID - Log each execNx step with ISO timestamp and elapsed time - Print temp directory path at startup (essential for --keep workflow) - Restore cp -s in reusable.run-tests.yml (was never an issue) - Restore dependsOn in createNxConfig; enable nx caching for build so downstream dependsOn re-runs are cheap cache hits, not full rebuilds Co-authored-by: magne4000 <1098371+magne4000@users.noreply.github.com> Agent-Logs-Url: https://github.com/vikejs/bati/sessions/78cea5d1-663b-43b7-85f4-930ea8b6e830 --- .github/workflows/reusable.run-tests.yml | 8 ++++---- packages/tests-utils/src/prepare.ts | 4 ++++ packages/tests-utils/src/run-dev.ts | 2 ++ packages/tests/src/common.ts | 10 +++++++++- packages/tests/src/index.ts | 4 ++++ 5 files changed, 23 insertions(+), 5 deletions(-) diff --git a/.github/workflows/reusable.run-tests.yml b/.github/workflows/reusable.run-tests.yml index b22adf954..7ca2e4c8c 100644 --- a/.github/workflows/reusable.run-tests.yml +++ b/.github/workflows/reusable.run-tests.yml @@ -86,14 +86,14 @@ jobs: # does not interpret backslashes in Windows paths as escape sequences. run: bun "$GITHUB_WORKSPACE/bati-cli/index.js" --knip ${{ inputs.flags }} "$RUNNER_TEMP/${{ inputs.destination }}" - - name: Copy tests-utils + - name: Link tests-utils shell: bash - run: cp "$GITHUB_WORKSPACE/bati-tests-utils/"* . + run: cp -s "$GITHUB_WORKSPACE/bati-tests-utils/"* . working-directory: ${{ runner.temp }}/${{ inputs.destination }} - - name: Copy tests files + - name: Link tests files shell: bash - run: cp "$GITHUB_WORKSPACE/bati-tests-files/"* . + run: cp -s "$GITHUB_WORKSPACE/bati-tests-files/"* . working-directory: ${{ runner.temp }}/${{ inputs.destination }} - name: Prepare Bati tests diff --git a/packages/tests-utils/src/prepare.ts b/packages/tests-utils/src/prepare.ts index adc9c936b..ab97b42bd 100644 --- a/packages/tests-utils/src/prepare.ts +++ b/packages/tests-utils/src/prepare.ts @@ -44,6 +44,8 @@ export async function prepare({ mode = "dev", retry, script }: PrepareOptions = function hooks() { beforeAll(async () => { + const t0 = Date.now(); + console.log(`[bati-test] beforeAll start (mode=${mode}, cwd=${process.cwd()})`); if (mode === "dev") { await initPort(context); await runDevServer(context); @@ -53,6 +55,7 @@ export async function prepare({ mode = "dev", retry, script }: PrepareOptions = } else if (mode === "build") { await retryX(() => runBuild(context), retry); } + console.log(`[bati-test] beforeAll done in ${((Date.now() - t0) / 1000).toFixed(1)}s`); }, 120000); // Cleanup tests: @@ -60,6 +63,7 @@ export async function prepare({ mode = "dev", retry, script }: PrepareOptions = // - Remove temp dir afterAll(async () => { const pid = context.server?.pid; + console.log(`[bati-test] afterAll: killing server PID=${pid ?? "none"}`); if (typeof pid === "number") { await Promise.race([kill(pid), new Promise((_resolve, reject) => setTimeout(reject, 5000))]); } diff --git a/packages/tests-utils/src/run-dev.ts b/packages/tests-utils/src/run-dev.ts index 173166285..db916f40e 100644 --- a/packages/tests-utils/src/run-dev.ts +++ b/packages/tests-utils/src/run-dev.ts @@ -5,6 +5,7 @@ import { waitForLocalhost } from "./wait-for-localhost.js"; export async function runDevServer(context: GlobalContext) { const cmd = ["run", "dev", "--port", String(context.port)]; + console.log(`[bati-test] Starting dev server: ${npmCli} ${cmd.join(" ")}`); context.server = exec(npmCli, cmd, { env: { PORT: String(context.port), @@ -28,5 +29,6 @@ export async function runDevServer(context: GlobalContext) { throw new Error("Server stopped before tests could run"); } + console.log(`[bati-test] Dev server ready at http://localhost:${context.port} (PID: ${context.server.pid ?? "unknown"})`); return { server: context.server, port: context.port }; } diff --git a/packages/tests/src/common.ts b/packages/tests/src/common.ts index e4bc16227..cf99165f9 100644 --- a/packages/tests/src/common.ts +++ b/packages/tests/src/common.ts @@ -113,24 +113,32 @@ export async function createNxConfig(context: GlobalContext) { cache: false, }, build: { - cache: false, + dependsOn: ["generate-types"], + // build results are cached so that dependsOn chains (test → build, + // lint → build, etc.) reuse the cached output instead of rebuilding }, test: { + dependsOn: ["build"], cache: false, }, "lint:eslint": { + dependsOn: ["build"], cache: false, }, "lint:biome": { + dependsOn: ["build"], cache: false, }, "lint:oxlint": { + dependsOn: ["build"], cache: false, }, typecheck: { + dependsOn: ["build"], cache: false, }, knip: { + dependsOn: ["build", "test"], cache: false, }, }, diff --git a/packages/tests/src/index.ts b/packages/tests/src/index.ts index f1142c422..8a6465cec 100644 --- a/packages/tests/src/index.ts +++ b/packages/tests/src/index.ts @@ -137,6 +137,8 @@ async function execNx(context: GlobalContext, args: mri.Argv) { : ["generate-types", "build", "test", "lint:eslint", "lint:biome", "lint:oxlint", "typecheck", "knip"]; for (const step of steps) { + const t0 = Date.now(); + console.log(`[${new Date().toISOString()}] Running step: ${step}`); await exec( npmCli, [npmCli === "bun" ? "x" : "exec", "nx", "run-many", `--target=${step}`], @@ -149,6 +151,7 @@ async function execNx(context: GlobalContext, args: mri.Argv) { }, }, ); + console.log(`[${new Date().toISOString()}] Step "${step}" completed in ${((Date.now() - t0) / 1000).toFixed(1)}s`); } } @@ -284,6 +287,7 @@ async function main(context: GlobalContext, args: mri.Argv) { } await initTmpDir(context); + console.log(`Temp directory: ${context.tmpdir}${args.keep ? " (kept after run with --keep)" : ""}`); const onlyBuiltDependencies = new Set(); const pnpmRebuildProjectDirs: string[] = []; From f3138c253565058c5da96431c446b0571b6a4214 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Thu, 26 Mar 2026 10:34:45 +0000 Subject: [PATCH 13/23] debug: start investigating build hang with react+vercel+hono Co-authored-by: magne4000 <1098371+magne4000@users.noreply.github.com> Agent-Logs-Url: https://github.com/vikejs/bati/sessions/d8698cbd-cf36-4ca1-b6df-88fb2b4bb153 --- boilerplates/react/package.json | 6 +++--- boilerplates/shared-db/package.json | 24 ------------------------ boilerplates/shared-server/package.json | 24 ------------------------ boilerplates/solid/package.json | 6 +++--- 4 files changed, 6 insertions(+), 54 deletions(-) diff --git a/boilerplates/react/package.json b/boilerplates/react/package.json index de2ff7870..cb8c28433 100644 --- a/boilerplates/react/package.json +++ b/boilerplates/react/package.json @@ -107,9 +107,6 @@ "pages/+onPageTransitionStart": [ "./dist/types/pages/+onPageTransitionStart.d.mts" ], - "pages/_error/+Page": [ - "./dist/types/pages/_error/+Page.d.mts" - ], "pages/index/+Page": [ "./dist/types/pages/index/+Page.d.mts" ], @@ -125,6 +122,9 @@ "pages/todo/TodoList": [ "./dist/types/pages/todo/TodoList.d.mts" ], + "pages/_error/+Page": [ + "./dist/types/pages/_error/+Page.d.mts" + ], "pages/star-wars/@id/+Page": [ "./dist/types/pages/star-wars/@id/+Page.d.mts" ], diff --git a/boilerplates/shared-db/package.json b/boilerplates/shared-db/package.json index f57fb966e..067d1b6de 100644 --- a/boilerplates/shared-db/package.json +++ b/boilerplates/shared-db/package.json @@ -23,38 +23,14 @@ "dist/" ], "exports": { - "./drizzle/dist/types/database/drizzle/db": { - "types": "./dist/types/drizzle/dist/types/database/drizzle/db.d.mts" - }, - "./kysely/dist/types/database/kysely/db": { - "types": "./dist/types/kysely/dist/types/database/kysely/db.d.mts" - }, - "./kysely/dist/types/database/kysely/types": { - "types": "./dist/types/kysely/dist/types/database/kysely/types.d.mts" - }, "./server/db-middleware": { "types": "./dist/types/server/db-middleware.d.mts" - }, - "./sqlite/dist/types/database/sqlite/db": { - "types": "./dist/types/sqlite/dist/types/database/sqlite/db.d.mts" } }, "typesVersions": { "*": { "server/db-middleware": [ "./dist/types/server/db-middleware.d.mts" - ], - "drizzle/dist/types/database/drizzle/db": [ - "./dist/types/drizzle/dist/types/database/drizzle/db.d.mts" - ], - "kysely/dist/types/database/kysely/db": [ - "./dist/types/kysely/dist/types/database/kysely/db.d.mts" - ], - "kysely/dist/types/database/kysely/types": [ - "./dist/types/kysely/dist/types/database/kysely/types.d.mts" - ], - "sqlite/dist/types/database/sqlite/db": [ - "./dist/types/sqlite/dist/types/database/sqlite/db.d.mts" ] } }, diff --git a/boilerplates/shared-server/package.json b/boilerplates/shared-server/package.json index 4dc99f454..2fe587cc1 100644 --- a/boilerplates/shared-server/package.json +++ b/boilerplates/shared-server/package.json @@ -23,38 +23,14 @@ "dist/" ], "exports": { - "./drizzle/dist/types/database/drizzle/db": { - "types": "./dist/types/drizzle/dist/types/database/drizzle/db.d.mts" - }, - "./kysely/dist/types/database/kysely/db": { - "types": "./dist/types/kysely/dist/types/database/kysely/db.d.mts" - }, - "./kysely/dist/types/database/kysely/types": { - "types": "./dist/types/kysely/dist/types/database/kysely/types.d.mts" - }, "./server/create-todo-handler": { "types": "./dist/types/server/create-todo-handler.d.mts" - }, - "./sqlite/dist/types/database/sqlite/db": { - "types": "./dist/types/sqlite/dist/types/database/sqlite/db.d.mts" } }, "typesVersions": { "*": { "server/create-todo-handler": [ "./dist/types/server/create-todo-handler.d.mts" - ], - "drizzle/dist/types/database/drizzle/db": [ - "./dist/types/drizzle/dist/types/database/drizzle/db.d.mts" - ], - "kysely/dist/types/database/kysely/db": [ - "./dist/types/kysely/dist/types/database/kysely/db.d.mts" - ], - "kysely/dist/types/database/kysely/types": [ - "./dist/types/kysely/dist/types/database/kysely/types.d.mts" - ], - "sqlite/dist/types/database/sqlite/db": [ - "./dist/types/sqlite/dist/types/database/sqlite/db.d.mts" ] } }, diff --git a/boilerplates/solid/package.json b/boilerplates/solid/package.json index 43f1b7eac..0fecda1f1 100644 --- a/boilerplates/solid/package.json +++ b/boilerplates/solid/package.json @@ -108,15 +108,15 @@ "pages/index/Counter": [ "./dist/types/pages/index/Counter.d.mts" ], + "pages/star-wars/types": [ + "./dist/types/pages/star-wars/types.d.mts" + ], "pages/todo/+Page": [ "./dist/types/pages/todo/+Page.d.mts" ], "pages/todo/TodoList": [ "./dist/types/pages/todo/TodoList.d.mts" ], - "pages/star-wars/types": [ - "./dist/types/pages/star-wars/types.d.mts" - ], "pages/star-wars/@id/+Page": [ "./dist/types/pages/star-wars/@id/+Page.d.mts" ], From e8fc078f25a033743d8e372b5ee6f5110bd113be Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jo=C3=ABl=20Charles?= Date: Thu, 26 Mar 2026 16:28:22 +0100 Subject: [PATCH 14/23] chore: bump vike-photon --- boilerplates/hono/package.json | 2 +- boilerplates/vercel/package.json | 2 +- package.json | 2 +- pnpm-lock.yaml | 80 ++++++++++++++------------------ 4 files changed, 39 insertions(+), 47 deletions(-) diff --git a/boilerplates/hono/package.json b/boilerplates/hono/package.json index 6df0c23b3..c1d4d7f36 100644 --- a/boilerplates/hono/package.json +++ b/boilerplates/hono/package.json @@ -22,7 +22,7 @@ "hono": "^4.12.8", "telefunc": "^0.2.19", "vike": "^0.4.255", - "vike-photon": "^0.1.25", + "vike-photon": "^0.1.26", "vite": "^8.0.2" }, "dependencies": { diff --git a/boilerplates/vercel/package.json b/boilerplates/vercel/package.json index 94c465a3a..e4ed8fbc5 100644 --- a/boilerplates/vercel/package.json +++ b/boilerplates/vercel/package.json @@ -13,7 +13,7 @@ "license": "MIT", "devDependencies": { "@batijs/compile": "workspace:*", - "@photonjs/vercel": "^0.1.22", + "@photonjs/vercel": "^0.1.23", "@types/node": "^20.19.37", "h3": "~1.15.10", "vike": "^0.4.255", diff --git a/package.json b/package.json index d3cd198e2..d83441f04 100644 --- a/package.json +++ b/package.json @@ -33,9 +33,9 @@ "bumpp": "^11.0.1", "citty": "^0.2.1", "globals": "^17.4.0", + "nx": "^22.6.1", "rimraf": "^6.1.3", "tsx": "^4.21.0", - "nx": "^22.6.1", "typescript": "^6.0.2" }, "optionalDependencies": { diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index abe5cd0c8..19bff6527 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -444,7 +444,7 @@ importers: version: 0.4.255(@types/node@20.19.37)(jiti@2.6.1)(react-streaming@0.4.16(react-dom@19.2.4(react@19.2.4))(react@19.2.4))(sugarss@5.0.1(postcss@8.5.8))(tsx@4.21.0)(yaml@2.8.3) vike-photon: specifier: ^0.1.25 - version: 0.1.25(2d77ebadb3b09aa04683439197b7df8e) + version: 0.1.26(eaff053b84db0d9452a2f8db7d830c4f) vite: specifier: ^8.0.2 version: 8.0.2(@types/node@20.19.37)(esbuild@0.27.4)(jiti@2.6.1)(sugarss@5.0.1(postcss@8.5.8))(tsx@4.21.0)(yaml@2.8.3) @@ -486,8 +486,8 @@ importers: specifier: ^0.4.255 version: 0.4.255(@types/node@20.19.37)(jiti@2.6.1)(react-streaming@0.4.16(react-dom@19.2.4(react@19.2.4))(react@19.2.4))(sugarss@5.0.1(postcss@8.5.8))(tsx@4.21.0)(yaml@2.8.3) vike-photon: - specifier: ^0.1.25 - version: 0.1.25(2d77ebadb3b09aa04683439197b7df8e) + specifier: ^0.1.26 + version: 0.1.26(eaff053b84db0d9452a2f8db7d830c4f) vite: specifier: ^8.0.2 version: 8.0.2(@types/node@20.19.37)(esbuild@0.27.4)(jiti@2.6.1)(sugarss@5.0.1(postcss@8.5.8))(tsx@4.21.0)(yaml@2.8.3) @@ -608,7 +608,7 @@ importers: version: 20.19.37 vike-photon: specifier: ^0.1.25 - version: 0.1.25(2d77ebadb3b09aa04683439197b7df8e) + version: 0.1.26(eaff053b84db0d9452a2f8db7d830c4f) boilerplates/plausible.io: dependencies: @@ -724,7 +724,7 @@ importers: version: 0.4.255(@types/node@20.19.37)(jiti@2.6.1)(react-streaming@0.4.16(react-dom@19.2.4(react@19.2.4))(react@19.2.4))(sugarss@5.0.1(postcss@8.5.8))(tsx@4.21.0)(yaml@2.8.3) vike-photon: specifier: ^0.1.25 - version: 0.1.25(2d77ebadb3b09aa04683439197b7df8e) + version: 0.1.26(eaff053b84db0d9452a2f8db7d830c4f) vike-react: specifier: ^0.6.21 version: 0.6.21(react-dom@19.2.4(react@19.2.4))(react@19.2.4)(vike@0.4.255(@types/node@20.19.37)(jiti@2.6.1)(react-streaming@0.4.16(react-dom@19.2.4(react@19.2.4))(react@19.2.4))(sugarss@5.0.1(postcss@8.5.8))(tsx@4.21.0)(yaml@2.8.3)) @@ -913,7 +913,7 @@ importers: version: 0.4.255(@types/node@20.19.37)(jiti@2.6.1)(react-streaming@0.4.16(react-dom@19.2.4(react@19.2.4))(react@19.2.4))(sugarss@5.0.1(postcss@8.5.8))(tsx@4.21.0)(yaml@2.8.3) vike-photon: specifier: ^0.1.25 - version: 0.1.25(2d77ebadb3b09aa04683439197b7df8e) + version: 0.1.26(eaff053b84db0d9452a2f8db7d830c4f) vike-solid: specifier: ^0.8.1 version: 0.8.1(solid-js@1.9.11)(vike@0.4.255(@types/node@20.19.37)(jiti@2.6.1)(react-streaming@0.4.16(react-dom@19.2.4(react@19.2.4))(react@19.2.4))(sugarss@5.0.1(postcss@8.5.8))(tsx@4.21.0)(yaml@2.8.3))(vite-plugin-solid@2.11.11(solid-js@1.9.11)(vite@8.0.2(@types/node@20.19.37)(esbuild@0.27.4)(jiti@2.6.1)(sugarss@5.0.1(postcss@8.5.8))(tsx@4.21.0)(yaml@2.8.3))) @@ -1103,8 +1103,8 @@ importers: specifier: workspace:* version: file:packages/compile(oxc-resolver@11.19.1)(synckit@0.11.12)(typescript@6.0.2) '@photonjs/vercel': - specifier: ^0.1.22 - version: 0.1.22(@cloudflare/workers-types@4.20260317.1)(@types/express@5.0.6)(@universal-middleware/h3@0.4.15(@cloudflare/workers-types@4.20260317.1)(@types/express@5.0.6)(fastify@5.8.2)(h3@1.15.10)(hono@4.12.8)(srvx@0.9.8))(encoding@0.1.13)(express@5.2.1)(fastify@5.8.2)(h3@1.15.10)(hono@4.12.8)(srvx@0.9.8)(vite@8.0.2(@types/node@20.19.37)(esbuild@0.27.4)(jiti@2.6.1)(sugarss@5.0.1(postcss@8.5.8))(tsx@4.21.0)(yaml@2.8.3)) + specifier: ^0.1.23 + version: 0.1.23(@cloudflare/workers-types@4.20260317.1)(@types/express@5.0.6)(@universal-middleware/h3@0.4.15(@cloudflare/workers-types@4.20260317.1)(@types/express@5.0.6)(fastify@5.8.2)(h3@1.15.10)(hono@4.12.8)(srvx@0.9.8))(encoding@0.1.13)(express@5.2.1)(fastify@5.8.2)(h3@1.15.10)(hono@4.12.8)(srvx@0.9.8)(vite@8.0.2(@types/node@20.19.37)(esbuild@0.27.4)(jiti@2.6.1)(sugarss@5.0.1(postcss@8.5.8))(tsx@4.21.0)(yaml@2.8.3)) '@types/node': specifier: ^20.19.37 version: 20.19.37 @@ -1147,7 +1147,7 @@ importers: version: 0.4.255(@types/node@20.19.37)(jiti@2.6.1)(react-streaming@0.4.16(react-dom@19.2.4(react@19.2.4))(react@19.2.4))(sugarss@5.0.1(postcss@8.5.8))(tsx@4.21.0)(yaml@2.8.3) vike-photon: specifier: ^0.1.25 - version: 0.1.25(2d77ebadb3b09aa04683439197b7df8e) + version: 0.1.26(eaff053b84db0d9452a2f8db7d830c4f) vike-vue: specifier: ^0.9.11 version: 0.9.11(vike@0.4.255(@types/node@20.19.37)(jiti@2.6.1)(react-streaming@0.4.16(react-dom@19.2.4(react@19.2.4))(react@19.2.4))(sugarss@5.0.1(postcss@8.5.8))(tsx@4.21.0)(yaml@2.8.3))(vue@3.5.30(typescript@6.0.2)) @@ -3591,8 +3591,8 @@ packages: '@photonjs/cloudflare@0.1.13': resolution: {integrity: sha512-gyu26ZIEJTLVU47U3OC7iqsT6tvp5qpk1KtTT0zCGpTInTc5p7s3db7xAzq+egZ09SSrU+SbQpoYAlAboLaryA==} - '@photonjs/core@0.1.21': - resolution: {integrity: sha512-dfAUHhWGsKYPNAKqBaOfvGPKOm6l80yWJ3dq1vSG4GICa5ZJemM1xK5JRJhT1lZD4rEHPOJfQncZ8LHiMPivcg==} + '@photonjs/core@0.1.22': + resolution: {integrity: sha512-Qm5ZBm/sjf9UC+nAy2QwD01gtPWf0UUxy8oH87HjlTr9iwmD4+DJomtH5Gw9e/JNU9WPCT5QXYPWBUlzqAvr6g==} peerDependencies: vite: '>=7.1' peerDependenciesMeta: @@ -3650,8 +3650,8 @@ packages: vite: optional: true - '@photonjs/vercel@0.1.22': - resolution: {integrity: sha512-D+1rl94Jh/d54TwoMf+h9VlV3ITRt18Tdxc9BepSIIc7/tqHm88K9bPBzrAVQ7I+clI/0o2N7ZVVkp1hqDASQQ==} + '@photonjs/vercel@0.1.23': + resolution: {integrity: sha512-OEWv2jsjiaRIpHPkwtxh3N2RKY92Gc32sYLAueIuPqJXrys8GuBGLIKqlpkxLIHphtg1ZpZcvzlQvS7wMd+Lgw==} peerDependencies: vite: '>=7.1' @@ -7057,10 +7057,6 @@ packages: engines: {node: '>=18.0.0'} hasBin: true - minimatch@10.2.3: - resolution: {integrity: sha512-Rwi3pnapEqirPSbWbrZaa6N3nmqq4Xer/2XooiOKyV3q12ML06f7MOuc5DVH8ONZIFhwIYQ3yzPH4nt7iWHaTg==} - engines: {node: 18 || 20 || >=22} - minimatch@10.2.4: resolution: {integrity: sha512-oRjTw/97aTBN0RHbYCdtF1MQfvusSIBQM0IZEgzl6426+8jSC0nF1a/GmnVLpfB9yyr6g6FTqWqiZVbxrtaCIg==} engines: {node: 18 || 20 || >=22} @@ -8914,8 +8910,8 @@ packages: resolution: {integrity: sha512-BNGbWLfd0eUPabhkXUVm0j8uuvREyTh5ovRa/dyow/BqAbZJyC+5fU+IzQOzmAKzYqYRAISoRhdQr3eIZ/PXqg==} engines: {node: '>= 0.8'} - vike-photon@0.1.25: - resolution: {integrity: sha512-vvK2cDmhG+VKijg4Ec1Fq3ZlNplOj/OjI7i1wSp2QPtDUbCZhzKObvM3ZLGTTDkf6fEas0mPXGqLRyRnD0yyuA==} + vike-photon@0.1.26: + resolution: {integrity: sha512-3Z3bfc10bTnKOJsRJm9Bo+ykaJ/K8+9OFkR7jIKSL4qhE5nqh2Hrs60tDATW7/UaUF972kPWCNp+AEyintiXCA==} peerDependencies: '@photonjs/cloudflare': '>=0.0.9' '@photonjs/vercel': ^0.1.1 @@ -8976,10 +8972,10 @@ packages: '@testing-library/jest-dom': optional: true - vite-plugin-wasm@3.5.0: - resolution: {integrity: sha512-X5VWgCnqiQEGb+omhlBVsvTfxikKtoOgAzQ95+BZ8gQ+VfMHIjSHr0wyvXFQCa0eKQ0fKyaL0kWcEnYqBac4lQ==} + vite-plugin-wasm@3.6.0: + resolution: {integrity: sha512-mL/QPziiIA4RAA6DkaZZzOstdwbW5jO4Vz7Zenj0wieKWBlNvIvX5L5ljum9lcUX0ShNfBgCNLKTjNkRVVqcsw==} peerDependencies: - vite: ^2 || ^3 || ^4 || ^5 || ^6 || ^7 + vite: ^2 || ^3 || ^4 || ^5 || ^6 || ^7 || ^8 vite@8.0.2: resolution: {integrity: sha512-1gFhNi+bHhRE/qKZOJXACm6tX4bA3Isy9KuKF15AgSRuRazNBOJfdDemPBU16/mpMxApDPrWvZ08DcLPEoRnuA==} @@ -10926,7 +10922,7 @@ snapshots: '@photonjs/cloudflare@0.1.13(@cloudflare/workers-types@4.20260317.1)(@types/express@5.0.6)(fastify@5.8.2)(h3@1.15.10)(hono@4.12.8)(srvx@0.9.8)(vite@8.0.2(@types/node@20.19.37)(esbuild@0.27.4)(jiti@2.6.1)(sugarss@5.0.1(postcss@8.5.8))(tsx@4.21.0)(yaml@2.8.3))(workerd@1.20260317.1)(wrangler@4.76.0(@cloudflare/workers-types@4.20260317.1))': dependencies: '@cloudflare/vite-plugin': 1.19.0(vite@8.0.2(@types/node@20.19.37)(esbuild@0.27.4)(jiti@2.6.1)(sugarss@5.0.1(postcss@8.5.8))(tsx@4.21.0)(yaml@2.8.3))(workerd@1.20260317.1)(wrangler@4.76.0(@cloudflare/workers-types@4.20260317.1)) - '@photonjs/core': 0.1.21(@cloudflare/workers-types@4.20260317.1)(@types/express@5.0.6)(fastify@5.8.2)(h3@1.15.10)(hono@4.12.8)(srvx@0.9.8)(vite@8.0.2(@types/node@20.19.37)(esbuild@0.27.4)(jiti@2.6.1)(sugarss@5.0.1(postcss@8.5.8))(tsx@4.21.0)(yaml@2.8.3)) + '@photonjs/core': 0.1.22(@cloudflare/workers-types@4.20260317.1)(@types/express@5.0.6)(fastify@5.8.2)(h3@1.15.10)(hono@4.12.8)(srvx@0.9.8)(vite@8.0.2(@types/node@20.19.37)(esbuild@0.27.4)(jiti@2.6.1)(sugarss@5.0.1(postcss@8.5.8))(tsx@4.21.0)(yaml@2.8.3)) '@universal-middleware/cloudflare': 0.4.10(@cloudflare/workers-types@4.20260317.1)(@types/express@5.0.6)(fastify@5.8.2)(h3@1.15.10)(hono@4.12.8)(srvx@0.9.8) transitivePeerDependencies: - '@cloudflare/workers-types' @@ -10944,7 +10940,7 @@ snapshots: - workerd - wrangler - '@photonjs/core@0.1.21(@cloudflare/workers-types@4.20260317.1)(@types/express@5.0.6)(fastify@5.8.2)(h3@1.15.10)(hono@4.12.8)(srvx@0.9.8)(vite@8.0.2(@types/node@20.19.37)(esbuild@0.27.4)(jiti@2.6.1)(sugarss@5.0.1(postcss@8.5.8))(tsx@4.21.0)(yaml@2.8.3))': + '@photonjs/core@0.1.22(@cloudflare/workers-types@4.20260317.1)(@types/express@5.0.6)(fastify@5.8.2)(h3@1.15.10)(hono@4.12.8)(srvx@0.9.8)(vite@8.0.2(@types/node@20.19.37)(esbuild@0.27.4)(jiti@2.6.1)(sugarss@5.0.1(postcss@8.5.8))(tsx@4.21.0)(yaml@2.8.3))': dependencies: '@brillout/vite-plugin-server-entry': 0.7.18 '@universal-middleware/cloudflare': 0.4.10(@cloudflare/workers-types@4.20260317.1)(@types/express@5.0.6)(fastify@5.8.2)(h3@1.15.10)(hono@4.12.8)(srvx@0.9.8) @@ -10970,7 +10966,7 @@ snapshots: '@photonjs/express@0.1.13(@cloudflare/workers-types@4.20260317.1)(@types/express@5.0.6)(fastify@5.8.2)(h3@1.15.10)(hono@4.12.8)(srvx@0.9.8)(vite@8.0.2(@types/node@20.19.37)(esbuild@0.27.4)(jiti@2.6.1)(sugarss@5.0.1(postcss@8.5.8))(tsx@4.21.0)(yaml@2.8.3))': dependencies: - '@photonjs/core': 0.1.21(@cloudflare/workers-types@4.20260317.1)(@types/express@5.0.6)(fastify@5.8.2)(h3@1.15.10)(hono@4.12.8)(srvx@0.9.8)(vite@8.0.2(@types/node@20.19.37)(esbuild@0.27.4)(jiti@2.6.1)(sugarss@5.0.1(postcss@8.5.8))(tsx@4.21.0)(yaml@2.8.3)) + '@photonjs/core': 0.1.22(@cloudflare/workers-types@4.20260317.1)(@types/express@5.0.6)(fastify@5.8.2)(h3@1.15.10)(hono@4.12.8)(srvx@0.9.8)(vite@8.0.2(@types/node@20.19.37)(esbuild@0.27.4)(jiti@2.6.1)(sugarss@5.0.1(postcss@8.5.8))(tsx@4.21.0)(yaml@2.8.3)) '@universal-middleware/express': 0.4.22(@cloudflare/workers-types@4.20260317.1)(@types/express@5.0.6)(fastify@5.8.2)(h3@1.15.10)(hono@4.12.8)(srvx@0.9.8) optionalDependencies: vite: 8.0.2(@types/node@20.19.37)(esbuild@0.27.4)(jiti@2.6.1)(sugarss@5.0.1(postcss@8.5.8))(tsx@4.21.0)(yaml@2.8.3) @@ -10987,7 +10983,7 @@ snapshots: '@photonjs/fastify@0.1.12(@cloudflare/workers-types@4.20260317.1)(@types/express@5.0.6)(fastify@5.8.2)(h3@1.15.10)(hono@4.12.8)(srvx@0.9.8)(vite@8.0.2(@types/node@20.19.37)(esbuild@0.27.4)(jiti@2.6.1)(sugarss@5.0.1(postcss@8.5.8))(tsx@4.21.0)(yaml@2.8.3))': dependencies: - '@photonjs/core': 0.1.21(@cloudflare/workers-types@4.20260317.1)(@types/express@5.0.6)(fastify@5.8.2)(h3@1.15.10)(hono@4.12.8)(srvx@0.9.8)(vite@8.0.2(@types/node@20.19.37)(esbuild@0.27.4)(jiti@2.6.1)(sugarss@5.0.1(postcss@8.5.8))(tsx@4.21.0)(yaml@2.8.3)) + '@photonjs/core': 0.1.22(@cloudflare/workers-types@4.20260317.1)(@types/express@5.0.6)(fastify@5.8.2)(h3@1.15.10)(hono@4.12.8)(srvx@0.9.8)(vite@8.0.2(@types/node@20.19.37)(esbuild@0.27.4)(jiti@2.6.1)(sugarss@5.0.1(postcss@8.5.8))(tsx@4.21.0)(yaml@2.8.3)) '@universal-middleware/fastify': 0.5.22(@cloudflare/workers-types@4.20260317.1)(@types/express@5.0.6)(fastify@5.8.2)(h3@1.15.10)(hono@4.12.8)(srvx@0.9.8) optionalDependencies: vite: 8.0.2(@types/node@20.19.37)(esbuild@0.27.4)(jiti@2.6.1)(sugarss@5.0.1(postcss@8.5.8))(tsx@4.21.0)(yaml@2.8.3) @@ -11004,7 +11000,7 @@ snapshots: '@photonjs/h3@0.1.12(@cloudflare/workers-types@4.20260317.1)(@types/express@5.0.6)(fastify@5.8.2)(h3@1.15.10)(hono@4.12.8)(srvx@0.9.8)(vite@8.0.2(@types/node@20.19.37)(esbuild@0.27.4)(jiti@2.6.1)(sugarss@5.0.1(postcss@8.5.8))(tsx@4.21.0)(yaml@2.8.3))': dependencies: - '@photonjs/core': 0.1.21(@cloudflare/workers-types@4.20260317.1)(@types/express@5.0.6)(fastify@5.8.2)(h3@1.15.10)(hono@4.12.8)(srvx@0.9.8)(vite@8.0.2(@types/node@20.19.37)(esbuild@0.27.4)(jiti@2.6.1)(sugarss@5.0.1(postcss@8.5.8))(tsx@4.21.0)(yaml@2.8.3)) + '@photonjs/core': 0.1.22(@cloudflare/workers-types@4.20260317.1)(@types/express@5.0.6)(fastify@5.8.2)(h3@1.15.10)(hono@4.12.8)(srvx@0.9.8)(vite@8.0.2(@types/node@20.19.37)(esbuild@0.27.4)(jiti@2.6.1)(sugarss@5.0.1(postcss@8.5.8))(tsx@4.21.0)(yaml@2.8.3)) '@universal-middleware/h3': 0.4.15(@cloudflare/workers-types@4.20260317.1)(@types/express@5.0.6)(fastify@5.8.2)(h3@1.15.10)(hono@4.12.8)(srvx@0.9.8) optionalDependencies: vite: 8.0.2(@types/node@20.19.37)(esbuild@0.27.4)(jiti@2.6.1)(sugarss@5.0.1(postcss@8.5.8))(tsx@4.21.0)(yaml@2.8.3) @@ -11021,7 +11017,7 @@ snapshots: '@photonjs/hono@0.1.12(@cloudflare/workers-types@4.20260317.1)(@hono/node-server@1.19.9(hono@4.12.8))(@types/express@5.0.6)(fastify@5.8.2)(h3@1.15.10)(hono@4.12.8)(srvx@0.9.8)(vite@8.0.2(@types/node@20.19.37)(esbuild@0.27.4)(jiti@2.6.1)(sugarss@5.0.1(postcss@8.5.8))(tsx@4.21.0)(yaml@2.8.3))': dependencies: - '@photonjs/core': 0.1.21(@cloudflare/workers-types@4.20260317.1)(@types/express@5.0.6)(fastify@5.8.2)(h3@1.15.10)(hono@4.12.8)(srvx@0.9.8)(vite@8.0.2(@types/node@20.19.37)(esbuild@0.27.4)(jiti@2.6.1)(sugarss@5.0.1(postcss@8.5.8))(tsx@4.21.0)(yaml@2.8.3)) + '@photonjs/core': 0.1.22(@cloudflare/workers-types@4.20260317.1)(@types/express@5.0.6)(fastify@5.8.2)(h3@1.15.10)(hono@4.12.8)(srvx@0.9.8)(vite@8.0.2(@types/node@20.19.37)(esbuild@0.27.4)(jiti@2.6.1)(sugarss@5.0.1(postcss@8.5.8))(tsx@4.21.0)(yaml@2.8.3)) '@universal-middleware/hono': 0.4.18(@cloudflare/workers-types@4.20260317.1)(@types/express@5.0.6)(fastify@5.8.2)(h3@1.15.10)(hono@4.12.8)(srvx@0.9.8) optionalDependencies: '@hono/node-server': 1.19.9(hono@4.12.8) @@ -11039,7 +11035,7 @@ snapshots: '@photonjs/runtime@0.1.16(@cloudflare/workers-types@4.20260317.1)(@types/express@5.0.6)(encoding@0.1.13)(fastify@5.8.2)(h3@1.15.10)(hono@4.12.8)(vite@8.0.2(@types/node@20.19.37)(esbuild@0.27.4)(jiti@2.6.1)(sugarss@5.0.1(postcss@8.5.8))(tsx@4.21.0)(yaml@2.8.3))': dependencies: - '@photonjs/core': 0.1.21(@cloudflare/workers-types@4.20260317.1)(@types/express@5.0.6)(fastify@5.8.2)(h3@1.15.10)(hono@4.12.8)(srvx@0.9.8)(vite@8.0.2(@types/node@20.19.37)(esbuild@0.27.4)(jiti@2.6.1)(sugarss@5.0.1(postcss@8.5.8))(tsx@4.21.0)(yaml@2.8.3)) + '@photonjs/core': 0.1.22(@cloudflare/workers-types@4.20260317.1)(@types/express@5.0.6)(fastify@5.8.2)(h3@1.15.10)(hono@4.12.8)(srvx@0.9.8)(vite@8.0.2(@types/node@20.19.37)(esbuild@0.27.4)(jiti@2.6.1)(sugarss@5.0.1(postcss@8.5.8))(tsx@4.21.0)(yaml@2.8.3)) '@photonjs/srvx': 0.1.12(@cloudflare/workers-types@4.20260317.1)(@types/express@5.0.6)(fastify@5.8.2)(h3@1.15.10)(hono@4.12.8)(srvx@0.9.8)(vite@8.0.2(@types/node@20.19.37)(esbuild@0.27.4)(jiti@2.6.1)(sugarss@5.0.1(postcss@8.5.8))(tsx@4.21.0)(yaml@2.8.3)) '@universal-middleware/core': 0.4.17(@cloudflare/workers-types@4.20260317.1)(@types/express@5.0.6)(fastify@5.8.2)(h3@1.15.10)(hono@4.12.8)(srvx@0.9.8) '@universal-middleware/sirv': 0.1.25 @@ -11062,7 +11058,7 @@ snapshots: '@photonjs/srvx@0.1.12(@cloudflare/workers-types@4.20260317.1)(@types/express@5.0.6)(fastify@5.8.2)(h3@1.15.10)(hono@4.12.8)(srvx@0.9.8)(vite@8.0.2(@types/node@20.19.37)(esbuild@0.27.4)(jiti@2.6.1)(sugarss@5.0.1(postcss@8.5.8))(tsx@4.21.0)(yaml@2.8.3))': dependencies: - '@photonjs/core': 0.1.21(@cloudflare/workers-types@4.20260317.1)(@types/express@5.0.6)(fastify@5.8.2)(h3@1.15.10)(hono@4.12.8)(srvx@0.9.8)(vite@8.0.2(@types/node@20.19.37)(esbuild@0.27.4)(jiti@2.6.1)(sugarss@5.0.1(postcss@8.5.8))(tsx@4.21.0)(yaml@2.8.3)) + '@photonjs/core': 0.1.22(@cloudflare/workers-types@4.20260317.1)(@types/express@5.0.6)(fastify@5.8.2)(h3@1.15.10)(hono@4.12.8)(srvx@0.9.8)(vite@8.0.2(@types/node@20.19.37)(esbuild@0.27.4)(jiti@2.6.1)(sugarss@5.0.1(postcss@8.5.8))(tsx@4.21.0)(yaml@2.8.3)) '@universal-middleware/srvx': 0.1.1(@cloudflare/workers-types@4.20260317.1)(@types/express@5.0.6)(fastify@5.8.2)(h3@1.15.10)(hono@4.12.8)(srvx@0.9.8) optionalDependencies: vite: 8.0.2(@types/node@20.19.37)(esbuild@0.27.4)(jiti@2.6.1)(sugarss@5.0.1(postcss@8.5.8))(tsx@4.21.0)(yaml@2.8.3) @@ -11077,11 +11073,11 @@ snapshots: - hono - srvx - '@photonjs/vercel@0.1.22(@cloudflare/workers-types@4.20260317.1)(@types/express@5.0.6)(@universal-middleware/h3@0.4.15(@cloudflare/workers-types@4.20260317.1)(@types/express@5.0.6)(fastify@5.8.2)(h3@1.15.10)(hono@4.12.8)(srvx@0.9.8))(encoding@0.1.13)(express@5.2.1)(fastify@5.8.2)(h3@1.15.10)(hono@4.12.8)(srvx@0.9.8)(vite@8.0.2(@types/node@20.19.37)(esbuild@0.27.4)(jiti@2.6.1)(sugarss@5.0.1(postcss@8.5.8))(tsx@4.21.0)(yaml@2.8.3))': + '@photonjs/vercel@0.1.23(@cloudflare/workers-types@4.20260317.1)(@types/express@5.0.6)(@universal-middleware/h3@0.4.15(@cloudflare/workers-types@4.20260317.1)(@types/express@5.0.6)(fastify@5.8.2)(h3@1.15.10)(hono@4.12.8)(srvx@0.9.8))(encoding@0.1.13)(express@5.2.1)(fastify@5.8.2)(h3@1.15.10)(hono@4.12.8)(srvx@0.9.8)(vite@8.0.2(@types/node@20.19.37)(esbuild@0.27.4)(jiti@2.6.1)(sugarss@5.0.1(postcss@8.5.8))(tsx@4.21.0)(yaml@2.8.3))': dependencies: '@brillout/libassert': 0.5.8 '@manypkg/find-root': 3.1.0 - '@photonjs/core': 0.1.21(@cloudflare/workers-types@4.20260317.1)(@types/express@5.0.6)(fastify@5.8.2)(h3@1.15.10)(hono@4.12.8)(srvx@0.9.8)(vite@8.0.2(@types/node@20.19.37)(esbuild@0.27.4)(jiti@2.6.1)(sugarss@5.0.1(postcss@8.5.8))(tsx@4.21.0)(yaml@2.8.3)) + '@photonjs/core': 0.1.22(@cloudflare/workers-types@4.20260317.1)(@types/express@5.0.6)(fastify@5.8.2)(h3@1.15.10)(hono@4.12.8)(srvx@0.9.8)(vite@8.0.2(@types/node@20.19.37)(esbuild@0.27.4)(jiti@2.6.1)(sugarss@5.0.1(postcss@8.5.8))(tsx@4.21.0)(yaml@2.8.3)) '@photonjs/runtime': 0.1.16(@cloudflare/workers-types@4.20260317.1)(@types/express@5.0.6)(encoding@0.1.13)(fastify@5.8.2)(h3@1.15.10)(hono@4.12.8)(vite@8.0.2(@types/node@20.19.37)(esbuild@0.27.4)(jiti@2.6.1)(sugarss@5.0.1(postcss@8.5.8))(tsx@4.21.0)(yaml@2.8.3)) '@universal-middleware/core': 0.4.17(@cloudflare/workers-types@4.20260317.1)(@types/express@5.0.6)(fastify@5.8.2)(h3@1.15.10)(hono@4.12.8)(srvx@0.9.8) '@universal-middleware/vercel': 0.4.29(@cloudflare/workers-types@4.20260317.1)(@types/express@5.0.6)(@universal-middleware/h3@0.4.15(@cloudflare/workers-types@4.20260317.1)(@types/express@5.0.6)(fastify@5.8.2)(h3@1.15.10)(hono@4.12.8)(srvx@0.9.8))(express@5.2.1)(fastify@5.8.2)(h3@1.15.10)(hono@4.12.8)(srvx@0.9.8) @@ -11096,7 +11092,7 @@ snapshots: path-to-regexp: 8.3.0 strip-ansi: 7.1.2 vite: 8.0.2(@types/node@20.19.37)(esbuild@0.27.4)(jiti@2.6.1)(sugarss@5.0.1(postcss@8.5.8))(tsx@4.21.0)(yaml@2.8.3) - vite-plugin-wasm: 3.5.0(vite@8.0.2(@types/node@20.19.37)(esbuild@0.27.4)(jiti@2.6.1)(sugarss@5.0.1(postcss@8.5.8))(tsx@4.21.0)(yaml@2.8.3)) + vite-plugin-wasm: 3.6.0(vite@8.0.2(@types/node@20.19.37)(esbuild@0.27.4)(jiti@2.6.1)(sugarss@5.0.1(postcss@8.5.8))(tsx@4.21.0)(yaml@2.8.3)) transitivePeerDependencies: - '@cloudflare/workers-types' - '@hattip/core' @@ -11663,7 +11659,7 @@ snapshots: '@ts-morph/common@0.27.0': dependencies: fast-glob: 3.3.3 - minimatch: 10.2.3 + minimatch: 10.2.4 path-browserify: 1.0.1 '@ts-rest/core@3.52.1(@types/node@20.19.37)(zod@3.25.76)': @@ -11895,7 +11891,7 @@ snapshots: '@typescript-eslint/types': 8.57.1 '@typescript-eslint/visitor-keys': 8.57.1 debug: 4.4.3 - minimatch: 10.2.3 + minimatch: 10.2.4 semver: 7.7.4 tinyglobby: 0.2.15 ts-api-utils: 2.4.0(typescript@6.0.2) @@ -13895,7 +13891,7 @@ snapshots: glob@13.0.6: dependencies: - minimatch: 10.2.3 + minimatch: 10.2.4 minipass: 7.1.3 path-scurry: 2.0.2 @@ -14836,10 +14832,6 @@ snapshots: - bufferutil - utf-8-validate - minimatch@10.2.3: - dependencies: - brace-expansion: 5.0.2 - minimatch@10.2.4: dependencies: brace-expansion: 5.0.2 @@ -17025,11 +17017,11 @@ snapshots: vary@1.1.2: {} - vike-photon@0.1.25(2d77ebadb3b09aa04683439197b7df8e): + vike-photon@0.1.26(eaff053b84db0d9452a2f8db7d830c4f): dependencies: '@brillout/picocolors': 1.0.30 '@brillout/vite-plugin-server-entry': 0.7.18 - '@photonjs/core': 0.1.21(@cloudflare/workers-types@4.20260317.1)(@types/express@5.0.6)(fastify@5.8.2)(h3@1.15.10)(hono@4.12.8)(srvx@0.9.8)(vite@8.0.2(@types/node@20.19.37)(esbuild@0.27.4)(jiti@2.6.1)(sugarss@5.0.1(postcss@8.5.8))(tsx@4.21.0)(yaml@2.8.3)) + '@photonjs/core': 0.1.22(@cloudflare/workers-types@4.20260317.1)(@types/express@5.0.6)(fastify@5.8.2)(h3@1.15.10)(hono@4.12.8)(srvx@0.9.8)(vite@8.0.2(@types/node@20.19.37)(esbuild@0.27.4)(jiti@2.6.1)(sugarss@5.0.1(postcss@8.5.8))(tsx@4.21.0)(yaml@2.8.3)) '@photonjs/runtime': 0.1.16(@cloudflare/workers-types@4.20260317.1)(@types/express@5.0.6)(encoding@0.1.13)(fastify@5.8.2)(h3@1.15.10)(hono@4.12.8)(vite@8.0.2(@types/node@20.19.37)(esbuild@0.27.4)(jiti@2.6.1)(sugarss@5.0.1(postcss@8.5.8))(tsx@4.21.0)(yaml@2.8.3)) '@universal-middleware/compress': 0.2.35 '@universal-middleware/core': 0.4.17(@cloudflare/workers-types@4.20260317.1)(@types/express@5.0.6)(fastify@5.8.2)(h3@1.15.10)(hono@4.12.8)(srvx@0.9.8) @@ -17039,7 +17031,7 @@ snapshots: vike: 0.4.255(@types/node@20.19.37)(jiti@2.6.1)(react-streaming@0.4.16(react-dom@19.2.4(react@19.2.4))(react@19.2.4))(sugarss@5.0.1(postcss@8.5.8))(tsx@4.21.0)(yaml@2.8.3) optionalDependencies: '@photonjs/cloudflare': 0.1.13(@cloudflare/workers-types@4.20260317.1)(@types/express@5.0.6)(fastify@5.8.2)(h3@1.15.10)(hono@4.12.8)(srvx@0.9.8)(vite@8.0.2(@types/node@20.19.37)(esbuild@0.27.4)(jiti@2.6.1)(sugarss@5.0.1(postcss@8.5.8))(tsx@4.21.0)(yaml@2.8.3))(workerd@1.20260317.1)(wrangler@4.76.0(@cloudflare/workers-types@4.20260317.1)) - '@photonjs/vercel': 0.1.22(@cloudflare/workers-types@4.20260317.1)(@types/express@5.0.6)(@universal-middleware/h3@0.4.15(@cloudflare/workers-types@4.20260317.1)(@types/express@5.0.6)(fastify@5.8.2)(h3@1.15.10)(hono@4.12.8)(srvx@0.9.8))(encoding@0.1.13)(express@5.2.1)(fastify@5.8.2)(h3@1.15.10)(hono@4.12.8)(srvx@0.9.8)(vite@8.0.2(@types/node@20.19.37)(esbuild@0.27.4)(jiti@2.6.1)(sugarss@5.0.1(postcss@8.5.8))(tsx@4.21.0)(yaml@2.8.3)) + '@photonjs/vercel': 0.1.23(@cloudflare/workers-types@4.20260317.1)(@types/express@5.0.6)(@universal-middleware/h3@0.4.15(@cloudflare/workers-types@4.20260317.1)(@types/express@5.0.6)(fastify@5.8.2)(h3@1.15.10)(hono@4.12.8)(srvx@0.9.8))(encoding@0.1.13)(express@5.2.1)(fastify@5.8.2)(h3@1.15.10)(hono@4.12.8)(srvx@0.9.8)(vite@8.0.2(@types/node@20.19.37)(esbuild@0.27.4)(jiti@2.6.1)(sugarss@5.0.1(postcss@8.5.8))(tsx@4.21.0)(yaml@2.8.3)) vite: 8.0.2(@types/node@20.19.37)(esbuild@0.27.4)(jiti@2.6.1)(sugarss@5.0.1(postcss@8.5.8))(tsx@4.21.0)(yaml@2.8.3) transitivePeerDependencies: - '@cloudflare/workers-types' @@ -17137,7 +17129,7 @@ snapshots: transitivePeerDependencies: - supports-color - vite-plugin-wasm@3.5.0(vite@8.0.2(@types/node@20.19.37)(esbuild@0.27.4)(jiti@2.6.1)(sugarss@5.0.1(postcss@8.5.8))(tsx@4.21.0)(yaml@2.8.3)): + vite-plugin-wasm@3.6.0(vite@8.0.2(@types/node@20.19.37)(esbuild@0.27.4)(jiti@2.6.1)(sugarss@5.0.1(postcss@8.5.8))(tsx@4.21.0)(yaml@2.8.3)): dependencies: vite: 8.0.2(@types/node@20.19.37)(esbuild@0.27.4)(jiti@2.6.1)(sugarss@5.0.1(postcss@8.5.8))(tsx@4.21.0)(yaml@2.8.3) From a29d054262dc1a64c9715e8caa777096ef1c9d6a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jo=C3=ABl=20Charles?= Date: Thu, 26 Mar 2026 16:44:53 +0100 Subject: [PATCH 15/23] chore: cleanup --- packages/tests-utils/src/prepare.ts | 3 --- packages/tests-utils/src/run-dev.ts | 2 -- packages/tests/src/index.ts | 19 +++++++------------ 3 files changed, 7 insertions(+), 17 deletions(-) diff --git a/packages/tests-utils/src/prepare.ts b/packages/tests-utils/src/prepare.ts index ab97b42bd..f3f40cb24 100644 --- a/packages/tests-utils/src/prepare.ts +++ b/packages/tests-utils/src/prepare.ts @@ -45,7 +45,6 @@ export async function prepare({ mode = "dev", retry, script }: PrepareOptions = function hooks() { beforeAll(async () => { const t0 = Date.now(); - console.log(`[bati-test] beforeAll start (mode=${mode}, cwd=${process.cwd()})`); if (mode === "dev") { await initPort(context); await runDevServer(context); @@ -55,7 +54,6 @@ export async function prepare({ mode = "dev", retry, script }: PrepareOptions = } else if (mode === "build") { await retryX(() => runBuild(context), retry); } - console.log(`[bati-test] beforeAll done in ${((Date.now() - t0) / 1000).toFixed(1)}s`); }, 120000); // Cleanup tests: @@ -63,7 +61,6 @@ export async function prepare({ mode = "dev", retry, script }: PrepareOptions = // - Remove temp dir afterAll(async () => { const pid = context.server?.pid; - console.log(`[bati-test] afterAll: killing server PID=${pid ?? "none"}`); if (typeof pid === "number") { await Promise.race([kill(pid), new Promise((_resolve, reject) => setTimeout(reject, 5000))]); } diff --git a/packages/tests-utils/src/run-dev.ts b/packages/tests-utils/src/run-dev.ts index db916f40e..173166285 100644 --- a/packages/tests-utils/src/run-dev.ts +++ b/packages/tests-utils/src/run-dev.ts @@ -5,7 +5,6 @@ import { waitForLocalhost } from "./wait-for-localhost.js"; export async function runDevServer(context: GlobalContext) { const cmd = ["run", "dev", "--port", String(context.port)]; - console.log(`[bati-test] Starting dev server: ${npmCli} ${cmd.join(" ")}`); context.server = exec(npmCli, cmd, { env: { PORT: String(context.port), @@ -29,6 +28,5 @@ export async function runDevServer(context: GlobalContext) { throw new Error("Server stopped before tests could run"); } - console.log(`[bati-test] Dev server ready at http://localhost:${context.port} (PID: ${context.server.pid ?? "unknown"})`); return { server: context.server, port: context.port }; } diff --git a/packages/tests/src/index.ts b/packages/tests/src/index.ts index 8a6465cec..989210bec 100644 --- a/packages/tests/src/index.ts +++ b/packages/tests/src/index.ts @@ -139,18 +139,14 @@ async function execNx(context: GlobalContext, args: mri.Argv) { for (const step of steps) { const t0 = Date.now(); console.log(`[${new Date().toISOString()}] Running step: ${step}`); - await exec( - npmCli, - [npmCli === "bun" ? "x" : "exec", "nx", "run-many", `--target=${step}`], - { - timeout: 35 * 60 * 1000, // 35min - cwd: context.tmpdir, - env: { - NX_DAEMON: "false", - NX_TUI: "false", - }, + await exec(npmCli, [npmCli === "bun" ? "x" : "exec", "nx", "run-many", `--target=${step}`], { + timeout: 35 * 60 * 1000, // 35min + cwd: context.tmpdir, + env: { + NX_DAEMON: "false", + NX_TUI: "false", }, - ); + }); console.log(`[${new Date().toISOString()}] Step "${step}" completed in ${((Date.now() - t0) / 1000).toFixed(1)}s`); } } @@ -287,7 +283,6 @@ async function main(context: GlobalContext, args: mri.Argv) { } await initTmpDir(context); - console.log(`Temp directory: ${context.tmpdir}${args.keep ? " (kept after run with --keep)" : ""}`); const onlyBuiltDependencies = new Set(); const pnpmRebuildProjectDirs: string[] = []; From cc58d0094181eff1e4db9b1c9f7e4e5b09a609c0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jo=C3=ABl=20Charles?= Date: Thu, 26 Mar 2026 16:54:02 +0100 Subject: [PATCH 16/23] chore --- boilerplates/react/package.json | 12 ++++++------ boilerplates/shared-server/package.json | 1 + packages/tests/src/common.ts | 3 +++ pnpm-lock.yaml | 3 +++ 4 files changed, 13 insertions(+), 6 deletions(-) diff --git a/boilerplates/react/package.json b/boilerplates/react/package.json index cb8c28433..853982066 100644 --- a/boilerplates/react/package.json +++ b/boilerplates/react/package.json @@ -107,24 +107,24 @@ "pages/+onPageTransitionStart": [ "./dist/types/pages/+onPageTransitionStart.d.mts" ], + "pages/_error/+Page": [ + "./dist/types/pages/_error/+Page.d.mts" + ], + "pages/star-wars/types": [ + "./dist/types/pages/star-wars/types.d.mts" + ], "pages/index/+Page": [ "./dist/types/pages/index/+Page.d.mts" ], "pages/index/Counter": [ "./dist/types/pages/index/Counter.d.mts" ], - "pages/star-wars/types": [ - "./dist/types/pages/star-wars/types.d.mts" - ], "pages/todo/+Page": [ "./dist/types/pages/todo/+Page.d.mts" ], "pages/todo/TodoList": [ "./dist/types/pages/todo/TodoList.d.mts" ], - "pages/_error/+Page": [ - "./dist/types/pages/_error/+Page.d.mts" - ], "pages/star-wars/@id/+Page": [ "./dist/types/pages/star-wars/@id/+Page.d.mts" ], diff --git a/boilerplates/shared-server/package.json b/boilerplates/shared-server/package.json index 2fe587cc1..541df1e33 100644 --- a/boilerplates/shared-server/package.json +++ b/boilerplates/shared-server/package.json @@ -13,6 +13,7 @@ "author": "", "license": "MIT", "devDependencies": { + "@batijs/core": "workspace:*", "@batijs/compile": "workspace:*", "@types/node": "^20.19.37", "@universal-middleware/core": "^0.4.17", diff --git a/packages/tests/src/common.ts b/packages/tests/src/common.ts index cf99165f9..7064f1510 100644 --- a/packages/tests/src/common.ts +++ b/packages/tests/src/common.ts @@ -108,6 +108,9 @@ export async function createNxConfig(context: GlobalContext) { JSON.stringify( { $schema: "https://nx.dev/reference/nx-json", + tui: { + autoExit: 0, + }, targetDefaults: { "generate-types": { cache: false, diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 19bff6527..ab571dbe4 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -858,6 +858,9 @@ importers: '@batijs/compile': specifier: workspace:* version: file:packages/compile(oxc-resolver@11.19.1)(synckit@0.11.12)(typescript@6.0.2) + '@batijs/core': + specifier: workspace:* + version: link:../../packages/core '@types/node': specifier: ^20.19.37 version: 20.19.37 From 31ed2365867fa7811e783c7ce003b9bccc4c03ab Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jo=C3=ABl=20Charles?= Date: Thu, 26 Mar 2026 17:15:15 +0100 Subject: [PATCH 17/23] chore --- boilerplates/auth0/package.json | 4 +- boilerplates/authjs/package.json | 4 +- boilerplates/aws/package.json | 4 +- boilerplates/biome/package.json | 4 +- boilerplates/cloudflare/package.json | 4 +- boilerplates/compiled/package.json | 6 +- boilerplates/d1-kysely/package.json | 4 +- boilerplates/d1-sqlite/package.json | 4 +- boilerplates/d1/package.json | 4 +- boilerplates/drizzle/package.json | 4 +- boilerplates/eslint/package.json | 4 +- boilerplates/express/package.json | 4 +- boilerplates/fastify/package.json | 4 +- boilerplates/google-analytics/package.json | 4 +- boilerplates/h3/package.json | 4 +- boilerplates/hono/package.json | 4 +- boilerplates/kysely/package.json | 10 +- boilerplates/mantine/package.json | 4 +- boilerplates/oxlint/package.json | 4 +- boilerplates/photon/package.json | 4 +- boilerplates/plausible.io/package.json | 4 +- boilerplates/pnpm/package.json | 4 +- boilerplates/prettier/package.json | 4 +- boilerplates/prisma/package.json | 4 +- boilerplates/react-sentry/package.json | 4 +- boilerplates/react/package.json | 10 +- boilerplates/sentry/package.json | 4 +- boilerplates/shadcn-ui/package.json | 4 +- boilerplates/shared-db/package.json | 4 +- boilerplates/shared-todo/package.json | 4 +- boilerplates/shared/package.json | 1 + boilerplates/solid-sentry/package.json | 4 +- boilerplates/solid/package.json | 4 +- boilerplates/sqlite/package.json | 4 +- boilerplates/storybook/package.json | 4 +- boilerplates/tailwindcss/package.json | 4 +- boilerplates/telefunc/package.json | 4 +- boilerplates/trpc/package.json | 4 +- boilerplates/ts-rest/package.json | 4 +- boilerplates/vercel/package.json | 4 +- boilerplates/vue-sentry/package.json | 4 +- boilerplates/vue/package.json | 4 +- pnpm-lock.yaml | 292 +++++++++------------ scripts/new-boilerplate.ts | 4 +- 44 files changed, 177 insertions(+), 298 deletions(-) diff --git a/boilerplates/auth0/package.json b/boilerplates/auth0/package.json index a3e496322..20cfe9d83 100644 --- a/boilerplates/auth0/package.json +++ b/boilerplates/auth0/package.json @@ -13,11 +13,9 @@ "license": "MIT", "devDependencies": { "@batijs/compile": "workspace:*", + "@batijs/core": "workspace:*", "@types/node": "^20.19.37" }, - "dependencies": { - "@batijs/core": "workspace:*" - }, "files": [ "dist/" ], diff --git a/boilerplates/authjs/package.json b/boilerplates/authjs/package.json index 6dfbbd5c9..a4b7cae72 100644 --- a/boilerplates/authjs/package.json +++ b/boilerplates/authjs/package.json @@ -14,12 +14,10 @@ "devDependencies": { "@auth/core": "^0.41.1", "@batijs/compile": "workspace:*", + "@batijs/core": "workspace:*", "@types/node": "^20.19.37", "@universal-middleware/core": "^0.4.17" }, - "dependencies": { - "@batijs/core": "workspace:*" - }, "files": [ "dist/" ], diff --git a/boilerplates/aws/package.json b/boilerplates/aws/package.json index 3f0e4b88a..8592e2c17 100644 --- a/boilerplates/aws/package.json +++ b/boilerplates/aws/package.json @@ -13,6 +13,7 @@ "license": "MIT", "devDependencies": { "@batijs/compile": "workspace:*", + "@batijs/core": "workspace:*", "@types/node": "^20.19.37", "@types/which": "^3.0.4", "aws-cdk": "^2.1112.0", @@ -27,9 +28,6 @@ "vitest": "^4.1.0", "which": "^6.0.1" }, - "dependencies": { - "@batijs/core": "workspace:*" - }, "files": [ "dist/" ], diff --git a/boilerplates/biome/package.json b/boilerplates/biome/package.json index f23417d31..95d2c1096 100644 --- a/boilerplates/biome/package.json +++ b/boilerplates/biome/package.json @@ -13,13 +13,11 @@ "license": "MIT", "devDependencies": { "@batijs/compile": "workspace:*", + "@batijs/core": "workspace:*", "@biomejs/biome": "2.4.8", "@biomejs/wasm-nodejs": "^2.4.8", "@types/node": "^20.19.37" }, - "dependencies": { - "@batijs/core": "workspace:*" - }, "files": [ "dist/" ], diff --git a/boilerplates/cloudflare/package.json b/boilerplates/cloudflare/package.json index b5250ba83..7b908452b 100644 --- a/boilerplates/cloudflare/package.json +++ b/boilerplates/cloudflare/package.json @@ -13,13 +13,11 @@ "license": "MIT", "devDependencies": { "@batijs/compile": "workspace:*", + "@batijs/core": "workspace:*", "@photonjs/cloudflare": "^0.1.13", "@types/node": "^20.19.37", "wrangler": "^4.76.0" }, - "dependencies": { - "@batijs/core": "workspace:*" - }, "files": [ "dist/" ], diff --git a/boilerplates/compiled/package.json b/boilerplates/compiled/package.json index 66e5efc5e..288bda636 100644 --- a/boilerplates/compiled/package.json +++ b/boilerplates/compiled/package.json @@ -12,15 +12,13 @@ "author": "", "license": "MIT", "devDependencies": { + "@compiled/react": "^0.20.0", "@batijs/compile": "workspace:*", + "@batijs/core": "workspace:*", "@types/node": "^20.19.37", "vite": "^8.0.2", "vite-plugin-compiled-react": "^1.3.1" }, - "dependencies": { - "@batijs/core": "workspace:*", - "@compiled/react": "^0.20.0" - }, "files": [ "dist/" ], diff --git a/boilerplates/d1-kysely/package.json b/boilerplates/d1-kysely/package.json index 4a63aa4b3..6ba71d9f8 100644 --- a/boilerplates/d1-kysely/package.json +++ b/boilerplates/d1-kysely/package.json @@ -13,11 +13,9 @@ "license": "MIT", "devDependencies": { "@batijs/compile": "workspace:*", + "@batijs/core": "workspace:*", "@types/node": "^20.19.37" }, - "dependencies": { - "@batijs/core": "workspace:*" - }, "files": [ "dist/" ], diff --git a/boilerplates/d1-sqlite/package.json b/boilerplates/d1-sqlite/package.json index f6314ded4..254aa8163 100644 --- a/boilerplates/d1-sqlite/package.json +++ b/boilerplates/d1-sqlite/package.json @@ -13,13 +13,11 @@ "license": "MIT", "devDependencies": { "@batijs/compile": "workspace:*", + "@batijs/core": "workspace:*", "@types/node": "^20.19.37", "@universal-middleware/core": "^0.4.17", "vike": "^0.4.255" }, - "dependencies": { - "@batijs/core": "workspace:*" - }, "files": [ "dist/" ], diff --git a/boilerplates/d1/package.json b/boilerplates/d1/package.json index 5c0fe5f83..56d2bcee9 100644 --- a/boilerplates/d1/package.json +++ b/boilerplates/d1/package.json @@ -13,14 +13,12 @@ "license": "MIT", "devDependencies": { "@batijs/compile": "workspace:*", + "@batijs/core": "workspace:*", "@types/node": "^20.19.37", "@universal-middleware/core": "^0.4.17", "vike": "^0.4.255", "wrangler": "^4.76.0" }, - "dependencies": { - "@batijs/core": "workspace:*" - }, "files": [ "dist/" ], diff --git a/boilerplates/drizzle/package.json b/boilerplates/drizzle/package.json index 9f0c7a8be..411a212bd 100644 --- a/boilerplates/drizzle/package.json +++ b/boilerplates/drizzle/package.json @@ -13,6 +13,7 @@ "license": "MIT", "devDependencies": { "@batijs/compile": "workspace:*", + "@batijs/core": "workspace:*", "@types/better-sqlite3": "^7.6.13", "@types/node": "^20.19.37", "better-sqlite3": "^12.8.0", @@ -20,9 +21,6 @@ "drizzle-kit": "^0.31.10", "drizzle-orm": "^0.45.1" }, - "dependencies": { - "@batijs/core": "workspace:*" - }, "files": [ "dist/" ], diff --git a/boilerplates/eslint/package.json b/boilerplates/eslint/package.json index 5159823f6..d26bb0896 100644 --- a/boilerplates/eslint/package.json +++ b/boilerplates/eslint/package.json @@ -13,6 +13,7 @@ }, "devDependencies": { "@batijs/compile": "workspace:^", + "@batijs/core": "workspace:*", "@eslint/js": "^9.39.4", "eslint": "^9.39.4", "eslint-config-prettier": "^10.1.8", @@ -24,9 +25,6 @@ "typescript-eslint": "^8.57.1", "vue-eslint-parser": "^10.4.0" }, - "dependencies": { - "@batijs/core": "workspace:*" - }, "files": [ "dist/" ], diff --git a/boilerplates/express/package.json b/boilerplates/express/package.json index b1e3fa275..e1d97d34e 100644 --- a/boilerplates/express/package.json +++ b/boilerplates/express/package.json @@ -14,6 +14,7 @@ "devDependencies": { "@auth/core": "^0.41.1", "@batijs/compile": "workspace:*", + "@batijs/core": "workspace:*", "@photonjs/express": "^0.1.13", "@trpc/server": "^11.14.1", "@types/express": "^5.0.6", @@ -24,9 +25,6 @@ "vike": "^0.4.255", "vite": "^8.0.2" }, - "dependencies": { - "@batijs/core": "workspace:*" - }, "files": [ "dist/" ], diff --git a/boilerplates/fastify/package.json b/boilerplates/fastify/package.json index e51a23ad7..726af8caf 100644 --- a/boilerplates/fastify/package.json +++ b/boilerplates/fastify/package.json @@ -14,6 +14,7 @@ "devDependencies": { "@auth/core": "^0.41.1", "@batijs/compile": "workspace:*", + "@batijs/core": "workspace:*", "@photonjs/fastify": "^0.1.12", "@trpc/server": "^11.14.1", "@types/express": "^5.0.6", @@ -25,9 +26,6 @@ "vike": "^0.4.255", "vite": "^8.0.2" }, - "dependencies": { - "@batijs/core": "workspace:*" - }, "files": [ "dist/" ], diff --git a/boilerplates/google-analytics/package.json b/boilerplates/google-analytics/package.json index 0f7e93bb0..bc758d351 100644 --- a/boilerplates/google-analytics/package.json +++ b/boilerplates/google-analytics/package.json @@ -13,11 +13,9 @@ "license": "MIT", "devDependencies": { "@batijs/compile": "workspace:*", + "@batijs/core": "workspace:*", "@types/node": "^20.19.37" }, - "dependencies": { - "@batijs/core": "workspace:*" - }, "files": [ "dist/" ], diff --git a/boilerplates/h3/package.json b/boilerplates/h3/package.json index cbbbba089..9616d4e0b 100644 --- a/boilerplates/h3/package.json +++ b/boilerplates/h3/package.json @@ -14,6 +14,7 @@ "devDependencies": { "@auth/core": "^0.41.1", "@batijs/compile": "workspace:*", + "@batijs/core": "workspace:*", "@photonjs/h3": "^0.1.12", "@trpc/server": "^11.14.1", "@types/express": "^5.0.6", @@ -26,9 +27,6 @@ "vike-photon": "^0.1.25", "vite": "^8.0.2" }, - "dependencies": { - "@batijs/core": "workspace:*" - }, "files": [ "dist/" ], diff --git a/boilerplates/hono/package.json b/boilerplates/hono/package.json index c1d4d7f36..e0d1fa50f 100644 --- a/boilerplates/hono/package.json +++ b/boilerplates/hono/package.json @@ -14,6 +14,7 @@ "devDependencies": { "@auth/core": "^0.41.1", "@batijs/compile": "workspace:*", + "@batijs/core": "workspace:*", "@photonjs/hono": "^0.1.12", "@trpc/server": "^11.14.1", "@types/aws-lambda": "^8.10.161", @@ -25,9 +26,6 @@ "vike-photon": "^0.1.26", "vite": "^8.0.2" }, - "dependencies": { - "@batijs/core": "workspace:*" - }, "files": [ "dist/" ], diff --git a/boilerplates/kysely/package.json b/boilerplates/kysely/package.json index 576ad1ecc..ea6bd8305 100644 --- a/boilerplates/kysely/package.json +++ b/boilerplates/kysely/package.json @@ -13,6 +13,7 @@ "license": "MIT", "devDependencies": { "@batijs/compile": "workspace:*", + "@batijs/core": "workspace:*", "@cloudflare/workers-types": "^4.20260317.1", "@types/better-sqlite3": "^7.6.13", "@types/node": "^20.19.37", @@ -22,9 +23,6 @@ "kysely-d1": "^0.4.0", "tsx": "^4.21.0" }, - "dependencies": { - "@batijs/core": "workspace:*" - }, "files": [ "dist/" ], @@ -56,11 +54,11 @@ "database/kysely/types": [ "./dist/types/database/kysely/types.d.mts" ], - "database/kysely/migrations/001_create_todos_table": [ - "./dist/types/database/kysely/migrations/001_create_todos_table.d.mts" - ], "database/kysely/queries/todos": [ "./dist/types/database/kysely/queries/todos.d.mts" + ], + "database/kysely/migrations/001_create_todos_table": [ + "./dist/types/database/kysely/migrations/001_create_todos_table.d.mts" ] } }, diff --git a/boilerplates/mantine/package.json b/boilerplates/mantine/package.json index a5a983508..47e141aed 100644 --- a/boilerplates/mantine/package.json +++ b/boilerplates/mantine/package.json @@ -13,6 +13,7 @@ "license": "MIT", "devDependencies": { "@batijs/compile": "workspace:*", + "@batijs/core": "workspace:*", "@mantine/core": "^8.3.18", "@mantine/hooks": "^8.3.18", "@types/node": "^20.19.37", @@ -27,9 +28,6 @@ "vite": "^8.0.2", "vite-plugin-compiled-react": "^1.3.1" }, - "dependencies": { - "@batijs/core": "workspace:*" - }, "files": [ "dist/" ], diff --git a/boilerplates/oxlint/package.json b/boilerplates/oxlint/package.json index dfc1767e0..ad4587280 100644 --- a/boilerplates/oxlint/package.json +++ b/boilerplates/oxlint/package.json @@ -13,13 +13,11 @@ "license": "MIT", "devDependencies": { "@batijs/compile": "workspace:*", + "@batijs/core": "workspace:*", "@types/node": "^20.19.37", "oxlint": "^1.56.0", "oxlint-tsgolint": "^0.17.1" }, - "dependencies": { - "@batijs/core": "workspace:*" - }, "files": [ "dist/" ], diff --git a/boilerplates/photon/package.json b/boilerplates/photon/package.json index 1aa452d15..9bc9ed0e6 100644 --- a/boilerplates/photon/package.json +++ b/boilerplates/photon/package.json @@ -13,12 +13,10 @@ "license": "MIT", "devDependencies": { "@batijs/compile": "workspace:*", + "@batijs/core": "workspace:*", "@types/node": "^20.19.37", "vike-photon": "^0.1.25" }, - "dependencies": { - "@batijs/core": "workspace:*" - }, "files": [ "dist/" ], diff --git a/boilerplates/plausible.io/package.json b/boilerplates/plausible.io/package.json index c40995fd0..cdea32830 100644 --- a/boilerplates/plausible.io/package.json +++ b/boilerplates/plausible.io/package.json @@ -13,11 +13,9 @@ "license": "MIT", "devDependencies": { "@batijs/compile": "workspace:*", + "@batijs/core": "workspace:*", "@types/node": "^20.19.37" }, - "dependencies": { - "@batijs/core": "workspace:*" - }, "files": [ "dist/" ], diff --git a/boilerplates/pnpm/package.json b/boilerplates/pnpm/package.json index 13ba4a1d1..57652b379 100644 --- a/boilerplates/pnpm/package.json +++ b/boilerplates/pnpm/package.json @@ -13,11 +13,9 @@ "license": "MIT", "devDependencies": { "@batijs/compile": "workspace:*", + "@batijs/core": "workspace:*", "@types/node": "^20.19.37" }, - "dependencies": { - "@batijs/core": "workspace:*" - }, "files": [ "dist/" ], diff --git a/boilerplates/prettier/package.json b/boilerplates/prettier/package.json index bed52d675..849a82cc5 100644 --- a/boilerplates/prettier/package.json +++ b/boilerplates/prettier/package.json @@ -13,12 +13,10 @@ "license": "MIT", "devDependencies": { "@batijs/compile": "workspace:*", + "@batijs/core": "workspace:*", "@types/node": "^20.19.37", "prettier": "^3.8.1" }, - "dependencies": { - "@batijs/core": "workspace:*" - }, "files": [ "dist/" ], diff --git a/boilerplates/prisma/package.json b/boilerplates/prisma/package.json index 9233d696b..f942735f9 100644 --- a/boilerplates/prisma/package.json +++ b/boilerplates/prisma/package.json @@ -13,14 +13,12 @@ "license": "MIT", "devDependencies": { "@batijs/compile": "workspace:*", + "@batijs/core": "workspace:*", "@prisma/client": "^7.5.0", "@types/node": "^20.19.37", "colorette": "^2.0.20", "prisma": "^7.5.0" }, - "dependencies": { - "@batijs/core": "workspace:*" - }, "files": [ "dist/" ], diff --git a/boilerplates/react-sentry/package.json b/boilerplates/react-sentry/package.json index 629d9e19a..56767aa6e 100644 --- a/boilerplates/react-sentry/package.json +++ b/boilerplates/react-sentry/package.json @@ -13,6 +13,7 @@ "license": "MIT", "devDependencies": { "@batijs/compile": "workspace:*", + "@batijs/core": "workspace:*", "@sentry/react": "^10.45.0", "@types/node": "^20.19.37", "@types/react": "^19.2.14", @@ -21,9 +22,6 @@ "react-dom": "^19.2.4", "vite": "^8.0.2" }, - "dependencies": { - "@batijs/core": "workspace:*" - }, "files": [ "dist/" ], diff --git a/boilerplates/react/package.json b/boilerplates/react/package.json index 853982066..1adabe634 100644 --- a/boilerplates/react/package.json +++ b/boilerplates/react/package.json @@ -16,6 +16,7 @@ "@babel/plugin-syntax-flow": "^7.28.6", "@babel/plugin-transform-react-jsx": "^7.28.6", "@batijs/compile": "workspace:*", + "@batijs/core": "workspace:*", "@mantine/core": "^8.3.18", "@types/node": "^20.19.37", "@types/react": "^19.2.14", @@ -31,9 +32,6 @@ "vite": "^8.0.2", "vite-plugin-compiled-react": "^1.3.1" }, - "dependencies": { - "@batijs/core": "workspace:*" - }, "files": [ "dist/" ], @@ -110,15 +108,15 @@ "pages/_error/+Page": [ "./dist/types/pages/_error/+Page.d.mts" ], - "pages/star-wars/types": [ - "./dist/types/pages/star-wars/types.d.mts" - ], "pages/index/+Page": [ "./dist/types/pages/index/+Page.d.mts" ], "pages/index/Counter": [ "./dist/types/pages/index/Counter.d.mts" ], + "pages/star-wars/types": [ + "./dist/types/pages/star-wars/types.d.mts" + ], "pages/todo/+Page": [ "./dist/types/pages/todo/+Page.d.mts" ], diff --git a/boilerplates/sentry/package.json b/boilerplates/sentry/package.json index 1a3f5231d..0ad8a2479 100644 --- a/boilerplates/sentry/package.json +++ b/boilerplates/sentry/package.json @@ -13,13 +13,11 @@ "license": "MIT", "devDependencies": { "@batijs/compile": "workspace:*", + "@batijs/core": "workspace:*", "@sentry/vite-plugin": "^5.1.1", "@types/node": "^20.19.37", "vite": "^8.0.2" }, - "dependencies": { - "@batijs/core": "workspace:*" - }, "files": [ "dist/" ], diff --git a/boilerplates/shadcn-ui/package.json b/boilerplates/shadcn-ui/package.json index 70fd8ad69..6716d9d08 100644 --- a/boilerplates/shadcn-ui/package.json +++ b/boilerplates/shadcn-ui/package.json @@ -13,6 +13,7 @@ "license": "MIT", "devDependencies": { "@batijs/compile": "workspace:*", + "@batijs/core": "workspace:*", "@radix-ui/react-icons": "^1.3.2", "@types/node": "^20.19.37", "autoprefixer": "^10.4.27", @@ -23,9 +24,6 @@ "tailwindcss": "^4.2.2", "tw-animate-css": "^1.4.0" }, - "dependencies": { - "@batijs/core": "workspace:*" - }, "files": [ "dist/" ], diff --git a/boilerplates/shared-db/package.json b/boilerplates/shared-db/package.json index 067d1b6de..1db7ec1fe 100644 --- a/boilerplates/shared-db/package.json +++ b/boilerplates/shared-db/package.json @@ -13,12 +13,10 @@ "license": "MIT", "devDependencies": { "@batijs/compile": "workspace:*", + "@batijs/core": "workspace:*", "@types/node": "^20.19.37", "@universal-middleware/core": "^0.4.17" }, - "dependencies": { - "@batijs/core": "workspace:*" - }, "files": [ "dist/" ], diff --git a/boilerplates/shared-todo/package.json b/boilerplates/shared-todo/package.json index d3265c70e..35a276b8b 100644 --- a/boilerplates/shared-todo/package.json +++ b/boilerplates/shared-todo/package.json @@ -13,12 +13,10 @@ "license": "MIT", "devDependencies": { "@batijs/compile": "workspace:*", + "@batijs/core": "workspace:*", "@types/node": "^20.19.37", "vike": "^0.4.255" }, - "dependencies": { - "@batijs/core": "workspace:*" - }, "files": [ "dist/" ], diff --git a/boilerplates/shared/package.json b/boilerplates/shared/package.json index b548a1837..15b265700 100644 --- a/boilerplates/shared/package.json +++ b/boilerplates/shared/package.json @@ -14,6 +14,7 @@ "license": "MIT", "devDependencies": { "@batijs/compile": "workspace:*", + "@batijs/core": "workspace:*", "@types/node": "^20.19.37", "vike": "^0.4.255", "vite": "^8.0.2" diff --git a/boilerplates/solid-sentry/package.json b/boilerplates/solid-sentry/package.json index ff8ec00cb..aa626b4c7 100644 --- a/boilerplates/solid-sentry/package.json +++ b/boilerplates/solid-sentry/package.json @@ -13,15 +13,13 @@ "license": "MIT", "devDependencies": { "@batijs/compile": "workspace:*", + "@batijs/core": "workspace:*", "@sentry/solid": "^10.45.0", "@types/node": "^20.19.37", "solid-js": "^1.9.11", "vike-solid": "^0.8.1", "vite": "^8.0.2" }, - "dependencies": { - "@batijs/core": "workspace:*" - }, "files": [ "dist/" ], diff --git a/boilerplates/solid/package.json b/boilerplates/solid/package.json index 0fecda1f1..dfccd9a87 100644 --- a/boilerplates/solid/package.json +++ b/boilerplates/solid/package.json @@ -13,6 +13,7 @@ "license": "MIT", "devDependencies": { "@batijs/compile": "workspace:*", + "@batijs/core": "workspace:*", "@types/node": "^20.19.37", "solid-js": "^1.9.11", "tailwindcss": "^4.2.2", @@ -23,9 +24,6 @@ "vite": "^8.0.2", "vite-plugin-solid": "^2.11.11" }, - "dependencies": { - "@batijs/core": "workspace:*" - }, "files": [ "dist/" ], diff --git a/boilerplates/sqlite/package.json b/boilerplates/sqlite/package.json index c41590e33..ca8bd9da3 100644 --- a/boilerplates/sqlite/package.json +++ b/boilerplates/sqlite/package.json @@ -13,15 +13,13 @@ "license": "MIT", "devDependencies": { "@batijs/compile": "workspace:*", + "@batijs/core": "workspace:*", "@types/better-sqlite3": "^7.6.13", "@types/node": "^20.19.37", "better-sqlite3": "^12.8.0", "dotenv": "^17.3.1", "tsx": "^4.21.0" }, - "dependencies": { - "@batijs/core": "workspace:*" - }, "files": [ "dist/" ], diff --git a/boilerplates/storybook/package.json b/boilerplates/storybook/package.json index 5492c9ae6..5590cb1d4 100644 --- a/boilerplates/storybook/package.json +++ b/boilerplates/storybook/package.json @@ -13,11 +13,9 @@ "license": "MIT", "devDependencies": { "@batijs/compile": "workspace:*", + "@batijs/core": "workspace:*", "@types/node": "^20.19.37" }, - "dependencies": { - "@batijs/core": "workspace:*" - }, "files": [ "dist/" ], diff --git a/boilerplates/tailwindcss/package.json b/boilerplates/tailwindcss/package.json index bba84f6a6..3a0762b96 100644 --- a/boilerplates/tailwindcss/package.json +++ b/boilerplates/tailwindcss/package.json @@ -13,6 +13,7 @@ "license": "MIT", "devDependencies": { "@batijs/compile": "workspace:*", + "@batijs/core": "workspace:*", "@tailwindcss/vite": "^4.2.2", "@types/node": "^20.19.37", "autoprefixer": "^10.4.27", @@ -21,9 +22,6 @@ "vike": "^0.4.255", "vite": "^8.0.2" }, - "dependencies": { - "@batijs/core": "workspace:*" - }, "files": [ "dist/" ], diff --git a/boilerplates/telefunc/package.json b/boilerplates/telefunc/package.json index d148e92c0..11e14671d 100644 --- a/boilerplates/telefunc/package.json +++ b/boilerplates/telefunc/package.json @@ -13,15 +13,13 @@ "license": "MIT", "devDependencies": { "@batijs/compile": "workspace:*", + "@batijs/core": "workspace:*", "@types/node": "^20.19.37", "@universal-middleware/core": "^0.4.17", "telefunc": "^0.2.19", "vike": "^0.4.255", "vite": "^8.0.2" }, - "dependencies": { - "@batijs/core": "workspace:*" - }, "files": [ "dist/" ], diff --git a/boilerplates/trpc/package.json b/boilerplates/trpc/package.json index 9196000a8..cdc800cce 100644 --- a/boilerplates/trpc/package.json +++ b/boilerplates/trpc/package.json @@ -13,15 +13,13 @@ "license": "MIT", "devDependencies": { "@batijs/compile": "workspace:*", + "@batijs/core": "workspace:*", "@trpc/client": "^11.14.1", "@trpc/server": "^11.14.1", "@types/node": "^20.19.37", "@universal-middleware/core": "^0.4.17", "vite": "^8.0.2" }, - "dependencies": { - "@batijs/core": "workspace:*" - }, "files": [ "dist/" ], diff --git a/boilerplates/ts-rest/package.json b/boilerplates/ts-rest/package.json index e07dba3b9..137adb484 100644 --- a/boilerplates/ts-rest/package.json +++ b/boilerplates/ts-rest/package.json @@ -13,15 +13,13 @@ "license": "MIT", "devDependencies": { "@batijs/compile": "workspace:*", + "@batijs/core": "workspace:*", "@ts-rest/core": "^3.52.1", "@ts-rest/serverless": "^3.52.1", "@types/node": "^20.19.37", "@universal-middleware/core": "^0.4.17", "zod": "^3.25.76" }, - "dependencies": { - "@batijs/core": "workspace:*" - }, "files": [ "dist/" ], diff --git a/boilerplates/vercel/package.json b/boilerplates/vercel/package.json index e4ed8fbc5..a99ee2d2e 100644 --- a/boilerplates/vercel/package.json +++ b/boilerplates/vercel/package.json @@ -13,15 +13,13 @@ "license": "MIT", "devDependencies": { "@batijs/compile": "workspace:*", + "@batijs/core": "workspace:*", "@photonjs/vercel": "^0.1.23", "@types/node": "^20.19.37", "h3": "~1.15.10", "vike": "^0.4.255", "vite": "^8.0.2" }, - "dependencies": { - "@batijs/core": "workspace:*" - }, "files": [ "dist/" ], diff --git a/boilerplates/vue-sentry/package.json b/boilerplates/vue-sentry/package.json index 7d95978df..382f00c61 100644 --- a/boilerplates/vue-sentry/package.json +++ b/boilerplates/vue-sentry/package.json @@ -13,15 +13,13 @@ "license": "MIT", "devDependencies": { "@batijs/compile": "workspace:*", + "@batijs/core": "workspace:*", "@sentry/vue": "^10.45.0", "@types/node": "^20.19.37", "vike-vue": "^0.9.11", "vite": "^8.0.2", "vue": "^3.5.30" }, - "dependencies": { - "@batijs/core": "workspace:*" - }, "files": [ "dist/" ], diff --git a/boilerplates/vue/package.json b/boilerplates/vue/package.json index b86a24fb1..d45932cf6 100644 --- a/boilerplates/vue/package.json +++ b/boilerplates/vue/package.json @@ -13,6 +13,7 @@ "license": "MIT", "devDependencies": { "@batijs/compile": "workspace:*", + "@batijs/core": "workspace:*", "@batijs/tailwindcss": "workspace:*", "@types/node": "^20.19.37", "@vitejs/plugin-vue": "^6.0.5", @@ -25,9 +26,6 @@ "vue": "^3.5.30", "vue-gtag": "^3.7.0" }, - "dependencies": { - "@batijs/core": "workspace:*" - }, "files": [ "dist/" ], diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index ab571dbe4..dce259e90 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -45,23 +45,18 @@ importers: version: 24.40.0(typescript@6.0.2) boilerplates/auth0: - dependencies: - '@batijs/core': - specifier: workspace:* - version: link:../../packages/core devDependencies: '@batijs/compile': specifier: workspace:* version: file:packages/compile(oxc-resolver@11.19.1)(synckit@0.11.12)(typescript@6.0.2) + '@batijs/core': + specifier: workspace:* + version: link:../../packages/core '@types/node': specifier: ^20.19.37 version: 20.19.37 boilerplates/authjs: - dependencies: - '@batijs/core': - specifier: workspace:* - version: link:../../packages/core devDependencies: '@auth/core': specifier: ^0.41.1 @@ -69,6 +64,9 @@ importers: '@batijs/compile': specifier: workspace:* version: file:packages/compile(oxc-resolver@11.19.1)(synckit@0.11.12)(typescript@6.0.2) + '@batijs/core': + specifier: workspace:* + version: link:../../packages/core '@types/node': specifier: ^20.19.37 version: 20.19.37 @@ -77,14 +75,13 @@ importers: version: 0.4.17(@cloudflare/workers-types@4.20260317.1)(@types/express@5.0.6)(fastify@5.8.2)(h3@1.15.10)(hono@4.12.8)(srvx@0.9.8) boilerplates/aws: - dependencies: - '@batijs/core': - specifier: workspace:* - version: link:../../packages/core devDependencies: '@batijs/compile': specifier: workspace:* version: file:packages/compile(oxc-resolver@11.19.1)(synckit@0.11.12)(typescript@6.0.2) + '@batijs/core': + specifier: workspace:* + version: link:../../packages/core '@types/node': specifier: ^20.19.37 version: 20.19.37 @@ -126,14 +123,13 @@ importers: version: 6.0.1 boilerplates/biome: - dependencies: - '@batijs/core': - specifier: workspace:* - version: link:../../packages/core devDependencies: '@batijs/compile': specifier: workspace:* version: file:packages/compile(oxc-resolver@11.19.1)(synckit@0.11.12)(typescript@6.0.2) + '@batijs/core': + specifier: workspace:* + version: link:../../packages/core '@biomejs/biome': specifier: 2.4.8 version: 2.4.8 @@ -145,14 +141,13 @@ importers: version: 20.19.37 boilerplates/cloudflare: - dependencies: - '@batijs/core': - specifier: workspace:* - version: link:../../packages/core devDependencies: '@batijs/compile': specifier: workspace:* version: file:packages/compile(oxc-resolver@11.19.1)(synckit@0.11.12)(typescript@6.0.2) + '@batijs/core': + specifier: workspace:* + version: link:../../packages/core '@photonjs/cloudflare': specifier: ^0.1.13 version: 0.1.13(@cloudflare/workers-types@4.20260317.1)(@types/express@5.0.6)(fastify@5.8.2)(h3@1.15.10)(hono@4.12.8)(srvx@0.9.8)(vite@8.0.2(@types/node@20.19.37)(esbuild@0.27.4)(jiti@2.6.1)(sugarss@5.0.1(postcss@8.5.8))(tsx@4.21.0)(yaml@2.8.3))(workerd@1.20260317.1)(wrangler@4.76.0(@cloudflare/workers-types@4.20260317.1)) @@ -164,17 +159,16 @@ importers: version: 4.76.0(@cloudflare/workers-types@4.20260317.1) boilerplates/compiled: - dependencies: + devDependencies: + '@batijs/compile': + specifier: workspace:* + version: file:packages/compile(oxc-resolver@11.19.1)(synckit@0.11.12)(typescript@6.0.2) '@batijs/core': specifier: workspace:* version: link:../../packages/core '@compiled/react': specifier: ^0.20.0 version: 0.20.0(react@19.2.4) - devDependencies: - '@batijs/compile': - specifier: workspace:* - version: file:packages/compile(oxc-resolver@11.19.1)(synckit@0.11.12)(typescript@6.0.2) '@types/node': specifier: ^20.19.37 version: 20.19.37 @@ -186,14 +180,13 @@ importers: version: 1.3.1(@compiled/react@0.20.0(react@19.2.4))(@vitejs/plugin-react@6.0.1(vite@8.0.2(@types/node@20.19.37)(esbuild@0.27.4)(jiti@2.6.1)(sugarss@5.0.1(postcss@8.5.8))(tsx@4.21.0)(yaml@2.8.3)))(vite@8.0.2(@types/node@20.19.37)(esbuild@0.27.4)(jiti@2.6.1)(sugarss@5.0.1(postcss@8.5.8))(tsx@4.21.0)(yaml@2.8.3)) boilerplates/d1: - dependencies: - '@batijs/core': - specifier: workspace:* - version: link:../../packages/core devDependencies: '@batijs/compile': specifier: workspace:* version: file:packages/compile(oxc-resolver@11.19.1)(synckit@0.11.12)(typescript@6.0.2) + '@batijs/core': + specifier: workspace:* + version: link:../../packages/core '@types/node': specifier: ^20.19.37 version: 20.19.37 @@ -208,27 +201,25 @@ importers: version: 4.76.0(@cloudflare/workers-types@4.20260317.1) boilerplates/d1-kysely: - dependencies: - '@batijs/core': - specifier: workspace:* - version: link:../../packages/core devDependencies: '@batijs/compile': specifier: workspace:* version: file:packages/compile(oxc-resolver@11.19.1)(synckit@0.11.12)(typescript@6.0.2) + '@batijs/core': + specifier: workspace:* + version: link:../../packages/core '@types/node': specifier: ^20.19.37 version: 20.19.37 boilerplates/d1-sqlite: - dependencies: - '@batijs/core': - specifier: workspace:* - version: link:../../packages/core devDependencies: '@batijs/compile': specifier: workspace:* version: file:packages/compile(oxc-resolver@11.19.1)(synckit@0.11.12)(typescript@6.0.2) + '@batijs/core': + specifier: workspace:* + version: link:../../packages/core '@types/node': specifier: ^20.19.37 version: 20.19.37 @@ -240,14 +231,13 @@ importers: version: 0.4.255(@types/node@20.19.37)(jiti@2.6.1)(react-streaming@0.4.16(react-dom@19.2.4(react@19.2.4))(react@19.2.4))(sugarss@5.0.1(postcss@8.5.8))(tsx@4.21.0)(yaml@2.8.3) boilerplates/drizzle: - dependencies: - '@batijs/core': - specifier: workspace:* - version: link:../../packages/core devDependencies: '@batijs/compile': specifier: workspace:* version: file:packages/compile(oxc-resolver@11.19.1)(synckit@0.11.12)(typescript@6.0.2) + '@batijs/core': + specifier: workspace:* + version: link:../../packages/core '@types/better-sqlite3': specifier: ^7.6.13 version: 7.6.13 @@ -268,14 +258,13 @@ importers: version: 0.45.1(@cloudflare/workers-types@4.20260317.1)(@electric-sql/pglite@0.3.15)(@prisma/client@7.5.0(prisma@7.5.0(@types/react@19.2.14)(better-sqlite3@12.8.0)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)(typescript@6.0.2))(typescript@6.0.2))(@types/better-sqlite3@7.6.13)(better-sqlite3@12.8.0)(kysely@0.28.14)(mysql2@3.15.3)(postgres@3.4.7)(prisma@7.5.0(@types/react@19.2.14)(better-sqlite3@12.8.0)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)(typescript@6.0.2)) boilerplates/eslint: - dependencies: - '@batijs/core': - specifier: workspace:* - version: link:../../packages/core devDependencies: '@batijs/compile': specifier: workspace:^ version: file:packages/compile(oxc-resolver@11.19.1)(synckit@0.11.12)(typescript@6.0.2) + '@batijs/core': + specifier: workspace:* + version: link:../../packages/core '@eslint/js': specifier: ^9.39.4 version: 9.39.4 @@ -308,10 +297,6 @@ importers: version: 10.4.0(eslint@9.39.4(jiti@2.6.1)) boilerplates/express: - dependencies: - '@batijs/core': - specifier: workspace:* - version: link:../../packages/core devDependencies: '@auth/core': specifier: ^0.41.1 @@ -319,6 +304,9 @@ importers: '@batijs/compile': specifier: workspace:* version: file:packages/compile(oxc-resolver@11.19.1)(synckit@0.11.12)(typescript@6.0.2) + '@batijs/core': + specifier: workspace:* + version: link:../../packages/core '@photonjs/express': specifier: ^0.1.13 version: 0.1.13(@cloudflare/workers-types@4.20260317.1)(@types/express@5.0.6)(fastify@5.8.2)(h3@1.15.10)(hono@4.12.8)(srvx@0.9.8)(vite@8.0.2(@types/node@20.19.37)(esbuild@0.27.4)(jiti@2.6.1)(sugarss@5.0.1(postcss@8.5.8))(tsx@4.21.0)(yaml@2.8.3)) @@ -348,10 +336,6 @@ importers: version: 8.0.2(@types/node@20.19.37)(esbuild@0.27.4)(jiti@2.6.1)(sugarss@5.0.1(postcss@8.5.8))(tsx@4.21.0)(yaml@2.8.3) boilerplates/fastify: - dependencies: - '@batijs/core': - specifier: workspace:* - version: link:../../packages/core devDependencies: '@auth/core': specifier: ^0.41.1 @@ -359,6 +343,9 @@ importers: '@batijs/compile': specifier: workspace:* version: file:packages/compile(oxc-resolver@11.19.1)(synckit@0.11.12)(typescript@6.0.2) + '@batijs/core': + specifier: workspace:* + version: link:../../packages/core '@photonjs/fastify': specifier: ^0.1.12 version: 0.1.12(@cloudflare/workers-types@4.20260317.1)(@types/express@5.0.6)(fastify@5.8.2)(h3@1.15.10)(hono@4.12.8)(srvx@0.9.8)(vite@8.0.2(@types/node@20.19.37)(esbuild@0.27.4)(jiti@2.6.1)(sugarss@5.0.1(postcss@8.5.8))(tsx@4.21.0)(yaml@2.8.3)) @@ -391,23 +378,18 @@ importers: version: 8.0.2(@types/node@20.19.37)(esbuild@0.27.4)(jiti@2.6.1)(sugarss@5.0.1(postcss@8.5.8))(tsx@4.21.0)(yaml@2.8.3) boilerplates/google-analytics: - dependencies: - '@batijs/core': - specifier: workspace:* - version: link:../../packages/core devDependencies: '@batijs/compile': specifier: workspace:* version: file:packages/compile(oxc-resolver@11.19.1)(synckit@0.11.12)(typescript@6.0.2) + '@batijs/core': + specifier: workspace:* + version: link:../../packages/core '@types/node': specifier: ^20.19.37 version: 20.19.37 boilerplates/h3: - dependencies: - '@batijs/core': - specifier: workspace:* - version: link:../../packages/core devDependencies: '@auth/core': specifier: ^0.41.1 @@ -415,6 +397,9 @@ importers: '@batijs/compile': specifier: workspace:* version: file:packages/compile(oxc-resolver@11.19.1)(synckit@0.11.12)(typescript@6.0.2) + '@batijs/core': + specifier: workspace:* + version: link:../../packages/core '@photonjs/h3': specifier: ^0.1.12 version: 0.1.12(@cloudflare/workers-types@4.20260317.1)(@types/express@5.0.6)(fastify@5.8.2)(h3@1.15.10)(hono@4.12.8)(srvx@0.9.8)(vite@8.0.2(@types/node@20.19.37)(esbuild@0.27.4)(jiti@2.6.1)(sugarss@5.0.1(postcss@8.5.8))(tsx@4.21.0)(yaml@2.8.3)) @@ -450,10 +435,6 @@ importers: version: 8.0.2(@types/node@20.19.37)(esbuild@0.27.4)(jiti@2.6.1)(sugarss@5.0.1(postcss@8.5.8))(tsx@4.21.0)(yaml@2.8.3) boilerplates/hono: - dependencies: - '@batijs/core': - specifier: workspace:* - version: link:../../packages/core devDependencies: '@auth/core': specifier: ^0.41.1 @@ -461,6 +442,9 @@ importers: '@batijs/compile': specifier: workspace:* version: file:packages/compile(oxc-resolver@11.19.1)(synckit@0.11.12)(typescript@6.0.2) + '@batijs/core': + specifier: workspace:* + version: link:../../packages/core '@photonjs/hono': specifier: ^0.1.12 version: 0.1.12(@cloudflare/workers-types@4.20260317.1)(@hono/node-server@1.19.9(hono@4.12.8))(@types/express@5.0.6)(fastify@5.8.2)(h3@1.15.10)(hono@4.12.8)(srvx@0.9.8)(vite@8.0.2(@types/node@20.19.37)(esbuild@0.27.4)(jiti@2.6.1)(sugarss@5.0.1(postcss@8.5.8))(tsx@4.21.0)(yaml@2.8.3)) @@ -493,14 +477,13 @@ importers: version: 8.0.2(@types/node@20.19.37)(esbuild@0.27.4)(jiti@2.6.1)(sugarss@5.0.1(postcss@8.5.8))(tsx@4.21.0)(yaml@2.8.3) boilerplates/kysely: - dependencies: - '@batijs/core': - specifier: workspace:* - version: link:../../packages/core devDependencies: '@batijs/compile': specifier: workspace:* version: file:packages/compile(oxc-resolver@11.19.1)(synckit@0.11.12)(typescript@6.0.2) + '@batijs/core': + specifier: workspace:* + version: link:../../packages/core '@cloudflare/workers-types': specifier: ^4.20260317.1 version: 4.20260317.1 @@ -527,14 +510,13 @@ importers: version: 4.21.0 boilerplates/mantine: - dependencies: - '@batijs/core': - specifier: workspace:* - version: link:../../packages/core devDependencies: '@batijs/compile': specifier: workspace:* version: file:packages/compile(oxc-resolver@11.19.1)(synckit@0.11.12)(typescript@6.0.2) + '@batijs/core': + specifier: workspace:* + version: link:../../packages/core '@mantine/core': specifier: ^8.3.18 version: 8.3.18(@mantine/hooks@8.3.18(react@19.2.4))(@types/react@19.2.14)(react-dom@19.2.4(react@19.2.4))(react@19.2.4) @@ -576,14 +558,13 @@ importers: version: 1.3.1(@compiled/react@0.20.0(react@19.2.4))(@vitejs/plugin-react@6.0.1(vite@8.0.2(@types/node@20.19.37)(esbuild@0.27.4)(jiti@2.6.1)(sugarss@5.0.1(postcss@8.5.8))(tsx@4.21.0)(yaml@2.8.3)))(vite@8.0.2(@types/node@20.19.37)(esbuild@0.27.4)(jiti@2.6.1)(sugarss@5.0.1(postcss@8.5.8))(tsx@4.21.0)(yaml@2.8.3)) boilerplates/oxlint: - dependencies: - '@batijs/core': - specifier: workspace:* - version: link:../../packages/core devDependencies: '@batijs/compile': specifier: workspace:* version: file:packages/compile(oxc-resolver@11.19.1)(synckit@0.11.12)(typescript@6.0.2) + '@batijs/core': + specifier: workspace:* + version: link:../../packages/core '@types/node': specifier: ^20.19.37 version: 20.19.37 @@ -595,14 +576,13 @@ importers: version: 0.17.1 boilerplates/photon: - dependencies: - '@batijs/core': - specifier: workspace:* - version: link:../../packages/core devDependencies: '@batijs/compile': specifier: workspace:* version: file:packages/compile(oxc-resolver@11.19.1)(synckit@0.11.12)(typescript@6.0.2) + '@batijs/core': + specifier: workspace:* + version: link:../../packages/core '@types/node': specifier: ^20.19.37 version: 20.19.37 @@ -611,40 +591,37 @@ importers: version: 0.1.26(eaff053b84db0d9452a2f8db7d830c4f) boilerplates/plausible.io: - dependencies: - '@batijs/core': - specifier: workspace:* - version: link:../../packages/core devDependencies: '@batijs/compile': specifier: workspace:* version: file:packages/compile(oxc-resolver@11.19.1)(synckit@0.11.12)(typescript@6.0.2) + '@batijs/core': + specifier: workspace:* + version: link:../../packages/core '@types/node': specifier: ^20.19.37 version: 20.19.37 boilerplates/pnpm: - dependencies: - '@batijs/core': - specifier: workspace:* - version: link:../../packages/core devDependencies: '@batijs/compile': specifier: workspace:* version: file:packages/compile(oxc-resolver@11.19.1)(synckit@0.11.12)(typescript@6.0.2) + '@batijs/core': + specifier: workspace:* + version: link:../../packages/core '@types/node': specifier: ^20.19.37 version: 20.19.37 boilerplates/prettier: - dependencies: - '@batijs/core': - specifier: workspace:* - version: link:../../packages/core devDependencies: '@batijs/compile': specifier: workspace:* version: file:packages/compile(oxc-resolver@11.19.1)(synckit@0.11.12)(typescript@6.0.2) + '@batijs/core': + specifier: workspace:* + version: link:../../packages/core '@types/node': specifier: ^20.19.37 version: 20.19.37 @@ -653,14 +630,13 @@ importers: version: 3.8.1 boilerplates/prisma: - dependencies: - '@batijs/core': - specifier: workspace:* - version: link:../../packages/core devDependencies: '@batijs/compile': specifier: workspace:* version: file:packages/compile(oxc-resolver@11.19.1)(synckit@0.11.12)(typescript@6.0.2) + '@batijs/core': + specifier: workspace:* + version: link:../../packages/core '@prisma/client': specifier: ^7.5.0 version: 7.5.0(prisma@7.5.0(@types/react@19.2.14)(better-sqlite3@12.8.0)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)(typescript@6.0.2))(typescript@6.0.2) @@ -675,10 +651,6 @@ importers: version: 7.5.0(@types/react@19.2.14)(better-sqlite3@12.8.0)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)(typescript@6.0.2) boilerplates/react: - dependencies: - '@batijs/core': - specifier: workspace:* - version: link:../../packages/core devDependencies: '@babel/core': specifier: ^7.29.0 @@ -692,6 +664,9 @@ importers: '@batijs/compile': specifier: workspace:* version: file:packages/compile(oxc-resolver@11.19.1)(synckit@0.11.12)(typescript@6.0.2) + '@batijs/core': + specifier: workspace:* + version: link:../../packages/core '@mantine/core': specifier: ^8.3.18 version: 8.3.18(@mantine/hooks@8.3.18(react@19.2.4))(@types/react@19.2.14)(react-dom@19.2.4(react@19.2.4))(react@19.2.4) @@ -736,14 +711,13 @@ importers: version: 1.3.1(@compiled/react@0.20.0(react@19.2.4))(@vitejs/plugin-react@6.0.1(vite@8.0.2(@types/node@20.19.37)(esbuild@0.27.4)(jiti@2.6.1)(sugarss@5.0.1(postcss@8.5.8))(tsx@4.21.0)(yaml@2.8.3)))(vite@8.0.2(@types/node@20.19.37)(esbuild@0.27.4)(jiti@2.6.1)(sugarss@5.0.1(postcss@8.5.8))(tsx@4.21.0)(yaml@2.8.3)) boilerplates/react-sentry: - dependencies: - '@batijs/core': - specifier: workspace:* - version: link:../../packages/core devDependencies: '@batijs/compile': specifier: workspace:* version: file:packages/compile(oxc-resolver@11.19.1)(synckit@0.11.12)(typescript@6.0.2) + '@batijs/core': + specifier: workspace:* + version: link:../../packages/core '@sentry/react': specifier: ^10.45.0 version: 10.45.0(react@19.2.4) @@ -767,14 +741,13 @@ importers: version: 8.0.2(@types/node@20.19.37)(esbuild@0.27.4)(jiti@2.6.1)(sugarss@5.0.1(postcss@8.5.8))(tsx@4.21.0)(yaml@2.8.3) boilerplates/sentry: - dependencies: - '@batijs/core': - specifier: workspace:* - version: link:../../packages/core devDependencies: '@batijs/compile': specifier: workspace:* version: file:packages/compile(oxc-resolver@11.19.1)(synckit@0.11.12)(typescript@6.0.2) + '@batijs/core': + specifier: workspace:* + version: link:../../packages/core '@sentry/vite-plugin': specifier: ^5.1.1 version: 5.1.1(encoding@0.1.13) @@ -786,14 +759,13 @@ importers: version: 8.0.2(@types/node@20.19.37)(esbuild@0.27.4)(jiti@2.6.1)(sugarss@5.0.1(postcss@8.5.8))(tsx@4.21.0)(yaml@2.8.3) boilerplates/shadcn-ui: - dependencies: - '@batijs/core': - specifier: workspace:* - version: link:../../packages/core devDependencies: '@batijs/compile': specifier: workspace:* version: file:packages/compile(oxc-resolver@11.19.1)(synckit@0.11.12)(typescript@6.0.2) + '@batijs/core': + specifier: workspace:* + version: link:../../packages/core '@radix-ui/react-icons': specifier: ^1.3.2 version: 1.3.2(react@19.2.4) @@ -827,6 +799,9 @@ importers: '@batijs/compile': specifier: workspace:* version: file:packages/compile(oxc-resolver@11.19.1)(synckit@0.11.12)(typescript@6.0.2) + '@batijs/core': + specifier: workspace:* + version: link:../../packages/core '@types/node': specifier: ^20.19.37 version: 20.19.37 @@ -838,14 +813,13 @@ importers: version: 8.0.2(@types/node@20.19.37)(esbuild@0.27.4)(jiti@2.6.1)(sugarss@5.0.1(postcss@8.5.8))(tsx@4.21.0)(yaml@2.8.3) boilerplates/shared-db: - dependencies: - '@batijs/core': - specifier: workspace:* - version: link:../../packages/core devDependencies: '@batijs/compile': specifier: workspace:* version: file:packages/compile(oxc-resolver@11.19.1)(synckit@0.11.12)(typescript@6.0.2) + '@batijs/core': + specifier: workspace:* + version: link:../../packages/core '@types/node': specifier: ^20.19.37 version: 20.19.37 @@ -875,14 +849,13 @@ importers: version: 8.0.2(@types/node@20.19.37)(esbuild@0.27.4)(jiti@2.6.1)(sugarss@5.0.1(postcss@8.5.8))(tsx@4.21.0)(yaml@2.8.3) boilerplates/shared-todo: - dependencies: - '@batijs/core': - specifier: workspace:* - version: link:../../packages/core devDependencies: '@batijs/compile': specifier: workspace:* version: file:packages/compile(oxc-resolver@11.19.1)(synckit@0.11.12)(typescript@6.0.2) + '@batijs/core': + specifier: workspace:* + version: link:../../packages/core '@types/node': specifier: ^20.19.37 version: 20.19.37 @@ -891,14 +864,13 @@ importers: version: 0.4.255(@types/node@20.19.37)(jiti@2.6.1)(react-streaming@0.4.16(react-dom@19.2.4(react@19.2.4))(react@19.2.4))(sugarss@5.0.1(postcss@8.5.8))(tsx@4.21.0)(yaml@2.8.3) boilerplates/solid: - dependencies: - '@batijs/core': - specifier: workspace:* - version: link:../../packages/core devDependencies: '@batijs/compile': specifier: workspace:* version: file:packages/compile(oxc-resolver@11.19.1)(synckit@0.11.12)(typescript@6.0.2) + '@batijs/core': + specifier: workspace:* + version: link:../../packages/core '@types/node': specifier: ^20.19.37 version: 20.19.37 @@ -928,14 +900,13 @@ importers: version: 2.11.11(solid-js@1.9.11)(vite@8.0.2(@types/node@20.19.37)(esbuild@0.27.4)(jiti@2.6.1)(sugarss@5.0.1(postcss@8.5.8))(tsx@4.21.0)(yaml@2.8.3)) boilerplates/solid-sentry: - dependencies: - '@batijs/core': - specifier: workspace:* - version: link:../../packages/core devDependencies: '@batijs/compile': specifier: workspace:* version: file:packages/compile(oxc-resolver@11.19.1)(synckit@0.11.12)(typescript@6.0.2) + '@batijs/core': + specifier: workspace:* + version: link:../../packages/core '@sentry/solid': specifier: ^10.45.0 version: 10.45.0(solid-js@1.9.11) @@ -953,14 +924,13 @@ importers: version: 8.0.2(@types/node@20.19.37)(esbuild@0.27.4)(jiti@2.6.1)(sugarss@5.0.1(postcss@8.5.8))(tsx@4.21.0)(yaml@2.8.3) boilerplates/sqlite: - dependencies: - '@batijs/core': - specifier: workspace:* - version: link:../../packages/core devDependencies: '@batijs/compile': specifier: workspace:* version: file:packages/compile(oxc-resolver@11.19.1)(synckit@0.11.12)(typescript@6.0.2) + '@batijs/core': + specifier: workspace:* + version: link:../../packages/core '@types/better-sqlite3': specifier: ^7.6.13 version: 7.6.13 @@ -978,27 +948,25 @@ importers: version: 4.21.0 boilerplates/storybook: - dependencies: - '@batijs/core': - specifier: workspace:* - version: link:../../packages/core devDependencies: '@batijs/compile': specifier: workspace:* version: file:packages/compile(oxc-resolver@11.19.1)(synckit@0.11.12)(typescript@6.0.2) + '@batijs/core': + specifier: workspace:* + version: link:../../packages/core '@types/node': specifier: ^20.19.37 version: 20.19.37 boilerplates/tailwindcss: - dependencies: - '@batijs/core': - specifier: workspace:* - version: link:../../packages/core devDependencies: '@batijs/compile': specifier: workspace:* version: file:packages/compile(oxc-resolver@11.19.1)(synckit@0.11.12)(typescript@6.0.2) + '@batijs/core': + specifier: workspace:* + version: link:../../packages/core '@tailwindcss/vite': specifier: ^4.2.2 version: 4.2.2(vite@8.0.2(@types/node@20.19.37)(esbuild@0.27.4)(jiti@2.6.1)(sugarss@5.0.1(postcss@8.5.8))(tsx@4.21.0)(yaml@2.8.3)) @@ -1022,14 +990,13 @@ importers: version: 8.0.2(@types/node@20.19.37)(esbuild@0.27.4)(jiti@2.6.1)(sugarss@5.0.1(postcss@8.5.8))(tsx@4.21.0)(yaml@2.8.3) boilerplates/telefunc: - dependencies: - '@batijs/core': - specifier: workspace:* - version: link:../../packages/core devDependencies: '@batijs/compile': specifier: workspace:* version: file:packages/compile(oxc-resolver@11.19.1)(synckit@0.11.12)(typescript@6.0.2) + '@batijs/core': + specifier: workspace:* + version: link:../../packages/core '@types/node': specifier: ^20.19.37 version: 20.19.37 @@ -1047,14 +1014,13 @@ importers: version: 8.0.2(@types/node@20.19.37)(esbuild@0.27.4)(jiti@2.6.1)(sugarss@5.0.1(postcss@8.5.8))(tsx@4.21.0)(yaml@2.8.3) boilerplates/trpc: - dependencies: - '@batijs/core': - specifier: workspace:* - version: link:../../packages/core devDependencies: '@batijs/compile': specifier: workspace:* version: file:packages/compile(oxc-resolver@11.19.1)(synckit@0.11.12)(typescript@6.0.2) + '@batijs/core': + specifier: workspace:* + version: link:../../packages/core '@trpc/client': specifier: ^11.14.1 version: 11.14.1(@trpc/server@11.14.1(typescript@6.0.2))(typescript@6.0.2) @@ -1072,14 +1038,13 @@ importers: version: 8.0.2(@types/node@20.19.37)(esbuild@0.27.4)(jiti@2.6.1)(sugarss@5.0.1(postcss@8.5.8))(tsx@4.21.0)(yaml@2.8.3) boilerplates/ts-rest: - dependencies: - '@batijs/core': - specifier: workspace:* - version: link:../../packages/core devDependencies: '@batijs/compile': specifier: workspace:* version: file:packages/compile(oxc-resolver@11.19.1)(synckit@0.11.12)(typescript@6.0.2) + '@batijs/core': + specifier: workspace:* + version: link:../../packages/core '@ts-rest/core': specifier: ^3.52.1 version: 3.52.1(@types/node@20.19.37)(zod@3.25.76) @@ -1097,14 +1062,13 @@ importers: version: 3.25.76 boilerplates/vercel: - dependencies: - '@batijs/core': - specifier: workspace:* - version: link:../../packages/core devDependencies: '@batijs/compile': specifier: workspace:* version: file:packages/compile(oxc-resolver@11.19.1)(synckit@0.11.12)(typescript@6.0.2) + '@batijs/core': + specifier: workspace:* + version: link:../../packages/core '@photonjs/vercel': specifier: ^0.1.23 version: 0.1.23(@cloudflare/workers-types@4.20260317.1)(@types/express@5.0.6)(@universal-middleware/h3@0.4.15(@cloudflare/workers-types@4.20260317.1)(@types/express@5.0.6)(fastify@5.8.2)(h3@1.15.10)(hono@4.12.8)(srvx@0.9.8))(encoding@0.1.13)(express@5.2.1)(fastify@5.8.2)(h3@1.15.10)(hono@4.12.8)(srvx@0.9.8)(vite@8.0.2(@types/node@20.19.37)(esbuild@0.27.4)(jiti@2.6.1)(sugarss@5.0.1(postcss@8.5.8))(tsx@4.21.0)(yaml@2.8.3)) @@ -1122,14 +1086,13 @@ importers: version: 8.0.2(@types/node@20.19.37)(esbuild@0.27.4)(jiti@2.6.1)(sugarss@5.0.1(postcss@8.5.8))(tsx@4.21.0)(yaml@2.8.3) boilerplates/vue: - dependencies: - '@batijs/core': - specifier: workspace:* - version: link:../../packages/core devDependencies: '@batijs/compile': specifier: workspace:* version: file:packages/compile(oxc-resolver@11.19.1)(synckit@0.11.12)(typescript@6.0.2) + '@batijs/core': + specifier: workspace:* + version: link:../../packages/core '@batijs/tailwindcss': specifier: workspace:* version: link:../tailwindcss @@ -1165,14 +1128,13 @@ importers: version: 3.7.0(vue@3.5.30(typescript@6.0.2)) boilerplates/vue-sentry: - dependencies: - '@batijs/core': - specifier: workspace:* - version: link:../../packages/core devDependencies: '@batijs/compile': specifier: workspace:* version: file:packages/compile(oxc-resolver@11.19.1)(synckit@0.11.12)(typescript@6.0.2) + '@batijs/core': + specifier: workspace:* + version: link:../../packages/core '@sentry/vue': specifier: ^10.45.0 version: 10.45.0(vue@3.5.30(typescript@6.0.2)) diff --git a/scripts/new-boilerplate.ts b/scripts/new-boilerplate.ts index 791626b30..437ce592f 100644 --- a/scripts/new-boilerplate.ts +++ b/scripts/new-boilerplate.ts @@ -37,10 +37,8 @@ async function createPackageJson(name: string) { license: "MIT", devDependencies: { "@batijs/compile": "workspace:*", - "@types/node": sharedPackageJson.devDependencies["@types/node"], - }, - dependencies: { "@batijs/core": "workspace:*", + "@types/node": sharedPackageJson.devDependencies["@types/node"], }, nx: { tags: ["type:boilerplate"], From af4e727a37eab941656269ec3a57228fe3ef2f7e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jo=C3=ABl=20Charles?= Date: Thu, 26 Mar 2026 20:33:02 +0100 Subject: [PATCH 18/23] fix: windows --- boilerplates/kysely/package.json | 6 ++--- package.json | 2 +- packages/build/src/index.ts | 41 ++++++++++++++++++++++++++++++++ 3 files changed, 45 insertions(+), 4 deletions(-) diff --git a/boilerplates/kysely/package.json b/boilerplates/kysely/package.json index ea6bd8305..e404111c6 100644 --- a/boilerplates/kysely/package.json +++ b/boilerplates/kysely/package.json @@ -54,11 +54,11 @@ "database/kysely/types": [ "./dist/types/database/kysely/types.d.mts" ], - "database/kysely/queries/todos": [ - "./dist/types/database/kysely/queries/todos.d.mts" - ], "database/kysely/migrations/001_create_todos_table": [ "./dist/types/database/kysely/migrations/001_create_todos_table.d.mts" + ], + "database/kysely/queries/todos": [ + "./dist/types/database/kysely/queries/todos.d.mts" ] } }, diff --git a/package.json b/package.json index d83441f04..c305c5ed4 100644 --- a/package.json +++ b/package.json @@ -18,7 +18,7 @@ "test:e2e:workflow-write": "pnpm test:e2e workflow-write", "cli": "pnpm run build && rimraf /tmp/bati-app && node packages/cli/dist/index.js /tmp/bati-app", "build": "nx run-many --target=build", - "build:force": "nx run-many --target=build --skip-nx-cache", + "build:force": "nx run-many --target=build", "lint": "biome lint", "format": "biome format --write", "check": "biome check --write", diff --git a/packages/build/src/index.ts b/packages/build/src/index.ts index 3b5963552..20f819747 100644 --- a/packages/build/src/index.ts +++ b/packages/build/src/index.ts @@ -1,5 +1,6 @@ import { existsSync } from "node:fs"; import { mkdir, opendir, rm, rmdir, writeFile } from "node:fs/promises"; +import * as os from "node:os"; import path from "node:path"; import type { PackageJson, VikeMeta } from "@batijs/core"; import type { FileOperation, OperationReport } from "./operations/common.js"; @@ -47,6 +48,45 @@ async function safeRmFile(destination: string, options?: { removeEmptyDir?: bool } } +function posixToWindowsIfAbsolute(p: string) { + const match = p.match(/^\/([a-zA-Z])\/(.*)/); + + if (match) { + const drive = match[1].toUpperCase(); + const rest = match[2].replace(/\//g, "\\"); + return `${drive}:\\${rest}`; + } + + return p; +} + +function handleTmpOnWindows(p: string) { + if (p === "/tmp") { + return os.tmpdir(); + } + + if (p.startsWith("/tmp/")) { + return path.join(os.tmpdir(), p.slice(5)); + } + + return p; +} + +export function normalizeDist(inputPath: string) { + let p = inputPath; + + if (process.platform === "win32") { + // Handle /tmp first (absolute semantic) + p = handleTmpOnWindows(p); + + // Handle /c/... style paths + p = posixToWindowsIfAbsolute(p); + } + + // Normalize separators (keeps relative if it was) + return path.normalize(p); +} + export async function* walk(dir: string): AsyncGenerator { if (!existsSync(dir)) return; for await (const d of await opendir(dir)) { @@ -59,6 +99,7 @@ export async function* walk(dir: string): AsyncGenerator { } export default async function main(options: { source: string | string[]; dist: string }, meta: VikeMeta) { + options.dist = normalizeDist(options.dist); const sources = Array.isArray(options.source) ? options.source : [options.source]; function updateAllImports(target: string, imports: Set | undefined, includeIfImported: boolean) { From a93ae2e0febc173bcd59c81ea0e856c7bb57ef1a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jo=C3=ABl=20Charles?= Date: Thu, 26 Mar 2026 20:33:39 +0100 Subject: [PATCH 19/23] chore --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index c305c5ed4..d83441f04 100644 --- a/package.json +++ b/package.json @@ -18,7 +18,7 @@ "test:e2e:workflow-write": "pnpm test:e2e workflow-write", "cli": "pnpm run build && rimraf /tmp/bati-app && node packages/cli/dist/index.js /tmp/bati-app", "build": "nx run-many --target=build", - "build:force": "nx run-many --target=build", + "build:force": "nx run-many --target=build --skip-nx-cache", "lint": "biome lint", "format": "biome format --write", "check": "biome check --write", From c7bf6f428385d46aceb10aa8c8eae1b16ca3a7e2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jo=C3=ABl=20Charles?= Date: Thu, 26 Mar 2026 20:41:59 +0100 Subject: [PATCH 20/23] chore --- packages/build/src/index.ts | 40 -------------------------------- packages/cli/index.ts | 46 ++++++++++++++++++++++++++++++++++++- 2 files changed, 45 insertions(+), 41 deletions(-) diff --git a/packages/build/src/index.ts b/packages/build/src/index.ts index 20f819747..9837a2b93 100644 --- a/packages/build/src/index.ts +++ b/packages/build/src/index.ts @@ -48,45 +48,6 @@ async function safeRmFile(destination: string, options?: { removeEmptyDir?: bool } } -function posixToWindowsIfAbsolute(p: string) { - const match = p.match(/^\/([a-zA-Z])\/(.*)/); - - if (match) { - const drive = match[1].toUpperCase(); - const rest = match[2].replace(/\//g, "\\"); - return `${drive}:\\${rest}`; - } - - return p; -} - -function handleTmpOnWindows(p: string) { - if (p === "/tmp") { - return os.tmpdir(); - } - - if (p.startsWith("/tmp/")) { - return path.join(os.tmpdir(), p.slice(5)); - } - - return p; -} - -export function normalizeDist(inputPath: string) { - let p = inputPath; - - if (process.platform === "win32") { - // Handle /tmp first (absolute semantic) - p = handleTmpOnWindows(p); - - // Handle /c/... style paths - p = posixToWindowsIfAbsolute(p); - } - - // Normalize separators (keeps relative if it was) - return path.normalize(p); -} - export async function* walk(dir: string): AsyncGenerator { if (!existsSync(dir)) return; for await (const d of await opendir(dir)) { @@ -99,7 +60,6 @@ export async function* walk(dir: string): AsyncGenerator { } export default async function main(options: { source: string | string[]; dist: string }, meta: VikeMeta) { - options.dist = normalizeDist(options.dist); const sources = Array.isArray(options.source) ? options.source : [options.source]; function updateAllImports(target: string, imports: Set | undefined, includeIfImported: boolean) { diff --git a/packages/cli/index.ts b/packages/cli/index.ts index c062e87ef..feff3cce3 100644 --- a/packages/cli/index.ts +++ b/packages/cli/index.ts @@ -1,7 +1,8 @@ import { execSync } from "node:child_process"; import { existsSync, rmSync } from "node:fs"; import { access, constants, lstat, readdir, readFile, writeFile } from "node:fs/promises"; -import { dirname, join, parse } from "node:path"; +import { tmpdir } from "node:os"; +import { dirname, join, normalize, parse } from "node:path"; import { fileURLToPath } from "node:url"; import exec, { walk } from "@batijs/build"; import { getVersion, packageManager, type VikeMeta, which, withIcon } from "@batijs/core"; @@ -260,6 +261,45 @@ function generateRandomFilename(size: number) { return result; } +function posixToWindowsIfAbsolute(p: string) { + const match = p.match(/^\/([a-zA-Z])\/(.*)/); + + if (match) { + const drive = match[1].toUpperCase(); + const rest = match[2].replace(/\//g, "\\"); + return `${drive}:\\${rest}`; + } + + return p; +} + +function handleTmpOnWindows(p: string) { + if (p === "/tmp") { + return tmpdir(); + } + + if (p.startsWith("/tmp/")) { + return join(tmpdir(), p.slice(5)); + } + + return p; +} + +function normalizeDist(inputPath: string) { + let p = inputPath; + + if (process.platform === "win32") { + // Handle /tmp first (absolute semantic) + p = handleTmpOnWindows(p); + + // Handle /c/... style paths + p = posixToWindowsIfAbsolute(p); + } + + // Normalize separators (keeps relative if it was) + return normalize(p); +} + async function checkArguments(args: ParsedArgs): Promise< ParsedArgs< Omit & { @@ -280,6 +320,10 @@ async function checkArguments(args: ParsedArgs): Promise< newArgs.project = "my-app"; } + if (projectChosenByUser) { + newArgs.project = normalizeDist(newArgs.project); + } + if (existsSync(newArgs.project)) { // is target a directory const stat = await lstat(newArgs.project); From ba8713a0dfad81610179635f7a7ee1b0e84f938f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jo=C3=ABl=20Charles?= Date: Thu, 26 Mar 2026 20:45:05 +0100 Subject: [PATCH 21/23] chore --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index d83441f04..2fcff4ff9 100644 --- a/package.json +++ b/package.json @@ -16,7 +16,7 @@ "test": "nx run-many --target=test", "test:e2e": "pnpm run build && pnpm --filter \"@batijs/tests\" test:e2e", "test:e2e:workflow-write": "pnpm test:e2e workflow-write", - "cli": "pnpm run build && rimraf /tmp/bati-app && node packages/cli/dist/index.js /tmp/bati-app", + "cli": "pnpm run build && rimraf /tmp/bati-app && node packages/cli/dist/index.js --force /tmp/bati-app", "build": "nx run-many --target=build", "build:force": "nx run-many --target=build --skip-nx-cache", "lint": "biome lint", From 8b6b092001edfa9a99c420cde3f8c5f2f604dd04 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jo=C3=ABl=20Charles?= Date: Thu, 26 Mar 2026 21:01:51 +0100 Subject: [PATCH 22/23] chore --- boilerplates/solid/package.json | 106 ++++++++++++++++---------------- packages/compile/build.ts | 16 +++-- 2 files changed, 65 insertions(+), 57 deletions(-) diff --git a/boilerplates/solid/package.json b/boilerplates/solid/package.json index dfccd9a87..193eeb266 100644 --- a/boilerplates/solid/package.json +++ b/boilerplates/solid/package.json @@ -27,56 +27,6 @@ "files": [ "dist/" ], - "exports": { - "./components/Link": { - "types": "./dist/types/components/Link.d.mts" - }, - "./pages/_error/+Page": { - "types": "./dist/types/pages/_error/+Page.d.mts" - }, - "./pages/+config": { - "types": "./dist/types/pages/+config.d.mts" - }, - "./pages/+Head": { - "types": "./dist/types/pages/+Head.d.mts" - }, - "./pages/+Layout": { - "types": "./dist/types/pages/+Layout.d.mts" - }, - "./pages/+onPageTransitionEnd": { - "types": "./dist/types/pages/+onPageTransitionEnd.d.mts" - }, - "./pages/+onPageTransitionStart": { - "types": "./dist/types/pages/+onPageTransitionStart.d.mts" - }, - "./pages/index/+Page": { - "types": "./dist/types/pages/index/+Page.d.mts" - }, - "./pages/index/Counter": { - "types": "./dist/types/pages/index/Counter.d.mts" - }, - "./pages/star-wars/@id/+data": { - "types": "./dist/types/pages/star-wars/@id/+data.d.mts" - }, - "./pages/star-wars/@id/+Page": { - "types": "./dist/types/pages/star-wars/@id/+Page.d.mts" - }, - "./pages/star-wars/index/+data": { - "types": "./dist/types/pages/star-wars/index/+data.d.mts" - }, - "./pages/star-wars/index/+Page": { - "types": "./dist/types/pages/star-wars/index/+Page.d.mts" - }, - "./pages/star-wars/types": { - "types": "./dist/types/pages/star-wars/types.d.mts" - }, - "./pages/todo/+Page": { - "types": "./dist/types/pages/todo/+Page.d.mts" - }, - "./pages/todo/TodoList": { - "types": "./dist/types/pages/todo/TodoList.d.mts" - } - }, "typesVersions": { "*": { "components/Link": [ @@ -100,15 +50,15 @@ "pages/_error/+Page": [ "./dist/types/pages/_error/+Page.d.mts" ], + "pages/star-wars/types": [ + "./dist/types/pages/star-wars/types.d.mts" + ], "pages/index/+Page": [ "./dist/types/pages/index/+Page.d.mts" ], "pages/index/Counter": [ "./dist/types/pages/index/Counter.d.mts" ], - "pages/star-wars/types": [ - "./dist/types/pages/star-wars/types.d.mts" - ], "pages/todo/+Page": [ "./dist/types/pages/todo/+Page.d.mts" ], @@ -133,5 +83,55 @@ "tags": [ "type:boilerplate" ] + }, + "exports": { + "./components/Link": { + "types": "./dist/types/components/Link.d.mts" + }, + "./pages/_error/+Page": { + "types": "./dist/types/pages/_error/+Page.d.mts" + }, + "./pages/+config": { + "types": "./dist/types/pages/+config.d.mts" + }, + "./pages/+Head": { + "types": "./dist/types/pages/+Head.d.mts" + }, + "./pages/+Layout": { + "types": "./dist/types/pages/+Layout.d.mts" + }, + "./pages/+onPageTransitionEnd": { + "types": "./dist/types/pages/+onPageTransitionEnd.d.mts" + }, + "./pages/+onPageTransitionStart": { + "types": "./dist/types/pages/+onPageTransitionStart.d.mts" + }, + "./pages/index/+Page": { + "types": "./dist/types/pages/index/+Page.d.mts" + }, + "./pages/index/Counter": { + "types": "./dist/types/pages/index/Counter.d.mts" + }, + "./pages/star-wars/@id/+data": { + "types": "./dist/types/pages/star-wars/@id/+data.d.mts" + }, + "./pages/star-wars/@id/+Page": { + "types": "./dist/types/pages/star-wars/@id/+Page.d.mts" + }, + "./pages/star-wars/index/+data": { + "types": "./dist/types/pages/star-wars/index/+data.d.mts" + }, + "./pages/star-wars/index/+Page": { + "types": "./dist/types/pages/star-wars/index/+Page.d.mts" + }, + "./pages/star-wars/types": { + "types": "./dist/types/pages/star-wars/types.d.mts" + }, + "./pages/todo/+Page": { + "types": "./dist/types/pages/todo/+Page.d.mts" + }, + "./pages/todo/TodoList": { + "types": "./dist/types/pages/todo/TodoList.d.mts" + } } } diff --git a/packages/compile/build.ts b/packages/compile/build.ts index 1c377b920..166eb8b35 100644 --- a/packages/compile/build.ts +++ b/packages/compile/build.ts @@ -107,9 +107,9 @@ export async function build() { }, onSuccess: async () => { const distDir = path.join(process.cwd(), "dist", "types"); - const emittedFiles = (await globby(["./dist/types/**/*.d.mts"])).map((f) => - path.relative(distDir, path.resolve(f)).replace(/\\/g, "/"), - ); + const emittedFiles = (await globby(["./dist/types/**/*.d.mts"])) + .map((f) => path.relative(distDir, path.resolve(f)).replace(/\\/g, "/")) + .sort(); const packageJsonTypes = emittedFiles.reduce( (acc, cur) => { @@ -123,6 +123,7 @@ export async function build() { typesVersions: { "*": {} as Record }, }, ); + q; const packageJson = JSON.parse(await readFile("package.json", "utf-8")); packageJson.exports = sortObject(packageJsonTypes.exports); @@ -155,5 +156,12 @@ export async function build() { } function sortObject(obj: T): T { - return Object.fromEntries(Object.entries(obj).sort(([a], [b]) => a.localeCompare(b))) as T; + return Object.fromEntries( + Object.entries(obj) + .sort(([a], [b]) => (a < b ? -1 : a > b ? 1 : 0)) + .map(([key, value]) => [ + key, + value !== null && typeof value === "object" && !Array.isArray(value) ? sortObject(value) : value, + ]), + ) as T; } From 1de255d016a647d74b47cc546e4a4d77fe031168 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jo=C3=ABl=20Charles?= Date: Thu, 26 Mar 2026 21:10:19 +0100 Subject: [PATCH 23/23] lint --- packages/build/src/index.ts | 1 - packages/cli/index.ts | 1 - packages/compile/build.ts | 1 - packages/tests-utils/src/prepare.ts | 1 - packages/tests/src/common.ts | 5 +++-- packages/tests/src/index.ts | 3 --- 6 files changed, 3 insertions(+), 9 deletions(-) diff --git a/packages/build/src/index.ts b/packages/build/src/index.ts index 9837a2b93..3b5963552 100644 --- a/packages/build/src/index.ts +++ b/packages/build/src/index.ts @@ -1,6 +1,5 @@ import { existsSync } from "node:fs"; import { mkdir, opendir, rm, rmdir, writeFile } from "node:fs/promises"; -import * as os from "node:os"; import path from "node:path"; import type { PackageJson, VikeMeta } from "@batijs/core"; import type { FileOperation, OperationReport } from "./operations/common.js"; diff --git a/packages/cli/index.ts b/packages/cli/index.ts index feff3cce3..0bc437ca4 100644 --- a/packages/cli/index.ts +++ b/packages/cli/index.ts @@ -476,7 +476,6 @@ function checkRules(flags: string[]) { } async function retrieveHooks(hooks: Map): Promise> { - const reIgnoreFile = /^(chunk-|asset-|#)/gi; const map = new Map<"after", Hook[]>(); const sortedHooks = Array.from(hooks.entries()).sort(([b1], [b2]) => { if (b1.config.enforce === "pre") return 1; diff --git a/packages/compile/build.ts b/packages/compile/build.ts index 166eb8b35..353e933ff 100644 --- a/packages/compile/build.ts +++ b/packages/compile/build.ts @@ -123,7 +123,6 @@ export async function build() { typesVersions: { "*": {} as Record }, }, ); - q; const packageJson = JSON.parse(await readFile("package.json", "utf-8")); packageJson.exports = sortObject(packageJsonTypes.exports); diff --git a/packages/tests-utils/src/prepare.ts b/packages/tests-utils/src/prepare.ts index f3f40cb24..adc9c936b 100644 --- a/packages/tests-utils/src/prepare.ts +++ b/packages/tests-utils/src/prepare.ts @@ -44,7 +44,6 @@ export async function prepare({ mode = "dev", retry, script }: PrepareOptions = function hooks() { beforeAll(async () => { - const t0 = Date.now(); if (mode === "dev") { await initPort(context); await runDevServer(context); diff --git a/packages/tests/src/common.ts b/packages/tests/src/common.ts index 7064f1510..9bccf797f 100644 --- a/packages/tests/src/common.ts +++ b/packages/tests/src/common.ts @@ -105,7 +105,7 @@ export async function extractPnpmOnlyBuiltDependencies(projectDir: string, onlyB export async function createNxConfig(context: GlobalContext) { await writeFile( join(context.tmpdir, "nx.json"), - JSON.stringify( + `${JSON.stringify( { $schema: "https://nx.dev/reference/nx-json", tui: { @@ -148,7 +148,8 @@ export async function createNxConfig(context: GlobalContext) { }, undefined, 2, - ) + "\n", + )}\n`, + "utf-8", ); } diff --git a/packages/tests/src/index.ts b/packages/tests/src/index.ts index 989210bec..c16f9f989 100644 --- a/packages/tests/src/index.ts +++ b/packages/tests/src/index.ts @@ -137,8 +137,6 @@ async function execNx(context: GlobalContext, args: mri.Argv) { : ["generate-types", "build", "test", "lint:eslint", "lint:biome", "lint:oxlint", "typecheck", "knip"]; for (const step of steps) { - const t0 = Date.now(); - console.log(`[${new Date().toISOString()}] Running step: ${step}`); await exec(npmCli, [npmCli === "bun" ? "x" : "exec", "nx", "run-many", `--target=${step}`], { timeout: 35 * 60 * 1000, // 35min cwd: context.tmpdir, @@ -147,7 +145,6 @@ async function execNx(context: GlobalContext, args: mri.Argv) { NX_TUI: "false", }, }); - console.log(`[${new Date().toISOString()}] Step "${step}" completed in ${((Date.now() - t0) / 1000).toFixed(1)}s`); } }