From 3e7fb7d50d733bab8cf73e109cfc76cb5381e41c Mon Sep 17 00:00:00 2001 From: Firdous2307 <124298708+Firdous2307@users.noreply.github.com> Date: Sun, 13 Oct 2024 22:55:38 +0100 Subject: [PATCH 1/8] fix: Add keyboard support to CardHorizontalBarChart and InfoTooltip --- .../card-horizontal-bar-chart.tsx | 11 +++++++++++ components/shared/InfoTooltip.tsx | 10 +++++++--- 2 files changed, 18 insertions(+), 3 deletions(-) diff --git a/components/molecules/CardHorizontalBarChart/card-horizontal-bar-chart.tsx b/components/molecules/CardHorizontalBarChart/card-horizontal-bar-chart.tsx index 6db0d97dcc..61bc780279 100644 --- a/components/molecules/CardHorizontalBarChart/card-horizontal-bar-chart.tsx +++ b/components/molecules/CardHorizontalBarChart/card-horizontal-bar-chart.tsx @@ -35,6 +35,12 @@ const CardHorizontalBarChart = ({ languageList, withDescription }: CardHorizonta setDescriptText(descriptText); }; + const handleKeyDown = (event: React.KeyboardEvent, languageName: string) => { + if (event.key === 'Enter' || event.key === ' ') { + handleChangeDescriptText(languageName); + } + }; + useEffect(() => { if (sortedLangArray.length === 0) return; @@ -55,6 +61,11 @@ const CardHorizontalBarChart = ({ languageList, withDescription }: CardHorizonta
handleChangeDescriptText(languageName)} + onFocus={() => handleChangeDescriptText(languageName)} + onKeyDown={(e) => handleKeyDown(e, languageName)} + tabIndex={0} + role="button" + aria-label={`${languageName}: ${percentageUsed}%`} className="h-2 transition-all duration-500 ease-in-out" style={{ width: `${percentageUsed < 20 ? (percentageUsed / percentage) * 100 : percentageUsed}%`, diff --git a/components/shared/InfoTooltip.tsx b/components/shared/InfoTooltip.tsx index 5110afbe38..446b51e7d2 100644 --- a/components/shared/InfoTooltip.tsx +++ b/components/shared/InfoTooltip.tsx @@ -1,14 +1,18 @@ -import { useState } from "react"; +import { useState, useCallback } from "react"; import { TooltipTrigger, TooltipPortal, Tooltip, TooltipContent, TooltipArrow } from "@radix-ui/react-tooltip"; import { HiOutlineInformationCircle } from "react-icons/hi"; export default function InfoTooltip({ information, icon }: { information: string; icon?: React.ReactNode }) { const [open, setOpen] = useState(false); + const handleOpenChange = useCallback((isOpen: boolean) => { + setOpen(isOpen); + }, []); + return ( - + - From ce4ee7428212ac25f7cd50e27876312732623c46 Mon Sep 17 00:00:00 2001 From: Firdous2307 <124298708+Firdous2307@users.noreply.github.com> Date: Wed, 16 Oct 2024 21:15:04 +0100 Subject: [PATCH 2/8] refactor: Inline handleOpenChange, remove useCallback Co-authored-by: Nick Taylor --- components/shared/InfoTooltip.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/components/shared/InfoTooltip.tsx b/components/shared/InfoTooltip.tsx index 446b51e7d2..65d75e91fe 100644 --- a/components/shared/InfoTooltip.tsx +++ b/components/shared/InfoTooltip.tsx @@ -5,9 +5,9 @@ import { HiOutlineInformationCircle } from "react-icons/hi"; export default function InfoTooltip({ information, icon }: { information: string; icon?: React.ReactNode }) { const [open, setOpen] = useState(false); - const handleOpenChange = useCallback((isOpen: boolean) => { + const handleOpenChange = (isOpen: boolean) => { setOpen(isOpen); - }, []); + }; return ( From 78e551338c4deecc86d5585443225eb733c2bb95 Mon Sep 17 00:00:00 2001 From: Firdous2307 Date: Wed, 16 Oct 2024 20:42:17 +0000 Subject: [PATCH 3/8] feat: Enhance CardHorizontalBarChart component --- .../card-horizontal-bar-chart.tsx | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/components/molecules/CardHorizontalBarChart/card-horizontal-bar-chart.tsx b/components/molecules/CardHorizontalBarChart/card-horizontal-bar-chart.tsx index 61bc780279..fefeba7157 100644 --- a/components/molecules/CardHorizontalBarChart/card-horizontal-bar-chart.tsx +++ b/components/molecules/CardHorizontalBarChart/card-horizontal-bar-chart.tsx @@ -36,7 +36,7 @@ const CardHorizontalBarChart = ({ languageList, withDescription }: CardHorizonta }; const handleKeyDown = (event: React.KeyboardEvent, languageName: string) => { - if (event.key === 'Enter' || event.key === ' ') { + if (event.key === "Enter" || event.key === " ") { handleChangeDescriptText(languageName); } }; @@ -58,13 +58,11 @@ const CardHorizontalBarChart = ({ languageList, withDescription }: CardHorizonta {sortedLangArray.map(({ languageName, percentageUsed }, index) => { return ( index < 5 && ( -
handleChangeDescriptText(languageName)} onFocus={() => handleChangeDescriptText(languageName)} onKeyDown={(e) => handleKeyDown(e, languageName)} - tabIndex={0} - role="button" aria-label={`${languageName}: ${percentageUsed}%`} className="h-2 transition-all duration-500 ease-in-out" style={{ @@ -73,7 +71,9 @@ const CardHorizontalBarChart = ({ languageList, withDescription }: CardHorizonta ? (languageToColor[languageName].color as string) : NOTSUPPORTED, }} - /> + > + {`languageName ${percentageUsed}%`} + ) ); })} From ce3f24f9de541ea8137692a662a9155a096c4929 Mon Sep 17 00:00:00 2001 From: Firdous2307 <124298708+Firdous2307@users.noreply.github.com> Date: Sun, 20 Oct 2024 22:05:02 +0100 Subject: [PATCH 4/8] refactor: remove redundant aria-label Co-authored-by: Nick Taylor --- .../CardHorizontalBarChart/card-horizontal-bar-chart.tsx | 1 - 1 file changed, 1 deletion(-) diff --git a/components/molecules/CardHorizontalBarChart/card-horizontal-bar-chart.tsx b/components/molecules/CardHorizontalBarChart/card-horizontal-bar-chart.tsx index fefeba7157..ba0af4a848 100644 --- a/components/molecules/CardHorizontalBarChart/card-horizontal-bar-chart.tsx +++ b/components/molecules/CardHorizontalBarChart/card-horizontal-bar-chart.tsx @@ -63,7 +63,6 @@ const CardHorizontalBarChart = ({ languageList, withDescription }: CardHorizonta onMouseOver={() => handleChangeDescriptText(languageName)} onFocus={() => handleChangeDescriptText(languageName)} onKeyDown={(e) => handleKeyDown(e, languageName)} - aria-label={`${languageName}: ${percentageUsed}%`} className="h-2 transition-all duration-500 ease-in-out" style={{ width: `${percentageUsed < 20 ? (percentageUsed / percentage) * 100 : percentageUsed}%`, From 20e79e3d1a97dd719bb891cff250a13067e1b0c4 Mon Sep 17 00:00:00 2001 From: Firdous2307 <124298708+Firdous2307@users.noreply.github.com> Date: Sun, 20 Oct 2024 22:06:01 +0100 Subject: [PATCH 5/8] chore: removed useCallback Co-authored-by: Nick Taylor --- components/shared/InfoTooltip.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/shared/InfoTooltip.tsx b/components/shared/InfoTooltip.tsx index 65d75e91fe..137a1ef24e 100644 --- a/components/shared/InfoTooltip.tsx +++ b/components/shared/InfoTooltip.tsx @@ -1,4 +1,4 @@ -import { useState, useCallback } from "react"; +import { useState } from "react"; import { TooltipTrigger, TooltipPortal, Tooltip, TooltipContent, TooltipArrow } from "@radix-ui/react-tooltip"; import { HiOutlineInformationCircle } from "react-icons/hi"; From eb4be7227ac31b185810164912e3d5717859863a Mon Sep 17 00:00:00 2001 From: Firdous2307 Date: Mon, 28 Oct 2024 23:56:25 +0000 Subject: [PATCH 6/8] refactor: simplify component and improve accessibility --- .eslintrc.json | 8 +- .github/workflows/issue.yml | 4 +- .gitpod.yml | 9 + .../card-horizontal-bar-chart.tsx | 48 +- components/shared/InfoTooltip.tsx | 4 +- lib/utils/color.json | 2310 ++++++++--------- npm-shrinkwrap.json | 784 ++---- 7 files changed, 1383 insertions(+), 1784 deletions(-) create mode 100644 .gitpod.yml diff --git a/.eslintrc.json b/.eslintrc.json index f67715a617..4e1823f829 100644 --- a/.eslintrc.json +++ b/.eslintrc.json @@ -7,19 +7,19 @@ }, "rules": { "jsx-a11y/label-has-associated-control": "warn", - "jsx-a11y/anchor-has-content":"warn", - "jsx-a11y/role-supports-aria-props":"warn", + "jsx-a11y/anchor-has-content": "warn", + "jsx-a11y/role-supports-aria-props": "warn", "jsx-a11y/no-noninteractive-element-to-interactive-role": "warn", "jsx-a11y/click-events-have-key-events": "Warn", "jsx-a11y/no-static-element-interactions": "warn", "jsx-a11y/no-autofocus": "warn", - "jsx-a11y/img-redundant-alt":"warn", + "jsx-a11y/img-redundant-alt": "warn", "jsx-a11y/mouse-events-have-key-events": "warn", "jsx-a11y/iframe-has-title": "warn", "jsx-a11y/no-noninteractive-tabindex": "warn", "jsx-a11y/anchor-is-valid": "warn", "jsx-a11y/no-noninteractive-element-interactions": "warn", - "jsx-a11y/interactive-supports-focus": "warn", + "jsx-a11y/interactive-supports-focus": "warn", "jsx-quotes": "error", "unused-imports/no-unused-imports": "error", "import/order": [ diff --git a/.github/workflows/issue.yml b/.github/workflows/issue.yml index 64e31868fd..daf595683f 100644 --- a/.github/workflows/issue.yml +++ b/.github/workflows/issue.yml @@ -12,8 +12,8 @@ permissions: jobs: comment: permissions: - issues: write # for peter-evans/create-or-update-comment to create or update comment - pull-requests: write # for peter-evans/create-or-update-comment to create or update comment + issues: write # for peter-evans/create-or-update-comment to create or update comment + pull-requests: write # for peter-evans/create-or-update-comment to create or update comment name: Comment runs-on: ubuntu-latest steps: diff --git a/.gitpod.yml b/.gitpod.yml new file mode 100644 index 0000000000..29975b81bf --- /dev/null +++ b/.gitpod.yml @@ -0,0 +1,9 @@ +# This configuration file was automatically generated by Gitpod. +# Please adjust to your needs (see https://www.gitpod.io/docs/introduction/learn-gitpod/gitpod-yaml) +# and commit this file to your remote git repository to share the goodness with others. + +# Learn more from ready-to-use templates: https://www.gitpod.io/docs/introduction/getting-started/quickstart + +tasks: + - init: npm install && npm run build + command: npm run start diff --git a/components/molecules/CardHorizontalBarChart/card-horizontal-bar-chart.tsx b/components/molecules/CardHorizontalBarChart/card-horizontal-bar-chart.tsx index ba0af4a848..1c099f3f4f 100644 --- a/components/molecules/CardHorizontalBarChart/card-horizontal-bar-chart.tsx +++ b/components/molecules/CardHorizontalBarChart/card-horizontal-bar-chart.tsx @@ -1,4 +1,3 @@ -import { useEffect, useState } from "react"; import Text from "components/atoms/Typography/text"; import Tooltip from "components/atoms/Tooltip/tooltip"; import colors from "../../../lib/utils/color.json"; @@ -26,53 +25,25 @@ const languageToColor: AllSimpleColors = colors as AllSimpleColors; const CardHorizontalBarChart = ({ languageList, withDescription }: CardHorizontalBarChartProps): JSX.Element => { const sortedLangArray = languageList.sort((a, b) => b.percentageUsed - a.percentageUsed); - // used this state to calculate thte percentage of each language - const [percentage, setPercentage] = useState(0); - - const [descriptText, setDescriptText] = useState(sortedLangArray[0]?.languageName || "javascript"); - - const handleChangeDescriptText = (descriptText: string) => { - setDescriptText(descriptText); - }; - - const handleKeyDown = (event: React.KeyboardEvent, languageName: string) => { - if (event.key === "Enter" || event.key === " ") { - handleChangeDescriptText(languageName); - } - }; - - useEffect(() => { - if (sortedLangArray.length === 0) return; - - const totalSumOfFirstFivePercentage = sortedLangArray - .slice(0, 4) - .map((lang) => lang.percentageUsed) - .reduce((prev: number, next: number) => prev + next); // need some help fixing this type error, used any to bypass 🙏 - setPercentage(totalSumOfFirstFivePercentage); - }, [percentage, sortedLangArray]); return (
- {/* Progress Bar */}
{sortedLangArray.map(({ languageName, percentageUsed }, index) => { return ( index < 5 && ( - + {`${languageName} ${percentageUsed}%`} +
) ); })} @@ -82,13 +53,16 @@ const CardHorizontalBarChart = ({ languageList, withDescription }: CardHorizonta
- - {descriptText} + {/* Always display the most-used language (first item in sorted array) instead of interactive language selection */} + + + {sortedLangArray[0]?.languageName} +
)} diff --git a/components/shared/InfoTooltip.tsx b/components/shared/InfoTooltip.tsx index 137a1ef24e..930806cd55 100644 --- a/components/shared/InfoTooltip.tsx +++ b/components/shared/InfoTooltip.tsx @@ -12,9 +12,7 @@ export default function InfoTooltip({ information, icon }: { information: string return ( - + =12" } @@ -2677,14 +2671,10 @@ "version": "0.19.12", "resolved": "https://registry.npmjs.org/@esbuild/android-arm/-/android-arm-0.19.12.tgz", "integrity": "sha512-qg/Lj1mu3CdQlDEEiWrlC4eaPZ1KztwGJ9B6J+/6G+/4ewxJg7gqj8eVYWvao1bXrqGiW2rsBZFSX3q2lcW05w==", - "cpu": [ - "arm" - ], + "cpu": ["arm"], "dev": true, "optional": true, - "os": [ - "android" - ], + "os": ["android"], "engines": { "node": ">=12" } @@ -2693,14 +2683,10 @@ "version": "0.19.12", "resolved": "https://registry.npmjs.org/@esbuild/android-arm64/-/android-arm64-0.19.12.tgz", "integrity": "sha512-P0UVNGIienjZv3f5zq0DP3Nt2IE/3plFzuaS96vihvD0Hd6H/q4WXUGpCxD/E8YrSXfNyRPbpTq+T8ZQioSuPA==", - "cpu": [ - "arm64" - ], + "cpu": ["arm64"], "dev": true, "optional": true, - "os": [ - "android" - ], + "os": ["android"], "engines": { "node": ">=12" } @@ -2709,14 +2695,10 @@ "version": "0.19.12", "resolved": "https://registry.npmjs.org/@esbuild/android-x64/-/android-x64-0.19.12.tgz", "integrity": "sha512-3k7ZoUW6Q6YqhdhIaq/WZ7HwBpnFBlW905Fa4s4qWJyiNOgT1dOqDiVAQFwBH7gBRZr17gLrlFCRzF6jFh7Kew==", - "cpu": [ - "x64" - ], + "cpu": ["x64"], "dev": true, "optional": true, - "os": [ - "android" - ], + "os": ["android"], "engines": { "node": ">=12" } @@ -2725,14 +2707,10 @@ "version": "0.18.17", "resolved": "https://registry.npmjs.org/@esbuild/darwin-arm64/-/darwin-arm64-0.18.17.tgz", "integrity": "sha512-M9uJ9VSB1oli2BE/dJs3zVr9kcCBBsE883prage1NWz6pBS++1oNn/7soPNS3+1DGj0FrkSvnED4Bmlu1VAE9g==", - "cpu": [ - "arm64" - ], + "cpu": ["arm64"], "dev": true, "optional": true, - "os": [ - "darwin" - ], + "os": ["darwin"], "engines": { "node": ">=12" } @@ -2741,14 +2719,10 @@ "version": "0.19.12", "resolved": "https://registry.npmjs.org/@esbuild/darwin-x64/-/darwin-x64-0.19.12.tgz", "integrity": "sha512-hKoVkKzFiToTgn+41qGhsUJXFlIjxI/jSYeZf3ugemDYZldIXIxhvwN6erJGlX4t5h417iFuheZ7l+YVn05N3A==", - "cpu": [ - "x64" - ], + "cpu": ["x64"], "dev": true, "optional": true, - "os": [ - "darwin" - ], + "os": ["darwin"], "engines": { "node": ">=12" } @@ -2757,14 +2731,10 @@ "version": "0.19.12", "resolved": "https://registry.npmjs.org/@esbuild/freebsd-arm64/-/freebsd-arm64-0.19.12.tgz", "integrity": "sha512-4aRvFIXmwAcDBw9AueDQ2YnGmz5L6obe5kmPT8Vd+/+x/JMVKCgdcRwH6APrbpNXsPz+K653Qg8HB/oXvXVukA==", - "cpu": [ - "arm64" - ], + "cpu": ["arm64"], "dev": true, "optional": true, - "os": [ - "freebsd" - ], + "os": ["freebsd"], "engines": { "node": ">=12" } @@ -2773,14 +2743,10 @@ "version": "0.19.12", "resolved": "https://registry.npmjs.org/@esbuild/freebsd-x64/-/freebsd-x64-0.19.12.tgz", "integrity": "sha512-EYoXZ4d8xtBoVN7CEwWY2IN4ho76xjYXqSXMNccFSx2lgqOG/1TBPW0yPx1bJZk94qu3tX0fycJeeQsKovA8gg==", - "cpu": [ - "x64" - ], + "cpu": ["x64"], "dev": true, "optional": true, - "os": [ - "freebsd" - ], + "os": ["freebsd"], "engines": { "node": ">=12" } @@ -2789,14 +2755,10 @@ "version": "0.19.12", "resolved": "https://registry.npmjs.org/@esbuild/linux-arm/-/linux-arm-0.19.12.tgz", "integrity": "sha512-J5jPms//KhSNv+LO1S1TX1UWp1ucM6N6XuL6ITdKWElCu8wXP72l9MM0zDTzzeikVyqFE6U8YAV9/tFyj0ti+w==", - "cpu": [ - "arm" - ], + "cpu": ["arm"], "dev": true, "optional": true, - "os": [ - "linux" - ], + "os": ["linux"], "engines": { "node": ">=12" } @@ -2805,14 +2767,10 @@ "version": "0.19.12", "resolved": "https://registry.npmjs.org/@esbuild/linux-arm64/-/linux-arm64-0.19.12.tgz", "integrity": "sha512-EoTjyYyLuVPfdPLsGVVVC8a0p1BFFvtpQDB/YLEhaXyf/5bczaGeN15QkR+O4S5LeJ92Tqotve7i1jn35qwvdA==", - "cpu": [ - "arm64" - ], + "cpu": ["arm64"], "dev": true, "optional": true, - "os": [ - "linux" - ], + "os": ["linux"], "engines": { "node": ">=12" } @@ -2821,14 +2779,10 @@ "version": "0.19.12", "resolved": "https://registry.npmjs.org/@esbuild/linux-ia32/-/linux-ia32-0.19.12.tgz", "integrity": "sha512-Thsa42rrP1+UIGaWz47uydHSBOgTUnwBwNq59khgIwktK6x60Hivfbux9iNR0eHCHzOLjLMLfUMLCypBkZXMHA==", - "cpu": [ - "ia32" - ], + "cpu": ["ia32"], "dev": true, "optional": true, - "os": [ - "linux" - ], + "os": ["linux"], "engines": { "node": ">=12" } @@ -2837,14 +2791,10 @@ "version": "0.19.12", "resolved": "https://registry.npmjs.org/@esbuild/linux-loong64/-/linux-loong64-0.19.12.tgz", "integrity": "sha512-LiXdXA0s3IqRRjm6rV6XaWATScKAXjI4R4LoDlvO7+yQqFdlr1Bax62sRwkVvRIrwXxvtYEHHI4dm50jAXkuAA==", - "cpu": [ - "loong64" - ], + "cpu": ["loong64"], "dev": true, "optional": true, - "os": [ - "linux" - ], + "os": ["linux"], "engines": { "node": ">=12" } @@ -2853,14 +2803,10 @@ "version": "0.19.12", "resolved": "https://registry.npmjs.org/@esbuild/linux-mips64el/-/linux-mips64el-0.19.12.tgz", "integrity": "sha512-fEnAuj5VGTanfJ07ff0gOA6IPsvrVHLVb6Lyd1g2/ed67oU1eFzL0r9WL7ZzscD+/N6i3dWumGE1Un4f7Amf+w==", - "cpu": [ - "mips64el" - ], + "cpu": ["mips64el"], "dev": true, "optional": true, - "os": [ - "linux" - ], + "os": ["linux"], "engines": { "node": ">=12" } @@ -2869,14 +2815,10 @@ "version": "0.19.12", "resolved": "https://registry.npmjs.org/@esbuild/linux-ppc64/-/linux-ppc64-0.19.12.tgz", "integrity": "sha512-nYJA2/QPimDQOh1rKWedNOe3Gfc8PabU7HT3iXWtNUbRzXS9+vgB0Fjaqr//XNbd82mCxHzik2qotuI89cfixg==", - "cpu": [ - "ppc64" - ], + "cpu": ["ppc64"], "dev": true, "optional": true, - "os": [ - "linux" - ], + "os": ["linux"], "engines": { "node": ">=12" } @@ -2885,14 +2827,10 @@ "version": "0.19.12", "resolved": "https://registry.npmjs.org/@esbuild/linux-riscv64/-/linux-riscv64-0.19.12.tgz", "integrity": "sha512-2MueBrlPQCw5dVJJpQdUYgeqIzDQgw3QtiAHUC4RBz9FXPrskyyU3VI1hw7C0BSKB9OduwSJ79FTCqtGMWqJHg==", - "cpu": [ - "riscv64" - ], + "cpu": ["riscv64"], "dev": true, "optional": true, - "os": [ - "linux" - ], + "os": ["linux"], "engines": { "node": ">=12" } @@ -2901,14 +2839,10 @@ "version": "0.19.12", "resolved": "https://registry.npmjs.org/@esbuild/linux-s390x/-/linux-s390x-0.19.12.tgz", "integrity": "sha512-+Pil1Nv3Umes4m3AZKqA2anfhJiVmNCYkPchwFJNEJN5QxmTs1uzyy4TvmDrCRNT2ApwSari7ZIgrPeUx4UZDg==", - "cpu": [ - "s390x" - ], + "cpu": ["s390x"], "dev": true, "optional": true, - "os": [ - "linux" - ], + "os": ["linux"], "engines": { "node": ">=12" } @@ -2917,14 +2851,10 @@ "version": "0.19.12", "resolved": "https://registry.npmjs.org/@esbuild/linux-x64/-/linux-x64-0.19.12.tgz", "integrity": "sha512-B71g1QpxfwBvNrfyJdVDexenDIt1CiDN1TIXLbhOw0KhJzE78KIFGX6OJ9MrtC0oOqMWf+0xop4qEU8JrJTwCg==", - "cpu": [ - "x64" - ], + "cpu": ["x64"], "dev": true, "optional": true, - "os": [ - "linux" - ], + "os": ["linux"], "engines": { "node": ">=12" } @@ -2933,14 +2863,10 @@ "version": "0.19.12", "resolved": "https://registry.npmjs.org/@esbuild/netbsd-x64/-/netbsd-x64-0.19.12.tgz", "integrity": "sha512-3ltjQ7n1owJgFbuC61Oj++XhtzmymoCihNFgT84UAmJnxJfm4sYCiSLTXZtE00VWYpPMYc+ZQmB6xbSdVh0JWA==", - "cpu": [ - "x64" - ], + "cpu": ["x64"], "dev": true, "optional": true, - "os": [ - "netbsd" - ], + "os": ["netbsd"], "engines": { "node": ">=12" } @@ -2949,14 +2875,10 @@ "version": "0.19.12", "resolved": "https://registry.npmjs.org/@esbuild/openbsd-x64/-/openbsd-x64-0.19.12.tgz", "integrity": "sha512-RbrfTB9SWsr0kWmb9srfF+L933uMDdu9BIzdA7os2t0TXhCRjrQyCeOt6wVxr79CKD4c+p+YhCj31HBkYcXebw==", - "cpu": [ - "x64" - ], + "cpu": ["x64"], "dev": true, "optional": true, - "os": [ - "openbsd" - ], + "os": ["openbsd"], "engines": { "node": ">=12" } @@ -2965,14 +2887,10 @@ "version": "0.19.12", "resolved": "https://registry.npmjs.org/@esbuild/sunos-x64/-/sunos-x64-0.19.12.tgz", "integrity": "sha512-HKjJwRrW8uWtCQnQOz9qcU3mUZhTUQvi56Q8DPTLLB+DawoiQdjsYq+j+D3s9I8VFtDr+F9CjgXKKC4ss89IeA==", - "cpu": [ - "x64" - ], + "cpu": ["x64"], "dev": true, "optional": true, - "os": [ - "sunos" - ], + "os": ["sunos"], "engines": { "node": ">=12" } @@ -2981,14 +2899,10 @@ "version": "0.19.12", "resolved": "https://registry.npmjs.org/@esbuild/win32-arm64/-/win32-arm64-0.19.12.tgz", "integrity": "sha512-URgtR1dJnmGvX864pn1B2YUYNzjmXkuJOIqG2HdU62MVS4EHpU2946OZoTMnRUHklGtJdJZ33QfzdjGACXhn1A==", - "cpu": [ - "arm64" - ], + "cpu": ["arm64"], "dev": true, "optional": true, - "os": [ - "win32" - ], + "os": ["win32"], "engines": { "node": ">=12" } @@ -2997,14 +2911,10 @@ "version": "0.19.12", "resolved": "https://registry.npmjs.org/@esbuild/win32-ia32/-/win32-ia32-0.19.12.tgz", "integrity": "sha512-+ZOE6pUkMOJfmxmBZElNOx72NKpIa/HFOMGzu8fqzQJ5kgf6aTGrcJaFsNiVMH4JKpMipyK+7k0n2UXN7a8YKQ==", - "cpu": [ - "ia32" - ], + "cpu": ["ia32"], "dev": true, "optional": true, - "os": [ - "win32" - ], + "os": ["win32"], "engines": { "node": ">=12" } @@ -3013,14 +2923,10 @@ "version": "0.19.12", "resolved": "https://registry.npmjs.org/@esbuild/win32-x64/-/win32-x64-0.19.12.tgz", "integrity": "sha512-T1QyPSDCyMXaO3pzBkF96E8xMkiRYbUEZADd29SyPGabqxMViNoii+NcK7eWJAEoU6RZyEm5lVSIjTmcdoB9HA==", - "cpu": [ - "x64" - ], + "cpu": ["x64"], "dev": true, "optional": true, - "os": [ - "win32" - ], + "os": ["win32"], "engines": { "node": ">=12" } @@ -3527,13 +3433,9 @@ "version": "0.20.2", "resolved": "https://registry.npmjs.org/@esbuild/aix-ppc64/-/aix-ppc64-0.20.2.tgz", "integrity": "sha512-D+EBOJHXdNZcLJRBkhENNG8Wji2kgc9AZ9KiPr1JuZjsNtyHzrsfLRrY0tk2H2aoFu6RANO1y1iPPUCDYWkb5g==", - "cpu": [ - "ppc64" - ], + "cpu": ["ppc64"], "optional": true, - "os": [ - "aix" - ], + "os": ["aix"], "engines": { "node": ">=12" } @@ -3542,13 +3444,9 @@ "version": "0.20.2", "resolved": "https://registry.npmjs.org/@esbuild/android-arm/-/android-arm-0.20.2.tgz", "integrity": "sha512-t98Ra6pw2VaDhqNWO2Oph2LXbz/EJcnLmKLGBJwEwXX/JAN83Fym1rU8l0JUWK6HkIbWONCSSatf4sf2NBRx/w==", - "cpu": [ - "arm" - ], + "cpu": ["arm"], "optional": true, - "os": [ - "android" - ], + "os": ["android"], "engines": { "node": ">=12" } @@ -3557,13 +3455,9 @@ "version": "0.20.2", "resolved": "https://registry.npmjs.org/@esbuild/android-arm64/-/android-arm64-0.20.2.tgz", "integrity": "sha512-mRzjLacRtl/tWU0SvD8lUEwb61yP9cqQo6noDZP/O8VkwafSYwZ4yWy24kan8jE/IMERpYncRt2dw438LP3Xmg==", - "cpu": [ - "arm64" - ], + "cpu": ["arm64"], "optional": true, - "os": [ - "android" - ], + "os": ["android"], "engines": { "node": ">=12" } @@ -3572,13 +3466,9 @@ "version": "0.20.2", "resolved": "https://registry.npmjs.org/@esbuild/android-x64/-/android-x64-0.20.2.tgz", "integrity": "sha512-btzExgV+/lMGDDa194CcUQm53ncxzeBrWJcncOBxuC6ndBkKxnHdFJn86mCIgTELsooUmwUm9FkhSp5HYu00Rg==", - "cpu": [ - "x64" - ], + "cpu": ["x64"], "optional": true, - "os": [ - "android" - ], + "os": ["android"], "engines": { "node": ">=12" } @@ -3587,13 +3477,9 @@ "version": "0.20.2", "resolved": "https://registry.npmjs.org/@esbuild/darwin-arm64/-/darwin-arm64-0.20.2.tgz", "integrity": "sha512-4J6IRT+10J3aJH3l1yzEg9y3wkTDgDk7TSDFX+wKFiWjqWp/iCfLIYzGyasx9l0SAFPT1HwSCR+0w/h1ES/MjA==", - "cpu": [ - "arm64" - ], + "cpu": ["arm64"], "optional": true, - "os": [ - "darwin" - ], + "os": ["darwin"], "engines": { "node": ">=12" } @@ -3602,13 +3488,9 @@ "version": "0.20.2", "resolved": "https://registry.npmjs.org/@esbuild/darwin-x64/-/darwin-x64-0.20.2.tgz", "integrity": "sha512-tBcXp9KNphnNH0dfhv8KYkZhjc+H3XBkF5DKtswJblV7KlT9EI2+jeA8DgBjp908WEuYll6pF+UStUCfEpdysA==", - "cpu": [ - "x64" - ], + "cpu": ["x64"], "optional": true, - "os": [ - "darwin" - ], + "os": ["darwin"], "engines": { "node": ">=12" } @@ -3617,13 +3499,9 @@ "version": "0.20.2", "resolved": "https://registry.npmjs.org/@esbuild/freebsd-arm64/-/freebsd-arm64-0.20.2.tgz", "integrity": "sha512-d3qI41G4SuLiCGCFGUrKsSeTXyWG6yem1KcGZVS+3FYlYhtNoNgYrWcvkOoaqMhwXSMrZRl69ArHsGJ9mYdbbw==", - "cpu": [ - "arm64" - ], + "cpu": ["arm64"], "optional": true, - "os": [ - "freebsd" - ], + "os": ["freebsd"], "engines": { "node": ">=12" } @@ -3632,13 +3510,9 @@ "version": "0.20.2", "resolved": "https://registry.npmjs.org/@esbuild/freebsd-x64/-/freebsd-x64-0.20.2.tgz", "integrity": "sha512-d+DipyvHRuqEeM5zDivKV1KuXn9WeRX6vqSqIDgwIfPQtwMP4jaDsQsDncjTDDsExT4lR/91OLjRo8bmC1e+Cw==", - "cpu": [ - "x64" - ], + "cpu": ["x64"], "optional": true, - "os": [ - "freebsd" - ], + "os": ["freebsd"], "engines": { "node": ">=12" } @@ -3647,13 +3521,9 @@ "version": "0.20.2", "resolved": "https://registry.npmjs.org/@esbuild/linux-arm/-/linux-arm-0.20.2.tgz", "integrity": "sha512-VhLPeR8HTMPccbuWWcEUD1Az68TqaTYyj6nfE4QByZIQEQVWBB8vup8PpR7y1QHL3CpcF6xd5WVBU/+SBEvGTg==", - "cpu": [ - "arm" - ], + "cpu": ["arm"], "optional": true, - "os": [ - "linux" - ], + "os": ["linux"], "engines": { "node": ">=12" } @@ -3662,13 +3532,9 @@ "version": "0.20.2", "resolved": "https://registry.npmjs.org/@esbuild/linux-arm64/-/linux-arm64-0.20.2.tgz", "integrity": "sha512-9pb6rBjGvTFNira2FLIWqDk/uaf42sSyLE8j1rnUpuzsODBq7FvpwHYZxQ/It/8b+QOS1RYfqgGFNLRI+qlq2A==", - "cpu": [ - "arm64" - ], + "cpu": ["arm64"], "optional": true, - "os": [ - "linux" - ], + "os": ["linux"], "engines": { "node": ">=12" } @@ -3677,13 +3543,9 @@ "version": "0.20.2", "resolved": "https://registry.npmjs.org/@esbuild/linux-ia32/-/linux-ia32-0.20.2.tgz", "integrity": "sha512-o10utieEkNPFDZFQm9CoP7Tvb33UutoJqg3qKf1PWVeeJhJw0Q347PxMvBgVVFgouYLGIhFYG0UGdBumROyiig==", - "cpu": [ - "ia32" - ], + "cpu": ["ia32"], "optional": true, - "os": [ - "linux" - ], + "os": ["linux"], "engines": { "node": ">=12" } @@ -3692,13 +3554,9 @@ "version": "0.20.2", "resolved": "https://registry.npmjs.org/@esbuild/linux-loong64/-/linux-loong64-0.20.2.tgz", "integrity": "sha512-PR7sp6R/UC4CFVomVINKJ80pMFlfDfMQMYynX7t1tNTeivQ6XdX5r2XovMmha/VjR1YN/HgHWsVcTRIMkymrgQ==", - "cpu": [ - "loong64" - ], + "cpu": ["loong64"], "optional": true, - "os": [ - "linux" - ], + "os": ["linux"], "engines": { "node": ">=12" } @@ -3707,13 +3565,9 @@ "version": "0.20.2", "resolved": "https://registry.npmjs.org/@esbuild/linux-mips64el/-/linux-mips64el-0.20.2.tgz", "integrity": "sha512-4BlTqeutE/KnOiTG5Y6Sb/Hw6hsBOZapOVF6njAESHInhlQAghVVZL1ZpIctBOoTFbQyGW+LsVYZ8lSSB3wkjA==", - "cpu": [ - "mips64el" - ], + "cpu": ["mips64el"], "optional": true, - "os": [ - "linux" - ], + "os": ["linux"], "engines": { "node": ">=12" } @@ -3722,13 +3576,9 @@ "version": "0.20.2", "resolved": "https://registry.npmjs.org/@esbuild/linux-ppc64/-/linux-ppc64-0.20.2.tgz", "integrity": "sha512-rD3KsaDprDcfajSKdn25ooz5J5/fWBylaaXkuotBDGnMnDP1Uv5DLAN/45qfnf3JDYyJv/ytGHQaziHUdyzaAg==", - "cpu": [ - "ppc64" - ], + "cpu": ["ppc64"], "optional": true, - "os": [ - "linux" - ], + "os": ["linux"], "engines": { "node": ">=12" } @@ -3737,13 +3587,9 @@ "version": "0.20.2", "resolved": "https://registry.npmjs.org/@esbuild/linux-riscv64/-/linux-riscv64-0.20.2.tgz", "integrity": "sha512-snwmBKacKmwTMmhLlz/3aH1Q9T8v45bKYGE3j26TsaOVtjIag4wLfWSiZykXzXuE1kbCE+zJRmwp+ZbIHinnVg==", - "cpu": [ - "riscv64" - ], + "cpu": ["riscv64"], "optional": true, - "os": [ - "linux" - ], + "os": ["linux"], "engines": { "node": ">=12" } @@ -3752,13 +3598,9 @@ "version": "0.20.2", "resolved": "https://registry.npmjs.org/@esbuild/linux-s390x/-/linux-s390x-0.20.2.tgz", "integrity": "sha512-wcWISOobRWNm3cezm5HOZcYz1sKoHLd8VL1dl309DiixxVFoFe/o8HnwuIwn6sXre88Nwj+VwZUvJf4AFxkyrQ==", - "cpu": [ - "s390x" - ], + "cpu": ["s390x"], "optional": true, - "os": [ - "linux" - ], + "os": ["linux"], "engines": { "node": ">=12" } @@ -3767,13 +3609,9 @@ "version": "0.20.2", "resolved": "https://registry.npmjs.org/@esbuild/linux-x64/-/linux-x64-0.20.2.tgz", "integrity": "sha512-1MdwI6OOTsfQfek8sLwgyjOXAu+wKhLEoaOLTjbijk6E2WONYpH9ZU2mNtR+lZ2B4uwr+usqGuVfFT9tMtGvGw==", - "cpu": [ - "x64" - ], + "cpu": ["x64"], "optional": true, - "os": [ - "linux" - ], + "os": ["linux"], "engines": { "node": ">=12" } @@ -3782,13 +3620,9 @@ "version": "0.20.2", "resolved": "https://registry.npmjs.org/@esbuild/netbsd-x64/-/netbsd-x64-0.20.2.tgz", "integrity": "sha512-K8/DhBxcVQkzYc43yJXDSyjlFeHQJBiowJ0uVL6Tor3jGQfSGHNNJcWxNbOI8v5k82prYqzPuwkzHt3J1T1iZQ==", - "cpu": [ - "x64" - ], + "cpu": ["x64"], "optional": true, - "os": [ - "netbsd" - ], + "os": ["netbsd"], "engines": { "node": ">=12" } @@ -3797,13 +3631,9 @@ "version": "0.20.2", "resolved": "https://registry.npmjs.org/@esbuild/openbsd-x64/-/openbsd-x64-0.20.2.tgz", "integrity": "sha512-eMpKlV0SThJmmJgiVyN9jTPJ2VBPquf6Kt/nAoo6DgHAoN57K15ZghiHaMvqjCye/uU4X5u3YSMgVBI1h3vKrQ==", - "cpu": [ - "x64" - ], + "cpu": ["x64"], "optional": true, - "os": [ - "openbsd" - ], + "os": ["openbsd"], "engines": { "node": ">=12" } @@ -3812,13 +3642,9 @@ "version": "0.20.2", "resolved": "https://registry.npmjs.org/@esbuild/sunos-x64/-/sunos-x64-0.20.2.tgz", "integrity": "sha512-2UyFtRC6cXLyejf/YEld4Hajo7UHILetzE1vsRcGL3earZEW77JxrFjH4Ez2qaTiEfMgAXxfAZCm1fvM/G/o8w==", - "cpu": [ - "x64" - ], + "cpu": ["x64"], "optional": true, - "os": [ - "sunos" - ], + "os": ["sunos"], "engines": { "node": ">=12" } @@ -3827,13 +3653,9 @@ "version": "0.20.2", "resolved": "https://registry.npmjs.org/@esbuild/win32-arm64/-/win32-arm64-0.20.2.tgz", "integrity": "sha512-GRibxoawM9ZCnDxnP3usoUDO9vUkpAxIIZ6GQI+IlVmr5kP3zUq+l17xELTHMWTWzjxa2guPNyrpq1GWmPvcGQ==", - "cpu": [ - "arm64" - ], + "cpu": ["arm64"], "optional": true, - "os": [ - "win32" - ], + "os": ["win32"], "engines": { "node": ">=12" } @@ -3842,13 +3664,9 @@ "version": "0.20.2", "resolved": "https://registry.npmjs.org/@esbuild/win32-ia32/-/win32-ia32-0.20.2.tgz", "integrity": "sha512-HfLOfn9YWmkSKRQqovpnITazdtquEW8/SoHW7pWpuEeguaZI4QnCRW6b+oZTztdBnZOS2hqJ6im/D5cPzBTTlQ==", - "cpu": [ - "ia32" - ], + "cpu": ["ia32"], "optional": true, - "os": [ - "win32" - ], + "os": ["win32"], "engines": { "node": ">=12" } @@ -3857,13 +3675,9 @@ "version": "0.20.2", "resolved": "https://registry.npmjs.org/@esbuild/win32-x64/-/win32-x64-0.20.2.tgz", "integrity": "sha512-N49X4lJX27+l9jbLKSqZ6bKNjzQvHaT8IIFUy+YIqmXQdjYCToGWwOItDrfby14c78aDd5NHQl29xingXfCdLQ==", - "cpu": [ - "x64" - ], + "cpu": ["x64"], "optional": true, - "os": [ - "win32" - ], + "os": ["win32"], "engines": { "node": ">=12" } @@ -4286,13 +4100,9 @@ "version": "14.1.4", "resolved": "https://registry.npmjs.org/@next/swc-darwin-arm64/-/swc-darwin-arm64-14.1.4.tgz", "integrity": "sha512-ubmUkbmW65nIAOmoxT1IROZdmmJMmdYvXIe8211send9ZYJu+SqxSnJM4TrPj9wmL6g9Atvj0S/2cFmMSS99jg==", - "cpu": [ - "arm64" - ], + "cpu": ["arm64"], "optional": true, - "os": [ - "darwin" - ], + "os": ["darwin"], "engines": { "node": ">= 10" } @@ -4301,13 +4111,9 @@ "version": "14.1.4", "resolved": "https://registry.npmjs.org/@next/swc-darwin-x64/-/swc-darwin-x64-14.1.4.tgz", "integrity": "sha512-b0Xo1ELj3u7IkZWAKcJPJEhBop117U78l70nfoQGo4xUSvv0PJSTaV4U9xQBLvZlnjsYkc8RwQN1HoH/oQmLlQ==", - "cpu": [ - "x64" - ], + "cpu": ["x64"], "optional": true, - "os": [ - "darwin" - ], + "os": ["darwin"], "engines": { "node": ">= 10" } @@ -4316,13 +4122,9 @@ "version": "14.1.4", "resolved": "https://registry.npmjs.org/@next/swc-linux-arm64-gnu/-/swc-linux-arm64-gnu-14.1.4.tgz", "integrity": "sha512-457G0hcLrdYA/u1O2XkRMsDKId5VKe3uKPvrKVOyuARa6nXrdhJOOYU9hkKKyQTMru1B8qEP78IAhf/1XnVqKA==", - "cpu": [ - "arm64" - ], + "cpu": ["arm64"], "optional": true, - "os": [ - "linux" - ], + "os": ["linux"], "engines": { "node": ">= 10" } @@ -4331,13 +4133,9 @@ "version": "14.1.4", "resolved": "https://registry.npmjs.org/@next/swc-linux-arm64-musl/-/swc-linux-arm64-musl-14.1.4.tgz", "integrity": "sha512-l/kMG+z6MB+fKA9KdtyprkTQ1ihlJcBh66cf0HvqGP+rXBbOXX0dpJatjZbHeunvEHoBBS69GYQG5ry78JMy3g==", - "cpu": [ - "arm64" - ], + "cpu": ["arm64"], "optional": true, - "os": [ - "linux" - ], + "os": ["linux"], "engines": { "node": ">= 10" } @@ -4346,13 +4144,9 @@ "version": "14.1.4", "resolved": "https://registry.npmjs.org/@next/swc-linux-x64-gnu/-/swc-linux-x64-gnu-14.1.4.tgz", "integrity": "sha512-BapIFZ3ZRnvQ1uWbmqEGJuPT9cgLwvKtxhK/L2t4QYO7l+/DxXuIGjvp1x8rvfa/x1FFSsipERZK70pewbtJtw==", - "cpu": [ - "x64" - ], + "cpu": ["x64"], "optional": true, - "os": [ - "linux" - ], + "os": ["linux"], "engines": { "node": ">= 10" } @@ -4361,13 +4155,9 @@ "version": "14.1.4", "resolved": "https://registry.npmjs.org/@next/swc-linux-x64-musl/-/swc-linux-x64-musl-14.1.4.tgz", "integrity": "sha512-mqVxTwk4XuBl49qn2A5UmzFImoL1iLm0KQQwtdRJRKl21ylQwwGCxJtIYo2rbfkZHoSKlh/YgztY0qH3wG1xIg==", - "cpu": [ - "x64" - ], + "cpu": ["x64"], "optional": true, - "os": [ - "linux" - ], + "os": ["linux"], "engines": { "node": ">= 10" } @@ -4376,13 +4166,9 @@ "version": "14.1.4", "resolved": "https://registry.npmjs.org/@next/swc-win32-arm64-msvc/-/swc-win32-arm64-msvc-14.1.4.tgz", "integrity": "sha512-xzxF4ErcumXjO2Pvg/wVGrtr9QQJLk3IyQX1ddAC/fi6/5jZCZ9xpuL9Tzc4KPWMFq8GGWFVDMshZOdHGdkvag==", - "cpu": [ - "arm64" - ], + "cpu": ["arm64"], "optional": true, - "os": [ - "win32" - ], + "os": ["win32"], "engines": { "node": ">= 10" } @@ -4391,13 +4177,9 @@ "version": "14.1.4", "resolved": "https://registry.npmjs.org/@next/swc-win32-ia32-msvc/-/swc-win32-ia32-msvc-14.1.4.tgz", "integrity": "sha512-WZiz8OdbkpRw6/IU/lredZWKKZopUMhcI2F+XiMAcPja0uZYdMTZQRoQ0WZcvinn9xZAidimE7tN9W5v9Yyfyw==", - "cpu": [ - "ia32" - ], + "cpu": ["ia32"], "optional": true, - "os": [ - "win32" - ], + "os": ["win32"], "engines": { "node": ">= 10" } @@ -4406,13 +4188,9 @@ "version": "14.1.4", "resolved": "https://registry.npmjs.org/@next/swc-win32-x64-msvc/-/swc-win32-x64-msvc-14.1.4.tgz", "integrity": "sha512-4Rto21sPfw555sZ/XNLqfxDUNeLhNYGO2dlPqsnuCg8N8a2a9u1ltqBOPQ4vj1Gf7eJC0W2hHG2eYUHuiXgY2w==", - "cpu": [ - "x64" - ], + "cpu": ["x64"], "optional": true, - "os": [ - "win32" - ], + "os": ["win32"], "engines": { "node": ">= 10" } @@ -9632,170 +9410,118 @@ "version": "4.9.6", "resolved": "https://registry.npmjs.org/@rollup/rollup-android-arm-eabi/-/rollup-android-arm-eabi-4.9.6.tgz", "integrity": "sha512-MVNXSSYN6QXOulbHpLMKYi60ppyO13W9my1qogeiAqtjb2yR4LSmfU2+POvDkLzhjYLXz9Rf9+9a3zFHW1Lecg==", - "cpu": [ - "arm" - ], + "cpu": ["arm"], "dev": true, "optional": true, - "os": [ - "android" - ] + "os": ["android"] }, "node_modules/@rollup/rollup-android-arm64": { "version": "4.9.6", "resolved": "https://registry.npmjs.org/@rollup/rollup-android-arm64/-/rollup-android-arm64-4.9.6.tgz", "integrity": "sha512-T14aNLpqJ5wzKNf5jEDpv5zgyIqcpn1MlwCrUXLrwoADr2RkWA0vOWP4XxbO9aiO3dvMCQICZdKeDrFl7UMClw==", - "cpu": [ - "arm64" - ], + "cpu": ["arm64"], "dev": true, "optional": true, - "os": [ - "android" - ] + "os": ["android"] }, "node_modules/@rollup/rollup-darwin-arm64": { "version": "4.9.6", "resolved": "https://registry.npmjs.org/@rollup/rollup-darwin-arm64/-/rollup-darwin-arm64-4.9.6.tgz", "integrity": "sha512-CqNNAyhRkTbo8VVZ5R85X73H3R5NX9ONnKbXuHisGWC0qRbTTxnF1U4V9NafzJbgGM0sHZpdO83pLPzq8uOZFw==", - "cpu": [ - "arm64" - ], + "cpu": ["arm64"], "dev": true, "optional": true, - "os": [ - "darwin" - ] + "os": ["darwin"] }, "node_modules/@rollup/rollup-darwin-x64": { "version": "4.9.6", "resolved": "https://registry.npmjs.org/@rollup/rollup-darwin-x64/-/rollup-darwin-x64-4.9.6.tgz", "integrity": "sha512-zRDtdJuRvA1dc9Mp6BWYqAsU5oeLixdfUvkTHuiYOHwqYuQ4YgSmi6+/lPvSsqc/I0Omw3DdICx4Tfacdzmhog==", - "cpu": [ - "x64" - ], + "cpu": ["x64"], "dev": true, "optional": true, - "os": [ - "darwin" - ] + "os": ["darwin"] }, "node_modules/@rollup/rollup-linux-arm-gnueabihf": { "version": "4.9.6", "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm-gnueabihf/-/rollup-linux-arm-gnueabihf-4.9.6.tgz", "integrity": "sha512-oNk8YXDDnNyG4qlNb6is1ojTOGL/tRhbbKeE/YuccItzerEZT68Z9gHrY3ROh7axDc974+zYAPxK5SH0j/G+QQ==", - "cpu": [ - "arm" - ], + "cpu": ["arm"], "dev": true, "optional": true, - "os": [ - "linux" - ] + "os": ["linux"] }, "node_modules/@rollup/rollup-linux-arm64-gnu": { "version": "4.9.6", "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm64-gnu/-/rollup-linux-arm64-gnu-4.9.6.tgz", "integrity": "sha512-Z3O60yxPtuCYobrtzjo0wlmvDdx2qZfeAWTyfOjEDqd08kthDKexLpV97KfAeUXPosENKd8uyJMRDfFMxcYkDQ==", - "cpu": [ - "arm64" - ], + "cpu": ["arm64"], "dev": true, "optional": true, - "os": [ - "linux" - ] + "os": ["linux"] }, "node_modules/@rollup/rollup-linux-arm64-musl": { "version": "4.9.6", "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm64-musl/-/rollup-linux-arm64-musl-4.9.6.tgz", "integrity": "sha512-gpiG0qQJNdYEVad+1iAsGAbgAnZ8j07FapmnIAQgODKcOTjLEWM9sRb+MbQyVsYCnA0Im6M6QIq6ax7liws6eQ==", - "cpu": [ - "arm64" - ], + "cpu": ["arm64"], "dev": true, "optional": true, - "os": [ - "linux" - ] + "os": ["linux"] }, "node_modules/@rollup/rollup-linux-riscv64-gnu": { "version": "4.9.6", "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-riscv64-gnu/-/rollup-linux-riscv64-gnu-4.9.6.tgz", "integrity": "sha512-+uCOcvVmFUYvVDr27aiyun9WgZk0tXe7ThuzoUTAukZJOwS5MrGbmSlNOhx1j80GdpqbOty05XqSl5w4dQvcOA==", - "cpu": [ - "riscv64" - ], + "cpu": ["riscv64"], "dev": true, "optional": true, - "os": [ - "linux" - ] + "os": ["linux"] }, "node_modules/@rollup/rollup-linux-x64-gnu": { "version": "4.9.6", "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-x64-gnu/-/rollup-linux-x64-gnu-4.9.6.tgz", "integrity": "sha512-HUNqM32dGzfBKuaDUBqFB7tP6VMN74eLZ33Q9Y1TBqRDn+qDonkAUyKWwF9BR9unV7QUzffLnz9GrnKvMqC/fw==", - "cpu": [ - "x64" - ], + "cpu": ["x64"], "dev": true, "optional": true, - "os": [ - "linux" - ] + "os": ["linux"] }, "node_modules/@rollup/rollup-linux-x64-musl": { "version": "4.9.6", "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-x64-musl/-/rollup-linux-x64-musl-4.9.6.tgz", "integrity": "sha512-ch7M+9Tr5R4FK40FHQk8VnML0Szi2KRujUgHXd/HjuH9ifH72GUmw6lStZBo3c3GB82vHa0ZoUfjfcM7JiiMrQ==", - "cpu": [ - "x64" - ], + "cpu": ["x64"], "dev": true, "optional": true, - "os": [ - "linux" - ] + "os": ["linux"] }, "node_modules/@rollup/rollup-win32-arm64-msvc": { "version": "4.9.6", "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-arm64-msvc/-/rollup-win32-arm64-msvc-4.9.6.tgz", "integrity": "sha512-VD6qnR99dhmTQ1mJhIzXsRcTBvTjbfbGGwKAHcu+52cVl15AC/kplkhxzW/uT0Xl62Y/meBKDZvoJSJN+vTeGA==", - "cpu": [ - "arm64" - ], + "cpu": ["arm64"], "dev": true, "optional": true, - "os": [ - "win32" - ] + "os": ["win32"] }, "node_modules/@rollup/rollup-win32-ia32-msvc": { "version": "4.9.6", "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-ia32-msvc/-/rollup-win32-ia32-msvc-4.9.6.tgz", "integrity": "sha512-J9AFDq/xiRI58eR2NIDfyVmTYGyIZmRcvcAoJ48oDld/NTR8wyiPUu2X/v1navJ+N/FGg68LEbX3Ejd6l8B7MQ==", - "cpu": [ - "ia32" - ], + "cpu": ["ia32"], "dev": true, "optional": true, - "os": [ - "win32" - ] + "os": ["win32"] }, "node_modules/@rollup/rollup-win32-x64-msvc": { "version": "4.9.6", "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-x64-msvc/-/rollup-win32-x64-msvc-4.9.6.tgz", "integrity": "sha512-jqzNLhNDvIZOrt69Ce4UjGRpXJBzhUBzawMwnaDAwyHriki3XollsewxWzOzz+4yOFDkuJHtTsZFwMxhYJWmLQ==", - "cpu": [ - "x64" - ], + "cpu": ["x64"], "dev": true, "optional": true, - "os": [ - "win32" - ] + "os": ["win32"] }, "node_modules/@rushstack/eslint-patch": { "version": "1.6.0", @@ -13430,11 +13156,6 @@ "url": "https://opencollective.com/storybook" } }, - "node_modules/@stripe/stripe-js": { - "version": "1.46.0", - "resolved": "https://registry.npmjs.org/@stripe/stripe-js/-/stripe-js-1.46.0.tgz", - "integrity": "sha512-dkm0zCEoRLu5rTnsIgwDf/QG2DKcalOT2dk1IVgMySOHWTChLyOvQwMYhEduGgLvyYWTwNhAUV4WOLPQvjwLwA==" - }, "node_modules/@supabase/auth-helpers-nextjs": { "version": "0.7.2", "resolved": "https://registry.npmjs.org/@supabase/auth-helpers-nextjs/-/auth-helpers-nextjs-0.7.2.tgz", @@ -13586,14 +13307,10 @@ "version": "1.3.100", "resolved": "https://registry.npmjs.org/@swc/core-darwin-arm64/-/core-darwin-arm64-1.3.100.tgz", "integrity": "sha512-XVWFsKe6ei+SsDbwmsuRkYck1SXRpO60Hioa4hoLwR8fxbA9eVp6enZtMxzVVMBi8ej5seZ4HZQeAWepbukiBw==", - "cpu": [ - "arm64" - ], + "cpu": ["arm64"], "dev": true, "optional": true, - "os": [ - "darwin" - ], + "os": ["darwin"], "engines": { "node": ">=10" } @@ -15661,9 +15378,7 @@ "resolved": "https://registry.npmjs.org/ansi-html-community/-/ansi-html-community-0.0.8.tgz", "integrity": "sha512-1APHAyr3+PCamwNw3bXCPp4HFLONZt/yIH0sZp0/469KWNTEy+qN5jQ3GVX6DMZ1UXAi34yVwtTeaG/HpBuuzw==", "dev": true, - "engines": [ - "node >= 0.8.0" - ], + "engines": ["node >= 0.8.0"], "bin": { "ansi-html": "bin/ansi-html" } @@ -16596,6 +16311,7 @@ "version": "1.0.7", "resolved": "https://registry.npmjs.org/call-bind/-/call-bind-1.0.7.tgz", "integrity": "sha512-GHTSNSYICQ7scH7sZ+M2rFopRoLh8t2bLSW6BbgrtLsahOIB5iyAVJf9GjWK3cYTDaMj4XdBpM1cA6pIS0Kv2w==", + "dev": true, "dependencies": { "es-define-property": "^1.0.0", "es-errors": "^1.3.0", @@ -17426,9 +17142,7 @@ "resolved": "https://registry.npmjs.org/concat-stream/-/concat-stream-1.6.2.tgz", "integrity": "sha512-27HBghJxjiZtIk3Ycvn/4kbJk/1uZuJFfuPEns6LaEvpvG1f0hTea8lilrouyo9mVc2GWdcEZ8OLoGmSADlrCw==", "dev": true, - "engines": [ - "node >= 0.8" - ], + "engines": ["node >= 0.8"], "dependencies": { "buffer-from": "^1.0.0", "inherits": "^2.0.3", @@ -18293,6 +18007,7 @@ "version": "1.1.4", "resolved": "https://registry.npmjs.org/define-data-property/-/define-data-property-1.1.4.tgz", "integrity": "sha512-rBMvIzlpA8v6E+SJZoo++HAYqsLrkg7MSfIinMPFhmkorw7X+dOXVJQs+QT69zGkzMyfDnIMN2Wid1+NbL3T+A==", + "dev": true, "dependencies": { "es-define-property": "^1.0.0", "es-errors": "^1.3.0", @@ -19040,6 +18755,7 @@ "version": "1.0.0", "resolved": "https://registry.npmjs.org/es-define-property/-/es-define-property-1.0.0.tgz", "integrity": "sha512-jxayLKShrEqqzJ0eumQbVhTYQM27CfT1T35+gCgDFoL82JLsXqTJ76zv6A0YLOgEnLUMvLzsDsGIrl8NFpT2gQ==", + "dev": true, "dependencies": { "get-intrinsic": "^1.2.4" }, @@ -19051,6 +18767,7 @@ "version": "1.3.0", "resolved": "https://registry.npmjs.org/es-errors/-/es-errors-1.3.0.tgz", "integrity": "sha512-Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw==", + "dev": true, "engines": { "node": ">= 0.4" } @@ -19273,14 +18990,10 @@ "version": "0.18.17", "resolved": "https://registry.npmjs.org/@esbuild/android-arm/-/android-arm-0.18.17.tgz", "integrity": "sha512-wHsmJG/dnL3OkpAcwbgoBTTMHVi4Uyou3F5mf58ZtmUyIKfcdA7TROav/6tCzET4A3QW2Q2FC+eFneMU+iyOxg==", - "cpu": [ - "arm" - ], + "cpu": ["arm"], "dev": true, "optional": true, - "os": [ - "android" - ], + "os": ["android"], "engines": { "node": ">=12" } @@ -19289,14 +19002,10 @@ "version": "0.18.17", "resolved": "https://registry.npmjs.org/@esbuild/android-arm64/-/android-arm64-0.18.17.tgz", "integrity": "sha512-9np+YYdNDed5+Jgr1TdWBsozZ85U1Oa3xW0c7TWqH0y2aGghXtZsuT8nYRbzOMcl0bXZXjOGbksoTtVOlWrRZg==", - "cpu": [ - "arm64" - ], + "cpu": ["arm64"], "dev": true, "optional": true, - "os": [ - "android" - ], + "os": ["android"], "engines": { "node": ">=12" } @@ -19305,14 +19014,10 @@ "version": "0.18.17", "resolved": "https://registry.npmjs.org/@esbuild/android-x64/-/android-x64-0.18.17.tgz", "integrity": "sha512-O+FeWB/+xya0aLg23hHEM2E3hbfwZzjqumKMSIqcHbNvDa+dza2D0yLuymRBQQnC34CWrsJUXyH2MG5VnLd6uw==", - "cpu": [ - "x64" - ], + "cpu": ["x64"], "dev": true, "optional": true, - "os": [ - "android" - ], + "os": ["android"], "engines": { "node": ">=12" } @@ -19321,14 +19026,10 @@ "version": "0.18.17", "resolved": "https://registry.npmjs.org/@esbuild/darwin-x64/-/darwin-x64-0.18.17.tgz", "integrity": "sha512-XDre+J5YeIJDMfp3n0279DFNrGCXlxOuGsWIkRb1NThMZ0BsrWXoTg23Jer7fEXQ9Ye5QjrvXpxnhzl3bHtk0g==", - "cpu": [ - "x64" - ], + "cpu": ["x64"], "dev": true, "optional": true, - "os": [ - "darwin" - ], + "os": ["darwin"], "engines": { "node": ">=12" } @@ -19337,14 +19038,10 @@ "version": "0.18.17", "resolved": "https://registry.npmjs.org/@esbuild/freebsd-arm64/-/freebsd-arm64-0.18.17.tgz", "integrity": "sha512-cjTzGa3QlNfERa0+ptykyxs5A6FEUQQF0MuilYXYBGdBxD3vxJcKnzDlhDCa1VAJCmAxed6mYhA2KaJIbtiNuQ==", - "cpu": [ - "arm64" - ], + "cpu": ["arm64"], "dev": true, "optional": true, - "os": [ - "freebsd" - ], + "os": ["freebsd"], "engines": { "node": ">=12" } @@ -19353,14 +19050,10 @@ "version": "0.18.17", "resolved": "https://registry.npmjs.org/@esbuild/freebsd-x64/-/freebsd-x64-0.18.17.tgz", "integrity": "sha512-sOxEvR8d7V7Kw8QqzxWc7bFfnWnGdaFBut1dRUYtu+EIRXefBc/eIsiUiShnW0hM3FmQ5Zf27suDuHsKgZ5QrA==", - "cpu": [ - "x64" - ], + "cpu": ["x64"], "dev": true, "optional": true, - "os": [ - "freebsd" - ], + "os": ["freebsd"], "engines": { "node": ">=12" } @@ -19369,14 +19062,10 @@ "version": "0.18.17", "resolved": "https://registry.npmjs.org/@esbuild/linux-arm/-/linux-arm-0.18.17.tgz", "integrity": "sha512-2d3Lw6wkwgSLC2fIvXKoMNGVaeY8qdN0IC3rfuVxJp89CRfA3e3VqWifGDfuakPmp90+ZirmTfye1n4ncjv2lg==", - "cpu": [ - "arm" - ], + "cpu": ["arm"], "dev": true, "optional": true, - "os": [ - "linux" - ], + "os": ["linux"], "engines": { "node": ">=12" } @@ -19385,14 +19074,10 @@ "version": "0.18.17", "resolved": "https://registry.npmjs.org/@esbuild/linux-arm64/-/linux-arm64-0.18.17.tgz", "integrity": "sha512-c9w3tE7qA3CYWjT+M3BMbwMt+0JYOp3vCMKgVBrCl1nwjAlOMYzEo+gG7QaZ9AtqZFj5MbUc885wuBBmu6aADQ==", - "cpu": [ - "arm64" - ], + "cpu": ["arm64"], "dev": true, "optional": true, - "os": [ - "linux" - ], + "os": ["linux"], "engines": { "node": ">=12" } @@ -19401,14 +19086,10 @@ "version": "0.18.17", "resolved": "https://registry.npmjs.org/@esbuild/linux-ia32/-/linux-ia32-0.18.17.tgz", "integrity": "sha512-1DS9F966pn5pPnqXYz16dQqWIB0dmDfAQZd6jSSpiT9eX1NzKh07J6VKR3AoXXXEk6CqZMojiVDSZi1SlmKVdg==", - "cpu": [ - "ia32" - ], + "cpu": ["ia32"], "dev": true, "optional": true, - "os": [ - "linux" - ], + "os": ["linux"], "engines": { "node": ">=12" } @@ -19417,14 +19098,10 @@ "version": "0.18.17", "resolved": "https://registry.npmjs.org/@esbuild/linux-loong64/-/linux-loong64-0.18.17.tgz", "integrity": "sha512-EvLsxCk6ZF0fpCB6w6eOI2Fc8KW5N6sHlIovNe8uOFObL2O+Mr0bflPHyHwLT6rwMg9r77WOAWb2FqCQrVnwFg==", - "cpu": [ - "loong64" - ], + "cpu": ["loong64"], "dev": true, "optional": true, - "os": [ - "linux" - ], + "os": ["linux"], "engines": { "node": ">=12" } @@ -19433,14 +19110,10 @@ "version": "0.18.17", "resolved": "https://registry.npmjs.org/@esbuild/linux-mips64el/-/linux-mips64el-0.18.17.tgz", "integrity": "sha512-e0bIdHA5p6l+lwqTE36NAW5hHtw2tNRmHlGBygZC14QObsA3bD4C6sXLJjvnDIjSKhW1/0S3eDy+QmX/uZWEYQ==", - "cpu": [ - "mips64el" - ], + "cpu": ["mips64el"], "dev": true, "optional": true, - "os": [ - "linux" - ], + "os": ["linux"], "engines": { "node": ">=12" } @@ -19449,14 +19122,10 @@ "version": "0.18.17", "resolved": "https://registry.npmjs.org/@esbuild/linux-ppc64/-/linux-ppc64-0.18.17.tgz", "integrity": "sha512-BAAilJ0M5O2uMxHYGjFKn4nJKF6fNCdP1E0o5t5fvMYYzeIqy2JdAP88Az5LHt9qBoUa4tDaRpfWt21ep5/WqQ==", - "cpu": [ - "ppc64" - ], + "cpu": ["ppc64"], "dev": true, "optional": true, - "os": [ - "linux" - ], + "os": ["linux"], "engines": { "node": ">=12" } @@ -19465,14 +19134,10 @@ "version": "0.18.17", "resolved": "https://registry.npmjs.org/@esbuild/linux-riscv64/-/linux-riscv64-0.18.17.tgz", "integrity": "sha512-Wh/HW2MPnC3b8BqRSIme/9Zhab36PPH+3zam5pqGRH4pE+4xTrVLx2+XdGp6fVS3L2x+DrsIcsbMleex8fbE6g==", - "cpu": [ - "riscv64" - ], + "cpu": ["riscv64"], "dev": true, "optional": true, - "os": [ - "linux" - ], + "os": ["linux"], "engines": { "node": ">=12" } @@ -19481,14 +19146,10 @@ "version": "0.18.17", "resolved": "https://registry.npmjs.org/@esbuild/linux-s390x/-/linux-s390x-0.18.17.tgz", "integrity": "sha512-j/34jAl3ul3PNcK3pfI0NSlBANduT2UO5kZ7FCaK33XFv3chDhICLY8wJJWIhiQ+YNdQ9dxqQctRg2bvrMlYgg==", - "cpu": [ - "s390x" - ], + "cpu": ["s390x"], "dev": true, "optional": true, - "os": [ - "linux" - ], + "os": ["linux"], "engines": { "node": ">=12" } @@ -19497,14 +19158,10 @@ "version": "0.18.17", "resolved": "https://registry.npmjs.org/@esbuild/linux-x64/-/linux-x64-0.18.17.tgz", "integrity": "sha512-QM50vJ/y+8I60qEmFxMoxIx4de03pGo2HwxdBeFd4nMh364X6TIBZ6VQ5UQmPbQWUVWHWws5MmJXlHAXvJEmpQ==", - "cpu": [ - "x64" - ], + "cpu": ["x64"], "dev": true, "optional": true, - "os": [ - "linux" - ], + "os": ["linux"], "engines": { "node": ">=12" } @@ -19513,14 +19170,10 @@ "version": "0.18.17", "resolved": "https://registry.npmjs.org/@esbuild/netbsd-x64/-/netbsd-x64-0.18.17.tgz", "integrity": "sha512-/jGlhWR7Sj9JPZHzXyyMZ1RFMkNPjC6QIAan0sDOtIo2TYk3tZn5UDrkE0XgsTQCxWTTOcMPf9p6Rh2hXtl5TQ==", - "cpu": [ - "x64" - ], + "cpu": ["x64"], "dev": true, "optional": true, - "os": [ - "netbsd" - ], + "os": ["netbsd"], "engines": { "node": ">=12" } @@ -19529,14 +19182,10 @@ "version": "0.18.17", "resolved": "https://registry.npmjs.org/@esbuild/openbsd-x64/-/openbsd-x64-0.18.17.tgz", "integrity": "sha512-rSEeYaGgyGGf4qZM2NonMhMOP/5EHp4u9ehFiBrg7stH6BYEEjlkVREuDEcQ0LfIl53OXLxNbfuIj7mr5m29TA==", - "cpu": [ - "x64" - ], + "cpu": ["x64"], "dev": true, "optional": true, - "os": [ - "openbsd" - ], + "os": ["openbsd"], "engines": { "node": ">=12" } @@ -19545,14 +19194,10 @@ "version": "0.18.17", "resolved": "https://registry.npmjs.org/@esbuild/sunos-x64/-/sunos-x64-0.18.17.tgz", "integrity": "sha512-Y7ZBbkLqlSgn4+zot4KUNYst0bFoO68tRgI6mY2FIM+b7ZbyNVtNbDP5y8qlu4/knZZ73fgJDlXID+ohY5zt5g==", - "cpu": [ - "x64" - ], + "cpu": ["x64"], "dev": true, "optional": true, - "os": [ - "sunos" - ], + "os": ["sunos"], "engines": { "node": ">=12" } @@ -19561,14 +19206,10 @@ "version": "0.18.17", "resolved": "https://registry.npmjs.org/@esbuild/win32-arm64/-/win32-arm64-0.18.17.tgz", "integrity": "sha512-bwPmTJsEQcbZk26oYpc4c/8PvTY3J5/QK8jM19DVlEsAB41M39aWovWoHtNm78sd6ip6prilxeHosPADXtEJFw==", - "cpu": [ - "arm64" - ], + "cpu": ["arm64"], "dev": true, "optional": true, - "os": [ - "win32" - ], + "os": ["win32"], "engines": { "node": ">=12" } @@ -19577,14 +19218,10 @@ "version": "0.18.17", "resolved": "https://registry.npmjs.org/@esbuild/win32-ia32/-/win32-ia32-0.18.17.tgz", "integrity": "sha512-H/XaPtPKli2MhW+3CQueo6Ni3Avggi6hP/YvgkEe1aSaxw+AeO8MFjq8DlgfTd9Iz4Yih3QCZI6YLMoyccnPRg==", - "cpu": [ - "ia32" - ], + "cpu": ["ia32"], "dev": true, "optional": true, - "os": [ - "win32" - ], + "os": ["win32"], "engines": { "node": ">=12" } @@ -19593,14 +19230,10 @@ "version": "0.18.17", "resolved": "https://registry.npmjs.org/@esbuild/win32-x64/-/win32-x64-0.18.17.tgz", "integrity": "sha512-fGEb8f2BSA3CW7riJVurug65ACLuQAzKq0SSqkY2b2yHHH0MzDfbLyKIGzHwOI/gkHcxM/leuSW6D5w/LMNitA==", - "cpu": [ - "x64" - ], + "cpu": ["x64"], "dev": true, "optional": true, - "os": [ - "win32" - ], + "os": ["win32"], "engines": { "node": ">=12" } @@ -20621,9 +20254,7 @@ "version": "1.3.0", "resolved": "https://registry.npmjs.org/extsprintf/-/extsprintf-1.3.0.tgz", "integrity": "sha512-11Ndz7Nv+mvAC1j0ktTa7fAb0vLyGGX+rMHNBYQviQDGU0Hw7lhctJANqbPhu9nV9/izT/IntTgZ7Im/9LJs9g==", - "engines": [ - "node >=0.6.0" - ] + "engines": ["node >=0.6.0"] }, "node_modules/fast-deep-equal": { "version": "3.1.3", @@ -21304,9 +20935,7 @@ "integrity": "sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==", "hasInstallScript": true, "optional": true, - "os": [ - "darwin" - ], + "os": ["darwin"], "engines": { "node": "^8.16.0 || ^10.6.0 || >=11.0.0" } @@ -21367,6 +20996,7 @@ "version": "1.2.4", "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.2.4.tgz", "integrity": "sha512-5uYhsJH8VJBTv7oslg4BznJYhDoRI6waYCxMmCdnTrcCrHA/fCFKoTFz2JKKE0HdDFUF7/oQuhzumXJK7paBRQ==", + "dev": true, "dependencies": { "es-errors": "^1.3.0", "function-bind": "^1.1.2", @@ -21703,6 +21333,7 @@ "version": "1.0.1", "resolved": "https://registry.npmjs.org/gopd/-/gopd-1.0.1.tgz", "integrity": "sha512-d65bNlIadxvpb/A2abVdlqKqV563juRnZ1Wtk6s1sIR8uNsXR70xqIzVqxVf1eTqDunwT2MkczEeaezCKTZhwA==", + "dev": true, "dependencies": { "get-intrinsic": "^1.1.3" }, @@ -21822,6 +21453,7 @@ "version": "1.0.2", "resolved": "https://registry.npmjs.org/has-property-descriptors/-/has-property-descriptors-1.0.2.tgz", "integrity": "sha512-55JNKuIW+vq4Ke1BjOTjM2YctQIvCT7GFzHwmfZPGo5wnrgkid0YQtnAleFSqumZm4az3n2BS+erby5ipJdgrg==", + "dev": true, "dependencies": { "es-define-property": "^1.0.0" }, @@ -21833,6 +21465,7 @@ "version": "1.0.3", "resolved": "https://registry.npmjs.org/has-proto/-/has-proto-1.0.3.tgz", "integrity": "sha512-SJ1amZAJUiZS+PhsVLf5tGydlaVB8EdFpaSO4gmiUKUOxk8qzn5AIy4ZeJUmh22znIdk/uMAUT2pl3FxzVUH+Q==", + "dev": true, "engines": { "node": ">= 0.4" }, @@ -21844,6 +21477,7 @@ "version": "1.0.3", "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.3.tgz", "integrity": "sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A==", + "dev": true, "engines": { "node": ">= 0.4" }, @@ -26604,6 +26238,7 @@ "version": "1.13.1", "resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.13.1.tgz", "integrity": "sha512-5qoj1RUiKOMsCCNLV1CBiPYE10sziTsnmNxkAI/rZhiD63CF7IqdFGC/XzjWjpSgLf0LxXX3bDFIh0E18f6UhQ==", + "dev": true, "funding": { "url": "https://github.com/sponsors/ljharb" } @@ -27404,9 +27039,7 @@ "dev": true, "hasInstallScript": true, "optional": true, - "os": [ - "darwin" - ], + "os": ["darwin"], "engines": { "node": "^8.16.0 || ^10.6.0 || >=11.0.0" } @@ -28005,6 +27638,7 @@ "version": "6.11.0", "resolved": "https://registry.npmjs.org/qs/-/qs-6.11.0.tgz", "integrity": "sha512-MvjoMCJwEarSbUYk5O+nmoSzSutSsTwF85zcHPQ9OrlFoZOYIjaqBAJIqIXjptyD5vThxGq52Xu/MaJzRkIk4Q==", + "dev": true, "dependencies": { "side-channel": "^1.0.4" }, @@ -29534,6 +29168,7 @@ "version": "1.2.2", "resolved": "https://registry.npmjs.org/set-function-length/-/set-function-length-1.2.2.tgz", "integrity": "sha512-pgRc4hJ4/sNjWCSS9AmnS40x3bNMDTknHgL5UaMBTMyJnU90EgWh1Rz+MC9eFu4BuN/UwZjKQuY/1v3rM7HMfg==", + "dev": true, "dependencies": { "define-data-property": "^1.1.4", "es-errors": "^1.3.0", @@ -29690,6 +29325,7 @@ "version": "1.0.4", "resolved": "https://registry.npmjs.org/side-channel/-/side-channel-1.0.4.tgz", "integrity": "sha512-q5XPytqFEIKHkGdiMIrY10mvLRvnQh42/+GoBlFW3b2LXLE2xxJpZFdm94we0BaoV3RwJyGqg5wS7epxTv0Zvw==", + "dev": true, "dependencies": { "call-bind": "^1.0.0", "get-intrinsic": "^1.0.2", @@ -30342,18 +29978,6 @@ "url": "https://github.com/sponsors/antfu" } }, - "node_modules/stripe": { - "version": "11.8.0", - "resolved": "https://registry.npmjs.org/stripe/-/stripe-11.8.0.tgz", - "integrity": "sha512-aGwrJDqYzpjQj0ejt7oN7BE7kUjZFxhUz/gDeyDCS7CBpZhDb26Eb6z9sS8KdbsbmuS8rkkn2lBY4koK7L1ZCw==", - "dependencies": { - "@types/node": ">=8.1.0", - "qs": "^6.11.0" - }, - "engines": { - "node": ">=12.*" - } - }, "node_modules/style-loader": { "version": "3.3.3", "resolved": "https://registry.npmjs.org/style-loader/-/style-loader-3.3.3.tgz", @@ -32595,9 +32219,7 @@ "version": "1.10.0", "resolved": "https://registry.npmjs.org/verror/-/verror-1.10.0.tgz", "integrity": "sha512-ZZKSmDAEFOijERBLkmYfJ+vmk3w+7hOLYDNkRCuRuMJGEmqYNCNLyBBFwWKVMhfwaEF3WOd0Zlw86U/WC/+nYw==", - "engines": [ - "node >=0.6.0" - ], + "engines": ["node >=0.6.0"], "dependencies": { "assert-plus": "^1.0.0", "core-util-is": "1.0.2", @@ -32854,14 +32476,10 @@ "version": "0.19.12", "resolved": "https://registry.npmjs.org/@esbuild/darwin-arm64/-/darwin-arm64-0.19.12.tgz", "integrity": "sha512-B6IeSgZgtEzGC42jsI+YYu9Z3HKRxp8ZT3cqhvliEHovq8HSX2YX8lNocDn79gCKJXOSaEot9MVYky7AKjCs8g==", - "cpu": [ - "arm64" - ], + "cpu": ["arm64"], "dev": true, "optional": true, - "os": [ - "darwin" - ], + "os": ["darwin"], "engines": { "node": ">=12" } From c9dbc032733ecce4d70390c879ff6217f23966b9 Mon Sep 17 00:00:00 2001 From: Firdous2307 Date: Sat, 2 Nov 2024 14:05:56 +0000 Subject: [PATCH 7/8] chore: removed gitpod file --- .github/workflows/issue.yml | 4 +- .gitpod.yml | 9 - npm-shrinkwrap.json | 752 +++++++++++++++++++++++++++--------- 3 files changed, 566 insertions(+), 199 deletions(-) delete mode 100644 .gitpod.yml diff --git a/.github/workflows/issue.yml b/.github/workflows/issue.yml index daf595683f..64e31868fd 100644 --- a/.github/workflows/issue.yml +++ b/.github/workflows/issue.yml @@ -12,8 +12,8 @@ permissions: jobs: comment: permissions: - issues: write # for peter-evans/create-or-update-comment to create or update comment - pull-requests: write # for peter-evans/create-or-update-comment to create or update comment + issues: write # for peter-evans/create-or-update-comment to create or update comment + pull-requests: write # for peter-evans/create-or-update-comment to create or update comment name: Comment runs-on: ubuntu-latest steps: diff --git a/.gitpod.yml b/.gitpod.yml deleted file mode 100644 index 29975b81bf..0000000000 --- a/.gitpod.yml +++ /dev/null @@ -1,9 +0,0 @@ -# This configuration file was automatically generated by Gitpod. -# Please adjust to your needs (see https://www.gitpod.io/docs/introduction/learn-gitpod/gitpod-yaml) -# and commit this file to your remote git repository to share the goodness with others. - -# Learn more from ready-to-use templates: https://www.gitpod.io/docs/introduction/getting-started/quickstart - -tasks: - - init: npm install && npm run build - command: npm run start diff --git a/npm-shrinkwrap.json b/npm-shrinkwrap.json index b8ea944985..3971b1a304 100644 --- a/npm-shrinkwrap.json +++ b/npm-shrinkwrap.json @@ -2659,10 +2659,14 @@ "version": "0.19.12", "resolved": "https://registry.npmjs.org/@esbuild/aix-ppc64/-/aix-ppc64-0.19.12.tgz", "integrity": "sha512-bmoCYyWdEL3wDQIVbcyzRyeKLgk2WtWLTWz1ZIAZF/EGbNOwSA6ew3PftJ1PqMiOOGu0OyFMzG53L0zqIpPeNA==", - "cpu": ["ppc64"], + "cpu": [ + "ppc64" + ], "dev": true, "optional": true, - "os": ["aix"], + "os": [ + "aix" + ], "engines": { "node": ">=12" } @@ -2671,10 +2675,14 @@ "version": "0.19.12", "resolved": "https://registry.npmjs.org/@esbuild/android-arm/-/android-arm-0.19.12.tgz", "integrity": "sha512-qg/Lj1mu3CdQlDEEiWrlC4eaPZ1KztwGJ9B6J+/6G+/4ewxJg7gqj8eVYWvao1bXrqGiW2rsBZFSX3q2lcW05w==", - "cpu": ["arm"], + "cpu": [ + "arm" + ], "dev": true, "optional": true, - "os": ["android"], + "os": [ + "android" + ], "engines": { "node": ">=12" } @@ -2683,10 +2691,14 @@ "version": "0.19.12", "resolved": "https://registry.npmjs.org/@esbuild/android-arm64/-/android-arm64-0.19.12.tgz", "integrity": "sha512-P0UVNGIienjZv3f5zq0DP3Nt2IE/3plFzuaS96vihvD0Hd6H/q4WXUGpCxD/E8YrSXfNyRPbpTq+T8ZQioSuPA==", - "cpu": ["arm64"], + "cpu": [ + "arm64" + ], "dev": true, "optional": true, - "os": ["android"], + "os": [ + "android" + ], "engines": { "node": ">=12" } @@ -2695,10 +2707,14 @@ "version": "0.19.12", "resolved": "https://registry.npmjs.org/@esbuild/android-x64/-/android-x64-0.19.12.tgz", "integrity": "sha512-3k7ZoUW6Q6YqhdhIaq/WZ7HwBpnFBlW905Fa4s4qWJyiNOgT1dOqDiVAQFwBH7gBRZr17gLrlFCRzF6jFh7Kew==", - "cpu": ["x64"], + "cpu": [ + "x64" + ], "dev": true, "optional": true, - "os": ["android"], + "os": [ + "android" + ], "engines": { "node": ">=12" } @@ -2707,10 +2723,14 @@ "version": "0.18.17", "resolved": "https://registry.npmjs.org/@esbuild/darwin-arm64/-/darwin-arm64-0.18.17.tgz", "integrity": "sha512-M9uJ9VSB1oli2BE/dJs3zVr9kcCBBsE883prage1NWz6pBS++1oNn/7soPNS3+1DGj0FrkSvnED4Bmlu1VAE9g==", - "cpu": ["arm64"], + "cpu": [ + "arm64" + ], "dev": true, "optional": true, - "os": ["darwin"], + "os": [ + "darwin" + ], "engines": { "node": ">=12" } @@ -2719,10 +2739,14 @@ "version": "0.19.12", "resolved": "https://registry.npmjs.org/@esbuild/darwin-x64/-/darwin-x64-0.19.12.tgz", "integrity": "sha512-hKoVkKzFiToTgn+41qGhsUJXFlIjxI/jSYeZf3ugemDYZldIXIxhvwN6erJGlX4t5h417iFuheZ7l+YVn05N3A==", - "cpu": ["x64"], + "cpu": [ + "x64" + ], "dev": true, "optional": true, - "os": ["darwin"], + "os": [ + "darwin" + ], "engines": { "node": ">=12" } @@ -2731,10 +2755,14 @@ "version": "0.19.12", "resolved": "https://registry.npmjs.org/@esbuild/freebsd-arm64/-/freebsd-arm64-0.19.12.tgz", "integrity": "sha512-4aRvFIXmwAcDBw9AueDQ2YnGmz5L6obe5kmPT8Vd+/+x/JMVKCgdcRwH6APrbpNXsPz+K653Qg8HB/oXvXVukA==", - "cpu": ["arm64"], + "cpu": [ + "arm64" + ], "dev": true, "optional": true, - "os": ["freebsd"], + "os": [ + "freebsd" + ], "engines": { "node": ">=12" } @@ -2743,10 +2771,14 @@ "version": "0.19.12", "resolved": "https://registry.npmjs.org/@esbuild/freebsd-x64/-/freebsd-x64-0.19.12.tgz", "integrity": "sha512-EYoXZ4d8xtBoVN7CEwWY2IN4ho76xjYXqSXMNccFSx2lgqOG/1TBPW0yPx1bJZk94qu3tX0fycJeeQsKovA8gg==", - "cpu": ["x64"], + "cpu": [ + "x64" + ], "dev": true, "optional": true, - "os": ["freebsd"], + "os": [ + "freebsd" + ], "engines": { "node": ">=12" } @@ -2755,10 +2787,14 @@ "version": "0.19.12", "resolved": "https://registry.npmjs.org/@esbuild/linux-arm/-/linux-arm-0.19.12.tgz", "integrity": "sha512-J5jPms//KhSNv+LO1S1TX1UWp1ucM6N6XuL6ITdKWElCu8wXP72l9MM0zDTzzeikVyqFE6U8YAV9/tFyj0ti+w==", - "cpu": ["arm"], + "cpu": [ + "arm" + ], "dev": true, "optional": true, - "os": ["linux"], + "os": [ + "linux" + ], "engines": { "node": ">=12" } @@ -2767,10 +2803,14 @@ "version": "0.19.12", "resolved": "https://registry.npmjs.org/@esbuild/linux-arm64/-/linux-arm64-0.19.12.tgz", "integrity": "sha512-EoTjyYyLuVPfdPLsGVVVC8a0p1BFFvtpQDB/YLEhaXyf/5bczaGeN15QkR+O4S5LeJ92Tqotve7i1jn35qwvdA==", - "cpu": ["arm64"], + "cpu": [ + "arm64" + ], "dev": true, "optional": true, - "os": ["linux"], + "os": [ + "linux" + ], "engines": { "node": ">=12" } @@ -2779,10 +2819,14 @@ "version": "0.19.12", "resolved": "https://registry.npmjs.org/@esbuild/linux-ia32/-/linux-ia32-0.19.12.tgz", "integrity": "sha512-Thsa42rrP1+UIGaWz47uydHSBOgTUnwBwNq59khgIwktK6x60Hivfbux9iNR0eHCHzOLjLMLfUMLCypBkZXMHA==", - "cpu": ["ia32"], + "cpu": [ + "ia32" + ], "dev": true, "optional": true, - "os": ["linux"], + "os": [ + "linux" + ], "engines": { "node": ">=12" } @@ -2791,10 +2835,14 @@ "version": "0.19.12", "resolved": "https://registry.npmjs.org/@esbuild/linux-loong64/-/linux-loong64-0.19.12.tgz", "integrity": "sha512-LiXdXA0s3IqRRjm6rV6XaWATScKAXjI4R4LoDlvO7+yQqFdlr1Bax62sRwkVvRIrwXxvtYEHHI4dm50jAXkuAA==", - "cpu": ["loong64"], + "cpu": [ + "loong64" + ], "dev": true, "optional": true, - "os": ["linux"], + "os": [ + "linux" + ], "engines": { "node": ">=12" } @@ -2803,10 +2851,14 @@ "version": "0.19.12", "resolved": "https://registry.npmjs.org/@esbuild/linux-mips64el/-/linux-mips64el-0.19.12.tgz", "integrity": "sha512-fEnAuj5VGTanfJ07ff0gOA6IPsvrVHLVb6Lyd1g2/ed67oU1eFzL0r9WL7ZzscD+/N6i3dWumGE1Un4f7Amf+w==", - "cpu": ["mips64el"], + "cpu": [ + "mips64el" + ], "dev": true, "optional": true, - "os": ["linux"], + "os": [ + "linux" + ], "engines": { "node": ">=12" } @@ -2815,10 +2867,14 @@ "version": "0.19.12", "resolved": "https://registry.npmjs.org/@esbuild/linux-ppc64/-/linux-ppc64-0.19.12.tgz", "integrity": "sha512-nYJA2/QPimDQOh1rKWedNOe3Gfc8PabU7HT3iXWtNUbRzXS9+vgB0Fjaqr//XNbd82mCxHzik2qotuI89cfixg==", - "cpu": ["ppc64"], + "cpu": [ + "ppc64" + ], "dev": true, "optional": true, - "os": ["linux"], + "os": [ + "linux" + ], "engines": { "node": ">=12" } @@ -2827,10 +2883,14 @@ "version": "0.19.12", "resolved": "https://registry.npmjs.org/@esbuild/linux-riscv64/-/linux-riscv64-0.19.12.tgz", "integrity": "sha512-2MueBrlPQCw5dVJJpQdUYgeqIzDQgw3QtiAHUC4RBz9FXPrskyyU3VI1hw7C0BSKB9OduwSJ79FTCqtGMWqJHg==", - "cpu": ["riscv64"], + "cpu": [ + "riscv64" + ], "dev": true, "optional": true, - "os": ["linux"], + "os": [ + "linux" + ], "engines": { "node": ">=12" } @@ -2839,10 +2899,14 @@ "version": "0.19.12", "resolved": "https://registry.npmjs.org/@esbuild/linux-s390x/-/linux-s390x-0.19.12.tgz", "integrity": "sha512-+Pil1Nv3Umes4m3AZKqA2anfhJiVmNCYkPchwFJNEJN5QxmTs1uzyy4TvmDrCRNT2ApwSari7ZIgrPeUx4UZDg==", - "cpu": ["s390x"], + "cpu": [ + "s390x" + ], "dev": true, "optional": true, - "os": ["linux"], + "os": [ + "linux" + ], "engines": { "node": ">=12" } @@ -2851,10 +2915,14 @@ "version": "0.19.12", "resolved": "https://registry.npmjs.org/@esbuild/linux-x64/-/linux-x64-0.19.12.tgz", "integrity": "sha512-B71g1QpxfwBvNrfyJdVDexenDIt1CiDN1TIXLbhOw0KhJzE78KIFGX6OJ9MrtC0oOqMWf+0xop4qEU8JrJTwCg==", - "cpu": ["x64"], + "cpu": [ + "x64" + ], "dev": true, "optional": true, - "os": ["linux"], + "os": [ + "linux" + ], "engines": { "node": ">=12" } @@ -2863,10 +2931,14 @@ "version": "0.19.12", "resolved": "https://registry.npmjs.org/@esbuild/netbsd-x64/-/netbsd-x64-0.19.12.tgz", "integrity": "sha512-3ltjQ7n1owJgFbuC61Oj++XhtzmymoCihNFgT84UAmJnxJfm4sYCiSLTXZtE00VWYpPMYc+ZQmB6xbSdVh0JWA==", - "cpu": ["x64"], + "cpu": [ + "x64" + ], "dev": true, "optional": true, - "os": ["netbsd"], + "os": [ + "netbsd" + ], "engines": { "node": ">=12" } @@ -2875,10 +2947,14 @@ "version": "0.19.12", "resolved": "https://registry.npmjs.org/@esbuild/openbsd-x64/-/openbsd-x64-0.19.12.tgz", "integrity": "sha512-RbrfTB9SWsr0kWmb9srfF+L933uMDdu9BIzdA7os2t0TXhCRjrQyCeOt6wVxr79CKD4c+p+YhCj31HBkYcXebw==", - "cpu": ["x64"], + "cpu": [ + "x64" + ], "dev": true, "optional": true, - "os": ["openbsd"], + "os": [ + "openbsd" + ], "engines": { "node": ">=12" } @@ -2887,10 +2963,14 @@ "version": "0.19.12", "resolved": "https://registry.npmjs.org/@esbuild/sunos-x64/-/sunos-x64-0.19.12.tgz", "integrity": "sha512-HKjJwRrW8uWtCQnQOz9qcU3mUZhTUQvi56Q8DPTLLB+DawoiQdjsYq+j+D3s9I8VFtDr+F9CjgXKKC4ss89IeA==", - "cpu": ["x64"], + "cpu": [ + "x64" + ], "dev": true, "optional": true, - "os": ["sunos"], + "os": [ + "sunos" + ], "engines": { "node": ">=12" } @@ -2899,10 +2979,14 @@ "version": "0.19.12", "resolved": "https://registry.npmjs.org/@esbuild/win32-arm64/-/win32-arm64-0.19.12.tgz", "integrity": "sha512-URgtR1dJnmGvX864pn1B2YUYNzjmXkuJOIqG2HdU62MVS4EHpU2946OZoTMnRUHklGtJdJZ33QfzdjGACXhn1A==", - "cpu": ["arm64"], + "cpu": [ + "arm64" + ], "dev": true, "optional": true, - "os": ["win32"], + "os": [ + "win32" + ], "engines": { "node": ">=12" } @@ -2911,10 +2995,14 @@ "version": "0.19.12", "resolved": "https://registry.npmjs.org/@esbuild/win32-ia32/-/win32-ia32-0.19.12.tgz", "integrity": "sha512-+ZOE6pUkMOJfmxmBZElNOx72NKpIa/HFOMGzu8fqzQJ5kgf6aTGrcJaFsNiVMH4JKpMipyK+7k0n2UXN7a8YKQ==", - "cpu": ["ia32"], + "cpu": [ + "ia32" + ], "dev": true, "optional": true, - "os": ["win32"], + "os": [ + "win32" + ], "engines": { "node": ">=12" } @@ -2923,10 +3011,14 @@ "version": "0.19.12", "resolved": "https://registry.npmjs.org/@esbuild/win32-x64/-/win32-x64-0.19.12.tgz", "integrity": "sha512-T1QyPSDCyMXaO3pzBkF96E8xMkiRYbUEZADd29SyPGabqxMViNoii+NcK7eWJAEoU6RZyEm5lVSIjTmcdoB9HA==", - "cpu": ["x64"], + "cpu": [ + "x64" + ], "dev": true, "optional": true, - "os": ["win32"], + "os": [ + "win32" + ], "engines": { "node": ">=12" } @@ -3433,9 +3525,13 @@ "version": "0.20.2", "resolved": "https://registry.npmjs.org/@esbuild/aix-ppc64/-/aix-ppc64-0.20.2.tgz", "integrity": "sha512-D+EBOJHXdNZcLJRBkhENNG8Wji2kgc9AZ9KiPr1JuZjsNtyHzrsfLRrY0tk2H2aoFu6RANO1y1iPPUCDYWkb5g==", - "cpu": ["ppc64"], + "cpu": [ + "ppc64" + ], "optional": true, - "os": ["aix"], + "os": [ + "aix" + ], "engines": { "node": ">=12" } @@ -3444,9 +3540,13 @@ "version": "0.20.2", "resolved": "https://registry.npmjs.org/@esbuild/android-arm/-/android-arm-0.20.2.tgz", "integrity": "sha512-t98Ra6pw2VaDhqNWO2Oph2LXbz/EJcnLmKLGBJwEwXX/JAN83Fym1rU8l0JUWK6HkIbWONCSSatf4sf2NBRx/w==", - "cpu": ["arm"], + "cpu": [ + "arm" + ], "optional": true, - "os": ["android"], + "os": [ + "android" + ], "engines": { "node": ">=12" } @@ -3455,9 +3555,13 @@ "version": "0.20.2", "resolved": "https://registry.npmjs.org/@esbuild/android-arm64/-/android-arm64-0.20.2.tgz", "integrity": "sha512-mRzjLacRtl/tWU0SvD8lUEwb61yP9cqQo6noDZP/O8VkwafSYwZ4yWy24kan8jE/IMERpYncRt2dw438LP3Xmg==", - "cpu": ["arm64"], + "cpu": [ + "arm64" + ], "optional": true, - "os": ["android"], + "os": [ + "android" + ], "engines": { "node": ">=12" } @@ -3466,9 +3570,13 @@ "version": "0.20.2", "resolved": "https://registry.npmjs.org/@esbuild/android-x64/-/android-x64-0.20.2.tgz", "integrity": "sha512-btzExgV+/lMGDDa194CcUQm53ncxzeBrWJcncOBxuC6ndBkKxnHdFJn86mCIgTELsooUmwUm9FkhSp5HYu00Rg==", - "cpu": ["x64"], + "cpu": [ + "x64" + ], "optional": true, - "os": ["android"], + "os": [ + "android" + ], "engines": { "node": ">=12" } @@ -3477,9 +3585,13 @@ "version": "0.20.2", "resolved": "https://registry.npmjs.org/@esbuild/darwin-arm64/-/darwin-arm64-0.20.2.tgz", "integrity": "sha512-4J6IRT+10J3aJH3l1yzEg9y3wkTDgDk7TSDFX+wKFiWjqWp/iCfLIYzGyasx9l0SAFPT1HwSCR+0w/h1ES/MjA==", - "cpu": ["arm64"], + "cpu": [ + "arm64" + ], "optional": true, - "os": ["darwin"], + "os": [ + "darwin" + ], "engines": { "node": ">=12" } @@ -3488,9 +3600,13 @@ "version": "0.20.2", "resolved": "https://registry.npmjs.org/@esbuild/darwin-x64/-/darwin-x64-0.20.2.tgz", "integrity": "sha512-tBcXp9KNphnNH0dfhv8KYkZhjc+H3XBkF5DKtswJblV7KlT9EI2+jeA8DgBjp908WEuYll6pF+UStUCfEpdysA==", - "cpu": ["x64"], + "cpu": [ + "x64" + ], "optional": true, - "os": ["darwin"], + "os": [ + "darwin" + ], "engines": { "node": ">=12" } @@ -3499,9 +3615,13 @@ "version": "0.20.2", "resolved": "https://registry.npmjs.org/@esbuild/freebsd-arm64/-/freebsd-arm64-0.20.2.tgz", "integrity": "sha512-d3qI41G4SuLiCGCFGUrKsSeTXyWG6yem1KcGZVS+3FYlYhtNoNgYrWcvkOoaqMhwXSMrZRl69ArHsGJ9mYdbbw==", - "cpu": ["arm64"], + "cpu": [ + "arm64" + ], "optional": true, - "os": ["freebsd"], + "os": [ + "freebsd" + ], "engines": { "node": ">=12" } @@ -3510,9 +3630,13 @@ "version": "0.20.2", "resolved": "https://registry.npmjs.org/@esbuild/freebsd-x64/-/freebsd-x64-0.20.2.tgz", "integrity": "sha512-d+DipyvHRuqEeM5zDivKV1KuXn9WeRX6vqSqIDgwIfPQtwMP4jaDsQsDncjTDDsExT4lR/91OLjRo8bmC1e+Cw==", - "cpu": ["x64"], + "cpu": [ + "x64" + ], "optional": true, - "os": ["freebsd"], + "os": [ + "freebsd" + ], "engines": { "node": ">=12" } @@ -3521,9 +3645,13 @@ "version": "0.20.2", "resolved": "https://registry.npmjs.org/@esbuild/linux-arm/-/linux-arm-0.20.2.tgz", "integrity": "sha512-VhLPeR8HTMPccbuWWcEUD1Az68TqaTYyj6nfE4QByZIQEQVWBB8vup8PpR7y1QHL3CpcF6xd5WVBU/+SBEvGTg==", - "cpu": ["arm"], + "cpu": [ + "arm" + ], "optional": true, - "os": ["linux"], + "os": [ + "linux" + ], "engines": { "node": ">=12" } @@ -3532,9 +3660,13 @@ "version": "0.20.2", "resolved": "https://registry.npmjs.org/@esbuild/linux-arm64/-/linux-arm64-0.20.2.tgz", "integrity": "sha512-9pb6rBjGvTFNira2FLIWqDk/uaf42sSyLE8j1rnUpuzsODBq7FvpwHYZxQ/It/8b+QOS1RYfqgGFNLRI+qlq2A==", - "cpu": ["arm64"], + "cpu": [ + "arm64" + ], "optional": true, - "os": ["linux"], + "os": [ + "linux" + ], "engines": { "node": ">=12" } @@ -3543,9 +3675,13 @@ "version": "0.20.2", "resolved": "https://registry.npmjs.org/@esbuild/linux-ia32/-/linux-ia32-0.20.2.tgz", "integrity": "sha512-o10utieEkNPFDZFQm9CoP7Tvb33UutoJqg3qKf1PWVeeJhJw0Q347PxMvBgVVFgouYLGIhFYG0UGdBumROyiig==", - "cpu": ["ia32"], + "cpu": [ + "ia32" + ], "optional": true, - "os": ["linux"], + "os": [ + "linux" + ], "engines": { "node": ">=12" } @@ -3554,9 +3690,13 @@ "version": "0.20.2", "resolved": "https://registry.npmjs.org/@esbuild/linux-loong64/-/linux-loong64-0.20.2.tgz", "integrity": "sha512-PR7sp6R/UC4CFVomVINKJ80pMFlfDfMQMYynX7t1tNTeivQ6XdX5r2XovMmha/VjR1YN/HgHWsVcTRIMkymrgQ==", - "cpu": ["loong64"], + "cpu": [ + "loong64" + ], "optional": true, - "os": ["linux"], + "os": [ + "linux" + ], "engines": { "node": ">=12" } @@ -3565,9 +3705,13 @@ "version": "0.20.2", "resolved": "https://registry.npmjs.org/@esbuild/linux-mips64el/-/linux-mips64el-0.20.2.tgz", "integrity": "sha512-4BlTqeutE/KnOiTG5Y6Sb/Hw6hsBOZapOVF6njAESHInhlQAghVVZL1ZpIctBOoTFbQyGW+LsVYZ8lSSB3wkjA==", - "cpu": ["mips64el"], + "cpu": [ + "mips64el" + ], "optional": true, - "os": ["linux"], + "os": [ + "linux" + ], "engines": { "node": ">=12" } @@ -3576,9 +3720,13 @@ "version": "0.20.2", "resolved": "https://registry.npmjs.org/@esbuild/linux-ppc64/-/linux-ppc64-0.20.2.tgz", "integrity": "sha512-rD3KsaDprDcfajSKdn25ooz5J5/fWBylaaXkuotBDGnMnDP1Uv5DLAN/45qfnf3JDYyJv/ytGHQaziHUdyzaAg==", - "cpu": ["ppc64"], + "cpu": [ + "ppc64" + ], "optional": true, - "os": ["linux"], + "os": [ + "linux" + ], "engines": { "node": ">=12" } @@ -3587,9 +3735,13 @@ "version": "0.20.2", "resolved": "https://registry.npmjs.org/@esbuild/linux-riscv64/-/linux-riscv64-0.20.2.tgz", "integrity": "sha512-snwmBKacKmwTMmhLlz/3aH1Q9T8v45bKYGE3j26TsaOVtjIag4wLfWSiZykXzXuE1kbCE+zJRmwp+ZbIHinnVg==", - "cpu": ["riscv64"], + "cpu": [ + "riscv64" + ], "optional": true, - "os": ["linux"], + "os": [ + "linux" + ], "engines": { "node": ">=12" } @@ -3598,9 +3750,13 @@ "version": "0.20.2", "resolved": "https://registry.npmjs.org/@esbuild/linux-s390x/-/linux-s390x-0.20.2.tgz", "integrity": "sha512-wcWISOobRWNm3cezm5HOZcYz1sKoHLd8VL1dl309DiixxVFoFe/o8HnwuIwn6sXre88Nwj+VwZUvJf4AFxkyrQ==", - "cpu": ["s390x"], + "cpu": [ + "s390x" + ], "optional": true, - "os": ["linux"], + "os": [ + "linux" + ], "engines": { "node": ">=12" } @@ -3609,9 +3765,13 @@ "version": "0.20.2", "resolved": "https://registry.npmjs.org/@esbuild/linux-x64/-/linux-x64-0.20.2.tgz", "integrity": "sha512-1MdwI6OOTsfQfek8sLwgyjOXAu+wKhLEoaOLTjbijk6E2WONYpH9ZU2mNtR+lZ2B4uwr+usqGuVfFT9tMtGvGw==", - "cpu": ["x64"], + "cpu": [ + "x64" + ], "optional": true, - "os": ["linux"], + "os": [ + "linux" + ], "engines": { "node": ">=12" } @@ -3620,9 +3780,13 @@ "version": "0.20.2", "resolved": "https://registry.npmjs.org/@esbuild/netbsd-x64/-/netbsd-x64-0.20.2.tgz", "integrity": "sha512-K8/DhBxcVQkzYc43yJXDSyjlFeHQJBiowJ0uVL6Tor3jGQfSGHNNJcWxNbOI8v5k82prYqzPuwkzHt3J1T1iZQ==", - "cpu": ["x64"], + "cpu": [ + "x64" + ], "optional": true, - "os": ["netbsd"], + "os": [ + "netbsd" + ], "engines": { "node": ">=12" } @@ -3631,9 +3795,13 @@ "version": "0.20.2", "resolved": "https://registry.npmjs.org/@esbuild/openbsd-x64/-/openbsd-x64-0.20.2.tgz", "integrity": "sha512-eMpKlV0SThJmmJgiVyN9jTPJ2VBPquf6Kt/nAoo6DgHAoN57K15ZghiHaMvqjCye/uU4X5u3YSMgVBI1h3vKrQ==", - "cpu": ["x64"], + "cpu": [ + "x64" + ], "optional": true, - "os": ["openbsd"], + "os": [ + "openbsd" + ], "engines": { "node": ">=12" } @@ -3642,9 +3810,13 @@ "version": "0.20.2", "resolved": "https://registry.npmjs.org/@esbuild/sunos-x64/-/sunos-x64-0.20.2.tgz", "integrity": "sha512-2UyFtRC6cXLyejf/YEld4Hajo7UHILetzE1vsRcGL3earZEW77JxrFjH4Ez2qaTiEfMgAXxfAZCm1fvM/G/o8w==", - "cpu": ["x64"], + "cpu": [ + "x64" + ], "optional": true, - "os": ["sunos"], + "os": [ + "sunos" + ], "engines": { "node": ">=12" } @@ -3653,9 +3825,13 @@ "version": "0.20.2", "resolved": "https://registry.npmjs.org/@esbuild/win32-arm64/-/win32-arm64-0.20.2.tgz", "integrity": "sha512-GRibxoawM9ZCnDxnP3usoUDO9vUkpAxIIZ6GQI+IlVmr5kP3zUq+l17xELTHMWTWzjxa2guPNyrpq1GWmPvcGQ==", - "cpu": ["arm64"], + "cpu": [ + "arm64" + ], "optional": true, - "os": ["win32"], + "os": [ + "win32" + ], "engines": { "node": ">=12" } @@ -3664,9 +3840,13 @@ "version": "0.20.2", "resolved": "https://registry.npmjs.org/@esbuild/win32-ia32/-/win32-ia32-0.20.2.tgz", "integrity": "sha512-HfLOfn9YWmkSKRQqovpnITazdtquEW8/SoHW7pWpuEeguaZI4QnCRW6b+oZTztdBnZOS2hqJ6im/D5cPzBTTlQ==", - "cpu": ["ia32"], + "cpu": [ + "ia32" + ], "optional": true, - "os": ["win32"], + "os": [ + "win32" + ], "engines": { "node": ">=12" } @@ -3675,9 +3855,13 @@ "version": "0.20.2", "resolved": "https://registry.npmjs.org/@esbuild/win32-x64/-/win32-x64-0.20.2.tgz", "integrity": "sha512-N49X4lJX27+l9jbLKSqZ6bKNjzQvHaT8IIFUy+YIqmXQdjYCToGWwOItDrfby14c78aDd5NHQl29xingXfCdLQ==", - "cpu": ["x64"], + "cpu": [ + "x64" + ], "optional": true, - "os": ["win32"], + "os": [ + "win32" + ], "engines": { "node": ">=12" } @@ -4100,9 +4284,13 @@ "version": "14.1.4", "resolved": "https://registry.npmjs.org/@next/swc-darwin-arm64/-/swc-darwin-arm64-14.1.4.tgz", "integrity": "sha512-ubmUkbmW65nIAOmoxT1IROZdmmJMmdYvXIe8211send9ZYJu+SqxSnJM4TrPj9wmL6g9Atvj0S/2cFmMSS99jg==", - "cpu": ["arm64"], + "cpu": [ + "arm64" + ], "optional": true, - "os": ["darwin"], + "os": [ + "darwin" + ], "engines": { "node": ">= 10" } @@ -4111,9 +4299,13 @@ "version": "14.1.4", "resolved": "https://registry.npmjs.org/@next/swc-darwin-x64/-/swc-darwin-x64-14.1.4.tgz", "integrity": "sha512-b0Xo1ELj3u7IkZWAKcJPJEhBop117U78l70nfoQGo4xUSvv0PJSTaV4U9xQBLvZlnjsYkc8RwQN1HoH/oQmLlQ==", - "cpu": ["x64"], + "cpu": [ + "x64" + ], "optional": true, - "os": ["darwin"], + "os": [ + "darwin" + ], "engines": { "node": ">= 10" } @@ -4122,9 +4314,13 @@ "version": "14.1.4", "resolved": "https://registry.npmjs.org/@next/swc-linux-arm64-gnu/-/swc-linux-arm64-gnu-14.1.4.tgz", "integrity": "sha512-457G0hcLrdYA/u1O2XkRMsDKId5VKe3uKPvrKVOyuARa6nXrdhJOOYU9hkKKyQTMru1B8qEP78IAhf/1XnVqKA==", - "cpu": ["arm64"], + "cpu": [ + "arm64" + ], "optional": true, - "os": ["linux"], + "os": [ + "linux" + ], "engines": { "node": ">= 10" } @@ -4133,9 +4329,13 @@ "version": "14.1.4", "resolved": "https://registry.npmjs.org/@next/swc-linux-arm64-musl/-/swc-linux-arm64-musl-14.1.4.tgz", "integrity": "sha512-l/kMG+z6MB+fKA9KdtyprkTQ1ihlJcBh66cf0HvqGP+rXBbOXX0dpJatjZbHeunvEHoBBS69GYQG5ry78JMy3g==", - "cpu": ["arm64"], + "cpu": [ + "arm64" + ], "optional": true, - "os": ["linux"], + "os": [ + "linux" + ], "engines": { "node": ">= 10" } @@ -4144,9 +4344,13 @@ "version": "14.1.4", "resolved": "https://registry.npmjs.org/@next/swc-linux-x64-gnu/-/swc-linux-x64-gnu-14.1.4.tgz", "integrity": "sha512-BapIFZ3ZRnvQ1uWbmqEGJuPT9cgLwvKtxhK/L2t4QYO7l+/DxXuIGjvp1x8rvfa/x1FFSsipERZK70pewbtJtw==", - "cpu": ["x64"], + "cpu": [ + "x64" + ], "optional": true, - "os": ["linux"], + "os": [ + "linux" + ], "engines": { "node": ">= 10" } @@ -4155,9 +4359,13 @@ "version": "14.1.4", "resolved": "https://registry.npmjs.org/@next/swc-linux-x64-musl/-/swc-linux-x64-musl-14.1.4.tgz", "integrity": "sha512-mqVxTwk4XuBl49qn2A5UmzFImoL1iLm0KQQwtdRJRKl21ylQwwGCxJtIYo2rbfkZHoSKlh/YgztY0qH3wG1xIg==", - "cpu": ["x64"], + "cpu": [ + "x64" + ], "optional": true, - "os": ["linux"], + "os": [ + "linux" + ], "engines": { "node": ">= 10" } @@ -4166,9 +4374,13 @@ "version": "14.1.4", "resolved": "https://registry.npmjs.org/@next/swc-win32-arm64-msvc/-/swc-win32-arm64-msvc-14.1.4.tgz", "integrity": "sha512-xzxF4ErcumXjO2Pvg/wVGrtr9QQJLk3IyQX1ddAC/fi6/5jZCZ9xpuL9Tzc4KPWMFq8GGWFVDMshZOdHGdkvag==", - "cpu": ["arm64"], + "cpu": [ + "arm64" + ], "optional": true, - "os": ["win32"], + "os": [ + "win32" + ], "engines": { "node": ">= 10" } @@ -4177,9 +4389,13 @@ "version": "14.1.4", "resolved": "https://registry.npmjs.org/@next/swc-win32-ia32-msvc/-/swc-win32-ia32-msvc-14.1.4.tgz", "integrity": "sha512-WZiz8OdbkpRw6/IU/lredZWKKZopUMhcI2F+XiMAcPja0uZYdMTZQRoQ0WZcvinn9xZAidimE7tN9W5v9Yyfyw==", - "cpu": ["ia32"], + "cpu": [ + "ia32" + ], "optional": true, - "os": ["win32"], + "os": [ + "win32" + ], "engines": { "node": ">= 10" } @@ -4188,9 +4404,13 @@ "version": "14.1.4", "resolved": "https://registry.npmjs.org/@next/swc-win32-x64-msvc/-/swc-win32-x64-msvc-14.1.4.tgz", "integrity": "sha512-4Rto21sPfw555sZ/XNLqfxDUNeLhNYGO2dlPqsnuCg8N8a2a9u1ltqBOPQ4vj1Gf7eJC0W2hHG2eYUHuiXgY2w==", - "cpu": ["x64"], + "cpu": [ + "x64" + ], "optional": true, - "os": ["win32"], + "os": [ + "win32" + ], "engines": { "node": ">= 10" } @@ -9410,118 +9630,170 @@ "version": "4.9.6", "resolved": "https://registry.npmjs.org/@rollup/rollup-android-arm-eabi/-/rollup-android-arm-eabi-4.9.6.tgz", "integrity": "sha512-MVNXSSYN6QXOulbHpLMKYi60ppyO13W9my1qogeiAqtjb2yR4LSmfU2+POvDkLzhjYLXz9Rf9+9a3zFHW1Lecg==", - "cpu": ["arm"], + "cpu": [ + "arm" + ], "dev": true, "optional": true, - "os": ["android"] + "os": [ + "android" + ] }, "node_modules/@rollup/rollup-android-arm64": { "version": "4.9.6", "resolved": "https://registry.npmjs.org/@rollup/rollup-android-arm64/-/rollup-android-arm64-4.9.6.tgz", "integrity": "sha512-T14aNLpqJ5wzKNf5jEDpv5zgyIqcpn1MlwCrUXLrwoADr2RkWA0vOWP4XxbO9aiO3dvMCQICZdKeDrFl7UMClw==", - "cpu": ["arm64"], + "cpu": [ + "arm64" + ], "dev": true, "optional": true, - "os": ["android"] + "os": [ + "android" + ] }, "node_modules/@rollup/rollup-darwin-arm64": { "version": "4.9.6", "resolved": "https://registry.npmjs.org/@rollup/rollup-darwin-arm64/-/rollup-darwin-arm64-4.9.6.tgz", "integrity": "sha512-CqNNAyhRkTbo8VVZ5R85X73H3R5NX9ONnKbXuHisGWC0qRbTTxnF1U4V9NafzJbgGM0sHZpdO83pLPzq8uOZFw==", - "cpu": ["arm64"], + "cpu": [ + "arm64" + ], "dev": true, "optional": true, - "os": ["darwin"] + "os": [ + "darwin" + ] }, "node_modules/@rollup/rollup-darwin-x64": { "version": "4.9.6", "resolved": "https://registry.npmjs.org/@rollup/rollup-darwin-x64/-/rollup-darwin-x64-4.9.6.tgz", "integrity": "sha512-zRDtdJuRvA1dc9Mp6BWYqAsU5oeLixdfUvkTHuiYOHwqYuQ4YgSmi6+/lPvSsqc/I0Omw3DdICx4Tfacdzmhog==", - "cpu": ["x64"], + "cpu": [ + "x64" + ], "dev": true, "optional": true, - "os": ["darwin"] + "os": [ + "darwin" + ] }, "node_modules/@rollup/rollup-linux-arm-gnueabihf": { "version": "4.9.6", "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm-gnueabihf/-/rollup-linux-arm-gnueabihf-4.9.6.tgz", "integrity": "sha512-oNk8YXDDnNyG4qlNb6is1ojTOGL/tRhbbKeE/YuccItzerEZT68Z9gHrY3ROh7axDc974+zYAPxK5SH0j/G+QQ==", - "cpu": ["arm"], + "cpu": [ + "arm" + ], "dev": true, "optional": true, - "os": ["linux"] + "os": [ + "linux" + ] }, "node_modules/@rollup/rollup-linux-arm64-gnu": { "version": "4.9.6", "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm64-gnu/-/rollup-linux-arm64-gnu-4.9.6.tgz", "integrity": "sha512-Z3O60yxPtuCYobrtzjo0wlmvDdx2qZfeAWTyfOjEDqd08kthDKexLpV97KfAeUXPosENKd8uyJMRDfFMxcYkDQ==", - "cpu": ["arm64"], + "cpu": [ + "arm64" + ], "dev": true, "optional": true, - "os": ["linux"] + "os": [ + "linux" + ] }, "node_modules/@rollup/rollup-linux-arm64-musl": { "version": "4.9.6", "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm64-musl/-/rollup-linux-arm64-musl-4.9.6.tgz", "integrity": "sha512-gpiG0qQJNdYEVad+1iAsGAbgAnZ8j07FapmnIAQgODKcOTjLEWM9sRb+MbQyVsYCnA0Im6M6QIq6ax7liws6eQ==", - "cpu": ["arm64"], + "cpu": [ + "arm64" + ], "dev": true, "optional": true, - "os": ["linux"] + "os": [ + "linux" + ] }, "node_modules/@rollup/rollup-linux-riscv64-gnu": { "version": "4.9.6", "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-riscv64-gnu/-/rollup-linux-riscv64-gnu-4.9.6.tgz", "integrity": "sha512-+uCOcvVmFUYvVDr27aiyun9WgZk0tXe7ThuzoUTAukZJOwS5MrGbmSlNOhx1j80GdpqbOty05XqSl5w4dQvcOA==", - "cpu": ["riscv64"], + "cpu": [ + "riscv64" + ], "dev": true, "optional": true, - "os": ["linux"] + "os": [ + "linux" + ] }, "node_modules/@rollup/rollup-linux-x64-gnu": { "version": "4.9.6", "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-x64-gnu/-/rollup-linux-x64-gnu-4.9.6.tgz", "integrity": "sha512-HUNqM32dGzfBKuaDUBqFB7tP6VMN74eLZ33Q9Y1TBqRDn+qDonkAUyKWwF9BR9unV7QUzffLnz9GrnKvMqC/fw==", - "cpu": ["x64"], + "cpu": [ + "x64" + ], "dev": true, "optional": true, - "os": ["linux"] + "os": [ + "linux" + ] }, "node_modules/@rollup/rollup-linux-x64-musl": { "version": "4.9.6", "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-x64-musl/-/rollup-linux-x64-musl-4.9.6.tgz", "integrity": "sha512-ch7M+9Tr5R4FK40FHQk8VnML0Szi2KRujUgHXd/HjuH9ifH72GUmw6lStZBo3c3GB82vHa0ZoUfjfcM7JiiMrQ==", - "cpu": ["x64"], + "cpu": [ + "x64" + ], "dev": true, "optional": true, - "os": ["linux"] + "os": [ + "linux" + ] }, "node_modules/@rollup/rollup-win32-arm64-msvc": { "version": "4.9.6", "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-arm64-msvc/-/rollup-win32-arm64-msvc-4.9.6.tgz", "integrity": "sha512-VD6qnR99dhmTQ1mJhIzXsRcTBvTjbfbGGwKAHcu+52cVl15AC/kplkhxzW/uT0Xl62Y/meBKDZvoJSJN+vTeGA==", - "cpu": ["arm64"], + "cpu": [ + "arm64" + ], "dev": true, "optional": true, - "os": ["win32"] + "os": [ + "win32" + ] }, "node_modules/@rollup/rollup-win32-ia32-msvc": { "version": "4.9.6", "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-ia32-msvc/-/rollup-win32-ia32-msvc-4.9.6.tgz", "integrity": "sha512-J9AFDq/xiRI58eR2NIDfyVmTYGyIZmRcvcAoJ48oDld/NTR8wyiPUu2X/v1navJ+N/FGg68LEbX3Ejd6l8B7MQ==", - "cpu": ["ia32"], + "cpu": [ + "ia32" + ], "dev": true, "optional": true, - "os": ["win32"] + "os": [ + "win32" + ] }, "node_modules/@rollup/rollup-win32-x64-msvc": { "version": "4.9.6", "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-x64-msvc/-/rollup-win32-x64-msvc-4.9.6.tgz", "integrity": "sha512-jqzNLhNDvIZOrt69Ce4UjGRpXJBzhUBzawMwnaDAwyHriki3XollsewxWzOzz+4yOFDkuJHtTsZFwMxhYJWmLQ==", - "cpu": ["x64"], + "cpu": [ + "x64" + ], "dev": true, "optional": true, - "os": ["win32"] + "os": [ + "win32" + ] }, "node_modules/@rushstack/eslint-patch": { "version": "1.6.0", @@ -13307,10 +13579,14 @@ "version": "1.3.100", "resolved": "https://registry.npmjs.org/@swc/core-darwin-arm64/-/core-darwin-arm64-1.3.100.tgz", "integrity": "sha512-XVWFsKe6ei+SsDbwmsuRkYck1SXRpO60Hioa4hoLwR8fxbA9eVp6enZtMxzVVMBi8ej5seZ4HZQeAWepbukiBw==", - "cpu": ["arm64"], + "cpu": [ + "arm64" + ], "dev": true, "optional": true, - "os": ["darwin"], + "os": [ + "darwin" + ], "engines": { "node": ">=10" } @@ -15378,7 +15654,9 @@ "resolved": "https://registry.npmjs.org/ansi-html-community/-/ansi-html-community-0.0.8.tgz", "integrity": "sha512-1APHAyr3+PCamwNw3bXCPp4HFLONZt/yIH0sZp0/469KWNTEy+qN5jQ3GVX6DMZ1UXAi34yVwtTeaG/HpBuuzw==", "dev": true, - "engines": ["node >= 0.8.0"], + "engines": [ + "node >= 0.8.0" + ], "bin": { "ansi-html": "bin/ansi-html" } @@ -17142,7 +17420,9 @@ "resolved": "https://registry.npmjs.org/concat-stream/-/concat-stream-1.6.2.tgz", "integrity": "sha512-27HBghJxjiZtIk3Ycvn/4kbJk/1uZuJFfuPEns6LaEvpvG1f0hTea8lilrouyo9mVc2GWdcEZ8OLoGmSADlrCw==", "dev": true, - "engines": ["node >= 0.8"], + "engines": [ + "node >= 0.8" + ], "dependencies": { "buffer-from": "^1.0.0", "inherits": "^2.0.3", @@ -18990,10 +19270,14 @@ "version": "0.18.17", "resolved": "https://registry.npmjs.org/@esbuild/android-arm/-/android-arm-0.18.17.tgz", "integrity": "sha512-wHsmJG/dnL3OkpAcwbgoBTTMHVi4Uyou3F5mf58ZtmUyIKfcdA7TROav/6tCzET4A3QW2Q2FC+eFneMU+iyOxg==", - "cpu": ["arm"], + "cpu": [ + "arm" + ], "dev": true, "optional": true, - "os": ["android"], + "os": [ + "android" + ], "engines": { "node": ">=12" } @@ -19002,10 +19286,14 @@ "version": "0.18.17", "resolved": "https://registry.npmjs.org/@esbuild/android-arm64/-/android-arm64-0.18.17.tgz", "integrity": "sha512-9np+YYdNDed5+Jgr1TdWBsozZ85U1Oa3xW0c7TWqH0y2aGghXtZsuT8nYRbzOMcl0bXZXjOGbksoTtVOlWrRZg==", - "cpu": ["arm64"], + "cpu": [ + "arm64" + ], "dev": true, "optional": true, - "os": ["android"], + "os": [ + "android" + ], "engines": { "node": ">=12" } @@ -19014,10 +19302,14 @@ "version": "0.18.17", "resolved": "https://registry.npmjs.org/@esbuild/android-x64/-/android-x64-0.18.17.tgz", "integrity": "sha512-O+FeWB/+xya0aLg23hHEM2E3hbfwZzjqumKMSIqcHbNvDa+dza2D0yLuymRBQQnC34CWrsJUXyH2MG5VnLd6uw==", - "cpu": ["x64"], + "cpu": [ + "x64" + ], "dev": true, "optional": true, - "os": ["android"], + "os": [ + "android" + ], "engines": { "node": ">=12" } @@ -19026,10 +19318,14 @@ "version": "0.18.17", "resolved": "https://registry.npmjs.org/@esbuild/darwin-x64/-/darwin-x64-0.18.17.tgz", "integrity": "sha512-XDre+J5YeIJDMfp3n0279DFNrGCXlxOuGsWIkRb1NThMZ0BsrWXoTg23Jer7fEXQ9Ye5QjrvXpxnhzl3bHtk0g==", - "cpu": ["x64"], + "cpu": [ + "x64" + ], "dev": true, "optional": true, - "os": ["darwin"], + "os": [ + "darwin" + ], "engines": { "node": ">=12" } @@ -19038,10 +19334,14 @@ "version": "0.18.17", "resolved": "https://registry.npmjs.org/@esbuild/freebsd-arm64/-/freebsd-arm64-0.18.17.tgz", "integrity": "sha512-cjTzGa3QlNfERa0+ptykyxs5A6FEUQQF0MuilYXYBGdBxD3vxJcKnzDlhDCa1VAJCmAxed6mYhA2KaJIbtiNuQ==", - "cpu": ["arm64"], + "cpu": [ + "arm64" + ], "dev": true, "optional": true, - "os": ["freebsd"], + "os": [ + "freebsd" + ], "engines": { "node": ">=12" } @@ -19050,10 +19350,14 @@ "version": "0.18.17", "resolved": "https://registry.npmjs.org/@esbuild/freebsd-x64/-/freebsd-x64-0.18.17.tgz", "integrity": "sha512-sOxEvR8d7V7Kw8QqzxWc7bFfnWnGdaFBut1dRUYtu+EIRXefBc/eIsiUiShnW0hM3FmQ5Zf27suDuHsKgZ5QrA==", - "cpu": ["x64"], + "cpu": [ + "x64" + ], "dev": true, "optional": true, - "os": ["freebsd"], + "os": [ + "freebsd" + ], "engines": { "node": ">=12" } @@ -19062,10 +19366,14 @@ "version": "0.18.17", "resolved": "https://registry.npmjs.org/@esbuild/linux-arm/-/linux-arm-0.18.17.tgz", "integrity": "sha512-2d3Lw6wkwgSLC2fIvXKoMNGVaeY8qdN0IC3rfuVxJp89CRfA3e3VqWifGDfuakPmp90+ZirmTfye1n4ncjv2lg==", - "cpu": ["arm"], + "cpu": [ + "arm" + ], "dev": true, "optional": true, - "os": ["linux"], + "os": [ + "linux" + ], "engines": { "node": ">=12" } @@ -19074,10 +19382,14 @@ "version": "0.18.17", "resolved": "https://registry.npmjs.org/@esbuild/linux-arm64/-/linux-arm64-0.18.17.tgz", "integrity": "sha512-c9w3tE7qA3CYWjT+M3BMbwMt+0JYOp3vCMKgVBrCl1nwjAlOMYzEo+gG7QaZ9AtqZFj5MbUc885wuBBmu6aADQ==", - "cpu": ["arm64"], + "cpu": [ + "arm64" + ], "dev": true, "optional": true, - "os": ["linux"], + "os": [ + "linux" + ], "engines": { "node": ">=12" } @@ -19086,10 +19398,14 @@ "version": "0.18.17", "resolved": "https://registry.npmjs.org/@esbuild/linux-ia32/-/linux-ia32-0.18.17.tgz", "integrity": "sha512-1DS9F966pn5pPnqXYz16dQqWIB0dmDfAQZd6jSSpiT9eX1NzKh07J6VKR3AoXXXEk6CqZMojiVDSZi1SlmKVdg==", - "cpu": ["ia32"], + "cpu": [ + "ia32" + ], "dev": true, "optional": true, - "os": ["linux"], + "os": [ + "linux" + ], "engines": { "node": ">=12" } @@ -19098,10 +19414,14 @@ "version": "0.18.17", "resolved": "https://registry.npmjs.org/@esbuild/linux-loong64/-/linux-loong64-0.18.17.tgz", "integrity": "sha512-EvLsxCk6ZF0fpCB6w6eOI2Fc8KW5N6sHlIovNe8uOFObL2O+Mr0bflPHyHwLT6rwMg9r77WOAWb2FqCQrVnwFg==", - "cpu": ["loong64"], + "cpu": [ + "loong64" + ], "dev": true, "optional": true, - "os": ["linux"], + "os": [ + "linux" + ], "engines": { "node": ">=12" } @@ -19110,10 +19430,14 @@ "version": "0.18.17", "resolved": "https://registry.npmjs.org/@esbuild/linux-mips64el/-/linux-mips64el-0.18.17.tgz", "integrity": "sha512-e0bIdHA5p6l+lwqTE36NAW5hHtw2tNRmHlGBygZC14QObsA3bD4C6sXLJjvnDIjSKhW1/0S3eDy+QmX/uZWEYQ==", - "cpu": ["mips64el"], + "cpu": [ + "mips64el" + ], "dev": true, "optional": true, - "os": ["linux"], + "os": [ + "linux" + ], "engines": { "node": ">=12" } @@ -19122,10 +19446,14 @@ "version": "0.18.17", "resolved": "https://registry.npmjs.org/@esbuild/linux-ppc64/-/linux-ppc64-0.18.17.tgz", "integrity": "sha512-BAAilJ0M5O2uMxHYGjFKn4nJKF6fNCdP1E0o5t5fvMYYzeIqy2JdAP88Az5LHt9qBoUa4tDaRpfWt21ep5/WqQ==", - "cpu": ["ppc64"], + "cpu": [ + "ppc64" + ], "dev": true, "optional": true, - "os": ["linux"], + "os": [ + "linux" + ], "engines": { "node": ">=12" } @@ -19134,10 +19462,14 @@ "version": "0.18.17", "resolved": "https://registry.npmjs.org/@esbuild/linux-riscv64/-/linux-riscv64-0.18.17.tgz", "integrity": "sha512-Wh/HW2MPnC3b8BqRSIme/9Zhab36PPH+3zam5pqGRH4pE+4xTrVLx2+XdGp6fVS3L2x+DrsIcsbMleex8fbE6g==", - "cpu": ["riscv64"], + "cpu": [ + "riscv64" + ], "dev": true, "optional": true, - "os": ["linux"], + "os": [ + "linux" + ], "engines": { "node": ">=12" } @@ -19146,10 +19478,14 @@ "version": "0.18.17", "resolved": "https://registry.npmjs.org/@esbuild/linux-s390x/-/linux-s390x-0.18.17.tgz", "integrity": "sha512-j/34jAl3ul3PNcK3pfI0NSlBANduT2UO5kZ7FCaK33XFv3chDhICLY8wJJWIhiQ+YNdQ9dxqQctRg2bvrMlYgg==", - "cpu": ["s390x"], + "cpu": [ + "s390x" + ], "dev": true, "optional": true, - "os": ["linux"], + "os": [ + "linux" + ], "engines": { "node": ">=12" } @@ -19158,10 +19494,14 @@ "version": "0.18.17", "resolved": "https://registry.npmjs.org/@esbuild/linux-x64/-/linux-x64-0.18.17.tgz", "integrity": "sha512-QM50vJ/y+8I60qEmFxMoxIx4de03pGo2HwxdBeFd4nMh364X6TIBZ6VQ5UQmPbQWUVWHWws5MmJXlHAXvJEmpQ==", - "cpu": ["x64"], + "cpu": [ + "x64" + ], "dev": true, "optional": true, - "os": ["linux"], + "os": [ + "linux" + ], "engines": { "node": ">=12" } @@ -19170,10 +19510,14 @@ "version": "0.18.17", "resolved": "https://registry.npmjs.org/@esbuild/netbsd-x64/-/netbsd-x64-0.18.17.tgz", "integrity": "sha512-/jGlhWR7Sj9JPZHzXyyMZ1RFMkNPjC6QIAan0sDOtIo2TYk3tZn5UDrkE0XgsTQCxWTTOcMPf9p6Rh2hXtl5TQ==", - "cpu": ["x64"], + "cpu": [ + "x64" + ], "dev": true, "optional": true, - "os": ["netbsd"], + "os": [ + "netbsd" + ], "engines": { "node": ">=12" } @@ -19182,10 +19526,14 @@ "version": "0.18.17", "resolved": "https://registry.npmjs.org/@esbuild/openbsd-x64/-/openbsd-x64-0.18.17.tgz", "integrity": "sha512-rSEeYaGgyGGf4qZM2NonMhMOP/5EHp4u9ehFiBrg7stH6BYEEjlkVREuDEcQ0LfIl53OXLxNbfuIj7mr5m29TA==", - "cpu": ["x64"], + "cpu": [ + "x64" + ], "dev": true, "optional": true, - "os": ["openbsd"], + "os": [ + "openbsd" + ], "engines": { "node": ">=12" } @@ -19194,10 +19542,14 @@ "version": "0.18.17", "resolved": "https://registry.npmjs.org/@esbuild/sunos-x64/-/sunos-x64-0.18.17.tgz", "integrity": "sha512-Y7ZBbkLqlSgn4+zot4KUNYst0bFoO68tRgI6mY2FIM+b7ZbyNVtNbDP5y8qlu4/knZZ73fgJDlXID+ohY5zt5g==", - "cpu": ["x64"], + "cpu": [ + "x64" + ], "dev": true, "optional": true, - "os": ["sunos"], + "os": [ + "sunos" + ], "engines": { "node": ">=12" } @@ -19206,10 +19558,14 @@ "version": "0.18.17", "resolved": "https://registry.npmjs.org/@esbuild/win32-arm64/-/win32-arm64-0.18.17.tgz", "integrity": "sha512-bwPmTJsEQcbZk26oYpc4c/8PvTY3J5/QK8jM19DVlEsAB41M39aWovWoHtNm78sd6ip6prilxeHosPADXtEJFw==", - "cpu": ["arm64"], + "cpu": [ + "arm64" + ], "dev": true, "optional": true, - "os": ["win32"], + "os": [ + "win32" + ], "engines": { "node": ">=12" } @@ -19218,10 +19574,14 @@ "version": "0.18.17", "resolved": "https://registry.npmjs.org/@esbuild/win32-ia32/-/win32-ia32-0.18.17.tgz", "integrity": "sha512-H/XaPtPKli2MhW+3CQueo6Ni3Avggi6hP/YvgkEe1aSaxw+AeO8MFjq8DlgfTd9Iz4Yih3QCZI6YLMoyccnPRg==", - "cpu": ["ia32"], + "cpu": [ + "ia32" + ], "dev": true, "optional": true, - "os": ["win32"], + "os": [ + "win32" + ], "engines": { "node": ">=12" } @@ -19230,10 +19590,14 @@ "version": "0.18.17", "resolved": "https://registry.npmjs.org/@esbuild/win32-x64/-/win32-x64-0.18.17.tgz", "integrity": "sha512-fGEb8f2BSA3CW7riJVurug65ACLuQAzKq0SSqkY2b2yHHH0MzDfbLyKIGzHwOI/gkHcxM/leuSW6D5w/LMNitA==", - "cpu": ["x64"], + "cpu": [ + "x64" + ], "dev": true, "optional": true, - "os": ["win32"], + "os": [ + "win32" + ], "engines": { "node": ">=12" } @@ -20254,7 +20618,9 @@ "version": "1.3.0", "resolved": "https://registry.npmjs.org/extsprintf/-/extsprintf-1.3.0.tgz", "integrity": "sha512-11Ndz7Nv+mvAC1j0ktTa7fAb0vLyGGX+rMHNBYQviQDGU0Hw7lhctJANqbPhu9nV9/izT/IntTgZ7Im/9LJs9g==", - "engines": ["node >=0.6.0"] + "engines": [ + "node >=0.6.0" + ] }, "node_modules/fast-deep-equal": { "version": "3.1.3", @@ -20935,7 +21301,9 @@ "integrity": "sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==", "hasInstallScript": true, "optional": true, - "os": ["darwin"], + "os": [ + "darwin" + ], "engines": { "node": "^8.16.0 || ^10.6.0 || >=11.0.0" } @@ -27039,7 +27407,9 @@ "dev": true, "hasInstallScript": true, "optional": true, - "os": ["darwin"], + "os": [ + "darwin" + ], "engines": { "node": "^8.16.0 || ^10.6.0 || >=11.0.0" } @@ -32219,7 +32589,9 @@ "version": "1.10.0", "resolved": "https://registry.npmjs.org/verror/-/verror-1.10.0.tgz", "integrity": "sha512-ZZKSmDAEFOijERBLkmYfJ+vmk3w+7hOLYDNkRCuRuMJGEmqYNCNLyBBFwWKVMhfwaEF3WOd0Zlw86U/WC/+nYw==", - "engines": ["node >=0.6.0"], + "engines": [ + "node >=0.6.0" + ], "dependencies": { "assert-plus": "^1.0.0", "core-util-is": "1.0.2", @@ -32476,10 +32848,14 @@ "version": "0.19.12", "resolved": "https://registry.npmjs.org/@esbuild/darwin-arm64/-/darwin-arm64-0.19.12.tgz", "integrity": "sha512-B6IeSgZgtEzGC42jsI+YYu9Z3HKRxp8ZT3cqhvliEHovq8HSX2YX8lNocDn79gCKJXOSaEot9MVYky7AKjCs8g==", - "cpu": ["arm64"], + "cpu": [ + "arm64" + ], "dev": true, "optional": true, - "os": ["darwin"], + "os": [ + "darwin" + ], "engines": { "node": ">=12" } From b249de8cdc5aa546a060336cd41b1911de207475 Mon Sep 17 00:00:00 2001 From: Nick Taylor Date: Sat, 2 Nov 2024 11:18:48 -0400 Subject: [PATCH 8/8] chore: reverted unnecessary changes --- .eslintrc.json | 8 +- lib/utils/color.json | 2310 +++++++++++++++++++++--------------------- npm-shrinkwrap.json | 32 +- 3 files changed, 1178 insertions(+), 1172 deletions(-) diff --git a/.eslintrc.json b/.eslintrc.json index 4e1823f829..f67715a617 100644 --- a/.eslintrc.json +++ b/.eslintrc.json @@ -7,19 +7,19 @@ }, "rules": { "jsx-a11y/label-has-associated-control": "warn", - "jsx-a11y/anchor-has-content": "warn", - "jsx-a11y/role-supports-aria-props": "warn", + "jsx-a11y/anchor-has-content":"warn", + "jsx-a11y/role-supports-aria-props":"warn", "jsx-a11y/no-noninteractive-element-to-interactive-role": "warn", "jsx-a11y/click-events-have-key-events": "Warn", "jsx-a11y/no-static-element-interactions": "warn", "jsx-a11y/no-autofocus": "warn", - "jsx-a11y/img-redundant-alt": "warn", + "jsx-a11y/img-redundant-alt":"warn", "jsx-a11y/mouse-events-have-key-events": "warn", "jsx-a11y/iframe-has-title": "warn", "jsx-a11y/no-noninteractive-tabindex": "warn", "jsx-a11y/anchor-is-valid": "warn", "jsx-a11y/no-noninteractive-element-interactions": "warn", - "jsx-a11y/interactive-supports-focus": "warn", + "jsx-a11y/interactive-supports-focus": "warn", "jsx-quotes": "error", "unused-imports/no-unused-imports": "error", "import/order": [ diff --git a/lib/utils/color.json b/lib/utils/color.json index c36b8a0a49..f868e860fa 100644 --- a/lib/utils/color.json +++ b/lib/utils/color.json @@ -1,2310 +1,2310 @@ { "1C Enterprise": { - "color": "#814CCC", - "url": "https://github.com/trending?l=1C-Enterprise" + "color": "#814CCC", + "url": "https://github.com/trending?l=1C-Enterprise" }, "2-Dimensional Array": { - "color": "#38761D", - "url": "https://github.com/trending?l=2-Dimensional-Array" + "color": "#38761D", + "url": "https://github.com/trending?l=2-Dimensional-Array" }, "4D": { - "color": "#004289", - "url": "https://github.com/trending?l=4D" + "color": "#004289", + "url": "https://github.com/trending?l=4D" }, "ABAP": { - "color": "#E8274B", - "url": "https://github.com/trending?l=ABAP" + "color": "#E8274B", + "url": "https://github.com/trending?l=ABAP" }, "ABAP CDS": { - "color": "#555e25", - "url": "https://github.com/trending?l=ABAP-CDS" + "color": "#555e25", + "url": "https://github.com/trending?l=ABAP-CDS" }, "ActionScript": { - "color": "#882B0F", - "url": "https://github.com/trending?l=ActionScript" + "color": "#882B0F", + "url": "https://github.com/trending?l=ActionScript" }, "Ada": { - "color": "#02f88c", - "url": "https://github.com/trending?l=Ada" + "color": "#02f88c", + "url": "https://github.com/trending?l=Ada" }, "Adobe Font Metrics": { - "color": "#fa0f00", - "url": "https://github.com/trending?l=Adobe-Font-Metrics" + "color": "#fa0f00", + "url": "https://github.com/trending?l=Adobe-Font-Metrics" }, "Agda": { - "color": "#315665", - "url": "https://github.com/trending?l=Agda" + "color": "#315665", + "url": "https://github.com/trending?l=Agda" }, "AGS Script": { - "color": "#B9D9FF", - "url": "https://github.com/trending?l=AGS-Script" + "color": "#B9D9FF", + "url": "https://github.com/trending?l=AGS-Script" }, "AIDL": { - "color": "#34EB6B", - "url": "https://github.com/trending?l=AIDL" + "color": "#34EB6B", + "url": "https://github.com/trending?l=AIDL" }, "AL": { - "color": "#3AA2B5", - "url": "https://github.com/trending?l=AL" + "color": "#3AA2B5", + "url": "https://github.com/trending?l=AL" }, "Alloy": { - "color": "#64C800", - "url": "https://github.com/trending?l=Alloy" + "color": "#64C800", + "url": "https://github.com/trending?l=Alloy" }, "Alpine Abuild": { - "color": "#0D597F", - "url": "https://github.com/trending?l=Alpine-Abuild" + "color": "#0D597F", + "url": "https://github.com/trending?l=Alpine-Abuild" }, "Altium Designer": { - "color": "#A89663", - "url": "https://github.com/trending?l=Altium-Designer" + "color": "#A89663", + "url": "https://github.com/trending?l=Altium-Designer" }, "AMPL": { - "color": "#E6EFBB", - "url": "https://github.com/trending?l=AMPL" + "color": "#E6EFBB", + "url": "https://github.com/trending?l=AMPL" }, "AngelScript": { - "color": "#C7D7DC", - "url": "https://github.com/trending?l=AngelScript" + "color": "#C7D7DC", + "url": "https://github.com/trending?l=AngelScript" }, "Ant Build System": { - "color": "#A9157E", - "url": "https://github.com/trending?l=Ant-Build-System" + "color": "#A9157E", + "url": "https://github.com/trending?l=Ant-Build-System" }, "Antlers": { - "color": "#ff269e", - "url": "https://github.com/trending?l=Antlers" + "color": "#ff269e", + "url": "https://github.com/trending?l=Antlers" }, "ANTLR": { - "color": "#9DC3FF", - "url": "https://github.com/trending?l=ANTLR" + "color": "#9DC3FF", + "url": "https://github.com/trending?l=ANTLR" }, "ApacheConf": { - "color": "#d12127", - "url": "https://github.com/trending?l=ApacheConf" + "color": "#d12127", + "url": "https://github.com/trending?l=ApacheConf" }, "Apex": { - "color": "#1797c0", - "url": "https://github.com/trending?l=Apex" + "color": "#1797c0", + "url": "https://github.com/trending?l=Apex" }, "API Blueprint": { - "color": "#2ACCA8", - "url": "https://github.com/trending?l=API-Blueprint" + "color": "#2ACCA8", + "url": "https://github.com/trending?l=API-Blueprint" }, "APL": { - "color": "#5A8164", - "url": "https://github.com/trending?l=APL" + "color": "#5A8164", + "url": "https://github.com/trending?l=APL" }, "Apollo Guidance Computer": { - "color": "#0B3D91", - "url": "https://github.com/trending?l=Apollo-Guidance-Computer" + "color": "#0B3D91", + "url": "https://github.com/trending?l=Apollo-Guidance-Computer" }, "AppleScript": { - "color": "#101F1F", - "url": "https://github.com/trending?l=AppleScript" + "color": "#101F1F", + "url": "https://github.com/trending?l=AppleScript" }, "Arc": { - "color": "#aa2afe", - "url": "https://github.com/trending?l=Arc" + "color": "#aa2afe", + "url": "https://github.com/trending?l=Arc" }, "AsciiDoc": { - "color": "#73a0c5", - "url": "https://github.com/trending?l=AsciiDoc" + "color": "#73a0c5", + "url": "https://github.com/trending?l=AsciiDoc" }, "ASL": { - "color": null, - "url": "https://github.com/trending?l=ASL" + "color": null, + "url": "https://github.com/trending?l=ASL" }, "ASP.NET": { - "color": "#9400ff", - "url": "https://github.com/trending?l=ASP.NET" + "color": "#9400ff", + "url": "https://github.com/trending?l=ASP.NET" }, "AspectJ": { - "color": "#a957b0", - "url": "https://github.com/trending?l=AspectJ" + "color": "#a957b0", + "url": "https://github.com/trending?l=AspectJ" }, "Assembly": { - "color": "#6E4C13", - "url": "https://github.com/trending?l=Assembly" + "color": "#6E4C13", + "url": "https://github.com/trending?l=Assembly" }, "Astro": { - "color": "#ff5a03", - "url": "https://github.com/trending?l=Astro" + "color": "#ff5a03", + "url": "https://github.com/trending?l=Astro" }, "Asymptote": { - "color": "#ff0000", - "url": "https://github.com/trending?l=Asymptote" + "color": "#ff0000", + "url": "https://github.com/trending?l=Asymptote" }, "ATS": { - "color": "#1ac620", - "url": "https://github.com/trending?l=ATS" + "color": "#1ac620", + "url": "https://github.com/trending?l=ATS" }, "Augeas": { - "color": "#9CC134", - "url": "https://github.com/trending?l=Augeas" + "color": "#9CC134", + "url": "https://github.com/trending?l=Augeas" }, "AutoHotkey": { - "color": "#6594b9", - "url": "https://github.com/trending?l=AutoHotkey" + "color": "#6594b9", + "url": "https://github.com/trending?l=AutoHotkey" }, "AutoIt": { - "color": "#1C3552", - "url": "https://github.com/trending?l=AutoIt" + "color": "#1C3552", + "url": "https://github.com/trending?l=AutoIt" }, "Avro IDL": { - "color": "#0040FF", - "url": "https://github.com/trending?l=Avro-IDL" + "color": "#0040FF", + "url": "https://github.com/trending?l=Avro-IDL" }, "Awk": { - "color": "#c30e9b", - "url": "https://github.com/trending?l=Awk" + "color": "#c30e9b", + "url": "https://github.com/trending?l=Awk" }, "Ballerina": { - "color": "#FF5000", - "url": "https://github.com/trending?l=Ballerina" + "color": "#FF5000", + "url": "https://github.com/trending?l=Ballerina" }, "BASIC": { - "color": "#ff0000", - "url": "https://github.com/trending?l=BASIC" + "color": "#ff0000", + "url": "https://github.com/trending?l=BASIC" }, "Batchfile": { - "color": "#C1F12E", - "url": "https://github.com/trending?l=Batchfile" + "color": "#C1F12E", + "url": "https://github.com/trending?l=Batchfile" }, "Beef": { - "color": "#a52f4e", - "url": "https://github.com/trending?l=Beef" + "color": "#a52f4e", + "url": "https://github.com/trending?l=Beef" }, "Befunge": { - "color": null, - "url": "https://github.com/trending?l=Befunge" + "color": null, + "url": "https://github.com/trending?l=Befunge" }, "Berry": { - "color": "#15A13C", - "url": "https://github.com/trending?l=Berry" + "color": "#15A13C", + "url": "https://github.com/trending?l=Berry" }, "BibTeX": { - "color": "#778899", - "url": "https://github.com/trending?l=BibTeX" + "color": "#778899", + "url": "https://github.com/trending?l=BibTeX" }, "Bicep": { - "color": "#519aba", - "url": "https://github.com/trending?l=Bicep" + "color": "#519aba", + "url": "https://github.com/trending?l=Bicep" }, "Bikeshed": { - "color": "#5562ac", - "url": "https://github.com/trending?l=Bikeshed" + "color": "#5562ac", + "url": "https://github.com/trending?l=Bikeshed" }, "Bison": { - "color": "#6A463F", - "url": "https://github.com/trending?l=Bison" + "color": "#6A463F", + "url": "https://github.com/trending?l=Bison" }, "BitBake": { - "color": "#00bce4", - "url": "https://github.com/trending?l=BitBake" + "color": "#00bce4", + "url": "https://github.com/trending?l=BitBake" }, "Blade": { - "color": "#f7523f", - "url": "https://github.com/trending?l=Blade" + "color": "#f7523f", + "url": "https://github.com/trending?l=Blade" }, "BlitzBasic": { - "color": "#00FFAE", - "url": "https://github.com/trending?l=BlitzBasic" + "color": "#00FFAE", + "url": "https://github.com/trending?l=BlitzBasic" }, "BlitzMax": { - "color": "#cd6400", - "url": "https://github.com/trending?l=BlitzMax" + "color": "#cd6400", + "url": "https://github.com/trending?l=BlitzMax" }, "Bluespec": { - "color": "#12223c", - "url": "https://github.com/trending?l=Bluespec" + "color": "#12223c", + "url": "https://github.com/trending?l=Bluespec" }, "Boo": { - "color": "#d4bec1", - "url": "https://github.com/trending?l=Boo" + "color": "#d4bec1", + "url": "https://github.com/trending?l=Boo" }, "Boogie": { - "color": "#c80fa0", - "url": "https://github.com/trending?l=Boogie" + "color": "#c80fa0", + "url": "https://github.com/trending?l=Boogie" }, "Brainfuck": { - "color": "#2F2530", - "url": "https://github.com/trending?l=Brainfuck" + "color": "#2F2530", + "url": "https://github.com/trending?l=Brainfuck" }, "BrighterScript": { - "color": "#66AABB", - "url": "https://github.com/trending?l=BrighterScript" + "color": "#66AABB", + "url": "https://github.com/trending?l=BrighterScript" }, "Brightscript": { - "color": "#662D91", - "url": "https://github.com/trending?l=Brightscript" + "color": "#662D91", + "url": "https://github.com/trending?l=Brightscript" }, "Browserslist": { - "color": "#ffd539", - "url": "https://github.com/trending?l=Browserslist" + "color": "#ffd539", + "url": "https://github.com/trending?l=Browserslist" }, "C": { - "color": "#555555", - "url": "https://github.com/trending?l=C" + "color": "#555555", + "url": "https://github.com/trending?l=C" }, "C#": { - "color": "#178600", - "url": "https://github.com/trending?l=Csharp" + "color": "#178600", + "url": "https://github.com/trending?l=Csharp" }, "C++": { - "color": "#f34b7d", - "url": "https://github.com/trending?l=C++" + "color": "#f34b7d", + "url": "https://github.com/trending?l=C++" }, "C2hs Haskell": { - "color": null, - "url": "https://github.com/trending?l=C2hs-Haskell" + "color": null, + "url": "https://github.com/trending?l=C2hs-Haskell" }, "Cabal Config": { - "color": "#483465", - "url": "https://github.com/trending?l=Cabal-Config" + "color": "#483465", + "url": "https://github.com/trending?l=Cabal-Config" }, "Cadence": { - "color": "#00ef8b", - "url": "https://github.com/trending?l=Cadence" + "color": "#00ef8b", + "url": "https://github.com/trending?l=Cadence" }, "Cairo": { - "color": "#ff4a48", - "url": "https://github.com/trending?l=Cairo" + "color": "#ff4a48", + "url": "https://github.com/trending?l=Cairo" }, "CameLIGO": { - "color": "#3be133", - "url": "https://github.com/trending?l=CameLIGO" + "color": "#3be133", + "url": "https://github.com/trending?l=CameLIGO" }, "CAP CDS": { - "color": "#0092d1", - "url": "https://github.com/trending?l=CAP-CDS" + "color": "#0092d1", + "url": "https://github.com/trending?l=CAP-CDS" }, "Cap'n Proto": { - "color": "#c42727", - "url": "https://github.com/trending?l=Cap'n-Proto" + "color": "#c42727", + "url": "https://github.com/trending?l=Cap'n-Proto" }, "CartoCSS": { - "color": null, - "url": "https://github.com/trending?l=CartoCSS" + "color": null, + "url": "https://github.com/trending?l=CartoCSS" }, "Ceylon": { - "color": "#dfa535", - "url": "https://github.com/trending?l=Ceylon" + "color": "#dfa535", + "url": "https://github.com/trending?l=Ceylon" }, "Chapel": { - "color": "#8dc63f", - "url": "https://github.com/trending?l=Chapel" + "color": "#8dc63f", + "url": "https://github.com/trending?l=Chapel" }, "Charity": { - "color": null, - "url": "https://github.com/trending?l=Charity" + "color": null, + "url": "https://github.com/trending?l=Charity" }, "ChucK": { - "color": "#3f8000", - "url": "https://github.com/trending?l=ChucK" + "color": "#3f8000", + "url": "https://github.com/trending?l=ChucK" }, "Cirru": { - "color": "#ccccff", - "url": "https://github.com/trending?l=Cirru" + "color": "#ccccff", + "url": "https://github.com/trending?l=Cirru" }, "Clarion": { - "color": "#db901e", - "url": "https://github.com/trending?l=Clarion" + "color": "#db901e", + "url": "https://github.com/trending?l=Clarion" }, "Clarity": { - "color": "#5546ff", - "url": "https://github.com/trending?l=Clarity" + "color": "#5546ff", + "url": "https://github.com/trending?l=Clarity" }, "Classic ASP": { - "color": "#6a40fd", - "url": "https://github.com/trending?l=Classic-ASP" + "color": "#6a40fd", + "url": "https://github.com/trending?l=Classic-ASP" }, "Clean": { - "color": "#3F85AF", - "url": "https://github.com/trending?l=Clean" + "color": "#3F85AF", + "url": "https://github.com/trending?l=Clean" }, "Click": { - "color": "#E4E6F3", - "url": "https://github.com/trending?l=Click" + "color": "#E4E6F3", + "url": "https://github.com/trending?l=Click" }, "CLIPS": { - "color": "#00A300", - "url": "https://github.com/trending?l=CLIPS" + "color": "#00A300", + "url": "https://github.com/trending?l=CLIPS" }, "Clojure": { - "color": "#db5855", - "url": "https://github.com/trending?l=Clojure" + "color": "#db5855", + "url": "https://github.com/trending?l=Clojure" }, "Closure Templates": { - "color": "#0d948f", - "url": "https://github.com/trending?l=Closure-Templates" + "color": "#0d948f", + "url": "https://github.com/trending?l=Closure-Templates" }, "Cloud Firestore Security Rules": { - "color": "#FFA000", - "url": "https://github.com/trending?l=Cloud-Firestore-Security-Rules" + "color": "#FFA000", + "url": "https://github.com/trending?l=Cloud-Firestore-Security-Rules" }, "CMake": { - "color": "#DA3434", - "url": "https://github.com/trending?l=CMake" + "color": "#DA3434", + "url": "https://github.com/trending?l=CMake" }, "COBOL": { - "color": null, - "url": "https://github.com/trending?l=COBOL" + "color": null, + "url": "https://github.com/trending?l=COBOL" }, "CodeQL": { - "color": "#140f46", - "url": "https://github.com/trending?l=CodeQL" + "color": "#140f46", + "url": "https://github.com/trending?l=CodeQL" }, "CoffeeScript": { - "color": "#244776", - "url": "https://github.com/trending?l=CoffeeScript" + "color": "#244776", + "url": "https://github.com/trending?l=CoffeeScript" }, "ColdFusion": { - "color": "#ed2cd6", - "url": "https://github.com/trending?l=ColdFusion" + "color": "#ed2cd6", + "url": "https://github.com/trending?l=ColdFusion" }, "ColdFusion CFC": { - "color": "#ed2cd6", - "url": "https://github.com/trending?l=ColdFusion-CFC" + "color": "#ed2cd6", + "url": "https://github.com/trending?l=ColdFusion-CFC" }, "COLLADA": { - "color": "#F1A42B", - "url": "https://github.com/trending?l=COLLADA" + "color": "#F1A42B", + "url": "https://github.com/trending?l=COLLADA" }, "Common Lisp": { - "color": "#3fb68b", - "url": "https://github.com/trending?l=Common-Lisp" + "color": "#3fb68b", + "url": "https://github.com/trending?l=Common-Lisp" }, "Common Workflow Language": { - "color": "#B5314C", - "url": "https://github.com/trending?l=Common-Workflow-Language" + "color": "#B5314C", + "url": "https://github.com/trending?l=Common-Workflow-Language" }, "Component Pascal": { - "color": "#B0CE4E", - "url": "https://github.com/trending?l=Component-Pascal" + "color": "#B0CE4E", + "url": "https://github.com/trending?l=Component-Pascal" }, "Cool": { - "color": null, - "url": "https://github.com/trending?l=Cool" + "color": null, + "url": "https://github.com/trending?l=Cool" }, "Coq": { - "color": "#d0b68c", - "url": "https://github.com/trending?l=Coq" + "color": "#d0b68c", + "url": "https://github.com/trending?l=Coq" }, "Crystal": { - "color": "#000100", - "url": "https://github.com/trending?l=Crystal" + "color": "#000100", + "url": "https://github.com/trending?l=Crystal" }, "CSON": { - "color": "#244776", - "url": "https://github.com/trending?l=CSON" + "color": "#244776", + "url": "https://github.com/trending?l=CSON" }, "Csound": { - "color": "#1a1a1a", - "url": "https://github.com/trending?l=Csound" + "color": "#1a1a1a", + "url": "https://github.com/trending?l=Csound" }, "Csound Document": { - "color": "#1a1a1a", - "url": "https://github.com/trending?l=Csound-Document" + "color": "#1a1a1a", + "url": "https://github.com/trending?l=Csound-Document" }, "Csound Score": { - "color": "#1a1a1a", - "url": "https://github.com/trending?l=Csound-Score" + "color": "#1a1a1a", + "url": "https://github.com/trending?l=Csound-Score" }, "CSS": { - "color": "#563d7c", - "url": "https://github.com/trending?l=CSS" + "color": "#563d7c", + "url": "https://github.com/trending?l=CSS" }, "CSV": { - "color": "#237346", - "url": "https://github.com/trending?l=CSV" + "color": "#237346", + "url": "https://github.com/trending?l=CSV" }, "Cuda": { - "color": "#3A4E3A", - "url": "https://github.com/trending?l=Cuda" + "color": "#3A4E3A", + "url": "https://github.com/trending?l=Cuda" }, "CUE": { - "color": "#5886E1", - "url": "https://github.com/trending?l=CUE" + "color": "#5886E1", + "url": "https://github.com/trending?l=CUE" }, "Curry": { - "color": "#531242", - "url": "https://github.com/trending?l=Curry" + "color": "#531242", + "url": "https://github.com/trending?l=Curry" }, "CWeb": { - "color": "#00007a", - "url": "https://github.com/trending?l=CWeb" + "color": "#00007a", + "url": "https://github.com/trending?l=CWeb" }, "Cycript": { - "color": null, - "url": "https://github.com/trending?l=Cycript" + "color": null, + "url": "https://github.com/trending?l=Cycript" }, "Cython": { - "color": "#fedf5b", - "url": "https://github.com/trending?l=Cython" + "color": "#fedf5b", + "url": "https://github.com/trending?l=Cython" }, "D": { - "color": "#ba595e", - "url": "https://github.com/trending?l=D" + "color": "#ba595e", + "url": "https://github.com/trending?l=D" }, "Dafny": { - "color": "#FFEC25", - "url": "https://github.com/trending?l=Dafny" + "color": "#FFEC25", + "url": "https://github.com/trending?l=Dafny" }, "Darcs Patch": { - "color": "#8eff23", - "url": "https://github.com/trending?l=Darcs-Patch" + "color": "#8eff23", + "url": "https://github.com/trending?l=Darcs-Patch" }, "Dart": { - "color": "#00B4AB", - "url": "https://github.com/trending?l=Dart" + "color": "#00B4AB", + "url": "https://github.com/trending?l=Dart" }, "DataWeave": { - "color": "#003a52", - "url": "https://github.com/trending?l=DataWeave" + "color": "#003a52", + "url": "https://github.com/trending?l=DataWeave" }, "Debian Package Control File": { - "color": "#D70751", - "url": "https://github.com/trending?l=Debian-Package-Control-File" + "color": "#D70751", + "url": "https://github.com/trending?l=Debian-Package-Control-File" }, "DenizenScript": { - "color": "#FBEE96", - "url": "https://github.com/trending?l=DenizenScript" + "color": "#FBEE96", + "url": "https://github.com/trending?l=DenizenScript" }, "Dhall": { - "color": "#dfafff", - "url": "https://github.com/trending?l=Dhall" + "color": "#dfafff", + "url": "https://github.com/trending?l=Dhall" }, "DIGITAL Command Language": { - "color": null, - "url": "https://github.com/trending?l=DIGITAL-Command-Language" + "color": null, + "url": "https://github.com/trending?l=DIGITAL-Command-Language" }, "DirectX 3D File": { - "color": "#aace60", - "url": "https://github.com/trending?l=DirectX-3D-File" + "color": "#aace60", + "url": "https://github.com/trending?l=DirectX-3D-File" }, "DM": { - "color": "#447265", - "url": "https://github.com/trending?l=DM" + "color": "#447265", + "url": "https://github.com/trending?l=DM" }, "Dockerfile": { - "color": "#384d54", - "url": "https://github.com/trending?l=Dockerfile" + "color": "#384d54", + "url": "https://github.com/trending?l=Dockerfile" }, "Dogescript": { - "color": "#cca760", - "url": "https://github.com/trending?l=Dogescript" + "color": "#cca760", + "url": "https://github.com/trending?l=Dogescript" }, "DTrace": { - "color": null, - "url": "https://github.com/trending?l=DTrace" + "color": null, + "url": "https://github.com/trending?l=DTrace" }, "Dylan": { - "color": "#6c616e", - "url": "https://github.com/trending?l=Dylan" + "color": "#6c616e", + "url": "https://github.com/trending?l=Dylan" }, "E": { - "color": "#ccce35", - "url": "https://github.com/trending?l=E" + "color": "#ccce35", + "url": "https://github.com/trending?l=E" }, "Earthly": { - "color": "#2af0ff", - "url": "https://github.com/trending?l=Earthly" + "color": "#2af0ff", + "url": "https://github.com/trending?l=Earthly" }, "Easybuild": { - "color": "#069406", - "url": "https://github.com/trending?l=Easybuild" + "color": "#069406", + "url": "https://github.com/trending?l=Easybuild" }, "eC": { - "color": "#913960", - "url": "https://github.com/trending?l=eC" + "color": "#913960", + "url": "https://github.com/trending?l=eC" }, "Ecere Projects": { - "color": "#913960", - "url": "https://github.com/trending?l=Ecere-Projects" + "color": "#913960", + "url": "https://github.com/trending?l=Ecere-Projects" }, "ECL": { - "color": "#8a1267", - "url": "https://github.com/trending?l=ECL" + "color": "#8a1267", + "url": "https://github.com/trending?l=ECL" }, "ECLiPSe": { - "color": "#001d9d", - "url": "https://github.com/trending?l=ECLiPSe" + "color": "#001d9d", + "url": "https://github.com/trending?l=ECLiPSe" }, "EditorConfig": { - "color": "#fff1f2", - "url": "https://github.com/trending?l=EditorConfig" + "color": "#fff1f2", + "url": "https://github.com/trending?l=EditorConfig" }, "Eiffel": { - "color": "#4d6977", - "url": "https://github.com/trending?l=Eiffel" + "color": "#4d6977", + "url": "https://github.com/trending?l=Eiffel" }, "EJS": { - "color": "#a91e50", - "url": "https://github.com/trending?l=EJS" + "color": "#a91e50", + "url": "https://github.com/trending?l=EJS" }, "Elixir": { - "color": "#6e4a7e", - "url": "https://github.com/trending?l=Elixir" + "color": "#6e4a7e", + "url": "https://github.com/trending?l=Elixir" }, "Elm": { - "color": "#60B5CC", - "url": "https://github.com/trending?l=Elm" + "color": "#60B5CC", + "url": "https://github.com/trending?l=Elm" }, "Emacs Lisp": { - "color": "#c065db", - "url": "https://github.com/trending?l=Emacs-Lisp" + "color": "#c065db", + "url": "https://github.com/trending?l=Emacs-Lisp" }, "EmberScript": { - "color": "#FFF4F3", - "url": "https://github.com/trending?l=EmberScript" + "color": "#FFF4F3", + "url": "https://github.com/trending?l=EmberScript" }, "EQ": { - "color": "#a78649", - "url": "https://github.com/trending?l=EQ" + "color": "#a78649", + "url": "https://github.com/trending?l=EQ" }, "Erlang": { - "color": "#B83998", - "url": "https://github.com/trending?l=Erlang" + "color": "#B83998", + "url": "https://github.com/trending?l=Erlang" }, "Euphoria": { - "color": "#FF790B", - "url": "https://github.com/trending?l=Euphoria" + "color": "#FF790B", + "url": "https://github.com/trending?l=Euphoria" }, "F#": { - "color": "#b845fc", - "url": "https://github.com/trending?l=Fsharp" + "color": "#b845fc", + "url": "https://github.com/trending?l=Fsharp" }, "F*": { - "color": "#572e30", - "url": "https://github.com/trending?l=F*" + "color": "#572e30", + "url": "https://github.com/trending?l=F*" }, "Factor": { - "color": "#636746", - "url": "https://github.com/trending?l=Factor" + "color": "#636746", + "url": "https://github.com/trending?l=Factor" }, "Fancy": { - "color": "#7b9db4", - "url": "https://github.com/trending?l=Fancy" + "color": "#7b9db4", + "url": "https://github.com/trending?l=Fancy" }, "Fantom": { - "color": "#14253c", - "url": "https://github.com/trending?l=Fantom" + "color": "#14253c", + "url": "https://github.com/trending?l=Fantom" }, "Faust": { - "color": "#c37240", - "url": "https://github.com/trending?l=Faust" + "color": "#c37240", + "url": "https://github.com/trending?l=Faust" }, "Fennel": { - "color": "#fff3d7", - "url": "https://github.com/trending?l=Fennel" + "color": "#fff3d7", + "url": "https://github.com/trending?l=Fennel" }, "FIGlet Font": { - "color": "#FFDDBB", - "url": "https://github.com/trending?l=FIGlet-Font" + "color": "#FFDDBB", + "url": "https://github.com/trending?l=FIGlet-Font" }, "Filebench WML": { - "color": "#F6B900", - "url": "https://github.com/trending?l=Filebench-WML" + "color": "#F6B900", + "url": "https://github.com/trending?l=Filebench-WML" }, "Filterscript": { - "color": null, - "url": "https://github.com/trending?l=Filterscript" + "color": null, + "url": "https://github.com/trending?l=Filterscript" }, "fish": { - "color": "#4aae47", - "url": "https://github.com/trending?l=fish" + "color": "#4aae47", + "url": "https://github.com/trending?l=fish" }, "Fluent": { - "color": "#ffcc33", - "url": "https://github.com/trending?l=Fluent" + "color": "#ffcc33", + "url": "https://github.com/trending?l=Fluent" }, "FLUX": { - "color": "#88ccff", - "url": "https://github.com/trending?l=FLUX" + "color": "#88ccff", + "url": "https://github.com/trending?l=FLUX" }, "Forth": { - "color": "#341708", - "url": "https://github.com/trending?l=Forth" + "color": "#341708", + "url": "https://github.com/trending?l=Forth" }, "Fortran": { - "color": "#4d41b1", - "url": "https://github.com/trending?l=Fortran" + "color": "#4d41b1", + "url": "https://github.com/trending?l=Fortran" }, "Fortran Free Form": { - "color": "#4d41b1", - "url": "https://github.com/trending?l=Fortran-Free-Form" + "color": "#4d41b1", + "url": "https://github.com/trending?l=Fortran-Free-Form" }, "FreeBasic": { - "color": "#867db1", - "url": "https://github.com/trending?l=FreeBasic" + "color": "#867db1", + "url": "https://github.com/trending?l=FreeBasic" }, "FreeMarker": { - "color": "#0050b2", - "url": "https://github.com/trending?l=FreeMarker" + "color": "#0050b2", + "url": "https://github.com/trending?l=FreeMarker" }, "Frege": { - "color": "#00cafe", - "url": "https://github.com/trending?l=Frege" + "color": "#00cafe", + "url": "https://github.com/trending?l=Frege" }, "Futhark": { - "color": "#5f021f", - "url": "https://github.com/trending?l=Futhark" + "color": "#5f021f", + "url": "https://github.com/trending?l=Futhark" }, "G-code": { - "color": "#D08CF2", - "url": "https://github.com/trending?l=G-code" + "color": "#D08CF2", + "url": "https://github.com/trending?l=G-code" }, "Game Maker Language": { - "color": "#71b417", - "url": "https://github.com/trending?l=Game-Maker-Language" + "color": "#71b417", + "url": "https://github.com/trending?l=Game-Maker-Language" }, "GAML": { - "color": "#FFC766", - "url": "https://github.com/trending?l=GAML" + "color": "#FFC766", + "url": "https://github.com/trending?l=GAML" }, "GAMS": { - "color": "#f49a22", - "url": "https://github.com/trending?l=GAMS" + "color": "#f49a22", + "url": "https://github.com/trending?l=GAMS" }, "GAP": { - "color": "#0000cc", - "url": "https://github.com/trending?l=GAP" + "color": "#0000cc", + "url": "https://github.com/trending?l=GAP" }, "GCC Machine Description": { - "color": "#FFCFAB", - "url": "https://github.com/trending?l=GCC-Machine-Description" + "color": "#FFCFAB", + "url": "https://github.com/trending?l=GCC-Machine-Description" }, "GDB": { - "color": null, - "url": "https://github.com/trending?l=GDB" + "color": null, + "url": "https://github.com/trending?l=GDB" }, "GDScript": { - "color": "#355570", - "url": "https://github.com/trending?l=GDScript" + "color": "#355570", + "url": "https://github.com/trending?l=GDScript" }, "GEDCOM": { - "color": "#003058", - "url": "https://github.com/trending?l=GEDCOM" + "color": "#003058", + "url": "https://github.com/trending?l=GEDCOM" }, "Gemfile.lock": { - "color": "#701516", - "url": "https://github.com/trending?l=Gemfile.lock" + "color": "#701516", + "url": "https://github.com/trending?l=Gemfile.lock" }, "Genero": { - "color": "#63408e", - "url": "https://github.com/trending?l=Genero" + "color": "#63408e", + "url": "https://github.com/trending?l=Genero" }, "Genero Forms": { - "color": "#d8df39", - "url": "https://github.com/trending?l=Genero-Forms" + "color": "#d8df39", + "url": "https://github.com/trending?l=Genero-Forms" }, "Genie": { - "color": "#fb855d", - "url": "https://github.com/trending?l=Genie" + "color": "#fb855d", + "url": "https://github.com/trending?l=Genie" }, "Genshi": { - "color": "#951531", - "url": "https://github.com/trending?l=Genshi" + "color": "#951531", + "url": "https://github.com/trending?l=Genshi" }, "Gentoo Ebuild": { - "color": "#9400ff", - "url": "https://github.com/trending?l=Gentoo-Ebuild" + "color": "#9400ff", + "url": "https://github.com/trending?l=Gentoo-Ebuild" }, "Gentoo Eclass": { - "color": "#9400ff", - "url": "https://github.com/trending?l=Gentoo-Eclass" + "color": "#9400ff", + "url": "https://github.com/trending?l=Gentoo-Eclass" }, "Gerber Image": { - "color": "#d20b00", - "url": "https://github.com/trending?l=Gerber-Image" + "color": "#d20b00", + "url": "https://github.com/trending?l=Gerber-Image" }, "Gherkin": { - "color": "#5B2063", - "url": "https://github.com/trending?l=Gherkin" + "color": "#5B2063", + "url": "https://github.com/trending?l=Gherkin" }, "Git Attributes": { - "color": "#F44D27", - "url": "https://github.com/trending?l=Git-Attributes" + "color": "#F44D27", + "url": "https://github.com/trending?l=Git-Attributes" }, "Git Config": { - "color": "#F44D27", - "url": "https://github.com/trending?l=Git-Config" + "color": "#F44D27", + "url": "https://github.com/trending?l=Git-Config" }, "Git Revision List": { - "color": "#F44D27", - "url": "https://github.com/trending?l=Git-Revision-List" + "color": "#F44D27", + "url": "https://github.com/trending?l=Git-Revision-List" }, "Gleam": { - "color": "#ffaff3", - "url": "https://github.com/trending?l=Gleam" + "color": "#ffaff3", + "url": "https://github.com/trending?l=Gleam" }, "GLSL": { - "color": "#5686a5", - "url": "https://github.com/trending?l=GLSL" + "color": "#5686a5", + "url": "https://github.com/trending?l=GLSL" }, "Glyph": { - "color": "#c1ac7f", - "url": "https://github.com/trending?l=Glyph" + "color": "#c1ac7f", + "url": "https://github.com/trending?l=Glyph" }, "Gnuplot": { - "color": "#f0a9f0", - "url": "https://github.com/trending?l=Gnuplot" + "color": "#f0a9f0", + "url": "https://github.com/trending?l=Gnuplot" }, "Go": { - "color": "#00ADD8", - "url": "https://github.com/trending?l=Go" + "color": "#00ADD8", + "url": "https://github.com/trending?l=Go" }, "Go Checksums": { - "color": "#00ADD8", - "url": "https://github.com/trending?l=Go-Checksums" + "color": "#00ADD8", + "url": "https://github.com/trending?l=Go-Checksums" }, "Go Module": { - "color": "#00ADD8", - "url": "https://github.com/trending?l=Go-Module" + "color": "#00ADD8", + "url": "https://github.com/trending?l=Go-Module" }, "Golo": { - "color": "#88562A", - "url": "https://github.com/trending?l=Golo" + "color": "#88562A", + "url": "https://github.com/trending?l=Golo" }, "Gosu": { - "color": "#82937f", - "url": "https://github.com/trending?l=Gosu" + "color": "#82937f", + "url": "https://github.com/trending?l=Gosu" }, "Grace": { - "color": "#615f8b", - "url": "https://github.com/trending?l=Grace" + "color": "#615f8b", + "url": "https://github.com/trending?l=Grace" }, "Gradle": { - "color": "#02303a", - "url": "https://github.com/trending?l=Gradle" + "color": "#02303a", + "url": "https://github.com/trending?l=Gradle" }, "Grammatical Framework": { - "color": "#ff0000", - "url": "https://github.com/trending?l=Grammatical-Framework" + "color": "#ff0000", + "url": "https://github.com/trending?l=Grammatical-Framework" }, "GraphQL": { - "color": "#e10098", - "url": "https://github.com/trending?l=GraphQL" + "color": "#e10098", + "url": "https://github.com/trending?l=GraphQL" }, "Graphviz (DOT)": { - "color": "#2596be", - "url": "https://github.com/trending?l=Graphviz-(DOT)" + "color": "#2596be", + "url": "https://github.com/trending?l=Graphviz-(DOT)" }, "Groovy": { - "color": "#4298b8", - "url": "https://github.com/trending?l=Groovy" + "color": "#4298b8", + "url": "https://github.com/trending?l=Groovy" }, "Groovy Server Pages": { - "color": "#4298b8", - "url": "https://github.com/trending?l=Groovy-Server-Pages" + "color": "#4298b8", + "url": "https://github.com/trending?l=Groovy-Server-Pages" }, "GSC": { - "color": "#FF6800", - "url": "https://github.com/trending?l=GSC" + "color": "#FF6800", + "url": "https://github.com/trending?l=GSC" }, "Hack": { - "color": "#878787", - "url": "https://github.com/trending?l=Hack" + "color": "#878787", + "url": "https://github.com/trending?l=Hack" }, "Haml": { - "color": "#ece2a9", - "url": "https://github.com/trending?l=Haml" + "color": "#ece2a9", + "url": "https://github.com/trending?l=Haml" }, "Handlebars": { - "color": "#f7931e", - "url": "https://github.com/trending?l=Handlebars" + "color": "#f7931e", + "url": "https://github.com/trending?l=Handlebars" }, "HAProxy": { - "color": "#106da9", - "url": "https://github.com/trending?l=HAProxy" + "color": "#106da9", + "url": "https://github.com/trending?l=HAProxy" }, "Harbour": { - "color": "#0e60e3", - "url": "https://github.com/trending?l=Harbour" + "color": "#0e60e3", + "url": "https://github.com/trending?l=Harbour" }, "Haskell": { - "color": "#5e5086", - "url": "https://github.com/trending?l=Haskell" + "color": "#5e5086", + "url": "https://github.com/trending?l=Haskell" }, "Haxe": { - "color": "#df7900", - "url": "https://github.com/trending?l=Haxe" + "color": "#df7900", + "url": "https://github.com/trending?l=Haxe" }, "HCL": { - "color": null, - "url": "https://github.com/trending?l=HCL" + "color": null, + "url": "https://github.com/trending?l=HCL" }, "HiveQL": { - "color": "#dce200", - "url": "https://github.com/trending?l=HiveQL" + "color": "#dce200", + "url": "https://github.com/trending?l=HiveQL" }, "HLSL": { - "color": "#aace60", - "url": "https://github.com/trending?l=HLSL" + "color": "#aace60", + "url": "https://github.com/trending?l=HLSL" }, "HolyC": { - "color": "#ffefaf", - "url": "https://github.com/trending?l=HolyC" + "color": "#ffefaf", + "url": "https://github.com/trending?l=HolyC" }, "hoon": { - "color": "#00b171", - "url": "https://github.com/trending?l=hoon" + "color": "#00b171", + "url": "https://github.com/trending?l=hoon" }, "HTML": { - "color": "#e34c26", - "url": "https://github.com/trending?l=HTML" + "color": "#e34c26", + "url": "https://github.com/trending?l=HTML" }, "HTML+ECR": { - "color": "#2e1052", - "url": "https://github.com/trending?l=HTML+ECR" + "color": "#2e1052", + "url": "https://github.com/trending?l=HTML+ECR" }, "HTML+EEX": { - "color": "#6e4a7e", - "url": "https://github.com/trending?l=HTML+EEX" + "color": "#6e4a7e", + "url": "https://github.com/trending?l=HTML+EEX" }, "HTML+ERB": { - "color": "#701516", - "url": "https://github.com/trending?l=HTML+ERB" + "color": "#701516", + "url": "https://github.com/trending?l=HTML+ERB" }, "HTML+PHP": { - "color": "#4f5d95", - "url": "https://github.com/trending?l=HTML+PHP" + "color": "#4f5d95", + "url": "https://github.com/trending?l=HTML+PHP" }, "HTML+Razor": { - "color": "#512be4", - "url": "https://github.com/trending?l=HTML+Razor" + "color": "#512be4", + "url": "https://github.com/trending?l=HTML+Razor" }, "HTTP": { - "color": "#005C9C", - "url": "https://github.com/trending?l=HTTP" + "color": "#005C9C", + "url": "https://github.com/trending?l=HTTP" }, "HXML": { - "color": "#f68712", - "url": "https://github.com/trending?l=HXML" + "color": "#f68712", + "url": "https://github.com/trending?l=HXML" }, "Hy": { - "color": "#7790B2", - "url": "https://github.com/trending?l=Hy" + "color": "#7790B2", + "url": "https://github.com/trending?l=Hy" }, "HyPhy": { - "color": null, - "url": "https://github.com/trending?l=HyPhy" + "color": null, + "url": "https://github.com/trending?l=HyPhy" }, "IDL": { - "color": "#a3522f", - "url": "https://github.com/trending?l=IDL" + "color": "#a3522f", + "url": "https://github.com/trending?l=IDL" }, "Idris": { - "color": "#b30000", - "url": "https://github.com/trending?l=Idris" + "color": "#b30000", + "url": "https://github.com/trending?l=Idris" }, "Ignore List": { - "color": "#000000", - "url": "https://github.com/trending?l=Ignore-List" + "color": "#000000", + "url": "https://github.com/trending?l=Ignore-List" }, "IGOR Pro": { - "color": "#0000cc", - "url": "https://github.com/trending?l=IGOR-Pro" + "color": "#0000cc", + "url": "https://github.com/trending?l=IGOR-Pro" }, "ImageJ Macro": { - "color": "#99AAFF", - "url": "https://github.com/trending?l=ImageJ-Macro" + "color": "#99AAFF", + "url": "https://github.com/trending?l=ImageJ-Macro" }, "Inform 7": { - "color": null, - "url": "https://github.com/trending?l=Inform-7" + "color": null, + "url": "https://github.com/trending?l=Inform-7" }, "INI": { - "color": "#d1dbe0", - "url": "https://github.com/trending?l=INI" + "color": "#d1dbe0", + "url": "https://github.com/trending?l=INI" }, "Inno Setup": { - "color": "#264b99", - "url": "https://github.com/trending?l=Inno-Setup" + "color": "#264b99", + "url": "https://github.com/trending?l=Inno-Setup" }, "Io": { - "color": "#a9188d", - "url": "https://github.com/trending?l=Io" + "color": "#a9188d", + "url": "https://github.com/trending?l=Io" }, "Ioke": { - "color": "#078193", - "url": "https://github.com/trending?l=Ioke" + "color": "#078193", + "url": "https://github.com/trending?l=Ioke" }, "Isabelle": { - "color": "#FEFE00", - "url": "https://github.com/trending?l=Isabelle" + "color": "#FEFE00", + "url": "https://github.com/trending?l=Isabelle" }, "Isabelle ROOT": { - "color": "#FEFE00", - "url": "https://github.com/trending?l=Isabelle-ROOT" + "color": "#FEFE00", + "url": "https://github.com/trending?l=Isabelle-ROOT" }, "J": { - "color": "#9EEDFF", - "url": "https://github.com/trending?l=J" + "color": "#9EEDFF", + "url": "https://github.com/trending?l=J" }, "Janet": { - "color": "#0886a5", - "url": "https://github.com/trending?l=Janet" + "color": "#0886a5", + "url": "https://github.com/trending?l=Janet" }, "JAR Manifest": { - "color": "#b07219", - "url": "https://github.com/trending?l=JAR-Manifest" + "color": "#b07219", + "url": "https://github.com/trending?l=JAR-Manifest" }, "Jasmin": { - "color": "#d03600", - "url": "https://github.com/trending?l=Jasmin" + "color": "#d03600", + "url": "https://github.com/trending?l=Jasmin" }, "Java": { - "color": "#b07219", - "url": "https://github.com/trending?l=Java" + "color": "#b07219", + "url": "https://github.com/trending?l=Java" }, "Java Properties": { - "color": "#2A6277", - "url": "https://github.com/trending?l=Java-Properties" + "color": "#2A6277", + "url": "https://github.com/trending?l=Java-Properties" }, "Java Server Pages": { - "color": "#2A6277", - "url": "https://github.com/trending?l=Java-Server-Pages" + "color": "#2A6277", + "url": "https://github.com/trending?l=Java-Server-Pages" }, "JavaScript": { - "color": "#f1e05a", - "url": "https://github.com/trending?l=JavaScript" + "color": "#f1e05a", + "url": "https://github.com/trending?l=JavaScript" }, "JavaScript+ERB": { - "color": "#f1e05a", - "url": "https://github.com/trending?l=JavaScript+ERB" + "color": "#f1e05a", + "url": "https://github.com/trending?l=JavaScript+ERB" }, "Jest Snapshot": { - "color": "#15c213", - "url": "https://github.com/trending?l=Jest-Snapshot" + "color": "#15c213", + "url": "https://github.com/trending?l=Jest-Snapshot" }, "JetBrains MPS": { - "color": "#21D789", - "url": "https://github.com/trending?l=JetBrains-MPS" + "color": "#21D789", + "url": "https://github.com/trending?l=JetBrains-MPS" }, "JFlex": { - "color": "#DBCA00", - "url": "https://github.com/trending?l=JFlex" + "color": "#DBCA00", + "url": "https://github.com/trending?l=JFlex" }, "Jinja": { - "color": "#a52a22", - "url": "https://github.com/trending?l=Jinja" + "color": "#a52a22", + "url": "https://github.com/trending?l=Jinja" }, "Jison": { - "color": "#56b3cb", - "url": "https://github.com/trending?l=Jison" + "color": "#56b3cb", + "url": "https://github.com/trending?l=Jison" }, "Jison Lex": { - "color": "#56b3cb", - "url": "https://github.com/trending?l=Jison-Lex" + "color": "#56b3cb", + "url": "https://github.com/trending?l=Jison-Lex" }, "Jolie": { - "color": "#843179", - "url": "https://github.com/trending?l=Jolie" + "color": "#843179", + "url": "https://github.com/trending?l=Jolie" }, "jq": { - "color": "#c7254e", - "url": "https://github.com/trending?l=jq" + "color": "#c7254e", + "url": "https://github.com/trending?l=jq" }, "JSON": { - "color": "#292929", - "url": "https://github.com/trending?l=JSON" + "color": "#292929", + "url": "https://github.com/trending?l=JSON" }, "JSON with Comments": { - "color": "#292929", - "url": "https://github.com/trending?l=JSON-with-Comments" + "color": "#292929", + "url": "https://github.com/trending?l=JSON-with-Comments" }, "JSON5": { - "color": "#267CB9", - "url": "https://github.com/trending?l=JSON5" + "color": "#267CB9", + "url": "https://github.com/trending?l=JSON5" }, "JSONiq": { - "color": "#40d47e", - "url": "https://github.com/trending?l=JSONiq" + "color": "#40d47e", + "url": "https://github.com/trending?l=JSONiq" }, "JSONLD": { - "color": "#0c479c", - "url": "https://github.com/trending?l=JSONLD" + "color": "#0c479c", + "url": "https://github.com/trending?l=JSONLD" }, "Jsonnet": { - "color": "#0064bd", - "url": "https://github.com/trending?l=Jsonnet" + "color": "#0064bd", + "url": "https://github.com/trending?l=Jsonnet" }, "Julia": { - "color": "#a270ba", - "url": "https://github.com/trending?l=Julia" + "color": "#a270ba", + "url": "https://github.com/trending?l=Julia" }, "Jupyter Notebook": { - "color": "#DA5B0B", - "url": "https://github.com/trending?l=Jupyter-Notebook" + "color": "#DA5B0B", + "url": "https://github.com/trending?l=Jupyter-Notebook" }, "Kaitai Struct": { - "color": "#773b37", - "url": "https://github.com/trending?l=Kaitai-Struct" + "color": "#773b37", + "url": "https://github.com/trending?l=Kaitai-Struct" }, "KakouneScript": { - "color": "#6f8042", - "url": "https://github.com/trending?l=KakouneScript" + "color": "#6f8042", + "url": "https://github.com/trending?l=KakouneScript" }, "KiCad Layout": { - "color": "#2f4aab", - "url": "https://github.com/trending?l=KiCad-Layout" + "color": "#2f4aab", + "url": "https://github.com/trending?l=KiCad-Layout" }, "KiCad Legacy Layout": { - "color": "#2f4aab", - "url": "https://github.com/trending?l=KiCad-Legacy-Layout" + "color": "#2f4aab", + "url": "https://github.com/trending?l=KiCad-Legacy-Layout" }, "KiCad Schematic": { - "color": "#2f4aab", - "url": "https://github.com/trending?l=KiCad-Schematic" + "color": "#2f4aab", + "url": "https://github.com/trending?l=KiCad-Schematic" }, "Kotlin": { - "color": "#A97BFF", - "url": "https://github.com/trending?l=Kotlin" + "color": "#A97BFF", + "url": "https://github.com/trending?l=Kotlin" }, "KRL": { - "color": "#28430A", - "url": "https://github.com/trending?l=KRL" + "color": "#28430A", + "url": "https://github.com/trending?l=KRL" }, "kvlang": { - "color": "#1da6e0", - "url": "https://github.com/trending?l=kvlang" + "color": "#1da6e0", + "url": "https://github.com/trending?l=kvlang" }, "LabVIEW": { - "color": "#fede06", - "url": "https://github.com/trending?l=LabVIEW" + "color": "#fede06", + "url": "https://github.com/trending?l=LabVIEW" }, "Lark": { - "color": "#2980B9", - "url": "https://github.com/trending?l=Lark" + "color": "#2980B9", + "url": "https://github.com/trending?l=Lark" }, "Lasso": { - "color": "#999999", - "url": "https://github.com/trending?l=Lasso" + "color": "#999999", + "url": "https://github.com/trending?l=Lasso" }, "Latte": { - "color": "#f2a542", - "url": "https://github.com/trending?l=Latte" + "color": "#f2a542", + "url": "https://github.com/trending?l=Latte" }, "Lean": { - "color": null, - "url": "https://github.com/trending?l=Lean" + "color": null, + "url": "https://github.com/trending?l=Lean" }, "Less": { - "color": "#1d365d", - "url": "https://github.com/trending?l=Less" + "color": "#1d365d", + "url": "https://github.com/trending?l=Less" }, "Lex": { - "color": "#DBCA00", - "url": "https://github.com/trending?l=Lex" + "color": "#DBCA00", + "url": "https://github.com/trending?l=Lex" }, "LFE": { - "color": "#4C3023", - "url": "https://github.com/trending?l=LFE" + "color": "#4C3023", + "url": "https://github.com/trending?l=LFE" }, "LigoLANG": { - "color": "#0e74ff", - "url": "https://github.com/trending?l=LigoLANG" + "color": "#0e74ff", + "url": "https://github.com/trending?l=LigoLANG" }, "LilyPond": { - "color": "#9ccc7c", - "url": "https://github.com/trending?l=LilyPond" + "color": "#9ccc7c", + "url": "https://github.com/trending?l=LilyPond" }, "Limbo": { - "color": null, - "url": "https://github.com/trending?l=Limbo" + "color": null, + "url": "https://github.com/trending?l=Limbo" }, "Liquid": { - "color": "#67b8de", - "url": "https://github.com/trending?l=Liquid" + "color": "#67b8de", + "url": "https://github.com/trending?l=Liquid" }, "Literate Agda": { - "color": "#315665", - "url": "https://github.com/trending?l=Literate-Agda" + "color": "#315665", + "url": "https://github.com/trending?l=Literate-Agda" }, "Literate CoffeeScript": { - "color": "#244776", - "url": "https://github.com/trending?l=Literate-CoffeeScript" + "color": "#244776", + "url": "https://github.com/trending?l=Literate-CoffeeScript" }, "Literate Haskell": { - "color": "#5e5086", - "url": "https://github.com/trending?l=Literate-Haskell" + "color": "#5e5086", + "url": "https://github.com/trending?l=Literate-Haskell" }, "LiveScript": { - "color": "#499886", - "url": "https://github.com/trending?l=LiveScript" + "color": "#499886", + "url": "https://github.com/trending?l=LiveScript" }, "LLVM": { - "color": "#185619", - "url": "https://github.com/trending?l=LLVM" + "color": "#185619", + "url": "https://github.com/trending?l=LLVM" }, "Logos": { - "color": null, - "url": "https://github.com/trending?l=Logos" + "color": null, + "url": "https://github.com/trending?l=Logos" }, "Logtalk": { - "color": "#295b9a", - "url": "https://github.com/trending?l=Logtalk" + "color": "#295b9a", + "url": "https://github.com/trending?l=Logtalk" }, "LOLCODE": { - "color": "#cc9900", - "url": "https://github.com/trending?l=LOLCODE" + "color": "#cc9900", + "url": "https://github.com/trending?l=LOLCODE" }, "LookML": { - "color": "#652B81", - "url": "https://github.com/trending?l=LookML" + "color": "#652B81", + "url": "https://github.com/trending?l=LookML" }, "LoomScript": { - "color": null, - "url": "https://github.com/trending?l=LoomScript" + "color": null, + "url": "https://github.com/trending?l=LoomScript" }, "LSL": { - "color": "#3d9970", - "url": "https://github.com/trending?l=LSL" + "color": "#3d9970", + "url": "https://github.com/trending?l=LSL" }, "Lua": { - "color": "#000080", - "url": "https://github.com/trending?l=Lua" + "color": "#000080", + "url": "https://github.com/trending?l=Lua" }, "M": { - "color": null, - "url": "https://github.com/trending?l=M" + "color": null, + "url": "https://github.com/trending?l=M" }, "M4": { - "color": null, - "url": "https://github.com/trending?l=M4" + "color": null, + "url": "https://github.com/trending?l=M4" }, "M4Sugar": { - "color": null, - "url": "https://github.com/trending?l=M4Sugar" + "color": null, + "url": "https://github.com/trending?l=M4Sugar" }, "Macaulay2": { - "color": "#d8ffff", - "url": "https://github.com/trending?l=Macaulay2" + "color": "#d8ffff", + "url": "https://github.com/trending?l=Macaulay2" }, "Makefile": { - "color": "#427819", - "url": "https://github.com/trending?l=Makefile" + "color": "#427819", + "url": "https://github.com/trending?l=Makefile" }, "Mako": { - "color": "#7e858d", - "url": "https://github.com/trending?l=Mako" + "color": "#7e858d", + "url": "https://github.com/trending?l=Mako" }, "Markdown": { - "color": "#083fa1", - "url": "https://github.com/trending?l=Markdown" + "color": "#083fa1", + "url": "https://github.com/trending?l=Markdown" }, "Marko": { - "color": "#42bff2", - "url": "https://github.com/trending?l=Marko" + "color": "#42bff2", + "url": "https://github.com/trending?l=Marko" }, "Mask": { - "color": "#f97732", - "url": "https://github.com/trending?l=Mask" + "color": "#f97732", + "url": "https://github.com/trending?l=Mask" }, "Mathematica": { - "color": "#dd1100", - "url": "https://github.com/trending?l=Mathematica" + "color": "#dd1100", + "url": "https://github.com/trending?l=Mathematica" }, "MATLAB": { - "color": "#e16737", - "url": "https://github.com/trending?l=MATLAB" + "color": "#e16737", + "url": "https://github.com/trending?l=MATLAB" }, "Max": { - "color": "#c4a79c", - "url": "https://github.com/trending?l=Max" + "color": "#c4a79c", + "url": "https://github.com/trending?l=Max" }, "MAXScript": { - "color": "#00a6a6", - "url": "https://github.com/trending?l=MAXScript" + "color": "#00a6a6", + "url": "https://github.com/trending?l=MAXScript" }, "mcfunction": { - "color": "#E22837", - "url": "https://github.com/trending?l=mcfunction" + "color": "#E22837", + "url": "https://github.com/trending?l=mcfunction" }, "Mercury": { - "color": "#ff2b2b", - "url": "https://github.com/trending?l=Mercury" + "color": "#ff2b2b", + "url": "https://github.com/trending?l=Mercury" }, "Meson": { - "color": "#007800", - "url": "https://github.com/trending?l=Meson" + "color": "#007800", + "url": "https://github.com/trending?l=Meson" }, "Metal": { - "color": "#8f14e9", - "url": "https://github.com/trending?l=Metal" + "color": "#8f14e9", + "url": "https://github.com/trending?l=Metal" }, "MiniD": { - "color": null, - "url": "https://github.com/trending?l=MiniD" + "color": null, + "url": "https://github.com/trending?l=MiniD" }, "MiniYAML": { - "color": "#ff1111", - "url": "https://github.com/trending?l=MiniYAML" + "color": "#ff1111", + "url": "https://github.com/trending?l=MiniYAML" }, "Mint": { - "color": "#02b046", - "url": "https://github.com/trending?l=Mint" + "color": "#02b046", + "url": "https://github.com/trending?l=Mint" }, "Mirah": { - "color": "#c7a938", - "url": "https://github.com/trending?l=Mirah" + "color": "#c7a938", + "url": "https://github.com/trending?l=Mirah" }, "mIRC Script": { - "color": "#3d57c3", - "url": "https://github.com/trending?l=mIRC-Script" + "color": "#3d57c3", + "url": "https://github.com/trending?l=mIRC-Script" }, "MLIR": { - "color": "#5EC8DB", - "url": "https://github.com/trending?l=MLIR" + "color": "#5EC8DB", + "url": "https://github.com/trending?l=MLIR" }, "Modelica": { - "color": "#de1d31", - "url": "https://github.com/trending?l=Modelica" + "color": "#de1d31", + "url": "https://github.com/trending?l=Modelica" }, "Modula-2": { - "color": "#10253f", - "url": "https://github.com/trending?l=Modula-2" + "color": "#10253f", + "url": "https://github.com/trending?l=Modula-2" }, "Modula-3": { - "color": "#223388", - "url": "https://github.com/trending?l=Modula-3" + "color": "#223388", + "url": "https://github.com/trending?l=Modula-3" }, "Module Management System": { - "color": null, - "url": "https://github.com/trending?l=Module-Management-System" + "color": null, + "url": "https://github.com/trending?l=Module-Management-System" }, "Monkey": { - "color": null, - "url": "https://github.com/trending?l=Monkey" + "color": null, + "url": "https://github.com/trending?l=Monkey" }, "Monkey C": { - "color": "#8D6747", - "url": "https://github.com/trending?l=Monkey-C" + "color": "#8D6747", + "url": "https://github.com/trending?l=Monkey-C" }, "Moocode": { - "color": null, - "url": "https://github.com/trending?l=Moocode" + "color": null, + "url": "https://github.com/trending?l=Moocode" }, "MoonScript": { - "color": "#ff4585", - "url": "https://github.com/trending?l=MoonScript" + "color": "#ff4585", + "url": "https://github.com/trending?l=MoonScript" }, "Motoko": { - "color": "#fbb03b", - "url": "https://github.com/trending?l=Motoko" + "color": "#fbb03b", + "url": "https://github.com/trending?l=Motoko" }, "Motorola 68K Assembly": { - "color": "#005daa", - "url": "https://github.com/trending?l=Motorola-68K-Assembly" + "color": "#005daa", + "url": "https://github.com/trending?l=Motorola-68K-Assembly" }, "Move": { - "color": "#4a137a", - "url": "https://github.com/trending?l=Move" + "color": "#4a137a", + "url": "https://github.com/trending?l=Move" }, "MQL4": { - "color": "#62A8D6", - "url": "https://github.com/trending?l=MQL4" + "color": "#62A8D6", + "url": "https://github.com/trending?l=MQL4" }, "MQL5": { - "color": "#4A76B8", - "url": "https://github.com/trending?l=MQL5" + "color": "#4A76B8", + "url": "https://github.com/trending?l=MQL5" }, "MTML": { - "color": "#b7e1f4", - "url": "https://github.com/trending?l=MTML" + "color": "#b7e1f4", + "url": "https://github.com/trending?l=MTML" }, "MUF": { - "color": null, - "url": "https://github.com/trending?l=MUF" + "color": null, + "url": "https://github.com/trending?l=MUF" }, "mupad": { - "color": "#244963", - "url": "https://github.com/trending?l=mupad" + "color": "#244963", + "url": "https://github.com/trending?l=mupad" }, "Mustache": { - "color": "#724b3b", - "url": "https://github.com/trending?l=Mustache" + "color": "#724b3b", + "url": "https://github.com/trending?l=Mustache" }, "Myghty": { - "color": null, - "url": "https://github.com/trending?l=Myghty" + "color": null, + "url": "https://github.com/trending?l=Myghty" }, "nanorc": { - "color": "#2d004d", - "url": "https://github.com/trending?l=nanorc" + "color": "#2d004d", + "url": "https://github.com/trending?l=nanorc" }, "Nasal": { - "color": "#1d2c4e", - "url": "https://github.com/trending?l=Nasal" + "color": "#1d2c4e", + "url": "https://github.com/trending?l=Nasal" }, "NASL": { - "color": null, - "url": "https://github.com/trending?l=NASL" + "color": null, + "url": "https://github.com/trending?l=NASL" }, "NCL": { - "color": "#28431f", - "url": "https://github.com/trending?l=NCL" + "color": "#28431f", + "url": "https://github.com/trending?l=NCL" }, "Nearley": { - "color": "#990000", - "url": "https://github.com/trending?l=Nearley" + "color": "#990000", + "url": "https://github.com/trending?l=Nearley" }, "Nemerle": { - "color": "#3d3c6e", - "url": "https://github.com/trending?l=Nemerle" + "color": "#3d3c6e", + "url": "https://github.com/trending?l=Nemerle" }, "nesC": { - "color": "#94B0C7", - "url": "https://github.com/trending?l=nesC" + "color": "#94B0C7", + "url": "https://github.com/trending?l=nesC" }, "NetLinx": { - "color": "#0aa0ff", - "url": "https://github.com/trending?l=NetLinx" + "color": "#0aa0ff", + "url": "https://github.com/trending?l=NetLinx" }, "NetLinx+ERB": { - "color": "#747faa", - "url": "https://github.com/trending?l=NetLinx+ERB" + "color": "#747faa", + "url": "https://github.com/trending?l=NetLinx+ERB" }, "NetLogo": { - "color": "#ff6375", - "url": "https://github.com/trending?l=NetLogo" + "color": "#ff6375", + "url": "https://github.com/trending?l=NetLogo" }, "NewLisp": { - "color": "#87AED7", - "url": "https://github.com/trending?l=NewLisp" + "color": "#87AED7", + "url": "https://github.com/trending?l=NewLisp" }, "Nextflow": { - "color": "#3ac486", - "url": "https://github.com/trending?l=Nextflow" + "color": "#3ac486", + "url": "https://github.com/trending?l=Nextflow" }, "Nginx": { - "color": "#009639", - "url": "https://github.com/trending?l=Nginx" + "color": "#009639", + "url": "https://github.com/trending?l=Nginx" }, "Nim": { - "color": "#ffc200", - "url": "https://github.com/trending?l=Nim" + "color": "#ffc200", + "url": "https://github.com/trending?l=Nim" }, "Nit": { - "color": "#009917", - "url": "https://github.com/trending?l=Nit" + "color": "#009917", + "url": "https://github.com/trending?l=Nit" }, "Nix": { - "color": "#7e7eff", - "url": "https://github.com/trending?l=Nix" + "color": "#7e7eff", + "url": "https://github.com/trending?l=Nix" }, "NPM Config": { - "color": "#cb3837", - "url": "https://github.com/trending?l=NPM-Config" + "color": "#cb3837", + "url": "https://github.com/trending?l=NPM-Config" }, "NSIS": { - "color": null, - "url": "https://github.com/trending?l=NSIS" + "color": null, + "url": "https://github.com/trending?l=NSIS" }, "Nu": { - "color": "#c9df40", - "url": "https://github.com/trending?l=Nu" + "color": "#c9df40", + "url": "https://github.com/trending?l=Nu" }, "NumPy": { - "color": "#9C8AF9", - "url": "https://github.com/trending?l=NumPy" + "color": "#9C8AF9", + "url": "https://github.com/trending?l=NumPy" }, "Nunjucks": { - "color": "#3d8137", - "url": "https://github.com/trending?l=Nunjucks" + "color": "#3d8137", + "url": "https://github.com/trending?l=Nunjucks" }, "NWScript": { - "color": "#111522", - "url": "https://github.com/trending?l=NWScript" + "color": "#111522", + "url": "https://github.com/trending?l=NWScript" }, "Objective-C": { - "color": "#438eff", - "url": "https://github.com/trending?l=Objective-C" + "color": "#438eff", + "url": "https://github.com/trending?l=Objective-C" }, "Objective-C++": { - "color": "#6866fb", - "url": "https://github.com/trending?l=Objective-C++" + "color": "#6866fb", + "url": "https://github.com/trending?l=Objective-C++" }, "Objective-J": { - "color": "#ff0c5a", - "url": "https://github.com/trending?l=Objective-J" + "color": "#ff0c5a", + "url": "https://github.com/trending?l=Objective-J" }, "ObjectScript": { - "color": "#424893", - "url": "https://github.com/trending?l=ObjectScript" + "color": "#424893", + "url": "https://github.com/trending?l=ObjectScript" }, "OCaml": { - "color": "#3be133", - "url": "https://github.com/trending?l=OCaml" + "color": "#3be133", + "url": "https://github.com/trending?l=OCaml" }, "Odin": { - "color": "#60AFFE", - "url": "https://github.com/trending?l=Odin" + "color": "#60AFFE", + "url": "https://github.com/trending?l=Odin" }, "Omgrofl": { - "color": "#cabbff", - "url": "https://github.com/trending?l=Omgrofl" + "color": "#cabbff", + "url": "https://github.com/trending?l=Omgrofl" }, "ooc": { - "color": "#b0b77e", - "url": "https://github.com/trending?l=ooc" + "color": "#b0b77e", + "url": "https://github.com/trending?l=ooc" }, "Opa": { - "color": null, - "url": "https://github.com/trending?l=Opa" + "color": null, + "url": "https://github.com/trending?l=Opa" }, "Opal": { - "color": "#f7ede0", - "url": "https://github.com/trending?l=Opal" + "color": "#f7ede0", + "url": "https://github.com/trending?l=Opal" }, "Open Policy Agent": { - "color": "#7d9199", - "url": "https://github.com/trending?l=Open-Policy-Agent" + "color": "#7d9199", + "url": "https://github.com/trending?l=Open-Policy-Agent" }, "OpenCL": { - "color": "#ed2e2d", - "url": "https://github.com/trending?l=OpenCL" + "color": "#ed2e2d", + "url": "https://github.com/trending?l=OpenCL" }, "OpenEdge ABL": { - "color": "#5ce600", - "url": "https://github.com/trending?l=OpenEdge-ABL" + "color": "#5ce600", + "url": "https://github.com/trending?l=OpenEdge-ABL" }, "OpenQASM": { - "color": "#AA70FF", - "url": "https://github.com/trending?l=OpenQASM" + "color": "#AA70FF", + "url": "https://github.com/trending?l=OpenQASM" }, "OpenRC runscript": { - "color": null, - "url": "https://github.com/trending?l=OpenRC-runscript" + "color": null, + "url": "https://github.com/trending?l=OpenRC-runscript" }, "OpenSCAD": { - "color": "#e5cd45", - "url": "https://github.com/trending?l=OpenSCAD" + "color": "#e5cd45", + "url": "https://github.com/trending?l=OpenSCAD" }, "Org": { - "color": "#77aa99", - "url": "https://github.com/trending?l=Org" + "color": "#77aa99", + "url": "https://github.com/trending?l=Org" }, "Ox": { - "color": null, - "url": "https://github.com/trending?l=Ox" + "color": null, + "url": "https://github.com/trending?l=Ox" }, "Oxygene": { - "color": "#cdd0e3", - "url": "https://github.com/trending?l=Oxygene" + "color": "#cdd0e3", + "url": "https://github.com/trending?l=Oxygene" }, "Oz": { - "color": "#fab738", - "url": "https://github.com/trending?l=Oz" + "color": "#fab738", + "url": "https://github.com/trending?l=Oz" }, "P4": { - "color": "#7055b5", - "url": "https://github.com/trending?l=P4" + "color": "#7055b5", + "url": "https://github.com/trending?l=P4" }, "Pan": { - "color": "#cc0000", - "url": "https://github.com/trending?l=Pan" + "color": "#cc0000", + "url": "https://github.com/trending?l=Pan" }, "Papyrus": { - "color": "#6600cc", - "url": "https://github.com/trending?l=Papyrus" + "color": "#6600cc", + "url": "https://github.com/trending?l=Papyrus" }, "Parrot": { - "color": "#f3ca0a", - "url": "https://github.com/trending?l=Parrot" + "color": "#f3ca0a", + "url": "https://github.com/trending?l=Parrot" }, "Parrot Assembly": { - "color": null, - "url": "https://github.com/trending?l=Parrot-Assembly" + "color": null, + "url": "https://github.com/trending?l=Parrot-Assembly" }, "Parrot Internal Representation": { - "color": null, - "url": "https://github.com/trending?l=Parrot-Internal-Representation" + "color": null, + "url": "https://github.com/trending?l=Parrot-Internal-Representation" }, "Pascal": { - "color": "#E3F171", - "url": "https://github.com/trending?l=Pascal" + "color": "#E3F171", + "url": "https://github.com/trending?l=Pascal" }, "Pawn": { - "color": "#dbb284", - "url": "https://github.com/trending?l=Pawn" + "color": "#dbb284", + "url": "https://github.com/trending?l=Pawn" }, "PEG.js": { - "color": "#234d6b", - "url": "https://github.com/trending?l=PEG.js" + "color": "#234d6b", + "url": "https://github.com/trending?l=PEG.js" }, "Pep8": { - "color": "#C76F5B", - "url": "https://github.com/trending?l=Pep8" + "color": "#C76F5B", + "url": "https://github.com/trending?l=Pep8" }, "Perl": { - "color": "#0298c3", - "url": "https://github.com/trending?l=Perl" + "color": "#0298c3", + "url": "https://github.com/trending?l=Perl" }, "PHP": { - "color": "#4F5D95", - "url": "https://github.com/trending?l=PHP" + "color": "#4F5D95", + "url": "https://github.com/trending?l=PHP" }, "PicoLisp": { - "color": "#6067af", - "url": "https://github.com/trending?l=PicoLisp" + "color": "#6067af", + "url": "https://github.com/trending?l=PicoLisp" }, "PigLatin": { - "color": "#fcd7de", - "url": "https://github.com/trending?l=PigLatin" + "color": "#fcd7de", + "url": "https://github.com/trending?l=PigLatin" }, "Pike": { - "color": "#005390", - "url": "https://github.com/trending?l=Pike" + "color": "#005390", + "url": "https://github.com/trending?l=Pike" }, "PLpgSQL": { - "color": "#336790", - "url": "https://github.com/trending?l=PLpgSQL" + "color": "#336790", + "url": "https://github.com/trending?l=PLpgSQL" }, "PLSQL": { - "color": "#dad8d8", - "url": "https://github.com/trending?l=PLSQL" + "color": "#dad8d8", + "url": "https://github.com/trending?l=PLSQL" }, "PogoScript": { - "color": "#d80074", - "url": "https://github.com/trending?l=PogoScript" + "color": "#d80074", + "url": "https://github.com/trending?l=PogoScript" }, "Pony": { - "color": null, - "url": "https://github.com/trending?l=Pony" + "color": null, + "url": "https://github.com/trending?l=Pony" }, "Portugol": { - "color": "#f8bd00", - "url": "https://github.com/trending?l=Portugol" + "color": "#f8bd00", + "url": "https://github.com/trending?l=Portugol" }, "PostCSS": { - "color": "#dc3a0c", - "url": "https://github.com/trending?l=PostCSS" + "color": "#dc3a0c", + "url": "https://github.com/trending?l=PostCSS" }, "PostScript": { - "color": "#da291c", - "url": "https://github.com/trending?l=PostScript" + "color": "#da291c", + "url": "https://github.com/trending?l=PostScript" }, "POV-Ray SDL": { - "color": "#6bac65", - "url": "https://github.com/trending?l=POV-Ray-SDL" + "color": "#6bac65", + "url": "https://github.com/trending?l=POV-Ray-SDL" }, "PowerBuilder": { - "color": "#8f0f8d", - "url": "https://github.com/trending?l=PowerBuilder" + "color": "#8f0f8d", + "url": "https://github.com/trending?l=PowerBuilder" }, "PowerShell": { - "color": "#012456", - "url": "https://github.com/trending?l=PowerShell" + "color": "#012456", + "url": "https://github.com/trending?l=PowerShell" }, "Prisma": { - "color": "#0c344b", - "url": "https://github.com/trending?l=Prisma" + "color": "#0c344b", + "url": "https://github.com/trending?l=Prisma" }, "Processing": { - "color": "#0096D8", - "url": "https://github.com/trending?l=Processing" + "color": "#0096D8", + "url": "https://github.com/trending?l=Processing" }, "Procfile": { - "color": "#3B2F63", - "url": "https://github.com/trending?l=Procfile" + "color": "#3B2F63", + "url": "https://github.com/trending?l=Procfile" }, "Prolog": { - "color": "#74283c", - "url": "https://github.com/trending?l=Prolog" + "color": "#74283c", + "url": "https://github.com/trending?l=Prolog" }, "Promela": { - "color": "#de0000", - "url": "https://github.com/trending?l=Promela" + "color": "#de0000", + "url": "https://github.com/trending?l=Promela" }, "Propeller Spin": { - "color": "#7fa2a7", - "url": "https://github.com/trending?l=Propeller-Spin" + "color": "#7fa2a7", + "url": "https://github.com/trending?l=Propeller-Spin" }, "Pug": { - "color": "#a86454", - "url": "https://github.com/trending?l=Pug" + "color": "#a86454", + "url": "https://github.com/trending?l=Pug" }, "Puppet": { - "color": "#302B6D", - "url": "https://github.com/trending?l=Puppet" + "color": "#302B6D", + "url": "https://github.com/trending?l=Puppet" }, "PureBasic": { - "color": "#5a6986", - "url": "https://github.com/trending?l=PureBasic" + "color": "#5a6986", + "url": "https://github.com/trending?l=PureBasic" }, "PureScript": { - "color": "#1D222D", - "url": "https://github.com/trending?l=PureScript" + "color": "#1D222D", + "url": "https://github.com/trending?l=PureScript" }, "Python": { - "color": "#3572A5", - "url": "https://github.com/trending?l=Python" + "color": "#3572A5", + "url": "https://github.com/trending?l=Python" }, "Python console": { - "color": "#3572A5", - "url": "https://github.com/trending?l=Python-console" + "color": "#3572A5", + "url": "https://github.com/trending?l=Python-console" }, "Python traceback": { - "color": "#3572A5", - "url": "https://github.com/trending?l=Python-traceback" + "color": "#3572A5", + "url": "https://github.com/trending?l=Python-traceback" }, "q": { - "color": "#0040cd", - "url": "https://github.com/trending?l=q" + "color": "#0040cd", + "url": "https://github.com/trending?l=q" }, "Q#": { - "color": "#fed659", - "url": "https://github.com/trending?l=Qsharp" + "color": "#fed659", + "url": "https://github.com/trending?l=Qsharp" }, "QMake": { - "color": null, - "url": "https://github.com/trending?l=QMake" + "color": null, + "url": "https://github.com/trending?l=QMake" }, "QML": { - "color": "#44a51c", - "url": "https://github.com/trending?l=QML" + "color": "#44a51c", + "url": "https://github.com/trending?l=QML" }, "Qt Script": { - "color": "#00b841", - "url": "https://github.com/trending?l=Qt-Script" + "color": "#00b841", + "url": "https://github.com/trending?l=Qt-Script" }, "Quake": { - "color": "#882233", - "url": "https://github.com/trending?l=Quake" + "color": "#882233", + "url": "https://github.com/trending?l=Quake" }, "R": { - "color": "#198CE7", - "url": "https://github.com/trending?l=R" + "color": "#198CE7", + "url": "https://github.com/trending?l=R" }, "Racket": { - "color": "#3c5caa", - "url": "https://github.com/trending?l=Racket" + "color": "#3c5caa", + "url": "https://github.com/trending?l=Racket" }, "Ragel": { - "color": "#9d5200", - "url": "https://github.com/trending?l=Ragel" + "color": "#9d5200", + "url": "https://github.com/trending?l=Ragel" }, "Raku": { - "color": "#0000fb", - "url": "https://github.com/trending?l=Raku" + "color": "#0000fb", + "url": "https://github.com/trending?l=Raku" }, "RAML": { - "color": "#77d9fb", - "url": "https://github.com/trending?l=RAML" + "color": "#77d9fb", + "url": "https://github.com/trending?l=RAML" }, "Rascal": { - "color": "#fffaa0", - "url": "https://github.com/trending?l=Rascal" + "color": "#fffaa0", + "url": "https://github.com/trending?l=Rascal" }, "RDoc": { - "color": "#701516", - "url": "https://github.com/trending?l=RDoc" + "color": "#701516", + "url": "https://github.com/trending?l=RDoc" }, "REALbasic": { - "color": null, - "url": "https://github.com/trending?l=REALbasic" + "color": null, + "url": "https://github.com/trending?l=REALbasic" }, "Reason": { - "color": "#ff5847", - "url": "https://github.com/trending?l=Reason" + "color": "#ff5847", + "url": "https://github.com/trending?l=Reason" }, "ReasonLIGO": { - "color": "#ff5847", - "url": "https://github.com/trending?l=ReasonLIGO" + "color": "#ff5847", + "url": "https://github.com/trending?l=ReasonLIGO" }, "Rebol": { - "color": "#358a5b", - "url": "https://github.com/trending?l=Rebol" + "color": "#358a5b", + "url": "https://github.com/trending?l=Rebol" }, "Record Jar": { - "color": "#0673ba", - "url": "https://github.com/trending?l=Record-Jar" + "color": "#0673ba", + "url": "https://github.com/trending?l=Record-Jar" }, "Red": { - "color": "#f50000", - "url": "https://github.com/trending?l=Red" + "color": "#f50000", + "url": "https://github.com/trending?l=Red" }, "Redcode": { - "color": null, - "url": "https://github.com/trending?l=Redcode" + "color": null, + "url": "https://github.com/trending?l=Redcode" }, "Regular Expression": { - "color": "#009a00", - "url": "https://github.com/trending?l=Regular-Expression" + "color": "#009a00", + "url": "https://github.com/trending?l=Regular-Expression" }, "Ren'Py": { - "color": "#ff7f7f", - "url": "https://github.com/trending?l=Ren'Py" + "color": "#ff7f7f", + "url": "https://github.com/trending?l=Ren'Py" }, "RenderScript": { - "color": null, - "url": "https://github.com/trending?l=RenderScript" + "color": null, + "url": "https://github.com/trending?l=RenderScript" }, "ReScript": { - "color": "#ed5051", - "url": "https://github.com/trending?l=ReScript" + "color": "#ed5051", + "url": "https://github.com/trending?l=ReScript" }, "reStructuredText": { - "color": "#141414", - "url": "https://github.com/trending?l=reStructuredText" + "color": "#141414", + "url": "https://github.com/trending?l=reStructuredText" }, "REXX": { - "color": "#d90e09", - "url": "https://github.com/trending?l=REXX" + "color": "#d90e09", + "url": "https://github.com/trending?l=REXX" }, "Ring": { - "color": "#2D54CB", - "url": "https://github.com/trending?l=Ring" + "color": "#2D54CB", + "url": "https://github.com/trending?l=Ring" }, "Riot": { - "color": "#A71E49", - "url": "https://github.com/trending?l=Riot" + "color": "#A71E49", + "url": "https://github.com/trending?l=Riot" }, "RMarkdown": { - "color": "#198ce7", - "url": "https://github.com/trending?l=RMarkdown" + "color": "#198ce7", + "url": "https://github.com/trending?l=RMarkdown" }, "RobotFramework": { - "color": "#00c0b5", - "url": "https://github.com/trending?l=RobotFramework" + "color": "#00c0b5", + "url": "https://github.com/trending?l=RobotFramework" }, "Roff": { - "color": "#ecdebe", - "url": "https://github.com/trending?l=Roff" + "color": "#ecdebe", + "url": "https://github.com/trending?l=Roff" }, "Roff Manpage": { - "color": "#ecdebe", - "url": "https://github.com/trending?l=Roff-Manpage" + "color": "#ecdebe", + "url": "https://github.com/trending?l=Roff-Manpage" }, "Rouge": { - "color": "#cc0088", - "url": "https://github.com/trending?l=Rouge" + "color": "#cc0088", + "url": "https://github.com/trending?l=Rouge" }, "RouterOS Script": { - "color": "#DE3941", - "url": "https://github.com/trending?l=RouterOS-Script" + "color": "#DE3941", + "url": "https://github.com/trending?l=RouterOS-Script" }, "RPC": { - "color": null, - "url": "https://github.com/trending?l=RPC" + "color": null, + "url": "https://github.com/trending?l=RPC" }, "RPGLE": { - "color": "#2BDE21", - "url": "https://github.com/trending?l=RPGLE" + "color": "#2BDE21", + "url": "https://github.com/trending?l=RPGLE" }, "Ruby": { - "color": "#701516", - "url": "https://github.com/trending?l=Ruby" + "color": "#701516", + "url": "https://github.com/trending?l=Ruby" }, "RUNOFF": { - "color": "#665a4e", - "url": "https://github.com/trending?l=RUNOFF" + "color": "#665a4e", + "url": "https://github.com/trending?l=RUNOFF" }, "Rust": { - "color": "#dea584", - "url": "https://github.com/trending?l=Rust" + "color": "#dea584", + "url": "https://github.com/trending?l=Rust" }, "Sage": { - "color": null, - "url": "https://github.com/trending?l=Sage" + "color": null, + "url": "https://github.com/trending?l=Sage" }, "SaltStack": { - "color": "#646464", - "url": "https://github.com/trending?l=SaltStack" + "color": "#646464", + "url": "https://github.com/trending?l=SaltStack" }, "SAS": { - "color": "#B34936", - "url": "https://github.com/trending?l=SAS" + "color": "#B34936", + "url": "https://github.com/trending?l=SAS" }, "Sass": { - "color": "#a53b70", - "url": "https://github.com/trending?l=Sass" + "color": "#a53b70", + "url": "https://github.com/trending?l=Sass" }, "Scala": { - "color": "#c22d40", - "url": "https://github.com/trending?l=Scala" + "color": "#c22d40", + "url": "https://github.com/trending?l=Scala" }, "Scaml": { - "color": "#bd181a", - "url": "https://github.com/trending?l=Scaml" + "color": "#bd181a", + "url": "https://github.com/trending?l=Scaml" }, "Scheme": { - "color": "#1e4aec", - "url": "https://github.com/trending?l=Scheme" + "color": "#1e4aec", + "url": "https://github.com/trending?l=Scheme" }, "Scilab": { - "color": "#ca0f21", - "url": "https://github.com/trending?l=Scilab" + "color": "#ca0f21", + "url": "https://github.com/trending?l=Scilab" }, "SCSS": { - "color": "#c6538c", - "url": "https://github.com/trending?l=SCSS" + "color": "#c6538c", + "url": "https://github.com/trending?l=SCSS" }, "sed": { - "color": "#64b970", - "url": "https://github.com/trending?l=sed" + "color": "#64b970", + "url": "https://github.com/trending?l=sed" }, "Self": { - "color": "#0579aa", - "url": "https://github.com/trending?l=Self" + "color": "#0579aa", + "url": "https://github.com/trending?l=Self" }, "ShaderLab": { - "color": "#222c37", - "url": "https://github.com/trending?l=ShaderLab" + "color": "#222c37", + "url": "https://github.com/trending?l=ShaderLab" }, "Shell": { - "color": "#89e051", - "url": "https://github.com/trending?l=Shell" + "color": "#89e051", + "url": "https://github.com/trending?l=Shell" }, "ShellCheck Config": { - "color": "#cecfcb", - "url": "https://github.com/trending?l=ShellCheck-Config" + "color": "#cecfcb", + "url": "https://github.com/trending?l=ShellCheck-Config" }, "ShellSession": { - "color": null, - "url": "https://github.com/trending?l=ShellSession" + "color": null, + "url": "https://github.com/trending?l=ShellSession" }, "Shen": { - "color": "#120F14", - "url": "https://github.com/trending?l=Shen" + "color": "#120F14", + "url": "https://github.com/trending?l=Shen" }, "Sieve": { - "color": null, - "url": "https://github.com/trending?l=Sieve" + "color": null, + "url": "https://github.com/trending?l=Sieve" }, "Singularity": { - "color": "#64E6AD", - "url": "https://github.com/trending?l=Singularity" + "color": "#64E6AD", + "url": "https://github.com/trending?l=Singularity" }, "Slash": { - "color": "#007eff", - "url": "https://github.com/trending?l=Slash" + "color": "#007eff", + "url": "https://github.com/trending?l=Slash" }, "Slice": { - "color": "#003fa2", - "url": "https://github.com/trending?l=Slice" + "color": "#003fa2", + "url": "https://github.com/trending?l=Slice" }, "Slim": { - "color": "#2b2b2b", - "url": "https://github.com/trending?l=Slim" + "color": "#2b2b2b", + "url": "https://github.com/trending?l=Slim" }, "Smali": { - "color": null, - "url": "https://github.com/trending?l=Smali" + "color": null, + "url": "https://github.com/trending?l=Smali" }, "Smalltalk": { - "color": "#596706", - "url": "https://github.com/trending?l=Smalltalk" + "color": "#596706", + "url": "https://github.com/trending?l=Smalltalk" }, "Smarty": { - "color": "#f0c040", - "url": "https://github.com/trending?l=Smarty" + "color": "#f0c040", + "url": "https://github.com/trending?l=Smarty" }, "SmPL": { - "color": "#c94949", - "url": "https://github.com/trending?l=SmPL" + "color": "#c94949", + "url": "https://github.com/trending?l=SmPL" }, "SMT": { - "color": null, - "url": "https://github.com/trending?l=SMT" + "color": null, + "url": "https://github.com/trending?l=SMT" }, "Solidity": { - "color": "#AA6746", - "url": "https://github.com/trending?l=Solidity" + "color": "#AA6746", + "url": "https://github.com/trending?l=Solidity" }, "SourcePawn": { - "color": "#f69e1d", - "url": "https://github.com/trending?l=SourcePawn" + "color": "#f69e1d", + "url": "https://github.com/trending?l=SourcePawn" }, "SPARQL": { - "color": "#0C4597", - "url": "https://github.com/trending?l=SPARQL" + "color": "#0C4597", + "url": "https://github.com/trending?l=SPARQL" }, "SQF": { - "color": "#3F3F3F", - "url": "https://github.com/trending?l=SQF" + "color": "#3F3F3F", + "url": "https://github.com/trending?l=SQF" }, "SQL": { - "color": "#e38c00", - "url": "https://github.com/trending?l=SQL" + "color": "#e38c00", + "url": "https://github.com/trending?l=SQL" }, "SQLPL": { - "color": "#e38c00", - "url": "https://github.com/trending?l=SQLPL" + "color": "#e38c00", + "url": "https://github.com/trending?l=SQLPL" }, "Squirrel": { - "color": "#800000", - "url": "https://github.com/trending?l=Squirrel" + "color": "#800000", + "url": "https://github.com/trending?l=Squirrel" }, "SRecode Template": { - "color": "#348a34", - "url": "https://github.com/trending?l=SRecode-Template" + "color": "#348a34", + "url": "https://github.com/trending?l=SRecode-Template" }, "Stan": { - "color": "#b2011d", - "url": "https://github.com/trending?l=Stan" + "color": "#b2011d", + "url": "https://github.com/trending?l=Stan" }, "Standard ML": { - "color": "#dc566d", - "url": "https://github.com/trending?l=Standard-ML" + "color": "#dc566d", + "url": "https://github.com/trending?l=Standard-ML" }, "Starlark": { - "color": "#76d275", - "url": "https://github.com/trending?l=Starlark" + "color": "#76d275", + "url": "https://github.com/trending?l=Starlark" }, "Stata": { - "color": "#1a5f91", - "url": "https://github.com/trending?l=Stata" + "color": "#1a5f91", + "url": "https://github.com/trending?l=Stata" }, "STL": { - "color": "#373b5e", - "url": "https://github.com/trending?l=STL" + "color": "#373b5e", + "url": "https://github.com/trending?l=STL" }, "StringTemplate": { - "color": "#3fb34f", - "url": "https://github.com/trending?l=StringTemplate" + "color": "#3fb34f", + "url": "https://github.com/trending?l=StringTemplate" }, "Stylus": { - "color": "#ff6347", - "url": "https://github.com/trending?l=Stylus" + "color": "#ff6347", + "url": "https://github.com/trending?l=Stylus" }, "SubRip Text": { - "color": "#9e0101", - "url": "https://github.com/trending?l=SubRip-Text" + "color": "#9e0101", + "url": "https://github.com/trending?l=SubRip-Text" }, "SugarSS": { - "color": "#2fcc9f", - "url": "https://github.com/trending?l=SugarSS" + "color": "#2fcc9f", + "url": "https://github.com/trending?l=SugarSS" }, "SuperCollider": { - "color": "#46390b", - "url": "https://github.com/trending?l=SuperCollider" + "color": "#46390b", + "url": "https://github.com/trending?l=SuperCollider" }, "Svelte": { - "color": "#ff3e00", - "url": "https://github.com/trending?l=Svelte" + "color": "#ff3e00", + "url": "https://github.com/trending?l=Svelte" }, "SVG": { - "color": "#ff9900", - "url": "https://github.com/trending?l=SVG" + "color": "#ff9900", + "url": "https://github.com/trending?l=SVG" }, "Swift": { - "color": "#F05138", - "url": "https://github.com/trending?l=Swift" + "color": "#F05138", + "url": "https://github.com/trending?l=Swift" }, "SWIG": { - "color": null, - "url": "https://github.com/trending?l=SWIG" + "color": null, + "url": "https://github.com/trending?l=SWIG" }, "SystemVerilog": { - "color": "#DAE1C2", - "url": "https://github.com/trending?l=SystemVerilog" + "color": "#DAE1C2", + "url": "https://github.com/trending?l=SystemVerilog" }, "Talon": { - "color": "#333333", - "url": "https://github.com/trending?l=Talon" + "color": "#333333", + "url": "https://github.com/trending?l=Talon" }, "Tcl": { - "color": "#e4cc98", - "url": "https://github.com/trending?l=Tcl" + "color": "#e4cc98", + "url": "https://github.com/trending?l=Tcl" }, "Tcsh": { - "color": null, - "url": "https://github.com/trending?l=Tcsh" + "color": null, + "url": "https://github.com/trending?l=Tcsh" }, "Terra": { - "color": "#00004c", - "url": "https://github.com/trending?l=Terra" + "color": "#00004c", + "url": "https://github.com/trending?l=Terra" }, "TeX": { - "color": "#3D6117", - "url": "https://github.com/trending?l=TeX" + "color": "#3D6117", + "url": "https://github.com/trending?l=TeX" }, "Textile": { - "color": "#ffe7ac", - "url": "https://github.com/trending?l=Textile" + "color": "#ffe7ac", + "url": "https://github.com/trending?l=Textile" }, "TextMate Properties": { - "color": "#df66e4", - "url": "https://github.com/trending?l=TextMate-Properties" + "color": "#df66e4", + "url": "https://github.com/trending?l=TextMate-Properties" }, "Thrift": { - "color": "#D12127", - "url": "https://github.com/trending?l=Thrift" + "color": "#D12127", + "url": "https://github.com/trending?l=Thrift" }, "TI Program": { - "color": "#A0AA87", - "url": "https://github.com/trending?l=TI-Program" + "color": "#A0AA87", + "url": "https://github.com/trending?l=TI-Program" }, "TLA": { - "color": "#4b0079", - "url": "https://github.com/trending?l=TLA" + "color": "#4b0079", + "url": "https://github.com/trending?l=TLA" }, "TOML": { - "color": "#9c4221", - "url": "https://github.com/trending?l=TOML" + "color": "#9c4221", + "url": "https://github.com/trending?l=TOML" }, "TSQL": { - "color": "#e38c00", - "url": "https://github.com/trending?l=TSQL" + "color": "#e38c00", + "url": "https://github.com/trending?l=TSQL" }, "TSV": { - "color": "#237346", - "url": "https://github.com/trending?l=TSV" + "color": "#237346", + "url": "https://github.com/trending?l=TSV" }, "TSX": { - "color": "#3178c6", - "url": "https://github.com/trending?l=TSX" + "color": "#3178c6", + "url": "https://github.com/trending?l=TSX" }, "Turing": { - "color": "#cf142b", - "url": "https://github.com/trending?l=Turing" + "color": "#cf142b", + "url": "https://github.com/trending?l=Turing" }, "Twig": { - "color": "#c1d026", - "url": "https://github.com/trending?l=Twig" + "color": "#c1d026", + "url": "https://github.com/trending?l=Twig" }, "TXL": { - "color": "#0178b8", - "url": "https://github.com/trending?l=TXL" + "color": "#0178b8", + "url": "https://github.com/trending?l=TXL" }, "TypeScript": { - "color": "#3178c6", - "url": "https://github.com/trending?l=TypeScript" + "color": "#3178c6", + "url": "https://github.com/trending?l=TypeScript" }, "Unified Parallel C": { - "color": "#4e3617", - "url": "https://github.com/trending?l=Unified-Parallel-C" + "color": "#4e3617", + "url": "https://github.com/trending?l=Unified-Parallel-C" }, "Unity3D Asset": { - "color": "#222c37", - "url": "https://github.com/trending?l=Unity3D-Asset" + "color": "#222c37", + "url": "https://github.com/trending?l=Unity3D-Asset" }, "Unix Assembly": { - "color": null, - "url": "https://github.com/trending?l=Unix-Assembly" + "color": null, + "url": "https://github.com/trending?l=Unix-Assembly" }, "Uno": { - "color": "#9933cc", - "url": "https://github.com/trending?l=Uno" + "color": "#9933cc", + "url": "https://github.com/trending?l=Uno" }, "UnrealScript": { - "color": "#a54c4d", - "url": "https://github.com/trending?l=UnrealScript" + "color": "#a54c4d", + "url": "https://github.com/trending?l=UnrealScript" }, "UrWeb": { - "color": "#ccccee", - "url": "https://github.com/trending?l=UrWeb" + "color": "#ccccee", + "url": "https://github.com/trending?l=UrWeb" }, "V": { - "color": "#4f87c4", - "url": "https://github.com/trending?l=V" + "color": "#4f87c4", + "url": "https://github.com/trending?l=V" }, "Vala": { - "color": "#a56de2", - "url": "https://github.com/trending?l=Vala" + "color": "#a56de2", + "url": "https://github.com/trending?l=Vala" }, "Valve Data Format": { - "color": "#f26025", - "url": "https://github.com/trending?l=Valve-Data-Format" + "color": "#f26025", + "url": "https://github.com/trending?l=Valve-Data-Format" }, "VBA": { - "color": "#867db1", - "url": "https://github.com/trending?l=VBA" + "color": "#867db1", + "url": "https://github.com/trending?l=VBA" }, "VBScript": { - "color": "#15dcdc", - "url": "https://github.com/trending?l=VBScript" + "color": "#15dcdc", + "url": "https://github.com/trending?l=VBScript" }, "VCL": { - "color": "#148AA8", - "url": "https://github.com/trending?l=VCL" + "color": "#148AA8", + "url": "https://github.com/trending?l=VCL" }, "Velocity Template Language": { - "color": "#507cff", - "url": "https://github.com/trending?l=Velocity-Template-Language" + "color": "#507cff", + "url": "https://github.com/trending?l=Velocity-Template-Language" }, "Verilog": { - "color": "#b2b7f8", - "url": "https://github.com/trending?l=Verilog" + "color": "#b2b7f8", + "url": "https://github.com/trending?l=Verilog" }, "VHDL": { - "color": "#adb2cb", - "url": "https://github.com/trending?l=VHDL" + "color": "#adb2cb", + "url": "https://github.com/trending?l=VHDL" }, "Vim Help File": { - "color": "#199f4b", - "url": "https://github.com/trending?l=Vim-Help-File" + "color": "#199f4b", + "url": "https://github.com/trending?l=Vim-Help-File" }, "Vim Script": { - "color": "#199f4b", - "url": "https://github.com/trending?l=Vim-Script" + "color": "#199f4b", + "url": "https://github.com/trending?l=Vim-Script" }, "Vim Snippet": { - "color": "#199f4b", - "url": "https://github.com/trending?l=Vim-Snippet" + "color": "#199f4b", + "url": "https://github.com/trending?l=Vim-Snippet" }, "Visual Basic .NET": { - "color": "#945db7", - "url": "https://github.com/trending?l=Visual-Basic-.NET" + "color": "#945db7", + "url": "https://github.com/trending?l=Visual-Basic-.NET" }, "Volt": { - "color": "#1F1F1F", - "url": "https://github.com/trending?l=Volt" + "color": "#1F1F1F", + "url": "https://github.com/trending?l=Volt" }, "Vue": { - "color": "#41b883", - "url": "https://github.com/trending?l=Vue" + "color": "#41b883", + "url": "https://github.com/trending?l=Vue" }, "Vyper": { - "color": "#2980b9", - "url": "https://github.com/trending?l=Vyper" + "color": "#2980b9", + "url": "https://github.com/trending?l=Vyper" }, "wdl": { - "color": "#42f1f4", - "url": "https://github.com/trending?l=wdl" + "color": "#42f1f4", + "url": "https://github.com/trending?l=wdl" }, "Web Ontology Language": { - "color": "#5b70bd", - "url": "https://github.com/trending?l=Web-Ontology-Language" + "color": "#5b70bd", + "url": "https://github.com/trending?l=Web-Ontology-Language" }, "WebAssembly": { - "color": "#04133b", - "url": "https://github.com/trending?l=WebAssembly" + "color": "#04133b", + "url": "https://github.com/trending?l=WebAssembly" }, "WebIDL": { - "color": null, - "url": "https://github.com/trending?l=WebIDL" + "color": null, + "url": "https://github.com/trending?l=WebIDL" }, "Whiley": { - "color": "#d5c397", - "url": "https://github.com/trending?l=Whiley" + "color": "#d5c397", + "url": "https://github.com/trending?l=Whiley" }, "Wikitext": { - "color": "#fc5757", - "url": "https://github.com/trending?l=Wikitext" + "color": "#fc5757", + "url": "https://github.com/trending?l=Wikitext" }, "Windows Registry Entries": { - "color": "#52d5ff", - "url": "https://github.com/trending?l=Windows-Registry-Entries" + "color": "#52d5ff", + "url": "https://github.com/trending?l=Windows-Registry-Entries" }, "wisp": { - "color": "#7582D1", - "url": "https://github.com/trending?l=wisp" + "color": "#7582D1", + "url": "https://github.com/trending?l=wisp" }, "Witcher Script": { - "color": "#ff0000", - "url": "https://github.com/trending?l=Witcher-Script" + "color": "#ff0000", + "url": "https://github.com/trending?l=Witcher-Script" }, "Wollok": { - "color": "#a23738", - "url": "https://github.com/trending?l=Wollok" + "color": "#a23738", + "url": "https://github.com/trending?l=Wollok" }, "World of Warcraft Addon Data": { - "color": "#f7e43f", - "url": "https://github.com/trending?l=World-of-Warcraft-Addon-Data" + "color": "#f7e43f", + "url": "https://github.com/trending?l=World-of-Warcraft-Addon-Data" }, "Wren": { - "color": "#383838", - "url": "https://github.com/trending?l=Wren" + "color": "#383838", + "url": "https://github.com/trending?l=Wren" }, "X10": { - "color": "#4B6BEF", - "url": "https://github.com/trending?l=X10" + "color": "#4B6BEF", + "url": "https://github.com/trending?l=X10" }, "xBase": { - "color": "#403a40", - "url": "https://github.com/trending?l=xBase" + "color": "#403a40", + "url": "https://github.com/trending?l=xBase" }, "XC": { - "color": "#99DA07", - "url": "https://github.com/trending?l=XC" + "color": "#99DA07", + "url": "https://github.com/trending?l=XC" }, "XML": { - "color": "#0060ac", - "url": "https://github.com/trending?l=XML" + "color": "#0060ac", + "url": "https://github.com/trending?l=XML" }, "XML Property List": { - "color": "#0060ac", - "url": "https://github.com/trending?l=XML-Property-List" + "color": "#0060ac", + "url": "https://github.com/trending?l=XML-Property-List" }, "Xojo": { - "color": "#81bd41", - "url": "https://github.com/trending?l=Xojo" + "color": "#81bd41", + "url": "https://github.com/trending?l=Xojo" }, "Xonsh": { - "color": "#285EEF", - "url": "https://github.com/trending?l=Xonsh" + "color": "#285EEF", + "url": "https://github.com/trending?l=Xonsh" }, "XProc": { - "color": null, - "url": "https://github.com/trending?l=XProc" + "color": null, + "url": "https://github.com/trending?l=XProc" }, "XQuery": { - "color": "#5232e7", - "url": "https://github.com/trending?l=XQuery" + "color": "#5232e7", + "url": "https://github.com/trending?l=XQuery" }, "XS": { - "color": null, - "url": "https://github.com/trending?l=XS" + "color": null, + "url": "https://github.com/trending?l=XS" }, "XSLT": { - "color": "#EB8CEB", - "url": "https://github.com/trending?l=XSLT" + "color": "#EB8CEB", + "url": "https://github.com/trending?l=XSLT" }, "Xtend": { - "color": "#24255d", - "url": "https://github.com/trending?l=Xtend" + "color": "#24255d", + "url": "https://github.com/trending?l=Xtend" }, "Yacc": { - "color": "#4B6C4B", - "url": "https://github.com/trending?l=Yacc" + "color": "#4B6C4B", + "url": "https://github.com/trending?l=Yacc" }, "YAML": { - "color": "#cb171e", - "url": "https://github.com/trending?l=YAML" + "color": "#cb171e", + "url": "https://github.com/trending?l=YAML" }, "YARA": { - "color": "#220000", - "url": "https://github.com/trending?l=YARA" + "color": "#220000", + "url": "https://github.com/trending?l=YARA" }, "YASnippet": { - "color": "#32AB90", - "url": "https://github.com/trending?l=YASnippet" + "color": "#32AB90", + "url": "https://github.com/trending?l=YASnippet" }, "Yul": { - "color": "#794932", - "url": "https://github.com/trending?l=Yul" + "color": "#794932", + "url": "https://github.com/trending?l=Yul" }, "ZAP": { - "color": "#0d665e", - "url": "https://github.com/trending?l=ZAP" + "color": "#0d665e", + "url": "https://github.com/trending?l=ZAP" }, "Zeek": { - "color": null, - "url": "https://github.com/trending?l=Zeek" + "color": null, + "url": "https://github.com/trending?l=Zeek" }, "ZenScript": { - "color": "#00BCD1", - "url": "https://github.com/trending?l=ZenScript" + "color": "#00BCD1", + "url": "https://github.com/trending?l=ZenScript" }, "Zephir": { - "color": "#118f9e", - "url": "https://github.com/trending?l=Zephir" + "color": "#118f9e", + "url": "https://github.com/trending?l=Zephir" }, "Zig": { - "color": "#ec915c", - "url": "https://github.com/trending?l=Zig" + "color": "#ec915c", + "url": "https://github.com/trending?l=Zig" }, "ZIL": { - "color": "#dc75e5", - "url": "https://github.com/trending?l=ZIL" + "color": "#dc75e5", + "url": "https://github.com/trending?l=ZIL" }, "Zimpl": { - "color": "#d67711", - "url": "https://github.com/trending?l=Zimpl" + "color": "#d67711", + "url": "https://github.com/trending?l=Zimpl" } -} +} \ No newline at end of file diff --git a/npm-shrinkwrap.json b/npm-shrinkwrap.json index 3971b1a304..2250f95e8b 100644 --- a/npm-shrinkwrap.json +++ b/npm-shrinkwrap.json @@ -40,6 +40,7 @@ "@radix-ui/react-tooltip": "^1.0.3", "@react-spring/web": "^9.7.3", "@sentry/nextjs": "^7.80.0", + "@stripe/stripe-js": "^1.46.0", "@supabase/auth-helpers-nextjs": "^0.7.2", "@supabase/auth-helpers-react": "^0.4.0", "@supabase/gotrue-js": "^1.22.22", @@ -81,6 +82,7 @@ "remark-gfm": "^4.0.0", "rooks": "^7.4.4", "schema-dts": "^1.1.0", + "stripe": "^11.8.0", "swiper": "^10.2.0", "swr": "^2.0.3", "tailwindcss-animate": "^1.0.7", @@ -13428,6 +13430,11 @@ "url": "https://opencollective.com/storybook" } }, + "node_modules/@stripe/stripe-js": { + "version": "1.46.0", + "resolved": "https://registry.npmjs.org/@stripe/stripe-js/-/stripe-js-1.46.0.tgz", + "integrity": "sha512-dkm0zCEoRLu5rTnsIgwDf/QG2DKcalOT2dk1IVgMySOHWTChLyOvQwMYhEduGgLvyYWTwNhAUV4WOLPQvjwLwA==" + }, "node_modules/@supabase/auth-helpers-nextjs": { "version": "0.7.2", "resolved": "https://registry.npmjs.org/@supabase/auth-helpers-nextjs/-/auth-helpers-nextjs-0.7.2.tgz", @@ -16589,7 +16596,6 @@ "version": "1.0.7", "resolved": "https://registry.npmjs.org/call-bind/-/call-bind-1.0.7.tgz", "integrity": "sha512-GHTSNSYICQ7scH7sZ+M2rFopRoLh8t2bLSW6BbgrtLsahOIB5iyAVJf9GjWK3cYTDaMj4XdBpM1cA6pIS0Kv2w==", - "dev": true, "dependencies": { "es-define-property": "^1.0.0", "es-errors": "^1.3.0", @@ -18287,7 +18293,6 @@ "version": "1.1.4", "resolved": "https://registry.npmjs.org/define-data-property/-/define-data-property-1.1.4.tgz", "integrity": "sha512-rBMvIzlpA8v6E+SJZoo++HAYqsLrkg7MSfIinMPFhmkorw7X+dOXVJQs+QT69zGkzMyfDnIMN2Wid1+NbL3T+A==", - "dev": true, "dependencies": { "es-define-property": "^1.0.0", "es-errors": "^1.3.0", @@ -19035,7 +19040,6 @@ "version": "1.0.0", "resolved": "https://registry.npmjs.org/es-define-property/-/es-define-property-1.0.0.tgz", "integrity": "sha512-jxayLKShrEqqzJ0eumQbVhTYQM27CfT1T35+gCgDFoL82JLsXqTJ76zv6A0YLOgEnLUMvLzsDsGIrl8NFpT2gQ==", - "dev": true, "dependencies": { "get-intrinsic": "^1.2.4" }, @@ -19047,7 +19051,6 @@ "version": "1.3.0", "resolved": "https://registry.npmjs.org/es-errors/-/es-errors-1.3.0.tgz", "integrity": "sha512-Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw==", - "dev": true, "engines": { "node": ">= 0.4" } @@ -21364,7 +21367,6 @@ "version": "1.2.4", "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.2.4.tgz", "integrity": "sha512-5uYhsJH8VJBTv7oslg4BznJYhDoRI6waYCxMmCdnTrcCrHA/fCFKoTFz2JKKE0HdDFUF7/oQuhzumXJK7paBRQ==", - "dev": true, "dependencies": { "es-errors": "^1.3.0", "function-bind": "^1.1.2", @@ -21701,7 +21703,6 @@ "version": "1.0.1", "resolved": "https://registry.npmjs.org/gopd/-/gopd-1.0.1.tgz", "integrity": "sha512-d65bNlIadxvpb/A2abVdlqKqV563juRnZ1Wtk6s1sIR8uNsXR70xqIzVqxVf1eTqDunwT2MkczEeaezCKTZhwA==", - "dev": true, "dependencies": { "get-intrinsic": "^1.1.3" }, @@ -21821,7 +21822,6 @@ "version": "1.0.2", "resolved": "https://registry.npmjs.org/has-property-descriptors/-/has-property-descriptors-1.0.2.tgz", "integrity": "sha512-55JNKuIW+vq4Ke1BjOTjM2YctQIvCT7GFzHwmfZPGo5wnrgkid0YQtnAleFSqumZm4az3n2BS+erby5ipJdgrg==", - "dev": true, "dependencies": { "es-define-property": "^1.0.0" }, @@ -21833,7 +21833,6 @@ "version": "1.0.3", "resolved": "https://registry.npmjs.org/has-proto/-/has-proto-1.0.3.tgz", "integrity": "sha512-SJ1amZAJUiZS+PhsVLf5tGydlaVB8EdFpaSO4gmiUKUOxk8qzn5AIy4ZeJUmh22znIdk/uMAUT2pl3FxzVUH+Q==", - "dev": true, "engines": { "node": ">= 0.4" }, @@ -21845,7 +21844,6 @@ "version": "1.0.3", "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.3.tgz", "integrity": "sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A==", - "dev": true, "engines": { "node": ">= 0.4" }, @@ -26606,7 +26604,6 @@ "version": "1.13.1", "resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.13.1.tgz", "integrity": "sha512-5qoj1RUiKOMsCCNLV1CBiPYE10sziTsnmNxkAI/rZhiD63CF7IqdFGC/XzjWjpSgLf0LxXX3bDFIh0E18f6UhQ==", - "dev": true, "funding": { "url": "https://github.com/sponsors/ljharb" } @@ -28008,7 +28005,6 @@ "version": "6.11.0", "resolved": "https://registry.npmjs.org/qs/-/qs-6.11.0.tgz", "integrity": "sha512-MvjoMCJwEarSbUYk5O+nmoSzSutSsTwF85zcHPQ9OrlFoZOYIjaqBAJIqIXjptyD5vThxGq52Xu/MaJzRkIk4Q==", - "dev": true, "dependencies": { "side-channel": "^1.0.4" }, @@ -29538,7 +29534,6 @@ "version": "1.2.2", "resolved": "https://registry.npmjs.org/set-function-length/-/set-function-length-1.2.2.tgz", "integrity": "sha512-pgRc4hJ4/sNjWCSS9AmnS40x3bNMDTknHgL5UaMBTMyJnU90EgWh1Rz+MC9eFu4BuN/UwZjKQuY/1v3rM7HMfg==", - "dev": true, "dependencies": { "define-data-property": "^1.1.4", "es-errors": "^1.3.0", @@ -29695,7 +29690,6 @@ "version": "1.0.4", "resolved": "https://registry.npmjs.org/side-channel/-/side-channel-1.0.4.tgz", "integrity": "sha512-q5XPytqFEIKHkGdiMIrY10mvLRvnQh42/+GoBlFW3b2LXLE2xxJpZFdm94we0BaoV3RwJyGqg5wS7epxTv0Zvw==", - "dev": true, "dependencies": { "call-bind": "^1.0.0", "get-intrinsic": "^1.0.2", @@ -30348,6 +30342,18 @@ "url": "https://github.com/sponsors/antfu" } }, + "node_modules/stripe": { + "version": "11.8.0", + "resolved": "https://registry.npmjs.org/stripe/-/stripe-11.8.0.tgz", + "integrity": "sha512-aGwrJDqYzpjQj0ejt7oN7BE7kUjZFxhUz/gDeyDCS7CBpZhDb26Eb6z9sS8KdbsbmuS8rkkn2lBY4koK7L1ZCw==", + "dependencies": { + "@types/node": ">=8.1.0", + "qs": "^6.11.0" + }, + "engines": { + "node": ">=12.*" + } + }, "node_modules/style-loader": { "version": "3.3.3", "resolved": "https://registry.npmjs.org/style-loader/-/style-loader-3.3.3.tgz",