>;
+
+// eslint-disable-next-line @typescript-eslint/no-explicit-any
+export type CustomizationOpts>> = P & {
+ theme: Theme;
+};
+
+export type CustomizableProps = {
+ componentForm: ComponentProps;
+ connectButton: ComponentProps & FormFieldContext;
+ controlAny: ComponentProps & FormFieldContext;
+ controlApp: ComponentProps & FormFieldContext;
+ controlBoolean: ComponentProps & FormFieldContext;
+ controlInput: ComponentProps & FormFieldContext;
+ controlSubmit: ComponentProps;
+ description: ComponentProps;
+ error: ComponentProps;
+ errors: ComponentProps;
+ field: ComponentProps;
+ heading: ComponentProps;
+ label: ComponentProps;
+ optionalFields: ComponentProps;
+ optionalFieldButton: ComponentProps;
+};
+
+export type CustomClassNamesFn = ((opts: CustomizationOpts) => string);
+export type CustomClassNamesConfig = {
+ [K in keyof CustomizableProps]?: string | CustomClassNamesFn
+} & {
+ [K in keyof ReactSelectComponents]?: ReactSelectClassNamesConfig
+};
+
+export type CustomStylesFn = ((baseStyles: CSSProperties, opts: CustomizationOpts) => CSSProperties);
+export type CustomStylesConfig = {
+ [K in keyof Omit]?: CSSProperties | CustomStylesFn
+} & {
+ [K in keyof ReactSelectComponents]?: ReactSelectStylesConfig
+};
+
+export type CustomizationConfig> = {
+ classNames?: CustomClassNamesConfig;
+ classNamePrefix?: string;
+ components?: CustomComponentsConfig ;
+ styles?: CustomStylesConfig;
+ theme?: CustomThemeConfig;
+ unstyled?: boolean;
+};
+
+export const CustomizationContext = createContext>({ // eslint-disable-line @typescript-eslint/no-explicit-any
+ classNames: {},
+ classNamePrefix: "",
+ components: {},
+ styles: {},
+ theme: defaultTheme,
+ unstyled: false,
+});
+
+export type CustomizationProps = {
+ className: string;
+ style: CSSProperties;
+};
+export type BaseReactSelectProps> = {
+ components?: ReactSelectComponentsConfig ;
+ styles?: ReactSelectStylesConfig;
+};
+
+// XXX refactor generics in this file to fix relationship between Key and other generics, etc.
+export type Customization = {
+ getClassNames: (name: Key, props: CustomizableProps[Key]) => string;
+ getComponents: () => ComponentLibrary;
+ getProps: (name: Key, baseStyles: CSSProperties, props: CustomizableProps[Key]) => CustomizationProps;
+ getStyles: (name: Key, baseStyles: CSSProperties, props: CustomizableProps[Key]) => CSSProperties;
+ theme: Theme;
+ select: {
+ getClassNamePrefix: (name: Key) => string;
+ getClassNames: (name: Key) => ReactSelectClassNamesConfig;
+ // eslint-disable-next-line @typescript-eslint/no-explicit-any
+ getComponents: (name: Key, baseComponents?: ReactSelectComponentsConfig) => ReactSelectComponentsConfig;
+ getStyles: (name: Key, baseStyles?: ReactSelectStylesConfig) => ReactSelectStylesConfig;
+ // eslint-disable-next-line @typescript-eslint/no-explicit-any
+ getProps: (name: Key, baseProps?: BaseReactSelectProps) => ReactSelectCustomizationProps;
+ theme: ReactSelectTheme;
+ };
+};
+
+function createSelectCustomization(): Customization["select"] {
+ const context = useContext(CustomizationContext) ?? {};
+ const theme = getReactSelectTheme(context.theme ?? {});
+ function getClassNamePrefix(): string {
+ return context.classNamePrefix ?? "";
+ }
+
+ function getClassNames(name: Key): ReactSelectClassNamesConfig {
+ const baseClassName = `${context?.classNamePrefix ?? "pd-"}${name}`;
+ const classNames: ReactSelectClassNamesConfig = {
+ ...(context.classNames?.[name] ?? {}),
+ };
+ if (typeof classNames?.container == "function") {
+ classNames.container = typeof classNames?.container == "function"
+ ? (...args) => ([
+ classNames?.container?.(...args),
+ baseClassName,
+ ]).join(" ")
+ : () => baseClassName;
+ }
+ return classNames;
+ }
+
+ // eslint-disable-next-line @typescript-eslint/no-explicit-any
+ function getComponents(name: Key, baseComponents?: ReactSelectComponentsConfig): ReactSelectComponentsConfig {
+ return {
+ ...ReactSelectComponents,
+ ...(baseComponents ?? {}),
+ ...(context?.components?.[name] ?? {}),
+ };
+ }
+
+ function getStyles(name: Key, baseStyles?: ReactSelectStylesConfig): ReactSelectStylesConfig {
+ return mergeReactSelectStyles(context.styles?.[name] ?? {}, baseStyles ?? {});
+ }
+
+ // eslint-disable-next-line @typescript-eslint/no-explicit-any
+ function getProps(name: Key, baseProps?: BaseReactSelectProps): ReactSelectCustomizationProps {
+ return {
+ classNamePrefix: getClassNamePrefix(),
+ classNames: getClassNames(name),
+ components: getComponents(name, baseProps?.components),
+ styles: getStyles(name, baseProps?.styles),
+ theme,
+ };
+ }
+
+ return {
+ getClassNamePrefix,
+ getClassNames,
+ getComponents,
+ getProps,
+ getStyles,
+ theme,
+ };
+}
+
+export function useCustomize(): Customization {
+ const context = useContext(CustomizationContext) ?? {};
+ const customTheme = context.theme;
+ const baseTheme = context.unstyled
+ ? unstyledTheme
+ : defaultTheme;
+ const theme = typeof customTheme == "function"
+ ? mergeTheme(baseTheme, customTheme(baseTheme))
+ : mergeTheme(baseTheme, customTheme);
+
+ function getClassNames(name: Key, props: CustomizableProps[Key]): string {
+ const baseClassName = `${context?.classNamePrefix ?? "pd-"}${name.toLowerCase()}`;
+ const customClassNames = context.classNames?.[name] as CustomClassNamesConfig[Key];
+ if (typeof customClassNames == "function") {
+ const customClassNamesFn = customClassNames as CustomClassNamesFn;
+
+ const opts = {
+ ...(props ?? {}),
+ theme,
+ } as CustomizationOpts;
+ return [
+ baseClassName,
+ customClassNamesFn(opts),
+ ].filter(Boolean).join(" ");
+ }
+ return [
+ baseClassName,
+ customClassNames,
+ ].filter(Boolean).join(" ");
+ }
+
+ function getComponents(): ComponentLibrary {
+ return {
+ ...defaultComponents,
+ ...(context?.components ?? {}),
+ } as ComponentLibrary;
+ }
+
+ function getStyles(name: Key, baseStyles: CSSProperties, props: CustomizableProps[Key]): CSSProperties {
+ const customStyles = context.styles?.[name] as CustomStylesConfig[Key];
+ if (typeof customStyles == "function") {
+ const customStylesFn = customStyles as CustomStylesFn;
+ const opts = {
+ ...(props ?? {}),
+ theme,
+ } as CustomizationOpts;
+ return customStylesFn(baseStyles, opts);
+ }
+ if (customStyles) {
+ return {
+ ...baseStyles,
+ ...customStyles,
+ } as CSSProperties;
+ }
+ return baseStyles;
+ }
+
+ function getProps(name: Key, baseStyles: CSSProperties, props: CustomizableProps[Key]): CustomizationProps {
+ return {
+ className: getClassNames(name, props),
+ style: getStyles(name, baseStyles, props),
+ };
+ }
+ return {
+ getClassNames,
+ getComponents,
+ getProps,
+ getStyles,
+ select: createSelectCustomization(),
+ theme,
+ };
+}
+
+export const CustomizeProvider = ({
+ children,
+ ...customizationProps
+}: CustomizationConfig & { children: ReactNode; }) => { // eslint-disable-line @typescript-eslint/no-explicit-any
+ return {children} ;
+};
diff --git a/packages/connect-react/src/hooks/form-context.tsx b/packages/connect-react/src/hooks/form-context.tsx
new file mode 100644
index 0000000000000..78647b8da5711
--- /dev/null
+++ b/packages/connect-react/src/hooks/form-context.tsx
@@ -0,0 +1,317 @@
+import {
+ createContext, useContext, useEffect, useId, useState, type ReactNode,
+} from "react";
+import isEqual from "lodash.isequal";
+import { useQuery } from "@tanstack/react-query";
+import type {
+ ComponentReloadPropsOpts, ConfigurableProp, ConfigurableProps, ConfiguredProps, V1Component,
+} from "@pipedream/sdk";
+import { useFrontendClient } from "./frontend-client-context";
+import type { ComponentFormProps } from "../components/ComponentForm";
+
+export type DynamicProps = { id: string; configurable_props: T; }; // TODO
+
+export type FormContext = {
+ component: V1Component;
+ configurableProps: T; // dynamicProps.configurable_props || props.component.configurable_props
+ configuredProps: ConfiguredProps;
+ dynamicProps?: DynamicProps; // lots of calls require dynamicProps?.id, so need to expose
+ dynamicPropsQueryIsFetching?: boolean;
+ id: string;
+ isValid: boolean;
+ optionalPropIsEnabled: (prop: ConfigurableProp) => boolean;
+ optionalPropSetEnabled: (prop: ConfigurableProp, enabled: boolean) => void;
+ props: ComponentFormProps;
+ queryDisabledIdx?: number;
+ setConfiguredProp: (idx: number, value: unknown) => void; // XXX type safety for value (T will rarely be static right?)
+ setSubmitting: (submitting: boolean) => void;
+ submitting: boolean;
+ userId: string;
+};
+
+export const FormContext = createContext | undefined>(undefined); // eslint-disable-line @typescript-eslint/no-explicit-any
+
+export const useFormContext = () => {
+ const context = useContext(FormContext);
+
+ if (!context) {
+ // TODO: Improve error using hook/component names once we finalize them
+ throw new Error("Must be used inside provider");
+ }
+
+ return context;
+};
+
+type FormContextProviderProps = {
+ children: ReactNode;
+} & {
+ props: ComponentFormProps;
+};
+
+export const FormContextProvider = ({
+ children, props: formProps,
+}: FormContextProviderProps) => {
+ const client = useFrontendClient();
+
+ const id = useId();
+
+ const {
+ component, configuredProps: __configuredProps, propNames, userId,
+ } = formProps;
+ const componentId = component.key;
+
+ const [
+ queryDisabledIdx,
+ setQueryDisabledIdx,
+ ] = useState(0);
+ const [
+ submitting,
+ setSubmitting,
+ ] = useState(false);
+ const [
+ errors,
+ setErrors,
+ ] = useState>({});
+
+ const [
+ enabledOptionalProps,
+ setEnabledOptionalProps,
+ ] = useState>({});
+ useEffect(() => {
+ setEnabledOptionalProps({});
+ }, [
+ component,
+ ]);
+ // XXX pass this down? (in case we make it hash or set backed, but then also provide {add,remove} instead of set)
+ const optionalPropIsEnabled = (prop: ConfigurableProp) => enabledOptionalProps[prop.name];
+
+ let configuredProps = __configuredProps || {} as ConfiguredProps;
+ const [
+ _configuredProps,
+ _setConfiguredProps,
+ ] = useState(configuredProps);
+ const setConfiguredProps = formProps.onUpdateConfiguredProps || _setConfiguredProps;
+ if (!formProps.onUpdateConfiguredProps) {
+ configuredProps = _configuredProps;
+ }
+
+ const [
+ dynamicProps,
+ setDynamicProps,
+ ] = useState>();
+ const [
+ reloadPropIdx,
+ setReloadPropIdx,
+ ] = useState();
+ const componentReloadPropsInput: ComponentReloadPropsOpts = {
+ userId,
+ componentId,
+ configuredProps,
+ dynamicPropsId: dynamicProps?.id,
+ };
+ const {
+ isFetching: dynamicPropsQueryIsFetching,
+ // TODO error
+ } = useQuery({
+ queryKey: [
+ "dynamicProps",
+ ],
+ queryFn: async () => {
+ const { dynamic_props } = await client.componentReloadProps(componentReloadPropsInput);
+ // XXX what about if null?
+ // TODO observation errors, etc.
+ if (dynamic_props) {
+ setDynamicProps(dynamic_props);
+ }
+ setReloadPropIdx(undefined);
+ return []; // XXX ok to mutate above and not look at data?
+ },
+ enabled: reloadPropIdx != null, // TODO or props.dynamicPropsId && !dynamicProps
+ });
+
+ // XXX fix types of dynamicProps, props.component so this type decl not needed
+ let configurableProps: T = dynamicProps?.configurable_props || formProps.component.configurable_props || [];
+ if (propNames?.length) {
+ const _configurableProps = [];
+ for (const prop of configurableProps) {
+ // TODO decided propNames (and hideOptionalProps) should NOT filter dynamic props
+ if (propNames.findIndex((name) => prop.name === name) >= 0) {
+ _configurableProps.push(prop);
+ }
+ }
+ configurableProps = _configurableProps as unknown as T; // XXX
+ }
+ if (reloadPropIdx) {
+ configurableProps = configurableProps.slice(0, reloadPropIdx + 1) as unknown as T; // XXX
+ }
+
+ // these validations are necessary because they might override PropInput for number case for instance
+ // so can't rely on that base control form validation
+ const propErrors = (prop: ConfigurableProp, value: unknown): string[] => {
+ const errs: string[] = [];
+ if (value === undefined) {
+ if (!prop.optional) {
+ errs.push("required");
+ }
+ } else if (prop.type === "integer") { // XXX type should be "number"? we don't support floats otherwise...
+ if (typeof value !== "number") {
+ errs.push("not a number");
+ } else {
+ if (prop.min != null && value < prop.min) {
+ errs.push("number too small");
+ }
+ if (prop.max != null && value > prop.max) {
+ errs.push("number too big");
+ }
+ }
+ } else if (prop.type === "boolean") {
+ if (typeof value !== "boolean") {
+ errs.push("not a boolean");
+ }
+ } else if (prop.type === "string") {
+ if (typeof value !== "string" ) {
+ errs.push("not a string");
+ }
+ } else if (prop.type === "app") {
+ // TODO need to know about auth type
+ }
+ return errs;
+ };
+
+ const updateConfiguredPropsQueryDisabledIdx = (configuredProps: ConfiguredProps) => {
+ let _queryDisabledIdx = undefined;
+ for (let idx = 0; idx < configurableProps.length; idx++) {
+ const prop = configurableProps[idx];
+ if (prop.hidden || (prop.optional && !optionalPropIsEnabled(prop))) {
+ continue;
+ }
+ const value = configuredProps[prop.name as keyof ConfiguredProps];
+ if (value === undefined && _queryDisabledIdx == null && (prop.type === "app" || prop.remoteOptions)) {
+ _queryDisabledIdx = idx;
+ break;
+ }
+ }
+ setQueryDisabledIdx(_queryDisabledIdx);
+ };
+
+ // trusts they've been filtered to configurable props correctly already
+ const updateConfiguredProps = (configuredProps: ConfiguredProps) => {
+ setConfiguredProps(configuredProps);
+ updateConfiguredPropsQueryDisabledIdx(configuredProps);
+ const _errors: typeof errors = {};
+ for (let idx = 0; idx < configurableProps.length; idx++) {
+ const prop = configurableProps[idx];
+ const value = configuredProps[prop.name as keyof ConfiguredProps];
+ const errs = propErrors(prop, value);
+ if (errs.length) {
+ _errors[prop.name] = errs;
+ }
+ }
+ setErrors(_errors);
+ };
+
+ useEffect(() => {
+ const newConfiguredProps: ConfiguredProps = {};
+ for (const prop of configurableProps) {
+ if (prop.hidden) {
+ continue;
+ }
+ // if prop.optional and not shown, we skip and do on un-collapse
+ if (prop.optional && !optionalPropIsEnabled(prop)) {
+ continue;
+ }
+ const value = configuredProps[prop.name as keyof ConfiguredProps];
+ if (value === undefined) {
+ if ("default" in prop && prop.default != null) {
+ newConfiguredProps[prop.name as keyof ConfiguredProps] = prop.default;
+ }
+ } else {
+ if (prop.type === "integer" && typeof value !== "number") {
+ delete newConfiguredProps[prop.name as keyof ConfiguredProps];
+ } else {
+ newConfiguredProps[prop.name as keyof ConfiguredProps] = value;
+ }
+ }
+ }
+ if (!isEqual(newConfiguredProps, configuredProps)) {
+ updateConfiguredProps(newConfiguredProps);
+ }
+ }, [
+ configurableProps,
+ ]);
+
+ // clear all props on user change
+ useEffect(() => {
+ updateConfiguredProps({});
+ }, [
+ userId,
+ ]);
+
+ // maybe should take prop as first arg but for text inputs didn't want to compute index each time
+ const setConfiguredProp = (idx: number, value: unknown) => {
+ const prop = configurableProps[idx];
+ const newConfiguredProps = {
+ ...configuredProps,
+ };
+ if (value === undefined) {
+ delete newConfiguredProps[prop.name as keyof ConfiguredProps];
+ } else {
+ newConfiguredProps[prop.name as keyof ConfiguredProps] = value as any /* XXX fix prop value type from T */; // eslint-disable-line @typescript-eslint/no-explicit-any
+ }
+ setConfiguredProps(newConfiguredProps);
+ if (prop.reloadProps) {
+ setReloadPropIdx(idx);
+ }
+ if (prop.type === "app" || prop.remoteOptions) {
+ updateConfiguredPropsQueryDisabledIdx(newConfiguredProps);
+ }
+ const errs = propErrors(prop, value);
+ const newErrors = {
+ ...errors,
+ };
+ if (errs.length) {
+ newErrors[prop.name] = errs;
+ } else {
+ delete newErrors[prop.name];
+ }
+ setErrors(newErrors);
+ };
+
+ const optionalPropSetEnabled = (prop: ConfigurableProp, enabled: boolean) => {
+ const newEnabledOptionalProps = {
+ ...enabledOptionalProps,
+ };
+ if (enabled) {
+ newEnabledOptionalProps[prop.name] = true;
+ } else {
+ delete newEnabledOptionalProps[prop.name];
+ }
+ const idx = configurableProps.findIndex((p) => p.name === prop.name);
+ if (!enabled) {
+ setConfiguredProp(idx, undefined);
+ } else if ("default" in prop && prop.default != null) {
+ setConfiguredProp(idx, prop.default);
+ }
+ setEnabledOptionalProps(newEnabledOptionalProps);
+ };
+
+ // console.log("***", configurableProps, configuredProps)
+ const value: FormContext = {
+ id,
+ isValid: !Object.keys(errors).length, // XXX want to expose more from errors
+ props: formProps,
+ userId,
+ component,
+ configurableProps,
+ configuredProps,
+ dynamicProps,
+ dynamicPropsQueryIsFetching,
+ optionalPropIsEnabled,
+ optionalPropSetEnabled,
+ queryDisabledIdx,
+ setConfiguredProp,
+ setSubmitting,
+ submitting,
+ };
+ return {children} ;
+};
diff --git a/packages/connect-react/src/hooks/form-field-context.tsx b/packages/connect-react/src/hooks/form-field-context.tsx
new file mode 100644
index 0000000000000..bb936c9bfc8e0
--- /dev/null
+++ b/packages/connect-react/src/hooks/form-field-context.tsx
@@ -0,0 +1,31 @@
+import {
+ createContext, useContext,
+} from "react";
+import type {
+ AppInfo, ConfigurableProp, ConfigurablePropApp, PropValue,
+} from "@pipedream/sdk";
+
+export type FormFieldContextExtra = T extends ConfigurablePropApp ? {
+ app?: AppInfo;
+} : Record;
+
+export type FormFieldContext = {
+ id: string;
+ prop: T;
+ idx: number;
+ value: PropValue | undefined;
+ onChange: (value: PropValue | undefined) => void;
+ extra: FormFieldContextExtra;
+};
+
+export const FormFieldContext = createContext | undefined>(undefined); // eslint-disable-line @typescript-eslint/no-explicit-any
+
+export const useFormFieldContext = () => {
+ const context = useContext(FormFieldContext);
+
+ if (!context) {
+ throw new Error("Must be used inside FormFieldContext.Provider");
+ }
+
+ return context as FormFieldContext;
+};
diff --git a/packages/connect-react/src/hooks/frontend-client-context.tsx b/packages/connect-react/src/hooks/frontend-client-context.tsx
new file mode 100644
index 0000000000000..a61987e8836c2
--- /dev/null
+++ b/packages/connect-react/src/hooks/frontend-client-context.tsx
@@ -0,0 +1,45 @@
+import {
+ createContext, useContext, type ReactNode, type FC,
+} from "react";
+import {
+ QueryClient, QueryClientProvider,
+} from "@tanstack/react-query";
+import type { BrowserClient } from "@pipedream/sdk/browser";
+
+const FrontendClientContext = createContext(
+ undefined,
+);
+
+export const useFrontendClient = () => {
+ const context = useContext(FrontendClientContext);
+
+ if (!context) {
+ throw new Error("Must be used inside FrontendClientProvider");
+ }
+
+ return context;
+};
+
+type FrontendClientProviderProps = { children: ReactNode; client: BrowserClient; };
+
+export const FrontendClientProvider: FC = ({
+ children,
+ client,
+}: FrontendClientProviderProps) => {
+ const queryClient = new QueryClient({
+ defaultOptions: {
+ queries: {
+ staleTime: 1000 * 60 * 60,
+ refetchOnWindowFocus: false,
+ },
+ },
+ });
+
+ return (
+
+
+ {children}
+
+
+ );
+};
diff --git a/packages/connect-react/src/hooks/use-accounts.tsx b/packages/connect-react/src/hooks/use-accounts.tsx
new file mode 100644
index 0000000000000..e74b51d6f947a
--- /dev/null
+++ b/packages/connect-react/src/hooks/use-accounts.tsx
@@ -0,0 +1,35 @@
+import {
+ useQuery, UseQueryOptions,
+} from "@tanstack/react-query";
+import type {
+ GetAccountOpts, AccountsRequestResponse,
+} from "@pipedream/sdk";
+import { useFrontendClient } from "./frontend-client-context";
+
+/**
+ * Retrieves the list of accounts associated with the project.
+ */
+export const useAccounts = (
+ input: GetAccountOpts,
+ opts?: {
+ useQueryOpts?: Omit<
+ UseQueryOptions,
+ "queryKey" | "queryFn"
+ >;
+ },
+) => {
+ const client = useFrontendClient();
+ const query = useQuery({
+ ...opts?.useQueryOpts,
+ queryKey: [
+ "accounts",
+ input,
+ ],
+ queryFn: () => client.getAccounts(input),
+ });
+
+ return {
+ ...query,
+ accounts: query.data?.data || [],
+ };
+};
diff --git a/packages/connect-react/src/hooks/use-app.tsx b/packages/connect-react/src/hooks/use-app.tsx
new file mode 100644
index 0000000000000..a41252d615f12
--- /dev/null
+++ b/packages/connect-react/src/hooks/use-app.tsx
@@ -0,0 +1,25 @@
+import {
+ useQuery, type UseQueryOptions,
+} from "@tanstack/react-query";
+import { useFrontendClient } from "./frontend-client-context";
+import type { AppRequestResponse } from "@pipedream/sdk";
+
+/**
+ * Get details about an app
+ */
+export const useApp = (slug: string, opts?:{ useQueryOpts?: Omit, "queryKey" | "queryFn">;}) => {
+ const client = useFrontendClient();
+ const query = useQuery({
+ queryKey: [
+ "app",
+ slug,
+ ],
+ queryFn: () => client.app(slug),
+ ...opts?.useQueryOpts,
+ });
+
+ return {
+ ...query,
+ app: query.data?.data,
+ };
+};
diff --git a/packages/connect-react/src/hooks/use-apps.tsx b/packages/connect-react/src/hooks/use-apps.tsx
new file mode 100644
index 0000000000000..d14780a242ac7
--- /dev/null
+++ b/packages/connect-react/src/hooks/use-apps.tsx
@@ -0,0 +1,22 @@
+import { useQuery } from "@tanstack/react-query";
+import type { GetAppsOpts } from "@pipedream/sdk";
+import { useFrontendClient } from "./frontend-client-context";
+
+/**
+ * Get list of apps that can be authenticated
+ */
+export const useApps = (input?: GetAppsOpts) => {
+ const client = useFrontendClient();
+ const query = useQuery({
+ queryKey: [
+ "apps",
+ input,
+ ],
+ queryFn: () => client.apps(input),
+ });
+
+ return {
+ ...query,
+ apps: query.data?.data,
+ };
+};
diff --git a/packages/connect-react/src/hooks/use-component.tsx b/packages/connect-react/src/hooks/use-component.tsx
new file mode 100644
index 0000000000000..5d70f0c09de39
--- /dev/null
+++ b/packages/connect-react/src/hooks/use-component.tsx
@@ -0,0 +1,31 @@
+import {
+ useQuery, type UseQueryOptions,
+} from "@tanstack/react-query";
+import type { ComponentRequestResponse } from "@pipedream/sdk";
+import { useFrontendClient } from "./frontend-client-context";
+
+/**
+ * Get details about a component
+ */
+export const useComponent = (
+ { key }: { key?: string; },
+ opts?: {useQueryOpts?: Omit, "queryKey" | "queryFn">;},
+) => {
+ const client = useFrontendClient();
+ const query = useQuery({
+ queryKey: [
+ "component",
+ key,
+ ],
+ queryFn: () => client.component({
+ key: key!,
+ }),
+ enabled: !!key,
+ ...opts?.useQueryOpts,
+ });
+
+ return {
+ ...query,
+ component: query.data?.data,
+ };
+};
diff --git a/packages/connect-react/src/hooks/use-components.tsx b/packages/connect-react/src/hooks/use-components.tsx
new file mode 100644
index 0000000000000..31ad8b0c2f181
--- /dev/null
+++ b/packages/connect-react/src/hooks/use-components.tsx
@@ -0,0 +1,22 @@
+import { useQuery } from "@tanstack/react-query";
+import type { GetComponentOpts } from "@pipedream/sdk";
+import { useFrontendClient } from "./frontend-client-context";
+
+/**
+ * Get list of components
+ */
+export const useComponents = (input?: GetComponentOpts) => {
+ const client = useFrontendClient();
+ const query = useQuery({
+ queryKey: [
+ "components",
+ input,
+ ],
+ queryFn: () => client.components(input),
+ });
+
+ return {
+ ...query,
+ components: query.data?.data || [],
+ };
+};
diff --git a/packages/connect-react/src/index.ts b/packages/connect-react/src/index.ts
new file mode 100644
index 0000000000000..5417d127d9128
--- /dev/null
+++ b/packages/connect-react/src/index.ts
@@ -0,0 +1,33 @@
+import "./polyfills";
+/* eslint-disable object-curly-newline */
+export { Alert } from "./components/Alert";
+export { ComponentForm } from "./components/ComponentForm";
+export { ComponentFormContainer } from "./components/ComponentFormContainer";
+export { Control } from "./components/Control";
+export { ControlAny } from "./components/ControlAny";
+export { ControlApp } from "./components/ControlApp";
+export { ControlBoolean } from "./components/ControlBoolean";
+export { ControlInput } from "./components/ControlInput";
+export { ControlSelect } from "./components/ControlSelect";
+export { ControlSubmit } from "./components/ControlSubmit";
+export { Description } from "./components/Description";
+export { ErrorBoundary } from "./components/ErrorBoundary";
+export { Errors } from "./components/Errors";
+export { Field } from "./components/Field";
+export { InternalComponentForm } from "./components/InternalComponentForm";
+export { InternalField } from "./components/InternalField";
+export { Label } from "./components/Label";
+export { OptionalFieldButton } from "./components/OptionalFieldButton";
+export { RemoteOptionsContainer } from "./components/RemoteOptionsContainer";
+export { SelectApp } from "./components/SelectApp";
+export { SelectComponent } from "./components/SelectComponent";
+export * from "./theme";
+export * from "./hooks/customization-context";
+export * from "./hooks/form-context";
+export * from "./hooks/form-field-context";
+export * from "./hooks/frontend-client-context";
+export * from "./hooks/use-accounts";
+export * from "./hooks/use-app";
+export * from "./hooks/use-apps";
+export * from "./hooks/use-component";
+export * from "./hooks/use-components";
diff --git a/packages/connect-react/src/polyfills.ts b/packages/connect-react/src/polyfills.ts
new file mode 100644
index 0000000000000..f7a47f077e4a2
--- /dev/null
+++ b/packages/connect-react/src/polyfills.ts
@@ -0,0 +1,8 @@
+// XXX change this pattern, use vite -- this is to handle the following:
+// decode-named-character-reference/index.dom.js
+// 5:const element = document.createElement('i')
+if (typeof document === "undefined") {
+ globalThis.document = {
+ createElement: () => { /* noop */ },
+ } as any; // eslint-disable-line @typescript-eslint/no-explicit-any
+}
diff --git a/packages/connect-react/src/theme.ts b/packages/connect-react/src/theme.ts
new file mode 100644
index 0000000000000..5aa620a4820ea
--- /dev/null
+++ b/packages/connect-react/src/theme.ts
@@ -0,0 +1,193 @@
+import {
+ defaultTheme as reactSelectDefaultTheme,
+ type Theme as ReactSelectTheme,
+} from "react-select";
+
+export type Colors = {
+ // select.control:boxShadow
+ // select.control:focused:borderColor
+ // select.control:hover:focused:borderColor
+ // select.option:active:selected:backgroundColor
+ // select.option:selected:backgroundColor
+ primary: string;
+ primary75: string;
+ // select.option:active:not(selected):backgroundColor
+ primary50: string;
+ // select.option:focused:backgroundColor
+ primary25: string;
+
+ // select.multiValueRemove:hover:color
+ danger: string;
+ // select.multiValueRemove:focused:backgroundColor
+ // select.multiValueRemove:hover:backgroundColor
+ dangerLight: string;
+
+ // select.control:backgroundColor
+ // select.menu:backgroundColor
+ // select.multiValue:backgroundColor
+ // select.option:selected:color
+ neutral0: string;
+ // select.control:disabled:backgroundColor
+ neutral5: string;
+ // select.control:disabled:borderColor
+ // select.indicatorSeparator:disabled:backgroundColor
+ neutral10: string;
+ // select.control:borderColor
+ // select.indicatorContainer:color
+ // select.indicatorSeparator:backgroundColor
+ // select.loadingIndicator:color
+ // select.option:disabled:color
+ neutral20: string;
+ // select.control:hover:not(focused):borderColor
+ neutral30: string;
+ // select.groupHeading:color
+ // select.indicatorContainer:hover:not(focused):color
+ // select.notice:color
+ // select.singleValue:disabled:color
+ neutral40: string;
+ // select.placeholder:color
+ neutral50: string;
+ // select.indicatorContainer:focused:color
+ // select.loadingIndicator:focused:color
+ neutral60: string;
+ neutral70: string;
+ // select.indicatorContainer:hover:focused:color
+ // select.input:color
+ // select.multiValueLabel:color
+ // select.singleValue:color
+ neutral80: string;
+ neutral90: string;
+};
+
+export type Shadows = {
+ button: string;
+ input: string;
+ card: string;
+ dropdown: string;
+};
+
+export type ThemeSpacing = {
+ baseUnit: number;
+ // The minimum height of the control
+ controlHeight: number;
+ // The amount of space between the control and menu
+ menuGutter: number;
+};
+
+export type Theme = {
+ borderRadius?: number | string;
+ colors: Partial;
+ spacing: ThemeSpacing;
+ boxShadow: Shadows;
+};
+
+export type PartialTheme = {
+ borderRadius?: Theme["borderRadius"];
+ colors?: Partial;
+ spacing?: Partial;
+ boxShadow?: Partial;
+};
+
+export type CustomThemeConfig = PartialTheme | ((theme: Theme) => PartialTheme);
+
+export const defaultTheme: Theme = {
+ borderRadius: 4,
+ colors: {
+ primary: "#2684FF",
+ primary75: "#4C9AFF",
+ primary50: "#B2D4FF",
+ primary25: "#DEEBFF",
+
+ danger: "#DE350B",
+ dangerLight: "#FFBDAD",
+
+ neutral0: "hsl(0, 0%, 100%)",
+ neutral5: "hsl(0, 0%, 95%)",
+ neutral10: "hsl(0, 0%, 90%)",
+ neutral20: "hsl(0, 0%, 80%)",
+ neutral30: "hsl(0, 0%, 70%)",
+ neutral40: "hsl(0, 0%, 60%)",
+ neutral50: "hsl(0, 0%, 50%)",
+ neutral60: "hsl(0, 0%, 40%)",
+ neutral70: "hsl(0, 0%, 30%)",
+ neutral80: "hsl(0, 0%, 20%)",
+ neutral90: "hsl(0, 0%, 10%)",
+ },
+ boxShadow: {
+ button:
+ "rgba(0, 0, 0, 0) 0px 0px 0px 0px, rgba(0, 0, 0, 0) 0px 0px 0px 0px, rgba(0, 0, 0, 0.1) 0px 1px 3px 0px, rgba(0, 0, 0, 0.1) 0px 1px 2px -1px",
+ card: "0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1)",
+ dropdown:
+ "0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1)",
+ input: "0 1px 2px 0 rgb(0 0 0 / 0.05)",
+ },
+ spacing: {
+ baseUnit: 4,
+ controlHeight: 32,
+ menuGutter: 8,
+ },
+};
+
+export const unstyledTheme: Theme = {
+ colors: {},
+ spacing: {
+ baseUnit: 4,
+ controlHeight: 32,
+ menuGutter: 8,
+ },
+ boxShadow: {
+ button: "none",
+ input: "none",
+ card: "none",
+ dropdown: "none",
+ },
+};
+
+export function getReactSelectTheme(
+ theme: CustomThemeConfig | undefined,
+): ReactSelectTheme {
+ if (!theme) return reactSelectDefaultTheme;
+ const _theme = typeof theme == "function"
+ ? theme(defaultTheme)
+ : theme;
+ const {
+ colors, spacing, borderRadius,
+ } = mergeTheme(
+ reactSelectDefaultTheme,
+ _theme,
+ );
+ return {
+ borderRadius:
+ typeof borderRadius !== "number"
+ ? reactSelectDefaultTheme.borderRadius
+ : borderRadius,
+ colors: colors as ReactSelectTheme["colors"],
+ spacing,
+ };
+}
+
+export function mergeTheme(
+ target: Theme,
+ ...sources: (PartialTheme | undefined)[]
+): Theme {
+ const merged = {
+ borderRadius: target.borderRadius,
+ colors: {
+ ...target.colors,
+ },
+ spacing: {
+ ...target.spacing,
+ },
+ boxShadow: {
+ ...target.boxShadow,
+ },
+ };
+ for (const source of sources) {
+ if (!source) continue;
+ merged.borderRadius = source.borderRadius ?? merged.borderRadius;
+ Object.assign(merged.boxShadow, source.boxShadow);
+ Object.assign(merged.colors, source.colors);
+ Object.assign(merged.spacing, source.spacing);
+ }
+ return merged;
+}
diff --git a/packages/connect-react/tsconfig.json b/packages/connect-react/tsconfig.json
new file mode 100644
index 0000000000000..3f4119c8636f7
--- /dev/null
+++ b/packages/connect-react/tsconfig.json
@@ -0,0 +1,13 @@
+{
+ "compilerOptions": {
+ "target": "es6",
+ "module": "commonjs",
+ "moduleResolution": "bundler",
+ "jsx": "react-jsx",
+ "noEmit": true,
+ "strict": true,
+ "forceConsistentCasingInFileNames": true,
+ "resolveJsonModule": true,
+ "esModuleInterop": true
+ }
+}
diff --git a/packages/connect-react/vite.config.mts b/packages/connect-react/vite.config.mts
new file mode 100644
index 0000000000000..a095e1743e689
--- /dev/null
+++ b/packages/connect-react/vite.config.mts
@@ -0,0 +1,27 @@
+import * as path from "path";
+import { defineConfig } from "vite";
+import dts from "vite-plugin-dts";
+
+export default defineConfig({
+ build: {
+ minify: true,
+ lib: {
+ entry: path.resolve(__dirname, "src/index.ts"),
+ name: "connect-react",
+ fileName: (format) => `connect-react.${format}.js`,
+ },
+ rollupOptions: {
+ external: [
+ "react",
+ "react-dom",
+ "react/jsx-runtime",
+ ],
+ },
+ },
+ plugins: [
+ dts({
+ insertTypesEntry: true,
+ rollupTypes: true,
+ }),
+ ],
+});
diff --git a/packages/sdk/.eslintignore b/packages/sdk/.eslintignore
new file mode 100644
index 0000000000000..1521c8b7652b1
--- /dev/null
+++ b/packages/sdk/.eslintignore
@@ -0,0 +1 @@
+dist
diff --git a/packages/sdk/package-lock.json b/packages/sdk/package-lock.json
deleted file mode 100644
index 0729a3831fb99..0000000000000
--- a/packages/sdk/package-lock.json
+++ /dev/null
@@ -1,4135 +0,0 @@
-{
- "name": "@pipedream/sdk",
- "version": "1.0.5",
- "lockfileVersion": 3,
- "requires": true,
- "packages": {
- "": {
- "name": "@pipedream/sdk",
- "version": "1.0.5",
- "license": "SEE LICENSE IN LICENSE",
- "dependencies": {
- "@rails/actioncable": "^8.0.0",
- "commander": "^12.1.0",
- "simple-oauth2": "^5.1.0",
- "ws": "^8.18.0"
- },
- "devDependencies": {
- "@types/fetch-mock": "^7.3.8",
- "@types/jest": "^29.5.13",
- "@types/node": "^20.17.6",
- "@types/rails__actioncable": "^6.1.11",
- "@types/simple-oauth2": "^5.0.7",
- "@types/ws": "^8.5.13",
- "jest": "^29.7.0",
- "jest-fetch-mock": "^3.0.3",
- "nodemon": "^3.1.7",
- "ts-jest": "^29.2.5",
- "typescript": "^5.5.2"
- },
- "engines": {
- "node": ">=18.0.0"
- }
- },
- "node_modules/@ampproject/remapping": {
- "version": "2.3.0",
- "resolved": "https://registry.npmjs.org/@ampproject/remapping/-/remapping-2.3.0.tgz",
- "integrity": "sha512-30iZtAPgz+LTIYoeivqYo853f02jBYSd5uGnGpkFV0M3xOt9aN73erkgYAmZU43x4VfqcnLxW9Kpg3R5LC4YYw==",
- "dev": true,
- "dependencies": {
- "@jridgewell/gen-mapping": "^0.3.5",
- "@jridgewell/trace-mapping": "^0.3.24"
- },
- "engines": {
- "node": ">=6.0.0"
- }
- },
- "node_modules/@babel/code-frame": {
- "version": "7.24.7",
- "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.24.7.tgz",
- "integrity": "sha512-BcYH1CVJBO9tvyIZ2jVeXgSIMvGZ2FDRvDdOIVQyuklNKSsx+eppDEBq/g47Ayw+RqNFE+URvOShmf+f/qwAlA==",
- "dev": true,
- "dependencies": {
- "@babel/highlight": "^7.24.7",
- "picocolors": "^1.0.0"
- },
- "engines": {
- "node": ">=6.9.0"
- }
- },
- "node_modules/@babel/compat-data": {
- "version": "7.25.4",
- "resolved": "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.25.4.tgz",
- "integrity": "sha512-+LGRog6RAsCJrrrg/IO6LGmpphNe5DiK30dGjCoxxeGv49B10/3XYGxPsAwrDlMFcFEvdAUavDT8r9k/hSyQqQ==",
- "dev": true,
- "engines": {
- "node": ">=6.9.0"
- }
- },
- "node_modules/@babel/core": {
- "version": "7.25.2",
- "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.25.2.tgz",
- "integrity": "sha512-BBt3opiCOxUr9euZ5/ro/Xv8/V7yJ5bjYMqG/C1YAo8MIKAnumZalCN+msbci3Pigy4lIQfPUpfMM27HMGaYEA==",
- "dev": true,
- "dependencies": {
- "@ampproject/remapping": "^2.2.0",
- "@babel/code-frame": "^7.24.7",
- "@babel/generator": "^7.25.0",
- "@babel/helper-compilation-targets": "^7.25.2",
- "@babel/helper-module-transforms": "^7.25.2",
- "@babel/helpers": "^7.25.0",
- "@babel/parser": "^7.25.0",
- "@babel/template": "^7.25.0",
- "@babel/traverse": "^7.25.2",
- "@babel/types": "^7.25.2",
- "convert-source-map": "^2.0.0",
- "debug": "^4.1.0",
- "gensync": "^1.0.0-beta.2",
- "json5": "^2.2.3",
- "semver": "^6.3.1"
- },
- "engines": {
- "node": ">=6.9.0"
- },
- "funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/babel"
- }
- },
- "node_modules/@babel/generator": {
- "version": "7.25.6",
- "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.25.6.tgz",
- "integrity": "sha512-VPC82gr1seXOpkjAAKoLhP50vx4vGNlF4msF64dSFq1P8RfB+QAuJWGHPXXPc8QyfVWwwB/TNNU4+ayZmHNbZw==",
- "dev": true,
- "dependencies": {
- "@babel/types": "^7.25.6",
- "@jridgewell/gen-mapping": "^0.3.5",
- "@jridgewell/trace-mapping": "^0.3.25",
- "jsesc": "^2.5.1"
- },
- "engines": {
- "node": ">=6.9.0"
- }
- },
- "node_modules/@babel/helper-compilation-targets": {
- "version": "7.25.2",
- "resolved": "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.25.2.tgz",
- "integrity": "sha512-U2U5LsSaZ7TAt3cfaymQ8WHh0pxvdHoEk6HVpaexxixjyEquMh0L0YNJNM6CTGKMXV1iksi0iZkGw4AcFkPaaw==",
- "dev": true,
- "dependencies": {
- "@babel/compat-data": "^7.25.2",
- "@babel/helper-validator-option": "^7.24.8",
- "browserslist": "^4.23.1",
- "lru-cache": "^5.1.1",
- "semver": "^6.3.1"
- },
- "engines": {
- "node": ">=6.9.0"
- }
- },
- "node_modules/@babel/helper-module-imports": {
- "version": "7.24.7",
- "resolved": "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.24.7.tgz",
- "integrity": "sha512-8AyH3C+74cgCVVXow/myrynrAGv+nTVg5vKu2nZph9x7RcRwzmh0VFallJuFTZ9mx6u4eSdXZfcOzSqTUm0HCA==",
- "dev": true,
- "dependencies": {
- "@babel/traverse": "^7.24.7",
- "@babel/types": "^7.24.7"
- },
- "engines": {
- "node": ">=6.9.0"
- }
- },
- "node_modules/@babel/helper-module-transforms": {
- "version": "7.25.2",
- "resolved": "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.25.2.tgz",
- "integrity": "sha512-BjyRAbix6j/wv83ftcVJmBt72QtHI56C7JXZoG2xATiLpmoC7dpd8WnkikExHDVPpi/3qCmO6WY1EaXOluiecQ==",
- "dev": true,
- "dependencies": {
- "@babel/helper-module-imports": "^7.24.7",
- "@babel/helper-simple-access": "^7.24.7",
- "@babel/helper-validator-identifier": "^7.24.7",
- "@babel/traverse": "^7.25.2"
- },
- "engines": {
- "node": ">=6.9.0"
- },
- "peerDependencies": {
- "@babel/core": "^7.0.0"
- }
- },
- "node_modules/@babel/helper-plugin-utils": {
- "version": "7.24.8",
- "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.24.8.tgz",
- "integrity": "sha512-FFWx5142D8h2Mgr/iPVGH5G7w6jDn4jUSpZTyDnQO0Yn7Ks2Kuz6Pci8H6MPCoUJegd/UZQ3tAvfLCxQSnWWwg==",
- "dev": true,
- "engines": {
- "node": ">=6.9.0"
- }
- },
- "node_modules/@babel/helper-simple-access": {
- "version": "7.24.7",
- "resolved": "https://registry.npmjs.org/@babel/helper-simple-access/-/helper-simple-access-7.24.7.tgz",
- "integrity": "sha512-zBAIvbCMh5Ts+b86r/CjU+4XGYIs+R1j951gxI3KmmxBMhCg4oQMsv6ZXQ64XOm/cvzfU1FmoCyt6+owc5QMYg==",
- "dev": true,
- "dependencies": {
- "@babel/traverse": "^7.24.7",
- "@babel/types": "^7.24.7"
- },
- "engines": {
- "node": ">=6.9.0"
- }
- },
- "node_modules/@babel/helper-string-parser": {
- "version": "7.24.8",
- "resolved": "https://registry.npmjs.org/@babel/helper-string-parser/-/helper-string-parser-7.24.8.tgz",
- "integrity": "sha512-pO9KhhRcuUyGnJWwyEgnRJTSIZHiT+vMD0kPeD+so0l7mxkMT19g3pjY9GTnHySck/hDzq+dtW/4VgnMkippsQ==",
- "dev": true,
- "engines": {
- "node": ">=6.9.0"
- }
- },
- "node_modules/@babel/helper-validator-identifier": {
- "version": "7.24.7",
- "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.24.7.tgz",
- "integrity": "sha512-rR+PBcQ1SMQDDyF6X0wxtG8QyLCgUB0eRAGguqRLfkCA87l7yAP7ehq8SNj96OOGTO8OBV70KhuFYcIkHXOg0w==",
- "dev": true,
- "engines": {
- "node": ">=6.9.0"
- }
- },
- "node_modules/@babel/helper-validator-option": {
- "version": "7.24.8",
- "resolved": "https://registry.npmjs.org/@babel/helper-validator-option/-/helper-validator-option-7.24.8.tgz",
- "integrity": "sha512-xb8t9tD1MHLungh/AIoWYN+gVHaB9kwlu8gffXGSt3FFEIT7RjS+xWbc2vUD1UTZdIpKj/ab3rdqJ7ufngyi2Q==",
- "dev": true,
- "engines": {
- "node": ">=6.9.0"
- }
- },
- "node_modules/@babel/helpers": {
- "version": "7.25.6",
- "resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.25.6.tgz",
- "integrity": "sha512-Xg0tn4HcfTijTwfDwYlvVCl43V6h4KyVVX2aEm4qdO/PC6L2YvzLHFdmxhoeSA3eslcE6+ZVXHgWwopXYLNq4Q==",
- "dev": true,
- "dependencies": {
- "@babel/template": "^7.25.0",
- "@babel/types": "^7.25.6"
- },
- "engines": {
- "node": ">=6.9.0"
- }
- },
- "node_modules/@babel/highlight": {
- "version": "7.24.7",
- "resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.24.7.tgz",
- "integrity": "sha512-EStJpq4OuY8xYfhGVXngigBJRWxftKX9ksiGDnmlY3o7B/V7KIAc9X4oiK87uPJSc/vs5L869bem5fhZa8caZw==",
- "dev": true,
- "dependencies": {
- "@babel/helper-validator-identifier": "^7.24.7",
- "chalk": "^2.4.2",
- "js-tokens": "^4.0.0",
- "picocolors": "^1.0.0"
- },
- "engines": {
- "node": ">=6.9.0"
- }
- },
- "node_modules/@babel/highlight/node_modules/ansi-styles": {
- "version": "3.2.1",
- "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz",
- "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==",
- "dev": true,
- "dependencies": {
- "color-convert": "^1.9.0"
- },
- "engines": {
- "node": ">=4"
- }
- },
- "node_modules/@babel/highlight/node_modules/chalk": {
- "version": "2.4.2",
- "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz",
- "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==",
- "dev": true,
- "dependencies": {
- "ansi-styles": "^3.2.1",
- "escape-string-regexp": "^1.0.5",
- "supports-color": "^5.3.0"
- },
- "engines": {
- "node": ">=4"
- }
- },
- "node_modules/@babel/highlight/node_modules/color-convert": {
- "version": "1.9.3",
- "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz",
- "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==",
- "dev": true,
- "dependencies": {
- "color-name": "1.1.3"
- }
- },
- "node_modules/@babel/highlight/node_modules/color-name": {
- "version": "1.1.3",
- "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz",
- "integrity": "sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==",
- "dev": true
- },
- "node_modules/@babel/highlight/node_modules/escape-string-regexp": {
- "version": "1.0.5",
- "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz",
- "integrity": "sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==",
- "dev": true,
- "engines": {
- "node": ">=0.8.0"
- }
- },
- "node_modules/@babel/highlight/node_modules/has-flag": {
- "version": "3.0.0",
- "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz",
- "integrity": "sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==",
- "dev": true,
- "engines": {
- "node": ">=4"
- }
- },
- "node_modules/@babel/highlight/node_modules/supports-color": {
- "version": "5.5.0",
- "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz",
- "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==",
- "dev": true,
- "dependencies": {
- "has-flag": "^3.0.0"
- },
- "engines": {
- "node": ">=4"
- }
- },
- "node_modules/@babel/parser": {
- "version": "7.25.6",
- "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.25.6.tgz",
- "integrity": "sha512-trGdfBdbD0l1ZPmcJ83eNxB9rbEax4ALFTF7fN386TMYbeCQbyme5cOEXQhbGXKebwGaB/J52w1mrklMcbgy6Q==",
- "dev": true,
- "dependencies": {
- "@babel/types": "^7.25.6"
- },
- "bin": {
- "parser": "bin/babel-parser.js"
- },
- "engines": {
- "node": ">=6.0.0"
- }
- },
- "node_modules/@babel/plugin-syntax-async-generators": {
- "version": "7.8.4",
- "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-async-generators/-/plugin-syntax-async-generators-7.8.4.tgz",
- "integrity": "sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw==",
- "dev": true,
- "dependencies": {
- "@babel/helper-plugin-utils": "^7.8.0"
- },
- "peerDependencies": {
- "@babel/core": "^7.0.0-0"
- }
- },
- "node_modules/@babel/plugin-syntax-bigint": {
- "version": "7.8.3",
- "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-bigint/-/plugin-syntax-bigint-7.8.3.tgz",
- "integrity": "sha512-wnTnFlG+YxQm3vDxpGE57Pj0srRU4sHE/mDkt1qv2YJJSeUAec2ma4WLUnUPeKjyrfntVwe/N6dCXpU+zL3Npg==",
- "dev": true,
- "dependencies": {
- "@babel/helper-plugin-utils": "^7.8.0"
- },
- "peerDependencies": {
- "@babel/core": "^7.0.0-0"
- }
- },
- "node_modules/@babel/plugin-syntax-class-properties": {
- "version": "7.12.13",
- "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-class-properties/-/plugin-syntax-class-properties-7.12.13.tgz",
- "integrity": "sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA==",
- "dev": true,
- "dependencies": {
- "@babel/helper-plugin-utils": "^7.12.13"
- },
- "peerDependencies": {
- "@babel/core": "^7.0.0-0"
- }
- },
- "node_modules/@babel/plugin-syntax-class-static-block": {
- "version": "7.14.5",
- "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-class-static-block/-/plugin-syntax-class-static-block-7.14.5.tgz",
- "integrity": "sha512-b+YyPmr6ldyNnM6sqYeMWE+bgJcJpO6yS4QD7ymxgH34GBPNDM/THBh8iunyvKIZztiwLH4CJZ0RxTk9emgpjw==",
- "dev": true,
- "dependencies": {
- "@babel/helper-plugin-utils": "^7.14.5"
- },
- "engines": {
- "node": ">=6.9.0"
- },
- "peerDependencies": {
- "@babel/core": "^7.0.0-0"
- }
- },
- "node_modules/@babel/plugin-syntax-import-attributes": {
- "version": "7.25.6",
- "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-import-attributes/-/plugin-syntax-import-attributes-7.25.6.tgz",
- "integrity": "sha512-sXaDXaJN9SNLymBdlWFA+bjzBhFD617ZaFiY13dGt7TVslVvVgA6fkZOP7Ki3IGElC45lwHdOTrCtKZGVAWeLQ==",
- "dev": true,
- "dependencies": {
- "@babel/helper-plugin-utils": "^7.24.8"
- },
- "engines": {
- "node": ">=6.9.0"
- },
- "peerDependencies": {
- "@babel/core": "^7.0.0-0"
- }
- },
- "node_modules/@babel/plugin-syntax-import-meta": {
- "version": "7.10.4",
- "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-import-meta/-/plugin-syntax-import-meta-7.10.4.tgz",
- "integrity": "sha512-Yqfm+XDx0+Prh3VSeEQCPU81yC+JWZ2pDPFSS4ZdpfZhp4MkFMaDC1UqseovEKwSUpnIL7+vK+Clp7bfh0iD7g==",
- "dev": true,
- "dependencies": {
- "@babel/helper-plugin-utils": "^7.10.4"
- },
- "peerDependencies": {
- "@babel/core": "^7.0.0-0"
- }
- },
- "node_modules/@babel/plugin-syntax-json-strings": {
- "version": "7.8.3",
- "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-json-strings/-/plugin-syntax-json-strings-7.8.3.tgz",
- "integrity": "sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA==",
- "dev": true,
- "dependencies": {
- "@babel/helper-plugin-utils": "^7.8.0"
- },
- "peerDependencies": {
- "@babel/core": "^7.0.0-0"
- }
- },
- "node_modules/@babel/plugin-syntax-jsx": {
- "version": "7.24.7",
- "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.24.7.tgz",
- "integrity": "sha512-6ddciUPe/mpMnOKv/U+RSd2vvVy+Yw/JfBB0ZHYjEZt9NLHmCUylNYlsbqCCS1Bffjlb0fCwC9Vqz+sBz6PsiQ==",
- "dev": true,
- "dependencies": {
- "@babel/helper-plugin-utils": "^7.24.7"
- },
- "engines": {
- "node": ">=6.9.0"
- },
- "peerDependencies": {
- "@babel/core": "^7.0.0-0"
- }
- },
- "node_modules/@babel/plugin-syntax-logical-assignment-operators": {
- "version": "7.10.4",
- "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-logical-assignment-operators/-/plugin-syntax-logical-assignment-operators-7.10.4.tgz",
- "integrity": "sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig==",
- "dev": true,
- "dependencies": {
- "@babel/helper-plugin-utils": "^7.10.4"
- },
- "peerDependencies": {
- "@babel/core": "^7.0.0-0"
- }
- },
- "node_modules/@babel/plugin-syntax-nullish-coalescing-operator": {
- "version": "7.8.3",
- "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-nullish-coalescing-operator/-/plugin-syntax-nullish-coalescing-operator-7.8.3.tgz",
- "integrity": "sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ==",
- "dev": true,
- "dependencies": {
- "@babel/helper-plugin-utils": "^7.8.0"
- },
- "peerDependencies": {
- "@babel/core": "^7.0.0-0"
- }
- },
- "node_modules/@babel/plugin-syntax-numeric-separator": {
- "version": "7.10.4",
- "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-numeric-separator/-/plugin-syntax-numeric-separator-7.10.4.tgz",
- "integrity": "sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug==",
- "dev": true,
- "dependencies": {
- "@babel/helper-plugin-utils": "^7.10.4"
- },
- "peerDependencies": {
- "@babel/core": "^7.0.0-0"
- }
- },
- "node_modules/@babel/plugin-syntax-object-rest-spread": {
- "version": "7.8.3",
- "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-object-rest-spread/-/plugin-syntax-object-rest-spread-7.8.3.tgz",
- "integrity": "sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA==",
- "dev": true,
- "dependencies": {
- "@babel/helper-plugin-utils": "^7.8.0"
- },
- "peerDependencies": {
- "@babel/core": "^7.0.0-0"
- }
- },
- "node_modules/@babel/plugin-syntax-optional-catch-binding": {
- "version": "7.8.3",
- "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-optional-catch-binding/-/plugin-syntax-optional-catch-binding-7.8.3.tgz",
- "integrity": "sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q==",
- "dev": true,
- "dependencies": {
- "@babel/helper-plugin-utils": "^7.8.0"
- },
- "peerDependencies": {
- "@babel/core": "^7.0.0-0"
- }
- },
- "node_modules/@babel/plugin-syntax-optional-chaining": {
- "version": "7.8.3",
- "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-optional-chaining/-/plugin-syntax-optional-chaining-7.8.3.tgz",
- "integrity": "sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg==",
- "dev": true,
- "dependencies": {
- "@babel/helper-plugin-utils": "^7.8.0"
- },
- "peerDependencies": {
- "@babel/core": "^7.0.0-0"
- }
- },
- "node_modules/@babel/plugin-syntax-private-property-in-object": {
- "version": "7.14.5",
- "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-private-property-in-object/-/plugin-syntax-private-property-in-object-7.14.5.tgz",
- "integrity": "sha512-0wVnp9dxJ72ZUJDV27ZfbSj6iHLoytYZmh3rFcxNnvsJF3ktkzLDZPy/mA17HGsaQT3/DQsWYX1f1QGWkCoVUg==",
- "dev": true,
- "dependencies": {
- "@babel/helper-plugin-utils": "^7.14.5"
- },
- "engines": {
- "node": ">=6.9.0"
- },
- "peerDependencies": {
- "@babel/core": "^7.0.0-0"
- }
- },
- "node_modules/@babel/plugin-syntax-top-level-await": {
- "version": "7.14.5",
- "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-top-level-await/-/plugin-syntax-top-level-await-7.14.5.tgz",
- "integrity": "sha512-hx++upLv5U1rgYfwe1xBQUhRmU41NEvpUvrp8jkrSCdvGSnM5/qdRMtylJ6PG5OFkBaHkbTAKTnd3/YyESRHFw==",
- "dev": true,
- "dependencies": {
- "@babel/helper-plugin-utils": "^7.14.5"
- },
- "engines": {
- "node": ">=6.9.0"
- },
- "peerDependencies": {
- "@babel/core": "^7.0.0-0"
- }
- },
- "node_modules/@babel/plugin-syntax-typescript": {
- "version": "7.25.4",
- "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-typescript/-/plugin-syntax-typescript-7.25.4.tgz",
- "integrity": "sha512-uMOCoHVU52BsSWxPOMVv5qKRdeSlPuImUCB2dlPuBSU+W2/ROE7/Zg8F2Kepbk+8yBa68LlRKxO+xgEVWorsDg==",
- "dev": true,
- "dependencies": {
- "@babel/helper-plugin-utils": "^7.24.8"
- },
- "engines": {
- "node": ">=6.9.0"
- },
- "peerDependencies": {
- "@babel/core": "^7.0.0-0"
- }
- },
- "node_modules/@babel/template": {
- "version": "7.25.0",
- "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.25.0.tgz",
- "integrity": "sha512-aOOgh1/5XzKvg1jvVz7AVrx2piJ2XBi227DHmbY6y+bM9H2FlN+IfecYu4Xl0cNiiVejlsCri89LUsbj8vJD9Q==",
- "dev": true,
- "dependencies": {
- "@babel/code-frame": "^7.24.7",
- "@babel/parser": "^7.25.0",
- "@babel/types": "^7.25.0"
- },
- "engines": {
- "node": ">=6.9.0"
- }
- },
- "node_modules/@babel/traverse": {
- "version": "7.25.6",
- "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.25.6.tgz",
- "integrity": "sha512-9Vrcx5ZW6UwK5tvqsj0nGpp/XzqthkT0dqIc9g1AdtygFToNtTF67XzYS//dm+SAK9cp3B9R4ZO/46p63SCjlQ==",
- "dev": true,
- "dependencies": {
- "@babel/code-frame": "^7.24.7",
- "@babel/generator": "^7.25.6",
- "@babel/parser": "^7.25.6",
- "@babel/template": "^7.25.0",
- "@babel/types": "^7.25.6",
- "debug": "^4.3.1",
- "globals": "^11.1.0"
- },
- "engines": {
- "node": ">=6.9.0"
- }
- },
- "node_modules/@babel/types": {
- "version": "7.25.6",
- "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.25.6.tgz",
- "integrity": "sha512-/l42B1qxpG6RdfYf343Uw1vmDjeNhneUXtzhojE7pDgfpEypmRhI6j1kr17XCVv4Cgl9HdAiQY2x0GwKm7rWCw==",
- "dev": true,
- "dependencies": {
- "@babel/helper-string-parser": "^7.24.8",
- "@babel/helper-validator-identifier": "^7.24.7",
- "to-fast-properties": "^2.0.0"
- },
- "engines": {
- "node": ">=6.9.0"
- }
- },
- "node_modules/@bcoe/v8-coverage": {
- "version": "0.2.3",
- "resolved": "https://registry.npmjs.org/@bcoe/v8-coverage/-/v8-coverage-0.2.3.tgz",
- "integrity": "sha512-0hYQ8SB4Db5zvZB4axdMHGwEaQjkZzFjQiN9LVYvIFB2nSUHW9tYpxWriPrWDASIxiaXax83REcLxuSdnGPZtw==",
- "dev": true
- },
- "node_modules/@hapi/boom": {
- "version": "10.0.1",
- "resolved": "https://registry.npmjs.org/@hapi/boom/-/boom-10.0.1.tgz",
- "integrity": "sha512-ERcCZaEjdH3OgSJlyjVk8pHIFeus91CjKP3v+MpgBNp5IvGzP2l/bRiD78nqYcKPaZdbKkK5vDBVPd2ohHBlsA==",
- "dependencies": {
- "@hapi/hoek": "^11.0.2"
- }
- },
- "node_modules/@hapi/bourne": {
- "version": "3.0.0",
- "resolved": "https://registry.npmjs.org/@hapi/bourne/-/bourne-3.0.0.tgz",
- "integrity": "sha512-Waj1cwPXJDucOib4a3bAISsKJVb15MKi9IvmTI/7ssVEm6sywXGjVJDhl6/umt1pK1ZS7PacXU3A1PmFKHEZ2w=="
- },
- "node_modules/@hapi/hoek": {
- "version": "11.0.4",
- "resolved": "https://registry.npmjs.org/@hapi/hoek/-/hoek-11.0.4.tgz",
- "integrity": "sha512-PnsP5d4q7289pS2T2EgGz147BFJ2Jpb4yrEdkpz2IhgEUzos1S7HTl7ezWh1yfYzYlj89KzLdCRkqsP6SIryeQ=="
- },
- "node_modules/@hapi/topo": {
- "version": "5.1.0",
- "resolved": "https://registry.npmjs.org/@hapi/topo/-/topo-5.1.0.tgz",
- "integrity": "sha512-foQZKJig7Ob0BMAYBfcJk8d77QtOe7Wo4ox7ff1lQYoNNAb6jwcY1ncdoy2e9wQZzvNy7ODZCYJkK8kzmcAnAg==",
- "dependencies": {
- "@hapi/hoek": "^9.0.0"
- }
- },
- "node_modules/@hapi/topo/node_modules/@hapi/hoek": {
- "version": "9.3.0",
- "resolved": "https://registry.npmjs.org/@hapi/hoek/-/hoek-9.3.0.tgz",
- "integrity": "sha512-/c6rf4UJlmHlC9b5BaNvzAcFv7HZ2QHaV0D4/HNlBdvFnvQq8RI4kYdhyPCl7Xj+oWvTWQ8ujhqS53LIgAe6KQ=="
- },
- "node_modules/@hapi/wreck": {
- "version": "18.1.0",
- "resolved": "https://registry.npmjs.org/@hapi/wreck/-/wreck-18.1.0.tgz",
- "integrity": "sha512-0z6ZRCmFEfV/MQqkQomJ7sl/hyxvcZM7LtuVqN3vdAO4vM9eBbowl0kaqQj9EJJQab+3Uuh1GxbGIBFy4NfJ4w==",
- "dependencies": {
- "@hapi/boom": "^10.0.1",
- "@hapi/bourne": "^3.0.0",
- "@hapi/hoek": "^11.0.2"
- }
- },
- "node_modules/@istanbuljs/load-nyc-config": {
- "version": "1.1.0",
- "resolved": "https://registry.npmjs.org/@istanbuljs/load-nyc-config/-/load-nyc-config-1.1.0.tgz",
- "integrity": "sha512-VjeHSlIzpv/NyD3N0YuHfXOPDIixcA1q2ZV98wsMqcYlPmv2n3Yb2lYP9XMElnaFVXg5A7YLTeLu6V84uQDjmQ==",
- "dev": true,
- "dependencies": {
- "camelcase": "^5.3.1",
- "find-up": "^4.1.0",
- "get-package-type": "^0.1.0",
- "js-yaml": "^3.13.1",
- "resolve-from": "^5.0.0"
- },
- "engines": {
- "node": ">=8"
- }
- },
- "node_modules/@istanbuljs/schema": {
- "version": "0.1.3",
- "resolved": "https://registry.npmjs.org/@istanbuljs/schema/-/schema-0.1.3.tgz",
- "integrity": "sha512-ZXRY4jNvVgSVQ8DL3LTcakaAtXwTVUxE81hslsyD2AtoXW/wVob10HkOJ1X/pAlcI7D+2YoZKg5do8G/w6RYgA==",
- "dev": true,
- "engines": {
- "node": ">=8"
- }
- },
- "node_modules/@jest/console": {
- "version": "29.7.0",
- "resolved": "https://registry.npmjs.org/@jest/console/-/console-29.7.0.tgz",
- "integrity": "sha512-5Ni4CU7XHQi32IJ398EEP4RrB8eV09sXP2ROqD4bksHrnTree52PsxvX8tpL8LvTZ3pFzXyPbNQReSN41CAhOg==",
- "dev": true,
- "dependencies": {
- "@jest/types": "^29.6.3",
- "@types/node": "*",
- "chalk": "^4.0.0",
- "jest-message-util": "^29.7.0",
- "jest-util": "^29.7.0",
- "slash": "^3.0.0"
- },
- "engines": {
- "node": "^14.15.0 || ^16.10.0 || >=18.0.0"
- }
- },
- "node_modules/@jest/core": {
- "version": "29.7.0",
- "resolved": "https://registry.npmjs.org/@jest/core/-/core-29.7.0.tgz",
- "integrity": "sha512-n7aeXWKMnGtDA48y8TLWJPJmLmmZ642Ceo78cYWEpiD7FzDgmNDV/GCVRorPABdXLJZ/9wzzgZAlHjXjxDHGsg==",
- "dev": true,
- "dependencies": {
- "@jest/console": "^29.7.0",
- "@jest/reporters": "^29.7.0",
- "@jest/test-result": "^29.7.0",
- "@jest/transform": "^29.7.0",
- "@jest/types": "^29.6.3",
- "@types/node": "*",
- "ansi-escapes": "^4.2.1",
- "chalk": "^4.0.0",
- "ci-info": "^3.2.0",
- "exit": "^0.1.2",
- "graceful-fs": "^4.2.9",
- "jest-changed-files": "^29.7.0",
- "jest-config": "^29.7.0",
- "jest-haste-map": "^29.7.0",
- "jest-message-util": "^29.7.0",
- "jest-regex-util": "^29.6.3",
- "jest-resolve": "^29.7.0",
- "jest-resolve-dependencies": "^29.7.0",
- "jest-runner": "^29.7.0",
- "jest-runtime": "^29.7.0",
- "jest-snapshot": "^29.7.0",
- "jest-util": "^29.7.0",
- "jest-validate": "^29.7.0",
- "jest-watcher": "^29.7.0",
- "micromatch": "^4.0.4",
- "pretty-format": "^29.7.0",
- "slash": "^3.0.0",
- "strip-ansi": "^6.0.0"
- },
- "engines": {
- "node": "^14.15.0 || ^16.10.0 || >=18.0.0"
- },
- "peerDependencies": {
- "node-notifier": "^8.0.1 || ^9.0.0 || ^10.0.0"
- },
- "peerDependenciesMeta": {
- "node-notifier": {
- "optional": true
- }
- }
- },
- "node_modules/@jest/environment": {
- "version": "29.7.0",
- "resolved": "https://registry.npmjs.org/@jest/environment/-/environment-29.7.0.tgz",
- "integrity": "sha512-aQIfHDq33ExsN4jP1NWGXhxgQ/wixs60gDiKO+XVMd8Mn0NWPWgc34ZQDTb2jKaUWQ7MuwoitXAsN2XVXNMpAw==",
- "dev": true,
- "dependencies": {
- "@jest/fake-timers": "^29.7.0",
- "@jest/types": "^29.6.3",
- "@types/node": "*",
- "jest-mock": "^29.7.0"
- },
- "engines": {
- "node": "^14.15.0 || ^16.10.0 || >=18.0.0"
- }
- },
- "node_modules/@jest/expect": {
- "version": "29.7.0",
- "resolved": "https://registry.npmjs.org/@jest/expect/-/expect-29.7.0.tgz",
- "integrity": "sha512-8uMeAMycttpva3P1lBHB8VciS9V0XAr3GymPpipdyQXbBcuhkLQOSe8E/p92RyAdToS6ZD1tFkX+CkhoECE0dQ==",
- "dev": true,
- "dependencies": {
- "expect": "^29.7.0",
- "jest-snapshot": "^29.7.0"
- },
- "engines": {
- "node": "^14.15.0 || ^16.10.0 || >=18.0.0"
- }
- },
- "node_modules/@jest/expect-utils": {
- "version": "29.7.0",
- "resolved": "https://registry.npmjs.org/@jest/expect-utils/-/expect-utils-29.7.0.tgz",
- "integrity": "sha512-GlsNBWiFQFCVi9QVSx7f5AgMeLxe9YCCs5PuP2O2LdjDAA8Jh9eX7lA1Jq/xdXw3Wb3hyvlFNfZIfcRetSzYcA==",
- "dev": true,
- "dependencies": {
- "jest-get-type": "^29.6.3"
- },
- "engines": {
- "node": "^14.15.0 || ^16.10.0 || >=18.0.0"
- }
- },
- "node_modules/@jest/fake-timers": {
- "version": "29.7.0",
- "resolved": "https://registry.npmjs.org/@jest/fake-timers/-/fake-timers-29.7.0.tgz",
- "integrity": "sha512-q4DH1Ha4TTFPdxLsqDXK1d3+ioSL7yL5oCMJZgDYm6i+6CygW5E5xVr/D1HdsGxjt1ZWSfUAs9OxSB/BNelWrQ==",
- "dev": true,
- "dependencies": {
- "@jest/types": "^29.6.3",
- "@sinonjs/fake-timers": "^10.0.2",
- "@types/node": "*",
- "jest-message-util": "^29.7.0",
- "jest-mock": "^29.7.0",
- "jest-util": "^29.7.0"
- },
- "engines": {
- "node": "^14.15.0 || ^16.10.0 || >=18.0.0"
- }
- },
- "node_modules/@jest/globals": {
- "version": "29.7.0",
- "resolved": "https://registry.npmjs.org/@jest/globals/-/globals-29.7.0.tgz",
- "integrity": "sha512-mpiz3dutLbkW2MNFubUGUEVLkTGiqW6yLVTA+JbP6fI6J5iL9Y0Nlg8k95pcF8ctKwCS7WVxteBs29hhfAotzQ==",
- "dev": true,
- "dependencies": {
- "@jest/environment": "^29.7.0",
- "@jest/expect": "^29.7.0",
- "@jest/types": "^29.6.3",
- "jest-mock": "^29.7.0"
- },
- "engines": {
- "node": "^14.15.0 || ^16.10.0 || >=18.0.0"
- }
- },
- "node_modules/@jest/reporters": {
- "version": "29.7.0",
- "resolved": "https://registry.npmjs.org/@jest/reporters/-/reporters-29.7.0.tgz",
- "integrity": "sha512-DApq0KJbJOEzAFYjHADNNxAE3KbhxQB1y5Kplb5Waqw6zVbuWatSnMjE5gs8FUgEPmNsnZA3NCWl9NG0ia04Pg==",
- "dev": true,
- "dependencies": {
- "@bcoe/v8-coverage": "^0.2.3",
- "@jest/console": "^29.7.0",
- "@jest/test-result": "^29.7.0",
- "@jest/transform": "^29.7.0",
- "@jest/types": "^29.6.3",
- "@jridgewell/trace-mapping": "^0.3.18",
- "@types/node": "*",
- "chalk": "^4.0.0",
- "collect-v8-coverage": "^1.0.0",
- "exit": "^0.1.2",
- "glob": "^7.1.3",
- "graceful-fs": "^4.2.9",
- "istanbul-lib-coverage": "^3.0.0",
- "istanbul-lib-instrument": "^6.0.0",
- "istanbul-lib-report": "^3.0.0",
- "istanbul-lib-source-maps": "^4.0.0",
- "istanbul-reports": "^3.1.3",
- "jest-message-util": "^29.7.0",
- "jest-util": "^29.7.0",
- "jest-worker": "^29.7.0",
- "slash": "^3.0.0",
- "string-length": "^4.0.1",
- "strip-ansi": "^6.0.0",
- "v8-to-istanbul": "^9.0.1"
- },
- "engines": {
- "node": "^14.15.0 || ^16.10.0 || >=18.0.0"
- },
- "peerDependencies": {
- "node-notifier": "^8.0.1 || ^9.0.0 || ^10.0.0"
- },
- "peerDependenciesMeta": {
- "node-notifier": {
- "optional": true
- }
- }
- },
- "node_modules/@jest/schemas": {
- "version": "29.6.3",
- "resolved": "https://registry.npmjs.org/@jest/schemas/-/schemas-29.6.3.tgz",
- "integrity": "sha512-mo5j5X+jIZmJQveBKeS/clAueipV7KgiX1vMgCxam1RNYiqE1w62n0/tJJnHtjW8ZHcQco5gY85jA3mi0L+nSA==",
- "dev": true,
- "dependencies": {
- "@sinclair/typebox": "^0.27.8"
- },
- "engines": {
- "node": "^14.15.0 || ^16.10.0 || >=18.0.0"
- }
- },
- "node_modules/@jest/source-map": {
- "version": "29.6.3",
- "resolved": "https://registry.npmjs.org/@jest/source-map/-/source-map-29.6.3.tgz",
- "integrity": "sha512-MHjT95QuipcPrpLM+8JMSzFx6eHp5Bm+4XeFDJlwsvVBjmKNiIAvasGK2fxz2WbGRlnvqehFbh07MMa7n3YJnw==",
- "dev": true,
- "dependencies": {
- "@jridgewell/trace-mapping": "^0.3.18",
- "callsites": "^3.0.0",
- "graceful-fs": "^4.2.9"
- },
- "engines": {
- "node": "^14.15.0 || ^16.10.0 || >=18.0.0"
- }
- },
- "node_modules/@jest/test-result": {
- "version": "29.7.0",
- "resolved": "https://registry.npmjs.org/@jest/test-result/-/test-result-29.7.0.tgz",
- "integrity": "sha512-Fdx+tv6x1zlkJPcWXmMDAG2HBnaR9XPSd5aDWQVsfrZmLVT3lU1cwyxLgRmXR9yrq4NBoEm9BMsfgFzTQAbJYA==",
- "dev": true,
- "dependencies": {
- "@jest/console": "^29.7.0",
- "@jest/types": "^29.6.3",
- "@types/istanbul-lib-coverage": "^2.0.0",
- "collect-v8-coverage": "^1.0.0"
- },
- "engines": {
- "node": "^14.15.0 || ^16.10.0 || >=18.0.0"
- }
- },
- "node_modules/@jest/test-sequencer": {
- "version": "29.7.0",
- "resolved": "https://registry.npmjs.org/@jest/test-sequencer/-/test-sequencer-29.7.0.tgz",
- "integrity": "sha512-GQwJ5WZVrKnOJuiYiAF52UNUJXgTZx1NHjFSEB0qEMmSZKAkdMoIzw/Cj6x6NF4AvV23AUqDpFzQkN/eYCYTxw==",
- "dev": true,
- "dependencies": {
- "@jest/test-result": "^29.7.0",
- "graceful-fs": "^4.2.9",
- "jest-haste-map": "^29.7.0",
- "slash": "^3.0.0"
- },
- "engines": {
- "node": "^14.15.0 || ^16.10.0 || >=18.0.0"
- }
- },
- "node_modules/@jest/transform": {
- "version": "29.7.0",
- "resolved": "https://registry.npmjs.org/@jest/transform/-/transform-29.7.0.tgz",
- "integrity": "sha512-ok/BTPFzFKVMwO5eOHRrvnBVHdRy9IrsrW1GpMaQ9MCnilNLXQKmAX8s1YXDFaai9xJpac2ySzV0YeRRECr2Vw==",
- "dev": true,
- "dependencies": {
- "@babel/core": "^7.11.6",
- "@jest/types": "^29.6.3",
- "@jridgewell/trace-mapping": "^0.3.18",
- "babel-plugin-istanbul": "^6.1.1",
- "chalk": "^4.0.0",
- "convert-source-map": "^2.0.0",
- "fast-json-stable-stringify": "^2.1.0",
- "graceful-fs": "^4.2.9",
- "jest-haste-map": "^29.7.0",
- "jest-regex-util": "^29.6.3",
- "jest-util": "^29.7.0",
- "micromatch": "^4.0.4",
- "pirates": "^4.0.4",
- "slash": "^3.0.0",
- "write-file-atomic": "^4.0.2"
- },
- "engines": {
- "node": "^14.15.0 || ^16.10.0 || >=18.0.0"
- }
- },
- "node_modules/@jest/types": {
- "version": "29.6.3",
- "resolved": "https://registry.npmjs.org/@jest/types/-/types-29.6.3.tgz",
- "integrity": "sha512-u3UPsIilWKOM3F9CXtrG8LEJmNxwoCQC/XVj4IKYXvvpx7QIi/Kg1LI5uDmDpKlac62NUtX7eLjRh+jVZcLOzw==",
- "dev": true,
- "dependencies": {
- "@jest/schemas": "^29.6.3",
- "@types/istanbul-lib-coverage": "^2.0.0",
- "@types/istanbul-reports": "^3.0.0",
- "@types/node": "*",
- "@types/yargs": "^17.0.8",
- "chalk": "^4.0.0"
- },
- "engines": {
- "node": "^14.15.0 || ^16.10.0 || >=18.0.0"
- }
- },
- "node_modules/@jridgewell/gen-mapping": {
- "version": "0.3.5",
- "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.5.tgz",
- "integrity": "sha512-IzL8ZoEDIBRWEzlCcRhOaCupYyN5gdIK+Q6fbFdPDg6HqX6jpkItn7DFIpW9LQzXG6Df9sA7+OKnq0qlz/GaQg==",
- "dev": true,
- "dependencies": {
- "@jridgewell/set-array": "^1.2.1",
- "@jridgewell/sourcemap-codec": "^1.4.10",
- "@jridgewell/trace-mapping": "^0.3.24"
- },
- "engines": {
- "node": ">=6.0.0"
- }
- },
- "node_modules/@jridgewell/resolve-uri": {
- "version": "3.1.2",
- "resolved": "https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.1.2.tgz",
- "integrity": "sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw==",
- "dev": true,
- "engines": {
- "node": ">=6.0.0"
- }
- },
- "node_modules/@jridgewell/set-array": {
- "version": "1.2.1",
- "resolved": "https://registry.npmjs.org/@jridgewell/set-array/-/set-array-1.2.1.tgz",
- "integrity": "sha512-R8gLRTZeyp03ymzP/6Lil/28tGeGEzhx1q2k703KGWRAI1VdvPIXdG70VJc2pAMw3NA6JKL5hhFu1sJX0Mnn/A==",
- "dev": true,
- "engines": {
- "node": ">=6.0.0"
- }
- },
- "node_modules/@jridgewell/sourcemap-codec": {
- "version": "1.5.0",
- "resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.5.0.tgz",
- "integrity": "sha512-gv3ZRaISU3fjPAgNsriBRqGWQL6quFx04YMPW/zD8XMLsU32mhCCbfbO6KZFLjvYpCZ8zyDEgqsgf+PwPaM7GQ==",
- "dev": true
- },
- "node_modules/@jridgewell/trace-mapping": {
- "version": "0.3.25",
- "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.25.tgz",
- "integrity": "sha512-vNk6aEwybGtawWmy/PzwnGDOjCkLWSD2wqvjGGAgOAwCGWySYXfYoxt00IJkTF+8Lb57DwOb3Aa0o9CApepiYQ==",
- "dev": true,
- "dependencies": {
- "@jridgewell/resolve-uri": "^3.1.0",
- "@jridgewell/sourcemap-codec": "^1.4.14"
- }
- },
- "node_modules/@rails/actioncable": {
- "version": "8.0.0",
- "resolved": "https://registry.npmjs.org/@rails/actioncable/-/actioncable-8.0.0.tgz",
- "integrity": "sha512-9IXyJeaBggOzlD3pF4/yWELdyUWZm/KTyKBRqxNf9laLBXPqxJt3t6fO+X4s0WajMR8cIhzkxvq1gxsXVbn3LA==",
- "license": "MIT"
- },
- "node_modules/@sideway/address": {
- "version": "4.1.5",
- "resolved": "https://registry.npmjs.org/@sideway/address/-/address-4.1.5.tgz",
- "integrity": "sha512-IqO/DUQHUkPeixNQ8n0JA6102hT9CmaljNTPmQ1u8MEhBo/R4Q8eKLN/vGZxuebwOroDB4cbpjheD4+/sKFK4Q==",
- "dependencies": {
- "@hapi/hoek": "^9.0.0"
- }
- },
- "node_modules/@sideway/address/node_modules/@hapi/hoek": {
- "version": "9.3.0",
- "resolved": "https://registry.npmjs.org/@hapi/hoek/-/hoek-9.3.0.tgz",
- "integrity": "sha512-/c6rf4UJlmHlC9b5BaNvzAcFv7HZ2QHaV0D4/HNlBdvFnvQq8RI4kYdhyPCl7Xj+oWvTWQ8ujhqS53LIgAe6KQ=="
- },
- "node_modules/@sideway/formula": {
- "version": "3.0.1",
- "resolved": "https://registry.npmjs.org/@sideway/formula/-/formula-3.0.1.tgz",
- "integrity": "sha512-/poHZJJVjx3L+zVD6g9KgHfYnb443oi7wLu/XKojDviHy6HOEOA6z1Trk5aR1dGcmPenJEgb2sK2I80LeS3MIg=="
- },
- "node_modules/@sideway/pinpoint": {
- "version": "2.0.0",
- "resolved": "https://registry.npmjs.org/@sideway/pinpoint/-/pinpoint-2.0.0.tgz",
- "integrity": "sha512-RNiOoTPkptFtSVzQevY/yWtZwf/RxyVnPy/OcA9HBM3MlGDnBEYL5B41H0MTn0Uec8Hi+2qUtTfG2WWZBmMejQ=="
- },
- "node_modules/@sinclair/typebox": {
- "version": "0.27.8",
- "resolved": "https://registry.npmjs.org/@sinclair/typebox/-/typebox-0.27.8.tgz",
- "integrity": "sha512-+Fj43pSMwJs4KRrH/938Uf+uAELIgVBmQzg/q1YG10djyfA3TnrU8N8XzqCh/okZdszqBQTZf96idMfE5lnwTA==",
- "dev": true
- },
- "node_modules/@sinonjs/commons": {
- "version": "3.0.1",
- "resolved": "https://registry.npmjs.org/@sinonjs/commons/-/commons-3.0.1.tgz",
- "integrity": "sha512-K3mCHKQ9sVh8o1C9cxkwxaOmXoAMlDxC1mYyHrjqOWEcBjYr76t96zL2zlj5dUGZ3HSw240X1qgH3Mjf1yJWpQ==",
- "dev": true,
- "dependencies": {
- "type-detect": "4.0.8"
- }
- },
- "node_modules/@sinonjs/fake-timers": {
- "version": "10.3.0",
- "resolved": "https://registry.npmjs.org/@sinonjs/fake-timers/-/fake-timers-10.3.0.tgz",
- "integrity": "sha512-V4BG07kuYSUkTCSBHG8G8TNhM+F19jXFWnQtzj+we8DrkpSBCee9Z3Ms8yiGer/dlmhe35/Xdgyo3/0rQKg7YA==",
- "dev": true,
- "dependencies": {
- "@sinonjs/commons": "^3.0.0"
- }
- },
- "node_modules/@types/babel__core": {
- "version": "7.20.5",
- "resolved": "https://registry.npmjs.org/@types/babel__core/-/babel__core-7.20.5.tgz",
- "integrity": "sha512-qoQprZvz5wQFJwMDqeseRXWv3rqMvhgpbXFfVyWhbx9X47POIA6i/+dXefEmZKoAgOaTdaIgNSMqMIU61yRyzA==",
- "dev": true,
- "dependencies": {
- "@babel/parser": "^7.20.7",
- "@babel/types": "^7.20.7",
- "@types/babel__generator": "*",
- "@types/babel__template": "*",
- "@types/babel__traverse": "*"
- }
- },
- "node_modules/@types/babel__generator": {
- "version": "7.6.8",
- "resolved": "https://registry.npmjs.org/@types/babel__generator/-/babel__generator-7.6.8.tgz",
- "integrity": "sha512-ASsj+tpEDsEiFr1arWrlN6V3mdfjRMZt6LtK/Vp/kreFLnr5QH5+DhvD5nINYZXzwJvXeGq+05iUXcAzVrqWtw==",
- "dev": true,
- "dependencies": {
- "@babel/types": "^7.0.0"
- }
- },
- "node_modules/@types/babel__template": {
- "version": "7.4.4",
- "resolved": "https://registry.npmjs.org/@types/babel__template/-/babel__template-7.4.4.tgz",
- "integrity": "sha512-h/NUaSyG5EyxBIp8YRxo4RMe2/qQgvyowRwVMzhYhBCONbW8PUsg4lkFMrhgZhUe5z3L3MiLDuvyJ/CaPa2A8A==",
- "dev": true,
- "dependencies": {
- "@babel/parser": "^7.1.0",
- "@babel/types": "^7.0.0"
- }
- },
- "node_modules/@types/babel__traverse": {
- "version": "7.20.6",
- "resolved": "https://registry.npmjs.org/@types/babel__traverse/-/babel__traverse-7.20.6.tgz",
- "integrity": "sha512-r1bzfrm0tomOI8g1SzvCaQHo6Lcv6zu0EA+W2kHrt8dyrHQxGzBBL4kdkzIS+jBMV+EYcMAEAqXqYaLJq5rOZg==",
- "dev": true,
- "dependencies": {
- "@babel/types": "^7.20.7"
- }
- },
- "node_modules/@types/fetch-mock": {
- "version": "7.3.8",
- "resolved": "https://registry.npmjs.org/@types/fetch-mock/-/fetch-mock-7.3.8.tgz",
- "integrity": "sha512-ztsIGiyUvD0GaqPc9/hb8k20gnr6lupqA6SFtqt+8v2mtHhNO/Ebb6/b7N6af/7x0A7s1C8nxrEGzajMBqz8qA==",
- "dev": true
- },
- "node_modules/@types/graceful-fs": {
- "version": "4.1.9",
- "resolved": "https://registry.npmjs.org/@types/graceful-fs/-/graceful-fs-4.1.9.tgz",
- "integrity": "sha512-olP3sd1qOEe5dXTSaFvQG+02VdRXcdytWLAZsAq1PecU8uqQAhkrnbli7DagjtXKW/Bl7YJbUsa8MPcuc8LHEQ==",
- "dev": true,
- "dependencies": {
- "@types/node": "*"
- }
- },
- "node_modules/@types/istanbul-lib-coverage": {
- "version": "2.0.6",
- "resolved": "https://registry.npmjs.org/@types/istanbul-lib-coverage/-/istanbul-lib-coverage-2.0.6.tgz",
- "integrity": "sha512-2QF/t/auWm0lsy8XtKVPG19v3sSOQlJe/YHZgfjb/KBBHOGSV+J2q/S671rcq9uTBrLAXmZpqJiaQbMT+zNU1w==",
- "dev": true
- },
- "node_modules/@types/istanbul-lib-report": {
- "version": "3.0.3",
- "resolved": "https://registry.npmjs.org/@types/istanbul-lib-report/-/istanbul-lib-report-3.0.3.tgz",
- "integrity": "sha512-NQn7AHQnk/RSLOxrBbGyJM/aVQ+pjj5HCgasFxc0K/KhoATfQ/47AyUl15I2yBUpihjmas+a+VJBOqecrFH+uA==",
- "dev": true,
- "dependencies": {
- "@types/istanbul-lib-coverage": "*"
- }
- },
- "node_modules/@types/istanbul-reports": {
- "version": "3.0.4",
- "resolved": "https://registry.npmjs.org/@types/istanbul-reports/-/istanbul-reports-3.0.4.tgz",
- "integrity": "sha512-pk2B1NWalF9toCRu6gjBzR69syFjP4Od8WRAX+0mmf9lAjCRicLOWc+ZrxZHx/0XRjotgkF9t6iaMJ+aXcOdZQ==",
- "dev": true,
- "dependencies": {
- "@types/istanbul-lib-report": "*"
- }
- },
- "node_modules/@types/jest": {
- "version": "29.5.13",
- "resolved": "https://registry.npmjs.org/@types/jest/-/jest-29.5.13.tgz",
- "integrity": "sha512-wd+MVEZCHt23V0/L642O5APvspWply/rGY5BcW4SUETo2UzPU3Z26qr8jC2qxpimI2jjx9h7+2cj2FwIr01bXg==",
- "dev": true,
- "dependencies": {
- "expect": "^29.0.0",
- "pretty-format": "^29.0.0"
- }
- },
- "node_modules/@types/node": {
- "version": "20.17.6",
- "resolved": "https://registry.npmjs.org/@types/node/-/node-20.17.6.tgz",
- "integrity": "sha512-VEI7OdvK2wP7XHnsuXbAJnEpEkF6NjSN45QJlL4VGqZSXsnicpesdTWsg9RISeSdYd3yeRj/y3k5KGjUXYnFwQ==",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "undici-types": "~6.19.2"
- }
- },
- "node_modules/@types/rails__actioncable": {
- "version": "6.1.11",
- "resolved": "https://registry.npmjs.org/@types/rails__actioncable/-/rails__actioncable-6.1.11.tgz",
- "integrity": "sha512-L6A3Rg6sGsv2cqalOgdOmyFvL1Pw69Mg0WuG6NtY9chzabhtkiSFY5fczo72mqRGezrMvl0Jy80v+N719CW+Tg==",
- "dev": true,
- "license": "MIT"
- },
- "node_modules/@types/simple-oauth2": {
- "version": "5.0.7",
- "resolved": "https://registry.npmjs.org/@types/simple-oauth2/-/simple-oauth2-5.0.7.tgz",
- "integrity": "sha512-8JbWVJbiTSBQP/7eiyGKyXWAqp3dKQZpaA+pdW16FCi32ujkzRMG8JfjoAzdWt6W8U591ZNdHcPtP2D7ILTKuA==",
- "dev": true
- },
- "node_modules/@types/stack-utils": {
- "version": "2.0.3",
- "resolved": "https://registry.npmjs.org/@types/stack-utils/-/stack-utils-2.0.3.tgz",
- "integrity": "sha512-9aEbYZ3TbYMznPdcdr3SmIrLXwC/AKZXQeCf9Pgao5CKb8CyHuEX5jzWPTkvregvhRJHcpRO6BFoGW9ycaOkYw==",
- "dev": true
- },
- "node_modules/@types/ws": {
- "version": "8.5.13",
- "resolved": "https://registry.npmjs.org/@types/ws/-/ws-8.5.13.tgz",
- "integrity": "sha512-osM/gWBTPKgHV8XkTunnegTRIsvF6owmf5w+JtAfOw472dptdm0dlGv4xCt6GwQRcC2XVOvvRE/0bAoQcL2QkA==",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "@types/node": "*"
- }
- },
- "node_modules/@types/yargs": {
- "version": "17.0.33",
- "resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-17.0.33.tgz",
- "integrity": "sha512-WpxBCKWPLr4xSsHgz511rFJAM+wS28w2zEO1QDNY5zM/S8ok70NNfztH0xwhqKyaK0OHCbN98LDAZuy1ctxDkA==",
- "dev": true,
- "dependencies": {
- "@types/yargs-parser": "*"
- }
- },
- "node_modules/@types/yargs-parser": {
- "version": "21.0.3",
- "resolved": "https://registry.npmjs.org/@types/yargs-parser/-/yargs-parser-21.0.3.tgz",
- "integrity": "sha512-I4q9QU9MQv4oEOz4tAHJtNz1cwuLxn2F3xcc2iV5WdqLPpUnj30aUuxt1mAxYTG+oe8CZMV/+6rU4S4gRDzqtQ==",
- "dev": true
- },
- "node_modules/ansi-escapes": {
- "version": "4.3.2",
- "resolved": "https://registry.npmjs.org/ansi-escapes/-/ansi-escapes-4.3.2.tgz",
- "integrity": "sha512-gKXj5ALrKWQLsYG9jlTRmR/xKluxHV+Z9QEwNIgCfM1/uwPMCuzVVnh5mwTd+OuBZcwSIMbqssNWRm1lE51QaQ==",
- "dev": true,
- "dependencies": {
- "type-fest": "^0.21.3"
- },
- "engines": {
- "node": ">=8"
- },
- "funding": {
- "url": "https://github.com/sponsors/sindresorhus"
- }
- },
- "node_modules/ansi-regex": {
- "version": "5.0.1",
- "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz",
- "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==",
- "dev": true,
- "engines": {
- "node": ">=8"
- }
- },
- "node_modules/ansi-styles": {
- "version": "4.3.0",
- "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz",
- "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
- "dev": true,
- "dependencies": {
- "color-convert": "^2.0.1"
- },
- "engines": {
- "node": ">=8"
- },
- "funding": {
- "url": "https://github.com/chalk/ansi-styles?sponsor=1"
- }
- },
- "node_modules/anymatch": {
- "version": "3.1.3",
- "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-3.1.3.tgz",
- "integrity": "sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==",
- "dev": true,
- "dependencies": {
- "normalize-path": "^3.0.0",
- "picomatch": "^2.0.4"
- },
- "engines": {
- "node": ">= 8"
- }
- },
- "node_modules/argparse": {
- "version": "1.0.10",
- "resolved": "https://registry.npmjs.org/argparse/-/argparse-1.0.10.tgz",
- "integrity": "sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==",
- "dev": true,
- "dependencies": {
- "sprintf-js": "~1.0.2"
- }
- },
- "node_modules/async": {
- "version": "3.2.6",
- "resolved": "https://registry.npmjs.org/async/-/async-3.2.6.tgz",
- "integrity": "sha512-htCUDlxyyCLMgaM3xXg0C0LW2xqfuQ6p05pCEIsXuyQ+a1koYKTuBMzRNwmybfLgvJDMd0r1LTn4+E0Ti6C2AA==",
- "dev": true
- },
- "node_modules/babel-jest": {
- "version": "29.7.0",
- "resolved": "https://registry.npmjs.org/babel-jest/-/babel-jest-29.7.0.tgz",
- "integrity": "sha512-BrvGY3xZSwEcCzKvKsCi2GgHqDqsYkOP4/by5xCgIwGXQxIEh+8ew3gmrE1y7XRR6LHZIj6yLYnUi/mm2KXKBg==",
- "dev": true,
- "dependencies": {
- "@jest/transform": "^29.7.0",
- "@types/babel__core": "^7.1.14",
- "babel-plugin-istanbul": "^6.1.1",
- "babel-preset-jest": "^29.6.3",
- "chalk": "^4.0.0",
- "graceful-fs": "^4.2.9",
- "slash": "^3.0.0"
- },
- "engines": {
- "node": "^14.15.0 || ^16.10.0 || >=18.0.0"
- },
- "peerDependencies": {
- "@babel/core": "^7.8.0"
- }
- },
- "node_modules/babel-plugin-istanbul": {
- "version": "6.1.1",
- "resolved": "https://registry.npmjs.org/babel-plugin-istanbul/-/babel-plugin-istanbul-6.1.1.tgz",
- "integrity": "sha512-Y1IQok9821cC9onCx5otgFfRm7Lm+I+wwxOx738M/WLPZ9Q42m4IG5W0FNX8WLL2gYMZo3JkuXIH2DOpWM+qwA==",
- "dev": true,
- "dependencies": {
- "@babel/helper-plugin-utils": "^7.0.0",
- "@istanbuljs/load-nyc-config": "^1.0.0",
- "@istanbuljs/schema": "^0.1.2",
- "istanbul-lib-instrument": "^5.0.4",
- "test-exclude": "^6.0.0"
- },
- "engines": {
- "node": ">=8"
- }
- },
- "node_modules/babel-plugin-istanbul/node_modules/istanbul-lib-instrument": {
- "version": "5.2.1",
- "resolved": "https://registry.npmjs.org/istanbul-lib-instrument/-/istanbul-lib-instrument-5.2.1.tgz",
- "integrity": "sha512-pzqtp31nLv/XFOzXGuvhCb8qhjmTVo5vjVk19XE4CRlSWz0KoeJ3bw9XsA7nOp9YBf4qHjwBxkDzKcME/J29Yg==",
- "dev": true,
- "dependencies": {
- "@babel/core": "^7.12.3",
- "@babel/parser": "^7.14.7",
- "@istanbuljs/schema": "^0.1.2",
- "istanbul-lib-coverage": "^3.2.0",
- "semver": "^6.3.0"
- },
- "engines": {
- "node": ">=8"
- }
- },
- "node_modules/babel-plugin-jest-hoist": {
- "version": "29.6.3",
- "resolved": "https://registry.npmjs.org/babel-plugin-jest-hoist/-/babel-plugin-jest-hoist-29.6.3.tgz",
- "integrity": "sha512-ESAc/RJvGTFEzRwOTT4+lNDk/GNHMkKbNzsvT0qKRfDyyYTskxB5rnU2njIDYVxXCBHHEI1c0YwHob3WaYujOg==",
- "dev": true,
- "dependencies": {
- "@babel/template": "^7.3.3",
- "@babel/types": "^7.3.3",
- "@types/babel__core": "^7.1.14",
- "@types/babel__traverse": "^7.0.6"
- },
- "engines": {
- "node": "^14.15.0 || ^16.10.0 || >=18.0.0"
- }
- },
- "node_modules/babel-preset-current-node-syntax": {
- "version": "1.1.0",
- "resolved": "https://registry.npmjs.org/babel-preset-current-node-syntax/-/babel-preset-current-node-syntax-1.1.0.tgz",
- "integrity": "sha512-ldYss8SbBlWva1bs28q78Ju5Zq1F+8BrqBZZ0VFhLBvhh6lCpC2o3gDJi/5DRLs9FgYZCnmPYIVFU4lRXCkyUw==",
- "dev": true,
- "dependencies": {
- "@babel/plugin-syntax-async-generators": "^7.8.4",
- "@babel/plugin-syntax-bigint": "^7.8.3",
- "@babel/plugin-syntax-class-properties": "^7.12.13",
- "@babel/plugin-syntax-class-static-block": "^7.14.5",
- "@babel/plugin-syntax-import-attributes": "^7.24.7",
- "@babel/plugin-syntax-import-meta": "^7.10.4",
- "@babel/plugin-syntax-json-strings": "^7.8.3",
- "@babel/plugin-syntax-logical-assignment-operators": "^7.10.4",
- "@babel/plugin-syntax-nullish-coalescing-operator": "^7.8.3",
- "@babel/plugin-syntax-numeric-separator": "^7.10.4",
- "@babel/plugin-syntax-object-rest-spread": "^7.8.3",
- "@babel/plugin-syntax-optional-catch-binding": "^7.8.3",
- "@babel/plugin-syntax-optional-chaining": "^7.8.3",
- "@babel/plugin-syntax-private-property-in-object": "^7.14.5",
- "@babel/plugin-syntax-top-level-await": "^7.14.5"
- },
- "peerDependencies": {
- "@babel/core": "^7.0.0"
- }
- },
- "node_modules/babel-preset-jest": {
- "version": "29.6.3",
- "resolved": "https://registry.npmjs.org/babel-preset-jest/-/babel-preset-jest-29.6.3.tgz",
- "integrity": "sha512-0B3bhxR6snWXJZtR/RliHTDPRgn1sNHOR0yVtq/IiQFyuOVjFS+wuio/R4gSNkyYmKmJB4wGZv2NZanmKmTnNA==",
- "dev": true,
- "dependencies": {
- "babel-plugin-jest-hoist": "^29.6.3",
- "babel-preset-current-node-syntax": "^1.0.0"
- },
- "engines": {
- "node": "^14.15.0 || ^16.10.0 || >=18.0.0"
- },
- "peerDependencies": {
- "@babel/core": "^7.0.0"
- }
- },
- "node_modules/balanced-match": {
- "version": "1.0.2",
- "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz",
- "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==",
- "dev": true
- },
- "node_modules/binary-extensions": {
- "version": "2.3.0",
- "resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-2.3.0.tgz",
- "integrity": "sha512-Ceh+7ox5qe7LJuLHoY0feh3pHuUDHAcRUeyL2VYghZwfpkNIy/+8Ocg0a3UuSoYzavmylwuLWQOf3hl0jjMMIw==",
- "dev": true,
- "license": "MIT",
- "engines": {
- "node": ">=8"
- },
- "funding": {
- "url": "https://github.com/sponsors/sindresorhus"
- }
- },
- "node_modules/brace-expansion": {
- "version": "1.1.11",
- "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz",
- "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==",
- "dev": true,
- "dependencies": {
- "balanced-match": "^1.0.0",
- "concat-map": "0.0.1"
- }
- },
- "node_modules/braces": {
- "version": "3.0.3",
- "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.3.tgz",
- "integrity": "sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA==",
- "dev": true,
- "dependencies": {
- "fill-range": "^7.1.1"
- },
- "engines": {
- "node": ">=8"
- }
- },
- "node_modules/browserslist": {
- "version": "4.23.3",
- "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.23.3.tgz",
- "integrity": "sha512-btwCFJVjI4YWDNfau8RhZ+B1Q/VLoUITrm3RlP6y1tYGWIOa+InuYiRGXUBXo8nA1qKmHMyLB/iVQg5TT4eFoA==",
- "dev": true,
- "funding": [
- {
- "type": "opencollective",
- "url": "https://opencollective.com/browserslist"
- },
- {
- "type": "tidelift",
- "url": "https://tidelift.com/funding/github/npm/browserslist"
- },
- {
- "type": "github",
- "url": "https://github.com/sponsors/ai"
- }
- ],
- "dependencies": {
- "caniuse-lite": "^1.0.30001646",
- "electron-to-chromium": "^1.5.4",
- "node-releases": "^2.0.18",
- "update-browserslist-db": "^1.1.0"
- },
- "bin": {
- "browserslist": "cli.js"
- },
- "engines": {
- "node": "^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7"
- }
- },
- "node_modules/bs-logger": {
- "version": "0.2.6",
- "resolved": "https://registry.npmjs.org/bs-logger/-/bs-logger-0.2.6.tgz",
- "integrity": "sha512-pd8DCoxmbgc7hyPKOvxtqNcjYoOsABPQdcCUjGp3d42VR2CX1ORhk2A87oqqu5R1kk+76nsxZupkmyd+MVtCog==",
- "dev": true,
- "dependencies": {
- "fast-json-stable-stringify": "2.x"
- },
- "engines": {
- "node": ">= 6"
- }
- },
- "node_modules/bser": {
- "version": "2.1.1",
- "resolved": "https://registry.npmjs.org/bser/-/bser-2.1.1.tgz",
- "integrity": "sha512-gQxTNE/GAfIIrmHLUE3oJyp5FO6HRBfhjnw4/wMmA63ZGDJnWBmgY/lyQBpnDUkGmAhbSe39tx2d/iTOAfglwQ==",
- "dev": true,
- "dependencies": {
- "node-int64": "^0.4.0"
- }
- },
- "node_modules/buffer-from": {
- "version": "1.1.2",
- "resolved": "https://registry.npmjs.org/buffer-from/-/buffer-from-1.1.2.tgz",
- "integrity": "sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ==",
- "dev": true
- },
- "node_modules/callsites": {
- "version": "3.1.0",
- "resolved": "https://registry.npmjs.org/callsites/-/callsites-3.1.0.tgz",
- "integrity": "sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==",
- "dev": true,
- "engines": {
- "node": ">=6"
- }
- },
- "node_modules/camelcase": {
- "version": "5.3.1",
- "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-5.3.1.tgz",
- "integrity": "sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==",
- "dev": true,
- "engines": {
- "node": ">=6"
- }
- },
- "node_modules/caniuse-lite": {
- "version": "1.0.30001662",
- "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001662.tgz",
- "integrity": "sha512-sgMUVwLmGseH8ZIrm1d51UbrhqMCH3jvS7gF/M6byuHOnKyLOBL7W8yz5V02OHwgLGA36o/AFhWzzh4uc5aqTA==",
- "dev": true,
- "funding": [
- {
- "type": "opencollective",
- "url": "https://opencollective.com/browserslist"
- },
- {
- "type": "tidelift",
- "url": "https://tidelift.com/funding/github/npm/caniuse-lite"
- },
- {
- "type": "github",
- "url": "https://github.com/sponsors/ai"
- }
- ]
- },
- "node_modules/chalk": {
- "version": "4.1.2",
- "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz",
- "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==",
- "dev": true,
- "dependencies": {
- "ansi-styles": "^4.1.0",
- "supports-color": "^7.1.0"
- },
- "engines": {
- "node": ">=10"
- },
- "funding": {
- "url": "https://github.com/chalk/chalk?sponsor=1"
- }
- },
- "node_modules/char-regex": {
- "version": "1.0.2",
- "resolved": "https://registry.npmjs.org/char-regex/-/char-regex-1.0.2.tgz",
- "integrity": "sha512-kWWXztvZ5SBQV+eRgKFeh8q5sLuZY2+8WUIzlxWVTg+oGwY14qylx1KbKzHd8P6ZYkAg0xyIDU9JMHhyJMZ1jw==",
- "dev": true,
- "engines": {
- "node": ">=10"
- }
- },
- "node_modules/chokidar": {
- "version": "3.6.0",
- "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-3.6.0.tgz",
- "integrity": "sha512-7VT13fmjotKpGipCW9JEQAusEPE+Ei8nl6/g4FBAmIm0GOOLMua9NDDo/DWp0ZAxCr3cPq5ZpBqmPAQgDda2Pw==",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "anymatch": "~3.1.2",
- "braces": "~3.0.2",
- "glob-parent": "~5.1.2",
- "is-binary-path": "~2.1.0",
- "is-glob": "~4.0.1",
- "normalize-path": "~3.0.0",
- "readdirp": "~3.6.0"
- },
- "engines": {
- "node": ">= 8.10.0"
- },
- "funding": {
- "url": "https://paulmillr.com/funding/"
- },
- "optionalDependencies": {
- "fsevents": "~2.3.2"
- }
- },
- "node_modules/ci-info": {
- "version": "3.9.0",
- "resolved": "https://registry.npmjs.org/ci-info/-/ci-info-3.9.0.tgz",
- "integrity": "sha512-NIxF55hv4nSqQswkAeiOi1r83xy8JldOFDTWiug55KBu9Jnblncd2U6ViHmYgHf01TPZS77NJBhBMKdWj9HQMQ==",
- "dev": true,
- "funding": [
- {
- "type": "github",
- "url": "https://github.com/sponsors/sibiraj-s"
- }
- ],
- "engines": {
- "node": ">=8"
- }
- },
- "node_modules/cjs-module-lexer": {
- "version": "1.4.1",
- "resolved": "https://registry.npmjs.org/cjs-module-lexer/-/cjs-module-lexer-1.4.1.tgz",
- "integrity": "sha512-cuSVIHi9/9E/+821Qjdvngor+xpnlwnuwIyZOaLmHBVdXL+gP+I6QQB9VkO7RI77YIcTV+S1W9AreJ5eN63JBA==",
- "dev": true
- },
- "node_modules/cliui": {
- "version": "8.0.1",
- "resolved": "https://registry.npmjs.org/cliui/-/cliui-8.0.1.tgz",
- "integrity": "sha512-BSeNnyus75C4//NQ9gQt1/csTXyo/8Sb+afLAkzAptFuMsod9HFokGNudZpi/oQV73hnVK+sR+5PVRMd+Dr7YQ==",
- "dev": true,
- "dependencies": {
- "string-width": "^4.2.0",
- "strip-ansi": "^6.0.1",
- "wrap-ansi": "^7.0.0"
- },
- "engines": {
- "node": ">=12"
- }
- },
- "node_modules/co": {
- "version": "4.6.0",
- "resolved": "https://registry.npmjs.org/co/-/co-4.6.0.tgz",
- "integrity": "sha512-QVb0dM5HvG+uaxitm8wONl7jltx8dqhfU33DcqtOZcLSVIKSDDLDi7+0LbAKiyI8hD9u42m2YxXSkMGWThaecQ==",
- "dev": true,
- "engines": {
- "iojs": ">= 1.0.0",
- "node": ">= 0.12.0"
- }
- },
- "node_modules/collect-v8-coverage": {
- "version": "1.0.2",
- "resolved": "https://registry.npmjs.org/collect-v8-coverage/-/collect-v8-coverage-1.0.2.tgz",
- "integrity": "sha512-lHl4d5/ONEbLlJvaJNtsF/Lz+WvB07u2ycqTYbdrq7UypDXailES4valYb2eWiJFxZlVmpGekfqoxQhzyFdT4Q==",
- "dev": true
- },
- "node_modules/color-convert": {
- "version": "2.0.1",
- "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz",
- "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==",
- "dev": true,
- "dependencies": {
- "color-name": "~1.1.4"
- },
- "engines": {
- "node": ">=7.0.0"
- }
- },
- "node_modules/color-name": {
- "version": "1.1.4",
- "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz",
- "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==",
- "dev": true
- },
- "node_modules/commander": {
- "version": "12.1.0",
- "resolved": "https://registry.npmjs.org/commander/-/commander-12.1.0.tgz",
- "integrity": "sha512-Vw8qHK3bZM9y/P10u3Vib8o/DdkvA2OtPtZvD871QKjy74Wj1WSKFILMPRPSdUSx5RFK1arlJzEtA4PkFgnbuA==",
- "license": "MIT",
- "engines": {
- "node": ">=18"
- }
- },
- "node_modules/concat-map": {
- "version": "0.0.1",
- "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz",
- "integrity": "sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==",
- "dev": true
- },
- "node_modules/convert-source-map": {
- "version": "2.0.0",
- "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-2.0.0.tgz",
- "integrity": "sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg==",
- "dev": true
- },
- "node_modules/create-jest": {
- "version": "29.7.0",
- "resolved": "https://registry.npmjs.org/create-jest/-/create-jest-29.7.0.tgz",
- "integrity": "sha512-Adz2bdH0Vq3F53KEMJOoftQFutWCukm6J24wbPWRO4k1kMY7gS7ds/uoJkNuV8wDCtWWnuwGcJwpWcih+zEW1Q==",
- "dev": true,
- "dependencies": {
- "@jest/types": "^29.6.3",
- "chalk": "^4.0.0",
- "exit": "^0.1.2",
- "graceful-fs": "^4.2.9",
- "jest-config": "^29.7.0",
- "jest-util": "^29.7.0",
- "prompts": "^2.0.1"
- },
- "bin": {
- "create-jest": "bin/create-jest.js"
- },
- "engines": {
- "node": "^14.15.0 || ^16.10.0 || >=18.0.0"
- }
- },
- "node_modules/cross-fetch": {
- "version": "3.1.8",
- "resolved": "https://registry.npmjs.org/cross-fetch/-/cross-fetch-3.1.8.tgz",
- "integrity": "sha512-cvA+JwZoU0Xq+h6WkMvAUqPEYy92Obet6UdKLfW60qn99ftItKjB5T+BkyWOFWe2pUyfQ+IJHmpOTznqk1M6Kg==",
- "dev": true,
- "dependencies": {
- "node-fetch": "^2.6.12"
- }
- },
- "node_modules/cross-spawn": {
- "version": "7.0.3",
- "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.3.tgz",
- "integrity": "sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==",
- "dev": true,
- "dependencies": {
- "path-key": "^3.1.0",
- "shebang-command": "^2.0.0",
- "which": "^2.0.1"
- },
- "engines": {
- "node": ">= 8"
- }
- },
- "node_modules/debug": {
- "version": "4.3.7",
- "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.7.tgz",
- "integrity": "sha512-Er2nc/H7RrMXZBFCEim6TCmMk02Z8vLC2Rbi1KEBggpo0fS6l0S1nnapwmIi3yW/+GOJap1Krg4w0Hg80oCqgQ==",
- "dependencies": {
- "ms": "^2.1.3"
- },
- "engines": {
- "node": ">=6.0"
- },
- "peerDependenciesMeta": {
- "supports-color": {
- "optional": true
- }
- }
- },
- "node_modules/dedent": {
- "version": "1.5.3",
- "resolved": "https://registry.npmjs.org/dedent/-/dedent-1.5.3.tgz",
- "integrity": "sha512-NHQtfOOW68WD8lgypbLA5oT+Bt0xXJhiYvoR6SmmNXZfpzOGXwdKWmcwG8N7PwVVWV3eF/68nmD9BaJSsTBhyQ==",
- "dev": true,
- "peerDependencies": {
- "babel-plugin-macros": "^3.1.0"
- },
- "peerDependenciesMeta": {
- "babel-plugin-macros": {
- "optional": true
- }
- }
- },
- "node_modules/deepmerge": {
- "version": "4.3.1",
- "resolved": "https://registry.npmjs.org/deepmerge/-/deepmerge-4.3.1.tgz",
- "integrity": "sha512-3sUqbMEc77XqpdNO7FRyRog+eW3ph+GYCbj+rK+uYyRMuwsVy0rMiVtPn+QJlKFvWP/1PYpapqYn0Me2knFn+A==",
- "dev": true,
- "engines": {
- "node": ">=0.10.0"
- }
- },
- "node_modules/detect-newline": {
- "version": "3.1.0",
- "resolved": "https://registry.npmjs.org/detect-newline/-/detect-newline-3.1.0.tgz",
- "integrity": "sha512-TLz+x/vEXm/Y7P7wn1EJFNLxYpUD4TgMosxY6fAVJUnJMbupHBOncxyWUG9OpTaH9EBD7uFI5LfEgmMOc54DsA==",
- "dev": true,
- "engines": {
- "node": ">=8"
- }
- },
- "node_modules/diff-sequences": {
- "version": "29.6.3",
- "resolved": "https://registry.npmjs.org/diff-sequences/-/diff-sequences-29.6.3.tgz",
- "integrity": "sha512-EjePK1srD3P08o2j4f0ExnylqRs5B9tJjcp9t1krH2qRi8CCdsYfwe9JgSLurFBWwq4uOlipzfk5fHNvwFKr8Q==",
- "dev": true,
- "engines": {
- "node": "^14.15.0 || ^16.10.0 || >=18.0.0"
- }
- },
- "node_modules/ejs": {
- "version": "3.1.10",
- "resolved": "https://registry.npmjs.org/ejs/-/ejs-3.1.10.tgz",
- "integrity": "sha512-UeJmFfOrAQS8OJWPZ4qtgHyWExa088/MtK5UEyoJGFH67cDEXkZSviOiKRCZ4Xij0zxI3JECgYs3oKx+AizQBA==",
- "dev": true,
- "dependencies": {
- "jake": "^10.8.5"
- },
- "bin": {
- "ejs": "bin/cli.js"
- },
- "engines": {
- "node": ">=0.10.0"
- }
- },
- "node_modules/electron-to-chromium": {
- "version": "1.5.27",
- "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.5.27.tgz",
- "integrity": "sha512-o37j1vZqCoEgBuWWXLHQgTN/KDKe7zwpiY5CPeq2RvUqOyJw9xnrULzZAEVQ5p4h+zjMk7hgtOoPdnLxr7m/jw==",
- "dev": true
- },
- "node_modules/emittery": {
- "version": "0.13.1",
- "resolved": "https://registry.npmjs.org/emittery/-/emittery-0.13.1.tgz",
- "integrity": "sha512-DeWwawk6r5yR9jFgnDKYt4sLS0LmHJJi3ZOnb5/JdbYwj3nW+FxQnHIjhBKz8YLC7oRNPVM9NQ47I3CVx34eqQ==",
- "dev": true,
- "engines": {
- "node": ">=12"
- },
- "funding": {
- "url": "https://github.com/sindresorhus/emittery?sponsor=1"
- }
- },
- "node_modules/emoji-regex": {
- "version": "8.0.0",
- "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz",
- "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==",
- "dev": true
- },
- "node_modules/error-ex": {
- "version": "1.3.2",
- "resolved": "https://registry.npmjs.org/error-ex/-/error-ex-1.3.2.tgz",
- "integrity": "sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==",
- "dev": true,
- "dependencies": {
- "is-arrayish": "^0.2.1"
- }
- },
- "node_modules/escalade": {
- "version": "3.2.0",
- "resolved": "https://registry.npmjs.org/escalade/-/escalade-3.2.0.tgz",
- "integrity": "sha512-WUj2qlxaQtO4g6Pq5c29GTcWGDyd8itL8zTlipgECz3JesAiiOKotd8JU6otB3PACgG6xkJUyVhboMS+bje/jA==",
- "dev": true,
- "engines": {
- "node": ">=6"
- }
- },
- "node_modules/escape-string-regexp": {
- "version": "2.0.0",
- "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-2.0.0.tgz",
- "integrity": "sha512-UpzcLCXolUWcNu5HtVMHYdXJjArjsF9C0aNnquZYY4uW/Vu0miy5YoWvbV345HauVvcAUnpRuhMMcqTcGOY2+w==",
- "dev": true,
- "engines": {
- "node": ">=8"
- }
- },
- "node_modules/esprima": {
- "version": "4.0.1",
- "resolved": "https://registry.npmjs.org/esprima/-/esprima-4.0.1.tgz",
- "integrity": "sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==",
- "dev": true,
- "bin": {
- "esparse": "bin/esparse.js",
- "esvalidate": "bin/esvalidate.js"
- },
- "engines": {
- "node": ">=4"
- }
- },
- "node_modules/execa": {
- "version": "5.1.1",
- "resolved": "https://registry.npmjs.org/execa/-/execa-5.1.1.tgz",
- "integrity": "sha512-8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg==",
- "dev": true,
- "dependencies": {
- "cross-spawn": "^7.0.3",
- "get-stream": "^6.0.0",
- "human-signals": "^2.1.0",
- "is-stream": "^2.0.0",
- "merge-stream": "^2.0.0",
- "npm-run-path": "^4.0.1",
- "onetime": "^5.1.2",
- "signal-exit": "^3.0.3",
- "strip-final-newline": "^2.0.0"
- },
- "engines": {
- "node": ">=10"
- },
- "funding": {
- "url": "https://github.com/sindresorhus/execa?sponsor=1"
- }
- },
- "node_modules/exit": {
- "version": "0.1.2",
- "resolved": "https://registry.npmjs.org/exit/-/exit-0.1.2.tgz",
- "integrity": "sha512-Zk/eNKV2zbjpKzrsQ+n1G6poVbErQxJ0LBOJXaKZ1EViLzH+hrLu9cdXI4zw9dBQJslwBEpbQ2P1oS7nDxs6jQ==",
- "dev": true,
- "engines": {
- "node": ">= 0.8.0"
- }
- },
- "node_modules/expect": {
- "version": "29.7.0",
- "resolved": "https://registry.npmjs.org/expect/-/expect-29.7.0.tgz",
- "integrity": "sha512-2Zks0hf1VLFYI1kbh0I5jP3KHHyCHpkfyHBzsSXRFgl/Bg9mWYfMW8oD+PdMPlEwy5HNsR9JutYy6pMeOh61nw==",
- "dev": true,
- "dependencies": {
- "@jest/expect-utils": "^29.7.0",
- "jest-get-type": "^29.6.3",
- "jest-matcher-utils": "^29.7.0",
- "jest-message-util": "^29.7.0",
- "jest-util": "^29.7.0"
- },
- "engines": {
- "node": "^14.15.0 || ^16.10.0 || >=18.0.0"
- }
- },
- "node_modules/fast-json-stable-stringify": {
- "version": "2.1.0",
- "resolved": "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz",
- "integrity": "sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==",
- "dev": true
- },
- "node_modules/fb-watchman": {
- "version": "2.0.2",
- "resolved": "https://registry.npmjs.org/fb-watchman/-/fb-watchman-2.0.2.tgz",
- "integrity": "sha512-p5161BqbuCaSnB8jIbzQHOlpgsPmK5rJVDfDKO91Axs5NC1uu3HRQm6wt9cd9/+GtQQIO53JdGXXoyDpTAsgYA==",
- "dev": true,
- "dependencies": {
- "bser": "2.1.1"
- }
- },
- "node_modules/filelist": {
- "version": "1.0.4",
- "resolved": "https://registry.npmjs.org/filelist/-/filelist-1.0.4.tgz",
- "integrity": "sha512-w1cEuf3S+DrLCQL7ET6kz+gmlJdbq9J7yXCSjK/OZCPA+qEN1WyF4ZAf0YYJa4/shHJra2t/d/r8SV4Ji+x+8Q==",
- "dev": true,
- "dependencies": {
- "minimatch": "^5.0.1"
- }
- },
- "node_modules/filelist/node_modules/brace-expansion": {
- "version": "2.0.1",
- "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz",
- "integrity": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==",
- "dev": true,
- "dependencies": {
- "balanced-match": "^1.0.0"
- }
- },
- "node_modules/filelist/node_modules/minimatch": {
- "version": "5.1.6",
- "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-5.1.6.tgz",
- "integrity": "sha512-lKwV/1brpG6mBUFHtb7NUmtABCb2WZZmm2wNiOA5hAb8VdCS4B3dtMWyvcoViccwAW/COERjXLt0zP1zXUN26g==",
- "dev": true,
- "dependencies": {
- "brace-expansion": "^2.0.1"
- },
- "engines": {
- "node": ">=10"
- }
- },
- "node_modules/fill-range": {
- "version": "7.1.1",
- "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.1.1.tgz",
- "integrity": "sha512-YsGpe3WHLK8ZYi4tWDg2Jy3ebRz2rXowDxnld4bkQB00cc/1Zw9AWnC0i9ztDJitivtQvaI9KaLyKrc+hBW0yg==",
- "dev": true,
- "dependencies": {
- "to-regex-range": "^5.0.1"
- },
- "engines": {
- "node": ">=8"
- }
- },
- "node_modules/find-up": {
- "version": "4.1.0",
- "resolved": "https://registry.npmjs.org/find-up/-/find-up-4.1.0.tgz",
- "integrity": "sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==",
- "dev": true,
- "dependencies": {
- "locate-path": "^5.0.0",
- "path-exists": "^4.0.0"
- },
- "engines": {
- "node": ">=8"
- }
- },
- "node_modules/fs.realpath": {
- "version": "1.0.0",
- "resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz",
- "integrity": "sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==",
- "dev": true
- },
- "node_modules/fsevents": {
- "version": "2.3.3",
- "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.3.tgz",
- "integrity": "sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==",
- "dev": true,
- "hasInstallScript": true,
- "optional": true,
- "os": [
- "darwin"
- ],
- "engines": {
- "node": "^8.16.0 || ^10.6.0 || >=11.0.0"
- }
- },
- "node_modules/function-bind": {
- "version": "1.1.2",
- "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.2.tgz",
- "integrity": "sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==",
- "dev": true,
- "funding": {
- "url": "https://github.com/sponsors/ljharb"
- }
- },
- "node_modules/gensync": {
- "version": "1.0.0-beta.2",
- "resolved": "https://registry.npmjs.org/gensync/-/gensync-1.0.0-beta.2.tgz",
- "integrity": "sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==",
- "dev": true,
- "engines": {
- "node": ">=6.9.0"
- }
- },
- "node_modules/get-caller-file": {
- "version": "2.0.5",
- "resolved": "https://registry.npmjs.org/get-caller-file/-/get-caller-file-2.0.5.tgz",
- "integrity": "sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==",
- "dev": true,
- "engines": {
- "node": "6.* || 8.* || >= 10.*"
- }
- },
- "node_modules/get-package-type": {
- "version": "0.1.0",
- "resolved": "https://registry.npmjs.org/get-package-type/-/get-package-type-0.1.0.tgz",
- "integrity": "sha512-pjzuKtY64GYfWizNAJ0fr9VqttZkNiK2iS430LtIHzjBEr6bX8Am2zm4sW4Ro5wjWW5cAlRL1qAMTcXbjNAO2Q==",
- "dev": true,
- "engines": {
- "node": ">=8.0.0"
- }
- },
- "node_modules/get-stream": {
- "version": "6.0.1",
- "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-6.0.1.tgz",
- "integrity": "sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg==",
- "dev": true,
- "engines": {
- "node": ">=10"
- },
- "funding": {
- "url": "https://github.com/sponsors/sindresorhus"
- }
- },
- "node_modules/glob": {
- "version": "7.2.3",
- "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz",
- "integrity": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==",
- "deprecated": "Glob versions prior to v9 are no longer supported",
- "dev": true,
- "dependencies": {
- "fs.realpath": "^1.0.0",
- "inflight": "^1.0.4",
- "inherits": "2",
- "minimatch": "^3.1.1",
- "once": "^1.3.0",
- "path-is-absolute": "^1.0.0"
- },
- "engines": {
- "node": "*"
- },
- "funding": {
- "url": "https://github.com/sponsors/isaacs"
- }
- },
- "node_modules/glob-parent": {
- "version": "5.1.2",
- "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz",
- "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==",
- "dev": true,
- "license": "ISC",
- "dependencies": {
- "is-glob": "^4.0.1"
- },
- "engines": {
- "node": ">= 6"
- }
- },
- "node_modules/globals": {
- "version": "11.12.0",
- "resolved": "https://registry.npmjs.org/globals/-/globals-11.12.0.tgz",
- "integrity": "sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==",
- "dev": true,
- "engines": {
- "node": ">=4"
- }
- },
- "node_modules/graceful-fs": {
- "version": "4.2.11",
- "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.11.tgz",
- "integrity": "sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==",
- "dev": true
- },
- "node_modules/has-flag": {
- "version": "4.0.0",
- "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz",
- "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==",
- "dev": true,
- "engines": {
- "node": ">=8"
- }
- },
- "node_modules/hasown": {
- "version": "2.0.2",
- "resolved": "https://registry.npmjs.org/hasown/-/hasown-2.0.2.tgz",
- "integrity": "sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ==",
- "dev": true,
- "dependencies": {
- "function-bind": "^1.1.2"
- },
- "engines": {
- "node": ">= 0.4"
- }
- },
- "node_modules/html-escaper": {
- "version": "2.0.2",
- "resolved": "https://registry.npmjs.org/html-escaper/-/html-escaper-2.0.2.tgz",
- "integrity": "sha512-H2iMtd0I4Mt5eYiapRdIDjp+XzelXQ0tFE4JS7YFwFevXXMmOp9myNrUvCg0D6ws8iqkRPBfKHgbwig1SmlLfg==",
- "dev": true
- },
- "node_modules/human-signals": {
- "version": "2.1.0",
- "resolved": "https://registry.npmjs.org/human-signals/-/human-signals-2.1.0.tgz",
- "integrity": "sha512-B4FFZ6q/T2jhhksgkbEW3HBvWIfDW85snkQgawt07S7J5QXTk6BkNV+0yAeZrM5QpMAdYlocGoljn0sJ/WQkFw==",
- "dev": true,
- "engines": {
- "node": ">=10.17.0"
- }
- },
- "node_modules/ignore-by-default": {
- "version": "1.0.1",
- "resolved": "https://registry.npmjs.org/ignore-by-default/-/ignore-by-default-1.0.1.tgz",
- "integrity": "sha512-Ius2VYcGNk7T90CppJqcIkS5ooHUZyIQK+ClZfMfMNFEF9VSE73Fq+906u/CWu92x4gzZMWOwfFYckPObzdEbA==",
- "dev": true,
- "license": "ISC"
- },
- "node_modules/import-local": {
- "version": "3.2.0",
- "resolved": "https://registry.npmjs.org/import-local/-/import-local-3.2.0.tgz",
- "integrity": "sha512-2SPlun1JUPWoM6t3F0dw0FkCF/jWY8kttcY4f599GLTSjh2OCuuhdTkJQsEcZzBqbXZGKMK2OqW1oZsjtf/gQA==",
- "dev": true,
- "dependencies": {
- "pkg-dir": "^4.2.0",
- "resolve-cwd": "^3.0.0"
- },
- "bin": {
- "import-local-fixture": "fixtures/cli.js"
- },
- "engines": {
- "node": ">=8"
- },
- "funding": {
- "url": "https://github.com/sponsors/sindresorhus"
- }
- },
- "node_modules/imurmurhash": {
- "version": "0.1.4",
- "resolved": "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz",
- "integrity": "sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==",
- "dev": true,
- "engines": {
- "node": ">=0.8.19"
- }
- },
- "node_modules/inflight": {
- "version": "1.0.6",
- "resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz",
- "integrity": "sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==",
- "deprecated": "This module is not supported, and leaks memory. Do not use it. Check out lru-cache if you want a good and tested way to coalesce async requests by a key value, which is much more comprehensive and powerful.",
- "dev": true,
- "dependencies": {
- "once": "^1.3.0",
- "wrappy": "1"
- }
- },
- "node_modules/inherits": {
- "version": "2.0.4",
- "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz",
- "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==",
- "dev": true
- },
- "node_modules/is-arrayish": {
- "version": "0.2.1",
- "resolved": "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.2.1.tgz",
- "integrity": "sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg==",
- "dev": true
- },
- "node_modules/is-binary-path": {
- "version": "2.1.0",
- "resolved": "https://registry.npmjs.org/is-binary-path/-/is-binary-path-2.1.0.tgz",
- "integrity": "sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "binary-extensions": "^2.0.0"
- },
- "engines": {
- "node": ">=8"
- }
- },
- "node_modules/is-core-module": {
- "version": "2.15.1",
- "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.15.1.tgz",
- "integrity": "sha512-z0vtXSwucUJtANQWldhbtbt7BnL0vxiFjIdDLAatwhDYty2bad6s+rijD6Ri4YuYJubLzIJLUidCh09e1djEVQ==",
- "dev": true,
- "dependencies": {
- "hasown": "^2.0.2"
- },
- "engines": {
- "node": ">= 0.4"
- },
- "funding": {
- "url": "https://github.com/sponsors/ljharb"
- }
- },
- "node_modules/is-extglob": {
- "version": "2.1.1",
- "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz",
- "integrity": "sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==",
- "dev": true,
- "license": "MIT",
- "engines": {
- "node": ">=0.10.0"
- }
- },
- "node_modules/is-fullwidth-code-point": {
- "version": "3.0.0",
- "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz",
- "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==",
- "dev": true,
- "engines": {
- "node": ">=8"
- }
- },
- "node_modules/is-generator-fn": {
- "version": "2.1.0",
- "resolved": "https://registry.npmjs.org/is-generator-fn/-/is-generator-fn-2.1.0.tgz",
- "integrity": "sha512-cTIB4yPYL/Grw0EaSzASzg6bBy9gqCofvWN8okThAYIxKJZC+udlRAmGbM0XLeniEJSs8uEgHPGuHSe1XsOLSQ==",
- "dev": true,
- "engines": {
- "node": ">=6"
- }
- },
- "node_modules/is-glob": {
- "version": "4.0.3",
- "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz",
- "integrity": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "is-extglob": "^2.1.1"
- },
- "engines": {
- "node": ">=0.10.0"
- }
- },
- "node_modules/is-number": {
- "version": "7.0.0",
- "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz",
- "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==",
- "dev": true,
- "engines": {
- "node": ">=0.12.0"
- }
- },
- "node_modules/is-stream": {
- "version": "2.0.1",
- "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-2.0.1.tgz",
- "integrity": "sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg==",
- "dev": true,
- "engines": {
- "node": ">=8"
- },
- "funding": {
- "url": "https://github.com/sponsors/sindresorhus"
- }
- },
- "node_modules/isexe": {
- "version": "2.0.0",
- "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz",
- "integrity": "sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==",
- "dev": true
- },
- "node_modules/istanbul-lib-coverage": {
- "version": "3.2.2",
- "resolved": "https://registry.npmjs.org/istanbul-lib-coverage/-/istanbul-lib-coverage-3.2.2.tgz",
- "integrity": "sha512-O8dpsF+r0WV/8MNRKfnmrtCWhuKjxrq2w+jpzBL5UZKTi2LeVWnWOmWRxFlesJONmc+wLAGvKQZEOanko0LFTg==",
- "dev": true,
- "engines": {
- "node": ">=8"
- }
- },
- "node_modules/istanbul-lib-instrument": {
- "version": "6.0.3",
- "resolved": "https://registry.npmjs.org/istanbul-lib-instrument/-/istanbul-lib-instrument-6.0.3.tgz",
- "integrity": "sha512-Vtgk7L/R2JHyyGW07spoFlB8/lpjiOLTjMdms6AFMraYt3BaJauod/NGrfnVG/y4Ix1JEuMRPDPEj2ua+zz1/Q==",
- "dev": true,
- "dependencies": {
- "@babel/core": "^7.23.9",
- "@babel/parser": "^7.23.9",
- "@istanbuljs/schema": "^0.1.3",
- "istanbul-lib-coverage": "^3.2.0",
- "semver": "^7.5.4"
- },
- "engines": {
- "node": ">=10"
- }
- },
- "node_modules/istanbul-lib-instrument/node_modules/semver": {
- "version": "7.6.3",
- "resolved": "https://registry.npmjs.org/semver/-/semver-7.6.3.tgz",
- "integrity": "sha512-oVekP1cKtI+CTDvHWYFUcMtsK/00wmAEfyqKfNdARm8u1wNVhSgaX7A8d4UuIlUI5e84iEwOhs7ZPYRmzU9U6A==",
- "dev": true,
- "bin": {
- "semver": "bin/semver.js"
- },
- "engines": {
- "node": ">=10"
- }
- },
- "node_modules/istanbul-lib-report": {
- "version": "3.0.1",
- "resolved": "https://registry.npmjs.org/istanbul-lib-report/-/istanbul-lib-report-3.0.1.tgz",
- "integrity": "sha512-GCfE1mtsHGOELCU8e/Z7YWzpmybrx/+dSTfLrvY8qRmaY6zXTKWn6WQIjaAFw069icm6GVMNkgu0NzI4iPZUNw==",
- "dev": true,
- "dependencies": {
- "istanbul-lib-coverage": "^3.0.0",
- "make-dir": "^4.0.0",
- "supports-color": "^7.1.0"
- },
- "engines": {
- "node": ">=10"
- }
- },
- "node_modules/istanbul-lib-source-maps": {
- "version": "4.0.1",
- "resolved": "https://registry.npmjs.org/istanbul-lib-source-maps/-/istanbul-lib-source-maps-4.0.1.tgz",
- "integrity": "sha512-n3s8EwkdFIJCG3BPKBYvskgXGoy88ARzvegkitk60NxRdwltLOTaH7CUiMRXvwYorl0Q712iEjcWB+fK/MrWVw==",
- "dev": true,
- "dependencies": {
- "debug": "^4.1.1",
- "istanbul-lib-coverage": "^3.0.0",
- "source-map": "^0.6.1"
- },
- "engines": {
- "node": ">=10"
- }
- },
- "node_modules/istanbul-reports": {
- "version": "3.1.7",
- "resolved": "https://registry.npmjs.org/istanbul-reports/-/istanbul-reports-3.1.7.tgz",
- "integrity": "sha512-BewmUXImeuRk2YY0PVbxgKAysvhRPUQE0h5QRM++nVWyubKGV0l8qQ5op8+B2DOmwSe63Jivj0BjkPQVf8fP5g==",
- "dev": true,
- "dependencies": {
- "html-escaper": "^2.0.0",
- "istanbul-lib-report": "^3.0.0"
- },
- "engines": {
- "node": ">=8"
- }
- },
- "node_modules/jake": {
- "version": "10.9.2",
- "resolved": "https://registry.npmjs.org/jake/-/jake-10.9.2.tgz",
- "integrity": "sha512-2P4SQ0HrLQ+fw6llpLnOaGAvN2Zu6778SJMrCUwns4fOoG9ayrTiZk3VV8sCPkVZF8ab0zksVpS8FDY5pRCNBA==",
- "dev": true,
- "dependencies": {
- "async": "^3.2.3",
- "chalk": "^4.0.2",
- "filelist": "^1.0.4",
- "minimatch": "^3.1.2"
- },
- "bin": {
- "jake": "bin/cli.js"
- },
- "engines": {
- "node": ">=10"
- }
- },
- "node_modules/jest": {
- "version": "29.7.0",
- "resolved": "https://registry.npmjs.org/jest/-/jest-29.7.0.tgz",
- "integrity": "sha512-NIy3oAFp9shda19hy4HK0HRTWKtPJmGdnvywu01nOqNC2vZg+Z+fvJDxpMQA88eb2I9EcafcdjYgsDthnYTvGw==",
- "dev": true,
- "dependencies": {
- "@jest/core": "^29.7.0",
- "@jest/types": "^29.6.3",
- "import-local": "^3.0.2",
- "jest-cli": "^29.7.0"
- },
- "bin": {
- "jest": "bin/jest.js"
- },
- "engines": {
- "node": "^14.15.0 || ^16.10.0 || >=18.0.0"
- },
- "peerDependencies": {
- "node-notifier": "^8.0.1 || ^9.0.0 || ^10.0.0"
- },
- "peerDependenciesMeta": {
- "node-notifier": {
- "optional": true
- }
- }
- },
- "node_modules/jest-changed-files": {
- "version": "29.7.0",
- "resolved": "https://registry.npmjs.org/jest-changed-files/-/jest-changed-files-29.7.0.tgz",
- "integrity": "sha512-fEArFiwf1BpQ+4bXSprcDc3/x4HSzL4al2tozwVpDFpsxALjLYdyiIK4e5Vz66GQJIbXJ82+35PtysofptNX2w==",
- "dev": true,
- "dependencies": {
- "execa": "^5.0.0",
- "jest-util": "^29.7.0",
- "p-limit": "^3.1.0"
- },
- "engines": {
- "node": "^14.15.0 || ^16.10.0 || >=18.0.0"
- }
- },
- "node_modules/jest-circus": {
- "version": "29.7.0",
- "resolved": "https://registry.npmjs.org/jest-circus/-/jest-circus-29.7.0.tgz",
- "integrity": "sha512-3E1nCMgipcTkCocFwM90XXQab9bS+GMsjdpmPrlelaxwD93Ad8iVEjX/vvHPdLPnFf+L40u+5+iutRdA1N9myw==",
- "dev": true,
- "dependencies": {
- "@jest/environment": "^29.7.0",
- "@jest/expect": "^29.7.0",
- "@jest/test-result": "^29.7.0",
- "@jest/types": "^29.6.3",
- "@types/node": "*",
- "chalk": "^4.0.0",
- "co": "^4.6.0",
- "dedent": "^1.0.0",
- "is-generator-fn": "^2.0.0",
- "jest-each": "^29.7.0",
- "jest-matcher-utils": "^29.7.0",
- "jest-message-util": "^29.7.0",
- "jest-runtime": "^29.7.0",
- "jest-snapshot": "^29.7.0",
- "jest-util": "^29.7.0",
- "p-limit": "^3.1.0",
- "pretty-format": "^29.7.0",
- "pure-rand": "^6.0.0",
- "slash": "^3.0.0",
- "stack-utils": "^2.0.3"
- },
- "engines": {
- "node": "^14.15.0 || ^16.10.0 || >=18.0.0"
- }
- },
- "node_modules/jest-cli": {
- "version": "29.7.0",
- "resolved": "https://registry.npmjs.org/jest-cli/-/jest-cli-29.7.0.tgz",
- "integrity": "sha512-OVVobw2IubN/GSYsxETi+gOe7Ka59EFMR/twOU3Jb2GnKKeMGJB5SGUUrEz3SFVmJASUdZUzy83sLNNQ2gZslg==",
- "dev": true,
- "dependencies": {
- "@jest/core": "^29.7.0",
- "@jest/test-result": "^29.7.0",
- "@jest/types": "^29.6.3",
- "chalk": "^4.0.0",
- "create-jest": "^29.7.0",
- "exit": "^0.1.2",
- "import-local": "^3.0.2",
- "jest-config": "^29.7.0",
- "jest-util": "^29.7.0",
- "jest-validate": "^29.7.0",
- "yargs": "^17.3.1"
- },
- "bin": {
- "jest": "bin/jest.js"
- },
- "engines": {
- "node": "^14.15.0 || ^16.10.0 || >=18.0.0"
- },
- "peerDependencies": {
- "node-notifier": "^8.0.1 || ^9.0.0 || ^10.0.0"
- },
- "peerDependenciesMeta": {
- "node-notifier": {
- "optional": true
- }
- }
- },
- "node_modules/jest-config": {
- "version": "29.7.0",
- "resolved": "https://registry.npmjs.org/jest-config/-/jest-config-29.7.0.tgz",
- "integrity": "sha512-uXbpfeQ7R6TZBqI3/TxCU4q4ttk3u0PJeC+E0zbfSoSjq6bJ7buBPxzQPL0ifrkY4DNu4JUdk0ImlBUYi840eQ==",
- "dev": true,
- "dependencies": {
- "@babel/core": "^7.11.6",
- "@jest/test-sequencer": "^29.7.0",
- "@jest/types": "^29.6.3",
- "babel-jest": "^29.7.0",
- "chalk": "^4.0.0",
- "ci-info": "^3.2.0",
- "deepmerge": "^4.2.2",
- "glob": "^7.1.3",
- "graceful-fs": "^4.2.9",
- "jest-circus": "^29.7.0",
- "jest-environment-node": "^29.7.0",
- "jest-get-type": "^29.6.3",
- "jest-regex-util": "^29.6.3",
- "jest-resolve": "^29.7.0",
- "jest-runner": "^29.7.0",
- "jest-util": "^29.7.0",
- "jest-validate": "^29.7.0",
- "micromatch": "^4.0.4",
- "parse-json": "^5.2.0",
- "pretty-format": "^29.7.0",
- "slash": "^3.0.0",
- "strip-json-comments": "^3.1.1"
- },
- "engines": {
- "node": "^14.15.0 || ^16.10.0 || >=18.0.0"
- },
- "peerDependencies": {
- "@types/node": "*",
- "ts-node": ">=9.0.0"
- },
- "peerDependenciesMeta": {
- "@types/node": {
- "optional": true
- },
- "ts-node": {
- "optional": true
- }
- }
- },
- "node_modules/jest-diff": {
- "version": "29.7.0",
- "resolved": "https://registry.npmjs.org/jest-diff/-/jest-diff-29.7.0.tgz",
- "integrity": "sha512-LMIgiIrhigmPrs03JHpxUh2yISK3vLFPkAodPeo0+BuF7wA2FoQbkEg1u8gBYBThncu7e1oEDUfIXVuTqLRUjw==",
- "dev": true,
- "dependencies": {
- "chalk": "^4.0.0",
- "diff-sequences": "^29.6.3",
- "jest-get-type": "^29.6.3",
- "pretty-format": "^29.7.0"
- },
- "engines": {
- "node": "^14.15.0 || ^16.10.0 || >=18.0.0"
- }
- },
- "node_modules/jest-docblock": {
- "version": "29.7.0",
- "resolved": "https://registry.npmjs.org/jest-docblock/-/jest-docblock-29.7.0.tgz",
- "integrity": "sha512-q617Auw3A612guyaFgsbFeYpNP5t2aoUNLwBUbc/0kD1R4t9ixDbyFTHd1nok4epoVFpr7PmeWHrhvuV3XaJ4g==",
- "dev": true,
- "dependencies": {
- "detect-newline": "^3.0.0"
- },
- "engines": {
- "node": "^14.15.0 || ^16.10.0 || >=18.0.0"
- }
- },
- "node_modules/jest-each": {
- "version": "29.7.0",
- "resolved": "https://registry.npmjs.org/jest-each/-/jest-each-29.7.0.tgz",
- "integrity": "sha512-gns+Er14+ZrEoC5fhOfYCY1LOHHr0TI+rQUHZS8Ttw2l7gl+80eHc/gFf2Ktkw0+SIACDTeWvpFcv3B04VembQ==",
- "dev": true,
- "dependencies": {
- "@jest/types": "^29.6.3",
- "chalk": "^4.0.0",
- "jest-get-type": "^29.6.3",
- "jest-util": "^29.7.0",
- "pretty-format": "^29.7.0"
- },
- "engines": {
- "node": "^14.15.0 || ^16.10.0 || >=18.0.0"
- }
- },
- "node_modules/jest-environment-node": {
- "version": "29.7.0",
- "resolved": "https://registry.npmjs.org/jest-environment-node/-/jest-environment-node-29.7.0.tgz",
- "integrity": "sha512-DOSwCRqXirTOyheM+4d5YZOrWcdu0LNZ87ewUoywbcb2XR4wKgqiG8vNeYwhjFMbEkfju7wx2GYH0P2gevGvFw==",
- "dev": true,
- "dependencies": {
- "@jest/environment": "^29.7.0",
- "@jest/fake-timers": "^29.7.0",
- "@jest/types": "^29.6.3",
- "@types/node": "*",
- "jest-mock": "^29.7.0",
- "jest-util": "^29.7.0"
- },
- "engines": {
- "node": "^14.15.0 || ^16.10.0 || >=18.0.0"
- }
- },
- "node_modules/jest-fetch-mock": {
- "version": "3.0.3",
- "resolved": "https://registry.npmjs.org/jest-fetch-mock/-/jest-fetch-mock-3.0.3.tgz",
- "integrity": "sha512-Ux1nWprtLrdrH4XwE7O7InRY6psIi3GOsqNESJgMJ+M5cv4A8Lh7SN9d2V2kKRZ8ebAfcd1LNyZguAOb6JiDqw==",
- "dev": true,
- "dependencies": {
- "cross-fetch": "^3.0.4",
- "promise-polyfill": "^8.1.3"
- }
- },
- "node_modules/jest-get-type": {
- "version": "29.6.3",
- "resolved": "https://registry.npmjs.org/jest-get-type/-/jest-get-type-29.6.3.tgz",
- "integrity": "sha512-zrteXnqYxfQh7l5FHyL38jL39di8H8rHoecLH3JNxH3BwOrBsNeabdap5e0I23lD4HHI8W5VFBZqG4Eaq5LNcw==",
- "dev": true,
- "engines": {
- "node": "^14.15.0 || ^16.10.0 || >=18.0.0"
- }
- },
- "node_modules/jest-haste-map": {
- "version": "29.7.0",
- "resolved": "https://registry.npmjs.org/jest-haste-map/-/jest-haste-map-29.7.0.tgz",
- "integrity": "sha512-fP8u2pyfqx0K1rGn1R9pyE0/KTn+G7PxktWidOBTqFPLYX0b9ksaMFkhK5vrS3DVun09pckLdlx90QthlW7AmA==",
- "dev": true,
- "dependencies": {
- "@jest/types": "^29.6.3",
- "@types/graceful-fs": "^4.1.3",
- "@types/node": "*",
- "anymatch": "^3.0.3",
- "fb-watchman": "^2.0.0",
- "graceful-fs": "^4.2.9",
- "jest-regex-util": "^29.6.3",
- "jest-util": "^29.7.0",
- "jest-worker": "^29.7.0",
- "micromatch": "^4.0.4",
- "walker": "^1.0.8"
- },
- "engines": {
- "node": "^14.15.0 || ^16.10.0 || >=18.0.0"
- },
- "optionalDependencies": {
- "fsevents": "^2.3.2"
- }
- },
- "node_modules/jest-leak-detector": {
- "version": "29.7.0",
- "resolved": "https://registry.npmjs.org/jest-leak-detector/-/jest-leak-detector-29.7.0.tgz",
- "integrity": "sha512-kYA8IJcSYtST2BY9I+SMC32nDpBT3J2NvWJx8+JCuCdl/CR1I4EKUJROiP8XtCcxqgTTBGJNdbB1A8XRKbTetw==",
- "dev": true,
- "dependencies": {
- "jest-get-type": "^29.6.3",
- "pretty-format": "^29.7.0"
- },
- "engines": {
- "node": "^14.15.0 || ^16.10.0 || >=18.0.0"
- }
- },
- "node_modules/jest-matcher-utils": {
- "version": "29.7.0",
- "resolved": "https://registry.npmjs.org/jest-matcher-utils/-/jest-matcher-utils-29.7.0.tgz",
- "integrity": "sha512-sBkD+Xi9DtcChsI3L3u0+N0opgPYnCRPtGcQYrgXmR+hmt/fYfWAL0xRXYU8eWOdfuLgBe0YCW3AFtnRLagq/g==",
- "dev": true,
- "dependencies": {
- "chalk": "^4.0.0",
- "jest-diff": "^29.7.0",
- "jest-get-type": "^29.6.3",
- "pretty-format": "^29.7.0"
- },
- "engines": {
- "node": "^14.15.0 || ^16.10.0 || >=18.0.0"
- }
- },
- "node_modules/jest-message-util": {
- "version": "29.7.0",
- "resolved": "https://registry.npmjs.org/jest-message-util/-/jest-message-util-29.7.0.tgz",
- "integrity": "sha512-GBEV4GRADeP+qtB2+6u61stea8mGcOT4mCtrYISZwfu9/ISHFJ/5zOMXYbpBE9RsS5+Gb63DW4FgmnKJ79Kf6w==",
- "dev": true,
- "dependencies": {
- "@babel/code-frame": "^7.12.13",
- "@jest/types": "^29.6.3",
- "@types/stack-utils": "^2.0.0",
- "chalk": "^4.0.0",
- "graceful-fs": "^4.2.9",
- "micromatch": "^4.0.4",
- "pretty-format": "^29.7.0",
- "slash": "^3.0.0",
- "stack-utils": "^2.0.3"
- },
- "engines": {
- "node": "^14.15.0 || ^16.10.0 || >=18.0.0"
- }
- },
- "node_modules/jest-mock": {
- "version": "29.7.0",
- "resolved": "https://registry.npmjs.org/jest-mock/-/jest-mock-29.7.0.tgz",
- "integrity": "sha512-ITOMZn+UkYS4ZFh83xYAOzWStloNzJFO2s8DWrE4lhtGD+AorgnbkiKERe4wQVBydIGPx059g6riW5Btp6Llnw==",
- "dev": true,
- "dependencies": {
- "@jest/types": "^29.6.3",
- "@types/node": "*",
- "jest-util": "^29.7.0"
- },
- "engines": {
- "node": "^14.15.0 || ^16.10.0 || >=18.0.0"
- }
- },
- "node_modules/jest-pnp-resolver": {
- "version": "1.2.3",
- "resolved": "https://registry.npmjs.org/jest-pnp-resolver/-/jest-pnp-resolver-1.2.3.tgz",
- "integrity": "sha512-+3NpwQEnRoIBtx4fyhblQDPgJI0H1IEIkX7ShLUjPGA7TtUTvI1oiKi3SR4oBR0hQhQR80l4WAe5RrXBwWMA8w==",
- "dev": true,
- "engines": {
- "node": ">=6"
- },
- "peerDependencies": {
- "jest-resolve": "*"
- },
- "peerDependenciesMeta": {
- "jest-resolve": {
- "optional": true
- }
- }
- },
- "node_modules/jest-regex-util": {
- "version": "29.6.3",
- "resolved": "https://registry.npmjs.org/jest-regex-util/-/jest-regex-util-29.6.3.tgz",
- "integrity": "sha512-KJJBsRCyyLNWCNBOvZyRDnAIfUiRJ8v+hOBQYGn8gDyF3UegwiP4gwRR3/SDa42g1YbVycTidUF3rKjyLFDWbg==",
- "dev": true,
- "engines": {
- "node": "^14.15.0 || ^16.10.0 || >=18.0.0"
- }
- },
- "node_modules/jest-resolve": {
- "version": "29.7.0",
- "resolved": "https://registry.npmjs.org/jest-resolve/-/jest-resolve-29.7.0.tgz",
- "integrity": "sha512-IOVhZSrg+UvVAshDSDtHyFCCBUl/Q3AAJv8iZ6ZjnZ74xzvwuzLXid9IIIPgTnY62SJjfuupMKZsZQRsCvxEgA==",
- "dev": true,
- "dependencies": {
- "chalk": "^4.0.0",
- "graceful-fs": "^4.2.9",
- "jest-haste-map": "^29.7.0",
- "jest-pnp-resolver": "^1.2.2",
- "jest-util": "^29.7.0",
- "jest-validate": "^29.7.0",
- "resolve": "^1.20.0",
- "resolve.exports": "^2.0.0",
- "slash": "^3.0.0"
- },
- "engines": {
- "node": "^14.15.0 || ^16.10.0 || >=18.0.0"
- }
- },
- "node_modules/jest-resolve-dependencies": {
- "version": "29.7.0",
- "resolved": "https://registry.npmjs.org/jest-resolve-dependencies/-/jest-resolve-dependencies-29.7.0.tgz",
- "integrity": "sha512-un0zD/6qxJ+S0et7WxeI3H5XSe9lTBBR7bOHCHXkKR6luG5mwDDlIzVQ0V5cZCuoTgEdcdwzTghYkTWfubi+nA==",
- "dev": true,
- "dependencies": {
- "jest-regex-util": "^29.6.3",
- "jest-snapshot": "^29.7.0"
- },
- "engines": {
- "node": "^14.15.0 || ^16.10.0 || >=18.0.0"
- }
- },
- "node_modules/jest-runner": {
- "version": "29.7.0",
- "resolved": "https://registry.npmjs.org/jest-runner/-/jest-runner-29.7.0.tgz",
- "integrity": "sha512-fsc4N6cPCAahybGBfTRcq5wFR6fpLznMg47sY5aDpsoejOcVYFb07AHuSnR0liMcPTgBsA3ZJL6kFOjPdoNipQ==",
- "dev": true,
- "dependencies": {
- "@jest/console": "^29.7.0",
- "@jest/environment": "^29.7.0",
- "@jest/test-result": "^29.7.0",
- "@jest/transform": "^29.7.0",
- "@jest/types": "^29.6.3",
- "@types/node": "*",
- "chalk": "^4.0.0",
- "emittery": "^0.13.1",
- "graceful-fs": "^4.2.9",
- "jest-docblock": "^29.7.0",
- "jest-environment-node": "^29.7.0",
- "jest-haste-map": "^29.7.0",
- "jest-leak-detector": "^29.7.0",
- "jest-message-util": "^29.7.0",
- "jest-resolve": "^29.7.0",
- "jest-runtime": "^29.7.0",
- "jest-util": "^29.7.0",
- "jest-watcher": "^29.7.0",
- "jest-worker": "^29.7.0",
- "p-limit": "^3.1.0",
- "source-map-support": "0.5.13"
- },
- "engines": {
- "node": "^14.15.0 || ^16.10.0 || >=18.0.0"
- }
- },
- "node_modules/jest-runtime": {
- "version": "29.7.0",
- "resolved": "https://registry.npmjs.org/jest-runtime/-/jest-runtime-29.7.0.tgz",
- "integrity": "sha512-gUnLjgwdGqW7B4LvOIkbKs9WGbn+QLqRQQ9juC6HndeDiezIwhDP+mhMwHWCEcfQ5RUXa6OPnFF8BJh5xegwwQ==",
- "dev": true,
- "dependencies": {
- "@jest/environment": "^29.7.0",
- "@jest/fake-timers": "^29.7.0",
- "@jest/globals": "^29.7.0",
- "@jest/source-map": "^29.6.3",
- "@jest/test-result": "^29.7.0",
- "@jest/transform": "^29.7.0",
- "@jest/types": "^29.6.3",
- "@types/node": "*",
- "chalk": "^4.0.0",
- "cjs-module-lexer": "^1.0.0",
- "collect-v8-coverage": "^1.0.0",
- "glob": "^7.1.3",
- "graceful-fs": "^4.2.9",
- "jest-haste-map": "^29.7.0",
- "jest-message-util": "^29.7.0",
- "jest-mock": "^29.7.0",
- "jest-regex-util": "^29.6.3",
- "jest-resolve": "^29.7.0",
- "jest-snapshot": "^29.7.0",
- "jest-util": "^29.7.0",
- "slash": "^3.0.0",
- "strip-bom": "^4.0.0"
- },
- "engines": {
- "node": "^14.15.0 || ^16.10.0 || >=18.0.0"
- }
- },
- "node_modules/jest-snapshot": {
- "version": "29.7.0",
- "resolved": "https://registry.npmjs.org/jest-snapshot/-/jest-snapshot-29.7.0.tgz",
- "integrity": "sha512-Rm0BMWtxBcioHr1/OX5YCP8Uov4riHvKPknOGs804Zg9JGZgmIBkbtlxJC/7Z4msKYVbIJtfU+tKb8xlYNfdkw==",
- "dev": true,
- "dependencies": {
- "@babel/core": "^7.11.6",
- "@babel/generator": "^7.7.2",
- "@babel/plugin-syntax-jsx": "^7.7.2",
- "@babel/plugin-syntax-typescript": "^7.7.2",
- "@babel/types": "^7.3.3",
- "@jest/expect-utils": "^29.7.0",
- "@jest/transform": "^29.7.0",
- "@jest/types": "^29.6.3",
- "babel-preset-current-node-syntax": "^1.0.0",
- "chalk": "^4.0.0",
- "expect": "^29.7.0",
- "graceful-fs": "^4.2.9",
- "jest-diff": "^29.7.0",
- "jest-get-type": "^29.6.3",
- "jest-matcher-utils": "^29.7.0",
- "jest-message-util": "^29.7.0",
- "jest-util": "^29.7.0",
- "natural-compare": "^1.4.0",
- "pretty-format": "^29.7.0",
- "semver": "^7.5.3"
- },
- "engines": {
- "node": "^14.15.0 || ^16.10.0 || >=18.0.0"
- }
- },
- "node_modules/jest-snapshot/node_modules/semver": {
- "version": "7.6.3",
- "resolved": "https://registry.npmjs.org/semver/-/semver-7.6.3.tgz",
- "integrity": "sha512-oVekP1cKtI+CTDvHWYFUcMtsK/00wmAEfyqKfNdARm8u1wNVhSgaX7A8d4UuIlUI5e84iEwOhs7ZPYRmzU9U6A==",
- "dev": true,
- "bin": {
- "semver": "bin/semver.js"
- },
- "engines": {
- "node": ">=10"
- }
- },
- "node_modules/jest-util": {
- "version": "29.7.0",
- "resolved": "https://registry.npmjs.org/jest-util/-/jest-util-29.7.0.tgz",
- "integrity": "sha512-z6EbKajIpqGKU56y5KBUgy1dt1ihhQJgWzUlZHArA/+X2ad7Cb5iF+AK1EWVL/Bo7Rz9uurpqw6SiBCefUbCGA==",
- "dev": true,
- "dependencies": {
- "@jest/types": "^29.6.3",
- "@types/node": "*",
- "chalk": "^4.0.0",
- "ci-info": "^3.2.0",
- "graceful-fs": "^4.2.9",
- "picomatch": "^2.2.3"
- },
- "engines": {
- "node": "^14.15.0 || ^16.10.0 || >=18.0.0"
- }
- },
- "node_modules/jest-validate": {
- "version": "29.7.0",
- "resolved": "https://registry.npmjs.org/jest-validate/-/jest-validate-29.7.0.tgz",
- "integrity": "sha512-ZB7wHqaRGVw/9hST/OuFUReG7M8vKeq0/J2egIGLdvjHCmYqGARhzXmtgi+gVeZ5uXFF219aOc3Ls2yLg27tkw==",
- "dev": true,
- "dependencies": {
- "@jest/types": "^29.6.3",
- "camelcase": "^6.2.0",
- "chalk": "^4.0.0",
- "jest-get-type": "^29.6.3",
- "leven": "^3.1.0",
- "pretty-format": "^29.7.0"
- },
- "engines": {
- "node": "^14.15.0 || ^16.10.0 || >=18.0.0"
- }
- },
- "node_modules/jest-validate/node_modules/camelcase": {
- "version": "6.3.0",
- "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-6.3.0.tgz",
- "integrity": "sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA==",
- "dev": true,
- "engines": {
- "node": ">=10"
- },
- "funding": {
- "url": "https://github.com/sponsors/sindresorhus"
- }
- },
- "node_modules/jest-watcher": {
- "version": "29.7.0",
- "resolved": "https://registry.npmjs.org/jest-watcher/-/jest-watcher-29.7.0.tgz",
- "integrity": "sha512-49Fg7WXkU3Vl2h6LbLtMQ/HyB6rXSIX7SqvBLQmssRBGN9I0PNvPmAmCWSOY6SOvrjhI/F7/bGAv9RtnsPA03g==",
- "dev": true,
- "dependencies": {
- "@jest/test-result": "^29.7.0",
- "@jest/types": "^29.6.3",
- "@types/node": "*",
- "ansi-escapes": "^4.2.1",
- "chalk": "^4.0.0",
- "emittery": "^0.13.1",
- "jest-util": "^29.7.0",
- "string-length": "^4.0.1"
- },
- "engines": {
- "node": "^14.15.0 || ^16.10.0 || >=18.0.0"
- }
- },
- "node_modules/jest-worker": {
- "version": "29.7.0",
- "resolved": "https://registry.npmjs.org/jest-worker/-/jest-worker-29.7.0.tgz",
- "integrity": "sha512-eIz2msL/EzL9UFTFFx7jBTkeZfku0yUAyZZZmJ93H2TYEiroIx2PQjEXcwYtYl8zXCxb+PAmA2hLIt/6ZEkPHw==",
- "dev": true,
- "dependencies": {
- "@types/node": "*",
- "jest-util": "^29.7.0",
- "merge-stream": "^2.0.0",
- "supports-color": "^8.0.0"
- },
- "engines": {
- "node": "^14.15.0 || ^16.10.0 || >=18.0.0"
- }
- },
- "node_modules/jest-worker/node_modules/supports-color": {
- "version": "8.1.1",
- "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-8.1.1.tgz",
- "integrity": "sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==",
- "dev": true,
- "dependencies": {
- "has-flag": "^4.0.0"
- },
- "engines": {
- "node": ">=10"
- },
- "funding": {
- "url": "https://github.com/chalk/supports-color?sponsor=1"
- }
- },
- "node_modules/joi": {
- "version": "17.13.3",
- "resolved": "https://registry.npmjs.org/joi/-/joi-17.13.3.tgz",
- "integrity": "sha512-otDA4ldcIx+ZXsKHWmp0YizCweVRZG96J10b0FevjfuncLO1oX59THoAmHkNubYJ+9gWsYsp5k8v4ib6oDv1fA==",
- "dependencies": {
- "@hapi/hoek": "^9.3.0",
- "@hapi/topo": "^5.1.0",
- "@sideway/address": "^4.1.5",
- "@sideway/formula": "^3.0.1",
- "@sideway/pinpoint": "^2.0.0"
- }
- },
- "node_modules/joi/node_modules/@hapi/hoek": {
- "version": "9.3.0",
- "resolved": "https://registry.npmjs.org/@hapi/hoek/-/hoek-9.3.0.tgz",
- "integrity": "sha512-/c6rf4UJlmHlC9b5BaNvzAcFv7HZ2QHaV0D4/HNlBdvFnvQq8RI4kYdhyPCl7Xj+oWvTWQ8ujhqS53LIgAe6KQ=="
- },
- "node_modules/js-tokens": {
- "version": "4.0.0",
- "resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz",
- "integrity": "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==",
- "dev": true
- },
- "node_modules/js-yaml": {
- "version": "3.14.1",
- "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-3.14.1.tgz",
- "integrity": "sha512-okMH7OXXJ7YrN9Ok3/SXrnu4iX9yOk+25nqX4imS2npuvTYDmo/QEZoqwZkYaIDk3jVvBOTOIEgEhaLOynBS9g==",
- "dev": true,
- "dependencies": {
- "argparse": "^1.0.7",
- "esprima": "^4.0.0"
- },
- "bin": {
- "js-yaml": "bin/js-yaml.js"
- }
- },
- "node_modules/jsesc": {
- "version": "2.5.2",
- "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-2.5.2.tgz",
- "integrity": "sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA==",
- "dev": true,
- "bin": {
- "jsesc": "bin/jsesc"
- },
- "engines": {
- "node": ">=4"
- }
- },
- "node_modules/json-parse-even-better-errors": {
- "version": "2.3.1",
- "resolved": "https://registry.npmjs.org/json-parse-even-better-errors/-/json-parse-even-better-errors-2.3.1.tgz",
- "integrity": "sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w==",
- "dev": true
- },
- "node_modules/json5": {
- "version": "2.2.3",
- "resolved": "https://registry.npmjs.org/json5/-/json5-2.2.3.tgz",
- "integrity": "sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==",
- "dev": true,
- "bin": {
- "json5": "lib/cli.js"
- },
- "engines": {
- "node": ">=6"
- }
- },
- "node_modules/kleur": {
- "version": "3.0.3",
- "resolved": "https://registry.npmjs.org/kleur/-/kleur-3.0.3.tgz",
- "integrity": "sha512-eTIzlVOSUR+JxdDFepEYcBMtZ9Qqdef+rnzWdRZuMbOywu5tO2w2N7rqjoANZ5k9vywhL6Br1VRjUIgTQx4E8w==",
- "dev": true,
- "engines": {
- "node": ">=6"
- }
- },
- "node_modules/leven": {
- "version": "3.1.0",
- "resolved": "https://registry.npmjs.org/leven/-/leven-3.1.0.tgz",
- "integrity": "sha512-qsda+H8jTaUaN/x5vzW2rzc+8Rw4TAQ/4KjB46IwK5VH+IlVeeeje/EoZRpiXvIqjFgK84QffqPztGI3VBLG1A==",
- "dev": true,
- "engines": {
- "node": ">=6"
- }
- },
- "node_modules/lines-and-columns": {
- "version": "1.2.4",
- "resolved": "https://registry.npmjs.org/lines-and-columns/-/lines-and-columns-1.2.4.tgz",
- "integrity": "sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==",
- "dev": true
- },
- "node_modules/locate-path": {
- "version": "5.0.0",
- "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-5.0.0.tgz",
- "integrity": "sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==",
- "dev": true,
- "dependencies": {
- "p-locate": "^4.1.0"
- },
- "engines": {
- "node": ">=8"
- }
- },
- "node_modules/lodash.memoize": {
- "version": "4.1.2",
- "resolved": "https://registry.npmjs.org/lodash.memoize/-/lodash.memoize-4.1.2.tgz",
- "integrity": "sha512-t7j+NzmgnQzTAYXcsHYLgimltOV1MXHtlOWf6GjL9Kj8GK5FInw5JotxvbOs+IvV1/Dzo04/fCGfLVs7aXb4Ag==",
- "dev": true
- },
- "node_modules/lru-cache": {
- "version": "5.1.1",
- "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-5.1.1.tgz",
- "integrity": "sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==",
- "dev": true,
- "dependencies": {
- "yallist": "^3.0.2"
- }
- },
- "node_modules/make-dir": {
- "version": "4.0.0",
- "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-4.0.0.tgz",
- "integrity": "sha512-hXdUTZYIVOt1Ex//jAQi+wTZZpUpwBj/0QsOzqegb3rGMMeJiSEu5xLHnYfBrRV4RH2+OCSOO95Is/7x1WJ4bw==",
- "dev": true,
- "dependencies": {
- "semver": "^7.5.3"
- },
- "engines": {
- "node": ">=10"
- },
- "funding": {
- "url": "https://github.com/sponsors/sindresorhus"
- }
- },
- "node_modules/make-dir/node_modules/semver": {
- "version": "7.6.3",
- "resolved": "https://registry.npmjs.org/semver/-/semver-7.6.3.tgz",
- "integrity": "sha512-oVekP1cKtI+CTDvHWYFUcMtsK/00wmAEfyqKfNdARm8u1wNVhSgaX7A8d4UuIlUI5e84iEwOhs7ZPYRmzU9U6A==",
- "dev": true,
- "bin": {
- "semver": "bin/semver.js"
- },
- "engines": {
- "node": ">=10"
- }
- },
- "node_modules/make-error": {
- "version": "1.3.6",
- "resolved": "https://registry.npmjs.org/make-error/-/make-error-1.3.6.tgz",
- "integrity": "sha512-s8UhlNe7vPKomQhC1qFelMokr/Sc3AgNbso3n74mVPA5LTZwkB9NlXf4XPamLxJE8h0gh73rM94xvwRT2CVInw==",
- "dev": true
- },
- "node_modules/makeerror": {
- "version": "1.0.12",
- "resolved": "https://registry.npmjs.org/makeerror/-/makeerror-1.0.12.tgz",
- "integrity": "sha512-JmqCvUhmt43madlpFzG4BQzG2Z3m6tvQDNKdClZnO3VbIudJYmxsT0FNJMeiB2+JTSlTQTSbU8QdesVmwJcmLg==",
- "dev": true,
- "dependencies": {
- "tmpl": "1.0.5"
- }
- },
- "node_modules/merge-stream": {
- "version": "2.0.0",
- "resolved": "https://registry.npmjs.org/merge-stream/-/merge-stream-2.0.0.tgz",
- "integrity": "sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==",
- "dev": true
- },
- "node_modules/micromatch": {
- "version": "4.0.8",
- "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.8.tgz",
- "integrity": "sha512-PXwfBhYu0hBCPw8Dn0E+WDYb7af3dSLVWKi3HGv84IdF4TyFoC0ysxFd0Goxw7nSv4T/PzEJQxsYsEiFCKo2BA==",
- "dev": true,
- "dependencies": {
- "braces": "^3.0.3",
- "picomatch": "^2.3.1"
- },
- "engines": {
- "node": ">=8.6"
- }
- },
- "node_modules/mimic-fn": {
- "version": "2.1.0",
- "resolved": "https://registry.npmjs.org/mimic-fn/-/mimic-fn-2.1.0.tgz",
- "integrity": "sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==",
- "dev": true,
- "engines": {
- "node": ">=6"
- }
- },
- "node_modules/minimatch": {
- "version": "3.1.2",
- "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz",
- "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==",
- "dev": true,
- "dependencies": {
- "brace-expansion": "^1.1.7"
- },
- "engines": {
- "node": "*"
- }
- },
- "node_modules/ms": {
- "version": "2.1.3",
- "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz",
- "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA=="
- },
- "node_modules/natural-compare": {
- "version": "1.4.0",
- "resolved": "https://registry.npmjs.org/natural-compare/-/natural-compare-1.4.0.tgz",
- "integrity": "sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==",
- "dev": true
- },
- "node_modules/node-fetch": {
- "version": "2.7.0",
- "resolved": "https://registry.npmjs.org/node-fetch/-/node-fetch-2.7.0.tgz",
- "integrity": "sha512-c4FRfUm/dbcWZ7U+1Wq0AwCyFL+3nt2bEw05wfxSz+DWpWsitgmSgYmy2dQdWyKC1694ELPqMs/YzUSNozLt8A==",
- "dev": true,
- "dependencies": {
- "whatwg-url": "^5.0.0"
- },
- "engines": {
- "node": "4.x || >=6.0.0"
- },
- "peerDependencies": {
- "encoding": "^0.1.0"
- },
- "peerDependenciesMeta": {
- "encoding": {
- "optional": true
- }
- }
- },
- "node_modules/node-int64": {
- "version": "0.4.0",
- "resolved": "https://registry.npmjs.org/node-int64/-/node-int64-0.4.0.tgz",
- "integrity": "sha512-O5lz91xSOeoXP6DulyHfllpq+Eg00MWitZIbtPfoSEvqIHdl5gfcY6hYzDWnj0qD5tz52PI08u9qUvSVeUBeHw==",
- "dev": true
- },
- "node_modules/node-releases": {
- "version": "2.0.18",
- "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.18.tgz",
- "integrity": "sha512-d9VeXT4SJ7ZeOqGX6R5EM022wpL+eWPooLI+5UpWn2jCT1aosUQEhQP214x33Wkwx3JQMvIm+tIoVOdodFS40g==",
- "dev": true
- },
- "node_modules/nodemon": {
- "version": "3.1.7",
- "resolved": "https://registry.npmjs.org/nodemon/-/nodemon-3.1.7.tgz",
- "integrity": "sha512-hLj7fuMow6f0lbB0cD14Lz2xNjwsyruH251Pk4t/yIitCFJbmY1myuLlHm/q06aST4jg6EgAh74PIBBrRqpVAQ==",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "chokidar": "^3.5.2",
- "debug": "^4",
- "ignore-by-default": "^1.0.1",
- "minimatch": "^3.1.2",
- "pstree.remy": "^1.1.8",
- "semver": "^7.5.3",
- "simple-update-notifier": "^2.0.0",
- "supports-color": "^5.5.0",
- "touch": "^3.1.0",
- "undefsafe": "^2.0.5"
- },
- "bin": {
- "nodemon": "bin/nodemon.js"
- },
- "engines": {
- "node": ">=10"
- },
- "funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/nodemon"
- }
- },
- "node_modules/nodemon/node_modules/has-flag": {
- "version": "3.0.0",
- "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz",
- "integrity": "sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==",
- "dev": true,
- "license": "MIT",
- "engines": {
- "node": ">=4"
- }
- },
- "node_modules/nodemon/node_modules/semver": {
- "version": "7.6.3",
- "resolved": "https://registry.npmjs.org/semver/-/semver-7.6.3.tgz",
- "integrity": "sha512-oVekP1cKtI+CTDvHWYFUcMtsK/00wmAEfyqKfNdARm8u1wNVhSgaX7A8d4UuIlUI5e84iEwOhs7ZPYRmzU9U6A==",
- "dev": true,
- "license": "ISC",
- "bin": {
- "semver": "bin/semver.js"
- },
- "engines": {
- "node": ">=10"
- }
- },
- "node_modules/nodemon/node_modules/supports-color": {
- "version": "5.5.0",
- "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz",
- "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "has-flag": "^3.0.0"
- },
- "engines": {
- "node": ">=4"
- }
- },
- "node_modules/normalize-path": {
- "version": "3.0.0",
- "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz",
- "integrity": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==",
- "dev": true,
- "engines": {
- "node": ">=0.10.0"
- }
- },
- "node_modules/npm-run-path": {
- "version": "4.0.1",
- "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-4.0.1.tgz",
- "integrity": "sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw==",
- "dev": true,
- "dependencies": {
- "path-key": "^3.0.0"
- },
- "engines": {
- "node": ">=8"
- }
- },
- "node_modules/once": {
- "version": "1.4.0",
- "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz",
- "integrity": "sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==",
- "dev": true,
- "dependencies": {
- "wrappy": "1"
- }
- },
- "node_modules/onetime": {
- "version": "5.1.2",
- "resolved": "https://registry.npmjs.org/onetime/-/onetime-5.1.2.tgz",
- "integrity": "sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg==",
- "dev": true,
- "dependencies": {
- "mimic-fn": "^2.1.0"
- },
- "engines": {
- "node": ">=6"
- },
- "funding": {
- "url": "https://github.com/sponsors/sindresorhus"
- }
- },
- "node_modules/p-limit": {
- "version": "3.1.0",
- "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-3.1.0.tgz",
- "integrity": "sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==",
- "dev": true,
- "dependencies": {
- "yocto-queue": "^0.1.0"
- },
- "engines": {
- "node": ">=10"
- },
- "funding": {
- "url": "https://github.com/sponsors/sindresorhus"
- }
- },
- "node_modules/p-locate": {
- "version": "4.1.0",
- "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-4.1.0.tgz",
- "integrity": "sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==",
- "dev": true,
- "dependencies": {
- "p-limit": "^2.2.0"
- },
- "engines": {
- "node": ">=8"
- }
- },
- "node_modules/p-locate/node_modules/p-limit": {
- "version": "2.3.0",
- "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz",
- "integrity": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==",
- "dev": true,
- "dependencies": {
- "p-try": "^2.0.0"
- },
- "engines": {
- "node": ">=6"
- },
- "funding": {
- "url": "https://github.com/sponsors/sindresorhus"
- }
- },
- "node_modules/p-try": {
- "version": "2.2.0",
- "resolved": "https://registry.npmjs.org/p-try/-/p-try-2.2.0.tgz",
- "integrity": "sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==",
- "dev": true,
- "engines": {
- "node": ">=6"
- }
- },
- "node_modules/parse-json": {
- "version": "5.2.0",
- "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-5.2.0.tgz",
- "integrity": "sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg==",
- "dev": true,
- "dependencies": {
- "@babel/code-frame": "^7.0.0",
- "error-ex": "^1.3.1",
- "json-parse-even-better-errors": "^2.3.0",
- "lines-and-columns": "^1.1.6"
- },
- "engines": {
- "node": ">=8"
- },
- "funding": {
- "url": "https://github.com/sponsors/sindresorhus"
- }
- },
- "node_modules/path-exists": {
- "version": "4.0.0",
- "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz",
- "integrity": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==",
- "dev": true,
- "engines": {
- "node": ">=8"
- }
- },
- "node_modules/path-is-absolute": {
- "version": "1.0.1",
- "resolved": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz",
- "integrity": "sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==",
- "dev": true,
- "engines": {
- "node": ">=0.10.0"
- }
- },
- "node_modules/path-key": {
- "version": "3.1.1",
- "resolved": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz",
- "integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==",
- "dev": true,
- "engines": {
- "node": ">=8"
- }
- },
- "node_modules/path-parse": {
- "version": "1.0.7",
- "resolved": "https://registry.npmjs.org/path-parse/-/path-parse-1.0.7.tgz",
- "integrity": "sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==",
- "dev": true
- },
- "node_modules/picocolors": {
- "version": "1.1.0",
- "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.1.0.tgz",
- "integrity": "sha512-TQ92mBOW0l3LeMeyLV6mzy/kWr8lkd/hp3mTg7wYK7zJhuBStmGMBG0BdeDZS/dZx1IukaX6Bk11zcln25o1Aw==",
- "dev": true
- },
- "node_modules/picomatch": {
- "version": "2.3.1",
- "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz",
- "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==",
- "dev": true,
- "engines": {
- "node": ">=8.6"
- },
- "funding": {
- "url": "https://github.com/sponsors/jonschlinkert"
- }
- },
- "node_modules/pirates": {
- "version": "4.0.6",
- "resolved": "https://registry.npmjs.org/pirates/-/pirates-4.0.6.tgz",
- "integrity": "sha512-saLsH7WeYYPiD25LDuLRRY/i+6HaPYr6G1OUlN39otzkSTxKnubR9RTxS3/Kk50s1g2JTgFwWQDQyplC5/SHZg==",
- "dev": true,
- "engines": {
- "node": ">= 6"
- }
- },
- "node_modules/pkg-dir": {
- "version": "4.2.0",
- "resolved": "https://registry.npmjs.org/pkg-dir/-/pkg-dir-4.2.0.tgz",
- "integrity": "sha512-HRDzbaKjC+AOWVXxAU/x54COGeIv9eb+6CkDSQoNTt4XyWoIJvuPsXizxu/Fr23EiekbtZwmh1IcIG/l/a10GQ==",
- "dev": true,
- "dependencies": {
- "find-up": "^4.0.0"
- },
- "engines": {
- "node": ">=8"
- }
- },
- "node_modules/pretty-format": {
- "version": "29.7.0",
- "resolved": "https://registry.npmjs.org/pretty-format/-/pretty-format-29.7.0.tgz",
- "integrity": "sha512-Pdlw/oPxN+aXdmM9R00JVC9WVFoCLTKJvDVLgmJ+qAffBMxsV85l/Lu7sNx4zSzPyoL2euImuEwHhOXdEgNFZQ==",
- "dev": true,
- "dependencies": {
- "@jest/schemas": "^29.6.3",
- "ansi-styles": "^5.0.0",
- "react-is": "^18.0.0"
- },
- "engines": {
- "node": "^14.15.0 || ^16.10.0 || >=18.0.0"
- }
- },
- "node_modules/pretty-format/node_modules/ansi-styles": {
- "version": "5.2.0",
- "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-5.2.0.tgz",
- "integrity": "sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA==",
- "dev": true,
- "engines": {
- "node": ">=10"
- },
- "funding": {
- "url": "https://github.com/chalk/ansi-styles?sponsor=1"
- }
- },
- "node_modules/promise-polyfill": {
- "version": "8.3.0",
- "resolved": "https://registry.npmjs.org/promise-polyfill/-/promise-polyfill-8.3.0.tgz",
- "integrity": "sha512-H5oELycFml5yto/atYqmjyigJoAo3+OXwolYiH7OfQuYlAqhxNvTfiNMbV9hsC6Yp83yE5r2KTVmtrG6R9i6Pg==",
- "dev": true
- },
- "node_modules/prompts": {
- "version": "2.4.2",
- "resolved": "https://registry.npmjs.org/prompts/-/prompts-2.4.2.tgz",
- "integrity": "sha512-NxNv/kLguCA7p3jE8oL2aEBsrJWgAakBpgmgK6lpPWV+WuOmY6r2/zbAVnP+T8bQlA0nzHXSJSJW0Hq7ylaD2Q==",
- "dev": true,
- "dependencies": {
- "kleur": "^3.0.3",
- "sisteransi": "^1.0.5"
- },
- "engines": {
- "node": ">= 6"
- }
- },
- "node_modules/pstree.remy": {
- "version": "1.1.8",
- "resolved": "https://registry.npmjs.org/pstree.remy/-/pstree.remy-1.1.8.tgz",
- "integrity": "sha512-77DZwxQmxKnu3aR542U+X8FypNzbfJ+C5XQDk3uWjWxn6151aIMGthWYRXTqT1E5oJvg+ljaa2OJi+VfvCOQ8w==",
- "dev": true,
- "license": "MIT"
- },
- "node_modules/pure-rand": {
- "version": "6.1.0",
- "resolved": "https://registry.npmjs.org/pure-rand/-/pure-rand-6.1.0.tgz",
- "integrity": "sha512-bVWawvoZoBYpp6yIoQtQXHZjmz35RSVHnUOTefl8Vcjr8snTPY1wnpSPMWekcFwbxI6gtmT7rSYPFvz71ldiOA==",
- "dev": true,
- "funding": [
- {
- "type": "individual",
- "url": "https://github.com/sponsors/dubzzz"
- },
- {
- "type": "opencollective",
- "url": "https://opencollective.com/fast-check"
- }
- ]
- },
- "node_modules/react-is": {
- "version": "18.3.1",
- "resolved": "https://registry.npmjs.org/react-is/-/react-is-18.3.1.tgz",
- "integrity": "sha512-/LLMVyas0ljjAtoYiPqYiL8VWXzUUdThrmU5+n20DZv+a+ClRoevUzw5JxU+Ieh5/c87ytoTBV9G1FiKfNJdmg==",
- "dev": true
- },
- "node_modules/readdirp": {
- "version": "3.6.0",
- "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-3.6.0.tgz",
- "integrity": "sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "picomatch": "^2.2.1"
- },
- "engines": {
- "node": ">=8.10.0"
- }
- },
- "node_modules/require-directory": {
- "version": "2.1.1",
- "resolved": "https://registry.npmjs.org/require-directory/-/require-directory-2.1.1.tgz",
- "integrity": "sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q==",
- "dev": true,
- "engines": {
- "node": ">=0.10.0"
- }
- },
- "node_modules/resolve": {
- "version": "1.22.8",
- "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.22.8.tgz",
- "integrity": "sha512-oKWePCxqpd6FlLvGV1VU0x7bkPmmCNolxzjMf4NczoDnQcIWrAF+cPtZn5i6n+RfD2d9i0tzpKnG6Yk168yIyw==",
- "dev": true,
- "dependencies": {
- "is-core-module": "^2.13.0",
- "path-parse": "^1.0.7",
- "supports-preserve-symlinks-flag": "^1.0.0"
- },
- "bin": {
- "resolve": "bin/resolve"
- },
- "funding": {
- "url": "https://github.com/sponsors/ljharb"
- }
- },
- "node_modules/resolve-cwd": {
- "version": "3.0.0",
- "resolved": "https://registry.npmjs.org/resolve-cwd/-/resolve-cwd-3.0.0.tgz",
- "integrity": "sha512-OrZaX2Mb+rJCpH/6CpSqt9xFVpN++x01XnN2ie9g6P5/3xelLAkXWVADpdz1IHD/KFfEXyE6V0U01OQ3UO2rEg==",
- "dev": true,
- "dependencies": {
- "resolve-from": "^5.0.0"
- },
- "engines": {
- "node": ">=8"
- }
- },
- "node_modules/resolve-from": {
- "version": "5.0.0",
- "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-5.0.0.tgz",
- "integrity": "sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw==",
- "dev": true,
- "engines": {
- "node": ">=8"
- }
- },
- "node_modules/resolve.exports": {
- "version": "2.0.2",
- "resolved": "https://registry.npmjs.org/resolve.exports/-/resolve.exports-2.0.2.tgz",
- "integrity": "sha512-X2UW6Nw3n/aMgDVy+0rSqgHlv39WZAlZrXCdnbyEiKm17DSqHX4MmQMaST3FbeWR5FTuRcUwYAziZajji0Y7mg==",
- "dev": true,
- "engines": {
- "node": ">=10"
- }
- },
- "node_modules/semver": {
- "version": "6.3.1",
- "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz",
- "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==",
- "dev": true,
- "bin": {
- "semver": "bin/semver.js"
- }
- },
- "node_modules/shebang-command": {
- "version": "2.0.0",
- "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz",
- "integrity": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==",
- "dev": true,
- "dependencies": {
- "shebang-regex": "^3.0.0"
- },
- "engines": {
- "node": ">=8"
- }
- },
- "node_modules/shebang-regex": {
- "version": "3.0.0",
- "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz",
- "integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==",
- "dev": true,
- "engines": {
- "node": ">=8"
- }
- },
- "node_modules/signal-exit": {
- "version": "3.0.7",
- "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.7.tgz",
- "integrity": "sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==",
- "dev": true
- },
- "node_modules/simple-oauth2": {
- "version": "5.1.0",
- "resolved": "https://registry.npmjs.org/simple-oauth2/-/simple-oauth2-5.1.0.tgz",
- "integrity": "sha512-gWDa38Ccm4MwlG5U7AlcJxPv3lvr80dU7ARJWrGdgvOKyzSj1gr3GBPN1rABTedAYvC/LsGYoFuFxwDBPtGEbw==",
- "dependencies": {
- "@hapi/hoek": "^11.0.4",
- "@hapi/wreck": "^18.0.0",
- "debug": "^4.3.4",
- "joi": "^17.6.4"
- }
- },
- "node_modules/simple-update-notifier": {
- "version": "2.0.0",
- "resolved": "https://registry.npmjs.org/simple-update-notifier/-/simple-update-notifier-2.0.0.tgz",
- "integrity": "sha512-a2B9Y0KlNXl9u/vsW6sTIu9vGEpfKu2wRV6l1H3XEas/0gUIzGzBoP/IouTcUQbm9JWZLH3COxyn03TYlFax6w==",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "semver": "^7.5.3"
- },
- "engines": {
- "node": ">=10"
- }
- },
- "node_modules/simple-update-notifier/node_modules/semver": {
- "version": "7.6.3",
- "resolved": "https://registry.npmjs.org/semver/-/semver-7.6.3.tgz",
- "integrity": "sha512-oVekP1cKtI+CTDvHWYFUcMtsK/00wmAEfyqKfNdARm8u1wNVhSgaX7A8d4UuIlUI5e84iEwOhs7ZPYRmzU9U6A==",
- "dev": true,
- "license": "ISC",
- "bin": {
- "semver": "bin/semver.js"
- },
- "engines": {
- "node": ">=10"
- }
- },
- "node_modules/sisteransi": {
- "version": "1.0.5",
- "resolved": "https://registry.npmjs.org/sisteransi/-/sisteransi-1.0.5.tgz",
- "integrity": "sha512-bLGGlR1QxBcynn2d5YmDX4MGjlZvy2MRBDRNHLJ8VI6l6+9FUiyTFNJ0IveOSP0bcXgVDPRcfGqA0pjaqUpfVg==",
- "dev": true
- },
- "node_modules/slash": {
- "version": "3.0.0",
- "resolved": "https://registry.npmjs.org/slash/-/slash-3.0.0.tgz",
- "integrity": "sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==",
- "dev": true,
- "engines": {
- "node": ">=8"
- }
- },
- "node_modules/source-map": {
- "version": "0.6.1",
- "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz",
- "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==",
- "dev": true,
- "engines": {
- "node": ">=0.10.0"
- }
- },
- "node_modules/source-map-support": {
- "version": "0.5.13",
- "resolved": "https://registry.npmjs.org/source-map-support/-/source-map-support-0.5.13.tgz",
- "integrity": "sha512-SHSKFHadjVA5oR4PPqhtAVdcBWwRYVd6g6cAXnIbRiIwc2EhPrTuKUBdSLvlEKyIP3GCf89fltvcZiP9MMFA1w==",
- "dev": true,
- "dependencies": {
- "buffer-from": "^1.0.0",
- "source-map": "^0.6.0"
- }
- },
- "node_modules/sprintf-js": {
- "version": "1.0.3",
- "resolved": "https://registry.npmjs.org/sprintf-js/-/sprintf-js-1.0.3.tgz",
- "integrity": "sha512-D9cPgkvLlV3t3IzL0D0YLvGA9Ahk4PcvVwUbN0dSGr1aP0Nrt4AEnTUbuGvquEC0mA64Gqt1fzirlRs5ibXx8g==",
- "dev": true
- },
- "node_modules/stack-utils": {
- "version": "2.0.6",
- "resolved": "https://registry.npmjs.org/stack-utils/-/stack-utils-2.0.6.tgz",
- "integrity": "sha512-XlkWvfIm6RmsWtNJx+uqtKLS8eqFbxUg0ZzLXqY0caEy9l7hruX8IpiDnjsLavoBgqCCR71TqWO8MaXYheJ3RQ==",
- "dev": true,
- "dependencies": {
- "escape-string-regexp": "^2.0.0"
- },
- "engines": {
- "node": ">=10"
- }
- },
- "node_modules/string-length": {
- "version": "4.0.2",
- "resolved": "https://registry.npmjs.org/string-length/-/string-length-4.0.2.tgz",
- "integrity": "sha512-+l6rNN5fYHNhZZy41RXsYptCjA2Igmq4EG7kZAYFQI1E1VTXarr6ZPXBg6eq7Y6eK4FEhY6AJlyuFIb/v/S0VQ==",
- "dev": true,
- "dependencies": {
- "char-regex": "^1.0.2",
- "strip-ansi": "^6.0.0"
- },
- "engines": {
- "node": ">=10"
- }
- },
- "node_modules/string-width": {
- "version": "4.2.3",
- "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz",
- "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==",
- "dev": true,
- "dependencies": {
- "emoji-regex": "^8.0.0",
- "is-fullwidth-code-point": "^3.0.0",
- "strip-ansi": "^6.0.1"
- },
- "engines": {
- "node": ">=8"
- }
- },
- "node_modules/strip-ansi": {
- "version": "6.0.1",
- "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz",
- "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==",
- "dev": true,
- "dependencies": {
- "ansi-regex": "^5.0.1"
- },
- "engines": {
- "node": ">=8"
- }
- },
- "node_modules/strip-bom": {
- "version": "4.0.0",
- "resolved": "https://registry.npmjs.org/strip-bom/-/strip-bom-4.0.0.tgz",
- "integrity": "sha512-3xurFv5tEgii33Zi8Jtp55wEIILR9eh34FAW00PZf+JnSsTmV/ioewSgQl97JHvgjoRGwPShsWm+IdrxB35d0w==",
- "dev": true,
- "engines": {
- "node": ">=8"
- }
- },
- "node_modules/strip-final-newline": {
- "version": "2.0.0",
- "resolved": "https://registry.npmjs.org/strip-final-newline/-/strip-final-newline-2.0.0.tgz",
- "integrity": "sha512-BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA==",
- "dev": true,
- "engines": {
- "node": ">=6"
- }
- },
- "node_modules/strip-json-comments": {
- "version": "3.1.1",
- "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-3.1.1.tgz",
- "integrity": "sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==",
- "dev": true,
- "engines": {
- "node": ">=8"
- },
- "funding": {
- "url": "https://github.com/sponsors/sindresorhus"
- }
- },
- "node_modules/supports-color": {
- "version": "7.2.0",
- "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz",
- "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==",
- "dev": true,
- "dependencies": {
- "has-flag": "^4.0.0"
- },
- "engines": {
- "node": ">=8"
- }
- },
- "node_modules/supports-preserve-symlinks-flag": {
- "version": "1.0.0",
- "resolved": "https://registry.npmjs.org/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz",
- "integrity": "sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==",
- "dev": true,
- "engines": {
- "node": ">= 0.4"
- },
- "funding": {
- "url": "https://github.com/sponsors/ljharb"
- }
- },
- "node_modules/test-exclude": {
- "version": "6.0.0",
- "resolved": "https://registry.npmjs.org/test-exclude/-/test-exclude-6.0.0.tgz",
- "integrity": "sha512-cAGWPIyOHU6zlmg88jwm7VRyXnMN7iV68OGAbYDk/Mh/xC/pzVPlQtY6ngoIH/5/tciuhGfvESU8GrHrcxD56w==",
- "dev": true,
- "dependencies": {
- "@istanbuljs/schema": "^0.1.2",
- "glob": "^7.1.4",
- "minimatch": "^3.0.4"
- },
- "engines": {
- "node": ">=8"
- }
- },
- "node_modules/tmpl": {
- "version": "1.0.5",
- "resolved": "https://registry.npmjs.org/tmpl/-/tmpl-1.0.5.tgz",
- "integrity": "sha512-3f0uOEAQwIqGuWW2MVzYg8fV/QNnc/IpuJNG837rLuczAaLVHslWHZQj4IGiEl5Hs3kkbhwL9Ab7Hrsmuj+Smw==",
- "dev": true
- },
- "node_modules/to-fast-properties": {
- "version": "2.0.0",
- "resolved": "https://registry.npmjs.org/to-fast-properties/-/to-fast-properties-2.0.0.tgz",
- "integrity": "sha512-/OaKK0xYrs3DmxRYqL/yDc+FxFUVYhDlXMhRmv3z915w2HF1tnN1omB354j8VUGO/hbRzyD6Y3sA7v7GS/ceog==",
- "dev": true,
- "engines": {
- "node": ">=4"
- }
- },
- "node_modules/to-regex-range": {
- "version": "5.0.1",
- "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz",
- "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==",
- "dev": true,
- "dependencies": {
- "is-number": "^7.0.0"
- },
- "engines": {
- "node": ">=8.0"
- }
- },
- "node_modules/touch": {
- "version": "3.1.1",
- "resolved": "https://registry.npmjs.org/touch/-/touch-3.1.1.tgz",
- "integrity": "sha512-r0eojU4bI8MnHr8c5bNo7lJDdI2qXlWWJk6a9EAFG7vbhTjElYhBVS3/miuE0uOuoLdb8Mc/rVfsmm6eo5o9GA==",
- "dev": true,
- "license": "ISC",
- "bin": {
- "nodetouch": "bin/nodetouch.js"
- }
- },
- "node_modules/tr46": {
- "version": "0.0.3",
- "resolved": "https://registry.npmjs.org/tr46/-/tr46-0.0.3.tgz",
- "integrity": "sha512-N3WMsuqV66lT30CrXNbEjx4GEwlow3v6rr4mCcv6prnfwhS01rkgyFdjPNBYd9br7LpXV1+Emh01fHnq2Gdgrw==",
- "dev": true
- },
- "node_modules/ts-jest": {
- "version": "29.2.5",
- "resolved": "https://registry.npmjs.org/ts-jest/-/ts-jest-29.2.5.tgz",
- "integrity": "sha512-KD8zB2aAZrcKIdGk4OwpJggeLcH1FgrICqDSROWqlnJXGCXK4Mn6FcdK2B6670Xr73lHMG1kHw8R87A0ecZ+vA==",
- "dev": true,
- "dependencies": {
- "bs-logger": "^0.2.6",
- "ejs": "^3.1.10",
- "fast-json-stable-stringify": "^2.1.0",
- "jest-util": "^29.0.0",
- "json5": "^2.2.3",
- "lodash.memoize": "^4.1.2",
- "make-error": "^1.3.6",
- "semver": "^7.6.3",
- "yargs-parser": "^21.1.1"
- },
- "bin": {
- "ts-jest": "cli.js"
- },
- "engines": {
- "node": "^14.15.0 || ^16.10.0 || ^18.0.0 || >=20.0.0"
- },
- "peerDependencies": {
- "@babel/core": ">=7.0.0-beta.0 <8",
- "@jest/transform": "^29.0.0",
- "@jest/types": "^29.0.0",
- "babel-jest": "^29.0.0",
- "jest": "^29.0.0",
- "typescript": ">=4.3 <6"
- },
- "peerDependenciesMeta": {
- "@babel/core": {
- "optional": true
- },
- "@jest/transform": {
- "optional": true
- },
- "@jest/types": {
- "optional": true
- },
- "babel-jest": {
- "optional": true
- },
- "esbuild": {
- "optional": true
- }
- }
- },
- "node_modules/ts-jest/node_modules/semver": {
- "version": "7.6.3",
- "resolved": "https://registry.npmjs.org/semver/-/semver-7.6.3.tgz",
- "integrity": "sha512-oVekP1cKtI+CTDvHWYFUcMtsK/00wmAEfyqKfNdARm8u1wNVhSgaX7A8d4UuIlUI5e84iEwOhs7ZPYRmzU9U6A==",
- "dev": true,
- "bin": {
- "semver": "bin/semver.js"
- },
- "engines": {
- "node": ">=10"
- }
- },
- "node_modules/type-detect": {
- "version": "4.0.8",
- "resolved": "https://registry.npmjs.org/type-detect/-/type-detect-4.0.8.tgz",
- "integrity": "sha512-0fr/mIH1dlO+x7TlcMy+bIDqKPsw/70tVyeHW787goQjhmqaZe10uwLujubK9q9Lg6Fiho1KUKDYz0Z7k7g5/g==",
- "dev": true,
- "engines": {
- "node": ">=4"
- }
- },
- "node_modules/type-fest": {
- "version": "0.21.3",
- "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.21.3.tgz",
- "integrity": "sha512-t0rzBq87m3fVcduHDUFhKmyyX+9eo6WQjZvf51Ea/M0Q7+T374Jp1aUiyUl0GKxp8M/OETVHSDvmkyPgvX+X2w==",
- "dev": true,
- "engines": {
- "node": ">=10"
- },
- "funding": {
- "url": "https://github.com/sponsors/sindresorhus"
- }
- },
- "node_modules/typescript": {
- "version": "5.5.2",
- "resolved": "https://registry.npmjs.org/typescript/-/typescript-5.5.2.tgz",
- "integrity": "sha512-NcRtPEOsPFFWjobJEtfihkLCZCXZt/os3zf8nTxjVH3RvTSxjrCamJpbExGvYOF+tFHc3pA65qpdwPbzjohhew==",
- "dev": true,
- "bin": {
- "tsc": "bin/tsc",
- "tsserver": "bin/tsserver"
- },
- "engines": {
- "node": ">=14.17"
- }
- },
- "node_modules/undefsafe": {
- "version": "2.0.5",
- "resolved": "https://registry.npmjs.org/undefsafe/-/undefsafe-2.0.5.tgz",
- "integrity": "sha512-WxONCrssBM8TSPRqN5EmsjVrsv4A8X12J4ArBiiayv3DyyG3ZlIg6yysuuSYdZsVz3TKcTg2fd//Ujd4CHV1iA==",
- "dev": true,
- "license": "MIT"
- },
- "node_modules/undici-types": {
- "version": "6.19.8",
- "resolved": "https://registry.npmjs.org/undici-types/-/undici-types-6.19.8.tgz",
- "integrity": "sha512-ve2KP6f/JnbPBFyobGHuerC9g1FYGn/F8n1LWTwNxCEzd6IfqTwUQcNXgEtmmQ6DlRrC1hrSrBnCZPokRrDHjw==",
- "dev": true,
- "license": "MIT"
- },
- "node_modules/update-browserslist-db": {
- "version": "1.1.0",
- "resolved": "https://registry.npmjs.org/update-browserslist-db/-/update-browserslist-db-1.1.0.tgz",
- "integrity": "sha512-EdRAaAyk2cUE1wOf2DkEhzxqOQvFOoRJFNS6NeyJ01Gp2beMRpBAINjM2iDXE3KCuKhwnvHIQCJm6ThL2Z+HzQ==",
- "dev": true,
- "funding": [
- {
- "type": "opencollective",
- "url": "https://opencollective.com/browserslist"
- },
- {
- "type": "tidelift",
- "url": "https://tidelift.com/funding/github/npm/browserslist"
- },
- {
- "type": "github",
- "url": "https://github.com/sponsors/ai"
- }
- ],
- "dependencies": {
- "escalade": "^3.1.2",
- "picocolors": "^1.0.1"
- },
- "bin": {
- "update-browserslist-db": "cli.js"
- },
- "peerDependencies": {
- "browserslist": ">= 4.21.0"
- }
- },
- "node_modules/v8-to-istanbul": {
- "version": "9.3.0",
- "resolved": "https://registry.npmjs.org/v8-to-istanbul/-/v8-to-istanbul-9.3.0.tgz",
- "integrity": "sha512-kiGUalWN+rgBJ/1OHZsBtU4rXZOfj/7rKQxULKlIzwzQSvMJUUNgPwJEEh7gU6xEVxC0ahoOBvN2YI8GH6FNgA==",
- "dev": true,
- "dependencies": {
- "@jridgewell/trace-mapping": "^0.3.12",
- "@types/istanbul-lib-coverage": "^2.0.1",
- "convert-source-map": "^2.0.0"
- },
- "engines": {
- "node": ">=10.12.0"
- }
- },
- "node_modules/walker": {
- "version": "1.0.8",
- "resolved": "https://registry.npmjs.org/walker/-/walker-1.0.8.tgz",
- "integrity": "sha512-ts/8E8l5b7kY0vlWLewOkDXMmPdLcVV4GmOQLyxuSswIJsweeFZtAsMF7k1Nszz+TYBQrlYRmzOnr398y1JemQ==",
- "dev": true,
- "dependencies": {
- "makeerror": "1.0.12"
- }
- },
- "node_modules/webidl-conversions": {
- "version": "3.0.1",
- "resolved": "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-3.0.1.tgz",
- "integrity": "sha512-2JAn3z8AR6rjK8Sm8orRC0h/bcl/DqL7tRPdGZ4I1CjdF+EaMLmYxBHyXuKL849eucPFhvBoxMsflfOb8kxaeQ==",
- "dev": true
- },
- "node_modules/whatwg-url": {
- "version": "5.0.0",
- "resolved": "https://registry.npmjs.org/whatwg-url/-/whatwg-url-5.0.0.tgz",
- "integrity": "sha512-saE57nupxk6v3HY35+jzBwYa0rKSy0XR8JSxZPwgLr7ys0IBzhGviA1/TUGJLmSVqs8pb9AnvICXEuOHLprYTw==",
- "dev": true,
- "dependencies": {
- "tr46": "~0.0.3",
- "webidl-conversions": "^3.0.0"
- }
- },
- "node_modules/which": {
- "version": "2.0.2",
- "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz",
- "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==",
- "dev": true,
- "dependencies": {
- "isexe": "^2.0.0"
- },
- "bin": {
- "node-which": "bin/node-which"
- },
- "engines": {
- "node": ">= 8"
- }
- },
- "node_modules/wrap-ansi": {
- "version": "7.0.0",
- "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz",
- "integrity": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==",
- "dev": true,
- "dependencies": {
- "ansi-styles": "^4.0.0",
- "string-width": "^4.1.0",
- "strip-ansi": "^6.0.0"
- },
- "engines": {
- "node": ">=10"
- },
- "funding": {
- "url": "https://github.com/chalk/wrap-ansi?sponsor=1"
- }
- },
- "node_modules/wrappy": {
- "version": "1.0.2",
- "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz",
- "integrity": "sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==",
- "dev": true
- },
- "node_modules/write-file-atomic": {
- "version": "4.0.2",
- "resolved": "https://registry.npmjs.org/write-file-atomic/-/write-file-atomic-4.0.2.tgz",
- "integrity": "sha512-7KxauUdBmSdWnmpaGFg+ppNjKF8uNLry8LyzjauQDOVONfFLNKrKvQOxZ/VuTIcS/gge/YNahf5RIIQWTSarlg==",
- "dev": true,
- "dependencies": {
- "imurmurhash": "^0.1.4",
- "signal-exit": "^3.0.7"
- },
- "engines": {
- "node": "^12.13.0 || ^14.15.0 || >=16.0.0"
- }
- },
- "node_modules/ws": {
- "version": "8.18.0",
- "resolved": "https://registry.npmjs.org/ws/-/ws-8.18.0.tgz",
- "integrity": "sha512-8VbfWfHLbbwu3+N6OKsOMpBdT4kXPDDB9cJk2bJ6mh9ucxdlnNvH1e+roYkKmN9Nxw2yjz7VzeO9oOz2zJ04Pw==",
- "license": "MIT",
- "engines": {
- "node": ">=10.0.0"
- },
- "peerDependencies": {
- "bufferutil": "^4.0.1",
- "utf-8-validate": ">=5.0.2"
- },
- "peerDependenciesMeta": {
- "bufferutil": {
- "optional": true
- },
- "utf-8-validate": {
- "optional": true
- }
- }
- },
- "node_modules/y18n": {
- "version": "5.0.8",
- "resolved": "https://registry.npmjs.org/y18n/-/y18n-5.0.8.tgz",
- "integrity": "sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA==",
- "dev": true,
- "engines": {
- "node": ">=10"
- }
- },
- "node_modules/yallist": {
- "version": "3.1.1",
- "resolved": "https://registry.npmjs.org/yallist/-/yallist-3.1.1.tgz",
- "integrity": "sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==",
- "dev": true
- },
- "node_modules/yargs": {
- "version": "17.7.2",
- "resolved": "https://registry.npmjs.org/yargs/-/yargs-17.7.2.tgz",
- "integrity": "sha512-7dSzzRQ++CKnNI/krKnYRV7JKKPUXMEh61soaHKg9mrWEhzFWhFnxPxGl+69cD1Ou63C13NUPCnmIcrvqCuM6w==",
- "dev": true,
- "dependencies": {
- "cliui": "^8.0.1",
- "escalade": "^3.1.1",
- "get-caller-file": "^2.0.5",
- "require-directory": "^2.1.1",
- "string-width": "^4.2.3",
- "y18n": "^5.0.5",
- "yargs-parser": "^21.1.1"
- },
- "engines": {
- "node": ">=12"
- }
- },
- "node_modules/yargs-parser": {
- "version": "21.1.1",
- "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-21.1.1.tgz",
- "integrity": "sha512-tVpsJW7DdjecAiFpbIB1e3qxIQsE6NoPc5/eTdrbbIC4h0LVsWhnoa3g+m2HclBIujHzsxZ4VJVA+GUuc2/LBw==",
- "dev": true,
- "engines": {
- "node": ">=12"
- }
- },
- "node_modules/yocto-queue": {
- "version": "0.1.0",
- "resolved": "https://registry.npmjs.org/yocto-queue/-/yocto-queue-0.1.0.tgz",
- "integrity": "sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==",
- "dev": true,
- "engines": {
- "node": ">=10"
- },
- "funding": {
- "url": "https://github.com/sponsors/sindresorhus"
- }
- }
- }
-}
diff --git a/packages/sdk/package.json b/packages/sdk/package.json
index e1f1fb14d50f9..02ed558907c16 100644
--- a/packages/sdk/package.json
+++ b/packages/sdk/package.json
@@ -35,13 +35,12 @@
"access": "public"
},
"scripts": {
- "lint": "eslint --fix --ext .ts src",
- "prepublish": "rm -rf dist && npm run build",
- "build": "npm run build:node && npm run build:browser",
+ "prepublish": "rm -rf dist && pnpm run build",
+ "build": "pnpm run build:node && pnpm run build:browser",
"build:node": "tsc -p tsconfig.node.json",
"build:browser": "tsc -p tsconfig.browser.json",
"test": "jest",
- "watch": "nodemon --watch src --ext ts --exec 'npm run build'",
+ "watch": "nodemon --watch src --exec 'pnpm run build'",
"cli": "node dist/server/server/cli.js"
},
"files": [
@@ -58,7 +57,7 @@
"jest-fetch-mock": "^3.0.3",
"nodemon": "^3.1.7",
"ts-jest": "^29.2.5",
- "typescript": "^5.5.2"
+ "typescript": "^5.6"
},
"dependencies": {
"@rails/actioncable": "^8.0.0",
diff --git a/packages/sdk/src/shared/component.ts b/packages/sdk/src/shared/component.ts
index 5740e6551f5d3..f6fef25dab0ce 100644
--- a/packages/sdk/src/shared/component.ts
+++ b/packages/sdk/src/shared/component.ts
@@ -1,3 +1,4 @@
+// eslint-disable @typescript-eslint/no-explicit-any
type BaseConfigurableProp = {
name: string;
type: string;
@@ -23,7 +24,7 @@ export type ConfigurablePropAlert = BaseConfigurableProp & {
};
export type ConfigurablePropAny = BaseConfigurableProp & {
type: "any";
-} & Defaultable;
+} & Defaultable; // eslint-disable-line @typescript-eslint/no-explicit-any
export type ConfigurablePropApp = BaseConfigurableProp & {
type: "app";
app: string;
@@ -67,7 +68,7 @@ export type ConfigurableProps = Readonly;
export type PropValue = T extends "alert"
? never
: T extends "any"
- ? any
+ ? any // eslint-disable-line @typescript-eslint/no-explicit-any
: T extends "app"
? { authProvisionId: string; }
: T extends "boolean"
@@ -87,7 +88,7 @@ export type ConfiguredProps = {
};
// as returned by API (configurable_props_json from `afterSave`)
-export type V1Component = {
+export type V1Component = { // eslint-disable-line @typescript-eslint/no-explicit-any
name: string;
key: string;
version: string;
diff --git a/packages/sdk/src/shared/index.ts b/packages/sdk/src/shared/index.ts
index 3b7af2ed4a4a8..2e88ced532388 100644
--- a/packages/sdk/src/shared/index.ts
+++ b/packages/sdk/src/shared/index.ts
@@ -6,6 +6,8 @@ import type {
import type { V1Component } from "./component";
export * from "./component";
+type RequestInit = globalThis.RequestInit;
+
/**
* Options for creating a server-side client.
* This is used to configure the BackendClient instance.
@@ -181,7 +183,7 @@ export type Account = {
export type ComponentReloadPropsOpts = {
userId: string;
componentId: string;
- configuredProps: any;
+ configuredProps: any; // eslint-disable-line @typescript-eslint/no-explicit-any
dynamicPropsId?: string;
};
@@ -189,7 +191,7 @@ export type ComponentConfigureOpts = {
userId: string;
componentId: string;
propName: string;
- configuredProps: any;
+ configuredProps: any; // eslint-disable-line @typescript-eslint/no-explicit-any
dynamicPropsId?: string;
query?: string;
};
@@ -592,6 +594,7 @@ export abstract class BaseClient {
dynamic_props_id: opts.dynamicPropsId,
environment: this.environment,
};
+ // eslint-disable-next-line @typescript-eslint/no-explicit-any
return await this.makeConnectRequestAsync>("/components/props", {
// TODO trigger
method: "POST",
@@ -602,7 +605,7 @@ export abstract class BaseClient {
public async actionRun(opts: {
userId: string;
actionId: string;
- configuredProps: Record;
+ configuredProps: Record; // eslint-disable-line @typescript-eslint/no-explicit-any
dynamicPropsId?: string;
}) {
const body = {
@@ -674,7 +677,7 @@ export abstract class BaseClient {
? sanitizedInput
: `https://${sanitizedInput}`;
parsedUrl = new URL(urlString);
- } catch (error) {
+ } catch {
throw new Error(`
The provided URL is malformed: "${sanitizedInput}".
Please provide a valid URL.
diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml
index 796d962fb93d5..2b4f24fbadc23 100644
--- a/pnpm-lock.yaml
+++ b/pnpm-lock.yaml
@@ -1,17526 +1,14070 @@
-lockfileVersion: 5.4
+lockfileVersion: '9.0'
+
+settings:
+ autoInstallPeers: true
+ excludeLinksFromLockfile: false
importers:
.:
- specifiers:
- '@actions/core': ^1.10.0
- '@pipedream/platform': ^1.5.1
- '@pipedream/types': 0.1.4
- '@sentry/node': ^7.7.0
- '@tsconfig/node14': ^1.0.1
- '@types/jest': ^27.4.1
- '@types/node': ^20.9.2
- '@typescript-eslint/eslint-plugin': ^5.27.1
- '@typescript-eslint/parser': ^5.21.0
- crypto: ^1.0.1
- eslint: 8.15.0
- eslint-config-next: ^14.2.13
- eslint-plugin-jest: ^26.5.3
- eslint-plugin-jsonc: ^1.6.0
- eslint-plugin-pipedream: 0.2.4
- eslint-plugin-putout: ^15.1.1
- graphql: 14 - 16
- graphql-request: ^3.7.0
- husky: ^7.0.4
- jest: ^29.7.0
- lint-staged: ^12.3.4
- pnpm: 7.33.6
- putout: '>=20'
- renamer: ^4.0.0
- ts-jest: ^29.1.1
- tsc-esm-fix: ^2.18.0
- tsc-watch: ^5.0.3
- typescript: ^5.2.2
- uuid: ^8.3.2
- vue: ^2.6.14
- dependencies:
- '@actions/core': 1.10.1
- '@pipedream/platform': 1.5.1
- '@sentry/node': 7.73.0
- '@types/node': 20.9.2
- crypto: 1.0.1
- uuid: 8.3.2
- vue: 2.7.14
+ dependencies:
+ '@actions/core':
+ specifier: ^1.10.0
+ version: 1.11.1
+ '@pipedream/platform':
+ specifier: ^1.5.1
+ version: 1.6.6
+ '@sentry/node':
+ specifier: ^7.7.0
+ version: 7.120.0
+ '@types/node':
+ specifier: ^20.17.6
+ version: 20.17.6
+ crypto:
+ specifier: ^1.0.1
+ version: 1.0.1
+ uuid:
+ specifier: ^8.3.2
+ version: 8.3.2
+ vue:
+ specifier: ^2.6.14
+ version: 2.7.16
devDependencies:
- '@pipedream/types': 0.1.4
- '@tsconfig/node14': 1.0.3
- '@types/jest': 27.5.2
- '@typescript-eslint/eslint-plugin': 5.62.0_lvg7vfeyjgbaq3eyeq5ilmueem
- '@typescript-eslint/parser': 5.62.0_qkejthbfznbxawpodlwdvzhwbm
- eslint: 8.15.0
- eslint-config-next: 14.2.15_qkejthbfznbxawpodlwdvzhwbm
- eslint-plugin-jest: 26.9.0_pjroak5divhl36k3bzc5twoh2m
- eslint-plugin-jsonc: 1.7.0_eslint@8.15.0
- eslint-plugin-pipedream: 0.2.4
- eslint-plugin-putout: 15.8.1_cb7iv3cal4meppzziyv6oewpte
- graphql: 16.8.1
- graphql-request: 3.7.0_graphql@16.8.1
- husky: 7.0.4
- jest: 29.7.0_@types+node@20.9.2
- lint-staged: 12.5.0
- pnpm: 7.33.6
- putout: 32.2.0_typescript@5.2.2
- renamer: 4.0.0
- ts-jest: 29.1.1_s6pp5jfszqvqftxetajx5tybba
- tsc-esm-fix: 2.20.17
- tsc-watch: 5.0.3_typescript@5.2.2
- typescript: 5.2.2
+ '@eslint/eslintrc':
+ specifier: ^3.2.0
+ version: 3.2.0
+ '@eslint/js':
+ specifier: ^9.15.0
+ version: 9.15.0
+ '@pipedream/types':
+ specifier: 0.1.4
+ version: 0.1.4
+ '@tsconfig/node14':
+ specifier: ^1.0.1
+ version: 1.0.3
+ '@types/jest':
+ specifier: ^27.4.1
+ version: 27.5.2
+ '@typescript-eslint/eslint-plugin':
+ specifier: ^8
+ version: 8.15.0(@typescript-eslint/parser@8.15.0(eslint@8.57.1)(typescript@5.6.3))(eslint@8.57.1)(typescript@5.6.3)
+ '@typescript-eslint/parser':
+ specifier: ^8
+ version: 8.15.0(eslint@8.57.1)(typescript@5.6.3)
+ eslint:
+ specifier: ^8
+ version: 8.57.1
+ eslint-config-next:
+ specifier: ^15
+ version: 15.0.3(eslint@8.57.1)(typescript@5.6.3)
+ eslint-plugin-jest:
+ specifier: ^28
+ version: 28.9.0(@typescript-eslint/eslint-plugin@8.15.0(@typescript-eslint/parser@8.15.0(eslint@8.57.1)(typescript@5.6.3))(eslint@8.57.1)(typescript@5.6.3))(eslint@8.57.1)(jest@29.7.0(@types/node@20.17.6)(babel-plugin-macros@3.1.0))(typescript@5.6.3)
+ eslint-plugin-jsonc:
+ specifier: ^1.6.0
+ version: 1.7.0(eslint@8.57.1)
+ eslint-plugin-pipedream:
+ specifier: 0.2.4
+ version: 0.2.4
+ eslint-plugin-putout:
+ specifier: ^23
+ version: 23.2.0(eslint@8.57.1)(putout@36.13.1(eslint@8.57.1)(typescript@5.6.3))
+ globals:
+ specifier: ^15.12.0
+ version: 15.12.0
+ graphql:
+ specifier: 14 - 16
+ version: 16.9.0
+ graphql-request:
+ specifier: ^3.7.0
+ version: 3.7.0(graphql@16.9.0)
+ husky:
+ specifier: ^7.0.4
+ version: 7.0.4
+ jest:
+ specifier: ^29.7.0
+ version: 29.7.0(@types/node@20.17.6)(babel-plugin-macros@3.1.0)
+ lint-staged:
+ specifier: ^12.3.4
+ version: 12.5.0(enquirer@2.4.1)
+ pnpm:
+ specifier: ^9
+ version: 9.14.2
+ putout:
+ specifier: '>=36'
+ version: 36.13.1(eslint@8.57.1)(typescript@5.6.3)
+ renamer:
+ specifier: ^4.0.0
+ version: 4.0.0
+ ts-jest:
+ specifier: ^29.1.1
+ version: 29.2.5(@babel/core@8.0.0-alpha.13)(@jest/transform@29.7.0)(@jest/types@29.6.3)(babel-jest@29.7.0(@babel/core@8.0.0-alpha.13))(jest@29.7.0(@types/node@20.17.6)(babel-plugin-macros@3.1.0))(typescript@5.6.3)
+ tsc-esm-fix:
+ specifier: ^2.18.0
+ version: 2.20.27
+ tsc-watch:
+ specifier: ^5.0.3
+ version: 5.0.3(typescript@5.6.3)
+ typescript:
+ specifier: '>=4.7.4 <5.7.0'
+ version: 5.6.3
+ typescript-eslint:
+ specifier: ^8.15.0
+ version: 8.15.0(eslint@8.57.1)(typescript@5.6.3)
components/_0codekit:
- specifiers:
- '@pipedream/platform': ^1.6.0
dependencies:
- '@pipedream/platform': 1.6.0
+ '@pipedream/platform':
+ specifier: ^1.6.0
+ version: 1.6.6
components/_1crm:
- specifiers:
- '@pipedream/platform': ^3.0.0
dependencies:
- '@pipedream/platform': 3.0.0
+ '@pipedream/platform':
+ specifier: ^3.0.0
+ version: 3.0.3
components/_21risk:
- specifiers:
- '@pipedream/platform': ^3.0.0
dependencies:
- '@pipedream/platform': 3.0.0
+ '@pipedream/platform':
+ specifier: ^3.0.0
+ version: 3.0.3
components/_2chat:
- specifiers:
- '@pipedream/platform': ^3.0.0
dependencies:
- '@pipedream/platform': 3.0.0
+ '@pipedream/platform':
+ specifier: ^3.0.0
+ version: 3.0.3
- components/_2markdown:
- specifiers: {}
+ components/_2markdown: {}
components/_360nrs:
- specifiers:
- '@pipedream/platform': ^3.0.0
dependencies:
- '@pipedream/platform': 3.0.0
+ '@pipedream/platform':
+ specifier: ^3.0.0
+ version: 3.0.3
components/_46elks:
- specifiers:
- '@pipedream/platform': ^1.6.0
dependencies:
- '@pipedream/platform': 1.6.0
+ '@pipedream/platform':
+ specifier: ^1.6.0
+ version: 1.6.6
components/_4dem:
- specifiers:
- '@pipedream/platform': ^3.0.0
dependencies:
- '@pipedream/platform': 3.0.0
+ '@pipedream/platform':
+ specifier: ^3.0.0
+ version: 3.0.3
components/_8x8_connect:
- specifiers:
- '@pipedream/platform': ^3.0.0
dependencies:
- '@pipedream/platform': 3.0.0
+ '@pipedream/platform':
+ specifier: ^3.0.0
+ version: 3.0.3
- components/__1msg:
- specifiers: {}
+ components/__1msg: {}
components/_twocaptcha:
- specifiers:
- '@pipedream/platform': ^1.5.1
dependencies:
- '@pipedream/platform': 1.6.0
+ '@pipedream/platform':
+ specifier: ^1.5.1
+ version: 1.6.6
components/a123formbuilder:
- specifiers:
- '@pipedream/platform': ^1.2.1
dependencies:
- '@pipedream/platform': 1.5.1
+ '@pipedream/platform':
+ specifier: ^1.2.1
+ version: 1.6.6
components/ably:
- specifiers:
- '@pipedream/platform': ^1.2.0
dependencies:
- '@pipedream/platform': 1.5.1
+ '@pipedream/platform':
+ specifier: ^1.2.0
+ version: 1.6.6
components/abstract:
- specifiers:
- '@pipedream/platform': ^1.6.0
dependencies:
- '@pipedream/platform': 1.6.0
+ '@pipedream/platform':
+ specifier: ^1.6.0
+ version: 1.6.6
- components/abuselpdb:
- specifiers: {}
+ components/abuselpdb: {}
components/abyssale:
- specifiers:
- '@pipedream/platform': ^1.5.1
dependencies:
- '@pipedream/platform': 1.5.1
+ '@pipedream/platform':
+ specifier: ^1.5.1
+ version: 1.6.6
components/accelo:
- specifiers:
- '@pipedream/platform': ^1.1.0
dependencies:
- '@pipedream/platform': 1.5.1
+ '@pipedream/platform':
+ specifier: ^1.1.0
+ version: 1.6.6
components/accredible:
- specifiers:
- '@pipedream/platform': ^1.5.1
dependencies:
- '@pipedream/platform': 1.5.1
+ '@pipedream/platform':
+ specifier: ^1.5.1
+ version: 1.6.6
- components/acelle_mail:
- specifiers: {}
+ components/acelle_mail: {}
- components/action_builder:
- specifiers: {}
+ components/action_builder: {}
- components/action_network:
- specifiers: {}
+ components/action_network: {}
components/actitime:
- specifiers:
- '@pipedream/platform': 3.0.1
dependencies:
- '@pipedream/platform': 3.0.1
+ '@pipedream/platform':
+ specifier: 3.0.1
+ version: 3.0.1
components/activecalculator:
- specifiers:
- '@pipedream/platform': ^3.0.0
dependencies:
- '@pipedream/platform': 3.0.0
+ '@pipedream/platform':
+ specifier: ^3.0.0
+ version: 3.0.3
components/activecampaign:
- specifiers:
- '@pipedream/platform': ^3.0.3
- inflection: ^3.0.0
dependencies:
- '@pipedream/platform': 3.0.3
- inflection: 3.0.0
+ '@pipedream/platform':
+ specifier: ^3.0.3
+ version: 3.0.3
+ inflection:
+ specifier: ^3.0.0
+ version: 3.0.0
components/acuity_scheduling:
- specifiers:
- '@pipedream/platform': ^1.5.1
dependencies:
- '@pipedream/platform': 1.6.2
+ '@pipedream/platform':
+ specifier: ^1.5.1
+ version: 1.6.6
- components/acumbamail:
- specifiers: {}
+ components/acumbamail: {}
components/acymailing:
- specifiers:
- '@pipedream/platform': ^2.0.0
dependencies:
- '@pipedream/platform': 2.0.0
+ '@pipedream/platform':
+ specifier: ^2.0.0
+ version: 2.0.0
- components/adafruit_io:
- specifiers: {}
+ components/adafruit_io: {}
components/adalo:
- specifiers:
- '@pipedream/platform': ^3.0.1
dependencies:
- '@pipedream/platform': 3.0.1
+ '@pipedream/platform':
+ specifier: ^3.0.1
+ version: 3.0.3
components/addevent:
- specifiers:
- '@pipedream/platform': ^1.5.1
dependencies:
- '@pipedream/platform': 1.5.1
+ '@pipedream/platform':
+ specifier: ^1.5.1
+ version: 1.6.6
components/addressfinder:
- specifiers:
- '@pipedream/platform': ^3.0.0
dependencies:
- '@pipedream/platform': 3.0.0
+ '@pipedream/platform':
+ specifier: ^3.0.0
+ version: 3.0.3
components/addresszen:
- specifiers:
- '@pipedream/platform': ^3.0.0
dependencies:
- '@pipedream/platform': 3.0.0
+ '@pipedream/platform':
+ specifier: ^3.0.0
+ version: 3.0.3
components/adhook:
- specifiers:
- '@pipedream/platform': ^3.0.1
dependencies:
- '@pipedream/platform': 3.0.1
+ '@pipedream/platform':
+ specifier: ^3.0.1
+ version: 3.0.3
components/adobe_pdf_services:
- specifiers:
- '@adobe/pdfservices-node-sdk': ^3.4.2
dependencies:
- '@adobe/pdfservices-node-sdk': 3.4.2
+ '@adobe/pdfservices-node-sdk':
+ specifier: ^3.4.2
+ version: 3.4.2
components/adobe_photoshop:
- specifiers:
- '@pipedream/platform': ^3.0.0
dependencies:
- '@pipedream/platform': 3.0.0
+ '@pipedream/platform':
+ specifier: ^3.0.0
+ version: 3.0.3
- components/adobe_sign:
- specifiers: {}
+ components/adobe_sign: {}
- components/adp:
- specifiers: {}
+ components/adp: {}
components/adrapid:
- specifiers:
- '@pipedream/platform': ^3.0.1
dependencies:
- '@pipedream/platform': 3.0.1
+ '@pipedream/platform':
+ specifier: ^3.0.1
+ version: 3.0.3
components/adroll:
- specifiers:
- '@pipedream/platform': ^1.2.1
dependencies:
- '@pipedream/platform': 1.5.1
+ '@pipedream/platform':
+ specifier: ^1.2.1
+ version: 1.6.6
components/adyen:
- specifiers:
- '@adyen/api-library': ^20.0.0
dependencies:
- '@adyen/api-library': 20.0.0
+ '@adyen/api-library':
+ specifier: ^20.0.0
+ version: 20.0.0
components/aero_workflow:
- specifiers:
- '@pipedream/platform': ^1.4.1
dependencies:
- '@pipedream/platform': 1.5.1
+ '@pipedream/platform':
+ specifier: ^1.4.1
+ version: 1.6.6
- components/aevent:
- specifiers: {}
+ components/aevent: {}
- components/affinda:
- specifiers: {}
+ components/affinda: {}
components/aftership:
- specifiers:
- '@pipedream/platform': ^1.5.1
dependencies:
- '@pipedream/platform': 1.5.1
+ '@pipedream/platform':
+ specifier: ^1.5.1
+ version: 1.6.6
components/agendor:
- specifiers:
- '@pipedream/platform': ^1.5.1
dependencies:
- '@pipedream/platform': 1.5.1
+ '@pipedream/platform':
+ specifier: ^1.5.1
+ version: 1.6.6
- components/agentos:
- specifiers: {}
+ components/agentos: {}
components/agile_crm:
- specifiers:
- '@pipedream/platform': ^1.5.1
- lodash.pickby: ^4.6.0
dependencies:
- '@pipedream/platform': 1.5.1
- lodash.pickby: 4.6.0
+ '@pipedream/platform':
+ specifier: ^1.5.1
+ version: 1.6.6
+ lodash.pickby:
+ specifier: ^4.6.0
+ version: 4.6.0
components/agiled:
- specifiers:
- '@pipedream/platform': ^1.6.0
dependencies:
- '@pipedream/platform': 1.6.0
+ '@pipedream/platform':
+ specifier: ^1.6.0
+ version: 1.6.6
components/agiliron:
- specifiers:
- '@pipedream/platform': ^3.0.1
dependencies:
- '@pipedream/platform': 3.0.1
+ '@pipedream/platform':
+ specifier: ^3.0.1
+ version: 3.0.3
components/agility_cms:
- specifiers:
- '@pipedream/platform': ^3.0.2
dependencies:
- '@pipedream/platform': 3.0.2
+ '@pipedream/platform':
+ specifier: ^3.0.2
+ version: 3.0.3
components/agrello:
- specifiers:
- '@pipedream/platform': ^3.0.1
dependencies:
- '@pipedream/platform': 3.0.1
+ '@pipedream/platform':
+ specifier: ^3.0.1
+ version: 3.0.3
- components/ahrefs:
- specifiers: {}
+ components/ahrefs: {}
- components/ai_ml_api:
- specifiers: {}
+ components/ai_ml_api: {}
components/ai_textraction:
- specifiers:
- '@pipedream/platform': ^3.0.3
dependencies:
- '@pipedream/platform': 3.0.3
+ '@pipedream/platform':
+ specifier: ^3.0.3
+ version: 3.0.3
components/aidbase:
- specifiers:
- '@pipedream/platform': ^3.0.0
dependencies:
- '@pipedream/platform': 3.0.0
+ '@pipedream/platform':
+ specifier: ^3.0.0
+ version: 3.0.3
- components/aimtell:
- specifiers: {}
+ components/aimtell: {}
- components/air:
- specifiers: {}
+ components/air: {}
components/airbrake:
- specifiers:
- '@pipedream/platform': ^1.1.0
dependencies:
- '@pipedream/platform': 1.5.1
+ '@pipedream/platform':
+ specifier: ^1.1.0
+ version: 1.6.6
- components/aircall:
- specifiers: {}
+ components/aircall: {}
components/airfocus:
- specifiers:
- '@pipedream/platform': ^3.0.0
dependencies:
- '@pipedream/platform': 3.0.0
+ '@pipedream/platform':
+ specifier: ^3.0.0
+ version: 3.0.3
components/airmeet:
- specifiers:
- '@pipedream/platform': ^1.5.1
- dayjs: ^1.11.10
dependencies:
- '@pipedream/platform': 1.5.1
- dayjs: 1.11.10
+ '@pipedream/platform':
+ specifier: ^1.5.1
+ version: 1.6.6
+ dayjs:
+ specifier: ^1.11.10
+ version: 1.11.13
- components/airnow:
- specifiers: {}
+ components/airnow: {}
components/airops:
- specifiers:
- '@pipedream/platform': ^1.5.1
dependencies:
- '@pipedream/platform': 1.5.1
+ '@pipedream/platform':
+ specifier: ^1.5.1
+ version: 1.6.6
components/airparser:
- specifiers:
- '@pipedream/platform': ^1.6.0
- form-data: ^4.0.0
dependencies:
- '@pipedream/platform': 1.6.0
- form-data: 4.0.0
+ '@pipedream/platform':
+ specifier: ^1.6.0
+ version: 1.6.6
+ form-data:
+ specifier: ^4.0.0
+ version: 4.0.1
components/airplane:
- specifiers:
- '@pipedream/platform': ^1.5.1
dependencies:
- '@pipedream/platform': 1.5.1
+ '@pipedream/platform':
+ specifier: ^1.5.1
+ version: 1.6.6
- components/airship:
- specifiers: {}
+ components/airship: {}
components/airslate:
- specifiers:
- '@pipedream/platform': ^1.6.0
dependencies:
- '@pipedream/platform': 1.6.0
+ '@pipedream/platform':
+ specifier: ^1.6.0
+ version: 1.6.6
components/airtable_oauth:
- specifiers:
- '@pipedream/platform': ^1.6.0
- airtable: ^0.11.1
- bottleneck: ^2.19.5
- lodash: ^4.17.21
- lodash.chunk: ^4.2.0
- lodash.isempty: ^4.4.0
- moment: ^2.30.1
- dependencies:
- '@pipedream/platform': 1.6.0
- airtable: 0.11.6
- bottleneck: 2.19.5
- lodash: 4.17.21
- lodash.chunk: 4.2.0
- lodash.isempty: 4.4.0
- moment: 2.30.1
+ dependencies:
+ '@pipedream/platform':
+ specifier: ^1.6.0
+ version: 1.6.6
+ airtable:
+ specifier: ^0.11.1
+ version: 0.11.6
+ bottleneck:
+ specifier: ^2.19.5
+ version: 2.19.5
+ lodash:
+ specifier: ^4.17.21
+ version: 4.17.21
+ lodash.chunk:
+ specifier: ^4.2.0
+ version: 4.2.0
+ lodash.isempty:
+ specifier: ^4.4.0
+ version: 4.4.0
+ moment:
+ specifier: ^2.30.1
+ version: 2.30.1
components/aitable_ai:
- specifiers:
- '@pipedream/platform': ^3.0.3
dependencies:
- '@pipedream/platform': 3.0.3
+ '@pipedream/platform':
+ specifier: ^3.0.3
+ version: 3.0.3
components/aivoov:
- specifiers:
- axios: ^1.5.1
- form-data: ^4.0.0
dependencies:
- axios: 1.5.1
- form-data: 4.0.0
+ axios:
+ specifier: ^1.5.1
+ version: 1.7.7(debug@3.2.7)
+ form-data:
+ specifier: ^4.0.0
+ version: 4.0.1
components/akeneo:
- specifiers:
- '@pipedream/platform': ^1.3.0
- form-data: ^4.0.0
dependencies:
- '@pipedream/platform': 1.5.1
- form-data: 4.0.0
+ '@pipedream/platform':
+ specifier: ^1.3.0
+ version: 1.6.6
+ form-data:
+ specifier: ^4.0.0
+ version: 4.0.1
- components/akismet:
- specifiers: {}
+ components/akismet: {}
components/akkio:
- specifiers:
- '@pipedream/platform': ^3.0.1
dependencies:
- '@pipedream/platform': 3.0.1
+ '@pipedream/platform':
+ specifier: ^3.0.1
+ version: 3.0.3
components/albus:
- specifiers:
- '@pipedream/platform': ^2.0.0
dependencies:
- '@pipedream/platform': 2.0.0
+ '@pipedream/platform':
+ specifier: ^2.0.0
+ version: 2.0.0
components/alchemy:
- specifiers:
- '@pipedream/platform': ^3.0.3
dependencies:
- '@pipedream/platform': 3.0.3
+ '@pipedream/platform':
+ specifier: ^3.0.3
+ version: 3.0.3
components/alerty:
- specifiers:
- '@pipedream/platform': ^3.0.1
dependencies:
- '@pipedream/platform': 3.0.1
+ '@pipedream/platform':
+ specifier: ^3.0.1
+ version: 3.0.3
- components/algodocs:
- specifiers: {}
+ components/algodocs: {}
components/algolia:
- specifiers:
- algoliasearch: ^4.13.1
dependencies:
- algoliasearch: 4.20.0
+ algoliasearch:
+ specifier: ^4.13.1
+ version: 4.24.0
- components/algomo:
- specifiers: {}
+ components/algomo: {}
- components/algorand_developer_portal:
- specifiers: {}
+ components/algorand_developer_portal: {}
components/all_images_ai:
- specifiers:
- '@pipedream/platform': ^1.6.0
dependencies:
- '@pipedream/platform': 1.6.0
+ '@pipedream/platform':
+ specifier: ^1.6.0
+ version: 1.6.6
components/allocadence:
- specifiers:
- '@pipedream/platform': ^3.0.3
dependencies:
- '@pipedream/platform': 3.0.3
+ '@pipedream/platform':
+ specifier: ^3.0.3
+ version: 3.0.3
components/alpaca:
- specifiers:
- '@pipedream/platform': ^1.6.0
dependencies:
- '@pipedream/platform': 1.6.0
+ '@pipedream/platform':
+ specifier: ^1.6.0
+ version: 1.6.6
- components/alphamoon:
- specifiers: {}
+ components/alphamoon: {}
components/altiria:
- specifiers:
- '@pipedream/platform': 3.0.1
dependencies:
- '@pipedream/platform': 3.0.1
+ '@pipedream/platform':
+ specifier: 3.0.1
+ version: 3.0.1
components/altoviz:
- specifiers:
- '@pipedream/platform': ^1.6.0
dependencies:
- '@pipedream/platform': 1.6.0
+ '@pipedream/platform':
+ specifier: ^1.6.0
+ version: 1.6.6
components/alttext_ai:
- specifiers:
- '@pipedream/platform': ^1.5.1
dependencies:
- '@pipedream/platform': 1.5.1
+ '@pipedream/platform':
+ specifier: ^1.5.1
+ version: 1.6.6
components/amara:
- specifiers:
- '@pipedream/platform': ^1.2.0
dependencies:
- '@pipedream/platform': 1.5.1
+ '@pipedream/platform':
+ specifier: ^1.2.0
+ version: 1.6.6
- components/amazing_marvin:
- specifiers: {}
+ components/amazing_marvin: {}
components/amazon_alexa:
- specifiers:
- '@pipedream/platform': ^1.6.0
dependencies:
- '@pipedream/platform': 1.6.0
+ '@pipedream/platform':
+ specifier: ^1.6.0
+ version: 1.6.6
- components/amazon_polly:
- specifiers: {}
+ components/amazon_polly: {}
components/amazon_ses:
- specifiers:
- '@aws-sdk/client-ec2': ^3.89.0
- '@aws-sdk/client-ses': ^3.95.0
- '@aws-sdk/client-sesv2': ^3.87.0
- '@pipedream/platform': ^0.10.0
dependencies:
- '@aws-sdk/client-ec2': 3.423.0
- '@aws-sdk/client-ses': 3.423.0
- '@aws-sdk/client-sesv2': 3.423.0
- '@pipedream/platform': 0.10.0
+ '@aws-sdk/client-ec2':
+ specifier: ^3.89.0
+ version: 3.698.0
+ '@aws-sdk/client-ses':
+ specifier: ^3.95.0
+ version: 3.696.0
+ '@aws-sdk/client-sesv2':
+ specifier: ^3.87.0
+ version: 3.696.0
+ '@pipedream/platform':
+ specifier: ^0.10.0
+ version: 0.10.0
- components/ambee:
- specifiers: {}
+ components/ambee: {}
- components/ambient_weather:
- specifiers: {}
+ components/ambient_weather: {}
components/ambivo:
- specifiers:
- '@pipedream/platform': ^1.6.2
dependencies:
- '@pipedream/platform': 1.6.2
+ '@pipedream/platform':
+ specifier: ^1.6.2
+ version: 1.6.6
- components/amcards:
- specifiers: {}
+ components/amcards: {}
- components/amentum_aerospace:
- specifiers: {}
+ components/amentum_aerospace: {}
components/americommerce:
- specifiers:
- '@pipedream/platform': 3.0.3
dependencies:
- '@pipedream/platform': 3.0.3
+ '@pipedream/platform':
+ specifier: 3.0.3
+ version: 3.0.3
components/amilia:
- specifiers:
- '@pipedream/platform': ^1.1.1
- async-retry: ^1.3.3
- lodash: ^4.17.21
dependencies:
- '@pipedream/platform': 1.5.1
- async-retry: 1.3.3
- lodash: 4.17.21
+ '@pipedream/platform':
+ specifier: ^1.1.1
+ version: 1.6.6
+ async-retry:
+ specifier: ^1.3.3
+ version: 1.3.3
+ lodash:
+ specifier: ^4.17.21
+ version: 4.17.21
components/amplenote:
- specifiers:
- '@pipedream/platform': ^1.1.1
dependencies:
- '@pipedream/platform': 1.5.1
+ '@pipedream/platform':
+ specifier: ^1.1.1
+ version: 1.6.6
- components/amplifier:
- specifiers: {}
+ components/amplifier: {}
components/amplitude:
- specifiers:
- '@pipedream/platform': ^1.5.1
dependencies:
- '@pipedream/platform': 1.5.1
+ '@pipedream/platform':
+ specifier: ^1.5.1
+ version: 1.6.6
components/amqp:
- specifiers:
- '@pipedream/platform': ^1.2.0
- rhea-promise: ^2.1.0
- uuid: ^8.3.2
dependencies:
- '@pipedream/platform': 1.5.1
- rhea-promise: 2.1.0
- uuid: 8.3.2
+ '@pipedream/platform':
+ specifier: ^1.2.0
+ version: 1.6.6
+ rhea-promise:
+ specifier: ^2.1.0
+ version: 2.1.0
+ uuid:
+ specifier: ^8.3.2
+ version: 8.3.2
- components/annature:
- specifiers: {}
+ components/annature: {}
- components/announcekit:
- specifiers: {}
+ components/announcekit: {}
components/anonyflow:
- specifiers:
- '@pipedream/platform': ^1.6.0
dependencies:
- '@pipedream/platform': 1.6.0
+ '@pipedream/platform':
+ specifier: ^1.6.0
+ version: 1.6.6
components/anthropic:
- specifiers:
- '@pipedream/platform': ^1.6.0
dependencies:
- '@pipedream/platform': 1.6.2
+ '@pipedream/platform':
+ specifier: ^1.6.0
+ version: 1.6.6
- components/anyflow:
- specifiers: {}
+ components/anyflow: {}
components/anymail_finder:
- specifiers:
- '@pipedream/platform': ^1.5.1
dependencies:
- '@pipedream/platform': 1.6.2
+ '@pipedream/platform':
+ specifier: ^1.5.1
+ version: 1.6.6
- components/apex_27:
- specifiers: {}
+ components/apex_27: {}
- components/api2pdf:
- specifiers: {}
+ components/api2pdf: {}
components/api4ai:
- specifiers:
- '@pipedream/platform': ^1.6.2
- form-data: ^4.0.0
dependencies:
- '@pipedream/platform': 1.6.2
- form-data: 4.0.0
+ '@pipedream/platform':
+ specifier: ^1.6.2
+ version: 1.6.6
+ form-data:
+ specifier: ^4.0.0
+ version: 4.0.1
- components/api_bible:
- specifiers: {}
+ components/api_bible: {}
- components/api_ninjas:
- specifiers: {}
+ components/api_ninjas: {}
- components/api_sports:
- specifiers: {}
+ components/api_sports: {}
- components/api_void:
- specifiers: {}
+ components/api_void: {}
components/apify:
- specifiers:
- '@pipedream/platform': ^1.6.5
dependencies:
- '@pipedream/platform': 1.6.5
+ '@pipedream/platform':
+ specifier: ^1.6.5
+ version: 1.6.6
- components/apilio:
- specifiers: {}
+ components/apilio: {}
- components/apipie_ai:
- specifiers: {}
+ components/apipie_ai: {}
components/apitemplate_io:
- specifiers:
- '@pipedream/platform': ^1.1.1
dependencies:
- '@pipedream/platform': 1.5.1
+ '@pipedream/platform':
+ specifier: ^1.1.1
+ version: 1.6.6
components/apollo_io:
- specifiers:
- '@pipedream/platform': ^3.0.3
- md5: ^2.3.0
dependencies:
- '@pipedream/platform': 3.0.3
- md5: 2.3.0
+ '@pipedream/platform':
+ specifier: ^3.0.3
+ version: 3.0.3
+ md5:
+ specifier: ^2.3.0
+ version: 2.3.0
- components/appcircle:
- specifiers: {}
+ components/appcircle: {}
- components/appcues:
- specifiers: {}
+ components/appcues: {}
components/appdrag:
- specifiers:
- '@pipedream/platform': ^1.5.1
- axios: ^1.6.2
- sqlstring: ^2.3.3
dependencies:
- '@pipedream/platform': 1.5.1
- axios: 1.6.2
- sqlstring: 2.3.3
+ '@pipedream/platform':
+ specifier: ^1.5.1
+ version: 1.6.6
+ axios:
+ specifier: ^1.6.2
+ version: 1.7.7(debug@3.2.7)
+ sqlstring:
+ specifier: ^2.3.3
+ version: 2.3.3
components/appointedd:
- specifiers:
- '@pipedream/platform': ^1.6.0
dependencies:
- '@pipedream/platform': 1.6.0
+ '@pipedream/platform':
+ specifier: ^1.6.0
+ version: 1.6.6
components/appointo:
- specifiers:
- '@pipedream/platform': ^3.0.0
dependencies:
- '@pipedream/platform': 3.0.0
+ '@pipedream/platform':
+ specifier: ^3.0.0
+ version: 3.0.3
components/appwrite:
- specifiers:
- '@pipedream/platform': ^1.6.5
dependencies:
- '@pipedream/platform': 1.6.5
+ '@pipedream/platform':
+ specifier: ^1.6.5
+ version: 1.6.6
- components/arcgis_online:
- specifiers: {}
+ components/arcgis_online: {}
components/are_na:
- specifiers:
- '@pipedream/platform': ^3.0.0
dependencies:
- '@pipedream/platform': 3.0.0
+ '@pipedream/platform':
+ specifier: ^3.0.0
+ version: 3.0.3
- components/arxiv:
- specifiers: {}
+ components/arxiv: {}
- components/aryn:
- specifiers: {}
+ components/aryn: {}
components/asana:
- specifiers:
- '@pipedream/platform': ^1.6.4
- lodash: ^4.17.21
dependencies:
- '@pipedream/platform': 1.6.4
- lodash: 4.17.21
+ '@pipedream/platform':
+ specifier: ^1.6.4
+ version: 1.6.6
+ lodash:
+ specifier: ^4.17.21
+ version: 4.17.21
- components/ascora:
- specifiers: {}
+ components/ascora: {}
- components/asin_data_api:
- specifiers: {}
+ components/asin_data_api: {}
components/asknicely:
- specifiers:
- '@pipedream/platform': ^1.5.1
dependencies:
- '@pipedream/platform': 1.5.1
+ '@pipedream/platform':
+ specifier: ^1.5.1
+ version: 1.6.6
components/askyourpdf:
- specifiers:
- '@pipedream/platform': ^1.6.2
- form-data: ^4.0.0
- fs: ^0.0.1-security
dependencies:
- '@pipedream/platform': 1.6.2
- form-data: 4.0.0
- fs: 0.0.1-security
+ '@pipedream/platform':
+ specifier: ^1.6.2
+ version: 1.6.6
+ form-data:
+ specifier: ^4.0.0
+ version: 4.0.1
+ fs:
+ specifier: ^0.0.1-security
+ version: 0.0.1-security
components/assemblyai:
- specifiers:
- '@pipedream/platform': ^1.5.1
dependencies:
- '@pipedream/platform': 1.5.1
+ '@pipedream/platform':
+ specifier: ^1.5.1
+ version: 1.6.6
components/astica_ai:
- specifiers:
- '@pipedream/platform': ^1.5.1
dependencies:
- '@pipedream/platform': 1.5.1
+ '@pipedream/platform':
+ specifier: ^1.5.1
+ version: 1.6.6
- components/astrology_api:
- specifiers: {}
+ components/astrology_api: {}
components/async_interview:
- specifiers:
- '@pipedream/platform': ^1.5.1
dependencies:
- '@pipedream/platform': 1.6.0
+ '@pipedream/platform':
+ specifier: ^1.5.1
+ version: 1.6.6
components/attio:
- specifiers:
- '@pipedream/platform': ^3.0.3
dependencies:
- '@pipedream/platform': 3.0.3
+ '@pipedream/platform':
+ specifier: ^3.0.3
+ version: 3.0.3
- components/attractwell:
- specifiers: {}
+ components/attractwell: {}
components/autoblogger:
- specifiers:
- '@pipedream/platform': ^3.0.3
dependencies:
- '@pipedream/platform': 3.0.3
+ '@pipedream/platform':
+ specifier: ^3.0.3
+ version: 3.0.3
- components/autobound:
- specifiers: {}
+ components/autobound: {}
- components/autoklose:
- specifiers: {}
+ components/autoklose: {}
components/autom:
- specifiers:
- '@pipedream/platform': ^1.6.0
dependencies:
- '@pipedream/platform': 1.6.0
+ '@pipedream/platform':
+ specifier: ^1.6.0
+ version: 1.6.6
components/automatic_data_extraction:
- specifiers:
- '@pipedream/platform': ^1.4.1
dependencies:
- '@pipedream/platform': 1.5.1
+ '@pipedream/platform':
+ specifier: ^1.4.1
+ version: 1.6.6
- components/avochato:
- specifiers: {}
+ components/avochato: {}
components/aweber:
- specifiers:
- '@pipedream/platform': ^1.2.0
- '@pipedreamhq/platform': ^0.8.1
dependencies:
- '@pipedream/platform': 1.5.1
- '@pipedreamhq/platform': 0.8.1
+ '@pipedream/platform':
+ specifier: ^1.2.0
+ version: 1.6.6
+ '@pipedreamhq/platform':
+ specifier: ^0.8.1
+ version: 0.8.1
components/awork:
- specifiers:
- '@pipedream/platform': ^1.1.0
dependencies:
- '@pipedream/platform': 1.5.1
+ '@pipedream/platform':
+ specifier: ^1.1.0
+ version: 1.6.6
components/aws:
- specifiers:
- '@aws-sdk/client-cloudwatch-logs': ^3.58.0
- '@aws-sdk/client-dynamodb': ^3.58.0
- '@aws-sdk/client-dynamodb-streams': ^3.235.0
- '@aws-sdk/client-ec2': ^3.60.0
- '@aws-sdk/client-eventbridge': ^3.66.0
- '@aws-sdk/client-iam': ^3.58.0
- '@aws-sdk/client-lambda': ^3.65.0
- '@aws-sdk/client-rds': ^3.556.0
- '@aws-sdk/client-s3': ^3.66.0
- '@aws-sdk/client-ses': ^3.58.0
- '@aws-sdk/client-sfn': ^3.58.0
- '@aws-sdk/client-sns': ^3.58.0
- '@aws-sdk/client-sqs': ^3.58.0
- '@aws-sdk/client-ssm': ^3.58.0
- '@aws-sdk/client-sts': ^3.58.0
- '@aws-sdk/s3-request-presigner': ^3.609.0
- '@pipedream/helper_functions': ^0.3.6
- '@pipedream/platform': ^1.6.3
- adm-zip: ^0.5.10
- dedent: ^1.5.1
- mailparser: ^3.6.6
- mailparser-mit: ^1.0.0
- nanoid: ^5.0.4
- uuid: ^9.0.1
- dependencies:
- '@aws-sdk/client-cloudwatch-logs': 3.423.0
- '@aws-sdk/client-dynamodb': 3.423.0
- '@aws-sdk/client-dynamodb-streams': 3.423.0
- '@aws-sdk/client-ec2': 3.423.0
- '@aws-sdk/client-eventbridge': 3.423.0
- '@aws-sdk/client-iam': 3.423.0
- '@aws-sdk/client-lambda': 3.423.0
- '@aws-sdk/client-rds': 3.556.0
- '@aws-sdk/client-s3': 3.423.0
- '@aws-sdk/client-ses': 3.423.0
- '@aws-sdk/client-sfn': 3.423.0
- '@aws-sdk/client-sns': 3.423.0
- '@aws-sdk/client-sqs': 3.423.0
- '@aws-sdk/client-ssm': 3.423.0
- '@aws-sdk/client-sts': 3.423.0
- '@aws-sdk/s3-request-presigner': 3.609.0
- '@pipedream/helper_functions': 0.3.12
- '@pipedream/platform': 1.6.4
- adm-zip: 0.5.10
- dedent: 1.5.1
- mailparser: 3.6.6
- mailparser-mit: 1.0.0
- nanoid: 5.0.4
- uuid: 9.0.1
-
- components/axesso_data_service:
- specifiers: {}
-
- components/axis_lms:
- specifiers: {}
+ dependencies:
+ '@aws-sdk/client-cloudwatch-logs':
+ specifier: ^3.58.0
+ version: 3.698.0
+ '@aws-sdk/client-dynamodb':
+ specifier: ^3.58.0
+ version: 3.696.0
+ '@aws-sdk/client-dynamodb-streams':
+ specifier: ^3.235.0
+ version: 3.696.0
+ '@aws-sdk/client-ec2':
+ specifier: ^3.60.0
+ version: 3.698.0
+ '@aws-sdk/client-eventbridge':
+ specifier: ^3.66.0
+ version: 3.696.0
+ '@aws-sdk/client-iam':
+ specifier: ^3.58.0
+ version: 3.696.0
+ '@aws-sdk/client-lambda':
+ specifier: ^3.65.0
+ version: 3.698.0
+ '@aws-sdk/client-rds':
+ specifier: ^3.556.0
+ version: 3.697.0
+ '@aws-sdk/client-s3':
+ specifier: ^3.66.0
+ version: 3.698.0
+ '@aws-sdk/client-ses':
+ specifier: ^3.58.0
+ version: 3.696.0
+ '@aws-sdk/client-sfn':
+ specifier: ^3.58.0
+ version: 3.696.0
+ '@aws-sdk/client-sns':
+ specifier: ^3.58.0
+ version: 3.696.0
+ '@aws-sdk/client-sqs':
+ specifier: ^3.58.0
+ version: 3.696.0
+ '@aws-sdk/client-ssm':
+ specifier: ^3.58.0
+ version: 3.698.0
+ '@aws-sdk/client-sts':
+ specifier: ^3.58.0
+ version: 3.696.0
+ '@aws-sdk/s3-request-presigner':
+ specifier: ^3.609.0
+ version: 3.698.0
+ '@pipedream/helper_functions':
+ specifier: ^0.3.6
+ version: 0.3.13
+ '@pipedream/platform':
+ specifier: ^1.6.3
+ version: 1.6.6
+ adm-zip:
+ specifier: ^0.5.10
+ version: 0.5.16
+ dedent:
+ specifier: ^1.5.1
+ version: 1.5.3(babel-plugin-macros@3.1.0)
+ mailparser:
+ specifier: ^3.6.6
+ version: 3.7.1
+ mailparser-mit:
+ specifier: ^1.0.0
+ version: 1.0.0
+ nanoid:
+ specifier: ^5.0.4
+ version: 5.0.8
+ uuid:
+ specifier: ^9.0.1
+ version: 9.0.1
+
+ components/axesso_data_service: {}
+
+ components/axis_lms: {}
components/axonaut:
- specifiers:
- '@pipedream/platform': ^1.5.1
dependencies:
- '@pipedream/platform': 1.5.1
+ '@pipedream/platform':
+ specifier: ^1.5.1
+ version: 1.6.6
- components/aylien_news_api:
- specifiers: {}
+ components/aylien_news_api: {}
- components/ayrshare:
- specifiers: {}
+ components/ayrshare: {}
components/azure_ai_vision:
- specifiers:
- '@pipedream/platform': ^1.5.1
dependencies:
- '@pipedream/platform': 1.6.0
+ '@pipedream/platform':
+ specifier: ^1.5.1
+ version: 1.6.6
components/azure_devops:
- specifiers:
- '@pipedream/platform': ^1.2.1
dependencies:
- '@pipedream/platform': 1.5.1
+ '@pipedream/platform':
+ specifier: ^1.2.1
+ version: 1.6.6
components/azure_openai_service:
- specifiers:
- '@pipedream/platform': ^1.5.1
dependencies:
- '@pipedream/platform': 1.5.1
+ '@pipedream/platform':
+ specifier: ^1.5.1
+ version: 1.6.6
- components/azure_speech_service:
- specifiers: {}
+ components/azure_speech_service: {}
components/azure_sql:
- specifiers:
- '@pipedream/platform': ^3.0.0
- mssql: ^10.0.1
- uuid: ^9.0.1
dependencies:
- '@pipedream/platform': 3.0.0
- mssql: 10.0.1
- uuid: 9.0.1
+ '@pipedream/platform':
+ specifier: ^3.0.0
+ version: 3.0.3
+ mssql:
+ specifier: ^10.0.1
+ version: 10.0.4
+ uuid:
+ specifier: ^9.0.1
+ version: 9.0.1
- components/backblaze:
- specifiers: {}
+ components/backblaze: {}
components/badger_maps:
- specifiers:
- '@pipedream/platform': ^1.2.1
dependencies:
- '@pipedream/platform': 1.5.1
+ '@pipedream/platform':
+ specifier: ^1.2.1
+ version: 1.6.6
components/bandwidth:
- specifiers:
- '@bandwidth/messaging': ^4.0.0
dependencies:
- '@bandwidth/messaging': 4.1.1
+ '@bandwidth/messaging':
+ specifier: ^4.0.0
+ version: 4.1.7
components/bannerbear:
- specifiers:
- '@pipedream/platform': ^0.10.0
dependencies:
- '@pipedream/platform': 0.10.0
+ '@pipedream/platform':
+ specifier: ^0.10.0
+ version: 0.10.0
- components/barcode_lookup:
- specifiers: {}
+ components/barcode_lookup: {}
components/baremetrics:
- specifiers:
- '@pipedream/platform': ^2.0.0
dependencies:
- '@pipedream/platform': 2.0.0
+ '@pipedream/platform':
+ specifier: ^2.0.0
+ version: 2.0.0
- components/bart:
- specifiers: {}
+ components/bart: {}
components/basecamp:
- specifiers:
- '@pipedream/platform': ^1.2.1
dependencies:
- '@pipedream/platform': 1.5.1
+ '@pipedream/platform':
+ specifier: ^1.2.1
+ version: 1.6.6
components/baselinker:
- specifiers:
- '@pipedream/platform': ^1.4.1
dependencies:
- '@pipedream/platform': 1.5.1
+ '@pipedream/platform':
+ specifier: ^1.4.1
+ version: 1.6.6
components/baserow:
- specifiers:
- '@pipedream/platform': ^1.2.1
- '@pipedream/types': ^0.1.4
dependencies:
- '@pipedream/platform': 1.5.1
- '@pipedream/types': 0.1.6
+ '@pipedream/platform':
+ specifier: ^1.2.1
+ version: 1.6.6
+ '@pipedream/types':
+ specifier: ^0.1.4
+ version: 0.1.6
components/basin:
- specifiers:
- '@pipedream/platform': ^1.2.1
dependencies:
- '@pipedream/platform': 1.5.1
+ '@pipedream/platform':
+ specifier: ^1.2.1
+ version: 1.6.6
- components/bc_gov_news:
- specifiers: {}
+ components/bc_gov_news: {}
components/beaconchain:
- specifiers:
- '@pipedream/platform': 3.0.3
dependencies:
- '@pipedream/platform': 3.0.3
+ '@pipedream/platform':
+ specifier: 3.0.3
+ version: 3.0.3
- components/beaconstac:
- specifiers: {}
+ components/beaconstac: {}
- components/beanstalkapp:
- specifiers: {}
+ components/beanstalkapp: {}
- components/beebole:
- specifiers: {}
+ components/beebole: {}
components/beebole_app:
- specifiers:
- '@pipedream/platform': ^1.6.0
dependencies:
- '@pipedream/platform': 1.6.2
+ '@pipedream/platform':
+ specifier: ^1.6.0
+ version: 1.6.6
components/beehiiv:
- specifiers:
- '@pipedream/platform': ^1.1.1
- '@pipedream/types': ^0.1.4
dependencies:
- '@pipedream/platform': 1.5.1
- '@pipedream/types': 0.1.6
+ '@pipedream/platform':
+ specifier: ^1.1.1
+ version: 1.6.6
+ '@pipedream/types':
+ specifier: ^0.1.4
+ version: 0.1.6
components/better_stack:
- specifiers:
- '@pipedream/platform': ^1.6.0
dependencies:
- '@pipedream/platform': 1.6.2
+ '@pipedream/platform':
+ specifier: ^1.6.0
+ version: 1.6.6
- components/better_uptime:
- specifiers: {}
+ components/better_uptime: {}
components/big_cartel:
- specifiers:
- '@pipedream/platform': ^1.1.0
dependencies:
- '@pipedream/platform': 1.5.1
+ '@pipedream/platform':
+ specifier: ^1.1.0
+ version: 1.6.6
components/big_data_cloud:
- specifiers:
- '@pipedream/platform': ^1.5.1
dependencies:
- '@pipedream/platform': 1.5.1
+ '@pipedream/platform':
+ specifier: ^1.5.1
+ version: 1.6.6
- components/bigbox:
- specifiers: {}
+ components/bigbox: {}
components/bigcommerce:
- specifiers:
- '@pipedream/platform': ^1.6.2
- form-data: ^4.0.0
dependencies:
- '@pipedream/platform': 1.6.2
- form-data: 4.0.0
+ '@pipedream/platform':
+ specifier: ^1.6.2
+ version: 1.6.6
+ form-data:
+ specifier: ^4.0.0
+ version: 4.0.1
components/bigmailer:
- specifiers:
- '@pipedream/platform': ^1.5.1
dependencies:
- '@pipedream/platform': 1.5.1
+ '@pipedream/platform':
+ specifier: ^1.5.1
+ version: 1.6.6
components/bigml:
- specifiers:
- '@pipedream/platform': ^1.4.1
dependencies:
- '@pipedream/platform': 1.5.1
+ '@pipedream/platform':
+ specifier: ^1.4.1
+ version: 1.6.6
- components/bigpicture_io:
- specifiers: {}
+ components/bigpicture_io: {}
components/bilflo:
- specifiers:
- '@pipedream/platform': ^1.6.5
dependencies:
- '@pipedream/platform': 1.6.5
+ '@pipedream/platform':
+ specifier: ^1.6.5
+ version: 1.6.6
components/bilionis:
- specifiers:
- '@pipedream/platform': ^1.5.1
dependencies:
- '@pipedream/platform': 1.5.1
+ '@pipedream/platform':
+ specifier: ^1.5.1
+ version: 1.6.6
- components/bill:
- specifiers: {}
+ components/bill: {}
- components/billplz:
- specifiers: {}
+ components/billplz: {}
- components/billsby:
- specifiers: {}
+ components/billsby: {}
components/bingx:
- specifiers:
- '@pipedream/platform': ^1.2.1
dependencies:
- '@pipedream/platform': 1.5.1
+ '@pipedream/platform':
+ specifier: ^1.2.1
+ version: 1.6.6
components/bippybox:
- specifiers:
- '@pipedream/platform': 3.0.3
dependencies:
- '@pipedream/platform': 3.0.3
+ '@pipedream/platform':
+ specifier: 3.0.3
+ version: 3.0.3
- components/bitbadges:
- specifiers: {}
+ components/bitbadges: {}
components/bitbucket:
- specifiers:
- '@pipedream/platform': ^0.10.0
- axios: ^0.27.2
- package-lock-only: ^0.0.4
dependencies:
- '@pipedream/platform': 0.10.0
- axios: 0.27.2
- package-lock-only: 0.0.4
+ '@pipedream/platform':
+ specifier: ^0.10.0
+ version: 0.10.0
+ axios:
+ specifier: ^0.27.2
+ version: 0.27.2
+ package-lock-only:
+ specifier: ^0.0.4
+ version: 0.0.4
- components/bitport:
- specifiers: {}
+ components/bitport: {}
- components/bitquery:
- specifiers: {}
+ components/bitquery: {}
- components/bitrix24:
- specifiers: {}
+ components/bitrix24: {}
components/bland_ai:
- specifiers:
- '@pipedream/platform': ^1.6.0
dependencies:
- '@pipedream/platform': 1.6.0
+ '@pipedream/platform':
+ specifier: ^1.6.0
+ version: 1.6.6
components/blazemeter:
- specifiers:
- '@pipedream/platform': ^1.6.2
dependencies:
- '@pipedream/platform': 1.6.2
+ '@pipedream/platform':
+ specifier: ^1.6.2
+ version: 1.6.6
components/blink:
- specifiers:
- '@pipedream/platform': ^1.5.1
dependencies:
- '@pipedream/platform': 1.5.1
+ '@pipedream/platform':
+ specifier: ^1.5.1
+ version: 1.6.6
- components/blockchain_exchange:
- specifiers: {}
+ components/blockchain_exchange: {}
- components/blocknative:
- specifiers: {}
+ components/blocknative: {}
components/blogger:
- specifiers:
- '@pipedream/platform': ^0.10.0
dependencies:
- '@pipedream/platform': 0.10.0
+ '@pipedream/platform':
+ specifier: ^0.10.0
+ version: 0.10.0
components/blogify:
- specifiers:
- '@pipedream/platform': ^3.0.0
dependencies:
- '@pipedream/platform': 3.0.0
+ '@pipedream/platform':
+ specifier: ^3.0.0
+ version: 3.0.3
components/bloom_growth:
- specifiers:
- '@pipedream/platform': ^1.5.1
dependencies:
- '@pipedream/platform': 1.5.1
+ '@pipedream/platform':
+ specifier: ^1.5.1
+ version: 1.6.6
- components/blue:
- specifiers: {}
+ components/blue: {}
- components/bluecart_api:
- specifiers: {}
+ components/bluecart_api: {}
components/bluesky_by_unshape:
- specifiers:
- '@pipedream/platform': ^1.6.0
dependencies:
- '@pipedream/platform': 1.6.0
+ '@pipedream/platform':
+ specifier: ^1.6.0
+ version: 1.6.6
components/boloforms:
- specifiers:
- '@pipedream/platform': ^1.6.5
- uuid: ^9.0.1
dependencies:
- '@pipedream/platform': 1.6.5
- uuid: 9.0.1
+ '@pipedream/platform':
+ specifier: ^1.6.5
+ version: 1.6.6
+ uuid:
+ specifier: ^9.0.1
+ version: 9.0.1
- components/bolt_iot:
- specifiers: {}
+ components/bolt_iot: {}
- components/bookingmood:
- specifiers: {}
+ components/bookingmood: {}
components/booqable:
- specifiers:
- '@pipedream/platform': ^1.5.1
dependencies:
- '@pipedream/platform': 1.5.1
+ '@pipedream/platform':
+ specifier: ^1.5.1
+ version: 1.6.6
components/bot9:
- specifiers:
- '@pipedream/platform': ^1.5.1
dependencies:
- '@pipedream/platform': 1.5.1
+ '@pipedream/platform':
+ specifier: ^1.5.1
+ version: 1.6.6
- components/botbaba:
- specifiers: {}
+ components/botbaba: {}
- components/botcake:
- specifiers: {}
+ components/botcake: {}
components/botconversa:
- specifiers:
- '@pipedream/platform': ^1.5.1
dependencies:
- '@pipedream/platform': 1.5.1
+ '@pipedream/platform':
+ specifier: ^1.5.1
+ version: 1.6.6
- components/botmaker:
- specifiers: {}
+ components/botmaker: {}
components/botpenguin:
- specifiers:
- '@pipedream/platform': ^2.0.0
dependencies:
- '@pipedream/platform': 2.0.0
+ '@pipedream/platform':
+ specifier: ^2.0.0
+ version: 2.0.0
components/botpress:
- specifiers:
- '@pipedream/platform': ^1.6.5
dependencies:
- '@pipedream/platform': 1.6.5
+ '@pipedream/platform':
+ specifier: ^1.6.5
+ version: 1.6.6
components/bouncer:
- specifiers:
- '@pipedream/platform': ^1.5.1
dependencies:
- '@pipedream/platform': 1.5.1
+ '@pipedream/platform':
+ specifier: ^1.5.1
+ version: 1.6.6
components/box:
- specifiers:
- '@pipedream/platform': ^1.5.1
- form-data: ^4.0.0
- path: ^0.12.7
- stream: ^0.0.2
- util: ^0.12.5
- dependencies:
- '@pipedream/platform': 1.5.1
- form-data: 4.0.0
- path: 0.12.7
- stream: 0.0.2
- util: 0.12.5
+ dependencies:
+ '@pipedream/platform':
+ specifier: ^1.5.1
+ version: 1.6.6
+ form-data:
+ specifier: ^4.0.0
+ version: 4.0.1
+ path:
+ specifier: ^0.12.7
+ version: 0.12.7
+ stream:
+ specifier: ^0.0.2
+ version: 0.0.2
+ util:
+ specifier: ^0.12.5
+ version: 0.12.5
components/boxhero:
- specifiers:
- '@pipedream/platform': ^1.5.1
dependencies:
- '@pipedream/platform': 1.5.1
+ '@pipedream/platform':
+ specifier: ^1.5.1
+ version: 1.6.6
- components/brainshop:
- specifiers: {}
+ components/brainshop: {}
- components/braintree:
- specifiers: {}
+ components/braintree: {}
- components/brandmentions:
- specifiers: {}
+ components/brandmentions: {}
- components/braze:
- specifiers: {}
+ components/braze: {}
components/brevo:
- specifiers:
- '@pipedream/platform': ^3.0.0
dependencies:
- '@pipedream/platform': 3.0.0
+ '@pipedream/platform':
+ specifier: ^3.0.0
+ version: 3.0.3
components/brex:
- specifiers:
- '@pipedream/platform': ^1.4.0
- uuid: ^8.3.2
dependencies:
- '@pipedream/platform': 1.5.1
- uuid: 8.3.2
+ '@pipedream/platform':
+ specifier: ^1.4.0
+ version: 1.6.6
+ uuid:
+ specifier: ^8.3.2
+ version: 8.3.2
components/brex_staging:
- specifiers:
- axios: ^0.25.0
- crypto: ^1.0.1
- uuid: ^8.3.2
dependencies:
- axios: 0.25.0
- crypto: 1.0.1
- uuid: 8.3.2
+ axios:
+ specifier: ^0.25.0
+ version: 0.25.0
+ crypto:
+ specifier: ^1.0.1
+ version: 1.0.1
+ uuid:
+ specifier: ^8.3.2
+ version: 8.3.2
components/brilliant_directories:
- specifiers:
- '@pipedream/platform': ^1.5.1
- qs: ^6.11.2
dependencies:
- '@pipedream/platform': 1.5.1
- qs: 6.11.2
+ '@pipedream/platform':
+ specifier: ^1.5.1
+ version: 1.6.6
+ qs:
+ specifier: ^6.11.2
+ version: 6.13.1
- components/brosix:
- specifiers: {}
+ components/brosix: {}
components/browse_ai:
- specifiers:
- '@pipedream/platform': ^1.5.1
dependencies:
- '@pipedream/platform': 1.5.1
+ '@pipedream/platform':
+ specifier: ^1.5.1
+ version: 1.6.6
components/browserhub:
- specifiers:
- '@pipedream/platform': ^1.5.1
dependencies:
- '@pipedream/platform': 1.5.1
+ '@pipedream/platform':
+ specifier: ^1.5.1
+ version: 1.6.6
components/browserless:
- specifiers:
- '@pipedream/platform': ^1.5.1
- puppeteer-core: ^19.7.5
dependencies:
- '@pipedream/platform': 1.5.1
- puppeteer-core: 19.8.0
+ '@pipedream/platform':
+ specifier: ^1.5.1
+ version: 1.6.6
+ puppeteer-core:
+ specifier: ^19.7.5
+ version: 19.11.1(typescript@5.7.2)
components/btcpay_server:
- specifiers:
- '@pipedream/platform': ^1.6.0
dependencies:
- '@pipedream/platform': 1.6.0
+ '@pipedream/platform':
+ specifier: ^1.6.0
+ version: 1.6.6
- components/budgets_ai:
- specifiers: {}
+ components/budgets_ai: {}
components/bugbug:
- specifiers:
- '@pipedream/platform': ^1.5.1
dependencies:
- '@pipedream/platform': 1.5.1
+ '@pipedream/platform':
+ specifier: ^1.5.1
+ version: 1.6.6
- components/bugsnag:
- specifiers: {}
+ components/bugsnag: {}
- components/buildchatbot:
- specifiers: {}
+ components/buildchatbot: {}
- components/builder_io:
- specifiers: {}
+ components/builder_io: {}
- components/builderall_mailingboss:
- specifiers: {}
+ components/builderall_mailingboss: {}
components/builtwith:
- specifiers:
- '@pipedream/platform': ^1.6.1
dependencies:
- '@pipedream/platform': 1.6.2
+ '@pipedream/platform':
+ specifier: ^1.6.1
+ version: 1.6.6
components/bulkgate:
- specifiers:
- '@pipedream/platform': ^1.3.0
dependencies:
- '@pipedream/platform': 1.5.1
+ '@pipedream/platform':
+ specifier: ^1.3.0
+ version: 1.6.6
components/bunnydoc:
- specifiers:
- '@pipedream/platform': ^1.6.5
dependencies:
- '@pipedream/platform': 1.6.5
+ '@pipedream/platform':
+ specifier: ^1.6.5
+ version: 1.6.6
- components/burst_sms:
- specifiers: {}
+ components/burst_sms: {}
components/burstyai:
- specifiers:
- '@pipedream/platform': ^3.0.3
dependencies:
- '@pipedream/platform': 3.0.3
+ '@pipedream/platform':
+ specifier: ^3.0.3
+ version: 3.0.3
components/businesslogic:
- specifiers:
- '@pipedream/platform': ^1.4.1
dependencies:
- '@pipedream/platform': 1.5.1
+ '@pipedream/platform':
+ specifier: ^1.4.1
+ version: 1.6.6
components/buy_me_a_coffee:
- specifiers:
- '@pipedream/platform': ^1.2.0
- '@pipedream/types': ^0.1.4
dependencies:
- '@pipedream/platform': 1.5.1
- '@pipedream/types': 0.1.6
+ '@pipedream/platform':
+ specifier: ^1.2.0
+ version: 1.6.6
+ '@pipedream/types':
+ specifier: ^0.1.4
+ version: 0.1.6
components/bybit:
- specifiers:
- '@pipedream/platform': ^1.6.0
- crypto-js: ^4.2.0
dependencies:
- '@pipedream/platform': 1.6.0
- crypto-js: 4.2.0
+ '@pipedream/platform':
+ specifier: ^1.6.0
+ version: 1.6.6
+ crypto-js:
+ specifier: ^4.2.0
+ version: 4.2.0
components/byteforms:
- specifiers:
- '@pipedream/platform': ^3.0.0
dependencies:
- '@pipedream/platform': 3.0.0
+ '@pipedream/platform':
+ specifier: ^3.0.0
+ version: 3.0.3
components/bytenite:
- specifiers:
- '@pipedream/platform': ^1.6.4
dependencies:
- '@pipedream/platform': 1.6.4
+ '@pipedream/platform':
+ specifier: ^1.6.4
+ version: 1.6.6
- components/cabinpanda:
- specifiers: {}
+ components/cabinpanda: {}
components/cal_com:
- specifiers:
- '@pipedream/platform': ^1.1.1
- async-retry: ^1.3.3
dependencies:
- '@pipedream/platform': 1.5.1
- async-retry: 1.3.3
+ '@pipedream/platform':
+ specifier: ^1.1.1
+ version: 1.6.6
+ async-retry:
+ specifier: ^1.3.3
+ version: 1.3.3
- components/calendarhero:
- specifiers: {}
+ components/calendarhero: {}
components/calendly_v2:
- specifiers:
- '@pipedream/platform': ^3.0.3
- url: ^0.11.0
dependencies:
- '@pipedream/platform': 3.0.3
- url: 0.11.3
+ '@pipedream/platform':
+ specifier: ^3.0.3
+ version: 3.0.3
+ url:
+ specifier: ^0.11.0
+ version: 0.11.4
- components/call_fire:
- specifiers: {}
+ components/call_fire: {}
components/callhub:
- specifiers:
- '@pipedream/platform': ^1.3.0
dependencies:
- '@pipedream/platform': 1.5.1
+ '@pipedream/platform':
+ specifier: ^1.3.0
+ version: 1.6.6
- components/callingly:
- specifiers: {}
+ components/callingly: {}
components/callpage:
- specifiers:
- '@pipedream/platform': ^1.5.1
dependencies:
- '@pipedream/platform': 1.5.1
+ '@pipedream/platform':
+ specifier: ^1.5.1
+ version: 1.6.6
- components/callrail:
- specifiers: {}
+ components/callrail: {}
components/campaign_cleaner:
- specifiers:
- '@pipedream/platform': ^1.5.1
dependencies:
- '@pipedream/platform': 1.5.1
+ '@pipedream/platform':
+ specifier: ^1.5.1
+ version: 1.6.6
components/campaign_monitor:
- specifiers:
- '@pipedream/platform': ^3.0.3
dependencies:
- '@pipedream/platform': 3.0.3
+ '@pipedream/platform':
+ specifier: ^3.0.3
+ version: 3.0.3
- components/campaignhq:
- specifiers: {}
+ components/campaignhq: {}
components/campayn:
- specifiers:
- '@pipedream/platform': ^1.4.0
dependencies:
- '@pipedream/platform': 1.5.1
+ '@pipedream/platform':
+ specifier: ^1.4.0
+ version: 1.6.6
components/canva:
- specifiers:
- '@pipedream/platform': ^3.0.0
dependencies:
- '@pipedream/platform': 3.0.0
+ '@pipedream/platform':
+ specifier: ^3.0.0
+ version: 3.0.3
components/canva_enterprise:
- specifiers:
- '@pipedream/platform': ^3.0.0
dependencies:
- '@pipedream/platform': 3.0.0
+ '@pipedream/platform':
+ specifier: ^3.0.0
+ version: 3.0.3
- components/captaindata:
- specifiers: {}
+ components/captaindata: {}
- components/carbone:
- specifiers: {}
+ components/carbone: {}
- components/cardinal:
- specifiers: {}
+ components/cardinal: {}
components/cardly:
- specifiers:
- '@pipedream/platform': ^1.5.1
dependencies:
- '@pipedream/platform': 1.5.1
+ '@pipedream/platform':
+ specifier: ^1.5.1
+ version: 1.6.6
- components/carmd:
- specifiers: {}
+ components/carmd: {}
- components/cartes:
- specifiers: {}
+ components/cartes: {}
- components/cascade_strategy:
- specifiers: {}
+ components/cascade_strategy: {}
- components/caspio:
- specifiers: {}
+ components/caspio: {}
components/castmagic:
- specifiers:
- '@pipedream/platform': ^1.6.0
dependencies:
- '@pipedream/platform': 1.6.0
+ '@pipedream/platform':
+ specifier: ^1.6.0
+ version: 1.6.6
components/cats:
- specifiers:
- '@pipedream/platform': ^3.0.3
- crypto: ^1.0.1
dependencies:
- '@pipedream/platform': 3.0.3
- crypto: 1.0.1
+ '@pipedream/platform':
+ specifier: ^3.0.3
+ version: 3.0.3
+ crypto:
+ specifier: ^1.0.1
+ version: 1.0.1
- components/cdc_national_environmental_public_health_tracking:
- specifiers: {}
+ components/cdc_national_environmental_public_health_tracking: {}
- components/cdr_platform:
- specifiers: {}
+ components/cdr_platform: {}
- components/celonis_ems:
- specifiers: {}
+ components/celonis_ems: {}
- components/census_bureau:
- specifiers: {}
+ components/census_bureau: {}
components/centralstationcrm:
- specifiers:
- '@pipedream/platform': ^1.5.1
dependencies:
- '@pipedream/platform': 1.5.1
+ '@pipedream/platform':
+ specifier: ^1.5.1
+ version: 1.6.6
components/certifier:
- specifiers:
- '@pipedream/platform': ^3.0.0
dependencies:
- '@pipedream/platform': 3.0.0
+ '@pipedream/platform':
+ specifier: ^3.0.0
+ version: 3.0.3
- components/cflow:
- specifiers: {}
+ components/cflow: {}
components/chainaware_ai:
- specifiers:
- '@pipedream/platform': 3.0.1
dependencies:
- '@pipedream/platform': 3.0.1
+ '@pipedream/platform':
+ specifier: 3.0.1
+ version: 3.0.1
components/chaindesk:
- specifiers:
- '@pipedream/platform': ^1.5.1
dependencies:
- '@pipedream/platform': 1.6.0
+ '@pipedream/platform':
+ specifier: ^1.5.1
+ version: 1.6.6
- components/changenow:
- specifiers: {}
+ components/changenow: {}
- components/chaport:
- specifiers: {}
+ components/chaport: {}
components/chargebee:
- specifiers:
- '@pipedream/platform': ^1.4.1
- chargebee: ^2.22.3
dependencies:
- '@pipedream/platform': 1.5.1
- chargebee: 2.28.0
+ '@pipedream/platform':
+ specifier: ^1.4.1
+ version: 1.6.6
+ chargebee:
+ specifier: ^2.22.3
+ version: 2.44.0
components/chargeblast:
- specifiers:
- '@pipedream/platform': ^1.6.0
dependencies:
- '@pipedream/platform': 1.6.0
+ '@pipedream/platform':
+ specifier: ^1.6.0
+ version: 1.6.6
components/chargify:
- specifiers:
- '@pipedream/platform': ^3.0.3
dependencies:
- '@pipedream/platform': 3.0.3
+ '@pipedream/platform':
+ specifier: ^3.0.3
+ version: 3.0.3
components/chartmogul:
- specifiers:
- '@pipedream/platform': ^1.2.1
dependencies:
- '@pipedream/platform': 1.5.1
+ '@pipedream/platform':
+ specifier: ^1.2.1
+ version: 1.6.6
components/chaser:
- specifiers:
- '@pipedream/platform': ^1.6.4
dependencies:
- '@pipedream/platform': 1.6.4
+ '@pipedream/platform':
+ specifier: ^1.6.4
+ version: 1.6.6
- components/chat_data:
- specifiers: {}
+ components/chat_data: {}
components/chatbot:
- specifiers:
- '@pipedream/platform': ^0.10.0
dependencies:
- '@pipedream/platform': 0.10.0
+ '@pipedream/platform':
+ specifier: ^0.10.0
+ version: 0.10.0
components/chatbot_builder:
- specifiers:
- '@pipedream/platform': ^1.6.0
- qs: ^6.12.0
dependencies:
- '@pipedream/platform': 1.6.0
- qs: 6.12.0
+ '@pipedream/platform':
+ specifier: ^1.6.0
+ version: 1.6.6
+ qs:
+ specifier: ^6.12.0
+ version: 6.13.1
- components/chatbotic:
- specifiers: {}
+ components/chatbotic: {}
components/chatbotkit:
- specifiers:
- '@pipedream/platform': ^1.5.1
- axios: ^1.6.5
dependencies:
- '@pipedream/platform': 1.5.1
- axios: 1.6.5
+ '@pipedream/platform':
+ specifier: ^1.5.1
+ version: 1.6.6
+ axios:
+ specifier: ^1.6.5
+ version: 1.7.7(debug@3.2.7)
components/chatfai:
- specifiers:
- '@pipedream/platform': ^1.6.0
dependencies:
- '@pipedream/platform': 1.6.0
+ '@pipedream/platform':
+ specifier: ^1.6.0
+ version: 1.6.6
components/chatfly:
- specifiers:
- '@pipedream/platform': ^1.6.5
dependencies:
- '@pipedream/platform': 1.6.5
+ '@pipedream/platform':
+ specifier: ^1.6.5
+ version: 1.6.6
- components/chatfuel_dashboard_api_:
- specifiers: {}
+ components/chatfuel_dashboard_api_: {}
- components/chatlayer:
- specifiers: {}
+ components/chatlayer: {}
components/chatpdf:
- specifiers:
- '@pipedream/platform': ^1.6.0
dependencies:
- '@pipedream/platform': 1.6.0
+ '@pipedream/platform':
+ specifier: ^1.6.0
+ version: 1.6.6
- components/chatrace:
- specifiers: {}
+ components/chatrace: {}
- components/chatsonic:
- specifiers: {}
+ components/chatsonic: {}
components/chatwork:
- specifiers:
- '@pipedream/platform': ^1.5.1
dependencies:
- '@pipedream/platform': 1.5.1
+ '@pipedream/platform':
+ specifier: ^1.5.1
+ version: 1.6.6
components/checkvist:
- specifiers:
- '@pipedream/platform': ^3.0.3
dependencies:
- '@pipedream/platform': 3.0.3
+ '@pipedream/platform':
+ specifier: ^3.0.3
+ version: 3.0.3
- components/cheddar:
- specifiers: {}
+ components/cheddar: {}
- components/chimp_rewriter:
- specifiers: {}
+ components/chimp_rewriter: {}
- components/chmeetings:
- specifiers: {}
+ components/chmeetings: {}
components/cinc:
- specifiers:
- '@pipedream/platform': ^1.6.2
dependencies:
- '@pipedream/platform': 1.6.2
+ '@pipedream/platform':
+ specifier: ^1.6.2
+ version: 1.6.6
components/cincopa:
- specifiers:
- '@pipedream/platform': ^1.6.5
- uuid: ^8.3.2
dependencies:
- '@pipedream/platform': 1.6.5
- uuid: 8.3.2
+ '@pipedream/platform':
+ specifier: ^1.6.5
+ version: 1.6.6
+ uuid:
+ specifier: ^8.3.2
+ version: 8.3.2
- components/circl_hash_lookup:
- specifiers: {}
+ components/circl_hash_lookup: {}
components/circle:
- specifiers:
- '@pipedream/platform': ^1.5.1
dependencies:
- '@pipedream/platform': 1.5.1
+ '@pipedream/platform':
+ specifier: ^1.5.1
+ version: 1.6.6
components/cisco_meraki:
- specifiers:
- '@pipedream/platform': ^1.3.0
dependencies:
- '@pipedream/platform': 1.5.1
+ '@pipedream/platform':
+ specifier: ^1.3.0
+ version: 1.6.6
components/cisco_webex:
- specifiers:
- '@pipedream/platform': ^1.4.0
- crypto: ^1.0.1
- uuid: ^8.3.2
dependencies:
- '@pipedream/platform': 1.5.1
- crypto: 1.0.1
- uuid: 8.3.2
+ '@pipedream/platform':
+ specifier: ^1.4.0
+ version: 1.6.6
+ crypto:
+ specifier: ^1.0.1
+ version: 1.0.1
+ uuid:
+ specifier: ^8.3.2
+ version: 8.3.2
- components/civicrm:
- specifiers: {}
+ components/civicrm: {}
components/claid_ai:
- specifiers:
- '@pipedream/platform': ^1.5.1
- form-data: ^4.0.0
- fs: ^0.0.1-security
- url-exist: ^3.0.1
dependencies:
- '@pipedream/platform': 1.6.0
- form-data: 4.0.0
- fs: 0.0.1-security
- url-exist: 3.0.1
-
- components/clarify:
- specifiers: {}
+ '@pipedream/platform':
+ specifier: ^1.5.1
+ version: 1.6.6
+ form-data:
+ specifier: ^4.0.0
+ version: 4.0.1
+ fs:
+ specifier: ^0.0.1-security
+ version: 0.0.1-security
+ url-exist:
+ specifier: ^3.0.1
+ version: 3.0.1(web-streams-polyfill@3.3.3)
+
+ components/clarify: {}
components/clearbit:
- specifiers:
- '@pipedream/platform': ^0.10.0
dependencies:
- '@pipedream/platform': 0.10.0
+ '@pipedream/platform':
+ specifier: ^0.10.0
+ version: 0.10.0
- components/clearly_defined:
- specifiers: {}
+ components/clearly_defined: {}
components/clearout:
- specifiers:
- '@pipedream/platform': ^1.5.1
dependencies:
- '@pipedream/platform': 1.5.1
+ '@pipedream/platform':
+ specifier: ^1.5.1
+ version: 1.6.6
components/clerk:
- specifiers:
- '@pipedream/platform': ^1.5.1
dependencies:
- '@pipedream/platform': 1.5.1
+ '@pipedream/platform':
+ specifier: ^1.5.1
+ version: 1.6.6
components/cleverreach:
- specifiers:
- '@pipedream/platform': ^1.5.1
dependencies:
- '@pipedream/platform': 1.5.1
+ '@pipedream/platform':
+ specifier: ^1.5.1
+ version: 1.6.6
components/clevertap:
- specifiers:
- '@pipedream/platform': ^1.5.1
dependencies:
- '@pipedream/platform': 1.5.1
+ '@pipedream/platform':
+ specifier: ^1.5.1
+ version: 1.6.6
components/click2mail2:
- specifiers:
- '@pipedream/platform': ^1.5.1
- form-data: ^4.0.0
- fs: ^0.0.1-security
dependencies:
- '@pipedream/platform': 1.5.1
- form-data: 4.0.0
- fs: 0.0.1-security
+ '@pipedream/platform':
+ specifier: ^1.5.1
+ version: 1.6.6
+ form-data:
+ specifier: ^4.0.0
+ version: 4.0.1
+ fs:
+ specifier: ^0.0.1-security
+ version: 0.0.1-security
components/clickfunnels:
- specifiers:
- '@pipedream/platform': ^3.0.0
dependencies:
- '@pipedream/platform': 3.0.0
+ '@pipedream/platform':
+ specifier: ^3.0.0
+ version: 3.0.3
components/clickhelp:
- specifiers:
- '@pipedream/platform': ^1.6.1
dependencies:
- '@pipedream/platform': 1.6.1
+ '@pipedream/platform':
+ specifier: ^1.6.1
+ version: 1.6.6
- components/clickmeeting:
- specifiers: {}
+ components/clickmeeting: {}
components/clicksend:
- specifiers:
- '@pipedream/platform': ^1.6.0
dependencies:
- '@pipedream/platform': 1.6.2
+ '@pipedream/platform':
+ specifier: ^1.6.0
+ version: 1.6.6
- components/clicktime:
- specifiers: {}
+ components/clicktime: {}
components/clickup:
- specifiers:
- '@pipedream/platform': ^3.0.0
- crypto: ^1.0.1
- lodash: ^4.17.21
dependencies:
- '@pipedream/platform': 3.0.0
- crypto: 1.0.1
- lodash: 4.17.21
+ '@pipedream/platform':
+ specifier: ^3.0.0
+ version: 3.0.3
+ crypto:
+ specifier: ^1.0.1
+ version: 1.0.1
+ lodash:
+ specifier: ^4.17.21
+ version: 4.17.21
components/clientary:
- specifiers:
- '@pipedream/platform': ^1.2.1
- '@pipedream/types': ^0.1.4
dependencies:
- '@pipedream/platform': 1.5.1
- '@pipedream/types': 0.1.6
+ '@pipedream/platform':
+ specifier: ^1.2.1
+ version: 1.6.6
+ '@pipedream/types':
+ specifier: ^0.1.4
+ version: 0.1.6
- components/clientify:
- specifiers: {}
+ components/clientify: {}
components/cliento:
- specifiers:
- '@pipedream/platform': ^3.0.3
dependencies:
- '@pipedream/platform': 3.0.3
+ '@pipedream/platform':
+ specifier: ^3.0.3
+ version: 3.0.3
components/clinchpad:
- specifiers:
- '@pipedream/platform': ^1.2.1
dependencies:
- '@pipedream/platform': 1.5.1
+ '@pipedream/platform':
+ specifier: ^1.2.1
+ version: 1.6.6
components/cliniko:
- specifiers:
- '@pipedream/platform': ^1.6.2
dependencies:
- '@pipedream/platform': 1.6.2
+ '@pipedream/platform':
+ specifier: ^1.6.2
+ version: 1.6.6
components/clio:
- specifiers:
- '@pipedream/platform': ^1.6.4
- crypto: ^1.0.1
dependencies:
- '@pipedream/platform': 1.6.4
- crypto: 1.0.1
+ '@pipedream/platform':
+ specifier: ^1.6.4
+ version: 1.6.6
+ crypto:
+ specifier: ^1.0.1
+ version: 1.0.1
components/clockify:
- specifiers:
- '@pipedream/platform': ^1.5.1
dependencies:
- '@pipedream/platform': 1.5.1
+ '@pipedream/platform':
+ specifier: ^1.5.1
+ version: 1.6.6
components/clockwork_recruiting:
- specifiers:
- '@pipedream/platform': ^1.5.1
dependencies:
- '@pipedream/platform': 1.5.1
+ '@pipedream/platform':
+ specifier: ^1.5.1
+ version: 1.6.6
components/close:
- specifiers:
- '@pipedream/platform': ^1.4.0
dependencies:
- '@pipedream/platform': 1.5.1
+ '@pipedream/platform':
+ specifier: ^1.4.0
+ version: 1.6.6
components/cloud_convert:
- specifiers:
- '@pipedream/platform': ^1.6.0
dependencies:
- '@pipedream/platform': 1.6.2
+ '@pipedream/platform':
+ specifier: ^1.6.0
+ version: 1.6.6
- components/cloudcart:
- specifiers: {}
+ components/cloudcart: {}
- components/cloudfill:
- specifiers: {}
+ components/cloudfill: {}
components/cloudflare_api_key:
- specifiers:
- '@pipedream/platform': ^1.1.1
- cloudflare: ^2.9.1
- form-data: ^4.0.0
- got: ^12.5.1
- stream: ^0.0.2
- util: ^0.12.4
- dependencies:
- '@pipedream/platform': 1.5.1
- cloudflare: 2.9.1
- form-data: 4.0.0
- got: 12.6.1
- stream: 0.0.2
- util: 0.12.5
-
- components/cloudflare_r2:
- specifiers: {}
+ dependencies:
+ '@pipedream/platform':
+ specifier: ^1.1.1
+ version: 1.6.6
+ cloudflare:
+ specifier: ^2.9.1
+ version: 2.9.1
+ form-data:
+ specifier: ^4.0.0
+ version: 4.0.1
+ got:
+ specifier: ^12.5.1
+ version: 12.6.1
+ stream:
+ specifier: ^0.0.2
+ version: 0.0.2
+ util:
+ specifier: ^0.12.4
+ version: 0.12.5
+
+ components/cloudflare_r2: {}
components/cloudinary:
- specifiers:
- cloudinary: ^1.36.1
dependencies:
- cloudinary: 1.41.0
+ cloudinary:
+ specifier: ^1.36.1
+ version: 1.41.3
- components/cloudlayer:
- specifiers: {}
+ components/cloudlayer: {}
components/cloudmersive:
- specifiers:
- '@pipedream/platform': ^1.2.1
- '@pipedream/types': ^0.1.4
- form-data: ^4.0.0
dependencies:
- '@pipedream/platform': 1.5.1
- '@pipedream/types': 0.1.6
- form-data: 4.0.0
+ '@pipedream/platform':
+ specifier: ^1.2.1
+ version: 1.6.6
+ '@pipedream/types':
+ specifier: ^0.1.4
+ version: 0.1.6
+ form-data:
+ specifier: ^4.0.0
+ version: 4.0.1
components/cloudpresenter:
- specifiers:
- '@pipedream/platform': ^3.0.0
dependencies:
- '@pipedream/platform': 3.0.0
+ '@pipedream/platform':
+ specifier: ^3.0.0
+ version: 3.0.3
components/cloudpress:
- specifiers:
- '@pipedream/platform': ^1.6.0
dependencies:
- '@pipedream/platform': 1.6.0
+ '@pipedream/platform':
+ specifier: ^1.6.0
+ version: 1.6.6
- components/cloudtalk:
- specifiers: {}
+ components/cloudtalk: {}
components/cloze:
- specifiers:
- '@pipedream/platform': 3.0.3
dependencies:
- '@pipedream/platform': 3.0.3
+ '@pipedream/platform':
+ specifier: 3.0.3
+ version: 3.0.3
- components/clubworx:
- specifiers: {}
+ components/clubworx: {}
- components/coassemble:
- specifiers: {}
+ components/coassemble: {}
components/coda:
- specifiers:
- '@pipedream/platform': ^1.3.0
dependencies:
- '@pipedream/platform': 1.5.1
+ '@pipedream/platform':
+ specifier: ^1.3.0
+ version: 1.6.6
components/codacy:
- specifiers:
- '@pipedream/platform': ^1.6.2
dependencies:
- '@pipedream/platform': 1.6.2
+ '@pipedream/platform':
+ specifier: ^1.6.2
+ version: 1.6.6
components/codat:
- specifiers:
- '@pipedream/platform': ^1.6.2
dependencies:
- '@pipedream/platform': 1.6.2
+ '@pipedream/platform':
+ specifier: ^1.6.2
+ version: 1.6.6
components/code_climate:
- specifiers:
- '@pipedream/platform': ^1.6.2
dependencies:
- '@pipedream/platform': 1.6.2
+ '@pipedream/platform':
+ specifier: ^1.6.2
+ version: 1.6.6
- components/codegpt:
- specifiers: {}
+ components/codegpt: {}
components/codemagic:
- specifiers:
- '@pipedream/platform': ^1.6.2
dependencies:
- '@pipedream/platform': 1.6.2
+ '@pipedream/platform':
+ specifier: ^1.6.2
+ version: 1.6.6
- components/codeq_natural_language_processing_api:
- specifiers: {}
+ components/codeq_natural_language_processing_api: {}
components/codereadr:
- specifiers:
- '@pipedream/platform': ^1.5.1
- xml2json-light: ^1.0.6
dependencies:
- '@pipedream/platform': 1.5.1
- xml2json-light: 1.0.6
+ '@pipedream/platform':
+ specifier: ^1.5.1
+ version: 1.6.6
+ xml2json-light:
+ specifier: ^1.0.6
+ version: 1.0.6
- components/coderpad:
- specifiers: {}
+ components/coderpad: {}
components/codescene:
- specifiers:
- '@pipedream/platform': ^1.6.0
dependencies:
- '@pipedream/platform': 1.6.0
+ '@pipedream/platform':
+ specifier: ^1.6.0
+ version: 1.6.6
components/cody:
- specifiers:
- '@pipedream/platform': ^1.5.1
dependencies:
- '@pipedream/platform': 1.6.0
+ '@pipedream/platform':
+ specifier: ^1.5.1
+ version: 1.6.6
components/cohere_platform:
- specifiers:
- cohere-ai: ^7.10.6
dependencies:
- cohere-ai: 7.10.6_dseaa2p5u2yk67qiepewcq3hkq
+ cohere-ai:
+ specifier: ^7.10.6
+ version: 7.14.0(@aws-sdk/client-sso-oidc@3.696.0(@aws-sdk/client-sts@3.696.0))
components/coinbase:
- specifiers:
- '@pipedream/platform': ^1.2.0
dependencies:
- '@pipedream/platform': 1.5.1
+ '@pipedream/platform':
+ specifier: ^1.2.0
+ version: 1.6.6
- components/coinbase_commerce:
- specifiers: {}
+ components/coinbase_commerce: {}
components/coinmarketcal:
- specifiers:
- '@pipedream/platform': ^1.6.4
dependencies:
- '@pipedream/platform': 1.6.4
+ '@pipedream/platform':
+ specifier: ^1.6.4
+ version: 1.6.6
- components/coinmarketcal_demo_app:
- specifiers: {}
+ components/coinmarketcal_demo_app: {}
components/coinmarketcap:
- specifiers:
- '@pipedream/platform': ^1.6.0
dependencies:
- '@pipedream/platform': 1.6.0
+ '@pipedream/platform':
+ specifier: ^1.6.0
+ version: 1.6.6
- components/college_football_data:
- specifiers: {}
+ components/college_football_data: {}
components/columns_ai:
- specifiers:
- columns-graph-model: ^1.1.4
- columns-sdk: ^0.0.6
dependencies:
- columns-graph-model: 1.1.4
- columns-sdk: 0.0.6
+ columns-graph-model:
+ specifier: ^1.1.4
+ version: 1.1.4
+ columns-sdk:
+ specifier: ^0.0.6
+ version: 0.0.6
components/cometly:
- specifiers:
- '@pipedream/platform': ^1.5.1
dependencies:
- '@pipedream/platform': 1.5.1
+ '@pipedream/platform':
+ specifier: ^1.5.1
+ version: 1.6.6
- components/commcare:
- specifiers: {}
+ components/commcare: {}
- components/commercehq:
- specifiers: {}
+ components/commercehq: {}
- components/common_paper:
- specifiers: {}
+ components/common_paper: {}
components/commpeak:
- specifiers:
- '@pipedream/platform': ^1.6.0
dependencies:
- '@pipedream/platform': 1.6.0
+ '@pipedream/platform':
+ specifier: ^1.6.0
+ version: 1.6.6
components/companycam:
- specifiers:
- '@pipedream/platform': ^1.3.0
- crypto: ^1.0.1
- uuid: ^9.0.0
dependencies:
- '@pipedream/platform': 1.5.1
- crypto: 1.0.1
- uuid: 9.0.1
+ '@pipedream/platform':
+ specifier: ^1.3.0
+ version: 1.6.6
+ crypto:
+ specifier: ^1.0.1
+ version: 1.0.1
+ uuid:
+ specifier: ^9.0.0
+ version: 9.0.1
components/concord:
- specifiers:
- '@pipedream/platform': ^1.5.1
- '@pipedream/types': ^0.1.4
dependencies:
- '@pipedream/platform': 1.5.1
- '@pipedream/types': 0.1.6
+ '@pipedream/platform':
+ specifier: ^1.5.1
+ version: 1.6.6
+ '@pipedream/types':
+ specifier: ^0.1.4
+ version: 0.1.6
components/confection:
- specifiers:
- '@pipedream/platform': ^1.4.0
dependencies:
- '@pipedream/platform': 1.5.1
+ '@pipedream/platform':
+ specifier: ^1.4.0
+ version: 1.6.6
components/confluence:
- specifiers:
- '@pipedream/platform': ^1.6.0
dependencies:
- '@pipedream/platform': 1.6.2
+ '@pipedream/platform':
+ specifier: ^1.6.0
+ version: 1.6.6
- components/confluent:
- specifiers: {}
+ components/confluent: {}
- components/congress_gov:
- specifiers: {}
+ components/congress_gov: {}
components/connecteam:
- specifiers:
- '@pipedream/platform': ^3.0.0
dependencies:
- '@pipedream/platform': 3.0.0
+ '@pipedream/platform':
+ specifier: ^3.0.0
+ version: 3.0.3
components/connectwise_psa:
- specifiers:
- '@pipedream/platform': ^2.0.0
dependencies:
- '@pipedream/platform': 2.0.0
+ '@pipedream/platform':
+ specifier: ^2.0.0
+ version: 2.0.0
components/constant_contact:
- specifiers:
- '@pipedream/platform': ^1.5.1
- lodash: ^4.17.21
dependencies:
- '@pipedream/platform': 1.5.1
- lodash: 4.17.21
+ '@pipedream/platform':
+ specifier: ^1.5.1
+ version: 1.6.6
+ lodash:
+ specifier: ^4.17.21
+ version: 4.17.21
components/contact_enhance:
- specifiers:
- '@pipedream/platform': ^1.6.2
dependencies:
- '@pipedream/platform': 1.6.2
+ '@pipedream/platform':
+ specifier: ^1.6.2
+ version: 1.6.6
components/content_snare:
- specifiers:
- '@pipedream/platform': ^1.6.0
dependencies:
- '@pipedream/platform': 1.6.0
+ '@pipedream/platform':
+ specifier: ^1.6.0
+ version: 1.6.6
components/contentgroove:
- specifiers:
- '@pipedream/platform': ^1.5.1
dependencies:
- '@pipedream/platform': 1.6.0
+ '@pipedream/platform':
+ specifier: ^1.5.1
+ version: 1.6.6
components/control_d:
- specifiers:
- '@pipedream/platform': ^3.0.0
dependencies:
- '@pipedream/platform': 3.0.0
+ '@pipedream/platform':
+ specifier: ^3.0.0
+ version: 3.0.3
components/convenia:
- specifiers:
- '@pipedream/platform': ^1.5.1
dependencies:
- '@pipedream/platform': 1.5.1
+ '@pipedream/platform':
+ specifier: ^1.5.1
+ version: 1.6.6
- components/conversion_tools:
- specifiers: {}
+ components/conversion_tools: {}
- components/convertapi:
- specifiers: {}
+ components/convertapi: {}
components/convertkit:
- specifiers:
- '@pipedream/platform': ^0.10.0
dependencies:
- '@pipedream/platform': 0.10.0
+ '@pipedream/platform':
+ specifier: ^0.10.0
+ version: 0.10.0
- components/conveyor:
- specifiers: {}
+ components/conveyor: {}
components/convolo_ai:
- specifiers:
- '@pipedream/platform': ^1.5.1
dependencies:
- '@pipedream/platform': 1.5.1
+ '@pipedream/platform':
+ specifier: ^1.5.1
+ version: 1.6.6
components/copper:
- specifiers:
- '@pipedream/platform': ^3.0.3
dependencies:
- '@pipedream/platform': 3.0.3
+ '@pipedream/platform':
+ specifier: ^3.0.3
+ version: 3.0.3
components/copperx:
- specifiers:
- '@pipedream/platform': ^1.5.1
dependencies:
- '@pipedream/platform': 1.5.1
+ '@pipedream/platform':
+ specifier: ^1.5.1
+ version: 1.6.6
- components/corrently:
- specifiers: {}
+ components/corrently: {}
components/countdown_api:
- specifiers:
- '@pipedream/platform': ^1.6.0
dependencies:
- '@pipedream/platform': 1.6.0
+ '@pipedream/platform':
+ specifier: ^1.6.0
+ version: 1.6.6
- components/coupontools:
- specifiers: {}
+ components/coupontools: {}
- components/covalent:
- specifiers: {}
+ components/covalent: {}
components/cradl_ai:
- specifiers:
- '@pipedream/platform': ^1.6.5
dependencies:
- '@pipedream/platform': 1.6.5
+ '@pipedream/platform':
+ specifier: ^1.6.5
+ version: 1.6.6
components/craftboxx:
- specifiers:
- '@pipedream/platform': ^1.6.0
dependencies:
- '@pipedream/platform': 1.6.0
+ '@pipedream/platform':
+ specifier: ^1.6.0
+ version: 1.6.6
- components/craftmypdf:
- specifiers: {}
+ components/craftmypdf: {}
- components/crawlbase:
- specifiers: {}
+ components/crawlbase: {}
components/credit_repair_cloud:
- specifiers:
- axios: ^1.4.0
- js2xmlparser: ^5.0.0
- xml2js: ^0.6.0
dependencies:
- axios: 1.5.1
- js2xmlparser: 5.0.0
- xml2js: 0.6.2
+ axios:
+ specifier: ^1.4.0
+ version: 1.7.7(debug@3.2.7)
+ js2xmlparser:
+ specifier: ^5.0.0
+ version: 5.0.0
+ xml2js:
+ specifier: ^0.6.0
+ version: 0.6.2
components/crimeometer:
- specifiers:
- '@pipedream/platform': ^1.4.1
dependencies:
- '@pipedream/platform': 1.5.1
+ '@pipedream/platform':
+ specifier: ^1.4.1
+ version: 1.6.6
- components/crisp:
- specifiers: {}
+ components/crisp: {}
components/cronfree:
- specifiers:
- '@pipedream/platform': ^1.6.0
dependencies:
- '@pipedream/platform': 1.6.0
+ '@pipedream/platform':
+ specifier: ^1.6.0
+ version: 1.6.6
- components/crove_app:
- specifiers: {}
+ components/crove_app: {}
components/crowdin:
- specifiers:
- '@pipedream/platform': ^3.0.3
- fs: ^0.0.1-security
dependencies:
- '@pipedream/platform': 3.0.3
- fs: 0.0.1-security
+ '@pipedream/platform':
+ specifier: ^3.0.3
+ version: 3.0.3
+ fs:
+ specifier: ^0.0.1-security
+ version: 0.0.1-security
- components/crowdpower:
- specifiers: {}
+ components/crowdpower: {}
components/crunchbase:
- specifiers:
- '@pipedream/platform': ^3.0.1
dependencies:
- '@pipedream/platform': 3.0.1
+ '@pipedream/platform':
+ specifier: ^3.0.1
+ version: 3.0.3
components/cufinder:
- specifiers:
- '@pipedream/platform': ^1.6.0
dependencies:
- '@pipedream/platform': 1.6.0
+ '@pipedream/platform':
+ specifier: ^1.6.0
+ version: 1.6.6
- components/cults:
- specifiers: {}
+ components/cults: {}
components/curated:
- specifiers:
- '@pipedream/platform': ^1.2.0
dependencies:
- '@pipedream/platform': 1.5.1
+ '@pipedream/platform':
+ specifier: ^1.2.0
+ version: 1.6.6
- components/currencyapi:
- specifiers: {}
+ components/currencyapi: {}
components/currencyscoop:
- specifiers:
- '@pipedream/platform': ^1.5.1
- '@pipedream/types': ^0.1.6
dependencies:
- '@pipedream/platform': 1.5.1
- '@pipedream/types': 0.1.6
+ '@pipedream/platform':
+ specifier: ^1.5.1
+ version: 1.6.6
+ '@pipedream/types':
+ specifier: ^0.1.6
+ version: 0.1.6
components/customer_fields:
- specifiers:
- '@pipedream/platform': ^1.5.1
dependencies:
- '@pipedream/platform': 1.5.1
+ '@pipedream/platform':
+ specifier: ^1.5.1
+ version: 1.6.6
- components/customer_guru:
- specifiers: {}
+ components/customer_guru: {}
components/customer_io:
- specifiers:
- '@pipedream/platform': ^0.10.0
dependencies:
- '@pipedream/platform': 0.10.0
+ '@pipedream/platform':
+ specifier: ^0.10.0
+ version: 0.10.0
- components/customgpt:
- specifiers: {}
+ components/customgpt: {}
components/customjs:
- specifiers:
- '@pipedream/platform': ^3.0.3
dependencies:
- '@pipedream/platform': 3.0.3
+ '@pipedream/platform':
+ specifier: ^3.0.3
+ version: 3.0.3
components/cutt_ly:
- specifiers:
- '@pipedream/platform': ^1.5.1
dependencies:
- '@pipedream/platform': 1.5.1
+ '@pipedream/platform':
+ specifier: ^1.5.1
+ version: 1.6.6
- components/cyfe:
- specifiers: {}
+ components/cyfe: {}
- components/d2l_brightspace:
- specifiers: {}
+ components/d2l_brightspace: {}
- components/d7_darwin:
- specifiers: {}
+ components/d7_darwin: {}
components/d7_networks:
- specifiers:
- '@pipedream/platform': ^1.2.1
dependencies:
- '@pipedream/platform': 1.5.1
+ '@pipedream/platform':
+ specifier: ^1.2.1
+ version: 1.6.6
- components/daffy:
- specifiers: {}
+ components/daffy: {}
components/dailybot:
- specifiers:
- '@pipedream/platform': ^1.5.1
dependencies:
- '@pipedream/platform': 1.6.0
+ '@pipedream/platform':
+ specifier: ^1.5.1
+ version: 1.6.6
- components/daktela:
- specifiers: {}
+ components/daktela: {}
- components/damstra_forms:
- specifiers: {}
+ components/damstra_forms: {}
- components/danny_test_app:
- specifiers: {}
+ components/danny_test_app: {}
components/dart:
- specifiers:
- '@pipedream/platform': ^3.0.0
dependencies:
- '@pipedream/platform': 3.0.0
+ '@pipedream/platform':
+ specifier: ^3.0.0
+ version: 3.0.3
- components/darwinbox:
- specifiers: {}
+ components/darwinbox: {}
- components/data247:
- specifiers: {}
+ components/data247: {}
- components/data_axle_platform:
- specifiers: {}
+ components/data_axle_platform: {}
- components/data_police_uk:
- specifiers: {}
+ components/data_police_uk: {}
components/data_stores:
- specifiers:
- xss: ^1.0.11
dependencies:
- xss: 1.0.14
+ xss:
+ specifier: ^1.0.11
+ version: 1.0.15
- components/database:
- specifiers: {}
+ components/database: {}
components/databox:
- specifiers:
- '@pipedream/platform': ^1.1.0
- databox: ^2.0.1
dependencies:
- '@pipedream/platform': 1.5.1
- databox: 2.0.1
+ '@pipedream/platform':
+ specifier: ^1.1.0
+ version: 1.6.6
+ databox:
+ specifier: ^2.0.1
+ version: 2.1.2
components/databricks:
- specifiers:
- '@pipedream/platform': ^1.5.1
dependencies:
- '@pipedream/platform': 1.5.1
+ '@pipedream/platform':
+ specifier: ^1.5.1
+ version: 1.6.6
components/datadog:
- specifiers:
- '@pipedream/platform': ^1.1.1
- uuid: ^8.3.2
dependencies:
- '@pipedream/platform': 1.5.1
- uuid: 8.3.2
+ '@pipedream/platform':
+ specifier: ^1.1.1
+ version: 1.6.6
+ uuid:
+ specifier: ^8.3.2
+ version: 8.3.2
- components/dataforseo:
- specifiers: {}
+ components/dataforseo: {}
- components/datagma:
- specifiers: {}
+ components/datagma: {}
- components/dataset:
- specifiers: {}
+ components/dataset: {}
- components/datumbox:
- specifiers: {}
+ components/datumbox: {}
components/dayschedule:
- specifiers:
- '@pipedream/platform': ^1.5.1
dependencies:
- '@pipedream/platform': 1.5.1
+ '@pipedream/platform':
+ specifier: ^1.5.1
+ version: 1.6.6
components/dbt:
- specifiers:
- '@pipedream/platform': ^3.0.3
dependencies:
- '@pipedream/platform': 3.0.3
+ '@pipedream/platform':
+ specifier: ^3.0.3
+ version: 3.0.3
components/dealmachine:
- specifiers:
- '@pipedream/platform': ^1.5.1
dependencies:
- '@pipedream/platform': 1.5.1
+ '@pipedream/platform':
+ specifier: ^1.5.1
+ version: 1.6.6
components/dear:
- specifiers:
- '@pipedream/platform': ^1.2.0
- lodash-es: ^4.17.21
- uuid: ^8.3.2
dependencies:
- '@pipedream/platform': 1.5.1
- lodash-es: 4.17.21
- uuid: 8.3.2
+ '@pipedream/platform':
+ specifier: ^1.2.0
+ version: 1.6.6
+ lodash-es:
+ specifier: ^4.17.21
+ version: 4.17.21
+ uuid:
+ specifier: ^8.3.2
+ version: 8.3.2
components/decision_journal:
- specifiers:
- '@pipedream/platform': ^1.5.1
dependencies:
- '@pipedream/platform': 1.5.1
+ '@pipedream/platform':
+ specifier: ^1.5.1
+ version: 1.6.6
- components/deel:
- specifiers: {}
+ components/deel: {}
components/deepgram:
- specifiers:
- '@pipedream/platform': ^1.5.1
dependencies:
- '@pipedream/platform': 1.5.1
+ '@pipedream/platform':
+ specifier: ^1.5.1
+ version: 1.6.6
components/deepimage:
- specifiers:
- '@pipedream/platform': ^3.0.3
- fs: ^0.0.1-security
dependencies:
- '@pipedream/platform': 3.0.3
- fs: 0.0.1-security
+ '@pipedream/platform':
+ specifier: ^3.0.3
+ version: 3.0.3
+ fs:
+ specifier: ^0.0.1-security
+ version: 0.0.1-security
- components/deepl:
- specifiers: {}
+ components/deepl: {}
- components/deepseek:
- specifiers: {}
+ components/deepseek: {}
components/defastra:
- specifiers:
- '@pipedream/platform': ^1.5.1
dependencies:
- '@pipedream/platform': 1.6.2
+ '@pipedream/platform':
+ specifier: ^1.5.1
+ version: 1.6.6
components/deftship:
- specifiers:
- '@pipedream/platform': ^3.0.0
dependencies:
- '@pipedream/platform': 3.0.0
+ '@pipedream/platform':
+ specifier: ^3.0.0
+ version: 3.0.3
- components/degreed:
- specifiers: {}
+ components/degreed: {}
components/delighted:
- specifiers:
- delighted: ^2.1.0
dependencies:
- delighted: 2.1.0
+ delighted:
+ specifier: ^2.1.0
+ version: 2.1.0
components/demio:
- specifiers:
- '@pipedream/platform': ^1.2.0
- dayjs: ^1.11.2
dependencies:
- '@pipedream/platform': 1.5.1
- dayjs: 1.11.10
+ '@pipedream/platform':
+ specifier: ^1.2.0
+ version: 1.6.6
+ dayjs:
+ specifier: ^1.11.2
+ version: 1.11.13
- components/deployhq:
- specifiers: {}
+ components/deployhq: {}
components/deputy:
- specifiers:
- '@pipedream/platform': ^3.0.1
dependencies:
- '@pipedream/platform': 3.0.1
+ '@pipedream/platform':
+ specifier: ^3.0.1
+ version: 3.0.3
components/desktime:
- specifiers:
- '@pipedream/platform': ^1.6.0
dependencies:
- '@pipedream/platform': 1.6.0
+ '@pipedream/platform':
+ specifier: ^1.6.0
+ version: 1.6.6
components/detectify:
- specifiers:
- '@pipedream/platform': ^1.6.5
dependencies:
- '@pipedream/platform': 1.6.5
+ '@pipedream/platform':
+ specifier: ^1.6.5
+ version: 1.6.6
components/detrack:
- specifiers:
- '@pipedream/platform': ^1.1.0
- '@pipedream/types': ^0.1.4
dependencies:
- '@pipedream/platform': 1.5.1
- '@pipedream/types': 0.1.6
+ '@pipedream/platform':
+ specifier: ^1.1.0
+ version: 1.6.6
+ '@pipedream/types':
+ specifier: ^0.1.4
+ version: 0.1.6
components/dev_to:
- specifiers:
- '@pipedream/platform': ^1.2.0
dependencies:
- '@pipedream/platform': 1.5.1
+ '@pipedream/platform':
+ specifier: ^1.2.0
+ version: 1.6.6
- components/device_magic:
- specifiers: {}
+ components/device_magic: {}
components/devrev:
- specifiers:
- '@pipedream/platform': ^1.5.1
dependencies:
- '@pipedream/platform': 1.5.1
+ '@pipedream/platform':
+ specifier: ^1.5.1
+ version: 1.6.6
components/dex:
- specifiers:
- '@pipedream/platform': ^1.6.2
dependencies:
- '@pipedream/platform': 1.6.2
+ '@pipedream/platform':
+ specifier: ^1.6.2
+ version: 1.6.6
components/dexatel:
- specifiers:
- '@pipedream/platform': ^1.5.1
dependencies:
- '@pipedream/platform': 1.6.0
+ '@pipedream/platform':
+ specifier: ^1.5.1
+ version: 1.6.6
components/dext:
- specifiers:
- '@pipedream/platform': ^1.5.1
dependencies:
- '@pipedream/platform': 1.5.1
+ '@pipedream/platform':
+ specifier: ^1.5.1
+ version: 1.6.6
components/diabatix_coldstream:
- specifiers:
- '@pipedream/platform': ^1.5.1
- lodash: ^4.17.21
dependencies:
- '@pipedream/platform': 1.5.1
- lodash: 4.17.21
+ '@pipedream/platform':
+ specifier: ^1.5.1
+ version: 1.6.6
+ lodash:
+ specifier: ^4.17.21
+ version: 4.17.21
- components/dialmycalls:
- specifiers: {}
+ components/dialmycalls: {}
components/dialpad:
- specifiers:
- '@pipedream/helpers': ^1.3.9
- '@pipedream/platform': ^0.10.0
- '@pipedream/types': ^0.1.0
- '@types/node': ^17.0.36
- dependencies:
- '@pipedream/helpers': 1.3.12
- '@pipedream/platform': 0.10.0
+ dependencies:
+ '@pipedream/helpers':
+ specifier: ^1.3.9
+ version: 1.3.12
+ '@pipedream/platform':
+ specifier: ^0.10.0
+ version: 0.10.0
devDependencies:
- '@pipedream/types': 0.1.6
- '@types/node': 17.0.45
+ '@pipedream/types':
+ specifier: ^0.1.0
+ version: 0.1.6
+ '@types/node':
+ specifier: ^17.0.36
+ version: 17.0.45
- components/dictionary_api:
- specifiers: {}
+ components/dictionary_api: {}
components/diffbot:
- specifiers:
- '@pipedream/platform': ^1.6.2
dependencies:
- '@pipedream/platform': 1.6.2
+ '@pipedream/platform':
+ specifier: ^1.6.2
+ version: 1.6.6
components/diffchecker:
- specifiers:
- axios: ^1.6.1
- form-data: ^4.0.0
- fs: ^0.0.1-security
dependencies:
- axios: 1.6.1
- form-data: 4.0.0
- fs: 0.0.1-security
+ axios:
+ specifier: ^1.6.1
+ version: 1.7.7(debug@3.2.7)
+ form-data:
+ specifier: ^4.0.0
+ version: 4.0.1
+ fs:
+ specifier: ^0.0.1-security
+ version: 0.0.1-security
components/diffy:
- specifiers:
- '@pipedream/platform': ^1.5.1
dependencies:
- '@pipedream/platform': 1.5.1
+ '@pipedream/platform':
+ specifier: ^1.5.1
+ version: 1.6.6
- components/digicert:
- specifiers: {}
+ components/digicert: {}
- components/digistore24:
- specifiers: {}
+ components/digistore24: {}
components/digital_ocean:
- specifiers:
- do-wrapper: ^4.5.1
dependencies:
- do-wrapper: 4.5.1
+ do-wrapper:
+ specifier: ^4.5.1
+ version: 4.5.1
components/digitalocean_spaces:
- specifiers:
- '@aws-sdk/client-s3': ^3.231.0
- '@pipedream/aws': ^0.7.0
- '@pipedream/helper_functions': ^0.3.8
- '@pipedream/platform': ^1.2.1
- fs: ^0.0.1-security
- dependencies:
- '@aws-sdk/client-s3': 3.423.0
- '@pipedream/aws': 0.7.0
- '@pipedream/helper_functions': 0.3.12
- '@pipedream/platform': 1.5.1
- fs: 0.0.1-security
+ dependencies:
+ '@aws-sdk/client-s3':
+ specifier: ^3.231.0
+ version: 3.698.0
+ '@pipedream/aws':
+ specifier: ^0.7.0
+ version: 0.7.0(babel-plugin-macros@3.1.0)
+ '@pipedream/helper_functions':
+ specifier: ^0.3.8
+ version: 0.3.13
+ '@pipedream/platform':
+ specifier: ^1.2.1
+ version: 1.6.6
+ fs:
+ specifier: ^0.0.1-security
+ version: 0.0.1-security
components/digitalriver:
- specifiers:
- '@pipedream/platform': ^1.5.1
dependencies:
- '@pipedream/platform': 1.5.1
+ '@pipedream/platform':
+ specifier: ^1.5.1
+ version: 1.6.6
components/dingconnect:
- specifiers:
- '@pipedream/platform': ^1.6.2
dependencies:
- '@pipedream/platform': 1.6.2
+ '@pipedream/platform':
+ specifier: ^1.6.2
+ version: 1.6.6
components/discogs:
- specifiers:
- '@pipedream/platform': ^1.5.1
dependencies:
- '@pipedream/platform': 1.5.1
+ '@pipedream/platform':
+ specifier: ^1.5.1
+ version: 1.6.6
components/discord:
- specifiers:
- '@pipedream/platform': ^1.4.0
dependencies:
- '@pipedream/platform': 1.5.1
+ '@pipedream/platform':
+ specifier: ^1.4.0
+ version: 1.6.6
components/discord_bot:
- specifiers:
- '@pipedream/platform': ^3.0.3
- form-data: ^4.0.0
- lodash.maxby: ^4.6.0
dependencies:
- '@pipedream/platform': 3.0.3
- form-data: 4.0.0
- lodash.maxby: 4.6.0
+ '@pipedream/platform':
+ specifier: ^3.0.3
+ version: 3.0.3
+ form-data:
+ specifier: ^4.0.0
+ version: 4.0.1
+ lodash.maxby:
+ specifier: ^4.6.0
+ version: 4.6.0
components/discourse:
- specifiers:
- '@pipedream/platform': ^1.4.0
- lodash.get: ^4.4.2
- lodash.sortby: ^4.7.0
- nanoid: ^4.0.1
dependencies:
- '@pipedream/platform': 1.5.1
- lodash.get: 4.4.2
- lodash.sortby: 4.7.0
- nanoid: 4.0.2
-
- components/dispatch:
- specifiers: {}
+ '@pipedream/platform':
+ specifier: ^1.4.0
+ version: 1.6.6
+ lodash.get:
+ specifier: ^4.4.2
+ version: 4.4.2
+ lodash.sortby:
+ specifier: ^4.7.0
+ version: 4.7.0
+ nanoid:
+ specifier: ^4.0.1
+ version: 4.0.2
+
+ components/dispatch: {}
components/dnsfilter:
- specifiers:
- '@pipedream/platform': ^1.5.1
dependencies:
- '@pipedream/platform': 1.5.1
+ '@pipedream/platform':
+ specifier: ^1.5.1
+ version: 1.6.6
components/dock_certs:
- specifiers:
- '@pipedream/platform': ^1.5.1
dependencies:
- '@pipedream/platform': 1.5.1
+ '@pipedream/platform':
+ specifier: ^1.5.1
+ version: 1.6.6
- components/docker_hub:
- specifiers: {}
+ components/docker_hub: {}
components/docmosis:
- specifiers:
- '@pipedream/platform': 1.6.2
dependencies:
- '@pipedream/platform': 1.6.2
+ '@pipedream/platform':
+ specifier: 1.6.2
+ version: 1.6.2
components/docnify:
- specifiers:
- '@pipedream/platform': ^3.0.1
dependencies:
- '@pipedream/platform': 3.0.3
+ '@pipedream/platform':
+ specifier: ^3.0.1
+ version: 3.0.3
- components/docraptor:
- specifiers: {}
+ components/docraptor: {}
components/docsautomator:
- specifiers:
- '@pipedream/platform': ^3.0.1
dependencies:
- '@pipedream/platform': 3.0.1
+ '@pipedream/platform':
+ specifier: ^3.0.1
+ version: 3.0.3
components/docsbot_ai:
- specifiers:
- '@pipedream/platform': ^1.5.1
dependencies:
- '@pipedream/platform': 1.5.1
+ '@pipedream/platform':
+ specifier: ^1.5.1
+ version: 1.6.6
- components/docsgenflow:
- specifiers: {}
+ components/docsgenflow: {}
components/docsumo:
- specifiers:
- '@pipedream/platform': ^1.5.1
dependencies:
- '@pipedream/platform': 1.5.1
+ '@pipedream/platform':
+ specifier: ^1.5.1
+ version: 1.6.6
- components/docugenerate:
- specifiers: {}
+ components/docugenerate: {}
components/documenso:
- specifiers:
- '@pipedream/platform': ^3.0.1
dependencies:
- '@pipedream/platform': 3.0.1
+ '@pipedream/platform':
+ specifier: ^3.0.1
+ version: 3.0.3
components/document360:
- specifiers:
- '@pipedream/platform': ^1.5.1
dependencies:
- '@pipedream/platform': 1.5.1
+ '@pipedream/platform':
+ specifier: ^1.5.1
+ version: 1.6.6
components/documenterra:
- specifiers:
- '@pipedream/platform': 2.0.0
dependencies:
- '@pipedream/platform': 2.0.0
+ '@pipedream/platform':
+ specifier: 2.0.0
+ version: 2.0.0
components/documentpro:
- specifiers:
- '@pipedream/platform': ^3.0.0
- form-data: ^4.0.0
dependencies:
- '@pipedream/platform': 3.0.0
- form-data: 4.0.0
+ '@pipedream/platform':
+ specifier: ^3.0.0
+ version: 3.0.3
+ form-data:
+ specifier: ^4.0.0
+ version: 4.0.1
components/documerge:
- specifiers:
- '@pipedream/platform': ^3.0.0
dependencies:
- '@pipedream/platform': 3.0.0
+ '@pipedream/platform':
+ specifier: ^3.0.0
+ version: 3.0.3
components/documint:
- specifiers:
- '@pipedream/platform': ^1.5.1
dependencies:
- '@pipedream/platform': 1.5.1
+ '@pipedream/platform':
+ specifier: ^1.5.1
+ version: 1.6.6
components/docupilot:
- specifiers:
- '@pipedream/platform': ^1.1.0
- '@pipedream/types': ^0.1.4
dependencies:
- '@pipedream/platform': 1.5.1
- '@pipedream/types': 0.1.6
+ '@pipedream/platform':
+ specifier: ^1.1.0
+ version: 1.6.6
+ '@pipedream/types':
+ specifier: ^0.1.4
+ version: 0.1.6
components/docupost:
- specifiers:
- '@pipedream/platform': ^1.6.0
dependencies:
- '@pipedream/platform': 1.6.0
+ '@pipedream/platform':
+ specifier: ^1.6.0
+ version: 1.6.6
- components/docuseal:
- specifiers: {}
+ components/docuseal: {}
components/docusign:
- specifiers:
- '@pipedream/platform': ^3.0.3
dependencies:
- '@pipedream/platform': 3.0.3
+ '@pipedream/platform':
+ specifier: ^3.0.3
+ version: 3.0.3
components/docusign_developer:
- specifiers:
- '@pipedream/platform': ^3.0.3
dependencies:
- '@pipedream/platform': 3.0.3
+ '@pipedream/platform':
+ specifier: ^3.0.3
+ version: 3.0.3
- components/dokan:
- specifiers: {}
+ components/dokan: {}
- components/donedone:
- specifiers: {}
+ components/donedone: {}
- components/donorbox:
- specifiers: {}
+ components/donorbox: {}
- components/doppler:
- specifiers: {}
+ components/doppler: {}
components/doppler_marketing_automation:
- specifiers:
- '@pipedream/platform': ^3.0.3
dependencies:
- '@pipedream/platform': 3.0.3
+ '@pipedream/platform':
+ specifier: ^3.0.3
+ version: 3.0.3
- components/doppler_ops:
- specifiers: {}
+ components/doppler_ops: {}
components/dopplerai:
- specifiers:
- '@pipedream/platform': ^1.6.0
dependencies:
- '@pipedream/platform': 1.6.0
+ '@pipedream/platform':
+ specifier: ^1.6.0
+ version: 1.6.6
- components/dots_:
- specifiers: {}
+ components/dots_: {}
components/dotsimple:
- specifiers:
- '@pipedream/platform': ^3.0.0
dependencies:
- '@pipedream/platform': 3.0.0
+ '@pipedream/platform':
+ specifier: ^3.0.0
+ version: 3.0.3
components/dpd2:
- specifiers:
- '@pipedream/platform': ^2.0.0
dependencies:
- '@pipedream/platform': 2.0.0
+ '@pipedream/platform':
+ specifier: ^2.0.0
+ version: 2.0.0
components/drata:
- specifiers:
- '@pipedream/platform': ^1.4.1
- lodash: ^4.17.21
dependencies:
- '@pipedream/platform': 1.5.1
- lodash: 4.17.21
+ '@pipedream/platform':
+ specifier: ^1.4.1
+ version: 1.6.6
+ lodash:
+ specifier: ^4.17.21
+ version: 4.17.21
- components/drchrono:
- specifiers: {}
+ components/drchrono: {}
- components/dreamhost:
- specifiers: {}
+ components/dreamhost: {}
components/dreamstudio:
- specifiers:
- '@pipedream/platform': ^1.5.1
- form-data: ^4.0.0
- fs: ^0.0.1-security
- got: ^13.0.0
- moment: ^2.29.4
- stream: ^0.0.2
- dependencies:
- '@pipedream/platform': 1.5.1
- form-data: 4.0.0
- fs: 0.0.1-security
- got: 13.0.0
- moment: 2.29.4
- stream: 0.0.2
+ dependencies:
+ '@pipedream/platform':
+ specifier: ^1.5.1
+ version: 1.6.6
+ form-data:
+ specifier: ^4.0.0
+ version: 4.0.1
+ fs:
+ specifier: ^0.0.1-security
+ version: 0.0.1-security
+ got:
+ specifier: ^13.0.0
+ version: 13.0.0
+ moment:
+ specifier: ^2.29.4
+ version: 2.30.1
+ stream:
+ specifier: ^0.0.2
+ version: 0.0.2
components/dribbble:
- specifiers:
- '@pipedream/platform': ^1.2.0
dependencies:
- '@pipedream/platform': 1.5.1
+ '@pipedream/platform':
+ specifier: ^1.2.0
+ version: 1.6.6
- components/drimify:
- specifiers: {}
+ components/drimify: {}
components/drip:
- specifiers:
- '@pipedream/platform': ^1.2.1
dependencies:
- '@pipedream/platform': 1.5.1
+ '@pipedream/platform':
+ specifier: ^1.2.1
+ version: 1.6.6
- components/dripcel:
- specifiers: {}
+ components/dripcel: {}
components/dromo:
- specifiers:
- '@pipedream/platform': ^1.5.1
dependencies:
- '@pipedream/platform': 1.5.1
+ '@pipedream/platform':
+ specifier: ^1.5.1
+ version: 1.6.6
components/dropboard:
- specifiers:
- '@pipedream/platform': ^3.0.0
dependencies:
- '@pipedream/platform': 3.0.0
+ '@pipedream/platform':
+ specifier: ^3.0.0
+ version: 3.0.3
components/dropbox:
- specifiers:
- '@types/node-fetch': ^2.5.7
- dropbox: ^10.34.0
- got: ^14.0.0
- isomorphic-fetch: ^3.0.0
- lodash: ^4.17.21
- tmp-promise: ^3.0.3
- dependencies:
- '@types/node-fetch': 2.6.6
- dropbox: 10.34.0_@types+node-fetch@2.6.6
- got: 14.0.0
- isomorphic-fetch: 3.0.0
- lodash: 4.17.21
- tmp-promise: 3.0.3
+ dependencies:
+ '@types/node-fetch':
+ specifier: ^2.5.7
+ version: 2.6.12
+ dropbox:
+ specifier: ^10.34.0
+ version: 10.34.0(@types/node-fetch@2.6.12)
+ got:
+ specifier: ^14.0.0
+ version: 14.4.4
+ isomorphic-fetch:
+ specifier: ^3.0.0
+ version: 3.0.0
+ lodash:
+ specifier: ^4.17.21
+ version: 4.17.21
+ tmp-promise:
+ specifier: ^3.0.3
+ version: 3.0.3
components/dropcontact:
- specifiers:
- '@pipedream/platform': ^1.5.1
dependencies:
- '@pipedream/platform': 1.5.1
+ '@pipedream/platform':
+ specifier: ^1.5.1
+ version: 1.6.6
components/dropinblog:
- specifiers:
- '@pipedream/platform': ^3.0.0
dependencies:
- '@pipedream/platform': 3.0.0
+ '@pipedream/platform':
+ specifier: ^3.0.0
+ version: 3.0.3
components/dropmark:
- specifiers:
- '@pipedream/platform': ^1.6.0
dependencies:
- '@pipedream/platform': 1.6.0
+ '@pipedream/platform':
+ specifier: ^1.6.0
+ version: 1.6.6
- components/droxy:
- specifiers: {}
+ components/droxy: {}
components/dub:
- specifiers:
- '@pipedream/platform': ^1.5.1
dependencies:
- '@pipedream/platform': 1.5.1
+ '@pipedream/platform':
+ specifier: ^1.5.1
+ version: 1.6.6
components/dust:
- specifiers:
- '@pipedream/platform': ^3.0.1
dependencies:
- '@pipedream/platform': 3.0.3
+ '@pipedream/platform':
+ specifier: ^3.0.1
+ version: 3.0.3
components/dux_soup:
- specifiers:
- '@pipedream/platform': ^1.6.0
- jssha: ^3.3.1
dependencies:
- '@pipedream/platform': 1.6.0
- jssha: 3.3.1
+ '@pipedream/platform':
+ specifier: ^1.6.0
+ version: 1.6.6
+ jssha:
+ specifier: ^3.3.1
+ version: 3.3.1
components/dynalist:
- specifiers:
- '@pipedream/platform': ^1.5.1
dependencies:
- '@pipedream/platform': 1.6.2
+ '@pipedream/platform':
+ specifier: ^1.5.1
+ version: 1.6.6
components/dynamics_365_business_central_api:
- specifiers:
- '@pipedream/platform': ^1.6.0
dependencies:
- '@pipedream/platform': 1.6.0
+ '@pipedream/platform':
+ specifier: ^1.6.0
+ version: 1.6.6
components/dynapictures:
- specifiers:
- '@pipedream/platform': ^1.5.1
dependencies:
- '@pipedream/platform': 1.5.1
+ '@pipedream/platform':
+ specifier: ^1.5.1
+ version: 1.6.6
- components/dynatrace_api:
- specifiers: {}
+ components/dynatrace_api: {}
components/e2b:
- specifiers:
- '@e2b/code-interpreter': ^1.0.3
dependencies:
- '@e2b/code-interpreter': 1.0.4
+ '@e2b/code-interpreter':
+ specifier: ^1.0.3
+ version: 1.0.4
- components/e_conomic:
- specifiers: {}
+ components/e_conomic: {}
- components/eagle_doc:
- specifiers: {}
+ components/eagle_doc: {}
components/easy_peasy_ai:
- specifiers:
- '@pipedream/platform': 3.0.3
dependencies:
- '@pipedream/platform': 3.0.3
+ '@pipedream/platform':
+ specifier: 3.0.3
+ version: 3.0.3
- components/easy_project:
- specifiers: {}
+ components/easy_project: {}
- components/easy_projects:
- specifiers: {}
+ components/easy_projects: {}
- components/easycsv:
- specifiers: {}
+ components/easycsv: {}
- components/easyhire:
- specifiers: {}
+ components/easyhire: {}
components/easyly:
- specifiers:
- '@pipedream/platform': ^1.5.1
- uuid: ^9.0.1
dependencies:
- '@pipedream/platform': 1.5.1
- uuid: 9.0.1
+ '@pipedream/platform':
+ specifier: ^1.5.1
+ version: 1.6.6
+ uuid:
+ specifier: ^9.0.1
+ version: 9.0.1
- components/easypost:
- specifiers: {}
+ components/easypost: {}
components/easysendy:
- specifiers:
- '@pipedream/platform': ^1.5.1
dependencies:
- '@pipedream/platform': 1.6.0
+ '@pipedream/platform':
+ specifier: ^1.5.1
+ version: 1.6.6
- components/easyship:
- specifiers: {}
+ components/easyship: {}
components/echtpost_postcards:
- specifiers:
- '@pipedream/platform': ^1.5.1
dependencies:
- '@pipedream/platform': 1.5.1
+ '@pipedream/platform':
+ specifier: ^1.5.1
+ version: 1.6.6
- components/ecologi:
- specifiers: {}
+ components/ecologi: {}
components/ecwid:
- specifiers:
- '@pipedream/platform': ^1.2.0
dependencies:
- '@pipedream/platform': 1.5.1
+ '@pipedream/platform':
+ specifier: ^1.2.0
+ version: 1.6.6
- components/edapp:
- specifiers: {}
+ components/edapp: {}
components/eden_ai:
- specifiers:
- '@pipedream/platform': ^1.5.1
- form-data: ^4.0.0
dependencies:
- '@pipedream/platform': 1.5.1
- form-data: 4.0.0
+ '@pipedream/platform':
+ specifier: ^1.5.1
+ version: 1.6.6
+ form-data:
+ specifier: ^4.0.0
+ version: 4.0.1
- components/educateme:
- specifiers: {}
+ components/educateme: {}
- components/edusign:
- specifiers: {}
+ components/edusign: {}
- components/efinder:
- specifiers: {}
+ components/efinder: {}
- components/elastic_email:
- specifiers: {}
+ components/elastic_email: {}
- components/elasticemail:
- specifiers: {}
+ components/elasticemail: {}
components/elevenlabs:
- specifiers:
- '@pipedream/platform': ^1.6.0
- form-data: ^4.0.0
dependencies:
- '@pipedream/platform': 1.6.0
- form-data: 4.0.0
+ '@pipedream/platform':
+ specifier: ^1.6.0
+ version: 1.6.6
+ form-data:
+ specifier: ^4.0.0
+ version: 4.0.1
components/elmah_io:
- specifiers:
- '@pipedream/platform': ^1.2.0
dependencies:
- '@pipedream/platform': 1.5.1
+ '@pipedream/platform':
+ specifier: ^1.2.0
+ version: 1.6.6
- components/elopage:
- specifiers: {}
+ components/elopage: {}
- components/elorus:
- specifiers: {}
+ components/elorus: {}
- components/email_verifier_api:
- specifiers: {}
+ components/email_verifier_api: {}
components/emailable:
- specifiers:
- '@pipedream/platform': ^1.5.1
dependencies:
- '@pipedream/platform': 1.5.1
+ '@pipedream/platform':
+ specifier: ^1.5.1
+ version: 1.6.6
components/emaillistverify:
- specifiers:
- '@pipedream/platform': ^3.0.3
dependencies:
- '@pipedream/platform': 3.0.3
+ '@pipedream/platform':
+ specifier: ^3.0.3
+ version: 3.0.3
components/emailoctopus:
- specifiers:
- '@pipedream/platform': ^1.3.0
dependencies:
- '@pipedream/platform': 1.5.1
+ '@pipedream/platform':
+ specifier: ^1.3.0
+ version: 1.6.6
- components/emelia:
- specifiers: {}
+ components/emelia: {}
- components/encharge:
- specifiers: {}
+ components/encharge: {}
components/encodian:
- specifiers:
- '@pipedream/platform': ^1.6.4
dependencies:
- '@pipedream/platform': 1.6.4
+ '@pipedream/platform':
+ specifier: ^1.6.4
+ version: 1.6.6
- components/end:
- specifiers: {}
+ components/end: {}
components/endorsal:
- specifiers:
- '@pipedream/platform': ^1.5.1
dependencies:
- '@pipedream/platform': 1.5.1
+ '@pipedream/platform':
+ specifier: ^1.5.1
+ version: 1.6.6
components/enedis:
- specifiers:
- '@pipedream/platform': ^1.2.1
dependencies:
- '@pipedream/platform': 1.5.1
+ '@pipedream/platform':
+ specifier: ^1.2.1
+ version: 1.6.6
- components/engage:
- specifiers: {}
+ components/engage: {}
- components/enigma:
- specifiers: {}
+ components/enigma: {}
- components/enormail:
- specifiers: {}
+ components/enormail: {}
components/enrichley:
- specifiers:
- '@pipedream/platform': ^3.0.3
dependencies:
- '@pipedream/platform': 3.0.3
+ '@pipedream/platform':
+ specifier: ^3.0.3
+ version: 3.0.3
components/enrow:
- specifiers:
- '@pipedream/platform': ^1.6.2
dependencies:
- '@pipedream/platform': 1.6.2
+ '@pipedream/platform':
+ specifier: ^1.6.2
+ version: 1.6.6
components/envoy:
- specifiers:
- '@pipedream/platform': ^1.2.0
dependencies:
- '@pipedream/platform': 1.5.1
+ '@pipedream/platform':
+ specifier: ^1.2.0
+ version: 1.6.6
- components/eodhd_apis:
- specifiers: {}
+ components/eodhd_apis: {}
- components/epsy:
- specifiers: {}
+ components/epsy: {}
- components/equifax:
- specifiers: {}
+ components/equifax: {}
- components/error:
- specifiers: {}
+ components/error: {}
- components/esendex:
- specifiers: {}
+ components/esendex: {}
components/esignatures_io:
- specifiers:
- '@pipedream/platform': ^1.1.0
dependencies:
- '@pipedream/platform': 1.5.1
+ '@pipedream/platform':
+ specifier: ^1.1.0
+ version: 1.6.6
components/espocrm:
- specifiers:
- '@pipedream/platform': ^1.5.1
dependencies:
- '@pipedream/platform': 1.5.1
+ '@pipedream/platform':
+ specifier: ^1.5.1
+ version: 1.6.6
components/esputnik:
- specifiers:
- '@pipedream/platform': ^1.2.0
dependencies:
- '@pipedream/platform': 1.5.1
+ '@pipedream/platform':
+ specifier: ^1.2.0
+ version: 1.6.6
components/estreamdesk:
- specifiers:
- '@pipedream/platform': ^1.2.0
- xml2json-light: ^1.0.6
dependencies:
- '@pipedream/platform': 1.5.1
- xml2json-light: 1.0.6
+ '@pipedream/platform':
+ specifier: ^1.2.0
+ version: 1.6.6
+ xml2json-light:
+ specifier: ^1.0.6
+ version: 1.0.6
- components/ethereum:
- specifiers: {}
+ components/ethereum: {}
components/etsy:
- specifiers:
- '@pipedream/platform': ^1.5.1
dependencies:
- '@pipedream/platform': 1.5.1
+ '@pipedream/platform':
+ specifier: ^1.5.1
+ version: 1.6.6
components/eventbrite:
- specifiers:
- '@pipedream/platform': ^1.2.1
- lodash: ^4.17.21
- timezones-list: ^3.0.2
dependencies:
- '@pipedream/platform': 1.5.1
- lodash: 4.17.21
- timezones-list: 3.0.2
+ '@pipedream/platform':
+ specifier: ^1.2.1
+ version: 1.6.6
+ lodash:
+ specifier: ^4.17.21
+ version: 4.17.21
+ timezones-list:
+ specifier: ^3.0.2
+ version: 3.0.3
- components/eventee:
- specifiers: {}
+ components/eventee: {}
components/everhour:
- specifiers:
- '@pipedream/platform': ^3.0.3
dependencies:
- '@pipedream/platform': 3.0.3
+ '@pipedream/platform':
+ specifier: ^3.0.3
+ version: 3.0.3
components/eversign:
- specifiers:
- '@pipedream/platform': ^1.1.1
- crypto: ^1.0.1
dependencies:
- '@pipedream/platform': 1.5.1
- crypto: 1.0.1
+ '@pipedream/platform':
+ specifier: ^1.1.1
+ version: 1.6.6
+ crypto:
+ specifier: ^1.0.1
+ version: 1.0.1
components/ewebinar:
- specifiers:
- '@pipedream/platform': ^1.5.1
dependencies:
- '@pipedream/platform': 1.5.1
+ '@pipedream/platform':
+ specifier: ^1.5.1
+ version: 1.6.6
components/exact:
- specifiers:
- '@pipedream/platform': ^1.4.1
dependencies:
- '@pipedream/platform': 1.5.1
+ '@pipedream/platform':
+ specifier: ^1.4.1
+ version: 1.6.6
components/exhibitday:
- specifiers:
- '@pipedream/platform': ^1.5.1
dependencies:
- '@pipedream/platform': 1.5.1
+ '@pipedream/platform':
+ specifier: ^1.5.1
+ version: 1.6.6
components/expedy:
- specifiers:
- '@pipedream/platform': ^1.6.0
dependencies:
- '@pipedream/platform': 1.6.0
+ '@pipedream/platform':
+ specifier: ^1.6.0
+ version: 1.6.6
components/expensify:
- specifiers:
- '@pipedream/platform': ^1.1.0
- '@pipedream/types': ^0.1.3
- qs: ^6.11.0
dependencies:
- '@pipedream/platform': 1.5.1
- '@pipedream/types': 0.1.6
- qs: 6.11.2
+ '@pipedream/platform':
+ specifier: ^1.1.0
+ version: 1.6.6
+ '@pipedream/types':
+ specifier: ^0.1.3
+ version: 0.1.6
+ qs:
+ specifier: ^6.11.0
+ version: 6.13.1
components/expofp:
- specifiers:
- '@pipedream/platform': ^1.1.1
dependencies:
- '@pipedream/platform': 1.5.1
+ '@pipedream/platform':
+ specifier: ^1.1.1
+ version: 1.6.6
- components/extensiv_integration_manager:
- specifiers: {}
+ components/extensiv_integration_manager: {}
- components/eyepop_ai:
- specifiers: {}
+ components/eyepop_ai: {}
- components/ez_texting:
- specifiers: {}
+ components/ez_texting: {}
- components/ez_texting_:
- specifiers: {}
+ components/ez_texting_: {}
components/ezeep_blue:
- specifiers:
- '@pipedream/platform': ^1.5.1
- form-data: ^4.0.0
dependencies:
- '@pipedream/platform': 1.5.1
- form-data: 4.0.0
+ '@pipedream/platform':
+ specifier: ^1.5.1
+ version: 1.6.6
+ form-data:
+ specifier: ^4.0.0
+ version: 4.0.1
components/f15five:
- specifiers:
- '@pipedream/platform': ^1.5.1
dependencies:
- '@pipedream/platform': 1.5.1
+ '@pipedream/platform':
+ specifier: ^1.5.1
+ version: 1.6.6
- components/facebook_conversions:
- specifiers: {}
+ components/facebook_conversions: {}
components/facebook_groups:
- specifiers:
- '@pipedream/platform': ^1.5.1
dependencies:
- '@pipedream/platform': 1.5.1
+ '@pipedream/platform':
+ specifier: ^1.5.1
+ version: 1.6.6
- components/facebook_lead_ads:
- specifiers: {}
+ components/facebook_lead_ads: {}
components/facebook_marketing:
- specifiers:
- '@pipedream/platform': ^1.6.0
dependencies:
- '@pipedream/platform': 1.6.0
+ '@pipedream/platform':
+ specifier: ^1.6.0
+ version: 1.6.6
components/facebook_pages:
- specifiers:
- '@pipedream/platform': ^1.5.1
dependencies:
- '@pipedream/platform': 1.5.1
+ '@pipedream/platform':
+ specifier: ^1.5.1
+ version: 1.6.6
- components/faceup:
- specifiers: {}
+ components/faceup: {}
- components/facturadirecta:
- specifiers: {}
+ components/facturadirecta: {}
- components/faire:
- specifiers: {}
+ components/faire: {}
components/faktoora:
- specifiers:
- '@pipedream/platform': ^1.5.1
- fs: ^0.0.1-security
dependencies:
- '@pipedream/platform': 1.6.2
- fs: 0.0.1-security
+ '@pipedream/platform':
+ specifier: ^1.5.1
+ version: 1.6.6
+ fs:
+ specifier: ^0.0.1-security
+ version: 0.0.1-security
components/fakturoid:
- specifiers:
- '@pipedream/platform': ^3.0.3
dependencies:
- '@pipedream/platform': 3.0.3
+ '@pipedream/platform':
+ specifier: ^3.0.3
+ version: 3.0.3
components/fal_ai:
- specifiers:
- '@pipedream/platform': 3.0.3
dependencies:
- '@pipedream/platform': 3.0.3
+ '@pipedream/platform':
+ specifier: 3.0.3
+ version: 3.0.3
components/faraday:
- specifiers:
- '@pipedream/platform': ^1.6.0
dependencies:
- '@pipedream/platform': 1.6.0
+ '@pipedream/platform':
+ specifier: ^1.6.0
+ version: 1.6.6
- components/fastfield_mobile_forms:
- specifiers: {}
+ components/fastfield_mobile_forms: {}
- components/fatture_in_cloud:
- specifiers: {}
+ components/fatture_in_cloud: {}
components/faunadb:
- specifiers:
- '@pipedream/platform': ^1.2.0
- faunadb: ^4.5.4
- lodash: ^4.17.21
dependencies:
- '@pipedream/platform': 1.5.1
- faunadb: 4.8.0
- lodash: 4.17.21
+ '@pipedream/platform':
+ specifier: ^1.2.0
+ version: 1.6.6
+ faunadb:
+ specifier: ^4.5.4
+ version: 4.8.1
+ lodash:
+ specifier: ^4.17.21
+ version: 4.17.21
- components/favro:
- specifiers: {}
+ components/favro: {}
- components/fedex:
- specifiers: {}
+ components/fedex: {}
components/feedbin:
- specifiers:
- '@pipedream/platform': ^1.2.0
dependencies:
- '@pipedream/platform': 1.5.1
+ '@pipedream/platform':
+ specifier: ^1.2.0
+ version: 1.6.6
components/fibery:
- specifiers:
- '@pipedream/platform': ^1.3.0
dependencies:
- '@pipedream/platform': 1.5.1
+ '@pipedream/platform':
+ specifier: ^1.3.0
+ version: 1.6.6
components/fidel_api:
- specifiers:
- '@pipedream/platform': ^1.5.1
- crypto: ^1.0.1
dependencies:
- '@pipedream/platform': 1.5.1
- crypto: 1.0.1
+ '@pipedream/platform':
+ specifier: ^1.5.1
+ version: 1.6.6
+ crypto:
+ specifier: ^1.0.1
+ version: 1.0.1
components/figma:
- specifiers:
- '@pipedream/platform': ^1.6.1
dependencies:
- '@pipedream/platform': 1.6.2
+ '@pipedream/platform':
+ specifier: ^1.6.1
+ version: 1.6.6
- components/file_store:
- specifiers: {}
+ components/file_store: {}
components/fileforge:
- specifiers:
- '@pipedream/platform': ^3.0.1
- form-data: ^4.0.0
dependencies:
- '@pipedream/platform': 3.0.3
- form-data: 4.0.0
+ '@pipedream/platform':
+ specifier: ^3.0.1
+ version: 3.0.3
+ form-data:
+ specifier: ^4.0.0
+ version: 4.0.1
components/filestack:
- specifiers:
- '@pipedream/platform': ^1.6.0
dependencies:
- '@pipedream/platform': 1.6.0
+ '@pipedream/platform':
+ specifier: ^1.6.0
+ version: 1.6.6
components/fillout:
- specifiers:
- '@pipedream/platform': ^3.0.0
dependencies:
- '@pipedream/platform': 3.0.0
+ '@pipedream/platform':
+ specifier: ^3.0.0
+ version: 3.0.3
components/filter:
- specifiers:
- '@pipedream/platform': ^1.1.1
dependencies:
- '@pipedream/platform': 1.5.1
+ '@pipedream/platform':
+ specifier: ^1.1.1
+ version: 1.6.6
- components/finage:
- specifiers: {}
+ components/finage: {}
components/findymail:
- specifiers:
- '@pipedream/platform': ^1.6.0
dependencies:
- '@pipedream/platform': 1.6.0
+ '@pipedream/platform':
+ specifier: ^1.6.0
+ version: 1.6.6
- components/finerworks:
- specifiers: {}
+ components/finerworks: {}
- components/fingertip:
- specifiers: {}
+ components/fingertip: {}
components/finmei:
- specifiers:
- '@pipedream/platform': ^1.6.1
dependencies:
- '@pipedream/platform': 1.6.2
+ '@pipedream/platform':
+ specifier: ^1.6.1
+ version: 1.6.6
- components/finmo:
- specifiers: {}
+ components/finmo: {}
- components/finnhub:
- specifiers: {}
+ components/finnhub: {}
components/firebase_admin_sdk:
- specifiers:
- '@firebase/app-compat': ^0.1.25
- '@firebase/app-types': ^0.7.0
- '@pipedream/platform': ^0.9.0
- firebase-admin: ^10.0.1
- google-auth-library: ^7.11.0
- dependencies:
- '@firebase/app-compat': 0.1.39
- '@firebase/app-types': 0.7.0
- '@pipedream/platform': 0.9.0
- firebase-admin: 10.3.0_@firebase+app-types@0.7.0
- google-auth-library: 7.14.1
+ dependencies:
+ '@firebase/app-compat':
+ specifier: ^0.1.25
+ version: 0.1.39
+ '@firebase/app-types':
+ specifier: ^0.7.0
+ version: 0.7.0
+ '@pipedream/platform':
+ specifier: ^0.9.0
+ version: 0.9.0
+ firebase-admin:
+ specifier: ^10.0.1
+ version: 10.3.0(@firebase/app-types@0.7.0)
+ google-auth-library:
+ specifier: ^7.11.0
+ version: 7.14.1
components/fireberry:
- specifiers:
- '@pipedream/platform': ^1.6.0
dependencies:
- '@pipedream/platform': 1.6.0
+ '@pipedream/platform':
+ specifier: ^1.6.0
+ version: 1.6.6
components/firecrawl:
- specifiers:
- '@pipedream/platform': ^3.0.0
dependencies:
- '@pipedream/platform': 3.0.0
+ '@pipedream/platform':
+ specifier: ^3.0.0
+ version: 3.0.3
components/firefish:
- specifiers:
- '@pipedream/platform': ^3.0.1
dependencies:
- '@pipedream/platform': 3.0.1
+ '@pipedream/platform':
+ specifier: ^3.0.1
+ version: 3.0.3
components/fireflies:
- specifiers:
- '@pipedream/platform': ^1.6.2
dependencies:
- '@pipedream/platform': 1.6.2
+ '@pipedream/platform':
+ specifier: ^1.6.2
+ version: 1.6.6
- components/firmalyzer_iotvas:
- specifiers: {}
+ components/firmalyzer_iotvas: {}
- components/firmao:
- specifiers: {}
+ components/firmao: {}
- components/fiserv:
- specifiers: {}
+ components/fiserv: {}
- components/fivetran:
- specifiers: {}
+ components/fivetran: {}
- components/fixer_io:
- specifiers: {}
+ components/fixer_io: {}
components/flash_by_velora_ai:
- specifiers:
- '@pipedream/platform': 3.0.3
dependencies:
- '@pipedream/platform': 3.0.3
+ '@pipedream/platform':
+ specifier: 3.0.3
+ version: 3.0.3
components/flexisign:
- specifiers:
- '@pipedream/platform': ^3.0.3
dependencies:
- '@pipedream/platform': 3.0.3
+ '@pipedream/platform':
+ specifier: ^3.0.3
+ version: 3.0.3
components/flexmail:
- specifiers:
- '@pipedream/platform': ^1.5.1
- md5: ^2.3.0
dependencies:
- '@pipedream/platform': 1.5.1
- md5: 2.3.0
+ '@pipedream/platform':
+ specifier: ^1.5.1
+ version: 1.6.6
+ md5:
+ specifier: ^2.3.0
+ version: 2.3.0
components/flipando:
- specifiers:
- '@pipedream/platform': ^1.6.5
- form-data: ^4.0.0
dependencies:
- '@pipedream/platform': 1.6.5
- form-data: 4.0.0
+ '@pipedream/platform':
+ specifier: ^1.6.5
+ version: 1.6.6
+ form-data:
+ specifier: ^4.0.0
+ version: 4.0.1
components/flippingbook:
- specifiers:
- '@pipedream/platform': ^2.0.0
dependencies:
- '@pipedream/platform': 2.0.0
+ '@pipedream/platform':
+ specifier: ^2.0.0
+ version: 2.0.0
- components/float:
- specifiers: {}
+ components/float: {}
components/flodesk:
- specifiers:
- '@pipedream/platform': ^1.5.1
- lodash: ^4.17.21
dependencies:
- '@pipedream/platform': 1.5.1
- lodash: 4.17.21
+ '@pipedream/platform':
+ specifier: ^1.5.1
+ version: 1.6.6
+ lodash:
+ specifier: ^4.17.21
+ version: 4.17.21
- components/florm:
- specifiers: {}
+ components/florm: {}
components/flowiseai:
- specifiers:
- '@pipedream/platform': ^1.6.0
dependencies:
- '@pipedream/platform': 1.6.0
+ '@pipedream/platform':
+ specifier: ^1.6.0
+ version: 1.6.6
- components/flowla:
- specifiers: {}
+ components/flowla: {}
- components/fluent_support:
- specifiers: {}
+ components/fluent_support: {}
- components/fluidforms:
- specifiers: {}
+ components/fluidforms: {}
components/flutterwave:
- specifiers:
- '@pipedream/platform': ^1.5.1
dependencies:
- '@pipedream/platform': 1.5.1
+ '@pipedream/platform':
+ specifier: ^1.5.1
+ version: 1.6.6
- components/fluxguard:
- specifiers: {}
+ components/fluxguard: {}
components/fly_io:
- specifiers:
- '@pipedream/platform': 1.6.5
dependencies:
- '@pipedream/platform': 1.6.5
+ '@pipedream/platform':
+ specifier: 1.6.5
+ version: 1.6.5
- components/focuster:
- specifiers: {}
+ components/focuster: {}
components/fogbugz:
- specifiers:
- '@pipedream/platform': ^1.5.1
dependencies:
- '@pipedream/platform': 1.6.0
+ '@pipedream/platform':
+ specifier: ^1.5.1
+ version: 1.6.6
- components/follow_up_boss:
- specifiers: {}
+ components/follow_up_boss: {}
components/fomo:
- specifiers:
- '@pipedream/platform': ^1.2.1
dependencies:
- '@pipedream/platform': 1.5.1
+ '@pipedream/platform':
+ specifier: ^1.2.1
+ version: 1.6.6
components/forcemanager:
- specifiers:
- '@pipedream/platform': ^1.6.4
dependencies:
- '@pipedream/platform': 1.6.4
+ '@pipedream/platform':
+ specifier: ^1.6.4
+ version: 1.6.6
- components/form_io:
- specifiers: {}
+ components/form_io: {}
- components/formaloo:
- specifiers: {}
+ components/formaloo: {}
components/formatting:
- specifiers:
- '@pipedream/platform': ^1.2.1
- '@pipedream/types': ^0.1.4
- html-to-text: ^8.2.1
- linkedom: ^0.14.26
- pluralize: ^8.0.0
- showdown: ^2.1.0
- sugar: ^2.0.6
- title-case: ^3.0.3
- dependencies:
- '@pipedream/platform': 1.5.1
- '@pipedream/types': 0.1.6
- html-to-text: 8.2.1
- linkedom: 0.14.26
- pluralize: 8.0.0
- showdown: 2.1.0
- sugar: 2.0.6
- title-case: 3.0.3
+ dependencies:
+ '@pipedream/platform':
+ specifier: ^1.2.1
+ version: 1.6.6
+ '@pipedream/types':
+ specifier: ^0.1.4
+ version: 0.1.6
+ html-to-text:
+ specifier: ^8.2.1
+ version: 8.2.1
+ linkedom:
+ specifier: ^0.14.26
+ version: 0.14.26
+ pluralize:
+ specifier: ^8.0.0
+ version: 8.0.0
+ showdown:
+ specifier: ^2.1.0
+ version: 2.1.0
+ sugar:
+ specifier: ^2.0.6
+ version: 2.0.6
+ title-case:
+ specifier: ^3.0.3
+ version: 3.0.3
components/formbricks:
- specifiers:
- '@pipedream/platform': ^1.5.1
dependencies:
- '@pipedream/platform': 1.5.1
+ '@pipedream/platform':
+ specifier: ^1.5.1
+ version: 1.6.6
- components/formcan:
- specifiers: {}
+ components/formcan: {}
components/formcarry:
- specifiers:
- '@pipedream/platform': ^3.0.3
dependencies:
- '@pipedream/platform': 3.0.3
+ '@pipedream/platform':
+ specifier: ^3.0.3
+ version: 3.0.3
- components/formdesk:
- specifiers: {}
+ components/formdesk: {}
- components/formidable_forms:
- specifiers: {}
+ components/formidable_forms: {}
components/formpress:
- specifiers:
- '@pipedream/platform': ^1.6.0
dependencies:
- '@pipedream/platform': 1.6.0
+ '@pipedream/platform':
+ specifier: ^1.6.0
+ version: 1.6.6
- components/forms_on_fire:
- specifiers: {}
+ components/forms_on_fire: {}
- components/formsite:
- specifiers: {}
+ components/formsite: {}
components/formstack:
- specifiers:
- '@pipedream/platform': ^1.2.0
dependencies:
- '@pipedream/platform': 1.5.1
+ '@pipedream/platform':
+ specifier: ^1.2.0
+ version: 1.6.6
components/formstack_documents:
- specifiers:
- '@pipedream/platform': ^1.5.1
dependencies:
- '@pipedream/platform': 1.5.1
+ '@pipedream/platform':
+ specifier: ^1.5.1
+ version: 1.6.6
components/foursquare:
- specifiers:
- '@pipedream/platform': ^1.6.2
dependencies:
- '@pipedream/platform': 1.6.4
+ '@pipedream/platform':
+ specifier: ^1.6.2
+ version: 1.6.6
- components/foxy:
- specifiers: {}
+ components/foxy: {}
components/fractel:
- specifiers:
- '@pipedream/platform': ^1.6.5
dependencies:
- '@pipedream/platform': 1.6.5
+ '@pipedream/platform':
+ specifier: ^1.6.5
+ version: 1.6.6
components/frame:
- specifiers:
- '@pipedream/platform': ^1.6.1
dependencies:
- '@pipedream/platform': 1.6.2
+ '@pipedream/platform':
+ specifier: ^1.6.1
+ version: 1.6.6
- components/franconnect:
- specifiers: {}
+ components/franconnect: {}
components/fraudlabs_pro:
- specifiers:
- fraudlabspro-nodejs: ^3.0.0
dependencies:
- fraudlabspro-nodejs: 3.0.0
+ fraudlabspro-nodejs:
+ specifier: ^3.0.0
+ version: 3.0.0
- components/freedcamp:
- specifiers: {}
+ components/freedcamp: {}
- components/freshbooks:
- specifiers: {}
+ components/freshbooks: {}
components/freshdesk:
- specifiers:
- '@pipedream/platform': ^1.2.0
- async-retry: ^1.3.3
- moment: 2.29.4
dependencies:
- '@pipedream/platform': 1.5.1
- async-retry: 1.3.3
- moment: 2.29.4
+ '@pipedream/platform':
+ specifier: ^1.2.0
+ version: 1.6.6
+ async-retry:
+ specifier: ^1.3.3
+ version: 1.3.3
+ moment:
+ specifier: 2.29.4
+ version: 2.29.4
components/freshlearn:
- specifiers:
- '@pipedream/platform': ^1.5.1
dependencies:
- '@pipedream/platform': 1.5.1
+ '@pipedream/platform':
+ specifier: ^1.5.1
+ version: 1.6.6
components/freshmarketer:
- specifiers:
- '@pipedream/platform': ^1.5.1
dependencies:
- '@pipedream/platform': 1.6.0
+ '@pipedream/platform':
+ specifier: ^1.5.1
+ version: 1.6.6
- components/freshsales:
- specifiers: {}
+ components/freshsales: {}
components/freshservice:
- specifiers:
- '@pipedream/platform': ^1.5.1
dependencies:
- '@pipedream/platform': 1.5.1
+ '@pipedream/platform':
+ specifier: ^1.5.1
+ version: 1.6.6
components/frontapp:
- specifiers:
- '@pipedream/platform': ^0.10.0
- form-data: ^4.0.0
dependencies:
- '@pipedream/platform': 0.10.0
- form-data: 4.0.0
+ '@pipedream/platform':
+ specifier: ^0.10.0
+ version: 0.10.0
+ form-data:
+ specifier: ^4.0.0
+ version: 4.0.1
components/frontegg:
- specifiers:
- '@pipedream/platform': ^1.6.0
dependencies:
- '@pipedream/platform': 1.6.0
+ '@pipedream/platform':
+ specifier: ^1.6.0
+ version: 1.6.6
components/ftrack:
- specifiers:
- '@pipedream/platform': ^1.5.1
dependencies:
- '@pipedream/platform': 1.5.1
+ '@pipedream/platform':
+ specifier: ^1.5.1
+ version: 1.6.6
components/full_contact:
- specifiers:
- '@pipedream/platform': ^1.5.1
dependencies:
- '@pipedream/platform': 1.5.1
+ '@pipedream/platform':
+ specifier: ^1.5.1
+ version: 1.6.6
components/fullenrich:
- specifiers:
- '@pipedream/platform': 3.0.3
dependencies:
- '@pipedream/platform': 3.0.3
+ '@pipedream/platform':
+ specifier: 3.0.3
+ version: 3.0.3
components/fullstory:
- specifiers:
- '@pipedream/platform': ^1.1.1
- crypto-js: ^4.1.1
dependencies:
- '@pipedream/platform': 1.5.1
- crypto-js: 4.1.1
+ '@pipedream/platform':
+ specifier: ^1.1.1
+ version: 1.6.6
+ crypto-js:
+ specifier: ^4.1.1
+ version: 4.2.0
- components/function:
- specifiers: {}
+ components/function: {}
- components/funnelcockpit:
- specifiers: {}
+ components/funnelcockpit: {}
components/gagelist:
- specifiers:
- '@pipedream/platform': ^3.0.0
dependencies:
- '@pipedream/platform': 3.0.0
+ '@pipedream/platform':
+ specifier: ^3.0.0
+ version: 3.0.3
components/gainsight_nxt:
- specifiers:
- '@pipedream/platform': ^3.0.3
dependencies:
- '@pipedream/platform': 3.0.3
+ '@pipedream/platform':
+ specifier: ^3.0.3
+ version: 3.0.3
components/gainsight_px:
- specifiers:
- '@pipedream/platform': ^3.0.3
dependencies:
- '@pipedream/platform': 3.0.3
+ '@pipedream/platform':
+ specifier: ^3.0.3
+ version: 3.0.3
components/gami5d:
- specifiers:
- '@pipedream/platform': ^3.0.0
dependencies:
- '@pipedream/platform': 3.0.0
+ '@pipedream/platform':
+ specifier: ^3.0.0
+ version: 3.0.3
components/gan_ai:
- specifiers:
- '@pipedream/platform': 1.6.4
dependencies:
- '@pipedream/platform': 1.6.4
+ '@pipedream/platform':
+ specifier: 1.6.4
+ version: 1.6.4
- components/gatekeeper:
- specifiers: {}
+ components/gatekeeper: {}
components/gatherup:
- specifiers:
- '@pipedream/platform': ^1.2.1
- dayjs: ^1.11.7
dependencies:
- '@pipedream/platform': 1.5.1
- dayjs: 1.11.10
+ '@pipedream/platform':
+ specifier: ^1.2.1
+ version: 1.6.6
+ dayjs:
+ specifier: ^1.11.7
+ version: 1.11.13
- components/geckoboard:
- specifiers: {}
+ components/geckoboard: {}
- components/gender_api:
- specifiers: {}
+ components/gender_api: {}
components/genderapi_io:
- specifiers:
- '@pipedream/platform': ^3.0.0
dependencies:
- '@pipedream/platform': 3.0.0
+ '@pipedream/platform':
+ specifier: ^3.0.0
+ version: 3.0.3
- components/genderize:
- specifiers: {}
+ components/genderize: {}
components/generated_photos:
- specifiers:
- '@pipedream/platform': ^1.5.1
- form-data: ^4.0.0
dependencies:
- '@pipedream/platform': 1.5.1
- form-data: 4.0.0
+ '@pipedream/platform':
+ specifier: ^1.5.1
+ version: 1.6.6
+ form-data:
+ specifier: ^4.0.0
+ version: 4.0.1
- components/geoapify:
- specifiers: {}
+ components/geoapify: {}
components/geodb_cities:
- specifiers:
- '@pipedream/platform': ^1.4.1
dependencies:
- '@pipedream/platform': 1.5.1
+ '@pipedream/platform':
+ specifier: ^1.4.1
+ version: 1.6.6
components/geokeo:
- specifiers:
- '@pipedream/platform': ^3.0.0
dependencies:
- '@pipedream/platform': 3.0.0
+ '@pipedream/platform':
+ specifier: ^3.0.0
+ version: 3.0.3
components/getaccept:
- specifiers:
- '@pipedream/platform': ^1.5.1
dependencies:
- '@pipedream/platform': 1.5.1
+ '@pipedream/platform':
+ specifier: ^1.5.1
+ version: 1.6.6
- components/getemails:
- specifiers: {}
+ components/getemails: {}
components/getform:
- specifiers:
- '@pipedream/platform': ^1.2.1
dependencies:
- '@pipedream/platform': 1.5.1
+ '@pipedream/platform':
+ specifier: ^1.2.1
+ version: 1.6.6
- components/getprospect:
- specifiers: {}
+ components/getprospect: {}
components/getresponse:
- specifiers:
- '@pipedream/platform': ^1.2.0
dependencies:
- '@pipedream/platform': 1.5.1
+ '@pipedream/platform':
+ specifier: ^1.2.0
+ version: 1.6.6
- components/getscreenshot:
- specifiers: {}
+ components/getscreenshot: {}
- components/getswift:
- specifiers: {}
+ components/getswift: {}
components/ghost_org_admin_api:
- specifiers:
- '@pipedream/platform': ^3.0.0
- jsonwebtoken: ^9.0.0
dependencies:
- '@pipedream/platform': 3.0.0
- jsonwebtoken: 9.0.2
+ '@pipedream/platform':
+ specifier: ^3.0.0
+ version: 3.0.3
+ jsonwebtoken:
+ specifier: ^9.0.0
+ version: 9.0.2
components/ghost_org_content_api:
- specifiers:
- '@pipedream/platform': ^3.0.0
dependencies:
- '@pipedream/platform': 3.0.0
+ '@pipedream/platform':
+ specifier: ^3.0.0
+ version: 3.0.3
components/giantcampaign:
- specifiers:
- '@pipedream/platform': ^1.5.1
dependencies:
- '@pipedream/platform': 1.5.1
+ '@pipedream/platform':
+ specifier: ^1.5.1
+ version: 1.6.6
components/gigasheet:
- specifiers:
- '@pipedream/platform': ^1.5.1
dependencies:
- '@pipedream/platform': 1.5.1
+ '@pipedream/platform':
+ specifier: ^1.5.1
+ version: 1.6.6
components/giphy:
- specifiers:
- '@pipedream/platform': ^0.10.0
- form-data: ^4.0.0
dependencies:
- '@pipedream/platform': 0.10.0
- form-data: 4.0.0
+ '@pipedream/platform':
+ specifier: ^0.10.0
+ version: 0.10.0
+ form-data:
+ specifier: ^4.0.0
+ version: 4.0.1
components/gist:
- specifiers:
- '@pipedream/platform': ^1.5.1
dependencies:
- '@pipedream/platform': 1.5.1
+ '@pipedream/platform':
+ specifier: ^1.5.1
+ version: 1.6.6
components/github:
- specifiers:
- '@octokit/core': ^4.2.4
- '@octokit/plugin-paginate-rest': ^2.17.0
- '@octokit/webhooks-definitions': ^3.29.0
- '@pipedream/platform': ^1.5.1
dependencies:
- '@octokit/core': 4.2.4
- '@octokit/plugin-paginate-rest': 2.21.3_@octokit+core@4.2.4
- '@octokit/webhooks-definitions': 3.67.3
- '@pipedream/platform': 1.5.1
+ '@octokit/core':
+ specifier: ^4.2.4
+ version: 4.2.4
+ '@octokit/plugin-paginate-rest':
+ specifier: ^2.17.0
+ version: 2.21.3(@octokit/core@4.2.4)
+ '@octokit/webhooks-definitions':
+ specifier: ^3.29.0
+ version: 3.67.3
+ '@pipedream/platform':
+ specifier: ^1.5.1
+ version: 1.6.6
components/gitlab:
- specifiers:
- '@pipedream/platform': ^1.2.0
- lodash: ^4.17.21
- uuid: ^8.3.2
dependencies:
- '@pipedream/platform': 1.5.1
- lodash: 4.17.21
- uuid: 8.3.2
+ '@pipedream/platform':
+ specifier: ^1.2.0
+ version: 1.6.6
+ lodash:
+ specifier: ^4.17.21
+ version: 4.17.21
+ uuid:
+ specifier: ^8.3.2
+ version: 8.3.2
components/gitlab_developer_app:
- specifiers:
- '@pipedream/platform': ^1.6.4
- lodash: ^4.17.21
- uuid: ^8.3.2
dependencies:
- '@pipedream/platform': 1.6.4
- lodash: 4.17.21
- uuid: 8.3.2
+ '@pipedream/platform':
+ specifier: ^1.6.4
+ version: 1.6.6
+ lodash:
+ specifier: ^4.17.21
+ version: 4.17.21
+ uuid:
+ specifier: ^8.3.2
+ version: 8.3.2
- components/givebutter:
- specifiers: {}
+ components/givebutter: {}
- components/givingfuel:
- specifiers: {}
+ components/givingfuel: {}
components/gladia:
- specifiers:
- '@pipedream/platform': ^1.5.1
- form-data: ^4.0.0
- fs: ^0.0.1-security
dependencies:
- '@pipedream/platform': 1.5.1
- form-data: 4.0.0
- fs: 0.0.1-security
+ '@pipedream/platform':
+ specifier: ^1.5.1
+ version: 1.6.6
+ form-data:
+ specifier: ^4.0.0
+ version: 4.0.1
+ fs:
+ specifier: ^0.0.1-security
+ version: 0.0.1-security
components/gleap:
- specifiers:
- '@pipedream/platform': ^1.5.1
dependencies:
- '@pipedream/platform': 1.5.1
+ '@pipedream/platform':
+ specifier: ^1.5.1
+ version: 1.6.6
- components/glide:
- specifiers: {}
+ components/glide: {}
- components/gloria_ai:
- specifiers: {}
+ components/gloria_ai: {}
components/gloww:
- specifiers:
- '@pipedream/platform': ^2.0.0
dependencies:
- '@pipedream/platform': 2.0.0
+ '@pipedream/platform':
+ specifier: ^2.0.0
+ version: 2.0.0
components/gmail:
- specifiers:
- '@google-cloud/local-auth': ^2.1.0
- '@google-cloud/pubsub': ^4.7.0
- '@googleapis/gmail': ^0.3.4
- '@pipedream/platform': ^3.0.3
- google-auth-library: ^8.7.0
- googleapis: ^105.0.0
- html-to-text: ^8.2.1
- mime: ^3.0.0
- nodemailer: ^6.7.8
- uuid: ^10.0.0
- dependencies:
- '@google-cloud/local-auth': 2.1.1
- '@google-cloud/pubsub': 4.7.0
- '@googleapis/gmail': 0.3.4
- '@pipedream/platform': 3.0.3
- google-auth-library: 8.9.0
- googleapis: 105.0.0
- html-to-text: 8.2.1
- mime: 3.0.0
- nodemailer: 6.9.5
- uuid: 10.0.0
-
- components/gmodstore:
- specifiers: {}
-
- components/go_upc:
- specifiers: {}
-
- components/gobio_link:
- specifiers: {}
+ dependencies:
+ '@google-cloud/local-auth':
+ specifier: ^2.1.0
+ version: 2.1.1
+ '@google-cloud/pubsub':
+ specifier: ^4.7.0
+ version: 4.9.0
+ '@googleapis/gmail':
+ specifier: ^0.3.4
+ version: 0.3.4
+ '@pipedream/platform':
+ specifier: ^3.0.3
+ version: 3.0.3
+ google-auth-library:
+ specifier: ^8.7.0
+ version: 8.9.0
+ googleapis:
+ specifier: ^105.0.0
+ version: 105.0.0
+ html-to-text:
+ specifier: ^8.2.1
+ version: 8.2.1
+ mime:
+ specifier: ^3.0.0
+ version: 3.0.0
+ nodemailer:
+ specifier: ^6.7.8
+ version: 6.9.16
+ uuid:
+ specifier: ^10.0.0
+ version: 10.0.0
+
+ components/gmodstore: {}
+
+ components/go_upc: {}
+
+ components/gobio_link: {}
components/gocanvas:
- specifiers:
- '@pipedream/platform': ^3.0.3
- csv-parse: ^5.5.6
- xml2js: ^0.6.2
dependencies:
- '@pipedream/platform': 3.0.3
- csv-parse: 5.5.6
- xml2js: 0.6.2
+ '@pipedream/platform':
+ specifier: ^3.0.3
+ version: 3.0.3
+ csv-parse:
+ specifier: ^5.5.6
+ version: 5.6.0
+ xml2js:
+ specifier: ^0.6.2
+ version: 0.6.2
- components/godaddy:
- specifiers: {}
+ components/godaddy: {}
- components/godial:
- specifiers: {}
+ components/godial: {}
components/gong:
- specifiers:
- '@pipedream/platform': ^3.0.3
dependencies:
- '@pipedream/platform': 3.0.3
+ '@pipedream/platform':
+ specifier: ^3.0.3
+ version: 3.0.3
- components/goodbits:
- specifiers: {}
+ components/goodbits: {}
components/goody:
- specifiers:
- '@pipedream/platform': ^1.5.1
dependencies:
- '@pipedream/platform': 1.5.1
+ '@pipedream/platform':
+ specifier: ^1.5.1
+ version: 1.6.6
components/google_ad_manager:
- specifiers:
- '@pipedream/platform': 3.0.3
dependencies:
- '@pipedream/platform': 3.0.3
+ '@pipedream/platform':
+ specifier: 3.0.3
+ version: 3.0.3
- components/google_address_validation:
- specifiers: {}
+ components/google_address_validation: {}
components/google_ads:
- specifiers:
- '@pipedream/platform': ^1.6.5
- crypto: ^1.0.1
dependencies:
- '@pipedream/platform': 1.6.5
- crypto: 1.0.1
+ '@pipedream/platform':
+ specifier: ^1.6.5
+ version: 1.6.6
+ crypto:
+ specifier: ^1.0.1
+ version: 1.0.1
components/google_analytics:
- specifiers:
- '@googleapis/analyticsreporting': ^1.0.0
- '@pipedream/platform': ^3.0.0
dependencies:
- '@googleapis/analyticsreporting': 1.0.4
- '@pipedream/platform': 3.0.0
+ '@googleapis/analyticsreporting':
+ specifier: ^1.0.0
+ version: 1.0.7
+ '@pipedream/platform':
+ specifier: ^3.0.0
+ version: 3.0.3
- components/google_appsheet:
- specifiers: {}
+ components/google_appsheet: {}
components/google_calendar:
- specifiers:
- '@googleapis/calendar': ^1.0.2
- '@pipedream/platform': ^3.0.0
- color-2-name: ^1.4.4
- lodash.get: ^4.4.2
- moment-timezone: ^0.5.33
- uuid: ^8.3.2
- dependencies:
- '@googleapis/calendar': 1.0.4
- '@pipedream/platform': 3.0.0
- color-2-name: 1.4.4
- lodash.get: 4.4.2
- moment-timezone: 0.5.43
- uuid: 8.3.2
+ dependencies:
+ '@googleapis/calendar':
+ specifier: ^1.0.2
+ version: 1.0.4
+ '@pipedream/platform':
+ specifier: ^3.0.0
+ version: 3.0.3
+ color-2-name:
+ specifier: ^1.4.4
+ version: 1.4.4
+ lodash.get:
+ specifier: ^4.4.2
+ version: 4.4.2
+ moment-timezone:
+ specifier: ^0.5.33
+ version: 0.5.46
+ uuid:
+ specifier: ^8.3.2
+ version: 8.3.2
components/google_chat:
- specifiers:
- '@pipedream/platform': ^1.5.1
dependencies:
- '@pipedream/platform': 1.5.1
+ '@pipedream/platform':
+ specifier: ^1.5.1
+ version: 1.6.6
- components/google_chat_developer_app:
- specifiers: {}
+ components/google_chat_developer_app: {}
components/google_classroom:
- specifiers:
- '@pipedream/platform': ^1.6.0
- googleapis: ^131.0.0
dependencies:
- '@pipedream/platform': 1.6.0
- googleapis: 131.0.0
+ '@pipedream/platform':
+ specifier: ^1.6.0
+ version: 1.6.6
+ googleapis:
+ specifier: ^131.0.0
+ version: 131.0.0
components/google_cloud:
- specifiers:
- '@google-cloud/bigquery': ^6.0.0
- '@google-cloud/bigquery-data-transfer': ^4.0.1
- '@google-cloud/compute': ^4.1.0
- '@google-cloud/logging': ^10.0.3
- '@google-cloud/pubsub': ^3.0.1
- '@google-cloud/storage': ^6.0.1
- '@pipedream/platform': ^0.10.0
- crypto: ^1.0.1
- lodash-es: ^4.17.21
- uuid: ^8.3.2
- dependencies:
- '@google-cloud/bigquery': 6.2.1
- '@google-cloud/bigquery-data-transfer': 4.0.1
- '@google-cloud/compute': 4.1.0
- '@google-cloud/logging': 10.5.0
- '@google-cloud/pubsub': 3.7.5
- '@google-cloud/storage': 6.12.0
- '@pipedream/platform': 0.10.0
- crypto: 1.0.1
- lodash-es: 4.17.21
- uuid: 8.3.2
-
- components/google_cloud_translate:
- specifiers: {}
+ dependencies:
+ '@google-cloud/bigquery':
+ specifier: ^6.0.0
+ version: 6.2.1
+ '@google-cloud/bigquery-data-transfer':
+ specifier: ^4.0.1
+ version: 4.4.0
+ '@google-cloud/compute':
+ specifier: ^4.1.0
+ version: 4.8.0
+ '@google-cloud/logging':
+ specifier: ^10.0.3
+ version: 10.5.0
+ '@google-cloud/pubsub':
+ specifier: ^3.0.1
+ version: 3.7.5
+ '@google-cloud/storage':
+ specifier: ^6.0.1
+ version: 6.12.0
+ '@pipedream/platform':
+ specifier: ^0.10.0
+ version: 0.10.0
+ crypto:
+ specifier: ^1.0.1
+ version: 1.0.1
+ lodash-es:
+ specifier: ^4.17.21
+ version: 4.17.21
+ uuid:
+ specifier: ^8.3.2
+ version: 8.3.2
+
+ components/google_cloud_translate: {}
components/google_cloud_vision_api:
- specifiers:
- '@pipedream/platform': ^1.6.0
dependencies:
- '@pipedream/platform': 1.6.0
+ '@pipedream/platform':
+ specifier: ^1.6.0
+ version: 1.6.6
components/google_contacts:
- specifiers:
- '@pipedream/platform': ^1.6.0
- googleapis: ^96.0.0
dependencies:
- '@pipedream/platform': 1.6.0
- googleapis: 96.0.0
+ '@pipedream/platform':
+ specifier: ^1.6.0
+ version: 1.6.6
+ googleapis:
+ specifier: ^96.0.0
+ version: 96.0.0
components/google_dialogflow:
- specifiers:
- '@google-cloud/dialogflow': ^5.1.0
dependencies:
- '@google-cloud/dialogflow': 5.9.0
+ '@google-cloud/dialogflow':
+ specifier: ^5.1.0
+ version: 5.9.0
- components/google_directory:
- specifiers: {}
+ components/google_directory: {}
components/google_docs:
- specifiers:
- '@googleapis/docs': ^3.3.0
dependencies:
- '@googleapis/docs': 3.3.0
+ '@googleapis/docs':
+ specifier: ^3.3.0
+ version: 3.3.0
components/google_drive:
- specifiers:
- '@googleapis/drive': ^2.3.0
- '@pipedream/platform': ^1.4.0
- cron-parser: ^4.9.0
- google-docs-mustaches: ^1.2.2
- got: 13.0.0
- lodash: ^4.17.21
- mime-db: ^1.51.0
- uuid: ^8.3.2
dependencies:
- '@googleapis/drive': 2.4.0
- '@pipedream/platform': 1.5.1
- cron-parser: 4.9.0
- google-docs-mustaches: 1.2.2
- got: 13.0.0
- lodash: 4.17.21
- mime-db: 1.52.0
- uuid: 8.3.2
-
- components/google_fit_developer_app:
- specifiers: {}
+ '@googleapis/drive':
+ specifier: ^2.3.0
+ version: 2.4.0
+ '@pipedream/platform':
+ specifier: ^1.4.0
+ version: 1.6.6
+ cron-parser:
+ specifier: ^4.9.0
+ version: 4.9.0
+ google-docs-mustaches:
+ specifier: ^1.2.2
+ version: 1.2.2
+ got:
+ specifier: 13.0.0
+ version: 13.0.0
+ lodash:
+ specifier: ^4.17.21
+ version: 4.17.21
+ mime-db:
+ specifier: ^1.51.0
+ version: 1.53.0
+ uuid:
+ specifier: ^8.3.2
+ version: 8.3.2
+
+ components/google_fit_developer_app: {}
components/google_forms:
- specifiers:
- '@pipedream/platform': ^1.5.1
dependencies:
- '@pipedream/platform': 1.5.1
+ '@pipedream/platform':
+ specifier: ^1.5.1
+ version: 1.6.6
components/google_gemini:
- specifiers:
- '@pipedream/platform': ^3.0.0
dependencies:
- '@pipedream/platform': 3.0.0
+ '@pipedream/platform':
+ specifier: ^3.0.0
+ version: 3.0.3
- components/google_maps_platform:
- specifiers: {}
+ components/google_maps_platform: {}
components/google_meet:
- specifiers:
- '@googleapis/calendar': ^9.7.0
- moment-timezone: ^0.5.45
- uuid: ^9.0.1
dependencies:
- '@googleapis/calendar': 9.7.0
- moment-timezone: 0.5.45
- uuid: 9.0.1
+ '@googleapis/calendar':
+ specifier: ^9.7.0
+ version: 9.7.9
+ moment-timezone:
+ specifier: ^0.5.45
+ version: 0.5.46
+ uuid:
+ specifier: ^9.0.1
+ version: 9.0.1
components/google_merchant_center:
- specifiers:
- '@pipedream/platform': ^1.5.1
dependencies:
- '@pipedream/platform': 1.5.1
+ '@pipedream/platform':
+ specifier: ^1.5.1
+ version: 1.6.6
components/google_my_business:
- specifiers:
- '@pipedream/platform': ^1.6.0
- '@pipedream/types': ^0.1.6
dependencies:
- '@pipedream/platform': 1.6.0
- '@pipedream/types': 0.1.6
+ '@pipedream/platform':
+ specifier: ^1.6.0
+ version: 1.6.6
+ '@pipedream/types':
+ specifier: ^0.1.6
+ version: 0.1.6
components/google_palm_api:
- specifiers:
- '@google-ai/generativelanguage': ^0.2.0
- google-auth-library: ^8.8.0
dependencies:
- '@google-ai/generativelanguage': 0.2.1
- google-auth-library: 8.9.0
+ '@google-ai/generativelanguage':
+ specifier: ^0.2.0
+ version: 0.2.1
+ google-auth-library:
+ specifier: ^8.8.0
+ version: 8.9.0
components/google_photos:
- specifiers:
- '@pipedream/platform': ^1.5.1
- mime: ^3.0.0
dependencies:
- '@pipedream/platform': 1.5.1
- mime: 3.0.0
+ '@pipedream/platform':
+ specifier: ^1.5.1
+ version: 1.6.6
+ mime:
+ specifier: ^3.0.0
+ version: 3.0.0
- components/google_play:
- specifiers: {}
+ components/google_play: {}
components/google_postmaster_tools_api:
- specifiers:
- '@pipedream/platform': ^1.6.2
dependencies:
- '@pipedream/platform': 1.6.2
+ '@pipedream/platform':
+ specifier: ^1.6.2
+ version: 1.6.6
components/google_recaptcha:
- specifiers:
- '@pipedream/platform': ^0.10.0
- '@pipedream/types': ^0.1.4
dependencies:
- '@pipedream/platform': 0.10.0
+ '@pipedream/platform':
+ specifier: ^0.10.0
+ version: 0.10.0
devDependencies:
- '@pipedream/types': 0.1.6
+ '@pipedream/types':
+ specifier: ^0.1.4
+ version: 0.1.6
components/google_safebrowsing:
- specifiers:
- '@pipedream/platform': ^1.5.1
dependencies:
- '@pipedream/platform': 1.5.1
+ '@pipedream/platform':
+ specifier: ^1.5.1
+ version: 1.6.6
components/google_sheets:
- specifiers:
- '@googleapis/sheets': ^0.3.0
- '@pipedream/google_drive': ^0.6.12
- '@pipedream/platform': ^3.0.0
- lodash: ^4.17.21
- uuidv4: ^6.2.6
- zlib: ^1.0.5
- dependencies:
- '@googleapis/sheets': 0.3.0
- '@pipedream/google_drive': 0.6.15
- '@pipedream/platform': 3.0.0
- lodash: 4.17.21
- uuidv4: 6.2.13
- zlib: 1.0.5
+ dependencies:
+ '@googleapis/sheets':
+ specifier: ^0.3.0
+ version: 0.3.0
+ '@pipedream/google_drive':
+ specifier: ^0.6.12
+ version: 0.6.19
+ '@pipedream/platform':
+ specifier: ^3.0.0
+ version: 3.0.3
+ lodash:
+ specifier: ^4.17.21
+ version: 4.17.21
+ uuidv4:
+ specifier: ^6.2.6
+ version: 6.2.13
+ zlib:
+ specifier: ^1.0.5
+ version: 1.0.5
components/google_slides:
- specifiers:
- '@googleapis/drive': ^2.3.0
- '@googleapis/slides': ^0.7.1
- '@pipedream/platform': ^0.9.0
- mime-db: ^1.51.0
- uuid: ^8.3.2
dependencies:
- '@googleapis/drive': 2.4.0
- '@googleapis/slides': 0.7.1
- '@pipedream/platform': 0.9.0
- mime-db: 1.52.0
- uuid: 8.3.2
+ '@googleapis/drive':
+ specifier: ^2.3.0
+ version: 2.4.0
+ '@googleapis/slides':
+ specifier: ^0.7.1
+ version: 0.7.1
+ '@pipedream/platform':
+ specifier: ^0.9.0
+ version: 0.9.0
+ mime-db:
+ specifier: ^1.51.0
+ version: 1.53.0
+ uuid:
+ specifier: ^8.3.2
+ version: 8.3.2
components/google_tag_manager:
- specifiers:
- '@pipedream/platform': ^1.5.1
dependencies:
- '@pipedream/platform': 1.5.1
+ '@pipedream/platform':
+ specifier: ^1.5.1
+ version: 1.6.6
components/google_tasks:
- specifiers:
- '@pipedream/platform': ^1.5.1
dependencies:
- '@pipedream/platform': 1.5.1
+ '@pipedream/platform':
+ specifier: ^1.5.1
+ version: 1.6.6
components/google_vertex_ai:
- specifiers:
- '@pipedream/platform': ^1.6.4
dependencies:
- '@pipedream/platform': 1.6.4
+ '@pipedream/platform':
+ specifier: ^1.6.4
+ version: 1.6.6
components/google_workspace:
- specifiers:
- '@googleapis/admin': ^6.0.2
- '@pipedream/platform': ^1.2.0
- '@pipedream/types': ^0.1.4
- googleapis: ^108.0.0
- uuidv4: ^6.2.13
- dependencies:
- '@googleapis/admin': 6.0.2
- '@pipedream/platform': 1.5.1
- googleapis: 108.0.1
- uuidv4: 6.2.13
+ dependencies:
+ '@googleapis/admin':
+ specifier: ^6.0.2
+ version: 6.0.2
+ '@pipedream/platform':
+ specifier: ^1.2.0
+ version: 1.6.6
+ googleapis:
+ specifier: ^108.0.0
+ version: 108.0.1
+ uuidv4:
+ specifier: ^6.2.13
+ version: 6.2.13
devDependencies:
- '@pipedream/types': 0.1.6
+ '@pipedream/types':
+ specifier: ^0.1.4
+ version: 0.1.6
components/gorgias_oauth:
- specifiers:
- '@pipedream/platform': ^2.0.0
- lodash-es: ^4.17.21
dependencies:
- '@pipedream/platform': 2.0.0
- lodash-es: 4.17.21
+ '@pipedream/platform':
+ specifier: ^2.0.0
+ version: 2.0.0
+ lodash-es:
+ specifier: ^4.17.21
+ version: 4.17.21
components/gorillastack:
- specifiers:
- '@pipedream/platform': ^1.5.1
dependencies:
- '@pipedream/platform': 1.5.1
+ '@pipedream/platform':
+ specifier: ^1.5.1
+ version: 1.6.6
components/gotowebinar:
- specifiers:
- '@pipedream/platform': ^1.5.1
dependencies:
- '@pipedream/platform': 1.5.1
+ '@pipedream/platform':
+ specifier: ^1.5.1
+ version: 1.6.6
- components/govee:
- specifiers: {}
+ components/govee: {}
components/gozen_growth:
- specifiers:
- '@pipedream/platform': ^3.0.1
dependencies:
- '@pipedream/platform': 3.0.1
+ '@pipedream/platform':
+ specifier: ^3.0.1
+ version: 3.0.3
components/gpt_trainer:
- specifiers:
- '@pipedream/platform': ^1.6.0
dependencies:
- '@pipedream/platform': 1.6.0
+ '@pipedream/platform':
+ specifier: ^1.6.0
+ version: 1.6.6
components/gptzero_detect_ai:
- specifiers:
- '@pipedream/platform': ^3.0.1
- form-data: ^4.0.0
dependencies:
- '@pipedream/platform': 3.0.1
- form-data: 4.0.0
+ '@pipedream/platform':
+ specifier: ^3.0.1
+ version: 3.0.3
+ form-data:
+ specifier: ^4.0.0
+ version: 4.0.1
- components/grab_your_reviews:
- specifiers: {}
+ components/grab_your_reviews: {}
- components/graceblocks:
- specifiers: {}
+ components/graceblocks: {}
- components/grade_us:
- specifiers: {}
+ components/grade_us: {}
- components/grafbase:
- specifiers: {}
+ components/grafbase: {}
- components/grain:
- specifiers: {}
+ components/grain: {}
- components/graphhopper:
- specifiers: {}
+ components/graphhopper: {}
- components/graphy:
- specifiers: {}
+ components/graphy: {}
components/gravity_forms:
- specifiers:
- '@pipedream/platform': ^1.5.1
dependencies:
- '@pipedream/platform': 1.5.1
+ '@pipedream/platform':
+ specifier: ^1.5.1
+ version: 1.6.6
components/greenhouse:
- specifiers:
- '@pipedream/platform': ^1.6.5
dependencies:
- '@pipedream/platform': 1.6.5
+ '@pipedream/platform':
+ specifier: ^1.6.5
+ version: 1.6.6
components/greptile:
- specifiers:
- '@pipedream/platform': ^3.0.0
dependencies:
- '@pipedream/platform': 3.0.0
+ '@pipedream/platform':
+ specifier: ^3.0.0
+ version: 3.0.3
components/grist:
- specifiers:
- '@pipedream/platform': ^3.0.1
dependencies:
- '@pipedream/platform': 3.0.1
+ '@pipedream/platform':
+ specifier: ^3.0.1
+ version: 3.0.3
- components/groovehq:
- specifiers: {}
+ components/groovehq: {}
components/groqcloud:
- specifiers:
- '@pipedream/platform': ^2.0.0
dependencies:
- '@pipedream/platform': 2.0.0
+ '@pipedream/platform':
+ specifier: ^2.0.0
+ version: 2.0.0
- components/groundhogg:
- specifiers: {}
+ components/groundhogg: {}
- components/growsurf:
- specifiers: {}
+ components/growsurf: {}
components/gryd:
- specifiers:
- '@pipedream/platform': ^1.5.1
dependencies:
- '@pipedream/platform': 1.5.1
+ '@pipedream/platform':
+ specifier: ^1.5.1
+ version: 1.6.6
components/gtmetrix:
- specifiers:
- '@pipedream/platform': ^1.5.1
dependencies:
- '@pipedream/platform': 1.5.1
+ '@pipedream/platform':
+ specifier: ^1.5.1
+ version: 1.6.6
components/gumroad:
- specifiers:
- '@pipedream/platform': ^1.2.0
dependencies:
- '@pipedream/platform': 1.5.1
+ '@pipedream/platform':
+ specifier: ^1.2.0
+ version: 1.6.6
- components/gupshup:
- specifiers: {}
+ components/gupshup: {}
- components/guru:
- specifiers: {}
+ components/guru: {}
components/h_supertools_analytics_tool:
- specifiers:
- moment: ^2.29.4
dependencies:
- moment: 2.29.4
+ moment:
+ specifier: ^2.29.4
+ version: 2.30.1
- components/habitica:
- specifiers: {}
+ components/habitica: {}
components/habitify:
- specifiers:
- '@pipedream/platform': ^1.5.1
dependencies:
- '@pipedream/platform': 1.5.1
+ '@pipedream/platform':
+ specifier: ^1.5.1
+ version: 1.6.6
components/hacker_news:
- specifiers:
- '@pipedream/platform': ^1.2.0
dependencies:
- '@pipedream/platform': 1.5.1
+ '@pipedream/platform':
+ specifier: ^1.2.0
+ version: 1.6.6
components/hackerone:
- specifiers:
- '@pipedream/platform': ^3.0.0
dependencies:
- '@pipedream/platform': 3.0.0
+ '@pipedream/platform':
+ specifier: ^3.0.0
+ version: 3.0.3
- components/handwrytten:
- specifiers: {}
+ components/handwrytten: {}
components/hansei:
- specifiers:
- '@pipedream/platform': ^1.6.2
dependencies:
- '@pipedream/platform': 1.6.2
+ '@pipedream/platform':
+ specifier: ^1.6.2
+ version: 1.6.6
components/happy_scribe:
- specifiers:
- '@pipedream/platform': ^1.5.1
dependencies:
- '@pipedream/platform': 1.5.1
+ '@pipedream/platform':
+ specifier: ^1.5.1
+ version: 1.6.6
- components/harmonic:
- specifiers: {}
+ components/harmonic: {}
components/harvest:
- specifiers:
- '@pipedream/platform': ^1.2.0
- async-retry: ^1.3.3
- moment: ^2.29.4
dependencies:
- '@pipedream/platform': 1.5.1
- async-retry: 1.3.3
- moment: 2.29.4
+ '@pipedream/platform':
+ specifier: ^1.2.0
+ version: 1.6.6
+ async-retry:
+ specifier: ^1.3.3
+ version: 1.3.3
+ moment:
+ specifier: ^2.29.4
+ version: 2.30.1
- components/hashnode:
- specifiers: {}
+ components/hashnode: {}
- components/hasura:
- specifiers: {}
+ components/hasura: {}
- components/heartbeat:
- specifiers: {}
+ components/heartbeat: {}
components/heedjy:
- specifiers:
- '@pipedream/platform': ^1.6.0
dependencies:
- '@pipedream/platform': 1.6.0
+ '@pipedream/platform':
+ specifier: ^1.6.0
+ version: 1.6.6
components/height:
- specifiers:
- '@pipedream/platform': ^2.0.0
dependencies:
- '@pipedream/platform': 2.0.0
+ '@pipedream/platform':
+ specifier: ^2.0.0
+ version: 2.0.0
- components/helcim:
- specifiers: {}
+ components/helcim: {}
components/helloleads:
- specifiers:
- '@pipedream/platform': ^1.5.1
dependencies:
- '@pipedream/platform': 1.5.1
+ '@pipedream/platform':
+ specifier: ^1.5.1
+ version: 1.6.6
components/hellosign:
- specifiers:
- '@pipedream/platform': ^1.5.1
dependencies:
- '@pipedream/platform': 1.5.1
+ '@pipedream/platform':
+ specifier: ^1.5.1
+ version: 1.6.6
components/help_scout:
- specifiers:
- '@pipedream/platform': ^3.0.3
- crypto: ^1.0.1
dependencies:
- '@pipedream/platform': 3.0.3
- crypto: 1.0.1
+ '@pipedream/platform':
+ specifier: ^3.0.3
+ version: 3.0.3
+ crypto:
+ specifier: ^1.0.1
+ version: 1.0.1
components/helpcrunch:
- specifiers:
- '@pipedream/platform': ^1.5.1
dependencies:
- '@pipedream/platform': 1.5.1
+ '@pipedream/platform':
+ specifier: ^1.5.1
+ version: 1.6.6
components/helper_functions:
- specifiers:
- '@pipedream/platform': ^3.0.0
- streamifier: ^0.1.1
- xml-js: ^1.6.11
dependencies:
- '@pipedream/platform': 3.0.0
- streamifier: 0.1.1
- xml-js: 1.6.11
+ '@pipedream/platform':
+ specifier: ^3.0.0
+ version: 3.0.3
+ streamifier:
+ specifier: ^0.1.1
+ version: 0.1.1
+ xml-js:
+ specifier: ^1.6.11
+ version: 1.6.11
components/helpspace:
- specifiers:
- '@pipedream/platform': ^1.6.0
dependencies:
- '@pipedream/platform': 1.6.0
+ '@pipedream/platform':
+ specifier: ^1.6.0
+ version: 1.6.6
components/helpspot:
- specifiers:
- '@pipedream/platform': ^3.0.3
dependencies:
- '@pipedream/platform': 3.0.3
+ '@pipedream/platform':
+ specifier: ^3.0.3
+ version: 3.0.3
- components/helpwise:
- specifiers: {}
+ components/helpwise: {}
components/here:
- specifiers:
- '@pipedream/platform': ^1.2.0
- '@pipedreamhq/platform': ^0.8.1
dependencies:
- '@pipedream/platform': 1.5.1
- '@pipedreamhq/platform': 0.8.1
+ '@pipedream/platform':
+ specifier: ^1.2.0
+ version: 1.6.6
+ '@pipedreamhq/platform':
+ specifier: ^0.8.1
+ version: 0.8.1
components/herobot_chatbot_marketing:
- specifiers:
- '@pipedream/platform': ^1.5.1
dependencies:
- '@pipedream/platform': 1.6.0
+ '@pipedream/platform':
+ specifier: ^1.5.1
+ version: 1.6.6
components/heroku:
- specifiers:
- '@pipedream/platform': ^3.0.3
dependencies:
- '@pipedream/platform': 3.0.3
+ '@pipedream/platform':
+ specifier: ^3.0.3
+ version: 3.0.3
components/heygen:
- specifiers:
- '@pipedream/platform': ^1.5.1
dependencies:
- '@pipedream/platform': 1.5.1
+ '@pipedream/platform':
+ specifier: ^1.5.1
+ version: 1.6.6
components/heysummit:
- specifiers:
- '@pipedream/platform': ^1.2.0
dependencies:
- '@pipedream/platform': 1.5.1
+ '@pipedream/platform':
+ specifier: ^1.2.0
+ version: 1.6.6
components/heyy:
- specifiers:
- '@pipedream/platform': 3.0.3
- form-data: ^4.0.1
dependencies:
- '@pipedream/platform': 3.0.3
- form-data: 4.0.1
+ '@pipedream/platform':
+ specifier: 3.0.3
+ version: 3.0.3
+ form-data:
+ specifier: ^4.0.1
+ version: 4.0.1
components/heyzine:
- specifiers:
- '@pipedream/platform': ^3.0.0
dependencies:
- '@pipedream/platform': 3.0.0
+ '@pipedream/platform':
+ specifier: ^3.0.0
+ version: 3.0.3
components/highergov:
- specifiers:
- '@pipedream/platform': ^3.0.1
dependencies:
- '@pipedream/platform': 3.0.3
+ '@pipedream/platform':
+ specifier: ^3.0.1
+ version: 3.0.3
components/highlevel_oauth:
- specifiers:
- '@pipedream/platform': ^1.6.2
dependencies:
- '@pipedream/platform': 1.6.2
+ '@pipedream/platform':
+ specifier: ^1.6.2
+ version: 1.6.6
components/hippo_video:
- specifiers:
- '@pipedream/platform': ^1.6.5
- form-data: ^4.0.0
dependencies:
- '@pipedream/platform': 1.6.5
- form-data: 4.0.0
+ '@pipedream/platform':
+ specifier: ^1.6.5
+ version: 1.6.6
+ form-data:
+ specifier: ^4.0.0
+ version: 4.0.1
components/hive:
- specifiers:
- '@pipedream/platform': ^1.5.1
- moment: ^2.29.4
dependencies:
- '@pipedream/platform': 1.5.1
- moment: 2.29.4
+ '@pipedream/platform':
+ specifier: ^1.5.1
+ version: 1.6.6
+ moment:
+ specifier: ^2.29.4
+ version: 2.30.1
components/holded:
- specifiers:
- '@pipedream/platform': ^1.4.1
dependencies:
- '@pipedream/platform': 1.5.1
+ '@pipedream/platform':
+ specifier: ^1.4.1
+ version: 1.6.6
components/home_connect:
- specifiers:
- '@pipedream/platform': ^1.6.0
dependencies:
- '@pipedream/platform': 1.6.0
+ '@pipedream/platform':
+ specifier: ^1.6.0
+ version: 1.6.6
components/hookdeck:
- specifiers:
- '@pipedream/platform': ^1.5.1
dependencies:
- '@pipedream/platform': 1.5.1
+ '@pipedream/platform':
+ specifier: ^1.5.1
+ version: 1.6.6
components/hootsuite:
- specifiers:
- '@pipedream/platform': ^1.5.1
- dayjs: ^1.11.7
dependencies:
- '@pipedream/platform': 1.5.1
- dayjs: 1.11.10
+ '@pipedream/platform':
+ specifier: ^1.5.1
+ version: 1.6.6
+ dayjs:
+ specifier: ^1.11.7
+ version: 1.11.13
components/hostaway:
- specifiers:
- '@pipedream/platform': ^1.5.1
- lodash.pickby: ^4.6.0
dependencies:
- '@pipedream/platform': 1.5.1
- lodash.pickby: 4.6.0
+ '@pipedream/platform':
+ specifier: ^1.5.1
+ version: 1.6.6
+ lodash.pickby:
+ specifier: ^4.6.0
+ version: 4.6.0
- components/hotjar:
- specifiers: {}
+ components/hotjar: {}
components/hotmart:
- specifiers:
- '@pipedream/platform': ^1.6.4
dependencies:
- '@pipedream/platform': 1.6.4
+ '@pipedream/platform':
+ specifier: ^1.6.4
+ version: 1.6.6
components/hotspotsystem:
- specifiers:
- '@pipedream/platform': ^1.2.1
dependencies:
- '@pipedream/platform': 1.5.1
+ '@pipedream/platform':
+ specifier: ^1.2.1
+ version: 1.6.6
components/howuku:
- specifiers:
- '@pipedream/platform': ^1.6.0
dependencies:
- '@pipedream/platform': 1.6.0
+ '@pipedream/platform':
+ specifier: ^1.6.0
+ version: 1.6.6
- components/hr_partner:
- specifiers: {}
+ components/hr_partner: {}
components/html_2_pdf:
- specifiers:
- '@pipedream/platform': ^1.5.1
- fs: ^0.0.1-security
dependencies:
- '@pipedream/platform': 1.6.0
- fs: 0.0.1-security
+ '@pipedream/platform':
+ specifier: ^1.5.1
+ version: 1.6.6
+ fs:
+ specifier: ^0.0.1-security
+ version: 0.0.1-security
components/html_css_to_image:
- specifiers:
- '@pipedream/platform': ^1.1.0
dependencies:
- '@pipedream/platform': 1.5.1
+ '@pipedream/platform':
+ specifier: ^1.1.0
+ version: 1.6.6
components/html_to_image:
- specifiers:
- '@pipedream/platform': ^3.0.3
dependencies:
- '@pipedream/platform': 3.0.3
+ '@pipedream/platform':
+ specifier: ^3.0.3
+ version: 3.0.3
components/http:
- specifiers:
- '@pipedream/platform': ^1.2.0
- object-hash: ^3.0.0
dependencies:
- '@pipedream/platform': 1.5.1
- object-hash: 3.0.0
+ '@pipedream/platform':
+ specifier: ^1.2.0
+ version: 1.6.6
+ object-hash:
+ specifier: ^3.0.0
+ version: 3.0.0
components/https_airbyte_com:
- specifiers:
- '@pipedream/platform': ^1.6.0
dependencies:
- '@pipedream/platform': 1.6.0
+ '@pipedream/platform':
+ specifier: ^1.6.0
+ version: 1.6.6
- components/httpsms:
- specifiers: {}
+ components/httpsms: {}
- components/hub_planner:
- specifiers: {}
+ components/hub_planner: {}
components/hubspot:
- specifiers:
- '@pipedream/platform': ^3.0.0
- bottleneck: ^2.19.5
- package: ^1.0.1
dependencies:
- '@pipedream/platform': 3.0.0
- bottleneck: 2.19.5
+ '@pipedream/platform':
+ specifier: ^3.0.0
+ version: 3.0.3
+ bottleneck:
+ specifier: ^2.19.5
+ version: 2.19.5
devDependencies:
- package: 1.0.1
+ package:
+ specifier: ^1.0.1
+ version: 1.0.1
- components/hubspot_developer_app:
- specifiers: {}
+ components/hubspot_developer_app: {}
components/hubstaff:
- specifiers:
- '@pipedream/platform': ^3.0.0
dependencies:
- '@pipedream/platform': 3.0.0
+ '@pipedream/platform':
+ specifier: ^3.0.0
+ version: 3.0.3
components/hugging_face:
- specifiers:
- '@huggingface/inference': ^1.6.1
- '@pipedream/platform': ^1.3.0
- node-fetch: ^3.3.1
dependencies:
- '@huggingface/inference': 1.8.0
- '@pipedream/platform': 1.5.1
- node-fetch: 3.3.2
+ '@huggingface/inference':
+ specifier: ^1.6.1
+ version: 1.8.0
+ '@pipedream/platform':
+ specifier: ^1.3.0
+ version: 1.6.6
+ node-fetch:
+ specifier: ^3.3.1
+ version: 3.3.2
components/hullo:
- specifiers:
- '@pipedream/platform': ^3.0.3
dependencies:
- '@pipedream/platform': 3.0.3
+ '@pipedream/platform':
+ specifier: ^3.0.3
+ version: 3.0.3
- components/humanitix:
- specifiers: {}
+ components/humanitix: {}
- components/humanloop:
- specifiers: {}
+ components/humanloop: {}
components/humor_api:
- specifiers:
- '@pipedream/platform': ^1.4.1
dependencies:
- '@pipedream/platform': 1.5.1
+ '@pipedream/platform':
+ specifier: ^1.4.1
+ version: 1.6.6
- components/hygraph:
- specifiers: {}
+ components/hygraph: {}
- components/hypeauditor:
- specifiers: {}
+ components/hypeauditor: {}
components/hyperise:
- specifiers:
- '@pipedream/platform': ^1.6.0
dependencies:
- '@pipedream/platform': 1.6.0
+ '@pipedream/platform':
+ specifier: ^1.6.0
+ version: 1.6.6
components/hyros:
- specifiers:
- '@pipedream/platform': ^1.5.1
dependencies:
- '@pipedream/platform': 1.5.1
+ '@pipedream/platform':
+ specifier: ^1.5.1
+ version: 1.6.6
- components/hystruct:
- specifiers: {}
+ components/hystruct: {}
components/iauditor_by_safetyculture:
- specifiers:
- '@pipedream/platform': ^1.5.1
- lodash.pickby: ^4.6.0
dependencies:
- '@pipedream/platform': 1.5.1
- lodash.pickby: 4.6.0
+ '@pipedream/platform':
+ specifier: ^1.5.1
+ version: 1.6.6
+ lodash.pickby:
+ specifier: ^4.6.0
+ version: 4.6.0
- components/ibm_cloud_natural_language_understanding:
- specifiers: {}
+ components/ibm_cloud_natural_language_understanding: {}
- components/ibm_x_force_exchange:
- specifiers: {}
+ components/ibm_x_force_exchange: {}
- components/ical:
- specifiers: {}
+ components/ical: {}
- components/icontact:
- specifiers: {}
+ components/icontact: {}
components/icypeas:
- specifiers:
- '@pipedream/platform': ^1.5.1
dependencies:
- '@pipedream/platform': 1.6.2
+ '@pipedream/platform':
+ specifier: ^1.5.1
+ version: 1.6.6
components/ideal_postcodes:
- specifiers:
- '@pipedream/platform': ^3.0.0
dependencies:
- '@pipedream/platform': 3.0.0
+ '@pipedream/platform':
+ specifier: ^3.0.0
+ version: 3.0.3
- components/idealpostcodes:
- specifiers: {}
+ components/idealpostcodes: {}
- components/idealspot:
- specifiers: {}
+ components/idealspot: {}
components/identitycheck:
- specifiers:
- '@pipedream/platform': ^2.0.0
dependencies:
- '@pipedream/platform': 2.0.0
+ '@pipedream/platform':
+ specifier: ^2.0.0
+ version: 2.0.0
- components/idx_broker:
- specifiers: {}
+ components/idx_broker: {}
- components/if_else:
- specifiers: {}
+ components/if_else: {}
components/ifttt:
- specifiers:
- '@pipedream/platform': ^0.10.0
dependencies:
- '@pipedream/platform': 0.10.0
+ '@pipedream/platform':
+ specifier: ^0.10.0
+ version: 0.10.0
components/ignisign:
- specifiers:
- '@pipedream/platform': ^3.0.3
- form-data: ^4.0.1
- fs: ^0.0.1-security
- stream: ^0.0.3
- util: ^0.12.5
- dependencies:
- '@pipedream/platform': 3.0.3
- form-data: 4.0.1
- fs: 0.0.1-security
- stream: 0.0.3
- util: 0.12.5
+ dependencies:
+ '@pipedream/platform':
+ specifier: ^3.0.3
+ version: 3.0.3
+ form-data:
+ specifier: ^4.0.1
+ version: 4.0.1
+ fs:
+ specifier: ^0.0.1-security
+ version: 0.0.1-security
+ stream:
+ specifier: ^0.0.3
+ version: 0.0.3
+ util:
+ specifier: ^0.12.5
+ version: 0.12.5
components/ikas:
- specifiers:
- '@pipedream/platform': ^3.0.0
dependencies:
- '@pipedream/platform': 3.0.0
+ '@pipedream/platform':
+ specifier: ^3.0.0
+ version: 3.0.3
- components/ikigai:
- specifiers: {}
+ components/ikigai: {}
components/illumidesk:
- specifiers:
- '@pipedream/platform': ^1.5.1
dependencies:
- '@pipedream/platform': 1.5.1
+ '@pipedream/platform':
+ specifier: ^1.5.1
+ version: 1.6.6
components/ilovepdf:
- specifiers:
- '@pipedream/platform': 1.5.1
- form-data: ^4.0.0
dependencies:
- '@pipedream/platform': 1.5.1
- form-data: 4.0.0
+ '@pipedream/platform':
+ specifier: 1.5.1
+ version: 1.5.1
+ form-data:
+ specifier: ^4.0.0
+ version: 4.0.1
components/imagekit_io:
- specifiers:
- '@pipedream/platform': ^1.5.1
- form-data: ^4.0.0
- fs: ^0.0.1-security
dependencies:
- '@pipedream/platform': 1.5.1
- form-data: 4.0.0
- fs: 0.0.1-security
+ '@pipedream/platform':
+ specifier: ^1.5.1
+ version: 1.6.6
+ form-data:
+ specifier: ^4.0.0
+ version: 4.0.1
+ fs:
+ specifier: ^0.0.1-security
+ version: 0.0.1-security
components/imagga:
- specifiers:
- '@pipedream/platform': ^1.5.1
- form-data: ^4.0.0
dependencies:
- '@pipedream/platform': 1.5.1
- form-data: 4.0.0
+ '@pipedream/platform':
+ specifier: ^1.5.1
+ version: 1.6.6
+ form-data:
+ specifier: ^4.0.0
+ version: 4.0.1
components/imagior:
- specifiers:
- '@pipedream/platform': ^3.0.3
dependencies:
- '@pipedream/platform': 3.0.3
+ '@pipedream/platform':
+ specifier: ^3.0.3
+ version: 3.0.3
components/imap:
- specifiers:
- '@pipedream/platform': ^1.2.0
- imap: ^0.8.19
- mailparser: ^3.5.0
- stream: ^0.0.2
- util: ^0.12.4
dependencies:
- '@pipedream/platform': 1.5.1
- imap: 0.8.19
- mailparser: 3.6.5
- stream: 0.0.2
- util: 0.12.5
+ '@pipedream/platform':
+ specifier: ^1.2.0
+ version: 1.6.6
+ imap:
+ specifier: ^0.8.19
+ version: 0.8.19
+ mailparser:
+ specifier: ^3.5.0
+ version: 3.7.1
+ stream:
+ specifier: ^0.0.2
+ version: 0.0.2
+ util:
+ specifier: ^0.12.4
+ version: 0.12.5
- components/imejis_io:
- specifiers: {}
+ components/imejis_io: {}
- components/imgbb:
- specifiers: {}
+ components/imgbb: {}
- components/imgix:
- specifiers: {}
+ components/imgix: {}
- components/imgur:
- specifiers: {}
+ components/imgur: {}
- components/implisense_api:
- specifiers: {}
+ components/implisense_api: {}
- components/infinity:
- specifiers: {}
+ components/infinity: {}
components/infobip:
- specifiers:
- '@pipedream/platform': ^1.6.2
dependencies:
- '@pipedream/platform': 1.6.4
+ '@pipedream/platform':
+ specifier: ^1.6.2
+ version: 1.6.6
components/infolobby:
- specifiers:
- '@pipedream/platform': ^1.6.6
dependencies:
- '@pipedream/platform': 1.6.6
+ '@pipedream/platform':
+ specifier: ^1.6.6
+ version: 1.6.6
components/infusionsoft:
- specifiers:
- '@pipedream/platform': ^1.1.0
- '@pipedream/types': ^0.1.4
dependencies:
- '@pipedream/platform': 1.5.1
+ '@pipedream/platform':
+ specifier: ^1.1.0
+ version: 1.6.6
devDependencies:
- '@pipedream/types': 0.1.6
+ '@pipedream/types':
+ specifier: ^0.1.4
+ version: 0.1.6
components/inksprout:
- specifiers:
- '@pipedream/platform': ^1.2.0
dependencies:
- '@pipedream/platform': 1.5.1
+ '@pipedream/platform':
+ specifier: ^1.2.0
+ version: 1.6.6
- components/inmobile:
- specifiers: {}
+ components/inmobile: {}
components/inoreader:
- specifiers:
- '@pipedream/platform': ^1.4.1
dependencies:
- '@pipedream/platform': 1.5.1
+ '@pipedream/platform':
+ specifier: ^1.4.1
+ version: 1.6.6
components/insertchat:
- specifiers:
- '@pipedream/platform': ^3.0.3
dependencies:
- '@pipedream/platform': 3.0.3
+ '@pipedream/platform':
+ specifier: ^3.0.3
+ version: 3.0.3
components/insightly:
- specifiers:
- '@pipedream/platform': ^1.5.1
dependencies:
- '@pipedream/platform': 1.5.1
+ '@pipedream/platform':
+ specifier: ^1.5.1
+ version: 1.6.6
components/insighto_ai:
- specifiers:
- '@pipedream/platform': 1.6.5
dependencies:
- '@pipedream/platform': 1.6.5
+ '@pipedream/platform':
+ specifier: 1.6.5
+ version: 1.6.5
components/insites:
- specifiers:
- '@pipedream/platform': ^1.5.1
dependencies:
- '@pipedream/platform': 1.5.1
+ '@pipedream/platform':
+ specifier: ^1.5.1
+ version: 1.6.6
components/instagram_business:
- specifiers:
- '@pipedream/platform': ^1.5.1
dependencies:
- '@pipedream/platform': 1.5.1
+ '@pipedream/platform':
+ specifier: ^1.5.1
+ version: 1.6.6
components/instapaper:
- specifiers:
- '@pipedream/platform': ^1.5.1
dependencies:
- '@pipedream/platform': 1.5.1
+ '@pipedream/platform':
+ specifier: ^1.5.1
+ version: 1.6.6
components/intellexer_api:
- specifiers:
- '@pipedream/platform': ^1.5.1
dependencies:
- '@pipedream/platform': 1.5.1
+ '@pipedream/platform':
+ specifier: ^1.5.1
+ version: 1.6.6
components/intellihr:
- specifiers:
- '@pipedream/platform': ^1.5.1
dependencies:
- '@pipedream/platform': 1.5.1
+ '@pipedream/platform':
+ specifier: ^1.5.1
+ version: 1.6.6
- components/intelliprint:
- specifiers: {}
+ components/intelliprint: {}
components/intercom:
- specifiers:
- '@pipedream/platform': ^3.0.3
- crypto: ^1.0.1
dependencies:
- '@pipedream/platform': 3.0.3
- crypto: 1.0.1
+ '@pipedream/platform':
+ specifier: ^3.0.3
+ version: 3.0.3
+ crypto:
+ specifier: ^1.0.1
+ version: 1.0.1
components/interseller:
- specifiers:
- '@pipedream/platform': ^1.5.1
dependencies:
- '@pipedream/platform': 1.6.0
+ '@pipedream/platform':
+ specifier: ^1.5.1
+ version: 1.6.6
components/interzoid:
- specifiers:
- '@pipedream/platform': ^1.6.0
dependencies:
- '@pipedream/platform': 1.6.0
+ '@pipedream/platform':
+ specifier: ^1.6.0
+ version: 1.6.6
- components/intuiface:
- specifiers: {}
+ components/intuiface: {}
components/invidious:
- specifiers:
- '@pipedream/platform': ^3.0.0
dependencies:
- '@pipedream/platform': 3.0.0
+ '@pipedream/platform':
+ specifier: ^3.0.0
+ version: 3.0.3
components/invision_community:
- specifiers:
- '@pipedream/platform': ^3.0.0
dependencies:
- '@pipedream/platform': 3.0.0
+ '@pipedream/platform':
+ specifier: ^3.0.0
+ version: 3.0.3
- components/invoicing_plus:
- specifiers: {}
+ components/invoicing_plus: {}
components/ip2location:
- specifiers:
- '@pipedream/platform': ^0.9.0
dependencies:
- '@pipedream/platform': 0.9.0
+ '@pipedream/platform':
+ specifier: ^0.9.0
+ version: 0.9.0
components/ip2location_io:
- specifiers:
- '@pipedream/platform': ^1.5.1
dependencies:
- '@pipedream/platform': 1.5.1
+ '@pipedream/platform':
+ specifier: ^1.5.1
+ version: 1.6.6
components/ip2proxy:
- specifiers:
- '@pipedream/platform': ^0.9.0
dependencies:
- '@pipedream/platform': 0.9.0
+ '@pipedream/platform':
+ specifier: ^0.9.0
+ version: 0.9.0
components/ip2whois:
- specifiers:
- '@pipedream/platform': ^0.10.0
dependencies:
- '@pipedream/platform': 0.10.0
+ '@pipedream/platform':
+ specifier: ^0.10.0
+ version: 0.10.0
- components/ipbase:
- specifiers: {}
+ components/ipbase: {}
components/ipinfo_io:
- specifiers:
- '@pipedream/platform': ^1.1.1
dependencies:
- '@pipedream/platform': 1.5.1
+ '@pipedream/platform':
+ specifier: ^1.1.1
+ version: 1.6.6
- components/iqair_airvisual:
- specifiers: {}
+ components/iqair_airvisual: {}
- components/iscraper:
- specifiers: {}
+ components/iscraper: {}
- components/isn:
- specifiers: {}
+ components/isn: {}
components/ispring_learn:
- specifiers:
- '@pipedream/platform': ^1.6.5
dependencies:
- '@pipedream/platform': 1.6.5
+ '@pipedream/platform':
+ specifier: ^1.6.5
+ version: 1.6.6
components/iterate:
- specifiers:
- '@pipedream/platform': ^1.2.0
dependencies:
- '@pipedream/platform': 1.5.1
+ '@pipedream/platform':
+ specifier: ^1.2.0
+ version: 1.6.6
- components/jeffreyai:
- specifiers: {}
+ components/jeffreyai: {}
- components/jellyreach:
- specifiers: {}
+ components/jellyreach: {}
components/jibble:
- specifiers:
- '@pipedream/platform': ^1.5.1
dependencies:
- '@pipedream/platform': 1.5.1
+ '@pipedream/platform':
+ specifier: ^1.5.1
+ version: 1.6.6
components/jigsawstack:
- specifiers:
- '@pipedream/platform': ^3.0.1
- form-data: ^4.0.0
- mime: ^4.0.4
dependencies:
- '@pipedream/platform': 3.0.1
- form-data: 4.0.0
- mime: 4.0.4
+ '@pipedream/platform':
+ specifier: ^3.0.1
+ version: 3.0.3
+ form-data:
+ specifier: ^4.0.0
+ version: 4.0.1
+ mime:
+ specifier: ^4.0.4
+ version: 4.0.4
components/jina_reader:
- specifiers:
- '@pipedream/platform': 3.0.3
dependencies:
- '@pipedream/platform': 3.0.3
+ '@pipedream/platform':
+ specifier: 3.0.3
+ version: 3.0.3
components/jira:
- specifiers:
- '@pipedream/platform': ^3.0.1
- form-data: ^4.0.0
dependencies:
- '@pipedream/platform': 3.0.1
- form-data: 4.0.0
+ '@pipedream/platform':
+ specifier: ^3.0.1
+ version: 3.0.3
+ form-data:
+ specifier: ^4.0.0
+ version: 4.0.1
components/jira_service_desk:
- specifiers:
- '@pipedream/platform': ^1.6.0
dependencies:
- '@pipedream/platform': 1.6.0
+ '@pipedream/platform':
+ specifier: ^1.6.0
+ version: 1.6.6
components/jobber:
- specifiers:
- '@pipedream/platform': ^1.6.0
- moment-timezone: ^0.5.45
dependencies:
- '@pipedream/platform': 1.6.0
- moment-timezone: 0.5.45
+ '@pipedream/platform':
+ specifier: ^1.6.0
+ version: 1.6.6
+ moment-timezone:
+ specifier: ^0.5.45
+ version: 0.5.46
- components/jobber_developer_app:
- specifiers: {}
+ components/jobber_developer_app: {}
components/jobnimbus:
- specifiers:
- '@pipedream/platform': ^1.5.1
dependencies:
- '@pipedream/platform': 1.5.1
+ '@pipedream/platform':
+ specifier: ^1.5.1
+ version: 1.6.6
- components/join:
- specifiers: {}
+ components/join: {}
components/joomla:
- specifiers:
- '@pipedream/platform': ^0.10.0
dependencies:
- '@pipedream/platform': 0.10.0
+ '@pipedream/platform':
+ specifier: ^0.10.0
+ version: 0.10.0
components/jooto:
- specifiers:
- '@pipedream/platform': ^3.0.0
dependencies:
- '@pipedream/platform': 3.0.0
+ '@pipedream/platform':
+ specifier: ^3.0.0
+ version: 3.0.3
- components/joplin:
- specifiers: {}
+ components/joplin: {}
components/jotform:
- specifiers:
- '@pipedream/platform': ^1.5.1
- crypto: ^1.0.1
- query-string: ^8.1.0
dependencies:
- '@pipedream/platform': 1.5.1
- crypto: 1.0.1
- query-string: 8.1.0
+ '@pipedream/platform':
+ specifier: ^1.5.1
+ version: 1.6.6
+ crypto:
+ specifier: ^1.0.1
+ version: 1.0.1
+ query-string:
+ specifier: ^8.1.0
+ version: 8.2.0
components/jp_funda:
- specifiers:
- '@pipedream/platform': ^1.5.1
dependencies:
- '@pipedream/platform': 1.5.1
+ '@pipedream/platform':
+ specifier: ^1.5.1
+ version: 1.6.6
components/judge_me:
- specifiers:
- '@pipedream/platform': ^1.5.1
dependencies:
- '@pipedream/platform': 1.5.1
+ '@pipedream/platform':
+ specifier: ^1.5.1
+ version: 1.6.6
components/jumpseller:
- specifiers:
- '@pipedream/platform': ^1.5.1
- lodash: ^4.17.21
dependencies:
- '@pipedream/platform': 1.5.1
- lodash: 4.17.21
+ '@pipedream/platform':
+ specifier: ^1.5.1
+ version: 1.6.6
+ lodash:
+ specifier: ^4.17.21
+ version: 4.17.21
- components/junip:
- specifiers: {}
+ components/junip: {}
components/justcall:
- specifiers:
- '@pipedream/platform': ^1.5.1
dependencies:
- '@pipedream/platform': 1.5.1
+ '@pipedream/platform':
+ specifier: ^1.5.1
+ version: 1.6.6
components/jw_player:
- specifiers:
- '@pipedream/platform': ^1.5.1
dependencies:
- '@pipedream/platform': 1.5.1
+ '@pipedream/platform':
+ specifier: ^1.5.1
+ version: 1.6.6
components/kadoa:
- specifiers:
- '@pipedream/platform': ^1.5.1
dependencies:
- '@pipedream/platform': 1.6.2
+ '@pipedream/platform':
+ specifier: ^1.5.1
+ version: 1.6.6
- components/kajabi:
- specifiers: {}
+ components/kajabi: {}
- components/kakao:
- specifiers: {}
+ components/kakao: {}
components/kaleido:
- specifiers:
- '@pipedream/platform': ^3.0.0
dependencies:
- '@pipedream/platform': 3.0.0
+ '@pipedream/platform':
+ specifier: ^3.0.0
+ version: 3.0.3
components/kanban_tool:
- specifiers:
- '@pipedream/platform': ^1.4.1
dependencies:
- '@pipedream/platform': 1.5.1
+ '@pipedream/platform':
+ specifier: ^1.4.1
+ version: 1.6.6
components/kanbanflow:
- specifiers:
- '@pipedream/platform': ^1.1.1
- '@pipedream/types': ^0.1.4
dependencies:
- '@pipedream/platform': 1.5.1
- '@pipedream/types': 0.1.6
+ '@pipedream/platform':
+ specifier: ^1.1.1
+ version: 1.6.6
+ '@pipedream/types':
+ specifier: ^0.1.4
+ version: 0.1.6
components/kanbanize:
- specifiers:
- '@pipedream/platform': ^0.10.0
dependencies:
- '@pipedream/platform': 0.10.0
+ '@pipedream/platform':
+ specifier: ^0.10.0
+ version: 0.10.0
- components/karbon:
- specifiers: {}
+ components/karbon: {}
- components/kartra:
- specifiers: {}
+ components/kartra: {}
- components/keen_io:
- specifiers: {}
+ components/keen_io: {}
- components/key_app_demo_1:
- specifiers: {}
+ components/key_app_demo_1: {}
components/keycloak:
- specifiers:
- '@pipedream/platform': ^1.6.5
dependencies:
- '@pipedream/platform': 1.6.5
+ '@pipedream/platform':
+ specifier: ^1.6.5
+ version: 1.6.6
components/keysender:
- specifiers:
- '@pipedream/platform': ^1.6.0
dependencies:
- '@pipedream/platform': 1.6.0
+ '@pipedream/platform':
+ specifier: ^1.6.0
+ version: 1.6.6
components/kickbox:
- specifiers:
- '@pipedream/platform': ^1.5.1
dependencies:
- '@pipedream/platform': 1.5.1
+ '@pipedream/platform':
+ specifier: ^1.5.1
+ version: 1.6.6
components/kickofflabs:
- specifiers:
- '@pipedream/platform': ^1.5.1
dependencies:
- '@pipedream/platform': 1.5.1
+ '@pipedream/platform':
+ specifier: ^1.5.1
+ version: 1.6.6
components/kingsumo:
- specifiers:
- '@pipedream/platform': ^1.5.1
dependencies:
- '@pipedream/platform': 1.5.1
+ '@pipedream/platform':
+ specifier: ^1.5.1
+ version: 1.6.6
- components/kintone:
- specifiers: {}
+ components/kintone: {}
components/kite_suite:
- specifiers:
- '@pipedream/platform': ^1.5.1
dependencies:
- '@pipedream/platform': 1.5.1
+ '@pipedream/platform':
+ specifier: ^1.5.1
+ version: 1.6.6
components/kizeo_forms:
- specifiers:
- '@pipedream/platform': ^1.5.1
dependencies:
- '@pipedream/platform': 1.5.1
+ '@pipedream/platform':
+ specifier: ^1.5.1
+ version: 1.6.6
components/klaviyo:
- specifiers:
- '@babel/core': ^7.0.0-0
- klaviyo-api: ^11.0.0
dependencies:
- '@babel/core': 7.23.0
- klaviyo-api: 11.0.0
+ '@babel/core':
+ specifier: ^7.0.0-0
+ version: 7.26.0
+ klaviyo-api:
+ specifier: ^11.0.0
+ version: 11.0.0
components/klaxoon:
- specifiers:
- '@pipedream/platform': ^1.5.1
dependencies:
- '@pipedream/platform': 1.5.1
+ '@pipedream/platform':
+ specifier: ^1.5.1
+ version: 1.6.6
components/klazify:
- specifiers:
- '@pipedream/platform': ^1.4.1
dependencies:
- '@pipedream/platform': 1.5.1
+ '@pipedream/platform':
+ specifier: ^1.4.1
+ version: 1.6.6
components/klenty:
- specifiers:
- '@pipedream/platform': ^1.5.1
dependencies:
- '@pipedream/platform': 1.5.1
+ '@pipedream/platform':
+ specifier: ^1.5.1
+ version: 1.6.6
- components/klipfolio:
- specifiers: {}
+ components/klipfolio: {}
components/knack:
- specifiers:
- '@pipedream/platform': ^1.2.0
dependencies:
- '@pipedream/platform': 1.5.1
+ '@pipedream/platform':
+ specifier: ^1.2.0
+ version: 1.6.6
components/knorish:
- specifiers:
- '@pipedream/platform': ^1.5.1
dependencies:
- '@pipedream/platform': 1.5.1
+ '@pipedream/platform':
+ specifier: ^1.5.1
+ version: 1.6.6
- components/knowbe4:
- specifiers: {}
+ components/knowbe4: {}
components/knowfirst:
- specifiers:
- '@pipedream/platform': ^1.6.0
dependencies:
- '@pipedream/platform': 1.6.0
+ '@pipedream/platform':
+ specifier: ^1.6.0
+ version: 1.6.6
- components/koala_ai:
- specifiers: {}
+ components/koala_ai: {}
components/kodagpt:
- specifiers:
- '@pipedream/platform': ^3.0.0
dependencies:
- '@pipedream/platform': 3.0.0
+ '@pipedream/platform':
+ specifier: ^3.0.0
+ version: 3.0.3
- components/kommo:
- specifiers: {}
+ components/kommo: {}
components/konfhub:
- specifiers:
- '@pipedream/platform': ^3.0.1
dependencies:
- '@pipedream/platform': 3.0.1
+ '@pipedream/platform':
+ specifier: ^3.0.1
+ version: 3.0.3
components/kontent_ai:
- specifiers:
- '@kontent-ai/delivery-sdk': ^14.4.0
- '@kontent-ai/management-sdk': ^5.2.0
- '@kontent-ai/webhook-helper': ^2.1.0
- crypto: ^1.0.1
dependencies:
- '@kontent-ai/delivery-sdk': 14.4.0
- '@kontent-ai/management-sdk': 5.3.0
- '@kontent-ai/webhook-helper': 2.1.0
- crypto: 1.0.1
+ '@kontent-ai/delivery-sdk':
+ specifier: ^14.4.0
+ version: 14.11.0
+ '@kontent-ai/management-sdk':
+ specifier: ^5.2.0
+ version: 5.9.0
+ '@kontent-ai/webhook-helper':
+ specifier: ^2.1.0
+ version: 2.1.0
+ crypto:
+ specifier: ^1.0.1
+ version: 1.0.1
components/krispcall:
- specifiers:
- '@pipedream/platform': ^3.0.1
dependencies:
- '@pipedream/platform': 3.0.1
+ '@pipedream/platform':
+ specifier: ^3.0.1
+ version: 3.0.3
- components/kucoin_futures:
- specifiers: {}
+ components/kucoin_futures: {}
- components/kvstore_io:
- specifiers: {}
+ components/kvstore_io: {}
components/kwtsms:
- specifiers:
- '@pipedream/platform': ^1.6.0
dependencies:
- '@pipedream/platform': 1.6.0
+ '@pipedream/platform':
+ specifier: ^1.6.0
+ version: 1.6.6
- components/kyvio:
- specifiers: {}
+ components/kyvio: {}
components/l2s:
- specifiers:
- '@pipedream/platform': ^3.0.1
dependencies:
- '@pipedream/platform': 3.0.3
+ '@pipedream/platform':
+ specifier: ^3.0.1
+ version: 3.0.3
components/l3mbda:
- specifiers:
- '@pipedream/platform': ^1.5.1
dependencies:
- '@pipedream/platform': 1.5.1
+ '@pipedream/platform':
+ specifier: ^1.5.1
+ version: 1.6.6
- components/labs64_netlicensing:
- specifiers: {}
+ components/labs64_netlicensing: {}
components/labsmobile:
- specifiers:
- '@pipedream/platform': ^1.5.1
dependencies:
- '@pipedream/platform': 1.6.2
+ '@pipedream/platform':
+ specifier: ^1.5.1
+ version: 1.6.6
- components/lahar:
- specifiers: {}
+ components/lahar: {}
- components/lambdatest:
- specifiers: {}
+ components/lambdatest: {}
- components/langbase:
- specifiers: {}
+ components/langbase: {}
components/laposta:
- specifiers:
- '@pipedream/platform': ^1.2.1
dependencies:
- '@pipedream/platform': 1.5.1
+ '@pipedream/platform':
+ specifier: ^1.2.1
+ version: 1.6.6
components/lastpass:
- specifiers:
- '@pipedream/platform': ^1.6.0
dependencies:
- '@pipedream/platform': 1.6.0
+ '@pipedream/platform':
+ specifier: ^1.6.0
+ version: 1.6.6
- components/lattice:
- specifiers: {}
+ components/lattice: {}
components/launchnotes:
- specifiers:
- '@pipedream/platform': ^3.0.0
dependencies:
- '@pipedream/platform': 3.0.0
+ '@pipedream/platform':
+ specifier: ^3.0.0
+ version: 3.0.3
- components/leadboxer:
- specifiers: {}
+ components/leadboxer: {}
components/leadfeeder:
- specifiers:
- '@pipedream/platform': ^1.1.1
dependencies:
- '@pipedream/platform': 1.5.1
+ '@pipedream/platform':
+ specifier: ^1.1.1
+ version: 1.6.6
components/leadiq:
- specifiers:
- '@pipedream/platform': 1.6.5
dependencies:
- '@pipedream/platform': 1.6.5
+ '@pipedream/platform':
+ specifier: 1.6.5
+ version: 1.6.5
components/leadoku:
- specifiers:
- '@pipedream/platform': ^3.0.0
dependencies:
- '@pipedream/platform': 3.0.0
+ '@pipedream/platform':
+ specifier: ^3.0.0
+ version: 3.0.3
components/leadzen_ai:
- specifiers:
- '@pipedream/platform': ^2.0.0
dependencies:
- '@pipedream/platform': 2.0.0
+ '@pipedream/platform':
+ specifier: ^2.0.0
+ version: 2.0.0
components/leap:
- specifiers:
- '@pipedream/platform': ^1.5.1
dependencies:
- '@pipedream/platform': 1.5.1
+ '@pipedream/platform':
+ specifier: ^1.5.1
+ version: 1.6.6
- components/learndash:
- specifiers: {}
+ components/learndash: {}
- components/learnworlds:
- specifiers: {}
+ components/learnworlds: {}
components/leexi:
- specifiers:
- '@pipedream/platform': ^1.6.5
dependencies:
- '@pipedream/platform': 1.6.5
+ '@pipedream/platform':
+ specifier: ^1.6.5
+ version: 1.6.6
components/leiga:
- specifiers:
- '@pipedream/platform': ^1.5.1
dependencies:
- '@pipedream/platform': 1.6.2
+ '@pipedream/platform':
+ specifier: ^1.5.1
+ version: 1.6.6
components/lemlist:
- specifiers:
- '@pipedream/platform': ^1.1.0
dependencies:
- '@pipedream/platform': 1.5.1
+ '@pipedream/platform':
+ specifier: ^1.1.0
+ version: 1.6.6
components/lemon_squeezy:
- specifiers:
- moment: ^2.29.4
dependencies:
- moment: 2.29.4
+ moment:
+ specifier: ^2.29.4
+ version: 2.30.1
- components/lessaccounting:
- specifiers: {}
+ components/lessaccounting: {}
- components/lessonspace:
- specifiers: {}
+ components/lessonspace: {}
components/letterdrop:
- specifiers:
- '@pipedream/platform': ^1.6.2
dependencies:
- '@pipedream/platform': 1.6.4
+ '@pipedream/platform':
+ specifier: ^1.6.2
+ version: 1.6.6
- components/lettria:
- specifiers: {}
+ components/lettria: {}
- components/levity:
- specifiers: {}
+ components/levity: {}
- components/lexoffice:
- specifiers: {}
+ components/lexoffice: {}
components/libraria:
- specifiers:
- '@pipedream/platform': ^1.5.1
dependencies:
- '@pipedream/platform': 1.5.1
+ '@pipedream/platform':
+ specifier: ^1.5.1
+ version: 1.6.6
- components/lifterlms:
- specifiers: {}
+ components/lifterlms: {}
components/lighthouse:
- specifiers:
- '@pipedream/platform': ^1.2.1
dependencies:
- '@pipedream/platform': 1.5.1
+ '@pipedream/platform':
+ specifier: ^1.2.1
+ version: 1.6.6
components/lightspeed_retail_pos:
- specifiers:
- '@pipedream/platform': ^1.5.1
dependencies:
- '@pipedream/platform': 1.5.1
+ '@pipedream/platform':
+ specifier: ^1.5.1
+ version: 1.6.6
components/lightspeed_vt:
- specifiers:
- '@pipedream/platform': ^1.5.1
dependencies:
- '@pipedream/platform': 1.5.1
+ '@pipedream/platform':
+ specifier: ^1.5.1
+ version: 1.6.6
components/line:
- specifiers:
- '@line/bot-sdk': ^7.5.2
- '@pipedream/platform': ^1.3.0
- qs: ^6.11.1
dependencies:
- '@line/bot-sdk': 7.7.0
- '@pipedream/platform': 1.5.1
- qs: 6.11.2
+ '@line/bot-sdk':
+ specifier: ^7.5.2
+ version: 7.7.0
+ '@pipedream/platform':
+ specifier: ^1.3.0
+ version: 1.6.6
+ qs:
+ specifier: ^6.11.1
+ version: 6.13.1
components/linear:
- specifiers:
- '@linear/sdk': ^13.0.0
- '@pipedream/platform': ^1.3.0
dependencies:
- '@linear/sdk': 13.0.0
- '@pipedream/platform': 1.5.1
+ '@linear/sdk':
+ specifier: ^13.0.0
+ version: 13.0.0
+ '@pipedream/platform':
+ specifier: ^1.3.0
+ version: 1.6.6
components/linear_app:
- specifiers:
- '@linear/sdk': ^13.0.0
- '@pipedream/platform': ^1.3.0
dependencies:
- '@linear/sdk': 13.0.0
- '@pipedream/platform': 1.5.1
+ '@linear/sdk':
+ specifier: ^13.0.0
+ version: 13.0.0
+ '@pipedream/platform':
+ specifier: ^1.3.0
+ version: 1.6.6
components/linearb:
- specifiers:
- '@pipedream/platform': ^1.6.0
dependencies:
- '@pipedream/platform': 1.6.0
+ '@pipedream/platform':
+ specifier: ^1.6.0
+ version: 1.6.6
components/linguapop:
- specifiers:
- '@pipedream/platform': ^1.6.5
dependencies:
- '@pipedream/platform': 1.6.5
+ '@pipedream/platform':
+ specifier: ^1.6.5
+ version: 1.6.6
components/linkedin:
- specifiers:
- '@pipedream/platform': ^1.2.1
- axios: ^1.2.3
- form-data: ^4.0.0
dependencies:
- '@pipedream/platform': 1.5.1
- axios: 1.5.1
- form-data: 4.0.0
+ '@pipedream/platform':
+ specifier: ^1.2.1
+ version: 1.6.6
+ axios:
+ specifier: ^1.2.3
+ version: 1.7.7(debug@3.2.7)
+ form-data:
+ specifier: ^4.0.0
+ version: 4.0.1
components/linkedin_ads:
- specifiers:
- '@pipedream/platform': ^3.0.3
dependencies:
- '@pipedream/platform': 3.0.3
+ '@pipedream/platform':
+ specifier: ^3.0.3
+ version: 3.0.3
components/linkly:
- specifiers:
- '@pipedream/platform': ^1.5.1
dependencies:
- '@pipedream/platform': 1.5.1
+ '@pipedream/platform':
+ specifier: ^1.5.1
+ version: 1.6.6
- components/linqs_cc:
- specifiers: {}
+ components/linqs_cc: {}
- components/liondesk:
- specifiers: {}
+ components/liondesk: {}
components/listclean:
- specifiers:
- '@pipedream/platform': ^1.5.1
dependencies:
- '@pipedream/platform': 1.5.1
+ '@pipedream/platform':
+ specifier: ^1.5.1
+ version: 1.6.6
- components/listen_notes:
- specifiers: {}
+ components/listen_notes: {}
components/listmonk:
- specifiers:
- '@pipedream/platform': ^1.5.1
dependencies:
- '@pipedream/platform': 1.5.1
+ '@pipedream/platform':
+ specifier: ^1.5.1
+ version: 1.6.6
components/little_green_light:
- specifiers:
- '@pipedream/platform': ^1.5.1
dependencies:
- '@pipedream/platform': 1.6.0
+ '@pipedream/platform':
+ specifier: ^1.5.1
+ version: 1.6.6
components/liveagent:
- specifiers:
- '@pipedream/platform': ^1.2.0
dependencies:
- '@pipedream/platform': 1.5.1
+ '@pipedream/platform':
+ specifier: ^1.2.0
+ version: 1.6.6
- components/livechat:
- specifiers: {}
+ components/livechat: {}
components/livekit:
- specifiers:
- livekit-server-sdk: ^2.8.1
dependencies:
- livekit-server-sdk: 2.8.1
+ livekit-server-sdk:
+ specifier: ^2.8.1
+ version: 2.8.1
components/livesession:
- specifiers:
- '@pipedream/platform': ^1.6.0
dependencies:
- '@pipedream/platform': 1.6.0
+ '@pipedream/platform':
+ specifier: ^1.6.0
+ version: 1.6.6
components/livestorm:
- specifiers:
- '@pipedream/platform': ^1.4.1
dependencies:
- '@pipedream/platform': 1.5.1
+ '@pipedream/platform':
+ specifier: ^1.4.1
+ version: 1.6.6
components/liveswitch:
- specifiers:
- '@pipedream/platform': ^3.0.3
dependencies:
- '@pipedream/platform': 3.0.3
+ '@pipedream/platform':
+ specifier: ^3.0.3
+ version: 3.0.3
components/llama_ai:
- specifiers:
- '@pipedream/platform': ^1.6.4
dependencies:
- '@pipedream/platform': 1.6.4
+ '@pipedream/platform':
+ specifier: ^1.6.4
+ version: 1.6.6
- components/llamaindex:
- specifiers: {}
+ components/llamaindex: {}
components/llmwhisperer:
- specifiers:
- '@pipedream/platform': ^3.0.0
- fs: ^0.0.1-security
dependencies:
- '@pipedream/platform': 3.0.0
- fs: 0.0.1-security
+ '@pipedream/platform':
+ specifier: ^3.0.0
+ version: 3.0.3
+ fs:
+ specifier: ^0.0.1-security
+ version: 0.0.1-security
components/lmnt:
- specifiers:
- '@pipedream/platform': ^1.5.1
- form-data: ^4.0.0
dependencies:
- '@pipedream/platform': 1.5.1
- form-data: 4.0.0
+ '@pipedream/platform':
+ specifier: ^1.5.1
+ version: 1.6.6
+ form-data:
+ specifier: ^4.0.0
+ version: 4.0.1
components/lnk_bio:
- specifiers:
- '@pipedream/platform': 1.5.1
dependencies:
- '@pipedream/platform': 1.5.1
+ '@pipedream/platform':
+ specifier: 1.5.1
+ version: 1.5.1
components/lob:
- specifiers:
- '@lob/lob-typescript-sdk': ^1.0.0
dependencies:
- '@lob/lob-typescript-sdk': 1.3.2
+ '@lob/lob-typescript-sdk':
+ specifier: ^1.0.0
+ version: 1.3.5
- components/lobste_rs:
- specifiers: {}
+ components/lobste_rs: {}
- components/lodgify:
- specifiers: {}
+ components/lodgify: {}
- components/logistia_route_planner:
- specifiers: {}
+ components/logistia_route_planner: {}
- components/logoraisr:
- specifiers: {}
+ components/logoraisr: {}
- components/logsnag:
- specifiers: {}
+ components/logsnag: {}
components/lokalise:
- specifiers:
- '@pipedream/platform': ^3.0.3
dependencies:
- '@pipedream/platform': 3.0.3
+ '@pipedream/platform':
+ specifier: ^3.0.3
+ version: 3.0.3
- components/looker:
- specifiers: {}
+ components/looker: {}
- components/looker_studio:
- specifiers: {}
+ components/looker_studio: {}
components/loop_returns:
- specifiers:
- '@pipedream/platform': ^1.5.1
dependencies:
- '@pipedream/platform': 1.5.1
+ '@pipedream/platform':
+ specifier: ^1.5.1
+ version: 1.6.6
components/loopify:
- specifiers:
- '@pipedream/platform': ^1.6.2
dependencies:
- '@pipedream/platform': 1.6.2
+ '@pipedream/platform':
+ specifier: ^1.6.2
+ version: 1.6.6
components/loopmessage:
- specifiers:
- '@pipedream/platform': ^1.5.1
dependencies:
- '@pipedream/platform': 1.5.1
+ '@pipedream/platform':
+ specifier: ^1.5.1
+ version: 1.6.6
components/loops_so:
- specifiers:
- '@pipedream/platform': ^3.0.3
- lodash.pickby: ^4.6.0
dependencies:
- '@pipedream/platform': 3.0.3
- lodash.pickby: 4.6.0
+ '@pipedream/platform':
+ specifier: ^3.0.3
+ version: 3.0.3
+ lodash.pickby:
+ specifier: ^4.6.0
+ version: 4.6.0
- components/loqate:
- specifiers: {}
+ components/loqate: {}
- components/loyjoy:
- specifiers: {}
+ components/loyjoy: {}
components/loyverse:
- specifiers:
- '@pipedream/platform': ^1.6.0
dependencies:
- '@pipedream/platform': 1.6.2
+ '@pipedream/platform':
+ specifier: ^1.6.0
+ version: 1.6.6
- components/luminous:
- specifiers: {}
+ components/luminous: {}
- components/luno:
- specifiers: {}
+ components/luno: {}
components/lusha:
- specifiers:
- '@pipedream/platform': ^0.10.0
dependencies:
- '@pipedream/platform': 0.10.0
+ '@pipedream/platform':
+ specifier: ^0.10.0
+ version: 0.10.0
components/maestra:
- specifiers:
- '@pipedream/platform': ^1.5.1
dependencies:
- '@pipedream/platform': 1.5.1
+ '@pipedream/platform':
+ specifier: ^1.5.1
+ version: 1.6.6
components/magnetic:
- specifiers:
- '@pipedream/platform': ^1.4.1
dependencies:
- '@pipedream/platform': 1.5.1
+ '@pipedream/platform':
+ specifier: ^1.4.1
+ version: 1.6.6
components/mailblaze:
- specifiers:
- '@pipedream/platform': ^3.0.0
dependencies:
- '@pipedream/platform': 3.0.0
+ '@pipedream/platform':
+ specifier: ^3.0.0
+ version: 3.0.3
components/mailbluster:
- specifiers:
- md5: ^2.3.0
- moment: ^2.29.4
dependencies:
- md5: 2.3.0
- moment: 2.29.4
+ md5:
+ specifier: ^2.3.0
+ version: 2.3.0
+ moment:
+ specifier: ^2.29.4
+ version: 2.30.1
components/mailboxvalidator:
- specifiers:
- '@pipedream/platform': ^1.1.1
- '@pipedream/types': ^0.1.4
dependencies:
- '@pipedream/platform': 1.5.1
- '@pipedream/types': 0.1.6
+ '@pipedream/platform':
+ specifier: ^1.1.1
+ version: 1.6.6
+ '@pipedream/types':
+ specifier: ^0.1.4
+ version: 0.1.6
components/mailcheck:
- specifiers:
- '@pipedream/platform': ^1.5.1
dependencies:
- '@pipedream/platform': 1.6.2
+ '@pipedream/platform':
+ specifier: ^1.5.1
+ version: 1.6.6
components/mailchimp:
- specifiers:
- '@mailchimp/mailchimp_marketing': ^3.0.74
- '@pipedream/platform': ^1.2.0
- async-retry: ^1.3.3
- uuid: ^8.3.2
- dependencies:
- '@mailchimp/mailchimp_marketing': 3.0.80
- '@pipedream/platform': 1.5.1
- async-retry: 1.3.3
- uuid: 8.3.2
-
- components/mailcoach:
- specifiers: {}
+ dependencies:
+ '@mailchimp/mailchimp_marketing':
+ specifier: ^3.0.74
+ version: 3.0.80
+ '@pipedream/platform':
+ specifier: ^1.2.0
+ version: 1.6.6
+ async-retry:
+ specifier: ^1.3.3
+ version: 1.3.3
+ uuid:
+ specifier: ^8.3.2
+ version: 8.3.2
+
+ components/mailcoach: {}
components/mailercloud:
- specifiers:
- '@pipedream/platform': ^1.5.1
dependencies:
- '@pipedream/platform': 1.5.1
+ '@pipedream/platform':
+ specifier: ^1.5.1
+ version: 1.6.6
components/mailerlite:
- specifiers:
- '@pipedream/platform': ^3.0.3
- lodash.pickby: ^4.6.0
dependencies:
- '@pipedream/platform': 3.0.3
- lodash.pickby: 4.6.0
+ '@pipedream/platform':
+ specifier: ^3.0.3
+ version: 3.0.3
+ lodash.pickby:
+ specifier: ^4.6.0
+ version: 4.6.0
components/mailersend:
- specifiers:
- crypto: ^1.0.1
- mailersend: ^2.0.5
dependencies:
- crypto: 1.0.1
- mailersend: 2.2.0
+ crypto:
+ specifier: ^1.0.1
+ version: 1.0.1
+ mailersend:
+ specifier: ^2.0.5
+ version: 2.3.0
components/mailgun:
- specifiers:
- '@pipedream/helper_functions': ^0.3.7
- '@pipedream/platform': ^1.1.1
- form-data: ^4.0.0
- lodash: ^4.17.21
- lodash.get: ^4.4.2
- mailgun.js: ^3.5.2
- dependencies:
- '@pipedream/helper_functions': 0.3.12
- '@pipedream/platform': 1.5.1
- form-data: 4.0.0
- lodash: 4.17.21
- lodash.get: 4.4.2
- mailgun.js: 3.7.3
-
- components/mailify:
- specifiers: {}
+ dependencies:
+ '@pipedream/helper_functions':
+ specifier: ^0.3.7
+ version: 0.3.13
+ '@pipedream/platform':
+ specifier: ^1.1.1
+ version: 1.6.6
+ form-data:
+ specifier: ^4.0.0
+ version: 4.0.1
+ lodash:
+ specifier: ^4.17.21
+ version: 4.17.21
+ lodash.get:
+ specifier: ^4.4.2
+ version: 4.4.2
+ mailgun.js:
+ specifier: ^3.5.2
+ version: 3.7.3
+
+ components/mailify: {}
components/mailjet:
- specifiers:
- '@pipedream/platform': ^1.2.0
- node-mailjet: ^3.3.13
dependencies:
- '@pipedream/platform': 1.5.1
- node-mailjet: 3.4.1
+ '@pipedream/platform':
+ specifier: ^1.2.0
+ version: 1.6.6
+ node-mailjet:
+ specifier: ^3.3.13
+ version: 3.4.1
components/mailmodo:
- specifiers:
- '@pipedream/platform': ^1.4.0
dependencies:
- '@pipedream/platform': 1.5.1
+ '@pipedream/platform':
+ specifier: ^1.4.0
+ version: 1.6.6
- components/mailninja:
- specifiers: {}
+ components/mailninja: {}
- components/mailrefine:
- specifiers: {}
+ components/mailrefine: {}
components/mails_so:
- specifiers:
- '@pipedream/platform': ^3.0.0
dependencies:
- '@pipedream/platform': 3.0.0
+ '@pipedream/platform':
+ specifier: ^3.0.0
+ version: 3.0.3
components/mailwizz:
- specifiers:
- '@pipedream/platform': ^1.4.1
dependencies:
- '@pipedream/platform': 1.5.1
+ '@pipedream/platform':
+ specifier: ^1.4.1
+ version: 1.6.6
components/maintainx:
- specifiers:
- '@pipedream/platform': ^1.4.1
dependencies:
- '@pipedream/platform': 1.5.1
+ '@pipedream/platform':
+ specifier: ^1.4.1
+ version: 1.6.6
- components/mainwp:
- specifiers: {}
+ components/mainwp: {}
components/mamo_business:
- specifiers:
- '@pipedream/platform': ^1.5.1
dependencies:
- '@pipedream/platform': 1.5.1
+ '@pipedream/platform':
+ specifier: ^1.5.1
+ version: 1.6.6
components/mandrill:
- specifiers:
- '@pipedream/platform': ^3.0.0
dependencies:
- '@pipedream/platform': 3.0.0
+ '@pipedream/platform':
+ specifier: ^3.0.0
+ version: 3.0.3
- components/manifestly_checklists:
- specifiers: {}
+ components/manifestly_checklists: {}
components/manychat:
- specifiers:
- '@pipedream/platform': ^1.5.1
dependencies:
- '@pipedream/platform': 1.5.1
+ '@pipedream/platform':
+ specifier: ^1.5.1
+ version: 1.6.6
- components/mapbox:
- specifiers: {}
+ components/mapbox: {}
components/mapulus:
- specifiers:
- '@pipedream/platform': ^1.5.1
dependencies:
- '@pipedream/platform': 1.5.1
+ '@pipedream/platform':
+ specifier: ^1.5.1
+ version: 1.6.6
- components/marketing_master_io:
- specifiers: {}
+ components/marketing_master_io: {}
- components/marketo:
- specifiers: {}
+ components/marketo: {}
- components/marketstack:
- specifiers: {}
+ components/marketstack: {}
components/mastodon:
- specifiers:
- '@pipedream/platform': ^1.2.1
- axios: ^1.2.1
dependencies:
- '@pipedream/platform': 1.5.1
- axios: 1.5.1
+ '@pipedream/platform':
+ specifier: ^1.2.1
+ version: 1.6.6
+ axios:
+ specifier: ^1.2.1
+ version: 1.7.7(debug@3.2.7)
components/mattermost:
- specifiers:
- '@pipedream/platform': ^1.6.0
- '@pipedream/types': ^0.3.0
dependencies:
- '@pipedream/platform': 1.6.0
- '@pipedream/types': 0.3.0
+ '@pipedream/platform':
+ specifier: ^1.6.0
+ version: 1.6.6
+ '@pipedream/types':
+ specifier: ^0.3.0
+ version: 0.3.2
- components/matterport:
- specifiers: {}
+ components/matterport: {}
components/mautic:
- specifiers:
- '@pipedream/platform': ^0.10.0
- lodash-es: ^4.17.21
dependencies:
- '@pipedream/platform': 0.10.0
- lodash-es: 4.17.21
+ '@pipedream/platform':
+ specifier: ^0.10.0
+ version: 0.10.0
+ lodash-es:
+ specifier: ^4.17.21
+ version: 4.17.21
- components/mav:
- specifiers: {}
+ components/mav: {}
- components/maxmind_geoip2:
- specifiers: {}
+ components/maxmind_geoip2: {}
- components/maxmind_minfraud:
- specifiers: {}
+ components/maxmind_minfraud: {}
- components/mboum:
- specifiers: {}
+ components/mboum: {}
components/mctime:
- specifiers:
- '@pipedream/platform': ^1.6.0
dependencies:
- '@pipedream/platform': 1.6.0
+ '@pipedream/platform':
+ specifier: ^1.6.0
+ version: 1.6.6
- components/meaningcloud:
- specifiers: {}
+ components/meaningcloud: {}
components/mediatoolkit:
- specifiers:
- '@pipedream/platform': ^1.2.0
dependencies:
- '@pipedream/platform': 1.5.1
+ '@pipedream/platform':
+ specifier: ^1.2.0
+ version: 1.6.6
components/meetingpulse:
- specifiers:
- '@pipedream/platform': ^1.5.1
dependencies:
- '@pipedream/platform': 1.5.1
+ '@pipedream/platform':
+ specifier: ^1.5.1
+ version: 1.6.6
- components/meetup:
- specifiers: {}
+ components/meetup: {}
components/megaventory:
- specifiers:
- '@pipedream/platform': ^1.4.1
dependencies:
- '@pipedream/platform': 1.5.1
+ '@pipedream/platform':
+ specifier: ^1.4.1
+ version: 1.6.6
components/meistertask:
- specifiers:
- '@pipedream/platform': ^1.4.1
dependencies:
- '@pipedream/platform': 1.5.1
+ '@pipedream/platform':
+ specifier: ^1.4.1
+ version: 1.6.6
- components/melissa_data:
- specifiers: {}
+ components/melissa_data: {}
components/melo:
- specifiers:
- '@pipedream/platform': ^1.5.1
dependencies:
- '@pipedream/platform': 1.5.1
+ '@pipedream/platform':
+ specifier: ^1.5.1
+ version: 1.6.6
- components/mem:
- specifiers: {}
+ components/mem: {}
components/memberful:
- specifiers:
- crypto: ^1.0.1
- uuid: ^9.0.0
dependencies:
- crypto: 1.0.1
- uuid: 9.0.1
+ crypto:
+ specifier: ^1.0.1
+ version: 1.0.1
+ uuid:
+ specifier: ^9.0.0
+ version: 9.0.1
components/memberspot:
- specifiers:
- '@pipedream/platform': ^1.5.1
dependencies:
- '@pipedream/platform': 1.5.1
+ '@pipedream/platform':
+ specifier: ^1.5.1
+ version: 1.6.6
components/memberstack:
- specifiers:
- '@memberstack/admin': ^1.2.2
- '@pipedream/platform': ^1.4.1
- lodash.pickby: ^4.6.0
dependencies:
- '@memberstack/admin': 1.2.4
- '@pipedream/platform': 1.5.1
- lodash.pickby: 4.6.0
+ '@memberstack/admin':
+ specifier: ^1.2.2
+ version: 1.3.1
+ '@pipedream/platform':
+ specifier: ^1.4.1
+ version: 1.6.6
+ lodash.pickby:
+ specifier: ^4.6.0
+ version: 4.6.0
- components/membervault:
- specifiers: {}
+ components/membervault: {}
- components/memix:
- specifiers: {}
+ components/memix: {}
components/mercury:
- specifiers:
- '@pipedream/platform': ^1.2.0
dependencies:
- '@pipedream/platform': 1.5.1
+ '@pipedream/platform':
+ specifier: ^1.2.0
+ version: 1.6.6
components/merge:
- specifiers:
- '@pipedream/platform': ^3.0.0
dependencies:
- '@pipedream/platform': 3.0.0
+ '@pipedream/platform':
+ specifier: ^3.0.0
+ version: 3.0.3
- components/messagebird:
- specifiers: {}
+ components/messagebird: {}
- components/metabase:
- specifiers: {}
+ components/metabase: {}
- components/metaphor:
- specifiers: {}
+ components/metaphor: {}
- components/metatext_ai_inference_api:
- specifiers: {}
+ components/metatext_ai_inference_api: {}
components/metatext_ai_pre_build_ai_models_api:
- specifiers:
- '@pipedream/platform': ^1.4.1
dependencies:
- '@pipedream/platform': 1.5.1
+ '@pipedream/platform':
+ specifier: ^1.4.1
+ version: 1.6.6
components/meteomatics_weather_api:
- specifiers:
- '@pipedream/platform': ^3.0.0
dependencies:
- '@pipedream/platform': 3.0.0
+ '@pipedream/platform':
+ specifier: ^3.0.0
+ version: 3.0.3
- components/mezmo:
- specifiers: {}
+ components/mezmo: {}
components/microsoft_365_people:
- specifiers:
- '@pipedream/platform': ^1.5.1
- lodash.pickby: ^4.6.0
dependencies:
- '@pipedream/platform': 1.5.1
- lodash.pickby: 4.6.0
+ '@pipedream/platform':
+ specifier: ^1.5.1
+ version: 1.6.6
+ lodash.pickby:
+ specifier: ^4.6.0
+ version: 4.6.0
components/microsoft_365_planner:
- specifiers:
- '@pipedream/platform': ^1.6.5
dependencies:
- '@pipedream/platform': 1.6.5
+ '@pipedream/platform':
+ specifier: ^1.6.5
+ version: 1.6.6
- components/microsoft_advertising:
- specifiers: {}
+ components/microsoft_advertising: {}
components/microsoft_azure_ai_translator:
- specifiers:
- '@pipedream/platform': ^3.0.3
dependencies:
- '@pipedream/platform': 3.0.3
+ '@pipedream/platform':
+ specifier: ^3.0.3
+ version: 3.0.3
components/microsoft_entra_id:
- specifiers:
- '@pipedream/platform': ^1.5.1
- lodash.pickby: ^4.6.0
dependencies:
- '@pipedream/platform': 1.5.1
- lodash.pickby: 4.6.0
+ '@pipedream/platform':
+ specifier: ^1.5.1
+ version: 1.6.6
+ lodash.pickby:
+ specifier: ^4.6.0
+ version: 4.6.0
components/microsoft_excel:
- specifiers:
- '@pipedream/platform': ^3.0.3
- moment: ^2.29.4
dependencies:
- '@pipedream/platform': 3.0.3
- moment: 2.29.4
+ '@pipedream/platform':
+ specifier: ^3.0.3
+ version: 3.0.3
+ moment:
+ specifier: ^2.29.4
+ version: 2.30.1
components/microsoft_onedrive:
- specifiers:
- '@microsoft/microsoft-graph-client': ^3.0.1
- '@pipedream/platform': ^1.1.0
- bottleneck: ^2.19.5
- file-type: ^18.7.0
- isomorphic-fetch: ^3.0.0
- lodash.get: ^4.4.2
- dependencies:
- '@microsoft/microsoft-graph-client': 3.0.7
- '@pipedream/platform': 1.5.1
- bottleneck: 2.19.5
- file-type: 18.7.0
- isomorphic-fetch: 3.0.0
- lodash.get: 4.4.2
+ dependencies:
+ '@microsoft/microsoft-graph-client':
+ specifier: ^3.0.1
+ version: 3.0.7
+ '@pipedream/platform':
+ specifier: ^1.1.0
+ version: 1.6.6
+ bottleneck:
+ specifier: ^2.19.5
+ version: 2.19.5
+ file-type:
+ specifier: ^18.7.0
+ version: 18.7.0
+ isomorphic-fetch:
+ specifier: ^3.0.0
+ version: 3.0.0
+ lodash.get:
+ specifier: ^4.4.2
+ version: 4.4.2
components/microsoft_outlook:
- specifiers:
- axios: ^0.21.1
- js-base64: ^3.7.2
- mime-types: ^2.1.35
dependencies:
- axios: 0.21.4
- js-base64: 3.7.5
- mime-types: 2.1.35
+ axios:
+ specifier: ^0.21.1
+ version: 0.21.4
+ js-base64:
+ specifier: ^3.7.2
+ version: 3.7.7
+ mime-types:
+ specifier: ^2.1.35
+ version: 2.1.35
components/microsoft_outlook_calendar:
- specifiers:
- '@pipedream/platform': ^1.5.1
dependencies:
- '@pipedream/platform': 1.5.1
+ '@pipedream/platform':
+ specifier: ^1.5.1
+ version: 1.6.6
components/microsoft_power_bi:
- specifiers:
- '@pipedream/platform': ^1.5.1
dependencies:
- '@pipedream/platform': 1.5.1
+ '@pipedream/platform':
+ specifier: ^1.5.1
+ version: 1.6.6
components/microsoft_sql_server:
- specifiers:
- '@pipedream/platform': ^3.0.0
- mssql: ^10.0.1
dependencies:
- '@pipedream/platform': 3.0.0
- mssql: 10.0.1
+ '@pipedream/platform':
+ specifier: ^3.0.0
+ version: 3.0.3
+ mssql:
+ specifier: ^10.0.1
+ version: 10.0.4
components/microsoft_teams:
- specifiers:
- '@microsoft/microsoft-graph-client': ^3.0.2
- '@pipedream/platform': ^1.2.0
- isomorphic-fetch: ^3.0.0
dependencies:
- '@microsoft/microsoft-graph-client': 3.0.7
- '@pipedream/platform': 1.5.1
- isomorphic-fetch: 3.0.0
+ '@microsoft/microsoft-graph-client':
+ specifier: ^3.0.2
+ version: 3.0.7
+ '@pipedream/platform':
+ specifier: ^1.2.0
+ version: 1.6.6
+ isomorphic-fetch:
+ specifier: ^3.0.0
+ version: 3.0.0
- components/microsoft_text_translate:
- specifiers: {}
+ components/microsoft_text_translate: {}
components/microsofttodo:
- specifiers:
- '@pipedream/platform': ^1.5.1
dependencies:
- '@pipedream/platform': 1.5.1
+ '@pipedream/platform':
+ specifier: ^1.5.1
+ version: 1.6.6
components/miestro:
- specifiers:
- '@pipedream/platform': ^1.5.1
dependencies:
- '@pipedream/platform': 1.5.1
+ '@pipedream/platform':
+ specifier: ^1.5.1
+ version: 1.6.6
- components/mindmeister:
- specifiers: {}
+ components/mindmeister: {}
- components/minio:
- specifiers: {}
+ components/minio: {}
components/miro_custom_app:
- specifiers:
- '@pipedream/platform': ^1.5.1
dependencies:
- '@pipedream/platform': 1.5.1
+ '@pipedream/platform':
+ specifier: ^1.5.1
+ version: 1.6.6
- components/mission_mobile:
- specifiers: {}
+ components/mission_mobile: {}
components/missive:
- specifiers:
- '@pipedream/platform': ^1.4.1
dependencies:
- '@pipedream/platform': 1.5.1
+ '@pipedream/platform':
+ specifier: ^1.4.1
+ version: 1.6.6
- components/mitra:
- specifiers: {}
+ components/mitra: {}
components/mixmax:
- specifiers:
- '@pipedream/platform': ^1.2.1
dependencies:
- '@pipedream/platform': 1.5.1
+ '@pipedream/platform':
+ specifier: ^1.2.1
+ version: 1.6.6
components/moaform:
- specifiers:
- '@pipedream/platform': ^3.0.3
dependencies:
- '@pipedream/platform': 3.0.3
+ '@pipedream/platform':
+ specifier: ^3.0.3
+ version: 3.0.3
- components/mobile_text_alerts:
- specifiers: {}
+ components/mobile_text_alerts: {}
- components/mobilemonkey:
- specifiers: {}
+ components/mobilemonkey: {}
- components/mobivate:
- specifiers: {}
+ components/mobivate: {}
components/mobygames:
- specifiers:
- '@pipedream/platform': ^1.6.0
dependencies:
- '@pipedream/platform': 1.6.0
+ '@pipedream/platform':
+ specifier: ^1.6.0
+ version: 1.6.6
components/mocean_api:
- specifiers:
- '@pipedream/platform': ^1.5.1
dependencies:
- '@pipedream/platform': 1.5.1
+ '@pipedream/platform':
+ specifier: ^1.5.1
+ version: 1.6.6
- components/moco:
- specifiers: {}
+ components/moco: {}
- components/mode:
- specifiers: {}
+ components/mode: {}
components/modeck:
- specifiers:
- '@pipedream/platform': ^1.5.1
dependencies:
- '@pipedream/platform': 1.5.1
+ '@pipedream/platform':
+ specifier: ^1.5.1
+ version: 1.6.6
- components/modelry:
- specifiers: {}
+ components/modelry: {}
components/mojo_helpdesk:
- specifiers:
- '@pipedream/platform': ^1.3.0
dependencies:
- '@pipedream/platform': 1.5.1
+ '@pipedream/platform':
+ specifier: ^1.3.0
+ version: 1.6.6
- components/mojotxt:
- specifiers: {}
+ components/mojotxt: {}
components/monday:
- specifiers:
- '@pipedream/platform': ^3.0.3
- form-data: ^4.0.0
- lodash.flatmap: ^4.5.0
- lodash.map: ^4.6.0
- lodash.uniqby: ^4.7.0
- monday-sdk-js: ^0.1.3
- dependencies:
- '@pipedream/platform': 3.0.3
- form-data: 4.0.0
- lodash.flatmap: 4.5.0
- lodash.map: 4.6.0
- lodash.uniqby: 4.7.0
- monday-sdk-js: 0.1.6
+ dependencies:
+ '@pipedream/platform':
+ specifier: ^3.0.3
+ version: 3.0.3
+ form-data:
+ specifier: ^4.0.0
+ version: 4.0.1
+ lodash.flatmap:
+ specifier: ^4.5.0
+ version: 4.5.0
+ lodash.map:
+ specifier: ^4.6.0
+ version: 4.6.0
+ lodash.uniqby:
+ specifier: ^4.7.0
+ version: 4.7.0
+ monday-sdk-js:
+ specifier: ^0.1.3
+ version: 0.1.6
components/monday_oauth:
- specifiers:
- monday-sdk-js: ^0.5.5
dependencies:
- monday-sdk-js: 0.5.5
+ monday-sdk-js:
+ specifier: ^0.5.5
+ version: 0.5.5
components/moneybird:
- specifiers:
- '@pipedream/platform': ^0.10.0
dependencies:
- '@pipedream/platform': 0.10.0
+ '@pipedream/platform':
+ specifier: ^0.10.0
+ version: 0.10.0
components/mongodb:
- specifiers:
- '@pipedream/platform': ^3.0.1
- mongodb: ^4.6.0
dependencies:
- '@pipedream/platform': 3.0.1
- mongodb: 4.17.1_dseaa2p5u2yk67qiepewcq3hkq
+ '@pipedream/platform':
+ specifier: ^3.0.1
+ version: 3.0.3
+ mongodb:
+ specifier: ^4.6.0
+ version: 4.17.2(@aws-sdk/client-sso-oidc@3.696.0(@aws-sdk/client-sts@3.696.0))
components/monkeylearn:
- specifiers:
- '@pipedream/platform': ^1.1.1
dependencies:
- '@pipedream/platform': 1.5.1
+ '@pipedream/platform':
+ specifier: ^1.1.1
+ version: 1.6.6
- components/moonmail:
- specifiers: {}
+ components/moonmail: {}
components/moosend:
- specifiers:
- '@pipedream/platform': ^1.2.1
dependencies:
- '@pipedream/platform': 1.5.1
+ '@pipedream/platform':
+ specifier: ^1.2.1
+ version: 1.6.6
components/more_trees_:
- specifiers:
- '@pipedream/platform': ^1.5.1
dependencies:
- '@pipedream/platform': 1.5.1
+ '@pipedream/platform':
+ specifier: ^1.5.1
+ version: 1.6.6
components/morningmate:
- specifiers:
- '@pipedream/platform': ^1.6.0
dependencies:
- '@pipedream/platform': 1.6.0
+ '@pipedream/platform':
+ specifier: ^1.6.0
+ version: 1.6.6
components/motion:
- specifiers:
- '@pipedream/platform': ^3.0.3
dependencies:
- '@pipedream/platform': 3.0.3
+ '@pipedream/platform':
+ specifier: ^3.0.3
+ version: 3.0.3
components/moxie:
- specifiers:
- '@pipedream/platform': ^1.5.1
dependencies:
- '@pipedream/platform': 1.5.1
+ '@pipedream/platform':
+ specifier: ^1.5.1
+ version: 1.6.6
- components/mozilla_observatory:
- specifiers: {}
+ components/mozilla_observatory: {}
- components/mslm_cloud:
- specifiers: {}
+ components/mslm_cloud: {}
- components/mumara:
- specifiers: {}
+ components/mumara: {}
components/mural:
- specifiers:
- '@pipedream/platform': ^3.0.3
dependencies:
- '@pipedream/platform': 3.0.3
+ '@pipedream/platform':
+ specifier: ^3.0.3
+ version: 3.0.3
- components/murlist:
- specifiers: {}
+ components/murlist: {}
components/mux:
- specifiers:
- '@pipedream/platform': ^1.5.1
dependencies:
- '@pipedream/platform': 1.5.1
+ '@pipedream/platform':
+ specifier: ^1.5.1
+ version: 1.6.6
components/mx_technologies:
- specifiers:
- '@pipedream/platform': ^1.5.1
dependencies:
- '@pipedream/platform': 1.6.0
+ '@pipedream/platform':
+ specifier: ^1.5.1
+ version: 1.6.6
- components/mx_toolbox:
- specifiers: {}
+ components/mx_toolbox: {}
components/myotp_app:
- specifiers:
- '@pipedream/platform': ^3.0.0
dependencies:
- '@pipedream/platform': 3.0.0
+ '@pipedream/platform':
+ specifier: ^3.0.0
+ version: 3.0.3
components/mysql:
- specifiers:
- '@pipedream/platform': ^2.0.0
- mysql2: ^3.9.2
- mysql2-promise: ^0.1.4
- uuid: ^8.3.2
- dependencies:
- '@pipedream/platform': 2.0.0
- mysql2: 3.9.2
- mysql2-promise: 0.1.4
- uuid: 8.3.2
+ dependencies:
+ '@pipedream/platform':
+ specifier: ^2.0.0
+ version: 2.0.0
+ mysql2:
+ specifier: ^3.9.2
+ version: 3.11.4
+ mysql2-promise:
+ specifier: ^0.1.4
+ version: 0.1.4
+ uuid:
+ specifier: ^8.3.2
+ version: 8.3.2
- components/n8n_io:
- specifiers: {}
+ components/n8n_io: {}
- components/namecheap:
- specifiers: {}
+ components/namecheap: {}
components/namely:
- specifiers:
- '@pipedream/platform': ^1.2.0
- '@pipedream/types': ^0.1.3
- dayjs: ^1.11.3
dependencies:
- '@pipedream/platform': 1.5.1
- dayjs: 1.11.10
+ '@pipedream/platform':
+ specifier: ^1.2.0
+ version: 1.6.6
+ dayjs:
+ specifier: ^1.11.3
+ version: 1.11.13
devDependencies:
- '@pipedream/types': 0.1.6
+ '@pipedream/types':
+ specifier: ^0.1.3
+ version: 0.1.6
components/nango:
- specifiers:
- '@pipedream/platform': ^1.4.1
dependencies:
- '@pipedream/platform': 1.5.1
+ '@pipedream/platform':
+ specifier: ^1.4.1
+ version: 1.6.6
- components/nano_nets:
- specifiers: {}
+ components/nano_nets: {}
- components/nasa:
- specifiers: {}
+ components/nasa: {}
- components/nasdaq_data_link_time_series_and_table_data_:
- specifiers: {}
+ components/nasdaq_data_link_time_series_and_table_data_: {}
components/nationbuilder:
- specifiers:
- '@pipedream/platform': ^1.5.1
dependencies:
- '@pipedream/platform': 1.5.1
+ '@pipedream/platform':
+ specifier: ^1.5.1
+ version: 1.6.6
- components/navigatr:
- specifiers: {}
+ components/navigatr: {}
components/ncscale:
- specifiers:
- '@pipedream/platform': ^1.5.1
dependencies:
- '@pipedream/platform': 1.6.0
+ '@pipedream/platform':
+ specifier: ^1.5.1
+ version: 1.6.6
components/nectar_crm:
- specifiers:
- '@pipedream/platform': ^1.1.1
dependencies:
- '@pipedream/platform': 1.5.1
+ '@pipedream/platform':
+ specifier: ^1.1.1
+ version: 1.6.6
components/neetoinvoice:
- specifiers:
- '@pipedream/platform': ^1.5.1
dependencies:
- '@pipedream/platform': 1.5.1
+ '@pipedream/platform':
+ specifier: ^1.5.1
+ version: 1.6.6
- components/neetokb:
- specifiers: {}
+ components/neetokb: {}
components/neon_api_keys:
- specifiers:
- '@pipedream/platform': ^1.5.1
dependencies:
- '@pipedream/platform': 1.5.1
+ '@pipedream/platform':
+ specifier: ^1.5.1
+ version: 1.6.6
- components/nerv:
- specifiers: {}
+ components/nerv: {}
- components/netatmo:
- specifiers: {}
+ components/netatmo: {}
components/nethunt_crm:
- specifiers:
- '@pipedream/platform': ^1.3.0
dependencies:
- '@pipedream/platform': 1.5.1
+ '@pipedream/platform':
+ specifier: ^1.3.0
+ version: 1.6.6
components/netlify:
- specifiers:
- '@pipedream/platform': ^1.4.0
- jwt-simple: ^0.5.6
- netlify: ^6.0.9
- parse-link-header: ^2.0.0
dependencies:
- '@pipedream/platform': 1.5.1
- jwt-simple: 0.5.6
- netlify: 6.1.29
- parse-link-header: 2.0.0
+ '@pipedream/platform':
+ specifier: ^1.4.0
+ version: 1.6.6
+ jwt-simple:
+ specifier: ^0.5.6
+ version: 0.5.6
+ netlify:
+ specifier: ^6.0.9
+ version: 6.1.29
+ parse-link-header:
+ specifier: ^2.0.0
+ version: 2.0.0
components/neuronwriter:
- specifiers:
- '@pipedream/platform': ^2.0.0
dependencies:
- '@pipedream/platform': 2.0.0
+ '@pipedream/platform':
+ specifier: ^2.0.0
+ version: 2.0.0
- components/neutrino:
- specifiers: {}
+ components/neutrino: {}
components/neverbounce:
- specifiers:
- '@pipedream/platform': ^1.1.1
- '@pipedream/types': ^0.1.4
dependencies:
- '@pipedream/platform': 1.5.1
- '@pipedream/types': 0.1.6
+ '@pipedream/platform':
+ specifier: ^1.1.1
+ version: 1.6.6
+ '@pipedream/types':
+ specifier: ^0.1.4
+ version: 0.1.6
components/new_relic:
- specifiers:
- '@pipedream/platform': ^1.1.0
dependencies:
- '@pipedream/platform': 1.5.1
+ '@pipedream/platform':
+ specifier: ^1.1.0
+ version: 1.6.6
- components/new_sloth:
- specifiers: {}
+ components/new_sloth: {}
components/new_york_times:
- specifiers:
- '@pipedream/platform': ^1.5.1
- moment: ^2.30.1
dependencies:
- '@pipedream/platform': 1.6.2
- moment: 2.30.1
+ '@pipedream/platform':
+ specifier: ^1.5.1
+ version: 1.6.6
+ moment:
+ specifier: ^2.30.1
+ version: 2.30.1
components/news_api:
- specifiers:
- '@pipedream/platform': ^3.0.3
dependencies:
- '@pipedream/platform': 3.0.3
+ '@pipedream/platform':
+ specifier: ^3.0.3
+ version: 3.0.3
- components/newscatcher:
- specifiers: {}
+ components/newscatcher: {}
- components/newsletter:
- specifiers: {}
+ components/newsletter: {}
- components/newslit:
- specifiers: {}
+ components/newslit: {}
- components/newsman:
- specifiers: {}
+ components/newsman: {}
components/nextcloud:
- specifiers:
- '@pipedream/platform': ^1.6.2
dependencies:
- '@pipedream/platform': 1.6.2
+ '@pipedream/platform':
+ specifier: ^1.6.2
+ version: 1.6.6
- components/nextdns:
- specifiers: {}
+ components/nextdns: {}
- components/nexudus:
- specifiers: {}
+ components/nexudus: {}
components/nexweave:
- specifiers:
- '@pipedream/platform': 1.5.1
dependencies:
- '@pipedream/platform': 1.5.1
+ '@pipedream/platform':
+ specifier: 1.5.1
+ version: 1.5.1
components/ngrok:
- specifiers:
- '@pipedream/platform': 3.0.3
dependencies:
- '@pipedream/platform': 3.0.3
+ '@pipedream/platform':
+ specifier: 3.0.3
+ version: 3.0.3
components/niceboard:
- specifiers:
- '@pipedream/platform': ^3.0.3
dependencies:
- '@pipedream/platform': 3.0.3
+ '@pipedream/platform':
+ specifier: ^3.0.3
+ version: 3.0.3
components/nicereply:
- specifiers:
- '@pipedream/platform': ^1.2.0
dependencies:
- '@pipedream/platform': 1.5.1
+ '@pipedream/platform':
+ specifier: ^1.2.0
+ version: 1.6.6
components/nifty:
- specifiers:
- '@pipedream/platform': ^1.5.1
dependencies:
- '@pipedream/platform': 1.5.1
+ '@pipedream/platform':
+ specifier: ^1.5.1
+ version: 1.6.6
components/niftyimages:
- specifiers:
- '@pipedream/platform': ^1.1.1
- '@pipedream/types': ^0.1.4
dependencies:
- '@pipedream/platform': 1.5.1
- '@pipedream/types': 0.1.6
+ '@pipedream/platform':
+ specifier: ^1.1.1
+ version: 1.6.6
+ '@pipedream/types':
+ specifier: ^0.1.4
+ version: 0.1.6
components/niftykit:
- specifiers:
- '@pipedream/platform': ^1.5.1
dependencies:
- '@pipedream/platform': 1.5.1
+ '@pipedream/platform':
+ specifier: ^1.5.1
+ version: 1.6.6
- components/nightfall_ai:
- specifiers: {}
+ components/nightfall_ai: {}
components/nile_database:
- specifiers:
- '@pipedream/platform': ^3.0.3
- pg: ^8.13.0
dependencies:
- '@pipedream/platform': 3.0.3
- pg: 8.13.0
+ '@pipedream/platform':
+ specifier: ^3.0.3
+ version: 3.0.3
+ pg:
+ specifier: ^8.13.0
+ version: 8.13.1
components/nimble:
- specifiers:
- '@pipedream/platform': ^1.5.1
dependencies:
- '@pipedream/platform': 1.5.1
+ '@pipedream/platform':
+ specifier: ^1.5.1
+ version: 1.6.6
components/ninox:
- specifiers:
- '@pipedream/platform': ^1.2.0
dependencies:
- '@pipedream/platform': 1.5.1
+ '@pipedream/platform':
+ specifier: ^1.2.0
+ version: 1.6.6
components/nioleads:
- specifiers:
- '@pipedream/platform': ^3.0.1
dependencies:
- '@pipedream/platform': 3.0.1
+ '@pipedream/platform':
+ specifier: ^3.0.1
+ version: 3.0.3
components/nocodb:
- specifiers:
- '@pipedream/platform': ^3.0.3
dependencies:
- '@pipedream/platform': 3.0.3
+ '@pipedream/platform':
+ specifier: ^3.0.3
+ version: 3.0.3
components/nocrm_io:
- specifiers:
- '@pipedream/platform': ^1.1.0
dependencies:
- '@pipedream/platform': 1.5.1
+ '@pipedream/platform':
+ specifier: ^1.1.0
+ version: 1.6.6
components/noor:
- specifiers:
- '@pipedream/platform': ^3.0.0
dependencies:
- '@pipedream/platform': 3.0.0
+ '@pipedream/platform':
+ specifier: ^3.0.0
+ version: 3.0.3
components/nordigen:
- specifiers:
- '@pipedream/platform': ^1.6.0
dependencies:
- '@pipedream/platform': 1.6.0
+ '@pipedream/platform':
+ specifier: ^1.6.0
+ version: 1.6.6
components/northflank:
- specifiers:
- '@pipedream/platform': ^1.6.0
dependencies:
- '@pipedream/platform': 1.6.0
+ '@pipedream/platform':
+ specifier: ^1.6.0
+ version: 1.6.6
components/noticeable:
- specifiers:
- '@pipedream/platform': ^1.3.0
dependencies:
- '@pipedream/platform': 1.5.1
+ '@pipedream/platform':
+ specifier: ^1.3.0
+ version: 1.6.6
components/notion:
- specifiers:
- '@notionhq/client': ^2.2.3
- '@tryfabric/martian': ^1.2.4
- asynckit: ^0.4.0
- combined-stream: ^1.0.8
- delayed-stream: ^1.0.0
- form-data: ^3.0.1
- lodash-es: ^4.17.21
- md5: ^2.3.0
- mime-db: ^1.52.0
- mime-types: ^2.1.35
- node-fetch: ^2.6.7
- tr46: ^0.0.3
- webidl-conversions: ^3.0.1
- whatwg-url: ^5.0.0
- dependencies:
- '@notionhq/client': 2.2.13
- '@tryfabric/martian': 1.2.4
- asynckit: 0.4.0
- combined-stream: 1.0.8
- delayed-stream: 1.0.0
- form-data: 3.0.1
- lodash-es: 4.17.21
- md5: 2.3.0
- mime-db: 1.52.0
- mime-types: 2.1.35
- node-fetch: 2.7.0
- tr46: 0.0.3
- webidl-conversions: 3.0.1
- whatwg-url: 5.0.0
-
- components/nozbe_teams:
- specifiers: {}
+ dependencies:
+ '@notionhq/client':
+ specifier: ^2.2.3
+ version: 2.2.15
+ '@tryfabric/martian':
+ specifier: ^1.2.4
+ version: 1.2.4
+ asynckit:
+ specifier: ^0.4.0
+ version: 0.4.0
+ combined-stream:
+ specifier: ^1.0.8
+ version: 1.0.8
+ delayed-stream:
+ specifier: ^1.0.0
+ version: 1.0.0
+ form-data:
+ specifier: ^3.0.1
+ version: 3.0.2
+ lodash-es:
+ specifier: ^4.17.21
+ version: 4.17.21
+ md5:
+ specifier: ^2.3.0
+ version: 2.3.0
+ mime-db:
+ specifier: ^1.52.0
+ version: 1.53.0
+ mime-types:
+ specifier: ^2.1.35
+ version: 2.1.35
+ node-fetch:
+ specifier: ^2.6.7
+ version: 2.7.0
+ tr46:
+ specifier: ^0.0.3
+ version: 0.0.3
+ webidl-conversions:
+ specifier: ^3.0.1
+ version: 3.0.1
+ whatwg-url:
+ specifier: ^5.0.0
+ version: 5.0.0
+
+ components/nozbe_teams: {}
components/npm:
- specifiers:
- '@pipedream/platform': ^3.0.0
dependencies:
- '@pipedream/platform': 3.0.0
+ '@pipedream/platform':
+ specifier: ^3.0.0
+ version: 3.0.3
components/ntfy:
- specifiers:
- '@pipedream/platform': 3.0.3
dependencies:
- '@pipedream/platform': 3.0.3
+ '@pipedream/platform':
+ specifier: 3.0.3
+ version: 3.0.3
components/nudgify:
- specifiers:
- '@pipedream/platform': ^1.5.1
dependencies:
- '@pipedream/platform': 1.5.1
+ '@pipedream/platform':
+ specifier: ^1.5.1
+ version: 1.6.6
components/numverify:
- specifiers:
- '@pipedream/platform': ^3.0.0
dependencies:
- '@pipedream/platform': 3.0.0
+ '@pipedream/platform':
+ specifier: ^3.0.0
+ version: 3.0.3
- components/nusii_proposals:
- specifiers: {}
+ components/nusii_proposals: {}
components/nutshell:
- specifiers:
- '@pipedream/platform': ^1.5.1
dependencies:
- '@pipedream/platform': 1.6.0
+ '@pipedream/platform':
+ specifier: ^1.5.1
+ version: 1.6.6
components/nyckel:
- specifiers:
- '@pipedream/platform': ^1.6.2
- form-data: ^4.0.0
dependencies:
- '@pipedream/platform': 1.6.2
- form-data: 4.0.0
+ '@pipedream/platform':
+ specifier: ^1.6.2
+ version: 1.6.6
+ form-data:
+ specifier: ^4.0.0
+ version: 4.0.1
- components/oauth_app_demo:
- specifiers: {}
+ components/oauth_app_demo: {}
- components/oauth_app_demo_1:
- specifiers: {}
+ components/oauth_app_demo_1: {}
- components/ocr_web_service:
- specifiers: {}
+ components/ocr_web_service: {}
- components/octoparse:
- specifiers: {}
+ components/octoparse: {}
- components/octopus_deploy:
- specifiers: {}
+ components/octopus_deploy: {}
components/octopush_sms:
- specifiers:
- '@pipedream/platform': ^1.6.0
dependencies:
- '@pipedream/platform': 1.6.0
+ '@pipedream/platform':
+ specifier: ^1.6.0
+ version: 1.6.6
components/offlight:
- specifiers:
- '@pipedream/platform': ^3.0.1
dependencies:
- '@pipedream/platform': 3.0.3
+ '@pipedream/platform':
+ specifier: ^3.0.1
+ version: 3.0.3
- components/oksign:
- specifiers: {}
+ components/oksign: {}
components/okta:
- specifiers:
- '@pipedream/platform': ^2.0.0
dependencies:
- '@pipedream/platform': 2.0.0
+ '@pipedream/platform':
+ specifier: ^2.0.0
+ version: 2.0.0
components/ollama:
- specifiers:
- '@pipedream/platform': 3.0.3
dependencies:
- '@pipedream/platform': 3.0.3
+ '@pipedream/platform':
+ specifier: 3.0.3
+ version: 3.0.3
components/omise:
- specifiers:
- '@pipedream/platform': ^1.5.1
dependencies:
- '@pipedream/platform': 1.5.1
+ '@pipedream/platform':
+ specifier: ^1.5.1
+ version: 1.6.6
components/omnisend:
- specifiers:
- '@pipedream/platform': ^1.5.1
dependencies:
- '@pipedream/platform': 1.6.0
+ '@pipedream/platform':
+ specifier: ^1.5.1
+ version: 1.6.6
components/omnivore:
- specifiers:
- '@pipedream/platform': ^1.6.0
- uuid: ^9.0.1
dependencies:
- '@pipedream/platform': 1.6.0
- uuid: 9.0.1
+ '@pipedream/platform':
+ specifier: ^1.6.0
+ version: 1.6.6
+ uuid:
+ specifier: ^9.0.1
+ version: 9.0.1
components/onbee_app:
- specifiers:
- '@pipedream/platform': ^3.0.3
dependencies:
- '@pipedream/platform': 3.0.3
+ '@pipedream/platform':
+ specifier: ^3.0.3
+ version: 3.0.3
components/oncehub:
- specifiers:
- '@pipedream/platform': ^1.3.0
dependencies:
- '@pipedream/platform': 1.5.1
+ '@pipedream/platform':
+ specifier: ^1.3.0
+ version: 1.6.6
- components/one_ai:
- specifiers: {}
+ components/one_ai: {}
components/onedesk:
- specifiers:
- '@pipedream/platform': ^3.0.0
dependencies:
- '@pipedream/platform': 3.0.0
+ '@pipedream/platform':
+ specifier: ^3.0.0
+ version: 3.0.3
components/onenote:
- specifiers:
- '@pipedream/platform': ^1.5.1
dependencies:
- '@pipedream/platform': 1.5.1
+ '@pipedream/platform':
+ specifier: ^1.5.1
+ version: 1.6.6
- components/onepage:
- specifiers: {}
+ components/onepage: {}
components/onepagecrm:
- specifiers:
- '@pipedream/platform': ^1.5.1
dependencies:
- '@pipedream/platform': 1.5.1
+ '@pipedream/platform':
+ specifier: ^1.5.1
+ version: 1.6.6
- components/ones2u:
- specifiers: {}
+ components/ones2u: {}
- components/onesaas:
- specifiers: {}
+ components/onesaas: {}
- components/onesec_mail:
- specifiers: {}
+ components/onesec_mail: {}
components/onesignal_rest_api:
- specifiers:
- '@pipedream/platform': ^0.10.0
dependencies:
- '@pipedream/platform': 0.10.0
+ '@pipedream/platform':
+ specifier: ^0.10.0
+ version: 0.10.0
- components/onethread:
- specifiers: {}
+ components/onethread: {}
- components/oneuptime:
- specifiers: {}
+ components/oneuptime: {}
components/onfleet:
- specifiers:
- '@onfleet/node-onfleet': ^1.3.3
- moment: ^2.29.4
dependencies:
- '@onfleet/node-onfleet': 1.3.3
- moment: 2.29.4
+ '@onfleet/node-onfleet':
+ specifier: ^1.3.3
+ version: 1.3.8
+ moment:
+ specifier: ^2.29.4
+ version: 2.30.1
components/ongage:
- specifiers:
- axios: ^0.21.1
- node-fetch: ^2.6.7
- ongage: ^1.1.6
dependencies:
- axios: 0.21.4
- node-fetch: 2.7.0
- ongage: 1.1.7_node-fetch@2.7.0
+ axios:
+ specifier: ^0.21.1
+ version: 0.21.4
+ node-fetch:
+ specifier: ^2.6.7
+ version: 2.7.0
+ ongage:
+ specifier: ^1.1.6
+ version: 1.1.7(node-fetch@2.7.0)
components/onlinecheckwriter:
- specifiers:
- '@pipedream/platform': 3.0.3
- form-data: ^4.0.0
dependencies:
- '@pipedream/platform': 3.0.3
- form-data: 4.0.0
+ '@pipedream/platform':
+ specifier: 3.0.3
+ version: 3.0.3
+ form-data:
+ specifier: ^4.0.0
+ version: 4.0.1
components/onlyoffice_docspace:
- specifiers:
- '@pipedream/platform': ^3.0.0
- form-data: ^4.0.0
dependencies:
- '@pipedream/platform': 3.0.0
- form-data: 4.0.0
+ '@pipedream/platform':
+ specifier: ^3.0.0
+ version: 3.0.3
+ form-data:
+ specifier: ^4.0.0
+ version: 4.0.1
components/onstrategy:
- specifiers:
- '@pipedream/platform': ^1.6.2
dependencies:
- '@pipedream/platform': 1.6.2
+ '@pipedream/platform':
+ specifier: ^1.6.2
+ version: 1.6.6
components/ontraport:
- specifiers:
- '@pipedream/platform': ^1.3.0
dependencies:
- '@pipedream/platform': 1.5.1
+ '@pipedream/platform':
+ specifier: ^1.3.0
+ version: 1.6.6
- components/open_exchange_rates:
- specifiers: {}
+ components/open_exchange_rates: {}
components/openai:
- specifiers:
- '@ffmpeg-installer/ffmpeg': ^1.1.0
- '@pipedream/platform': ^1.2.1
- '@pipedream/types': ^0.1.4
- '@types/node': ^17.0.45
- axios: ^1.6.2
- bottleneck: ^2.19.5
- form-data: ^4.0.0
- got: ^12.6.0
- openai: ^3.2.1
- dependencies:
- '@ffmpeg-installer/ffmpeg': 1.1.0
- '@pipedream/platform': 1.5.1
- '@pipedream/types': 0.1.6
- axios: 1.6.2
- bottleneck: 2.19.5
- form-data: 4.0.0
- got: 12.6.1
- openai: 3.3.0
+ dependencies:
+ '@ffmpeg-installer/ffmpeg':
+ specifier: ^1.1.0
+ version: 1.1.0
+ '@pipedream/platform':
+ specifier: ^1.2.1
+ version: 1.6.6
+ '@pipedream/types':
+ specifier: ^0.1.4
+ version: 0.1.6
+ axios:
+ specifier: ^1.6.2
+ version: 1.7.7(debug@3.2.7)
+ bottleneck:
+ specifier: ^2.19.5
+ version: 2.19.5
+ form-data:
+ specifier: ^4.0.0
+ version: 4.0.1
+ got:
+ specifier: ^12.6.0
+ version: 12.6.1
+ openai:
+ specifier: ^3.2.1
+ version: 3.3.0
devDependencies:
- '@types/node': 17.0.45
+ '@types/node':
+ specifier: ^17.0.45
+ version: 17.0.45
components/opengraph_io:
- specifiers:
- '@pipedream/platform': ^1.4.1
- opengraph-io: ^2.0.0
dependencies:
- '@pipedream/platform': 1.5.1
- opengraph-io: 2.0.0
+ '@pipedream/platform':
+ specifier: ^1.4.1
+ version: 1.6.6
+ opengraph-io:
+ specifier: ^2.0.0
+ version: 2.0.0
components/openperplex:
- specifiers:
- '@pipedream/platform': ^3.0.1
dependencies:
- '@pipedream/platform': 3.0.1
+ '@pipedream/platform':
+ specifier: ^3.0.1
+ version: 3.0.3
components/openphone:
- specifiers:
- '@pipedream/platform': ^3.0.3
dependencies:
- '@pipedream/platform': 3.0.3
+ '@pipedream/platform':
+ specifier: ^3.0.3
+ version: 3.0.3
components/opensea:
- specifiers:
- '@pipedream/platform': ^1.2.0
dependencies:
- '@pipedream/platform': 1.5.1
+ '@pipedream/platform':
+ specifier: ^1.2.0
+ version: 1.6.6
components/openweather_api:
- specifiers:
- '@pipedream/platform': ^0.9.0
dependencies:
- '@pipedream/platform': 0.9.0
+ '@pipedream/platform':
+ specifier: ^0.9.0
+ version: 0.9.0
components/opsgenie:
- specifiers:
- '@pipedream/platform': ^3.0.1
dependencies:
- '@pipedream/platform': 3.0.1
+ '@pipedream/platform':
+ specifier: ^3.0.1
+ version: 3.0.3
- components/optimoroute:
- specifiers: {}
+ components/optimoroute: {}
- components/orbisx:
- specifiers: {}
+ components/orbisx: {}
components/orbit:
- specifiers:
- '@pipedream/platform': ^1.3.0
- uuid: ^9.0.0
dependencies:
- '@pipedream/platform': 1.5.1
- uuid: 9.0.1
+ '@pipedream/platform':
+ specifier: ^1.3.0
+ version: 1.6.6
+ uuid:
+ specifier: ^9.0.0
+ version: 9.0.1
components/orca_scan:
- specifiers:
- '@pipedream/platform': ^1.5.1
dependencies:
- '@pipedream/platform': 1.5.1
+ '@pipedream/platform':
+ specifier: ^1.5.1
+ version: 1.6.6
components/order_desk:
- specifiers:
- '@pipedream/platform': ^1.5.1
dependencies:
- '@pipedream/platform': 1.5.1
+ '@pipedream/platform':
+ specifier: ^1.5.1
+ version: 1.6.6
components/originality_ai:
- specifiers:
- '@pipedream/platform': ^1.5.1
dependencies:
- '@pipedream/platform': 1.5.1
+ '@pipedream/platform':
+ specifier: ^1.5.1
+ version: 1.6.6
components/orimon:
- specifiers:
- '@pipedream/platform': ^1.6.2
dependencies:
- '@pipedream/platform': 1.6.4
+ '@pipedream/platform':
+ specifier: ^1.6.2
+ version: 1.6.6
- components/ortto:
- specifiers: {}
+ components/ortto: {}
components/otter_waiver:
- specifiers:
- '@pipedream/platform': ^3.0.0
dependencies:
- '@pipedream/platform': 3.0.0
+ '@pipedream/platform':
+ specifier: ^3.0.0
+ version: 3.0.3
- components/ottertext:
- specifiers: {}
+ components/ottertext: {}
components/outgrow:
- specifiers:
- '@pipedream/platform': ^1.2.0
dependencies:
- '@pipedream/platform': 1.5.1
+ '@pipedream/platform':
+ specifier: ^1.2.0
+ version: 1.6.6
components/outreach:
- specifiers:
- '@pipedream/platform': ^1.6.0
dependencies:
- '@pipedream/platform': 1.6.2
+ '@pipedream/platform':
+ specifier: ^1.6.0
+ version: 1.6.6
components/outscraper:
- specifiers:
- '@pipedream/platform': ^1.6.0
dependencies:
- '@pipedream/platform': 1.6.0
+ '@pipedream/platform':
+ specifier: ^1.6.0
+ version: 1.6.6
components/outseta:
- specifiers:
- '@pipedream/platform': ^1.5.1
- qs: ^6.11.1
dependencies:
- '@pipedream/platform': 1.5.1
- qs: 6.11.2
+ '@pipedream/platform':
+ specifier: ^1.5.1
+ version: 1.6.6
+ qs:
+ specifier: ^6.11.1
+ version: 6.13.1
components/overledger:
- specifiers:
- '@pipedream/platform': ^1.5.1
dependencies:
- '@pipedream/platform': 1.6.4
+ '@pipedream/platform':
+ specifier: ^1.5.1
+ version: 1.6.6
components/overloop:
- specifiers:
- '@pipedream/platform': ^1.3.0
- lodash.pickby: ^4.6.0
dependencies:
- '@pipedream/platform': 1.5.1
- lodash.pickby: 4.6.0
+ '@pipedream/platform':
+ specifier: ^1.3.0
+ version: 1.6.6
+ lodash.pickby:
+ specifier: ^4.6.0
+ version: 4.6.0
components/owl_protocol:
- specifiers:
- '@pipedream/platform': ^3.0.0
dependencies:
- '@pipedream/platform': 3.0.0
+ '@pipedream/platform':
+ specifier: ^3.0.0
+ version: 3.0.3
- components/oxford_dictionaries:
- specifiers: {}
+ components/oxford_dictionaries: {}
- components/oxylabs:
- specifiers: {}
+ components/oxylabs: {}
components/oyster:
- specifiers:
- '@pipedream/platform': ^1.5.1
dependencies:
- '@pipedream/platform': 1.5.1
+ '@pipedream/platform':
+ specifier: ^1.5.1
+ version: 1.6.6
- components/paddle:
- specifiers: {}
+ components/paddle: {}
components/page_x:
- specifiers:
- '@pipedream/platform': ^3.0.1
dependencies:
- '@pipedream/platform': 3.0.1
+ '@pipedream/platform':
+ specifier: ^3.0.1
+ version: 3.0.3
components/pagerduty:
- specifiers:
- '@pipedream/platform': ^1.2.0
dependencies:
- '@pipedream/platform': 1.5.1
+ '@pipedream/platform':
+ specifier: ^1.2.0
+ version: 1.6.6
components/paigo:
- specifiers:
- '@pipedream/platform': ^1.6.2
dependencies:
- '@pipedream/platform': 1.6.2
+ '@pipedream/platform':
+ specifier: ^1.6.2
+ version: 1.6.6
components/pandadoc:
- specifiers:
- '@pipedream/platform': ^1.6.0
- form-data: ^4.0.0
dependencies:
- '@pipedream/platform': 1.6.0
- form-data: 4.0.0
+ '@pipedream/platform':
+ specifier: ^1.6.0
+ version: 1.6.6
+ form-data:
+ specifier: ^4.0.0
+ version: 4.0.1
components/paperform:
- specifiers:
- '@pipedream/platform': ^3.0.3
dependencies:
- '@pipedream/platform': 3.0.3
+ '@pipedream/platform':
+ specifier: ^3.0.3
+ version: 3.0.3
components/papersign:
- specifiers:
- '@pipedream/platform': ^3.0.3
dependencies:
- '@pipedream/platform': 3.0.3
+ '@pipedream/platform':
+ specifier: ^3.0.3
+ version: 3.0.3
- components/papertrail:
- specifiers: {}
+ components/papertrail: {}
components/papyrs:
- specifiers:
- '@pipedream/platform': ^1.2.1
dependencies:
- '@pipedream/platform': 1.5.1
+ '@pipedream/platform':
+ specifier: ^1.2.1
+ version: 1.6.6
components/paradym:
- specifiers:
- '@pipedream/platform': ^3.0.0
- crypto: ^1.0.1
dependencies:
- '@pipedream/platform': 3.0.0
- crypto: 1.0.1
+ '@pipedream/platform':
+ specifier: ^3.0.0
+ version: 3.0.3
+ crypto:
+ specifier: ^1.0.1
+ version: 1.0.1
- components/parallel:
- specifiers: {}
+ components/parallel: {}
components/parma:
- specifiers:
- '@pipedream/platform': ^3.0.0
dependencies:
- '@pipedream/platform': 3.0.0
+ '@pipedream/platform':
+ specifier: ^3.0.0
+ version: 3.0.3
components/parsehub:
- specifiers:
- '@pipedream/platform': ^1.6.2
dependencies:
- '@pipedream/platform': 1.6.2
+ '@pipedream/platform':
+ specifier: ^1.6.2
+ version: 1.6.6
- components/parser_expert:
- specifiers: {}
+ components/parser_expert: {}
components/parsera:
- specifiers:
- '@pipedream/platform': 3.0.3
dependencies:
- '@pipedream/platform': 3.0.3
+ '@pipedream/platform':
+ specifier: 3.0.3
+ version: 3.0.3
components/parseur:
- specifiers:
- '@pipedream/platform': ^1.3.0
dependencies:
- '@pipedream/platform': 1.5.1
+ '@pipedream/platform':
+ specifier: ^1.3.0
+ version: 1.6.6
- components/parsio_io:
- specifiers: {}
+ components/parsio_io: {}
- components/partnerize:
- specifiers: {}
+ components/partnerize: {}
components/passcreator:
- specifiers:
- '@pipedream/platform': ^1.5.1
dependencies:
- '@pipedream/platform': 1.5.1
+ '@pipedream/platform':
+ specifier: ^1.5.1
+ version: 1.6.6
components/passslot:
- specifiers:
- '@pipedream/platform': ^1.6.0
- md5: ^2.3.0
dependencies:
- '@pipedream/platform': 1.6.0
- md5: 2.3.0
+ '@pipedream/platform':
+ specifier: ^1.6.0
+ version: 1.6.6
+ md5:
+ specifier: ^2.3.0
+ version: 2.3.0
components/patreon:
- specifiers:
- axios: ^1.2.1
- url: ^0.11.0
dependencies:
- axios: 1.5.1
- url: 0.11.3
+ axios:
+ specifier: ^1.2.1
+ version: 1.7.7(debug@3.2.7)
+ url:
+ specifier: ^0.11.0
+ version: 0.11.4
components/paved:
- specifiers:
- '@pipedream/platform': ^3.0.0
dependencies:
- '@pipedream/platform': 3.0.0
+ '@pipedream/platform':
+ specifier: ^3.0.0
+ version: 3.0.3
components/payhere:
- specifiers:
- '@pipedream/platform': ^0.10.0
dependencies:
- '@pipedream/platform': 0.10.0
+ '@pipedream/platform':
+ specifier: ^0.10.0
+ version: 0.10.0
components/payhip:
- specifiers:
- '@pipedream/platform': ^1.5.1
dependencies:
- '@pipedream/platform': 1.5.1
+ '@pipedream/platform':
+ specifier: ^1.5.1
+ version: 1.6.6
components/paymo:
- specifiers:
- '@pipedream/platform': ^1.3.0
- crypto: ^1.0.1
- uuid: ^9.0.0
dependencies:
- '@pipedream/platform': 1.5.1
- crypto: 1.0.1
- uuid: 9.0.1
+ '@pipedream/platform':
+ specifier: ^1.3.0
+ version: 1.6.6
+ crypto:
+ specifier: ^1.0.1
+ version: 1.0.1
+ uuid:
+ specifier: ^9.0.0
+ version: 9.0.1
components/paypal:
- specifiers:
- '@pipedream/platform': ^1.5.1
dependencies:
- '@pipedream/platform': 1.5.1
+ '@pipedream/platform':
+ specifier: ^1.5.1
+ version: 1.6.6
- components/paypro:
- specifiers: {}
+ components/paypro: {}
components/paystack:
- specifiers:
- '@pipedream/platform': ^1.6.0
dependencies:
- '@pipedream/platform': 1.6.0
+ '@pipedream/platform':
+ specifier: ^1.6.0
+ version: 1.6.6
components/paytrace:
- specifiers:
- '@pipedream/platform': ^0.10.0
dependencies:
- '@pipedream/platform': 0.10.0
+ '@pipedream/platform':
+ specifier: ^0.10.0
+ version: 0.10.0
components/pcloud:
- specifiers:
- '@pipedream/platform': ^1.2.0
- async-retry: ^1.3.1
- lodash: ^4.17.20
- pcloud-sdk-js: ^2.0.0
dependencies:
- '@pipedream/platform': 1.5.1
- async-retry: 1.3.3
- lodash: 4.17.21
- pcloud-sdk-js: 2.0.0
-
- components/pdf_api_io:
- specifiers: {}
+ '@pipedream/platform':
+ specifier: ^1.2.0
+ version: 1.6.6
+ async-retry:
+ specifier: ^1.3.1
+ version: 1.3.3
+ lodash:
+ specifier: ^4.17.20
+ version: 4.17.21
+ pcloud-sdk-js:
+ specifier: ^2.0.0
+ version: 2.0.0
+
+ components/pdf_api_io: {}
components/pdf_app_net:
- specifiers:
- '@pipedream/platform': ^3.0.3
dependencies:
- '@pipedream/platform': 3.0.3
+ '@pipedream/platform':
+ specifier: ^3.0.3
+ version: 3.0.3
components/pdf_charts:
- specifiers:
- '@pipedream/platform': ^1.6.3
dependencies:
- '@pipedream/platform': 1.6.4
+ '@pipedream/platform':
+ specifier: ^1.6.3
+ version: 1.6.6
components/pdf_co:
- specifiers:
- '@pipedream/platform': ^0.10.0
dependencies:
- '@pipedream/platform': 0.10.0
+ '@pipedream/platform':
+ specifier: ^0.10.0
+ version: 0.10.0
components/pdffiller:
- specifiers:
- '@pipedream/platform': ^3.0.0
- form-data: ^4.0.0
- fs: ^0.0.1-security
dependencies:
- '@pipedream/platform': 3.0.0
- form-data: 4.0.0
- fs: 0.0.1-security
+ '@pipedream/platform':
+ specifier: ^3.0.0
+ version: 3.0.3
+ form-data:
+ specifier: ^4.0.0
+ version: 4.0.1
+ fs:
+ specifier: ^0.0.1-security
+ version: 0.0.1-security
components/pdfless:
- specifiers:
- '@pdfless/pdfless-js': ^1.0.510
dependencies:
- '@pdfless/pdfless-js': 1.0.510
+ '@pdfless/pdfless-js':
+ specifier: ^1.0.510
+ version: 1.0.510
components/pdfmonkey:
- specifiers:
- '@pipedream/platform': ^3.0.3
dependencies:
- '@pipedream/platform': 3.0.3
+ '@pipedream/platform':
+ specifier: ^3.0.3
+ version: 3.0.3
components/peach:
- specifiers:
- '@pipedream/platform': ^3.0.0
dependencies:
- '@pipedream/platform': 3.0.0
+ '@pipedream/platform':
+ specifier: ^3.0.0
+ version: 3.0.3
components/peaka:
- specifiers:
- '@pipedream/platform': ^2.0.0
dependencies:
- '@pipedream/platform': 2.0.0
+ '@pipedream/platform':
+ specifier: ^2.0.0
+ version: 2.0.0
- components/pendo:
- specifiers: {}
+ components/pendo: {}
components/people_data_labs:
- specifiers:
- '@pipedream/platform': ^1.6.2
dependencies:
- '@pipedream/platform': 1.6.2
+ '@pipedream/platform':
+ specifier: ^1.6.2
+ version: 1.6.6
components/perplexity:
- specifiers:
- '@pipedream/platform': ^1.6.5
dependencies:
- '@pipedream/platform': 1.6.5
+ '@pipedream/platform':
+ specifier: ^1.6.5
+ version: 1.6.6
- components/perry_github_test:
- specifiers: {}
+ components/perry_github_test: {}
components/persistiq:
- specifiers:
- '@pipedream/platform': ^1.2.1
- '@pipedream/types': ^0.1.4
dependencies:
- '@pipedream/platform': 1.5.1
- '@pipedream/types': 0.1.6
+ '@pipedream/platform':
+ specifier: ^1.2.1
+ version: 1.6.6
+ '@pipedream/types':
+ specifier: ^0.1.4
+ version: 0.1.6
- components/persona:
- specifiers: {}
+ components/persona: {}
components/personio:
- specifiers:
- '@pipedream/platform': ^1.5.1
dependencies:
- '@pipedream/platform': 1.5.1
+ '@pipedream/platform':
+ specifier: ^1.5.1
+ version: 1.6.6
components/phantombuster:
- specifiers:
- '@pipedream/platform': ^1.3.0
dependencies:
- '@pipedream/platform': 1.5.1
+ '@pipedream/platform':
+ specifier: ^1.3.0
+ version: 1.6.6
components/phaxio:
- specifiers:
- '@pipedream/platform': ^1.1.1
dependencies:
- '@pipedream/platform': 1.5.1
+ '@pipedream/platform':
+ specifier: ^1.1.1
+ version: 1.6.6
- components/phone_com:
- specifiers: {}
+ components/phone_com: {}
components/phoneburner:
- specifiers:
- '@pipedream/platform': ^1.5.1
dependencies:
- '@pipedream/platform': 1.5.1
+ '@pipedream/platform':
+ specifier: ^1.5.1
+ version: 1.6.6
components/php_point_of_sale:
- specifiers:
- '@pipedream/platform': ^1.6.0
dependencies:
- '@pipedream/platform': 1.6.2
+ '@pipedream/platform':
+ specifier: ^1.6.0
+ version: 1.6.6
components/phrase:
- specifiers:
- '@pipedream/platform': ^1.1.0
dependencies:
- '@pipedream/platform': 1.5.1
+ '@pipedream/platform':
+ specifier: ^1.1.0
+ version: 1.6.6
components/picdefense:
- specifiers:
- '@pipedream/platform': ^3.0.0
dependencies:
- '@pipedream/platform': 3.0.0
+ '@pipedream/platform':
+ specifier: ^3.0.0
+ version: 3.0.3
components/picky_assist:
- specifiers:
- '@pipedream/platform': ^1.2.1
dependencies:
- '@pipedream/platform': 1.5.1
+ '@pipedream/platform':
+ specifier: ^1.2.1
+ version: 1.6.6
components/pidj:
- specifiers:
- '@pipedream/platform': ^3.0.0
dependencies:
- '@pipedream/platform': 3.0.0
+ '@pipedream/platform':
+ specifier: ^3.0.0
+ version: 3.0.3
components/piggy:
- specifiers:
- '@pipedream/platform': ^1.5.1
dependencies:
- '@pipedream/platform': 1.5.1
+ '@pipedream/platform':
+ specifier: ^1.5.1
+ version: 1.6.6
components/pikaso:
- specifiers:
- '@pipedream/platform': ^1.1.1
dependencies:
- '@pipedream/platform': 1.5.1
+ '@pipedream/platform':
+ specifier: ^1.1.1
+ version: 1.6.6
components/piloterr:
- specifiers:
- '@pipedream/platform': ^1.5.1
dependencies:
- '@pipedream/platform': 1.5.1
+ '@pipedream/platform':
+ specifier: ^1.5.1
+ version: 1.6.6
- components/pilvio:
- specifiers: {}
+ components/pilvio: {}
components/pinecone:
- specifiers:
- '@pipedream/platform': ^1.3.0
- qs: ^6.11.1
dependencies:
- '@pipedream/platform': 1.5.1
- qs: 6.11.2
+ '@pipedream/platform':
+ specifier: ^1.3.0
+ version: 1.6.6
+ qs:
+ specifier: ^6.11.1
+ version: 6.13.1
components/pingbell:
- specifiers:
- '@pipedream/platform': ^1.5.1
dependencies:
- '@pipedream/platform': 1.5.1
+ '@pipedream/platform':
+ specifier: ^1.5.1
+ version: 1.6.6
components/pingdom:
- specifiers:
- '@pipedream/platform': ^1.5.1
dependencies:
- '@pipedream/platform': 1.5.1
+ '@pipedream/platform':
+ specifier: ^1.5.1
+ version: 1.6.6
- components/pingrabbit:
- specifiers: {}
+ components/pingrabbit: {}
components/pinterest:
- specifiers:
- '@pipedream/platform': ^1.4.0
- js-base64: ^3.7.2
- mime-types: ^2.1.35
- url-exist: ^3.0.0
- dependencies:
- '@pipedream/platform': 1.5.1
- js-base64: 3.7.5
- mime-types: 2.1.35
- url-exist: 3.0.1
+ dependencies:
+ '@pipedream/platform':
+ specifier: ^1.4.0
+ version: 1.6.6
+ js-base64:
+ specifier: ^3.7.2
+ version: 3.7.7
+ mime-types:
+ specifier: ^2.1.35
+ version: 2.1.35
+ url-exist:
+ specifier: ^3.0.0
+ version: 3.0.1(web-streams-polyfill@3.3.3)
components/pipedream:
- specifiers:
- '@pipedream/platform': ^1.4.1
- uuidv4: ^6.2.13
dependencies:
- '@pipedream/platform': 1.5.1
- uuidv4: 6.2.13
+ '@pipedream/platform':
+ specifier: ^1.4.1
+ version: 1.6.6
+ uuidv4:
+ specifier: ^6.2.13
+ version: 6.2.13
- components/pipedream_connect:
- specifiers: {}
+ components/pipedream_connect: {}
components/pipedrive:
- specifiers:
- '@pipedream/platform': ^1.2.0
- pipedrive: ^13.2.7
dependencies:
- '@pipedream/platform': 1.5.1
- pipedrive: 13.3.4
+ '@pipedream/platform':
+ specifier: ^1.2.0
+ version: 1.6.6
+ pipedrive:
+ specifier: ^13.2.7
+ version: 13.3.4
components/pipefy:
- specifiers:
- '@pipedream/platform': ^1.2.0
- graphql: '>=14.0.0 <15.0.0 || >=15.0.0 <16.0.0 || >=16.0.0 <17.0.0 || ^16.8.1'
- graphql-request: ^5.0.0
dependencies:
- '@pipedream/platform': 1.5.1
- graphql: 16.8.1
- graphql-request: 5.2.0_graphql@16.8.1
+ '@pipedream/platform':
+ specifier: ^1.2.0
+ version: 1.6.6
+ graphql:
+ specifier: '>=14.0.0 <15.0.0 || >=15.0.0 <16.0.0 || >=16.0.0 <17.0.0 || ^16.8.1'
+ version: 16.9.0
+ graphql-request:
+ specifier: ^5.0.0
+ version: 5.2.0(graphql@16.9.0)
components/pipeline:
- specifiers:
- '@pipedream/platform': ^1.3.0
- query-string: ^8.1.0
dependencies:
- '@pipedream/platform': 1.5.1
- query-string: 8.1.0
+ '@pipedream/platform':
+ specifier: ^1.3.0
+ version: 1.6.6
+ query-string:
+ specifier: ^8.1.0
+ version: 8.2.0
- components/pirate_weather:
- specifiers: {}
+ components/pirate_weather: {}
- components/pitchlane:
- specifiers: {}
+ components/pitchlane: {}
components/pivotal_tracker:
- specifiers:
- '@pipedream/platform': ^1.3.0
dependencies:
- '@pipedream/platform': 1.5.1
+ '@pipedream/platform':
+ specifier: ^1.3.0
+ version: 1.6.6
components/pixelbin:
- specifiers:
- '@pipedream/platform': 3.0.3
- form-data: ^4.0.0
dependencies:
- '@pipedream/platform': 3.0.3
- form-data: 4.0.0
+ '@pipedream/platform':
+ specifier: 3.0.3
+ version: 3.0.3
+ form-data:
+ specifier: ^4.0.0
+ version: 4.0.1
components/pixiebrix:
- specifiers:
- '@pipedream/platform': ^1.6.2
dependencies:
- '@pipedream/platform': 1.6.2
+ '@pipedream/platform':
+ specifier: ^1.6.2
+ version: 1.6.6
- components/placetel:
- specifiers: {}
+ components/placetel: {}
- components/placid:
- specifiers: {}
+ components/placid: {}
components/plain:
- specifiers:
- '@pipedream/platform': ^1.6.0
dependencies:
- '@pipedream/platform': 1.6.0
+ '@pipedream/platform':
+ specifier: ^1.6.0
+ version: 1.6.6
- components/planly:
- specifiers: {}
+ components/planly: {}
- components/planning_center:
- specifiers: {}
+ components/planning_center: {}
- components/planso_forms:
- specifiers: {}
+ components/planso_forms: {}
components/planview_leankit:
- specifiers:
- '@pipedream/platform': ^1.3.0
- moment: ^2.29.4
dependencies:
- '@pipedream/platform': 1.5.1
- moment: 2.29.4
+ '@pipedream/platform':
+ specifier: ^1.3.0
+ version: 1.6.6
+ moment:
+ specifier: ^2.29.4
+ version: 2.30.1
components/planyo_online_booking:
- specifiers:
- '@pipedream/platform': ^1.3.0
dependencies:
- '@pipedream/platform': 1.5.1
+ '@pipedream/platform':
+ specifier: ^1.3.0
+ version: 1.6.6
- components/plasmic:
- specifiers: {}
+ components/plasmic: {}
components/platerecognizer:
- specifiers:
- '@pipedream/platform': ^1.6.5
dependencies:
- '@pipedream/platform': 1.6.5
+ '@pipedream/platform':
+ specifier: ^1.6.5
+ version: 1.6.6
- components/platform_ly:
- specifiers: {}
+ components/platform_ly: {}
components/playwright:
- specifiers:
- '@sparticuz/chromium': 121.0.0
- playwright-core: 1.41.2
dependencies:
- '@sparticuz/chromium': 121.0.0
- playwright-core: 1.41.2
+ '@sparticuz/chromium':
+ specifier: 121.0.0
+ version: 121.0.0
+ playwright-core:
+ specifier: 1.41.2
+ version: 1.41.2
- components/plecto:
- specifiers: {}
+ components/plecto: {}
- components/plisio:
- specifiers: {}
+ components/plisio: {}
components/plivo:
- specifiers:
- '@pipedream/platform': ^1.2.1
- plivo: ^4.36.0
- uuid: ^9.0.0
dependencies:
- '@pipedream/platform': 1.5.1
- plivo: 4.57.0
- uuid: 9.0.1
+ '@pipedream/platform':
+ specifier: ^1.2.1
+ version: 1.6.6
+ plivo:
+ specifier: ^4.36.0
+ version: 4.69.2
+ uuid:
+ specifier: ^9.0.0
+ version: 9.0.1
- components/pobuca_connect:
- specifiers: {}
+ components/pobuca_connect: {}
components/pocket:
- specifiers:
- '@pipedream/platform': ^1.2.0
dependencies:
- '@pipedream/platform': 1.5.1
+ '@pipedream/platform':
+ specifier: ^1.2.0
+ version: 1.6.6
components/podio:
- specifiers:
- '@pipedream/platform': ^1.5.1
- form-data: ^4.0.0
dependencies:
- '@pipedream/platform': 1.5.1
- form-data: 4.0.0
+ '@pipedream/platform':
+ specifier: ^1.5.1
+ version: 1.6.6
+ form-data:
+ specifier: ^4.0.0
+ version: 4.0.1
components/pointagram:
- specifiers:
- '@pipedream/platform': ^1.1.1
dependencies:
- '@pipedream/platform': 1.5.1
+ '@pipedream/platform':
+ specifier: ^1.1.1
+ version: 1.6.6
- components/pointerpro:
- specifiers: {}
+ components/pointerpro: {}
- components/polygon_io:
- specifiers: {}
+ components/polygon_io: {}
components/polygonscan:
- specifiers:
- '@pipedream/platform': ^1.5.1
dependencies:
- '@pipedream/platform': 1.5.1
+ '@pipedream/platform':
+ specifier: ^1.5.1
+ version: 1.6.6
components/poof:
- specifiers:
- '@pipedream/platform': ^1.5.1
dependencies:
- '@pipedream/platform': 1.5.1
+ '@pipedream/platform':
+ specifier: ^1.5.1
+ version: 1.6.6
components/poper:
- specifiers:
- '@pipedream/platform': ^3.0.0
dependencies:
- '@pipedream/platform': 3.0.0
+ '@pipedream/platform':
+ specifier: ^3.0.0
+ version: 3.0.3
- components/popupsmart:
- specifiers: {}
+ components/popupsmart: {}
- components/portfolio_optimizer:
- specifiers: {}
+ components/portfolio_optimizer: {}
components/postalytics:
- specifiers:
- '@pipedream/platform': ^1.5.1
dependencies:
- '@pipedream/platform': 1.5.1
+ '@pipedream/platform':
+ specifier: ^1.5.1
+ version: 1.6.6
components/postgresql:
- specifiers:
- '@pipedream/platform': ^2.0.0
- dtslint: ^4.2.1
- pg: ^8.7.1
- pg-format: ^1.0.4
- dependencies:
- '@pipedream/platform': 2.0.0
- pg: 8.11.3
- pg-format: 1.0.4
+ dependencies:
+ '@pipedream/platform':
+ specifier: ^2.0.0
+ version: 2.0.0
+ pg:
+ specifier: ^8.7.1
+ version: 8.13.1
+ pg-format:
+ specifier: ^1.0.4
+ version: 1.0.4
devDependencies:
- dtslint: 4.2.1_typescript@5.5.4
+ dtslint:
+ specifier: ^4.2.1
+ version: 4.2.1(typescript@5.7.2)
components/postgrid:
- specifiers:
- '@pipedream/platform': ^1.5.1
dependencies:
- '@pipedream/platform': 1.5.1
+ '@pipedream/platform':
+ specifier: ^1.5.1
+ version: 1.6.6
components/postgrid_verify:
- specifiers:
- '@pipedream/platform': ^1.5.1
dependencies:
- '@pipedream/platform': 1.5.1
+ '@pipedream/platform':
+ specifier: ^1.5.1
+ version: 1.6.6
components/posthog:
- specifiers:
- '@pipedream/platform': ^1.6.4
dependencies:
- '@pipedream/platform': 1.6.4
+ '@pipedream/platform':
+ specifier: ^1.6.4
+ version: 1.6.6
components/postman:
- specifiers:
- '@pipedream/platform': ^1.5.1
dependencies:
- '@pipedream/platform': 1.5.1
+ '@pipedream/platform':
+ specifier: ^1.5.1
+ version: 1.6.6
components/postmark:
- specifiers:
- '@pipedream/platform': ^1.5.1
dependencies:
- '@pipedream/platform': 1.5.1
+ '@pipedream/platform':
+ specifier: ^1.5.1
+ version: 1.6.6
- components/power_automate:
- specifiers: {}
+ components/power_automate: {}
components/practitest:
- specifiers:
- '@pipedream/platform': ^1.1.1
- '@pipedream/types': ^0.1.4
dependencies:
- '@pipedream/platform': 1.5.1
- '@pipedream/types': 0.1.6
+ '@pipedream/platform':
+ specifier: ^1.1.1
+ version: 1.6.6
+ '@pipedream/types':
+ specifier: ^0.1.4
+ version: 0.1.6
components/precisefp:
- specifiers:
- '@pipedream/platform': ^1.5.1
dependencies:
- '@pipedream/platform': 1.5.1
+ '@pipedream/platform':
+ specifier: ^1.5.1
+ version: 1.6.6
components/pretix:
- specifiers:
- '@pipedream/platform': ^1.5.1
dependencies:
- '@pipedream/platform': 1.6.2
+ '@pipedream/platform':
+ specifier: ^1.5.1
+ version: 1.6.6
components/printautopilot:
- specifiers:
- '@pipedream/platform': ^1.5.1
dependencies:
- '@pipedream/platform': 1.5.1
+ '@pipedream/platform':
+ specifier: ^1.5.1
+ version: 1.6.6
components/printavo:
- specifiers:
- '@pipedream/platform': ^1.1.1
dependencies:
- '@pipedream/platform': 1.5.1
+ '@pipedream/platform':
+ specifier: ^1.1.1
+ version: 1.6.6
components/printful_oauth:
- specifiers:
- '@pipedream/platform': ^1.1.1
dependencies:
- '@pipedream/platform': 1.5.1
+ '@pipedream/platform':
+ specifier: ^1.1.1
+ version: 1.6.6
components/printify:
- specifiers:
- '@pipedream/platform': ^1.5.1
- crypto: ^1.0.1
- fs: ^0.0.1-security
dependencies:
- '@pipedream/platform': 1.5.1
- crypto: 1.0.1
- fs: 0.0.1-security
+ '@pipedream/platform':
+ specifier: ^1.5.1
+ version: 1.6.6
+ crypto:
+ specifier: ^1.0.1
+ version: 1.0.1
+ fs:
+ specifier: ^0.0.1-security
+ version: 0.0.1-security
components/printnode:
- specifiers:
- '@pipedream/platform': 1.5.1
dependencies:
- '@pipedream/platform': 1.5.1
+ '@pipedream/platform':
+ specifier: 1.5.1
+ version: 1.5.1
- components/prismic:
- specifiers: {}
+ components/prismic: {}
components/pro_ledger:
- specifiers:
- '@pipedream/platform': ^1.6.5
dependencies:
- '@pipedream/platform': 1.6.5
+ '@pipedream/platform':
+ specifier: ^1.6.5
+ version: 1.6.6
components/proabono:
- specifiers:
- '@pipedream/platform': ^1.6.0
dependencies:
- '@pipedream/platform': 1.6.0
+ '@pipedream/platform':
+ specifier: ^1.6.0
+ version: 1.6.6
components/process_street:
- specifiers:
- '@pipedream/platform': ^1.3.0
- lodash: ^4.17.21
dependencies:
- '@pipedream/platform': 1.5.1
- lodash: 4.17.21
+ '@pipedream/platform':
+ specifier: ^1.3.0
+ version: 1.6.6
+ lodash:
+ specifier: ^4.17.21
+ version: 4.17.21
- components/processplan:
- specifiers: {}
+ components/processplan: {}
- components/procfu:
- specifiers: {}
+ components/procfu: {}
components/procore:
- specifiers:
- '@pipedream/platform': ^1.1.1
dependencies:
- '@pipedream/platform': 1.5.1
+ '@pipedream/platform':
+ specifier: ^1.1.1
+ version: 1.6.6
- components/procore_sandbox:
- specifiers: {}
+ components/procore_sandbox: {}
components/prodpad:
- specifiers:
- '@pipedream/platform': ^1.2.1
dependencies:
- '@pipedream/platform': 1.5.1
+ '@pipedream/platform':
+ specifier: ^1.2.1
+ version: 1.6.6
- components/product_fruits:
- specifiers: {}
+ components/product_fruits: {}
components/product_hunt:
- specifiers:
- '@pipedream/platform': ^1.2.1
- graphql: '>=14.0.0 <15.0.0 || >=15.0.0 <16.0.0 || >=16.0.0 <17.0.0 || ^16.8.1'
- graphql-request: ^5.1.0
dependencies:
- '@pipedream/platform': 1.5.1
- graphql: 16.8.1
- graphql-request: 5.2.0_graphql@16.8.1
+ '@pipedream/platform':
+ specifier: ^1.2.1
+ version: 1.6.6
+ graphql:
+ specifier: '>=14.0.0 <15.0.0 || >=15.0.0 <16.0.0 || >=16.0.0 <17.0.0 || ^16.8.1'
+ version: 16.9.0
+ graphql-request:
+ specifier: ^5.1.0
+ version: 5.2.0(graphql@16.9.0)
components/productboard:
- specifiers:
- '@pipedream/platform': ^1.1.1
dependencies:
- '@pipedream/platform': 1.5.1
+ '@pipedream/platform':
+ specifier: ^1.1.1
+ version: 1.6.6
components/productive_io:
- specifiers:
- '@pipedream/platform': ^1.5.1
- crypto: ^1.0.1
dependencies:
- '@pipedream/platform': 1.5.1
- crypto: 1.0.1
+ '@pipedream/platform':
+ specifier: ^1.5.1
+ version: 1.6.6
+ crypto:
+ specifier: ^1.0.1
+ version: 1.0.1
components/productlane:
- specifiers:
- '@pipedream/platform': ^1.5.1
dependencies:
- '@pipedream/platform': 1.5.1
+ '@pipedream/platform':
+ specifier: ^1.5.1
+ version: 1.6.6
components/profitwell:
- specifiers:
- '@pipedream/platform': ^1.1.1
- '@pipedream/types': ^0.1.4
dependencies:
- '@pipedream/platform': 1.5.1
+ '@pipedream/platform':
+ specifier: ^1.1.1
+ version: 1.6.6
devDependencies:
- '@pipedream/types': 0.1.6
+ '@pipedream/types':
+ specifier: ^0.1.4
+ version: 0.1.6
components/project_broadcast:
- specifiers:
- '@pipedream/platform': ^1.5.1
dependencies:
- '@pipedream/platform': 1.5.1
+ '@pipedream/platform':
+ specifier: ^1.5.1
+ version: 1.6.6
- components/promptmate_io:
- specifiers: {}
+ components/promptmate_io: {}
components/proofly:
- specifiers:
- '@pipedream/platform': ^1.6.0
dependencies:
- '@pipedream/platform': 1.6.0
+ '@pipedream/platform':
+ specifier: ^1.6.0
+ version: 1.6.6
- components/propelauth:
- specifiers: {}
+ components/propelauth: {}
- components/propeller:
- specifiers: {}
+ components/propeller: {}
- components/proprofs_quiz_maker:
- specifiers: {}
+ components/proprofs_quiz_maker: {}
components/proworkflow:
- specifiers:
- '@pipedream/platform': ^1.2.1
dependencies:
- '@pipedream/platform': 1.5.1
+ '@pipedream/platform':
+ specifier: ^1.2.1
+ version: 1.6.6
- components/proxiedmail:
- specifiers: {}
+ components/proxiedmail: {}
- components/proxy_spider:
- specifiers: {}
+ components/proxy_spider: {}
components/proxycurl:
- specifiers:
- '@pipedream/platform': ^1.5.1
dependencies:
- '@pipedream/platform': 1.5.1
+ '@pipedream/platform':
+ specifier: ^1.5.1
+ version: 1.6.6
components/publisherkit:
- specifiers:
- '@pipedream/platform': ^1.6.0
dependencies:
- '@pipedream/platform': 1.6.0
+ '@pipedream/platform':
+ specifier: ^1.6.0
+ version: 1.6.6
components/pulsetic:
- specifiers:
- '@pipedream/platform': ^1.5.1
dependencies:
- '@pipedream/platform': 1.6.0
+ '@pipedream/platform':
+ specifier: ^1.5.1
+ version: 1.6.6
components/pumble:
- specifiers:
- '@pipedream/platform': ^2.0.0
dependencies:
- '@pipedream/platform': 2.0.0
+ '@pipedream/platform':
+ specifier: ^2.0.0
+ version: 2.0.0
components/puppeteer:
- specifiers:
- '@pipedream/platform': ^1.5.1
- '@sparticuz/chromium': 121.0.0
- puppeteer-core: 21.11.0
dependencies:
- '@pipedream/platform': 1.5.1
- '@sparticuz/chromium': 121.0.0
- puppeteer-core: 21.11.0
+ '@pipedream/platform':
+ specifier: ^1.5.1
+ version: 1.6.6
+ '@sparticuz/chromium':
+ specifier: 121.0.0
+ version: 121.0.0
+ puppeteer-core:
+ specifier: 21.11.0
+ version: 21.11.0
components/push_by_techulus:
- specifiers:
- '@pipedream/platform': ^1.5.1
dependencies:
- '@pipedream/platform': 1.5.1
+ '@pipedream/platform':
+ specifier: ^1.5.1
+ version: 1.6.6
components/pushcut:
- specifiers:
- '@pipedream/platform': ^1.5.1
dependencies:
- '@pipedream/platform': 1.5.1
+ '@pipedream/platform':
+ specifier: ^1.5.1
+ version: 1.6.6
components/pushover:
- specifiers:
- '@pipedream/platform': ^1.3.0
dependencies:
- '@pipedream/platform': 1.5.1
+ '@pipedream/platform':
+ specifier: ^1.3.0
+ version: 1.6.6
components/pushshift_reddit_search:
- specifiers:
- '@pipedream/platform': ^1.2.0
dependencies:
- '@pipedream/platform': 1.5.1
+ '@pipedream/platform':
+ specifier: ^1.2.0
+ version: 1.6.6
components/qdrant:
- specifiers:
- '@qdrant/js-client-rest': ^1.11.0
dependencies:
- '@qdrant/js-client-rest': 1.11.0_typescript@5.5.4
+ '@qdrant/js-client-rest':
+ specifier: ^1.11.0
+ version: 1.12.0(typescript@5.7.2)
components/qntrl:
- specifiers:
- '@pipedream/platform': ^1.6.0
dependencies:
- '@pipedream/platform': 1.6.2
+ '@pipedream/platform':
+ specifier: ^1.6.0
+ version: 1.6.6
- components/qryptal:
- specifiers: {}
+ components/qryptal: {}
- components/qstash:
- specifiers: {}
+ components/qstash: {}
components/quaderno:
- specifiers:
- '@pipedream/platform': ^1.4.1
dependencies:
- '@pipedream/platform': 1.5.1
+ '@pipedream/platform':
+ specifier: ^1.4.1
+ version: 1.6.6
components/qualaroo:
- specifiers:
- '@pipedream/platform': ^1.2.1
dependencies:
- '@pipedream/platform': 1.5.1
+ '@pipedream/platform':
+ specifier: ^1.2.1
+ version: 1.6.6
components/qualetics:
- specifiers:
- '@pipedream/platform': ^1.6.0
dependencies:
- '@pipedream/platform': 1.6.0
+ '@pipedream/platform':
+ specifier: ^1.6.0
+ version: 1.6.6
- components/qualiobee:
- specifiers: {}
+ components/qualiobee: {}
components/quentn:
- specifiers:
- '@pipedream/platform': ^1.2.1
dependencies:
- '@pipedream/platform': 1.5.1
+ '@pipedream/platform':
+ specifier: ^1.2.1
+ version: 1.6.6
- components/questionpro:
- specifiers: {}
+ components/questionpro: {}
components/quickbase:
- specifiers:
- '@pipedream/platform': ^1.6.0
dependencies:
- '@pipedream/platform': 1.6.2
+ '@pipedream/platform':
+ specifier: ^1.6.0
+ version: 1.6.6
components/quickbooks:
- specifiers:
- '@pipedream/platform': ^3.0.0
dependencies:
- '@pipedream/platform': 3.0.0
+ '@pipedream/platform':
+ specifier: ^3.0.0
+ version: 3.0.3
components/quickemailverification:
- specifiers:
- '@pipedream/platform': ^1.1.0
- '@pipedream/types': ^0.1.4
dependencies:
- '@pipedream/platform': 1.5.1
+ '@pipedream/platform':
+ specifier: ^1.1.0
+ version: 1.6.6
devDependencies:
- '@pipedream/types': 0.1.6
+ '@pipedream/types':
+ specifier: ^0.1.4
+ version: 0.1.6
- components/quickmail_io:
- specifiers: {}
+ components/quickmail_io: {}
components/quipu:
- specifiers:
- '@pipedream/platform': ^1.2.1
dependencies:
- '@pipedream/platform': 1.5.1
+ '@pipedream/platform':
+ specifier: ^1.2.1
+ version: 1.6.6
- components/qwilr:
- specifiers: {}
+ components/qwilr: {}
- components/radar:
- specifiers: {}
+ components/radar: {}
components/rafflys:
- specifiers:
- '@pipedream/platform': ^1.5.1
dependencies:
- '@pipedream/platform': 1.5.1
+ '@pipedream/platform':
+ specifier: ^1.5.1
+ version: 1.6.6
components/ragic:
- specifiers:
- '@pipedream/platform': ^1.1.1
dependencies:
- '@pipedream/platform': 1.5.1
+ '@pipedream/platform':
+ specifier: ^1.1.1
+ version: 1.6.6
- components/railsr:
- specifiers: {}
+ components/railsr: {}
components/raindrop:
- specifiers:
- '@pipedream/platform': ^1.2.0
- form-data: ^4.0.0
- got: ^13.0.0
- stream: ^0.0.2
- util: ^0.12.5
- dependencies:
- '@pipedream/platform': 1.5.1
- form-data: 4.0.0
- got: 13.0.0
- stream: 0.0.2
- util: 0.12.5
+ dependencies:
+ '@pipedream/platform':
+ specifier: ^1.2.0
+ version: 1.6.6
+ form-data:
+ specifier: ^4.0.0
+ version: 4.0.1
+ got:
+ specifier: ^13.0.0
+ version: 13.0.0
+ stream:
+ specifier: ^0.0.2
+ version: 0.0.2
+ util:
+ specifier: ^0.12.5
+ version: 0.12.5
components/raisely:
- specifiers:
- '@pipedream/platform': ^1.5.1
dependencies:
- '@pipedream/platform': 1.5.1
+ '@pipedream/platform':
+ specifier: ^1.5.1
+ version: 1.6.6
components/ramp:
- specifiers:
- '@pipedream/platform': ^3.0.0
- uuid: ^10.0.0
dependencies:
- '@pipedream/platform': 3.0.0
- uuid: 10.0.0
+ '@pipedream/platform':
+ specifier: ^3.0.0
+ version: 3.0.3
+ uuid:
+ specifier: ^10.0.0
+ version: 10.0.0
components/ramp_sandbox:
- specifiers:
- '@pipedream/platform': ^3.0.0
- uuid: ^10.0.0
dependencies:
- '@pipedream/platform': 3.0.0
- uuid: 10.0.0
+ '@pipedream/platform':
+ specifier: ^3.0.0
+ version: 3.0.3
+ uuid:
+ specifier: ^10.0.0
+ version: 10.0.0
components/range:
- specifiers:
- '@pipedream/platform': ^1.2.1
dependencies:
- '@pipedream/platform': 1.5.1
+ '@pipedream/platform':
+ specifier: ^1.2.1
+ version: 1.6.6
- components/rapid7_insight_platform:
- specifiers: {}
+ components/rapid7_insight_platform: {}
components/rapid_url_indexer:
- specifiers:
- '@pipedream/platform': ^3.0.3
dependencies:
- '@pipedream/platform': 3.0.3
+ '@pipedream/platform':
+ specifier: ^3.0.3
+ version: 3.0.3
- components/rat_genome_database:
- specifiers: {}
+ components/rat_genome_database: {}
- components/ratecard:
- specifiers: {}
+ components/ratecard: {}
components/raven_tools:
- specifiers:
- '@pipedream/platform': ^1.2.1
- '@pipedream/types': ^0.1.4
dependencies:
- '@pipedream/platform': 1.5.1
- '@pipedream/types': 0.1.6
+ '@pipedream/platform':
+ specifier: ^1.2.1
+ version: 1.6.6
+ '@pipedream/types':
+ specifier: ^0.1.4
+ version: 0.1.6
- components/rawg_video_games_database:
- specifiers: {}
+ components/rawg_video_games_database: {}
- components/razorpay:
- specifiers: {}
+ components/razorpay: {}
- components/rd_station_crm:
- specifiers: {}
+ components/rd_station_crm: {}
components/reachmail:
- specifiers:
- '@pipedream/platform': ^1.5.1
dependencies:
- '@pipedream/platform': 1.6.0
+ '@pipedream/platform':
+ specifier: ^1.5.1
+ version: 1.6.6
components/readwise:
- specifiers:
- '@pipedream/platform': ^1.2.0
dependencies:
- '@pipedream/platform': 1.5.1
+ '@pipedream/platform':
+ specifier: ^1.2.0
+ version: 1.6.6
components/realgeeks:
- specifiers:
- '@pipedream/platform': 1.5.1
dependencies:
- '@pipedream/platform': 1.5.1
+ '@pipedream/platform':
+ specifier: 1.5.1
+ version: 1.5.1
- components/realphonevalidation:
- specifiers: {}
+ components/realphonevalidation: {}
- components/reapit_foundations:
- specifiers: {}
+ components/reapit_foundations: {}
components/rebrandly:
- specifiers:
- '@pipedream/platform': ^1.2.0
dependencies:
- '@pipedream/platform': 1.5.1
+ '@pipedream/platform':
+ specifier: ^1.2.0
+ version: 1.6.6
components/recharge:
- specifiers:
- '@pipedream/platform': 1.6.0
dependencies:
- '@pipedream/platform': 1.6.0
+ '@pipedream/platform':
+ specifier: 1.6.0
+ version: 1.6.0
components/recreation_gov:
- specifiers:
- '@pipedream/platform': ^1.5.1
dependencies:
- '@pipedream/platform': 1.5.1
+ '@pipedream/platform':
+ specifier: ^1.5.1
+ version: 1.6.6
components/recruit_crm:
- specifiers:
- '@pipedream/platform': ^1.5.1
dependencies:
- '@pipedream/platform': 1.5.1
+ '@pipedream/platform':
+ specifier: ^1.5.1
+ version: 1.6.6
components/recruitee:
- specifiers:
- '@pipedream/platform': ^1.5.1
dependencies:
- '@pipedream/platform': 1.5.1
+ '@pipedream/platform':
+ specifier: ^1.5.1
+ version: 1.6.6
components/recruitis:
- specifiers:
- '@pipedream/platform': ^1.6.5
dependencies:
- '@pipedream/platform': 1.6.5
+ '@pipedream/platform':
+ specifier: ^1.6.5
+ version: 1.6.6
components/recurly:
- specifiers:
- '@pipedream/platform': ^1.2.1
- recurly: ^3.24.0
dependencies:
- '@pipedream/platform': 1.5.1
- recurly: 3.29.0
+ '@pipedream/platform':
+ specifier: ^1.2.1
+ version: 1.6.6
+ recurly:
+ specifier: ^3.24.0
+ version: 3.30.0
- components/redcircle_api:
- specifiers: {}
+ components/redcircle_api: {}
components/reddit:
- specifiers:
- '@pipedream/platform': ^1.4.0
- async-retry: ^1.3.3
- axios: ^0.27.2
- lodash: ^4.17.21
- qs: ^6.11.0
- dependencies:
- '@pipedream/platform': 1.5.1
- async-retry: 1.3.3
- axios: 0.27.2
- lodash: 4.17.21
- qs: 6.11.2
-
- components/redmine:
- specifiers: {}
+ dependencies:
+ '@pipedream/platform':
+ specifier: ^1.4.0
+ version: 1.6.6
+ async-retry:
+ specifier: ^1.3.3
+ version: 1.3.3
+ axios:
+ specifier: ^0.27.2
+ version: 0.27.2
+ lodash:
+ specifier: ^4.17.21
+ version: 4.17.21
+ qs:
+ specifier: ^6.11.0
+ version: 6.13.1
+
+ components/redmine: {}
components/referralhero:
- specifiers:
- '@pipedream/platform': ^1.5.1
dependencies:
- '@pipedream/platform': 1.5.1
+ '@pipedream/platform':
+ specifier: ^1.5.1
+ version: 1.6.6
- components/referralrock:
- specifiers: {}
+ components/referralrock: {}
components/referrizer:
- specifiers:
- '@pipedream/platform': ^1.5.1
dependencies:
- '@pipedream/platform': 1.5.1
+ '@pipedream/platform':
+ specifier: ^1.5.1
+ version: 1.6.6
components/refersion:
- specifiers:
- '@pipedream/platform': ^1.3.0
dependencies:
- '@pipedream/platform': 1.5.1
+ '@pipedream/platform':
+ specifier: ^1.3.0
+ version: 1.6.6
components/reflect:
- specifiers:
- '@pipedream/platform': ^1.5.1
dependencies:
- '@pipedream/platform': 1.5.1
+ '@pipedream/platform':
+ specifier: ^1.5.1
+ version: 1.6.6
components/reform:
- specifiers:
- '@pipedream/platform': ^1.6.0
- form-data: ^4.0.0
dependencies:
- '@pipedream/platform': 1.6.0
- form-data: 4.0.0
+ '@pipedream/platform':
+ specifier: ^1.6.0
+ version: 1.6.6
+ form-data:
+ specifier: ^4.0.0
+ version: 4.0.1
components/regal:
- specifiers:
- '@pipedream/platform': ^3.0.0
dependencies:
- '@pipedream/platform': 3.0.0
+ '@pipedream/platform':
+ specifier: ^3.0.0
+ version: 3.0.3
components/regfox:
- specifiers:
- '@pipedream/platform': ^1.3.0
dependencies:
- '@pipedream/platform': 1.5.1
+ '@pipedream/platform':
+ specifier: ^1.3.0
+ version: 1.6.6
components/reishost:
- specifiers:
- '@pipedream/platform': ^1.6.2
dependencies:
- '@pipedream/platform': 1.6.4
+ '@pipedream/platform':
+ specifier: ^1.6.2
+ version: 1.6.6
components/relavate:
- specifiers:
- '@pipedream/platform': ^1.6.5
dependencies:
- '@pipedream/platform': 1.6.5
+ '@pipedream/platform':
+ specifier: ^1.6.5
+ version: 1.6.6
components/relevance_ai:
- specifiers:
- '@pipedream/platform': ^1.5.1
dependencies:
- '@pipedream/platform': 1.6.4
+ '@pipedream/platform':
+ specifier: ^1.5.1
+ version: 1.6.6
- components/remarkety:
- specifiers: {}
+ components/remarkety: {}
- components/remote:
- specifiers: {}
+ components/remote: {}
components/remote_retrieval:
- specifiers:
- '@pipedream/platform': ^3.0.0
dependencies:
- '@pipedream/platform': 3.0.0
+ '@pipedream/platform':
+ specifier: ^3.0.0
+ version: 3.0.3
- components/render:
- specifiers: {}
+ components/render: {}
- components/renderform:
- specifiers: {}
+ components/renderform: {}
components/rentcast:
- specifiers:
- '@pipedream/platform': ^2.0.0
dependencies:
- '@pipedream/platform': 2.0.0
+ '@pipedream/platform':
+ specifier: ^2.0.0
+ version: 2.0.0
components/rentman:
- specifiers:
- '@pipedream/platform': ^3.0.0
dependencies:
- '@pipedream/platform': 3.0.0
+ '@pipedream/platform':
+ specifier: ^3.0.0
+ version: 3.0.3
components/repairshopr:
- specifiers:
- '@pipedream/platform': ^1.2.1
dependencies:
- '@pipedream/platform': 1.5.1
+ '@pipedream/platform':
+ specifier: ^1.2.1
+ version: 1.6.6
components/replicate:
- specifiers:
- '@pipedream/platform': ^1.5.1
dependencies:
- '@pipedream/platform': 1.5.1
+ '@pipedream/platform':
+ specifier: ^1.5.1
+ version: 1.6.6
components/repliq:
- specifiers:
- '@pipedream/platform': ^2.0.0
dependencies:
- '@pipedream/platform': 2.0.0
+ '@pipedream/platform':
+ specifier: ^2.0.0
+ version: 2.0.0
components/reply_io:
- specifiers:
- '@pipedream/platform': ^1.2.1
- lodash-es: ^4.17.21
dependencies:
- '@pipedream/platform': 1.5.1
- lodash-es: 4.17.21
+ '@pipedream/platform':
+ specifier: ^1.2.1
+ version: 1.6.6
+ lodash-es:
+ specifier: ^4.17.21
+ version: 4.17.21
components/repuso:
- specifiers:
- '@pipedream/platform': ^1.1.0
- '@pipedream/types': ^0.1.4
dependencies:
- '@pipedream/platform': 1.5.1
- '@pipedream/types': 0.1.6
+ '@pipedream/platform':
+ specifier: ^1.1.0
+ version: 1.6.6
+ '@pipedream/types':
+ specifier: ^0.1.4
+ version: 0.1.6
components/reputation_lyncs:
- specifiers:
- '@pipedream/platform': ^1.6.0
dependencies:
- '@pipedream/platform': 1.6.0
+ '@pipedream/platform':
+ specifier: ^1.6.0
+ version: 1.6.6
components/rescuetime:
- specifiers:
- '@pipedream/platform': ^1.2.1
dependencies:
- '@pipedream/platform': 1.5.1
+ '@pipedream/platform':
+ specifier: ^1.2.1
+ version: 1.6.6
components/resend:
- specifiers:
- '@pipedream/platform': ^1.5.1
- '@pipedream/types': ^0.1.6
dependencies:
- '@pipedream/platform': 1.5.1
- '@pipedream/types': 0.1.6
+ '@pipedream/platform':
+ specifier: ^1.5.1
+ version: 1.6.6
+ '@pipedream/types':
+ specifier: ^0.1.6
+ version: 0.1.6
components/resource_guru:
- specifiers:
- '@pipedream/platform': ^1.5.1
dependencies:
- '@pipedream/platform': 1.5.1
+ '@pipedream/platform':
+ specifier: ^1.5.1
+ version: 1.6.6
- components/respond_io:
- specifiers: {}
+ components/respond_io: {}
components/rest_countries_pe:
- specifiers:
- '@pipedream/platform': ^1.4.1
dependencies:
- '@pipedream/platform': 1.5.1
+ '@pipedream/platform':
+ specifier: ^1.4.1
+ version: 1.6.6
components/retable:
- specifiers:
- '@pipedream/platform': ^1.5.1
dependencies:
- '@pipedream/platform': 1.5.1
+ '@pipedream/platform':
+ specifier: ^1.5.1
+ version: 1.6.6
components/retailed:
- specifiers:
- '@pipedream/platform': ^1.6.0
dependencies:
- '@pipedream/platform': 1.6.0
+ '@pipedream/platform':
+ specifier: ^1.6.0
+ version: 1.6.6
- components/retell:
- specifiers: {}
+ components/retell: {}
components/retently:
- specifiers:
- '@pipedream/platform': ^1.5.1
dependencies:
- '@pipedream/platform': 1.5.1
+ '@pipedream/platform':
+ specifier: ^1.5.1
+ version: 1.6.6
- components/retool:
- specifiers: {}
+ components/retool: {}
components/retriever:
- specifiers:
- '@pipedream/platform': ^1.5.1
dependencies:
- '@pipedream/platform': 1.5.1
+ '@pipedream/platform':
+ specifier: ^1.5.1
+ version: 1.6.6
components/rev:
- specifiers:
- '@pipedream/platform': ^1.2.1
dependencies:
- '@pipedream/platform': 1.5.1
+ '@pipedream/platform':
+ specifier: ^1.2.1
+ version: 1.6.6
- components/revamp_crm:
- specifiers: {}
+ components/revamp_crm: {}
components/reversecontact:
- specifiers:
- '@pipedream/platform': ^1.3.0
- '@pipedream/types': ^0.1.4
dependencies:
- '@pipedream/platform': 1.5.1
- '@pipedream/types': 0.1.6
+ '@pipedream/platform':
+ specifier: ^1.3.0
+ version: 1.6.6
+ '@pipedream/types':
+ specifier: ^0.1.4
+ version: 0.1.6
components/reviewflowz:
- specifiers:
- '@pipedream/platform': ^1.5.1
dependencies:
- '@pipedream/platform': 1.6.0
+ '@pipedream/platform':
+ specifier: ^1.5.1
+ version: 1.6.6
- components/reviews_io:
- specifiers: {}
+ components/reviews_io: {}
components/revolt:
- specifiers:
- '@pipedream/platform': ^2.0.0
dependencies:
- '@pipedream/platform': 2.0.0
+ '@pipedream/platform':
+ specifier: ^2.0.0
+ version: 2.0.0
- components/reward_sciences:
- specifiers: {}
+ components/reward_sciences: {}
- components/rewardful:
- specifiers: {}
+ components/rewardful: {}
components/rex:
- specifiers:
- '@pipedream/platform': ^1.5.1
dependencies:
- '@pipedream/platform': 1.5.1
+ '@pipedream/platform':
+ specifier: ^1.5.1
+ version: 1.6.6
components/ringcentral:
- specifiers:
- '@pipedream/platform': ^1.2.0
dependencies:
- '@pipedream/platform': 1.5.1
+ '@pipedream/platform':
+ specifier: ^1.2.0
+ version: 1.6.6
components/ringover:
- specifiers:
- '@pipedream/platform': ^1.5.1
dependencies:
- '@pipedream/platform': 1.5.1
+ '@pipedream/platform':
+ specifier: ^1.5.1
+ version: 1.6.6
components/rise:
- specifiers:
- '@pipedream/platform': ^1.1.1
dependencies:
- '@pipedream/platform': 1.5.1
+ '@pipedream/platform':
+ specifier: ^1.1.1
+ version: 1.6.6
components/riskadvisor:
- specifiers:
- '@pipedream/platform': ^1.5.1
- lodash: ^4.17.21
dependencies:
- '@pipedream/platform': 1.5.1
- lodash: 4.17.21
+ '@pipedream/platform':
+ specifier: ^1.5.1
+ version: 1.6.6
+ lodash:
+ specifier: ^4.17.21
+ version: 4.17.21
components/rkvst:
- specifiers:
- '@pipedream/platform': ^1.5.1
dependencies:
- '@pipedream/platform': 1.6.0
+ '@pipedream/platform':
+ specifier: ^1.5.1
+ version: 1.6.6
- components/roam_research:
- specifiers: {}
+ components/roam_research: {}
components/roamresearch:
- specifiers:
- '@pipedream/platform': 3.0.3
dependencies:
- '@pipedream/platform': 3.0.3
+ '@pipedream/platform':
+ specifier: 3.0.3
+ version: 3.0.3
- components/robocorp:
- specifiers: {}
+ components/robocorp: {}
components/roboflow:
- specifiers:
- '@pipedream/platform': ^1.5.1
dependencies:
- '@pipedream/platform': 1.5.1
+ '@pipedream/platform':
+ specifier: ^1.5.1
+ version: 1.6.6
components/rocket_chat:
- specifiers:
- '@pipedream/platform': ^1.6.2
dependencies:
- '@pipedream/platform': 1.6.2
+ '@pipedream/platform':
+ specifier: ^1.6.2
+ version: 1.6.6
components/rocketreach:
- specifiers:
- '@pipedream/platform': ^0.10.0
dependencies:
- '@pipedream/platform': 0.10.0
+ '@pipedream/platform':
+ specifier: ^0.10.0
+ version: 0.10.0
components/roll:
- specifiers:
- '@pipedream/platform': ^1.2.1
- graphql: '>=14.0.0 <15.0.0 || >=15.0.0 <16.0.0 || >=16.0.0 <17.0.0 || ^16.8.1'
- graphql-request: ^5.1.0
- moment: ^2.29.4
dependencies:
- '@pipedream/platform': 1.5.1
- graphql: 16.8.1
- graphql-request: 5.2.0_graphql@16.8.1
- moment: 2.29.4
+ '@pipedream/platform':
+ specifier: ^1.2.1
+ version: 1.6.6
+ graphql:
+ specifier: '>=14.0.0 <15.0.0 || >=15.0.0 <16.0.0 || >=16.0.0 <17.0.0 || ^16.8.1'
+ version: 16.9.0
+ graphql-request:
+ specifier: ^5.1.0
+ version: 5.2.0(graphql@16.9.0)
+ moment:
+ specifier: ^2.29.4
+ version: 2.30.1
components/rollbar:
- specifiers:
- '@pipedream/platform': ^1.6.0
dependencies:
- '@pipedream/platform': 1.6.2
+ '@pipedream/platform':
+ specifier: ^1.6.0
+ version: 1.6.6
- components/rosette_text_analytics:
- specifiers: {}
+ components/rosette_text_analytics: {}
- components/route4me:
- specifiers: {}
+ components/route4me: {}
components/rss:
- specifiers:
- '@pipedream/helpers': ^1.3.9
- '@pipedream/platform': ^1.4.0
- '@types/axios': ^0.14.0
- '@types/feedparser': ^2.2.5
- '@types/node': ^17.0.36
- '@types/object-hash': ^2.2.1
- feedparser: ^2.2.10
- object-hash: ^3.0.0
- rss-parser: ^3.12.0
- string-to-stream: ^3.0.1
- dependencies:
- '@pipedream/helpers': 1.3.12
- '@pipedream/platform': 1.5.1
- feedparser: 2.2.10
- object-hash: 3.0.0
- rss-parser: 3.13.0
- string-to-stream: 3.0.1
+ dependencies:
+ '@pipedream/helpers':
+ specifier: ^1.3.9
+ version: 1.3.12
+ '@pipedream/platform':
+ specifier: ^1.4.0
+ version: 1.6.6
+ feedparser:
+ specifier: ^2.2.10
+ version: 2.2.10
+ object-hash:
+ specifier: ^3.0.0
+ version: 3.0.0
+ rss-parser:
+ specifier: ^3.12.0
+ version: 3.13.0
+ string-to-stream:
+ specifier: ^3.0.1
+ version: 3.0.1
devDependencies:
- '@types/axios': 0.14.0
- '@types/feedparser': 2.2.6
- '@types/node': 17.0.45
- '@types/object-hash': 2.2.1
+ '@types/axios':
+ specifier: ^0.14.0
+ version: 0.14.4
+ '@types/feedparser':
+ specifier: ^2.2.5
+ version: 2.2.8
+ '@types/node':
+ specifier: ^17.0.36
+ version: 17.0.45
+ '@types/object-hash':
+ specifier: ^2.2.1
+ version: 2.2.1
- components/rudderstack:
- specifiers: {}
+ components/rudderstack: {}
- components/rudderstack_transformation:
- specifiers: {}
+ components/rudderstack_transformation: {}
- components/ruly:
- specifiers: {}
+ components/ruly: {}
- components/rumble:
- specifiers: {}
+ components/rumble: {}
- components/runpod:
- specifiers: {}
+ components/runpod: {}
components/runware:
- specifiers:
- '@pipedream/platform': 3.0.3
- uuid: ^10.0.0
dependencies:
- '@pipedream/platform': 3.0.3
- uuid: 10.0.0
+ '@pipedream/platform':
+ specifier: 3.0.3
+ version: 3.0.3
+ uuid:
+ specifier: ^10.0.0
+ version: 10.0.0
- components/rytr:
- specifiers: {}
+ components/rytr: {}
- components/ryver:
- specifiers: {}
+ components/ryver: {}
- components/sailpoint:
- specifiers: {}
+ components/sailpoint: {}
- components/sailpoint_personal_token:
- specifiers: {}
+ components/sailpoint_personal_token: {}
- components/sakari_sms:
- specifiers: {}
+ components/sakari_sms: {}
- components/saleor:
- specifiers: {}
+ components/saleor: {}
- components/sales_simplify:
- specifiers: {}
+ components/sales_simplify: {}
- components/salesblink:
- specifiers: {}
+ components/salesblink: {}
components/salesflare:
- specifiers:
- '@pipedream/platform': ^1.3.0
dependencies:
- '@pipedream/platform': 1.5.1
+ '@pipedream/platform':
+ specifier: ^1.3.0
+ version: 1.6.6
components/salesforce_rest_api:
- specifiers:
- '@pipedream/platform': ^3.0.0
- fast-xml-parser: ^4.3.2
- handlebars: ^4.7.7
- lodash: ^4.17.21
- lodash-es: ^4.17.21
- salesforce-webhooks: ^1.1.11
- uuid: ^9.0.1
- dependencies:
- '@pipedream/platform': 3.0.0
- fast-xml-parser: 4.3.2
- handlebars: 4.7.8
- lodash: 4.17.21
- lodash-es: 4.17.21
- salesforce-webhooks: 1.1.11_handlebars@4.7.8
- uuid: 9.0.1
+ dependencies:
+ '@pipedream/platform':
+ specifier: ^3.0.0
+ version: 3.0.3
+ fast-xml-parser:
+ specifier: ^4.3.2
+ version: 4.5.0
+ handlebars:
+ specifier: ^4.7.7
+ version: 4.7.8
+ lodash:
+ specifier: ^4.17.21
+ version: 4.17.21
+ lodash-es:
+ specifier: ^4.17.21
+ version: 4.17.21
+ salesforce-webhooks:
+ specifier: ^1.1.11
+ version: 1.1.14(handlebars@4.7.8)
+ uuid:
+ specifier: ^9.0.1
+ version: 9.0.1
components/saleslens:
- specifiers:
- '@pipedream/platform': ^1.5.1
dependencies:
- '@pipedream/platform': 1.5.1
+ '@pipedream/platform':
+ specifier: ^1.5.1
+ version: 1.6.6
components/salesmate:
- specifiers:
- '@pipedream/platform': ^1.2.1
dependencies:
- '@pipedream/platform': 1.5.1
+ '@pipedream/platform':
+ specifier: ^1.2.1
+ version: 1.6.6
components/salesmsg:
- specifiers:
- '@pipedream/platform': ^1.5.1
dependencies:
- '@pipedream/platform': 1.5.1
+ '@pipedream/platform':
+ specifier: ^1.5.1
+ version: 1.6.6
- components/salespype:
- specifiers: {}
+ components/salespype: {}
- components/salestown:
- specifiers: {}
+ components/salestown: {}
- components/samcart:
- specifiers: {}
+ components/samcart: {}
components/samsara:
- specifiers:
- '@pipedream/platform': ^2.0.0
dependencies:
- '@pipedream/platform': 2.0.0
+ '@pipedream/platform':
+ specifier: ^2.0.0
+ version: 2.0.0
- components/sapling:
- specifiers: {}
+ components/sapling: {}
components/sapling_ai:
- specifiers:
- '@pipedream/platform': ^1.4.1
dependencies:
- '@pipedream/platform': 1.5.1
+ '@pipedream/platform':
+ specifier: ^1.4.1
+ version: 1.6.6
components/sare:
- specifiers:
- '@pipedream/platform': ^1.6.2
dependencies:
- '@pipedream/platform': 1.6.4
+ '@pipedream/platform':
+ specifier: ^1.6.2
+ version: 1.6.6
components/satismeter:
- specifiers:
- '@pipedream/platform': ^1.5.1
dependencies:
- '@pipedream/platform': 1.5.1
+ '@pipedream/platform':
+ specifier: ^1.5.1
+ version: 1.6.6
components/satuit:
- specifiers:
- '@pipedream/platform': ^1.6.0
dependencies:
- '@pipedream/platform': 1.6.0
+ '@pipedream/platform':
+ specifier: ^1.6.0
+ version: 1.6.6
- components/saucelabs:
- specifiers: {}
+ components/saucelabs: {}
components/savvycal:
- specifiers:
- crypto: ^1.0.1
dependencies:
- crypto: 1.0.1
+ crypto:
+ specifier: ^1.0.1
+ version: 1.0.1
components/scale_ai:
- specifiers:
- '@pipedream/platform': ^1.5.1
dependencies:
- '@pipedream/platform': 1.5.1
+ '@pipedream/platform':
+ specifier: ^1.5.1
+ version: 1.6.6
- components/scalr:
- specifiers: {}
+ components/scalr: {}
- components/schedule_it:
- specifiers: {}
+ components/schedule_it: {}
- components/scopemaster:
- specifiers: {}
+ components/scopemaster: {}
components/scoredetect:
- specifiers:
- '@pipedream/platform': ^1.6.0
- form-data: ^4.0.0
dependencies:
- '@pipedream/platform': 1.6.0
- form-data: 4.0.0
+ '@pipedream/platform':
+ specifier: ^1.6.0
+ version: 1.6.6
+ form-data:
+ specifier: ^4.0.0
+ version: 4.0.1
- components/scoro:
- specifiers: {}
+ components/scoro: {}
components/scrape_it_cloud:
- specifiers:
- '@pipedream/platform': ^1.4.1
dependencies:
- '@pipedream/platform': 1.5.1
+ '@pipedream/platform':
+ specifier: ^1.4.1
+ version: 1.6.6
- components/scrapein_:
- specifiers: {}
+ components/scrapein_: {}
- components/scrapeninja:
- specifiers: {}
+ components/scrapeninja: {}
components/scrapfly:
- specifiers:
- '@pipedream/platform': ^3.0.1
dependencies:
- '@pipedream/platform': 3.0.1
+ '@pipedream/platform':
+ specifier: ^3.0.1
+ version: 3.0.3
- components/scrapingant:
- specifiers: {}
+ components/scrapingant: {}
- components/scrapingbee:
- specifiers: {}
+ components/scrapingbee: {}
components/scrapingbot:
- specifiers:
- '@pipedream/platform': ^1.4.1
dependencies:
- '@pipedream/platform': 1.5.1
+ '@pipedream/platform':
+ specifier: ^1.4.1
+ version: 1.6.6
components/scraptio:
- specifiers:
- '@pipedream/platform': ^1.5.1
dependencies:
- '@pipedream/platform': 1.5.1
+ '@pipedream/platform':
+ specifier: ^1.5.1
+ version: 1.6.6
components/screendesk:
- specifiers:
- '@pipedream/platform': ^1.5.1
dependencies:
- '@pipedream/platform': 1.5.1
+ '@pipedream/platform':
+ specifier: ^1.5.1
+ version: 1.6.6
components/screenshotone:
- specifiers:
- '@pipedream/platform': ^1.5.1
- path: ^0.12.7
- stream: ^0.0.2
- util: ^0.12.5
dependencies:
- '@pipedream/platform': 1.5.1
- path: 0.12.7
- stream: 0.0.2
- util: 0.12.5
-
- components/sdk:
- specifiers: {}
+ '@pipedream/platform':
+ specifier: ^1.5.1
+ version: 1.6.6
+ path:
+ specifier: ^0.12.7
+ version: 0.12.7
+ stream:
+ specifier: ^0.0.2
+ version: 0.0.2
+ util:
+ specifier: ^0.12.5
+ version: 0.12.5
+
+ components/sdk: {}
components/search_api:
- specifiers:
- '@pipedream/platform': ^1.5.1
dependencies:
- '@pipedream/platform': 1.5.1
+ '@pipedream/platform':
+ specifier: ^1.5.1
+ version: 1.6.6
components/seatable:
- specifiers:
- '@pipedream/platform': ^1.6.2
dependencies:
- '@pipedream/platform': 1.6.2
+ '@pipedream/platform':
+ specifier: ^1.6.2
+ version: 1.6.6
components/security_reporter:
- specifiers:
- '@pipedream/platform': ^3.0.1
- form-data: ^4.0.0
dependencies:
- '@pipedream/platform': 3.0.1
- form-data: 4.0.0
+ '@pipedream/platform':
+ specifier: ^3.0.1
+ version: 3.0.3
+ form-data:
+ specifier: ^4.0.0
+ version: 4.0.1
components/securitytrails:
- specifiers:
- '@pipedream/platform': 3.0.1
dependencies:
- '@pipedream/platform': 3.0.1
+ '@pipedream/platform':
+ specifier: 3.0.1
+ version: 3.0.1
components/segment:
- specifiers:
- '@pipedream/platform': ^0.10.0
dependencies:
- '@pipedream/platform': 0.10.0
+ '@pipedream/platform':
+ specifier: ^0.10.0
+ version: 0.10.0
components/segmetrics:
- specifiers:
- '@pipedream/platform': ^1.5.1
dependencies:
- '@pipedream/platform': 1.5.1
+ '@pipedream/platform':
+ specifier: ^1.5.1
+ version: 1.6.6
- components/selectpdf:
- specifiers: {}
+ components/selectpdf: {}
components/sellercloud:
- specifiers:
- '@pipedream/platform': ^1.5.1
dependencies:
- '@pipedream/platform': 1.5.1
+ '@pipedream/platform':
+ specifier: ^1.5.1
+ version: 1.6.6
- components/sellix:
- specifiers: {}
+ components/sellix: {}
- components/sellsy:
- specifiers: {}
+ components/sellsy: {}
- components/semaphore:
- specifiers: {}
+ components/semaphore: {}
components/semgrep:
- specifiers:
- '@pipedream/platform': ^1.6.0
dependencies:
- '@pipedream/platform': 1.6.0
+ '@pipedream/platform':
+ specifier: ^1.6.0
+ version: 1.6.6
components/sendbird:
- specifiers:
- '@babel/core': ^7.0.0-0
- '@pipedream/platform': ^1.1.0
- sendbird-platform-sdk: ^0.0.14
dependencies:
- '@babel/core': 7.23.0
- '@pipedream/platform': 1.5.1
- sendbird-platform-sdk: 0.0.14_@babel+core@7.23.0
+ '@babel/core':
+ specifier: ^7.0.0-0
+ version: 7.26.0
+ '@pipedream/platform':
+ specifier: ^1.1.0
+ version: 1.6.6
+ sendbird-platform-sdk:
+ specifier: ^0.0.14
+ version: 0.0.14(@babel/core@7.26.0)
components/sendbird_ai_chabot:
- specifiers:
- '@pipedream/platform': ^3.0.1
dependencies:
- '@pipedream/platform': 3.0.1
+ '@pipedream/platform':
+ specifier: ^3.0.1
+ version: 3.0.3
- components/sendblue:
- specifiers: {}
+ components/sendblue: {}
components/sendcloud:
- specifiers:
- '@pipedream/platform': ^1.6.0
dependencies:
- '@pipedream/platform': 1.6.2
+ '@pipedream/platform':
+ specifier: ^1.6.0
+ version: 1.6.6
- components/sender:
- specifiers: {}
+ components/sender: {}
components/sendgrid:
- specifiers:
- '@pipedream/platform': ^1.2.0
- '@sendgrid/client': ^7.6.2
- '@sendgrid/eventwebhook': ^7.4.5
- async-retry: ^1.3.1
- lodash: ^4.17.20
- uuid: ^8.3.2
- validate.js: ^0.13.1
- dependencies:
- '@pipedream/platform': 1.5.1
- '@sendgrid/client': 7.7.0
- '@sendgrid/eventwebhook': 7.7.0
- async-retry: 1.3.3
- lodash: 4.17.21
- uuid: 8.3.2
- validate.js: 0.13.1
+ dependencies:
+ '@pipedream/platform':
+ specifier: ^1.2.0
+ version: 1.6.6
+ '@sendgrid/client':
+ specifier: ^7.6.2
+ version: 7.7.0
+ '@sendgrid/eventwebhook':
+ specifier: ^7.4.5
+ version: 7.7.0
+ async-retry:
+ specifier: ^1.3.1
+ version: 1.3.3
+ lodash:
+ specifier: ^4.17.20
+ version: 4.17.21
+ uuid:
+ specifier: ^8.3.2
+ version: 8.3.2
+ validate.js:
+ specifier: ^0.13.1
+ version: 0.13.1
components/sendinblue:
- specifiers:
- '@pipedream/platform': ^1.1.0
dependencies:
- '@pipedream/platform': 1.5.1
+ '@pipedream/platform':
+ specifier: ^1.1.0
+ version: 1.6.6
- components/sendlane:
- specifiers: {}
+ components/sendlane: {}
- components/sendle:
- specifiers: {}
+ components/sendle: {}
components/sendloop:
- specifiers:
- '@pipedream/platform': ^1.6.0
dependencies:
- '@pipedream/platform': 1.6.0
+ '@pipedream/platform':
+ specifier: ^1.6.0
+ version: 1.6.6
components/sendoso:
- specifiers:
- '@pipedream/platform': ^1.2.1
dependencies:
- '@pipedream/platform': 1.5.1
+ '@pipedream/platform':
+ specifier: ^1.2.1
+ version: 1.6.6
components/sendowl:
- specifiers:
- '@pipedream/platform': ^1.2.0
dependencies:
- '@pipedream/platform': 1.5.1
+ '@pipedream/platform':
+ specifier: ^1.2.0
+ version: 1.6.6
components/sendsms:
- specifiers:
- '@pipedream/platform': ^1.6.2
dependencies:
- '@pipedream/platform': 1.6.2
+ '@pipedream/platform':
+ specifier: ^1.6.2
+ version: 1.6.6
components/sendspark:
- specifiers:
- '@pipedream/platform': ^3.0.0
dependencies:
- '@pipedream/platform': 3.0.0
+ '@pipedream/platform':
+ specifier: ^3.0.0
+ version: 3.0.3
components/sendx:
- specifiers:
- '@pipedream/platform': ^1.5.1
dependencies:
- '@pipedream/platform': 1.6.2
+ '@pipedream/platform':
+ specifier: ^1.5.1
+ version: 1.6.6
components/sendy:
- specifiers:
- '@pipedream/platform': ^1.5.1
dependencies:
- '@pipedream/platform': 1.6.2
+ '@pipedream/platform':
+ specifier: ^1.5.1
+ version: 1.6.6
- components/sensibo:
- specifiers: {}
+ components/sensibo: {}
components/senta:
- specifiers:
- '@pipedream/platform': ^1.5.1
dependencies:
- '@pipedream/platform': 1.5.1
+ '@pipedream/platform':
+ specifier: ^1.5.1
+ version: 1.6.6
components/sentry:
- specifiers:
- '@pipedream/platform': ^1.4.0
- parse-link-header: ^2.0.0
- slugify: ^1.4.6
dependencies:
- '@pipedream/platform': 1.5.1
- parse-link-header: 2.0.0
- slugify: 1.6.6
+ '@pipedream/platform':
+ specifier: ^1.4.0
+ version: 1.6.6
+ parse-link-header:
+ specifier: ^2.0.0
+ version: 2.0.0
+ slugify:
+ specifier: ^1.4.6
+ version: 1.6.6
components/seqera:
- specifiers:
- '@pipedream/platform': ^3.0.3
dependencies:
- '@pipedream/platform': 3.0.3
+ '@pipedream/platform':
+ specifier: ^3.0.3
+ version: 3.0.3
components/serpapi:
- specifiers:
- '@pipedream/platform': ^3.0.0
dependencies:
- '@pipedream/platform': 3.0.0
+ '@pipedream/platform':
+ specifier: ^3.0.0
+ version: 3.0.3
- components/serpdog:
- specifiers: {}
+ components/serpdog: {}
- components/serphouse:
- specifiers: {}
+ components/serphouse: {}
components/serply:
- specifiers:
- '@pipedream/platform': ^1.5.1
dependencies:
- '@pipedream/platform': 1.5.1
+ '@pipedream/platform':
+ specifier: ^1.5.1
+ version: 1.6.6
components/serveravatar:
- specifiers:
- '@pipedream/helpers': ^1.3.9
- '@pipedream/platform': ^0.10.0
- '@types/node': ^17.0.36
dependencies:
- '@pipedream/helpers': 1.3.12
- '@pipedream/platform': 0.10.0
+ '@pipedream/helpers':
+ specifier: ^1.3.9
+ version: 1.3.12
+ '@pipedream/platform':
+ specifier: ^0.10.0
+ version: 0.10.0
devDependencies:
- '@types/node': 17.0.45
+ '@types/node':
+ specifier: ^17.0.36
+ version: 17.0.45
components/servicem8:
- specifiers:
- '@pipedream/platform': ^1.2.1
dependencies:
- '@pipedream/platform': 1.5.1
+ '@pipedream/platform':
+ specifier: ^1.2.1
+ version: 1.6.6
- components/serwersms_pl:
- specifiers: {}
+ components/serwersms_pl: {}
components/sessions:
- specifiers:
- '@pipedream/platform': ^1.6.0
dependencies:
- '@pipedream/platform': 1.6.0
+ '@pipedream/platform':
+ specifier: ^1.6.0
+ version: 1.6.6
components/setmoreappointments:
- specifiers:
- '@pipedream/platform': ^1.5.1
dependencies:
- '@pipedream/platform': 1.5.1
+ '@pipedream/platform':
+ specifier: ^1.5.1
+ version: 1.6.6
components/sevdesk:
- specifiers:
- '@pipedream/platform': ^1.5.1
dependencies:
- '@pipedream/platform': 1.6.2
+ '@pipedream/platform':
+ specifier: ^1.5.1
+ version: 1.6.6
components/seven:
- specifiers:
- '@pipedream/platform': ^3.0.1
dependencies:
- '@pipedream/platform': 3.0.1
+ '@pipedream/platform':
+ specifier: ^3.0.1
+ version: 3.0.3
components/seventodos:
- specifiers:
- axios: ^0.27.2
dependencies:
- axios: 0.27.2
+ axios:
+ specifier: ^0.27.2
+ version: 0.27.2
components/sftp:
- specifiers:
- '@pipedream/platform': ^1.2.0
- ssh2-sftp-client: ^8.1.0
dependencies:
- '@pipedream/platform': 1.5.1
- ssh2-sftp-client: 8.1.0
+ '@pipedream/platform':
+ specifier: ^1.2.0
+ version: 1.6.6
+ ssh2-sftp-client:
+ specifier: ^8.1.0
+ version: 8.1.0
components/sftp_password_based_auth:
- specifiers:
- ssh2-sftp-client: ^8.1.0
dependencies:
- ssh2-sftp-client: 8.1.0
+ ssh2-sftp-client:
+ specifier: ^8.1.0
+ version: 8.1.0
components/shadertoy:
- specifiers:
- '@pipedream/platform': ^1.6.0
dependencies:
- '@pipedream/platform': 1.6.2
+ '@pipedream/platform':
+ specifier: ^1.6.0
+ version: 1.6.6
components/sharepoint:
- specifiers:
- '@pipedream/platform': ^1.5.1
dependencies:
- '@pipedream/platform': 1.5.1
+ '@pipedream/platform':
+ specifier: ^1.5.1
+ version: 1.6.6
components/sheetdb:
- specifiers:
- '@pipedream/platform': ^1.6.2
dependencies:
- '@pipedream/platform': 1.6.2
+ '@pipedream/platform':
+ specifier: ^1.6.2
+ version: 1.6.6
components/shift4:
- specifiers:
- '@pipedream/platform': ^1.5.1
dependencies:
- '@pipedream/platform': 1.6.2
+ '@pipedream/platform':
+ specifier: ^1.5.1
+ version: 1.6.6
components/shipcloud:
- specifiers:
- '@pipedream/platform': ^1.1.0
- '@pipedream/types': ^0.1.4
dependencies:
- '@pipedream/platform': 1.5.1
+ '@pipedream/platform':
+ specifier: ^1.1.0
+ version: 1.6.6
devDependencies:
- '@pipedream/types': 0.1.6
+ '@pipedream/types':
+ specifier: ^0.1.4
+ version: 0.1.6
components/shipday:
- specifiers:
- '@pipedream/platform': ^1.5.1
dependencies:
- '@pipedream/platform': 1.5.1
+ '@pipedream/platform':
+ specifier: ^1.5.1
+ version: 1.6.6
components/shipengine:
- specifiers:
- '@pipedream/platform': ^1.2.1
dependencies:
- '@pipedream/platform': 1.5.1
+ '@pipedream/platform':
+ specifier: ^1.2.1
+ version: 1.6.6
components/shiphero:
- specifiers:
- graphql-request: ^7.1.0
dependencies:
- graphql-request: 7.1.0_graphql@16.8.1
+ graphql-request:
+ specifier: ^7.1.0
+ version: 7.1.2(graphql@16.9.0)
- components/shippotoken:
- specifiers: {}
+ components/shippotoken: {}
components/shipstation:
- specifiers:
- '@pipedream/platform': ^0.10.0
dependencies:
- '@pipedream/platform': 0.10.0
+ '@pipedream/platform':
+ specifier: ^0.10.0
+ version: 0.10.0
components/shopify:
- specifiers:
- '@pipedream/platform': ^1.2.0
- async-retry: ^1.3.3
- bottleneck: ^2.19.5
- lodash.get: ^4.4.2
- lodash.topath: ^4.5.2
- shopify-api-node: ^3.12.4
- dependencies:
- '@pipedream/platform': 1.5.1
- async-retry: 1.3.3
- bottleneck: 2.19.5
- lodash.get: 4.4.2
- lodash.topath: 4.5.2
- shopify-api-node: 3.12.6
+ dependencies:
+ '@pipedream/platform':
+ specifier: ^1.2.0
+ version: 1.6.6
+ async-retry:
+ specifier: ^1.3.3
+ version: 1.3.3
+ bottleneck:
+ specifier: ^2.19.5
+ version: 2.19.5
+ lodash.get:
+ specifier: ^4.4.2
+ version: 4.4.2
+ lodash.topath:
+ specifier: ^4.5.2
+ version: 4.5.2
+ shopify-api-node:
+ specifier: ^3.12.4
+ version: 3.14.0
components/shopify_developer_app:
- specifiers:
- '@pipedream/platform': ^3.0.0
- shopify-api-node: ^3.12.5
dependencies:
- '@pipedream/platform': 3.0.0
- shopify-api-node: 3.12.6
+ '@pipedream/platform':
+ specifier: ^3.0.0
+ version: 3.0.3
+ shopify-api-node:
+ specifier: ^3.12.5
+ version: 3.14.0
components/shopify_partner:
- specifiers:
- '@pipedream/platform': ^1.6.0
- graphql: ^16.8.1
- graphql-request: ^3.7.0
dependencies:
- '@pipedream/platform': 1.6.0
- graphql: 16.8.1
- graphql-request: 3.7.0_graphql@16.8.1
+ '@pipedream/platform':
+ specifier: ^1.6.0
+ version: 1.6.6
+ graphql:
+ specifier: ^16.8.1
+ version: 16.9.0
+ graphql-request:
+ specifier: ^3.7.0
+ version: 3.7.0(graphql@16.9.0)
components/shoprocket:
- specifiers:
- '@pipedream/platform': ^1.5.1
dependencies:
- '@pipedream/platform': 1.5.1
+ '@pipedream/platform':
+ specifier: ^1.5.1
+ version: 1.6.6
components/shopwaive:
- specifiers:
- '@pipedream/platform': 1.6.0
dependencies:
- '@pipedream/platform': 1.6.0
+ '@pipedream/platform':
+ specifier: 1.6.0
+ version: 1.6.0
components/short:
- specifiers:
- '@pipedream/platform': ^1.2.0
- lodash: ^4.17.21
dependencies:
- '@pipedream/platform': 1.5.1
- lodash: 4.17.21
+ '@pipedream/platform':
+ specifier: ^1.2.0
+ version: 1.6.6
+ lodash:
+ specifier: ^4.17.21
+ version: 4.17.21
components/short_menu:
- specifiers:
- '@pipedream/platform': ^3.0.3
dependencies:
- '@pipedream/platform': 3.0.3
+ '@pipedream/platform':
+ specifier: ^3.0.3
+ version: 3.0.3
components/shortcut:
- specifiers:
- async-retry: ^1.3.1
- axios: ^0.21.1
- clubhouse-lib: ^0.12.0
- lodash: ^4.17.20
- validate.js: ^0.13.1
dependencies:
- async-retry: 1.3.3
- axios: 0.21.4
- clubhouse-lib: 0.12.0
- lodash: 4.17.21
- validate.js: 0.13.1
+ async-retry:
+ specifier: ^1.3.1
+ version: 1.3.3
+ axios:
+ specifier: ^0.21.1
+ version: 0.21.4
+ clubhouse-lib:
+ specifier: ^0.12.0
+ version: 0.12.0
+ lodash:
+ specifier: ^4.17.20
+ version: 4.17.21
+ validate.js:
+ specifier: ^0.13.1
+ version: 0.13.1
components/shorten_rest:
- specifiers:
- '@pipedream/platform': ^1.6.0
dependencies:
- '@pipedream/platform': 1.6.0
+ '@pipedream/platform':
+ specifier: ^1.6.0
+ version: 1.6.6
- components/shortpixel:
- specifiers: {}
+ components/shortpixel: {}
components/shotstack:
- specifiers:
- '@pipedream/platform': ^1.4.1
dependencies:
- '@pipedream/platform': 1.5.1
+ '@pipedream/platform':
+ specifier: ^1.4.1
+ version: 1.6.6
- components/showpad:
- specifiers: {}
+ components/showpad: {}
- components/sidetracker:
- specifiers: {}
+ components/sidetracker: {}
- components/sierra_interactive:
- specifiers: {}
+ components/sierra_interactive: {}
components/sifter:
- specifiers:
- '@pipedream/platform': ^0.10.0
dependencies:
- '@pipedream/platform': 0.10.0
+ '@pipedream/platform':
+ specifier: ^0.10.0
+ version: 0.10.0
components/sigma:
- specifiers:
- '@pipedream/platform': 1.6.5
dependencies:
- '@pipedream/platform': 1.6.5
+ '@pipedream/platform':
+ specifier: 1.6.5
+ version: 1.6.5
- components/signable:
- specifiers: {}
+ components/signable: {}
- components/signalwire:
- specifiers: {}
+ components/signalwire: {}
components/signaturely:
- specifiers:
- '@pipedream/platform': ^1.5.1
dependencies:
- '@pipedream/platform': 1.5.1
+ '@pipedream/platform':
+ specifier: ^1.5.1
+ version: 1.6.6
- components/signaturit:
- specifiers: {}
+ components/signaturit: {}
components/signerx:
- specifiers:
- '@pipedream/platform': ^3.0.0
- form-data: ^4.0.0
dependencies:
- '@pipedream/platform': 3.0.0
- form-data: 4.0.0
+ '@pipedream/platform':
+ specifier: ^3.0.0
+ version: 3.0.3
+ form-data:
+ specifier: ^4.0.0
+ version: 4.0.1
components/signnow:
- specifiers:
- '@pipedream/platform': ^3.0.0
- crypto: ^1.0.1
- form-data: ^4.0.0
- fs: ^0.0.1-security
- uuid: ^10.0.0
- dependencies:
- '@pipedream/platform': 3.0.0
- crypto: 1.0.1
- form-data: 4.0.0
- fs: 0.0.1-security
- uuid: 10.0.0
+ dependencies:
+ '@pipedream/platform':
+ specifier: ^3.0.0
+ version: 3.0.3
+ crypto:
+ specifier: ^1.0.1
+ version: 1.0.1
+ form-data:
+ specifier: ^4.0.0
+ version: 4.0.1
+ fs:
+ specifier: ^0.0.1-security
+ version: 0.0.1-security
+ uuid:
+ specifier: ^10.0.0
+ version: 10.0.0
- components/signpath:
- specifiers: {}
+ components/signpath: {}
- components/signrequest:
- specifiers: {}
+ components/signrequest: {}
- components/signwell:
- specifiers: {}
+ components/signwell: {}
components/similarweb_digitalrank_api:
- specifiers:
- '@pipedream/platform': ^1.6.2
dependencies:
- '@pipedream/platform': 1.6.2
+ '@pipedream/platform':
+ specifier: ^1.6.2
+ version: 1.6.6
components/simla_com:
- specifiers:
- '@pipedream/platform': 3.0.1
dependencies:
- '@pipedream/platform': 3.0.1
+ '@pipedream/platform':
+ specifier: 3.0.1
+ version: 3.0.1
- components/simple_analytics:
- specifiers: {}
+ components/simple_analytics: {}
- components/simplebackups:
- specifiers: {}
+ components/simplebackups: {}
- components/simplehash:
- specifiers: {}
+ components/simplehash: {}
- components/simplekpi:
- specifiers: {}
+ components/simplekpi: {}
components/simplesat:
- specifiers:
- '@pipedream/platform': ^1.2.0
dependencies:
- '@pipedream/platform': 1.5.1
+ '@pipedream/platform':
+ specifier: ^1.2.0
+ version: 1.6.6
- components/simpletexting:
- specifiers: {}
+ components/simpletexting: {}
- components/simplybook_me:
- specifiers: {}
+ components/simplybook_me: {}
components/sitecreator_io:
- specifiers:
- '@pipedream/platform': ^1.4.0
dependencies:
- '@pipedream/platform': 1.5.1
+ '@pipedream/platform':
+ specifier: ^1.4.0
+ version: 1.6.6
components/siteleaf:
- specifiers:
- '@pipedream/platform': ^1.2.0
dependencies:
- '@pipedream/platform': 1.5.1
+ '@pipedream/platform':
+ specifier: ^1.2.0
+ version: 1.6.6
components/sitespeakai:
- specifiers:
- '@pipedream/platform': ^1.5.1
dependencies:
- '@pipedream/platform': 1.5.1
+ '@pipedream/platform':
+ specifier: ^1.5.1
+ version: 1.6.6
components/skillzrun:
- specifiers:
- '@pipedream/platform': ^1.6.4
dependencies:
- '@pipedream/platform': 1.6.4
+ '@pipedream/platform':
+ specifier: ^1.6.4
+ version: 1.6.6
- components/skyciv:
- specifiers: {}
+ components/skyciv: {}
components/skyvern:
- specifiers:
- '@pipedream/platform': ^3.0.3
dependencies:
- '@pipedream/platform': 3.0.3
+ '@pipedream/platform':
+ specifier: ^3.0.3
+ version: 3.0.3
components/slack:
- specifiers:
- '@pipedream/platform': ^3.0.0
- '@slack/web-api': ^7.0.4
dependencies:
- '@pipedream/platform': 3.0.0
- '@slack/web-api': 7.0.4
+ '@pipedream/platform':
+ specifier: ^3.0.0
+ version: 3.0.3
+ '@slack/web-api':
+ specifier: ^7.0.4
+ version: 7.7.0
components/slack_bot:
- specifiers:
- '@pipedream/platform': ^3.0.0
- '@slack/web-api': ^5.15.0
dependencies:
- '@pipedream/platform': 3.0.0
- '@slack/web-api': 5.15.0
+ '@pipedream/platform':
+ specifier: ^3.0.0
+ version: 3.0.3
+ '@slack/web-api':
+ specifier: ^5.15.0
+ version: 5.15.0
- components/slack_demo_app:
- specifiers: {}
+ components/slack_demo_app: {}
- components/slack_demo_app_1:
- specifiers: {}
+ components/slack_demo_app_1: {}
- components/slicktext:
- specifiers: {}
+ components/slicktext: {}
components/slite:
- specifiers:
- '@pipedream/platform': ^1.6.0
dependencies:
- '@pipedream/platform': 1.6.0
+ '@pipedream/platform':
+ specifier: ^1.6.0
+ version: 1.6.6
components/slottable:
- specifiers:
- '@pipedream/platform': ^1.5.1
dependencies:
- '@pipedream/platform': 1.5.1
+ '@pipedream/platform':
+ specifier: ^1.5.1
+ version: 1.6.6
components/slybroadcast:
- specifiers:
- '@pipedream/platform': ^3.0.3
dependencies:
- '@pipedream/platform': 3.0.3
+ '@pipedream/platform':
+ specifier: ^3.0.3
+ version: 3.0.3
components/smaily:
- specifiers:
- '@pipedream/platform': ^1.1.0
dependencies:
- '@pipedream/platform': 1.5.1
+ '@pipedream/platform':
+ specifier: ^1.1.0
+ version: 1.6.6
components/small_improvements:
- specifiers:
- '@pipedream/platform': ^1.5.1
dependencies:
- '@pipedream/platform': 1.6.2
+ '@pipedream/platform':
+ specifier: ^1.5.1
+ version: 1.6.6
- components/smartengage:
- specifiers: {}
+ components/smartengage: {}
- components/smartproxy:
- specifiers: {}
+ components/smartproxy: {}
- components/smartreach:
- specifiers: {}
+ components/smartreach: {}
- components/smartrmail:
- specifiers: {}
+ components/smartrmail: {}
components/smartroutes:
- specifiers:
- '@pipedream/platform': ^1.6.2
dependencies:
- '@pipedream/platform': 1.6.2
+ '@pipedream/platform':
+ specifier: ^1.6.2
+ version: 1.6.6
components/smartsheet:
- specifiers:
- '@pipedream/platform': ^1.4.1
dependencies:
- '@pipedream/platform': 1.5.1
+ '@pipedream/platform':
+ specifier: ^1.4.1
+ version: 1.6.6
components/smartsuite:
- specifiers:
- '@pipedream/platform': ^3.0.3
dependencies:
- '@pipedream/platform': 3.0.3
+ '@pipedream/platform':
+ specifier: ^3.0.3
+ version: 3.0.3
- components/smarty:
- specifiers: {}
+ components/smarty: {}
- components/smartymeet:
- specifiers: {}
+ components/smartymeet: {}
components/smiirl:
- specifiers:
- '@smiirl/smiirl-library-js': ^1.0.5
dependencies:
- '@smiirl/smiirl-library-js': 1.0.5
+ '@smiirl/smiirl-library-js':
+ specifier: ^1.0.5
+ version: 1.0.5
components/smoove:
- specifiers:
- '@pipedream/platform': ^1.1.1
dependencies:
- '@pipedream/platform': 1.5.1
+ '@pipedream/platform':
+ specifier: ^1.1.1
+ version: 1.6.6
- components/sms:
- specifiers: {}
+ components/sms: {}
components/sms_alert:
- specifiers:
- '@pipedream/platform': ^1.5.1
dependencies:
- '@pipedream/platform': 1.5.1
+ '@pipedream/platform':
+ specifier: ^1.5.1
+ version: 1.6.6
components/sms_everyone:
- specifiers:
- '@pipedream/platform': ^2.0.0
dependencies:
- '@pipedream/platform': 2.0.0
+ '@pipedream/platform':
+ specifier: ^2.0.0
+ version: 2.0.0
components/sms_fusion:
- specifiers:
- '@pipedream/platform': ^3.0.3
dependencies:
- '@pipedream/platform': 3.0.3
+ '@pipedream/platform':
+ specifier: ^3.0.3
+ version: 3.0.3
- components/sms_it:
- specifiers: {}
+ components/sms_it: {}
- components/sms_magic:
- specifiers: {}
+ components/sms_magic: {}
- components/sms_partner:
- specifiers: {}
+ components/sms_partner: {}
components/smsapi:
- specifiers:
- '@pipedream/platform': ^1.5.1
- query-string: ^8.1.0
dependencies:
- '@pipedream/platform': 1.5.1
- query-string: 8.1.0
+ '@pipedream/platform':
+ specifier: ^1.5.1
+ version: 1.6.6
+ query-string:
+ specifier: ^8.1.0
+ version: 8.2.0
components/smslink_nc:
- specifiers:
- '@pipedream/platform': 3.0.3
dependencies:
- '@pipedream/platform': 3.0.3
+ '@pipedream/platform':
+ specifier: 3.0.3
+ version: 3.0.3
components/smstools:
- specifiers:
- '@pipedream/platform': ^3.0.3
dependencies:
- '@pipedream/platform': 3.0.3
+ '@pipedream/platform':
+ specifier: ^3.0.3
+ version: 3.0.3
components/smtp2go:
- specifiers:
- '@pipedream/platform': ^1.1.1
dependencies:
- '@pipedream/platform': 1.5.1
+ '@pipedream/platform':
+ specifier: ^1.1.1
+ version: 1.6.6
components/smugmug:
- specifiers:
- '@pipedream/platform': ^1.1.1
- form-data: ^4.0.0
- fs: ^0.0.1-security
dependencies:
- '@pipedream/platform': 1.5.1
- form-data: 4.0.0
- fs: 0.0.1-security
+ '@pipedream/platform':
+ specifier: ^1.1.1
+ version: 1.6.6
+ form-data:
+ specifier: ^4.0.0
+ version: 4.0.1
+ fs:
+ specifier: ^0.0.1-security
+ version: 0.0.1-security
- components/snapchat_marketing:
- specifiers: {}
+ components/snapchat_marketing: {}
- components/snapdocs:
- specifiers: {}
+ components/snapdocs: {}
components/snappy:
- specifiers:
- '@pipedream/platform': ^1.2.1
dependencies:
- '@pipedream/platform': 1.5.1
+ '@pipedream/platform':
+ specifier: ^1.2.1
+ version: 1.6.6
components/snatchbot:
- specifiers:
- '@pipedream/platform': ^1.5.1
dependencies:
- '@pipedream/platform': 1.5.1
+ '@pipedream/platform':
+ specifier: ^1.5.1
+ version: 1.6.6
components/snipcart:
- specifiers:
- '@pipedream/platform': ^3.0.0
dependencies:
- '@pipedream/platform': 3.0.3
+ '@pipedream/platform':
+ specifier: ^3.0.0
+ version: 3.0.3
components/snowflake:
- specifiers:
- '@pipedream/platform': ^3.0.0
- '@pipedream/snowflake-sdk': ^1.0.8
- asn1.js: ^5.0.0
- lodash-es: ^4.17.21
- uuid: ^8.3.2
dependencies:
- '@pipedream/platform': 3.0.0
- '@pipedream/snowflake-sdk': 1.0.8_asn1.js@5.4.1
- asn1.js: 5.4.1
- lodash-es: 4.17.21
- uuid: 8.3.2
-
- components/snowflake_test:
- specifiers: {}
-
- components/snyk:
- specifiers: {}
+ '@pipedream/platform':
+ specifier: ^3.0.0
+ version: 3.0.3
+ '@pipedream/snowflake-sdk':
+ specifier: ^1.0.8
+ version: 1.0.8(asn1.js@5.4.1)
+ asn1.js:
+ specifier: ^5.0.0
+ version: 5.4.1
+ lodash-es:
+ specifier: ^4.17.21
+ version: 4.17.21
+ uuid:
+ specifier: ^8.3.2
+ version: 8.3.2
+
+ components/snowflake_test: {}
+
+ components/snyk: {}
components/social_intents:
- specifiers:
- '@pipedream/platform': ^1.2.1
dependencies:
- '@pipedream/platform': 1.5.1
+ '@pipedream/platform':
+ specifier: ^1.2.1
+ version: 1.6.6
- components/softledger:
- specifiers: {}
+ components/softledger: {}
components/softr:
- specifiers:
- '@pipedream/platform': ^1.6.4
dependencies:
- '@pipedream/platform': 1.6.4
+ '@pipedream/platform':
+ specifier: ^1.6.4
+ version: 1.6.6
- components/solarwinds_service_desk:
- specifiers: {}
+ components/solarwinds_service_desk: {}
- components/solcast:
- specifiers: {}
+ components/solcast: {}
components/solve_crm:
- specifiers:
- '@pipedream/platform': ^1.2.1
dependencies:
- '@pipedream/platform': 1.5.1
+ '@pipedream/platform':
+ specifier: ^1.2.1
+ version: 1.6.6
components/sonarcloud:
- specifiers:
- '@pipedream/platform': ^1.6.5
dependencies:
- '@pipedream/platform': 1.6.5
+ '@pipedream/platform':
+ specifier: ^1.6.5
+ version: 1.6.6
components/sonix:
- specifiers:
- '@pipedream/platform': ^1.5.1
- form-data: ^4.0.0
- fs: ^0.0.1-security
dependencies:
- '@pipedream/platform': 1.5.1
- form-data: 4.0.0
- fs: 0.0.1-security
+ '@pipedream/platform':
+ specifier: ^1.5.1
+ version: 1.6.6
+ form-data:
+ specifier: ^4.0.0
+ version: 4.0.1
+ fs:
+ specifier: ^0.0.1-security
+ version: 0.0.1-security
components/sourceforge:
- specifiers:
- '@pipedream/platform': ^1.5.1
dependencies:
- '@pipedream/platform': 1.5.1
+ '@pipedream/platform':
+ specifier: ^1.5.1
+ version: 1.6.6
components/spamcheck_ai:
- specifiers:
- '@pipedream/platform': ^3.0.0
dependencies:
- '@pipedream/platform': 3.0.0
+ '@pipedream/platform':
+ specifier: ^3.0.0
+ version: 3.0.3
- components/sparkpost:
- specifiers: {}
+ components/sparkpost: {}
components/specific:
- specifiers:
- '@pipedream/platform': ^3.0.0
dependencies:
- '@pipedream/platform': 3.0.0
+ '@pipedream/platform':
+ specifier: ^3.0.0
+ version: 3.0.3
components/speechace:
- specifiers:
- '@pipedream/platform': ^2.0.0
- form-data: ^4.0.0
dependencies:
- '@pipedream/platform': 2.0.0
- form-data: 4.0.0
+ '@pipedream/platform':
+ specifier: ^2.0.0
+ version: 2.0.0
+ form-data:
+ specifier: ^4.0.0
+ version: 4.0.1
components/spider:
- specifiers:
- '@pipedream/platform': ^3.0.3
dependencies:
- '@pipedream/platform': 3.0.3
+ '@pipedream/platform':
+ specifier: ^3.0.3
+ version: 3.0.3
components/spiritme:
- specifiers:
- '@pipedream/platform': ^3.0.0
dependencies:
- '@pipedream/platform': 3.0.0
+ '@pipedream/platform':
+ specifier: ^3.0.0
+ version: 3.0.3
components/splitwise:
- specifiers:
- '@pipedream/platform': ^1.2.0
dependencies:
- '@pipedream/platform': 1.5.1
+ '@pipedream/platform':
+ specifier: ^1.2.0
+ version: 1.6.6
components/splynx:
- specifiers:
- '@pipedream/platform': ^1.6.0
dependencies:
- '@pipedream/platform': 1.6.0
+ '@pipedream/platform':
+ specifier: ^1.6.0
+ version: 1.6.6
- components/spoke_phone:
- specifiers: {}
+ components/spoke_phone: {}
components/spondyr:
- specifiers:
- '@pipedream/platform': ^1.2.1
dependencies:
- '@pipedream/platform': 1.5.1
+ '@pipedream/platform':
+ specifier: ^1.2.1
+ version: 1.6.6
components/spoonacular:
- specifiers:
- '@pipedream/platform': ^1.4.1
dependencies:
- '@pipedream/platform': 1.5.1
+ '@pipedream/platform':
+ specifier: ^1.4.1
+ version: 1.6.6
- components/sportsdata:
- specifiers: {}
+ components/sportsdata: {}
components/spotify:
- specifiers:
- '@pipedream/platform': ^3.0.3
- lodash: ^4.17.21
dependencies:
- '@pipedream/platform': 3.0.3
- lodash: 4.17.21
+ '@pipedream/platform':
+ specifier: ^3.0.3
+ version: 3.0.3
+ lodash:
+ specifier: ^4.17.21
+ version: 4.17.21
components/spotlightr:
- specifiers:
- '@pipedream/platform': ^1.5.1
- form-data: ^4.0.0
- fs: ^0.0.1-security
dependencies:
- '@pipedream/platform': 1.5.1
- form-data: 4.0.0
- fs: 0.0.1-security
+ '@pipedream/platform':
+ specifier: ^1.5.1
+ version: 1.6.6
+ form-data:
+ specifier: ^4.0.0
+ version: 4.0.1
+ fs:
+ specifier: ^0.0.1-security
+ version: 0.0.1-security
components/spreadsheet_com:
- specifiers:
- '@pipedream/platform': ^1.5.1
- moment: ^2.29.4
dependencies:
- '@pipedream/platform': 1.5.1
- moment: 2.29.4
+ '@pipedream/platform':
+ specifier: ^1.5.1
+ version: 1.6.6
+ moment:
+ specifier: ^2.29.4
+ version: 2.30.1
- components/sproutgigs:
- specifiers: {}
+ components/sproutgigs: {}
- components/spydra:
- specifiers: {}
+ components/spydra: {}
components/square:
- specifiers:
- '@pipedream/platform': ^1.2.1
dependencies:
- '@pipedream/platform': 1.5.1
+ '@pipedream/platform':
+ specifier: ^1.2.1
+ version: 1.6.6
components/squarespace:
- specifiers:
- '@pipedream/platform': ^1.2.0
- dayjs: ^1.11.3
dependencies:
- '@pipedream/platform': 1.5.1
- dayjs: 1.11.10
+ '@pipedream/platform':
+ specifier: ^1.2.0
+ version: 1.6.6
+ dayjs:
+ specifier: ^1.11.3
+ version: 1.11.13
components/ssh:
- specifiers:
- node-ssh: ^12.0.4
dependencies:
- node-ssh: 12.0.5
+ node-ssh:
+ specifier: ^12.0.4
+ version: 12.0.5
- components/stack_ai:
- specifiers: {}
+ components/stack_ai: {}
components/stack_exchange:
- specifiers:
- '@pipedream/platform': ^1.2.0
- axios: ^0.21.1
- he: ^1.2.0
- lodash: ^4.17.20
dependencies:
- '@pipedream/platform': 1.5.1
- axios: 0.21.4
- he: 1.2.0
- lodash: 4.17.21
-
- components/stackshare_api:
- specifiers: {}
+ '@pipedream/platform':
+ specifier: ^1.2.0
+ version: 1.6.6
+ axios:
+ specifier: ^0.21.1
+ version: 0.21.4
+ he:
+ specifier: ^1.2.0
+ version: 1.2.0
+ lodash:
+ specifier: ^4.17.20
+ version: 4.17.21
+
+ components/stackshare_api: {}
components/stammer_ai:
- specifiers:
- '@pipedream/platform': ^1.6.0
dependencies:
- '@pipedream/platform': 1.6.0
+ '@pipedream/platform':
+ specifier: ^1.6.0
+ version: 1.6.6
components/stannp:
- specifiers:
- form-data: ^4.0.0
- fs: ^0.0.1-security
- url-exist: ^3.0.1
dependencies:
- form-data: 4.0.0
- fs: 0.0.1-security
- url-exist: 3.0.1
+ form-data:
+ specifier: ^4.0.0
+ version: 4.0.1
+ fs:
+ specifier: ^0.0.1-security
+ version: 0.0.1-security
+ url-exist:
+ specifier: ^3.0.1
+ version: 3.0.1(web-streams-polyfill@3.3.3)
- components/starloop:
- specifiers: {}
+ components/starloop: {}
- components/starshipit:
- specifiers: {}
+ components/starshipit: {}
- components/starton:
- specifiers: {}
+ components/starton: {}
components/status_hero:
- specifiers:
- '@pipedream/platform': ^0.10.0
dependencies:
- '@pipedream/platform': 0.10.0
+ '@pipedream/platform':
+ specifier: ^0.10.0
+ version: 0.10.0
components/statuscake:
- specifiers:
- '@pipedream/platform': ^1.2.0
dependencies:
- '@pipedream/platform': 1.5.1
+ '@pipedream/platform':
+ specifier: ^1.2.0
+ version: 1.6.6
components/statuspage:
- specifiers:
- '@pipedream/platform': ^1.2.1
dependencies:
- '@pipedream/platform': 1.5.1
+ '@pipedream/platform':
+ specifier: ^1.2.1
+ version: 1.6.6
- components/stealthgpt:
- specifiers: {}
+ components/stealthgpt: {}
- components/stealthseminar:
- specifiers: {}
+ components/stealthseminar: {}
components/storeganise:
- specifiers:
- '@pipedream/platform': ^3.0.1
dependencies:
- '@pipedream/platform': 3.0.1
+ '@pipedream/platform':
+ specifier: ^3.0.1
+ version: 3.0.3
- components/stormboard:
- specifiers: {}
+ components/stormboard: {}
- components/stormglass_io:
- specifiers: {}
+ components/stormglass_io: {}
components/storyscale:
- specifiers:
- '@pipedream/platform': ^1.5.1
dependencies:
- '@pipedream/platform': 1.5.1
+ '@pipedream/platform':
+ specifier: ^1.5.1
+ version: 1.6.6
components/strava:
- specifiers:
- axios: ^0.21.1
dependencies:
- axios: 0.21.4
+ axios:
+ specifier: ^0.21.1
+ version: 0.21.4
components/streak:
- specifiers:
- '@pipedream/platform': ^1.1.1
dependencies:
- '@pipedream/platform': 1.5.1
+ '@pipedream/platform':
+ specifier: ^1.1.1
+ version: 1.6.6
components/streamtime:
- specifiers:
- '@pipedream/platform': ^1.5.1
dependencies:
- '@pipedream/platform': 1.5.1
+ '@pipedream/platform':
+ specifier: ^1.5.1
+ version: 1.6.6
- components/streamwish:
- specifiers: {}
+ components/streamwish: {}
components/stripe:
- specifiers:
- lodash.pick: ^4.4.0
- lodash.pickby: ^4.6.0
- stripe: ^8.168.0
dependencies:
- lodash.pick: 4.4.0
- lodash.pickby: 4.6.0
- stripe: 8.222.0
+ lodash.pick:
+ specifier: ^4.4.0
+ version: 4.4.0
+ lodash.pickby:
+ specifier: ^4.6.0
+ version: 4.6.0
+ stripe:
+ specifier: ^8.168.0
+ version: 8.222.0
- components/stripo:
- specifiers: {}
+ components/stripo: {}
- components/studio_by_ai21_labs:
- specifiers: {}
+ components/studio_by_ai21_labs: {}
- components/successeve:
- specifiers: {}
+ components/successeve: {}
- components/sugarcrm_:
- specifiers: {}
+ components/sugarcrm_: {}
components/suitedash:
- specifiers:
- '@pipedream/platform': ^3.0.3
dependencies:
- '@pipedream/platform': 3.0.3
+ '@pipedream/platform':
+ specifier: ^3.0.3
+ version: 3.0.3
components/summit:
- specifiers:
- '@pipedream/platform': ^1.6.5
dependencies:
- '@pipedream/platform': 1.6.5
+ '@pipedream/platform':
+ specifier: ^1.6.5
+ version: 1.6.6
components/sumup:
- specifiers:
- '@pipedream/platform': ^1.6.2
dependencies:
- '@pipedream/platform': 1.6.2
+ '@pipedream/platform':
+ specifier: ^1.6.2
+ version: 1.6.6
components/supabase:
- specifiers:
- '@pipedream/platform': ^3.0.3
- '@supabase/supabase-js': ^2.45.6
- csv-parse: ^5.5.6
dependencies:
- '@pipedream/platform': 3.0.3
- '@supabase/supabase-js': 2.46.1
- csv-parse: 5.5.6
+ '@pipedream/platform':
+ specifier: ^3.0.3
+ version: 3.0.3
+ '@supabase/supabase-js':
+ specifier: ^2.45.6
+ version: 2.46.1
+ csv-parse:
+ specifier: ^5.5.6
+ version: 5.6.0
components/supabase_management_api:
- specifiers:
- '@pipedream/platform': ^3.0.0
dependencies:
- '@pipedream/platform': 3.0.0
+ '@pipedream/platform':
+ specifier: ^3.0.0
+ version: 3.0.3
components/supercast:
- specifiers:
- '@pipedream/platform': ^1.6.0
dependencies:
- '@pipedream/platform': 1.6.0
+ '@pipedream/platform':
+ specifier: ^1.6.0
+ version: 1.6.6
components/superdocu:
- specifiers:
- crypto: ^1.0.1
dependencies:
- crypto: 1.0.1
+ crypto:
+ specifier: ^1.0.1
+ version: 1.0.1
- components/supernotes:
- specifiers: {}
+ components/supernotes: {}
components/superphone:
- specifiers:
- '@pipedream/platform': ^1.5.1
dependencies:
- '@pipedream/platform': 1.5.1
+ '@pipedream/platform':
+ specifier: ^1.5.1
+ version: 1.6.6
components/supersaas:
- specifiers:
- '@pipedreamhq/platform': ^0.8.1
dependencies:
- '@pipedreamhq/platform': 0.8.1
+ '@pipedreamhq/platform':
+ specifier: ^0.8.1
+ version: 0.8.1
components/supportbee:
- specifiers:
- '@pipedream/platform': ^1.2.0
dependencies:
- '@pipedream/platform': 1.5.1
+ '@pipedream/platform':
+ specifier: ^1.2.0
+ version: 1.6.6
components/supportivekoala:
- specifiers:
- '@pipedream/platform': ^1.1.0
dependencies:
- '@pipedream/platform': 1.5.1
+ '@pipedream/platform':
+ specifier: ^1.1.0
+ version: 1.6.6
- components/survey2connect:
- specifiers: {}
+ components/survey2connect: {}
components/survey_monkey:
- specifiers:
- '@pipedream/platform': ^0.9.0
- uuid: ^8.3.2
dependencies:
- '@pipedream/platform': 0.9.0
- uuid: 8.3.2
+ '@pipedream/platform':
+ specifier: ^0.9.0
+ version: 0.9.0
+ uuid:
+ specifier: ^8.3.2
+ version: 8.3.2
- components/survey_sparrow:
- specifiers: {}
+ components/survey_sparrow: {}
components/surveycto:
- specifiers:
- '@pipedream/platform': ^1.6.0
- xml-js: ^1.6.11
dependencies:
- '@pipedream/platform': 1.6.0
- xml-js: 1.6.11
+ '@pipedream/platform':
+ specifier: ^1.6.0
+ version: 1.6.6
+ xml-js:
+ specifier: ^1.6.11
+ version: 1.6.11
components/surveymethods:
- specifiers:
- '@pipedream/platform': ^1.2.0
dependencies:
- '@pipedream/platform': 1.5.1
+ '@pipedream/platform':
+ specifier: ^1.2.0
+ version: 1.6.6
components/surveysparrow:
- specifiers:
- '@pipedream/platform': ^1.5.1
- lodash.pickby: ^4.6.0
dependencies:
- '@pipedream/platform': 1.5.1
- lodash.pickby: 4.6.0
+ '@pipedream/platform':
+ specifier: ^1.5.1
+ version: 1.6.6
+ lodash.pickby:
+ specifier: ^4.6.0
+ version: 4.6.0
- components/survicate:
- specifiers: {}
+ components/survicate: {}
components/survser:
- specifiers:
- '@pipedream/platform': ^3.0.0
dependencies:
- '@pipedream/platform': 3.0.0
+ '@pipedream/platform':
+ specifier: ^3.0.0
+ version: 3.0.3
components/svix:
- specifiers:
- '@pipedream/platform': ^1.3.0
dependencies:
- '@pipedream/platform': 1.5.1
+ '@pipedream/platform':
+ specifier: ^1.3.0
+ version: 1.6.6
components/swaggerhub:
- specifiers:
- '@pipedream/platform': ^1.3.0
dependencies:
- '@pipedream/platform': 1.5.1
+ '@pipedream/platform':
+ specifier: ^1.3.0
+ version: 1.6.6
components/swagup:
- specifiers:
- '@pipedream/platform': ^1.2.1
dependencies:
- '@pipedream/platform': 1.5.1
+ '@pipedream/platform':
+ specifier: ^1.2.1
+ version: 1.6.6
components/swapcard_exhibitor:
- specifiers:
- '@pipedream/platform': ^3.0.1
dependencies:
- '@pipedream/platform': 3.0.1
+ '@pipedream/platform':
+ specifier: ^3.0.1
+ version: 3.0.3
components/swapi:
- specifiers:
- '@pipedream/platform': ^1.2.0
dependencies:
- '@pipedream/platform': 1.5.1
+ '@pipedream/platform':
+ specifier: ^1.2.0
+ version: 1.6.6
- components/swell:
- specifiers: {}
+ components/swell: {}
- components/swiftype:
- specifiers: {}
+ components/swiftype: {}
- components/switch:
- specifiers: {}
+ components/switch: {}
- components/switchboard:
- specifiers: {}
+ components/switchboard: {}
components/symbl_ai:
- specifiers:
- '@pipedream/platform': ^0.9.0
dependencies:
- '@pipedream/platform': 0.9.0
+ '@pipedream/platform':
+ specifier: ^0.9.0
+ version: 0.9.0
components/sympla:
- specifiers:
- '@pipedream/platform': ^1.1.0
dependencies:
- '@pipedream/platform': 1.5.1
+ '@pipedream/platform':
+ specifier: ^1.1.0
+ version: 1.6.6
- components/syncro:
- specifiers: {}
+ components/syncro: {}
- components/t2m_url_shortener:
- specifiers: {}
+ components/t2m_url_shortener: {}
components/tableau:
- specifiers:
- '@pipedream/platform': ^1.6.0
dependencies:
- '@pipedream/platform': 1.6.0
+ '@pipedream/platform':
+ specifier: ^1.6.0
+ version: 1.6.6
- components/taggun:
- specifiers: {}
+ components/taggun: {}
- components/talend:
- specifiers: {}
+ components/talend: {}
- components/talenox:
- specifiers: {}
+ components/talenox: {}
components/talenthr:
- specifiers:
- '@pipedream/platform': ^3.0.1
dependencies:
- '@pipedream/platform': 3.0.3
+ '@pipedream/platform':
+ specifier: ^3.0.1
+ version: 3.0.3
- components/talentlms:
- specifiers: {}
+ components/talentlms: {}
- components/talkspirit:
- specifiers: {}
+ components/talkspirit: {}
components/tally:
- specifiers:
- '@pipedream/platform': ^1.5.1
dependencies:
- '@pipedream/platform': 1.5.1
+ '@pipedream/platform':
+ specifier: ^1.5.1
+ version: 1.6.6
- components/tapfiliate:
- specifiers: {}
+ components/tapfiliate: {}
components/tapform:
- specifiers:
- '@pipedream/platform': ^1.5.1
dependencies:
- '@pipedream/platform': 1.6.2
+ '@pipedream/platform':
+ specifier: ^1.5.1
+ version: 1.6.6
components/taskade:
- specifiers:
- '@pipedream/platform': ^3.0.0
dependencies:
- '@pipedream/platform': 3.0.0
+ '@pipedream/platform':
+ specifier: ^3.0.0
+ version: 3.0.3
- components/tave:
- specifiers: {}
+ components/tave: {}
components/tavily:
- specifiers:
- '@pipedream/platform': ^3.0.0
dependencies:
- '@pipedream/platform': 3.0.0
+ '@pipedream/platform':
+ specifier: ^3.0.0
+ version: 3.0.3
components/tawk_to:
- specifiers:
- '@pipedream/platform': ^1.6.0
dependencies:
- '@pipedream/platform': 1.6.0
+ '@pipedream/platform':
+ specifier: ^1.6.0
+ version: 1.6.6
- components/taxjar:
- specifiers: {}
+ components/taxjar: {}
- components/td_ameritrade:
- specifiers: {}
+ components/td_ameritrade: {}
components/teach_n_go:
- specifiers:
- '@pipedream/platform': ^3.0.3
dependencies:
- '@pipedream/platform': 3.0.3
+ '@pipedream/platform':
+ specifier: ^3.0.3
+ version: 3.0.3
components/teachable:
- specifiers:
- '@pipedream/platform': ^1.5.1
dependencies:
- '@pipedream/platform': 1.5.1
+ '@pipedream/platform':
+ specifier: ^1.5.1
+ version: 1.6.6
components/team_sms:
- specifiers:
- '@pipedream/platform': ^3.0.0
dependencies:
- '@pipedream/platform': 3.0.0
+ '@pipedream/platform':
+ specifier: ^3.0.0
+ version: 3.0.3
components/team_up:
- specifiers:
- '@pipedream/platform': ^1.4.1
- '@pipedream/types': ^0.1.4
dependencies:
- '@pipedream/platform': 1.5.1
- '@pipedream/types': 0.1.6
+ '@pipedream/platform':
+ specifier: ^1.4.1
+ version: 1.6.6
+ '@pipedream/types':
+ specifier: ^0.1.4
+ version: 0.1.6
components/teamcamp:
- specifiers:
- '@pipedream/platform': ^3.0.0
dependencies:
- '@pipedream/platform': 3.0.0
+ '@pipedream/platform':
+ specifier: ^3.0.0
+ version: 3.0.3
- components/teamdeck:
- specifiers: {}
+ components/teamdeck: {}
components/teamgantt:
- specifiers:
- '@pipedream/platform': ^1.5.1
dependencies:
- '@pipedream/platform': 1.5.1
+ '@pipedream/platform':
+ specifier: ^1.5.1
+ version: 1.6.6
components/teamgate:
- specifiers:
- '@pipedream/platform': ^1.2.1
- moment: ^2.29.4
dependencies:
- '@pipedream/platform': 1.5.1
- moment: 2.29.4
+ '@pipedream/platform':
+ specifier: ^1.2.1
+ version: 1.6.6
+ moment:
+ specifier: ^2.29.4
+ version: 2.30.1
components/teamioo:
- specifiers:
- '@pipedream/platform': ^1.5.1
dependencies:
- '@pipedream/platform': 1.6.2
+ '@pipedream/platform':
+ specifier: ^1.5.1
+ version: 1.6.6
components/teamleader_focus:
- specifiers:
- '@pipedream/platform': ^1.5.1
dependencies:
- '@pipedream/platform': 1.5.1
+ '@pipedream/platform':
+ specifier: ^1.5.1
+ version: 1.6.6
components/teamup:
- specifiers:
- '@pipedream/platform': ^1.5.1
dependencies:
- '@pipedream/platform': 1.5.1
+ '@pipedream/platform':
+ specifier: ^1.5.1
+ version: 1.6.6
- components/teamwave:
- specifiers: {}
+ components/teamwave: {}
components/teamwork:
- specifiers:
- '@pipedream/platform': ^1.1.1
- crypto: ^1.0.1
- uuid: ^9.0.0
dependencies:
- '@pipedream/platform': 1.5.1
- crypto: 1.0.1
- uuid: 9.0.1
+ '@pipedream/platform':
+ specifier: ^1.1.1
+ version: 1.6.6
+ crypto:
+ specifier: ^1.0.1
+ version: 1.0.1
+ uuid:
+ specifier: ^9.0.0
+ version: 9.0.1
- components/teamwork_desk:
- specifiers: {}
+ components/teamwork_desk: {}
components/telegram_bot_api:
- specifiers:
- '@pipedream/platform': ^0.9.0
- node-telegram-bot-api: ^0.54.0
- uuid: ^8.3.2
dependencies:
- '@pipedream/platform': 0.9.0
- node-telegram-bot-api: 0.54.0
- uuid: 8.3.2
+ '@pipedream/platform':
+ specifier: ^0.9.0
+ version: 0.9.0
+ node-telegram-bot-api:
+ specifier: ^0.54.0
+ version: 0.54.0
+ uuid:
+ specifier: ^8.3.2
+ version: 8.3.2
- components/telesign:
- specifiers: {}
+ components/telesign: {}
components/telnyx:
- specifiers:
- '@pipedream/platform': ^1.6.0
dependencies:
- '@pipedream/platform': 1.6.4
+ '@pipedream/platform':
+ specifier: ^1.6.0
+ version: 1.6.6
components/temi:
- specifiers:
- '@pipedream/platform': ^1.1.1
dependencies:
- '@pipedream/platform': 1.5.1
+ '@pipedream/platform':
+ specifier: ^1.1.1
+ version: 1.6.6
components/templated:
- specifiers:
- '@pipedream/platform': ^1.6.0
dependencies:
- '@pipedream/platform': 1.6.0
+ '@pipedream/platform':
+ specifier: ^1.6.0
+ version: 1.6.6
- components/tento8:
- specifiers: {}
+ components/tento8: {}
- components/terminus_app:
- specifiers: {}
+ components/terminus_app: {}
components/terraform:
- specifiers:
- '@pipedream/platform': ^1.5.1
dependencies:
- '@pipedream/platform': 1.5.1
+ '@pipedream/platform':
+ specifier: ^1.5.1
+ version: 1.6.6
components/tess_ai_by_pareto:
- specifiers:
- '@pipedream/platform': ^3.0.3
dependencies:
- '@pipedream/platform': 3.0.3
+ '@pipedream/platform':
+ specifier: ^3.0.3
+ version: 3.0.3
- components/test_app_for_oauth_bug:
- specifiers: {}
+ components/test_app_for_oauth_bug: {}
- components/test_apps_for_checking_something_001:
- specifiers: {}
+ components/test_apps_for_checking_something_001: {}
components/testmo:
- specifiers:
- '@pipedream/platform': ^1.5.1
dependencies:
- '@pipedream/platform': 1.5.1
+ '@pipedream/platform':
+ specifier: ^1.5.1
+ version: 1.6.6
components/testmonitor:
- specifiers:
- '@pipedream/platform': ^1.2.1
- moment: ^2.29.4
dependencies:
- '@pipedream/platform': 1.5.1
- moment: 2.29.4
+ '@pipedream/platform':
+ specifier: ^1.2.1
+ version: 1.6.6
+ moment:
+ specifier: ^2.29.4
+ version: 2.30.1
- components/tettra:
- specifiers: {}
+ components/tettra: {}
components/textcortex:
- specifiers:
- '@pipedream/platform': ^1.5.1
dependencies:
- '@pipedream/platform': 1.5.1
+ '@pipedream/platform':
+ specifier: ^1.5.1
+ version: 1.6.6
- components/textgain:
- specifiers: {}
+ components/textgain: {}
components/textit:
- specifiers:
- '@pipedream/platform': ^1.1.0
dependencies:
- '@pipedream/platform': 1.5.1
+ '@pipedream/platform':
+ specifier: ^1.1.0
+ version: 1.6.6
components/textlocal:
- specifiers:
- '@pipedream/platform': ^1.2.0
dependencies:
- '@pipedream/platform': 1.5.1
+ '@pipedream/platform':
+ specifier: ^1.2.0
+ version: 1.6.6
- components/textmagic:
- specifiers: {}
+ components/textmagic: {}
components/thanks_io:
- specifiers:
- '@pipedream/platform': ^1.2.0
- date-fns: ^2.29.1
dependencies:
- '@pipedream/platform': 1.5.1
- date-fns: 2.30.0
+ '@pipedream/platform':
+ specifier: ^1.2.0
+ version: 1.6.6
+ date-fns:
+ specifier: ^2.29.1
+ version: 2.30.0
- components/thankster:
- specifiers: {}
+ components/thankster: {}
components/the_bookie:
- specifiers:
- '@pipedream/platform': ^3.0.1
dependencies:
- '@pipedream/platform': 3.0.3
+ '@pipedream/platform':
+ specifier: ^3.0.1
+ version: 3.0.3
components/the_magic_drip:
- specifiers:
- '@pipedream/platform': ^3.0.3
dependencies:
- '@pipedream/platform': 3.0.3
+ '@pipedream/platform':
+ specifier: ^3.0.3
+ version: 3.0.3
components/the_odds_api:
- specifiers:
- '@pipedream/platform': ^1.5.1
- dayjs: ^1.11.10
dependencies:
- '@pipedream/platform': 1.5.1
- dayjs: 1.11.10
+ '@pipedream/platform':
+ specifier: ^1.5.1
+ version: 1.6.6
+ dayjs:
+ specifier: ^1.11.10
+ version: 1.11.13
components/thinkific:
- specifiers:
- '@pipedream/platform': ^3.0.0
dependencies:
- '@pipedream/platform': 3.0.0
+ '@pipedream/platform':
+ specifier: ^3.0.0
+ version: 3.0.3
components/thoughtful_gpt:
- specifiers:
- '@pipedream/platform': ^1.6.0
dependencies:
- '@pipedream/platform': 1.6.0
+ '@pipedream/platform':
+ specifier: ^1.6.0
+ version: 1.6.6
components/thoughtly:
- specifiers:
- '@pipedream/platform': ^1.6.5
dependencies:
- '@pipedream/platform': 1.6.5
+ '@pipedream/platform':
+ specifier: ^1.6.5
+ version: 1.6.6
components/threads:
- specifiers:
- '@pipedream/platform': ^0.10.0
dependencies:
- '@pipedream/platform': 0.10.0
+ '@pipedream/platform':
+ specifier: ^0.10.0
+ version: 0.10.0
- components/threescribe:
- specifiers: {}
+ components/threescribe: {}
components/tick:
- specifiers:
- '@pipedream/platform': ^1.2.0
dependencies:
- '@pipedream/platform': 1.5.1
+ '@pipedream/platform':
+ specifier: ^1.2.0
+ version: 1.6.6
- components/ticket_source:
- specifiers: {}
+ components/ticket_source: {}
components/ticket_tailor:
- specifiers:
- '@pipedream/platform': ^1.2.0
- crypto: ^1.0.1
dependencies:
- '@pipedream/platform': 1.5.1
- crypto: 1.0.1
+ '@pipedream/platform':
+ specifier: ^1.2.0
+ version: 1.6.6
+ crypto:
+ specifier: ^1.0.1
+ version: 1.0.1
components/ticktick:
- specifiers:
- '@pipedream/platform': ^1.6.0
dependencies:
- '@pipedream/platform': 1.6.0
+ '@pipedream/platform':
+ specifier: ^1.6.0
+ version: 1.6.6
components/tidy:
- specifiers:
- '@pipedream/platform': ^1.5.1
dependencies:
- '@pipedream/platform': 1.5.1
+ '@pipedream/platform':
+ specifier: ^1.5.1
+ version: 1.6.6
components/tidycal:
- specifiers:
- '@pipedream/platform': ^1.5.1
dependencies:
- '@pipedream/platform': 1.5.1
+ '@pipedream/platform':
+ specifier: ^1.5.1
+ version: 1.6.6
- components/tidyhq:
- specifiers: {}
+ components/tidyhq: {}
- components/tiledesk:
- specifiers: {}
+ components/tiledesk: {}
- components/time_doctor:
- specifiers: {}
+ components/time_doctor: {}
- components/time_tracker_by_ebillity:
- specifiers: {}
+ components/time_tracker_by_ebillity: {}
components/timebuzzer:
- specifiers:
- '@pipedream/platform': ^1.6.0
dependencies:
- '@pipedream/platform': 1.6.0
+ '@pipedream/platform':
+ specifier: ^1.6.0
+ version: 1.6.6
components/timecamp:
- specifiers:
- '@pipedream/platform': ^1.2.0
- dayjs: ^1.11.5
dependencies:
- '@pipedream/platform': 1.5.1
- dayjs: 1.11.10
+ '@pipedream/platform':
+ specifier: ^1.2.0
+ version: 1.6.6
+ dayjs:
+ specifier: ^1.11.5
+ version: 1.11.13
components/timekit:
- specifiers:
- '@pipedream/platform': ^1.2.0
dependencies:
- '@pipedream/platform': 1.5.1
+ '@pipedream/platform':
+ specifier: ^1.2.0
+ version: 1.6.6
- components/timely_time_tracking:
- specifiers: {}
+ components/timely_time_tracking: {}
components/timetonic:
- specifiers:
- '@pipedream/platform': ^1.6.5
- form-data: ^4.0.0
- md5: ^2.3.0
dependencies:
- '@pipedream/platform': 1.6.5
- form-data: 4.0.0
- md5: 2.3.0
+ '@pipedream/platform':
+ specifier: ^1.6.5
+ version: 1.6.6
+ form-data:
+ specifier: ^4.0.0
+ version: 4.0.1
+ md5:
+ specifier: ^2.3.0
+ version: 2.3.0
components/timeular:
- specifiers:
- '@pipedream/platform': ^1.5.1
dependencies:
- '@pipedream/platform': 1.5.1
+ '@pipedream/platform':
+ specifier: ^1.5.1
+ version: 1.6.6
components/timing:
- specifiers:
- '@pipedream/platform': ^1.6.2
dependencies:
- '@pipedream/platform': 1.6.2
+ '@pipedream/platform':
+ specifier: ^1.6.2
+ version: 1.6.6
components/tinypng:
- specifiers:
- '@pipedream/platform': ^1.5.1
- fs: ^0.0.1-security
- stream: ^0.0.2
- util: ^0.12.5
dependencies:
- '@pipedream/platform': 1.6.4
- fs: 0.0.1-security
- stream: 0.0.2
- util: 0.12.5
+ '@pipedream/platform':
+ specifier: ^1.5.1
+ version: 1.6.6
+ fs:
+ specifier: ^0.0.1-security
+ version: 0.0.1-security
+ stream:
+ specifier: ^0.0.2
+ version: 0.0.2
+ util:
+ specifier: ^0.12.5
+ version: 0.12.5
components/tisane_labs:
- specifiers:
- '@pipedream/platform': ^1.5.1
dependencies:
- '@pipedream/platform': 1.5.1
+ '@pipedream/platform':
+ specifier: ^1.5.1
+ version: 1.6.6
components/tldr:
- specifiers:
- '@pipedream/platform': ^3.0.3
dependencies:
- '@pipedream/platform': 3.0.3
+ '@pipedream/platform':
+ specifier: ^3.0.3
+ version: 3.0.3
- components/tmetric:
- specifiers: {}
+ components/tmetric: {}
components/todoist:
- specifiers:
- '@pipedream/platform': ^1.2.1
- json-2-csv: ^3.15.1
- query-string: ^7.1.3
- tmp-promise: ^3.0.3
- uuid: ^8.3.2
- dependencies:
- '@pipedream/platform': 1.5.1
- json-2-csv: 3.20.0
- query-string: 7.1.3
- tmp-promise: 3.0.3
- uuid: 8.3.2
+ dependencies:
+ '@pipedream/platform':
+ specifier: ^1.2.1
+ version: 1.6.6
+ json-2-csv:
+ specifier: ^3.15.1
+ version: 3.20.0
+ query-string:
+ specifier: ^7.1.3
+ version: 7.1.3
+ tmp-promise:
+ specifier: ^3.0.3
+ version: 3.0.3
+ uuid:
+ specifier: ^8.3.2
+ version: 8.3.2
components/toggl:
- specifiers:
- '@pipedream/platform': ^3.0.0
- toggl-api: ^1.0.2
dependencies:
- '@pipedream/platform': 3.0.0
- toggl-api: 1.0.2
+ '@pipedream/platform':
+ specifier: ^3.0.0
+ version: 3.0.3
+ toggl-api:
+ specifier: ^1.0.2
+ version: 1.0.2
components/token_metrics:
- specifiers:
- '@pipedream/platform': ^1.6.0
dependencies:
- '@pipedream/platform': 1.6.0
+ '@pipedream/platform':
+ specifier: ^1.6.0
+ version: 1.6.6
components/tolstoy:
- specifiers:
- '@pipedream/platform': ^1.1.0
dependencies:
- '@pipedream/platform': 1.5.1
+ '@pipedream/platform':
+ specifier: ^1.1.0
+ version: 1.6.6
- components/tomba:
- specifiers: {}
+ components/tomba: {}
- components/tomtom:
- specifiers: {}
+ components/tomtom: {}
- components/toneden:
- specifiers: {}
+ components/toneden: {}
components/tookan:
- specifiers:
- '@pipedream/platform': ^1.1.0
- '@pipedream/types': ^0.1.4
dependencies:
- '@pipedream/platform': 1.5.1
+ '@pipedream/platform':
+ specifier: ^1.1.0
+ version: 1.6.6
devDependencies:
- '@pipedream/types': 0.1.6
+ '@pipedream/types':
+ specifier: ^0.1.4
+ version: 0.1.6
components/totango:
- specifiers:
- '@pipedream/platform': ^1.2.0
dependencies:
- '@pipedream/platform': 1.5.1
+ '@pipedream/platform':
+ specifier: ^1.2.0
+ version: 1.6.6
components/tpscheck:
- specifiers:
- '@pipedream/platform': ^1.6.0
dependencies:
- '@pipedream/platform': 1.6.0
+ '@pipedream/platform':
+ specifier: ^1.6.0
+ version: 1.6.6
components/trackingtime:
- specifiers:
- '@pipedream/platform': ^1.5.1
dependencies:
- '@pipedream/platform': 1.5.1
+ '@pipedream/platform':
+ specifier: ^1.5.1
+ version: 1.6.6
- components/trainual:
- specifiers: {}
+ components/trainual: {}
- components/trakt:
- specifiers: {}
+ components/trakt: {}
components/transform:
- specifiers:
- '@pipedream/platform': ^1.2.0
dependencies:
- '@pipedream/platform': 1.5.1
+ '@pipedream/platform':
+ specifier: ^1.2.0
+ version: 1.6.6
components/transifex:
- specifiers:
- '@pipedream/platform': ^2.0.0
- fs: ^0.0.1-security
dependencies:
- '@pipedream/platform': 2.0.0
- fs: 0.0.1-security
+ '@pipedream/platform':
+ specifier: ^2.0.0
+ version: 2.0.0
+ fs:
+ specifier: ^0.0.1-security
+ version: 0.0.1-security
components/transistor_fm:
- specifiers:
- '@pipedream/platform': ^1.1.1
- form-data: ^4.0.0
dependencies:
- '@pipedream/platform': 1.5.1
- form-data: 4.0.0
+ '@pipedream/platform':
+ specifier: ^1.1.1
+ version: 1.6.6
+ form-data:
+ specifier: ^4.0.0
+ version: 4.0.1
- components/translate_com:
- specifiers: {}
+ components/translate_com: {}
- components/trawlingweb:
- specifiers: {}
+ components/trawlingweb: {}
components/trello:
- specifiers:
- '@pipedream/platform': ^3.0.1
- crypto: ^1.0.1
- form-data: ^4.0.0
- lodash-es: ^4.17.21
- mime: ^4.0.4
- ms: ^2.1.3
- dependencies:
- '@pipedream/platform': 3.0.1
- crypto: 1.0.1
- form-data: 4.0.0
- lodash-es: 4.17.21
- mime: 4.0.4
- ms: 2.1.3
+ dependencies:
+ '@pipedream/platform':
+ specifier: ^3.0.1
+ version: 3.0.3
+ crypto:
+ specifier: ^1.0.1
+ version: 1.0.1
+ form-data:
+ specifier: ^4.0.0
+ version: 4.0.1
+ lodash-es:
+ specifier: ^4.17.21
+ version: 4.17.21
+ mime:
+ specifier: ^4.0.4
+ version: 4.0.4
+ ms:
+ specifier: ^2.1.3
+ version: 2.1.3
components/tremendous:
- specifiers:
- '@pipedream/platform': ^3.0.3
dependencies:
- '@pipedream/platform': 3.0.3
+ '@pipedream/platform':
+ specifier: ^3.0.3
+ version: 3.0.3
components/trengo:
- specifiers:
- '@pipedream/platform': ^1.1.1
- crypto-js: ^4.1.1
dependencies:
- '@pipedream/platform': 1.5.1
- crypto-js: 4.1.1
+ '@pipedream/platform':
+ specifier: ^1.1.1
+ version: 1.6.6
+ crypto-js:
+ specifier: ^4.1.1
+ version: 4.2.0
- components/trestle:
- specifiers: {}
+ components/trestle: {}
components/tricentis_qtest:
- specifiers:
- '@pipedream/platform': ^3.0.3
dependencies:
- '@pipedream/platform': 3.0.3
+ '@pipedream/platform':
+ specifier: ^3.0.3
+ version: 3.0.3
- components/triggercmd:
- specifiers: {}
+ components/triggercmd: {}
components/triggre:
- specifiers:
- '@pipedream/platform': ^1.6.0
dependencies:
- '@pipedream/platform': 1.6.0
+ '@pipedream/platform':
+ specifier: ^1.6.0
+ version: 1.6.6
- components/trint:
- specifiers: {}
+ components/trint: {}
components/tripadvisor_content_api:
- specifiers:
- '@pipedream/platform': ^1.6.2
dependencies:
- '@pipedream/platform': 1.6.2
+ '@pipedream/platform':
+ specifier: ^1.6.2
+ version: 1.6.6
- components/truss:
- specifiers: {}
+ components/truss: {}
components/trust:
- specifiers:
- '@pipedream/platform': ^3.0.0
- form-data: ^4.0.0
- fs: ^0.0.1-security
dependencies:
- '@pipedream/platform': 3.0.0
- form-data: 4.0.0
- fs: 0.0.1-security
+ '@pipedream/platform':
+ specifier: ^3.0.0
+ version: 3.0.3
+ form-data:
+ specifier: ^4.0.0
+ version: 4.0.1
+ fs:
+ specifier: ^0.0.1-security
+ version: 0.0.1-security
- components/trustpilot:
- specifiers: {}
+ components/trustpilot: {}
- components/tubular:
- specifiers: {}
+ components/tubular: {}
- components/tuesday:
- specifiers: {}
+ components/tuesday: {}
- components/turbohire:
- specifiers: {}
+ components/turbohire: {}
components/turbot_pipes:
- specifiers:
- '@pipedream/platform': ^1.6.0
dependencies:
- '@pipedream/platform': 1.6.0
+ '@pipedream/platform':
+ specifier: ^1.6.0
+ version: 1.6.6
components/turso:
- specifiers:
- '@pipedream/platform': ^3.0.0
dependencies:
- '@pipedream/platform': 3.0.0
+ '@pipedream/platform':
+ specifier: ^3.0.0
+ version: 3.0.3
- components/tutor_lms:
- specifiers: {}
+ components/tutor_lms: {}
- components/twelve_data:
- specifiers: {}
+ components/twelve_data: {}
components/twenty:
- specifiers:
- '@pipedream/platform': ^1.6.5
dependencies:
- '@pipedream/platform': 1.6.5
+ '@pipedream/platform':
+ specifier: ^1.6.5
+ version: 1.6.6
components/twilio:
- specifiers:
- '@pipedream/platform': ^3.0.0
- got: ^13.0.0
- phone: ^3.1.49
- stream: ^0.0.3
- twilio: ^3.54.2
- dependencies:
- '@pipedream/platform': 3.0.0
- got: 13.0.0
- phone: 3.1.49
- stream: 0.0.3
- twilio: 3.84.1
+ dependencies:
+ '@pipedream/platform':
+ specifier: ^3.0.0
+ version: 3.0.3
+ got:
+ specifier: ^13.0.0
+ version: 13.0.0
+ phone:
+ specifier: ^3.1.49
+ version: 3.1.53
+ stream:
+ specifier: ^0.0.3
+ version: 0.0.3
+ twilio:
+ specifier: ^3.54.2
+ version: 3.84.1
components/twin:
- specifiers:
- '@pipedream/platform': ^3.0.3
dependencies:
- '@pipedream/platform': 3.0.3
+ '@pipedream/platform':
+ specifier: ^3.0.3
+ version: 3.0.3
components/twist:
- specifiers:
- '@pipedream/platform': ^1.1.1
dependencies:
- '@pipedream/platform': 1.5.1
+ '@pipedream/platform':
+ specifier: ^1.1.1
+ version: 1.6.6
components/twitch:
- specifiers:
- '@pipedream/platform': ^1.4.0
- crypto: ^1.0.1
- qs: ^6.10.5
- uuid: ^8.3.2
- dependencies:
- '@pipedream/platform': 1.5.1
- crypto: 1.0.1
- qs: 6.11.2
- uuid: 8.3.2
+ dependencies:
+ '@pipedream/platform':
+ specifier: ^1.4.0
+ version: 1.6.6
+ crypto:
+ specifier: ^1.0.1
+ version: 1.0.1
+ qs:
+ specifier: ^6.10.5
+ version: 6.13.1
+ uuid:
+ specifier: ^8.3.2
+ version: 8.3.2
components/twitch_developer_app:
- specifiers:
- '@pipedream/platform': ^1.1.1
- '@pipedream/types': ^0.1.4
- uuid: ^9.0.0
dependencies:
- '@pipedream/platform': 1.5.1
- uuid: 9.0.1
+ '@pipedream/platform':
+ specifier: ^1.1.1
+ version: 1.6.6
+ uuid:
+ specifier: ^9.0.0
+ version: 9.0.1
devDependencies:
- '@pipedream/types': 0.1.6
+ '@pipedream/types':
+ specifier: ^0.1.4
+ version: 0.1.6
components/twitter:
- specifiers:
- '@pipedream/platform': ^1.5.1
- '@pipedream/types': ^0.1.4
- form-data: ^4.0.0
- oauth-1.0a: ^2.2.6
- dependencies:
- '@pipedream/platform': 1.5.1
- '@pipedream/types': 0.1.6
- form-data: 4.0.0
- oauth-1.0a: 2.2.6
-
- components/twitter_ads:
- specifiers: {}
+ dependencies:
+ '@pipedream/platform':
+ specifier: ^1.5.1
+ version: 1.6.6
+ '@pipedream/types':
+ specifier: ^0.1.4
+ version: 0.1.6
+ form-data:
+ specifier: ^4.0.0
+ version: 4.0.1
+ oauth-1.0a:
+ specifier: ^2.2.6
+ version: 2.2.6
+
+ components/twitter_ads: {}
components/txt_werk:
- specifiers:
- '@pipedream/platform': ^3.0.0
dependencies:
- '@pipedream/platform': 3.0.0
+ '@pipedream/platform':
+ specifier: ^3.0.0
+ version: 3.0.3
- components/typebot:
- specifiers: {}
+ components/typebot: {}
components/typeflowai:
- specifiers:
- '@pipedream/platform': ^3.0.0
dependencies:
- '@pipedream/platform': 3.0.0
+ '@pipedream/platform':
+ specifier: ^3.0.0
+ version: 3.0.3
components/typeform:
- specifiers:
- '@pipedream/platform': ^1.1.1
- axios: ^0.21.1
- lodash: ^4.17.21
- luxon: ^3.0.4
- querystring: ^0.2.0
- uuidv4: ^6.2.13
- dependencies:
- '@pipedream/platform': 1.5.1
- axios: 0.21.4
- lodash: 4.17.21
- luxon: 3.4.3
- querystring: 0.2.1
- uuidv4: 6.2.13
-
- components/typless:
- specifiers: {}
+ dependencies:
+ '@pipedream/platform':
+ specifier: ^1.1.1
+ version: 1.6.6
+ axios:
+ specifier: ^0.21.1
+ version: 0.21.4
+ lodash:
+ specifier: ^4.17.21
+ version: 4.17.21
+ luxon:
+ specifier: ^3.0.4
+ version: 3.5.0
+ querystring:
+ specifier: ^0.2.0
+ version: 0.2.1
+ uuidv4:
+ specifier: ^6.2.13
+ version: 6.2.13
+
+ components/typless: {}
components/u301:
- specifiers:
- '@pipedream/platform': ^3.0.0
dependencies:
- '@pipedream/platform': 3.0.0
+ '@pipedream/platform':
+ specifier: ^3.0.0
+ version: 3.0.3
components/uberduck:
- specifiers:
- '@pipedream/platform': ^1.6.0
dependencies:
- '@pipedream/platform': 1.6.0
+ '@pipedream/platform':
+ specifier: ^1.6.0
+ version: 1.6.6
- components/uchat:
- specifiers: {}
+ components/uchat: {}
- components/uipath_automation_hub:
- specifiers: {}
+ components/uipath_automation_hub: {}
- components/uk_gov_vehecle_enquiry_api:
- specifiers: {}
+ components/uk_gov_vehecle_enquiry_api: {}
components/ultramsg:
- specifiers:
- '@pipedream/platform': ^0.10.0
dependencies:
- '@pipedream/platform': 0.10.0
+ '@pipedream/platform':
+ specifier: ^0.10.0
+ version: 0.10.0
components/unbounce:
- specifiers:
- '@pipedream/platform': ^1.5.1
- moment: ^2.29.4
dependencies:
- '@pipedream/platform': 1.5.1
- moment: 2.29.4
+ '@pipedream/platform':
+ specifier: ^1.5.1
+ version: 1.6.6
+ moment:
+ specifier: ^2.29.4
+ version: 2.30.1
components/undetectable_ai:
- specifiers:
- '@pipedream/platform': ^3.0.0
dependencies:
- '@pipedream/platform': 3.0.0
+ '@pipedream/platform':
+ specifier: ^3.0.0
+ version: 3.0.3
- components/unione:
- specifiers: {}
+ components/unione: {}
components/unisender:
- specifiers:
- '@pipedream/platform': ^0.10.0
dependencies:
- '@pipedream/platform': 0.10.0
+ '@pipedream/platform':
+ specifier: ^0.10.0
+ version: 0.10.0
- components/universal_summarizer_by_kagi:
- specifiers: {}
+ components/universal_summarizer_by_kagi: {}
components/unsplash:
- specifiers:
- '@pipedream/platform': ^1.6.5
dependencies:
- '@pipedream/platform': 1.6.5
+ '@pipedream/platform':
+ specifier: ^1.6.5
+ version: 1.6.6
- components/unstructured:
- specifiers: {}
+ components/unstructured: {}
components/unthread:
- specifiers:
- '@pipedream/platform': ^1.6.6
dependencies:
- '@pipedream/platform': 1.6.6
+ '@pipedream/platform':
+ specifier: ^1.6.6
+ version: 1.6.6
components/upbooks:
- specifiers:
- '@pipedream/platform': ^1.6.5
dependencies:
- '@pipedream/platform': 1.6.5
+ '@pipedream/platform':
+ specifier: ^1.6.5
+ version: 1.6.6
components/updown_io:
- specifiers:
- '@pipedream/platform': ^1.6.0
dependencies:
- '@pipedream/platform': 1.6.0
+ '@pipedream/platform':
+ specifier: ^1.6.0
+ version: 1.6.6
components/upkeep:
- specifiers:
- '@pipedream/platform': ^1.1.1
dependencies:
- '@pipedream/platform': 1.5.1
+ '@pipedream/platform':
+ specifier: ^1.1.1
+ version: 1.6.6
components/uplead:
- specifiers:
- '@pipedream/platform': ^1.5.1
dependencies:
- '@pipedream/platform': 1.5.1
+ '@pipedream/platform':
+ specifier: ^1.5.1
+ version: 1.6.6
components/uplisting:
- specifiers:
- '@pipedream/platform': ^1.5.1
dependencies:
- '@pipedream/platform': 1.5.1
+ '@pipedream/platform':
+ specifier: ^1.5.1
+ version: 1.6.6
components/uploadcare:
- specifiers:
- '@pipedream/platform': ^1.1.0
- qs: ^6.11.0
dependencies:
- '@pipedream/platform': 1.5.1
- qs: 6.11.2
+ '@pipedream/platform':
+ specifier: ^1.1.0
+ version: 1.6.6
+ qs:
+ specifier: ^6.11.0
+ version: 6.13.1
- components/upollo:
- specifiers: {}
+ components/upollo: {}
components/upstash_redis:
- specifiers:
- '@pipedream/platform': ^1.6.5
dependencies:
- '@pipedream/platform': 1.6.5
+ '@pipedream/platform':
+ specifier: ^1.6.5
+ version: 1.6.6
- components/uptimerobot:
- specifiers: {}
+ components/uptimerobot: {}
components/upviral:
- specifiers:
- '@pipedream/platform': ^1.5.1
- form-data: ^4.0.0
dependencies:
- '@pipedream/platform': 1.5.1
- form-data: 4.0.0
+ '@pipedream/platform':
+ specifier: ^1.5.1
+ version: 1.6.6
+ form-data:
+ specifier: ^4.0.0
+ version: 4.0.1
- components/upwave:
- specifiers: {}
+ components/upwave: {}
components/urlbae:
- specifiers:
- '@pipedream/platform': ^1.5.1
dependencies:
- '@pipedream/platform': 1.5.1
+ '@pipedream/platform':
+ specifier: ^1.5.1
+ version: 1.6.6
components/urlbox_io:
- specifiers:
- '@pipedream/platform': ^1.4.1
- crypto-js: ^4.2.0
- qs: ^6.11.2
dependencies:
- '@pipedream/platform': 1.5.1
- crypto-js: 4.2.0
- qs: 6.11.2
+ '@pipedream/platform':
+ specifier: ^1.4.1
+ version: 1.6.6
+ crypto-js:
+ specifier: ^4.2.0
+ version: 4.2.0
+ qs:
+ specifier: ^6.11.2
+ version: 6.13.1
components/uscreen:
- specifiers:
- '@pipedream/platform': ^1.5.1
dependencies:
- '@pipedream/platform': 1.5.1
+ '@pipedream/platform':
+ specifier: ^1.5.1
+ version: 1.6.6
- components/user_com:
- specifiers: {}
+ components/user_com: {}
- components/userflow:
- specifiers: {}
+ components/userflow: {}
components/userlist:
- specifiers:
- '@pipedream/platform': ^1.5.1
dependencies:
- '@pipedream/platform': 1.5.1
+ '@pipedream/platform':
+ specifier: ^1.5.1
+ version: 1.6.6
components/usersketch:
- specifiers:
- '@pipedream/platform': ^1.5.1
dependencies:
- '@pipedream/platform': 1.5.1
+ '@pipedream/platform':
+ specifier: ^1.5.1
+ version: 1.6.6
components/uservoice:
- specifiers:
- '@pipedream/platform': ^1.2.0
dependencies:
- '@pipedream/platform': 1.5.1
+ '@pipedream/platform':
+ specifier: ^1.2.0
+ version: 1.6.6
- components/usps:
- specifiers: {}
+ components/usps: {}
- components/utradea:
- specifiers: {}
+ components/utradea: {}
components/v7_darwin:
- specifiers:
- '@pipedream/platform': ^3.0.0
dependencies:
- '@pipedream/platform': 3.0.0
+ '@pipedream/platform':
+ specifier: ^3.0.0
+ version: 3.0.3
components/v7_go:
- specifiers:
- '@pipedream/platform': ^3.0.0
dependencies:
- '@pipedream/platform': 3.0.0
+ '@pipedream/platform':
+ specifier: ^3.0.0
+ version: 3.0.3
- components/vapi:
- specifiers: {}
+ components/vapi: {}
components/vbout:
- specifiers:
- '@pipedream/platform': ^1.2.0
- moment: ^2.29.4
dependencies:
- '@pipedream/platform': 1.5.1
- moment: 2.29.4
+ '@pipedream/platform':
+ specifier: ^1.2.0
+ version: 1.6.6
+ moment:
+ specifier: ^2.29.4
+ version: 2.30.1
- components/vectera:
- specifiers: {}
+ components/vectera: {}
components/vend:
- specifiers:
- '@pipedream/platform': ^0.10.0
dependencies:
- '@pipedream/platform': 0.10.0
+ '@pipedream/platform':
+ specifier: ^0.10.0
+ version: 0.10.0
- components/vendasta:
- specifiers: {}
+ components/vendasta: {}
components/venly:
- specifiers:
- '@pipedream/platform': ^1.6.0
dependencies:
- '@pipedream/platform': 1.6.0
+ '@pipedream/platform':
+ specifier: ^1.6.0
+ version: 1.6.6
components/vercel_token_auth:
- specifiers:
- '@pipedream/platform': ^1.2.0
dependencies:
- '@pipedream/platform': 1.6.2
+ '@pipedream/platform':
+ specifier: ^1.2.0
+ version: 1.6.6
components/verdict_as_a_service:
- specifiers:
- '@pipedream/types': ^0.1.4
- gdata-vaas: ^2.2.7
dependencies:
- gdata-vaas: 2.4.1
+ gdata-vaas:
+ specifier: ^2.2.7
+ version: 2.4.1
devDependencies:
- '@pipedream/types': 0.1.6
+ '@pipedream/types':
+ specifier: ^0.1.4
+ version: 0.1.6
components/verifalia:
- specifiers:
- '@pipedream/platform': ^1.4.0
- verifalia: 3.2.2
dependencies:
- '@pipedream/platform': 1.5.1
- verifalia: 3.2.2
+ '@pipedream/platform':
+ specifier: ^1.4.0
+ version: 1.6.6
+ verifalia:
+ specifier: 3.2.2
+ version: 3.2.2
- components/verifone:
- specifiers: {}
+ components/verifone: {}
- components/verifybee:
- specifiers: {}
+ components/verifybee: {}
components/veriphone:
- specifiers:
- '@pipedream/platform': ^1.5.1
dependencies:
- '@pipedream/platform': 1.5.1
+ '@pipedream/platform':
+ specifier: ^1.5.1
+ version: 1.6.6
- components/vero:
- specifiers: {}
+ components/vero: {}
components/vestaboard:
- specifiers:
- '@pipedream/platform': ^1.5.1
dependencies:
- '@pipedream/platform': 1.5.1
+ '@pipedream/platform':
+ specifier: ^1.5.1
+ version: 1.6.6
components/vext:
- specifiers:
- '@pipedream/platform': ^2.0.0
dependencies:
- '@pipedream/platform': 2.0.0
+ '@pipedream/platform':
+ specifier: ^2.0.0
+ version: 2.0.0
components/vida:
- specifiers:
- '@pipedream/platform': ^3.0.3
dependencies:
- '@pipedream/platform': 3.0.3
+ '@pipedream/platform':
+ specifier: ^3.0.3
+ version: 3.0.3
- components/videoask:
- specifiers: {}
+ components/videoask: {}
components/vies_api:
- specifiers:
- '@pipedream/platform': ^1.5.1
- viesapi-client: ^1.2.5
dependencies:
- '@pipedream/platform': 1.5.1
- viesapi-client: 1.2.5
+ '@pipedream/platform':
+ specifier: ^1.5.1
+ version: 1.6.6
+ viesapi-client:
+ specifier: ^1.2.5
+ version: 1.2.7
components/vimeo:
- specifiers:
- '@pipedreamhq/platform': ^0.8.1
dependencies:
- '@pipedreamhq/platform': 0.8.1
+ '@pipedreamhq/platform':
+ specifier: ^0.8.1
+ version: 0.8.1
components/viral_loops:
- specifiers:
- '@pipedream/platform': ^1.5.1
dependencies:
- '@pipedream/platform': 1.5.1
+ '@pipedream/platform':
+ specifier: ^1.5.1
+ version: 1.6.6
- components/virifi:
- specifiers: {}
+ components/virifi: {}
- components/virustotal:
- specifiers: {}
+ components/virustotal: {}
components/vision6:
- specifiers:
- '@pipedream/platform': ^1.2.0
- lodash.pickby: ^4.6.0
dependencies:
- '@pipedream/platform': 1.5.1
- lodash.pickby: 4.6.0
+ '@pipedream/platform':
+ specifier: ^1.2.0
+ version: 1.6.6
+ lodash.pickby:
+ specifier: ^4.6.0
+ version: 4.6.0
components/visitor_queue:
- specifiers:
- '@pipedream/platform': ^1.2.0
- moment: ^2.29.4
dependencies:
- '@pipedream/platform': 1.5.1
- moment: 2.29.4
+ '@pipedream/platform':
+ specifier: ^1.2.0
+ version: 1.6.6
+ moment:
+ specifier: ^2.29.4
+ version: 2.30.1
- components/visualping:
- specifiers: {}
+ components/visualping: {}
components/vitally:
- specifiers:
- '@pipedream/platform': ^1.5.1
- moment: ^2.29.4
dependencies:
- '@pipedream/platform': 1.5.1
- moment: 2.29.4
+ '@pipedream/platform':
+ specifier: ^1.5.1
+ version: 1.6.6
+ moment:
+ specifier: ^2.29.4
+ version: 2.30.1
components/vitel_phone:
- specifiers:
- '@pipedream/platform': ^1.5.1
- xml2js: ^0.6.2
dependencies:
- '@pipedream/platform': 1.5.1
- xml2js: 0.6.2
+ '@pipedream/platform':
+ specifier: ^1.5.1
+ version: 1.6.6
+ xml2js:
+ specifier: ^0.6.2
+ version: 0.6.2
- components/vivifyscrum:
- specifiers: {}
+ components/vivifyscrum: {}
components/vivocalendar:
- specifiers:
- '@pipedream/platform': ^1.6.2
dependencies:
- '@pipedream/platform': 1.6.2
+ '@pipedream/platform':
+ specifier: ^1.6.2
+ version: 1.6.6
components/vivomeetings:
- specifiers:
- '@pipedream/platform': ^3.0.0
dependencies:
- '@pipedream/platform': 3.0.0
+ '@pipedream/platform':
+ specifier: ^3.0.0
+ version: 3.0.3
- components/vk:
- specifiers: {}
+ components/vk: {}
- components/voice:
- specifiers: {}
+ components/voice: {}
- components/voice_monkey:
- specifiers: {}
+ components/voice_monkey: {}
components/voilanorbert:
- specifiers:
- '@pipedream/platform': ^1.1.1
dependencies:
- '@pipedream/platform': 1.5.1
+ '@pipedream/platform':
+ specifier: ^1.1.1
+ version: 1.6.6
- components/vosfactures:
- specifiers: {}
+ components/vosfactures: {}
components/vryno:
- specifiers:
- '@pipedream/platform': ^1.6.2
dependencies:
- '@pipedream/platform': 1.6.4
+ '@pipedream/platform':
+ specifier: ^1.6.2
+ version: 1.6.6
components/vtiger_crm:
- specifiers:
- '@pipedream/platform': ^1.5.1
dependencies:
- '@pipedream/platform': 1.5.1
+ '@pipedream/platform':
+ specifier: ^1.5.1
+ version: 1.6.6
components/vybit:
- specifiers:
- '@pipedream/platform': ^1.6.0
dependencies:
- '@pipedream/platform': 1.6.2
+ '@pipedream/platform':
+ specifier: ^1.6.0
+ version: 1.6.6
components/wachete:
- specifiers:
- '@pipedream/platform': ^1.6.0
dependencies:
- '@pipedream/platform': 1.6.0
+ '@pipedream/platform':
+ specifier: ^1.6.0
+ version: 1.6.6
- components/waitless:
- specifiers: {}
+ components/waitless: {}
components/waitlist:
- specifiers:
- '@pipedream/platform': ^3.0.0
dependencies:
- '@pipedream/platform': 3.0.0
+ '@pipedream/platform':
+ specifier: ^3.0.0
+ version: 3.0.3
components/waitwhile:
- specifiers:
- '@pipedream/platform': ^1.1.1
- '@pipedream/types': ^0.1.4
- '@types/node': ^17.0.36
- api: ^4.5.2
- axios: ^0.27.2
- openapi-types: ^12.0.0
- dependencies:
- '@pipedream/platform': 1.5.1
- api: 4.5.2_openapi-types@12.1.3
- axios: 0.27.2
- openapi-types: 12.1.3
+ dependencies:
+ '@pipedream/platform':
+ specifier: ^1.1.1
+ version: 1.6.6
+ api:
+ specifier: ^4.5.2
+ version: 4.5.2(openapi-types@12.1.3)
+ axios:
+ specifier: ^0.27.2
+ version: 0.27.2
+ openapi-types:
+ specifier: ^12.0.0
+ version: 12.1.3
devDependencies:
- '@pipedream/types': 0.1.6
- '@types/node': 17.0.45
+ '@pipedream/types':
+ specifier: ^0.1.4
+ version: 0.1.6
+ '@types/node':
+ specifier: ^17.0.36
+ version: 17.0.45
components/waiverfile:
- specifiers:
- '@pipedream/platform': ^1.6.0
dependencies:
- '@pipedream/platform': 1.6.0
+ '@pipedream/platform':
+ specifier: ^1.6.0
+ version: 1.6.6
components/waiverforever:
- specifiers:
- '@pipedream/platform': ^0.10.0
dependencies:
- '@pipedream/platform': 0.10.0
+ '@pipedream/platform':
+ specifier: ^0.10.0
+ version: 0.10.0
- components/wakatime:
- specifiers: {}
+ components/wakatime: {}
components/wappalyzer:
- specifiers:
- '@pipedream/platform': ^1.5.1
dependencies:
- '@pipedream/platform': 1.5.1
+ '@pipedream/platform':
+ specifier: ^1.5.1
+ version: 1.6.6
- components/warpcast:
- specifiers: {}
+ components/warpcast: {}
- components/watchsignals:
- specifiers: {}
+ components/watchsignals: {}
components/wati:
- specifiers:
- '@pipedream/platform': ^3.0.3
dependencies:
- '@pipedream/platform': 3.0.3
+ '@pipedream/platform':
+ specifier: ^3.0.3
+ version: 3.0.3
- components/watsonx_ai:
- specifiers: {}
+ components/watsonx_ai: {}
- components/wave:
- specifiers: {}
+ components/wave: {}
components/wealthbox:
- specifiers:
- '@pipedream/platform': ^1.5.1
dependencies:
- '@pipedream/platform': 1.5.1
+ '@pipedream/platform':
+ specifier: ^1.5.1
+ version: 1.6.6
components/weatherbit_io:
- specifiers:
- '@pipedream/platform': ^1.4.1
dependencies:
- '@pipedream/platform': 1.5.1
+ '@pipedream/platform':
+ specifier: ^1.4.1
+ version: 1.6.6
- components/weaviate:
- specifiers: {}
+ components/weaviate: {}
components/webflow:
- specifiers:
- '@pipedream/platform': ^1.1.0
- webflow-api: 1.3.1
dependencies:
- '@pipedream/platform': 1.5.1
- webflow-api: 1.3.1
+ '@pipedream/platform':
+ specifier: ^1.1.0
+ version: 1.6.6
+ webflow-api:
+ specifier: 1.3.1
+ version: 1.3.1
- components/webflow_v2:
- specifiers: {}
+ components/webflow_v2: {}
- components/webinarfuel:
- specifiers: {}
+ components/webinarfuel: {}
components/webinargeek:
- specifiers:
- '@pipedream/platform': ^1.2.0
dependencies:
- '@pipedream/platform': 1.5.1
+ '@pipedream/platform':
+ specifier: ^1.2.0
+ version: 1.6.6
components/webinarkit:
- specifiers:
- '@pipedream/platform': ^1.5.1
dependencies:
- '@pipedream/platform': 1.5.1
+ '@pipedream/platform':
+ specifier: ^1.5.1
+ version: 1.6.6
- components/webling:
- specifiers: {}
+ components/webling: {}
components/webscraper_io:
- specifiers:
- '@pipedream/platform': ^1.4.1
dependencies:
- '@pipedream/platform': 1.5.1
+ '@pipedream/platform':
+ specifier: ^1.4.1
+ version: 1.6.6
- components/webscraping_ai:
- specifiers: {}
+ components/webscraping_ai: {}
components/webvizio:
- specifiers:
- '@pipedream/platform': ^1.5.1
dependencies:
- '@pipedream/platform': 1.5.1
+ '@pipedream/platform':
+ specifier: ^1.5.1
+ version: 1.6.6
components/weglot:
- specifiers:
- '@pipedream/platform': ^1.5.1
dependencies:
- '@pipedream/platform': 1.5.1
+ '@pipedream/platform':
+ specifier: ^1.5.1
+ version: 1.6.6
components/welcome:
- specifiers:
- '@pipedream/platform': ^3.0.0
dependencies:
- '@pipedream/platform': 3.0.0
+ '@pipedream/platform':
+ specifier: ^3.0.0
+ version: 3.0.3
- components/wesupply:
- specifiers: {}
+ components/wesupply: {}
- components/weworkbook:
- specifiers: {}
+ components/weworkbook: {}
- components/whatconverts:
- specifiers: {}
+ components/whatconverts: {}
components/whatsable:
- specifiers:
- '@pipedream/platform': ^1.6.0
dependencies:
- '@pipedream/platform': 1.6.0
+ '@pipedream/platform':
+ specifier: ^1.6.0
+ version: 1.6.6
components/whatsapp_business:
- specifiers:
- '@pipedream/platform': ^1.2.0
- form-data: ^4.0.0
dependencies:
- '@pipedream/platform': 1.5.1
- form-data: 4.0.0
+ '@pipedream/platform':
+ specifier: ^1.2.0
+ version: 1.6.6
+ form-data:
+ specifier: ^4.0.0
+ version: 4.0.1
components/whautomate:
- specifiers:
- '@pipedream/platform': ^3.0.0
dependencies:
- '@pipedream/platform': 3.0.0
+ '@pipedream/platform':
+ specifier: ^3.0.0
+ version: 3.0.3
components/white_swan:
- specifiers:
- '@pipedream/platform': ^1.6.0
- md5: ^2.3.0
dependencies:
- '@pipedream/platform': 1.6.0
- md5: 2.3.0
+ '@pipedream/platform':
+ specifier: ^1.6.0
+ version: 1.6.6
+ md5:
+ specifier: ^2.3.0
+ version: 2.3.0
- components/whoisfreaks:
- specifiers: {}
+ components/whoisfreaks: {}
components/whop:
- specifiers:
- '@pipedream/platform': ^1.5.1
dependencies:
- '@pipedream/platform': 1.5.1
+ '@pipedream/platform':
+ specifier: ^1.5.1
+ version: 1.6.6
- components/whosonlocation:
- specifiers: {}
+ components/whosonlocation: {}
- components/wicked_reports:
- specifiers: {}
+ components/wicked_reports: {}
components/wildapricot:
- specifiers:
- '@pipedream/platform': ^1.6.2
dependencies:
- '@pipedream/platform': 1.6.2
+ '@pipedream/platform':
+ specifier: ^1.6.2
+ version: 1.6.6
components/wildberries:
- specifiers:
- '@pipedream/platform': ^1.1.1
dependencies:
- '@pipedream/platform': 1.5.1
+ '@pipedream/platform':
+ specifier: ^1.1.1
+ version: 1.6.6
components/winston_ai:
- specifiers:
- '@pipedream/platform': ^1.6.0
dependencies:
- '@pipedream/platform': 1.6.0
+ '@pipedream/platform':
+ specifier: ^1.6.0
+ version: 1.6.6
- components/wire2air:
- specifiers: {}
+ components/wire2air: {}
components/wise:
- specifiers:
- '@pipedream/platform': ^1.2.1
dependencies:
- '@pipedream/platform': 1.5.1
+ '@pipedream/platform':
+ specifier: ^1.2.1
+ version: 1.6.6
components/wisepops:
- specifiers:
- '@pipedream/platform': ^0.10.0
- node-forge: ^1.3.1
dependencies:
- '@pipedream/platform': 0.10.0
- node-forge: 1.3.1
+ '@pipedream/platform':
+ specifier: ^0.10.0
+ version: 0.10.0
+ node-forge:
+ specifier: ^1.3.1
+ version: 1.3.1
- components/wishpond:
- specifiers: {}
+ components/wishpond: {}
components/wistia:
- specifiers:
- '@pipedream/platform': ^1.2.0
dependencies:
- '@pipedream/platform': 1.5.1
+ '@pipedream/platform':
+ specifier: ^1.2.0
+ version: 1.6.6
components/withings:
- specifiers:
- '@pipedream/platform': ^1.2.0
dependencies:
- '@pipedream/platform': 1.5.1
+ '@pipedream/platform':
+ specifier: ^1.2.0
+ version: 1.6.6
- components/wix:
- specifiers: {}
+ components/wix: {}
components/wix_api_key:
- specifiers:
- '@pipedream/platform': ^1.5.1
dependencies:
- '@pipedream/platform': 1.5.1
+ '@pipedream/platform':
+ specifier: ^1.5.1
+ version: 1.6.6
components/wiza:
- specifiers:
- '@pipedream/platform': ^1.6.5
dependencies:
- '@pipedream/platform': 1.6.5
+ '@pipedream/platform':
+ specifier: ^1.6.5
+ version: 1.6.6
- components/wonderchat:
- specifiers: {}
+ components/wonderchat: {}
components/woocommerce:
- specifiers:
- '@pipedream/platform': ^0.10.0
- '@woocommerce/woocommerce-rest-api': ^1.0.1
- crypto: ^1.0.1
- lodash.pick: ^4.4.0
- lodash.pickby: ^4.6.0
- query-string: ^7.1.1
- dependencies:
- '@pipedream/platform': 0.10.0
- '@woocommerce/woocommerce-rest-api': 1.0.1
- crypto: 1.0.1
- lodash.pick: 4.4.0
- lodash.pickby: 4.6.0
- query-string: 7.1.3
+ dependencies:
+ '@pipedream/platform':
+ specifier: ^0.10.0
+ version: 0.10.0
+ '@woocommerce/woocommerce-rest-api':
+ specifier: ^1.0.1
+ version: 1.0.1
+ crypto:
+ specifier: ^1.0.1
+ version: 1.0.1
+ lodash.pick:
+ specifier: ^4.4.0
+ version: 4.4.0
+ lodash.pickby:
+ specifier: ^4.6.0
+ version: 4.6.0
+ query-string:
+ specifier: ^7.1.1
+ version: 7.1.3
components/woodpecker_co:
- specifiers:
- woodpecker-api: ^1.1.0
dependencies:
- woodpecker-api: 1.1.0
+ woodpecker-api:
+ specifier: ^1.1.0
+ version: 1.1.0
- components/woopra:
- specifiers: {}
+ components/woopra: {}
components/woovi:
- specifiers:
- '@pipedream/platform': ^1.5.1
dependencies:
- '@pipedream/platform': 1.5.1
+ '@pipedream/platform':
+ specifier: ^1.5.1
+ version: 1.6.6
components/wordpress_org:
- specifiers:
- lodash.pickby: ^4.6.0
- wpapi: ^1.2.2
dependencies:
- lodash.pickby: 4.6.0
- wpapi: 1.2.2
+ lodash.pickby:
+ specifier: ^4.6.0
+ version: 4.6.0
+ wpapi:
+ specifier: ^1.2.2
+ version: 1.2.2
components/workamajig:
- specifiers:
- '@pipedream/platform': ^1.5.1
dependencies:
- '@pipedream/platform': 1.5.1
+ '@pipedream/platform':
+ specifier: ^1.5.1
+ version: 1.6.6
components/workast:
- specifiers:
- '@pipedream/platform': ^1.2.0
- '@pipedream/types': ^0.1.4
dependencies:
- '@pipedream/platform': 1.5.1
- '@pipedream/types': 0.1.6
+ '@pipedream/platform':
+ specifier: ^1.2.0
+ version: 1.6.6
+ '@pipedream/types':
+ specifier: ^0.1.4
+ version: 0.1.6
components/workbooks_crm:
- specifiers:
- '@pipedream/platform': ^1.1.1
dependencies:
- '@pipedream/platform': 1.5.1
+ '@pipedream/platform':
+ specifier: ^1.1.1
+ version: 1.6.6
- components/workflow_max:
- specifiers: {}
+ components/workflow_max: {}
- components/workiom:
- specifiers: {}
+ components/workiom: {}
components/workiz:
- specifiers:
- '@pipedream/platform': ^1.5.1
dependencies:
- '@pipedream/platform': 1.5.1
+ '@pipedream/platform':
+ specifier: ^1.5.1
+ version: 1.6.6
- components/worksnaps:
- specifiers: {}
+ components/worksnaps: {}
components/world_news_api:
- specifiers:
- '@pipedream/platform': ^1.4.1
dependencies:
- '@pipedream/platform': 1.5.1
+ '@pipedream/platform':
+ specifier: ^1.4.1
+ version: 1.6.6
components/woxo:
- specifiers:
- '@pipedream/platform': ^1.2.0
dependencies:
- '@pipedream/platform': 1.5.1
+ '@pipedream/platform':
+ specifier: ^1.2.0
+ version: 1.6.6
components/wp_maps:
- specifiers:
- '@pipedream/platform': ^1.5.1
dependencies:
- '@pipedream/platform': 1.5.1
+ '@pipedream/platform':
+ specifier: ^1.5.1
+ version: 1.6.6
- components/wpforms:
- specifiers: {}
+ components/wpforms: {}
components/wrike:
- specifiers:
- '@pipedream/platform': ^3.0.3
- lodash: ^4.17.21
dependencies:
- '@pipedream/platform': 3.0.3
- lodash: 4.17.21
+ '@pipedream/platform':
+ specifier: ^3.0.3
+ version: 3.0.3
+ lodash:
+ specifier: ^4.17.21
+ version: 4.17.21
- components/writer:
- specifiers: {}
+ components/writer: {}
- components/writesonic:
- specifiers: {}
+ components/writesonic: {}
components/wubook_ratechecker:
- specifiers:
- '@pipedream/platform': ^1.4.1
dependencies:
- '@pipedream/platform': 1.5.1
+ '@pipedream/platform':
+ specifier: ^1.4.1
+ version: 1.6.6
- components/wuf:
- specifiers: {}
+ components/wuf: {}
components/wufoo:
- specifiers:
- '@pipedream/platform': ^1.5.1
- qs: ^6.11.2
dependencies:
- '@pipedream/platform': 1.5.1
- qs: 6.11.2
+ '@pipedream/platform':
+ specifier: ^1.5.1
+ version: 1.6.6
+ qs:
+ specifier: ^6.11.2
+ version: 6.13.1
- components/x_ai:
- specifiers: {}
+ components/x_ai: {}
components/xata:
- specifiers:
- '@pipedream/platform': ^3.0.2
dependencies:
- '@pipedream/platform': 3.0.3
+ '@pipedream/platform':
+ specifier: ^3.0.2
+ version: 3.0.3
- components/xeggex:
- specifiers: {}
+ components/xeggex: {}
- components/xendit:
- specifiers: {}
+ components/xendit: {}
components/xero_accounting_api:
- specifiers:
- '@pipedream/platform': ^1.4.0
dependencies:
- '@pipedream/platform': 1.5.1
+ '@pipedream/platform':
+ specifier: ^1.4.0
+ version: 1.6.6
components/xperiencify:
- specifiers:
- '@pipedream/platform': ^1.2.0
dependencies:
- '@pipedream/platform': 1.5.1
+ '@pipedream/platform':
+ specifier: ^1.2.0
+ version: 1.6.6
components/y_gy:
- specifiers:
- '@pipedream/platform': ^1.6.5
dependencies:
- '@pipedream/platform': 1.6.5
+ '@pipedream/platform':
+ specifier: ^1.6.5
+ version: 1.6.6
components/yahoo_fantasy_sports:
- specifiers:
- '@pipedream/platform': ^1.2.0
dependencies:
- '@pipedream/platform': 1.5.1
+ '@pipedream/platform':
+ specifier: ^1.2.0
+ version: 1.6.6
components/yanado:
- specifiers:
- '@pipedream/platform': ^1.2.0
dependencies:
- '@pipedream/platform': 1.5.1
+ '@pipedream/platform':
+ specifier: ^1.2.0
+ version: 1.6.6
components/yelp:
- specifiers:
- '@pipedream/platform': ^1.2.1
- '@pipedream/types': ^0.1.4
dependencies:
- '@pipedream/platform': 1.5.1
- '@pipedream/types': 0.1.6
+ '@pipedream/platform':
+ specifier: ^1.2.1
+ version: 1.6.6
+ '@pipedream/types':
+ specifier: ^0.1.4
+ version: 0.1.6
components/yespo:
- specifiers:
- '@pipedream/platform': ^1.5.1
dependencies:
- '@pipedream/platform': 1.6.0
+ '@pipedream/platform':
+ specifier: ^1.5.1
+ version: 1.6.6
- components/yoast_seo:
- specifiers: {}
+ components/yoast_seo: {}
components/yoplanning:
- specifiers:
- '@pipedream/platform': ^1.5.1
dependencies:
- '@pipedream/platform': 1.5.1
+ '@pipedream/platform':
+ specifier: ^1.5.1
+ version: 1.6.6
- components/yoprint:
- specifiers: {}
+ components/yoprint: {}
components/yotpo:
- specifiers:
- axios: ^0.21.1
- lodash.get: ^4.4.2
dependencies:
- axios: 0.21.4
- lodash.get: 4.4.2
+ axios:
+ specifier: ^0.21.1
+ version: 0.21.4
+ lodash.get:
+ specifier: ^4.4.2
+ version: 4.4.2
- components/you_can_book_me:
- specifiers: {}
+ components/you_can_book_me: {}
components/you_need_a_budget:
- specifiers:
- '@pipedream/platform': ^1.2.0
- ynab: ^1.28.0
dependencies:
- '@pipedream/platform': 1.5.1
- ynab: 1.55.0
+ '@pipedream/platform':
+ specifier: ^1.2.0
+ version: 1.6.6
+ ynab:
+ specifier: ^1.28.0
+ version: 1.55.0
components/youcanbook_me:
- specifiers:
- '@pipedream/platform': ^1.2.0
dependencies:
- '@pipedream/platform': 1.5.1
+ '@pipedream/platform':
+ specifier: ^1.2.0
+ version: 1.6.6
components/youtube_data_api:
- specifiers:
- '@googleapis/youtube': ^6.0.0
- got: ^12.5.1
- util: ^0.12.4
dependencies:
- '@googleapis/youtube': 6.0.0
- got: 12.6.1
- util: 0.12.5
+ '@googleapis/youtube':
+ specifier: ^6.0.0
+ version: 6.0.0
+ got:
+ specifier: ^12.5.1
+ version: 12.6.1
+ util:
+ specifier: ^0.12.4
+ version: 0.12.5
components/youtube_data_api_custom_app:
- specifiers:
- '@googleapis/youtube': ^6.0.0
- got: ^12.5.1
dependencies:
- '@googleapis/youtube': 6.0.0
- got: 12.6.1
+ '@googleapis/youtube':
+ specifier: ^6.0.0
+ version: 6.0.0
+ got:
+ specifier: ^12.5.1
+ version: 12.6.1
- components/yr:
- specifiers: {}
+ components/yr: {}
- components/yumpu:
- specifiers: {}
+ components/yumpu: {}
- components/z_api:
- specifiers: {}
+ components/z_api: {}
- components/zagomail:
- specifiers: {}
+ components/zagomail: {}
components/zamzar:
- specifiers:
- '@pipedream/platform': ^1.6.2
- form-data: ^4.0.0
- fs: ^0.0.1-security
dependencies:
- '@pipedream/platform': 1.6.2
- form-data: 4.0.0
- fs: 0.0.1-security
+ '@pipedream/platform':
+ specifier: ^1.6.2
+ version: 1.6.6
+ form-data:
+ specifier: ^4.0.0
+ version: 4.0.1
+ fs:
+ specifier: ^0.0.1-security
+ version: 0.0.1-security
components/zendesk:
- specifiers:
- '@pipedream/platform': ^0.9.0
- crypto: ^1.0.1
dependencies:
- '@pipedream/platform': 0.9.0
- crypto: 1.0.1
+ '@pipedream/platform':
+ specifier: ^0.9.0
+ version: 0.9.0
+ crypto:
+ specifier: ^1.0.1
+ version: 1.0.1
components/zendesk_sell:
- specifiers:
- '@pipedream/platform': ^3.0.3
dependencies:
- '@pipedream/platform': 3.0.3
+ '@pipedream/platform':
+ specifier: ^3.0.3
+ version: 3.0.3
components/zenkit:
- specifiers:
- '@pipedream/platform': ^1.1.1
dependencies:
- '@pipedream/platform': 1.5.1
+ '@pipedream/platform':
+ specifier: ^1.1.1
+ version: 1.6.6
components/zenler:
- specifiers:
- '@pipedream/platform': ^1.2.0
dependencies:
- '@pipedream/platform': 1.5.1
+ '@pipedream/platform':
+ specifier: ^1.2.0
+ version: 1.6.6
components/zenrows:
- specifiers:
- '@pipedream/platform': ^1.5.1
dependencies:
- '@pipedream/platform': 1.5.1
+ '@pipedream/platform':
+ specifier: ^1.5.1
+ version: 1.6.6
- components/zenscrape:
- specifiers: {}
+ components/zenscrape: {}
- components/zenserp:
- specifiers: {}
+ components/zenserp: {}
components/zenventory:
- specifiers:
- '@pipedream/platform': ^3.0.3
dependencies:
- '@pipedream/platform': 3.0.3
+ '@pipedream/platform':
+ specifier: ^3.0.3
+ version: 3.0.3
components/zerobounce:
- specifiers:
- '@pipedream/platform': ^3.0.3
- form-data: ^4.0.1
- path: ^0.12.7
dependencies:
- '@pipedream/platform': 3.0.3
- form-data: 4.0.1
- path: 0.12.7
+ '@pipedream/platform':
+ specifier: ^3.0.3
+ version: 3.0.3
+ form-data:
+ specifier: ^4.0.1
+ version: 4.0.1
+ path:
+ specifier: ^0.12.7
+ version: 0.12.7
components/zerotier:
- specifiers:
- '@pipedream/platform': ^1.2.0
dependencies:
- '@pipedream/platform': 1.5.1
+ '@pipedream/platform':
+ specifier: ^1.2.0
+ version: 1.6.6
components/zest:
- specifiers:
- '@pipedream/platform': ^1.5.1
dependencies:
- '@pipedream/platform': 1.5.1
+ '@pipedream/platform':
+ specifier: ^1.5.1
+ version: 1.6.6
components/zip_archive_api:
- specifiers:
- '@pipedream/platform': ^1.6.5
- form-data: ^4.0.0
dependencies:
- '@pipedream/platform': 1.6.5
- form-data: 4.0.0
+ '@pipedream/platform':
+ specifier: ^1.6.5
+ version: 1.6.6
+ form-data:
+ specifier: ^4.0.0
+ version: 4.0.1
components/zixflow:
- specifiers:
- '@pipedream/platform': ^1.6.4
dependencies:
- '@pipedream/platform': 1.6.4
+ '@pipedream/platform':
+ specifier: ^1.6.4
+ version: 1.6.6
- components/zoho_analytics:
- specifiers: {}
+ components/zoho_analytics: {}
components/zoho_assist:
- specifiers:
- '@pipedream/platform': ^1.5.1
- '@pipedream/types': ^0.1.4
dependencies:
- '@pipedream/platform': 1.5.1
- '@pipedream/types': 0.1.6
+ '@pipedream/platform':
+ specifier: ^1.5.1
+ version: 1.6.6
+ '@pipedream/types':
+ specifier: ^0.1.4
+ version: 0.1.6
components/zoho_bigin:
- specifiers:
- '@pipedream/platform': ^1.5.1
dependencies:
- '@pipedream/platform': 1.5.1
+ '@pipedream/platform':
+ specifier: ^1.5.1
+ version: 1.6.6
components/zoho_bookings:
- specifiers:
- '@pipedream/platform': ^1.5.1
- form-data: ^4.0.0
dependencies:
- '@pipedream/platform': 1.5.1
- form-data: 4.0.0
+ '@pipedream/platform':
+ specifier: ^1.5.1
+ version: 1.6.6
+ form-data:
+ specifier: ^4.0.0
+ version: 4.0.1
components/zoho_bugtracker:
- specifiers:
- '@pipedream/platform': ^1.5.1
- form-data: ^4.0.0
dependencies:
- '@pipedream/platform': 1.5.1
- form-data: 4.0.0
+ '@pipedream/platform':
+ specifier: ^1.5.1
+ version: 1.6.6
+ form-data:
+ specifier: ^4.0.0
+ version: 4.0.1
components/zoho_calendar:
- specifiers:
- '@pipedream/platform': ^1.5.1
dependencies:
- '@pipedream/platform': 1.5.1
+ '@pipedream/platform':
+ specifier: ^1.5.1
+ version: 1.6.6
- components/zoho_campaigns:
- specifiers: {}
+ components/zoho_campaigns: {}
components/zoho_catalyst:
- specifiers:
- '@pipedream/platform': ^1.5.1
- '@pipedream/types': ^0.1.6
- form-data: ^4.0.0
dependencies:
- '@pipedream/platform': 1.5.1
- '@pipedream/types': 0.1.6
- form-data: 4.0.0
+ '@pipedream/platform':
+ specifier: ^1.5.1
+ version: 1.6.6
+ '@pipedream/types':
+ specifier: ^0.1.6
+ version: 0.1.6
+ form-data:
+ specifier: ^4.0.0
+ version: 4.0.1
components/zoho_cliq:
- specifiers:
- '@pipedream/platform': ^1.5.1
dependencies:
- '@pipedream/platform': 1.5.1
+ '@pipedream/platform':
+ specifier: ^1.5.1
+ version: 1.6.6
components/zoho_commerce:
- specifiers:
- '@pipedream/platform': ^1.5.1
dependencies:
- '@pipedream/platform': 1.5.1
+ '@pipedream/platform':
+ specifier: ^1.5.1
+ version: 1.6.6
components/zoho_creator:
- specifiers:
- '@pipedream/platform': ^1.2.0
- async-retry: ^1.3.3
- dateformat: ^5.0.2
- lodash.get: ^4.4.2
dependencies:
- '@pipedream/platform': 1.5.1
- async-retry: 1.3.3
- dateformat: 5.0.3
- lodash.get: 4.4.2
+ '@pipedream/platform':
+ specifier: ^1.2.0
+ version: 1.6.6
+ async-retry:
+ specifier: ^1.3.3
+ version: 1.3.3
+ dateformat:
+ specifier: ^5.0.2
+ version: 5.0.3
+ lodash.get:
+ specifier: ^4.4.2
+ version: 4.4.2
components/zoho_crm:
- specifiers:
- '@pipedream/platform': ^1.2.0
- crypto: ^1.0.1
- lodash.sortby: ^4.7.0
dependencies:
- '@pipedream/platform': 1.5.1
- crypto: 1.0.1
- lodash.sortby: 4.7.0
+ '@pipedream/platform':
+ specifier: ^1.2.0
+ version: 1.6.6
+ crypto:
+ specifier: ^1.0.1
+ version: 1.0.1
+ lodash.sortby:
+ specifier: ^4.7.0
+ version: 4.7.0
components/zoho_desk:
- specifiers:
- '@pipedream/platform': ^1.6.2
- async-retry: ^1.3.3
- form-data: ^4.0.0
- fs: ^0.0.1-security
dependencies:
- '@pipedream/platform': 1.6.2
- async-retry: 1.3.3
- form-data: 4.0.0
- fs: 0.0.1-security
+ '@pipedream/platform':
+ specifier: ^1.6.2
+ version: 1.6.6
+ async-retry:
+ specifier: ^1.3.3
+ version: 1.3.3
+ form-data:
+ specifier: ^4.0.0
+ version: 4.0.1
+ fs:
+ specifier: ^0.0.1-security
+ version: 0.0.1-security
components/zoho_expense:
- specifiers:
- '@pipedream/platform': ^1.5.1
dependencies:
- '@pipedream/platform': 1.5.1
+ '@pipedream/platform':
+ specifier: ^1.5.1
+ version: 1.6.6
components/zoho_forms:
- specifiers:
- '@pipedream/platform': ^1.5.1
dependencies:
- '@pipedream/platform': 1.5.1
+ '@pipedream/platform':
+ specifier: ^1.5.1
+ version: 1.6.6
components/zoho_inventory:
- specifiers:
- '@pipedream/platform': ^1.2.0
dependencies:
- '@pipedream/platform': 1.5.1
+ '@pipedream/platform':
+ specifier: ^1.2.0
+ version: 1.6.6
components/zoho_invoice:
- specifiers:
- '@pipedream/platform': ^1.5.1
dependencies:
- '@pipedream/platform': 1.5.1
+ '@pipedream/platform':
+ specifier: ^1.5.1
+ version: 1.6.6
components/zoho_mail:
- specifiers:
- '@pipedream/platform': ^1.2.0
dependencies:
- '@pipedream/platform': 1.5.1
+ '@pipedream/platform':
+ specifier: ^1.2.0
+ version: 1.6.6
components/zoho_meeting:
- specifiers:
- '@pipedream/platform': ^1.5.1
dependencies:
- '@pipedream/platform': 1.5.1
+ '@pipedream/platform':
+ specifier: ^1.5.1
+ version: 1.6.6
components/zoho_notebook:
- specifiers:
- '@pipedream/platform': ^1.6.0
dependencies:
- '@pipedream/platform': 1.6.2
+ '@pipedream/platform':
+ specifier: ^1.6.0
+ version: 1.6.6
- components/zoho_people:
- specifiers: {}
+ components/zoho_people: {}
components/zoho_projects:
- specifiers:
- '@pipedream/platform': ^1.6.2
- async-retry: ^1.3.3
- form-data: ^4.0.0
- fs: ^0.0.1-security
dependencies:
- '@pipedream/platform': 1.6.2
- async-retry: 1.3.3
- form-data: 4.0.0
- fs: 0.0.1-security
+ '@pipedream/platform':
+ specifier: ^1.6.2
+ version: 1.6.6
+ async-retry:
+ specifier: ^1.3.3
+ version: 1.3.3
+ form-data:
+ specifier: ^4.0.0
+ version: 4.0.1
+ fs:
+ specifier: ^0.0.1-security
+ version: 0.0.1-security
components/zoho_recruit:
- specifiers:
- '@pipedream/platform': ^1.5.1
dependencies:
- '@pipedream/platform': 1.5.1
+ '@pipedream/platform':
+ specifier: ^1.5.1
+ version: 1.6.6
components/zoho_salesiq:
- specifiers:
- '@pipedream/platform': ^1.5.1
dependencies:
- '@pipedream/platform': 1.5.1
+ '@pipedream/platform':
+ specifier: ^1.5.1
+ version: 1.6.6
components/zoho_sheet:
- specifiers:
- '@pipedream/platform': ^3.0.3
dependencies:
- '@pipedream/platform': 3.0.3
+ '@pipedream/platform':
+ specifier: ^3.0.3
+ version: 3.0.3
components/zoho_sign:
- specifiers:
- '@pipedream/platform': ^1.5.1
dependencies:
- '@pipedream/platform': 1.5.1
+ '@pipedream/platform':
+ specifier: ^1.5.1
+ version: 1.6.6
components/zoho_sprints:
- specifiers:
- '@pipedream/platform': ^1.5.1
dependencies:
- '@pipedream/platform': 1.5.1
+ '@pipedream/platform':
+ specifier: ^1.5.1
+ version: 1.6.6
components/zoho_subscriptions:
- specifiers:
- moment: ^2.29.4
dependencies:
- moment: 2.29.4
+ moment:
+ specifier: ^2.29.4
+ version: 2.30.1
components/zoho_survey:
- specifiers:
- '@pipedream/platform': ^1.5.1
- html-entities-decoder: ^1.0.5
dependencies:
- '@pipedream/platform': 1.5.1
- html-entities-decoder: 1.0.5
+ '@pipedream/platform':
+ specifier: ^1.5.1
+ version: 1.6.6
+ html-entities-decoder:
+ specifier: ^1.0.5
+ version: 1.0.5
components/zoho_workdrive:
- specifiers:
- '@pipedream/platform': ^1.5.1
- axios: ^1.5.1
- form-data: ^4.0.0
dependencies:
- '@pipedream/platform': 1.5.1
- axios: 1.5.1
- form-data: 4.0.0
+ '@pipedream/platform':
+ specifier: ^1.5.1
+ version: 1.6.6
+ axios:
+ specifier: ^1.5.1
+ version: 1.7.7(debug@3.2.7)
+ form-data:
+ specifier: ^4.0.0
+ version: 4.0.1
components/zonka_feedback:
- specifiers:
- '@pipedream/platform': ^1.2.0
dependencies:
- '@pipedream/platform': 1.5.1
+ '@pipedream/platform':
+ specifier: ^1.2.0
+ version: 1.6.6
components/zoom:
- specifiers:
- '@pipedream/platform': ^1.3.0
dependencies:
- '@pipedream/platform': 1.5.1
+ '@pipedream/platform':
+ specifier: ^1.3.0
+ version: 1.6.6
components/zoom_admin:
- specifiers:
- '@pipedream/platform': ^1.4.0
- lodash: ^4.17.21
- uuid: ^8.3.2
dependencies:
- '@pipedream/platform': 1.5.1
- lodash: 4.17.21
- uuid: 8.3.2
+ '@pipedream/platform':
+ specifier: ^1.4.0
+ version: 1.6.6
+ lodash:
+ specifier: ^4.17.21
+ version: 4.17.21
+ uuid:
+ specifier: ^8.3.2
+ version: 8.3.2
- components/zulip:
- specifiers: {}
+ components/zulip: {}
- components/zuora:
- specifiers: {}
+ components/zuora: {}
components/zylvie:
- specifiers:
- '@pipedream/platform': ^3.0.0
dependencies:
- '@pipedream/platform': 3.0.0
+ '@pipedream/platform':
+ specifier: ^3.0.0
+ version: 3.0.3
- components/zyte_api:
- specifiers: {}
+ components/zyte_api: {}
helpers:
- specifiers:
- '@pipedream/types': ^0.3.0
- '@types/lodash-es': ^4.17.12
- '@types/node': ^20.14.7
- lodash-es: ^4.17.21
- sugar: ^2.0.6
- typescript: ^5.5.2
dependencies:
- lodash-es: 4.17.21
- sugar: 2.0.6
+ lodash-es:
+ specifier: ^4.17.21
+ version: 4.17.21
+ sugar:
+ specifier: ^2.0.6
+ version: 2.0.6
devDependencies:
- '@pipedream/types': 0.3.0
- '@types/lodash-es': 4.17.12
- '@types/node': 20.14.8
- typescript: 5.5.2
+ '@pipedream/types':
+ specifier: ^0.3.0
+ version: 0.3.2
+ '@types/lodash-es':
+ specifier: ^4.17.12
+ version: 4.17.12
+ '@types/node':
+ specifier: ^20.14.7
+ version: 20.17.6
+ typescript:
+ specifier: ^5.5.2
+ version: 5.7.2
packages/browsers:
- specifiers:
- '@sparticuz/chromium': 121.0.0
- playwright-core: 1.41.2
- puppeteer-core: 21.11.0
dependencies:
- '@sparticuz/chromium': 121.0.0
- playwright-core: 1.41.2
- puppeteer-core: 21.11.0
+ '@sparticuz/chromium':
+ specifier: 121.0.0
+ version: 121.0.0
+ playwright-core:
+ specifier: 1.41.2
+ version: 1.41.2
+ puppeteer-core:
+ specifier: 21.11.0
+ version: 21.11.0
+
+ packages/connect-react:
+ dependencies:
+ '@pipedream/sdk':
+ specifier: ^1.0.6
+ version: 1.0.7
+ '@tanstack/react-query':
+ specifier: ^5.59.16
+ version: 5.61.0(react@18.3.1)
+ lodash.isequal:
+ specifier: ^4.5.0
+ version: 4.5.0
+ react:
+ specifier: ^16.8.0 || ^17.0.0 || ^18.0.0
+ version: 18.3.1
+ react-dom:
+ specifier: ^16.8.0 || ^17.0.0 || ^18.0.0
+ version: 18.3.1(react@18.3.1)
+ react-markdown:
+ specifier: ^9.0.1
+ version: 9.0.1(@types/react@18.3.12)(react@18.3.1)
+ react-select:
+ specifier: ^5.8.2
+ version: 5.8.3(@types/react@18.3.12)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ devDependencies:
+ '@types/lodash.isequal':
+ specifier: ^4.5.8
+ version: 4.5.8
+ '@types/react':
+ specifier: ^18.3.12
+ version: 18.3.12
+ vite:
+ specifier: ^5.4.11
+ version: 5.4.11(@types/node@20.17.6)
+ vite-plugin-dts:
+ specifier: ^4.3.0
+ version: 4.3.0(@types/node@20.17.6)(rollup@4.27.3)(typescript@5.7.2)(vite@5.4.11(@types/node@20.17.6))
+
+ packages/connect-react/examples/nextjs:
+ dependencies:
+ '@pipedream/connect-react':
+ specifier: file:../..
+ version: file:packages/connect-react(@types/react@18.3.12)(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106)
+ '@pipedream/sdk':
+ specifier: ^1.0.6
+ version: 1.0.7
+ next:
+ specifier: 15.0.3
+ version: 15.0.3(@babel/core@8.0.0-alpha.13)(@opentelemetry/api@1.9.0)(babel-plugin-macros@3.1.0)(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106)
+ react:
+ specifier: 19.0.0-rc-66855b96-20241106
+ version: 19.0.0-rc-66855b96-20241106
+ react-dom:
+ specifier: 19.0.0-rc-66855b96-20241106
+ version: 19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106)
+ devDependencies:
+ '@types/node':
+ specifier: ^20
+ version: 20.17.6
+ '@types/react':
+ specifier: ^18
+ version: 18.3.12
+ '@types/react-dom':
+ specifier: ^18
+ version: 18.3.1
+ typescript:
+ specifier: ^5
+ version: 5.7.2
packages/prompts:
- specifiers:
- typescript: ^5.0.4
dependencies:
- typescript: 5.3.3
+ typescript:
+ specifier: ^5.0.4
+ version: 5.7.2
packages/sdk:
- specifiers:
- '@rails/actioncable': ^8.0.0
- '@types/fetch-mock': ^7.3.8
- '@types/jest': ^29.5.13
- '@types/node': ^20.17.6
- '@types/rails__actioncable': ^6.1.11
- '@types/simple-oauth2': ^5.0.7
- '@types/ws': ^8.5.13
- commander: ^12.1.0
- jest: ^29.7.0
- jest-fetch-mock: ^3.0.3
- nodemon: ^3.1.7
- simple-oauth2: ^5.1.0
- ts-jest: ^29.2.5
- typescript: ^5.5.2
- ws: ^8.18.0
dependencies:
- '@rails/actioncable': 8.0.0
- commander: 12.1.0
- simple-oauth2: 5.1.0
- ws: 8.18.0
+ '@rails/actioncable':
+ specifier: ^8.0.0
+ version: 8.0.0
+ commander:
+ specifier: ^12.1.0
+ version: 12.1.0
+ simple-oauth2:
+ specifier: ^5.1.0
+ version: 5.1.0
+ ws:
+ specifier: ^8.18.0
+ version: 8.18.0
devDependencies:
- '@types/fetch-mock': 7.3.8
- '@types/jest': 29.5.13
- '@types/node': 20.17.6
- '@types/rails__actioncable': 6.1.11
- '@types/simple-oauth2': 5.0.7
- '@types/ws': 8.5.13
- jest: 29.7.0_@types+node@20.17.6
- jest-fetch-mock: 3.0.3
- nodemon: 3.1.7
- ts-jest: 29.2.5_q3xqhaztsvh2r5udjscjs67zn4
- typescript: 5.5.4
+ '@types/fetch-mock':
+ specifier: ^7.3.8
+ version: 7.3.8
+ '@types/jest':
+ specifier: ^29.5.13
+ version: 29.5.14
+ '@types/node':
+ specifier: ^20.17.6
+ version: 20.17.6
+ '@types/rails__actioncable':
+ specifier: ^6.1.11
+ version: 6.1.11
+ '@types/simple-oauth2':
+ specifier: ^5.0.7
+ version: 5.0.7
+ '@types/ws':
+ specifier: ^8.5.13
+ version: 8.5.13
+ jest:
+ specifier: ^29.7.0
+ version: 29.7.0(@types/node@20.17.6)(babel-plugin-macros@3.1.0)
+ jest-fetch-mock:
+ specifier: ^3.0.3
+ version: 3.0.3
+ nodemon:
+ specifier: ^3.1.7
+ version: 3.1.7
+ ts-jest:
+ specifier: ^29.2.5
+ version: 29.2.5(@babel/core@7.26.0)(@jest/transform@29.7.0)(@jest/types@29.6.3)(babel-jest@29.7.0(@babel/core@7.26.0))(jest@29.7.0(@types/node@20.17.6)(babel-plugin-macros@3.1.0))(typescript@5.7.2)
+ typescript:
+ specifier: ^5.6
+ version: 5.7.2
packages/snowflake-sdk:
- specifiers:
- snowflake-sdk: 1.9.0
dependencies:
- snowflake-sdk: 1.9.0_asn1.js@5.4.1
+ snowflake-sdk:
+ specifier: 1.9.0
+ version: 1.9.0(asn1.js@5.4.1)
platform:
- specifiers:
- '@octokit/core': ^3.6.0
- axios: ^1.7.4
- fp-ts: ^2.0.2
- husky: ^3.0.0
- io-ts: ^2.0.0
- jest: ^29.1.2
- querystring: ^0.2.1
- type-fest: ^4.15.0
- typescript: ^3.5.3
dependencies:
- axios: 1.7.4
- fp-ts: 2.16.1
- io-ts: 2.2.20_fp-ts@2.16.1
- querystring: 0.2.1
+ axios:
+ specifier: ^1.7.4
+ version: 1.7.7(debug@3.2.7)
+ fp-ts:
+ specifier: ^2.0.2
+ version: 2.16.9
+ io-ts:
+ specifier: ^2.0.0
+ version: 2.2.21(fp-ts@2.16.9)
+ querystring:
+ specifier: ^0.2.1
+ version: 0.2.1
devDependencies:
- '@octokit/core': 3.6.0
- husky: 3.1.0
- jest: 29.7.0
- type-fest: 4.15.0
- typescript: 3.9.10
+ '@octokit/core':
+ specifier: ^3.6.0
+ version: 3.6.0
+ husky:
+ specifier: ^3.0.0
+ version: 3.1.0
+ jest:
+ specifier: ^29.1.2
+ version: 29.7.0(@types/node@20.17.6)(babel-plugin-macros@3.1.0)
+ type-fest:
+ specifier: ^4.15.0
+ version: 4.27.0
+ typescript:
+ specifier: ^3.5.3
+ version: 3.9.10
types:
- specifiers:
- '@types/node': ^20.9.2
- dtslint: ^4.2.1
- typescript: ^5.2.2
dependencies:
- typescript: 5.2.2
+ typescript:
+ specifier: ^5.2.2
+ version: 5.7.2
devDependencies:
- '@types/node': 20.9.2
- dtslint: 4.2.1_typescript@5.2.2
+ '@types/node':
+ specifier: ^20.9.2
+ version: 20.17.6
+ dtslint:
+ specifier: ^4.2.1
+ version: 4.2.1(typescript@5.7.2)
packages:
- /@aashutoshrathi/word-wrap/1.2.6:
- resolution: {integrity: sha512-1Yjs2SvM8TflER/OD3cOjhWWOZb58A2t7wpE2S9XfBYTiIl+XFhQG2bjy4Pu1I+EAlCNUzRDYDdFwFYUKvXcIA==}
- engines: {node: '>=0.10.0'}
- dev: true
+ '@actions/core@1.11.1':
+ resolution: {integrity: sha512-hXJCSrkwfA46Vd9Z3q4cpEpHB1rL5NG04+/rbqW9d3+CSvtB1tYe8UTpAlixa1vj0m/ULglfEK2UKxMGxCxv5A==}
- /@actions/core/1.10.1:
- resolution: {integrity: sha512-3lBR9EDAY+iYIpTnTIXmWcNbX3T2kCkAEQGIQx4NVQ0575nk2k3GRZDTPQG+vVtS2izSLmINlxXf0uLtnrTP+g==}
- dependencies:
- '@actions/http-client': 2.1.1
- uuid: 8.3.2
- dev: false
+ '@actions/exec@1.1.1':
+ resolution: {integrity: sha512-+sCcHHbVdk93a0XT19ECtO/gIXoxvdsgQLzb2fE2/5sIZmWQuluYyjPQtrtTHdU1YzTZ7bAPN4sITq2xi1679w==}
- /@actions/http-client/2.1.1:
- resolution: {integrity: sha512-qhrkRMB40bbbLo7gF+0vu+X+UawOvQQqNAA/5Unx774RS8poaOhThDOG6BGmxvAnxhQnDp2BG/ZUm65xZILTpw==}
- dependencies:
- tunnel: 0.0.6
- dev: false
+ '@actions/http-client@2.2.3':
+ resolution: {integrity: sha512-mx8hyJi/hjFvbPokCg4uRd4ZX78t+YyRPtnKWwIl+RzNaVuFpQHfmlGVfsKEJN8LwTCvL+DfVgAM04XaHkm6bA==}
- /@adobe/pdfservices-node-sdk/3.4.2:
+ '@actions/io@1.1.3':
+ resolution: {integrity: sha512-wi9JjgKLYS7U/z8PPbco+PvTb/nRWjeoFlJ1Qer83k/3C5PHQi28hiVdeE2kHXmIL99mQFawx8qt/JPjZilJ8Q==}
+
+ '@adobe/pdfservices-node-sdk@3.4.2':
resolution: {integrity: sha512-sLIiSYjQbJz74hB7NpJ7HcQTJikbvADdMh4oOtktn3zMEStAyl8BVQ+x40FimHAFqY0lJl4G99ZJHUYX6HFDQA==}
engines: {node: '>= 10.13.0', npm: '>= 5.6.0'}
- dependencies:
- adm-zip: 0.5.2
- form-data: 3.0.0
- jsonwebtoken: 9.0.0
- lodash: 4.17.21
- lodash-core: 4.17.11
- log4js: 6.4.4
- move-file: 1.2.0
- streamifier: 0.1.1
- temp-dir: 2.0.0
- url-template: 2.0.8
- uuid: 3.3.2
- validate: 4.5.1
- xml2js: 0.5.0
- transitivePeerDependencies:
- - supports-color
- dev: false
- /@adyen/api-library/20.0.0:
+ '@adyen/api-library@20.0.0':
resolution: {integrity: sha512-C+jj5XBTCNs7AFwufOkPLhuqn9bdgSDcqLB6b/Ppi9Fujwt613vWmA1hxeG76RX49vzHZIDJLq6N/v0o2SY1sA==}
engines: {node: '>=18'}
- dependencies:
- https-proxy-agent: 5.0.1
- optionalDependencies:
- '@types/node': 14.18.63
- transitivePeerDependencies:
- - supports-color
- dev: false
- /@algolia/cache-browser-local-storage/4.20.0:
- resolution: {integrity: sha512-uujahcBt4DxduBTvYdwO3sBfHuJvJokiC3BP1+O70fglmE1ShkH8lpXqZBac1rrU3FnNYSUs4pL9lBdTKeRPOQ==}
- dependencies:
- '@algolia/cache-common': 4.20.0
- dev: false
+ '@algolia/cache-browser-local-storage@4.24.0':
+ resolution: {integrity: sha512-t63W9BnoXVrGy9iYHBgObNXqYXM3tYXCjDSHeNwnsc324r4o5UiVKUiAB4THQ5z9U5hTj6qUvwg/Ez43ZD85ww==}
- /@algolia/cache-common/4.20.0:
- resolution: {integrity: sha512-vCfxauaZutL3NImzB2G9LjLt36vKAckc6DhMp05An14kVo8F1Yofb6SIl6U3SaEz8pG2QOB9ptwM5c+zGevwIQ==}
- dev: false
+ '@algolia/cache-common@4.24.0':
+ resolution: {integrity: sha512-emi+v+DmVLpMGhp0V9q9h5CdkURsNmFC+cOS6uK9ndeJm9J4TiqSvPYVu+THUP8P/S08rxf5x2P+p3CfID0Y4g==}
- /@algolia/cache-in-memory/4.20.0:
- resolution: {integrity: sha512-Wm9ak/IaacAZXS4mB3+qF/KCoVSBV6aLgIGFEtQtJwjv64g4ePMapORGmCyulCFwfePaRAtcaTbMcJF+voc/bg==}
- dependencies:
- '@algolia/cache-common': 4.20.0
- dev: false
+ '@algolia/cache-in-memory@4.24.0':
+ resolution: {integrity: sha512-gDrt2so19jW26jY3/MkFg5mEypFIPbPoXsQGQWAi6TrCPsNOSEYepBMPlucqWigsmEy/prp5ug2jy/N3PVG/8w==}
- /@algolia/client-account/4.20.0:
- resolution: {integrity: sha512-GGToLQvrwo7am4zVkZTnKa72pheQeez/16sURDWm7Seyz+HUxKi3BM6fthVVPUEBhtJ0reyVtuK9ArmnaKl10Q==}
- dependencies:
- '@algolia/client-common': 4.20.0
- '@algolia/client-search': 4.20.0
- '@algolia/transporter': 4.20.0
- dev: false
+ '@algolia/client-account@4.24.0':
+ resolution: {integrity: sha512-adcvyJ3KjPZFDybxlqnf+5KgxJtBjwTPTeyG2aOyoJvx0Y8dUQAEOEVOJ/GBxX0WWNbmaSrhDURMhc+QeevDsA==}
- /@algolia/client-analytics/4.20.0:
- resolution: {integrity: sha512-EIr+PdFMOallRdBTHHdKI3CstslgLORQG7844Mq84ib5oVFRVASuuPmG4bXBgiDbcsMLUeOC6zRVJhv1KWI0ug==}
- dependencies:
- '@algolia/client-common': 4.20.0
- '@algolia/client-search': 4.20.0
- '@algolia/requester-common': 4.20.0
- '@algolia/transporter': 4.20.0
- dev: false
+ '@algolia/client-analytics@4.24.0':
+ resolution: {integrity: sha512-y8jOZt1OjwWU4N2qr8G4AxXAzaa8DBvyHTWlHzX/7Me1LX8OayfgHexqrsL4vSBcoMmVw2XnVW9MhL+Y2ZDJXg==}
- /@algolia/client-common/4.20.0:
- resolution: {integrity: sha512-P3WgMdEss915p+knMMSd/fwiHRHKvDu4DYRrCRaBrsfFw7EQHon+EbRSm4QisS9NYdxbS04kcvNoavVGthyfqQ==}
- dependencies:
- '@algolia/requester-common': 4.20.0
- '@algolia/transporter': 4.20.0
- dev: false
+ '@algolia/client-common@4.24.0':
+ resolution: {integrity: sha512-bc2ROsNL6w6rqpl5jj/UywlIYC21TwSSoFHKl01lYirGMW+9Eek6r02Tocg4gZ8HAw3iBvu6XQiM3BEbmEMoiA==}
- /@algolia/client-personalization/4.20.0:
- resolution: {integrity: sha512-N9+zx0tWOQsLc3K4PVRDV8GUeOLAY0i445En79Pr3zWB+m67V+n/8w4Kw1C5LlbHDDJcyhMMIlqezh6BEk7xAQ==}
- dependencies:
- '@algolia/client-common': 4.20.0
- '@algolia/requester-common': 4.20.0
- '@algolia/transporter': 4.20.0
- dev: false
+ '@algolia/client-personalization@4.24.0':
+ resolution: {integrity: sha512-l5FRFm/yngztweU0HdUzz1rC4yoWCFo3IF+dVIVTfEPg906eZg5BOd1k0K6rZx5JzyyoP4LdmOikfkfGsKVE9w==}
- /@algolia/client-search/4.20.0:
- resolution: {integrity: sha512-zgwqnMvhWLdpzKTpd3sGmMlr4c+iS7eyyLGiaO51zDZWGMkpgoNVmltkzdBwxOVXz0RsFMznIxB9zuarUv4TZg==}
- dependencies:
- '@algolia/client-common': 4.20.0
- '@algolia/requester-common': 4.20.0
- '@algolia/transporter': 4.20.0
- dev: false
+ '@algolia/client-search@4.24.0':
+ resolution: {integrity: sha512-uRW6EpNapmLAD0mW47OXqTP8eiIx5F6qN9/x/7HHO6owL3N1IXqydGwW5nhDFBrV+ldouro2W1VX3XlcUXEFCA==}
- /@algolia/logger-common/4.20.0:
- resolution: {integrity: sha512-xouigCMB5WJYEwvoWW5XDv7Z9f0A8VoXJc3VKwlHJw/je+3p2RcDXfksLI4G4lIVncFUYMZx30tP/rsdlvvzHQ==}
- dev: false
+ '@algolia/logger-common@4.24.0':
+ resolution: {integrity: sha512-LLUNjkahj9KtKYrQhFKCzMx0BY3RnNP4FEtO+sBybCjJ73E8jNdaKJ/Dd8A/VA4imVHP5tADZ8pn5B8Ga/wTMA==}
- /@algolia/logger-console/4.20.0:
- resolution: {integrity: sha512-THlIGG1g/FS63z0StQqDhT6bprUczBI8wnLT3JWvfAQDZX5P6fCg7dG+pIrUBpDIHGszgkqYEqECaKKsdNKOUA==}
- dependencies:
- '@algolia/logger-common': 4.20.0
- dev: false
+ '@algolia/logger-console@4.24.0':
+ resolution: {integrity: sha512-X4C8IoHgHfiUROfoRCV+lzSy+LHMgkoEEU1BbKcsfnV0i0S20zyy0NLww9dwVHUWNfPPxdMU+/wKmLGYf96yTg==}
- /@algolia/requester-browser-xhr/4.20.0:
- resolution: {integrity: sha512-HbzoSjcjuUmYOkcHECkVTwAelmvTlgs48N6Owt4FnTOQdwn0b8pdht9eMgishvk8+F8bal354nhx/xOoTfwiAw==}
- dependencies:
- '@algolia/requester-common': 4.20.0
- dev: false
+ '@algolia/recommend@4.24.0':
+ resolution: {integrity: sha512-P9kcgerfVBpfYHDfVZDvvdJv0lEoCvzNlOy2nykyt5bK8TyieYyiD0lguIJdRZZYGre03WIAFf14pgE+V+IBlw==}
- /@algolia/requester-common/4.20.0:
- resolution: {integrity: sha512-9h6ye6RY/BkfmeJp7Z8gyyeMrmmWsMOCRBXQDs4mZKKsyVlfIVICpcSibbeYcuUdurLhIlrOUkH3rQEgZzonng==}
- dev: false
+ '@algolia/requester-browser-xhr@4.24.0':
+ resolution: {integrity: sha512-Z2NxZMb6+nVXSjF13YpjYTdvV3032YTBSGm2vnYvYPA6mMxzM3v5rsCiSspndn9rzIW4Qp1lPHBvuoKJV6jnAA==}
- /@algolia/requester-node-http/4.20.0:
- resolution: {integrity: sha512-ocJ66L60ABSSTRFnCHIEZpNHv6qTxsBwJEPfYaSBsLQodm0F9ptvalFkHMpvj5DfE22oZrcrLbOYM2bdPJRHng==}
- dependencies:
- '@algolia/requester-common': 4.20.0
- dev: false
+ '@algolia/requester-common@4.24.0':
+ resolution: {integrity: sha512-k3CXJ2OVnvgE3HMwcojpvY6d9kgKMPRxs/kVohrwF5WMr2fnqojnycZkxPoEg+bXm8fi5BBfFmOqgYztRtHsQA==}
- /@algolia/transporter/4.20.0:
- resolution: {integrity: sha512-Lsii1pGWOAISbzeyuf+r/GPhvHMPHSPrTDWNcIzOE1SG1inlJHICaVe2ikuoRjcpgxZNU54Jl+if15SUCsaTUg==}
- dependencies:
- '@algolia/cache-common': 4.20.0
- '@algolia/logger-common': 4.20.0
- '@algolia/requester-common': 4.20.0
- dev: false
+ '@algolia/requester-node-http@4.24.0':
+ resolution: {integrity: sha512-JF18yTjNOVYvU/L3UosRcvbPMGT9B+/GQWNWnenIImglzNVGpyzChkXLnrSf6uxwVNO6ESGu6oN8MqcGQcjQJw==}
- /@ampproject/remapping/2.2.1:
- resolution: {integrity: sha512-lFMjJTrFL3j7L9yBxwYfCq2k6qqwHyzuUl/XBnif78PWTJYyL/dfowQHWE3sp6U6ZzqWiiIZnpTMO96zhkjwtg==}
- engines: {node: '>=6.0.0'}
- dependencies:
- '@jridgewell/gen-mapping': 0.3.5
- '@jridgewell/trace-mapping': 0.3.25
+ '@algolia/transporter@4.24.0':
+ resolution: {integrity: sha512-86nI7w6NzWxd1Zp9q3413dRshDqAzSbsQjhcDhPIatEFiZrL1/TjnHL8S7jVKFePlIMzDsZWXAXwXzcok9c5oA==}
- /@ampproject/remapping/2.3.0:
+ '@ampproject/remapping@2.3.0':
resolution: {integrity: sha512-30iZtAPgz+LTIYoeivqYo853f02jBYSd5uGnGpkFV0M3xOt9aN73erkgYAmZU43x4VfqcnLxW9Kpg3R5LC4YYw==}
engines: {node: '>=6.0.0'}
- dependencies:
- '@jridgewell/gen-mapping': 0.3.5
- '@jridgewell/trace-mapping': 0.3.25
- dev: true
-
- /@apidevtools/openapi-schemas/2.1.0:
- resolution: {integrity: sha512-Zc1AlqrJlX3SlpupFGpiLi2EbteyP7fXmUOGup6/DnkRgjP9bgMM/ag+n91rsv0U1Gpz0H3VILA/o3bW7Ua6BQ==}
- engines: {node: '>=10'}
- dev: false
- /@apidevtools/swagger-methods/3.0.2:
+ '@apidevtools/swagger-methods@3.0.2':
resolution: {integrity: sha512-QAkD5kK2b1WfjDS/UQn/qQkbwF31uqRjPTrsCs5ZG9BQGAkjwvqGFjjPqAuzac/IYzpPtRzjCP1WrTuAIjMrXg==}
- dev: false
- /@apimatic/schema/0.6.0:
+ '@apimatic/schema@0.6.0':
resolution: {integrity: sha512-JgG32LQRLphHRWsn64vIt7wD2m+JH46swM6ZrY7g1rdiGiKV5m+A+TBrJKoUUQRmS14azMgePNZY30NauWqzLg==}
engines: {node: '>=10.4.0'}
- dependencies:
- tslib: 2.6.3
- dev: false
- /@aws-crypto/crc32/3.0.0:
+ '@aws-crypto/crc32@3.0.0':
resolution: {integrity: sha512-IzSgsrxUcsrejQbPVilIKy16kAT52EwB6zSaI+M3xxIhKh5+aldEyvI+z6erM7TCLB2BJsFrtHjp6/4/sr+3dA==}
- dependencies:
- '@aws-crypto/util': 3.0.0
- '@aws-sdk/types': 3.598.0
- tslib: 1.14.1
- dev: false
-
- /@aws-crypto/crc32c/3.0.0:
- resolution: {integrity: sha512-ENNPPManmnVJ4BTXlOjAgD7URidbAznURqD0KvfREyc4o20DPYdEldU1f5cQ7Jbj0CJJSPaMIk/9ZshdB3210w==}
- dependencies:
- '@aws-crypto/util': 3.0.0
- '@aws-sdk/types': 3.598.0
- tslib: 1.14.1
- dev: false
- /@aws-crypto/ie11-detection/3.0.0:
- resolution: {integrity: sha512-341lBBkiY1DfDNKai/wXM3aujNBkXR7tq1URPQDL9wi3AUbI80NR74uF1TXHMm7po1AcnFk8iu2S2IeU/+/A+Q==}
- dependencies:
- tslib: 1.14.1
- dev: false
+ '@aws-crypto/crc32@5.2.0':
+ resolution: {integrity: sha512-nLbCWqQNgUiwwtFsen1AdzAtvuLRsQS8rYgMuxCrdKf9kOssamGLuPwyTY9wyYblNr9+1XM8v6zoDTPPSIeANg==}
+ engines: {node: '>=16.0.0'}
- /@aws-crypto/sha1-browser/3.0.0:
- resolution: {integrity: sha512-NJth5c997GLHs6nOYTzFKTbYdMNA6/1XlKVgnZoaZcQ7z7UJlOgj2JdbHE8tiYLS3fzXNCguct77SPGat2raSw==}
- dependencies:
- '@aws-crypto/ie11-detection': 3.0.0
- '@aws-crypto/supports-web-crypto': 3.0.0
- '@aws-crypto/util': 3.0.0
- '@aws-sdk/types': 3.598.0
- '@aws-sdk/util-locate-window': 3.310.0
- '@aws-sdk/util-utf8-browser': 3.259.0
- tslib: 1.14.1
- dev: false
+ '@aws-crypto/crc32c@5.2.0':
+ resolution: {integrity: sha512-+iWb8qaHLYKrNvGRbiYRHSdKRWhto5XlZUEBwDjYNf+ly5SVYG6zEoYIdxvf5R3zyeP16w4PLBn3rH1xc74Rag==}
- /@aws-crypto/sha256-browser/3.0.0:
- resolution: {integrity: sha512-8VLmW2B+gjFbU5uMeqtQM6Nj0/F1bro80xQXCW6CQBWgosFWXTx77aeOF5CAIAmbOK64SdMBJdNr6J41yP5mvQ==}
- dependencies:
- '@aws-crypto/ie11-detection': 3.0.0
- '@aws-crypto/sha256-js': 3.0.0
- '@aws-crypto/supports-web-crypto': 3.0.0
- '@aws-crypto/util': 3.0.0
- '@aws-sdk/types': 3.418.0
- '@aws-sdk/util-locate-window': 3.310.0
- '@aws-sdk/util-utf8-browser': 3.259.0
- tslib: 1.14.1
- dev: false
+ '@aws-crypto/sha1-browser@5.2.0':
+ resolution: {integrity: sha512-OH6lveCFfcDjX4dbAvCFSYUjJZjDr/3XJ3xHtjn3Oj5b9RjojQo8npoLeA/bNwkOkrSQ0wgrHzXk4tDRxGKJeg==}
- /@aws-crypto/sha256-browser/5.2.0:
+ '@aws-crypto/sha256-browser@5.2.0':
resolution: {integrity: sha512-AXfN/lGotSQwu6HNcEsIASo7kWXZ5HYWvfOmSNKDsEqC4OashTp8alTmaz+F7TC2L083SFv5RdB+qU3Vs1kZqw==}
- dependencies:
- '@aws-crypto/sha256-js': 5.2.0
- '@aws-crypto/supports-web-crypto': 5.2.0
- '@aws-crypto/util': 5.2.0
- '@aws-sdk/types': 3.609.0
- '@aws-sdk/util-locate-window': 3.568.0
- '@smithy/util-utf8': 2.3.0
- tslib: 2.6.3
- dev: false
-
- /@aws-crypto/sha256-js/3.0.0:
- resolution: {integrity: sha512-PnNN7os0+yd1XvXAy23CFOmTbMaDxgxXtTKHybrJ39Y8kGzBATgBFibWJKH6BhytLI/Zyszs87xCOBNyBig6vQ==}
- dependencies:
- '@aws-crypto/util': 3.0.0
- '@aws-sdk/types': 3.418.0
- tslib: 1.14.1
- dev: false
- /@aws-crypto/sha256-js/5.2.0:
+ '@aws-crypto/sha256-js@5.2.0':
resolution: {integrity: sha512-FFQQyu7edu4ufvIZ+OadFpHHOt+eSTBaYaki44c+akjg7qZg9oOQeLlk77F6tSYqjDAFClrHJk9tMf0HdVyOvA==}
engines: {node: '>=16.0.0'}
- dependencies:
- '@aws-crypto/util': 5.2.0
- '@aws-sdk/types': 3.609.0
- tslib: 2.6.3
- dev: false
-
- /@aws-crypto/supports-web-crypto/3.0.0:
- resolution: {integrity: sha512-06hBdMwUAb2WFTuGG73LSC0wfPu93xWwo5vL2et9eymgmu3Id5vFAHBbajVWiGhPO37qcsdCap/FqXvJGJWPIg==}
- dependencies:
- tslib: 1.14.1
- dev: false
- /@aws-crypto/supports-web-crypto/5.2.0:
+ '@aws-crypto/supports-web-crypto@5.2.0':
resolution: {integrity: sha512-iAvUotm021kM33eCdNfwIN//F77/IADDSs58i+MDaOqFrVjZo9bAal0NK7HurRuWLLpF1iLX7gbWrjHjeo+YFg==}
- dependencies:
- tslib: 2.6.3
- dev: false
- /@aws-crypto/util/3.0.0:
+ '@aws-crypto/util@3.0.0':
resolution: {integrity: sha512-2OJlpeJpCR48CC8r+uKVChzs9Iungj9wkZrl8Z041DWEWvyIHILYKCPNzJghKsivj+S3mLo6BVc7mBNzdxA46w==}
- dependencies:
- '@aws-sdk/types': 3.598.0
- '@aws-sdk/util-utf8-browser': 3.259.0
- tslib: 1.14.1
- dev: false
- /@aws-crypto/util/5.2.0:
+ '@aws-crypto/util@5.2.0':
resolution: {integrity: sha512-4RkU9EsI6ZpBve5fseQlGNUWKMa1RLPQ1dnjnQoe07ldfIzcsGb5hC5W0Dm7u423KWzawlrpbjXBrXCEv9zazQ==}
- dependencies:
- '@aws-sdk/types': 3.609.0
- '@smithy/util-utf8': 2.3.0
- tslib: 2.6.3
- dev: false
- /@aws-sdk/client-cloudwatch-logs/3.423.0:
- resolution: {integrity: sha512-1HAuq7vvWsxI4vpanuTGnS/g9QgsdOXGfG0f2TSIosabi7n7ZcNtVf0cU3w+TAveitWC1WdK/Wgmwvd2F5CuJA==}
- engines: {node: '>=14.0.0'}
- dependencies:
- '@aws-crypto/sha256-browser': 3.0.0
- '@aws-crypto/sha256-js': 3.0.0
- '@aws-sdk/client-sts': 3.423.0
- '@aws-sdk/credential-provider-node': 3.423.0
- '@aws-sdk/middleware-host-header': 3.418.0
- '@aws-sdk/middleware-logger': 3.418.0
- '@aws-sdk/middleware-recursion-detection': 3.418.0
- '@aws-sdk/middleware-signing': 3.418.0
- '@aws-sdk/middleware-user-agent': 3.418.0
- '@aws-sdk/region-config-resolver': 3.418.0
- '@aws-sdk/types': 3.418.0
- '@aws-sdk/util-endpoints': 3.418.0
- '@aws-sdk/util-user-agent-browser': 3.418.0
- '@aws-sdk/util-user-agent-node': 3.418.0
- '@smithy/config-resolver': 2.2.0
- '@smithy/fetch-http-handler': 2.5.0
- '@smithy/hash-node': 2.2.0
- '@smithy/invalid-dependency': 2.2.0
- '@smithy/middleware-content-length': 2.2.0
- '@smithy/middleware-endpoint': 2.5.1
- '@smithy/middleware-retry': 2.3.1
- '@smithy/middleware-serde': 2.3.0
- '@smithy/middleware-stack': 2.2.0
- '@smithy/node-config-provider': 2.3.0
- '@smithy/node-http-handler': 2.5.0
- '@smithy/protocol-http': 3.3.0
- '@smithy/smithy-client': 2.5.1
- '@smithy/types': 2.12.0
- '@smithy/url-parser': 2.2.0
- '@smithy/util-base64': 2.3.0
- '@smithy/util-body-length-browser': 2.2.0
- '@smithy/util-body-length-node': 2.3.0
- '@smithy/util-defaults-mode-browser': 2.2.1
- '@smithy/util-defaults-mode-node': 2.3.1
- '@smithy/util-retry': 2.2.0
- '@smithy/util-utf8': 2.3.0
- tslib: 2.6.3
- uuid: 8.3.2
- transitivePeerDependencies:
- - aws-crt
- dev: false
+ '@aws-sdk/client-cloudwatch-logs@3.698.0':
+ resolution: {integrity: sha512-J15ND1U7q/3LgOIMVpj6KkKrjKaOcUSAA+nYAH8VUPUhGFpGOz2z7hcgkPysyg7exVy0s8fo/MZXMLxbd7u3uQ==}
+ engines: {node: '>=16.0.0'}
- /@aws-sdk/client-cognito-identity/3.600.0:
- resolution: {integrity: sha512-8dYsnDLiD0rjujRiZZl0E57heUkHqMSFZHBi0YMs57SM8ODPxK3tahwDYZtS7bqanvFKZwGy+o9jIcij7jBOlA==}
+ '@aws-sdk/client-cognito-identity@3.696.0':
+ resolution: {integrity: sha512-K+FovETWjiAjzwrN7niY31ZuUn3YqVGXwzNBdzr1Y/E7S/jaJTN0WrcsSsH9etI76qFUhtPmUCXXWfC+xEll3A==}
engines: {node: '>=16.0.0'}
- dependencies:
- '@aws-crypto/sha256-browser': 5.2.0
- '@aws-crypto/sha256-js': 5.2.0
- '@aws-sdk/client-sso-oidc': 3.600.0
- '@aws-sdk/client-sts': 3.600.0
- '@aws-sdk/core': 3.598.0
- '@aws-sdk/credential-provider-node': 3.600.0_f7n47caigsrjd2lr2szmwfuee4
- '@aws-sdk/middleware-host-header': 3.598.0
- '@aws-sdk/middleware-logger': 3.598.0
- '@aws-sdk/middleware-recursion-detection': 3.598.0
- '@aws-sdk/middleware-user-agent': 3.598.0
- '@aws-sdk/region-config-resolver': 3.598.0
- '@aws-sdk/types': 3.598.0
- '@aws-sdk/util-endpoints': 3.598.0
- '@aws-sdk/util-user-agent-browser': 3.598.0
- '@aws-sdk/util-user-agent-node': 3.598.0
- '@smithy/config-resolver': 3.0.3
- '@smithy/core': 2.2.3
- '@smithy/fetch-http-handler': 3.1.0
- '@smithy/hash-node': 3.0.2
- '@smithy/invalid-dependency': 3.0.2
- '@smithy/middleware-content-length': 3.0.2
- '@smithy/middleware-endpoint': 3.0.3
- '@smithy/middleware-retry': 3.0.6
- '@smithy/middleware-serde': 3.0.2
- '@smithy/middleware-stack': 3.0.2
- '@smithy/node-config-provider': 3.1.2
- '@smithy/node-http-handler': 3.1.0
- '@smithy/protocol-http': 4.0.2
- '@smithy/smithy-client': 3.1.4
- '@smithy/types': 3.2.0
- '@smithy/url-parser': 3.0.2
- '@smithy/util-base64': 3.0.0
- '@smithy/util-body-length-browser': 3.0.0
- '@smithy/util-body-length-node': 3.0.0
- '@smithy/util-defaults-mode-browser': 3.0.6
- '@smithy/util-defaults-mode-node': 3.0.6
- '@smithy/util-endpoints': 2.0.3
- '@smithy/util-middleware': 3.0.2
- '@smithy/util-retry': 3.0.2
- '@smithy/util-utf8': 3.0.0
- tslib: 2.6.3
- transitivePeerDependencies:
- - aws-crt
- dev: false
- /@aws-sdk/client-dynamodb-streams/3.423.0:
- resolution: {integrity: sha512-tkECIRckI3OL5Chq6S0rzrsBOw1wveSnksNKgJJNjK8aoua800FddPl9OBBPMXEvmbc8Qmbjb89sYacj0+WfiQ==}
- engines: {node: '>=14.0.0'}
- dependencies:
- '@aws-crypto/sha256-browser': 3.0.0
- '@aws-crypto/sha256-js': 3.0.0
- '@aws-sdk/client-sts': 3.423.0
- '@aws-sdk/credential-provider-node': 3.423.0
- '@aws-sdk/middleware-host-header': 3.418.0
- '@aws-sdk/middleware-logger': 3.418.0
- '@aws-sdk/middleware-recursion-detection': 3.418.0
- '@aws-sdk/middleware-signing': 3.418.0
- '@aws-sdk/middleware-user-agent': 3.418.0
- '@aws-sdk/region-config-resolver': 3.418.0
- '@aws-sdk/types': 3.418.0
- '@aws-sdk/util-endpoints': 3.418.0
- '@aws-sdk/util-user-agent-browser': 3.418.0
- '@aws-sdk/util-user-agent-node': 3.418.0
- '@smithy/config-resolver': 2.2.0
- '@smithy/fetch-http-handler': 2.5.0
- '@smithy/hash-node': 2.2.0
- '@smithy/invalid-dependency': 2.2.0
- '@smithy/middleware-content-length': 2.2.0
- '@smithy/middleware-endpoint': 2.5.1
- '@smithy/middleware-retry': 2.3.1
- '@smithy/middleware-serde': 2.3.0
- '@smithy/middleware-stack': 2.2.0
- '@smithy/node-config-provider': 2.3.0
- '@smithy/node-http-handler': 2.5.0
- '@smithy/protocol-http': 3.3.0
- '@smithy/smithy-client': 2.5.1
- '@smithy/types': 2.12.0
- '@smithy/url-parser': 2.2.0
- '@smithy/util-base64': 2.3.0
- '@smithy/util-body-length-browser': 2.2.0
- '@smithy/util-body-length-node': 2.3.0
- '@smithy/util-defaults-mode-browser': 2.2.1
- '@smithy/util-defaults-mode-node': 2.3.1
- '@smithy/util-retry': 2.2.0
- '@smithy/util-utf8': 2.3.0
- tslib: 2.6.3
- transitivePeerDependencies:
- - aws-crt
- dev: false
+ '@aws-sdk/client-dynamodb-streams@3.696.0':
+ resolution: {integrity: sha512-+98Fsbx8SLdparGJPlslPEk3Fu16gs0mnNt+lxwRJHjuBTYH9H7SpABGY/7dr77cZ8pNVqCiydQxsCLLBoLC5w==}
+ engines: {node: '>=16.0.0'}
- /@aws-sdk/client-dynamodb/3.423.0:
- resolution: {integrity: sha512-oEmgNjPbAclab9JL6Dej9iZTyoJRFxcOMBdz2juU5UwX8uzJ1S87bw/aWADBDM/50BfBHy3+phpkCLlSos/s/Q==}
- engines: {node: '>=14.0.0'}
- dependencies:
- '@aws-crypto/sha256-browser': 3.0.0
- '@aws-crypto/sha256-js': 3.0.0
- '@aws-sdk/client-sts': 3.423.0
- '@aws-sdk/credential-provider-node': 3.423.0
- '@aws-sdk/middleware-endpoint-discovery': 3.418.0
- '@aws-sdk/middleware-host-header': 3.418.0
- '@aws-sdk/middleware-logger': 3.418.0
- '@aws-sdk/middleware-recursion-detection': 3.418.0
- '@aws-sdk/middleware-signing': 3.418.0
- '@aws-sdk/middleware-user-agent': 3.418.0
- '@aws-sdk/region-config-resolver': 3.418.0
- '@aws-sdk/types': 3.418.0
- '@aws-sdk/util-endpoints': 3.418.0
- '@aws-sdk/util-user-agent-browser': 3.418.0
- '@aws-sdk/util-user-agent-node': 3.418.0
- '@smithy/config-resolver': 2.2.0
- '@smithy/fetch-http-handler': 2.5.0
- '@smithy/hash-node': 2.2.0
- '@smithy/invalid-dependency': 2.2.0
- '@smithy/middleware-content-length': 2.2.0
- '@smithy/middleware-endpoint': 2.5.1
- '@smithy/middleware-retry': 2.3.1
- '@smithy/middleware-serde': 2.3.0
- '@smithy/middleware-stack': 2.2.0
- '@smithy/node-config-provider': 2.3.0
- '@smithy/node-http-handler': 2.5.0
- '@smithy/protocol-http': 3.3.0
- '@smithy/smithy-client': 2.5.1
- '@smithy/types': 2.12.0
- '@smithy/url-parser': 2.2.0
- '@smithy/util-base64': 2.3.0
- '@smithy/util-body-length-browser': 2.2.0
- '@smithy/util-body-length-node': 2.3.0
- '@smithy/util-defaults-mode-browser': 2.2.1
- '@smithy/util-defaults-mode-node': 2.3.1
- '@smithy/util-retry': 2.2.0
- '@smithy/util-utf8': 2.3.0
- '@smithy/util-waiter': 2.2.0
- tslib: 2.6.3
- uuid: 8.3.2
- transitivePeerDependencies:
- - aws-crt
- dev: false
+ '@aws-sdk/client-dynamodb@3.696.0':
+ resolution: {integrity: sha512-Fv2Rqt9DmIWKbc7129zO+fb7YiXVzso28oaYWjqrwSF46rbpRbq9u4Vj+GjTx4go3xI0K3rFYbz2pAHricOCyA==}
+ engines: {node: '>=16.0.0'}
- /@aws-sdk/client-ec2/3.423.0:
- resolution: {integrity: sha512-FH6axw/YNzOtKxuPWr2v3LAvzZMtyDwhWtuYlLFmjqCe5kBhM+7+tMa4HKaoW40B7rp5iE5FqkiCn0PweNx9GQ==}
- engines: {node: '>=14.0.0'}
- dependencies:
- '@aws-crypto/sha256-browser': 3.0.0
- '@aws-crypto/sha256-js': 3.0.0
- '@aws-sdk/client-sts': 3.423.0
- '@aws-sdk/credential-provider-node': 3.423.0
- '@aws-sdk/middleware-host-header': 3.418.0
- '@aws-sdk/middleware-logger': 3.418.0
- '@aws-sdk/middleware-recursion-detection': 3.418.0
- '@aws-sdk/middleware-sdk-ec2': 3.423.0
- '@aws-sdk/middleware-signing': 3.418.0
- '@aws-sdk/middleware-user-agent': 3.418.0
- '@aws-sdk/region-config-resolver': 3.418.0
- '@aws-sdk/types': 3.418.0
- '@aws-sdk/util-endpoints': 3.418.0
- '@aws-sdk/util-user-agent-browser': 3.418.0
- '@aws-sdk/util-user-agent-node': 3.418.0
- '@smithy/config-resolver': 2.2.0
- '@smithy/fetch-http-handler': 2.5.0
- '@smithy/hash-node': 2.2.0
- '@smithy/invalid-dependency': 2.2.0
- '@smithy/middleware-content-length': 2.2.0
- '@smithy/middleware-endpoint': 2.5.1
- '@smithy/middleware-retry': 2.3.1
- '@smithy/middleware-serde': 2.3.0
- '@smithy/middleware-stack': 2.2.0
- '@smithy/node-config-provider': 2.3.0
- '@smithy/node-http-handler': 2.5.0
- '@smithy/protocol-http': 3.3.0
- '@smithy/smithy-client': 2.5.1
- '@smithy/types': 2.12.0
- '@smithy/url-parser': 2.2.0
- '@smithy/util-base64': 2.3.0
- '@smithy/util-body-length-browser': 2.2.0
- '@smithy/util-body-length-node': 2.3.0
- '@smithy/util-defaults-mode-browser': 2.2.1
- '@smithy/util-defaults-mode-node': 2.3.1
- '@smithy/util-retry': 2.2.0
- '@smithy/util-utf8': 2.3.0
- '@smithy/util-waiter': 2.2.0
- fast-xml-parser: 4.2.5
- tslib: 2.6.3
- uuid: 8.3.2
- transitivePeerDependencies:
- - aws-crt
- dev: false
+ '@aws-sdk/client-ec2@3.698.0':
+ resolution: {integrity: sha512-p2abxRjxBtU4l0gqRXcuXhhyJCqnASzhD3mJ1fAY8lhLlhuLugNUiqKJYlSVOrw2wH3DrCifLi9h9107/h8L7Q==}
+ engines: {node: '>=16.0.0'}
- /@aws-sdk/client-eventbridge/3.423.0:
- resolution: {integrity: sha512-VYxoB3/Js47Jzizovj6V9HRks2VvliEGztoT5i3SEk9OsxdIDOGhkY3skTZUDuPxLodYHAzD8QDnkHTvxvnWCQ==}
- engines: {node: '>=14.0.0'}
- dependencies:
- '@aws-crypto/sha256-browser': 3.0.0
- '@aws-crypto/sha256-js': 3.0.0
- '@aws-sdk/client-sts': 3.423.0
- '@aws-sdk/credential-provider-node': 3.423.0
- '@aws-sdk/middleware-host-header': 3.418.0
- '@aws-sdk/middleware-logger': 3.418.0
- '@aws-sdk/middleware-recursion-detection': 3.418.0
- '@aws-sdk/middleware-signing': 3.418.0
- '@aws-sdk/middleware-user-agent': 3.418.0
- '@aws-sdk/region-config-resolver': 3.418.0
- '@aws-sdk/signature-v4-multi-region': 3.418.0
- '@aws-sdk/types': 3.418.0
- '@aws-sdk/util-endpoints': 3.418.0
- '@aws-sdk/util-user-agent-browser': 3.418.0
- '@aws-sdk/util-user-agent-node': 3.418.0
- '@smithy/config-resolver': 2.2.0
- '@smithy/fetch-http-handler': 2.5.0
- '@smithy/hash-node': 2.2.0
- '@smithy/invalid-dependency': 2.2.0
- '@smithy/middleware-content-length': 2.2.0
- '@smithy/middleware-endpoint': 2.5.1
- '@smithy/middleware-retry': 2.3.1
- '@smithy/middleware-serde': 2.3.0
- '@smithy/middleware-stack': 2.2.0
- '@smithy/node-config-provider': 2.3.0
- '@smithy/node-http-handler': 2.5.0
- '@smithy/protocol-http': 3.3.0
- '@smithy/smithy-client': 2.5.1
- '@smithy/types': 2.12.0
- '@smithy/url-parser': 2.2.0
- '@smithy/util-base64': 2.3.0
- '@smithy/util-body-length-browser': 2.2.0
- '@smithy/util-body-length-node': 2.3.0
- '@smithy/util-defaults-mode-browser': 2.2.1
- '@smithy/util-defaults-mode-node': 2.3.1
- '@smithy/util-retry': 2.2.0
- '@smithy/util-utf8': 2.3.0
- tslib: 2.6.3
- transitivePeerDependencies:
- - aws-crt
- dev: false
+ '@aws-sdk/client-eventbridge@3.696.0':
+ resolution: {integrity: sha512-srBqlJO7ntkSBAxW1mDg6SUmF9g1Gq1gMbLdWO6zHGDDO1+UAHKZoAsBQAor/lXM9hyIU6JHknzJUyKxwkv1gg==}
+ engines: {node: '>=16.0.0'}
- /@aws-sdk/client-iam/3.423.0:
- resolution: {integrity: sha512-69awFx3lZcXTlWlUkHcn8XghPzdyqFjYhgKZSZlbW35DRApW6oySwTMmwevpaGB8Xdwi91jrGXXQfj0OuVQ/9w==}
- engines: {node: '>=14.0.0'}
- dependencies:
- '@aws-crypto/sha256-browser': 3.0.0
- '@aws-crypto/sha256-js': 3.0.0
- '@aws-sdk/client-sts': 3.423.0
- '@aws-sdk/credential-provider-node': 3.423.0
- '@aws-sdk/middleware-host-header': 3.418.0
- '@aws-sdk/middleware-logger': 3.418.0
- '@aws-sdk/middleware-recursion-detection': 3.418.0
- '@aws-sdk/middleware-signing': 3.418.0
- '@aws-sdk/middleware-user-agent': 3.418.0
- '@aws-sdk/region-config-resolver': 3.418.0
- '@aws-sdk/types': 3.418.0
- '@aws-sdk/util-endpoints': 3.418.0
- '@aws-sdk/util-user-agent-browser': 3.418.0
- '@aws-sdk/util-user-agent-node': 3.418.0
- '@smithy/config-resolver': 2.2.0
- '@smithy/fetch-http-handler': 2.5.0
- '@smithy/hash-node': 2.2.0
- '@smithy/invalid-dependency': 2.2.0
- '@smithy/middleware-content-length': 2.2.0
- '@smithy/middleware-endpoint': 2.5.1
- '@smithy/middleware-retry': 2.3.1
- '@smithy/middleware-serde': 2.3.0
- '@smithy/middleware-stack': 2.2.0
- '@smithy/node-config-provider': 2.3.0
- '@smithy/node-http-handler': 2.5.0
- '@smithy/protocol-http': 3.3.0
- '@smithy/smithy-client': 2.5.1
- '@smithy/types': 2.12.0
- '@smithy/url-parser': 2.2.0
- '@smithy/util-base64': 2.3.0
- '@smithy/util-body-length-browser': 2.2.0
- '@smithy/util-body-length-node': 2.3.0
- '@smithy/util-defaults-mode-browser': 2.2.1
- '@smithy/util-defaults-mode-node': 2.3.1
- '@smithy/util-retry': 2.2.0
- '@smithy/util-utf8': 2.3.0
- '@smithy/util-waiter': 2.2.0
- fast-xml-parser: 4.2.5
- tslib: 2.6.3
- transitivePeerDependencies:
- - aws-crt
- dev: false
+ '@aws-sdk/client-iam@3.696.0':
+ resolution: {integrity: sha512-iCenDAxRF6kRIhrS2oAnVUOXfl1eyUToz8g78wKoZosPh2UAYBfxQqki06ZL74Do5BbiIcX1iw9plsLYm1b8qg==}
+ engines: {node: '>=16.0.0'}
- /@aws-sdk/client-lambda/3.423.0:
- resolution: {integrity: sha512-/0YtEkqRwYcx/Bj96j9dIkoiXYbvaOED94INwx2GLSE9LSuUtqn1FMEp4Qg0sWyXEN06QktUq8bMGP28BBtluQ==}
- engines: {node: '>=14.0.0'}
- dependencies:
- '@aws-crypto/sha256-browser': 3.0.0
- '@aws-crypto/sha256-js': 3.0.0
- '@aws-sdk/client-sts': 3.423.0
- '@aws-sdk/credential-provider-node': 3.423.0
- '@aws-sdk/middleware-host-header': 3.418.0
- '@aws-sdk/middleware-logger': 3.418.0
- '@aws-sdk/middleware-recursion-detection': 3.418.0
- '@aws-sdk/middleware-signing': 3.418.0
- '@aws-sdk/middleware-user-agent': 3.418.0
- '@aws-sdk/region-config-resolver': 3.418.0
- '@aws-sdk/types': 3.418.0
- '@aws-sdk/util-endpoints': 3.418.0
- '@aws-sdk/util-user-agent-browser': 3.418.0
- '@aws-sdk/util-user-agent-node': 3.418.0
- '@smithy/config-resolver': 2.2.0
- '@smithy/eventstream-serde-browser': 2.0.10
- '@smithy/eventstream-serde-config-resolver': 2.0.10
- '@smithy/eventstream-serde-node': 2.0.10
- '@smithy/fetch-http-handler': 2.5.0
- '@smithy/hash-node': 2.2.0
- '@smithy/invalid-dependency': 2.2.0
- '@smithy/middleware-content-length': 2.2.0
- '@smithy/middleware-endpoint': 2.5.1
- '@smithy/middleware-retry': 2.3.1
- '@smithy/middleware-serde': 2.3.0
- '@smithy/middleware-stack': 2.2.0
- '@smithy/node-config-provider': 2.3.0
- '@smithy/node-http-handler': 2.5.0
- '@smithy/protocol-http': 3.3.0
- '@smithy/smithy-client': 2.5.1
- '@smithy/types': 2.12.0
- '@smithy/url-parser': 2.2.0
- '@smithy/util-base64': 2.3.0
- '@smithy/util-body-length-browser': 2.2.0
- '@smithy/util-body-length-node': 2.3.0
- '@smithy/util-defaults-mode-browser': 2.2.1
- '@smithy/util-defaults-mode-node': 2.3.1
- '@smithy/util-retry': 2.2.0
- '@smithy/util-stream': 2.2.0
- '@smithy/util-utf8': 2.3.0
- '@smithy/util-waiter': 2.2.0
- tslib: 2.6.3
- transitivePeerDependencies:
- - aws-crt
- dev: false
+ '@aws-sdk/client-lambda@3.698.0':
+ resolution: {integrity: sha512-59RFrbB0klHBMt6YWIdNLXWf9edHiktq4TnJd7ydLP6ah0irmH8q7KzOsE9g+D5xKULo2OzIm1ah+bjYQdOO4w==}
+ engines: {node: '>=16.0.0'}
- /@aws-sdk/client-rds/3.556.0:
- resolution: {integrity: sha512-7pQcXTTWP1BlZB5Yha3Rt3mlKHNUq0k/V9okdbJeqHB+MQndYK8Mb5Zq6+bijS4DiBOag8LiOLLOqZBp+1jI+g==}
- engines: {node: '>=14.0.0'}
- dependencies:
- '@aws-crypto/sha256-browser': 3.0.0
- '@aws-crypto/sha256-js': 3.0.0
- '@aws-sdk/client-sts': 3.556.0_44iqpmbeuswd4eyeepqjgvbfii
- '@aws-sdk/core': 3.556.0
- '@aws-sdk/credential-provider-node': 3.556.0
- '@aws-sdk/middleware-host-header': 3.535.0
- '@aws-sdk/middleware-logger': 3.535.0
- '@aws-sdk/middleware-recursion-detection': 3.535.0
- '@aws-sdk/middleware-sdk-rds': 3.556.0
- '@aws-sdk/middleware-user-agent': 3.540.0
- '@aws-sdk/region-config-resolver': 3.535.0
- '@aws-sdk/types': 3.535.0
- '@aws-sdk/util-endpoints': 3.540.0
- '@aws-sdk/util-user-agent-browser': 3.535.0
- '@aws-sdk/util-user-agent-node': 3.535.0
- '@smithy/config-resolver': 2.2.0
- '@smithy/core': 1.4.2
- '@smithy/fetch-http-handler': 2.5.0
- '@smithy/hash-node': 2.2.0
- '@smithy/invalid-dependency': 2.2.0
- '@smithy/middleware-content-length': 2.2.0
- '@smithy/middleware-endpoint': 2.5.1
- '@smithy/middleware-retry': 2.3.1
- '@smithy/middleware-serde': 2.3.0
- '@smithy/middleware-stack': 2.2.0
- '@smithy/node-config-provider': 2.3.0
- '@smithy/node-http-handler': 2.5.0
- '@smithy/protocol-http': 3.3.0
- '@smithy/smithy-client': 2.5.1
- '@smithy/types': 2.12.0
- '@smithy/url-parser': 2.2.0
- '@smithy/util-base64': 2.3.0
- '@smithy/util-body-length-browser': 2.2.0
- '@smithy/util-body-length-node': 2.3.0
- '@smithy/util-defaults-mode-browser': 2.2.1
- '@smithy/util-defaults-mode-node': 2.3.1
- '@smithy/util-endpoints': 1.2.0
- '@smithy/util-middleware': 2.2.0
- '@smithy/util-retry': 2.2.0
- '@smithy/util-utf8': 2.3.0
- '@smithy/util-waiter': 2.2.0
- tslib: 2.6.3
- transitivePeerDependencies:
- - aws-crt
- dev: false
+ '@aws-sdk/client-rds@3.697.0':
+ resolution: {integrity: sha512-rjZqCW+13bPbWMcOng3khGrZ+Hehsad+TEbFY620j7M7Pz09hYVA8VjzycAkBkeSmKFbCgq93W6JCUVpFQsyyg==}
+ engines: {node: '>=16.0.0'}
- /@aws-sdk/client-s3/3.423.0:
- resolution: {integrity: sha512-Sn/6fotTDGp+uUfPU0JrKszHT/cYwZonly6Ahi4R/uxASLQnOEAF7MwVSjms+/LGu72Qs0Tt7B7RKW76GI4OIA==}
- engines: {node: '>=14.0.0'}
- dependencies:
- '@aws-crypto/sha1-browser': 3.0.0
- '@aws-crypto/sha256-browser': 3.0.0
- '@aws-crypto/sha256-js': 3.0.0
- '@aws-sdk/client-sts': 3.423.0
- '@aws-sdk/credential-provider-node': 3.423.0
- '@aws-sdk/middleware-bucket-endpoint': 3.418.0
- '@aws-sdk/middleware-expect-continue': 3.418.0
- '@aws-sdk/middleware-flexible-checksums': 3.418.0
- '@aws-sdk/middleware-host-header': 3.418.0
- '@aws-sdk/middleware-location-constraint': 3.418.0
- '@aws-sdk/middleware-logger': 3.418.0
- '@aws-sdk/middleware-recursion-detection': 3.418.0
- '@aws-sdk/middleware-sdk-s3': 3.418.0
- '@aws-sdk/middleware-signing': 3.418.0
- '@aws-sdk/middleware-ssec': 3.418.0
- '@aws-sdk/middleware-user-agent': 3.418.0
- '@aws-sdk/region-config-resolver': 3.418.0
- '@aws-sdk/signature-v4-multi-region': 3.418.0
- '@aws-sdk/types': 3.418.0
- '@aws-sdk/util-endpoints': 3.418.0
- '@aws-sdk/util-user-agent-browser': 3.418.0
- '@aws-sdk/util-user-agent-node': 3.418.0
- '@aws-sdk/xml-builder': 3.310.0
- '@smithy/config-resolver': 2.0.11
- '@smithy/eventstream-serde-browser': 2.0.10
- '@smithy/eventstream-serde-config-resolver': 2.0.10
- '@smithy/eventstream-serde-node': 2.0.10
- '@smithy/fetch-http-handler': 2.2.1
- '@smithy/hash-blob-browser': 2.0.10
- '@smithy/hash-node': 2.0.10
- '@smithy/hash-stream-node': 2.0.10
- '@smithy/invalid-dependency': 2.0.10
- '@smithy/md5-js': 2.0.10
- '@smithy/middleware-content-length': 2.0.12
- '@smithy/middleware-endpoint': 2.0.10
- '@smithy/middleware-retry': 2.0.13
- '@smithy/middleware-serde': 2.0.10
- '@smithy/middleware-stack': 2.0.4
- '@smithy/node-config-provider': 2.0.13
- '@smithy/node-http-handler': 2.1.6
- '@smithy/protocol-http': 3.0.6
- '@smithy/smithy-client': 2.1.9
- '@smithy/types': 2.3.4
- '@smithy/url-parser': 2.0.10
- '@smithy/util-base64': 2.0.0
- '@smithy/util-body-length-browser': 2.0.0
- '@smithy/util-body-length-node': 2.1.0
- '@smithy/util-defaults-mode-browser': 2.0.13
- '@smithy/util-defaults-mode-node': 2.0.15
- '@smithy/util-retry': 2.0.3
- '@smithy/util-stream': 2.0.14
- '@smithy/util-utf8': 2.0.0
- '@smithy/util-waiter': 2.0.10
- fast-xml-parser: 4.2.5
- tslib: 2.6.2
- transitivePeerDependencies:
- - aws-crt
- dev: false
+ '@aws-sdk/client-s3@3.698.0':
+ resolution: {integrity: sha512-Upit6pmiCARsglbAw47Bh3c3Eg6MiL86x2dygiK2IW7SX2cIdpE+ITkR2KJf81F995Q4M1m47EHnfnS6J/rWeA==}
+ engines: {node: '>=16.0.0'}
- /@aws-sdk/client-sagemaker/3.602.0:
- resolution: {integrity: sha512-oAGIC5kKQnNcN0JAi9ZqV9Z8r+Vij3GK6N28flY8Fbl9Gs23H2WSDGA0t0bsjJCWRYqPm2RQXyJwyW64Kbd1GQ==}
+ '@aws-sdk/client-sagemaker@3.696.0':
+ resolution: {integrity: sha512-UwGzkUyy9GWxyn3KRk9il9gqj1bmt2zU3Vo1Sp4WLogrIppe13gvCMCmj+JzONG9F0EatlQ/tr+HrvRr4qkWaA==}
engines: {node: '>=16.0.0'}
- dependencies:
- '@aws-crypto/sha256-browser': 5.2.0
- '@aws-crypto/sha256-js': 5.2.0
- '@aws-sdk/client-sso-oidc': 3.600.0
- '@aws-sdk/client-sts': 3.600.0
- '@aws-sdk/core': 3.598.0
- '@aws-sdk/credential-provider-node': 3.600.0_f7n47caigsrjd2lr2szmwfuee4
- '@aws-sdk/middleware-host-header': 3.598.0
- '@aws-sdk/middleware-logger': 3.598.0
- '@aws-sdk/middleware-recursion-detection': 3.598.0
- '@aws-sdk/middleware-user-agent': 3.598.0
- '@aws-sdk/region-config-resolver': 3.598.0
- '@aws-sdk/types': 3.598.0
- '@aws-sdk/util-endpoints': 3.598.0
- '@aws-sdk/util-user-agent-browser': 3.598.0
- '@aws-sdk/util-user-agent-node': 3.598.0
- '@smithy/config-resolver': 3.0.3
- '@smithy/core': 2.2.3
- '@smithy/fetch-http-handler': 3.1.0
- '@smithy/hash-node': 3.0.2
- '@smithy/invalid-dependency': 3.0.2
- '@smithy/middleware-content-length': 3.0.2
- '@smithy/middleware-endpoint': 3.0.3
- '@smithy/middleware-retry': 3.0.6
- '@smithy/middleware-serde': 3.0.2
- '@smithy/middleware-stack': 3.0.2
- '@smithy/node-config-provider': 3.1.2
- '@smithy/node-http-handler': 3.1.0
- '@smithy/protocol-http': 4.0.2
- '@smithy/smithy-client': 3.1.4
- '@smithy/types': 3.2.0
- '@smithy/url-parser': 3.0.2
- '@smithy/util-base64': 3.0.0
- '@smithy/util-body-length-browser': 3.0.0
- '@smithy/util-body-length-node': 3.0.0
- '@smithy/util-defaults-mode-browser': 3.0.6
- '@smithy/util-defaults-mode-node': 3.0.6
- '@smithy/util-endpoints': 2.0.3
- '@smithy/util-middleware': 3.0.2
- '@smithy/util-retry': 3.0.2
- '@smithy/util-utf8': 3.0.0
- '@smithy/util-waiter': 3.1.1
- tslib: 2.6.3
- uuid: 9.0.1
- transitivePeerDependencies:
- - aws-crt
- dev: false
- /@aws-sdk/client-ses/3.423.0:
- resolution: {integrity: sha512-NJCOGviKNPdRtCOnFTDRpho6ovbscnDBzyLpohE45pWQT2uqGrbxuKzEMRHqX1hyl/oJ6LKcpJclDrb8EsMFwg==}
- engines: {node: '>=14.0.0'}
- dependencies:
- '@aws-crypto/sha256-browser': 3.0.0
- '@aws-crypto/sha256-js': 3.0.0
- '@aws-sdk/client-sts': 3.423.0
- '@aws-sdk/credential-provider-node': 3.423.0
- '@aws-sdk/middleware-host-header': 3.418.0
- '@aws-sdk/middleware-logger': 3.418.0
- '@aws-sdk/middleware-recursion-detection': 3.418.0
- '@aws-sdk/middleware-signing': 3.418.0
- '@aws-sdk/middleware-user-agent': 3.418.0
- '@aws-sdk/region-config-resolver': 3.418.0
- '@aws-sdk/types': 3.418.0
- '@aws-sdk/util-endpoints': 3.418.0
- '@aws-sdk/util-user-agent-browser': 3.418.0
- '@aws-sdk/util-user-agent-node': 3.418.0
- '@smithy/config-resolver': 2.2.0
- '@smithy/fetch-http-handler': 2.5.0
- '@smithy/hash-node': 2.2.0
- '@smithy/invalid-dependency': 2.2.0
- '@smithy/middleware-content-length': 2.2.0
- '@smithy/middleware-endpoint': 2.5.1
- '@smithy/middleware-retry': 2.3.1
- '@smithy/middleware-serde': 2.3.0
- '@smithy/middleware-stack': 2.2.0
- '@smithy/node-config-provider': 2.3.0
- '@smithy/node-http-handler': 2.5.0
- '@smithy/protocol-http': 3.3.0
- '@smithy/smithy-client': 2.5.1
- '@smithy/types': 2.12.0
- '@smithy/url-parser': 2.2.0
- '@smithy/util-base64': 2.3.0
- '@smithy/util-body-length-browser': 2.2.0
- '@smithy/util-body-length-node': 2.3.0
- '@smithy/util-defaults-mode-browser': 2.2.1
- '@smithy/util-defaults-mode-node': 2.3.1
- '@smithy/util-retry': 2.2.0
- '@smithy/util-utf8': 2.3.0
- '@smithy/util-waiter': 2.2.0
- fast-xml-parser: 4.2.5
- tslib: 2.6.3
- transitivePeerDependencies:
- - aws-crt
- dev: false
+ '@aws-sdk/client-ses@3.696.0':
+ resolution: {integrity: sha512-KyC/u+vorfLosRMZSAeBjeKY3gas1TbjqNhPaUUM3zK0YbtvZvifaS16D3gbzyVu6EVpzcFzZAXkCK709Jc8+g==}
+ engines: {node: '>=16.0.0'}
- /@aws-sdk/client-sesv2/3.423.0:
- resolution: {integrity: sha512-8I4d9lrq8FuxGzMemlJyQ5T1zEp4GUuel5OhavIN88yX4Md0g48iNGbgq2XZGTmfI65+syBxyVjnocIJGVIkFA==}
- engines: {node: '>=14.0.0'}
- dependencies:
- '@aws-crypto/sha256-browser': 3.0.0
- '@aws-crypto/sha256-js': 3.0.0
- '@aws-sdk/client-sts': 3.423.0
- '@aws-sdk/credential-provider-node': 3.423.0
- '@aws-sdk/middleware-host-header': 3.418.0
- '@aws-sdk/middleware-logger': 3.418.0
- '@aws-sdk/middleware-recursion-detection': 3.418.0
- '@aws-sdk/middleware-signing': 3.418.0
- '@aws-sdk/middleware-user-agent': 3.418.0
- '@aws-sdk/region-config-resolver': 3.418.0
- '@aws-sdk/types': 3.418.0
- '@aws-sdk/util-endpoints': 3.418.0
- '@aws-sdk/util-user-agent-browser': 3.418.0
- '@aws-sdk/util-user-agent-node': 3.418.0
- '@smithy/config-resolver': 2.0.11
- '@smithy/fetch-http-handler': 2.2.1
- '@smithy/hash-node': 2.0.10
- '@smithy/invalid-dependency': 2.0.10
- '@smithy/middleware-content-length': 2.0.12
- '@smithy/middleware-endpoint': 2.0.10
- '@smithy/middleware-retry': 2.0.13
- '@smithy/middleware-serde': 2.0.10
- '@smithy/middleware-stack': 2.0.4
- '@smithy/node-config-provider': 2.0.13
- '@smithy/node-http-handler': 2.1.6
- '@smithy/protocol-http': 3.0.6
- '@smithy/smithy-client': 2.1.9
- '@smithy/types': 2.3.4
- '@smithy/url-parser': 2.0.10
- '@smithy/util-base64': 2.0.0
- '@smithy/util-body-length-browser': 2.0.0
- '@smithy/util-body-length-node': 2.1.0
- '@smithy/util-defaults-mode-browser': 2.0.13
- '@smithy/util-defaults-mode-node': 2.0.15
- '@smithy/util-retry': 2.0.3
- '@smithy/util-utf8': 2.0.0
- tslib: 2.6.2
- transitivePeerDependencies:
- - aws-crt
- dev: false
+ '@aws-sdk/client-sesv2@3.696.0':
+ resolution: {integrity: sha512-HDsix7JdVZ5yyvVixp7xYnuqYUetDGc8u2ln/osqmArt5/QDXtEjm11VQgSky4+8cFcImIMIWrgt/om1BZ9oTA==}
+ engines: {node: '>=16.0.0'}
- /@aws-sdk/client-sfn/3.423.0:
- resolution: {integrity: sha512-yu/GrbuSE9VT//4/ZKqcYCo+SZluOc56XM3fcvzYPQCmyiVvjLcPdB9n1+PQg3BJCg6kaAgyGBK3/w9CqKKPiQ==}
- engines: {node: '>=14.0.0'}
- dependencies:
- '@aws-crypto/sha256-browser': 3.0.0
- '@aws-crypto/sha256-js': 3.0.0
- '@aws-sdk/client-sts': 3.423.0
- '@aws-sdk/credential-provider-node': 3.423.0
- '@aws-sdk/middleware-host-header': 3.418.0
- '@aws-sdk/middleware-logger': 3.418.0
- '@aws-sdk/middleware-recursion-detection': 3.418.0
- '@aws-sdk/middleware-signing': 3.418.0
- '@aws-sdk/middleware-user-agent': 3.418.0
- '@aws-sdk/region-config-resolver': 3.418.0
- '@aws-sdk/types': 3.418.0
- '@aws-sdk/util-endpoints': 3.418.0
- '@aws-sdk/util-user-agent-browser': 3.418.0
- '@aws-sdk/util-user-agent-node': 3.418.0
- '@smithy/config-resolver': 2.2.0
- '@smithy/fetch-http-handler': 2.5.0
- '@smithy/hash-node': 2.2.0
- '@smithy/invalid-dependency': 2.2.0
- '@smithy/middleware-content-length': 2.2.0
- '@smithy/middleware-endpoint': 2.5.1
- '@smithy/middleware-retry': 2.3.1
- '@smithy/middleware-serde': 2.3.0
- '@smithy/middleware-stack': 2.2.0
- '@smithy/node-config-provider': 2.3.0
- '@smithy/node-http-handler': 2.5.0
- '@smithy/protocol-http': 3.3.0
- '@smithy/smithy-client': 2.5.1
- '@smithy/types': 2.12.0
- '@smithy/url-parser': 2.2.0
- '@smithy/util-base64': 2.3.0
- '@smithy/util-body-length-browser': 2.2.0
- '@smithy/util-body-length-node': 2.3.0
- '@smithy/util-defaults-mode-browser': 2.2.1
- '@smithy/util-defaults-mode-node': 2.3.1
- '@smithy/util-retry': 2.2.0
- '@smithy/util-utf8': 2.3.0
- tslib: 2.6.3
- transitivePeerDependencies:
- - aws-crt
- dev: false
+ '@aws-sdk/client-sfn@3.696.0':
+ resolution: {integrity: sha512-K8GhxT6y4k/2BQfxmvZKH4cvIFiGuv71vKL6qZGJviETByV5+g0yRUpp6fjCV+LAY83QHxDgVloc0QDxCuPQfA==}
+ engines: {node: '>=16.0.0'}
- /@aws-sdk/client-sns/3.423.0:
- resolution: {integrity: sha512-j/s3d7xRvP2OhFpIl4W2PKpu+Ace4Qtfx4p0LEMRFaoJDc1KNZHxQ+zORTTdHzPB246YIRnC7JEu10aHZJorig==}
- engines: {node: '>=14.0.0'}
- dependencies:
- '@aws-crypto/sha256-browser': 3.0.0
- '@aws-crypto/sha256-js': 3.0.0
- '@aws-sdk/client-sts': 3.423.0
- '@aws-sdk/credential-provider-node': 3.423.0
- '@aws-sdk/middleware-host-header': 3.418.0
- '@aws-sdk/middleware-logger': 3.418.0
- '@aws-sdk/middleware-recursion-detection': 3.418.0
- '@aws-sdk/middleware-signing': 3.418.0
- '@aws-sdk/middleware-user-agent': 3.418.0
- '@aws-sdk/region-config-resolver': 3.418.0
- '@aws-sdk/types': 3.418.0
- '@aws-sdk/util-endpoints': 3.418.0
- '@aws-sdk/util-user-agent-browser': 3.418.0
- '@aws-sdk/util-user-agent-node': 3.418.0
- '@smithy/config-resolver': 2.2.0
- '@smithy/fetch-http-handler': 2.5.0
- '@smithy/hash-node': 2.2.0
- '@smithy/invalid-dependency': 2.2.0
- '@smithy/middleware-content-length': 2.2.0
- '@smithy/middleware-endpoint': 2.5.1
- '@smithy/middleware-retry': 2.3.1
- '@smithy/middleware-serde': 2.3.0
- '@smithy/middleware-stack': 2.2.0
- '@smithy/node-config-provider': 2.3.0
- '@smithy/node-http-handler': 2.5.0
- '@smithy/protocol-http': 3.3.0
- '@smithy/smithy-client': 2.5.1
- '@smithy/types': 2.12.0
- '@smithy/url-parser': 2.2.0
- '@smithy/util-base64': 2.3.0
- '@smithy/util-body-length-browser': 2.2.0
- '@smithy/util-body-length-node': 2.3.0
- '@smithy/util-defaults-mode-browser': 2.2.1
- '@smithy/util-defaults-mode-node': 2.3.1
- '@smithy/util-retry': 2.2.0
- '@smithy/util-utf8': 2.3.0
- fast-xml-parser: 4.2.5
- tslib: 2.6.3
- transitivePeerDependencies:
- - aws-crt
- dev: false
+ '@aws-sdk/client-sns@3.696.0':
+ resolution: {integrity: sha512-6Kjm5e/ZeNpWZP0TohiPQMrhsMIVxHaIuzwtq6OOOrPwuARMccGYpT4Mt1Xco0FY2oXCaAsoQoINTSRqn2kcEQ==}
+ engines: {node: '>=16.0.0'}
- /@aws-sdk/client-sqs/3.423.0:
- resolution: {integrity: sha512-U4xA93ds3Is98e5i2LawoM1HIaxwBS0lXIFazGJqYt/wdpA/NZVsRKr8HXaCteqgjkXJrPFkHi8HOHhDXy93YA==}
- engines: {node: '>=14.0.0'}
- dependencies:
- '@aws-crypto/sha256-browser': 3.0.0
- '@aws-crypto/sha256-js': 3.0.0
- '@aws-sdk/client-sts': 3.423.0
- '@aws-sdk/credential-provider-node': 3.423.0
- '@aws-sdk/middleware-host-header': 3.418.0
- '@aws-sdk/middleware-logger': 3.418.0
- '@aws-sdk/middleware-recursion-detection': 3.418.0
- '@aws-sdk/middleware-sdk-sqs': 3.418.0
- '@aws-sdk/middleware-signing': 3.418.0
- '@aws-sdk/middleware-user-agent': 3.418.0
- '@aws-sdk/region-config-resolver': 3.418.0
- '@aws-sdk/types': 3.418.0
- '@aws-sdk/util-endpoints': 3.418.0
- '@aws-sdk/util-user-agent-browser': 3.418.0
- '@aws-sdk/util-user-agent-node': 3.418.0
- '@smithy/config-resolver': 2.2.0
- '@smithy/fetch-http-handler': 2.5.0
- '@smithy/hash-node': 2.2.0
- '@smithy/invalid-dependency': 2.2.0
- '@smithy/md5-js': 2.0.10
- '@smithy/middleware-content-length': 2.2.0
- '@smithy/middleware-endpoint': 2.5.1
- '@smithy/middleware-retry': 2.3.1
- '@smithy/middleware-serde': 2.3.0
- '@smithy/middleware-stack': 2.2.0
- '@smithy/node-config-provider': 2.3.0
- '@smithy/node-http-handler': 2.5.0
- '@smithy/protocol-http': 3.3.0
- '@smithy/smithy-client': 2.5.1
- '@smithy/types': 2.12.0
- '@smithy/url-parser': 2.2.0
- '@smithy/util-base64': 2.3.0
- '@smithy/util-body-length-browser': 2.2.0
- '@smithy/util-body-length-node': 2.3.0
- '@smithy/util-defaults-mode-browser': 2.2.1
- '@smithy/util-defaults-mode-node': 2.3.1
- '@smithy/util-retry': 2.2.0
- '@smithy/util-utf8': 2.3.0
- fast-xml-parser: 4.2.5
- tslib: 2.6.3
- transitivePeerDependencies:
- - aws-crt
- dev: false
+ '@aws-sdk/client-sqs@3.696.0':
+ resolution: {integrity: sha512-9Q3x9sGv6qyRjI+cG19oIw3xJblHpGaWm1M3m8AsIycmfAV8bcsUcTNKkeaHFPEOVuhQHF4tgIJ5hJm+nUACCA==}
+ engines: {node: '>=16.0.0'}
- /@aws-sdk/client-ssm/3.423.0:
- resolution: {integrity: sha512-J3oHmvS4ZXB2eVLfri6dvsPR2PVFpzPni4imukzzVWH0O5fH1omI8LBDGyS6jef0XQyzKvES/NuZfnLzct+Jig==}
- engines: {node: '>=14.0.0'}
- dependencies:
- '@aws-crypto/sha256-browser': 3.0.0
- '@aws-crypto/sha256-js': 3.0.0
- '@aws-sdk/client-sts': 3.423.0
- '@aws-sdk/credential-provider-node': 3.423.0
- '@aws-sdk/middleware-host-header': 3.418.0
- '@aws-sdk/middleware-logger': 3.418.0
- '@aws-sdk/middleware-recursion-detection': 3.418.0
- '@aws-sdk/middleware-signing': 3.418.0
- '@aws-sdk/middleware-user-agent': 3.418.0
- '@aws-sdk/region-config-resolver': 3.418.0
- '@aws-sdk/types': 3.418.0
- '@aws-sdk/util-endpoints': 3.418.0
- '@aws-sdk/util-user-agent-browser': 3.418.0
- '@aws-sdk/util-user-agent-node': 3.418.0
- '@smithy/config-resolver': 2.2.0
- '@smithy/fetch-http-handler': 2.5.0
- '@smithy/hash-node': 2.2.0
- '@smithy/invalid-dependency': 2.2.0
- '@smithy/middleware-content-length': 2.2.0
- '@smithy/middleware-endpoint': 2.5.1
- '@smithy/middleware-retry': 2.3.1
- '@smithy/middleware-serde': 2.3.0
- '@smithy/middleware-stack': 2.2.0
- '@smithy/node-config-provider': 2.3.0
- '@smithy/node-http-handler': 2.5.0
- '@smithy/protocol-http': 3.3.0
- '@smithy/smithy-client': 2.5.1
- '@smithy/types': 2.12.0
- '@smithy/url-parser': 2.2.0
- '@smithy/util-base64': 2.3.0
- '@smithy/util-body-length-browser': 2.2.0
- '@smithy/util-body-length-node': 2.3.0
- '@smithy/util-defaults-mode-browser': 2.2.1
- '@smithy/util-defaults-mode-node': 2.3.1
- '@smithy/util-retry': 2.2.0
- '@smithy/util-utf8': 2.3.0
- '@smithy/util-waiter': 2.2.0
- tslib: 2.6.3
- uuid: 8.3.2
- transitivePeerDependencies:
- - aws-crt
- dev: false
+ '@aws-sdk/client-ssm@3.698.0':
+ resolution: {integrity: sha512-/Lf8rH2/6dDasqJiPuK2fRhLuC0Tm9eFJMWB911FumOHG8Wzp5ceDnCdzeVrAlWHsB2o+ouZ3+lk3r4HLZMTFg==}
+ engines: {node: '>=16.0.0'}
- /@aws-sdk/client-sso-oidc/3.556.0_44iqpmbeuswd4eyeepqjgvbfii:
- resolution: {integrity: sha512-AXKd2TB6nNrksu+OfmHl8uI07PdgzOo4o8AxoRO8SHlwoMAGvcT9optDGVSYoVfgOKTymCoE7h8/UoUfPc11wQ==}
- engines: {node: '>=14.0.0'}
+ '@aws-sdk/client-sso-oidc@3.696.0':
+ resolution: {integrity: sha512-ikxQ3mo86d1mAq5zTaQAh8rLBERwL+I4MUYu/IVYW2hhl9J2SDsl0SgnKeXQG6S8zWuHcBO587zsZaRta1MQ/g==}
+ engines: {node: '>=16.0.0'}
peerDependencies:
- '@aws-sdk/credential-provider-node': ^3.556.0
- dependencies:
- '@aws-crypto/sha256-browser': 3.0.0
- '@aws-crypto/sha256-js': 3.0.0
- '@aws-sdk/client-sts': 3.556.0_44iqpmbeuswd4eyeepqjgvbfii
- '@aws-sdk/core': 3.556.0
- '@aws-sdk/credential-provider-node': 3.556.0
- '@aws-sdk/middleware-host-header': 3.535.0
- '@aws-sdk/middleware-logger': 3.535.0
- '@aws-sdk/middleware-recursion-detection': 3.535.0
- '@aws-sdk/middleware-user-agent': 3.540.0
- '@aws-sdk/region-config-resolver': 3.535.0
- '@aws-sdk/types': 3.535.0
- '@aws-sdk/util-endpoints': 3.540.0
- '@aws-sdk/util-user-agent-browser': 3.535.0
- '@aws-sdk/util-user-agent-node': 3.535.0
- '@smithy/config-resolver': 2.2.0
- '@smithy/core': 1.4.2
- '@smithy/fetch-http-handler': 2.5.0
- '@smithy/hash-node': 2.2.0
- '@smithy/invalid-dependency': 2.2.0
- '@smithy/middleware-content-length': 2.2.0
- '@smithy/middleware-endpoint': 2.5.1
- '@smithy/middleware-retry': 2.3.1
- '@smithy/middleware-serde': 2.3.0
- '@smithy/middleware-stack': 2.2.0
- '@smithy/node-config-provider': 2.3.0
- '@smithy/node-http-handler': 2.5.0
- '@smithy/protocol-http': 3.3.0
- '@smithy/smithy-client': 2.5.1
- '@smithy/types': 2.12.0
- '@smithy/url-parser': 2.2.0
- '@smithy/util-base64': 2.3.0
- '@smithy/util-body-length-browser': 2.2.0
- '@smithy/util-body-length-node': 2.3.0
- '@smithy/util-defaults-mode-browser': 2.2.1
- '@smithy/util-defaults-mode-node': 2.3.1
- '@smithy/util-endpoints': 1.2.0
- '@smithy/util-middleware': 2.2.0
- '@smithy/util-retry': 2.2.0
- '@smithy/util-utf8': 2.3.0
- tslib: 2.6.3
- transitivePeerDependencies:
- - aws-crt
- dev: false
+ '@aws-sdk/client-sts': ^3.696.0
- /@aws-sdk/client-sso-oidc/3.600.0:
- resolution: {integrity: sha512-7+I8RWURGfzvChyNQSyj5/tKrqRbzRl7H+BnTOf/4Vsw1nFOi5ROhlhD4X/Y0QCTacxnaoNcIrqnY7uGGvVRzw==}
+ '@aws-sdk/client-sso@3.696.0':
+ resolution: {integrity: sha512-q5TTkd08JS0DOkHfUL853tuArf7NrPeqoS5UOvqJho8ibV9Ak/a/HO4kNvy9Nj3cib/toHYHsQIEtecUPSUUrQ==}
engines: {node: '>=16.0.0'}
- dependencies:
- '@aws-crypto/sha256-browser': 5.2.0
- '@aws-crypto/sha256-js': 5.2.0
- '@aws-sdk/client-sts': 3.600.0
- '@aws-sdk/core': 3.598.0
- '@aws-sdk/credential-provider-node': 3.600.0_f7n47caigsrjd2lr2szmwfuee4
- '@aws-sdk/middleware-host-header': 3.598.0
- '@aws-sdk/middleware-logger': 3.598.0
- '@aws-sdk/middleware-recursion-detection': 3.598.0
- '@aws-sdk/middleware-user-agent': 3.598.0
- '@aws-sdk/region-config-resolver': 3.598.0
- '@aws-sdk/types': 3.598.0
- '@aws-sdk/util-endpoints': 3.598.0
- '@aws-sdk/util-user-agent-browser': 3.598.0
- '@aws-sdk/util-user-agent-node': 3.598.0
- '@smithy/config-resolver': 3.0.3
- '@smithy/core': 2.2.3
- '@smithy/fetch-http-handler': 3.2.1
- '@smithy/hash-node': 3.0.2
- '@smithy/invalid-dependency': 3.0.2
- '@smithy/middleware-content-length': 3.0.2
- '@smithy/middleware-endpoint': 3.0.4
- '@smithy/middleware-retry': 3.0.6
- '@smithy/middleware-serde': 3.0.3
- '@smithy/middleware-stack': 3.0.3
- '@smithy/node-config-provider': 3.1.3
- '@smithy/node-http-handler': 3.1.2
- '@smithy/protocol-http': 4.0.3
- '@smithy/smithy-client': 3.1.6
- '@smithy/types': 3.3.0
- '@smithy/url-parser': 3.0.3
- '@smithy/util-base64': 3.0.0
- '@smithy/util-body-length-browser': 3.0.0
- '@smithy/util-body-length-node': 3.0.0
- '@smithy/util-defaults-mode-browser': 3.0.6
- '@smithy/util-defaults-mode-node': 3.0.6
- '@smithy/util-endpoints': 2.0.3
- '@smithy/util-middleware': 3.0.3
- '@smithy/util-retry': 3.0.2
- '@smithy/util-utf8': 3.0.0
- tslib: 2.6.3
- transitivePeerDependencies:
- - aws-crt
- dev: false
- /@aws-sdk/client-sso/3.423.0:
- resolution: {integrity: sha512-znIufHkwhCIePgaYciIs3x/+BpzR57CZzbCKHR9+oOvGyufEPPpUT5bFLvbwTgfiVkTjuk6sG/ES3U5Bc+xtrA==}
- engines: {node: '>=14.0.0'}
- dependencies:
- '@aws-crypto/sha256-browser': 3.0.0
- '@aws-crypto/sha256-js': 3.0.0
- '@aws-sdk/middleware-host-header': 3.418.0
- '@aws-sdk/middleware-logger': 3.418.0
- '@aws-sdk/middleware-recursion-detection': 3.418.0
- '@aws-sdk/middleware-user-agent': 3.418.0
- '@aws-sdk/region-config-resolver': 3.418.0
- '@aws-sdk/types': 3.418.0
- '@aws-sdk/util-endpoints': 3.418.0
- '@aws-sdk/util-user-agent-browser': 3.418.0
- '@aws-sdk/util-user-agent-node': 3.418.0
- '@smithy/config-resolver': 2.2.0
- '@smithy/fetch-http-handler': 2.5.0
- '@smithy/hash-node': 2.2.0
- '@smithy/invalid-dependency': 2.2.0
- '@smithy/middleware-content-length': 2.2.0
- '@smithy/middleware-endpoint': 2.5.1
- '@smithy/middleware-retry': 2.3.1
- '@smithy/middleware-serde': 2.3.0
- '@smithy/middleware-stack': 2.2.0
- '@smithy/node-config-provider': 2.3.0
- '@smithy/node-http-handler': 2.5.0
- '@smithy/protocol-http': 3.3.0
- '@smithy/smithy-client': 2.5.1
- '@smithy/types': 2.12.0
- '@smithy/url-parser': 2.2.0
- '@smithy/util-base64': 2.3.0
- '@smithy/util-body-length-browser': 2.2.0
- '@smithy/util-body-length-node': 2.3.0
- '@smithy/util-defaults-mode-browser': 2.2.1
- '@smithy/util-defaults-mode-node': 2.3.1
- '@smithy/util-retry': 2.2.0
- '@smithy/util-utf8': 2.3.0
- tslib: 2.6.3
- transitivePeerDependencies:
- - aws-crt
- dev: false
+ '@aws-sdk/client-sts@3.696.0':
+ resolution: {integrity: sha512-eJOxR8/UyI7kGSRyE751Ea7MKEzllQs7eNveDJy9OP4t/jsN/P19HJ1YHeA1np40JRTUBfqa6WLAAiIXsk8rkg==}
+ engines: {node: '>=16.0.0'}
- /@aws-sdk/client-sso/3.556.0:
- resolution: {integrity: sha512-unXdWS7uvHqCcOyC1de+Fr8m3F2vMg2m24GPea0bg7rVGTYmiyn9mhUX11VCt+ozydrw+F50FQwL6OqoqPocmw==}
- engines: {node: '>=14.0.0'}
- dependencies:
- '@aws-crypto/sha256-browser': 3.0.0
- '@aws-crypto/sha256-js': 3.0.0
- '@aws-sdk/core': 3.556.0
- '@aws-sdk/middleware-host-header': 3.535.0
- '@aws-sdk/middleware-logger': 3.535.0
- '@aws-sdk/middleware-recursion-detection': 3.535.0
- '@aws-sdk/middleware-user-agent': 3.540.0
- '@aws-sdk/region-config-resolver': 3.535.0
- '@aws-sdk/types': 3.535.0
- '@aws-sdk/util-endpoints': 3.540.0
- '@aws-sdk/util-user-agent-browser': 3.535.0
- '@aws-sdk/util-user-agent-node': 3.535.0
- '@smithy/config-resolver': 2.2.0
- '@smithy/core': 1.4.2
- '@smithy/fetch-http-handler': 2.5.0
- '@smithy/hash-node': 2.2.0
- '@smithy/invalid-dependency': 2.2.0
- '@smithy/middleware-content-length': 2.2.0
- '@smithy/middleware-endpoint': 2.5.1
- '@smithy/middleware-retry': 2.3.1
- '@smithy/middleware-serde': 2.3.0
- '@smithy/middleware-stack': 2.2.0
- '@smithy/node-config-provider': 2.3.0
- '@smithy/node-http-handler': 2.5.0
- '@smithy/protocol-http': 3.3.0
- '@smithy/smithy-client': 2.5.1
- '@smithy/types': 2.12.0
- '@smithy/url-parser': 2.2.0
- '@smithy/util-base64': 2.3.0
- '@smithy/util-body-length-browser': 2.2.0
- '@smithy/util-body-length-node': 2.3.0
- '@smithy/util-defaults-mode-browser': 2.2.1
- '@smithy/util-defaults-mode-node': 2.3.1
- '@smithy/util-endpoints': 1.2.0
- '@smithy/util-middleware': 2.2.0
- '@smithy/util-retry': 2.2.0
- '@smithy/util-utf8': 2.3.0
- tslib: 2.6.3
- transitivePeerDependencies:
- - aws-crt
- dev: false
+ '@aws-sdk/core@3.696.0':
+ resolution: {integrity: sha512-3c9III1k03DgvRZWg8vhVmfIXPG6hAciN9MzQTzqGngzWAELZF/WONRTRQuDFixVtarQatmLHYVw/atGeA2Byw==}
+ engines: {node: '>=16.0.0'}
- /@aws-sdk/client-sso/3.598.0:
- resolution: {integrity: sha512-nOI5lqPYa+YZlrrzwAJywJSw3MKVjvu6Ge2fCqQUNYMfxFB0NAaDFnl0EPjXi+sEbtCuz/uWE77poHbqiZ+7Iw==}
+ '@aws-sdk/credential-provider-cognito-identity@3.696.0':
+ resolution: {integrity: sha512-MUSDXuISfKNICkxvXEcF4G9w3eb5KrqjQnRd8TuFTuw6ksk3JZFx99LZadOIPBqIAKi7AESNZsqD93vE+F/d3g==}
engines: {node: '>=16.0.0'}
- dependencies:
- '@aws-crypto/sha256-browser': 5.2.0
- '@aws-crypto/sha256-js': 5.2.0
- '@aws-sdk/core': 3.598.0
- '@aws-sdk/middleware-host-header': 3.598.0
- '@aws-sdk/middleware-logger': 3.598.0
- '@aws-sdk/middleware-recursion-detection': 3.598.0
- '@aws-sdk/middleware-user-agent': 3.598.0
- '@aws-sdk/region-config-resolver': 3.598.0
- '@aws-sdk/types': 3.598.0
- '@aws-sdk/util-endpoints': 3.598.0
- '@aws-sdk/util-user-agent-browser': 3.598.0
- '@aws-sdk/util-user-agent-node': 3.598.0
- '@smithy/config-resolver': 3.0.3
- '@smithy/core': 2.2.3
- '@smithy/fetch-http-handler': 3.2.1
- '@smithy/hash-node': 3.0.2
- '@smithy/invalid-dependency': 3.0.2
- '@smithy/middleware-content-length': 3.0.2
- '@smithy/middleware-endpoint': 3.0.4
- '@smithy/middleware-retry': 3.0.6
- '@smithy/middleware-serde': 3.0.3
- '@smithy/middleware-stack': 3.0.3
- '@smithy/node-config-provider': 3.1.3
- '@smithy/node-http-handler': 3.1.2
- '@smithy/protocol-http': 4.0.3
- '@smithy/smithy-client': 3.1.6
- '@smithy/types': 3.3.0
- '@smithy/url-parser': 3.0.3
- '@smithy/util-base64': 3.0.0
- '@smithy/util-body-length-browser': 3.0.0
- '@smithy/util-body-length-node': 3.0.0
- '@smithy/util-defaults-mode-browser': 3.0.6
- '@smithy/util-defaults-mode-node': 3.0.6
- '@smithy/util-endpoints': 2.0.3
- '@smithy/util-middleware': 3.0.3
- '@smithy/util-retry': 3.0.2
- '@smithy/util-utf8': 3.0.0
- tslib: 2.6.3
- transitivePeerDependencies:
- - aws-crt
- dev: false
- /@aws-sdk/client-sts/3.423.0:
- resolution: {integrity: sha512-EcpkKu02QZbRX6dQE0u7a8RgWrn/5riz1qAlKd7rM8FZJpr/D6GGX8ZzWxjgp7pRUgfNvinTmIudDnyQY3v9Mg==}
- engines: {node: '>=14.0.0'}
- dependencies:
- '@aws-crypto/sha256-browser': 3.0.0
- '@aws-crypto/sha256-js': 3.0.0
- '@aws-sdk/credential-provider-node': 3.423.0
- '@aws-sdk/middleware-host-header': 3.418.0
- '@aws-sdk/middleware-logger': 3.418.0
- '@aws-sdk/middleware-recursion-detection': 3.418.0
- '@aws-sdk/middleware-sdk-sts': 3.418.0
- '@aws-sdk/middleware-signing': 3.418.0
- '@aws-sdk/middleware-user-agent': 3.418.0
- '@aws-sdk/region-config-resolver': 3.418.0
- '@aws-sdk/types': 3.418.0
- '@aws-sdk/util-endpoints': 3.418.0
- '@aws-sdk/util-user-agent-browser': 3.418.0
- '@aws-sdk/util-user-agent-node': 3.418.0
- '@smithy/config-resolver': 2.0.11
- '@smithy/fetch-http-handler': 2.2.1
- '@smithy/hash-node': 2.0.10
- '@smithy/invalid-dependency': 2.0.10
- '@smithy/middleware-content-length': 2.0.12
- '@smithy/middleware-endpoint': 2.5.1
- '@smithy/middleware-retry': 2.0.13
- '@smithy/middleware-serde': 2.3.0
- '@smithy/middleware-stack': 2.2.0
- '@smithy/node-config-provider': 2.3.0
- '@smithy/node-http-handler': 2.1.6
- '@smithy/protocol-http': 3.3.0
- '@smithy/smithy-client': 2.5.1
- '@smithy/types': 2.12.0
- '@smithy/url-parser': 2.2.0
- '@smithy/util-base64': 2.0.0
- '@smithy/util-body-length-browser': 2.0.0
- '@smithy/util-body-length-node': 2.1.0
- '@smithy/util-defaults-mode-browser': 2.0.13
- '@smithy/util-defaults-mode-node': 2.0.15
- '@smithy/util-retry': 2.0.3
- '@smithy/util-utf8': 2.0.0
- fast-xml-parser: 4.2.5
- tslib: 2.6.3
- transitivePeerDependencies:
- - aws-crt
- dev: false
+ '@aws-sdk/credential-provider-env@3.696.0':
+ resolution: {integrity: sha512-T9iMFnJL7YTlESLpVFT3fg1Lkb1lD+oiaIC8KMpepb01gDUBIpj9+Y+pA/cgRWW0yRxmkDXNazAE2qQTVFGJzA==}
+ engines: {node: '>=16.0.0'}
- /@aws-sdk/client-sts/3.556.0_44iqpmbeuswd4eyeepqjgvbfii:
- resolution: {integrity: sha512-TsK3js7Suh9xEmC886aY+bv0KdLLYtzrcmVt6sJ/W6EnDXYQhBuKYFhp03NrN2+vSvMGpqJwR62DyfKe1G0QzQ==}
- engines: {node: '>=14.0.0'}
+ '@aws-sdk/credential-provider-http@3.696.0':
+ resolution: {integrity: sha512-GV6EbvPi2eq1+WgY/o2RFA3P7HGmnkIzCNmhwtALFlqMroLYWKE7PSeHw66Uh1dFQeVESn0/+hiUNhu1mB0emA==}
+ engines: {node: '>=16.0.0'}
+
+ '@aws-sdk/credential-provider-ini@3.696.0':
+ resolution: {integrity: sha512-9WsZZofjPjNAAZhIh7c7FOhLK8CR3RnGgUm1tdZzV6ZSM1BuS2m6rdwIilRxAh3fxxKDkmW/r/aYmmCYwA+AYA==}
+ engines: {node: '>=16.0.0'}
peerDependencies:
- '@aws-sdk/credential-provider-node': ^3.556.0
- dependencies:
- '@aws-crypto/sha256-browser': 3.0.0
- '@aws-crypto/sha256-js': 3.0.0
- '@aws-sdk/core': 3.556.0
- '@aws-sdk/credential-provider-node': 3.556.0
- '@aws-sdk/middleware-host-header': 3.535.0
- '@aws-sdk/middleware-logger': 3.535.0
- '@aws-sdk/middleware-recursion-detection': 3.535.0
- '@aws-sdk/middleware-user-agent': 3.540.0
- '@aws-sdk/region-config-resolver': 3.535.0
- '@aws-sdk/types': 3.535.0
- '@aws-sdk/util-endpoints': 3.540.0
- '@aws-sdk/util-user-agent-browser': 3.535.0
- '@aws-sdk/util-user-agent-node': 3.535.0
- '@smithy/config-resolver': 2.2.0
- '@smithy/core': 1.4.2
- '@smithy/fetch-http-handler': 2.5.0
- '@smithy/hash-node': 2.2.0
- '@smithy/invalid-dependency': 2.2.0
- '@smithy/middleware-content-length': 2.2.0
- '@smithy/middleware-endpoint': 2.5.1
- '@smithy/middleware-retry': 2.3.1
- '@smithy/middleware-serde': 2.3.0
- '@smithy/middleware-stack': 2.2.0
- '@smithy/node-config-provider': 2.3.0
- '@smithy/node-http-handler': 2.5.0
- '@smithy/protocol-http': 3.3.0
- '@smithy/smithy-client': 2.5.1
- '@smithy/types': 2.12.0
- '@smithy/url-parser': 2.2.0
- '@smithy/util-base64': 2.3.0
- '@smithy/util-body-length-browser': 2.2.0
- '@smithy/util-body-length-node': 2.3.0
- '@smithy/util-defaults-mode-browser': 2.2.1
- '@smithy/util-defaults-mode-node': 2.3.1
- '@smithy/util-endpoints': 1.2.0
- '@smithy/util-middleware': 2.2.0
- '@smithy/util-retry': 2.2.0
- '@smithy/util-utf8': 2.3.0
- tslib: 2.6.3
- transitivePeerDependencies:
- - aws-crt
- dev: false
+ '@aws-sdk/client-sts': ^3.696.0
- /@aws-sdk/client-sts/3.600.0:
- resolution: {integrity: sha512-KQG97B7LvTtTiGmjlrG1LRAY8wUvCQzrmZVV5bjrJ/1oXAU7DITYwVbSJeX9NWg6hDuSk0VE3MFwIXS2SvfLIA==}
+ '@aws-sdk/credential-provider-node@3.696.0':
+ resolution: {integrity: sha512-8F6y5FcfRuMJouC5s207Ko1mcVvOXReBOlJmhIwE4QH1CnO/CliIyepnAZrRQ659mo5wIuquz6gXnpYbitEVMg==}
engines: {node: '>=16.0.0'}
- dependencies:
- '@aws-crypto/sha256-browser': 5.2.0
- '@aws-crypto/sha256-js': 5.2.0
- '@aws-sdk/client-sso-oidc': 3.600.0
- '@aws-sdk/core': 3.598.0
- '@aws-sdk/credential-provider-node': 3.600.0_f7n47caigsrjd2lr2szmwfuee4
- '@aws-sdk/middleware-host-header': 3.598.0
- '@aws-sdk/middleware-logger': 3.598.0
- '@aws-sdk/middleware-recursion-detection': 3.598.0
- '@aws-sdk/middleware-user-agent': 3.598.0
- '@aws-sdk/region-config-resolver': 3.598.0
- '@aws-sdk/types': 3.598.0
- '@aws-sdk/util-endpoints': 3.598.0
- '@aws-sdk/util-user-agent-browser': 3.598.0
- '@aws-sdk/util-user-agent-node': 3.598.0
- '@smithy/config-resolver': 3.0.3
- '@smithy/core': 2.2.3
- '@smithy/fetch-http-handler': 3.2.1
- '@smithy/hash-node': 3.0.2
- '@smithy/invalid-dependency': 3.0.2
- '@smithy/middleware-content-length': 3.0.2
- '@smithy/middleware-endpoint': 3.0.4
- '@smithy/middleware-retry': 3.0.6
- '@smithy/middleware-serde': 3.0.3
- '@smithy/middleware-stack': 3.0.3
- '@smithy/node-config-provider': 3.1.3
- '@smithy/node-http-handler': 3.1.2
- '@smithy/protocol-http': 4.0.3
- '@smithy/smithy-client': 3.1.6
- '@smithy/types': 3.3.0
- '@smithy/url-parser': 3.0.3
- '@smithy/util-base64': 3.0.0
- '@smithy/util-body-length-browser': 3.0.0
- '@smithy/util-body-length-node': 3.0.0
- '@smithy/util-defaults-mode-browser': 3.0.6
- '@smithy/util-defaults-mode-node': 3.0.6
- '@smithy/util-endpoints': 2.0.3
- '@smithy/util-middleware': 3.0.3
- '@smithy/util-retry': 3.0.2
- '@smithy/util-utf8': 3.0.0
- tslib: 2.6.3
- transitivePeerDependencies:
- - aws-crt
- dev: false
- /@aws-sdk/client-sts/3.600.0_dseaa2p5u2yk67qiepewcq3hkq:
- resolution: {integrity: sha512-KQG97B7LvTtTiGmjlrG1LRAY8wUvCQzrmZVV5bjrJ/1oXAU7DITYwVbSJeX9NWg6hDuSk0VE3MFwIXS2SvfLIA==}
+ '@aws-sdk/credential-provider-process@3.696.0':
+ resolution: {integrity: sha512-mL1RcFDe9sfmyU5K1nuFkO8UiJXXxLX4JO1gVaDIOvPqwStpUAwi3A1BoeZhWZZNQsiKI810RnYGo0E0WB/hUA==}
engines: {node: '>=16.0.0'}
- dependencies:
- '@aws-crypto/sha256-browser': 5.2.0
- '@aws-crypto/sha256-js': 5.2.0
- '@aws-sdk/client-sso-oidc': 3.600.0
- '@aws-sdk/core': 3.598.0
- '@aws-sdk/credential-provider-node': 3.600.0_f7n47caigsrjd2lr2szmwfuee4
- '@aws-sdk/middleware-host-header': 3.598.0
- '@aws-sdk/middleware-logger': 3.598.0
- '@aws-sdk/middleware-recursion-detection': 3.598.0
- '@aws-sdk/middleware-user-agent': 3.598.0
- '@aws-sdk/region-config-resolver': 3.598.0
- '@aws-sdk/types': 3.598.0
- '@aws-sdk/util-endpoints': 3.598.0
- '@aws-sdk/util-user-agent-browser': 3.598.0
- '@aws-sdk/util-user-agent-node': 3.598.0
- '@smithy/config-resolver': 3.0.3
- '@smithy/core': 2.2.3
- '@smithy/fetch-http-handler': 3.2.1
- '@smithy/hash-node': 3.0.2
- '@smithy/invalid-dependency': 3.0.2
- '@smithy/middleware-content-length': 3.0.2
- '@smithy/middleware-endpoint': 3.0.4
- '@smithy/middleware-retry': 3.0.6
- '@smithy/middleware-serde': 3.0.3
- '@smithy/middleware-stack': 3.0.3
- '@smithy/node-config-provider': 3.1.3
- '@smithy/node-http-handler': 3.1.2
- '@smithy/protocol-http': 4.0.3
- '@smithy/smithy-client': 3.1.6
- '@smithy/types': 3.3.0
- '@smithy/url-parser': 3.0.3
- '@smithy/util-base64': 3.0.0
- '@smithy/util-body-length-browser': 3.0.0
- '@smithy/util-body-length-node': 3.0.0
- '@smithy/util-defaults-mode-browser': 3.0.6
- '@smithy/util-defaults-mode-node': 3.0.6
- '@smithy/util-endpoints': 2.0.3
- '@smithy/util-middleware': 3.0.3
- '@smithy/util-retry': 3.0.2
- '@smithy/util-utf8': 3.0.0
- tslib: 2.6.3
- transitivePeerDependencies:
- - '@aws-sdk/client-sso-oidc'
- - aws-crt
- dev: false
- /@aws-sdk/core/3.556.0:
- resolution: {integrity: sha512-vJaSaHw2kPQlo11j/Rzuz0gk1tEaKdz+2ser0f0qZ5vwFlANjt08m/frU17ctnVKC1s58bxpctO/1P894fHLrA==}
- engines: {node: '>=14.0.0'}
- dependencies:
- '@smithy/core': 1.4.2
- '@smithy/protocol-http': 3.3.0
- '@smithy/signature-v4': 2.3.0
- '@smithy/smithy-client': 2.5.1
- '@smithy/types': 2.12.0
- fast-xml-parser: 4.2.5
- tslib: 2.6.3
- dev: false
-
- /@aws-sdk/core/3.598.0:
- resolution: {integrity: sha512-HaSjt7puO5Cc7cOlrXFCW0rtA0BM9lvzjl56x0A20Pt+0wxXGeTOZZOkXQIepbrFkV2e/HYukuT9e99vXDm59g==}
+ '@aws-sdk/credential-provider-sso@3.696.0':
+ resolution: {integrity: sha512-4SSZ9Nk08JSu4/rX1a+dEac/Ims1HCXfV7YLUe5LGdtRLSKRoQQUy+hkFaGYoSugP/p1UfUPl3BuTO9Vv8z1pA==}
engines: {node: '>=16.0.0'}
- dependencies:
- '@smithy/core': 2.2.3
- '@smithy/protocol-http': 4.0.3
- '@smithy/signature-v4': 3.1.2
- '@smithy/smithy-client': 3.1.6
- '@smithy/types': 3.3.0
- fast-xml-parser: 4.2.5
- tslib: 2.6.3
- dev: false
-
- /@aws-sdk/credential-provider-cognito-identity/3.600.0:
- resolution: {integrity: sha512-AIM+B06d1+71EuBrk2UR9ZZgRS3a+ARxE3oZKMZYlfqtZ3kY8w4DkhEt7OVruc6uSsMhkrcQT6nxsOxFSi4RtA==}
+
+ '@aws-sdk/credential-provider-web-identity@3.696.0':
+ resolution: {integrity: sha512-XJ/CVlWChM0VCoc259vWguFUjJDn/QwDqHwbx+K9cg3v6yrqXfK5ai+p/6lx0nQpnk4JzPVeYYxWRpaTsGC9rg==}
engines: {node: '>=16.0.0'}
- dependencies:
- '@aws-sdk/client-cognito-identity': 3.600.0
- '@aws-sdk/types': 3.598.0
- '@smithy/property-provider': 3.1.2
- '@smithy/types': 3.2.0
- tslib: 2.6.3
- transitivePeerDependencies:
- - aws-crt
- dev: false
+ peerDependencies:
+ '@aws-sdk/client-sts': ^3.696.0
- /@aws-sdk/credential-provider-env/3.418.0:
- resolution: {integrity: sha512-e74sS+x63EZUBO+HaI8zor886YdtmULzwKdctsZp5/37Xho1CVUNtEC+fYa69nigBD9afoiH33I4JggaHgrekQ==}
- engines: {node: '>=14.0.0'}
- dependencies:
- '@aws-sdk/types': 3.418.0
- '@smithy/property-provider': 2.2.0
- '@smithy/types': 2.12.0
- tslib: 2.6.3
- dev: false
+ '@aws-sdk/credential-providers@3.696.0':
+ resolution: {integrity: sha512-PMTRGII2x38DwkkbgLyOEEAaOInl1NasrGVcBfVxIL94Upln95Op+8e84kWROr4blLZcZUL6GTJuQrJ2ZtfEyw==}
+ engines: {node: '>=16.0.0'}
- /@aws-sdk/credential-provider-env/3.535.0:
- resolution: {integrity: sha512-XppwO8c0GCGSAvdzyJOhbtktSEaShg14VJKg8mpMa1XcgqzmcqqHQjtDWbx5rZheY1VdpXZhpEzJkB6LpQejpA==}
- engines: {node: '>=14.0.0'}
- dependencies:
- '@aws-sdk/types': 3.535.0
- '@smithy/property-provider': 2.2.0
- '@smithy/types': 2.12.0
- tslib: 2.6.3
- dev: false
+ '@aws-sdk/endpoint-cache@3.693.0':
+ resolution: {integrity: sha512-/zK0ZZncBf5FbTfo8rJMcQIXXk4Ibhe5zEMiwFNivVPR2uNC0+oqfwXz7vjxwY0t6BPE3Bs4h9uFEz4xuGCY6w==}
+ engines: {node: '>=16.0.0'}
- /@aws-sdk/credential-provider-env/3.598.0:
- resolution: {integrity: sha512-vi1khgn7yXzLCcgSIzQrrtd2ilUM0dWodxj3PQ6BLfP0O+q1imO3hG1nq7DVyJtq7rFHs6+9N8G4mYvTkxby2w==}
+ '@aws-sdk/middleware-bucket-endpoint@3.696.0':
+ resolution: {integrity: sha512-V07jishKHUS5heRNGFpCWCSTjRJyQLynS/ncUeE8ZYtG66StOOQWftTwDfFOSoXlIqrXgb4oT9atryzXq7Z4LQ==}
engines: {node: '>=16.0.0'}
- dependencies:
- '@aws-sdk/types': 3.598.0
- '@smithy/property-provider': 3.1.3
- '@smithy/types': 3.3.0
- tslib: 2.6.3
- dev: false
- /@aws-sdk/credential-provider-http/3.552.0:
- resolution: {integrity: sha512-vsmu7Cz1i45pFEqzVb4JcFmAmVnWFNLsGheZc8SCptlqCO5voETrZZILHYIl4cjKkSDk3pblBOf0PhyjqWW6WQ==}
- engines: {node: '>=14.0.0'}
- dependencies:
- '@aws-sdk/types': 3.535.0
- '@smithy/fetch-http-handler': 2.5.0
- '@smithy/node-http-handler': 2.5.0
- '@smithy/property-provider': 2.2.0
- '@smithy/protocol-http': 3.3.0
- '@smithy/smithy-client': 2.5.1
- '@smithy/types': 2.12.0
- '@smithy/util-stream': 2.2.0
- tslib: 2.6.3
- dev: false
-
- /@aws-sdk/credential-provider-http/3.598.0:
- resolution: {integrity: sha512-N7cIafi4HVlQvEgvZSo1G4T9qb/JMLGMdBsDCT5XkeJrF0aptQWzTFH0jIdZcLrMYvzPcuEyO3yCBe6cy/ba0g==}
+ '@aws-sdk/middleware-endpoint-discovery@3.696.0':
+ resolution: {integrity: sha512-KZvgR3lB9zdLuuO+SxeQQVDn8R46Brlolsbv7JGyR6id0BNy6pqitHdcrZCyp9jaMjrSFcPROceeLy70Cu3pZg==}
engines: {node: '>=16.0.0'}
- dependencies:
- '@aws-sdk/types': 3.598.0
- '@smithy/fetch-http-handler': 3.2.1
- '@smithy/node-http-handler': 3.1.2
- '@smithy/property-provider': 3.1.3
- '@smithy/protocol-http': 4.0.3
- '@smithy/smithy-client': 3.1.6
- '@smithy/types': 3.3.0
- '@smithy/util-stream': 3.0.6
- tslib: 2.6.3
- dev: false
-
- /@aws-sdk/credential-provider-ini/3.423.0:
- resolution: {integrity: sha512-7CsFWz8g7dQmblp57XzzxMirO4ClowGZIOwAheBkmk6q1XHbllcHFnbh2kdPyQQ0+JmjDg6waztIc7dY7Ycfvw==}
- engines: {node: '>=14.0.0'}
- dependencies:
- '@aws-sdk/credential-provider-env': 3.418.0
- '@aws-sdk/credential-provider-process': 3.418.0
- '@aws-sdk/credential-provider-sso': 3.423.0
- '@aws-sdk/credential-provider-web-identity': 3.418.0
- '@aws-sdk/types': 3.418.0
- '@smithy/credential-provider-imds': 2.3.0
- '@smithy/property-provider': 2.2.0
- '@smithy/shared-ini-file-loader': 2.4.0
- '@smithy/types': 2.12.0
- tslib: 2.6.3
- transitivePeerDependencies:
- - aws-crt
- dev: false
- /@aws-sdk/credential-provider-ini/3.556.0_44iqpmbeuswd4eyeepqjgvbfii:
- resolution: {integrity: sha512-0Nz4ErOlXhe3muxWYMbPwRMgfKmVbBp36BAE2uv/z5wTbfdBkcgUwaflEvlKCLUTdHzuZsQk+BFS/gVyaUeOuA==}
- engines: {node: '>=14.0.0'}
- dependencies:
- '@aws-sdk/client-sts': 3.556.0_44iqpmbeuswd4eyeepqjgvbfii
- '@aws-sdk/credential-provider-env': 3.535.0
- '@aws-sdk/credential-provider-process': 3.535.0
- '@aws-sdk/credential-provider-sso': 3.556.0_44iqpmbeuswd4eyeepqjgvbfii
- '@aws-sdk/credential-provider-web-identity': 3.556.0_44iqpmbeuswd4eyeepqjgvbfii
- '@aws-sdk/types': 3.535.0
- '@smithy/credential-provider-imds': 2.3.0
- '@smithy/property-provider': 2.2.0
- '@smithy/shared-ini-file-loader': 2.4.0
- '@smithy/types': 2.12.0
- tslib: 2.6.3
- transitivePeerDependencies:
- - '@aws-sdk/credential-provider-node'
- - aws-crt
- dev: false
+ '@aws-sdk/middleware-expect-continue@3.696.0':
+ resolution: {integrity: sha512-vpVukqY3U2pb+ULeX0shs6L0aadNep6kKzjme/MyulPjtUDJpD3AekHsXRrCCGLmOqSKqRgQn5zhV9pQhHsb6Q==}
+ engines: {node: '>=16.0.0'}
- /@aws-sdk/credential-provider-ini/3.598.0_f7n47caigsrjd2lr2szmwfuee4:
- resolution: {integrity: sha512-/ppcIVUbRwDIwJDoYfp90X3+AuJo2mvE52Y1t2VSrvUovYn6N4v95/vXj6LS8CNDhz2jvEJYmu+0cTMHdhI6eA==}
+ '@aws-sdk/middleware-flexible-checksums@3.697.0':
+ resolution: {integrity: sha512-K/y43P+NuHu5+21/29BoJSltcPekvcCU8i74KlGGHbW2Z105e5QVZlFjxivcPOjOA3gdC0W4SoFSIWam5RBhzw==}
engines: {node: '>=16.0.0'}
- peerDependencies:
- '@aws-sdk/client-sts': ^3.598.0
- dependencies:
- '@aws-sdk/client-sts': 3.600.0
- '@aws-sdk/credential-provider-env': 3.598.0
- '@aws-sdk/credential-provider-http': 3.598.0
- '@aws-sdk/credential-provider-process': 3.598.0
- '@aws-sdk/credential-provider-sso': 3.598.0_dseaa2p5u2yk67qiepewcq3hkq
- '@aws-sdk/credential-provider-web-identity': 3.598.0_tdq3komn4zwyd65w7klbptsu34
- '@aws-sdk/types': 3.598.0
- '@smithy/credential-provider-imds': 3.1.2
- '@smithy/property-provider': 3.1.3
- '@smithy/shared-ini-file-loader': 3.1.3
- '@smithy/types': 3.3.0
- tslib: 2.6.3
- transitivePeerDependencies:
- - '@aws-sdk/client-sso-oidc'
- - aws-crt
- dev: false
- /@aws-sdk/credential-provider-node/3.423.0:
- resolution: {integrity: sha512-lygbGJJUnDpgo8OEqdoYd51BKkyBVQ1Catiua/m0aHvL+SCmVrHiYPQPawWYGxpH8X3DXdXa0nd0LkEaevrHRg==}
- engines: {node: '>=14.0.0'}
- dependencies:
- '@aws-sdk/credential-provider-env': 3.418.0
- '@aws-sdk/credential-provider-ini': 3.423.0
- '@aws-sdk/credential-provider-process': 3.418.0
- '@aws-sdk/credential-provider-sso': 3.423.0
- '@aws-sdk/credential-provider-web-identity': 3.418.0
- '@aws-sdk/types': 3.418.0
- '@smithy/credential-provider-imds': 2.0.13
- '@smithy/property-provider': 2.0.11
- '@smithy/shared-ini-file-loader': 2.0.12
- '@smithy/types': 2.3.4
- tslib: 2.6.3
- transitivePeerDependencies:
- - aws-crt
- dev: false
+ '@aws-sdk/middleware-host-header@3.696.0':
+ resolution: {integrity: sha512-zELJp9Ta2zkX7ELggMN9qMCgekqZhFC5V2rOr4hJDEb/Tte7gpfKSObAnw/3AYiVqt36sjHKfdkoTsuwGdEoDg==}
+ engines: {node: '>=16.0.0'}
- /@aws-sdk/credential-provider-node/3.556.0:
- resolution: {integrity: sha512-s1xVtKjyGc60O8qcNIzS1X3H+pWEwEfZ7TgNznVDNyuXvLrlNWiAcigPWGl2aAkc8tGcsSG0Qpyw2KYC939LFg==}
- engines: {node: '>=14.0.0'}
- dependencies:
- '@aws-sdk/credential-provider-env': 3.535.0
- '@aws-sdk/credential-provider-http': 3.552.0
- '@aws-sdk/credential-provider-ini': 3.556.0_44iqpmbeuswd4eyeepqjgvbfii
- '@aws-sdk/credential-provider-process': 3.535.0
- '@aws-sdk/credential-provider-sso': 3.556.0_44iqpmbeuswd4eyeepqjgvbfii
- '@aws-sdk/credential-provider-web-identity': 3.556.0_44iqpmbeuswd4eyeepqjgvbfii
- '@aws-sdk/types': 3.535.0
- '@smithy/credential-provider-imds': 2.3.0
- '@smithy/property-provider': 2.2.0
- '@smithy/shared-ini-file-loader': 2.4.0
- '@smithy/types': 2.12.0
- tslib: 2.6.3
- transitivePeerDependencies:
- - aws-crt
- dev: false
+ '@aws-sdk/middleware-location-constraint@3.696.0':
+ resolution: {integrity: sha512-FgH12OB0q+DtTrP2aiDBddDKwL4BPOrm7w3VV9BJrSdkqQCNBPz8S1lb0y5eVH4tBG+2j7gKPlOv1wde4jF/iw==}
+ engines: {node: '>=16.0.0'}
- /@aws-sdk/credential-provider-node/3.600.0_f7n47caigsrjd2lr2szmwfuee4:
- resolution: {integrity: sha512-1pC7MPMYD45J7yFjA90SxpR0yaSvy+yZiq23aXhAPZLYgJBAxHLu0s0mDCk/piWGPh8+UGur5K0bVdx4B1D5hw==}
+ '@aws-sdk/middleware-logger@3.696.0':
+ resolution: {integrity: sha512-KhkHt+8AjCxcR/5Zp3++YPJPpFQzxpr+jmONiT/Jw2yqnSngZ0Yspm5wGoRx2hS1HJbyZNuaOWEGuJoxLeBKfA==}
engines: {node: '>=16.0.0'}
- dependencies:
- '@aws-sdk/credential-provider-env': 3.598.0
- '@aws-sdk/credential-provider-http': 3.598.0
- '@aws-sdk/credential-provider-ini': 3.598.0_f7n47caigsrjd2lr2szmwfuee4
- '@aws-sdk/credential-provider-process': 3.598.0
- '@aws-sdk/credential-provider-sso': 3.598.0_dseaa2p5u2yk67qiepewcq3hkq
- '@aws-sdk/credential-provider-web-identity': 3.598.0_tdq3komn4zwyd65w7klbptsu34
- '@aws-sdk/types': 3.598.0
- '@smithy/credential-provider-imds': 3.1.2
- '@smithy/property-provider': 3.1.3
- '@smithy/shared-ini-file-loader': 3.1.3
- '@smithy/types': 3.3.0
- tslib: 2.6.3
- transitivePeerDependencies:
- - '@aws-sdk/client-sso-oidc'
- - '@aws-sdk/client-sts'
- - aws-crt
- dev: false
- /@aws-sdk/credential-provider-process/3.418.0:
- resolution: {integrity: sha512-xPbdm2WKz1oH6pTkrJoUmr3OLuqvvcPYTQX0IIlc31tmDwDWPQjXGGFD/vwZGIZIkKaFpFxVMgAzfFScxox7dw==}
- engines: {node: '>=14.0.0'}
- dependencies:
- '@aws-sdk/types': 3.418.0
- '@smithy/property-provider': 2.2.0
- '@smithy/shared-ini-file-loader': 2.4.0
- '@smithy/types': 2.12.0
- tslib: 2.6.3
- dev: false
+ '@aws-sdk/middleware-recursion-detection@3.696.0':
+ resolution: {integrity: sha512-si/maV3Z0hH7qa99f9ru2xpS5HlfSVcasRlNUXKSDm611i7jFMWwGNLUOXFAOLhXotPX5G3Z6BLwL34oDeBMug==}
+ engines: {node: '>=16.0.0'}
- /@aws-sdk/credential-provider-process/3.535.0:
- resolution: {integrity: sha512-9O1OaprGCnlb/kYl8RwmH7Mlg8JREZctB8r9sa1KhSsWFq/SWO0AuJTyowxD7zL5PkeS4eTvzFFHWCa3OO5epA==}
- engines: {node: '>=14.0.0'}
- dependencies:
- '@aws-sdk/types': 3.535.0
- '@smithy/property-provider': 2.2.0
- '@smithy/shared-ini-file-loader': 2.4.0
- '@smithy/types': 2.12.0
- tslib: 2.6.3
- dev: false
+ '@aws-sdk/middleware-sdk-ec2@3.696.0':
+ resolution: {integrity: sha512-HVMpblaaTQ1Ysku2nR6+N22aEgT7CDot+vsFutHNJCBPl+eEON5exp7IvsFC7sFCWmSfnMHTHtmmj5YIYHO1gQ==}
+ engines: {node: '>=16.0.0'}
- /@aws-sdk/credential-provider-process/3.598.0:
- resolution: {integrity: sha512-rM707XbLW8huMk722AgjVyxu2tMZee++fNA8TJVNgs1Ma02Wx6bBrfIvlyK0rCcIRb0WdQYP6fe3Xhiu4e8IBA==}
+ '@aws-sdk/middleware-sdk-rds@3.696.0':
+ resolution: {integrity: sha512-YSzPlVVgWfM+OfMM5LyuEP1A24zgKLNF9i+K8mtG+q2NpRJrXCbTlOEJUepCG58voYcL+GT8/Q0vwR7Btadi0w==}
engines: {node: '>=16.0.0'}
- dependencies:
- '@aws-sdk/types': 3.598.0
- '@smithy/property-provider': 3.1.3
- '@smithy/shared-ini-file-loader': 3.1.3
- '@smithy/types': 3.3.0
- tslib: 2.6.3
- dev: false
- /@aws-sdk/credential-provider-sso/3.423.0:
- resolution: {integrity: sha512-zAH68IjRMmW22USbsCVQ5Q6AHqhmWABwLbZAMocSGMasddTGv/nkA/nUiVCJ/B4LI3P81FoPQVrG5JxNmkNH0w==}
- engines: {node: '>=14.0.0'}
- dependencies:
- '@aws-sdk/client-sso': 3.423.0
- '@aws-sdk/token-providers': 3.418.0
- '@aws-sdk/types': 3.418.0
- '@smithy/property-provider': 2.2.0
- '@smithy/shared-ini-file-loader': 2.4.0
- '@smithy/types': 2.12.0
- tslib: 2.6.3
- transitivePeerDependencies:
- - aws-crt
- dev: false
+ '@aws-sdk/middleware-sdk-s3@3.696.0':
+ resolution: {integrity: sha512-M7fEiAiN7DBMHflzOFzh1I2MNSlLpbiH2ubs87bdRc2wZsDPSbs4l3v6h3WLhxoQK0bq6vcfroudrLBgvCuX3Q==}
+ engines: {node: '>=16.0.0'}
- /@aws-sdk/credential-provider-sso/3.556.0_44iqpmbeuswd4eyeepqjgvbfii:
- resolution: {integrity: sha512-ETuBgcnpfxqadEAqhQFWpKoV1C/NAgvs5CbBc5EJbelJ8f4prTdErIHjrRtVT8c02MXj92QwczsiNYd5IoOqyw==}
- engines: {node: '>=14.0.0'}
- dependencies:
- '@aws-sdk/client-sso': 3.556.0
- '@aws-sdk/token-providers': 3.556.0_44iqpmbeuswd4eyeepqjgvbfii
- '@aws-sdk/types': 3.535.0
- '@smithy/property-provider': 2.2.0
- '@smithy/shared-ini-file-loader': 2.4.0
- '@smithy/types': 2.12.0
- tslib: 2.6.3
- transitivePeerDependencies:
- - '@aws-sdk/credential-provider-node'
- - aws-crt
- dev: false
+ '@aws-sdk/middleware-sdk-sqs@3.696.0':
+ resolution: {integrity: sha512-wQl4v5DjI9G/YWflxhSiqgtYnnOIuI5U85IvPc13A3QZH6CUgifM+10Fj1ThOSVv/KKZQCvLxney/nbjMf9naQ==}
+ engines: {node: '>=16.0.0'}
- /@aws-sdk/credential-provider-sso/3.598.0_dseaa2p5u2yk67qiepewcq3hkq:
- resolution: {integrity: sha512-5InwUmrAuqQdOOgxTccRayMMkSmekdLk6s+az9tmikq0QFAHUCtofI+/fllMXSR9iL6JbGYi1940+EUmS4pHJA==}
+ '@aws-sdk/middleware-ssec@3.696.0':
+ resolution: {integrity: sha512-w/d6O7AOZ7Pg3w2d3BxnX5RmGNWb5X4RNxF19rJqcgu/xqxxE/QwZTNd5a7eTsqLXAUIfbbR8hh0czVfC1pJLA==}
engines: {node: '>=16.0.0'}
- dependencies:
- '@aws-sdk/client-sso': 3.598.0
- '@aws-sdk/token-providers': 3.598.0_dseaa2p5u2yk67qiepewcq3hkq
- '@aws-sdk/types': 3.598.0
- '@smithy/property-provider': 3.1.3
- '@smithy/shared-ini-file-loader': 3.1.3
- '@smithy/types': 3.3.0
- tslib: 2.6.3
- transitivePeerDependencies:
- - '@aws-sdk/client-sso-oidc'
- - aws-crt
- dev: false
- /@aws-sdk/credential-provider-web-identity/3.418.0:
- resolution: {integrity: sha512-do7ang565n9p3dS1JdsQY01rUfRx8vkxQqz5M8OlcEHBNiCdi2PvSjNwcBdrv/FKkyIxZb0TImOfBSt40hVdxQ==}
- engines: {node: '>=14.0.0'}
- dependencies:
- '@aws-sdk/types': 3.418.0
- '@smithy/property-provider': 2.2.0
- '@smithy/types': 2.12.0
- tslib: 2.6.3
- dev: false
+ '@aws-sdk/middleware-user-agent@3.696.0':
+ resolution: {integrity: sha512-Lvyj8CTyxrHI6GHd2YVZKIRI5Fmnugt3cpJo0VrKKEgK5zMySwEZ1n4dqPK6czYRWKd5+WnYHYAuU+Wdk6Jsjw==}
+ engines: {node: '>=16.0.0'}
- /@aws-sdk/credential-provider-web-identity/3.556.0_44iqpmbeuswd4eyeepqjgvbfii:
- resolution: {integrity: sha512-R/YAL8Uh8i+dzVjzMnbcWLIGeeRi2mioHVGnVF+minmaIkCiQMZg2HPrdlKm49El+RljT28Nl5YHRuiqzEIwMA==}
+ '@aws-sdk/protocol-http@3.374.0':
+ resolution: {integrity: sha512-9WpRUbINdGroV3HiZZIBoJvL2ndoWk39OfwxWs2otxByppJZNN14bg/lvCx5e8ggHUti7IBk5rb0nqQZ4m05pg==}
engines: {node: '>=14.0.0'}
- dependencies:
- '@aws-sdk/client-sts': 3.556.0_44iqpmbeuswd4eyeepqjgvbfii
- '@aws-sdk/types': 3.535.0
- '@smithy/property-provider': 2.2.0
- '@smithy/types': 2.12.0
- tslib: 2.6.3
- transitivePeerDependencies:
- - '@aws-sdk/credential-provider-node'
- - aws-crt
- dev: false
+ deprecated: This package has moved to @smithy/protocol-http
- /@aws-sdk/credential-provider-web-identity/3.598.0_tdq3komn4zwyd65w7klbptsu34:
- resolution: {integrity: sha512-GV5GdiMbz5Tz9JO4NJtRoFXjW0GPEujA0j+5J/B723rTN+REHthJu48HdBKouHGhdzkDWkkh1bu52V02Wprw8w==}
+ '@aws-sdk/region-config-resolver@3.696.0':
+ resolution: {integrity: sha512-7EuH142lBXjI8yH6dVS/CZeiK/WZsmb/8zP6bQbVYpMrppSTgB3MzZZdxVZGzL5r8zPQOU10wLC4kIMy0qdBVQ==}
engines: {node: '>=16.0.0'}
- peerDependencies:
- '@aws-sdk/client-sts': ^3.598.0
- dependencies:
- '@aws-sdk/client-sts': 3.600.0
- '@aws-sdk/types': 3.598.0
- '@smithy/property-provider': 3.1.3
- '@smithy/types': 3.3.0
- tslib: 2.6.3
- dev: false
- /@aws-sdk/credential-providers/3.600.0_dseaa2p5u2yk67qiepewcq3hkq:
- resolution: {integrity: sha512-cC9uqmX0rgx1efiJGqeR+i0EXr8RQ5SAzH7M45WNBZpYiLEe6reWgIYJY9hmOxuaoMdWSi8kekuN3IjTIORRjw==}
+ '@aws-sdk/s3-request-presigner@3.698.0':
+ resolution: {integrity: sha512-GRk2lU+GOO00D0nhiYtK2M4FcJH+I/M2fZD104g90kVfJzWGvG4s5qDhumzx1WRaL0n0HcktfCmJzenbvJKkHw==}
engines: {node: '>=16.0.0'}
- requiresBuild: true
- dependencies:
- '@aws-sdk/client-cognito-identity': 3.600.0
- '@aws-sdk/client-sso': 3.598.0
- '@aws-sdk/client-sts': 3.600.0
- '@aws-sdk/credential-provider-cognito-identity': 3.600.0
- '@aws-sdk/credential-provider-env': 3.598.0
- '@aws-sdk/credential-provider-http': 3.598.0
- '@aws-sdk/credential-provider-ini': 3.598.0_f7n47caigsrjd2lr2szmwfuee4
- '@aws-sdk/credential-provider-node': 3.600.0_f7n47caigsrjd2lr2szmwfuee4
- '@aws-sdk/credential-provider-process': 3.598.0
- '@aws-sdk/credential-provider-sso': 3.598.0_dseaa2p5u2yk67qiepewcq3hkq
- '@aws-sdk/credential-provider-web-identity': 3.598.0_tdq3komn4zwyd65w7klbptsu34
- '@aws-sdk/types': 3.598.0
- '@smithy/credential-provider-imds': 3.1.2
- '@smithy/property-provider': 3.1.2
- '@smithy/types': 3.2.0
- tslib: 2.6.3
- transitivePeerDependencies:
- - '@aws-sdk/client-sso-oidc'
- - aws-crt
- dev: false
- /@aws-sdk/endpoint-cache/3.310.0:
- resolution: {integrity: sha512-y3wipforet41EDTI0vnzxILqwAGll1KfI5qcdX9pXF/WF1f+3frcOtPiWtQEZQpy4czRogKm3BHo70QBYAZxlQ==}
- engines: {node: '>=14.0.0'}
- dependencies:
- mnemonist: 0.38.3
- tslib: 2.6.3
- dev: false
+ '@aws-sdk/signature-v4-multi-region@3.696.0':
+ resolution: {integrity: sha512-ijPkoLjXuPtgxAYlDoYls8UaG/VKigROn9ebbvPL/orEY5umedd3iZTcS9T+uAf4Ur3GELLxMQiERZpfDKaz3g==}
+ engines: {node: '>=16.0.0'}
- /@aws-sdk/middleware-bucket-endpoint/3.418.0:
- resolution: {integrity: sha512-gj/mj1UfbKkGbQ1N4YUvjTTp8BVs5fO1QAL2AjFJ+jfJOToLReX72aNEkm7sPGbHML0TqOY4cQbJuWYy+zdD5g==}
- engines: {node: '>=14.0.0'}
- dependencies:
- '@aws-sdk/types': 3.418.0
- '@aws-sdk/util-arn-parser': 3.310.0
- '@smithy/node-config-provider': 2.3.0
- '@smithy/protocol-http': 3.3.0
- '@smithy/types': 2.12.0
- '@smithy/util-config-provider': 2.0.0
- tslib: 2.6.3
- dev: false
-
- /@aws-sdk/middleware-endpoint-discovery/3.418.0:
- resolution: {integrity: sha512-KRhvFQDzTrayXzswx6KhS+oBDH0NoDT+vERCqvFsGvus+/HhVGACVxINuOJ+b6mqdUPfipSD4Bje3XYunqxbSw==}
+ '@aws-sdk/signature-v4@3.374.0':
+ resolution: {integrity: sha512-2xLJvSdzcZZAg0lsDLUAuSQuihzK0dcxIK7WmfuJeF7DGKJFmp9czQmz5f3qiDz6IDQzvgK1M9vtJSVCslJbyQ==}
engines: {node: '>=14.0.0'}
- dependencies:
- '@aws-sdk/endpoint-cache': 3.310.0
- '@aws-sdk/types': 3.418.0
- '@smithy/node-config-provider': 2.3.0
- '@smithy/protocol-http': 3.3.0
- '@smithy/types': 2.12.0
- tslib: 2.6.3
- dev: false
+ deprecated: This package has moved to @smithy/signature-v4
- /@aws-sdk/middleware-expect-continue/3.418.0:
- resolution: {integrity: sha512-6x4rcIj685EmqDLQkbWoCur3Dg5DRClHMen6nHXmD3CR5Xyt3z1Gk/+jmZICxyJo9c6M4AeZht8o95BopkmYAQ==}
- engines: {node: '>=14.0.0'}
- dependencies:
- '@aws-sdk/types': 3.418.0
- '@smithy/protocol-http': 3.3.0
- '@smithy/types': 2.12.0
- tslib: 2.6.3
- dev: false
+ '@aws-sdk/token-providers@3.696.0':
+ resolution: {integrity: sha512-fvTcMADrkwRdNwVmJXi2pSPf1iizmUqczrR1KusH4XehI/KybS4U6ViskRT0v07vpxwL7x+iaD/8fR0PUu5L/g==}
+ engines: {node: '>=16.0.0'}
+ peerDependencies:
+ '@aws-sdk/client-sso-oidc': ^3.696.0
- /@aws-sdk/middleware-flexible-checksums/3.418.0:
- resolution: {integrity: sha512-3O203dqS2JU5P1TAAbo7p1qplXQh59pevw9nqzPVb3EG8B+mSucVf2kKmF7kGHqKSk+nK/mB/4XGSsZBzGt6Wg==}
- engines: {node: '>=14.0.0'}
- dependencies:
- '@aws-crypto/crc32': 3.0.0
- '@aws-crypto/crc32c': 3.0.0
- '@aws-sdk/types': 3.418.0
- '@smithy/is-array-buffer': 2.0.0
- '@smithy/protocol-http': 3.3.0
- '@smithy/types': 2.12.0
- '@smithy/util-utf8': 2.0.0
- tslib: 2.6.3
- dev: false
-
- /@aws-sdk/middleware-host-header/3.418.0:
- resolution: {integrity: sha512-LrMTdzalkPw/1ujLCKPLwCGvPMCmT4P+vOZQRbSEVZPnlZk+Aj++aL/RaHou0jL4kJH3zl8iQepriBt4a7UvXQ==}
- engines: {node: '>=14.0.0'}
- dependencies:
- '@aws-sdk/types': 3.418.0
- '@smithy/protocol-http': 3.0.6
- '@smithy/types': 2.3.4
- tslib: 2.6.2
- dev: false
+ '@aws-sdk/types@3.696.0':
+ resolution: {integrity: sha512-9rTvUJIAj5d3//U5FDPWGJ1nFJLuWb30vugGOrWk7aNZ6y9tuA3PI7Cc9dP8WEXKVyK1vuuk8rSFP2iqXnlgrw==}
+ engines: {node: '>=16.0.0'}
- /@aws-sdk/middleware-host-header/3.535.0:
- resolution: {integrity: sha512-0h6TWjBWtDaYwHMQJI9ulafeS4lLaw1vIxRjbpH0svFRt6Eve+Sy8NlVhECfTU2hNz/fLubvrUxsXoThaLBIew==}
- engines: {node: '>=14.0.0'}
- dependencies:
- '@aws-sdk/types': 3.535.0
- '@smithy/protocol-http': 3.3.0
- '@smithy/types': 2.12.0
- tslib: 2.6.3
- dev: false
+ '@aws-sdk/util-arn-parser@3.693.0':
+ resolution: {integrity: sha512-WC8x6ca+NRrtpAH64rWu+ryDZI3HuLwlEr8EU6/dbC/pt+r/zC0PBoC15VEygUaBA+isppCikQpGyEDu0Yj7gQ==}
+ engines: {node: '>=16.0.0'}
- /@aws-sdk/middleware-host-header/3.598.0:
- resolution: {integrity: sha512-WiaG059YBQwQraNejLIi0gMNkX7dfPZ8hDIhvMr5aVPRbaHH8AYF3iNSsXYCHvA2Cfa1O9haYXsuMF9flXnCmA==}
+ '@aws-sdk/util-endpoints@3.696.0':
+ resolution: {integrity: sha512-T5s0IlBVX+gkb9g/I6CLt4yAZVzMSiGnbUqWihWsHvQR1WOoIcndQy/Oz/IJXT9T2ipoy7a80gzV6a5mglrioA==}
engines: {node: '>=16.0.0'}
- dependencies:
- '@aws-sdk/types': 3.598.0
- '@smithy/protocol-http': 4.0.3
- '@smithy/types': 3.3.0
- tslib: 2.6.3
- dev: false
- /@aws-sdk/middleware-location-constraint/3.418.0:
- resolution: {integrity: sha512-cc8M3VEaESHJhDsDV8tTpt2QYUprDWhvAVVSlcL43cTdZ54Quc0W+toDiaVOUlwrAZz2Y7g5NDj22ibJGFbOvw==}
- engines: {node: '>=14.0.0'}
- dependencies:
- '@aws-sdk/types': 3.418.0
- '@smithy/types': 2.12.0
- tslib: 2.6.3
- dev: false
+ '@aws-sdk/util-format-url@3.696.0':
+ resolution: {integrity: sha512-R6yK1LozUD1GdAZRPhNsIow6VNFJUTyyoIar1OCWaknlucBMcq7musF3DN3TlORBwfFMj5buHc2ET9OtMtzvuA==}
+ engines: {node: '>=16.0.0'}
- /@aws-sdk/middleware-logger/3.418.0:
- resolution: {integrity: sha512-StKGmyPVfoO/wdNTtKemYwoJsqIl4l7oqarQY7VSf2Mp3mqaa+njLViHsQbirYpyqpgUEusOnuTlH5utxJ1NsQ==}
- engines: {node: '>=14.0.0'}
- dependencies:
- '@aws-sdk/types': 3.418.0
- '@smithy/types': 2.3.4
- tslib: 2.6.2
- dev: false
+ '@aws-sdk/util-locate-window@3.693.0':
+ resolution: {integrity: sha512-ttrag6haJLWABhLqtg1Uf+4LgHWIMOVSYL+VYZmAp2v4PUGOwWmWQH0Zk8RM7YuQcLfH/EoR72/Yxz6A4FKcuw==}
+ engines: {node: '>=16.0.0'}
- /@aws-sdk/middleware-logger/3.535.0:
- resolution: {integrity: sha512-huNHpONOrEDrdRTvSQr1cJiRMNf0S52NDXtaPzdxiubTkP+vni2MohmZANMOai/qT0olmEVX01LhZ0ZAOgmg6A==}
- engines: {node: '>=14.0.0'}
- dependencies:
- '@aws-sdk/types': 3.535.0
- '@smithy/types': 2.12.0
- tslib: 2.6.3
- dev: false
+ '@aws-sdk/util-user-agent-browser@3.696.0':
+ resolution: {integrity: sha512-Z5rVNDdmPOe6ELoM5AhF/ja5tSjbe6ctSctDPb0JdDf4dT0v2MfwhJKzXju2RzX8Es/77Glh7MlaXLE0kCB9+Q==}
- /@aws-sdk/middleware-logger/3.598.0:
- resolution: {integrity: sha512-bxBjf/VYiu3zfu8SYM2S9dQQc3tz5uBAOcPz/Bt8DyyK3GgOpjhschH/2XuUErsoUO1gDJqZSdGOmuHGZQn00Q==}
+ '@aws-sdk/util-user-agent-node@3.696.0':
+ resolution: {integrity: sha512-KhKqcfyXIB0SCCt+qsu4eJjsfiOrNzK5dCV7RAW2YIpp+msxGUUX0NdRE9rkzjiv+3EMktgJm3eEIS+yxtlVdQ==}
engines: {node: '>=16.0.0'}
- dependencies:
- '@aws-sdk/types': 3.598.0
- '@smithy/types': 3.3.0
- tslib: 2.6.3
- dev: false
-
- /@aws-sdk/middleware-recursion-detection/3.418.0:
- resolution: {integrity: sha512-kKFrIQglBLUFPbHSDy1+bbe3Na2Kd70JSUC3QLMbUHmqipXN8KeXRfAj7vTv97zXl0WzG0buV++WcNwOm1rFjg==}
- engines: {node: '>=14.0.0'}
- dependencies:
- '@aws-sdk/types': 3.418.0
- '@smithy/protocol-http': 3.0.6
- '@smithy/types': 2.3.4
- tslib: 2.6.2
- dev: false
+ peerDependencies:
+ aws-crt: '>=1.0.0'
+ peerDependenciesMeta:
+ aws-crt:
+ optional: true
- /@aws-sdk/middleware-recursion-detection/3.535.0:
- resolution: {integrity: sha512-am2qgGs+gwqmR4wHLWpzlZ8PWhm4ktj5bYSgDrsOfjhdBlWNxvPoID9/pDAz5RWL48+oH7I6SQzMqxXsFDikrw==}
- engines: {node: '>=14.0.0'}
- dependencies:
- '@aws-sdk/types': 3.535.0
- '@smithy/protocol-http': 3.3.0
- '@smithy/types': 2.12.0
- tslib: 2.6.3
- dev: false
+ '@aws-sdk/util-utf8-browser@3.259.0':
+ resolution: {integrity: sha512-UvFa/vR+e19XookZF8RzFZBrw2EUkQWxiBW0yYQAhvk3C+QVGl0H3ouca8LDBlBfQKXwmW3huo/59H8rwb1wJw==}
- /@aws-sdk/middleware-recursion-detection/3.598.0:
- resolution: {integrity: sha512-vjT9BeFY9FeN0f8hm2l6F53tI0N5bUq6RcDkQXKNabXBnQxKptJRad6oP2X5y3FoVfBLOuDkQgiC2940GIPxtQ==}
+ '@aws-sdk/xml-builder@3.696.0':
+ resolution: {integrity: sha512-dn1mX+EeqivoLYnY7p2qLrir0waPnCgS/0YdRCAVU2x14FgfUYCH6Im3w3oi2dMwhxfKY5lYVB5NKvZu7uI9lQ==}
engines: {node: '>=16.0.0'}
- dependencies:
- '@aws-sdk/types': 3.598.0
- '@smithy/protocol-http': 4.0.3
- '@smithy/types': 3.3.0
- tslib: 2.6.3
- dev: false
- /@aws-sdk/middleware-sdk-ec2/3.423.0:
- resolution: {integrity: sha512-dfhe4aFQK0dbx3XX87rDIB0fmh52U0YMb0niSgZN2i4x91Q7YGpGQZAhj8gdcyML2KsKZMv/9m6PrCEIzCqqHQ==}
- engines: {node: '>=14.0.0'}
- dependencies:
- '@aws-sdk/types': 3.418.0
- '@aws-sdk/util-format-url': 3.418.0
- '@smithy/middleware-endpoint': 2.5.1
- '@smithy/protocol-http': 3.3.0
- '@smithy/signature-v4': 2.3.0
- '@smithy/smithy-client': 2.5.1
- '@smithy/types': 2.12.0
- tslib: 2.6.3
- dev: false
-
- /@aws-sdk/middleware-sdk-rds/3.556.0:
- resolution: {integrity: sha512-OVsvkBYT43ftHjxFVEBdS9gngY0yTutg2dM7DIlu1jYxYZnaj56r1tQMSiRVYbIuxiPcs19WE97dgpu9jsZIJg==}
- engines: {node: '>=14.0.0'}
- dependencies:
- '@aws-sdk/types': 3.535.0
- '@aws-sdk/util-format-url': 3.535.0
- '@smithy/middleware-endpoint': 2.5.1
- '@smithy/protocol-http': 3.3.0
- '@smithy/signature-v4': 2.3.0
- '@smithy/types': 2.12.0
- tslib: 2.6.3
- dev: false
-
- /@aws-sdk/middleware-sdk-s3/3.418.0:
- resolution: {integrity: sha512-rei32LF45SyqL3NlWDjEOfMwAca9A5F4QgUyXJqvASc43oWC1tJnLIhiCxNh8qkWAiRyRzFpcanTeqyaRSsZpA==}
- engines: {node: '>=14.0.0'}
- dependencies:
- '@aws-sdk/types': 3.418.0
- '@aws-sdk/util-arn-parser': 3.310.0
- '@smithy/protocol-http': 3.3.0
- '@smithy/smithy-client': 2.5.1
- '@smithy/types': 2.12.0
- tslib: 2.6.3
- dev: false
+ '@azure/abort-controller@1.1.0':
+ resolution: {integrity: sha512-TrRLIoSQVzfAJX9H1JeFjzAoDGcoK1IYX1UImfceTZpsyYfWr09Ss1aHW1y5TrrR3iq6RZLBwJ3E24uwPhwahw==}
+ engines: {node: '>=12.0.0'}
- /@aws-sdk/middleware-sdk-s3/3.609.0:
- resolution: {integrity: sha512-kvwjL6OJFhAGWoYaIWR7HmILjiVk6xVj6QEU6qZMA7FtGgvlKi4pLfs8Of+hQqo+2TEhUoxG/5t6WqwB8uxjsw==}
- engines: {node: '>=16.0.0'}
- dependencies:
- '@aws-sdk/types': 3.609.0
- '@aws-sdk/util-arn-parser': 3.568.0
- '@smithy/node-config-provider': 3.1.3
- '@smithy/protocol-http': 4.0.3
- '@smithy/signature-v4': 3.1.2
- '@smithy/smithy-client': 3.1.6
- '@smithy/types': 3.3.0
- '@smithy/util-config-provider': 3.0.0
- tslib: 2.6.3
- dev: false
+ '@azure/abort-controller@2.1.2':
+ resolution: {integrity: sha512-nBrLsEWm4J2u5LpAPjxADTlq3trDgVZZXHNKabeXZtpq3d3AbN/KGO82R87rdDz5/lYB024rtEf10/q0urNgsA==}
+ engines: {node: '>=18.0.0'}
- /@aws-sdk/middleware-sdk-sqs/3.418.0:
- resolution: {integrity: sha512-OK4JSMbn90swbZ7djjSvslxUSfD0Jo3wlq2uajq4bw8TdYdbRK0mXkPiEXIdKu95jX5K1uNrBbHdV6zi2mE75g==}
- engines: {node: '>=14.0.0'}
- dependencies:
- '@aws-sdk/types': 3.418.0
- '@smithy/types': 2.12.0
- '@smithy/util-hex-encoding': 2.2.0
- '@smithy/util-utf8': 2.3.0
- tslib: 2.6.3
- dev: false
+ '@azure/core-auth@1.9.0':
+ resolution: {integrity: sha512-FPwHpZywuyasDSLMqJ6fhbOK3TqUdviZNF8OqRGA4W5Ewib2lEEZ+pBsYcBa88B2NGO/SEnYPGhyBqNlE8ilSw==}
+ engines: {node: '>=18.0.0'}
- /@aws-sdk/middleware-sdk-sts/3.418.0:
- resolution: {integrity: sha512-cW8ijrCTP+mgihvcq4+TbhAcE/we5lFl4ydRqvTdtcSnYQAVQADg47rnTScQiFsPFEB3NKq7BGeyTJF9MKolPA==}
- engines: {node: '>=14.0.0'}
- dependencies:
- '@aws-sdk/middleware-signing': 3.418.0
- '@aws-sdk/types': 3.418.0
- '@smithy/types': 2.12.0
- tslib: 2.6.3
- dev: false
+ '@azure/core-client@1.9.2':
+ resolution: {integrity: sha512-kRdry/rav3fUKHl/aDLd/pDLcB+4pOFwPPTVEExuMyaI5r+JBbMWqRbCY1pn5BniDaU3lRxO9eaQ1AmSMehl/w==}
+ engines: {node: '>=18.0.0'}
- /@aws-sdk/middleware-signing/3.418.0:
- resolution: {integrity: sha512-onvs5KoYQE8OlOE740RxWBGtsUyVIgAo0CzRKOQO63ZEYqpL1Os+MS1CGzdNhvQnJgJruE1WW+Ix8fjN30zKPA==}
- engines: {node: '>=14.0.0'}
- dependencies:
- '@aws-sdk/types': 3.418.0
- '@smithy/property-provider': 2.0.11
- '@smithy/protocol-http': 3.0.6
- '@smithy/signature-v4': 2.0.10
- '@smithy/types': 2.3.4
- '@smithy/util-middleware': 2.0.3
- tslib: 2.6.2
- dev: false
-
- /@aws-sdk/middleware-ssec/3.418.0:
- resolution: {integrity: sha512-J7K+5h6aP7IYMlu/NwHEIjb0+WDu1eFvO8TCPo6j1H9xYRi8B/6h+6pa9Rk9IgRUzFnrdlDu9FazG8Tp0KKLyg==}
- engines: {node: '>=14.0.0'}
- dependencies:
- '@aws-sdk/types': 3.418.0
- '@smithy/types': 2.12.0
- tslib: 2.6.3
- dev: false
+ '@azure/core-http-compat@2.1.2':
+ resolution: {integrity: sha512-5MnV1yqzZwgNLLjlizsU3QqOeQChkIXw781Fwh1xdAqJR5AA32IUaq6xv1BICJvfbHoa+JYcaij2HFkhLbNTJQ==}
+ engines: {node: '>=18.0.0'}
- /@aws-sdk/middleware-user-agent/3.418.0:
- resolution: {integrity: sha512-Jdcztg9Tal9SEAL0dKRrnpKrm6LFlWmAhvuwv0dQ7bNTJxIxyEFbpqdgy7mpQHsLVZgq1Aad/7gT/72c9igyZw==}
- engines: {node: '>=14.0.0'}
- dependencies:
- '@aws-sdk/types': 3.418.0
- '@aws-sdk/util-endpoints': 3.418.0
- '@smithy/protocol-http': 3.0.6
- '@smithy/types': 2.3.4
- tslib: 2.6.2
- dev: false
+ '@azure/core-lro@2.7.2':
+ resolution: {integrity: sha512-0YIpccoX8m/k00O7mDDMdJpbr6mf1yWo2dfmxt5A8XVZVVMz2SSKaEbMCeJRvgQ0IaSlqhjT47p4hVIRRy90xw==}
+ engines: {node: '>=18.0.0'}
- /@aws-sdk/middleware-user-agent/3.540.0:
- resolution: {integrity: sha512-8Rd6wPeXDnOYzWj1XCmOKcx/Q87L0K1/EHqOBocGjLVbN3gmRxBvpmR1pRTjf7IsWfnnzN5btqtcAkfDPYQUMQ==}
- engines: {node: '>=14.0.0'}
- dependencies:
- '@aws-sdk/types': 3.535.0
- '@aws-sdk/util-endpoints': 3.540.0
- '@smithy/protocol-http': 3.3.0
- '@smithy/types': 2.12.0
- tslib: 2.6.3
- dev: false
+ '@azure/core-paging@1.6.2':
+ resolution: {integrity: sha512-YKWi9YuCU04B55h25cnOYZHxXYtEvQEbKST5vqRga7hWY9ydd3FZHdeQF8pyh+acWZvppw13M/LMGx0LABUVMA==}
+ engines: {node: '>=18.0.0'}
- /@aws-sdk/middleware-user-agent/3.598.0:
- resolution: {integrity: sha512-4tjESlHG5B5MdjUaLK7tQs/miUtHbb6deauQx8ryqSBYOhfHVgb1ZnzvQR0bTrhpqUg0WlybSkDaZAICf9xctg==}
- engines: {node: '>=16.0.0'}
- dependencies:
- '@aws-sdk/types': 3.598.0
- '@aws-sdk/util-endpoints': 3.598.0
- '@smithy/protocol-http': 4.0.3
- '@smithy/types': 3.3.0
- tslib: 2.6.3
- dev: false
+ '@azure/core-rest-pipeline@1.18.0':
+ resolution: {integrity: sha512-QSoGUp4Eq/gohEFNJaUOwTN7BCc2nHTjjbm75JT0aD7W65PWM1H/tItz0GsABn22uaKyGxiMhWQLt2r+FGU89Q==}
+ engines: {node: '>=18.0.0'}
- /@aws-sdk/protocol-http/3.374.0:
- resolution: {integrity: sha512-9WpRUbINdGroV3HiZZIBoJvL2ndoWk39OfwxWs2otxByppJZNN14bg/lvCx5e8ggHUti7IBk5rb0nqQZ4m05pg==}
- engines: {node: '>=14.0.0'}
- deprecated: This package has moved to @smithy/protocol-http
- dependencies:
- '@smithy/protocol-http': 1.2.0
- tslib: 2.6.3
- dev: false
+ '@azure/core-tracing@1.2.0':
+ resolution: {integrity: sha512-UKTiEJPkWcESPYJz3X5uKRYyOcJD+4nYph+KpfdPRnQJVrZfk0KJgdnaAWKfhsBBtAf/D58Az4AvCJEmWgIBAg==}
+ engines: {node: '>=18.0.0'}
- /@aws-sdk/region-config-resolver/3.418.0:
- resolution: {integrity: sha512-lJRZ/9TjZU6yLz+mAwxJkcJZ6BmyYoIJVo1p5+BN//EFdEmC8/c0c9gXMRzfISV/mqWSttdtccpAyN4/goHTYA==}
- engines: {node: '>=14.0.0'}
- dependencies:
- '@smithy/node-config-provider': 2.0.13
- '@smithy/types': 2.3.4
- '@smithy/util-config-provider': 2.0.0
- '@smithy/util-middleware': 2.0.3
- tslib: 2.6.2
- dev: false
+ '@azure/core-util@1.11.0':
+ resolution: {integrity: sha512-DxOSLua+NdpWoSqULhjDyAZTXFdP/LKkqtYuxxz1SCN289zk3OG8UOpnCQAz/tygyACBtWp/BoO72ptK7msY8g==}
+ engines: {node: '>=18.0.0'}
+
+ '@azure/core-xml@1.4.4':
+ resolution: {integrity: sha512-J4FYAqakGXcbfeZjwjMzjNcpcH4E+JtEBv+xcV1yL0Ydn/6wbQfeFKTCHh9wttAi0lmajHw7yBbHPRG+YHckZQ==}
+ engines: {node: '>=18.0.0'}
- /@aws-sdk/region-config-resolver/3.535.0:
- resolution: {integrity: sha512-IXOznDiaItBjsQy4Fil0kzX/J3HxIOknEphqHbOfUf+LpA5ugcsxuQQONrbEQusCBnfJyymrldBvBhFmtlU9Wg==}
+ '@azure/identity@3.4.2':
+ resolution: {integrity: sha512-0q5DL4uyR0EZ4RXQKD8MadGH6zTIcloUoS/RVbCpNpej4pwte0xpqYxk8K97Py2RiuUvI7F4GXpoT4046VfufA==}
engines: {node: '>=14.0.0'}
- dependencies:
- '@aws-sdk/types': 3.535.0
- '@smithy/node-config-provider': 2.3.0
- '@smithy/types': 2.12.0
- '@smithy/util-config-provider': 2.3.0
- '@smithy/util-middleware': 2.2.0
- tslib: 2.6.3
- dev: false
- /@aws-sdk/region-config-resolver/3.598.0:
- resolution: {integrity: sha512-oYXhmTokSav4ytmWleCr3rs/1nyvZW/S0tdi6X7u+dLNL5Jee+uMxWGzgOrWK6wrQOzucLVjS4E/wA11Kv2GTw==}
- engines: {node: '>=16.0.0'}
- dependencies:
- '@aws-sdk/types': 3.598.0
- '@smithy/node-config-provider': 3.1.3
- '@smithy/types': 3.3.0
- '@smithy/util-config-provider': 3.0.0
- '@smithy/util-middleware': 3.0.3
- tslib: 2.6.3
- dev: false
+ '@azure/keyvault-common@2.0.0':
+ resolution: {integrity: sha512-wRLVaroQtOqfg60cxkzUkGKrKMsCP6uYXAOomOIysSMyt1/YM0eUn9LqieAWM8DLcU4+07Fio2YGpPeqUbpP9w==}
+ engines: {node: '>=18.0.0'}
- /@aws-sdk/s3-request-presigner/3.609.0:
- resolution: {integrity: sha512-WU39Gek3EJ/O8WGTVBbTETjdYl9jQqXqHAfYYf9+EKJRmkK70k1ox+o7nl3DTA4hFQPwMaTxRKToloFGM77Crw==}
- engines: {node: '>=16.0.0'}
- dependencies:
- '@aws-sdk/signature-v4-multi-region': 3.609.0
- '@aws-sdk/types': 3.609.0
- '@aws-sdk/util-format-url': 3.609.0
- '@smithy/middleware-endpoint': 3.0.4
- '@smithy/protocol-http': 4.0.3
- '@smithy/smithy-client': 3.1.6
- '@smithy/types': 3.3.0
- tslib: 2.6.3
- dev: false
-
- /@aws-sdk/signature-v4-multi-region/3.418.0:
- resolution: {integrity: sha512-LeVYMZeUQUURFqDf4yZxTEv016g64hi0LqYBjU0mjwd8aPc0k6hckwvshezc80jCNbuLyjNfQclvlg3iFliItQ==}
- engines: {node: '>=14.0.0'}
- dependencies:
- '@aws-sdk/types': 3.418.0
- '@smithy/protocol-http': 3.0.6
- '@smithy/signature-v4': 2.0.10
- '@smithy/types': 2.3.4
- tslib: 2.6.2
- dev: false
+ '@azure/keyvault-keys@4.9.0':
+ resolution: {integrity: sha512-ZBP07+K4Pj3kS4TF4XdkqFcspWwBHry3vJSOFM5k5ZABvf7JfiMonvaFk2nBF6xjlEbMpz5PE1g45iTMme0raQ==}
+ engines: {node: '>=18.0.0'}
- /@aws-sdk/signature-v4-multi-region/3.609.0:
- resolution: {integrity: sha512-FJs0BxVMyYOKNu7nzFI1kehfgWoYmdto5B8BSS29geUACF7jlOoeCfNZWVrnMjvAxVlSQ5O7Mr575932BnsycA==}
- engines: {node: '>=16.0.0'}
- dependencies:
- '@aws-sdk/middleware-sdk-s3': 3.609.0
- '@aws-sdk/types': 3.609.0
- '@smithy/protocol-http': 4.0.3
- '@smithy/signature-v4': 3.1.2
- '@smithy/types': 3.3.0
- tslib: 2.6.3
- dev: false
+ '@azure/logger@1.1.4':
+ resolution: {integrity: sha512-4IXXzcCdLdlXuCG+8UKEwLA1T1NHqUfanhXYHiQTn+6sfWCZXduqbtXDGceg3Ce5QxTGo7EqmbV6Bi+aqKuClQ==}
+ engines: {node: '>=18.0.0'}
- /@aws-sdk/signature-v4/3.374.0:
- resolution: {integrity: sha512-2xLJvSdzcZZAg0lsDLUAuSQuihzK0dcxIK7WmfuJeF7DGKJFmp9czQmz5f3qiDz6IDQzvgK1M9vtJSVCslJbyQ==}
- engines: {node: '>=14.0.0'}
- deprecated: This package has moved to @smithy/signature-v4
- dependencies:
- '@smithy/signature-v4': 1.1.0
- tslib: 2.6.3
- dev: false
+ '@azure/msal-browser@3.27.0':
+ resolution: {integrity: sha512-+b4ZKSD8+vslCtVRVetkegEhOFMLP3rxDWJY212ct+2r6jVg6OSQKc1Qz3kCoXo0FgwaXkb+76TMZfpHp8QtgA==}
+ engines: {node: '>=0.8.0'}
- /@aws-sdk/token-providers/3.418.0:
- resolution: {integrity: sha512-9P7Q0VN0hEzTngy3Sz5eya2qEOEf0Q8qf1vB3um0gE6ID6EVAdz/nc/DztfN32MFxk8FeVBrCP5vWdoOzmd72g==}
- engines: {node: '>=14.0.0'}
- dependencies:
- '@aws-crypto/sha256-browser': 3.0.0
- '@aws-crypto/sha256-js': 3.0.0
- '@aws-sdk/middleware-host-header': 3.418.0
- '@aws-sdk/middleware-logger': 3.418.0
- '@aws-sdk/middleware-recursion-detection': 3.418.0
- '@aws-sdk/middleware-user-agent': 3.418.0
- '@aws-sdk/types': 3.418.0
- '@aws-sdk/util-endpoints': 3.418.0
- '@aws-sdk/util-user-agent-browser': 3.418.0
- '@aws-sdk/util-user-agent-node': 3.418.0
- '@smithy/config-resolver': 2.2.0
- '@smithy/fetch-http-handler': 2.5.0
- '@smithy/hash-node': 2.2.0
- '@smithy/invalid-dependency': 2.2.0
- '@smithy/middleware-content-length': 2.2.0
- '@smithy/middleware-endpoint': 2.5.1
- '@smithy/middleware-retry': 2.3.1
- '@smithy/middleware-serde': 2.3.0
- '@smithy/middleware-stack': 2.2.0
- '@smithy/node-config-provider': 2.3.0
- '@smithy/node-http-handler': 2.5.0
- '@smithy/property-provider': 2.2.0
- '@smithy/protocol-http': 3.3.0
- '@smithy/shared-ini-file-loader': 2.4.0
- '@smithy/smithy-client': 2.5.1
- '@smithy/types': 2.12.0
- '@smithy/url-parser': 2.2.0
- '@smithy/util-base64': 2.3.0
- '@smithy/util-body-length-browser': 2.2.0
- '@smithy/util-body-length-node': 2.3.0
- '@smithy/util-defaults-mode-browser': 2.2.1
- '@smithy/util-defaults-mode-node': 2.3.1
- '@smithy/util-retry': 2.2.0
- '@smithy/util-utf8': 2.3.0
- tslib: 2.6.3
- transitivePeerDependencies:
- - aws-crt
- dev: false
+ '@azure/msal-common@14.16.0':
+ resolution: {integrity: sha512-1KOZj9IpcDSwpNiQNjt0jDYZpQvNZay7QAEi/5DLubay40iGYtLzya/jbjRPLyOTZhEKyL1MzPuw2HqBCjceYA==}
+ engines: {node: '>=0.8.0'}
- /@aws-sdk/token-providers/3.556.0_44iqpmbeuswd4eyeepqjgvbfii:
- resolution: {integrity: sha512-tvIiugNF0/+2wfuImMrpKjXMx4nCnFWQjQvouObny+wrif/PGqqQYrybwxPJDvzbd965bu1I+QuSv85/ug7xsg==}
- engines: {node: '>=14.0.0'}
- dependencies:
- '@aws-sdk/client-sso-oidc': 3.556.0_44iqpmbeuswd4eyeepqjgvbfii
- '@aws-sdk/types': 3.535.0
- '@smithy/property-provider': 2.2.0
- '@smithy/shared-ini-file-loader': 2.4.0
- '@smithy/types': 2.12.0
- tslib: 2.6.3
- transitivePeerDependencies:
- - '@aws-sdk/credential-provider-node'
- - aws-crt
- dev: false
+ '@azure/msal-node@2.16.2':
+ resolution: {integrity: sha512-An7l1hEr0w1HMMh1LU+rtDtqL7/jw74ORlc9Wnh06v7TU/xpG39/Zdr1ZJu3QpjUfKJ+E0/OXMW8DRSWTlh7qQ==}
+ engines: {node: '>=16'}
- /@aws-sdk/token-providers/3.598.0_dseaa2p5u2yk67qiepewcq3hkq:
- resolution: {integrity: sha512-TKY1EVdHVBnZqpyxyTHdpZpa1tUpb6nxVeRNn1zWG8QB5MvH4ALLd/jR+gtmWDNQbIG4cVuBOZFVL8hIYicKTA==}
- engines: {node: '>=16.0.0'}
+ '@azure/storage-blob@12.26.0':
+ resolution: {integrity: sha512-SriLPKezypIsiZ+TtlFfE46uuBIap2HeaQVS78e1P7rz5OSbq0rsd52WE1mC5f7vAeLiXqv7I7oRhL3WFZEw3Q==}
+ engines: {node: '>=18.0.0'}
+
+ '@babel/cli@7.25.9':
+ resolution: {integrity: sha512-I+02IfrTiSanpxJBlZQYb18qCxB6c2Ih371cVpfgIrPQrjAYkf45XxomTJOG8JBWX5GY35/+TmhCMdJ4ZPkL8Q==}
+ engines: {node: '>=6.9.0'}
+ hasBin: true
peerDependencies:
- '@aws-sdk/client-sso-oidc': ^3.598.0
- dependencies:
- '@aws-sdk/client-sso-oidc': 3.600.0
- '@aws-sdk/types': 3.598.0
- '@smithy/property-provider': 3.1.3
- '@smithy/shared-ini-file-loader': 3.1.3
- '@smithy/types': 3.3.0
- tslib: 2.6.3
- dev: false
+ '@babel/core': ^7.0.0-0
- /@aws-sdk/types/3.418.0:
- resolution: {integrity: sha512-y4PQSH+ulfFLY0+FYkaK4qbIaQI9IJNMO2xsxukW6/aNoApNymN1D2FSi2la8Qbp/iPjNDKsG8suNPm9NtsWXQ==}
- engines: {node: '>=14.0.0'}
- dependencies:
- '@smithy/types': 2.3.4
- tslib: 2.6.2
- dev: false
+ '@babel/code-frame@7.26.2':
+ resolution: {integrity: sha512-RJlIHRueQgwWitWgF8OdFYGZX328Ax5BCemNGlqHfplnRT9ESi8JkFlvaVYbS+UubVY6dpv87Fs2u5M29iNFVQ==}
+ engines: {node: '>=6.9.0'}
- /@aws-sdk/types/3.535.0:
- resolution: {integrity: sha512-aY4MYfduNj+sRR37U7XxYR8wemfbKP6lx00ze2M2uubn7mZotuVrWYAafbMSXrdEMSToE5JDhr28vArSOoLcSg==}
- engines: {node: '>=14.0.0'}
- dependencies:
- '@smithy/types': 2.12.0
- tslib: 2.6.3
- dev: false
+ '@babel/code-frame@8.0.0-alpha.13':
+ resolution: {integrity: sha512-XHZI7g8olZQC9HANu8xmsV55ir/AiTXW1ehzk3fsoFewfZXFjP+XJ5ppkgZFGyyXncH3+1FRzn2vc8xpTOH0sg==}
+ engines: {node: ^18.20.0 || ^20.17.0 || >=22.8.0}
- /@aws-sdk/types/3.598.0:
- resolution: {integrity: sha512-742uRl6z7u0LFmZwDrFP6r1wlZcgVPw+/TilluDJmCAR8BgRw3IR+743kUXKBGd8QZDRW2n6v/PYsi/AWCDDMQ==}
- engines: {node: '>=16.0.0'}
- dependencies:
- '@smithy/types': 3.2.0
- tslib: 2.6.3
- dev: false
-
- /@aws-sdk/types/3.609.0:
- resolution: {integrity: sha512-+Tqnh9w0h2LcrUsdXyT1F8mNhXz+tVYBtP19LpeEGntmvHwa2XzvLUCWpoIAIVsHp5+HdB2X9Sn0KAtmbFXc2Q==}
- engines: {node: '>=16.0.0'}
- dependencies:
- '@smithy/types': 3.3.0
- tslib: 2.6.3
- dev: false
-
- /@aws-sdk/util-arn-parser/3.310.0:
- resolution: {integrity: sha512-jL8509owp/xB9+Or0pvn3Fe+b94qfklc2yPowZZIFAkFcCSIdkIglz18cPDWnYAcy9JGewpMS1COXKIUhZkJsA==}
- engines: {node: '>=14.0.0'}
- dependencies:
- tslib: 2.6.3
- dev: false
-
- /@aws-sdk/util-arn-parser/3.568.0:
- resolution: {integrity: sha512-XUKJWWo+KOB7fbnPP0+g/o5Ulku/X53t7i/h+sPHr5xxYTJJ9CYnbToo95mzxe7xWvkLrsNtJ8L+MnNn9INs2w==}
- engines: {node: '>=16.0.0'}
- dependencies:
- tslib: 2.6.3
- dev: false
-
- /@aws-sdk/util-endpoints/3.418.0:
- resolution: {integrity: sha512-sYSDwRTl7yE7LhHkPzemGzmIXFVHSsi3AQ1KeNEk84eBqxMHHcCc2kqklaBk2roXWe50QDgRMy1ikZUxvtzNHQ==}
- engines: {node: '>=14.0.0'}
- dependencies:
- '@aws-sdk/types': 3.418.0
- tslib: 2.6.2
- dev: false
-
- /@aws-sdk/util-endpoints/3.540.0:
- resolution: {integrity: sha512-1kMyQFAWx6f8alaI6UT65/5YW/7pDWAKAdNwL6vuJLea03KrZRX3PMoONOSJpAS5m3Ot7HlWZvf3wZDNTLELZw==}
- engines: {node: '>=14.0.0'}
- dependencies:
- '@aws-sdk/types': 3.535.0
- '@smithy/types': 2.12.0
- '@smithy/util-endpoints': 1.2.0
- tslib: 2.6.3
- dev: false
-
- /@aws-sdk/util-endpoints/3.598.0:
- resolution: {integrity: sha512-Qo9UoiVVZxcOEdiOMZg3xb1mzkTxrhd4qSlg5QQrfWPJVx/QOg+Iy0NtGxPtHtVZNHZxohYwDwV/tfsnDSE2gQ==}
- engines: {node: '>=16.0.0'}
- dependencies:
- '@aws-sdk/types': 3.598.0
- '@smithy/types': 3.3.0
- '@smithy/util-endpoints': 2.0.3
- tslib: 2.6.3
- dev: false
-
- /@aws-sdk/util-format-url/3.418.0:
- resolution: {integrity: sha512-7/Xy+8J1txuOYOKsez6vpKTIkHYIIX4c7anjp/aQgUQL23FDwkPisj56cIlevJ7useGugnYw1rUR6fMULGzQ/g==}
- engines: {node: '>=14.0.0'}
- dependencies:
- '@aws-sdk/types': 3.418.0
- '@smithy/querystring-builder': 2.2.0
- '@smithy/types': 2.12.0
- tslib: 2.6.3
- dev: false
-
- /@aws-sdk/util-format-url/3.535.0:
- resolution: {integrity: sha512-ElbNkm0bddu53CuW44Iuux1ZbTV50fydbSh/4ypW3LrmUvHx193ogj0HXQ7X26kmmo9rXcsrLdM92yIeTjidVg==}
- engines: {node: '>=14.0.0'}
- dependencies:
- '@aws-sdk/types': 3.535.0
- '@smithy/querystring-builder': 2.2.0
- '@smithy/types': 2.12.0
- tslib: 2.6.3
- dev: false
-
- /@aws-sdk/util-format-url/3.609.0:
- resolution: {integrity: sha512-fuk29BI/oLQlJ7pfm6iJ4gkEpHdavffAALZwXh9eaY1vQ0ip0aKfRTiNudPoJjyyahnz5yJ1HkmlcDitlzsOrQ==}
- engines: {node: '>=16.0.0'}
- dependencies:
- '@aws-sdk/types': 3.609.0
- '@smithy/querystring-builder': 3.0.3
- '@smithy/types': 3.3.0
- tslib: 2.6.3
- dev: false
-
- /@aws-sdk/util-locate-window/3.310.0:
- resolution: {integrity: sha512-qo2t/vBTnoXpjKxlsC2e1gBrRm80M3bId27r0BRB2VniSSe7bL1mmzM+/HFtujm0iAxtPM+aLEflLJlJeDPg0w==}
- engines: {node: '>=14.0.0'}
- dependencies:
- tslib: 2.6.3
- dev: false
-
- /@aws-sdk/util-locate-window/3.568.0:
- resolution: {integrity: sha512-3nh4TINkXYr+H41QaPelCceEB2FXP3fxp93YZXB/kqJvX0U9j0N0Uk45gvsjmEPzG8XxkPEeLIfT2I1M7A6Lig==}
- engines: {node: '>=16.0.0'}
- dependencies:
- tslib: 2.6.3
- dev: false
-
- /@aws-sdk/util-user-agent-browser/3.418.0:
- resolution: {integrity: sha512-c4p4mc0VV/jIeNH0lsXzhJ1MpWRLuboGtNEpqE4s1Vl9ck2amv9VdUUZUmHbg+bVxlMgRQ4nmiovA4qIrqGuyg==}
- dependencies:
- '@aws-sdk/types': 3.418.0
- '@smithy/types': 2.3.4
- bowser: 2.11.0
- tslib: 2.6.2
- dev: false
-
- /@aws-sdk/util-user-agent-browser/3.535.0:
- resolution: {integrity: sha512-RWMcF/xV5n+nhaA/Ff5P3yNP3Kur/I+VNZngog4TEs92oB/nwOdAg/2JL8bVAhUbMrjTjpwm7PItziYFQoqyig==}
- dependencies:
- '@aws-sdk/types': 3.535.0
- '@smithy/types': 2.12.0
- bowser: 2.11.0
- tslib: 2.6.3
- dev: false
+ '@babel/compat-data@7.26.2':
+ resolution: {integrity: sha512-Z0WgzSEa+aUcdiJuCIqgujCshpMWgUpgOxXotrYPSA53hA3qopNaqcJpyr0hVb1FeWdnqFA35/fUtXgBK8srQg==}
+ engines: {node: '>=6.9.0'}
- /@aws-sdk/util-user-agent-browser/3.598.0:
- resolution: {integrity: sha512-36Sxo6F+ykElaL1mWzWjlg+1epMpSe8obwhCN1yGE7Js9ywy5U6k6l+A3q3YM9YRbm740sNxncbwLklMvuhTKw==}
- dependencies:
- '@aws-sdk/types': 3.598.0
- '@smithy/types': 3.3.0
- bowser: 2.11.0
- tslib: 2.6.3
- dev: false
+ '@babel/compat-data@8.0.0-alpha.13':
+ resolution: {integrity: sha512-a2T4tvQbbyHoeF9NUtc/lA3GcPBfP4WsoNpKjXQopGuXpraKGTM+MFwprLOIj/Nq7acTngy6aqHi+Snh30CP8A==}
+ engines: {node: ^18.20.0 || ^20.17.0 || >=22.8.0}
- /@aws-sdk/util-user-agent-node/3.418.0:
- resolution: {integrity: sha512-BXMskXFtg+dmzSCgmnWOffokxIbPr1lFqa1D9kvM3l3IFRiFGx2IyDg+8MAhq11aPDLvoa/BDuQ0Yqma5izOhg==}
- engines: {node: '>=14.0.0'}
- peerDependencies:
- aws-crt: '>=1.0.0'
- peerDependenciesMeta:
- aws-crt:
- optional: true
- dependencies:
- '@aws-sdk/types': 3.418.0
- '@smithy/node-config-provider': 2.3.0
- '@smithy/types': 2.12.0
- tslib: 2.6.3
- dev: false
+ '@babel/core@7.26.0':
+ resolution: {integrity: sha512-i1SLeK+DzNnQ3LL/CswPCa/E5u4lh1k6IAEphON8F+cXt0t9euTshDru0q7/IqMa1PMPz5RnHuHscF8/ZJsStg==}
+ engines: {node: '>=6.9.0'}
- /@aws-sdk/util-user-agent-node/3.535.0:
- resolution: {integrity: sha512-dRek0zUuIT25wOWJlsRm97nTkUlh1NDcLsQZIN2Y8KxhwoXXWtJs5vaDPT+qAg+OpcNj80i1zLR/CirqlFg/TQ==}
- engines: {node: '>=14.0.0'}
+ '@babel/core@8.0.0-alpha.13':
+ resolution: {integrity: sha512-mToUmr/2+a9kVXbDUezsvl3tRsIMclmEBzDo1nAeGN/3H/sjkY6+WvBysL77vq9XG/fjf5il8i9Bh61vxGGhiQ==}
+ engines: {node: ^18.20.0 || ^20.17.0 || >=22.8.0}
peerDependencies:
- aws-crt: '>=1.0.0'
+ '@babel/preset-typescript': ^7.21.4 || ^8.0.0-0
peerDependenciesMeta:
- aws-crt:
+ '@babel/preset-typescript':
optional: true
- dependencies:
- '@aws-sdk/types': 3.535.0
- '@smithy/node-config-provider': 2.3.0
- '@smithy/types': 2.12.0
- tslib: 2.6.3
- dev: false
- /@aws-sdk/util-user-agent-node/3.598.0:
- resolution: {integrity: sha512-oyWGcOlfTdzkC6SVplyr0AGh54IMrDxbhg5RxJ5P+V4BKfcDoDcZV9xenUk9NsOi9MuUjxMumb9UJGkDhM1m0A==}
- engines: {node: '>=16.0.0'}
+ '@babel/eslint-parser@8.0.0-alpha.13':
+ resolution: {integrity: sha512-y0Dynl2TRyeemrCp3ssNv+NQ1ELXZpob8P3CU8gjemFJyW/dSb3m/+nej3/U6GkrFniJ720O+1O8qddRbawcGw==}
+ engines: {node: ^18.20.0 || ^20.17.0 || >=22.8.0}
peerDependencies:
- aws-crt: '>=1.0.0'
- peerDependenciesMeta:
- aws-crt:
- optional: true
- dependencies:
- '@aws-sdk/types': 3.598.0
- '@smithy/node-config-provider': 3.1.3
- '@smithy/types': 3.3.0
- tslib: 2.6.3
- dev: false
-
- /@aws-sdk/util-utf8-browser/3.259.0:
- resolution: {integrity: sha512-UvFa/vR+e19XookZF8RzFZBrw2EUkQWxiBW0yYQAhvk3C+QVGl0H3ouca8LDBlBfQKXwmW3huo/59H8rwb1wJw==}
- dependencies:
- tslib: 2.6.3
- dev: false
-
- /@aws-sdk/xml-builder/3.310.0:
- resolution: {integrity: sha512-TqELu4mOuSIKQCqj63fGVs86Yh+vBx5nHRpWKNUNhB2nPTpfbziTs5c1X358be3peVWA4wPxW7Nt53KIg1tnNw==}
- engines: {node: '>=14.0.0'}
- dependencies:
- tslib: 2.6.3
- dev: false
-
- /@azure/abort-controller/1.1.0:
- resolution: {integrity: sha512-TrRLIoSQVzfAJX9H1JeFjzAoDGcoK1IYX1UImfceTZpsyYfWr09Ss1aHW1y5TrrR3iq6RZLBwJ3E24uwPhwahw==}
- engines: {node: '>=12.0.0'}
- dependencies:
- tslib: 2.6.3
- dev: false
-
- /@azure/core-auth/1.5.0:
- resolution: {integrity: sha512-udzoBuYG1VBoHVohDTrvKjyzel34zt77Bhp7dQntVGGD0ehVq48owENbBG8fIgkHRNUBQH5k1r0hpoMu5L8+kw==}
- engines: {node: '>=14.0.0'}
- dependencies:
- '@azure/abort-controller': 1.1.0
- '@azure/core-util': 1.5.0
- tslib: 2.6.3
- dev: false
-
- /@azure/core-client/1.7.3:
- resolution: {integrity: sha512-kleJ1iUTxcO32Y06dH9Pfi9K4U+Tlb111WXEnbt7R/ne+NLRwppZiTGJuTD5VVoxTMK5NTbEtm5t2vcdNCFe2g==}
- engines: {node: '>=14.0.0'}
- dependencies:
- '@azure/abort-controller': 1.1.0
- '@azure/core-auth': 1.5.0
- '@azure/core-rest-pipeline': 1.12.1
- '@azure/core-tracing': 1.0.1
- '@azure/core-util': 1.5.0
- '@azure/logger': 1.0.4
- tslib: 2.6.3
- transitivePeerDependencies:
- - supports-color
- dev: false
-
- /@azure/core-http-compat/1.3.0:
- resolution: {integrity: sha512-ZN9avruqbQ5TxopzG3ih3KRy52n8OAbitX3fnZT5go4hzu0J+KVPSzkL+Wt3hpJpdG8WIfg1sBD1tWkgUdEpBA==}
- engines: {node: '>=12.0.0'}
- dependencies:
- '@azure/abort-controller': 1.1.0
- '@azure/core-client': 1.7.3
- '@azure/core-rest-pipeline': 1.12.1
- transitivePeerDependencies:
- - supports-color
- dev: false
-
- /@azure/core-http/3.0.3:
- resolution: {integrity: sha512-QMib3wXotJMFhHgmJBPUF9YsyErw34H0XDFQd9CauH7TPB+RGcyl9Ayy7iURtJB04ngXhE6YwrQsWDXlSLrilg==}
- engines: {node: '>=14.0.0'}
- dependencies:
- '@azure/abort-controller': 1.1.0
- '@azure/core-auth': 1.5.0
- '@azure/core-tracing': 1.0.0-preview.13
- '@azure/core-util': 1.5.0
- '@azure/logger': 1.0.4
- '@types/node-fetch': 2.6.6
- '@types/tunnel': 0.0.3
- form-data: 4.0.1
- node-fetch: 2.7.0
- process: 0.11.10
- tslib: 2.6.3
- tunnel: 0.0.6
- uuid: 8.3.2
- xml2js: 0.5.0
- transitivePeerDependencies:
- - encoding
- dev: false
-
- /@azure/core-lro/2.5.4:
- resolution: {integrity: sha512-3GJiMVH7/10bulzOKGrrLeG/uCBH/9VtxqaMcB9lIqAeamI/xYQSHJL/KcsLDuH+yTjYpro/u6D/MuRe4dN70Q==}
- engines: {node: '>=14.0.0'}
- dependencies:
- '@azure/abort-controller': 1.1.0
- '@azure/core-util': 1.5.0
- '@azure/logger': 1.0.4
- tslib: 2.6.3
- dev: false
-
- /@azure/core-paging/1.5.0:
- resolution: {integrity: sha512-zqWdVIt+2Z+3wqxEOGzR5hXFZ8MGKK52x4vFLw8n58pR6ZfKRx3EXYTxTaYxYHc/PexPUTyimcTWFJbji9Z6Iw==}
- engines: {node: '>=14.0.0'}
- dependencies:
- tslib: 2.6.3
- dev: false
-
- /@azure/core-rest-pipeline/1.12.1:
- resolution: {integrity: sha512-SsyWQ+T5MFQRX+M8H/66AlaI6HyCbQStGfFngx2fuiW+vKI2DkhtOvbYodPyf9fOe/ARLWWc3ohX54lQ5Kmaog==}
- engines: {node: '>=14.0.0'}
- dependencies:
- '@azure/abort-controller': 1.1.0
- '@azure/core-auth': 1.5.0
- '@azure/core-tracing': 1.0.1
- '@azure/core-util': 1.5.0
- '@azure/logger': 1.0.4
- form-data: 4.0.1
- http-proxy-agent: 5.0.0
- https-proxy-agent: 5.0.1
- tslib: 2.6.3
- transitivePeerDependencies:
- - supports-color
- dev: false
-
- /@azure/core-tracing/1.0.0-preview.13:
- resolution: {integrity: sha512-KxDlhXyMlh2Jhj2ykX6vNEU0Vou4nHr025KoSEiz7cS3BNiHNaZcdECk/DmLkEB0as5T7b/TpRcehJ5yV6NeXQ==}
- engines: {node: '>=12.0.0'}
- dependencies:
- '@opentelemetry/api': 1.6.0
- tslib: 2.6.3
- dev: false
-
- /@azure/core-tracing/1.0.1:
- resolution: {integrity: sha512-I5CGMoLtX+pI17ZdiFJZgxMJApsK6jjfm85hpgp3oazCdq5Wxgh4wMr7ge/TTWW1B5WBuvIOI1fMU/FrOAMKrw==}
- engines: {node: '>=12.0.0'}
- dependencies:
- tslib: 2.6.3
- dev: false
-
- /@azure/core-util/1.5.0:
- resolution: {integrity: sha512-GZBpVFDtQ/15hW1OgBcRdT4Bl7AEpcEZqLfbAvOtm1CQUncKWiYapFHVD588hmlV27NbOOtSm3cnLF3lvoHi4g==}
- engines: {node: '>=14.0.0'}
- dependencies:
- '@azure/abort-controller': 1.1.0
- tslib: 2.6.3
- dev: false
-
- /@azure/identity/2.1.0:
- resolution: {integrity: sha512-BPDz1sK7Ul9t0l9YKLEa8PHqWU4iCfhGJ+ELJl6c8CP3TpJt2urNCbm0ZHsthmxRsYoMPbz2Dvzj30zXZVmAFw==}
- engines: {node: '>=12.0.0'}
- dependencies:
- '@azure/abort-controller': 1.1.0
- '@azure/core-auth': 1.5.0
- '@azure/core-client': 1.7.3
- '@azure/core-rest-pipeline': 1.12.1
- '@azure/core-tracing': 1.0.1
- '@azure/core-util': 1.5.0
- '@azure/logger': 1.0.4
- '@azure/msal-browser': 2.38.2
- '@azure/msal-common': 7.6.0
- '@azure/msal-node': 1.18.3
- events: 3.3.0
- jws: 4.0.0
- open: 8.4.2
- stoppable: 1.1.0
- tslib: 2.6.3
- uuid: 8.3.2
- transitivePeerDependencies:
- - supports-color
- dev: false
-
- /@azure/keyvault-keys/4.7.2:
- resolution: {integrity: sha512-VdIH6PjbQ3J5ntK+xeI8eOe1WsDxF9ndXw8BPR/9MZVnIj0vQNtNCS6gpR7EFQeGcs8XjzMfHm0AvKGErobqJQ==}
- engines: {node: '>=14.0.0'}
- dependencies:
- '@azure/abort-controller': 1.1.0
- '@azure/core-auth': 1.5.0
- '@azure/core-client': 1.7.3
- '@azure/core-http-compat': 1.3.0
- '@azure/core-lro': 2.5.4
- '@azure/core-paging': 1.5.0
- '@azure/core-rest-pipeline': 1.12.1
- '@azure/core-tracing': 1.0.1
- '@azure/core-util': 1.5.0
- '@azure/logger': 1.0.4
- tslib: 2.6.3
- transitivePeerDependencies:
- - supports-color
- dev: false
-
- /@azure/logger/1.0.4:
- resolution: {integrity: sha512-ustrPY8MryhloQj7OWGe+HrYx+aoiOxzbXTtgblbV3xwCqpzUK36phH3XNHQKj3EPonyFUuDTfR3qFhTEAuZEg==}
- engines: {node: '>=14.0.0'}
- dependencies:
- tslib: 2.6.3
- dev: false
-
- /@azure/msal-browser/2.38.2:
- resolution: {integrity: sha512-71BeIn2we6LIgMplwCSaMq5zAwmalyJR3jFcVOZxNVfQ1saBRwOD+P77nLs5vrRCedVKTq8RMFhIOdpMLNno0A==}
- engines: {node: '>=0.8.0'}
- dependencies:
- '@azure/msal-common': 13.3.0
- dev: false
-
- /@azure/msal-common/13.3.0:
- resolution: {integrity: sha512-/VFWTicjcJbrGp3yQP7A24xU95NiDMe23vxIU1U6qdRPFsprMDNUohMudclnd+WSHE4/McqkZs/nUU3sAKkVjg==}
- engines: {node: '>=0.8.0'}
- dev: false
-
- /@azure/msal-common/7.6.0:
- resolution: {integrity: sha512-XqfbglUTVLdkHQ8F9UQJtKseRr3sSnr9ysboxtoswvaMVaEfvyLtMoHv9XdKUfOc0qKGzNgRFd9yRjIWVepl6Q==}
- engines: {node: '>=0.8.0'}
- dev: false
-
- /@azure/msal-node/1.18.3:
- resolution: {integrity: sha512-lI1OsxNbS/gxRD4548Wyj22Dk8kS7eGMwD9GlBZvQmFV8FJUXoXySL1BiNzDsHUE96/DS/DHmA+F73p1Dkcktg==}
- engines: {node: 10 || 12 || 14 || 16 || 18}
- dependencies:
- '@azure/msal-common': 13.3.0
- jsonwebtoken: 9.0.2
- uuid: 8.3.2
- dev: false
-
- /@azure/storage-blob/12.16.0:
- resolution: {integrity: sha512-jz33rUSUGUB65FgYrTRgRDjG6hdPHwfvHe+g/UrwVG8MsyLqSxg9TaW7Yuhjxu1v1OZ5xam2NU6+IpCN0xJO8Q==}
- engines: {node: '>=14.0.0'}
- dependencies:
- '@azure/abort-controller': 1.1.0
- '@azure/core-http': 3.0.3
- '@azure/core-lro': 2.5.4
- '@azure/core-paging': 1.5.0
- '@azure/core-tracing': 1.0.0-preview.13
- '@azure/logger': 1.0.4
- events: 3.3.0
- tslib: 2.6.3
- transitivePeerDependencies:
- - encoding
- dev: false
+ '@babel/core': ^8.0.0-alpha.13
+ eslint: ^8.9.0 || ^9.0.0
- /@babel/cli/7.23.0_@babel+core@7.23.0:
- resolution: {integrity: sha512-17E1oSkGk2IwNILM4jtfAvgjt+ohmpfBky8aLerUfYZhiPNg7ca+CRCxZn8QDxwNhV/upsc2VHBCqGFIR+iBfA==}
+ '@babel/generator@7.26.2':
+ resolution: {integrity: sha512-zevQbhbau95nkoxSq3f/DC/SC+EEOUZd3DYqfSkMhY2/wfSeaHV1Ew4vk8e+x8lja31IbyuUa2uQ3JONqKbysw==}
engines: {node: '>=6.9.0'}
- hasBin: true
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.23.0
- '@jridgewell/trace-mapping': 0.3.25
- commander: 4.1.1
- convert-source-map: 2.0.0
- fs-readdir-recursive: 1.1.0
- glob: 7.2.3
- make-dir: 2.1.0
- slash: 2.0.0
- optionalDependencies:
- '@nicolo-ribaudo/chokidar-2': 2.1.8-no-fsevents.3
- chokidar: 3.6.0
- dev: false
- /@babel/code-frame/7.22.13:
- resolution: {integrity: sha512-XktuhWlJ5g+3TJXc5upd9Ks1HutSArik6jf2eAjYFyIOf4ej3RN+184cZbzDvbPnuTJIUhPKKJE3cIsYTiAT3w==}
- engines: {node: '>=6.9.0'}
- dependencies:
- '@babel/highlight': 7.22.20
- chalk: 2.4.2
+ '@babel/generator@8.0.0-alpha.13':
+ resolution: {integrity: sha512-CBRdcDMMkUn7WGyQI6hbHKrRpBo1IT/PsA4UrZiIhg4+CP3qLCOZhBsF3vLmRdxe+xDmlM1oRn2PQneXmwFlZQ==}
+ engines: {node: ^18.20.0 || ^20.17.0 || >=22.8.0}
- /@babel/code-frame/7.24.7:
- resolution: {integrity: sha512-BcYH1CVJBO9tvyIZ2jVeXgSIMvGZ2FDRvDdOIVQyuklNKSsx+eppDEBq/g47Ayw+RqNFE+URvOShmf+f/qwAlA==}
+ '@babel/helper-annotate-as-pure@7.25.9':
+ resolution: {integrity: sha512-gv7320KBUFJz1RnylIg5WWYPRXKZ884AGkYpgpWW02TH66Dl+HaC1t1CKd0z3R4b6hdYEcmrNZHUmfCP+1u3/g==}
engines: {node: '>=6.9.0'}
- dependencies:
- '@babel/highlight': 7.24.7
- picocolors: 1.0.1
- /@babel/compat-data/7.22.20:
- resolution: {integrity: sha512-BQYjKbpXjoXwFW5jGqiizJQQT/aC7pFm9Ok1OWssonuguICi264lbgMzRp2ZMmRSlfkX6DsWDDcsrctK8Rwfiw==}
+ '@babel/helper-builder-binary-assignment-operator-visitor@7.25.9':
+ resolution: {integrity: sha512-C47lC7LIDCnz0h4vai/tpNOI95tCd5ZT3iBt/DBH5lXKHZsyNQv18yf1wIIg2ntiQNgmAvA+DgZ82iW8Qdym8g==}
engines: {node: '>=6.9.0'}
- /@babel/compat-data/7.25.2:
- resolution: {integrity: sha512-bYcppcpKBvX4znYaPEeFau03bp89ShqNMLs+rmdptMw+heSZh9+z84d2YG+K7cYLbWwzdjtDoW/uqZmPjulClQ==}
+ '@babel/helper-compilation-targets@7.25.9':
+ resolution: {integrity: sha512-j9Db8Suy6yV/VHa4qzrj9yZfZxhLWQdVnRlXxmKLYlhWUVB1sB2G5sxuWYXk/whHD9iW76PmNzxZ4UCnTQTVEQ==}
engines: {node: '>=6.9.0'}
- /@babel/core/7.23.0:
- resolution: {integrity: sha512-97z/ju/Jy1rZmDxybphrBuI+jtJjFVoz7Mr9yUQVVVi+DNZE333uFQeMOqcCIy1x3WYBIbWftUSLmbNXNT7qFQ==}
- engines: {node: '>=6.9.0'}
- dependencies:
- '@ampproject/remapping': 2.2.1
- '@babel/code-frame': 7.22.13
- '@babel/generator': 7.23.0
- '@babel/helper-compilation-targets': 7.22.15
- '@babel/helper-module-transforms': 7.23.0_@babel+core@7.23.0
- '@babel/helpers': 7.23.1
- '@babel/parser': 7.23.0
- '@babel/template': 7.22.15
- '@babel/traverse': 7.23.0
- '@babel/types': 7.23.0
- convert-source-map: 2.0.0
- debug: 4.3.4
- gensync: 1.0.0-beta.2
- json5: 2.2.3
- semver: 6.3.1
- transitivePeerDependencies:
- - supports-color
+ '@babel/helper-compilation-targets@8.0.0-alpha.13':
+ resolution: {integrity: sha512-a9Dhjj5zG18x0+9DvDb59dz70y1vuGSXisx9+893Ku5pf0YSFpPOR1m9OiAjcZ2LQJ+xevgCQU7H87SSeb75Gw==}
+ engines: {node: ^18.20.0 || ^20.17.0 || >=22.8.0}
- /@babel/core/7.25.2:
- resolution: {integrity: sha512-BBt3opiCOxUr9euZ5/ro/Xv8/V7yJ5bjYMqG/C1YAo8MIKAnumZalCN+msbci3Pigy4lIQfPUpfMM27HMGaYEA==}
+ '@babel/helper-create-class-features-plugin@7.25.9':
+ resolution: {integrity: sha512-UTZQMvt0d/rSz6KI+qdu7GQze5TIajwTS++GUozlw8VBJDEOAqSXwm1WvmYEZwqdqSGQshRocPDqrt4HBZB3fQ==}
engines: {node: '>=6.9.0'}
- dependencies:
- '@ampproject/remapping': 2.3.0
- '@babel/code-frame': 7.24.7
- '@babel/generator': 7.25.0
- '@babel/helper-compilation-targets': 7.25.2
- '@babel/helper-module-transforms': 7.25.2_@babel+core@7.25.2
- '@babel/helpers': 7.25.0
- '@babel/parser': 7.25.3
- '@babel/template': 7.25.0
- '@babel/traverse': 7.25.3
- '@babel/types': 7.25.2
- convert-source-map: 2.0.0
- debug: 4.3.6
- gensync: 1.0.0-beta.2
- json5: 2.2.3
- semver: 6.3.1
- transitivePeerDependencies:
- - supports-color
- dev: true
-
- /@babel/eslint-parser/7.22.15_uyhtsqgctq6k5edt5xbx6l7m4m:
- resolution: {integrity: sha512-yc8OOBIQk1EcRrpizuARSQS0TWAcOMpEJ1aafhNznaeYkeL+OhqnDObGFylB8ka8VFF/sZc+S4RzHyO+3LjQxg==}
- engines: {node: ^10.13.0 || ^12.13.0 || >=14.0.0}
peerDependencies:
- '@babel/core': ^7.11.0
- eslint: ^7.5.0 || ^8.0.0
- dependencies:
- '@babel/core': 7.23.0
- '@nicolo-ribaudo/eslint-scope-5-internals': 5.1.1-v1
- eslint: 8.15.0
- eslint-visitor-keys: 2.1.0
- semver: 6.3.1
- dev: true
+ '@babel/core': ^7.0.0
- /@babel/generator/7.23.0:
- resolution: {integrity: sha512-lN85QRR+5IbYrMWM6Y4pE/noaQtg4pNiqeNGX60eqOfo6gtEj6uw/JagelB8vVztSd7R6M5n1+PQkDbHbBRU4g==}
+ '@babel/helper-create-regexp-features-plugin@7.25.9':
+ resolution: {integrity: sha512-ORPNZ3h6ZRkOyAa/SaHU+XsLZr0UQzRwuDQ0cczIA17nAzZ+85G5cVkOJIj7QavLZGSe8QXUmNFxSZzjcZF9bw==}
engines: {node: '>=6.9.0'}
- dependencies:
- '@babel/types': 7.25.2
- '@jridgewell/gen-mapping': 0.3.5
- '@jridgewell/trace-mapping': 0.3.25
- jsesc: 2.5.2
+ peerDependencies:
+ '@babel/core': ^7.0.0
+
+ '@babel/helper-define-polyfill-provider@0.6.3':
+ resolution: {integrity: sha512-HK7Bi+Hj6H+VTHA3ZvBis7V/6hu9QuTrnMXNybfUf2iiuU/N97I8VjB+KbhFF8Rld/Lx5MzoCwPCpPjfK+n8Cg==}
+ peerDependencies:
+ '@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0
- /@babel/generator/7.25.0:
- resolution: {integrity: sha512-3LEEcj3PVW8pW2R1SR1M89g/qrYk/m/mB/tLqn7dn4sbBUQyTqnlod+II2U4dqiGtUmkcnAmkMDralTFZttRiw==}
+ '@babel/helper-member-expression-to-functions@7.25.9':
+ resolution: {integrity: sha512-wbfdZ9w5vk0C0oyHqAJbc62+vet5prjj01jjJ8sKn3j9h3MQQlflEdXYvuqRWjHnM12coDEqiC1IRCi0U/EKwQ==}
engines: {node: '>=6.9.0'}
- dependencies:
- '@babel/types': 7.25.2
- '@jridgewell/gen-mapping': 0.3.5
- '@jridgewell/trace-mapping': 0.3.25
- jsesc: 2.5.2
- /@babel/helper-annotate-as-pure/7.22.5:
- resolution: {integrity: sha512-LvBTxu8bQSQkcyKOU+a1btnNFQ1dMAd0R6PyW3arXes06F6QLWLIrd681bxRPIXlrMGR3XYnW9JyML7dP3qgxg==}
+ '@babel/helper-module-imports@7.25.9':
+ resolution: {integrity: sha512-tnUA4RsrmflIM6W6RFTLFSXITtl0wKjgpnLgXyowocVPrbYrLUXSBXDgTs8BlbmIzIdlBySRQjINYs2BAkiLtw==}
engines: {node: '>=6.9.0'}
- dependencies:
- '@babel/types': 7.25.2
- dev: false
- /@babel/helper-builder-binary-assignment-operator-visitor/7.22.15:
- resolution: {integrity: sha512-QkBXwGgaoC2GtGZRoma6kv7Szfv06khvhFav67ZExau2RaXzy8MpHSMO2PNoP2XtmQphJQRHFfg77Bq731Yizw==}
+ '@babel/helper-module-transforms@7.26.0':
+ resolution: {integrity: sha512-xO+xu6B5K2czEnQye6BHA7DolFFmS3LB7stHZFaOLb1pAwO1HWLS8fXA+eh0A2yIvltPVmx3eNNDBJA2SLHXFw==}
engines: {node: '>=6.9.0'}
- dependencies:
- '@babel/types': 7.25.2
- dev: false
+ peerDependencies:
+ '@babel/core': ^7.0.0
- /@babel/helper-compilation-targets/7.22.15:
- resolution: {integrity: sha512-y6EEzULok0Qvz8yyLkCvVX+02ic+By2UdOhylwUOvOn9dvYc9mKICJuuU1n1XBI02YWsNsnrY1kc6DVbjcXbtw==}
+ '@babel/helper-optimise-call-expression@7.25.9':
+ resolution: {integrity: sha512-FIpuNaz5ow8VyrYcnXQTDRGvV6tTjkNtCK/RYNDXGSLlUD6cBuQTSw43CShGxjvfBTfcUA/r6UhUCbtYqkhcuQ==}
engines: {node: '>=6.9.0'}
- dependencies:
- '@babel/compat-data': 7.22.20
- '@babel/helper-validator-option': 7.22.15
- browserslist: 4.23.3
- lru-cache: 5.1.1
- semver: 6.3.1
- /@babel/helper-compilation-targets/7.25.2:
- resolution: {integrity: sha512-U2U5LsSaZ7TAt3cfaymQ8WHh0pxvdHoEk6HVpaexxixjyEquMh0L0YNJNM6CTGKMXV1iksi0iZkGw4AcFkPaaw==}
+ '@babel/helper-plugin-utils@7.25.9':
+ resolution: {integrity: sha512-kSMlyUVdWe25rEsRGviIgOWnoT/nfABVWlqt9N19/dIPWViAOW2s9wznP5tURbs/IDuNk4gPy3YdYRgH3uxhBw==}
engines: {node: '>=6.9.0'}
- dependencies:
- '@babel/compat-data': 7.25.2
- '@babel/helper-validator-option': 7.24.8
- browserslist: 4.23.3
- lru-cache: 5.1.1
- semver: 6.3.1
- /@babel/helper-create-class-features-plugin/7.22.15_@babel+core@7.23.0:
- resolution: {integrity: sha512-jKkwA59IXcvSaiK2UN45kKwSC9o+KuoXsBDvHvU/7BecYIp8GQ2UwrVvFgJASUT+hBnwJx6MhvMCuMzwZZ7jlg==}
+ '@babel/helper-remap-async-to-generator@7.25.9':
+ resolution: {integrity: sha512-IZtukuUeBbhgOcaW2s06OXTzVNJR0ybm4W5xC1opWFFJMZbwRj5LCk+ByYH7WdZPZTt8KnFwA8pvjN2yqcPlgw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
- dependencies:
- '@babel/core': 7.23.0
- '@babel/helper-annotate-as-pure': 7.22.5
- '@babel/helper-environment-visitor': 7.22.20
- '@babel/helper-function-name': 7.23.0
- '@babel/helper-member-expression-to-functions': 7.23.0
- '@babel/helper-optimise-call-expression': 7.22.5
- '@babel/helper-replace-supers': 7.22.20_@babel+core@7.23.0
- '@babel/helper-skip-transparent-expression-wrappers': 7.22.5
- '@babel/helper-split-export-declaration': 7.22.6
- semver: 6.3.1
- dev: false
- /@babel/helper-create-regexp-features-plugin/7.22.15_@babel+core@7.23.0:
- resolution: {integrity: sha512-29FkPLFjn4TPEa3RE7GpW+qbE8tlsu3jntNYNfcGsc49LphF1PQIiD+vMZ1z1xVOKt+93khA9tc2JBs3kBjA7w==}
+ '@babel/helper-replace-supers@7.25.9':
+ resolution: {integrity: sha512-IiDqTOTBQy0sWyeXyGSC5TBJpGFXBkRynjBeXsvbhQFKj2viwJC76Epz35YLU1fpe/Am6Vppb7W7zM4fPQzLsQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
- dependencies:
- '@babel/core': 7.23.0
- '@babel/helper-annotate-as-pure': 7.22.5
- regexpu-core: 5.3.2
- semver: 6.3.1
- dev: false
- /@babel/helper-define-polyfill-provider/0.4.2_@babel+core@7.23.0:
- resolution: {integrity: sha512-k0qnnOqHn5dK9pZpfD5XXZ9SojAITdCKRn2Lp6rnDGzIbaP0rHyMPk/4wsSxVBVz4RfN0q6VpXWP2pDGIoQ7hw==}
- peerDependencies:
- '@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0
- dependencies:
- '@babel/core': 7.23.0
- '@babel/helper-compilation-targets': 7.25.2
- '@babel/helper-plugin-utils': 7.24.8
- debug: 4.3.6
- lodash.debounce: 4.0.8
- resolve: 1.22.8
- transitivePeerDependencies:
- - supports-color
- dev: false
+ '@babel/helper-simple-access@7.25.9':
+ resolution: {integrity: sha512-c6WHXuiaRsJTyHYLJV75t9IqsmTbItYfdj99PnzYGQZkYKvan5/2jKJ7gu31J3/BJ/A18grImSPModuyG/Eo0Q==}
+ engines: {node: '>=6.9.0'}
- /@babel/helper-environment-visitor/7.22.20:
- resolution: {integrity: sha512-zfedSIzFhat/gFhWfHtgWvlec0nqB9YEIVrpuwjruLlXfUSnA8cJB0miHKwqDnQ7d32aKo2xt88/xZptwxbfhA==}
+ '@babel/helper-skip-transparent-expression-wrappers@7.25.9':
+ resolution: {integrity: sha512-K4Du3BFa3gvyhzgPcntrkDgZzQaq6uozzcpGbOO1OEJaI+EJdqWIMTLgFgQf6lrfiDFo5FU+BxKepI9RmZqahA==}
engines: {node: '>=6.9.0'}
- /@babel/helper-function-name/7.23.0:
- resolution: {integrity: sha512-OErEqsrxjZTJciZ4Oo+eoZqeW9UIiOcuYKRJA4ZAgV9myA+pOXhhmpfNCKjEH/auVfEYVFJ6y1Tc4r0eIApqiw==}
+ '@babel/helper-string-parser@7.25.9':
+ resolution: {integrity: sha512-4A/SCr/2KLd5jrtOMFzaKjVtAei3+2r/NChoBNoZ3EyP/+GlhoaEGoWOZUmFmoITP7zOJyHIMm+DYRd8o3PvHA==}
engines: {node: '>=6.9.0'}
- dependencies:
- '@babel/template': 7.25.0
- '@babel/types': 7.25.2
- /@babel/helper-hoist-variables/7.22.5:
- resolution: {integrity: sha512-wGjk9QZVzvknA6yKIUURb8zY3grXCcOZt+/7Wcy8O2uctxhplmUPkOdlgoNhmdVee2c92JXbf1xpMtVNbfoxRw==}
+ '@babel/helper-string-parser@8.0.0-alpha.13':
+ resolution: {integrity: sha512-YHapkEwMu3nqoikRQhUqPZXUjqRepotzlYww49FWObNaU+9CKYtOJkJBwfY9RmcFDsFqGeLNk+IUSWRPgwhujA==}
+ engines: {node: ^18.20.0 || ^20.17.0 || >=22.8.0}
+
+ '@babel/helper-validator-identifier@7.25.9':
+ resolution: {integrity: sha512-Ed61U6XJc3CVRfkERJWDz4dJwKe7iLmmJsbOGu9wSloNSFttHV0I8g6UAgb7qnK5ly5bGLPd4oXZlxCdANBOWQ==}
engines: {node: '>=6.9.0'}
- dependencies:
- '@babel/types': 7.25.2
- /@babel/helper-member-expression-to-functions/7.23.0:
- resolution: {integrity: sha512-6gfrPwh7OuT6gZyJZvd6WbTfrqAo7vm4xCzAXOusKqq/vWdKXphTpj5klHKNmRUU6/QRGlBsyU9mAIPaWHlqJA==}
+ '@babel/helper-validator-identifier@8.0.0-alpha.13':
+ resolution: {integrity: sha512-/IZpaAHTp39t0YIZQT51w7xEAPVlEYA9YsxA4tUsveqjvkK47rc/teUWzhQnXKwMwWDiSnP9vLfxYCR2DomrWg==}
+ engines: {node: ^18.20.0 || ^20.17.0 || >=22.8.0}
+
+ '@babel/helper-validator-option@7.25.9':
+ resolution: {integrity: sha512-e/zv1co8pp55dNdEcCynfj9X7nyUKUXoUEwfXqaZt0omVOmDe9oOTdKStH4GmAw6zxMFs50ZayuMfHDKlO7Tfw==}
engines: {node: '>=6.9.0'}
- dependencies:
- '@babel/types': 7.25.2
- dev: false
- /@babel/helper-module-imports/7.22.15:
- resolution: {integrity: sha512-0pYVBnDKZO2fnSPCrgM/6WMc7eS20Fbok+0r88fp+YtWVLZrp4CkafFGIp+W0VKw4a22sgebPT99y+FDNMdP4w==}
+ '@babel/helper-validator-option@8.0.0-alpha.13':
+ resolution: {integrity: sha512-qjrC/A2ee/XFnq+h+3mTyKuTzgGY3yPNPZoZWJ+zu0r9qz7UgJgDmJsRkz/voo8wRp/CoSRulX5fkP6puzD2ew==}
+ engines: {node: ^18.20.0 || ^20.17.0 || >=22.8.0}
+
+ '@babel/helper-wrap-function@7.25.9':
+ resolution: {integrity: sha512-ETzz9UTjQSTmw39GboatdymDq4XIQbR8ySgVrylRhPOFpsd+JrKHIuF0de7GCWmem+T4uC5z7EZguod7Wj4A4g==}
engines: {node: '>=6.9.0'}
- dependencies:
- '@babel/types': 7.25.2
- /@babel/helper-module-imports/7.24.7:
- resolution: {integrity: sha512-8AyH3C+74cgCVVXow/myrynrAGv+nTVg5vKu2nZph9x7RcRwzmh0VFallJuFTZ9mx6u4eSdXZfcOzSqTUm0HCA==}
+ '@babel/helpers@7.26.0':
+ resolution: {integrity: sha512-tbhNuIxNcVb21pInl3ZSjksLCvgdZy9KwJ8brv993QtIVKJBBkYXz4q4ZbAv31GdnC+R90np23L5FbEBlthAEw==}
engines: {node: '>=6.9.0'}
- dependencies:
- '@babel/traverse': 7.25.3
- '@babel/types': 7.25.2
- transitivePeerDependencies:
- - supports-color
- /@babel/helper-module-transforms/7.23.0_@babel+core@7.23.0:
- resolution: {integrity: sha512-WhDWw1tdrlT0gMgUJSlX0IQvoO1eN279zrAUbVB+KpV2c3Tylz8+GnKOLllCS6Z/iZQEyVYxhZVUdPTqs2YYPw==}
+ '@babel/helpers@8.0.0-alpha.13':
+ resolution: {integrity: sha512-5eg5zVmuxAmU0LuzJKlExrixo0xUGb3kvEoBWh+/Et7dQD5fdJV6Jmq2gLjhSFfxaN3SGg3bVjOOspRBmYIpOA==}
+ engines: {node: ^18.20.0 || ^20.17.0 || >=22.8.0}
+
+ '@babel/parser@7.26.2':
+ resolution: {integrity: sha512-DWMCZH9WA4Maitz2q21SRKHo9QXZxkDsbNZoVD62gusNtNBBqDg9i7uOhASfTfIGNzW+O+r7+jAlM8dwphcJKQ==}
+ engines: {node: '>=6.0.0'}
+ hasBin: true
+
+ '@babel/parser@8.0.0-alpha.13':
+ resolution: {integrity: sha512-b8jxzP/fDYLjByadJgnXutKZvjXJUIyf0bIWMUIX47jhtbgA3ZFPC0PByLlqD6rKhTbgvuGHZ0GQilMFL5EaOQ==}
+ engines: {node: ^18.20.0 || ^20.17.0 || >=22.8.0}
+ hasBin: true
+
+ '@babel/plugin-bugfix-firefox-class-in-computed-class-key@7.25.9':
+ resolution: {integrity: sha512-ZkRyVkThtxQ/J6nv3JFYv1RYY+JT5BvU0y3k5bWrmuG4woXypRa4PXmm9RhOwodRkYFWqC0C0cqcJ4OqR7kW+g==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
- dependencies:
- '@babel/core': 7.23.0
- '@babel/helper-environment-visitor': 7.22.20
- '@babel/helper-module-imports': 7.22.15
- '@babel/helper-simple-access': 7.22.5
- '@babel/helper-split-export-declaration': 7.22.6
- '@babel/helper-validator-identifier': 7.22.20
- /@babel/helper-module-transforms/7.25.2_@babel+core@7.23.0:
- resolution: {integrity: sha512-BjyRAbix6j/wv83ftcVJmBt72QtHI56C7JXZoG2xATiLpmoC7dpd8WnkikExHDVPpi/3qCmO6WY1EaXOluiecQ==}
+ '@babel/plugin-bugfix-safari-class-field-initializer-scope@7.25.9':
+ resolution: {integrity: sha512-MrGRLZxLD/Zjj0gdU15dfs+HH/OXvnw/U4jJD8vpcP2CJQapPEv1IWwjc/qMg7ItBlPwSv1hRBbb7LeuANdcnw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
- dependencies:
- '@babel/core': 7.23.0
- '@babel/helper-module-imports': 7.24.7
- '@babel/helper-simple-access': 7.24.7
- '@babel/helper-validator-identifier': 7.24.7
- '@babel/traverse': 7.25.3
- transitivePeerDependencies:
- - supports-color
- dev: false
- /@babel/helper-module-transforms/7.25.2_@babel+core@7.25.2:
- resolution: {integrity: sha512-BjyRAbix6j/wv83ftcVJmBt72QtHI56C7JXZoG2xATiLpmoC7dpd8WnkikExHDVPpi/3qCmO6WY1EaXOluiecQ==}
+ '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@7.25.9':
+ resolution: {integrity: sha512-2qUwwfAFpJLZqxd02YW9btUCZHl+RFvdDkNfZwaIJrvB8Tesjsk8pEQkTvGwZXLqXUx/2oyY3ySRhm6HOXuCug==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
- dependencies:
- '@babel/core': 7.25.2
- '@babel/helper-module-imports': 7.24.7
- '@babel/helper-simple-access': 7.24.7
- '@babel/helper-validator-identifier': 7.24.7
- '@babel/traverse': 7.25.3
- transitivePeerDependencies:
- - supports-color
- dev: true
-
- /@babel/helper-optimise-call-expression/7.22.5:
- resolution: {integrity: sha512-HBwaojN0xFRx4yIvpwGqxiV2tUfl7401jlok564NgB9EHS1y6QT17FmKWm4ztqjeVdXLuC4fSvHc5ePpQjoTbw==}
- engines: {node: '>=6.9.0'}
- dependencies:
- '@babel/types': 7.25.2
- dev: false
-
- /@babel/helper-plugin-utils/7.24.8:
- resolution: {integrity: sha512-FFWx5142D8h2Mgr/iPVGH5G7w6jDn4jUSpZTyDnQO0Yn7Ks2Kuz6Pci8H6MPCoUJegd/UZQ3tAvfLCxQSnWWwg==}
- engines: {node: '>=6.9.0'}
-
- /@babel/helper-remap-async-to-generator/7.22.20_@babel+core@7.23.0:
- resolution: {integrity: sha512-pBGyV4uBqOns+0UvhsTO8qgl8hO89PmiDYv+/COyp1aeMcmfrfruz+/nCMFiYyFF/Knn0yfrC85ZzNFjembFTw==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0
- dependencies:
- '@babel/core': 7.23.0
- '@babel/helper-annotate-as-pure': 7.22.5
- '@babel/helper-environment-visitor': 7.22.20
- '@babel/helper-wrap-function': 7.22.20
- dev: false
- /@babel/helper-replace-supers/7.22.20_@babel+core@7.23.0:
- resolution: {integrity: sha512-qsW0In3dbwQUbK8kejJ4R7IHVGwHJlV6lpG6UA7a9hSa2YEiAib+N1T2kr6PEeUT+Fl7najmSOS6SmAwCHK6Tw==}
+ '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@7.25.9':
+ resolution: {integrity: sha512-6xWgLZTJXwilVjlnV7ospI3xi+sl8lN8rXXbBD6vYn3UYDlGsag8wrZkKcSI8G6KgqKP7vNFaDgeDnfAABq61g==}
engines: {node: '>=6.9.0'}
peerDependencies:
- '@babel/core': ^7.0.0
- dependencies:
- '@babel/core': 7.23.0
- '@babel/helper-environment-visitor': 7.22.20
- '@babel/helper-member-expression-to-functions': 7.23.0
- '@babel/helper-optimise-call-expression': 7.22.5
- dev: false
-
- /@babel/helper-simple-access/7.22.5:
- resolution: {integrity: sha512-n0H99E/K+Bika3++WNL17POvo4rKWZ7lZEp1Q+fStVbUi8nxPQEBOlTmCOxW/0JsS56SKKQ+ojAe2pHKJHN35w==}
- engines: {node: '>=6.9.0'}
- dependencies:
- '@babel/types': 7.25.2
-
- /@babel/helper-simple-access/7.24.7:
- resolution: {integrity: sha512-zBAIvbCMh5Ts+b86r/CjU+4XGYIs+R1j951gxI3KmmxBMhCg4oQMsv6ZXQ64XOm/cvzfU1FmoCyt6+owc5QMYg==}
- engines: {node: '>=6.9.0'}
- dependencies:
- '@babel/traverse': 7.25.3
- '@babel/types': 7.25.2
- transitivePeerDependencies:
- - supports-color
-
- /@babel/helper-skip-transparent-expression-wrappers/7.22.5:
- resolution: {integrity: sha512-tK14r66JZKiC43p8Ki33yLBVJKlQDFoA8GYN67lWCDCqoL6EMMSuM9b+Iff2jHaM/RRFYl7K+iiru7hbRqNx8Q==}
- engines: {node: '>=6.9.0'}
- dependencies:
- '@babel/types': 7.25.2
- dev: false
-
- /@babel/helper-split-export-declaration/7.22.6:
- resolution: {integrity: sha512-AsUnxuLhRYsisFiaJwvp1QF+I3KjD5FOxut14q/GzovUe6orHLesW2C7d754kRm53h5gqrz6sFl6sxc4BVtE/g==}
- engines: {node: '>=6.9.0'}
- dependencies:
- '@babel/types': 7.25.2
-
- /@babel/helper-string-parser/7.22.5:
- resolution: {integrity: sha512-mM4COjgZox8U+JcXQwPijIZLElkgEpO5rsERVDJTc2qfCDfERyob6k5WegS14SX18IIjv+XD+GrqNumY5JRCDw==}
- engines: {node: '>=6.9.0'}
-
- /@babel/helper-string-parser/7.24.8:
- resolution: {integrity: sha512-pO9KhhRcuUyGnJWwyEgnRJTSIZHiT+vMD0kPeD+so0l7mxkMT19g3pjY9GTnHySck/hDzq+dtW/4VgnMkippsQ==}
- engines: {node: '>=6.9.0'}
-
- /@babel/helper-validator-identifier/7.22.20:
- resolution: {integrity: sha512-Y4OZ+ytlatR8AI+8KZfKuL5urKp7qey08ha31L8b3BwewJAoJamTzyvxPR/5D+KkdJCGPq/+8TukHBlY10FX9A==}
- engines: {node: '>=6.9.0'}
-
- /@babel/helper-validator-identifier/7.24.7:
- resolution: {integrity: sha512-rR+PBcQ1SMQDDyF6X0wxtG8QyLCgUB0eRAGguqRLfkCA87l7yAP7ehq8SNj96OOGTO8OBV70KhuFYcIkHXOg0w==}
- engines: {node: '>=6.9.0'}
-
- /@babel/helper-validator-option/7.22.15:
- resolution: {integrity: sha512-bMn7RmyFjY/mdECUbgn9eoSY4vqvacUnS9i9vGAGttgFWesO6B4CYWA7XlpbWgBt71iv/hfbPlynohStqnu5hA==}
- engines: {node: '>=6.9.0'}
-
- /@babel/helper-validator-option/7.24.8:
- resolution: {integrity: sha512-xb8t9tD1MHLungh/AIoWYN+gVHaB9kwlu8gffXGSt3FFEIT7RjS+xWbc2vUD1UTZdIpKj/ab3rdqJ7ufngyi2Q==}
- engines: {node: '>=6.9.0'}
-
- /@babel/helper-wrap-function/7.22.20:
- resolution: {integrity: sha512-pms/UwkOpnQe/PDAEdV/d7dVCoBbB+R4FvYoHGZz+4VPcg7RtYy2KP7S2lbuWM6FCSgob5wshfGESbC/hzNXZw==}
- engines: {node: '>=6.9.0'}
- dependencies:
- '@babel/helper-function-name': 7.23.0
- '@babel/template': 7.25.0
- '@babel/types': 7.25.2
- dev: false
-
- /@babel/helpers/7.23.1:
- resolution: {integrity: sha512-chNpneuK18yW5Oxsr+t553UZzzAs3aZnFm4bxhebsNTeshrC95yA7l5yl7GBAG+JG1rF0F7zzD2EixK9mWSDoA==}
- engines: {node: '>=6.9.0'}
- dependencies:
- '@babel/template': 7.22.15
- '@babel/traverse': 7.23.0
- '@babel/types': 7.25.2
- transitivePeerDependencies:
- - supports-color
-
- /@babel/helpers/7.25.0:
- resolution: {integrity: sha512-MjgLZ42aCm0oGjJj8CtSM3DB8NOOf8h2l7DCTePJs29u+v7yO/RBX9nShlKMgFnRks/Q4tBAe7Hxnov9VkGwLw==}
- engines: {node: '>=6.9.0'}
- dependencies:
- '@babel/template': 7.25.0
- '@babel/types': 7.25.2
- dev: true
-
- /@babel/highlight/7.22.20:
- resolution: {integrity: sha512-dkdMCN3py0+ksCgYmGG8jKeGA/8Tk+gJwSYYlFGxG5lmhfKNoAy004YpLxpS1W2J8m/EK2Ew+yOs9pVRwO89mg==}
- engines: {node: '>=6.9.0'}
- dependencies:
- '@babel/helper-validator-identifier': 7.24.7
- chalk: 2.4.2
- js-tokens: 4.0.0
-
- /@babel/highlight/7.24.7:
- resolution: {integrity: sha512-EStJpq4OuY8xYfhGVXngigBJRWxftKX9ksiGDnmlY3o7B/V7KIAc9X4oiK87uPJSc/vs5L869bem5fhZa8caZw==}
- engines: {node: '>=6.9.0'}
- dependencies:
- '@babel/helper-validator-identifier': 7.24.7
- chalk: 2.4.2
- js-tokens: 4.0.0
- picocolors: 1.0.1
-
- /@babel/parser/7.23.0:
- resolution: {integrity: sha512-vvPKKdMemU85V9WE/l5wZEmImpCtLqbnTvqDS2U1fJ96KrxoW7KrXhNsNCblQlg8Ck4b85yxdTyelsMUgFUXiw==}
- engines: {node: '>=6.0.0'}
- hasBin: true
- dependencies:
- '@babel/types': 7.25.2
-
- /@babel/parser/7.25.3:
- resolution: {integrity: sha512-iLTJKDbJ4hMvFPgQwwsVoxtHyWpKKPBrxkANrSYewDPaPpT5py5yeVkgPIJ7XYXhndxJpaA3PyALSXQ7u8e/Dw==}
- engines: {node: '>=6.0.0'}
- hasBin: true
- dependencies:
- '@babel/types': 7.25.2
+ '@babel/core': ^7.13.0
- /@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression/7.22.15_@babel+core@7.23.0:
- resolution: {integrity: sha512-FB9iYlz7rURmRJyXRKEnalYPPdn87H5no108cyuQQyMwlpJ2SJtpIUBI27kdTin956pz+LPypkPVPUTlxOmrsg==}
+ '@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly@7.25.9':
+ resolution: {integrity: sha512-aLnMXYPnzwwqhYSCyXfKkIkYgJ8zv9RK+roo9DkTXz38ynIhd9XCbN08s3MGvqL2MYGVUGdRQLL/JqBIeJhJBg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
- dependencies:
- '@babel/core': 7.23.0
- '@babel/helper-plugin-utils': 7.24.8
- dev: false
-
- /@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining/7.22.15_@babel+core@7.23.0:
- resolution: {integrity: sha512-Hyph9LseGvAeeXzikV88bczhsrLrIZqDPxO+sSmAunMPaGrBGhfMWzCPYTtiW9t+HzSE2wtV8e5cc5P6r1xMDQ==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.13.0
- dependencies:
- '@babel/core': 7.23.0
- '@babel/helper-plugin-utils': 7.24.8
- '@babel/helper-skip-transparent-expression-wrappers': 7.22.5
- '@babel/plugin-transform-optional-chaining': 7.23.0_@babel+core@7.23.0
- dev: false
- /@babel/plugin-proposal-private-property-in-object/7.21.0-placeholder-for-preset-env.2_@babel+core@7.23.0:
+ '@babel/plugin-proposal-private-property-in-object@7.21.0-placeholder-for-preset-env.2':
resolution: {integrity: sha512-SOSkfJDddaM7mak6cPEpswyTRnuRltl429hMraQEglW+OkovnCzsiszTmsrlY//qLFjCpQDFRvjdm2wA5pPm9w==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.23.0
- dev: false
-
- /@babel/plugin-syntax-async-generators/7.8.4_@babel+core@7.23.0:
- resolution: {integrity: sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw==}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.23.0
- '@babel/helper-plugin-utils': 7.24.8
- dev: false
- /@babel/plugin-syntax-async-generators/7.8.4_@babel+core@7.25.2:
+ '@babel/plugin-syntax-async-generators@7.8.4':
resolution: {integrity: sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw==}
peerDependencies:
'@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.25.2
- '@babel/helper-plugin-utils': 7.24.8
- dev: true
- /@babel/plugin-syntax-bigint/7.8.3_@babel+core@7.25.2:
+ '@babel/plugin-syntax-bigint@7.8.3':
resolution: {integrity: sha512-wnTnFlG+YxQm3vDxpGE57Pj0srRU4sHE/mDkt1qv2YJJSeUAec2ma4WLUnUPeKjyrfntVwe/N6dCXpU+zL3Npg==}
peerDependencies:
'@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.25.2
- '@babel/helper-plugin-utils': 7.24.8
- dev: true
-
- /@babel/plugin-syntax-class-properties/7.12.13_@babel+core@7.23.0:
- resolution: {integrity: sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA==}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.23.0
- '@babel/helper-plugin-utils': 7.24.8
- /@babel/plugin-syntax-class-properties/7.12.13_@babel+core@7.25.2:
+ '@babel/plugin-syntax-class-properties@7.12.13':
resolution: {integrity: sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA==}
peerDependencies:
'@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.25.2
- '@babel/helper-plugin-utils': 7.24.8
- dev: true
- /@babel/plugin-syntax-class-static-block/7.14.5_@babel+core@7.23.0:
+ '@babel/plugin-syntax-class-static-block@7.14.5':
resolution: {integrity: sha512-b+YyPmr6ldyNnM6sqYeMWE+bgJcJpO6yS4QD7ymxgH34GBPNDM/THBh8iunyvKIZztiwLH4CJZ0RxTk9emgpjw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.23.0
- '@babel/helper-plugin-utils': 7.24.8
- dev: false
-
- /@babel/plugin-syntax-dynamic-import/7.8.3_@babel+core@7.23.0:
- resolution: {integrity: sha512-5gdGbFon+PszYzqs83S3E5mpi7/y/8M9eC90MRTZfduQOYW76ig6SOSPNe41IG5LoP3FGBn2N0RjVDSQiS94kQ==}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.23.0
- '@babel/helper-plugin-utils': 7.24.8
- dev: false
-
- /@babel/plugin-syntax-export-namespace-from/7.8.3_@babel+core@7.23.0:
- resolution: {integrity: sha512-MXf5laXo6c1IbEbegDmzGPwGNTsHZmEy6QGznu5Sh2UCWvueywb2ee+CCE4zQiZstxU9BMoQO9i6zUFSY0Kj0Q==}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.23.0
- '@babel/helper-plugin-utils': 7.24.8
- dev: false
- /@babel/plugin-syntax-import-assertions/7.22.5_@babel+core@7.23.0:
- resolution: {integrity: sha512-rdV97N7KqsRzeNGoWUOK6yUsWarLjE5Su/Snk9IYPU9CwkWHs4t+rTGOvffTR8XGkJMTAdLfO0xVnXm8wugIJg==}
+ '@babel/plugin-syntax-import-assertions@7.26.0':
+ resolution: {integrity: sha512-QCWT5Hh830hK5EQa7XzuqIkQU9tT/whqbDz7kuaZMHFl1inRRg7JnuAEOQ0Ur0QUl0NufCk1msK2BeY79Aj/eg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.23.0
- '@babel/helper-plugin-utils': 7.24.8
- dev: false
- /@babel/plugin-syntax-import-attributes/7.22.5_@babel+core@7.23.0:
- resolution: {integrity: sha512-KwvoWDeNKPETmozyFE0P2rOLqh39EoQHNjqizrI5B8Vt0ZNS7M56s7dAiAqbYfiAYOuIzIh96z3iR2ktgu3tEg==}
+ '@babel/plugin-syntax-import-attributes@7.26.0':
+ resolution: {integrity: sha512-e2dttdsJ1ZTpi3B9UYGLw41hifAubg19AtCu/2I/F1QNVclOBr1dYpTdmdyZ84Xiz43BS/tCUkMAZNLv12Pi+A==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.23.0
- '@babel/helper-plugin-utils': 7.24.8
- dev: false
-
- /@babel/plugin-syntax-import-meta/7.10.4_@babel+core@7.23.0:
- resolution: {integrity: sha512-Yqfm+XDx0+Prh3VSeEQCPU81yC+JWZ2pDPFSS4ZdpfZhp4MkFMaDC1UqseovEKwSUpnIL7+vK+Clp7bfh0iD7g==}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.23.0
- '@babel/helper-plugin-utils': 7.24.8
- dev: false
- /@babel/plugin-syntax-import-meta/7.10.4_@babel+core@7.25.2:
+ '@babel/plugin-syntax-import-meta@7.10.4':
resolution: {integrity: sha512-Yqfm+XDx0+Prh3VSeEQCPU81yC+JWZ2pDPFSS4ZdpfZhp4MkFMaDC1UqseovEKwSUpnIL7+vK+Clp7bfh0iD7g==}
peerDependencies:
'@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.25.2
- '@babel/helper-plugin-utils': 7.24.8
- dev: true
-
- /@babel/plugin-syntax-json-strings/7.8.3_@babel+core@7.23.0:
- resolution: {integrity: sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA==}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.23.0
- '@babel/helper-plugin-utils': 7.24.8
- dev: false
- /@babel/plugin-syntax-json-strings/7.8.3_@babel+core@7.25.2:
+ '@babel/plugin-syntax-json-strings@7.8.3':
resolution: {integrity: sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA==}
peerDependencies:
'@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.25.2
- '@babel/helper-plugin-utils': 7.24.8
- dev: true
- /@babel/plugin-syntax-jsx/7.24.7_@babel+core@7.25.2:
- resolution: {integrity: sha512-6ddciUPe/mpMnOKv/U+RSd2vvVy+Yw/JfBB0ZHYjEZt9NLHmCUylNYlsbqCCS1Bffjlb0fCwC9Vqz+sBz6PsiQ==}
+ '@babel/plugin-syntax-jsx@7.25.9':
+ resolution: {integrity: sha512-ld6oezHQMZsZfp6pWtbjaNDF2tiiCYYDqQszHt5VV437lewP9aSi2Of99CK0D0XB21k7FLgnLcmQKyKzynfeAA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.25.2
- '@babel/helper-plugin-utils': 7.24.8
- dev: true
-
- /@babel/plugin-syntax-logical-assignment-operators/7.10.4_@babel+core@7.23.0:
- resolution: {integrity: sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig==}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.23.0
- '@babel/helper-plugin-utils': 7.24.8
- dev: false
- /@babel/plugin-syntax-logical-assignment-operators/7.10.4_@babel+core@7.25.2:
+ '@babel/plugin-syntax-logical-assignment-operators@7.10.4':
resolution: {integrity: sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig==}
peerDependencies:
'@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.25.2
- '@babel/helper-plugin-utils': 7.24.8
- dev: true
-
- /@babel/plugin-syntax-nullish-coalescing-operator/7.8.3_@babel+core@7.23.0:
- resolution: {integrity: sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ==}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.23.0
- '@babel/helper-plugin-utils': 7.24.8
- dev: false
- /@babel/plugin-syntax-nullish-coalescing-operator/7.8.3_@babel+core@7.25.2:
+ '@babel/plugin-syntax-nullish-coalescing-operator@7.8.3':
resolution: {integrity: sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ==}
peerDependencies:
'@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.25.2
- '@babel/helper-plugin-utils': 7.24.8
- dev: true
-
- /@babel/plugin-syntax-numeric-separator/7.10.4_@babel+core@7.23.0:
- resolution: {integrity: sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug==}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.23.0
- '@babel/helper-plugin-utils': 7.24.8
- dev: false
- /@babel/plugin-syntax-numeric-separator/7.10.4_@babel+core@7.25.2:
+ '@babel/plugin-syntax-numeric-separator@7.10.4':
resolution: {integrity: sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug==}
peerDependencies:
'@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.25.2
- '@babel/helper-plugin-utils': 7.24.8
- dev: true
-
- /@babel/plugin-syntax-object-rest-spread/7.8.3_@babel+core@7.23.0:
- resolution: {integrity: sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA==}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.23.0
- '@babel/helper-plugin-utils': 7.24.8
- dev: false
- /@babel/plugin-syntax-object-rest-spread/7.8.3_@babel+core@7.25.2:
+ '@babel/plugin-syntax-object-rest-spread@7.8.3':
resolution: {integrity: sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA==}
peerDependencies:
'@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.25.2
- '@babel/helper-plugin-utils': 7.24.8
- dev: true
-
- /@babel/plugin-syntax-optional-catch-binding/7.8.3_@babel+core@7.23.0:
- resolution: {integrity: sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q==}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.23.0
- '@babel/helper-plugin-utils': 7.24.8
- dev: false
- /@babel/plugin-syntax-optional-catch-binding/7.8.3_@babel+core@7.25.2:
+ '@babel/plugin-syntax-optional-catch-binding@7.8.3':
resolution: {integrity: sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q==}
peerDependencies:
'@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.25.2
- '@babel/helper-plugin-utils': 7.24.8
- dev: true
-
- /@babel/plugin-syntax-optional-chaining/7.8.3_@babel+core@7.23.0:
- resolution: {integrity: sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg==}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.23.0
- '@babel/helper-plugin-utils': 7.24.8
- dev: false
- /@babel/plugin-syntax-optional-chaining/7.8.3_@babel+core@7.25.2:
+ '@babel/plugin-syntax-optional-chaining@7.8.3':
resolution: {integrity: sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg==}
peerDependencies:
'@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.25.2
- '@babel/helper-plugin-utils': 7.24.8
- dev: true
- /@babel/plugin-syntax-private-property-in-object/7.14.5_@babel+core@7.23.0:
+ '@babel/plugin-syntax-private-property-in-object@7.14.5':
resolution: {integrity: sha512-0wVnp9dxJ72ZUJDV27ZfbSj6iHLoytYZmh3rFcxNnvsJF3ktkzLDZPy/mA17HGsaQT3/DQsWYX1f1QGWkCoVUg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.23.0
- '@babel/helper-plugin-utils': 7.24.8
- dev: false
-
- /@babel/plugin-syntax-top-level-await/7.14.5_@babel+core@7.23.0:
- resolution: {integrity: sha512-hx++upLv5U1rgYfwe1xBQUhRmU41NEvpUvrp8jkrSCdvGSnM5/qdRMtylJ6PG5OFkBaHkbTAKTnd3/YyESRHFw==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.23.0
- '@babel/helper-plugin-utils': 7.24.8
- dev: false
- /@babel/plugin-syntax-top-level-await/7.14.5_@babel+core@7.25.2:
+ '@babel/plugin-syntax-top-level-await@7.14.5':
resolution: {integrity: sha512-hx++upLv5U1rgYfwe1xBQUhRmU41NEvpUvrp8jkrSCdvGSnM5/qdRMtylJ6PG5OFkBaHkbTAKTnd3/YyESRHFw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.25.2
- '@babel/helper-plugin-utils': 7.24.8
- dev: true
- /@babel/plugin-syntax-typescript/7.24.7_@babel+core@7.25.2:
- resolution: {integrity: sha512-c/+fVeJBB0FeKsFvwytYiUD+LBvhHjGSI0g446PRGdSVGZLRNArBUno2PETbAly3tpiNAQR5XaZ+JslxkotsbA==}
+ '@babel/plugin-syntax-typescript@7.25.9':
+ resolution: {integrity: sha512-hjMgRy5hb8uJJjUcdWunWVcoi9bGpJp8p5Ol1229PoN6aytsLwNMgmdftO23wnCLMfVmTwZDWMPNq/D1SY60JQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.25.2
- '@babel/helper-plugin-utils': 7.24.8
- dev: true
- /@babel/plugin-syntax-unicode-sets-regex/7.18.6_@babel+core@7.23.0:
+ '@babel/plugin-syntax-unicode-sets-regex@7.18.6':
resolution: {integrity: sha512-727YkEAPwSIQTv5im8QHz3upqp92JTWhidIC81Tdx4VJYIte/VndKf1qKrfnnhPLiPghStWfvC/iFaMCQu7Nqg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
- dependencies:
- '@babel/core': 7.23.0
- '@babel/helper-create-regexp-features-plugin': 7.22.15_@babel+core@7.23.0
- '@babel/helper-plugin-utils': 7.24.8
- dev: false
- /@babel/plugin-transform-arrow-functions/7.22.5_@babel+core@7.23.0:
- resolution: {integrity: sha512-26lTNXoVRdAnsaDXPpvCNUq+OVWEVC6bx7Vvz9rC53F2bagUWW4u4ii2+h8Fejfh7RYqPxn+libeFBBck9muEw==}
+ '@babel/plugin-transform-arrow-functions@7.25.9':
+ resolution: {integrity: sha512-6jmooXYIwn9ca5/RylZADJ+EnSxVUS5sjeJ9UPk6RWRzXCmOJCy6dqItPJFpw2cuCangPK4OYr5uhGKcmrm5Qg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.23.0
- '@babel/helper-plugin-utils': 7.24.8
- dev: false
- /@babel/plugin-transform-async-generator-functions/7.22.15_@babel+core@7.23.0:
- resolution: {integrity: sha512-jBm1Es25Y+tVoTi5rfd5t1KLmL8ogLKpXszboWOTTtGFGz2RKnQe2yn7HbZ+kb/B8N0FVSGQo874NSlOU1T4+w==}
+ '@babel/plugin-transform-async-generator-functions@7.25.9':
+ resolution: {integrity: sha512-RXV6QAzTBbhDMO9fWwOmwwTuYaiPbggWQ9INdZqAYeSHyG7FzQ+nOZaUUjNwKv9pV3aE4WFqFm1Hnbci5tBCAw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.23.0
- '@babel/helper-environment-visitor': 7.22.20
- '@babel/helper-plugin-utils': 7.24.8
- '@babel/helper-remap-async-to-generator': 7.22.20_@babel+core@7.23.0
- '@babel/plugin-syntax-async-generators': 7.8.4_@babel+core@7.23.0
- dev: false
- /@babel/plugin-transform-async-to-generator/7.22.5_@babel+core@7.23.0:
- resolution: {integrity: sha512-b1A8D8ZzE/VhNDoV1MSJTnpKkCG5bJo+19R4o4oy03zM7ws8yEMK755j61Dc3EyvdysbqH5BOOTquJ7ZX9C6vQ==}
+ '@babel/plugin-transform-async-to-generator@7.25.9':
+ resolution: {integrity: sha512-NT7Ejn7Z/LjUH0Gv5KsBCxh7BH3fbLTV0ptHvpeMvrt3cPThHfJfst9Wrb7S8EvJ7vRTFI7z+VAvFVEQn/m5zQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.23.0
- '@babel/helper-module-imports': 7.24.7
- '@babel/helper-plugin-utils': 7.24.8
- '@babel/helper-remap-async-to-generator': 7.22.20_@babel+core@7.23.0
- transitivePeerDependencies:
- - supports-color
- dev: false
- /@babel/plugin-transform-block-scoped-functions/7.22.5_@babel+core@7.23.0:
- resolution: {integrity: sha512-tdXZ2UdknEKQWKJP1KMNmuF5Lx3MymtMN/pvA+p/VEkhK8jVcQ1fzSy8KM9qRYhAf2/lV33hoMPKI/xaI9sADA==}
+ '@babel/plugin-transform-block-scoped-functions@7.25.9':
+ resolution: {integrity: sha512-toHc9fzab0ZfenFpsyYinOX0J/5dgJVA2fm64xPewu7CoYHWEivIWKxkK2rMi4r3yQqLnVmheMXRdG+k239CgA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.23.0
- '@babel/helper-plugin-utils': 7.24.8
- dev: false
- /@babel/plugin-transform-block-scoping/7.23.0_@babel+core@7.23.0:
- resolution: {integrity: sha512-cOsrbmIOXmf+5YbL99/S49Y3j46k/T16b9ml8bm9lP6N9US5iQ2yBK7gpui1pg0V/WMcXdkfKbTb7HXq9u+v4g==}
+ '@babel/plugin-transform-block-scoping@7.25.9':
+ resolution: {integrity: sha512-1F05O7AYjymAtqbsFETboN1NvBdcnzMerO+zlMyJBEz6WkMdejvGWw9p05iTSjC85RLlBseHHQpYaM4gzJkBGg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.23.0
- '@babel/helper-plugin-utils': 7.24.8
- dev: false
- /@babel/plugin-transform-class-properties/7.22.5_@babel+core@7.23.0:
- resolution: {integrity: sha512-nDkQ0NfkOhPTq8YCLiWNxp1+f9fCobEjCb0n8WdbNUBc4IB5V7P1QnX9IjpSoquKrXF5SKojHleVNs2vGeHCHQ==}
+ '@babel/plugin-transform-class-properties@7.25.9':
+ resolution: {integrity: sha512-bbMAII8GRSkcd0h0b4X+36GksxuheLFjP65ul9w6C3KgAamI3JqErNgSrosX6ZPj+Mpim5VvEbawXxJCyEUV3Q==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.23.0
- '@babel/helper-create-class-features-plugin': 7.22.15_@babel+core@7.23.0
- '@babel/helper-plugin-utils': 7.24.8
- dev: false
- /@babel/plugin-transform-class-static-block/7.22.11_@babel+core@7.23.0:
- resolution: {integrity: sha512-GMM8gGmqI7guS/llMFk1bJDkKfn3v3C4KHK9Yg1ey5qcHcOlKb0QvcMrgzvxo+T03/4szNh5lghY+fEC98Kq9g==}
+ '@babel/plugin-transform-class-static-block@7.26.0':
+ resolution: {integrity: sha512-6J2APTs7BDDm+UMqP1useWqhcRAXo0WIoVj26N7kPFB6S73Lgvyka4KTZYIxtgYXiN5HTyRObA72N2iu628iTQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.12.0
- dependencies:
- '@babel/core': 7.23.0
- '@babel/helper-create-class-features-plugin': 7.22.15_@babel+core@7.23.0
- '@babel/helper-plugin-utils': 7.24.8
- '@babel/plugin-syntax-class-static-block': 7.14.5_@babel+core@7.23.0
- dev: false
- /@babel/plugin-transform-classes/7.22.15_@babel+core@7.23.0:
- resolution: {integrity: sha512-VbbC3PGjBdE0wAWDdHM9G8Gm977pnYI0XpqMd6LrKISj8/DJXEsWqgRuTYaNE9Bv0JGhTZUzHDlMk18IpOuoqw==}
+ '@babel/plugin-transform-classes@7.25.9':
+ resolution: {integrity: sha512-mD8APIXmseE7oZvZgGABDyM34GUmK45Um2TXiBUt7PnuAxrgoSVf123qUzPxEr/+/BHrRn5NMZCdE2m/1F8DGg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.23.0
- '@babel/helper-annotate-as-pure': 7.22.5
- '@babel/helper-compilation-targets': 7.25.2
- '@babel/helper-environment-visitor': 7.22.20
- '@babel/helper-function-name': 7.23.0
- '@babel/helper-optimise-call-expression': 7.22.5
- '@babel/helper-plugin-utils': 7.24.8
- '@babel/helper-replace-supers': 7.22.20_@babel+core@7.23.0
- '@babel/helper-split-export-declaration': 7.22.6
- globals: 11.12.0
- dev: false
- /@babel/plugin-transform-computed-properties/7.22.5_@babel+core@7.23.0:
- resolution: {integrity: sha512-4GHWBgRf0krxPX+AaPtgBAlTgTeZmqDynokHOX7aqqAB4tHs3U2Y02zH6ETFdLZGcg9UQSD1WCmkVrE9ErHeOg==}
+ '@babel/plugin-transform-computed-properties@7.25.9':
+ resolution: {integrity: sha512-HnBegGqXZR12xbcTHlJ9HGxw1OniltT26J5YpfruGqtUHlz/xKf/G2ak9e+t0rVqrjXa9WOhvYPz1ERfMj23AA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.23.0
- '@babel/helper-plugin-utils': 7.24.8
- '@babel/template': 7.25.0
- dev: false
- /@babel/plugin-transform-destructuring/7.23.0_@babel+core@7.23.0:
- resolution: {integrity: sha512-vaMdgNXFkYrB+8lbgniSYWHsgqK5gjaMNcc84bMIOMRLH0L9AqYq3hwMdvnyqj1OPqea8UtjPEuS/DCenah1wg==}
+ '@babel/plugin-transform-destructuring@7.25.9':
+ resolution: {integrity: sha512-WkCGb/3ZxXepmMiX101nnGiU+1CAdut8oHyEOHxkKuS1qKpU2SMXE2uSvfz8PBuLd49V6LEsbtyPhWC7fnkgvQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.23.0
- '@babel/helper-plugin-utils': 7.24.8
- dev: false
- /@babel/plugin-transform-dotall-regex/7.22.5_@babel+core@7.23.0:
- resolution: {integrity: sha512-5/Yk9QxCQCl+sOIB1WelKnVRxTJDSAIxtJLL2/pqL14ZVlbH0fUQUZa/T5/UnQtBNgghR7mfB8ERBKyKPCi7Vw==}
+ '@babel/plugin-transform-dotall-regex@7.25.9':
+ resolution: {integrity: sha512-t7ZQ7g5trIgSRYhI9pIJtRl64KHotutUJsh4Eze5l7olJv+mRSg4/MmbZ0tv1eeqRbdvo/+trvJD/Oc5DmW2cA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.23.0
- '@babel/helper-create-regexp-features-plugin': 7.22.15_@babel+core@7.23.0
- '@babel/helper-plugin-utils': 7.24.8
- dev: false
- /@babel/plugin-transform-duplicate-keys/7.22.5_@babel+core@7.23.0:
- resolution: {integrity: sha512-dEnYD+9BBgld5VBXHnF/DbYGp3fqGMsyxKbtD1mDyIA7AkTSpKXFhCVuj/oQVOoALfBs77DudA0BE4d5mcpmqw==}
+ '@babel/plugin-transform-duplicate-keys@7.25.9':
+ resolution: {integrity: sha512-LZxhJ6dvBb/f3x8xwWIuyiAHy56nrRG3PeYTpBkkzkYRRQ6tJLu68lEF5VIqMUZiAV7a8+Tb78nEoMCMcqjXBw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.23.0
- '@babel/helper-plugin-utils': 7.24.8
- dev: false
- /@babel/plugin-transform-dynamic-import/7.22.11_@babel+core@7.23.0:
- resolution: {integrity: sha512-g/21plo58sfteWjaO0ZNVb+uEOkJNjAaHhbejrnBmu011l/eNDScmkbjCC3l4FKb10ViaGU4aOkFznSu2zRHgA==}
+ '@babel/plugin-transform-duplicate-named-capturing-groups-regex@7.25.9':
+ resolution: {integrity: sha512-0UfuJS0EsXbRvKnwcLjFtJy/Sxc5J5jhLHnFhy7u4zih97Hz6tJkLU+O+FMMrNZrosUPxDi6sYxJ/EA8jDiAog==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0
+
+ '@babel/plugin-transform-dynamic-import@7.25.9':
+ resolution: {integrity: sha512-GCggjexbmSLaFhqsojeugBpeaRIgWNTcgKVq/0qIteFEqY2A+b9QidYadrWlnbWQUrW5fn+mCvf3tr7OeBFTyg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.23.0
- '@babel/helper-plugin-utils': 7.24.8
- '@babel/plugin-syntax-dynamic-import': 7.8.3_@babel+core@7.23.0
- dev: false
- /@babel/plugin-transform-exponentiation-operator/7.22.5_@babel+core@7.23.0:
- resolution: {integrity: sha512-vIpJFNM/FjZ4rh1myqIya9jXwrwwgFRHPjT3DkUA9ZLHuzox8jiXkOLvwm1H+PQIP3CqfC++WPKeuDi0Sjdj1g==}
+ '@babel/plugin-transform-exponentiation-operator@7.25.9':
+ resolution: {integrity: sha512-KRhdhlVk2nObA5AYa7QMgTMTVJdfHprfpAk4DjZVtllqRg9qarilstTKEhpVjyt+Npi8ThRyiV8176Am3CodPA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.23.0
- '@babel/helper-builder-binary-assignment-operator-visitor': 7.22.15
- '@babel/helper-plugin-utils': 7.24.8
- dev: false
- /@babel/plugin-transform-export-namespace-from/7.22.11_@babel+core@7.23.0:
- resolution: {integrity: sha512-xa7aad7q7OiT8oNZ1mU7NrISjlSkVdMbNxn9IuLZyL9AJEhs1Apba3I+u5riX1dIkdptP5EKDG5XDPByWxtehw==}
+ '@babel/plugin-transform-export-namespace-from@7.25.9':
+ resolution: {integrity: sha512-2NsEz+CxzJIVOPx2o9UsW1rXLqtChtLoVnwYHHiB04wS5sgn7mrV45fWMBX0Kk+ub9uXytVYfNP2HjbVbCB3Ww==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.23.0
- '@babel/helper-plugin-utils': 7.24.8
- '@babel/plugin-syntax-export-namespace-from': 7.8.3_@babel+core@7.23.0
- dev: false
- /@babel/plugin-transform-for-of/7.22.15_@babel+core@7.23.0:
- resolution: {integrity: sha512-me6VGeHsx30+xh9fbDLLPi0J1HzmeIIyenoOQHuw2D4m2SAU3NrspX5XxJLBpqn5yrLzrlw2Iy3RA//Bx27iOA==}
+ '@babel/plugin-transform-for-of@7.25.9':
+ resolution: {integrity: sha512-LqHxduHoaGELJl2uhImHwRQudhCM50pT46rIBNvtT/Oql3nqiS3wOwP+5ten7NpYSXrrVLgtZU3DZmPtWZo16A==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.23.0
- '@babel/helper-plugin-utils': 7.24.8
- dev: false
- /@babel/plugin-transform-function-name/7.22.5_@babel+core@7.23.0:
- resolution: {integrity: sha512-UIzQNMS0p0HHiQm3oelztj+ECwFnj+ZRV4KnguvlsD2of1whUeM6o7wGNj6oLwcDoAXQ8gEqfgC24D+VdIcevg==}
+ '@babel/plugin-transform-function-name@7.25.9':
+ resolution: {integrity: sha512-8lP+Yxjv14Vc5MuWBpJsoUCd3hD6V9DgBon2FVYL4jJgbnVQ9fTgYmonchzZJOVNgzEgbxp4OwAf6xz6M/14XA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.23.0
- '@babel/helper-compilation-targets': 7.25.2
- '@babel/helper-function-name': 7.23.0
- '@babel/helper-plugin-utils': 7.24.8
- dev: false
- /@babel/plugin-transform-json-strings/7.22.11_@babel+core@7.23.0:
- resolution: {integrity: sha512-CxT5tCqpA9/jXFlme9xIBCc5RPtdDq3JpkkhgHQqtDdiTnTI0jtZ0QzXhr5DILeYifDPp2wvY2ad+7+hLMW5Pw==}
+ '@babel/plugin-transform-json-strings@7.25.9':
+ resolution: {integrity: sha512-xoTMk0WXceiiIvsaquQQUaLLXSW1KJ159KP87VilruQm0LNNGxWzahxSS6T6i4Zg3ezp4vA4zuwiNUR53qmQAw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.23.0
- '@babel/helper-plugin-utils': 7.24.8
- '@babel/plugin-syntax-json-strings': 7.8.3_@babel+core@7.23.0
- dev: false
- /@babel/plugin-transform-literals/7.22.5_@babel+core@7.23.0:
- resolution: {integrity: sha512-fTLj4D79M+mepcw3dgFBTIDYpbcB9Sm0bpm4ppXPaO+U+PKFFyV9MGRvS0gvGw62sd10kT5lRMKXAADb9pWy8g==}
+ '@babel/plugin-transform-literals@7.25.9':
+ resolution: {integrity: sha512-9N7+2lFziW8W9pBl2TzaNht3+pgMIRP74zizeCSrtnSKVdUl8mAjjOP2OOVQAfZ881P2cNjDj1uAMEdeD50nuQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.23.0
- '@babel/helper-plugin-utils': 7.24.8
- dev: false
- /@babel/plugin-transform-logical-assignment-operators/7.22.11_@babel+core@7.23.0:
- resolution: {integrity: sha512-qQwRTP4+6xFCDV5k7gZBF3C31K34ut0tbEcTKxlX/0KXxm9GLcO14p570aWxFvVzx6QAfPgq7gaeIHXJC8LswQ==}
+ '@babel/plugin-transform-logical-assignment-operators@7.25.9':
+ resolution: {integrity: sha512-wI4wRAzGko551Y8eVf6iOY9EouIDTtPb0ByZx+ktDGHwv6bHFimrgJM/2T021txPZ2s4c7bqvHbd+vXG6K948Q==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.23.0
- '@babel/helper-plugin-utils': 7.24.8
- '@babel/plugin-syntax-logical-assignment-operators': 7.10.4_@babel+core@7.23.0
- dev: false
- /@babel/plugin-transform-member-expression-literals/7.22.5_@babel+core@7.23.0:
- resolution: {integrity: sha512-RZEdkNtzzYCFl9SE9ATaUMTj2hqMb4StarOJLrZRbqqU4HSBE7UlBw9WBWQiDzrJZJdUWiMTVDI6Gv/8DPvfew==}
+ '@babel/plugin-transform-member-expression-literals@7.25.9':
+ resolution: {integrity: sha512-PYazBVfofCQkkMzh2P6IdIUaCEWni3iYEerAsRWuVd8+jlM1S9S9cz1dF9hIzyoZ8IA3+OwVYIp9v9e+GbgZhA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.23.0
- '@babel/helper-plugin-utils': 7.24.8
- dev: false
- /@babel/plugin-transform-modules-amd/7.23.0_@babel+core@7.23.0:
- resolution: {integrity: sha512-xWT5gefv2HGSm4QHtgc1sYPbseOyf+FFDo2JbpE25GWl5BqTGO9IMwTYJRoIdjsF85GE+VegHxSCUt5EvoYTAw==}
+ '@babel/plugin-transform-modules-amd@7.25.9':
+ resolution: {integrity: sha512-g5T11tnI36jVClQlMlt4qKDLlWnG5pP9CSM4GhdRciTNMRgkfpo5cR6b4rGIOYPgRRuFAvwjPQ/Yk+ql4dyhbw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.23.0
- '@babel/helper-module-transforms': 7.25.2_@babel+core@7.23.0
- '@babel/helper-plugin-utils': 7.24.8
- transitivePeerDependencies:
- - supports-color
- dev: false
- /@babel/plugin-transform-modules-commonjs/7.23.0_@babel+core@7.23.0:
- resolution: {integrity: sha512-32Xzss14/UVc7k9g775yMIvkVK8xwKE0DPdP5JTapr3+Z9w4tzeOuLNY6BXDQR6BdnzIlXnCGAzsk/ICHBLVWQ==}
+ '@babel/plugin-transform-modules-commonjs@7.25.9':
+ resolution: {integrity: sha512-dwh2Ol1jWwL2MgkCzUSOvfmKElqQcuswAZypBSUsScMXvgdT8Ekq5YA6TtqpTVWH+4903NmboMuH1o9i8Rxlyg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.23.0
- '@babel/helper-module-transforms': 7.25.2_@babel+core@7.23.0
- '@babel/helper-plugin-utils': 7.24.8
- '@babel/helper-simple-access': 7.24.7
- transitivePeerDependencies:
- - supports-color
- dev: false
- /@babel/plugin-transform-modules-systemjs/7.23.0_@babel+core@7.23.0:
- resolution: {integrity: sha512-qBej6ctXZD2f+DhlOC9yO47yEYgUh5CZNz/aBoH4j/3NOlRfJXJbY7xDQCqQVf9KbrqGzIWER1f23doHGrIHFg==}
+ '@babel/plugin-transform-modules-systemjs@7.25.9':
+ resolution: {integrity: sha512-hyss7iIlH/zLHaehT+xwiymtPOpsiwIIRlCAOwBB04ta5Tt+lNItADdlXw3jAWZ96VJ2jlhl/c+PNIQPKNfvcA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.23.0
- '@babel/helper-hoist-variables': 7.22.5
- '@babel/helper-module-transforms': 7.25.2_@babel+core@7.23.0
- '@babel/helper-plugin-utils': 7.24.8
- '@babel/helper-validator-identifier': 7.24.7
- transitivePeerDependencies:
- - supports-color
- dev: false
- /@babel/plugin-transform-modules-umd/7.22.5_@babel+core@7.23.0:
- resolution: {integrity: sha512-+S6kzefN/E1vkSsKx8kmQuqeQsvCKCd1fraCM7zXm4SFoggI099Tr4G8U81+5gtMdUeMQ4ipdQffbKLX0/7dBQ==}
+ '@babel/plugin-transform-modules-umd@7.25.9':
+ resolution: {integrity: sha512-bS9MVObUgE7ww36HEfwe6g9WakQ0KF07mQF74uuXdkoziUPfKyu/nIm663kz//e5O1nPInPFx36z7WJmJ4yNEw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.23.0
- '@babel/helper-module-transforms': 7.25.2_@babel+core@7.23.0
- '@babel/helper-plugin-utils': 7.24.8
- transitivePeerDependencies:
- - supports-color
- dev: false
- /@babel/plugin-transform-named-capturing-groups-regex/7.22.5_@babel+core@7.23.0:
- resolution: {integrity: sha512-YgLLKmS3aUBhHaxp5hi1WJTgOUb/NCuDHzGT9z9WTt3YG+CPRhJs6nprbStx6DnWM4dh6gt7SU3sZodbZ08adQ==}
+ '@babel/plugin-transform-named-capturing-groups-regex@7.25.9':
+ resolution: {integrity: sha512-oqB6WHdKTGl3q/ItQhpLSnWWOpjUJLsOCLVyeFgeTktkBSCiurvPOsyt93gibI9CmuKvTUEtWmG5VhZD+5T/KA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
- dependencies:
- '@babel/core': 7.23.0
- '@babel/helper-create-regexp-features-plugin': 7.22.15_@babel+core@7.23.0
- '@babel/helper-plugin-utils': 7.24.8
- dev: false
- /@babel/plugin-transform-new-target/7.22.5_@babel+core@7.23.0:
- resolution: {integrity: sha512-AsF7K0Fx/cNKVyk3a+DW0JLo+Ua598/NxMRvxDnkpCIGFh43+h/v2xyhRUYf6oD8gE4QtL83C7zZVghMjHd+iw==}
+ '@babel/plugin-transform-new-target@7.25.9':
+ resolution: {integrity: sha512-U/3p8X1yCSoKyUj2eOBIx3FOn6pElFOKvAAGf8HTtItuPyB+ZeOqfn+mvTtg9ZlOAjsPdK3ayQEjqHjU/yLeVQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.23.0
- '@babel/helper-plugin-utils': 7.24.8
- dev: false
- /@babel/plugin-transform-nullish-coalescing-operator/7.22.11_@babel+core@7.23.0:
- resolution: {integrity: sha512-YZWOw4HxXrotb5xsjMJUDlLgcDXSfO9eCmdl1bgW4+/lAGdkjaEvOnQ4p5WKKdUgSzO39dgPl0pTnfxm0OAXcg==}
+ '@babel/plugin-transform-nullish-coalescing-operator@7.25.9':
+ resolution: {integrity: sha512-ENfftpLZw5EItALAD4WsY/KUWvhUlZndm5GC7G3evUsVeSJB6p0pBeLQUnRnBCBx7zV0RKQjR9kCuwrsIrjWog==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.23.0
- '@babel/helper-plugin-utils': 7.24.8
- '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3_@babel+core@7.23.0
- dev: false
- /@babel/plugin-transform-numeric-separator/7.22.11_@babel+core@7.23.0:
- resolution: {integrity: sha512-3dzU4QGPsILdJbASKhF/V2TVP+gJya1PsueQCxIPCEcerqF21oEcrob4mzjsp2Py/1nLfF5m+xYNMDpmA8vffg==}
+ '@babel/plugin-transform-numeric-separator@7.25.9':
+ resolution: {integrity: sha512-TlprrJ1GBZ3r6s96Yq8gEQv82s8/5HnCVHtEJScUj90thHQbwe+E5MLhi2bbNHBEJuzrvltXSru+BUxHDoog7Q==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.23.0
- '@babel/helper-plugin-utils': 7.24.8
- '@babel/plugin-syntax-numeric-separator': 7.10.4_@babel+core@7.23.0
- dev: false
- /@babel/plugin-transform-object-rest-spread/7.22.15_@babel+core@7.23.0:
- resolution: {integrity: sha512-fEB+I1+gAmfAyxZcX1+ZUwLeAuuf8VIg67CTznZE0MqVFumWkh8xWtn58I4dxdVf080wn7gzWoF8vndOViJe9Q==}
+ '@babel/plugin-transform-object-rest-spread@7.25.9':
+ resolution: {integrity: sha512-fSaXafEE9CVHPweLYw4J0emp1t8zYTXyzN3UuG+lylqkvYd7RMrsOQ8TYx5RF231be0vqtFC6jnx3UmpJmKBYg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- dependencies:
- '@babel/compat-data': 7.25.2
- '@babel/core': 7.23.0
- '@babel/helper-compilation-targets': 7.25.2
- '@babel/helper-plugin-utils': 7.24.8
- '@babel/plugin-syntax-object-rest-spread': 7.8.3_@babel+core@7.23.0
- '@babel/plugin-transform-parameters': 7.22.15_@babel+core@7.23.0
- dev: false
- /@babel/plugin-transform-object-super/7.22.5_@babel+core@7.23.0:
- resolution: {integrity: sha512-klXqyaT9trSjIUrcsYIfETAzmOEZL3cBYqOYLJxBHfMFFggmXOv+NYSX/Jbs9mzMVESw/WycLFPRx8ba/b2Ipw==}
+ '@babel/plugin-transform-object-super@7.25.9':
+ resolution: {integrity: sha512-Kj/Gh+Rw2RNLbCK1VAWj2U48yxxqL2x0k10nPtSdRa0O2xnHXalD0s+o1A6a0W43gJ00ANo38jxkQreckOzv5A==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.23.0
- '@babel/helper-plugin-utils': 7.24.8
- '@babel/helper-replace-supers': 7.22.20_@babel+core@7.23.0
- dev: false
- /@babel/plugin-transform-optional-catch-binding/7.22.11_@babel+core@7.23.0:
- resolution: {integrity: sha512-rli0WxesXUeCJnMYhzAglEjLWVDF6ahb45HuprcmQuLidBJFWjNnOzssk2kuc6e33FlLaiZhG/kUIzUMWdBKaQ==}
+ '@babel/plugin-transform-optional-catch-binding@7.25.9':
+ resolution: {integrity: sha512-qM/6m6hQZzDcZF3onzIhZeDHDO43bkNNlOX0i8n3lR6zLbu0GN2d8qfM/IERJZYauhAHSLHy39NF0Ctdvcid7g==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.23.0
- '@babel/helper-plugin-utils': 7.24.8
- '@babel/plugin-syntax-optional-catch-binding': 7.8.3_@babel+core@7.23.0
- dev: false
- /@babel/plugin-transform-optional-chaining/7.23.0_@babel+core@7.23.0:
- resolution: {integrity: sha512-sBBGXbLJjxTzLBF5rFWaikMnOGOk/BmK6vVByIdEggZ7Vn6CvWXZyRkkLFK6WE0IF8jSliyOkUN6SScFgzCM0g==}
+ '@babel/plugin-transform-optional-chaining@7.25.9':
+ resolution: {integrity: sha512-6AvV0FsLULbpnXeBjrY4dmWF8F7gf8QnvTEoO/wX/5xm/xE1Xo8oPuD3MPS+KS9f9XBEAWN7X1aWr4z9HdOr7A==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.23.0
- '@babel/helper-plugin-utils': 7.24.8
- '@babel/helper-skip-transparent-expression-wrappers': 7.22.5
- '@babel/plugin-syntax-optional-chaining': 7.8.3_@babel+core@7.23.0
- dev: false
- /@babel/plugin-transform-parameters/7.22.15_@babel+core@7.23.0:
- resolution: {integrity: sha512-hjk7qKIqhyzhhUvRT683TYQOFa/4cQKwQy7ALvTpODswN40MljzNDa0YldevS6tGbxwaEKVn502JmY0dP7qEtQ==}
+ '@babel/plugin-transform-parameters@7.25.9':
+ resolution: {integrity: sha512-wzz6MKwpnshBAiRmn4jR8LYz/g8Ksg0o80XmwZDlordjwEk9SxBzTWC7F5ef1jhbrbOW2DJ5J6ayRukrJmnr0g==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.23.0
- '@babel/helper-plugin-utils': 7.24.8
- dev: false
- /@babel/plugin-transform-private-methods/7.22.5_@babel+core@7.23.0:
- resolution: {integrity: sha512-PPjh4gyrQnGe97JTalgRGMuU4icsZFnWkzicB/fUtzlKUqvsWBKEpPPfr5a2JiyirZkHxnAqkQMO5Z5B2kK3fA==}
+ '@babel/plugin-transform-private-methods@7.25.9':
+ resolution: {integrity: sha512-D/JUozNpQLAPUVusvqMxyvjzllRaF8/nSrP1s2YGQT/W4LHK4xxsMcHjhOGTS01mp9Hda8nswb+FblLdJornQw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.23.0
- '@babel/helper-create-class-features-plugin': 7.22.15_@babel+core@7.23.0
- '@babel/helper-plugin-utils': 7.24.8
- dev: false
- /@babel/plugin-transform-private-property-in-object/7.22.11_@babel+core@7.23.0:
- resolution: {integrity: sha512-sSCbqZDBKHetvjSwpyWzhuHkmW5RummxJBVbYLkGkaiTOWGxml7SXt0iWa03bzxFIx7wOj3g/ILRd0RcJKBeSQ==}
+ '@babel/plugin-transform-private-property-in-object@7.25.9':
+ resolution: {integrity: sha512-Evf3kcMqzXA3xfYJmZ9Pg1OvKdtqsDMSWBDzZOPLvHiTt36E75jLDQo5w1gtRU95Q4E5PDttrTf25Fw8d/uWLw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.23.0
- '@babel/helper-annotate-as-pure': 7.22.5
- '@babel/helper-create-class-features-plugin': 7.22.15_@babel+core@7.23.0
- '@babel/helper-plugin-utils': 7.24.8
- '@babel/plugin-syntax-private-property-in-object': 7.14.5_@babel+core@7.23.0
- dev: false
- /@babel/plugin-transform-property-literals/7.22.5_@babel+core@7.23.0:
- resolution: {integrity: sha512-TiOArgddK3mK/x1Qwf5hay2pxI6wCZnvQqrFSqbtg1GLl2JcNMitVH/YnqjP+M31pLUeTfzY1HAXFDnUBV30rQ==}
+ '@babel/plugin-transform-property-literals@7.25.9':
+ resolution: {integrity: sha512-IvIUeV5KrS/VPavfSM/Iu+RE6llrHrYIKY1yfCzyO/lMXHQ+p7uGhonmGVisv6tSBSVgWzMBohTcvkC9vQcQFA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.23.0
- '@babel/helper-plugin-utils': 7.24.8
- dev: false
- /@babel/plugin-transform-regenerator/7.22.10_@babel+core@7.23.0:
- resolution: {integrity: sha512-F28b1mDt8KcT5bUyJc/U9nwzw6cV+UmTeRlXYIl2TNqMMJif0Jeey9/RQ3C4NOd2zp0/TRsDns9ttj2L523rsw==}
+ '@babel/plugin-transform-regenerator@7.25.9':
+ resolution: {integrity: sha512-vwDcDNsgMPDGP0nMqzahDWE5/MLcX8sv96+wfX7as7LoF/kr97Bo/7fI00lXY4wUXYfVmwIIyG80fGZ1uvt2qg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.23.0
- '@babel/helper-plugin-utils': 7.24.8
- regenerator-transform: 0.15.2
- dev: false
- /@babel/plugin-transform-reserved-words/7.22.5_@babel+core@7.23.0:
- resolution: {integrity: sha512-DTtGKFRQUDm8svigJzZHzb/2xatPc6TzNvAIJ5GqOKDsGFYgAskjRulbR/vGsPKq3OPqtexnz327qYpP57RFyA==}
+ '@babel/plugin-transform-regexp-modifiers@7.26.0':
+ resolution: {integrity: sha512-vN6saax7lrA2yA/Pak3sCxuD6F5InBjn9IcrIKQPjpsLvuHYLVroTxjdlVRHjjBWxKOqIwpTXDkOssYT4BFdRw==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0
+
+ '@babel/plugin-transform-reserved-words@7.25.9':
+ resolution: {integrity: sha512-7DL7DKYjn5Su++4RXu8puKZm2XBPHyjWLUidaPEkCUBbE7IPcsrkRHggAOOKydH1dASWdcUBxrkOGNxUv5P3Jg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.23.0
- '@babel/helper-plugin-utils': 7.24.8
- dev: false
- /@babel/plugin-transform-shorthand-properties/7.22.5_@babel+core@7.23.0:
- resolution: {integrity: sha512-vM4fq9IXHscXVKzDv5itkO1X52SmdFBFcMIBZ2FRn2nqVYqw6dBexUgMvAjHW+KXpPPViD/Yo3GrDEBaRC0QYA==}
+ '@babel/plugin-transform-shorthand-properties@7.25.9':
+ resolution: {integrity: sha512-MUv6t0FhO5qHnS/W8XCbHmiRWOphNufpE1IVxhK5kuN3Td9FT1x4rx4K42s3RYdMXCXpfWkGSbCSd0Z64xA7Ng==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.23.0
- '@babel/helper-plugin-utils': 7.24.8
- dev: false
- /@babel/plugin-transform-spread/7.22.5_@babel+core@7.23.0:
- resolution: {integrity: sha512-5ZzDQIGyvN4w8+dMmpohL6MBo+l2G7tfC/O2Dg7/hjpgeWvUx8FzfeOKxGog9IimPa4YekaQ9PlDqTLOljkcxg==}
+ '@babel/plugin-transform-spread@7.25.9':
+ resolution: {integrity: sha512-oNknIB0TbURU5pqJFVbOOFspVlrpVwo2H1+HUIsVDvp5VauGGDP1ZEvO8Nn5xyMEs3dakajOxlmkNW7kNgSm6A==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.23.0
- '@babel/helper-plugin-utils': 7.24.8
- '@babel/helper-skip-transparent-expression-wrappers': 7.22.5
- dev: false
- /@babel/plugin-transform-sticky-regex/7.22.5_@babel+core@7.23.0:
- resolution: {integrity: sha512-zf7LuNpHG0iEeiyCNwX4j3gDg1jgt1k3ZdXBKbZSoA3BbGQGvMiSvfbZRR3Dr3aeJe3ooWFZxOOG3IRStYp2Bw==}
+ '@babel/plugin-transform-sticky-regex@7.25.9':
+ resolution: {integrity: sha512-WqBUSgeVwucYDP9U/xNRQam7xV8W5Zf+6Eo7T2SRVUFlhRiMNFdFz58u0KZmCVVqs2i7SHgpRnAhzRNmKfi2uA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.23.0
- '@babel/helper-plugin-utils': 7.24.8
- dev: false
- /@babel/plugin-transform-template-literals/7.22.5_@babel+core@7.23.0:
- resolution: {integrity: sha512-5ciOehRNf+EyUeewo8NkbQiUs4d6ZxiHo6BcBcnFlgiJfu16q0bQUw9Jvo0b0gBKFG1SMhDSjeKXSYuJLeFSMA==}
+ '@babel/plugin-transform-template-literals@7.25.9':
+ resolution: {integrity: sha512-o97AE4syN71M/lxrCtQByzphAdlYluKPDBzDVzMmfCobUjjhAryZV0AIpRPrxN0eAkxXO6ZLEScmt+PNhj2OTw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.23.0
- '@babel/helper-plugin-utils': 7.24.8
- dev: false
- /@babel/plugin-transform-typeof-symbol/7.22.5_@babel+core@7.23.0:
- resolution: {integrity: sha512-bYkI5lMzL4kPii4HHEEChkD0rkc+nvnlR6+o/qdqR6zrm0Sv/nodmyLhlq2DO0YKLUNd2VePmPRjJXSBh9OIdA==}
+ '@babel/plugin-transform-typeof-symbol@7.25.9':
+ resolution: {integrity: sha512-v61XqUMiueJROUv66BVIOi0Fv/CUuZuZMl5NkRoCVxLAnMexZ0A3kMe7vvZ0nulxMuMp0Mk6S5hNh48yki08ZA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.23.0
- '@babel/helper-plugin-utils': 7.24.8
- dev: false
- /@babel/plugin-transform-unicode-escapes/7.22.10_@babel+core@7.23.0:
- resolution: {integrity: sha512-lRfaRKGZCBqDlRU3UIFovdp9c9mEvlylmpod0/OatICsSfuQ9YFthRo1tpTkGsklEefZdqlEFdY4A2dwTb6ohg==}
+ '@babel/plugin-transform-unicode-escapes@7.25.9':
+ resolution: {integrity: sha512-s5EDrE6bW97LtxOcGj1Khcx5AaXwiMmi4toFWRDP9/y0Woo6pXC+iyPu/KuhKtfSrNFd7jJB+/fkOtZy6aIC6Q==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.23.0
- '@babel/helper-plugin-utils': 7.24.8
- dev: false
- /@babel/plugin-transform-unicode-property-regex/7.22.5_@babel+core@7.23.0:
- resolution: {integrity: sha512-HCCIb+CbJIAE6sXn5CjFQXMwkCClcOfPCzTlilJ8cUatfzwHlWQkbtV0zD338u9dZskwvuOYTuuaMaA8J5EI5A==}
+ '@babel/plugin-transform-unicode-property-regex@7.25.9':
+ resolution: {integrity: sha512-Jt2d8Ga+QwRluxRQ307Vlxa6dMrYEMZCgGxoPR8V52rxPyldHu3hdlHspxaqYmE7oID5+kB+UKUB/eWS+DkkWg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.23.0
- '@babel/helper-create-regexp-features-plugin': 7.22.15_@babel+core@7.23.0
- '@babel/helper-plugin-utils': 7.24.8
- dev: false
- /@babel/plugin-transform-unicode-regex/7.22.5_@babel+core@7.23.0:
- resolution: {integrity: sha512-028laaOKptN5vHJf9/Arr/HiJekMd41hOEZYvNsrsXqJ7YPYuX2bQxh31fkZzGmq3YqHRJzYFFAVYvKfMPKqyg==}
+ '@babel/plugin-transform-unicode-regex@7.25.9':
+ resolution: {integrity: sha512-yoxstj7Rg9dlNn9UQxzk4fcNivwv4nUYz7fYXBaKxvw/lnmPuOm/ikoELygbYq68Bls3D/D+NBPHiLwZdZZ4HA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.23.0
- '@babel/helper-create-regexp-features-plugin': 7.22.15_@babel+core@7.23.0
- '@babel/helper-plugin-utils': 7.24.8
- dev: false
- /@babel/plugin-transform-unicode-sets-regex/7.22.5_@babel+core@7.23.0:
- resolution: {integrity: sha512-lhMfi4FC15j13eKrh3DnYHjpGj6UKQHtNKTbtc1igvAhRy4+kLhV07OpLcsN0VgDEw/MjAvJO4BdMJsHwMhzCg==}
+ '@babel/plugin-transform-unicode-sets-regex@7.25.9':
+ resolution: {integrity: sha512-8BYqO3GeVNHtx69fdPshN3fnzUNLrWdHhk/icSwigksJGczKSizZ+Z6SBCxTs723Fr5VSNorTIK7a+R2tISvwQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
- dependencies:
- '@babel/core': 7.23.0
- '@babel/helper-create-regexp-features-plugin': 7.22.15_@babel+core@7.23.0
- '@babel/helper-plugin-utils': 7.24.8
- dev: false
- /@babel/preset-env/7.22.20_@babel+core@7.23.0:
- resolution: {integrity: sha512-11MY04gGC4kSzlPHRfvVkNAZhUxOvm7DCJ37hPDnUENwe06npjIRAfInEMTGSb4LZK5ZgDFkv5hw0lGebHeTyg==}
+ '@babel/preset-env@7.26.0':
+ resolution: {integrity: sha512-H84Fxq0CQJNdPFT2DrfnylZ3cf5K43rGfWK4LJGPpjKHiZlk0/RzwEus3PDDZZg+/Er7lCA03MVacueUuXdzfw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- dependencies:
- '@babel/compat-data': 7.25.2
- '@babel/core': 7.23.0
- '@babel/helper-compilation-targets': 7.25.2
- '@babel/helper-plugin-utils': 7.24.8
- '@babel/helper-validator-option': 7.24.8
- '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression': 7.22.15_@babel+core@7.23.0
- '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining': 7.22.15_@babel+core@7.23.0
- '@babel/plugin-proposal-private-property-in-object': 7.21.0-placeholder-for-preset-env.2_@babel+core@7.23.0
- '@babel/plugin-syntax-async-generators': 7.8.4_@babel+core@7.23.0
- '@babel/plugin-syntax-class-properties': 7.12.13_@babel+core@7.23.0
- '@babel/plugin-syntax-class-static-block': 7.14.5_@babel+core@7.23.0
- '@babel/plugin-syntax-dynamic-import': 7.8.3_@babel+core@7.23.0
- '@babel/plugin-syntax-export-namespace-from': 7.8.3_@babel+core@7.23.0
- '@babel/plugin-syntax-import-assertions': 7.22.5_@babel+core@7.23.0
- '@babel/plugin-syntax-import-attributes': 7.22.5_@babel+core@7.23.0
- '@babel/plugin-syntax-import-meta': 7.10.4_@babel+core@7.23.0
- '@babel/plugin-syntax-json-strings': 7.8.3_@babel+core@7.23.0
- '@babel/plugin-syntax-logical-assignment-operators': 7.10.4_@babel+core@7.23.0
- '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3_@babel+core@7.23.0
- '@babel/plugin-syntax-numeric-separator': 7.10.4_@babel+core@7.23.0
- '@babel/plugin-syntax-object-rest-spread': 7.8.3_@babel+core@7.23.0
- '@babel/plugin-syntax-optional-catch-binding': 7.8.3_@babel+core@7.23.0
- '@babel/plugin-syntax-optional-chaining': 7.8.3_@babel+core@7.23.0
- '@babel/plugin-syntax-private-property-in-object': 7.14.5_@babel+core@7.23.0
- '@babel/plugin-syntax-top-level-await': 7.14.5_@babel+core@7.23.0
- '@babel/plugin-syntax-unicode-sets-regex': 7.18.6_@babel+core@7.23.0
- '@babel/plugin-transform-arrow-functions': 7.22.5_@babel+core@7.23.0
- '@babel/plugin-transform-async-generator-functions': 7.22.15_@babel+core@7.23.0
- '@babel/plugin-transform-async-to-generator': 7.22.5_@babel+core@7.23.0
- '@babel/plugin-transform-block-scoped-functions': 7.22.5_@babel+core@7.23.0
- '@babel/plugin-transform-block-scoping': 7.23.0_@babel+core@7.23.0
- '@babel/plugin-transform-class-properties': 7.22.5_@babel+core@7.23.0
- '@babel/plugin-transform-class-static-block': 7.22.11_@babel+core@7.23.0
- '@babel/plugin-transform-classes': 7.22.15_@babel+core@7.23.0
- '@babel/plugin-transform-computed-properties': 7.22.5_@babel+core@7.23.0
- '@babel/plugin-transform-destructuring': 7.23.0_@babel+core@7.23.0
- '@babel/plugin-transform-dotall-regex': 7.22.5_@babel+core@7.23.0
- '@babel/plugin-transform-duplicate-keys': 7.22.5_@babel+core@7.23.0
- '@babel/plugin-transform-dynamic-import': 7.22.11_@babel+core@7.23.0
- '@babel/plugin-transform-exponentiation-operator': 7.22.5_@babel+core@7.23.0
- '@babel/plugin-transform-export-namespace-from': 7.22.11_@babel+core@7.23.0
- '@babel/plugin-transform-for-of': 7.22.15_@babel+core@7.23.0
- '@babel/plugin-transform-function-name': 7.22.5_@babel+core@7.23.0
- '@babel/plugin-transform-json-strings': 7.22.11_@babel+core@7.23.0
- '@babel/plugin-transform-literals': 7.22.5_@babel+core@7.23.0
- '@babel/plugin-transform-logical-assignment-operators': 7.22.11_@babel+core@7.23.0
- '@babel/plugin-transform-member-expression-literals': 7.22.5_@babel+core@7.23.0
- '@babel/plugin-transform-modules-amd': 7.23.0_@babel+core@7.23.0
- '@babel/plugin-transform-modules-commonjs': 7.23.0_@babel+core@7.23.0
- '@babel/plugin-transform-modules-systemjs': 7.23.0_@babel+core@7.23.0
- '@babel/plugin-transform-modules-umd': 7.22.5_@babel+core@7.23.0
- '@babel/plugin-transform-named-capturing-groups-regex': 7.22.5_@babel+core@7.23.0
- '@babel/plugin-transform-new-target': 7.22.5_@babel+core@7.23.0
- '@babel/plugin-transform-nullish-coalescing-operator': 7.22.11_@babel+core@7.23.0
- '@babel/plugin-transform-numeric-separator': 7.22.11_@babel+core@7.23.0
- '@babel/plugin-transform-object-rest-spread': 7.22.15_@babel+core@7.23.0
- '@babel/plugin-transform-object-super': 7.22.5_@babel+core@7.23.0
- '@babel/plugin-transform-optional-catch-binding': 7.22.11_@babel+core@7.23.0
- '@babel/plugin-transform-optional-chaining': 7.23.0_@babel+core@7.23.0
- '@babel/plugin-transform-parameters': 7.22.15_@babel+core@7.23.0
- '@babel/plugin-transform-private-methods': 7.22.5_@babel+core@7.23.0
- '@babel/plugin-transform-private-property-in-object': 7.22.11_@babel+core@7.23.0
- '@babel/plugin-transform-property-literals': 7.22.5_@babel+core@7.23.0
- '@babel/plugin-transform-regenerator': 7.22.10_@babel+core@7.23.0
- '@babel/plugin-transform-reserved-words': 7.22.5_@babel+core@7.23.0
- '@babel/plugin-transform-shorthand-properties': 7.22.5_@babel+core@7.23.0
- '@babel/plugin-transform-spread': 7.22.5_@babel+core@7.23.0
- '@babel/plugin-transform-sticky-regex': 7.22.5_@babel+core@7.23.0
- '@babel/plugin-transform-template-literals': 7.22.5_@babel+core@7.23.0
- '@babel/plugin-transform-typeof-symbol': 7.22.5_@babel+core@7.23.0
- '@babel/plugin-transform-unicode-escapes': 7.22.10_@babel+core@7.23.0
- '@babel/plugin-transform-unicode-property-regex': 7.22.5_@babel+core@7.23.0
- '@babel/plugin-transform-unicode-regex': 7.22.5_@babel+core@7.23.0
- '@babel/plugin-transform-unicode-sets-regex': 7.22.5_@babel+core@7.23.0
- '@babel/preset-modules': 0.1.6-no-external-plugins_@babel+core@7.23.0
- '@babel/types': 7.25.2
- babel-plugin-polyfill-corejs2: 0.4.5_@babel+core@7.23.0
- babel-plugin-polyfill-corejs3: 0.8.4_@babel+core@7.23.0
- babel-plugin-polyfill-regenerator: 0.5.2_@babel+core@7.23.0
- core-js-compat: 3.33.0
- semver: 6.3.1
- transitivePeerDependencies:
- - supports-color
- dev: false
- /@babel/preset-modules/0.1.6-no-external-plugins_@babel+core@7.23.0:
+ '@babel/preset-modules@0.1.6-no-external-plugins':
resolution: {integrity: sha512-HrcgcIESLm9aIR842yhJ5RWan/gebQUJ6E/E5+rf0y9o6oj7w0Br+sWuL6kEQ/o/AdfvR1Je9jG18/gnpwjEyA==}
peerDependencies:
'@babel/core': ^7.0.0-0 || ^8.0.0-0 <8.0.0
- dependencies:
- '@babel/core': 7.23.0
- '@babel/helper-plugin-utils': 7.24.8
- '@babel/types': 7.25.2
- esutils: 2.0.3
- dev: false
-
- /@babel/regjsgen/0.8.0:
- resolution: {integrity: sha512-x/rqGMdzj+fWZvCOYForTghzbtqPDZ5gPwaoNGHdgDfF2QA/XZbCBp4Moo5scrkAMPhB7z26XM/AaHuIJdgauA==}
- dev: false
- /@babel/runtime/7.23.1:
- resolution: {integrity: sha512-hC2v6p8ZSI/W0HUzh3V8C5g+NwSKzKPtJwSpTjwl0o297GP9+ZLQSkdvHz46CM3LqyoXxq+5G9komY+eSqSO0g==}
+ '@babel/runtime@7.26.0':
+ resolution: {integrity: sha512-FDSOghenHTiToteC/QRlv2q3DhPZ/oOXTBoirfWNx1Cx3TMVcGWQtMMmQcSvb/JjpNeGzx8Pq/b4fKEJuWm1sw==}
engines: {node: '>=6.9.0'}
- dependencies:
- regenerator-runtime: 0.14.0
- dev: false
- /@babel/template/7.22.15:
- resolution: {integrity: sha512-QPErUVm4uyJa60rkI73qneDacvdvzxshT3kksGqlGWYdOTIUOwJ7RDUL8sGqslY1uXWSL6xMFKEXDS3ox2uF0w==}
+ '@babel/template@7.25.9':
+ resolution: {integrity: sha512-9DGttpmPvIxBb/2uwpVo3dqJ+O6RooAFOS+lB+xDqoE2PVCE8nfoHMdZLpfCQRLwvohzXISPZcgxt80xLfsuwg==}
engines: {node: '>=6.9.0'}
- dependencies:
- '@babel/code-frame': 7.24.7
- '@babel/parser': 7.23.0
- '@babel/types': 7.25.2
- /@babel/template/7.25.0:
- resolution: {integrity: sha512-aOOgh1/5XzKvg1jvVz7AVrx2piJ2XBi227DHmbY6y+bM9H2FlN+IfecYu4Xl0cNiiVejlsCri89LUsbj8vJD9Q==}
- engines: {node: '>=6.9.0'}
- dependencies:
- '@babel/code-frame': 7.24.7
- '@babel/parser': 7.25.3
- '@babel/types': 7.25.2
+ '@babel/template@8.0.0-alpha.13':
+ resolution: {integrity: sha512-LWTTYgBl2Ki+NOUQcQvcGcqO1FZl/FNxbZvGSJ5XJQM84PxFSPUDkoNFCvYLanz7uKKu62q/QYRtqu01WxFxdA==}
+ engines: {node: ^18.20.0 || ^20.17.0 || >=22.8.0}
- /@babel/traverse/7.23.0:
- resolution: {integrity: sha512-t/QaEvyIoIkwzpiZ7aoSKK8kObQYeF7T2v+dazAYCb8SXtp58zEVkWW7zAnju8FNKNdr4ScAOEDmMItbyOmEYw==}
+ '@babel/traverse@7.25.9':
+ resolution: {integrity: sha512-ZCuvfwOwlz/bawvAuvcj8rrithP2/N55Tzz342AkTvq4qaWbGfmCk/tKhNaV2cthijKrPAA8SRJV5WWe7IBMJw==}
engines: {node: '>=6.9.0'}
- dependencies:
- '@babel/code-frame': 7.24.7
- '@babel/generator': 7.25.0
- '@babel/helper-environment-visitor': 7.22.20
- '@babel/helper-function-name': 7.23.0
- '@babel/helper-hoist-variables': 7.22.5
- '@babel/helper-split-export-declaration': 7.22.6
- '@babel/parser': 7.23.0
- '@babel/types': 7.25.2
- debug: 4.3.6
- globals: 11.12.0
- transitivePeerDependencies:
- - supports-color
- /@babel/traverse/7.25.3:
- resolution: {integrity: sha512-HefgyP1x754oGCsKmV5reSmtV7IXj/kpaE1XYY+D9G5PvKKoFfSbiS4M77MdjuwlZKDIKFCffq9rPU+H/s3ZdQ==}
- engines: {node: '>=6.9.0'}
- dependencies:
- '@babel/code-frame': 7.24.7
- '@babel/generator': 7.25.0
- '@babel/parser': 7.25.3
- '@babel/template': 7.25.0
- '@babel/types': 7.25.2
- debug: 4.3.6
- globals: 11.12.0
- transitivePeerDependencies:
- - supports-color
+ '@babel/traverse@8.0.0-alpha.13':
+ resolution: {integrity: sha512-eq35clOTKgbC+Zb92YhjXNFa3QWjaNxKrxwSbJQ7CEYtO34SycgnHdqRLoA6mikzfu4feDt8SHclkGh39jXUTw==}
+ engines: {node: ^18.20.0 || ^20.17.0 || >=22.8.0}
- /@babel/types/7.23.0:
- resolution: {integrity: sha512-0oIyUfKoI3mSqMvsxBdclDwxXKXAUA8v/apZbc+iSyARYou1o8ZGDxbUYyLFoW2arqS2jDGqJuZvv1d/io1axg==}
+ '@babel/types@7.26.0':
+ resolution: {integrity: sha512-Z/yiTPj+lDVnF7lWeKCIJzaIkI0vYO87dMpZ4bg4TDrFe4XXLFWL1TbXU27gBP3QccxV9mZICCrnjnYlJjXHOA==}
engines: {node: '>=6.9.0'}
- dependencies:
- '@babel/helper-string-parser': 7.22.5
- '@babel/helper-validator-identifier': 7.22.20
- to-fast-properties: 2.0.0
- /@babel/types/7.25.2:
- resolution: {integrity: sha512-YTnYtra7W9e6/oAZEHj0bJehPRUlLH9/fbpT5LfB0NhQXyALCRkRs3zH9v07IYhkgpqX6Z78FnuccZr/l4Fs4Q==}
- engines: {node: '>=6.9.0'}
- dependencies:
- '@babel/helper-string-parser': 7.24.8
- '@babel/helper-validator-identifier': 7.24.7
- to-fast-properties: 2.0.0
+ '@babel/types@8.0.0-alpha.13':
+ resolution: {integrity: sha512-Kt8oBPvsc0h5t06LfUPkBtkPk6t58FzCcpf4Qsjg142gEgaDwFcg+ZPeBCJySLqenk+ISUkdTXsvhbLXj74kIA==}
+ engines: {node: ^18.20.0 || ^20.17.0 || >=22.8.0}
- /@bandwidth/messaging/4.1.1:
- resolution: {integrity: sha512-BCgDSw8pvzkp+LKv/F5VzksKAq6ZPvcogXJStW3HwMC7gybf1ktoLmIa6JJ5J5AM+dM1rcuht0EZiuPuj0grMw==}
+ '@bandwidth/messaging@4.1.7':
+ resolution: {integrity: sha512-u6OH1FpFGSxzaZ/R2DiSAjlOH5Z6FldTeinW8mJ0OVVHGtapwKpjoTaRP22aebYbyfvYBnOhtGLFhSJl0JOlNw==}
engines: {node: '>=10'}
- dependencies:
- '@apimatic/schema': 0.6.0
- axios: 0.27.2
- detect-node: 2.1.0
- form-data: 3.0.1
- json-bigint: 1.0.0
- lodash.flatmap: 4.5.0
- tiny-warning: 1.0.3
- transitivePeerDependencies:
- - debug
- dev: false
+ deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info.
- /@bcoe/v8-coverage/0.2.3:
+ '@bcoe/v8-coverage@0.2.3':
resolution: {integrity: sha512-0hYQ8SB4Db5zvZB4axdMHGwEaQjkZzFjQiN9LVYvIFB2nSUHW9tYpxWriPrWDASIxiaXax83REcLxuSdnGPZtw==}
- dev: true
- /@bufbuild/protobuf/1.10.0:
+ '@bufbuild/protobuf@1.10.0':
resolution: {integrity: sha512-QDdVFLoN93Zjg36NoQPZfsVH9tZew7wKDKyV5qRdj8ntT4wQCOradQjRaTdwMhWUYsgKsvCINKKm87FdEk96Ag==}
- dev: false
- /@bufbuild/protobuf/2.2.2:
+ '@bufbuild/protobuf@2.2.2':
resolution: {integrity: sha512-UNtPCbrwrenpmrXuRwn9jYpPoweNXj8X5sMvYgsqYyaH8jQ6LfUJSk3dJLnBK+6sfYPrF4iAIo5sd5HQ+tg75A==}
- dev: false
- /@colors/colors/1.5.0:
- resolution: {integrity: sha512-ooWCrlZP11i8GImSjTHYHLkvFDP48nS4+204nGb1RiX/WXYHmJA2III9/e2DWVabCESdW7hBAEzHRqUn9OUVvQ==}
- engines: {node: '>=0.1.90'}
- dev: false
-
- /@colors/colors/1.6.0:
+ '@colors/colors@1.6.0':
resolution: {integrity: sha512-Ir+AOibqzrIsL6ajt3Rz3LskB7OiMVHqltZmspbW/TJuTVuyOMirVqAkjfY6JISiLHgyNqicAC8AyHHGzNd/dA==}
engines: {node: '>=0.1.90'}
- dev: false
- /@connectrpc/connect-web/2.0.0-rc.3_jstrmpjfjf66z7q7ylujb4ahui:
+ '@connectrpc/connect-web@2.0.0-rc.3':
resolution: {integrity: sha512-w88P8Lsn5CCsA7MFRl2e6oLY4J/5toiNtJns/YJrlyQaWOy3RO8pDgkz+iIkG98RPMhj2thuBvsd3Cn4DKKCkw==}
peerDependencies:
'@bufbuild/protobuf': ^2.2.0
'@connectrpc/connect': 2.0.0-rc.3
- dependencies:
- '@bufbuild/protobuf': 2.2.2
- '@connectrpc/connect': 2.0.0-rc.3_@bufbuild+protobuf@2.2.2
- dev: false
- /@connectrpc/connect/2.0.0-rc.3_@bufbuild+protobuf@2.2.2:
+ '@connectrpc/connect@2.0.0-rc.3':
resolution: {integrity: sha512-ARBt64yEyKbanyRETTjcjJuHr2YXorzQo0etyS5+P6oSeW8xEuzajA9g+zDnMcj1hlX2dQE93foIWQGfpru7gQ==}
peerDependencies:
'@bufbuild/protobuf': ^2.2.0
- dependencies:
- '@bufbuild/protobuf': 2.2.2
- dev: false
- /@csstools/css-parser-algorithms/2.3.2_qabfbasg4cggam7o7issvon7wi:
- resolution: {integrity: sha512-sLYGdAdEY2x7TSw9FtmdaTrh2wFtRJO5VMbBrA8tEqEod7GEggFmxTSK9XqExib3yMuYNcvcTdCZIP6ukdjAIA==}
- engines: {node: ^14 || ^16 || >=18}
+ '@csstools/css-parser-algorithms@3.0.4':
+ resolution: {integrity: sha512-Up7rBoV77rv29d3uKHUIVubz1BTcgyUK72IvCQAbfbMv584xHcGKCKbWh7i8hPrRJ7qU4Y8IO3IY9m+iTB7P3A==}
+ engines: {node: '>=18'}
peerDependencies:
- '@csstools/css-tokenizer': ^2.2.1
- dependencies:
- '@csstools/css-tokenizer': 2.2.1
- dev: true
+ '@csstools/css-tokenizer': ^3.0.3
- /@csstools/css-tokenizer/2.2.1:
- resolution: {integrity: sha512-Zmsf2f/CaEPWEVgw29odOj+WEVoiJy9s9NOv5GgNY9mZ1CZ7394By6wONrONrTsnNDv6F9hR02nvFihrGVGHBg==}
- engines: {node: ^14 || ^16 || >=18}
- dev: true
+ '@csstools/css-tokenizer@3.0.3':
+ resolution: {integrity: sha512-UJnjoFsmxfKUdNYdWgOB0mWUypuLvAfQPH1+pyvRJs6euowbFkFC6P13w1l8mJyi3vxYMxc9kld5jZEGRQs6bw==}
+ engines: {node: '>=18'}
- /@csstools/media-query-list-parser/2.1.5_vhcwb4dquzanhfkhxuqink5gke:
- resolution: {integrity: sha512-IxVBdYzR8pYe89JiyXQuYk4aVVoCPhMJkz6ElRwlVysjwURTsTk/bmY/z4FfeRE+CRBMlykPwXEVUg8lThv7AQ==}
- engines: {node: ^14 || ^16 || >=18}
+ '@csstools/media-query-list-parser@3.0.1':
+ resolution: {integrity: sha512-HNo8gGD02kHmcbX6PvCoUuOQvn4szyB9ca63vZHKX5A81QytgDG4oxG4IaEfHTlEZSZ6MjPEMWIVU+zF2PZcgw==}
+ engines: {node: '>=18'}
peerDependencies:
- '@csstools/css-parser-algorithms': ^2.3.2
- '@csstools/css-tokenizer': ^2.2.1
- dependencies:
- '@csstools/css-parser-algorithms': 2.3.2_qabfbasg4cggam7o7issvon7wi
- '@csstools/css-tokenizer': 2.2.1
- dev: true
+ '@csstools/css-parser-algorithms': ^3.0.1
+ '@csstools/css-tokenizer': ^3.0.1
- /@csstools/selector-specificity/3.0.0_c3vcbepomgmxc74cgtawpgpkyi:
- resolution: {integrity: sha512-hBI9tfBtuPIi885ZsZ32IMEU/5nlZH/KOVYJCOh7gyMxaVLGmLedYqFN6Ui1LXkI8JlC8IsuC0rF0btcRZKd5g==}
- engines: {node: ^14 || ^16 || >=18}
+ '@csstools/selector-specificity@4.0.0':
+ resolution: {integrity: sha512-189nelqtPd8++phaHNwYovKZI0FOzH1vQEE3QhHHkNIGrg5fSs9CbYP3RvfEH5geztnIA9Jwq91wyOIwAW5JIQ==}
+ engines: {node: '>=18'}
peerDependencies:
- postcss-selector-parser: ^6.0.13
- dependencies:
- postcss-selector-parser: 6.0.13
- dev: true
+ postcss-selector-parser: ^6.1.0
- /@dabh/diagnostics/2.0.3:
+ '@dabh/diagnostics@2.0.3':
resolution: {integrity: sha512-hrlQOIi7hAfzsMqlGSFyVucrx38O+j6wiGOf//H2ecvIEqYN4ADBSS2iLMh5UFyDunCNniUIPk/q3riFv45xRA==}
- dependencies:
- colorspace: 1.1.4
- enabled: 2.0.0
- kuler: 2.0.0
- dev: false
- /@definitelytyped/header-parser/0.2.15:
+ '@definitelytyped/header-parser@0.2.15':
resolution: {integrity: sha512-SRUpmhQ7QZpsjLiA9SlwaD2Ct1xOc5Vt8cpZAqQ+P/puu4nNIsibCW87NKkyjCXG+MCUVFWEK7rVCTd12m2hTw==}
engines: {node: '>=18.18.0'}
- dependencies:
- '@definitelytyped/typescript-versions': 0.1.5
- '@definitelytyped/utils': 0.1.8
- semver: 7.6.3
- dev: true
- /@definitelytyped/typescript-versions/0.1.5:
+ '@definitelytyped/typescript-versions@0.1.5':
resolution: {integrity: sha512-XdLx3+S6zZCcG4jnG6Kqv/PlKBRTkz5M/xZUEEN9R2g6BlzbxyE+z5EzlezJqkUls53zjuOzgbkNNP4HQIfbJQ==}
engines: {node: '>=18.18.0'}
- dev: true
- /@definitelytyped/utils/0.1.8:
+ '@definitelytyped/utils@0.1.8':
resolution: {integrity: sha512-4JINx4Rttha29f50PBsJo48xZXx/He5yaIWJRwVarhYAN947+S84YciHl+AIhQNRPAFkg8+5qFngEGtKxQDWXA==}
engines: {node: '>=18.18.0'}
- dependencies:
- '@qiwi/npm-registry-client': 8.9.1
- '@types/node': 18.19.8
- cachedir: 2.4.0
- charm: 1.0.2
- minimatch: 9.0.5
- tar: 6.2.1
- tar-stream: 3.1.6
- which: 4.0.0
- dev: true
- /@e2b/code-interpreter/1.0.4:
+ '@dual-bundle/import-meta-resolve@4.1.0':
+ resolution: {integrity: sha512-+nxncfwHM5SgAtrVzgpzJOI1ol0PkumhVo469KCf9lUi21IGcY90G98VuHm9VRrUypmAzawAHO9bs6hqeADaVg==}
+
+ '@e2b/code-interpreter@1.0.4':
resolution: {integrity: sha512-8y82UMXBdf/hye8bX2Fn04JlL72rvOenVgsvMZ+cAJqo6Ijdl4EmzzuFpM4mz9s+EJ29+34lGHBp277tiLWuiA==}
engines: {node: '>=18'}
- dependencies:
- e2b: 1.0.5
- dev: false
- /@eslint-community/eslint-utils/4.4.0_eslint@8.15.0:
- resolution: {integrity: sha512-1/sA4dwrzBAyeUoQ6oxahHKmrZvsnLCg4RfxW3ZFGGmQkSNQPFNLV9CUEFQP1x9EYXHTo5p6xdhZM1Ne9p/AfA==}
+ '@emnapi/runtime@1.3.1':
+ resolution: {integrity: sha512-kEBmG8KyqtxJZv+ygbEim+KCGtIq1fC22Ms3S4ziXmYKm8uyoLX0MHONVKwp+9opg390VaKRNt4a7A9NwmpNhw==}
+
+ '@emotion/babel-plugin@11.13.5':
+ resolution: {integrity: sha512-pxHCpT2ex+0q+HH91/zsdHkw/lXd468DIN2zvfvLtPKLLMo6gQj7oLObq8PhkrxOZb/gGCq03S3Z7PDhS8pduQ==}
+
+ '@emotion/cache@11.13.5':
+ resolution: {integrity: sha512-Z3xbtJ+UcK76eWkagZ1onvn/wAVb1GOMuR15s30Fm2wrMgC7jzpnO2JZXr4eujTTqoQFUrZIw/rT0c6Zzjca1g==}
+
+ '@emotion/hash@0.9.2':
+ resolution: {integrity: sha512-MyqliTZGuOm3+5ZRSaaBGP3USLw6+EGykkwZns2EPC5g8jJ4z9OrdZY9apkl3+UP9+sdz76YYkwCKP5gh8iY3g==}
+
+ '@emotion/memoize@0.9.0':
+ resolution: {integrity: sha512-30FAj7/EoJ5mwVPOWhAyCX+FPfMDrVecJAM+Iw9NRoSl4BBAQeqj4cApHHUXOVvIPgLVDsCFoz/hGD+5QQD1GQ==}
+
+ '@emotion/react@11.13.5':
+ resolution: {integrity: sha512-6zeCUxUH+EPF1s+YF/2hPVODeV/7V07YU5x+2tfuRL8MdW6rv5vb2+CBEGTGwBdux0OIERcOS+RzxeK80k2DsQ==}
+ peerDependencies:
+ '@types/react': '*'
+ react: '>=16.8.0'
+ peerDependenciesMeta:
+ '@types/react':
+ optional: true
+
+ '@emotion/serialize@1.3.3':
+ resolution: {integrity: sha512-EISGqt7sSNWHGI76hC7x1CksiXPahbxEOrC5RjmFRJTqLyEK9/9hZvBbiYn70dw4wuwMKiEMCUlR6ZXTSWQqxA==}
+
+ '@emotion/sheet@1.4.0':
+ resolution: {integrity: sha512-fTBW9/8r2w3dXWYM4HCB1Rdp8NLibOw2+XELH5m5+AkWiL/KqYX6dc0kKYlaYyKjrQ6ds33MCdMPEwgs2z1rqg==}
+
+ '@emotion/unitless@0.10.0':
+ resolution: {integrity: sha512-dFoMUuQA20zvtVTuxZww6OHoJYgrzfKM1t52mVySDJnMSEa08ruEvdYQbhvyu6soU+NeLVd3yKfTfT0NeV6qGg==}
+
+ '@emotion/use-insertion-effect-with-fallbacks@1.1.0':
+ resolution: {integrity: sha512-+wBOcIV5snwGgI2ya3u99D7/FJquOIniQT1IKyDsBmEgwvpxMNeS65Oib7OnE2d2aY+3BU4OiH+0Wchf8yk3Hw==}
+ peerDependencies:
+ react: '>=16.8.0'
+
+ '@emotion/utils@1.4.2':
+ resolution: {integrity: sha512-3vLclRofFziIa3J2wDh9jjbkUz9qk5Vi3IZ/FSTKViB0k+ef0fPV7dYrUIugbgupYDx7v9ud/SjrtEP8Y4xLoA==}
+
+ '@emotion/weak-memoize@0.4.0':
+ resolution: {integrity: sha512-snKqtPW01tN0ui7yu9rGv69aJXr/a/Ywvl11sUjNtEcRc+ng/mQriFL0wLXMef74iHa/EkftbDzU9F8iFbH+zg==}
+
+ '@esbuild/aix-ppc64@0.21.5':
+ resolution: {integrity: sha512-1SDgH6ZSPTlggy1yI6+Dbkiz8xzpHJEVAlF/AM1tHPLsf5STom9rwtjE4hKAF20FfXXNTFqEYXyJNWh1GiZedQ==}
+ engines: {node: '>=12'}
+ cpu: [ppc64]
+ os: [aix]
+
+ '@esbuild/android-arm64@0.21.5':
+ resolution: {integrity: sha512-c0uX9VAUBQ7dTDCjq+wdyGLowMdtR/GoC2U5IYk/7D1H1JYC0qseD7+11iMP2mRLN9RcCMRcjC4YMclCzGwS/A==}
+ engines: {node: '>=12'}
+ cpu: [arm64]
+ os: [android]
+
+ '@esbuild/android-arm@0.21.5':
+ resolution: {integrity: sha512-vCPvzSjpPHEi1siZdlvAlsPxXl7WbOVUBBAowWug4rJHb68Ox8KualB+1ocNvT5fjv6wpkX6o/iEpbDrf68zcg==}
+ engines: {node: '>=12'}
+ cpu: [arm]
+ os: [android]
+
+ '@esbuild/android-x64@0.21.5':
+ resolution: {integrity: sha512-D7aPRUUNHRBwHxzxRvp856rjUHRFW1SdQATKXH2hqA0kAZb1hKmi02OpYRacl0TxIGz/ZmXWlbZgjwWYaCakTA==}
+ engines: {node: '>=12'}
+ cpu: [x64]
+ os: [android]
+
+ '@esbuild/darwin-arm64@0.21.5':
+ resolution: {integrity: sha512-DwqXqZyuk5AiWWf3UfLiRDJ5EDd49zg6O9wclZ7kUMv2WRFr4HKjXp/5t8JZ11QbQfUS6/cRCKGwYhtNAY88kQ==}
+ engines: {node: '>=12'}
+ cpu: [arm64]
+ os: [darwin]
+
+ '@esbuild/darwin-x64@0.21.5':
+ resolution: {integrity: sha512-se/JjF8NlmKVG4kNIuyWMV/22ZaerB+qaSi5MdrXtd6R08kvs2qCN4C09miupktDitvh8jRFflwGFBQcxZRjbw==}
+ engines: {node: '>=12'}
+ cpu: [x64]
+ os: [darwin]
+
+ '@esbuild/freebsd-arm64@0.21.5':
+ resolution: {integrity: sha512-5JcRxxRDUJLX8JXp/wcBCy3pENnCgBR9bN6JsY4OmhfUtIHe3ZW0mawA7+RDAcMLrMIZaf03NlQiX9DGyB8h4g==}
+ engines: {node: '>=12'}
+ cpu: [arm64]
+ os: [freebsd]
+
+ '@esbuild/freebsd-x64@0.21.5':
+ resolution: {integrity: sha512-J95kNBj1zkbMXtHVH29bBriQygMXqoVQOQYA+ISs0/2l3T9/kj42ow2mpqerRBxDJnmkUDCaQT/dfNXWX/ZZCQ==}
+ engines: {node: '>=12'}
+ cpu: [x64]
+ os: [freebsd]
+
+ '@esbuild/linux-arm64@0.21.5':
+ resolution: {integrity: sha512-ibKvmyYzKsBeX8d8I7MH/TMfWDXBF3db4qM6sy+7re0YXya+K1cem3on9XgdT2EQGMu4hQyZhan7TeQ8XkGp4Q==}
+ engines: {node: '>=12'}
+ cpu: [arm64]
+ os: [linux]
+
+ '@esbuild/linux-arm@0.21.5':
+ resolution: {integrity: sha512-bPb5AHZtbeNGjCKVZ9UGqGwo8EUu4cLq68E95A53KlxAPRmUyYv2D6F0uUI65XisGOL1hBP5mTronbgo+0bFcA==}
+ engines: {node: '>=12'}
+ cpu: [arm]
+ os: [linux]
+
+ '@esbuild/linux-ia32@0.21.5':
+ resolution: {integrity: sha512-YvjXDqLRqPDl2dvRODYmmhz4rPeVKYvppfGYKSNGdyZkA01046pLWyRKKI3ax8fbJoK5QbxblURkwK/MWY18Tg==}
+ engines: {node: '>=12'}
+ cpu: [ia32]
+ os: [linux]
+
+ '@esbuild/linux-loong64@0.21.5':
+ resolution: {integrity: sha512-uHf1BmMG8qEvzdrzAqg2SIG/02+4/DHB6a9Kbya0XDvwDEKCoC8ZRWI5JJvNdUjtciBGFQ5PuBlpEOXQj+JQSg==}
+ engines: {node: '>=12'}
+ cpu: [loong64]
+ os: [linux]
+
+ '@esbuild/linux-mips64el@0.21.5':
+ resolution: {integrity: sha512-IajOmO+KJK23bj52dFSNCMsz1QP1DqM6cwLUv3W1QwyxkyIWecfafnI555fvSGqEKwjMXVLokcV5ygHW5b3Jbg==}
+ engines: {node: '>=12'}
+ cpu: [mips64el]
+ os: [linux]
+
+ '@esbuild/linux-ppc64@0.21.5':
+ resolution: {integrity: sha512-1hHV/Z4OEfMwpLO8rp7CvlhBDnjsC3CttJXIhBi+5Aj5r+MBvy4egg7wCbe//hSsT+RvDAG7s81tAvpL2XAE4w==}
+ engines: {node: '>=12'}
+ cpu: [ppc64]
+ os: [linux]
+
+ '@esbuild/linux-riscv64@0.21.5':
+ resolution: {integrity: sha512-2HdXDMd9GMgTGrPWnJzP2ALSokE/0O5HhTUvWIbD3YdjME8JwvSCnNGBnTThKGEB91OZhzrJ4qIIxk/SBmyDDA==}
+ engines: {node: '>=12'}
+ cpu: [riscv64]
+ os: [linux]
+
+ '@esbuild/linux-s390x@0.21.5':
+ resolution: {integrity: sha512-zus5sxzqBJD3eXxwvjN1yQkRepANgxE9lgOW2qLnmr8ikMTphkjgXu1HR01K4FJg8h1kEEDAqDcZQtbrRnB41A==}
+ engines: {node: '>=12'}
+ cpu: [s390x]
+ os: [linux]
+
+ '@esbuild/linux-x64@0.21.5':
+ resolution: {integrity: sha512-1rYdTpyv03iycF1+BhzrzQJCdOuAOtaqHTWJZCWvijKD2N5Xu0TtVC8/+1faWqcP9iBCWOmjmhoH94dH82BxPQ==}
+ engines: {node: '>=12'}
+ cpu: [x64]
+ os: [linux]
+
+ '@esbuild/netbsd-x64@0.21.5':
+ resolution: {integrity: sha512-Woi2MXzXjMULccIwMnLciyZH4nCIMpWQAs049KEeMvOcNADVxo0UBIQPfSmxB3CWKedngg7sWZdLvLczpe0tLg==}
+ engines: {node: '>=12'}
+ cpu: [x64]
+ os: [netbsd]
+
+ '@esbuild/openbsd-x64@0.21.5':
+ resolution: {integrity: sha512-HLNNw99xsvx12lFBUwoT8EVCsSvRNDVxNpjZ7bPn947b8gJPzeHWyNVhFsaerc0n3TsbOINvRP2byTZ5LKezow==}
+ engines: {node: '>=12'}
+ cpu: [x64]
+ os: [openbsd]
+
+ '@esbuild/sunos-x64@0.21.5':
+ resolution: {integrity: sha512-6+gjmFpfy0BHU5Tpptkuh8+uw3mnrvgs+dSPQXQOv3ekbordwnzTVEb4qnIvQcYXq6gzkyTnoZ9dZG+D4garKg==}
+ engines: {node: '>=12'}
+ cpu: [x64]
+ os: [sunos]
+
+ '@esbuild/win32-arm64@0.21.5':
+ resolution: {integrity: sha512-Z0gOTd75VvXqyq7nsl93zwahcTROgqvuAcYDUr+vOv8uHhNSKROyU961kgtCD1e95IqPKSQKH7tBTslnS3tA8A==}
+ engines: {node: '>=12'}
+ cpu: [arm64]
+ os: [win32]
+
+ '@esbuild/win32-ia32@0.21.5':
+ resolution: {integrity: sha512-SWXFF1CL2RVNMaVs+BBClwtfZSvDgtL//G/smwAc5oVK/UPu2Gu9tIaRgFmYFFKrmg3SyAjSrElf0TiJ1v8fYA==}
+ engines: {node: '>=12'}
+ cpu: [ia32]
+ os: [win32]
+
+ '@esbuild/win32-x64@0.21.5':
+ resolution: {integrity: sha512-tQd/1efJuzPC6rCFwEvLtci/xNFcTZknmXs98FYDfGE4wP9ClFV98nyKrzJKVPMhdDnjzLhdUyMX4PsQAPjwIw==}
+ engines: {node: '>=12'}
+ cpu: [x64]
+ os: [win32]
+
+ '@eslint-community/eslint-utils@4.4.1':
+ resolution: {integrity: sha512-s3O3waFUrMV8P/XaF/+ZTp1X9XBZW1a4B97ZnjQF2KYWaFD2A8KyFBsrsfSjEmjn3RGWAIuvlneuZm3CUK3jbA==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
peerDependencies:
eslint: ^6.0.0 || ^7.0.0 || >=8.0.0
- dependencies:
- eslint: 8.15.0
- eslint-visitor-keys: 3.4.3
- dev: true
- /@eslint-community/regexpp/4.9.1:
- resolution: {integrity: sha512-Y27x+MBLjXa+0JWDhykM3+JE+il3kHKAEqabfEWq3SDhZjLYb6/BHL/JKFnH3fe207JaXkyDo685Oc2Glt6ifA==}
+ '@eslint-community/regexpp@4.12.1':
+ resolution: {integrity: sha512-CCZCDJuduB9OUkFkY2IgppNZMi2lBQgD2qzwXkEia16cge2pijY/aXi96CJMquDMn3nJdlPV1A5KrJEXwfLNzQ==}
engines: {node: ^12.0.0 || ^14.0.0 || >=16.0.0}
- dev: true
- /@eslint/eslintrc/1.4.1:
- resolution: {integrity: sha512-XXrH9Uarn0stsyldqDYq8r++mROmWRI1xKMXa640Bb//SY1+ECYX6VzT6Lcx5frD0V30XieqJ0oX9I2Xj5aoMA==}
+ '@eslint/eslintrc@2.1.4':
+ resolution: {integrity: sha512-269Z39MS6wVJtsoUl10L60WdkhJVdPG24Q4eZTH3nnF6lpvSShEK3wQjDX9JRWAUPvPh7COouPpU9IrqaZFvtQ==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
- dependencies:
- ajv: 6.12.6
- debug: 4.3.6
- espree: 9.6.1
- globals: 13.22.0
- ignore: 5.3.1
- import-fresh: 3.3.0
- js-yaml: 4.1.0
- minimatch: 3.1.2
- strip-json-comments: 3.1.1
- transitivePeerDependencies:
- - supports-color
- dev: true
- /@eslint/js/8.50.0:
- resolution: {integrity: sha512-NCC3zz2+nvYd+Ckfh87rA47zfu2QsQpvc6k1yzTk+b9KzRj0wkGa8LSoGOXN6Zv4lRf/EIoZ80biDh9HOI+RNQ==}
+ '@eslint/eslintrc@3.2.0':
+ resolution: {integrity: sha512-grOjVNN8P3hjJn/eIETF1wwd12DdnwFDoyceUJLYYdkpbwq3nLi+4fqrTAONx7XDALqlL220wC/RHSC/QTI/0w==}
+ engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
+
+ '@eslint/js@8.57.1':
+ resolution: {integrity: sha512-d9zaMRSTIKDLhctzH12MtXvJKSSUhaHcjV+2Z+GK+EEY7XKpP5yR4x+N3TAcHTcu963nIr+TMcCb4DBCYX1z6Q==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
- dev: true
- /@exodus/schemasafe/1.3.0:
+ '@eslint/js@9.15.0':
+ resolution: {integrity: sha512-tMTqrY+EzbXmKJR5ToI8lxu7jaN5EdmrBFJpQk5JmSlyLsx6o4t27r883K5xsLuCYCpfKBCGswMSWXsM+jB7lg==}
+ engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
+
+ '@exodus/schemasafe@1.3.0':
resolution: {integrity: sha512-5Aap/GaRupgNx/feGBwLLTVv8OQFfv3pq2lPRzPg9R+IOBnDgghTGW7l7EuVXOvg5cc/xSAlRW8rBrjIC3Nvqw==}
- dev: false
- /@fastify/busboy/1.2.1:
+ '@fastify/busboy@1.2.1':
resolution: {integrity: sha512-7PQA7EH43S0CxcOa9OeAnaeA0oQ+e/DHNPZwSQM9CQHW76jle5+OvLdibRp/Aafs9KXbLhxyjOTkRjWUbQEd3Q==}
engines: {node: '>=14'}
- dependencies:
- text-decoding: 1.0.0
- dev: false
- /@fastify/busboy/2.1.1:
+ '@fastify/busboy@2.1.1':
resolution: {integrity: sha512-vBZP4NlzfOlerQTnba4aqZoMhE/a9HY7HRqoOPaETQcSQuWEIyZMHGfVu6w9wGtGK5fED5qRs2DteVCjOH60sA==}
engines: {node: '>=14'}
- dev: false
- /@ffmpeg-installer/darwin-arm64/4.1.5:
+ '@ffmpeg-installer/darwin-arm64@4.1.5':
resolution: {integrity: sha512-hYqTiP63mXz7wSQfuqfFwfLOfwwFChUedeCVKkBtl/cliaTM7/ePI9bVzfZ2c+dWu3TqCwLDRWNSJ5pqZl8otA==}
cpu: [arm64]
os: [darwin]
- requiresBuild: true
- dev: false
- optional: true
- /@ffmpeg-installer/darwin-x64/4.1.0:
+ '@ffmpeg-installer/darwin-x64@4.1.0':
resolution: {integrity: sha512-Z4EyG3cIFjdhlY8wI9aLUXuH8nVt7E9SlMVZtWvSPnm2sm37/yC2CwjUzyCQbJbySnef1tQwGG2Sx+uWhd9IAw==}
cpu: [x64]
os: [darwin]
- requiresBuild: true
- dev: false
- optional: true
- /@ffmpeg-installer/ffmpeg/1.1.0:
+ '@ffmpeg-installer/ffmpeg@1.1.0':
resolution: {integrity: sha512-Uq4rmwkdGxIa9A6Bd/VqqYbT7zqh1GrT5/rFwCwKM70b42W5gIjWeVETq6SdcL0zXqDtY081Ws/iJWhr1+xvQg==}
- optionalDependencies:
- '@ffmpeg-installer/darwin-arm64': 4.1.5
- '@ffmpeg-installer/darwin-x64': 4.1.0
- '@ffmpeg-installer/linux-arm': 4.1.3
- '@ffmpeg-installer/linux-arm64': 4.1.4
- '@ffmpeg-installer/linux-ia32': 4.1.0
- '@ffmpeg-installer/linux-x64': 4.1.0
- '@ffmpeg-installer/win32-ia32': 4.1.0
- '@ffmpeg-installer/win32-x64': 4.1.0
- dev: false
-
- /@ffmpeg-installer/linux-arm/4.1.3:
- resolution: {integrity: sha512-NDf5V6l8AfzZ8WzUGZ5mV8O/xMzRag2ETR6+TlGIsMHp81agx51cqpPItXPib/nAZYmo55Bl2L6/WOMI3A5YRg==}
- cpu: [arm]
- os: [linux]
- requiresBuild: true
- dev: false
- optional: true
- /@ffmpeg-installer/linux-arm64/4.1.4:
+ '@ffmpeg-installer/linux-arm64@4.1.4':
resolution: {integrity: sha512-dljEqAOD0oIM6O6DxBW9US/FkvqvQwgJ2lGHOwHDDwu/pX8+V0YsDL1xqHbj1DMX/+nP9rxw7G7gcUvGspSoKg==}
cpu: [arm64]
os: [linux]
- requiresBuild: true
- dev: false
- optional: true
- /@ffmpeg-installer/linux-ia32/4.1.0:
+ '@ffmpeg-installer/linux-arm@4.1.3':
+ resolution: {integrity: sha512-NDf5V6l8AfzZ8WzUGZ5mV8O/xMzRag2ETR6+TlGIsMHp81agx51cqpPItXPib/nAZYmo55Bl2L6/WOMI3A5YRg==}
+ cpu: [arm]
+ os: [linux]
+
+ '@ffmpeg-installer/linux-ia32@4.1.0':
resolution: {integrity: sha512-0LWyFQnPf+Ij9GQGD034hS6A90URNu9HCtQ5cTqo5MxOEc7Rd8gLXrJvn++UmxhU0J5RyRE9KRYstdCVUjkNOQ==}
cpu: [ia32]
os: [linux]
- requiresBuild: true
- dev: false
- optional: true
- /@ffmpeg-installer/linux-x64/4.1.0:
+ '@ffmpeg-installer/linux-x64@4.1.0':
resolution: {integrity: sha512-Y5BWhGLU/WpQjOArNIgXD3z5mxxdV8c41C+U15nsE5yF8tVcdCGet5zPs5Zy3Ta6bU7haGpIzryutqCGQA/W8A==}
cpu: [x64]
os: [linux]
- requiresBuild: true
- dev: false
- optional: true
- /@ffmpeg-installer/win32-ia32/4.1.0:
+ '@ffmpeg-installer/win32-ia32@4.1.0':
resolution: {integrity: sha512-FV2D7RlaZv/lrtdhaQ4oETwoFUsUjlUiasiZLDxhEUPdNDWcH1OU9K1xTvqz+OXLdsmYelUDuBS/zkMOTtlUAw==}
cpu: [ia32]
os: [win32]
- requiresBuild: true
- dev: false
- optional: true
- /@ffmpeg-installer/win32-x64/4.1.0:
+ '@ffmpeg-installer/win32-x64@4.1.0':
resolution: {integrity: sha512-Drt5u2vzDnIONf4ZEkKtFlbvwj6rI3kxw1Ck9fpudmtgaZIHD4ucsWB2lCZBXRxJgXR+2IMSti+4rtM4C4rXgg==}
cpu: [x64]
os: [win32]
- requiresBuild: true
- dev: false
- optional: true
- /@firebase/app-compat/0.1.39:
+ '@firebase/app-compat@0.1.39':
resolution: {integrity: sha512-F5O/N38dVGFzpe6zM//MslYT80rpX0V+MQNMvONPUlXhvDqS5T+8NMSCWOcZ++Z4Hkj8EvgTJk59AMnD8SdyFw==}
- dependencies:
- '@firebase/app': 0.8.4
- '@firebase/component': 0.5.21
- '@firebase/logger': 0.3.4
- '@firebase/util': 1.7.3
- tslib: 2.6.2
- dev: false
- /@firebase/app-types/0.7.0:
+ '@firebase/app-types@0.7.0':
resolution: {integrity: sha512-6fbHQwDv2jp/v6bXhBw2eSRbNBpxHcd1NBF864UksSMVIqIyri9qpJB1Mn6sGZE+bnDsSQBC5j2TbMxYsJQkQg==}
- dev: false
- /@firebase/app-types/0.8.1:
+ '@firebase/app-types@0.8.1':
resolution: {integrity: sha512-p75Ow3QhB82kpMzmOntv866wH9eZ3b4+QbUY+8/DA5Zzdf1c8Nsk8B7kbFpzJt4wwHMdy5LTF5YUnoTc1JiWkw==}
- dev: false
- /@firebase/app/0.8.4:
+ '@firebase/app@0.8.4':
resolution: {integrity: sha512-gQntijd+sLaGWjcBQpk33giCEXNzGLB6489NMpypVgEXJwQXYQPSrtb9vUHXot1w1iy/j6xlNl4K8wwwNdRgDg==}
- dependencies:
- '@firebase/component': 0.5.21
- '@firebase/logger': 0.3.4
- '@firebase/util': 1.7.3
- idb: 7.0.1
- tslib: 2.6.3
- dev: false
- /@firebase/auth-interop-types/0.1.7_gjxvml5prvd6coqrwuwh555l7y:
+ '@firebase/auth-interop-types@0.1.7':
resolution: {integrity: sha512-yA/dTveGGPcc85JP8ZE/KZqfGQyQTBCV10THdI8HTlP1GDvNrhr//J5jAt58MlsCOaO3XmC4DqScPBbtIsR/EA==}
peerDependencies:
'@firebase/app-types': 0.x
'@firebase/util': 1.x
- dependencies:
- '@firebase/app-types': 0.7.0
- '@firebase/util': 1.7.3
- dev: false
- /@firebase/component/0.5.21:
+ '@firebase/component@0.5.21':
resolution: {integrity: sha512-12MMQ/ulfygKpEJpseYMR0HunJdlsLrwx2XcEs40M18jocy2+spyzHHEwegN3x/2/BLFBjR5247Etmz0G97Qpg==}
- dependencies:
- '@firebase/util': 1.7.3
- tslib: 2.6.3
- dev: false
- /@firebase/database-compat/0.2.10_@firebase+app-types@0.7.0:
+ '@firebase/database-compat@0.2.10':
resolution: {integrity: sha512-fK+IgUUqVKcWK/gltzDU+B1xauCOfY6vulO8lxoNTkcCGlSxuTtwsdqjGkFmgFRMYjXFWWJ6iFcJ/vXahzwCtA==}
- dependencies:
- '@firebase/component': 0.5.21
- '@firebase/database': 0.13.10_@firebase+app-types@0.7.0
- '@firebase/database-types': 0.9.17
- '@firebase/logger': 0.3.4
- '@firebase/util': 1.7.3
- tslib: 2.6.3
- transitivePeerDependencies:
- - '@firebase/app-types'
- dev: false
- /@firebase/database-types/0.9.17:
+ '@firebase/database-types@0.9.17':
resolution: {integrity: sha512-YQm2tCZyxNtEnlS5qo5gd2PAYgKCy69tUKwioGhApCFThW+mIgZs7IeYeJo2M51i4LCixYUl+CvnOyAnb/c3XA==}
- dependencies:
- '@firebase/app-types': 0.8.1
- '@firebase/util': 1.7.3
- dev: false
- /@firebase/database/0.13.10_@firebase+app-types@0.7.0:
+ '@firebase/database@0.13.10':
resolution: {integrity: sha512-KRucuzZ7ZHQsRdGEmhxId5jyM2yKsjsQWF9yv0dIhlxYg0D8rCVDZc/waoPKA5oV3/SEIoptF8F7R1Vfe7BCQA==}
- dependencies:
- '@firebase/auth-interop-types': 0.1.7_gjxvml5prvd6coqrwuwh555l7y
- '@firebase/component': 0.5.21
- '@firebase/logger': 0.3.4
- '@firebase/util': 1.7.3
- faye-websocket: 0.11.4
- tslib: 2.6.3
- transitivePeerDependencies:
- - '@firebase/app-types'
- dev: false
- /@firebase/logger/0.3.4:
+ '@firebase/logger@0.3.4':
resolution: {integrity: sha512-hlFglGRgZEwoyClZcGLx/Wd+zoLfGmbDkFx56mQt/jJ0XMbfPqwId1kiPl0zgdWZX+D8iH+gT6GuLPFsJWgiGw==}
- dependencies:
- tslib: 2.6.3
- dev: false
- /@firebase/util/1.7.3:
+ '@firebase/util@1.7.3':
resolution: {integrity: sha512-wxNqWbqokF551WrJ9BIFouU/V5SL1oYCGx1oudcirdhadnQRFH5v1sjgGL7cUV/UsekSycygphdrF2lxBxOYKg==}
- dependencies:
- tslib: 2.6.3
- dev: false
- /@google-ai/generativelanguage/0.2.1:
+ '@floating-ui/core@1.6.8':
+ resolution: {integrity: sha512-7XJ9cPU+yI2QeLS+FCSlqNFZJq8arvswefkZrYI1yQBbftw6FyrZOxYSh+9S7z7TpeWlRt9zJ5IhM1WIL334jA==}
+
+ '@floating-ui/dom@1.6.12':
+ resolution: {integrity: sha512-NP83c0HjokcGVEMeoStg317VD9W7eDlGK7457dMBANbKA6GJZdc7rjujdgqzTaz93jkGgc5P/jeWbaCHnMNc+w==}
+
+ '@floating-ui/utils@0.2.8':
+ resolution: {integrity: sha512-kym7SodPp8/wloecOpcmSnWJsK7M0E5Wg8UcFA+uO4B9s5d0ywXOEro/8HM9x0rW+TljRzul/14UYz3TleT3ig==}
+
+ '@google-ai/generativelanguage@0.2.1':
resolution: {integrity: sha512-oqEQScnGO6UoEqdKMIGiRfLWNpc83RtLWcO/g/VH3+2PnqIwEqJThDAMCHmRZ9B3zUiiL2cd4FaHx3ZU93CXEA==}
engines: {node: '>=12.0.0'}
- dependencies:
- google-gax: 3.6.1
- transitivePeerDependencies:
- - encoding
- - supports-color
- dev: false
- /@google-cloud/bigquery-data-transfer/4.0.1:
- resolution: {integrity: sha512-2tsbjYpNSrm+ykJMG82ArGwIg7WpOYB6+hMOAbMgB/EVAifFYVOgegtEGda9K15D0SJe2RoOiXKpKFM/Dzxz+w==}
+ '@google-cloud/bigquery-data-transfer@4.4.0':
+ resolution: {integrity: sha512-whl/1fe9P7Fra0e8rQkgSM3TF5ZXRJNLEsMqudloJDnYBYCA6LxynriP8mtL0cz264NioAOsui/Ps2Pde6fs6Q==}
engines: {node: '>=14.0.0'}
- dependencies:
- google-gax: 4.0.5
- transitivePeerDependencies:
- - encoding
- - supports-color
- dev: false
- /@google-cloud/bigquery/6.2.1:
+ '@google-cloud/bigquery@6.2.1':
resolution: {integrity: sha512-C/tcM3jQ3RU8pKHHxj702ouIfGZ9GAQ5U+ZpvS/o4B3yWtqmnG3TITL5oRnzDjEKeMTNu5C6z3/nFtix3GKlqA==}
engines: {node: '>=12.0.0'}
- dependencies:
- '@google-cloud/common': 4.0.3
- '@google-cloud/paginator': 4.0.1
- '@google-cloud/precise-date': 3.0.1
- '@google-cloud/promisify': 3.0.1
- arrify: 2.0.1
- big.js: 6.2.1
- duplexify: 4.1.2
- extend: 3.0.2
- is: 3.3.0
- stream-events: 1.0.5
- uuid: 9.0.1
- transitivePeerDependencies:
- - encoding
- - supports-color
- dev: false
- /@google-cloud/common/4.0.3:
+ '@google-cloud/common@4.0.3':
resolution: {integrity: sha512-fUoMo5b8iAKbrYpneIRV3z95AlxVJPrjpevxs4SKoclngWZvTXBSGpNisF5+x5m+oNGve7jfB1e6vNBZBUs7Fw==}
engines: {node: '>=12.0.0'}
- dependencies:
- '@google-cloud/projectify': 3.0.0
- '@google-cloud/promisify': 3.0.1
- arrify: 2.0.1
- duplexify: 4.1.2
- ent: 2.2.0
- extend: 3.0.2
- google-auth-library: 8.9.0
- retry-request: 5.0.2
- teeny-request: 8.0.3
- transitivePeerDependencies:
- - encoding
- - supports-color
- dev: false
- /@google-cloud/compute/4.1.0:
- resolution: {integrity: sha512-9vzsfRK2t5wLJMg3+r+LbgFqrowpqB05wBkWDtmBRnwOEvdAK8tB2nLm8U4Wojh9VzR8T2p6QaAaXVYfs6dOfA==}
+ '@google-cloud/compute@4.8.0':
+ resolution: {integrity: sha512-IRksfwU9xggPZ6GIKJLa3BSvqL7iHXjkkIvwptg1hXuedSuTpDZlyfhWVTgcNfetAMPmpW/1XXOtFsImvraWUQ==}
engines: {node: '>=14.0.0'}
- dependencies:
- google-gax: 4.0.5
- transitivePeerDependencies:
- - encoding
- - supports-color
- dev: false
- /@google-cloud/dialogflow/5.9.0:
+ '@google-cloud/dialogflow@5.9.0':
resolution: {integrity: sha512-KEZ8ZhNa8yuze06pSp6Kp8z7u1UFdkCzmjKt/Fm6tEo86DcYmipc/EQ5PykargZRhqG4fbkiEwjGdormPn8eIA==}
engines: {node: '>=12.0.0'}
- dependencies:
- google-gax: 3.6.1
- transitivePeerDependencies:
- - encoding
- - supports-color
- dev: false
- /@google-cloud/firestore/4.15.1:
+ '@google-cloud/firestore@4.15.1':
resolution: {integrity: sha512-2PWsCkEF1W02QbghSeRsNdYKN1qavrHBP3m72gPDMHQSYrGULOaTi7fSJquQmAtc4iPVB2/x6h80rdLHTATQtA==}
engines: {node: '>=10.10.0'}
- requiresBuild: true
- dependencies:
- fast-deep-equal: 3.1.3
- functional-red-black-tree: 1.0.1
- google-gax: 2.30.5
- protobufjs: 6.11.4
- transitivePeerDependencies:
- - encoding
- - supports-color
- dev: false
- optional: true
- /@google-cloud/local-auth/2.1.1:
+ '@google-cloud/local-auth@2.1.1':
resolution: {integrity: sha512-tOJ73TSyPxelUEVN2AdHVzFG857U5i3wZHMUGgm6wRtz9WN4O3D761eYORB9jXfIggA3+v5BUw+VIE5wAKHhkg==}
engines: {node: '>=12.0.0'}
- dependencies:
- arrify: 2.0.1
- google-auth-library: 8.9.0
- open: 7.4.2
- server-destroy: 1.0.1
- transitivePeerDependencies:
- - encoding
- - supports-color
- dev: false
- /@google-cloud/logging/10.5.0:
+ '@google-cloud/logging@10.5.0':
resolution: {integrity: sha512-XmlNs6B8lDZvFwFB5M55g9ch873AA2rXSuFOczQ3FOAzuyd/qksf18suFJfcrLMu8lYSr3SQhTE45FlXz4p9pg==}
engines: {node: '>=12.0.0'}
- dependencies:
- '@google-cloud/common': 4.0.3
- '@google-cloud/paginator': 4.0.1
- '@google-cloud/projectify': 3.0.0
- '@google-cloud/promisify': 3.0.1
- arrify: 2.0.1
- dot-prop: 6.0.1
- eventid: 2.0.1
- extend: 3.0.2
- gcp-metadata: 4.3.1
- google-auth-library: 8.9.0
- google-gax: 3.6.1
- on-finished: 2.4.1
- pumpify: 2.0.1
- stream-events: 1.0.5
- uuid: 9.0.1
- transitivePeerDependencies:
- - encoding
- - supports-color
- dev: false
- /@google-cloud/paginator/3.0.7:
+ '@google-cloud/paginator@3.0.7':
resolution: {integrity: sha512-jJNutk0arIQhmpUUQJPJErsojqo834KcyB6X7a1mxuic8i1tKXxde8E69IZxNZawRIlZdIK2QY4WALvlK5MzYQ==}
engines: {node: '>=10'}
- dependencies:
- arrify: 2.0.1
- extend: 3.0.2
- dev: false
- /@google-cloud/paginator/4.0.1:
+ '@google-cloud/paginator@4.0.1':
resolution: {integrity: sha512-6G1ui6bWhNyHjmbYwavdN7mpVPRBtyDg/bfqBTAlwr413On2TnFNfDxc9UhTJctkgoCDgQXEKiRPLPR9USlkbQ==}
engines: {node: '>=12.0.0'}
- dependencies:
- arrify: 2.0.1
- extend: 3.0.2
- dev: false
- /@google-cloud/paginator/5.0.2:
+ '@google-cloud/paginator@5.0.2':
resolution: {integrity: sha512-DJS3s0OVH4zFDB1PzjxAsHqJT6sKVbRwwML0ZBP9PbU7Yebtu/7SWMRzvO2J3nUi9pRNITCfu4LJeooM2w4pjg==}
engines: {node: '>=14.0.0'}
- dependencies:
- arrify: 2.0.1
- extend: 3.0.2
- dev: false
- /@google-cloud/precise-date/3.0.1:
+ '@google-cloud/precise-date@3.0.1':
resolution: {integrity: sha512-crK2rgNFfvLoSgcKJY7ZBOLW91IimVNmPfi1CL+kMTf78pTJYd29XqEVedAeBu4DwCJc0EDIp1MpctLgoPq+Uw==}
engines: {node: '>=12.0.0'}
- dev: false
- /@google-cloud/precise-date/4.0.0:
+ '@google-cloud/precise-date@4.0.0':
resolution: {integrity: sha512-1TUx3KdaU3cN7nfCdNf+UVqA/PSX29Cjcox3fZZBtINlRrXVTmUkQnCKv2MbBUbCopbK4olAT1IHl76uZyCiVA==}
engines: {node: '>=14.0.0'}
- dev: false
- /@google-cloud/projectify/2.1.1:
+ '@google-cloud/projectify@2.1.1':
resolution: {integrity: sha512-+rssMZHnlh0twl122gXY4/aCrk0G1acBqkHFfYddtsqpYXGxA29nj9V5V9SfC+GyOG00l650f6lG9KL+EpFEWQ==}
engines: {node: '>=10'}
- dev: false
- optional: true
- /@google-cloud/projectify/3.0.0:
+ '@google-cloud/projectify@3.0.0':
resolution: {integrity: sha512-HRkZsNmjScY6Li8/kb70wjGlDDyLkVk3KvoEo9uIoxSjYLJasGiCch9+PqRVDOCGUFvEIqyogl+BeqILL4OJHA==}
engines: {node: '>=12.0.0'}
- dev: false
- /@google-cloud/projectify/4.0.0:
+ '@google-cloud/projectify@4.0.0':
resolution: {integrity: sha512-MmaX6HeSvyPbWGwFq7mXdo0uQZLGBYCwziiLIGq5JVX+/bdI3SAq6bP98trV5eTWfLuvsMcIC1YJOF2vfteLFA==}
engines: {node: '>=14.0.0'}
- dev: false
- /@google-cloud/promisify/2.0.4:
+ '@google-cloud/promisify@2.0.4':
resolution: {integrity: sha512-j8yRSSqswWi1QqUGKVEKOG03Q7qOoZP6/h2zN2YO+F5h2+DHU0bSrHCK9Y7lo2DI9fBd8qGAw795sf+3Jva4yA==}
engines: {node: '>=10'}
- dev: false
- /@google-cloud/promisify/3.0.1:
+ '@google-cloud/promisify@3.0.1':
resolution: {integrity: sha512-z1CjRjtQyBOYL+5Qr9DdYIfrdLBe746jRTYfaYU6MeXkqp7UfYs/jX16lFFVzZ7PGEJvqZNqYUEtb1mvDww4pA==}
engines: {node: '>=12'}
- dev: false
- /@google-cloud/promisify/4.0.0:
+ '@google-cloud/promisify@4.0.0':
resolution: {integrity: sha512-Orxzlfb9c67A15cq2JQEyVc7wEsmFBmHjZWZYQMUyJ1qivXyMwdyNOs9odi79hze+2zqdTtu1E19IM/FtqZ10g==}
engines: {node: '>=14'}
- dev: false
- /@google-cloud/pubsub/3.7.5:
+ '@google-cloud/pubsub@3.7.5':
resolution: {integrity: sha512-4Qrry4vIToth5mqduVslltWVsyb7DR8OhnkBA3F7XiE0jgQsiuUfwp/RB2F559aXnRbwcfmjvP4jSuEaGcjrCQ==}
engines: {node: '>=12.0.0'}
- dependencies:
- '@google-cloud/paginator': 4.0.1
- '@google-cloud/precise-date': 3.0.1
- '@google-cloud/projectify': 3.0.0
- '@google-cloud/promisify': 2.0.4
- '@opentelemetry/api': 1.6.0
- '@opentelemetry/semantic-conventions': 1.3.1
- '@types/duplexify': 3.6.2
- '@types/long': 4.0.2
- arrify: 2.0.1
- extend: 3.0.2
- google-auth-library: 8.9.0
- google-gax: 3.6.1
- heap-js: 2.3.0
- is-stream-ended: 0.1.4
- lodash.snakecase: 4.1.1
- p-defer: 3.0.0
- transitivePeerDependencies:
- - encoding
- - supports-color
- dev: false
- /@google-cloud/pubsub/4.7.0:
- resolution: {integrity: sha512-HLqErqFbCA3oh9RC33Ek73MlqK5v3O1uY2Umsd9/jcuZYCYZ/b/PPX3+Xs4v8Swx8wIkkcKGtYbQSRAGnjXs1A==}
+ '@google-cloud/pubsub@4.9.0':
+ resolution: {integrity: sha512-VLGRwWwjEnyC+NVEiScCRGfVBJzAw9fT5IM3YvC6mlEkv8llr5vcVsoDjv1EbE0P31I601RqlLXH7s6J9tqpfA==}
engines: {node: '>=14.0.0'}
- dependencies:
- '@google-cloud/paginator': 5.0.2
- '@google-cloud/precise-date': 4.0.0
- '@google-cloud/projectify': 4.0.0
- '@google-cloud/promisify': 4.0.0
- '@opentelemetry/api': 1.9.0
- '@opentelemetry/semantic-conventions': 1.25.1
- arrify: 2.0.1
- extend: 3.0.2
- google-auth-library: 9.14.0
- google-gax: 4.4.0
- heap-js: 2.3.0
- is-stream-ended: 0.1.4
- lodash.snakecase: 4.1.1
- p-defer: 3.0.0
- transitivePeerDependencies:
- - encoding
- - supports-color
- dev: false
- /@google-cloud/storage/5.20.5:
+ '@google-cloud/storage@5.20.5':
resolution: {integrity: sha512-lOs/dCyveVF8TkVFnFSF7IGd0CJrTm91qiK6JLu+Z8qiT+7Ag0RyVhxZIWkhiACqwABo7kSHDm8FdH8p2wxSSw==}
engines: {node: '>=10'}
- requiresBuild: true
- dependencies:
- '@google-cloud/paginator': 3.0.7
- '@google-cloud/projectify': 2.1.1
- '@google-cloud/promisify': 2.0.4
- abort-controller: 3.0.0
- arrify: 2.0.1
- async-retry: 1.3.3
- compressible: 2.0.18
- configstore: 5.0.1
- duplexify: 4.1.2
- ent: 2.2.0
- extend: 3.0.2
- gaxios: 4.3.3
- google-auth-library: 7.14.1
- hash-stream-validation: 0.2.4
- mime: 3.0.0
- mime-types: 2.1.35
- p-limit: 3.1.0
- pumpify: 2.0.1
- retry-request: 4.2.2
- stream-events: 1.0.5
- teeny-request: 7.2.0
- uuid: 8.3.2
- xdg-basedir: 4.0.0
- transitivePeerDependencies:
- - encoding
- - supports-color
- dev: false
- optional: true
- /@google-cloud/storage/6.12.0:
+ '@google-cloud/storage@6.12.0':
resolution: {integrity: sha512-78nNAY7iiZ4O/BouWMWTD/oSF2YtYgYB3GZirn0To6eBOugjXVoK+GXgUXOl+HlqbAOyHxAVXOlsj3snfbQ1dw==}
engines: {node: '>=12'}
- dependencies:
- '@google-cloud/paginator': 3.0.7
- '@google-cloud/projectify': 3.0.0
- '@google-cloud/promisify': 3.0.1
- abort-controller: 3.0.0
- async-retry: 1.3.3
- compressible: 2.0.18
- duplexify: 4.1.2
- ent: 2.2.0
- extend: 3.0.2
- fast-xml-parser: 4.3.2
- gaxios: 5.1.3
- google-auth-library: 8.9.0
- mime: 3.0.0
- mime-types: 2.1.35
- p-limit: 3.1.0
- retry-request: 5.0.2
- teeny-request: 8.0.3
- uuid: 8.3.2
- transitivePeerDependencies:
- - encoding
- - supports-color
- dev: false
- /@googleapis/admin/6.0.2:
+ '@googleapis/admin@6.0.2':
resolution: {integrity: sha512-lliLBMPg+8jn0MoqLnxkLYlLTXjd/CYGnZj67z9xrxR+B6qX5j0wQWrMj54TUMUV64PTHjREEQVTfVeMQyGQFA==}
engines: {node: '>=10.0.0'}
- dependencies:
- googleapis-common: 5.1.0
- transitivePeerDependencies:
- - encoding
- - supports-color
- dev: false
- /@googleapis/analyticsreporting/1.0.4:
- resolution: {integrity: sha512-v70D84ZN1bGBTjVSo9YdVApIYdNvBKmRDefty2pSNo+fJIw6kbLErkxq6/iQ4t3+ThHBxLiwxgUwHSnl158dHQ==}
+ '@googleapis/analyticsreporting@1.0.7':
+ resolution: {integrity: sha512-4+LFJOCPQ/3vepdCAGsrtJAqLXPAq6DW/sYe0/NPIcoa6jty1wuCOkCFiWFwXWl95nl0fV+PEo4kGPzyErLmNA==}
engines: {node: '>=12.0.0'}
- dependencies:
- googleapis-common: 7.0.0
- transitivePeerDependencies:
- - encoding
- - supports-color
- dev: false
- /@googleapis/calendar/1.0.4:
+ '@googleapis/calendar@1.0.4':
resolution: {integrity: sha512-rom4S/+k386GWF+hTswiOhw9Imglv1N4Jz2cmsb8sEg3TzNZn0xxg58XwMBy4lDKjs/dl9acB4En2/De5ayRNQ==}
engines: {node: '>=10.0.0'}
- dependencies:
- googleapis-common: 5.1.0
- transitivePeerDependencies:
- - encoding
- - supports-color
- dev: false
- /@googleapis/calendar/9.7.0:
- resolution: {integrity: sha512-sZe0YCihDfO14Y1Zg4Qqzof/w5Vqa08ujAfZioXmIsaAu4+zvVsL+BJ1Y6I5LY60ARG4Zf2chjP+tKP3UdPJFQ==}
+ '@googleapis/calendar@9.7.9':
+ resolution: {integrity: sha512-s1dD/j+WtJpdJ7dxmJL1NeSSvoO4D+hcGqSGw4+UtEUpGgBmmlE9Ptxf04cRj1T9Y2xEUfhszKI87+rgxcW2iA==}
engines: {node: '>=12.0.0'}
- dependencies:
- googleapis-common: 7.0.0
- transitivePeerDependencies:
- - encoding
- - supports-color
- dev: false
- /@googleapis/docs/3.3.0:
+ '@googleapis/docs@3.3.0':
resolution: {integrity: sha512-F9euIJ44IUwaiDH9vP2XWeaVV4zMpYZ5dMbdpQDuDyuIBguCf7zdEfYKllAoOxCiCx4Rj5BmMhAUn2SJJpULDA==}
engines: {node: '>=12.0.0'}
- dependencies:
- googleapis-common: 7.0.0
- transitivePeerDependencies:
- - encoding
- - supports-color
- dev: false
- /@googleapis/drive/2.4.0:
+ '@googleapis/drive@2.4.0':
resolution: {integrity: sha512-BXesWAH5wozF7LJfarzR960BAICV1f7bdyrdAkohSWtMWko2QcCWBjlMYrzT9bVpZYKILLV9G/H7uXscfJb6qQ==}
engines: {node: '>=10.0.0'}
- dependencies:
- googleapis-common: 5.1.0
- transitivePeerDependencies:
- - encoding
- - supports-color
- dev: false
- /@googleapis/gmail/0.3.4:
+ '@googleapis/gmail@0.3.4':
resolution: {integrity: sha512-5Z7CbSBRXZ2NZ5+EfwcE9T4dQtny5zcsKmOHPrI3LZOxo9s70z8YiyePr2Zf2mH9egqM8qGmUVITVRadHXDEww==}
engines: {node: '>=10.0.0'}
- dependencies:
- googleapis-common: 5.1.0
- transitivePeerDependencies:
- - encoding
- - supports-color
- dev: false
- /@googleapis/sheets/0.3.0:
+ '@googleapis/sheets@0.3.0':
resolution: {integrity: sha512-Axhbw2Hi3IAPyYGC4y8wmE/0aY0NVTieDDc+RMnx2/iSQ8laodWqAUDsUskTdEm4ZB2JD2Z+SU6o3IXktDaG4Q==}
engines: {node: '>=10.0.0'}
- dependencies:
- googleapis-common: 5.1.0
- transitivePeerDependencies:
- - encoding
- - supports-color
- dev: false
- /@googleapis/slides/0.7.1:
+ '@googleapis/slides@0.7.1':
resolution: {integrity: sha512-/bK4sidpOjcjBLiHqMYCl3hsXcD2UiCogXgfRtmseYUdPOFaTb8FLGatv/sOVLNAVexJRZnfMsL405eWBEBmLQ==}
engines: {node: '>=10.0.0'}
- dependencies:
- googleapis-common: 5.1.0
- transitivePeerDependencies:
- - encoding
- - supports-color
- dev: false
- /@googleapis/youtube/6.0.0:
+ '@googleapis/youtube@6.0.0':
resolution: {integrity: sha512-21b4E9r7Yj6CA/vN77A7M8gUVgo4/adYxO5NGUikd9psGHMbdMSOeTgMi31KMI2MQAkI4EZOZhME0tTqrwL2Ag==}
engines: {node: '>=10.0.0'}
- dependencies:
- googleapis-common: 5.1.0
- transitivePeerDependencies:
- - encoding
- - supports-color
- dev: false
-
- /@graphql-typed-document-node/core/3.2.0_graphql@15.8.0:
- resolution: {integrity: sha512-mB9oAsNCm9aM3/SOv4YtBMqZbYj10R7dkq8byBqxGY/ncFwhf2oQzMV+LCRlWoDSEBJ3COiR1yeDvMtsoOsuFQ==}
- peerDependencies:
- graphql: ^0.8.0 || ^0.9.0 || ^0.10.0 || ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0
- dependencies:
- graphql: 15.8.0
- dev: false
- /@graphql-typed-document-node/core/3.2.0_graphql@16.8.1:
+ '@graphql-typed-document-node/core@3.2.0':
resolution: {integrity: sha512-mB9oAsNCm9aM3/SOv4YtBMqZbYj10R7dkq8byBqxGY/ncFwhf2oQzMV+LCRlWoDSEBJ3COiR1yeDvMtsoOsuFQ==}
peerDependencies:
graphql: ^0.8.0 || ^0.9.0 || ^0.10.0 || ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0
- dependencies:
- graphql: 16.8.1
- dev: false
- /@grpc/grpc-js/1.11.1:
- resolution: {integrity: sha512-gyt/WayZrVPH2w/UTLansS7F9Nwld472JxxaETamrM8HNlsa+jSLNyKAZmhxI2Me4c3mQHFiS1wWHDY1g1Kthw==}
+ '@grpc/grpc-js@1.12.2':
+ resolution: {integrity: sha512-bgxdZmgTrJZX50OjyVwz3+mNEnCTNkh3cIqGPWVNeW9jX6bn1ZkU80uPd+67/ZpIJIjRQ9qaHCjhavyoWYxumg==}
engines: {node: '>=12.10.0'}
- dependencies:
- '@grpc/proto-loader': 0.7.13
- '@js-sdsl/ordered-map': 4.4.2
- dev: false
- /@grpc/grpc-js/1.6.12:
+ '@grpc/grpc-js@1.6.12':
resolution: {integrity: sha512-JmvQ03OTSpVd9JTlj/K3IWHSz4Gk/JMLUTtW7Zb0KvO1LcOYGATh5cNuRYzCAeDR3O8wq+q8FZe97eO9MBrkUw==}
engines: {node: ^8.13.0 || >=10.10.0}
- dependencies:
- '@grpc/proto-loader': 0.7.13
- '@types/node': 20.17.6
- dev: false
- optional: true
-
- /@grpc/grpc-js/1.8.21:
- resolution: {integrity: sha512-KeyQeZpxeEBSqFVTi3q2K7PiPXmgBfECc4updA1ejCLjYmoAlvvM3ZMp5ztTDUCUQmoY3CpDxvchjO1+rFkoHg==}
- engines: {node: ^8.13.0 || >=10.10.0}
- dependencies:
- '@grpc/proto-loader': 0.7.13
- '@types/node': 20.17.6
- dev: false
- /@grpc/grpc-js/1.9.9:
- resolution: {integrity: sha512-vQ1qwi/Kiyprt+uhb1+rHMpyk4CVRMTGNUGGPRGS7pLNfWkdCHrGEnT6T3/JyC2VZgoOX/X1KwdoU0WYQAeYcQ==}
+ '@grpc/grpc-js@1.8.22':
+ resolution: {integrity: sha512-oAjDdN7fzbUi+4hZjKG96MR6KTEubAeMpQEb+77qy+3r0Ua5xTFuie6JOLr4ZZgl5g+W5/uRTS2M1V8mVAFPuA==}
engines: {node: ^8.13.0 || >=10.10.0}
- dependencies:
- '@grpc/proto-loader': 0.7.13
- '@types/node': 20.17.6
- dev: false
- /@grpc/proto-loader/0.6.13:
+ '@grpc/proto-loader@0.6.13':
resolution: {integrity: sha512-FjxPYDRTn6Ec3V0arm1FtSpmP6V50wuph2yILpyvTKzjc76oDdoihXqM1DzOW5ubvCC8GivfCnNtfaRE8myJ7g==}
engines: {node: '>=6'}
hasBin: true
- dependencies:
- '@types/long': 4.0.2
- lodash.camelcase: 4.3.0
- long: 4.0.0
- protobufjs: 6.11.4
- yargs: 16.2.0
- dev: false
- optional: true
- /@grpc/proto-loader/0.7.13:
+ '@grpc/proto-loader@0.7.13':
resolution: {integrity: sha512-AiXO/bfe9bmxBjxxtYxFAXGZvMaN5s8kO+jBHAJCON8rJoB5YS/D6X7ZNc6XQkuHNmyl4CYaMI1fJ/Gn27RGGw==}
engines: {node: '>=6'}
hasBin: true
- dependencies:
- lodash.camelcase: 4.3.0
- long: 5.2.3
- protobufjs: 7.4.0
- yargs: 17.7.2
- dev: false
- /@hapi/boom/10.0.1:
+ '@hapi/boom@10.0.1':
resolution: {integrity: sha512-ERcCZaEjdH3OgSJlyjVk8pHIFeus91CjKP3v+MpgBNp5IvGzP2l/bRiD78nqYcKPaZdbKkK5vDBVPd2ohHBlsA==}
- dependencies:
- '@hapi/hoek': 11.0.4
- dev: false
- /@hapi/bourne/3.0.0:
+ '@hapi/bourne@3.0.0':
resolution: {integrity: sha512-Waj1cwPXJDucOib4a3bAISsKJVb15MKi9IvmTI/7ssVEm6sywXGjVJDhl6/umt1pK1ZS7PacXU3A1PmFKHEZ2w==}
- dev: false
- /@hapi/hoek/11.0.4:
- resolution: {integrity: sha512-PnsP5d4q7289pS2T2EgGz147BFJ2Jpb4yrEdkpz2IhgEUzos1S7HTl7ezWh1yfYzYlj89KzLdCRkqsP6SIryeQ==}
- dev: false
+ '@hapi/hoek@11.0.7':
+ resolution: {integrity: sha512-HV5undWkKzcB4RZUusqOpcgxOaq6VOAH7zhhIr2g3G8NF/MlFO75SjOr2NfuSx0Mh40+1FqCkagKLJRykUWoFQ==}
- /@hapi/hoek/9.3.0:
+ '@hapi/hoek@9.3.0':
resolution: {integrity: sha512-/c6rf4UJlmHlC9b5BaNvzAcFv7HZ2QHaV0D4/HNlBdvFnvQq8RI4kYdhyPCl7Xj+oWvTWQ8ujhqS53LIgAe6KQ==}
- dev: false
- /@hapi/topo/5.1.0:
+ '@hapi/topo@5.1.0':
resolution: {integrity: sha512-foQZKJig7Ob0BMAYBfcJk8d77QtOe7Wo4ox7ff1lQYoNNAb6jwcY1ncdoy2e9wQZzvNy7ODZCYJkK8kzmcAnAg==}
- dependencies:
- '@hapi/hoek': 9.3.0
- dev: false
- /@hapi/wreck/18.1.0:
+ '@hapi/wreck@18.1.0':
resolution: {integrity: sha512-0z6ZRCmFEfV/MQqkQomJ7sl/hyxvcZM7LtuVqN3vdAO4vM9eBbowl0kaqQj9EJJQab+3Uuh1GxbGIBFy4NfJ4w==}
- dependencies:
- '@hapi/boom': 10.0.1
- '@hapi/bourne': 3.0.0
- '@hapi/hoek': 11.0.4
- dev: false
- /@huggingface/inference/1.8.0:
+ '@huggingface/inference@1.8.0':
resolution: {integrity: sha512-Dkh7PiyMf6TINRocQsdceiR5LcqJiUHgWjaBMRpCUOCbs+GZA122VH9q+wodoSptj6rIQf7wIwtDsof+/gd0WA==}
engines: {node: '>=18'}
- dev: false
- /@humanwhocodes/config-array/0.9.5:
- resolution: {integrity: sha512-ObyMyWxZiCu/yTisA7uzx81s40xR2fD5Cg/2Kq7G02ajkNubJf6BopgDTmDyc3U7sXpNKM8cYOw7s7Tyr+DnCw==}
+ '@humanwhocodes/config-array@0.13.0':
+ resolution: {integrity: sha512-DZLEEqFWQFiyK6h5YIeynKx7JlvCYWL0cImfSRXZ9l4Sg2efkFGTuFf6vzXjK1cq6IYkU+Eg/JizXw+TD2vRNw==}
engines: {node: '>=10.10.0'}
- dependencies:
- '@humanwhocodes/object-schema': 1.2.1
- debug: 4.3.6
- minimatch: 3.1.2
- transitivePeerDependencies:
- - supports-color
- dev: true
+ deprecated: Use @eslint/config-array instead
+
+ '@humanwhocodes/module-importer@1.0.1':
+ resolution: {integrity: sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA==}
+ engines: {node: '>=12.22'}
- /@humanwhocodes/momoa/2.0.4:
+ '@humanwhocodes/momoa@2.0.4':
resolution: {integrity: sha512-RE815I4arJFtt+FVeU1Tgp9/Xvecacji8w/V6XtXsWWH/wz/eNkNbhb+ny/+PlVZjV0rxQpRSQKNKE3lcktHEA==}
engines: {node: '>=10.10.0'}
- dev: false
- /@humanwhocodes/object-schema/1.2.1:
- resolution: {integrity: sha512-ZnQMnLV4e7hDlUvw8H+U8ASL02SS2Gn6+9Ac3wGGLIe7+je2AeAOxPY+izIPJDfFDb7eDjev0Us8MO1iFRN8hA==}
+ '@humanwhocodes/object-schema@2.0.3':
+ resolution: {integrity: sha512-93zYdMES/c1D69yZiKDBj0V24vqNzB/koF26KPaagAfd3P/4gUlh3Dys5ogAK+Exi9QyzlD8x/08Zt7wIKcDcA==}
deprecated: Use @eslint/object-schema instead
- dev: true
- /@isaacs/cliui/8.0.2:
- resolution: {integrity: sha512-O8jcjabXaleOG9DQ0+ARXWZBTfnP4WNAqzuiJK7ll44AmxGKv/J2M4TPjxjY3znBCfvBXFzucm1twdyFybFqEA==}
- engines: {node: '>=12'}
- dependencies:
- string-width: 5.1.2
- string-width-cjs: /string-width/4.2.3
- strip-ansi: 7.1.0
- strip-ansi-cjs: /strip-ansi/6.0.1
- wrap-ansi: 8.1.0
- wrap-ansi-cjs: /wrap-ansi/7.0.0
- dev: true
+ '@img/sharp-darwin-arm64@0.33.5':
+ resolution: {integrity: sha512-UT4p+iz/2H4twwAoLCqfA9UH5pI6DggwKEGuaPy7nCVQ8ZsiY5PIcrRvD1DzuY3qYL07NtIQcWnBSY/heikIFQ==}
+ engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0}
+ cpu: [arm64]
+ os: [darwin]
- /@istanbuljs/load-nyc-config/1.1.0:
- resolution: {integrity: sha512-VjeHSlIzpv/NyD3N0YuHfXOPDIixcA1q2ZV98wsMqcYlPmv2n3Yb2lYP9XMElnaFVXg5A7YLTeLu6V84uQDjmQ==}
- engines: {node: '>=8'}
- dependencies:
- camelcase: 5.3.1
- find-up: 4.1.0
- get-package-type: 0.1.0
- js-yaml: 3.14.1
- resolve-from: 5.0.0
- dev: true
+ '@img/sharp-darwin-x64@0.33.5':
+ resolution: {integrity: sha512-fyHac4jIc1ANYGRDxtiqelIbdWkIuQaI84Mv45KvGRRxSAa7o7d1ZKAOBaYbnepLC1WqxfpimdeWfvqqSGwR2Q==}
+ engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0}
+ cpu: [x64]
+ os: [darwin]
- /@istanbuljs/schema/0.1.3:
- resolution: {integrity: sha512-ZXRY4jNvVgSVQ8DL3LTcakaAtXwTVUxE81hslsyD2AtoXW/wVob10HkOJ1X/pAlcI7D+2YoZKg5do8G/w6RYgA==}
- engines: {node: '>=8'}
- dev: true
+ '@img/sharp-libvips-darwin-arm64@1.0.4':
+ resolution: {integrity: sha512-XblONe153h0O2zuFfTAbQYAX2JhYmDHeWikp1LM9Hul9gVPjFY427k6dFEcOL72O01QxQsWi761svJ/ev9xEDg==}
+ cpu: [arm64]
+ os: [darwin]
- /@jest/console/29.7.0:
- resolution: {integrity: sha512-5Ni4CU7XHQi32IJ398EEP4RrB8eV09sXP2ROqD4bksHrnTree52PsxvX8tpL8LvTZ3pFzXyPbNQReSN41CAhOg==}
- engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
- dependencies:
- '@jest/types': 29.6.3
- '@types/node': 20.17.6
- chalk: 4.1.2
- jest-message-util: 29.7.0
- jest-util: 29.7.0
- slash: 3.0.0
- dev: true
+ '@img/sharp-libvips-darwin-x64@1.0.4':
+ resolution: {integrity: sha512-xnGR8YuZYfJGmWPvmlunFaWJsb9T/AO2ykoP3Fz/0X5XV2aoYBPkX6xqCQvUTKKiLddarLaxpzNe+b1hjeWHAQ==}
+ cpu: [x64]
+ os: [darwin]
- /@jest/core/29.7.0:
- resolution: {integrity: sha512-n7aeXWKMnGtDA48y8TLWJPJmLmmZ642Ceo78cYWEpiD7FzDgmNDV/GCVRorPABdXLJZ/9wzzgZAlHjXjxDHGsg==}
- engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
- peerDependencies:
- node-notifier: ^8.0.1 || ^9.0.0 || ^10.0.0
- peerDependenciesMeta:
- node-notifier:
- optional: true
- dependencies:
- '@jest/console': 29.7.0
- '@jest/reporters': 29.7.0
- '@jest/test-result': 29.7.0
- '@jest/transform': 29.7.0
- '@jest/types': 29.6.3
- '@types/node': 20.17.6
- ansi-escapes: 4.3.2
- chalk: 4.1.2
- ci-info: 3.9.0
- exit: 0.1.2
- graceful-fs: 4.2.11
- jest-changed-files: 29.7.0
- jest-config: 29.7.0_@types+node@20.17.6
- jest-haste-map: 29.7.0
- jest-message-util: 29.7.0
- jest-regex-util: 29.6.3
- jest-resolve: 29.7.0
- jest-resolve-dependencies: 29.7.0
- jest-runner: 29.7.0
- jest-runtime: 29.7.0
- jest-snapshot: 29.7.0
- jest-util: 29.7.0
- jest-validate: 29.7.0
- jest-watcher: 29.7.0
- micromatch: 4.0.7
- pretty-format: 29.7.0
- slash: 3.0.0
- strip-ansi: 6.0.1
- transitivePeerDependencies:
- - babel-plugin-macros
- - supports-color
- - ts-node
- dev: true
+ '@img/sharp-libvips-linux-arm64@1.0.4':
+ resolution: {integrity: sha512-9B+taZ8DlyyqzZQnoeIvDVR/2F4EbMepXMc/NdVbkzsJbzkUjhXv/70GQJ7tdLA4YJgNP25zukcxpX2/SueNrA==}
+ cpu: [arm64]
+ os: [linux]
+
+ '@img/sharp-libvips-linux-arm@1.0.5':
+ resolution: {integrity: sha512-gvcC4ACAOPRNATg/ov8/MnbxFDJqf/pDePbBnuBDcjsI8PssmjoKMAz4LtLaVi+OnSb5FK/yIOamqDwGmXW32g==}
+ cpu: [arm]
+ os: [linux]
+
+ '@img/sharp-libvips-linux-s390x@1.0.4':
+ resolution: {integrity: sha512-u7Wz6ntiSSgGSGcjZ55im6uvTrOxSIS8/dgoVMoiGE9I6JAfU50yH5BoDlYA1tcuGS7g/QNtetJnxA6QEsCVTA==}
+ cpu: [s390x]
+ os: [linux]
+
+ '@img/sharp-libvips-linux-x64@1.0.4':
+ resolution: {integrity: sha512-MmWmQ3iPFZr0Iev+BAgVMb3ZyC4KeFc3jFxnNbEPas60e1cIfevbtuyf9nDGIzOaW9PdnDciJm+wFFaTlj5xYw==}
+ cpu: [x64]
+ os: [linux]
+
+ '@img/sharp-libvips-linuxmusl-arm64@1.0.4':
+ resolution: {integrity: sha512-9Ti+BbTYDcsbp4wfYib8Ctm1ilkugkA/uscUn6UXK1ldpC1JjiXbLfFZtRlBhjPZ5o1NCLiDbg8fhUPKStHoTA==}
+ cpu: [arm64]
+ os: [linux]
+
+ '@img/sharp-libvips-linuxmusl-x64@1.0.4':
+ resolution: {integrity: sha512-viYN1KX9m+/hGkJtvYYp+CCLgnJXwiQB39damAO7WMdKWlIhmYTfHjwSbQeUK/20vY154mwezd9HflVFM1wVSw==}
+ cpu: [x64]
+ os: [linux]
+
+ '@img/sharp-linux-arm64@0.33.5':
+ resolution: {integrity: sha512-JMVv+AMRyGOHtO1RFBiJy/MBsgz0x4AWrT6QoEVVTyh1E39TrCUpTRI7mx9VksGX4awWASxqCYLCV4wBZHAYxA==}
+ engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0}
+ cpu: [arm64]
+ os: [linux]
+
+ '@img/sharp-linux-arm@0.33.5':
+ resolution: {integrity: sha512-JTS1eldqZbJxjvKaAkxhZmBqPRGmxgu+qFKSInv8moZ2AmT5Yib3EQ1c6gp493HvrvV8QgdOXdyaIBrhvFhBMQ==}
+ engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0}
+ cpu: [arm]
+ os: [linux]
+
+ '@img/sharp-linux-s390x@0.33.5':
+ resolution: {integrity: sha512-y/5PCd+mP4CA/sPDKl2961b+C9d+vPAveS33s6Z3zfASk2j5upL6fXVPZi7ztePZ5CuH+1kW8JtvxgbuXHRa4Q==}
+ engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0}
+ cpu: [s390x]
+ os: [linux]
+
+ '@img/sharp-linux-x64@0.33.5':
+ resolution: {integrity: sha512-opC+Ok5pRNAzuvq1AG0ar+1owsu842/Ab+4qvU879ippJBHvyY5n2mxF1izXqkPYlGuP/M556uh53jRLJmzTWA==}
+ engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0}
+ cpu: [x64]
+ os: [linux]
+
+ '@img/sharp-linuxmusl-arm64@0.33.5':
+ resolution: {integrity: sha512-XrHMZwGQGvJg2V/oRSUfSAfjfPxO+4DkiRh6p2AFjLQztWUuY/o8Mq0eMQVIY7HJ1CDQUJlxGGZRw1a5bqmd1g==}
+ engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0}
+ cpu: [arm64]
+ os: [linux]
+
+ '@img/sharp-linuxmusl-x64@0.33.5':
+ resolution: {integrity: sha512-WT+d/cgqKkkKySYmqoZ8y3pxx7lx9vVejxW/W4DOFMYVSkErR+w7mf2u8m/y4+xHe7yY9DAXQMWQhpnMuFfScw==}
+ engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0}
+ cpu: [x64]
+ os: [linux]
+
+ '@img/sharp-wasm32@0.33.5':
+ resolution: {integrity: sha512-ykUW4LVGaMcU9lu9thv85CbRMAwfeadCJHRsg2GmeRa/cJxsVY9Rbd57JcMxBkKHag5U/x7TSBpScF4U8ElVzg==}
+ engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0}
+ cpu: [wasm32]
+
+ '@img/sharp-win32-ia32@0.33.5':
+ resolution: {integrity: sha512-T36PblLaTwuVJ/zw/LaH0PdZkRz5rd3SmMHX8GSmR7vtNSP5Z6bQkExdSK7xGWyxLw4sUknBuugTelgw2faBbQ==}
+ engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0}
+ cpu: [ia32]
+ os: [win32]
+
+ '@img/sharp-win32-x64@0.33.5':
+ resolution: {integrity: sha512-MpY/o8/8kj+EcnxwvrP4aTJSWw/aZ7JIGR4aBeZkZw5B7/Jn+tY9/VNwtcoGmdT7GfggGIU4kygOMSbYnOrAbg==}
+ engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0}
+ cpu: [x64]
+ os: [win32]
+
+ '@istanbuljs/load-nyc-config@1.1.0':
+ resolution: {integrity: sha512-VjeHSlIzpv/NyD3N0YuHfXOPDIixcA1q2ZV98wsMqcYlPmv2n3Yb2lYP9XMElnaFVXg5A7YLTeLu6V84uQDjmQ==}
+ engines: {node: '>=8'}
+
+ '@istanbuljs/schema@0.1.3':
+ resolution: {integrity: sha512-ZXRY4jNvVgSVQ8DL3LTcakaAtXwTVUxE81hslsyD2AtoXW/wVob10HkOJ1X/pAlcI7D+2YoZKg5do8G/w6RYgA==}
+ engines: {node: '>=8'}
+
+ '@jest/console@29.7.0':
+ resolution: {integrity: sha512-5Ni4CU7XHQi32IJ398EEP4RrB8eV09sXP2ROqD4bksHrnTree52PsxvX8tpL8LvTZ3pFzXyPbNQReSN41CAhOg==}
+ engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
+
+ '@jest/core@29.7.0':
+ resolution: {integrity: sha512-n7aeXWKMnGtDA48y8TLWJPJmLmmZ642Ceo78cYWEpiD7FzDgmNDV/GCVRorPABdXLJZ/9wzzgZAlHjXjxDHGsg==}
+ engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
+ peerDependencies:
+ node-notifier: ^8.0.1 || ^9.0.0 || ^10.0.0
+ peerDependenciesMeta:
+ node-notifier:
+ optional: true
- /@jest/environment/29.7.0:
+ '@jest/environment@29.7.0':
resolution: {integrity: sha512-aQIfHDq33ExsN4jP1NWGXhxgQ/wixs60gDiKO+XVMd8Mn0NWPWgc34ZQDTb2jKaUWQ7MuwoitXAsN2XVXNMpAw==}
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
- dependencies:
- '@jest/fake-timers': 29.7.0
- '@jest/types': 29.6.3
- '@types/node': 20.17.6
- jest-mock: 29.7.0
- dev: true
- /@jest/expect-utils/29.7.0:
+ '@jest/expect-utils@29.7.0':
resolution: {integrity: sha512-GlsNBWiFQFCVi9QVSx7f5AgMeLxe9YCCs5PuP2O2LdjDAA8Jh9eX7lA1Jq/xdXw3Wb3hyvlFNfZIfcRetSzYcA==}
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
- dependencies:
- jest-get-type: 29.6.3
- dev: true
- /@jest/expect/29.7.0:
+ '@jest/expect@29.7.0':
resolution: {integrity: sha512-8uMeAMycttpva3P1lBHB8VciS9V0XAr3GymPpipdyQXbBcuhkLQOSe8E/p92RyAdToS6ZD1tFkX+CkhoECE0dQ==}
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
- dependencies:
- expect: 29.7.0
- jest-snapshot: 29.7.0
- transitivePeerDependencies:
- - supports-color
- dev: true
- /@jest/fake-timers/29.7.0:
+ '@jest/fake-timers@29.7.0':
resolution: {integrity: sha512-q4DH1Ha4TTFPdxLsqDXK1d3+ioSL7yL5oCMJZgDYm6i+6CygW5E5xVr/D1HdsGxjt1ZWSfUAs9OxSB/BNelWrQ==}
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
- dependencies:
- '@jest/types': 29.6.3
- '@sinonjs/fake-timers': 10.3.0
- '@types/node': 20.17.6
- jest-message-util: 29.7.0
- jest-mock: 29.7.0
- jest-util: 29.7.0
- dev: true
- /@jest/globals/29.7.0:
+ '@jest/globals@29.7.0':
resolution: {integrity: sha512-mpiz3dutLbkW2MNFubUGUEVLkTGiqW6yLVTA+JbP6fI6J5iL9Y0Nlg8k95pcF8ctKwCS7WVxteBs29hhfAotzQ==}
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
- dependencies:
- '@jest/environment': 29.7.0
- '@jest/expect': 29.7.0
- '@jest/types': 29.6.3
- jest-mock: 29.7.0
- transitivePeerDependencies:
- - supports-color
- dev: true
- /@jest/reporters/29.7.0:
+ '@jest/reporters@29.7.0':
resolution: {integrity: sha512-DApq0KJbJOEzAFYjHADNNxAE3KbhxQB1y5Kplb5Waqw6zVbuWatSnMjE5gs8FUgEPmNsnZA3NCWl9NG0ia04Pg==}
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
peerDependencies:
@@ -17528,295 +14072,130 @@ packages:
peerDependenciesMeta:
node-notifier:
optional: true
- dependencies:
- '@bcoe/v8-coverage': 0.2.3
- '@jest/console': 29.7.0
- '@jest/test-result': 29.7.0
- '@jest/transform': 29.7.0
- '@jest/types': 29.6.3
- '@jridgewell/trace-mapping': 0.3.25
- '@types/node': 20.17.6
- chalk: 4.1.2
- collect-v8-coverage: 1.0.2
- exit: 0.1.2
- glob: 7.2.3
- graceful-fs: 4.2.11
- istanbul-lib-coverage: 3.2.2
- istanbul-lib-instrument: 6.0.3
- istanbul-lib-report: 3.0.1
- istanbul-lib-source-maps: 4.0.1
- istanbul-reports: 3.1.7
- jest-message-util: 29.7.0
- jest-util: 29.7.0
- jest-worker: 29.7.0
- slash: 3.0.0
- string-length: 4.0.2
- strip-ansi: 6.0.1
- v8-to-istanbul: 9.3.0
- transitivePeerDependencies:
- - supports-color
- dev: true
- /@jest/schemas/29.6.3:
+ '@jest/schemas@29.6.3':
resolution: {integrity: sha512-mo5j5X+jIZmJQveBKeS/clAueipV7KgiX1vMgCxam1RNYiqE1w62n0/tJJnHtjW8ZHcQco5gY85jA3mi0L+nSA==}
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
- dependencies:
- '@sinclair/typebox': 0.27.8
- dev: true
- /@jest/source-map/29.6.3:
+ '@jest/source-map@29.6.3':
resolution: {integrity: sha512-MHjT95QuipcPrpLM+8JMSzFx6eHp5Bm+4XeFDJlwsvVBjmKNiIAvasGK2fxz2WbGRlnvqehFbh07MMa7n3YJnw==}
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
- dependencies:
- '@jridgewell/trace-mapping': 0.3.25
- callsites: 3.1.0
- graceful-fs: 4.2.11
- dev: true
- /@jest/test-result/29.7.0:
+ '@jest/test-result@29.7.0':
resolution: {integrity: sha512-Fdx+tv6x1zlkJPcWXmMDAG2HBnaR9XPSd5aDWQVsfrZmLVT3lU1cwyxLgRmXR9yrq4NBoEm9BMsfgFzTQAbJYA==}
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
- dependencies:
- '@jest/console': 29.7.0
- '@jest/types': 29.6.3
- '@types/istanbul-lib-coverage': 2.0.6
- collect-v8-coverage: 1.0.2
- dev: true
- /@jest/test-sequencer/29.7.0:
+ '@jest/test-sequencer@29.7.0':
resolution: {integrity: sha512-GQwJ5WZVrKnOJuiYiAF52UNUJXgTZx1NHjFSEB0qEMmSZKAkdMoIzw/Cj6x6NF4AvV23AUqDpFzQkN/eYCYTxw==}
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
- dependencies:
- '@jest/test-result': 29.7.0
- graceful-fs: 4.2.11
- jest-haste-map: 29.7.0
- slash: 3.0.0
- dev: true
- /@jest/transform/29.7.0:
+ '@jest/transform@29.7.0':
resolution: {integrity: sha512-ok/BTPFzFKVMwO5eOHRrvnBVHdRy9IrsrW1GpMaQ9MCnilNLXQKmAX8s1YXDFaai9xJpac2ySzV0YeRRECr2Vw==}
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
- dependencies:
- '@babel/core': 7.25.2
- '@jest/types': 29.6.3
- '@jridgewell/trace-mapping': 0.3.25
- babel-plugin-istanbul: 6.1.1
- chalk: 4.1.2
- convert-source-map: 2.0.0
- fast-json-stable-stringify: 2.1.0
- graceful-fs: 4.2.11
- jest-haste-map: 29.7.0
- jest-regex-util: 29.6.3
- jest-util: 29.7.0
- micromatch: 4.0.7
- pirates: 4.0.6
- slash: 3.0.0
- write-file-atomic: 4.0.2
- transitivePeerDependencies:
- - supports-color
- dev: true
- /@jest/types/29.6.3:
+ '@jest/types@29.6.3':
resolution: {integrity: sha512-u3UPsIilWKOM3F9CXtrG8LEJmNxwoCQC/XVj4IKYXvvpx7QIi/Kg1LI5uDmDpKlac62NUtX7eLjRh+jVZcLOzw==}
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
- dependencies:
- '@jest/schemas': 29.6.3
- '@types/istanbul-lib-coverage': 2.0.6
- '@types/istanbul-reports': 3.0.4
- '@types/node': 20.17.6
- '@types/yargs': 17.0.32
- chalk: 4.1.2
- dev: true
- /@jridgewell/gen-mapping/0.3.5:
+ '@jridgewell/gen-mapping@0.3.5':
resolution: {integrity: sha512-IzL8ZoEDIBRWEzlCcRhOaCupYyN5gdIK+Q6fbFdPDg6HqX6jpkItn7DFIpW9LQzXG6Df9sA7+OKnq0qlz/GaQg==}
engines: {node: '>=6.0.0'}
- dependencies:
- '@jridgewell/set-array': 1.2.1
- '@jridgewell/sourcemap-codec': 1.5.0
- '@jridgewell/trace-mapping': 0.3.25
- /@jridgewell/resolve-uri/3.1.2:
+ '@jridgewell/resolve-uri@3.1.2':
resolution: {integrity: sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw==}
engines: {node: '>=6.0.0'}
- /@jridgewell/set-array/1.2.1:
+ '@jridgewell/set-array@1.2.1':
resolution: {integrity: sha512-R8gLRTZeyp03ymzP/6Lil/28tGeGEzhx1q2k703KGWRAI1VdvPIXdG70VJc2pAMw3NA6JKL5hhFu1sJX0Mnn/A==}
engines: {node: '>=6.0.0'}
- /@jridgewell/sourcemap-codec/1.5.0:
+ '@jridgewell/sourcemap-codec@1.5.0':
resolution: {integrity: sha512-gv3ZRaISU3fjPAgNsriBRqGWQL6quFx04YMPW/zD8XMLsU32mhCCbfbO6KZFLjvYpCZ8zyDEgqsgf+PwPaM7GQ==}
- /@jridgewell/trace-mapping/0.3.25:
+ '@jridgewell/trace-mapping@0.3.25':
resolution: {integrity: sha512-vNk6aEwybGtawWmy/PzwnGDOjCkLWSD2wqvjGGAgOAwCGWySYXfYoxt00IJkTF+8Lb57DwOb3Aa0o9CApepiYQ==}
- dependencies:
- '@jridgewell/resolve-uri': 3.1.2
- '@jridgewell/sourcemap-codec': 1.5.0
- /@js-joda/core/5.5.3:
- resolution: {integrity: sha512-7dqNYwG8gCt4hfg5PKgM7xLEcgSBcx/UgC92OMnhMmvAnq11QzDFPrxUkNR/u5kn17WWLZ8beZ4A3Qrz4pZcmQ==}
- dev: false
+ '@js-joda/core@5.6.3':
+ resolution: {integrity: sha512-T1rRxzdqkEXcou0ZprN1q9yDRlvzCPLqmlNt5IIsGBzoEVgLCCYrKEwc84+TvsXuAc95VAZwtWD2zVsKPY4bcA==}
- /@js-sdsl/ordered-map/4.4.2:
+ '@js-sdsl/ordered-map@4.4.2':
resolution: {integrity: sha512-iUKgm52T8HOE/makSxjqoWhe95ZJA1/G1sYsGev2JDKUSS14KAgg1LHb+Ba+IPow0xflbnSkOsZcO08C7w1gYw==}
- dev: false
- /@jsdevtools/ono/7.1.3:
+ '@jsdevtools/ono@7.1.3':
resolution: {integrity: sha512-4JQNk+3mVzK3xh2rqd6RB4J46qUR19azEHBneZyTZM+c456qOrbbM/5xcR8huNCCcbVt7+UmizG6GuUvPvKUYg==}
- dev: false
- /@jsdoc/salty/0.2.5:
- resolution: {integrity: sha512-TfRP53RqunNe2HBobVBJ0VLhK1HbfvBYeTC1ahnN64PWvyYyGebmMiPkuwvD9fpw2ZbkoPb8Q7mwy0aR8Z9rvw==}
+ '@jsdoc/salty@0.2.8':
+ resolution: {integrity: sha512-5e+SFVavj1ORKlKaKr2BmTOekmXbelU7dC0cDkQLqag7xfuTPuGMUFx7KWJuv4bYZrTsoL2Z18VVCOKYxzoHcg==}
engines: {node: '>=v12.0.0'}
- dependencies:
- lodash: 4.17.21
- dev: false
- /@kontent-ai/core-sdk/10.2.0:
- resolution: {integrity: sha512-mp5L7kkLg28xT8nLlo/8b9VIbTwy7FW9CNNTT7g/NxoVkmYLh9WEJQd9Xf+RGdYZ4RYhlJvKHUtUs16C4KTw0w==}
+ '@keyv/serialize@1.0.1':
+ resolution: {integrity: sha512-kKXeynfORDGPUEEl2PvTExM2zs+IldC6ZD8jPcfvI351MDNtfMlw9V9s4XZXuJNDK2qR5gbEKxRyoYx3quHUVQ==}
+
+ '@kontent-ai/core-sdk@10.4.0':
+ resolution: {integrity: sha512-lkZ7/5Vdz/OZzgOn8QdLlTQPL1w7CIjkGfR4/VwUDFlguxcCYFEHbJ4hszb8Y3nHxwKOzL5lvi9SstP7Blvmpw==}
engines: {node: '>= 8'}
- dependencies:
- axios: 1.4.0
- transitivePeerDependencies:
- - debug
- dev: false
- /@kontent-ai/delivery-sdk/14.4.0:
- resolution: {integrity: sha512-PZ7tADqBr0sK/GLH+nBtR6B0BOB3s/UWTE8sxcjCxpxqZu31dwgOcq2u5rCCSuWNQsrSM+hfBtxNqghkaUQWHg==}
- engines: {node: '>= 14'}
- dependencies:
- '@kontent-ai/core-sdk': 10.2.0
- url-parse: 1.5.10
- uuid: 9.0.0
- transitivePeerDependencies:
- - debug
- dev: false
+ '@kontent-ai/core-sdk@10.7.0':
+ resolution: {integrity: sha512-NNS1jatzMzp+XBWNc45bcbZjTFTs4szAFJxKn9oj/4p4+ZXucqYXBs88KCUotXmCCcoeUiFAFn8aQUF2aiTM+Q==}
+ engines: {node: '>= 20'}
- /@kontent-ai/management-sdk/5.3.0:
- resolution: {integrity: sha512-Jx/4+NdbTMlTMz5W8NBOWZapZ0VzogIGn7TlssXWI2pTGiRKTHk5u8PI1PKGuNhabwINEMorpEfv74To3TmMQg==}
- engines: {node: '>= 8'}
- dependencies:
- '@kontent-ai/core-sdk': 10.2.0
- axios: 1.5.0
- mime: 3.0.0
- transitivePeerDependencies:
- - debug
- dev: false
+ '@kontent-ai/delivery-sdk@14.11.0':
+ resolution: {integrity: sha512-Te54qob53ls1Rr/cu8+5zRydHU++JX5Nj9U+RJ2ck9aVqpHvrqpNkuKDc2MoFyzC9tRvfF0w4LdBnWuLtFPrZg==}
+ engines: {node: '>= 18'}
+
+ '@kontent-ai/management-sdk@5.9.0':
+ resolution: {integrity: sha512-0HKCR0lP9g72Enn6emPS8VqRR6CzD7O2cIFbMGjhvPskWlVDPpWMD4e0jtlL/KQdPhnMgUw0wdGkUEMY/BrmsA==}
+ engines: {node: '>= 16'}
- /@kontent-ai/webhook-helper/2.1.0:
+ '@kontent-ai/webhook-helper@2.1.0':
resolution: {integrity: sha512-J6CiHM/7PUrRNNZeh0I46iQmyHgKt2qo3aJ0BAMwHuBrmwxIoU7aWOfk1Xi4AiPJaabbq0+qMIutQuSBLoWXkA==}
engines: {node: '>= 16'}
- dev: false
- /@line/bot-sdk/7.7.0:
+ '@line/bot-sdk@7.7.0':
resolution: {integrity: sha512-lm5VlCq9J0zoqa3RfGor2g2hwZOBxK9xsBqWz5s0WZPlGaq+JhXBC/cAPbuEIS+YTpPn+F22K9C6VRYEO8WE9A==}
engines: {node: '>=18'}
- dependencies:
- '@types/body-parser': 1.19.3
- '@types/node': 18.18.3
- axios: 1.6.5
- body-parser: 1.20.2
- file-type: 16.5.4
- form-data: 4.0.1
- transitivePeerDependencies:
- - debug
- - supports-color
- dev: false
- /@linear/sdk/13.0.0:
+ '@linear/sdk@13.0.0':
resolution: {integrity: sha512-Vn1qM+bP0lggPIPxHU7G2u0WrA/cGpvqjm9V0sNs+yazJDq7/9PLDnyUU+E97DneOPsekTA2H/Gw3CAfekpUlA==}
engines: {node: '>=12.x', yarn: 1.x}
- dependencies:
- '@graphql-typed-document-node/core': 3.2.0_graphql@15.8.0
- graphql: 15.8.0
- isomorphic-unfetch: 3.1.0
- transitivePeerDependencies:
- - encoding
- dev: false
- /@livekit/protocol/1.27.1:
+ '@livekit/protocol@1.27.1':
resolution: {integrity: sha512-ISEp7uWdV82mtCR1eyHFTzdRZTVbe2+ZztjmjiMPzR/KPrI1Ma/u5kLh87NNuY3Rn8wv1VlEvGHHsFjQ+dKVUw==}
- dependencies:
- '@bufbuild/protobuf': 1.10.0
- dev: false
- /@lob/lob-typescript-sdk/1.3.2:
- resolution: {integrity: sha512-tRqTg50LsUO4nuw0UHUmj4Ffsus9YsgT13FR1GUhupE2ggpgtB6erTTVYaajMGkS1s21eYuF0L0k3UkrnPSPcw==}
- engines: {node: '>= 12.0.0'}
- dependencies:
- axios: 0.24.0
- tslib: 2.6.2
- transitivePeerDependencies:
- - debug
- dev: false
+ '@lob/lob-typescript-sdk@1.3.5':
+ resolution: {integrity: sha512-ZFzYksy/5SqYCoHRJnlpr1P89UHdFEhAdLJ/0aQlNeqfJC1R9pucQuR9YTWmdHhGaz7AORMMlFMojd+xz8m32w==}
+ engines: {node: '>= 20'}
- /@mailchimp/mailchimp_marketing/3.0.80:
+ '@mailchimp/mailchimp_marketing@3.0.80':
resolution: {integrity: sha512-Cgz0xPb+1DUjmrl5whAsmqfAChBko+Wf4/PLQE4RvwfPlcq2agfHr1QFiXEhZ8e+GQwQ3hZQn9iLGXwIXwxUCg==}
engines: {node: '>=10.0.0'}
- dependencies:
- dotenv: 8.6.0
- superagent: 3.8.1
- transitivePeerDependencies:
- - supports-color
- dev: false
- /@memberstack/admin/1.2.4:
- resolution: {integrity: sha512-rPeRxEus7+n7JTiP5/vngcGjmJLwyc9dgBG8uViGW4yB/qJa1K5EnOwedl5kT5tRi4ywhTeLPXQKYEI67oWemg==}
- dependencies:
- axios: 0.21.4
- jose: 3.20.4
- transitivePeerDependencies:
- - debug
- dev: false
+ '@memberstack/admin@1.3.1':
+ resolution: {integrity: sha512-ulRCIpt6k/3RIag+YyU2eW+b0Ik1pF+gXx2b+hYI3Mk6/NxwzZWTVC+YJw3BO3tRUq9TOFy7IaPMfm8wQTJYIA==}
- /@microsoft/kiota-abstractions/1.0.0-preview.26:
- resolution: {integrity: sha512-+8s1TvvJrWLHDjtZeKw9Han3kaKKOuGQ8PSC0KRno/Uj1j1cSGrsYF8kUOsnjIFvC4u5rPRFLkt+0iUNJFRJJA==}
- dependencies:
- '@opentelemetry/api': 1.6.0
- guid-typescript: 1.0.9
- tinyduration: 3.3.0
- tslib: 2.6.3
- uri-template-lite: 23.4.0
- uuid: 9.0.1
- dev: false
+ '@microsoft/api-extractor-model@7.29.9':
+ resolution: {integrity: sha512-/DaMfUjiswmrnLjHCorVzWGbW5rmeTGDo+H0QcvcarJ14SjNVmFWiRKzscN4B2y9AyllqeXMPgwbtSFAdAkpMQ==}
- /@microsoft/kiota-http-fetchlibrary/1.0.0-preview.25:
- resolution: {integrity: sha512-rJRvZpBu83zP1x4dKJ9O0Ms7bzOx322EarV9hhzOkQ7ZIhyP5SYyQsezvJz5nb/+QzdsVllkbQMyENn/JquBAg==}
- dependencies:
- '@microsoft/kiota-abstractions': 1.0.0-preview.26
- '@opentelemetry/api': 1.6.0
- guid-typescript: 1.0.9
- node-fetch: 2.7.0
- tslib: 2.6.3
- transitivePeerDependencies:
- - encoding
- dev: false
+ '@microsoft/api-extractor@7.47.12':
+ resolution: {integrity: sha512-YE/h4vE9T1i3oGtgEZC7pHupH/drtGAuQ36iJ1Ua0gQ8NXmPXNKNilkCqzWnX/QvMnr1xSgEjHppWMXEi5YZKQ==}
+ hasBin: true
- /@microsoft/kiota-serialization-form/1.0.0-preview.15:
- resolution: {integrity: sha512-mEMqcg4P4gL56FPBbaPeO0fZustiaKhkBt9siBDxmV/cqK6rxEhKMFVsHo18sIWZh3I60nG+VCObKdeXFpXAlw==}
- dependencies:
- '@microsoft/kiota-abstractions': 1.0.0-preview.26
- guid-typescript: 1.0.9
- tslib: 2.6.3
- dev: false
+ '@microsoft/kiota-abstractions@1.0.0-preview.77':
+ resolution: {integrity: sha512-fbG40A34f0E62mw+zN8tM3OUukpeh97scSf5At75vo4AGdidE2RGExbi97V0DqvqIxCgO8dEvR4zdweX74rzug==}
- /@microsoft/kiota-serialization-json/1.0.0-preview.26:
- resolution: {integrity: sha512-JSHA+jDkg2E2M6mizQnRjvuz+dTtZGU4HPSAh7koH+AxcRL5R6CrSu9AB7X9rKyNKc8JotsKy77lFc/1Rz/2tA==}
- dependencies:
- '@microsoft/kiota-abstractions': 1.0.0-preview.26
- guid-typescript: 1.0.9
- tslib: 2.6.3
- dev: false
+ '@microsoft/kiota-http-fetchlibrary@1.0.0-preview.77':
+ resolution: {integrity: sha512-4jMeJ1BJI19i41gPVXrcC8ii1VMYAnCpwqhRZv3SFSvboGAdS1Vyanakp5dxPoVOSN7vIgq/sOnKaxFCyENX+w==}
- /@microsoft/kiota-serialization-text/1.0.0-preview.23:
- resolution: {integrity: sha512-4mu2q6qubcPBXwcslzyHxAGTfoAUnnm3/dwWMQeLKxuHEWopuaEW3OGNdpXpV4ON303OFO2gVCx6pYhjktZ32A==}
- dependencies:
- '@microsoft/kiota-abstractions': 1.0.0-preview.26
- guid-typescript: 1.0.9
- tslib: 2.6.3
- dev: false
+ '@microsoft/kiota-serialization-form@1.0.0-preview.77':
+ resolution: {integrity: sha512-Kq8vkJuzfiPyVmj2ganGUPTNalEHUanN7AZbCt/cVWYDZX53VpgZzcaEgGP73FXToP9yaRIi33kGwLGeg3sPMQ==}
+
+ '@microsoft/kiota-serialization-json@1.0.0-preview.77':
+ resolution: {integrity: sha512-e/jXIId+B7QiFbpqpniux8DStfL0uU3oK7D4ds/PSXaH+ZKawX1W6XPU3mle3b+ZYxh0H79sU78NTARSMej9Xg==}
- /@microsoft/microsoft-graph-client/3.0.7:
+ '@microsoft/kiota-serialization-text@1.0.0-preview.77':
+ resolution: {integrity: sha512-kemhCVV3muzKJ54FyfM6a4Rp1JA5q0GfPISmxXj9cyCtjYcguAD8q98+1owSeKFwjk2BGVRBZFixoZwcrmGf5g==}
+
+ '@microsoft/microsoft-graph-client@3.0.7':
resolution: {integrity: sha512-/AazAV/F+HK4LIywF9C+NYHcJo038zEnWkteilcxC1FM/uK/4NVGDKGrxx7nNq1ybspAroRKT4I1FHfxQzxkUw==}
engines: {node: '>=12.0.0'}
peerDependencies:
@@ -17833,3746 +14212,15686 @@ packages:
optional: true
stream-browserify:
optional: true
- dependencies:
- '@babel/runtime': 7.23.1
- tslib: 2.6.2
- dev: false
- /@molt/command/0.9.0:
- resolution: {integrity: sha512-1JI8dAlpqlZoXyKWVQggX7geFNPxBpocHIXQCsnxDjKy+3WX4SGyZVJXuLlqRRrX7FmQCuuMAfx642ovXmPA9g==}
- dependencies:
- '@molt/types': 0.2.0
- alge: 0.8.1
- chalk: 5.3.0
- lodash.camelcase: 4.3.0
- lodash.snakecase: 4.1.1
- readline-sync: 1.4.10
- string-length: 6.0.0
- strip-ansi: 7.1.0
- ts-toolbelt: 9.6.0
- type-fest: 4.15.0
- zod: 3.23.8
- dev: false
+ '@microsoft/tsdoc-config@0.17.0':
+ resolution: {integrity: sha512-v/EYRXnCAIHxOHW+Plb6OWuUoMotxTN0GLatnpOb1xq0KuTNw/WI3pamJx/UbsoJP5k9MCw1QxvvhPcF9pH3Zg==}
- /@molt/types/0.2.0:
- resolution: {integrity: sha512-p6ChnEZDGjg9PYPec9BK6Yp5/DdSrYQvXTBAtgrnqX6N36cZy37ql1c8Tc5LclfIYBNG7EZp8NBcRTYJwyi84g==}
- dependencies:
- ts-toolbelt: 9.6.0
- dev: false
+ '@microsoft/tsdoc@0.15.0':
+ resolution: {integrity: sha512-HZpPoABogPvjeJOdzCOSJsXeL/SMCBgBZMVC3X3d7YYp2gf31MfxhUoYUNwf1ERPJOnQc0wkFn9trqI6ZEdZuA==}
- /@mongodb-js/saslprep/1.1.0:
- resolution: {integrity: sha512-Xfijy7HvfzzqiOAhAepF4SGN5e9leLkMvg/OPOF97XemjfVCYN/oWa75wnkc6mltMSTwY+XlbhWgUOJmkFspSw==}
- requiresBuild: true
- dependencies:
- sparse-bitfield: 3.0.3
- dev: false
- optional: true
+ '@mongodb-js/saslprep@1.1.9':
+ resolution: {integrity: sha512-tVkljjeEaAhCqTzajSdgbQ6gE6f3oneVwa3iXR6csiEwXXOFsiC6Uh9iAjAhXPtqa/XMDHWjjeNH/77m/Yq2dw==}
- /@netlify/open-api/2.23.0:
- resolution: {integrity: sha512-v3IAP/iiCNfmEdxkP1bAwPeWqWtbIRRYMUcCc0qyhIzhDuQCOzVBq1OOMQotWKKLs2GbgrR/a9qYTjhcY9j44g==}
- dev: false
+ '@netlify/open-api@2.34.0':
+ resolution: {integrity: sha512-C4v7Od/vnGgZ1P4JK3Fn9uUi9HkTxeUqUtj4OLnGD+rGyaVrl4JY89xMCoVksijDtO8XylYFU59CSTnQNeNw7g==}
+ engines: {node: '>=14'}
- /@netlify/zip-it-and-ship-it/3.10.0:
+ '@netlify/zip-it-and-ship-it@3.10.0':
resolution: {integrity: sha512-XqvgFXN8YpIiHmmu4jdhHS+Huln81YnT1bieBBiadmHsFPblT9Fr6bWEp2Wlz31caEBXAxp1BAIZisp6Jmx+Mg==}
engines: {node: '>=8.3.0'}
hasBin: true
- dependencies:
- archiver: 4.0.2
- array-flat-polyfill: 1.0.1
- common-path-prefix: 2.0.0
- cp-file: 7.0.0
- del: 5.1.0
- elf-cam: 0.1.1
- end-of-stream: 1.4.4
- esbuild: 0.11.10
- filter-obj: 2.0.2
- find-up: 4.1.0
- glob: 7.2.3
- junk: 3.1.0
- locate-path: 5.0.0
- make-dir: 3.1.0
- merge-options: 3.0.4
- minimatch: 3.1.2
- p-map: 3.0.0
- path-exists: 4.0.0
- pkg-dir: 4.2.0
- precinct: 6.3.1
- read-package-json-fast: 2.0.3
- require-package-name: 2.0.1
- resolve: 2.0.0-next.4
- semver: 6.3.1
- unixify: 1.0.0
- yargs: 15.4.1
- transitivePeerDependencies:
- - supports-color
- dev: false
- /@next/eslint-plugin-next/14.2.15:
- resolution: {integrity: sha512-pKU0iqKRBlFB/ocOI1Ip2CkKePZpYpnw5bEItEkuZ/Nr9FQP1+p7VDWr4VfOdff4i9bFmrOaeaU1bFEyAcxiMQ==}
- dependencies:
- glob: 10.3.10
- dev: true
+ '@next/env@15.0.3':
+ resolution: {integrity: sha512-t9Xy32pjNOvVn2AS+Utt6VmyrshbpfUMhIjFO60gI58deSo/KgLOp31XZ4O+kY/Is8WAGYwA5gR7kOb1eORDBA==}
- /@nicolo-ribaudo/chokidar-2/2.1.8-no-fsevents.3:
- resolution: {integrity: sha512-s88O1aVtXftvp5bCPB7WnmXc5IwOZZ7YPuwNPt+GtOOXpPvad1LfbmjYv+qII7zP6RU2QGnqve27dnLycEnyEQ==}
- requiresBuild: true
- dev: false
- optional: true
+ '@next/eslint-plugin-next@15.0.3':
+ resolution: {integrity: sha512-3Ln/nHq2V+v8uIaxCR6YfYo7ceRgZNXfTd3yW1ukTaFbO+/I8jNakrjYWODvG9BuR2v5kgVtH/C8r0i11quOgw==}
- /@nicolo-ribaudo/eslint-scope-5-internals/5.1.1-v1:
- resolution: {integrity: sha512-54/JRvkLIzzDWshCWfuhadfrfZVPiElY8Fcgmg1HroEly/EDSszzhBAsarCux+D/kOslTRquNzuyGSmUSTTHGg==}
- dependencies:
- eslint-scope: 5.1.1
- dev: true
+ '@next/swc-darwin-arm64@15.0.3':
+ resolution: {integrity: sha512-s3Q/NOorCsLYdCKvQlWU+a+GeAd3C8Rb3L1YnetsgwXzhc3UTWrtQpB/3eCjFOdGUj5QmXfRak12uocd1ZiiQw==}
+ engines: {node: '>= 10'}
+ cpu: [arm64]
+ os: [darwin]
+
+ '@next/swc-darwin-x64@15.0.3':
+ resolution: {integrity: sha512-Zxl/TwyXVZPCFSf0u2BNj5sE0F2uR6iSKxWpq4Wlk/Sv9Ob6YCKByQTkV2y6BCic+fkabp9190hyrDdPA/dNrw==}
+ engines: {node: '>= 10'}
+ cpu: [x64]
+ os: [darwin]
+
+ '@next/swc-linux-arm64-gnu@15.0.3':
+ resolution: {integrity: sha512-T5+gg2EwpsY3OoaLxUIofmMb7ohAUlcNZW0fPQ6YAutaWJaxt1Z1h+8zdl4FRIOr5ABAAhXtBcpkZNwUcKI2fw==}
+ engines: {node: '>= 10'}
+ cpu: [arm64]
+ os: [linux]
+
+ '@next/swc-linux-arm64-musl@15.0.3':
+ resolution: {integrity: sha512-WkAk6R60mwDjH4lG/JBpb2xHl2/0Vj0ZRu1TIzWuOYfQ9tt9NFsIinI1Epma77JVgy81F32X/AeD+B2cBu/YQA==}
+ engines: {node: '>= 10'}
+ cpu: [arm64]
+ os: [linux]
+
+ '@next/swc-linux-x64-gnu@15.0.3':
+ resolution: {integrity: sha512-gWL/Cta1aPVqIGgDb6nxkqy06DkwJ9gAnKORdHWX1QBbSZZB+biFYPFti8aKIQL7otCE1pjyPaXpFzGeG2OS2w==}
+ engines: {node: '>= 10'}
+ cpu: [x64]
+ os: [linux]
+
+ '@next/swc-linux-x64-musl@15.0.3':
+ resolution: {integrity: sha512-QQEMwFd8r7C0GxQS62Zcdy6GKx999I/rTO2ubdXEe+MlZk9ZiinsrjwoiBL5/57tfyjikgh6GOU2WRQVUej3UA==}
+ engines: {node: '>= 10'}
+ cpu: [x64]
+ os: [linux]
+
+ '@next/swc-win32-arm64-msvc@15.0.3':
+ resolution: {integrity: sha512-9TEp47AAd/ms9fPNgtgnT7F3M1Hf7koIYYWCMQ9neOwjbVWJsHZxrFbI3iEDJ8rf1TDGpmHbKxXf2IFpAvheIQ==}
+ engines: {node: '>= 10'}
+ cpu: [arm64]
+ os: [win32]
+
+ '@next/swc-win32-x64-msvc@15.0.3':
+ resolution: {integrity: sha512-VNAz+HN4OGgvZs6MOoVfnn41kBzT+M+tB+OK4cww6DNyWS6wKaDpaAm/qLeOUbnMh0oVx1+mg0uoYARF69dJyA==}
+ engines: {node: '>= 10'}
+ cpu: [x64]
+ os: [win32]
+
+ '@nicolo-ribaudo/chokidar-2@2.1.8-no-fsevents.3':
+ resolution: {integrity: sha512-s88O1aVtXftvp5bCPB7WnmXc5IwOZZ7YPuwNPt+GtOOXpPvad1LfbmjYv+qII7zP6RU2QGnqve27dnLycEnyEQ==}
- /@nodelib/fs.scandir/2.1.5:
+ '@nodelib/fs.scandir@2.1.5':
resolution: {integrity: sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==}
engines: {node: '>= 8'}
- dependencies:
- '@nodelib/fs.stat': 2.0.5
- run-parallel: 1.2.0
- /@nodelib/fs.stat/2.0.5:
+ '@nodelib/fs.stat@2.0.5':
resolution: {integrity: sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==}
engines: {node: '>= 8'}
- /@nodelib/fs.walk/1.2.8:
+ '@nodelib/fs.walk@1.2.8':
resolution: {integrity: sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==}
engines: {node: '>= 8'}
- dependencies:
- '@nodelib/fs.scandir': 2.1.5
- fastq: 1.17.1
- /@nolyfill/is-core-module/1.0.39:
+ '@nolyfill/is-core-module@1.0.39':
resolution: {integrity: sha512-nn5ozdjYQpUCZlWGuxcJY/KpxkWQs4DcbMCmKojjyrYDEAGy4Ce19NN4v5MduafTwJlbKc99UA8YhSVqq9yPZA==}
engines: {node: '>=12.4.0'}
- dev: true
- /@notionhq/client/1.0.4:
+ '@notionhq/client@1.0.4':
resolution: {integrity: sha512-m7zZ5l3RUktayf1lRBV1XMb8HSKsmWTv/LZPqP7UGC1NMzOlc+bbTOPNQ4CP/c1P4cP61VWLb/zBq7a3c0nMaw==}
engines: {node: '>=12'}
- dependencies:
- '@types/node-fetch': 2.6.6
- node-fetch: 2.7.0
- transitivePeerDependencies:
- - encoding
- dev: false
- /@notionhq/client/2.2.13:
- resolution: {integrity: sha512-wJpEl30QUSy2K3/Q2c2knNiZlLXJ17JnQgaIiFbN68IMJy+2TE9fXLxvV1N/cMVs2+SpteAa6PlyrUgfGdlmDg==}
+ '@notionhq/client@2.2.15':
+ resolution: {integrity: sha512-XhdSY/4B1D34tSco/GION+23GMjaS9S2zszcqYkMHo8RcWInymF6L1x+Gk7EmHdrSxNFva2WM8orhC4BwQCwgw==}
engines: {node: '>=12'}
- dependencies:
- '@types/node-fetch': 2.6.6
- node-fetch: 2.7.0
- transitivePeerDependencies:
- - encoding
- dev: false
- /@octokit/auth-token/2.5.0:
+ '@octokit/auth-token@2.5.0':
resolution: {integrity: sha512-r5FVUJCOLl19AxiuZD2VRZ/ORjp/4IN98Of6YJoJOkY75CIBuYfmiNHGrDwXr+aLGG55igl9QrxX3hbiXlLb+g==}
- dependencies:
- '@octokit/types': 6.41.0
- dev: true
- /@octokit/auth-token/3.0.4:
+ '@octokit/auth-token@3.0.4':
resolution: {integrity: sha512-TWFX7cZF2LXoCvdmJWY7XVPi74aSY0+FfBZNSXEXFkMpjcqsQwDSYVv5FhRFaI0V1ECnwbz4j59T/G+rXNWaIQ==}
engines: {node: '>= 14'}
- dev: false
- /@octokit/core/3.6.0:
+ '@octokit/core@3.6.0':
resolution: {integrity: sha512-7RKRKuA4xTjMhY+eG3jthb3hlZCsOwg3rztWh75Xc+ShDWOfDDATWbeZpAHBNRpm4Tv9WgBMOy1zEJYXG6NJ7Q==}
- dependencies:
- '@octokit/auth-token': 2.5.0
- '@octokit/graphql': 4.8.0
- '@octokit/request': 5.6.3
- '@octokit/request-error': 2.1.0
- '@octokit/types': 6.41.0
- before-after-hook: 2.2.3
- universal-user-agent: 6.0.0
- transitivePeerDependencies:
- - encoding
- dev: true
- /@octokit/core/4.2.4:
+ '@octokit/core@4.2.4':
resolution: {integrity: sha512-rYKilwgzQ7/imScn3M9/pFfUf4I1AZEH3KhyJmtPdE2zfaXAn2mFfUy4FbKewzc2We5y/LlKLj36fWJLKC2SIQ==}
engines: {node: '>= 14'}
- dependencies:
- '@octokit/auth-token': 3.0.4
- '@octokit/graphql': 5.0.6
- '@octokit/request': 6.2.8
- '@octokit/request-error': 3.0.3
- '@octokit/types': 9.3.2
- before-after-hook: 2.2.3
- universal-user-agent: 6.0.0
- transitivePeerDependencies:
- - encoding
- dev: false
- /@octokit/endpoint/6.0.12:
+ '@octokit/endpoint@6.0.12':
resolution: {integrity: sha512-lF3puPwkQWGfkMClXb4k/eUT/nZKQfxinRWJrdZaJO85Dqwo/G0yOC434Jr2ojwafWJMYqFGFa5ms4jJUgujdA==}
- dependencies:
- '@octokit/types': 6.41.0
- is-plain-object: 5.0.0
- universal-user-agent: 6.0.0
- dev: true
- /@octokit/endpoint/7.0.6:
+ '@octokit/endpoint@7.0.6':
resolution: {integrity: sha512-5L4fseVRUsDFGR00tMWD/Trdeeihn999rTMGRMC1G/Ldi1uWlWJzI98H4Iak5DB/RVvQuyMYKqSK/R6mbSOQyg==}
engines: {node: '>= 14'}
- dependencies:
- '@octokit/types': 9.3.2
- is-plain-object: 5.0.0
- universal-user-agent: 6.0.0
- dev: false
- /@octokit/graphql/4.8.0:
+ '@octokit/graphql@4.8.0':
resolution: {integrity: sha512-0gv+qLSBLKF0z8TKaSKTsS39scVKF9dbMxJpj3U0vC7wjNWFuIpL/z76Qe2fiuCbDRcJSavkXsVtMS6/dtQQsg==}
- dependencies:
- '@octokit/request': 5.6.3
- '@octokit/types': 6.41.0
- universal-user-agent: 6.0.0
- transitivePeerDependencies:
- - encoding
- dev: true
- /@octokit/graphql/5.0.6:
+ '@octokit/graphql@5.0.6':
resolution: {integrity: sha512-Fxyxdy/JH0MnIB5h+UQ3yCoh1FG4kWXfFKkpWqjZHw/p+Kc8Y44Hu/kCgNBT6nU1shNumEchmW/sUO1JuQnPcw==}
engines: {node: '>= 14'}
- dependencies:
- '@octokit/request': 6.2.8
- '@octokit/types': 9.3.2
- universal-user-agent: 6.0.0
- transitivePeerDependencies:
- - encoding
- dev: false
- /@octokit/openapi-types/12.11.0:
+ '@octokit/openapi-types@12.11.0':
resolution: {integrity: sha512-VsXyi8peyRq9PqIz/tpqiL2w3w80OgVMwBHltTml3LmVvXiphgeqmY9mvBw9Wu7e0QWk/fqD37ux8yP5uVekyQ==}
- /@octokit/openapi-types/18.1.1:
+ '@octokit/openapi-types@18.1.1':
resolution: {integrity: sha512-VRaeH8nCDtF5aXWnjPuEMIYf1itK/s3JYyJcWFJT8X9pSNnBtriDf7wlEWsGuhPLl4QIH4xM8fqTXDwJ3Mu6sw==}
- dev: false
- /@octokit/plugin-paginate-rest/2.21.3_@octokit+core@4.2.4:
+ '@octokit/plugin-paginate-rest@2.21.3':
resolution: {integrity: sha512-aCZTEf0y2h3OLbrgKkrfFdjRL6eSOo8komneVQJnYecAxIej7Bafor2xhuDJOIFau4pk0i/P28/XgtbyPF0ZHw==}
peerDependencies:
'@octokit/core': '>=2'
- dependencies:
- '@octokit/core': 4.2.4
- '@octokit/types': 6.41.0
- dev: false
- /@octokit/request-error/2.1.0:
+ '@octokit/request-error@2.1.0':
resolution: {integrity: sha512-1VIvgXxs9WHSjicsRwq8PlR2LR2x6DwsJAaFgzdi0JfJoGSO8mYI/cHJQ+9FbN21aa+DrgNLnwObmyeSC8Rmpg==}
- dependencies:
- '@octokit/types': 6.41.0
- deprecation: 2.3.1
- once: 1.4.0
- dev: true
- /@octokit/request-error/3.0.3:
+ '@octokit/request-error@3.0.3':
resolution: {integrity: sha512-crqw3V5Iy2uOU5Np+8M/YexTlT8zxCfI+qu+LxUB7SZpje4Qmx3mub5DfEKSO8Ylyk0aogi6TYdf6kxzh2BguQ==}
engines: {node: '>= 14'}
- dependencies:
- '@octokit/types': 9.3.2
- deprecation: 2.3.1
- once: 1.4.0
- dev: false
- /@octokit/request/5.6.3:
+ '@octokit/request@5.6.3':
resolution: {integrity: sha512-bFJl0I1KVc9jYTe9tdGGpAMPy32dLBXXo1dS/YwSCTL/2nd9XeHsY616RE3HPXDVk+a+dBuzyz5YdlXwcDTr2A==}
- dependencies:
- '@octokit/endpoint': 6.0.12
- '@octokit/request-error': 2.1.0
- '@octokit/types': 6.41.0
- is-plain-object: 5.0.0
- node-fetch: 2.7.0
- universal-user-agent: 6.0.0
- transitivePeerDependencies:
- - encoding
- dev: true
- /@octokit/request/6.2.8:
+ '@octokit/request@6.2.8':
resolution: {integrity: sha512-ow4+pkVQ+6XVVsekSYBzJC0VTVvh/FCTUUgTsboGq+DTeWdyIFV8WSCdo0RIxk6wSkBTHqIK1mYuY7nOBXOchw==}
engines: {node: '>= 14'}
- dependencies:
- '@octokit/endpoint': 7.0.6
- '@octokit/request-error': 3.0.3
- '@octokit/types': 9.3.2
- is-plain-object: 5.0.0
- node-fetch: 2.7.0
- universal-user-agent: 6.0.0
- transitivePeerDependencies:
- - encoding
- dev: false
- /@octokit/types/6.41.0:
+ '@octokit/types@6.41.0':
resolution: {integrity: sha512-eJ2jbzjdijiL3B4PrSQaSjuF2sPEQPVCPzBvTHJD9Nz+9dw2SGH4K4xeQJ77YfTq5bRQ+bD8wT11JbeDPmxmGg==}
- dependencies:
- '@octokit/openapi-types': 12.11.0
- /@octokit/types/9.3.2:
+ '@octokit/types@9.3.2':
resolution: {integrity: sha512-D4iHGTdAnEEVsB8fl95m1hiz7D5YiRdQ9b/OEb3BYRVwbLsGHcRVPz+u+BgRLNk0Q0/4iZCBqDN96j2XNxfXrA==}
- dependencies:
- '@octokit/openapi-types': 18.1.1
- dev: false
- /@octokit/webhooks-definitions/3.67.3:
+ '@octokit/webhooks-definitions@3.67.3':
resolution: {integrity: sha512-do4Z1r2OVhuI0ihJhQ8Hg+yPWnBYEBNuFNCrvtPKoYT1w81jD7pBXgGe86lYuuNirkDHb0Nxt+zt4O5GiFJfgA==}
deprecated: Use @octokit/webhooks-types, @octokit/webhooks-schemas, or @octokit/webhooks-examples instead. See https://github.com/octokit/webhooks/issues/447
- dev: false
-
- /@onfleet/node-onfleet/1.3.3:
- resolution: {integrity: sha512-0pcg+J9pdNEMAt/GYq96l4rmBsrsDwnTCWrjZhRCKmTlZq0QHBN/8u8smR7RPubg+DsMc5MOSPXXoLsfn03YIg==}
- dependencies:
- bottleneck: 2.19.5
- node-fetch: 2.7.0
- transitivePeerDependencies:
- - encoding
- dev: false
- /@opentelemetry/api/1.6.0:
- resolution: {integrity: sha512-OWlrQAnWn9577PhVgqjUvMr1pg57Bc4jv0iL4w0PRuOSRvq67rvHW9Ie/dZVMvCzhSCB+UxhcY/PmCmFj33Q+g==}
- engines: {node: '>=8.0.0'}
- dev: false
+ '@onfleet/node-onfleet@1.3.8':
+ resolution: {integrity: sha512-24qEmMnFTov6Kf6DvqZPeV4P3b1iKX4kkrfPVR/hlkqEshd7YPizunD59KW0BlOhzsc5ZFBX5wPAQS5MCeM/5g==}
+ engines: {node: '>=20.0.0'}
- /@opentelemetry/api/1.9.0:
+ '@opentelemetry/api@1.9.0':
resolution: {integrity: sha512-3giAOQvZiH5F9bMlMiv8+GSPMeqg0dbaeo58/0SlA9sxSqZhnUtxzX9/2FzyhS9sWQf5S0GJE0AKBrFqjpeYcg==}
engines: {node: '>=8.0.0'}
- dev: false
- /@opentelemetry/semantic-conventions/1.25.1:
- resolution: {integrity: sha512-ZDjMJJQRlyk8A1KZFCc+bCbsyrn1wTwdNt56F7twdfUfnHUZUq77/WfONCj8p72NZOyP7pNTdUWSTYC3GTbuuQ==}
+ '@opentelemetry/semantic-conventions@1.26.0':
+ resolution: {integrity: sha512-U9PJlOswJPSgQVPI+XEuNLElyFWkb0hAiMg+DExD9V0St03X2lPHGMdxMY/LrVmoukuIpXJ12oyrOtEZ4uXFkw==}
engines: {node: '>=14'}
- dev: false
- /@opentelemetry/semantic-conventions/1.3.1:
+ '@opentelemetry/semantic-conventions@1.3.1':
resolution: {integrity: sha512-wU5J8rUoo32oSef/rFpOT1HIjLjAv3qIDHkw1QIhODV3OpAVHi5oVzlouozg9obUmZKtbZ0qUe/m7FP0y0yBzA==}
engines: {node: '>=8.12.0'}
- dev: false
- /@panva/asn1.js/1.0.0:
+ '@panva/asn1.js@1.0.0':
resolution: {integrity: sha512-UdkG3mLEqXgnlKsWanWcgb6dOjUzJ+XC5f+aWw30qrtjxeNUSfKX1cd5FBzOaXQumoe9nIqeZUvrRJS03HCCtw==}
engines: {node: '>=10.13.0'}
- dev: false
- /@pdfless/pdfless-js/1.0.510:
+ '@pdfless/pdfless-js@1.0.510':
resolution: {integrity: sha512-RmbzdGQcWy/OSuPF/eaT0wQsi9ELu465/r/8DsgajbHumStHrkzRqsm330g1PgBgQipZMi9ZTTHfP4i/Sbs+pw==}
- dependencies:
- '@microsoft/kiota-abstractions': 1.0.0-preview.26
- '@microsoft/kiota-http-fetchlibrary': 1.0.0-preview.25
- '@microsoft/kiota-serialization-form': 1.0.0-preview.15
- '@microsoft/kiota-serialization-json': 1.0.0-preview.26
- '@microsoft/kiota-serialization-text': 1.0.0-preview.23
- transitivePeerDependencies:
- - encoding
- dev: false
- /@pipedream/aws/0.7.0:
+ '@pipedream/aws@0.7.0':
resolution: {integrity: sha512-msYqK4BGcCtdBy7+eyNrraXPIi2ZcDAdI0KAkdT0y45NNf4l5ST3auwAn1azJJvx5lw8yTaGZawvAPSVLuRxUw==}
- dependencies:
- '@aws-sdk/client-cloudwatch-logs': 3.423.0
- '@aws-sdk/client-dynamodb': 3.423.0
- '@aws-sdk/client-dynamodb-streams': 3.423.0
- '@aws-sdk/client-ec2': 3.423.0
- '@aws-sdk/client-eventbridge': 3.423.0
- '@aws-sdk/client-iam': 3.423.0
- '@aws-sdk/client-lambda': 3.423.0
- '@aws-sdk/client-rds': 3.556.0
- '@aws-sdk/client-s3': 3.423.0
- '@aws-sdk/client-ses': 3.423.0
- '@aws-sdk/client-sfn': 3.423.0
- '@aws-sdk/client-sns': 3.423.0
- '@aws-sdk/client-sqs': 3.423.0
- '@aws-sdk/client-ssm': 3.423.0
- '@aws-sdk/client-sts': 3.600.0_dseaa2p5u2yk67qiepewcq3hkq
- '@aws-sdk/s3-request-presigner': 3.609.0
- '@pipedream/helper_functions': 0.3.12
- '@pipedream/platform': 1.6.6
- adm-zip: 0.5.10
- dedent: 1.5.1
- mailparser: 3.6.6
- mailparser-mit: 1.0.0
- nanoid: 5.0.4
- uuid: 9.0.1
- transitivePeerDependencies:
- - aws-crt
- - babel-plugin-macros
- - debug
- dev: false
- /@pipedream/google_drive/0.6.15:
- resolution: {integrity: sha512-r0H0A1HsSEDVTPVSvK4XXcExEeUnkpIqLMNVM2aLh1bwdOblTS1sxLZ9mz/7DwAr8wRNCoW6zlXZBEhexIyyAg==}
- dependencies:
- '@googleapis/drive': 2.4.0
- '@pipedream/platform': 1.6.6
- cron-parser: 4.9.0
- lodash: 4.17.21
- mime-db: 1.52.0
- uuid: 8.3.2
- transitivePeerDependencies:
- - debug
- - encoding
- - supports-color
- dev: false
+ '@pipedream/connect-react@file:packages/connect-react':
+ resolution: {directory: packages/connect-react, type: directory}
+ peerDependencies:
+ react: ^16.8.0 || ^17.0.0 || ^18.0.0
+ react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0
- /@pipedream/helper_functions/0.3.12:
- resolution: {integrity: sha512-0n0kKCdrQQWOW275gDHBu0EUAdNssEzT3LLHcOTlzoTXP/V9Ue0VVTmtLDiDdaF9W3a4e2++tICFoVSGSyoMew==}
- dependencies:
- '@pipedream/platform': 1.6.6
- streamifier: 0.1.1
- xml-js: 1.6.11
- transitivePeerDependencies:
- - debug
- dev: false
+ '@pipedream/google_drive@0.6.19':
+ resolution: {integrity: sha512-+JtwPhh0mHN3z3bOeyfw6OIztPhT0cVy/r/rpB5b0TFKWVly25Wz6Zv6zug5EhzyEt6DT7dnh9CpIhlxEj7SuA==}
- /@pipedream/helpers/1.3.12:
+ '@pipedream/helper_functions@0.3.13':
+ resolution: {integrity: sha512-67zXT5rMccSYEeQCEKjO0g/U2Wnc3q1ErRWt0sivqJEF/KYqAb3tWmznDYGACbC8L6ML0WWSWRy7nEGt5Vyuaw==}
+
+ '@pipedream/helpers@1.3.12':
resolution: {integrity: sha512-k305RiFddUBtKY11V9G2aqYD8ICgarHV+A0Isxh0j3il4asnht0q4+t6ykPOb+hl5uo9UV8WY+9eAWlj6VFt6Q==}
- dependencies:
- '@pipedream/types': 0.0.5
- lodash-es: 4.17.21
- dev: false
- /@pipedream/platform/0.10.0:
+ '@pipedream/platform@0.10.0':
resolution: {integrity: sha512-N3F/xVfBZQXc9wl+2/4E8U9Zma1rxpvylK6Gtw8Ofmiwjnmnvs+2SNjEpIXBPUeL+wxEkofSGOq7bkqt1hqwDg==}
- dependencies:
- axios: 0.19.2
- fp-ts: 2.16.1
- io-ts: 2.2.20_fp-ts@2.16.1
- transitivePeerDependencies:
- - supports-color
- dev: false
- /@pipedream/platform/0.9.0:
+ '@pipedream/platform@0.9.0':
resolution: {integrity: sha512-d8gcWQi9qkjeMz/Cr/oRQ3h2LOEouxxsb3dPPCZDcAL/w0I3BywvUzr4/wmWENORilwKUZZs+wWmmj5BT0zMIQ==}
- dependencies:
- axios: 0.19.2
- fp-ts: 2.16.1
- io-ts: 2.2.20_fp-ts@2.16.1
- transitivePeerDependencies:
- - supports-color
- dev: false
- /@pipedream/platform/1.5.1:
+ '@pipedream/platform@1.5.1':
resolution: {integrity: sha512-wTDEaO0nWMJcEOebAQCEq8EkPgRrtnK/rIxbTL3ox7O92GK6mLXjEfcVw8XSh9Odlgmw+nU71nZt5zx7la7E4g==}
- dependencies:
- axios: 0.21.4
- fp-ts: 2.16.1
- io-ts: 2.2.20_fp-ts@2.16.1
- querystring: 0.2.1
- transitivePeerDependencies:
- - debug
- dev: false
- /@pipedream/platform/1.6.0:
+ '@pipedream/platform@1.6.0':
resolution: {integrity: sha512-/qP5qEdY+FD0ylBDwfqC+Uz0J9zNWQRKhvQ30M+hAB1VWTcZZkUng+Df+ZMooUqZBT7jnC8t6fk5eHkSSeHukw==}
- dependencies:
- axios: 1.6.5
- fp-ts: 2.16.1
- io-ts: 2.2.20_fp-ts@2.16.1
- querystring: 0.2.1
- transitivePeerDependencies:
- - debug
- dev: false
-
- /@pipedream/platform/1.6.1:
- resolution: {integrity: sha512-CrMADngji23PEmYI4FafY8s8fcovXaMeuhd6Y9SD9Cbii3d5CJ1TyYhy2xMp9JLjKCpGZydLaaqfXYCMixW82w==}
- dependencies:
- axios: 1.6.5
- fp-ts: 2.16.1
- io-ts: 2.2.20_fp-ts@2.16.1
- querystring: 0.2.1
- transitivePeerDependencies:
- - debug
- dev: false
- /@pipedream/platform/1.6.2:
+ '@pipedream/platform@1.6.2':
resolution: {integrity: sha512-NESkp7r0znsdvvJTvKX9xw2MKyrnByAIY/ikS/aUuZJb/A8FHVgN4ynkAf7sEz25BjziaG4+8A8w9KDq8ZK1LQ==}
- dependencies:
- axios: 1.6.5
- fp-ts: 2.16.1
- io-ts: 2.2.20_fp-ts@2.16.1
- querystring: 0.2.1
- transitivePeerDependencies:
- - debug
- dev: false
- /@pipedream/platform/1.6.4:
+ '@pipedream/platform@1.6.4':
resolution: {integrity: sha512-KHt+7ByB3SPsl5h+YINO3M5sX4zwhaH0MsoWVblpNDNOfB3WKqA9ZgGcuGk6rzyx5rfZuaE6P9v9yAaGak+Vqg==}
- dependencies:
- axios: 1.6.5
- fp-ts: 2.16.1
- io-ts: 2.2.20_fp-ts@2.16.1
- querystring: 0.2.1
- transitivePeerDependencies:
- - debug
- dev: false
- /@pipedream/platform/1.6.5:
+ '@pipedream/platform@1.6.5':
resolution: {integrity: sha512-h7afdBjRtptMKvejOhAYbhV3b+Kmy1jq7vETMBFLLnOfeXUbtbRX0sm1cdR96lbU1xw5EA5R0uaCB9l7+AUwPA==}
- dependencies:
- axios: 1.7.5
- fp-ts: 2.16.9
- io-ts: 2.2.21_fp-ts@2.16.9
- querystring: 0.2.1
- transitivePeerDependencies:
- - debug
- dev: false
- /@pipedream/platform/1.6.6:
+ '@pipedream/platform@1.6.6':
resolution: {integrity: sha512-YRkPVn3tiE3xywOO+dtrseo6eNepJrWKiPG8ejTww7KRRNzJNRIYeJyqTqLMxyG2da+wLHvVABZb+kKS6XzD+A==}
- dependencies:
- axios: 1.7.7
- fp-ts: 2.16.9
- io-ts: 2.2.21_fp-ts@2.16.9
- querystring: 0.2.1
- transitivePeerDependencies:
- - debug
- dev: false
- /@pipedream/platform/2.0.0:
+ '@pipedream/platform@2.0.0':
resolution: {integrity: sha512-D7Y02VvqLg1K1yMFZlvu6rQC1RBJXaZqq9RBTM/2JGN/CNHzHbZVlW1hcT7G5iFdw8Z3Gtzhknsi+2QwlmeL7w==}
- dependencies:
- axios: 1.6.5
- fp-ts: 2.16.1
- io-ts: 2.2.20_fp-ts@2.16.1
- querystring: 0.2.1
- transitivePeerDependencies:
- - debug
- dev: false
-
- /@pipedream/platform/3.0.0:
- resolution: {integrity: sha512-qlSJBF0Gn5RloFEPr072hSf6pRSU++Zjs0j6X9ZE2SMmfg777qYR4RQ5HkTHEELEyA948xEOqkBt3bFplpfEbw==}
- dependencies:
- axios: 1.7.5
- fp-ts: 2.16.9
- io-ts: 2.2.21_fp-ts@2.16.9
- querystring: 0.2.1
- transitivePeerDependencies:
- - debug
- dev: false
- /@pipedream/platform/3.0.1:
+ '@pipedream/platform@3.0.1':
resolution: {integrity: sha512-xja1ZHUR/DpOQZZJY39daml8q1ZMzg8wKYwYbyxVPs7MiMqneHM7Bz+Lgj/QrjbNissIKsRSGXmkXbT+Y10L0w==}
- dependencies:
- axios: 1.7.5
- fp-ts: 2.16.9
- io-ts: 2.2.21_fp-ts@2.16.9
- querystring: 0.2.1
- transitivePeerDependencies:
- - debug
- dev: false
-
- /@pipedream/platform/3.0.2:
- resolution: {integrity: sha512-q/BYGJoNXOVaRlNTDWD7Gjgkcu114gbPrxQ5KCOFbuYfqnJu8AeDGMyMvEPaGPbrWUVwgxjvOnxw4EWqce8ZNQ==}
- dependencies:
- axios: 1.7.7
- fp-ts: 2.16.9
- io-ts: 2.2.21_fp-ts@2.16.9
- querystring: 0.2.1
- transitivePeerDependencies:
- - debug
- dev: false
- /@pipedream/platform/3.0.3:
+ '@pipedream/platform@3.0.3':
resolution: {integrity: sha512-7elalas41lnT8i6EAFkqB7fT/+hkLGEQ1njS6A7CVguTrEswaIYk/seKmkfkRY7+O6qncgnXswYIKCBML9Co7w==}
- dependencies:
- axios: 1.7.7
- fp-ts: 2.16.9
- io-ts: 2.2.21_fp-ts@2.16.9
- querystring: 0.2.1
- transitivePeerDependencies:
- - debug
- dev: false
- /@pipedream/snowflake-sdk/1.0.8_asn1.js@5.4.1:
+ '@pipedream/sdk@1.0.7':
+ resolution: {integrity: sha512-ec3XowyXvy6KPxlr0/roOgv1Y2K3PQXJKYm1dc5ezewxImMon/FdHrxLOTIaqq2CGdTG/PG60EIR1Jm9LTOQlQ==}
+ engines: {node: '>=18.0.0'}
+
+ '@pipedream/snowflake-sdk@1.0.8':
resolution: {integrity: sha512-/nLCQNjlSCz71MUnOUZqWmnjZTbEX7mie91mstPspb8uDG/GvaDk/RynLGhhYfgEP5d1KWj+OPaI71hmPSxReg==}
- dependencies:
- snowflake-sdk: 1.9.0_asn1.js@5.4.1
- transitivePeerDependencies:
- - asn1.js
- - aws-crt
- - encoding
- - supports-color
- dev: false
- /@pipedream/types/0.0.5:
+ '@pipedream/types@0.0.5':
resolution: {integrity: sha512-VVQB9j+94XG/EB7fzKA1t0McQcQIPhaireePeLRTlJIN4y5W59SJjERjW4h5l7zWIfTnwpLizk3qGholyiw1Vw==}
- dependencies:
- typescript: 4.9.5
- dev: false
- /@pipedream/types/0.1.4:
+ '@pipedream/types@0.1.4':
resolution: {integrity: sha512-0Jhk9ydw9REDJKHgl2GBzpnfK1COR3rXFrmAxzUWv2X1O1RmCB/HoeRcEhkZAZ7+kUSm8Em0Di3obiv4+oVSoA==}
- dependencies:
- typescript: 4.9.5
- dev: true
- /@pipedream/types/0.1.6:
+ '@pipedream/types@0.1.6':
resolution: {integrity: sha512-JPBEJuk80yd5na+E0HlapDRQtDIJZUeoQ6IIBTHK3/Ic1aFMuT8rQDbZloydfa9aMD9iqvETiKfzEpjKV0aaxg==}
- dependencies:
- typescript: 4.9.5
- /@pipedream/types/0.3.0:
- resolution: {integrity: sha512-cG71shIBMVN9a7vCJxIiIuawwTV+brw4ZwS0QJs7cCFiQxNXQzMCUrN/Q4PjbXOzHvCuX8P3+qskYTsDQ6Uj+w==}
- dependencies:
- typescript: 5.3.3
+ '@pipedream/types@0.3.2':
+ resolution: {integrity: sha512-sX4UUdEbgCs7JkvyWPLqdtiJkGJ8ishKfo/V4CjH7AhTRuI0oStspphUJI+rj8jqp8nCviw+ba0mRGWlCk+iZQ==}
- /@pipedreamhq/platform/0.8.1:
+ '@pipedreamhq/platform@0.8.1':
resolution: {integrity: sha512-VMSEi4i5gUXfcbmmXkntTXNCu8uq02lmENh5KHW+PLUHDjX259w5BahdGdD7KWanQSJsyf2BaWXjnEMf9YVEaA==}
- dependencies:
- axios: 0.19.2
- fp-ts: 2.16.1
- io-ts: 2.2.20_fp-ts@2.16.1
- transitivePeerDependencies:
- - supports-color
- dev: false
- /@pkgjs/parseargs/0.11.0:
- resolution: {integrity: sha512-+1VkjdD0QBLPodGrJUeqarH8VAIvQODIbwh9XpP5Syisf7YoQgsJKPNFoqqLQlu+VQ/tVSshMR6loPMn8U+dPg==}
- engines: {node: '>=14'}
- requiresBuild: true
- dev: true
- optional: true
+ '@pkgr/core@0.1.1':
+ resolution: {integrity: sha512-cq8o4cWH0ibXh9VGi5P20Tu9XF/0fFXl9EUinr9QfTM7a7p0oTA4iJRCQWppXR1Pg8dSM0UCItCkPwsk9qWWYA==}
+ engines: {node: ^12.20.0 || ^14.18.0 || >=16.0.0}
- /@protobuf-ts/plugin-framework/2.9.4:
+ '@protobuf-ts/plugin-framework@2.9.4':
resolution: {integrity: sha512-9nuX1kjdMliv+Pes8dQCKyVhjKgNNfwxVHg+tx3fLXSfZZRcUHMc1PMwB9/vTvc6gBKt9QGz5ERqSqZc0++E9A==}
- dependencies:
- '@protobuf-ts/runtime': 2.9.4
- typescript: 3.9.10
- dev: false
- /@protobuf-ts/plugin/2.9.4:
+ '@protobuf-ts/plugin@2.9.4':
resolution: {integrity: sha512-Db5Laq5T3mc6ERZvhIhkj1rn57/p8gbWiCKxQWbZBBl20wMuqKoHbRw4tuD7FyXi+IkwTToaNVXymv5CY3E8Rw==}
hasBin: true
- dependencies:
- '@protobuf-ts/plugin-framework': 2.9.4
- '@protobuf-ts/protoc': 2.9.4
- '@protobuf-ts/runtime': 2.9.4
- '@protobuf-ts/runtime-rpc': 2.9.4
- typescript: 3.9.10
- dev: false
- /@protobuf-ts/protoc/2.9.4:
+ '@protobuf-ts/protoc@2.9.4':
resolution: {integrity: sha512-hQX+nOhFtrA+YdAXsXEDrLoGJqXHpgv4+BueYF0S9hy/Jq0VRTVlJS1Etmf4qlMt/WdigEes5LOd/LDzui4GIQ==}
hasBin: true
- dev: false
- /@protobuf-ts/runtime-rpc/2.9.4:
+ '@protobuf-ts/runtime-rpc@2.9.4':
resolution: {integrity: sha512-y9L9JgnZxXFqH5vD4d7j9duWvIJ7AShyBRoNKJGhu9Q27qIbchfzli66H9RvrQNIFk5ER7z1Twe059WZGqERcA==}
- dependencies:
- '@protobuf-ts/runtime': 2.9.4
- dev: false
- /@protobuf-ts/runtime/2.9.4:
+ '@protobuf-ts/runtime@2.9.4':
resolution: {integrity: sha512-vHRFWtJJB/SiogWDF0ypoKfRIZ41Kq+G9cEFj6Qm1eQaAhJ1LDFvgZ7Ja4tb3iLOQhz0PaoPnnOijF1qmEqTxg==}
- dev: false
- /@protobufjs/aspromise/1.1.2:
+ '@protobufjs/aspromise@1.1.2':
resolution: {integrity: sha512-j+gKExEuLmKwvz3OgROXtrJ2UG2x8Ch2YZUxahh+s1F2HZ+wAceUNLkvy6zKCPVRkU++ZWQrdxsUeQXmcg4uoQ==}
- dev: false
- /@protobufjs/base64/1.1.2:
+ '@protobufjs/base64@1.1.2':
resolution: {integrity: sha512-AZkcAA5vnN/v4PDqKyMR5lx7hZttPDgClv83E//FMNhR2TMcLUhfRUBHCmSl0oi9zMgDDqRUJkSxO3wm85+XLg==}
- dev: false
- /@protobufjs/codegen/2.0.4:
+ '@protobufjs/codegen@2.0.4':
resolution: {integrity: sha512-YyFaikqM5sH0ziFZCN3xDC7zeGaB/d0IUb9CATugHWbd1FRFwWwt4ld4OYMPWu5a3Xe01mGAULCdqhMlPl29Jg==}
- dev: false
- /@protobufjs/eventemitter/1.1.0:
+ '@protobufjs/eventemitter@1.1.0':
resolution: {integrity: sha512-j9ednRT81vYJ9OfVuXG6ERSTdEL1xVsNgqpkxMsbIabzSo3goCjDIveeGv5d03om39ML71RdmrGNjG5SReBP/Q==}
- dev: false
- /@protobufjs/fetch/1.1.0:
+ '@protobufjs/fetch@1.1.0':
resolution: {integrity: sha512-lljVXpqXebpsijW71PZaCYeIcE5on1w5DlQy5WH6GLbFryLUrBD4932W/E2BSpfRJWseIL4v/KPgBFxDOIdKpQ==}
- dependencies:
- '@protobufjs/aspromise': 1.1.2
- '@protobufjs/inquire': 1.1.0
- dev: false
- /@protobufjs/float/1.0.2:
+ '@protobufjs/float@1.0.2':
resolution: {integrity: sha512-Ddb+kVXlXst9d+R9PfTIxh1EdNkgoRe5tOX6t01f1lYWOvJnSPDBlG241QLzcyPdoNTsblLUdujGSE4RzrTZGQ==}
- dev: false
- /@protobufjs/inquire/1.1.0:
+ '@protobufjs/inquire@1.1.0':
resolution: {integrity: sha512-kdSefcPdruJiFMVSbn801t4vFK7KB/5gd2fYvrxhuJYg8ILrmn9SKSX2tZdV6V+ksulWqS7aXjBcRXl3wHoD9Q==}
- dev: false
- /@protobufjs/path/1.1.2:
+ '@protobufjs/path@1.1.2':
resolution: {integrity: sha512-6JOcJ5Tm08dOHAbdR3GrvP+yUUfkjG5ePsHYczMFLq3ZmMkAD98cDgcT2iA1lJ9NVwFd4tH/iSSoe44YWkltEA==}
- dev: false
- /@protobufjs/pool/1.1.0:
+ '@protobufjs/pool@1.1.0':
resolution: {integrity: sha512-0kELaGSIDBKvcgS4zkjz1PeddatrjYcmMWOlAuAPwAeccUrPHdUqo/J6LiymHHEiJT5NrF1UVwxY14f+fy4WQw==}
- dev: false
- /@protobufjs/utf8/1.1.0:
+ '@protobufjs/utf8@1.1.0':
resolution: {integrity: sha512-Vvn3zZrhQZkkBE8LSuW3em98c0FwgO4nxzv6OdSxPKJIEKY2bGbHn+mhGIPerzI4twdxaP8/0+06HBpwf345Lw==}
- dev: false
- /@puppeteer/browsers/1.9.1:
+ '@puppeteer/browsers@0.5.0':
+ resolution: {integrity: sha512-Uw6oB7VvmPRLE4iKsjuOh8zgDabhNX67dzo8U/BB0f9527qx+4eeUs+korU98OhG5C4ubg7ufBgVi63XYwS6TQ==}
+ engines: {node: '>=14.1.0'}
+ hasBin: true
+ peerDependencies:
+ typescript: '>= 4.7.4'
+ peerDependenciesMeta:
+ typescript:
+ optional: true
+
+ '@puppeteer/browsers@1.9.1':
resolution: {integrity: sha512-PuvK6xZzGhKPvlx3fpfdM2kYY3P/hB1URtK8wA7XUJ6prn6pp22zvJHu48th0SGcHL9SutbPHrFuQgfXTFobWA==}
engines: {node: '>=16.3.0'}
hasBin: true
- dependencies:
- debug: 4.3.4
- extract-zip: 2.0.1
- progress: 2.0.3
- proxy-agent: 6.3.1
- tar-fs: 3.0.4
- unbzip2-stream: 1.4.3
- yargs: 17.7.2
- transitivePeerDependencies:
- - supports-color
- dev: false
- /@putout/babel/1.2.2:
- resolution: {integrity: sha512-/gy53WNIFbITV2yEjCl6WO99emLJFeFax5bOKXT82vSGXeSQ6mjgEBXkepzaXPOEF8FI/y39lLDSAlwS5EUW+Q==}
+ '@putout/babel@2.9.0':
+ resolution: {integrity: sha512-sk0IZnadnhUtjJGPeRSPZy5+eupnMouuThk4AsObH3MovrhBfCs0VEO5wV0WYXm3Yzcvz/CcNl4vFYlV6kTnVg==}
engines: {node: '>=16'}
- dev: true
- /@putout/cli-cache/2.4.0:
- resolution: {integrity: sha512-oiU1lF/sI5KjW7NPrpzbke1vi3lUxmtRmw6Ece+YA5ZBEP7Uqo+wlrlpGPJ5eGmOvH9Lj2GgmzdZRawPL+tfCg==}
- engines: {node: '>=16'}
- dependencies:
- file-entry-cache: 7.0.0
- find-cache-dir: 5.0.0
- find-up: 6.3.0
- imurmurhash: 0.1.4
- json-stable-stringify-without-jsonify: 1.0.1
- try-to-catch: 3.0.1
- dev: true
+ '@putout/cli-cache@3.2.0':
+ resolution: {integrity: sha512-7bY2rp1DpgsSbzpbngdXDJ0Cyyrix534I4BFXZXuX6TwofI6x6IChVNZoDB82uKS5e1jrntICQp9ZNsNyladNw==}
+ engines: {node: '>=18'}
- /@putout/cli-keypress/1.0.0:
- resolution: {integrity: sha512-w+lRVGZodRM4K214R4jvyOsmCUGA3OnaYDOJ2rpXj6a+O6n91zLlkb7JYsw6I0QCNmXjpNLJSoLgzGWTue6YIg==}
- engines: {node: '>=14'}
- dependencies:
- ci-info: 3.9.0
- fullstore: 3.0.0
- dev: true
+ '@putout/cli-choose-formatter@4.0.0':
+ resolution: {integrity: sha512-GEvHT5ifDKq5QP3Z96Xz4qs8CtmgxJQzGFUX79luF2o0+KLHyP9vUIK10bRorPoLHvHNSe3AHUIynsEg5TMn/Q==}
+ engines: {node: '>=18'}
+ peerDependencies:
+ putout: '>=35'
+
+ '@putout/cli-choose@2.0.0':
+ resolution: {integrity: sha512-q9gj1cX/fKuXJjtEgQ+CsHhbiA2CGJ5TTIVZwdv32w5WKAiYfo6cIxCliZpa8ZX978X8uDDgWJ1DPgLHXc/tRg==}
+ engines: {node: '>=18'}
+
+ '@putout/cli-filesystem@2.0.1':
+ resolution: {integrity: sha512-jmNzwf7t1M4AAM6EWobSZgL281JidKhwYRw++FADzYr2x4MZ4ZQObm8B0ZNu2da2OWJ/NOcDvtNqqzVZSGPxhA==}
+ engines: {node: '>=18'}
+
+ '@putout/cli-keypress@2.0.0':
+ resolution: {integrity: sha512-EXJv2HaXM+5scjoxE6Tf+o4+pxwL1tYJZJBDMygrF7cocjirGcU05GgNr9WHOaUPaVOpVjVU98ugYD7XJLmMkw==}
+ engines: {node: '>=16'}
- /@putout/cli-match/2.2.0:
+ '@putout/cli-match@2.2.0':
resolution: {integrity: sha512-g6IqlSN34AhQ6Gk/hrJR3Mm/qJCJD1PJjRzwxxa+gDCbusKWMOfX70EymUBBV5SCPMnLWQByzXHwOPo88/uPDg==}
engines: {node: '>=16'}
- dependencies:
- try-catch: 3.0.1
- try-to-catch: 3.0.1
- dev: true
- /@putout/cli-ruler/3.1.0:
+ '@putout/cli-ruler@3.1.0':
resolution: {integrity: sha512-40LVNOrotdBWjBmi8Ee0kTtQDpje4fau8BvNdV6hsWk2gIbg6G/SrrhA/VrADVwCW1nGBkpe19f6803Zy1kUDA==}
engines: {node: '>=16'}
- dependencies:
- try-to-catch: 3.0.1
- dev: true
- /@putout/cli-staged/1.1.0:
+ '@putout/cli-staged@1.1.0':
resolution: {integrity: sha512-JJAxlNvFqOv1GhourIZfhSe+RPtWMuJxMjX9HdaEi5UmbQiOHziRZ5s0nOTriCbYtez5DpVs0mv5j6zvd3rHCA==}
engines: {node: '>=16'}
- dependencies:
- '@putout/git-status-porcelain': 3.0.0
- fullstore: 3.0.0
- once: 1.4.0
- try-to-catch: 3.0.1
- dev: true
- /@putout/cli-validate-args/1.1.1:
- resolution: {integrity: sha512-AczBS98YyvsDVxvvYjHGyIygFu3i/EJ0xsruU6MlytTuUiCFQIE/QQPDy1bcN5J2Y75BzSYncaYnVrEGcBjeeQ==}
- engines: {node: '>=14'}
- dependencies:
- fastest-levenshtein: 1.0.16
- just-kebab-case: 1.1.0
- dev: true
+ '@putout/cli-validate-args@2.0.0':
+ resolution: {integrity: sha512-/tl1XiBog6XMb1T9kalFerYU86sYsl6EtrlvGI5RVtlHOQdEEJAIPRxmX4vnKG3uoY5aVEkJOWzbPM5tsncmFQ==}
+ engines: {node: '>=18'}
- /@putout/compare/13.0.1:
- resolution: {integrity: sha512-Jeb8Ttrv54tRKv8735XIi/nYFNB7TcRYBw5B/x29jfa2Qxlqn2cgHNyP99oGTfHxgw3FYlN5Xn4XyRev4NipAw==}
- engines: {node: '>=16'}
- dependencies:
- '@putout/babel': 1.2.2
- '@putout/engine-parser': 9.3.0
- '@putout/operate': 11.0.0
- debug: 4.3.6
- jessy: 3.1.1
- nessy: 4.0.0
- transitivePeerDependencies:
- - supports-color
- dev: true
+ '@putout/compare@15.0.2':
+ resolution: {integrity: sha512-C8HYLnv0RWfwZhlE1q8pS8+dAYbymqeiWxJb+EJwpes/Hp0HC5LBA0jHz0QhqW416UwRrusbLX71l7WPCiXuzw==}
+ engines: {node: '>=18'}
- /@putout/engine-loader/12.0.0_putout@32.2.0:
- resolution: {integrity: sha512-Jzdbg+E0jxkm4Jd+k3TDSvuQfIQ0nWNPWBokwY5ch0agbgudnKAxirNmyi7dyWixtX5n8V1jw9WhVpVn5VW1Nw==}
- engines: {node: '>=16'}
+ '@putout/engine-loader@15.0.1':
+ resolution: {integrity: sha512-97D0zOtjXVvAovMalaSqeXRsAKMQJW+NipOJjQnBL6Za7GBwlEejrgEdZj2Ke/FfUfIBKc7oQ91tZEZwgwh/hg==}
+ engines: {node: '>=18'}
peerDependencies:
putout: '*'
- dependencies:
- '@putout/engine-parser': 9.3.0
- diff-match-patch: 1.0.5
- nano-memoize: 3.0.14
- once: 1.4.0
- putout: 32.2.0_typescript@5.2.2
- try-catch: 3.0.1
- try-to-catch: 3.0.1
- transitivePeerDependencies:
- - supports-color
- dev: true
- /@putout/engine-parser/5.6.0:
- resolution: {integrity: sha512-YbNsQ8LqCLq0HeBS2AwR+HX/V+VQphFALneQ8m1/glGU4ANwDQZQ34oABrflNXF4PMPlZFxke/vzTqZxcNoKWw==}
- engines: {node: '>=16'}
- dependencies:
- '@babel/generator': 7.25.0
- '@babel/parser': 7.25.3
- '@babel/template': 7.25.0
- '@babel/types': 7.25.2
- '@putout/recast': 1.13.0
- estree-to-babel: 5.2.0
- nano-memoize: 2.0.0
- once: 1.4.0
- try-catch: 3.0.1
- transitivePeerDependencies:
- - supports-color
- dev: true
+ '@putout/engine-parser@11.0.1':
+ resolution: {integrity: sha512-GXEWJV8zAS4RdaIcSbA+3bvXq2hC9JeHrAQw11Cm0dKTJ02f52BO/xS+rKrXykqw7V217TFg+lvHtcIKy40aMA==}
+ engines: {node: '>=18'}
- /@putout/engine-parser/9.3.0:
- resolution: {integrity: sha512-sH/9KR+pe6QNKqsIqlShgAOJczKKT6RObv4PqeL0nI7A8fo0T5ZodNXn+uvDjNvOlQGzbdfZpVcWgKabABS1pA==}
- engines: {node: '>=16'}
- dependencies:
- '@putout/babel': 1.2.2
- '@putout/printer': 5.20.0
- '@putout/recast': 1.13.0
- estree-to-babel: 7.0.0
- nano-memoize: 3.0.14
- once: 1.4.0
- try-catch: 3.0.1
- transitivePeerDependencies:
- - supports-color
- dev: true
+ '@putout/engine-processor@13.0.0':
+ resolution: {integrity: sha512-1HHesRQvDed7T4t4Hy7OPcWHKhwmI8ggcpFTYn3IxTYgn7kgDiRV8g9mC+85a0YNmBqRAqbgKwWzMeNen5y2+Q==}
+ engines: {node: '>=18'}
+ peerDependencies:
+ putout: '*'
- /@putout/engine-processor/10.0.0_putout@32.2.0:
- resolution: {integrity: sha512-HoBP8EDn55dOL+apEiIB64Dus7ZDgfg1HS4W9nZyGM5nAuyZeHZuJq7KyKq4Blsk5OYOdk4NJzVP94ykXM4XLA==}
- engines: {node: '>=16'}
+ '@putout/engine-reporter@3.0.0':
+ resolution: {integrity: sha512-T9CptPBujx6hEJFvRikvs1dW4i4puhbe7FpjkgJhGnz85tIdD45tstqumBOQcUF7adbLzoCkOdTbSHBV3sJJLg==}
+ engines: {node: '>=18'}
peerDependencies:
putout: '*'
- dependencies:
- '@putout/engine-loader': 12.0.0_putout@32.2.0
- once: 1.4.0
- picomatch: 2.3.1
- putout: 32.2.0_typescript@5.2.2
- try-to-catch: 3.0.1
- transitivePeerDependencies:
- - supports-color
- dev: true
- /@putout/engine-runner/19.0.2_putout@32.2.0:
- resolution: {integrity: sha512-SYoNVqDNsS7/qqtCH9IXNV65Iu61mXiihkTD99/1xC42UFHFANqhXV/QkInVFLaAfNqxYwarmGIMPTk/qur7qQ==}
- engines: {node: '>=16'}
+ '@putout/engine-runner@22.0.4':
+ resolution: {integrity: sha512-utMsmFq+h+ytfgTLcDn6KZadB0wpChc46HXIK8qP5XApJkH7m9ibqWnoxsAWjmQe+zmZPTNwUKhWFPoCxaVvkg==}
+ engines: {node: '>=18'}
peerDependencies:
putout: '*'
- dependencies:
- '@putout/babel': 1.2.2
- '@putout/compare': 13.0.1
- '@putout/engine-parser': 9.3.0
- '@putout/operate': 11.0.0
- '@putout/operator-declare': 8.0.2_putout@32.2.0
- debug: 4.3.6
- jessy: 3.1.1
- nessy: 4.0.0
- once: 1.4.0
- putout: 32.2.0_typescript@5.2.2
- try-catch: 3.0.1
- wraptile: 3.0.0
- transitivePeerDependencies:
- - supports-color
- dev: true
- /@putout/eslint-config/7.4.0_eslint@8.15.0:
- resolution: {integrity: sha512-hzpZnlVgFbLSedaehOp9XvllPdVwl+1lQV9dfrlNXY6MPjnIryvZCHqCi9vppPGVfA+6ol12+RrXTQQxw+SkOw==}
- engines: {node: '>=16'}
+ '@putout/eslint-config@9.3.0':
+ resolution: {integrity: sha512-FB+Vnhjp7I9h9fPIdtGkdfEso7oKvlgDRwFmKcdkFe7Ua7Sxk6unfKTXGTp10w666JDGv+ZiPaR6tfqyR12RIQ==}
+ engines: {node: '>=18'}
peerDependencies:
eslint: '>=8.0.0'
- dependencies:
- '@eslint/js': 8.50.0
- eslint: 8.15.0
- dev: true
- /@putout/eslint/2.4.0:
- resolution: {integrity: sha512-eZhn+ZgomdSwU7Nw/rlYsMkT/X9Uh+gyx598hMy2rU0j+3bFC8Fp+FbSUHJAbj/JH6dx27LleQ9I5vNCjcWP1g==}
- engines: {node: '>=16'}
- dependencies:
- find-up: 6.3.0
- try-to-catch: 3.0.1
- dev: true
+ '@putout/eslint@3.6.0':
+ resolution: {integrity: sha512-TpWuf804aC7ybIHrKKy1FND4QqQ6I70ls56qIgwy/2fiQNRi97JSFlDrBCKm6apLOlJcTYXGfJl/UBoHiCI5bw==}
+ engines: {node: '>=18'}
+ peerDependencies:
+ eslint: '>=8'
- /@putout/formatter-codeframe/5.0.2_putout@32.2.0:
- resolution: {integrity: sha512-wTVWSu2XQIQW5ZlU+l8WmY0vzxr3EkQmMzkcUSg1/LEYllt4MAj+ux4V35oQI4QMURl0MuXOr8enzKKtv9HEjA==}
- engines: {node: '>=16'}
+ '@putout/formatter-codeframe@7.0.0':
+ resolution: {integrity: sha512-4XxKDFnTCotdlBF7Ukd0xmAofuBZsGLvbFvjtTrCHKt4cZgO7xulV4RSx2TqREKfYa5MtwsFBBTZVH6gUxrgXg==}
+ engines: {node: '>=18'}
peerDependencies:
- putout: '>=31'
- dependencies:
- '@putout/babel': 1.2.2
- '@putout/formatter-json': 2.0.0_putout@32.2.0
- chalk: 4.1.2
- putout: 32.2.0_typescript@5.2.2
- table: 6.8.1
- dev: true
+ putout: '>=35'
- /@putout/formatter-dump/4.0.1_putout@32.2.0:
- resolution: {integrity: sha512-jTuobQDleBZzfMIq0Ckrh++g7S6DOjHfK537uqgM/BhARtW1qH/SoLZfONRxxR6Rz4nVvRH6D/nsNnh4/EO00Q==}
- engines: {node: '>=16'}
+ '@putout/formatter-dump@5.0.0':
+ resolution: {integrity: sha512-txlOnphn2pfvbkyYmKbw+zAc+T/Q01958zy0e5jR+AQcWCGyCgjBAeVMh+pUBZ7+Zyl/CAnou0zG87t7hTYA9Q==}
+ engines: {node: '>=18'}
peerDependencies:
- putout: '>=25'
- dependencies:
- '@putout/formatter-json': 2.0.0_putout@32.2.0
- chalk: 4.1.2
- putout: 32.2.0_typescript@5.2.2
- table: 6.8.1
- dev: true
+ putout: '>=35'
- /@putout/formatter-frame/4.0.0_putout@32.2.0:
- resolution: {integrity: sha512-hF6T/CpRQ2lC458Z3zNkn4floz/MvKBHNUbGVVPHcOSdIg7DU+QLsY6+sguF4aIhHvz6E4cC0HGQ04n/x1w1HA==}
- engines: {node: '>=16'}
+ '@putout/formatter-frame@6.0.0':
+ resolution: {integrity: sha512-fNnWeANLhE4GOOdOA9Who5tpPqYzzQLeONJkQ3KsgO6Zym6GYli6VGUz5Gf5d6m22DkMhbLPH+fPOfvhXW7KRw==}
+ engines: {node: '>=18'}
peerDependencies:
- putout: '>=31'
- dependencies:
- '@putout/formatter-codeframe': 5.0.2_putout@32.2.0
- putout: 32.2.0_typescript@5.2.2
- dev: true
+ putout: '>=35'
- /@putout/formatter-json-lines/3.0.0_putout@32.2.0:
+ '@putout/formatter-json-lines@3.0.0':
resolution: {integrity: sha512-Np+Zpm/FqQpjiIatTg6k8+KUq4JfnfXYcoUJ3s4wwNq+OQqc1T/b2fPkctddwTei/fsh7s7wXgcAUxu8B+J3Yw==}
engines: {node: '>=16'}
peerDependencies:
putout: '>=25'
- dependencies:
- putout: 32.2.0_typescript@5.2.2
- dev: true
- /@putout/formatter-json/2.0.0_putout@32.2.0:
+ '@putout/formatter-json@2.0.0':
resolution: {integrity: sha512-g+mpOU/s+ciQDkukKwTg5WGmQKFlfca/cpdeYQmuVFsbabkcFAVA5QWMQiGvmXx4Cg9PuJXvhYKfGB0zCcGCiw==}
engines: {node: '>=14'}
peerDependencies:
putout: '>=22.5'
- dependencies:
- putout: 32.2.0_typescript@5.2.2
- dev: true
- /@putout/formatter-memory/3.1.4_putout@32.2.0:
- resolution: {integrity: sha512-QSAQaFUIE4sew2yuUcNkxNMlBqSWAg85bag2LiI2cQsN1qDKBIaVeiopk/vgZ/CbdGqrTHZChwUQ8Q50Con3og==}
- engines: {node: '>=16'}
+ '@putout/formatter-memory@4.0.1':
+ resolution: {integrity: sha512-S3ctALHkGQRbr6zJ4kPoo7ZNBnfxXZi66XTMc/Md8k5enS0H1ATNKcwDNdA06CB0QrC5P866VX6wPRB1PHr4Mg==}
+ engines: {node: '>=18'}
peerDependencies:
- putout: '>=25'
- dependencies:
- '@putout/formatter-dump': 4.0.1_putout@32.2.0
- chalk: 4.1.2
- cli-progress: 3.12.0
- format-io: 2.0.0
- montag: 1.2.1
- once: 1.4.0
- putout: 32.2.0_typescript@5.2.2
- dev: true
+ putout: '>=35'
- /@putout/formatter-progress-bar/3.0.2_putout@32.2.0:
- resolution: {integrity: sha512-z+4ugM5/7gl4hj8yV/oGDGZbg9I4Rg/ScQBQ7EbXu2bv2zdqw28XGJDT2b0GjAlmUF/Q+h/6itdgm0F3ockn2w==}
- engines: {node: '>=16'}
+ '@putout/formatter-progress-bar@4.0.1':
+ resolution: {integrity: sha512-sqnCwTPliKb4ln8Ss8h/KVx539u4qDc7cqCjSzQda2zQO+rfBAMhOS4Km4MUnbglOVw89JM5fbQ25x2tRjFpmQ==}
+ engines: {node: '>=18'}
peerDependencies:
- putout: '>=25'
- dependencies:
- '@putout/formatter-dump': 4.0.1_putout@32.2.0
- chalk: 4.1.2
- cli-progress: 3.12.0
- once: 1.4.0
- putout: 32.2.0_typescript@5.2.2
- dev: true
+ putout: '>=35'
- /@putout/formatter-progress/4.0.0_putout@32.2.0:
- resolution: {integrity: sha512-GHCzfChQdHLqIlUngCuNVpOw8SDv9ij3b7t14mRyreWNgzOrCm+JWOOO6IcvUOiajKpwKxzb48leAypangAp3A==}
- engines: {node: '>=16'}
+ '@putout/formatter-progress@5.0.0':
+ resolution: {integrity: sha512-sOmQ1xAW/3GgYKrz8NpPI341B3L1vG9RLSzbdgQqLQQLkPWIqvewnqzpukgFMKG2XVhT04/VZyzoMH+7rM2y+w==}
+ engines: {node: '>=18'}
peerDependencies:
- putout: '>=25'
- dependencies:
- '@putout/formatter-dump': 4.0.1_putout@32.2.0
- putout: 32.2.0_typescript@5.2.2
- dev: true
+ putout: '>=35'
- /@putout/formatter-stream/4.0.1_putout@32.2.0:
- resolution: {integrity: sha512-9B+zUYHtJE15VeaZ6Zp641FG4QY7EDZ/Te+ubfTEFP0VFPSDWkwcXoVfT1mgDuz9HMdryqHccu6DswYoekbUVQ==}
- engines: {node: '>=16'}
+ '@putout/formatter-stream@5.0.0':
+ resolution: {integrity: sha512-4uS8YHf9R+T1Qo7mQqDOA/BgedS7KcA0cMGNvafzm06L9QET1RcnbcHyJPAMhjpc23r8n2QJ9q/TGpE1185I/w==}
+ engines: {node: '>=18'}
peerDependencies:
- putout: '>=25'
- dependencies:
- chalk: 4.1.2
- putout: 32.2.0_typescript@5.2.2
- table: 6.8.1
- dev: true
+ putout: '>=35'
+
+ '@putout/formatter-time@3.0.1':
+ resolution: {integrity: sha512-qxxgiinxbf9BCdz7kSKiKZ/lJtfQtU1IpOB3iHCDSVfBn7gAJ2Tk5m6Dwc5wC6Cqe+1aO1pjR/JTp9skCXKf9A==}
+ engines: {node: '>=18'}
+ peerDependencies:
+ putout: '>=35'
- /@putout/git-status-porcelain/3.0.0:
+ '@putout/git-status-porcelain@3.0.0':
resolution: {integrity: sha512-TJxXfrpZGzSf7pQ96MMBpPICtM5G9r7MAWKpH3GJi3deGII3ILLibA47P2qMeUbCmXml5wG6DTQS7OZFOrTIUQ==}
engines: {node: '>=16'}
- dev: true
- /@putout/operate/11.0.0:
- resolution: {integrity: sha512-EWG05jo0+N98TKwVTeewSYHXgomSJCr5tVDmV4pAj0ldIt0o133hQ12QCqeGLxyG41XpMmwGtFYt1KzJx5+/Og==}
- engines: {node: '>=16'}
- dependencies:
- '@putout/babel': 1.2.2
- dev: true
+ '@putout/operate@12.14.0':
+ resolution: {integrity: sha512-CEHgrD7cgOeCF2KDaQrxgsJTutIQF6g1sZYFdYjIol4ioaV5CeT0MwklCcdD1/YXEplxw5z7nX63ES+4WDifyQ==}
+ engines: {node: '>=18'}
- /@putout/operator-add-args/7.1.0_putout@32.2.0:
- resolution: {integrity: sha512-5bkcXFnOptf9+uahV7cwpa+O9HaqlgL88Rr+3YmDvfWd0I+GJRv+V5gOap7RqDsKKsaZfK+oCsCUVPFIXSbxiw==}
- engines: {node: '>=16'}
+ '@putout/operator-add-args@9.0.0':
+ resolution: {integrity: sha512-6ys9R5s1ZvnCbl6q1n+syu1O+xR4oq9LTHiACg9AfphEkrQnkQydjZPuQxcbTwbeXZCq2Yhq3JDrvDGCL0B0nw==}
+ engines: {node: '>=18'}
peerDependencies:
- putout: '>=32'
- dependencies:
- '@putout/babel': 1.2.2
- '@putout/compare': 13.0.1
- '@putout/engine-parser': 9.3.0
- putout: 32.2.0_typescript@5.2.2
- transitivePeerDependencies:
- - supports-color
- dev: true
+ putout: '>=36'
- /@putout/operator-declare/8.0.2_putout@32.2.0:
- resolution: {integrity: sha512-skygTbm1YFfxS7LRimcOdFtYCKryWht9A31e2d85rbNaLlWVg3twXuhGQ07RhorhaxRkJVtxVCtI6W1sqxRXRg==}
- engines: {node: '>=16'}
+ '@putout/operator-declare@10.0.1':
+ resolution: {integrity: sha512-LocyFdCCMdfwIMZVnIOJHwTUIcJ8PT3irgVuXWXyxw4ShFhX29/sgZ6tdUWL2TRvJU3u4u4cYTOHBbryFrJHMQ==}
+ engines: {node: '>=18'}
peerDependencies:
- putout: '>=32'
- dependencies:
- '@putout/babel': 1.2.2
- '@putout/compare': 13.0.1
- '@putout/engine-parser': 9.3.0
- '@putout/operate': 11.0.0
- putout: 32.2.0_typescript@5.2.2
- transitivePeerDependencies:
- - supports-color
- dev: true
+ putout: '>=36'
+
+ '@putout/operator-filesystem@5.0.0':
+ resolution: {integrity: sha512-8BN0VdM8im1fLCNwF4ZNtjC9jWXMEzKlsVfb78HZbtySnu3GAITh/XkDEX+iGMS5lc3g3203n+f7kjHgzwNRsg==}
+ engines: {node: '>=18'}
+ peerDependencies:
+ putout: '>=36'
+
+ '@putout/operator-ignore@1.2.0':
+ resolution: {integrity: sha512-/IAWCx/lMBl9u5YlCDlDPuTRsLXGarMR+ytS23ccM9kH69UIsJ6KbI1UVSDjHpW/nALs4P7u+6g4pk7TINQp6g==}
+ engines: {node: '>=18'}
+
+ '@putout/operator-json@2.2.0':
+ resolution: {integrity: sha512-yPY+Cc9FzUXfYzlhR+qhyu/KdD3qd5NwQnjGZfgJxYAPvZAFSgBYEQ8LRXZ1/8vLAGDc3Lytu3zL5TU7xJS9bA==}
+ engines: {node: '>=18'}
+
+ '@putout/operator-match-files@5.0.0':
+ resolution: {integrity: sha512-CTCtZlJUduqaPkRUjVKMbAa3zeFHBHt1HyIg/gfOq7Yk7tti1fnTFtDIdtjrYk7nviu0jJrmxWJP3AKUMfsabA==}
+ engines: {node: '>=18'}
+ peerDependencies:
+ putout: '>=36'
- /@putout/operator-regexp/1.0.0_putout@32.2.0:
+ '@putout/operator-regexp@1.0.0':
resolution: {integrity: sha512-ts9QqsrpPCcXH9uao8ZjgxjvhdhaT7rZYy0JDKkfv0tptC55LEN8b9/0G4ZfVTm39C+7V+WFrDR0bDccyPd0yw==}
engines: {node: '>=14'}
peerDependencies:
putout: '>=20'
- dependencies:
- putout: 32.2.0_typescript@5.2.2
- regexp-tree: 0.1.27
- dev: true
- /@putout/plugin-apply-at/2.0.0_putout@32.2.0:
+ '@putout/operator-rename-files@2.0.0':
+ resolution: {integrity: sha512-CM/C9xgm3nW5y/UZGv8BW8QW/48LPTfjpZpaa33tAy1TOZ1FetOslpMfSFaJSF34OCW35HuUyCNioYoNsxH8YA==}
+ engines: {node: '>=18'}
+ peerDependencies:
+ putout: '>=36'
+
+ '@putout/plugin-apply-at@2.0.0':
resolution: {integrity: sha512-wIQz42w+d+CugaLdNbksGAdL1CxfpHFb7Yr2bn2bqi+jI6Dr6AlrbvpN9irE1dcAY+5hbVmSfe8euix0trkR3w==}
engines: {node: '>=16'}
peerDependencies:
putout: '>=32'
- dependencies:
- putout: 32.2.0_typescript@5.2.2
- dev: true
- /@putout/plugin-apply-destructuring/7.1.0_putout@32.2.0:
+ '@putout/plugin-apply-destructuring@7.1.0':
resolution: {integrity: sha512-b0VupXH7wPL94ks2wQzPVIf0PquL69a3c1AdpM8HjUiEeeBaIZG3BahPW3Vi4+88g6xWLPChtPOBOkLGg9VWkw==}
engines: {node: '>=16'}
peerDependencies:
putout: '>=29'
- dependencies:
- putout: 32.2.0_typescript@5.2.2
- dev: true
- /@putout/plugin-apply-early-return/3.0.0_putout@32.2.0:
+ '@putout/plugin-apply-dot-notation@2.0.0':
+ resolution: {integrity: sha512-Bo7MqwyFzH5FisSGsOP0rWjcebziKoaJkQhQXug27EmdCkEuuhacHgjv4k4j3E9/VuZMcJdsSM92i+vX2kR3Ag==}
+ engines: {node: '>=18'}
+ peerDependencies:
+ putout: '>=35'
+
+ '@putout/plugin-apply-early-return@3.0.0':
resolution: {integrity: sha512-LAixktLtQaEc7r2fwYuKpnsQ93GYK8/nsKa6AEMeuzxlTRc278D/eEs8P8m6ef5fSyjhQy+S1fYI0nfG+Kr/MA==}
engines: {node: '>=16'}
peerDependencies:
putout: '>=29'
- dependencies:
- putout: 32.2.0_typescript@5.2.2
- dev: true
- /@putout/plugin-apply-flat-map/2.0.0_putout@32.2.0:
+ '@putout/plugin-apply-flat-map@2.0.0':
resolution: {integrity: sha512-TH+Al9LJqKZeyrh1Yg2/lwmIXdpZx6yINTf6vtCa1cdd5ebCAe6hGbU7VttZMcQzFCWZwqJX2BCPKtSr+4RAwA==}
engines: {node: '>=16'}
peerDependencies:
putout: '>=28'
- dependencies:
- putout: 32.2.0_typescript@5.2.2
- dev: true
- /@putout/plugin-apply-optional-chaining/5.0.1_putout@32.2.0:
- resolution: {integrity: sha512-xnbErQDSlb6FfeLI+OoyWEpIs8vnRS8qs0OUHvKYcqYWt+6PIZi+peKT6wbeAgXOOgmuYoaYdhcRyQDI72W3tw==}
- engines: {node: '>=16'}
+ '@putout/plugin-apply-optional-chaining@6.0.0':
+ resolution: {integrity: sha512-+9h/L9gNLEoa9ELXrGiuF/JWxq1e8Sk3z4VzD585K2nKxSmjCWJCdqtCO0LTHzv8j8AZCpfIAZavXvAyn0P/OQ==}
+ engines: {node: '>=18'}
peerDependencies:
- putout: '>=32'
- dependencies:
- putout: 32.2.0_typescript@5.2.2
- dev: true
+ putout: '>=35'
+
+ '@putout/plugin-apply-overrides@2.1.0':
+ resolution: {integrity: sha512-uu/G5rJufqWj+qhaDBL0+NFejVrwb/JVdB//8jW74I3sLcYDKiTDU5z2+hNWMCE8ORae+gr6PCWJfiEC9v2ROw==}
+ engines: {node: '>=18'}
+ peerDependencies:
+ putout: '>=36'
- /@putout/plugin-apply-starts-with/1.1.0_putout@32.2.0:
+ '@putout/plugin-apply-starts-with@1.1.0':
resolution: {integrity: sha512-DZrZyMslqpBiRtONNZXUXR1eeJwz57Arb+b4luWkgyIpaYJdMOU0umfzvEfbnMY7TT+LWKxKSpZx4AV3HIDZPw==}
engines: {node: '>=16'}
peerDependencies:
putout: '>=30'
- dependencies:
- putout: 32.2.0_typescript@5.2.2
- dev: true
- /@putout/plugin-apply-template-literals/2.2.0_putout@32.2.0:
- resolution: {integrity: sha512-XRfLQTRYLB3PBHLd+m3bmY5Eo252obFHCj/bKOxzfmp9KgAkJkx+9ISxBEW9A2BWEsFGvBipFcsSyCY5evQonQ==}
+ '@putout/plugin-apply-template-literals@3.0.0':
+ resolution: {integrity: sha512-U5APqEN3PIhK/xEUReCz0UrhXftaa/9i7GQYh8kRcd9reD4HaLys1S6+wyUBKljNSev2LqMW2lUzO2JWKGLywA==}
+ engines: {node: '>=18'}
+ peerDependencies:
+ putout: '>=35'
+
+ '@putout/plugin-browserlist@2.0.0':
+ resolution: {integrity: sha512-1wo8BQZuO7lrlQCR9HTG6OeUrHrC46iPlc5vPVewvHVK/ghfxprAHq/SpuUbwGU71rFPFTS/SoOfJ/OxCa5fxA==}
+ engines: {node: '>=16'}
+ peerDependencies:
+ putout: '>=33'
+
+ '@putout/plugin-conditions@5.0.0':
+ resolution: {integrity: sha512-joqYYlN3dskMfxaon5Y/nNiR/H7/v8ZUZZ7groe9GrNCzi/DRVYhBNY2P9eoNJQNqiHY9ub8GIx8oKOo3kObQg==}
+ engines: {node: '>=16'}
+ peerDependencies:
+ putout: '>=36'
+
+ '@putout/plugin-convert-apply-to-spread@4.0.0':
+ resolution: {integrity: sha512-AHjlnPoEuYza/m5fOU/wRdSpsTggT2bI1Vo4g5A7NL/WXkA4IhRbbtw+uI4il8EOpzcZUmMOve/+O0kRfc6VXA==}
engines: {node: '>=16'}
peerDependencies:
putout: '>=29'
- dependencies:
- putout: 32.2.0_typescript@5.2.2
- dev: true
- /@putout/plugin-browserlist/1.0.1_putout@32.2.0:
- resolution: {integrity: sha512-MYnYSVmr6jhwP+ZlZlcqSspfjRbpg83faE+f+2z2VP7SpuYpWWK60moGnhEl/RylBBQzUP9zjKOrtA2Io+Xfgw==}
- engines: {node: '>=12'}
+ '@putout/plugin-convert-arguments-to-rest@3.1.0':
+ resolution: {integrity: sha512-DkjkCIc2ecbqvc8yhKWLDx2bGlNq5RMRlTfYd++nXi2iRnf5SyqcBfmr3/u/7BGoaoTN4QpDwPx9hyZXnK/PLw==}
+ engines: {node: '>=18'}
peerDependencies:
- putout: '>=11'
- dependencies:
- putout: 32.2.0_typescript@5.2.2
- dev: true
+ putout: '>=36'
- /@putout/plugin-conditions/3.0.1_putout@32.2.0:
- resolution: {integrity: sha512-BcefGV0hI2k/3I/jrzNbywOfAdwTytCuhYOf5agOrpX+2HcfW821EJBwVnqaCxZVxQkMA3Xuz3tTbDa+ktNf4g==}
+ '@putout/plugin-convert-array-copy-to-slice@3.0.0':
+ resolution: {integrity: sha512-rmUhado8IydOc+amBzBLiQ7j39TadIrDwyaEZmAcLG1LrQNQ8LGssvnKqE0EqRBy3t/D3y3r4PKKR2sklqz7+A==}
engines: {node: '>=16'}
peerDependencies:
- putout: '>=32'
- dependencies:
- putout: 32.2.0_typescript@5.2.2
- dev: true
+ putout: '>=29'
- /@putout/plugin-convert-apply-to-spread/4.0.0_putout@32.2.0:
- resolution: {integrity: sha512-AHjlnPoEuYza/m5fOU/wRdSpsTggT2bI1Vo4g5A7NL/WXkA4IhRbbtw+uI4il8EOpzcZUmMOve/+O0kRfc6VXA==}
+ '@putout/plugin-convert-assignment-to-arrow-function@1.2.0':
+ resolution: {integrity: sha512-zLYy4hUDPx3CXw5OxWR0Opy8qQJ31W/VO6WLsbCz3NYVgjydoMuQM3UxIL2LuLkd2yEtTOW8bjudLX7a+sUcJg==}
+ engines: {node: '>=14'}
+ peerDependencies:
+ putout: '>=15'
+
+ '@putout/plugin-convert-assignment-to-comparison@2.0.0':
+ resolution: {integrity: sha512-8V9iefPoCugiJiyRM6+diwNLw0QuPEUBF/wyWgadNt26t5y4pUQIHyl+6zz+WkRc5ZxhkOcGMODXIhObb+CuSA==}
engines: {node: '>=16'}
peerDependencies:
putout: '>=29'
- dependencies:
- putout: 32.2.0_typescript@5.2.2
- dev: true
- /@putout/plugin-convert-arguments-to-rest/2.0.0_putout@32.2.0:
- resolution: {integrity: sha512-N9DBYe2/69RPcODQkrcFZPvxcP72mR/2HHr1Gjde2yGnrziUqjw7GLwmke9RSkr+M/sVUTcB6wDXKko84YSRtw==}
+ '@putout/plugin-convert-assignment-to-declaration@1.0.1':
+ resolution: {integrity: sha512-Wy2SphR27qZdnwFc8iaroOIL8xk4LG0bifyAxXqbP0Ggk/kLzJe7Ht7ExYzDOmKw4pm96hUoP9JSIRzskafgrA==}
+ engines: {node: '>=16'}
+ peerDependencies:
+ putout: '>=35'
+
+ '@putout/plugin-convert-concat-to-flat@1.0.0':
+ resolution: {integrity: sha512-5vpw+xZ+00xQW6Ql9Ku6MrARV/EPq1KrTAHYYaBTLyMZcpNaM3L+LYJ08/Cc1/mm64ufBa3LTaFJtr9PrzmuHA==}
+ engines: {node: '>=14'}
+ peerDependencies:
+ putout: '>=16'
+
+ '@putout/plugin-convert-const-to-let@3.0.0':
+ resolution: {integrity: sha512-/I8LBeMav8WQlR1MGXbuqq3BZxsX/3SGEk4p40ozvmoQmq5aHz8Hez9Nh9WyTcdIaps9D2FZx26Ot/uSvasC3A==}
+ engines: {node: '>=18'}
+ peerDependencies:
+ putout: '>=36'
+
+ '@putout/plugin-convert-index-of-to-includes@2.0.1':
+ resolution: {integrity: sha512-l8OA1+5hzviySeGTYsKZFBLALIye0at/ewRnvXQI5bH3s2De7d8OdMn5x7wdHwTph1NyrCwo4sLHlQX6E/fG7g==}
engines: {node: '>=16'}
peerDependencies:
putout: '>=29'
+
+ '@putout/plugin-convert-object-assign-to-merge-spread@6.0.0':
+ resolution: {integrity: sha512-EdEgVRhIXZq6bV0WVcUwz0Zm72eEeWrWcccuKYnmUgJ20rL0LpUmxdVuTvDEzDsX4WjQXku32ACfAn/nUEfwiA==}
+ engines: {node: '>=16'}
+ peerDependencies:
+ putout: '>=25'
+
+ '@putout/plugin-convert-object-entries-to-array-entries@3.0.1':
+ resolution: {integrity: sha512-Pam9J1cgmvkCgmKo68D6chA1//oI1IWWblVb/C0/l38eJdOzvuB3Izg9YDguNzJrP/y1ELTg5nB4pLp4nzz15w==}
+ engines: {node: '>=16'}
+ peerDependencies:
+ putout: '>=31'
+
+ '@putout/plugin-convert-optional-to-logical@4.0.0':
+ resolution: {integrity: sha512-JsyKKafPH95ZzA2TTizY20vp1JdpnjByQM4ZvWycE9yeUVtRHflXieOjW9StUdz1ePrPn8ghLwebSSCGmaMFng==}
+ engines: {node: '>=16'}
+ peerDependencies:
+ putout: '>=36'
+
+ '@putout/plugin-convert-quotes-to-backticks@3.0.0':
+ resolution: {integrity: sha512-V8LdAwF7HSVB+bZIgk1JMK+zF+dBDU88EPXdrA1nEeFqMFtLWbJmsYiVHQgg1Msp4MVCkZY1haAAggVuws5Uog==}
+ engines: {node: '>=16'}
+ peerDependencies:
+ putout: '>=33'
+
+ '@putout/plugin-convert-template-to-string@2.0.0':
+ resolution: {integrity: sha512-+qlmSL5Clg51KFI+o9oQfeQxKkKsx9c2JuPjLsuejCn8rp9wFLh9f/7SzoL7PNaBwrG0atcQUlqN0a3W/aXU3A==}
+ engines: {node: '>=18'}
+ peerDependencies:
+ putout: '>=35'
+
+ '@putout/plugin-convert-to-arrow-function@4.0.0':
+ resolution: {integrity: sha512-oE+jmjjrSxD9BtLEiHnqW0UA7wXPzNrt46iNbrGRT6EkoKcJogp1BedP6bMlvdJUsHZu/Lx1Ib1unPQ7dWk+Tg==}
+ engines: {node: '>=16'}
+ peerDependencies:
+ putout: '>=29'
+
+ '@putout/plugin-coverage@1.0.0':
+ resolution: {integrity: sha512-YX44zFIuSgWWxAVc0/uqKbqJDUBthya1QC/ov6H0GRX1vKVkqhCwcUzJ3i9DDyGLrzfhOGfzFagtZys9wRPx2Q==}
+ engines: {node: '>=18'}
+ peerDependencies:
+ putout: '>=35'
+
+ '@putout/plugin-declare-before-reference@4.0.0':
+ resolution: {integrity: sha512-F44TRsfGVkMO+iP7ETdnJeJa43opmHk8njhGQI06GDNiSx9oKasrjcXjOaAuuhoP3nbkZqmMTQ301CPcBmkV1g==}
+ engines: {node: '>=16'}
+ peerDependencies:
+ putout: '>=35'
+
+ '@putout/plugin-declare-imports-first@2.1.0':
+ resolution: {integrity: sha512-0L9XQ7wM09hOrokLm3IJhh300MkgIa+5XGbJ0JgHKtgY5zhk6hdEtcGefbzhRLbc0oiXFfEsad14z0nSbdvv4A==}
+ engines: {node: '>=16'}
+ peerDependencies:
+ putout: '>=27'
+
+ '@putout/plugin-declare@4.0.0':
+ resolution: {integrity: sha512-t5PQ/BsUvSbEBEQQBgQ6Lyg8MVFzDgl7P3ycv6GGaJ4C6dmGOwa2qePxvnQ2Bgqa6ZXPfj9wsCraofXfjIH7tg==}
+ engines: {node: '>=18'}
+ peerDependencies:
+ putout: '>=35'
+
+ '@putout/plugin-eslint@9.1.0':
+ resolution: {integrity: sha512-eC5WZQVbtUxmH4uExCppbt/drhQghhnS7lQ0zrsmmVoOw6SqWnojJsqu7aLobGy436LrVB81dbJKHIa7JG/Ypw==}
+ engines: {node: '>=18'}
+ peerDependencies:
+ putout: '>=36'
+
+ '@putout/plugin-extract-object-properties@9.0.0':
+ resolution: {integrity: sha512-26RafMuaxdjJS9Y9TJC+uyxYU9VyprdQtpcL5xHbUA66DurUbY+7Gg3yxGfs2dNd+czd3gRB2TQ/3x9MSuFmjw==}
+ engines: {node: '>=16'}
+ peerDependencies:
+ putout: '>=29'
+
+ '@putout/plugin-extract-sequence-expressions@3.5.0':
+ resolution: {integrity: sha512-ywDbX0CpgweJrT7xiakwb2IEjzjQL4tdMXrBuW6OjVzOs6mNcuaFEHGMXnzFuNNCYOWpoUwr2oHdim++8QVuwg==}
+ engines: {node: '>=16'}
+ peerDependencies:
+ putout: '>=25'
+
+ '@putout/plugin-filesystem@6.0.0':
+ resolution: {integrity: sha512-iFixWo9luG46ZEifV1f7CE4t6K3MHYaKF47CY0xjhj/W+d5i/D/UqOMLQpV+xEc+ERzN5a36v20bDnixwo7nQA==}
+ engines: {node: '>=18'}
+ peerDependencies:
+ putout: '>=36'
+
+ '@putout/plugin-for-of@6.1.1':
+ resolution: {integrity: sha512-ms8pJ0et3c2Hka8BuDHcw7cMokUP6z3vDWFlZppy5dYFitRXiJV8Jg1n9nfYNDnQ3wAVQmtxR1i8F1zl1/cgWA==}
+ engines: {node: '>=18'}
+ peerDependencies:
+ putout: '>=35'
+
+ '@putout/plugin-generators@1.0.0':
+ resolution: {integrity: sha512-5rETQ4xphQ3pH20AtoW9hn/jmTsVMS/8Sw0Uz0sa2cmSBRx/Nl9777ltrRx+dFZ1jj0f59uCT9mnHIe31Th44w==}
+ engines: {node: '>=18'}
+ peerDependencies:
+ putout: '>=35'
+
+ '@putout/plugin-github@13.0.0':
+ resolution: {integrity: sha512-/in04gzsE9X/a38DjeylNWgHpgMbrN+w5uFCOsgUCL3YC2Uc1Zw1sLDSuo0qdHwAiWWnkRxPFa6W1L7r+EwDYg==}
+ engines: {node: '>=18'}
+ peerDependencies:
+ putout: '>=36'
+
+ '@putout/plugin-gitignore@6.0.0':
+ resolution: {integrity: sha512-uiAfT/shB+gsAAdy1I2UBFt005W//wgadEnXIRvwSBiA77u/VkxMJdPO7st2J6bBLTn/4tIh1WAeSuAEGC63QQ==}
+ engines: {node: '>=18'}
+ peerDependencies:
+ putout: '>=35'
+
+ '@putout/plugin-group-imports-by-source@2.0.0':
+ resolution: {integrity: sha512-aby3J00gso6vEWCzJsTdMb/vuV2GdkN1nNNdBvHj/EnS5Yllu4GH/bbTRDb9WxUbfF/rTl8XYRRVwTv9RVPpCw==}
+ engines: {node: '>=18'}
+ peerDependencies:
+ putout: '>=36'
+
+ '@putout/plugin-labels@1.0.0':
+ resolution: {integrity: sha512-kQ0R2cfmv+IiWUTZnCLZxmmxss5HiUPk6WA5lJTjbKMgRMUt6w3aZeeD23nbqqL8BXpT/OkQ242tmY7EXRCM7A==}
+ engines: {node: '>=18'}
+ peerDependencies:
+ putout: '>=36'
+
+ '@putout/plugin-logical-expressions@6.0.0':
+ resolution: {integrity: sha512-MSGeKSqELMTq+skt9zGACqlQh4SZj1Tkrxm3vn/37KaSOt4f31X7kRpkN6BNZels9wmenZ6Bpb9mY61RXFNwcA==}
+ engines: {node: '>=16'}
+ peerDependencies:
+ putout: '>=35'
+
+ '@putout/plugin-madrun@19.0.0':
+ resolution: {integrity: sha512-zz6lxOYVCSsPNc4rJOAyWs1JCPstFlUXG/+HSJl495sg1SU5S5kCKviT7na0wZH8/YPBvUleltXycU3RvB6soA==}
+ engines: {node: '>=18'}
+ peerDependencies:
+ putout: '>=36'
+
+ '@putout/plugin-math@2.1.0':
+ resolution: {integrity: sha512-HWx6Zv8cAr5fglBNqlaQyQ/CZApxSgM36aJFUTPzcTihgvLUBWkh5P+JrKE+tl0fIqFssRu0XtUUuRkOlrbouw==}
+ engines: {node: '>=16'}
+ peerDependencies:
+ putout: '>=29'
+
+ '@putout/plugin-maybe@2.0.1':
+ resolution: {integrity: sha512-kIYRPXnYdLmWeFPy7ayiOHFMyb2N8IviZdlfHC6gihyynw2yCCXDXNr6l/gPMa85+zcLG9usn3B8iFQ3c5GB5g==}
+ engines: {node: '>=16'}
+ peerDependencies:
+ putout: '>=32'
+
+ '@putout/plugin-merge-destructuring-properties@10.0.0':
+ resolution: {integrity: sha512-PgM2vFAE9LvXneL0mBrcfDJRsm4xq8Aj5QmC5kTFBxQ1yqXjjEB/co2UwoMJcqLyUbX78X+814mj1To+RDHKHA==}
+ engines: {node: '>=18'}
+ peerDependencies:
+ putout: '>=36'
+
+ '@putout/plugin-merge-duplicate-functions@2.0.0':
+ resolution: {integrity: sha512-FhhyFksBVRR7RfOUWrFgH+j7NvbRkWrKs1mKDWR7TzPbAs2STWmR45j6UeYoItbujWBo0Udk7UxhdUwR6ymRdw==}
+ engines: {node: '>=16'}
+ peerDependencies:
+ putout: '>=32'
+
+ '@putout/plugin-merge-duplicate-imports@11.0.0':
+ resolution: {integrity: sha512-pxG+dr1G+lLe3l0s8Ds7eKSX7/RXeNuCF+Egd/efV2MSdSkghWykkdmteI4q3m9tL2xRKmYQbLIgwTCivP4msw==}
+ engines: {node: '>=18'}
+ peerDependencies:
+ putout: '>=34'
+
+ '@putout/plugin-montag@2.0.0':
+ resolution: {integrity: sha512-e0l8ZlxXbn+5Y+hmcrou0ubU3dBou2hDivSHRjL8RQdRlbS/miPVioe2UI5yiK4ogFavFnbd3GgGHkwQmcyd3g==}
+ engines: {node: '>=16'}
+ peerDependencies:
+ putout: '>=29'
+
+ '@putout/plugin-new@3.0.1':
+ resolution: {integrity: sha512-DXlkD30gfjd28Ef0Gs/sPjJTFFIaxXUygK7t6xb1xUeIqWlrqev9lPEkjHiV0dD+iPNEtswaiwCd2javrym+TQ==}
+ engines: {node: '>=16'}
+ peerDependencies:
+ putout: '>=33'
+
+ '@putout/plugin-nodejs@12.0.1':
+ resolution: {integrity: sha512-UmeAPXr2txeA0AsdxzNGLINJK46vWmeRlxVbTpbyJ/4qsJ6Gs7pCWteZSgbKqvqxBKSAOkRZwRahBI5W76qGSA==}
+ engines: {node: '>=18.6'}
+ peerDependencies:
+ putout: '>=36'
+
+ '@putout/plugin-npmignore@5.0.0':
+ resolution: {integrity: sha512-k43d+6dCW9tiueQjyq1+h6GAcXuB79VJzBXE8sME5IPk31HVUlYfhWKHB5IaG1DT9F4+BVuyvZbIXYXdeLK+hg==}
+ engines: {node: '>=18'}
+ peerDependencies:
+ putout: '>=35'
+
+ '@putout/plugin-package-json@8.3.0':
+ resolution: {integrity: sha512-tnz9vlOdU28YtIbuAhTSh6AgDxhVOLiRDCN2VQtHEJIBtN+dExb9YaUuE7oB5au5wpCXilpdPwYnWDwUjzCbHA==}
+ engines: {node: '>=18'}
+ peerDependencies:
+ putout: '>=36'
+
+ '@putout/plugin-promises@15.2.0':
+ resolution: {integrity: sha512-KaqD5/GsR4TFcNAC787lAuSAAPh7hM3dm1Y34kDk+HG7CJ4gCqiJEe7ojXG/jHEvJfZQs5BD2NcD3/7YwtCo1A==}
+ engines: {node: '>=18'}
+ peerDependencies:
+ putout: '>=35'
+
+ '@putout/plugin-putout-config@6.9.3':
+ resolution: {integrity: sha512-/jImoMGZbeHnM37p9SQkHfq3vTxwM3Yzg8I/MPibDcD3dt+368R24fhYnqxCfe0Yfd4fZC1VNkVox0/nkcwwAA==}
+ engines: {node: '>=18'}
+ peerDependencies:
+ putout: '>=36'
+
+ '@putout/plugin-putout@21.4.0':
+ resolution: {integrity: sha512-C2I06vpmRGQmvQuDf9V/RyT8UfuIIUIXMlSEk8sar7NxU3rkYoZm4ZiFm3nkldixiKfJrEUZVW0/rZeNMtpBEQ==}
+ engines: {node: '>=18'}
+ peerDependencies:
+ putout: '>=36'
+
+ '@putout/plugin-regexp@9.0.0':
+ resolution: {integrity: sha512-dH1eKO7mobHb6JTFmOzKfEuDNqbocWaAZmxcwu8t7b58dwi73gq6SmXhVf3ZzBDDU56IGcUKb4nvDlZC4xIXIQ==}
+ engines: {node: '>=18'}
+ peerDependencies:
+ putout: '>=35'
+
+ '@putout/plugin-remove-console@6.0.0':
+ resolution: {integrity: sha512-MpnIc0JmB7z3VMcqJnBdzkg2NTOorLb6WKpt3PWlSh8HZ1lqz78CRW7styHYTtSg5fcp/zkPUk4nkbxMPuoOiw==}
+ engines: {node: '>=16'}
+ peerDependencies:
+ putout: '>=29'
+
+ '@putout/plugin-remove-constant-conditions@4.0.2':
+ resolution: {integrity: sha512-UN+SlFVkSFbKjA9aw9WT32SaKnfeBo+TX0fqDu/dAyoe7gp8GAXRnDr/Yw02kRkDHmAYEcoKd1EGpRhhWHX1Gg==}
+ engines: {node: '>=16'}
+ peerDependencies:
+ putout: '>=25'
+
+ '@putout/plugin-remove-debugger@7.0.0':
+ resolution: {integrity: sha512-dFjtdP1r6RITDZMb6JG4ddQo0K5p2pX3mL09VByCWy0LXDHZIGkbEqn5Q4C1ydkRy7iH8+qug3wRWnsI8Z7txA==}
+ engines: {node: '>=18'}
+ peerDependencies:
+ putout: '>=35'
+
+ '@putout/plugin-remove-duplicate-case@3.0.0':
+ resolution: {integrity: sha512-NLj45ob0RDk///SNTo3h+rJGbK3l22RkkRih2e7xg7ky6fKMtBCuMk0IYI8/mNNDR0Xm6UKwvBC9nFzqp9stTw==}
+ engines: {node: '>=16'}
+ peerDependencies:
+ putout: '>=30'
+
+ '@putout/plugin-remove-duplicate-keys@6.0.0':
+ resolution: {integrity: sha512-NqyBdvCdyRNoKvxfqtI978PT8XA3Es+gW0ySoZkWNXozOUbolUO3LvcFshL54Ulmu/Ogzp/h6pF9jE0dBuds+Q==}
+ engines: {node: '>=18'}
+ peerDependencies:
+ putout: '>=36'
+
+ '@putout/plugin-remove-empty@12.1.0':
+ resolution: {integrity: sha512-kUgGzVBKKe8mR1bQUtUjVzTIdlh9j7KlZtMKCx7Yt2uZNbwQnscbuVlEYQfc7YyqGnWops64Si2YyELoEwil/A==}
+ engines: {node: '>=18'}
+ peerDependencies:
+ putout: '>=35'
+
+ '@putout/plugin-remove-iife@4.1.0':
+ resolution: {integrity: sha512-sprRQalN9BRJ28iz2LPhnz4bM6qjwlnRZoHZY7+a4Grqp/mFeKcnvfWsL/EUaeykHCnSk/tC6umLlCbme/I8OA==}
+ engines: {node: '>=16'}
+ peerDependencies:
+ putout: '>=29'
+
+ '@putout/plugin-remove-nested-blocks@6.3.0':
+ resolution: {integrity: sha512-H4acUrKSuqHAWLeIZNZ37LLqHDFrncdu2NxArBLkjZXSYl1e4LCVJbEmfjtk3gqsBax2bQO32H+ir/FOHQRgdw==}
+ engines: {node: '>=16'}
+ peerDependencies:
+ putout: '>=25'
+
+ '@putout/plugin-remove-quotes-from-import-assertions@1.0.0':
+ resolution: {integrity: sha512-jV5vwffYOTHdXCZ9VWkV76dcgOuppV6xkz41SYYD6WhAARTeypqJY0El+qQnr8F1kWiS+aKC/X/IWgvT+s/2Aw==}
+ engines: {node: '>=16'}
+ peerDependencies:
+ putout: '>=29'
+
+ '@putout/plugin-remove-unreachable-code@1.2.0':
+ resolution: {integrity: sha512-3UkXYoeXVeSfcTrHENsRhbmsh4oxUgIpsAkFn7knKmi/WCVH7n0jQXUX+RRziX4E0sgs79mFodnMhQWtqMFXZg==}
+ engines: {node: '>=8.3.0'}
+ peerDependencies:
+ putout: '>=4.31'
+
+ '@putout/plugin-remove-unreferenced-variables@4.0.0':
+ resolution: {integrity: sha512-tnnz/WTcxFg5pAt7VC5X0rNavkMKpCAPLjv1sF6b66KjB1sotr7V3QE0a4vqo2SwVriPH3/MeH1/AftcT58Cxg==}
+ engines: {node: '>=18'}
+ peerDependencies:
+ putout: '>=35'
+
+ '@putout/plugin-remove-unused-expressions@9.0.0':
+ resolution: {integrity: sha512-vw8SVtr9E8c7sjuf6akAwhRYjxKIJt2K9qgUPaN5KtwGWwly0Q2h7Vuthf0ms/0YusEIfOhu4sjN2lqWYTsQfQ==}
+ engines: {node: '>=18'}
+ peerDependencies:
+ putout: '>=35'
+
+ '@putout/plugin-remove-unused-for-of-variables@3.0.1':
+ resolution: {integrity: sha512-nFsBnRYdvSEBvOmKOzqMaWSlimX6K6jLl3HRX0KlfyJI/EOQYqjqPBvTRq3XS0resZw4LZ2cSPduL/dYuR1juw==}
+ engines: {node: '>=16'}
+ peerDependencies:
+ putout: '>=25'
+
+ '@putout/plugin-remove-unused-labels@1.0.2':
+ resolution: {integrity: sha512-cDyMWovbcPclTOJh9ZM0BTw4KyQndrzKwtOKNG1dhfStLWZrux95VgO6hFwdYM8yPGj3RsA3mJLn3W26+DwJJg==}
+ engines: {node: '>=18'}
+ peerDependencies:
+ putout: '>=36'
+
+ '@putout/plugin-remove-unused-private-fields@2.1.0':
+ resolution: {integrity: sha512-g+hZPUDuJMCSrN4r2pWD5vPLGBouD651gbD2n1furOzEXFbduzpbMZqmn2pEBvOLu2e+61m03nLX3AUZmSgEYQ==}
+ engines: {node: '>=16'}
+ peerDependencies:
+ putout: '>=25'
+
+ '@putout/plugin-remove-unused-variables@10.1.0':
+ resolution: {integrity: sha512-e8nv/2bcfaQq0fWERRdIZey2M4uOvuudoGkGPYtMZ/oRpeUKRIR+0uCU/9phqmmTvvHi82fjhO0ckAO0afDycg==}
+ engines: {node: '>=18'}
+ peerDependencies:
+ putout: '>=36'
+
+ '@putout/plugin-remove-useless-arguments@9.0.0':
+ resolution: {integrity: sha512-+t52suTlLsmDx7p27voVch0MeQEy9himjB7hqgrab1BhSYigu88OQhNy6l7xGnIpkmvw1vu3Npn1aDudz3AEAg==}
+ engines: {node: '>=16'}
+ peerDependencies:
+ putout: '>=36'
+
+ '@putout/plugin-remove-useless-array-constructor@2.0.0':
+ resolution: {integrity: sha512-R3GAHGeDoh916SSEFrPaiEu9BylOrIP07+Xh+v+hzZuw/tINiA94sdWZ4BPhOmIX3qbWe6LqqVQ4j8VikaaF9Q==}
+ engines: {node: '>=14'}
+ peerDependencies:
+ putout: '>=30'
+
+ '@putout/plugin-remove-useless-array-entries@1.0.0':
+ resolution: {integrity: sha512-ArLWIUXH1ajRPRe/6Pv4MhW3HAFoet4dy1fMlYVa+2i2ydjVYsKnwdJU70cI9B2Mo25JQXUY5yskkSaRQx339g==}
+ engines: {node: '>=14'}
+ peerDependencies:
+ putout: '>=23'
+
+ '@putout/plugin-remove-useless-array@1.1.0':
+ resolution: {integrity: sha512-xWwGpvhtCiglwYjUZXOAple09QRnNZkCR8waoKxIlr8STSKB+6DGrdDCDw7A36fUNrTX96D4svGn1fHNAR6XIQ==}
+ engines: {node: '>=18'}
+ peerDependencies:
+ putout: '>=35'
+
+ '@putout/plugin-remove-useless-assign@1.1.0':
+ resolution: {integrity: sha512-lfTkCAVYKacsEuZRjVogH29FUH9xE3+7+15VEVzPPMiBdsACOJ9561yldXeqy6u/+9rwmmkYr8W1Bt7VyQEyvg==}
+ engines: {node: '>=16'}
+ peerDependencies:
+ putout: '>=26'
+
+ '@putout/plugin-remove-useless-constructor@2.0.0':
+ resolution: {integrity: sha512-nssmppJkz2d0xTzmPKIMtFgAyicRff4q9VuwLRahnUZ8NPN6kVdMoXb73VGy7ZYd5nMlGg/rxaF0hgZPqQ2R8Q==}
+ engines: {node: '>=18'}
+ peerDependencies:
+ putout: '>=36'
+
+ '@putout/plugin-remove-useless-continue@2.0.0':
+ resolution: {integrity: sha512-OxG5fr4uIGSmITzX4pkYPBYnn1NaGu9ZSBCzcrNrG5/7mGNIO9YnC9yyVRjTXELdxJXL5sjxzoBCSsS33PMwFQ==}
+ engines: {node: '>=16'}
+ peerDependencies:
+ putout: '>=28'
+
+ '@putout/plugin-remove-useless-delete@1.0.4':
+ resolution: {integrity: sha512-Gsq1UW8cOTwldLQHU6xEZHVNQQCEyM0diSyvufVxqMvAAVx5fvtbK/Kzosk56OB0lXn3SjiPg/EtGiZt0vwaLg==}
+ engines: {node: '>=16'}
+ peerDependencies:
+ putout: '>=36'
+
+ '@putout/plugin-remove-useless-escape@6.0.0':
+ resolution: {integrity: sha512-I6CRfw78PHnYTLzyJjbzRTp+OaJF9oyLAefEQOI6lr1XdRe62SStY2YROyTAbH2E6/zYjjRFqHxw1G6E222J2g==}
+ engines: {node: '>=18'}
+ peerDependencies:
+ putout: '>=35'
+
+ '@putout/plugin-remove-useless-functions@3.0.0':
+ resolution: {integrity: sha512-50WsmBy0Kvdqj+uYmSyyUZuy0NptYk2GrvpyIzgmjiJaNtSLgUcTRViRki/0NTsbDt73q/cdBypPdomMKoYJiw==}
+ engines: {node: '>=16'}
+ peerDependencies:
+ putout: '>=30'
+
+ '@putout/plugin-remove-useless-map@1.1.0':
+ resolution: {integrity: sha512-/5VQNb1YkcTZ16FqFrSfoILgGqsMJ6zIaKP1LlhZa3Xt1svLoN2Y2NIve9mSn7NgxFWnR1eUZPaeXl+FT+ltog==}
+ engines: {node: '>=14'}
+ peerDependencies:
+ putout: '>=18'
+
+ '@putout/plugin-remove-useless-operand@2.1.0':
+ resolution: {integrity: sha512-Et+8ZHBRD1zTHjYu71lC22rRuwayI4r4yQw+kibvwIEgVvLBbJu8DhlTKKjWkH04BQWEtigSwd/kKQSL0bVo+Q==}
+ engines: {node: '>=16'}
+ peerDependencies:
+ putout: '>=25'
+
+ '@putout/plugin-remove-useless-push@1.0.3':
+ resolution: {integrity: sha512-G0e0QY6p9bd1HU5h8NoV/fMGI6+O2AWGXxQzkgPHiwtpklk4nIXkGtCLpZqNFpoa/bT9MvXUL9cgWfL5tIaoMQ==}
+ engines: {node: '>=18'}
+ peerDependencies:
+ putout: '>=36'
+
+ '@putout/plugin-remove-useless-replace@1.0.4':
+ resolution: {integrity: sha512-w4TdcqM/9UOjv3YtyRldV49P95o32MIYyVe4aSxyAD4m29f/tnzD11RsCDC20mHZzSK3BIVpB72guK2U0ylqGQ==}
+ engines: {node: '>=16'}
+ peerDependencies:
+ putout: '>=26'
+
+ '@putout/plugin-remove-useless-return@7.0.0':
+ resolution: {integrity: sha512-YXg8StDHppFkuOzivde33g4idADikbuJSmri/jrzp/bsSw3mA0OfHhsSDJs8QKTfAwTHX71Wg2zhVzoq4vV5hg==}
+ engines: {node: '>=18'}
+ peerDependencies:
+ putout: '>=35'
+
+ '@putout/plugin-remove-useless-spread@11.1.0':
+ resolution: {integrity: sha512-m/2X+HX+c2ybtYtkrh4ucvmvogSjY4NNPzK7H4mjP9EcbWqACntTN5BeuMFums86cUi6chSyQlp/w1Pj+sPFrw==}
+ engines: {node: '>=18'}
+ peerDependencies:
+ putout: '>=35'
+
+ '@putout/plugin-remove-useless-template-expressions@2.0.0':
+ resolution: {integrity: sha512-1Dcnjc4h2Nd6eSvdTEhgtSbqvCMVxv6Mbvhj2yXjzNyP0vMi/CIUta23gM7Ie5Kzpkf/g9xhUUVqYVwYKjIkKw==}
+ engines: {node: '>=16'}
+ peerDependencies:
+ putout: '>=29'
+
+ '@putout/plugin-remove-useless-variables@12.6.1':
+ resolution: {integrity: sha512-FHXPXJj7jS6MaAV22tZsvxQcIPAZO7vGZfqUskwAGbGU1fT1B15CVOptotRQ8vsyIybGHxXuJJ05T28OyrNSxw==}
+ engines: {node: '>=18'}
+ peerDependencies:
+ putout: '>=36'
+
+ '@putout/plugin-reuse-duplicate-init@6.0.0':
+ resolution: {integrity: sha512-q4md8t7K2gVQ63LA0/CJ2v8ioEnmwKCP+R/3AtsaWbNVd8TbPy4ntYw5+7/HfikK4hRCnH0s7KsamI2cNYaSJg==}
+ engines: {node: '>=16'}
+ peerDependencies:
+ putout: '>=36'
+
+ '@putout/plugin-simplify-assignment@3.1.0':
+ resolution: {integrity: sha512-pwYwK96USqM//E15/SAQ9x4DTzbMV3oBXCBDtliXQeVsDKGfm0Wn17LStl9yQ88M9hrplXFBGNHuQUAUOBAPeQ==}
+ engines: {node: '>=16'}
+ peerDependencies:
+ putout: '>=29'
+
+ '@putout/plugin-simplify-boolean-return@2.0.0':
+ resolution: {integrity: sha512-/KNrebqH/sRnk8cUqylR/uCTbI+AQ3Upag9qpozm+XkL/vCzyad5zSLqxet7qJOBwzS4dDFSzlRm2tjJAHS+SA==}
+ engines: {node: '>=18'}
+ peerDependencies:
+ putout: '>=35'
+
+ '@putout/plugin-simplify-ternary@7.0.0':
+ resolution: {integrity: sha512-sSXTE4mOgkzVsVRv73DAEUBLRTouwW2ts0tDxOFqY0ipqjI9fNhHTl+ifF9b9DvNyi66MiAmhV4sVOuPFq4xUA==}
+ engines: {node: '>=18'}
+ peerDependencies:
+ putout: '>=34'
+
+ '@putout/plugin-sort-imports-by-specifiers@1.1.0':
+ resolution: {integrity: sha512-4LUqfe7NIBjmZe7LzjlYBAyFjlgEPUYASFd+fV9oe/f5g3jF0A/uM3BrlqZI+twmNQNpkIlo9orVALVqps+K6Q==}
+ engines: {node: '>=18'}
+ peerDependencies:
+ putout: '>=35'
+
+ '@putout/plugin-split-assignment-expressions@1.2.0':
+ resolution: {integrity: sha512-mDS6l5R/Iu+7tfW3YL4NgpG5cX30ETxdDby42aDXh1Z+SpzapCK3LPseezQZWFwC4xKLGdQzOce1ZzrHydpe/w==}
+ engines: {node: '>=18'}
+ peerDependencies:
+ putout: '>=35'
+
+ '@putout/plugin-split-nested-destructuring@3.0.0':
+ resolution: {integrity: sha512-f0iLhhD2T2v1PMetc/KRoFU/46buGOhtuKDLWTmc1A9LAJSL1YLPOgrleTnZZb6virchPt09GKfJrrXAhjzsDA==}
+ engines: {node: '>=16'}
+ peerDependencies:
+ putout: '>=29'
+
+ '@putout/plugin-split-variable-declarations@3.0.0':
+ resolution: {integrity: sha512-K8b958p3+5c+hB8YxqBgrUGV2W79lHnsokzFGSe1KqpSmYzoM1cIEiT7MxpcA+WJi3rAlQ2iPO6ehWUIM+9USQ==}
+ engines: {node: '>=16'}
+ peerDependencies:
+ putout: '>=29'
+
+ '@putout/plugin-tape@15.1.0':
+ resolution: {integrity: sha512-c3pSvJ2LKGlEqsLyeYembhLHvXQwmrxEyrNWITPNhZAjeVAi1wwTr6YRKw41YclW2iAbe3fxZIgZK4jwjPnNeQ==}
+ engines: {node: '>=18.6'}
+ peerDependencies:
+ putout: '>=36'
+
+ '@putout/plugin-try-catch@4.0.0':
+ resolution: {integrity: sha512-ucJ0Qo8imalzjHsW/TmiEo//gqA/J6kEQbLY6nRlLsD/GeK9GehtMRwJCmTHgofsjXWUTDL5q6b8Xq3c3X4D/g==}
+ engines: {node: '>=16'}
+ peerDependencies:
+ putout: '>=36'
+
+ '@putout/plugin-types@5.1.0':
+ resolution: {integrity: sha512-Oy4e2/P2w56TedzIk5rh/u2Yd3EovMhjxnrAjMFI6R/h7MM8kQSwI4RQFCWTgxQcDvLfw0FS7uOw09eNSJNOkQ==}
+ engines: {node: '>=18'}
+ peerDependencies:
+ putout: '>=36'
+
+ '@putout/plugin-typescript@8.3.0':
+ resolution: {integrity: sha512-qkS7zW44ENC5+qweTLJuYTnTBayWO3lHjcMJqTT6m+z8phwrM9TnPZZ9jvNDFkQdQSV50HFOEgVbILjyRBftiQ==}
+ engines: {node: '>=18'}
+ peerDependencies:
+ putout: '>=36'
+
+ '@putout/plugin-webpack@3.0.0':
+ resolution: {integrity: sha512-qYUUvasY7AuWYGVOSuSnxYOMBcbIFIt+MaesxLW5j3sE0I51BkyiA8RPS7nUTW3nuzRt4TnzSdHS66RC6VO7nw==}
+ engines: {node: '>=16'}
+ peerDependencies:
+ putout: '>=29'
+
+ '@putout/printer@10.3.0':
+ resolution: {integrity: sha512-oWQGrAk6WKvMQrn7MIrZ0JpXGfnDbpKeSl18c5UG53kAr7OVWTIvDBI7J5Y/h7/qlTDX9elMF6jNRC5KAG0Olg==}
+ engines: {node: '>=18'}
+
+ '@putout/processor-css@9.0.0':
+ resolution: {integrity: sha512-FUzUKBDLbzWSi8ZWi7Mr6qhuvdyk11/oI3zvz7rvbWOVgSQ1FwxfWoOuzz9M5WJE0DJPaF6rj+n1fl2WNncJdg==}
+ engines: {node: '>=18'}
+ peerDependencies:
+ putout: '>=35'
+
+ '@putout/processor-filesystem@5.0.0':
+ resolution: {integrity: sha512-hyQl7kc7oFQ21v9jDW5Gk1wSpZT2QjGBDm0/NAu+Htx+tyNo/xduaUaqD1b06/nxZQM8L1+DrShGw9aCBNLmCA==}
+ engines: {node: '>=18'}
+
+ '@putout/processor-ignore@6.0.1':
+ resolution: {integrity: sha512-f1kFzaBUIZyuRiX78SwMMPSQx+Fvspf69TmMUFYJqLkhKJ8I+F5IR0JmYHnorjfnPaEM5veVQd21wmyWCELRMg==}
+ engines: {node: '>=18'}
+
+ '@putout/processor-javascript@5.0.0':
+ resolution: {integrity: sha512-0V2S2GTtzSXo1rLwCnEplVYZnAC2e2jdmSUig1p9qx9FjQj4MHCEHsmRjKkjh0NsajKUY5t2Z+ZLZ6GeagUlxg==}
+ engines: {node: '>=16'}
+ peerDependencies:
+ putout: '>=29'
+
+ '@putout/processor-json@9.0.0':
+ resolution: {integrity: sha512-npJAD1WQ5niXgIvcU33CrmaOLLf90gHcDP1x9wrJhsdf3LQVAZFVDNIh9AhNI46TiL2fOxkp3rytuZIqzWBEwg==}
+ engines: {node: '>=18'}
+
+ '@putout/processor-markdown@12.1.0':
+ resolution: {integrity: sha512-CBAju36wS35FC5VZ07UEkL+zGxNW1lXicflfgat4KEgwrlwVdxN7mbCfZc4LLOZO8AEboxx4rtlN/M0cmF8y3A==}
+ engines: {node: '>=18'}
+
+ '@putout/processor-yaml@8.1.0':
+ resolution: {integrity: sha512-byEG+EnjpFZFwrig1oG9cE2yBscCk8bPvO+qlqCFI0ztlYD40KK6ZN7LcYdQXmImwgRNHCxPvyD4L/eyjOl5OA==}
+ engines: {node: '>=18'}
+
+ '@putout/quick-lint@1.4.0':
+ resolution: {integrity: sha512-/Dvl3xLOESVlbSGhcIzqBpKUAXp5Hn7exnqIXFx8+dMhQPxviyxTf11uyIvz3yOyoio+r9QhppK0Ys/Yx4OB1g==}
+ engines: {node: '>=18'}
+ hasBin: true
+
+ '@putout/traverse@11.0.0':
+ resolution: {integrity: sha512-PJC//e1RpkqSwi7N7x/1854Uw9Vi/+J2iRX4GjSd2vyCr+Cg4Auw/3qRskbhoYAWoK5uGj+kUV8I9RdexMzBNg==}
+ engines: {node: '>=18'}
+
+ '@qdrant/js-client-rest@1.12.0':
+ resolution: {integrity: sha512-H8VokZq2DYe9yfKG3c7xPNR+Oc5ZvwMUtPEr1wUO4xVi9w5P89MScJaCc9UW8mS5AR+/Y1h2t1YjSxBFPIYT2Q==}
+ engines: {node: '>=18.0.0', pnpm: '>=8'}
+ peerDependencies:
+ typescript: '>=4.7'
+
+ '@qdrant/openapi-typescript-fetch@1.2.6':
+ resolution: {integrity: sha512-oQG/FejNpItrxRHoyctYvT3rwGZOnK4jr3JdppO/c78ktDvkWiPXPHNsrDf33K9sZdRb6PR7gi4noIapu5q4HA==}
+ engines: {node: '>=18.0.0', pnpm: '>=8'}
+
+ '@qiwi/npm-registry-client@8.9.1':
+ resolution: {integrity: sha512-rZF+mG+NfijR0SHphhTLHRr4aM4gtfdwoAMY6we2VGQam8vkN1cxGG1Lg/Llrj8Dd0Mu6VjdFQRyMMRZxtZR2A==}
+
+ '@rails/actioncable@8.0.0':
+ resolution: {integrity: sha512-9IXyJeaBggOzlD3pF4/yWELdyUWZm/KTyKBRqxNf9laLBXPqxJt3t6fO+X4s0WajMR8cIhzkxvq1gxsXVbn3LA==}
+
+ '@readme/better-ajv-errors@1.6.0':
+ resolution: {integrity: sha512-9gO9rld84Jgu13kcbKRU+WHseNhaVt76wYMeRDGsUGYxwJtI3RmEJ9LY9dZCYQGI8eUZLuxb5qDja0nqklpFjQ==}
+ engines: {node: '>=14'}
+ peerDependencies:
+ ajv: 4.11.8 - 8
+
+ '@readme/json-schema-ref-parser@1.2.0':
+ resolution: {integrity: sha512-Bt3QVovFSua4QmHa65EHUmh2xS0XJ3rgTEUPH998f4OW4VVJke3BuS16f+kM0ZLOGdvIrzrPRqwihuv5BAjtrA==}
+
+ '@readme/oas-extensions@14.4.0':
+ resolution: {integrity: sha512-vNrZ1s7SyvWfqJAW9OI3lciDe9fbgJYXz2XIGoyi6f3Q8MMHbKx1GCVsX4SiAFai7lUIZDe2ltEKKtoxTfOKNQ==}
+ engines: {node: '>=14'}
+ deprecated: The functionality for this library has been moved into `oas`.
+ peerDependencies:
+ oas: ^17.1.0 || ^18.0.0
+
+ '@readme/oas-to-har@16.1.0':
+ resolution: {integrity: sha512-gwyu5w41sigPhijmOxeQFgjfe7ItCLo6wwWuw/MzKfW5ma2GWANauT2c+tSlsZN7zNuPdjAK0wEfOxKSXxQE0g==}
+ engines: {node: ^12 || ^14 || ^16}
+
+ '@readme/openapi-parser@2.6.0':
+ resolution: {integrity: sha512-pyFJXezWj9WI1O+gdp95CoxfY+i+Uq3kKk4zXIFuRAZi9YnHpHOpjumWWr67wkmRTw19Hskh9spyY0Iyikf3fA==}
+ engines: {node: '>=18'}
+ peerDependencies:
+ openapi-types: '>=7'
+
+ '@readme/openapi-schemas@3.1.0':
+ resolution: {integrity: sha512-9FC/6ho8uFa8fV50+FPy/ngWN53jaUu4GRXlAjcxIRrzhltJnpKkBG2Tp0IDraFJeWrOpk84RJ9EMEEYzaI1Bw==}
+ engines: {node: '>=18'}
+
+ '@rollup/pluginutils@5.1.3':
+ resolution: {integrity: sha512-Pnsb6f32CD2W3uCaLZIzDmeFyQ2b8UWMFI7xtwUezpcGBDVDW6y9XgAWIlARiGAo6eNF5FK5aQTr0LFyNyqq5A==}
+ engines: {node: '>=14.0.0'}
+ peerDependencies:
+ rollup: ^1.20.0||^2.0.0||^3.0.0||^4.0.0
+ peerDependenciesMeta:
+ rollup:
+ optional: true
+
+ '@rollup/rollup-android-arm-eabi@4.27.3':
+ resolution: {integrity: sha512-EzxVSkIvCFxUd4Mgm4xR9YXrcp976qVaHnqom/Tgm+vU79k4vV4eYTjmRvGfeoW8m9LVcsAy/lGjcgVegKEhLQ==}
+ cpu: [arm]
+ os: [android]
+
+ '@rollup/rollup-android-arm64@4.27.3':
+ resolution: {integrity: sha512-LJc5pDf1wjlt9o/Giaw9Ofl+k/vLUaYsE2zeQGH85giX2F+wn/Cg8b3c5CDP3qmVmeO5NzwVUzQQxwZvC2eQKw==}
+ cpu: [arm64]
+ os: [android]
+
+ '@rollup/rollup-darwin-arm64@4.27.3':
+ resolution: {integrity: sha512-OuRysZ1Mt7wpWJ+aYKblVbJWtVn3Cy52h8nLuNSzTqSesYw1EuN6wKp5NW/4eSre3mp12gqFRXOKTcN3AI3LqA==}
+ cpu: [arm64]
+ os: [darwin]
+
+ '@rollup/rollup-darwin-x64@4.27.3':
+ resolution: {integrity: sha512-xW//zjJMlJs2sOrCmXdB4d0uiilZsOdlGQIC/jjmMWT47lkLLoB1nsNhPUcnoqyi5YR6I4h+FjBpILxbEy8JRg==}
+ cpu: [x64]
+ os: [darwin]
+
+ '@rollup/rollup-freebsd-arm64@4.27.3':
+ resolution: {integrity: sha512-58E0tIcwZ+12nK1WiLzHOD8I0d0kdrY/+o7yFVPRHuVGY3twBwzwDdTIBGRxLmyjciMYl1B/U515GJy+yn46qw==}
+ cpu: [arm64]
+ os: [freebsd]
+
+ '@rollup/rollup-freebsd-x64@4.27.3':
+ resolution: {integrity: sha512-78fohrpcVwTLxg1ZzBMlwEimoAJmY6B+5TsyAZ3Vok7YabRBUvjYTsRXPTjGEvv/mfgVBepbW28OlMEz4w8wGA==}
+ cpu: [x64]
+ os: [freebsd]
+
+ '@rollup/rollup-linux-arm-gnueabihf@4.27.3':
+ resolution: {integrity: sha512-h2Ay79YFXyQi+QZKo3ISZDyKaVD7uUvukEHTOft7kh00WF9mxAaxZsNs3o/eukbeKuH35jBvQqrT61fzKfAB/Q==}
+ cpu: [arm]
+ os: [linux]
+
+ '@rollup/rollup-linux-arm-musleabihf@4.27.3':
+ resolution: {integrity: sha512-Sv2GWmrJfRY57urktVLQ0VKZjNZGogVtASAgosDZ1aUB+ykPxSi3X1nWORL5Jk0sTIIwQiPH7iE3BMi9zGWfkg==}
+ cpu: [arm]
+ os: [linux]
+
+ '@rollup/rollup-linux-arm64-gnu@4.27.3':
+ resolution: {integrity: sha512-FPoJBLsPW2bDNWjSrwNuTPUt30VnfM8GPGRoLCYKZpPx0xiIEdFip3dH6CqgoT0RnoGXptaNziM0WlKgBc+OWQ==}
+ cpu: [arm64]
+ os: [linux]
+
+ '@rollup/rollup-linux-arm64-musl@4.27.3':
+ resolution: {integrity: sha512-TKxiOvBorYq4sUpA0JT+Fkh+l+G9DScnG5Dqx7wiiqVMiRSkzTclP35pE6eQQYjP4Gc8yEkJGea6rz4qyWhp3g==}
+ cpu: [arm64]
+ os: [linux]
+
+ '@rollup/rollup-linux-powerpc64le-gnu@4.27.3':
+ resolution: {integrity: sha512-v2M/mPvVUKVOKITa0oCFksnQQ/TqGrT+yD0184/cWHIu0LoIuYHwox0Pm3ccXEz8cEQDLk6FPKd1CCm+PlsISw==}
+ cpu: [ppc64]
+ os: [linux]
+
+ '@rollup/rollup-linux-riscv64-gnu@4.27.3':
+ resolution: {integrity: sha512-LdrI4Yocb1a/tFVkzmOE5WyYRgEBOyEhWYJe4gsDWDiwnjYKjNs7PS6SGlTDB7maOHF4kxevsuNBl2iOcj3b4A==}
+ cpu: [riscv64]
+ os: [linux]
+
+ '@rollup/rollup-linux-s390x-gnu@4.27.3':
+ resolution: {integrity: sha512-d4wVu6SXij/jyiwPvI6C4KxdGzuZOvJ6y9VfrcleHTwo68fl8vZC5ZYHsCVPUi4tndCfMlFniWgwonQ5CUpQcA==}
+ cpu: [s390x]
+ os: [linux]
+
+ '@rollup/rollup-linux-x64-gnu@4.27.3':
+ resolution: {integrity: sha512-/6bn6pp1fsCGEY5n3yajmzZQAh+mW4QPItbiWxs69zskBzJuheb3tNynEjL+mKOsUSFK11X4LYF2BwwXnzWleA==}
+ cpu: [x64]
+ os: [linux]
+
+ '@rollup/rollup-linux-x64-musl@4.27.3':
+ resolution: {integrity: sha512-nBXOfJds8OzUT1qUreT/en3eyOXd2EH5b0wr2bVB5999qHdGKkzGzIyKYaKj02lXk6wpN71ltLIaQpu58YFBoQ==}
+ cpu: [x64]
+ os: [linux]
+
+ '@rollup/rollup-win32-arm64-msvc@4.27.3':
+ resolution: {integrity: sha512-ogfbEVQgIZOz5WPWXF2HVb6En+kWzScuxJo/WdQTqEgeyGkaa2ui5sQav9Zkr7bnNCLK48uxmmK0TySm22eiuw==}
+ cpu: [arm64]
+ os: [win32]
+
+ '@rollup/rollup-win32-ia32-msvc@4.27.3':
+ resolution: {integrity: sha512-ecE36ZBMLINqiTtSNQ1vzWc5pXLQHlf/oqGp/bSbi7iedcjcNb6QbCBNG73Euyy2C+l/fn8qKWEwxr+0SSfs3w==}
+ cpu: [ia32]
+ os: [win32]
+
+ '@rollup/rollup-win32-x64-msvc@4.27.3':
+ resolution: {integrity: sha512-vliZLrDmYKyaUoMzEbMTg2JkerfBjn03KmAw9CykO0Zzkzoyd7o3iZNam/TpyWNjNT+Cz2iO3P9Smv2wgrR+Eg==}
+ cpu: [x64]
+ os: [win32]
+
+ '@rtsao/scc@1.1.0':
+ resolution: {integrity: sha512-zt6OdqaDoOnJ1ZYsCYGt9YmWzDXl4vQdKTyJev62gFhRGKdx7mcT54V9KIjg+d2wi9EXsPvAPKe7i7WjfVWB8g==}
+
+ '@rushstack/eslint-patch@1.10.4':
+ resolution: {integrity: sha512-WJgX9nzTqknM393q1QJDJmoW28kUfEnybeTfVNcNAPnIx210RXm2DiXiHzfNPJNIUUb1tJnz/l4QGtJ30PgWmA==}
+
+ '@rushstack/node-core-library@5.10.0':
+ resolution: {integrity: sha512-2pPLCuS/3x7DCd7liZkqOewGM0OzLyCacdvOe8j6Yrx9LkETGnxul1t7603bIaB8nUAooORcct9fFDOQMbWAgw==}
+ peerDependencies:
+ '@types/node': '*'
+ peerDependenciesMeta:
+ '@types/node':
+ optional: true
+
+ '@rushstack/rig-package@0.5.3':
+ resolution: {integrity: sha512-olzSSjYrvCNxUFZowevC3uz8gvKr3WTpHQ7BkpjtRpA3wK+T0ybep/SRUMfr195gBzJm5gaXw0ZMgjIyHqJUow==}
+
+ '@rushstack/terminal@0.14.3':
+ resolution: {integrity: sha512-csXbZsAdab/v8DbU1sz7WC2aNaKArcdS/FPmXMOXEj/JBBZMvDK0+1b4Qao0kkG0ciB1Qe86/Mb68GjH6/TnMw==}
+ peerDependencies:
+ '@types/node': '*'
+ peerDependenciesMeta:
+ '@types/node':
+ optional: true
+
+ '@rushstack/ts-command-line@4.23.1':
+ resolution: {integrity: sha512-40jTmYoiu/xlIpkkRsVfENtBq4CW3R4azbL0Vmda+fMwHWqss6wwf/Cy/UJmMqIzpfYc2OTnjYP1ZLD3CmyeCA==}
+
+ '@sec-ant/readable-stream@0.4.1':
+ resolution: {integrity: sha512-831qok9r2t8AlxLko40y2ebgSDhenenCatLVeW/uBtnHPyhHOvG0C7TvfgecV+wHzIm5KUICgzmVpWS+IMEAeg==}
+
+ '@selderee/plugin-htmlparser2@0.11.0':
+ resolution: {integrity: sha512-P33hHGdldxGabLFjPPpaTxVolMrzrcegejx+0GxjrIb9Zv48D8yAIA/QTDR2dFl7Uz7urX8aX6+5bCZslr+gWQ==}
+
+ '@selderee/plugin-htmlparser2@0.6.0':
+ resolution: {integrity: sha512-J3jpy002TyBjd4N/p6s+s90eX42H2eRhK3SbsZuvTDv977/E8p2U3zikdiehyJja66do7FlxLomZLPlvl2/xaA==}
+
+ '@sendgrid/client@7.7.0':
+ resolution: {integrity: sha512-SxH+y8jeAQSnDavrTD0uGDXYIIkFylCo+eDofVmZLQ0f862nnqbC3Vd1ej6b7Le7lboyzQF6F7Fodv02rYspuA==}
+ engines: {node: 6.* || 8.* || >=10.*}
+
+ '@sendgrid/eventwebhook@7.7.0':
+ resolution: {integrity: sha512-L2C6nzZgG6YZ/jfXCEqn5l8K8+6oxvhaQ9v/cIM6aXxRHwmTAia9s20snafgTLa27w//vcs+W+MDEm8x4sN+xg==}
+ engines: {node: 6.* || 8.* || >=10.*}
+
+ '@sendgrid/helpers@7.7.0':
+ resolution: {integrity: sha512-3AsAxfN3GDBcXoZ/y1mzAAbKzTtUZ5+ZrHOmWQ279AuaFXUNCh9bPnRpN504bgveTqoW+11IzPg3I0WVgDINpw==}
+ engines: {node: '>= 6.0.0'}
+
+ '@sentry-internal/tracing@7.120.0':
+ resolution: {integrity: sha512-VymJoIGMV0PcTJyshka9uJ1sKpR7bHooqW5jTEr6g0dYAwB723fPXHjVW+7SETF7i5+yr2KMprYKreqRidKyKA==}
+ engines: {node: '>=8'}
+
+ '@sentry/core@7.120.0':
+ resolution: {integrity: sha512-uTc2sUQ0heZrMI31oFOHGxjKgw16MbV3C2mcT7qcrb6UmSGR9WqPOXZhnVVuzPWCnQ8B5IPPVdynK//J+9/m6g==}
+ engines: {node: '>=8'}
+
+ '@sentry/integrations@7.120.0':
+ resolution: {integrity: sha512-/Hs9MgSmG4JFNyeQkJ+MWh/fxO/U38Pz0VSH3hDrfyCjI8vH9Vz9inGEQXgB9Ke4eH8XnhsQ7xPnM27lWJts6g==}
+ engines: {node: '>=8'}
+
+ '@sentry/node@7.120.0':
+ resolution: {integrity: sha512-GAyuNd8WUznsiOyDq2QUwR/aVnMmItUc4tgZQxhH1R+n4Adx3cAhnpq3zEuzsIAC5+/7ut+4Q4B3akh6SDZd4w==}
+ engines: {node: '>=8'}
+
+ '@sentry/types@7.120.0':
+ resolution: {integrity: sha512-3mvELhBQBo6EljcRrJzfpGJYHKIZuBXmqh0y8prh03SWE62pwRL614GIYtd4YOC6OP1gfPn8S8h9w3dD5bF5HA==}
+ engines: {node: '>=8'}
+
+ '@sentry/utils@7.120.0':
+ resolution: {integrity: sha512-XZsPcBHoYu4+HYn14IOnhabUZgCF99Xn4IdWn8Hjs/c+VPtuAVDhRTsfPyPrpY3OcN8DgO5fZX4qcv/6kNbX1A==}
+ engines: {node: '>=8'}
+
+ '@sevinf/maybe@0.5.0':
+ resolution: {integrity: sha512-ARhyoYDnY1LES3vYI0fiG6e9esWfTNcXcO6+MPJJXcnyMV3bim4lnFt45VXouV7y82F4x3YH8nOQ6VztuvUiWg==}
+
+ '@sideway/address@4.1.5':
+ resolution: {integrity: sha512-IqO/DUQHUkPeixNQ8n0JA6102hT9CmaljNTPmQ1u8MEhBo/R4Q8eKLN/vGZxuebwOroDB4cbpjheD4+/sKFK4Q==}
+
+ '@sideway/formula@3.0.1':
+ resolution: {integrity: sha512-/poHZJJVjx3L+zVD6g9KgHfYnb443oi7wLu/XKojDviHy6HOEOA6z1Trk5aR1dGcmPenJEgb2sK2I80LeS3MIg==}
+
+ '@sideway/pinpoint@2.0.0':
+ resolution: {integrity: sha512-RNiOoTPkptFtSVzQevY/yWtZwf/RxyVnPy/OcA9HBM3MlGDnBEYL5B41H0MTn0Uec8Hi+2qUtTfG2WWZBmMejQ==}
+
+ '@sinclair/typebox@0.27.8':
+ resolution: {integrity: sha512-+Fj43pSMwJs4KRrH/938Uf+uAELIgVBmQzg/q1YG10djyfA3TnrU8N8XzqCh/okZdszqBQTZf96idMfE5lnwTA==}
+
+ '@sindresorhus/is@4.6.0':
+ resolution: {integrity: sha512-t09vSN3MdfsyCHoFcTRCH/iUtG7OJ0CsjzB8cjAmKc/va/kIgeDI/TxsigdncE/4be734m0cvIYwNaV4i2XqAw==}
+ engines: {node: '>=10'}
+
+ '@sindresorhus/is@5.6.0':
+ resolution: {integrity: sha512-TV7t8GKYaJWsn00tFDqBw8+Uqmr8A0fRU1tvTQhyZzGv0sJCGRQL3JGMI3ucuKo3XIZdUP+Lx7/gh2t3lewy7g==}
+ engines: {node: '>=14.16'}
+
+ '@sindresorhus/is@7.0.1':
+ resolution: {integrity: sha512-QWLl2P+rsCJeofkDNIT3WFmb6NrRud1SUYW8dIhXK/46XFV8Q/g7Bsvib0Askb0reRLe+WYPeeE+l5cH7SlkuQ==}
+ engines: {node: '>=18'}
+
+ '@sinonjs/commons@3.0.1':
+ resolution: {integrity: sha512-K3mCHKQ9sVh8o1C9cxkwxaOmXoAMlDxC1mYyHrjqOWEcBjYr76t96zL2zlj5dUGZ3HSw240X1qgH3Mjf1yJWpQ==}
+
+ '@sinonjs/fake-timers@10.3.0':
+ resolution: {integrity: sha512-V4BG07kuYSUkTCSBHG8G8TNhM+F19jXFWnQtzj+we8DrkpSBCee9Z3Ms8yiGer/dlmhe35/Xdgyo3/0rQKg7YA==}
+
+ '@slack/logger@2.0.0':
+ resolution: {integrity: sha512-OkIJpiU2fz6HOJujhlhfIGrc8hB4ibqtf7nnbJQDerG0BqwZCfmgtK5sWzZ0TkXVRBKD5MpLrTmCYyMxoMCgPw==}
+ engines: {node: '>= 8.9.0', npm: '>= 5.5.1'}
+
+ '@slack/logger@4.0.0':
+ resolution: {integrity: sha512-Wz7QYfPAlG/DR+DfABddUZeNgoeY7d1J39OCR2jR+v7VBsB8ezulDK5szTnDDPDwLH5IWhLvXIHlCFZV7MSKgA==}
+ engines: {node: '>= 18', npm: '>= 8.6.0'}
+
+ '@slack/types@1.10.0':
+ resolution: {integrity: sha512-tA7GG7Tj479vojfV3AoxbckalA48aK6giGjNtgH6ihpLwTyHE3fIgRrvt8TWfLwW8X8dyu7vgmAsGLRG7hWWOg==}
+ engines: {node: '>= 8.9.0', npm: '>= 5.5.1'}
+
+ '@slack/types@2.14.0':
+ resolution: {integrity: sha512-n0EGm7ENQRxlXbgKSrQZL69grzg1gHLAVd+GlRVQJ1NSORo0FrApR7wql/gaKdu2n4TO83Sq/AmeUOqD60aXUA==}
+ engines: {node: '>= 12.13.0', npm: '>= 6.12.0'}
+
+ '@slack/web-api@5.15.0':
+ resolution: {integrity: sha512-tjQ8Zqv/Fmj9SOL9yIEd7IpTiKfKHi9DKAkfRVeotoX0clMr3SqQtBqO+KZMX27gm7dmgJsQaDKlILyzdCO+IA==}
+ engines: {node: '>= 8.9.0', npm: '>= 5.5.1'}
+
+ '@slack/web-api@7.7.0':
+ resolution: {integrity: sha512-DtRyjgQi0mObA2uC6H8nL2OhAISKDhvtOXgRjGRBnBhiaWb6df5vPmKHsOHjpweYALBMHtiqE5ajZFkDW/ag8Q==}
+ engines: {node: '>= 18', npm: '>= 8.6.0'}
+
+ '@smiirl/smiirl-library-js@1.0.5':
+ resolution: {integrity: sha512-xaOV2aLYlx9jFtJzIPl0uv3/bSTcbBIlv778sWf2b3GxbL+RM70nIn4i8c2hzXzAR5dlAg++zBnbl6n8j3bchA==}
+
+ '@smithy/abort-controller@3.1.8':
+ resolution: {integrity: sha512-+3DOBcUn5/rVjlxGvUPKc416SExarAQ+Qe0bqk30YSUjbepwpS7QN0cyKUSifvLJhdMZ0WPzPP5ymut0oonrpQ==}
+ engines: {node: '>=16.0.0'}
+
+ '@smithy/chunked-blob-reader-native@3.0.1':
+ resolution: {integrity: sha512-VEYtPvh5rs/xlyqpm5NRnfYLZn+q0SRPELbvBV+C/G7IQ+ouTuo+NKKa3ShG5OaFR8NYVMXls9hPYLTvIKKDrQ==}
+
+ '@smithy/chunked-blob-reader@4.0.0':
+ resolution: {integrity: sha512-jSqRnZvkT4egkq/7b6/QRCNXmmYVcHwnJldqJ3IhVpQE2atObVJ137xmGeuGFhjFUr8gCEVAOKwSY79OvpbDaQ==}
+
+ '@smithy/config-resolver@3.0.12':
+ resolution: {integrity: sha512-YAJP9UJFZRZ8N+UruTeq78zkdjUHmzsY62J4qKWZ4SXB4QXJ/+680EfXXgkYA2xj77ooMqtUY9m406zGNqwivQ==}
+ engines: {node: '>=16.0.0'}
+
+ '@smithy/core@2.5.4':
+ resolution: {integrity: sha512-iFh2Ymn2sCziBRLPuOOxRPkuCx/2gBdXtBGuCUFLUe6bWYjKnhHyIPqGeNkLZ5Aco/5GjebRTBFiWID3sDbrKw==}
+ engines: {node: '>=16.0.0'}
+
+ '@smithy/credential-provider-imds@3.2.7':
+ resolution: {integrity: sha512-cEfbau+rrWF8ylkmmVAObOmjbTIzKyUC5TkBL58SbLywD0RCBC4JAUKbmtSm2w5KUJNRPGgpGFMvE2FKnuNlWQ==}
+ engines: {node: '>=16.0.0'}
+
+ '@smithy/eventstream-codec@1.1.0':
+ resolution: {integrity: sha512-3tEbUb8t8an226jKB6V/Q2XU/J53lCwCzULuBPEaF4JjSh+FlCMp7TmogE/Aij5J9DwlsZ4VAD/IRDuQ/0ZtMw==}
+
+ '@smithy/eventstream-codec@3.1.9':
+ resolution: {integrity: sha512-F574nX0hhlNOjBnP+noLtsPFqXnWh2L0+nZKCwcu7P7J8k+k+rdIDs+RMnrMwrzhUE4mwMgyN0cYnEn0G8yrnQ==}
+
+ '@smithy/eventstream-serde-browser@3.0.13':
+ resolution: {integrity: sha512-Nee9m+97o9Qj6/XeLz2g2vANS2SZgAxV4rDBMKGHvFJHU/xz88x2RwCkwsvEwYjSX4BV1NG1JXmxEaDUzZTAtw==}
+ engines: {node: '>=16.0.0'}
+
+ '@smithy/eventstream-serde-config-resolver@3.0.10':
+ resolution: {integrity: sha512-K1M0x7P7qbBUKB0UWIL5KOcyi6zqV5mPJoL0/o01HPJr0CSq3A9FYuJC6e11EX6hR8QTIR++DBiGrYveOu6trw==}
+ engines: {node: '>=16.0.0'}
+
+ '@smithy/eventstream-serde-node@3.0.12':
+ resolution: {integrity: sha512-kiZymxXvZ4tnuYsPSMUHe+MMfc4FTeFWJIc0Q5wygJoUQM4rVHNghvd48y7ppuulNMbuYt95ah71pYc2+o4JOA==}
+ engines: {node: '>=16.0.0'}
+
+ '@smithy/eventstream-serde-universal@3.0.12':
+ resolution: {integrity: sha512-1i8ifhLJrOZ+pEifTlF0EfZzMLUGQggYQ6WmZ4d5g77zEKf7oZ0kvh1yKWHPjofvOwqrkwRDVuxuYC8wVd662A==}
+ engines: {node: '>=16.0.0'}
+
+ '@smithy/fetch-http-handler@4.1.1':
+ resolution: {integrity: sha512-bH7QW0+JdX0bPBadXt8GwMof/jz0H28I84hU1Uet9ISpzUqXqRQ3fEZJ+ANPOhzSEczYvANNl3uDQDYArSFDtA==}
+
+ '@smithy/hash-blob-browser@3.1.9':
+ resolution: {integrity: sha512-wOu78omaUuW5DE+PVWXiRKWRZLecARyP3xcq5SmkXUw9+utgN8HnSnBfrjL2B/4ZxgqPjaAJQkC/+JHf1ITVaQ==}
+
+ '@smithy/hash-node@3.0.10':
+ resolution: {integrity: sha512-3zWGWCHI+FlJ5WJwx73Mw2llYR8aflVyZN5JhoqLxbdPZi6UyKSdCeXAWJw9ja22m6S6Tzz1KZ+kAaSwvydi0g==}
+ engines: {node: '>=16.0.0'}
+
+ '@smithy/hash-stream-node@3.1.9':
+ resolution: {integrity: sha512-3XfHBjSP3oDWxLmlxnt+F+FqXpL3WlXs+XXaB6bV9Wo8BBu87fK1dSEsyH7Z4ZHRmwZ4g9lFMdf08m9hoX1iRA==}
+ engines: {node: '>=16.0.0'}
+
+ '@smithy/invalid-dependency@3.0.10':
+ resolution: {integrity: sha512-Lp2L65vFi+cj0vFMu2obpPW69DU+6O5g3086lmI4XcnRCG8PxvpWC7XyaVwJCxsZFzueHjXnrOH/E0pl0zikfA==}
+
+ '@smithy/is-array-buffer@1.1.0':
+ resolution: {integrity: sha512-twpQ/n+3OWZJ7Z+xu43MJErmhB/WO/mMTnqR6PwWQShvSJ/emx5d1N59LQZk6ZpTAeuRWrc+eHhkzTp9NFjNRQ==}
+ engines: {node: '>=14.0.0'}
+
+ '@smithy/is-array-buffer@2.2.0':
+ resolution: {integrity: sha512-GGP3O9QFD24uGeAXYUjwSTXARoqpZykHadOmA8G5vfJPK0/DC67qa//0qvqrJzL1xc8WQWX7/yc7fwudjPHPhA==}
+ engines: {node: '>=14.0.0'}
+
+ '@smithy/is-array-buffer@3.0.0':
+ resolution: {integrity: sha512-+Fsu6Q6C4RSJiy81Y8eApjEB5gVtM+oFKTffg+jSuwtvomJJrhUJBu2zS8wjXSgH/g1MKEWrzyChTBe6clb5FQ==}
+ engines: {node: '>=16.0.0'}
+
+ '@smithy/md5-js@3.0.10':
+ resolution: {integrity: sha512-m3bv6dApflt3fS2Y1PyWPUtRP7iuBlvikEOGwu0HsCZ0vE7zcIX+dBoh3e+31/rddagw8nj92j0kJg2TfV+SJA==}
+
+ '@smithy/middleware-content-length@3.0.12':
+ resolution: {integrity: sha512-1mDEXqzM20yywaMDuf5o9ue8OkJ373lSPbaSjyEvkWdqELhFMyNNgKGWL/rCSf4KME8B+HlHKuR8u9kRj8HzEQ==}
+ engines: {node: '>=16.0.0'}
+
+ '@smithy/middleware-endpoint@3.2.4':
+ resolution: {integrity: sha512-TybiW2LA3kYVd3e+lWhINVu1o26KJbBwOpADnf0L4x/35vLVica77XVR5hvV9+kWeTGeSJ3IHTcYxbRxlbwhsg==}
+ engines: {node: '>=16.0.0'}
+
+ '@smithy/middleware-retry@3.0.28':
+ resolution: {integrity: sha512-vK2eDfvIXG1U64FEUhYxoZ1JSj4XFbYWkK36iz02i3pFwWiDz1Q7jKhGTBCwx/7KqJNk4VS7d7cDLXFOvP7M+g==}
+ engines: {node: '>=16.0.0'}
+
+ '@smithy/middleware-serde@3.0.10':
+ resolution: {integrity: sha512-MnAuhh+dD14F428ubSJuRnmRsfOpxSzvRhaGVTvd/lrUDE3kxzCCmH8lnVTvoNQnV2BbJ4c15QwZ3UdQBtFNZA==}
+ engines: {node: '>=16.0.0'}
+
+ '@smithy/middleware-stack@3.0.10':
+ resolution: {integrity: sha512-grCHyoiARDBBGPyw2BeicpjgpsDFWZZxptbVKb3CRd/ZA15F/T6rZjCCuBUjJwdck1nwUuIxYtsS4H9DDpbP5w==}
+ engines: {node: '>=16.0.0'}
+
+ '@smithy/node-config-provider@3.1.11':
+ resolution: {integrity: sha512-URq3gT3RpDikh/8MBJUB+QGZzfS7Bm6TQTqoh4CqE8NBuyPkWa5eUXj0XFcFfeZVgg3WMh1u19iaXn8FvvXxZw==}
+ engines: {node: '>=16.0.0'}
+
+ '@smithy/node-http-handler@3.3.1':
+ resolution: {integrity: sha512-fr+UAOMGWh6bn4YSEezBCpJn9Ukp9oR4D32sCjCo7U81evE11YePOQ58ogzyfgmjIO79YeOdfXXqr0jyhPQeMg==}
+ engines: {node: '>=16.0.0'}
+
+ '@smithy/property-provider@3.1.10':
+ resolution: {integrity: sha512-n1MJZGTorTH2DvyTVj+3wXnd4CzjJxyXeOgnTlgNVFxaaMeT4OteEp4QrzF8p9ee2yg42nvyVK6R/awLCakjeQ==}
+ engines: {node: '>=16.0.0'}
+
+ '@smithy/protocol-http@1.2.0':
+ resolution: {integrity: sha512-GfGfruksi3nXdFok5RhgtOnWe5f6BndzYfmEXISD+5gAGdayFGpjWu5pIqIweTudMtse20bGbc+7MFZXT1Tb8Q==}
+ engines: {node: '>=14.0.0'}
+
+ '@smithy/protocol-http@4.1.7':
+ resolution: {integrity: sha512-FP2LepWD0eJeOTm0SjssPcgqAlDFzOmRXqXmGhfIM52G7Lrox/pcpQf6RP4F21k0+O12zaqQt5fCDOeBtqY6Cg==}
+ engines: {node: '>=16.0.0'}
+
+ '@smithy/querystring-builder@3.0.10':
+ resolution: {integrity: sha512-nT9CQF3EIJtIUepXQuBFb8dxJi3WVZS3XfuDksxSCSn+/CzZowRLdhDn+2acbBv8R6eaJqPupoI/aRFIImNVPQ==}
+ engines: {node: '>=16.0.0'}
+
+ '@smithy/querystring-parser@3.0.10':
+ resolution: {integrity: sha512-Oa0XDcpo9SmjhiDD9ua2UyM3uU01ZTuIrNdZvzwUTykW1PM8o2yJvMh1Do1rY5sUQg4NDV70dMi0JhDx4GyxuQ==}
+ engines: {node: '>=16.0.0'}
+
+ '@smithy/service-error-classification@3.0.10':
+ resolution: {integrity: sha512-zHe642KCqDxXLuhs6xmHVgRwy078RfqxP2wRDpIyiF8EmsWXptMwnMwbVa50lw+WOGNrYm9zbaEg0oDe3PTtvQ==}
+ engines: {node: '>=16.0.0'}
+
+ '@smithy/shared-ini-file-loader@3.1.11':
+ resolution: {integrity: sha512-AUdrIZHFtUgmfSN4Gq9nHu3IkHMa1YDcN+s061Nfm+6pQ0mJy85YQDB0tZBCmls0Vuj22pLwDPmL92+Hvfwwlg==}
+ engines: {node: '>=16.0.0'}
+
+ '@smithy/signature-v4@1.1.0':
+ resolution: {integrity: sha512-fDo3m7YqXBs7neciOePPd/X9LPm5QLlDMdIC4m1H6dgNLnXfLMFNIxEfPyohGA8VW9Wn4X8lygnPSGxDZSmp0Q==}
+ engines: {node: '>=14.0.0'}
+
+ '@smithy/signature-v4@4.2.3':
+ resolution: {integrity: sha512-pPSQQ2v2vu9vc8iew7sszLd0O09I5TRc5zhY71KA+Ao0xYazIG+uLeHbTJfIWGO3BGVLiXjUr3EEeCcEQLjpWQ==}
+ engines: {node: '>=16.0.0'}
+
+ '@smithy/smithy-client@3.4.5':
+ resolution: {integrity: sha512-k0sybYT9zlP79sIKd1XGm4TmK0AS1nA2bzDHXx7m0nGi3RQ8dxxQUs4CPkSmQTKAo+KF9aINU3KzpGIpV7UoMw==}
+ engines: {node: '>=16.0.0'}
+
+ '@smithy/types@1.2.0':
+ resolution: {integrity: sha512-z1r00TvBqF3dh4aHhya7nz1HhvCg4TRmw51fjMrh5do3h+ngSstt/yKlNbHeb9QxJmFbmN8KEVSWgb1bRvfEoA==}
+ engines: {node: '>=14.0.0'}
+
+ '@smithy/types@3.7.1':
+ resolution: {integrity: sha512-XKLcLXZY7sUQgvvWyeaL/qwNPp6V3dWcUjqrQKjSb+tzYiCy340R/c64LV5j+Tnb2GhmunEX0eou+L+m2hJNYA==}
+ engines: {node: '>=16.0.0'}
+
+ '@smithy/url-parser@3.0.10':
+ resolution: {integrity: sha512-j90NUalTSBR2NaZTuruEgavSdh8MLirf58LoGSk4AtQfyIymogIhgnGUU2Mga2bkMkpSoC9gxb74xBXL5afKAQ==}
+
+ '@smithy/util-base64@3.0.0':
+ resolution: {integrity: sha512-Kxvoh5Qtt0CDsfajiZOCpJxgtPHXOKwmM+Zy4waD43UoEMA+qPxxa98aE/7ZhdnBFZFXMOiBR5xbcaMhLtznQQ==}
+ engines: {node: '>=16.0.0'}
+
+ '@smithy/util-body-length-browser@3.0.0':
+ resolution: {integrity: sha512-cbjJs2A1mLYmqmyVl80uoLTJhAcfzMOyPgjwAYusWKMdLeNtzmMz9YxNl3/jRLoxSS3wkqkf0jwNdtXWtyEBaQ==}
+
+ '@smithy/util-body-length-node@3.0.0':
+ resolution: {integrity: sha512-Tj7pZ4bUloNUP6PzwhN7K386tmSmEET9QtQg0TgdNOnxhZvCssHji+oZTUIuzxECRfG8rdm2PMw2WCFs6eIYkA==}
+ engines: {node: '>=16.0.0'}
+
+ '@smithy/util-buffer-from@1.1.0':
+ resolution: {integrity: sha512-9m6NXE0ww+ra5HKHCHig20T+FAwxBAm7DIdwc/767uGWbRcY720ybgPacQNB96JMOI7xVr/CDa3oMzKmW4a+kw==}
+ engines: {node: '>=14.0.0'}
+
+ '@smithy/util-buffer-from@2.2.0':
+ resolution: {integrity: sha512-IJdWBbTcMQ6DA0gdNhh/BwrLkDR+ADW5Kr1aZmd4k3DIF6ezMV4R2NIAmT08wQJ3yUK82thHWmC/TnK/wpMMIA==}
+ engines: {node: '>=14.0.0'}
+
+ '@smithy/util-buffer-from@3.0.0':
+ resolution: {integrity: sha512-aEOHCgq5RWFbP+UDPvPot26EJHjOC+bRgse5A8V3FSShqd5E5UN4qc7zkwsvJPPAVsf73QwYcHN1/gt/rtLwQA==}
+ engines: {node: '>=16.0.0'}
+
+ '@smithy/util-config-provider@3.0.0':
+ resolution: {integrity: sha512-pbjk4s0fwq3Di/ANL+rCvJMKM5bzAQdE5S/6RL5NXgMExFAi6UgQMPOm5yPaIWPpr+EOXKXRonJ3FoxKf4mCJQ==}
+ engines: {node: '>=16.0.0'}
+
+ '@smithy/util-defaults-mode-browser@3.0.28':
+ resolution: {integrity: sha512-6bzwAbZpHRFVJsOztmov5PGDmJYsbNSoIEfHSJJyFLzfBGCCChiO3od9k7E/TLgrCsIifdAbB9nqbVbyE7wRUw==}
+ engines: {node: '>= 10.0.0'}
+
+ '@smithy/util-defaults-mode-node@3.0.28':
+ resolution: {integrity: sha512-78ENJDorV1CjOQselGmm3+z7Yqjj5HWCbjzh0Ixuq736dh1oEnD9sAttSBNSLlpZsX8VQnmERqA2fEFlmqWn8w==}
+ engines: {node: '>= 10.0.0'}
+
+ '@smithy/util-endpoints@2.1.6':
+ resolution: {integrity: sha512-mFV1t3ndBh0yZOJgWxO9J/4cHZVn5UG1D8DeCc6/echfNkeEJWu9LD7mgGH5fHrEdR7LDoWw7PQO6QiGpHXhgA==}
+ engines: {node: '>=16.0.0'}
+
+ '@smithy/util-hex-encoding@1.1.0':
+ resolution: {integrity: sha512-7UtIE9eH0u41zpB60Jzr0oNCQ3hMJUabMcKRUVjmyHTXiWDE4vjSqN6qlih7rCNeKGbioS7f/y2Jgym4QZcKFg==}
+ engines: {node: '>=14.0.0'}
+
+ '@smithy/util-hex-encoding@3.0.0':
+ resolution: {integrity: sha512-eFndh1WEK5YMUYvy3lPlVmYY/fZcQE1D8oSf41Id2vCeIkKJXPcYDCZD+4+xViI6b1XSd7tE+s5AmXzz5ilabQ==}
+ engines: {node: '>=16.0.0'}
+
+ '@smithy/util-middleware@1.1.0':
+ resolution: {integrity: sha512-6hhckcBqVgjWAqLy2vqlPZ3rfxLDhFWEmM7oLh2POGvsi7j0tHkbN7w4DFhuBExVJAbJ/qqxqZdRY6Fu7/OezQ==}
+ engines: {node: '>=14.0.0'}
+
+ '@smithy/util-middleware@3.0.10':
+ resolution: {integrity: sha512-eJO+/+RsrG2RpmY68jZdwQtnfsxjmPxzMlQpnHKjFPwrYqvlcT+fHdT+ZVwcjlWSrByOhGr9Ff2GG17efc192A==}
+ engines: {node: '>=16.0.0'}
+
+ '@smithy/util-retry@3.0.10':
+ resolution: {integrity: sha512-1l4qatFp4PiU6j7UsbasUHL2VU023NRB/gfaa1M0rDqVrRN4g3mCArLRyH3OuktApA4ye+yjWQHjdziunw2eWA==}
+ engines: {node: '>=16.0.0'}
+
+ '@smithy/util-stream@3.3.1':
+ resolution: {integrity: sha512-Ff68R5lJh2zj+AUTvbAU/4yx+6QPRzg7+pI7M1FbtQHcRIp7xvguxVsQBKyB3fwiOwhAKu0lnNyYBaQfSW6TNw==}
+ engines: {node: '>=16.0.0'}
+
+ '@smithy/util-uri-escape@1.1.0':
+ resolution: {integrity: sha512-/jL/V1xdVRt5XppwiaEU8Etp5WHZj609n0xMTuehmCqdoOFbId1M+aEeDWZsQ+8JbEB/BJ6ynY2SlYmOaKtt8w==}
+ engines: {node: '>=14.0.0'}
+
+ '@smithy/util-uri-escape@3.0.0':
+ resolution: {integrity: sha512-LqR7qYLgZTD7nWLBecUi4aqolw8Mhza9ArpNEQ881MJJIU2sE5iHCK6TdyqqzcDLy0OPe10IY4T8ctVdtynubg==}
+ engines: {node: '>=16.0.0'}
+
+ '@smithy/util-utf8@1.1.0':
+ resolution: {integrity: sha512-p/MYV+JmqmPyjdgyN2UxAeYDj9cBqCjp0C/NsTWnnjoZUVqoeZ6IrW915L9CAKWVECgv9lVQGc4u/yz26/bI1A==}
+ engines: {node: '>=14.0.0'}
+
+ '@smithy/util-utf8@2.3.0':
+ resolution: {integrity: sha512-R8Rdn8Hy72KKcebgLiv8jQcQkXoLMOGGv5uI1/k0l+snqkOzQ1R0ChUBCxWMlBsFMekWjq0wRudIweFs7sKT5A==}
+ engines: {node: '>=14.0.0'}
+
+ '@smithy/util-utf8@3.0.0':
+ resolution: {integrity: sha512-rUeT12bxFnplYDe815GXbq/oixEGHfRFFtcTF3YdDi/JaENIM6aSYYLJydG83UNzLXeRI5K8abYd/8Sp/QM0kA==}
+ engines: {node: '>=16.0.0'}
+
+ '@smithy/util-waiter@3.1.9':
+ resolution: {integrity: sha512-/aMXPANhMOlMPjfPtSrDfPeVP8l56SJlz93xeiLmhLe5xvlXA5T3abZ2ilEsDEPeY9T/wnN/vNGn9wa1SbufWA==}
+ engines: {node: '>=16.0.0'}
+
+ '@sparticuz/chromium@121.0.0':
+ resolution: {integrity: sha512-0DiRzlCJljjMKOUh0W36zeR1ibG7EZkwIG+ve8Lg0+tbCM6TWaFlHMSt/6K6Y7o7PFy3eaPoLrUvGRRYUvd81g==}
+ engines: {node: '>= 16'}
+
+ '@std-uritemplate/std-uritemplate@1.0.6':
+ resolution: {integrity: sha512-+S9kAqK60nZZyvhvesoXut6NB9qB80VTpNsdiOeHmE0FAMOEsJy9/dakDL3xMp3kNRFvviw0mX9WPSuasvSxCQ==}
+
+ '@stylistic/eslint-plugin-js@2.11.0':
+ resolution: {integrity: sha512-btchD0P3iij6cIk5RR5QMdEhtCCV0+L6cNheGhGCd//jaHILZMTi/EOqgEDAf1s4ZoViyExoToM+S2Iwa3U9DA==}
+ engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
+ peerDependencies:
+ eslint: '>=8.40.0'
+
+ '@stylistic/eslint-plugin-jsx@2.11.0':
+ resolution: {integrity: sha512-WmkdlAWkEhqSZ6VvwOOpr8Ee+Y9i8UzgXwz99pN7ZH0M0MEJCLtMKFKmfPNGLWCYvxoD6rXtZmzqeTMhvO3OkA==}
+ engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
+ peerDependencies:
+ eslint: '>=8.40.0'
+
+ '@stylistic/eslint-plugin-ts@2.11.0':
+ resolution: {integrity: sha512-ZBxnfSjzxUiwCibbVCeYCYwZw+P5xaQw+pNA8B8uR42fdMQIOhUstXjJuS2nTHoW5CF4+vGSxbL4gklI8WxhyA==}
+ engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
+ peerDependencies:
+ eslint: '>=8.40.0'
+
+ '@supabase/auth-js@2.65.1':
+ resolution: {integrity: sha512-IA7i2Xq2SWNCNMKxwmPlHafBQda0qtnFr8QnyyBr+KaSxoXXqEzFCnQ1dGTy6bsZjVBgXu++o3qrDypTspaAPw==}
+
+ '@supabase/functions-js@2.4.3':
+ resolution: {integrity: sha512-sOLXy+mWRyu4LLv1onYydq+10mNRQ4rzqQxNhbrKLTLTcdcmS9hbWif0bGz/NavmiQfPs4ZcmQJp4WqOXlR4AQ==}
+
+ '@supabase/node-fetch@2.6.15':
+ resolution: {integrity: sha512-1ibVeYUacxWYi9i0cf5efil6adJ9WRyZBLivgjs+AUpewx1F3xPi7gLgaASI2SmIQxPoCEjAsLAzKPgMJVgOUQ==}
+ engines: {node: 4.x || >=6.0.0}
+
+ '@supabase/postgrest-js@1.16.3':
+ resolution: {integrity: sha512-HI6dsbW68AKlOPofUjDTaosiDBCtW4XAm0D18pPwxoW3zKOE2Ru13Z69Wuys9fd6iTpfDViNco5sgrtnP0666A==}
+
+ '@supabase/realtime-js@2.10.7':
+ resolution: {integrity: sha512-OLI0hiSAqQSqRpGMTUwoIWo51eUivSYlaNBgxsXZE7PSoWh12wPRdVt0psUMaUzEonSB85K21wGc7W5jHnT6uA==}
+
+ '@supabase/storage-js@2.7.1':
+ resolution: {integrity: sha512-asYHcyDR1fKqrMpytAS1zjyEfvxuOIp1CIXX7ji4lHHcJKqyk+sLl/Vxgm4sN6u8zvuUtae9e4kDxQP2qrwWBA==}
+
+ '@supabase/supabase-js@2.46.1':
+ resolution: {integrity: sha512-HiBpd8stf7M6+tlr+/82L8b2QmCjAD8ex9YdSAKU+whB/SHXXJdus1dGlqiH9Umy9ePUuxaYmVkGd9BcvBnNvg==}
+
+ '@swc/counter@0.1.3':
+ resolution: {integrity: sha512-e2BR4lsJkkRlKZ/qCHPw9ZaSxc0MVUd7gtbtaB7aMvHeJVYe8sOB8DBZkP2DtISHGSku9sCK6T6cnY0CtXrOCQ==}
+
+ '@swc/helpers@0.5.13':
+ resolution: {integrity: sha512-UoKGxQ3r5kYI9dALKJapMmuK+1zWM/H17Z1+iwnNmzcJRnfFuevZs375TA5rW31pu4BS4NoSy1fRsexDXfWn5w==}
+
+ '@szmarczak/http-timer@4.0.6':
+ resolution: {integrity: sha512-4BAffykYOgO+5nzBWYwE3W90sBgLJoUPRWWcL8wlyiM8IB8ipJz3UMJ9KXQd1RKQXpKp8Tutn80HZtWsu2u76w==}
+ engines: {node: '>=10'}
+
+ '@szmarczak/http-timer@5.0.1':
+ resolution: {integrity: sha512-+PmQX0PiAYPMeVYe237LJAYvOMYW1j2rH5YROyS3b4CTVJum34HfRvKvAzozHAQG0TnHNdUfY9nCeUyRAs//cw==}
+ engines: {node: '>=14.16'}
+
+ '@tanstack/query-core@5.60.6':
+ resolution: {integrity: sha512-tI+k0KyCo1EBJ54vxK1kY24LWj673ujTydCZmzEZKAew4NqZzTaVQJEuaG1qKj2M03kUHN46rchLRd+TxVq/zQ==}
+
+ '@tanstack/react-query@5.61.0':
+ resolution: {integrity: sha512-SBzV27XAeCRBOQ8QcC94w2H1Md0+LI0gTWwc3qRJoaGuewKn5FNW4LSqwPFJZVEItfhMfGT7RpZuSFXjTi12pQ==}
+ peerDependencies:
+ react: ^18 || ^19
+
+ '@techteamer/ocsp@1.0.0':
+ resolution: {integrity: sha512-lNAOoFHaZN+4huo30ukeqVrUmfC+avoEBYQ11QAnAw1PFhnI5oBCg8O/TNiCoEWix7gNGBIEjrQwtPREqKMPog==}
+
+ '@tediousjs/connection-string@0.5.0':
+ resolution: {integrity: sha512-7qSgZbincDDDFyRweCIEvZULFAw5iz/DeunhvuxpL31nfntX3P4Yd4HkHBRg9H8CdqY1e5WFN1PZIz/REL9MVQ==}
+
+ '@tokenizer/token@0.3.0':
+ resolution: {integrity: sha512-OvjF+z51L3ov0OyAU0duzsYuvO01PH7x4t6DJx+guahgTnBHkhJdG7soQeTSFLWN3efnHyibZ4Z8l2EuWwJN3A==}
+
+ '@tootallnate/once@1.1.2':
+ resolution: {integrity: sha512-RbzJvlNzmRq5c3O09UipeuXno4tA1FE6ikOjxZK0tuxVv3412l64l5t1W5pj4+rJq9vpkm/kwiR07aZXnsKPxw==}
+ engines: {node: '>= 6'}
+
+ '@tootallnate/once@2.0.0':
+ resolution: {integrity: sha512-XCuKFP5PS55gnMVu3dty8KPatLqUoy/ZYzDzAGCQ8JNFCkLXzmI7vNHCR+XpbZaMWQK/vQubr7PkYq8g470J/A==}
+ engines: {node: '>= 10'}
+
+ '@tootallnate/quickjs-emscripten@0.23.0':
+ resolution: {integrity: sha512-C5Mc6rdnsaJDjO3UpGW/CQTHtCKaYlScZTly4JIu97Jxo/odCiH0ITnDXSJPTOrEKk/ycSZ0AOgTmkDtkOsvIA==}
+
+ '@tryfabric/martian@1.2.4':
+ resolution: {integrity: sha512-g7SP7beaxrjxLnW//vskra07a1jsJowqp07KMouxh4gCwaF+ItHbRZN8O+1dhJivBi3VdasT71BPyk+8wzEreQ==}
+ engines: {node: '>=15'}
+
+ '@tsconfig/node14@1.0.3':
+ resolution: {integrity: sha512-ysT8mhdixWK6Hw3i1V2AeRqZ5WfXg1G43mqoYlM2nc6388Fq5jcXyr5mRsqViLx/GJYdoL0bfXD8nmF+Zn/Iow==}
+
+ '@types/argparse@1.0.38':
+ resolution: {integrity: sha512-ebDJ9b0e702Yr7pWgB0jzm+CX4Srzz8RcXtLJDJB+BSccqMa36uyH/zUsSYao5+BD1ytv3k3rPYCq4mAE1hsXA==}
+
+ '@types/axios@0.14.4':
+ resolution: {integrity: sha512-9JgOaunvQdsQ/qW2OPmE5+hCeUB52lQSolecrFrthct55QekhmXEwT203s20RL+UHtCQc15y3VXpby9E7Kkh/g==}
+ deprecated: This is a stub types definition. axios provides its own type definitions, so you do not need this installed.
+
+ '@types/babel__core@7.20.5':
+ resolution: {integrity: sha512-qoQprZvz5wQFJwMDqeseRXWv3rqMvhgpbXFfVyWhbx9X47POIA6i/+dXefEmZKoAgOaTdaIgNSMqMIU61yRyzA==}
+
+ '@types/babel__generator@7.6.8':
+ resolution: {integrity: sha512-ASsj+tpEDsEiFr1arWrlN6V3mdfjRMZt6LtK/Vp/kreFLnr5QH5+DhvD5nINYZXzwJvXeGq+05iUXcAzVrqWtw==}
+
+ '@types/babel__template@7.4.4':
+ resolution: {integrity: sha512-h/NUaSyG5EyxBIp8YRxo4RMe2/qQgvyowRwVMzhYhBCONbW8PUsg4lkFMrhgZhUe5z3L3MiLDuvyJ/CaPa2A8A==}
+
+ '@types/babel__traverse@7.20.6':
+ resolution: {integrity: sha512-r1bzfrm0tomOI8g1SzvCaQHo6Lcv6zu0EA+W2kHrt8dyrHQxGzBBL4kdkzIS+jBMV+EYcMAEAqXqYaLJq5rOZg==}
+
+ '@types/body-parser@1.19.5':
+ resolution: {integrity: sha512-fB3Zu92ucau0iQ0JMCFQE7b/dv8Ot07NI3KaZIkIUNXq82k4eBAqUaneXfleGY9JWskeS9y+u0nXMyspcuQrCg==}
+
+ '@types/cacheable-request@6.0.3':
+ resolution: {integrity: sha512-IQ3EbTzGxIigb1I3qPZc1rWJnH0BmSKv5QYTalEwweFvyBDLSAe24zP0le/hyi7ecGfZVlIVAg4BZqb8WBwKqw==}
+
+ '@types/caseless@0.12.5':
+ resolution: {integrity: sha512-hWtVTC2q7hc7xZ/RLbxapMvDMgUnDvKvMOpKal4DrMyfGBUfB1oKaZlIRr6mJL+If3bAP6sV/QneGzF6tJjZDg==}
+
+ '@types/connect@3.4.38':
+ resolution: {integrity: sha512-K6uROf1LD88uDQqJCktA4yzL1YYAK6NgfsI0v/mTgyPKWsX1CnJ0XPSDhViejru1GcRkLWb8RlzFYJRqGUbaug==}
+
+ '@types/debug@4.1.12':
+ resolution: {integrity: sha512-vIChWdVG3LG1SMxEvI/AK+FWJthlrqlTu7fbrlywTkkaONwk/UAGaULXRlf8vkzFBLVm0zkMdCquhL5aOjhXPQ==}
+
+ '@types/duplexify@3.6.4':
+ resolution: {integrity: sha512-2eahVPsd+dy3CL6FugAzJcxoraWhUghZGEQJns1kTKfCXWKJ5iG/VkaB05wRVrDKHfOFKqb0X0kXh91eE99RZg==}
+
+ '@types/estree-jsx@1.0.5':
+ resolution: {integrity: sha512-52CcUVNFyfb1A2ALocQw/Dd1BQFNmSdkuC3BkZ6iqhdMfQz7JWOFRuJFloOzjk+6WijU56m9oKXFAXc7o3Towg==}
+
+ '@types/estree@1.0.6':
+ resolution: {integrity: sha512-AYnb1nQyY49te+VRAVgmzfcgjYS91mY5P0TKUDCLEM+gNnA+3T6rWITXRLYCpahpqSQbN5cE+gHpnPyXjHWxcw==}
+
+ '@types/express-serve-static-core@4.19.6':
+ resolution: {integrity: sha512-N4LZ2xG7DatVqhCZzOGb1Yi5lMbXSZcmdLDe9EzSndPV2HpWYWzRbaerl2n27irrm94EPpprqa8KpskPT085+A==}
+
+ '@types/express@4.17.21':
+ resolution: {integrity: sha512-ejlPM315qwLpaQlQDTjPdsUFSc6ZsP4AN6AlWnogPjQ7CVi7PYF3YVz+CY3jE2pwYf7E/7HlDAN0rV2GxTG0HQ==}
+
+ '@types/feedparser@2.2.8':
+ resolution: {integrity: sha512-hIxDfr1VSgxZazxZZEGzbgDEQHtxWtMjLh7xAzuld/IA8xmneak9I16R0mA7Tnb10/McjE177H9daAyYBwTQOw==}
+
+ '@types/fetch-mock@7.3.8':
+ resolution: {integrity: sha512-ztsIGiyUvD0GaqPc9/hb8k20gnr6lupqA6SFtqt+8v2mtHhNO/Ebb6/b7N6af/7x0A7s1C8nxrEGzajMBqz8qA==}
+
+ '@types/glob@7.2.0':
+ resolution: {integrity: sha512-ZUxbzKl0IfJILTS6t7ip5fQQM/J3TJYubDm3nMbgubNNYS62eXeUpoLUC8/7fJNiFYHTrGPQn7hspDUzIHX3UA==}
+
+ '@types/glob@8.1.0':
+ resolution: {integrity: sha512-IO+MJPVhoqz+28h1qLAcBEH2+xHMK6MTyHJc7MTnnYb6wsoLR29POVGJ7LycmVXIqyy/4/2ShP5sUwTXuOwb/w==}
+
+ '@types/graceful-fs@4.1.9':
+ resolution: {integrity: sha512-olP3sd1qOEe5dXTSaFvQG+02VdRXcdytWLAZsAq1PecU8uqQAhkrnbli7DagjtXKW/Bl7YJbUsa8MPcuc8LHEQ==}
+
+ '@types/hast@3.0.4':
+ resolution: {integrity: sha512-WPs+bbQw5aCj+x6laNGWLH3wviHtoCv/P3+otBhbOhJgG8qtpdAMlTCxLtsTWA7LH1Oh/bFCHsBn0TPS5m30EQ==}
+
+ '@types/http-cache-semantics@4.0.4':
+ resolution: {integrity: sha512-1m0bIFVc7eJWyve9S0RnuRgcQqF/Xd5QsUZAZeQFr1Q3/p9JWoQQEqmVy+DPTNpGXwhgIetAoYF8JSc33q29QA==}
+
+ '@types/http-errors@2.0.4':
+ resolution: {integrity: sha512-D0CFMMtydbJAegzOyHjtiKPLlvnm3iTZyZRSZoLq2mRhDdmLfIWOCYPfQJ4cu2erKghU++QvjcUjp/5h7hESpA==}
+
+ '@types/is-stream@1.1.0':
+ resolution: {integrity: sha512-jkZatu4QVbR60mpIzjINmtS1ZF4a/FqdTUTBeQDVOQ2PYyidtwFKr0B5G6ERukKwliq+7mIXvxyppwzG5EgRYg==}
+
+ '@types/istanbul-lib-coverage@2.0.6':
+ resolution: {integrity: sha512-2QF/t/auWm0lsy8XtKVPG19v3sSOQlJe/YHZgfjb/KBBHOGSV+J2q/S671rcq9uTBrLAXmZpqJiaQbMT+zNU1w==}
+
+ '@types/istanbul-lib-report@3.0.3':
+ resolution: {integrity: sha512-NQn7AHQnk/RSLOxrBbGyJM/aVQ+pjj5HCgasFxc0K/KhoATfQ/47AyUl15I2yBUpihjmas+a+VJBOqecrFH+uA==}
+
+ '@types/istanbul-reports@3.0.4':
+ resolution: {integrity: sha512-pk2B1NWalF9toCRu6gjBzR69syFjP4Od8WRAX+0mmf9lAjCRicLOWc+ZrxZHx/0XRjotgkF9t6iaMJ+aXcOdZQ==}
+
+ '@types/jest@27.5.2':
+ resolution: {integrity: sha512-mpT8LJJ4CMeeahobofYWIjFo0xonRS/HfxnVEPMPFSQdGUt1uHCnoPT7Zhb+sjDU2wz0oKV0OLUR0WzrHNgfeA==}
+
+ '@types/jest@29.5.14':
+ resolution: {integrity: sha512-ZN+4sdnLUbo8EVvVc2ao0GFW6oVrQRPn4K2lglySj7APvSrgzxHiNNK99us4WDMi57xxA2yggblIAMNhXOotLQ==}
+
+ '@types/json-schema@7.0.15':
+ resolution: {integrity: sha512-5+fP8P8MFNC+AyZCDxrB2pkZFPGzqQWUzpSeuuVLvm8VMcorNYavBqoFcxK8bQz4Qsbn4oUEEem4wDLfcysGHA==}
+
+ '@types/json5@0.0.29':
+ resolution: {integrity: sha512-dRLjCWHYg4oaA77cxO64oO+7JwCwnIzkZPdrrC71jQmQtlhM556pwKo5bUzqvZndkVbeFLIIi+9TC40JNF5hNQ==}
+
+ '@types/jsonwebtoken@8.5.9':
+ resolution: {integrity: sha512-272FMnFGzAVMGtu9tkr29hRL6bZj4Zs1KZNeHLnKqAvp06tAIcarTMwOh8/8bz4FmKRcMxZhZNeUAQsNLoiPhg==}
+
+ '@types/keyv@3.1.4':
+ resolution: {integrity: sha512-BQ5aZNSCpj7D6K2ksrRCTmKRLEpnPvWDiLPfoGyhZ++8YtiK9d/3DBKPJgry359X/P1PfruyYwvnvwFjuEiEIg==}
+
+ '@types/linkify-it@5.0.0':
+ resolution: {integrity: sha512-sVDA58zAw4eWAffKOaQH5/5j3XeayukzDk+ewSsnv3p4yJEZHCCzMDiZM8e0OUrRvmpGZ85jf4yDHkHsgBNr9Q==}
+
+ '@types/lodash-es@4.17.12':
+ resolution: {integrity: sha512-0NgftHUcV4v34VhXm8QBSftKVXtbkBG3ViCjs6+eJ5a6y6Mi/jiFGPc1sC7QK+9BFhWrURE3EOggmWaSxL9OzQ==}
+
+ '@types/lodash.isequal@4.5.8':
+ resolution: {integrity: sha512-uput6pg4E/tj2LGxCZo9+y27JNyB2OZuuI/T5F+ylVDYuqICLG2/ktjxx0v6GvVntAf8TvEzeQLcV0ffRirXuA==}
+
+ '@types/lodash@4.17.13':
+ resolution: {integrity: sha512-lfx+dftrEZcdBPczf9d0Qv0x+j/rfNCMuC6OcfXmO8gkfeNAY88PgKUbvG56whcN23gc27yenwF6oJZXGFpYxg==}
+
+ '@types/long@4.0.2':
+ resolution: {integrity: sha512-MqTGEo5bj5t157U6fA/BiDynNkn0YknVdh48CMPkTSpFTVmvao5UQmm7uEF6xBEo7qIMAlY/JSleYaE6VOdpaA==}
+
+ '@types/markdown-it@14.1.2':
+ resolution: {integrity: sha512-promo4eFwuiW+TfGxhi+0x3czqTYJkG8qB17ZUJiVF10Xm7NLVRSLUsfRTU/6h1e24VvRnXCx+hG7li58lkzog==}
+
+ '@types/mdast@3.0.15':
+ resolution: {integrity: sha512-LnwD+mUEfxWMa1QpDraczIn6k0Ee3SMicuYSSzS6ZYl2gKS09EClnJYGd8Du6rfc5r/GZEk5o1mRb8TaTj03sQ==}
+
+ '@types/mdast@4.0.4':
+ resolution: {integrity: sha512-kGaNbPh1k7AFzgpud/gMdvIm5xuECykRR+JnWKQno9TAXVa6WIVCGTPvYGekIDL4uwCZQSYbUxNBSb1aUo79oA==}
+
+ '@types/mdurl@2.0.0':
+ resolution: {integrity: sha512-RGdgjQUZba5p6QEFAVx2OGb8rQDL/cPRG7GiedRzMcJ1tYnUANBncjbSB1NRGwbvjcPeikRABz2nshyPk1bhWg==}
+
+ '@types/mime@1.3.5':
+ resolution: {integrity: sha512-/pyBZWSLD2n0dcHE3hq8s8ZvcETHtEuF+3E7XVt0Ig2nvsVQXdghHVcEkIWjy9A0wKfTn97a/PSDYohKIlnP/w==}
+
+ '@types/minimatch@5.1.2':
+ resolution: {integrity: sha512-K0VQKziLUWkVKiRVrx4a40iPaxTUefQmjtkQofBkYRcoaaL/8rhwDWww9qWbrgicNOgnpIsMxyNIUM4+n6dUIA==}
+
+ '@types/ms@0.7.34':
+ resolution: {integrity: sha512-nG96G3Wp6acyAgJqGasjODb+acrI7KltPiRxzHPXnP3NgI28bpQDRv53olbqGXbfcgF5aiiHmO3xpwEpS5Ld9g==}
+
+ '@types/node-fetch@2.6.12':
+ resolution: {integrity: sha512-8nneRWKCg3rMtF69nLQJnOYUcbafYeFSjqkw3jCRLsqkWFlHaoQrr5mXmofFGOx3DKn7UfmBMyov8ySvLRVldA==}
+
+ '@types/node@14.18.63':
+ resolution: {integrity: sha512-fAtCfv4jJg+ExtXhvCkCqUKZ+4ok/JQk01qDKhL5BDDoS3AxKXhV5/MAVUZyQnSEd2GT92fkgZl0pz0Q0AzcIQ==}
+
+ '@types/node@17.0.45':
+ resolution: {integrity: sha512-w+tIMs3rq2afQdsPJlODhoUEKzFP1ayaoyl1CcnwtIlsVe7K7bA1NGm4s3PraqTLlXnbIN84zuBlxBWo1u9BLw==}
+
+ '@types/node@18.19.64':
+ resolution: {integrity: sha512-955mDqvO2vFf/oL7V3WiUtiz+BugyX8uVbaT2H8oj3+8dRyH2FLiNdowe7eNqRM7IOIZvzDH76EoAT+gwm6aIQ==}
+
+ '@types/node@20.17.6':
+ resolution: {integrity: sha512-VEI7OdvK2wP7XHnsuXbAJnEpEkF6NjSN45QJlL4VGqZSXsnicpesdTWsg9RISeSdYd3yeRj/y3k5KGjUXYnFwQ==}
+
+ '@types/normalize-package-data@2.4.4':
+ resolution: {integrity: sha512-37i+OaWTh9qeK4LSHPsyRC7NahnGotNuZvjLSgcPzblpHB3rrCJxAOgI5gCdKm7coonsaX1Of0ILiTcnZjbfxA==}
+
+ '@types/object-hash@2.2.1':
+ resolution: {integrity: sha512-i/rtaJFCsPljrZvP/akBqEwUP2y5cZLOmvO+JaYnz01aPknrQ+hB5MRcO7iqCUsFaYfTG8kGfKUyboA07xeDHQ==}
+
+ '@types/parse-json@4.0.2':
+ resolution: {integrity: sha512-dISoDXWWQwUquiKsyZ4Ng+HX2KsPL7LyHKHQwgGFEA3IaKac4Obd+h2a/a6waisAoepJlBcx9paWqjA8/HVjCw==}
+
+ '@types/phoenix@1.6.5':
+ resolution: {integrity: sha512-xegpDuR+z0UqG9fwHqNoy3rI7JDlvaPh2TY47Fl80oq6g+hXT+c/LEuE43X48clZ6lOfANl5WrPur9fYO1RJ/w==}
+
+ '@types/prop-types@15.7.13':
+ resolution: {integrity: sha512-hCZTSvwbzWGvhqxp/RqVqwU999pBf2vp7hzIjiYOsl8wqOmUxkQ6ddw1cV3l8811+kdUFus/q4d1Y3E3SyEifA==}
+
+ '@types/qs@6.9.17':
+ resolution: {integrity: sha512-rX4/bPcfmvxHDv0XjfJELTTr+iB+tn032nPILqHm5wbthUUUuVtNGGqzhya9XUxjTP8Fpr0qYgSZZKxGY++svQ==}
+
+ '@types/rails__actioncable@6.1.11':
+ resolution: {integrity: sha512-L6A3Rg6sGsv2cqalOgdOmyFvL1Pw69Mg0WuG6NtY9chzabhtkiSFY5fczo72mqRGezrMvl0Jy80v+N719CW+Tg==}
+
+ '@types/range-parser@1.2.7':
+ resolution: {integrity: sha512-hKormJbkJqzQGhziax5PItDUTMAM9uE2XXQmM37dyd4hVM+5aVl7oVxMVUiVQn2oCQFN/LKCZdvSM0pFRqbSmQ==}
+
+ '@types/react-dom@18.3.1':
+ resolution: {integrity: sha512-qW1Mfv8taImTthu4KoXgDfLuk4bydU6Q/TkADnDWWHwi4NX4BR+LWfTp2sVmTqRrsHvyDDTelgelxJ+SsejKKQ==}
+
+ '@types/react-transition-group@4.4.11':
+ resolution: {integrity: sha512-RM05tAniPZ5DZPzzNFP+DmrcOdD0efDUxMy3145oljWSl3x9ZV5vhme98gTxFrj2lhXvmGNnUiuDyJgY9IKkNA==}
+
+ '@types/react@18.3.12':
+ resolution: {integrity: sha512-D2wOSq/d6Agt28q7rSI3jhU7G6aiuzljDGZ2hTZHIkrTLUI+AF3WMeKkEZ9nN2fkBAlcktT6vcZjDFiIhMYEQw==}
+
+ '@types/readable-stream@4.0.18':
+ resolution: {integrity: sha512-21jK/1j+Wg+7jVw1xnSwy/2Q1VgVjWuFssbYGTREPUBeZ+rqVFl2udq0IkxzPC0ZhOzVceUbyIACFZKLqKEBlA==}
+
+ '@types/request@2.48.12':
+ resolution: {integrity: sha512-G3sY+NpsA9jnwm0ixhAFQSJ3Q9JkpLZpJbI3GMv0mIAT0y3mRabYeINzal5WOChIiaTEGQYlHOKgkaM9EisWHw==}
+
+ '@types/responselike@1.0.3':
+ resolution: {integrity: sha512-H/+L+UkTV33uf49PH5pCAUBVPNj2nDBXTN+qS1dOwyyg24l3CcicicCA7ca+HMvJBZcFgl5r8e+RR6elsb4Lyw==}
+
+ '@types/retry@0.12.0':
+ resolution: {integrity: sha512-wWKOClTTiizcZhXnPY4wikVAwmdYHp8q6DmC+EJUzAMsycb7HB32Kh9RN4+0gExjmPmZSAQjgURXIGATPegAvA==}
+
+ '@types/rimraf@3.0.2':
+ resolution: {integrity: sha512-F3OznnSLAUxFrCEu/L5PY8+ny8DtcFRjx7fZZ9bycvXRi3KPTRS9HOitGZwvPg0juRhXFWIeKX58cnX5YqLohQ==}
+
+ '@types/sax@1.2.7':
+ resolution: {integrity: sha512-rO73L89PJxeYM3s3pPPjiPgVVcymqU490g0YO5n5By0k2Erzj6tay/4lr1CHAAU4JyOWd1rpQ8bCf6cZfHU96A==}
+
+ '@types/send@0.17.4':
+ resolution: {integrity: sha512-x2EM6TJOybec7c52BX0ZspPodMsQUd5L6PRwOunVyVUhXiBSKf3AezDL8Dgvgt5o0UfKNfuA0eMLr2wLT4AiBA==}
+
+ '@types/serve-static@1.15.7':
+ resolution: {integrity: sha512-W8Ym+h8nhuRwaKPaDw34QUkwsGi6Rc4yYqvKFo5rm2FUEhCFbzVWrxXUxuKK8TASjWsysJY0nsmNCGhCOIsrOw==}
+
+ '@types/simple-oauth2@5.0.7':
+ resolution: {integrity: sha512-8JbWVJbiTSBQP/7eiyGKyXWAqp3dKQZpaA+pdW16FCi32ujkzRMG8JfjoAzdWt6W8U591ZNdHcPtP2D7ILTKuA==}
+
+ '@types/source-map@0.5.7':
+ resolution: {integrity: sha512-LrnsgZIfJaysFkv9rRJp4/uAyqw87oVed3s1hhF83nwbo9c7MG9g5DqR0seHP+lkX4ldmMrVolPjQSe2ZfD0yA==}
+ deprecated: This is a stub types definition for source-map (https://github.com/mozilla/source-map). source-map provides its own type definitions, so you don't need @types/source-map installed!
+
+ '@types/stack-utils@2.0.3':
+ resolution: {integrity: sha512-9aEbYZ3TbYMznPdcdr3SmIrLXwC/AKZXQeCf9Pgao5CKb8CyHuEX5jzWPTkvregvhRJHcpRO6BFoGW9ycaOkYw==}
+
+ '@types/tough-cookie@4.0.5':
+ resolution: {integrity: sha512-/Ad8+nIOV7Rl++6f1BdKxFSMgmoqEoYbHRpPcx3JEfv8VRsQe9Z4mCXeJBzxs7mbHY/XOZZuXlRNfhpVPbs6ZA==}
+
+ '@types/triple-beam@1.3.5':
+ resolution: {integrity: sha512-6WaYesThRMCl19iryMYP7/x2OVgCtbIVflDGFpWnb9irXI3UjYE4AzmYuiUKY1AJstGijoY+MgUszMgRxIYTYw==}
+
+ '@types/unist@2.0.11':
+ resolution: {integrity: sha512-CmBKiL6NNo/OqgmMn95Fk9Whlp2mtvIv+KNpQKN2F4SjvrEesubTRWGYSg+BnWZOnlCaSTU1sMpsBOzgbYhnsA==}
+
+ '@types/unist@3.0.3':
+ resolution: {integrity: sha512-ko/gIFJRv177XgZsZcBwnqJN5x/Gien8qNOn0D5bQU/zAzVf9Zt3BlcUiLqhV9y4ARk0GbT3tnUiPNgnTXzc/Q==}
+
+ '@types/uuid@8.3.4':
+ resolution: {integrity: sha512-c/I8ZRb51j+pYGAu5CrFMRxqZ2ke4y2grEBO5AUjgSkSk+qT2Ea+OdWElz/OiMf5MNpn2b17kuVBwZLQJXzihw==}
+
+ '@types/uuid@9.0.8':
+ resolution: {integrity: sha512-jg+97EGIcY9AGHJJRaaPVgetKDsrTgbRjQ5Msgjh/DQKEFl0DtyRr/VCOyD1T2R1MNeWPK/u7JoGhlDZnKBAfA==}
+
+ '@types/webidl-conversions@7.0.3':
+ resolution: {integrity: sha512-CiJJvcRtIgzadHCYXw7dqEnMNRjhGZlYK05Mj9OyktqV8uVT8fD2BFOB7S1uwBE3Kj2Z+4UyPmFw/Ixgw/LAlA==}
+
+ '@types/whatwg-url@8.2.2':
+ resolution: {integrity: sha512-FtQu10RWgn3D9U4aazdwIE2yzphmTJREDqNdODHrbrZmmMqI0vMheC/6NE/J1Yveaj8H+ela+YwWTjq5PGmuhA==}
+
+ '@types/ws@8.5.13':
+ resolution: {integrity: sha512-osM/gWBTPKgHV8XkTunnegTRIsvF6owmf5w+JtAfOw472dptdm0dlGv4xCt6GwQRcC2XVOvvRE/0bAoQcL2QkA==}
+
+ '@types/ws@8.5.3':
+ resolution: {integrity: sha512-6YOoWjruKj1uLf3INHH7D3qTXwFfEsg1kf3c0uDdSBJwfa/llkwIjrAGV7j7mVgGNbzTQ3HiHKKDXl6bJPD97w==}
+
+ '@types/yargs-parser@21.0.3':
+ resolution: {integrity: sha512-I4q9QU9MQv4oEOz4tAHJtNz1cwuLxn2F3xcc2iV5WdqLPpUnj30aUuxt1mAxYTG+oe8CZMV/+6rU4S4gRDzqtQ==}
+
+ '@types/yargs@17.0.33':
+ resolution: {integrity: sha512-WpxBCKWPLr4xSsHgz511rFJAM+wS28w2zEO1QDNY5zM/S8ok70NNfztH0xwhqKyaK0OHCbN98LDAZuy1ctxDkA==}
+
+ '@types/yauzl@2.10.3':
+ resolution: {integrity: sha512-oJoftv0LSuaDZE3Le4DbKX+KS9G36NzOeSap90UIK0yMA/NhKJhqlSGtNDORNRaIbQfzjXDrQa0ytJ6mNRGz/Q==}
+
+ '@typescript-eslint/eslint-plugin@8.15.0':
+ resolution: {integrity: sha512-+zkm9AR1Ds9uLWN3fkoeXgFppaQ+uEVtfOV62dDmsy9QCNqlRHWNEck4yarvRNrvRcHQLGfqBNui3cimoz8XAg==}
+ engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
+ peerDependencies:
+ '@typescript-eslint/parser': ^8.0.0 || ^8.0.0-alpha.0
+ eslint: ^8.57.0 || ^9.0.0
+ typescript: '*'
+ peerDependenciesMeta:
+ typescript:
+ optional: true
+
+ '@typescript-eslint/parser@8.15.0':
+ resolution: {integrity: sha512-7n59qFpghG4uazrF9qtGKBZXn7Oz4sOMm8dwNWDQY96Xlm2oX67eipqcblDj+oY1lLCbf1oltMZFpUso66Kl1A==}
+ engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
+ peerDependencies:
+ eslint: ^8.57.0 || ^9.0.0
+ typescript: '*'
+ peerDependenciesMeta:
+ typescript:
+ optional: true
+
+ '@typescript-eslint/scope-manager@8.15.0':
+ resolution: {integrity: sha512-QRGy8ADi4J7ii95xz4UoiymmmMd/zuy9azCaamnZ3FM8T5fZcex8UfJcjkiEZjJSztKfEBe3dZ5T/5RHAmw2mA==}
+ engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
+
+ '@typescript-eslint/type-utils@8.15.0':
+ resolution: {integrity: sha512-UU6uwXDoI3JGSXmcdnP5d8Fffa2KayOhUUqr/AiBnG1Gl7+7ut/oyagVeSkh7bxQ0zSXV9ptRh/4N15nkCqnpw==}
+ engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
+ peerDependencies:
+ eslint: ^8.57.0 || ^9.0.0
+ typescript: '*'
+ peerDependenciesMeta:
+ typescript:
+ optional: true
+
+ '@typescript-eslint/types@8.15.0':
+ resolution: {integrity: sha512-n3Gt8Y/KyJNe0S3yDCD2RVKrHBC4gTUcLTebVBXacPy091E6tNspFLKRXlk3hwT4G55nfr1n2AdFqi/XMxzmPQ==}
+ engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
+
+ '@typescript-eslint/typescript-estree@2.34.0':
+ resolution: {integrity: sha512-OMAr+nJWKdlVM9LOqCqh3pQQPwxHAN7Du8DR6dmwCrAmxtiXQnhHJ6tBNtf+cggqfo51SG/FCwnKhXCIM7hnVg==}
+ engines: {node: ^8.10.0 || ^10.13.0 || >=11.10.1}
+ peerDependencies:
+ typescript: '*'
+ peerDependenciesMeta:
+ typescript:
+ optional: true
+
+ '@typescript-eslint/typescript-estree@8.15.0':
+ resolution: {integrity: sha512-1eMp2JgNec/niZsR7ioFBlsh/Fk0oJbhaqO0jRyQBMgkz7RrFfkqF9lYYmBoGBaSiLnu8TAPQTwoTUiSTUW9dg==}
+ engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
+ peerDependencies:
+ typescript: '*'
+ peerDependenciesMeta:
+ typescript:
+ optional: true
+
+ '@typescript-eslint/utils@8.15.0':
+ resolution: {integrity: sha512-k82RI9yGhr0QM3Dnq+egEpz9qB6Un+WLYhmoNcvl8ltMEededhh7otBVVIDDsEEttauwdY/hQoSsOv13lxrFzQ==}
+ engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
+ peerDependencies:
+ eslint: ^8.57.0 || ^9.0.0
+ typescript: '*'
+ peerDependenciesMeta:
+ typescript:
+ optional: true
+
+ '@typescript-eslint/visitor-keys@8.15.0':
+ resolution: {integrity: sha512-h8vYOulWec9LhpwfAdZf2bjr8xIp0KNKnpgqSz0qqYYKAW/QZKw3ktRndbiAtUz4acH4QLQavwZBYCc0wulA/Q==}
+ engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
+
+ '@ungap/structured-clone@1.2.0':
+ resolution: {integrity: sha512-zuVdFrMJiuCDQUMCzQaD6KL28MjnqqN8XnAqiEq9PNm/hCPTSGfrXCOfwj1ow4LFb/tNymJPwsNbVePc1xFqrQ==}
+
+ '@ungap/url-search-params@0.2.2':
+ resolution: {integrity: sha512-qQsguKXZVKdCixOHX9jqnX/K/1HekPDpGKyEcXHT+zR6EjGA7S4boSuelL4uuPv6YfhN0n8c4UxW+v/Z3gM2iw==}
+
+ '@volar/language-core@2.4.10':
+ resolution: {integrity: sha512-hG3Z13+nJmGaT+fnQzAkS0hjJRa2FCeqZt6Bd+oGNhUkQ+mTFsDETg5rqUTxyzIh5pSOGY7FHCWUS8G82AzLCA==}
+
+ '@volar/source-map@2.4.10':
+ resolution: {integrity: sha512-OCV+b5ihV0RF3A7vEvNyHPi4G4kFa6ukPmyVocmqm5QzOd8r5yAtiNvaPEjl8dNvgC/lj4JPryeeHLdXd62rWA==}
+
+ '@volar/typescript@2.4.10':
+ resolution: {integrity: sha512-F8ZtBMhSXyYKuBfGpYwqA5rsONnOwAVvjyE7KPYJ7wgZqo2roASqNWUnianOomJX5u1cxeRooHV59N0PhvEOgw==}
+
+ '@vue/compiler-core@3.5.13':
+ resolution: {integrity: sha512-oOdAkwqUfW1WqpwSYJce06wvt6HljgY3fGeM9NcVA1HaYOij3mZG9Rkysn0OHuyUAGMbEbARIpsG+LPVlBJ5/Q==}
+
+ '@vue/compiler-dom@3.5.13':
+ resolution: {integrity: sha512-ZOJ46sMOKUjO3e94wPdCzQ6P1Lx/vhp2RSvfaab88Ajexs0AHeV0uasYhi99WPaogmBlRHNRuly8xV75cNTMDA==}
+
+ '@vue/compiler-sfc@2.7.16':
+ resolution: {integrity: sha512-KWhJ9k5nXuNtygPU7+t1rX6baZeqOYLEforUPjgNDBnLicfHCoi48H87Q8XyLZOrNNsmhuwKqtpDQWjEFe6Ekg==}
+
+ '@vue/compiler-vue2@2.7.16':
+ resolution: {integrity: sha512-qYC3Psj9S/mfu9uVi5WvNZIzq+xnXMhOwbTFKKDD7b1lhpnn71jXSFdTQ+WsIEk0ONCd7VV2IMm7ONl6tbQ86A==}
+
+ '@vue/language-core@2.1.6':
+ resolution: {integrity: sha512-MW569cSky9R/ooKMh6xa2g1D0AtRKbL56k83dzus/bx//RDJk24RHWkMzbAlXjMdDNyxAaagKPRquBIxkxlCkg==}
+ peerDependencies:
+ typescript: '*'
+ peerDependenciesMeta:
+ typescript:
+ optional: true
+
+ '@vue/shared@3.5.13':
+ resolution: {integrity: sha512-/hnE/qP5ZoGpol0a5mDi45bOd7t3tjYJBjsgCsivow7D48cJeV5l05RD82lPqi7gRiphZM37rnhW1l6ZoCNNnQ==}
+
+ '@woocommerce/woocommerce-rest-api@1.0.1':
+ resolution: {integrity: sha512-YBk3EEYE0zax/egx6Rhpbu6hcCFyZpYQrjH9JO4NUGU3n3T0W9Edn7oAUbjL/c7Oezcg+UaQluCaKjY/B3zwxg==}
+ engines: {node: '>=8.0.0'}
+
+ abort-controller@3.0.0:
+ resolution: {integrity: sha512-h8lQ8tacZYnR3vNQTgibj+tODHI5/+l06Au2Pcriv/Gmet0eaj4TwWH41sO9wnHDiQsEj19q0drzdWdeAHtweg==}
+ engines: {node: '>=6.5'}
+
+ abortcontroller-polyfill@1.7.6:
+ resolution: {integrity: sha512-Zypm+LjYdWAzvuypZvDN0smUJrhOurcuBWhhMRBExqVLRvdjp3Z9mASxKyq19K+meZMshwjjy5S0lkm388zE4Q==}
+
+ acorn-jsx@5.3.2:
+ resolution: {integrity: sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==}
+ peerDependencies:
+ acorn: ^6.0.0 || ^7.0.0 || ^8.0.0
+
+ acorn-typescript@1.4.13:
+ resolution: {integrity: sha512-xsc9Xv0xlVfwp2o7sQ+GCQ1PgbkdcpWdTzrwXxO3xDMTAywVS3oXVOcOHuRjAPkS4P9b+yc/qNF15460v+jp4Q==}
+ peerDependencies:
+ acorn: '>=8.9.0'
+
+ acorn-walk@8.3.4:
+ resolution: {integrity: sha512-ueEepnujpqee2o5aIYnvHU6C0A42MNdsIDeqy5BydrkuC5R1ZuUFnm27EeFJGoEHJQgn3uleRvmTXaJgfXbt4g==}
+ engines: {node: '>=0.4.0'}
+
+ acorn@7.4.1:
+ resolution: {integrity: sha512-nQyp0o1/mNdbTO1PO6kHkwSrmgZ0MT/jCCpNiwbUjGoRN4dlBhqJtoQuCnEOKzgTVwg0ZWiCoQy6SxMebQVh8A==}
+ engines: {node: '>=0.4.0'}
+ hasBin: true
+
+ acorn@8.14.0:
+ resolution: {integrity: sha512-cl669nCJTZBsL97OF4kUQm5g5hC2uihk0NxY3WENAC0TYdILVkAyHymAntgxGkl7K+t0cXIrH5siy5S4XkFycA==}
+ engines: {node: '>=0.4.0'}
+ hasBin: true
+
+ addressparser@1.0.1:
+ resolution: {integrity: sha512-aQX7AISOMM7HFE0iZ3+YnD07oIeJqWGVnJ+ZIKaBZAk03ftmVYVqsGas/rbXKR21n4D/hKCSHypvcyOkds/xzg==}
+
+ adm-zip@0.5.16:
+ resolution: {integrity: sha512-TGw5yVi4saajsSEgz25grObGHEUaDrniwvA2qwSC060KfqGPdglhvPMA2lPIoxs3PQIItj2iag35fONcQqgUaQ==}
+ engines: {node: '>=12.0'}
+
+ adm-zip@0.5.2:
+ resolution: {integrity: sha512-lUI3ZSNsfQXNYNzGjt68MdxzCs0eW29lgL74y/Y2h4nARgHmH3poFWuK3LonvFbNHFt4dTb2X/QQ4c1ZUWWsJw==}
+ engines: {node: '>=6.0'}
+
+ agent-base@6.0.2:
+ resolution: {integrity: sha512-RZNwNclF7+MS/8bDg70amg32dyeZGZxiDuQmZxKLAlQjr3jGyLx+4Kkk58UO7D2QdgFIQCovuSuZESne6RG6XQ==}
+ engines: {node: '>= 6.0.0'}
+
+ agent-base@7.1.1:
+ resolution: {integrity: sha512-H0TSyFNDMomMNJQBn8wFV5YC/2eJ+VXECwOadZJT554xP6cODZHPX3H9QMQECxvrgiSOP1pHjy1sMWQVYJOUOA==}
+ engines: {node: '>= 14'}
+
+ aggregate-error@3.1.0:
+ resolution: {integrity: sha512-4I7Td01quW/RpocfNayFdFVk1qSuoh0E7JrbRJ16nH01HhKFQ88INq9Sd+nd72zqRySlr9BmDA8xlEJ6vJMrYA==}
+ engines: {node: '>=8'}
+
+ airtable@0.11.6:
+ resolution: {integrity: sha512-Na67L2TO1DflIJ1yOGhQG5ilMfL2beHpsR+NW/jhaYOa4QcoxZOtDFs08cpSd1tBMsLpz5/rrz/VMX/pGL/now==}
+ engines: {node: '>=8.0.0'}
+
+ ajv-draft-04@1.0.0:
+ resolution: {integrity: sha512-mv00Te6nmYbRp5DCwclxtt7yV/joXJPGS7nM+97GdxvuttCOfgI3K4U25zboyeX0O+myI8ERluxQe5wljMmVIw==}
+ peerDependencies:
+ ajv: ^8.5.0
+ peerDependenciesMeta:
+ ajv:
+ optional: true
+
+ ajv-formats@3.0.1:
+ resolution: {integrity: sha512-8iUql50EUR+uUcdRQ3HDqa6EVyo3docL8g5WJ3FNcWmu62IbkGUue/pEyLBW8VGKKucTPgqeks4fIU1DA4yowQ==}
+ peerDependencies:
+ ajv: ^8.0.0
+ peerDependenciesMeta:
+ ajv:
+ optional: true
+
+ ajv@6.12.6:
+ resolution: {integrity: sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==}
+
+ ajv@8.12.0:
+ resolution: {integrity: sha512-sRu1kpcO9yLtYxBKvqfTeh9KzZEwO3STyX1HT+4CaDzC6HpTGYhIhPIzj9XuKU7KYDwnaeh5hcOwjy1QuJzBPA==}
+
+ ajv@8.13.0:
+ resolution: {integrity: sha512-PRA911Blj99jR5RMeTunVbNXMF6Lp4vZXnk5GQjcnUWUTsrXtekg/pnmFFI2u/I36Y/2bITGS30GZCXei6uNkA==}
+
+ ajv@8.17.1:
+ resolution: {integrity: sha512-B/gBuNg5SiMTrPkC+A2+cW0RszwxYmn6VYxB/inlBStS5nx6xHIt/ehKRhIMhqusl7a8LjQoZnjCs5vhwxOQ1g==}
+
+ algoliasearch@4.24.0:
+ resolution: {integrity: sha512-bf0QV/9jVejssFBmz2HQLxUadxk574t4iwjCKp5E7NBzwKkrDEhKPISIIjAU/p6K5qDx3qoeh4+26zWN1jmw3g==}
+
+ align-spaces@1.0.4:
+ resolution: {integrity: sha512-JPl93xFbsX4OY7VFKjerJ9cjaelmKo1wt1EP0ScrKI578vro1WhGy+w9C0nAFup8qYADgAS2FvMb7uLPStTB6g==}
+ engines: {node: '>=8.3.0'}
+ hasBin: true
+
+ ansi-align@3.0.1:
+ resolution: {integrity: sha512-IOfwwBF5iczOjp/WeY4YxyjqAFMQoZufdQWDd19SEExbVLNXqvpzSJ/M7Za4/sCPmQ0+GRquoA7bGcINcxew6w==}
+
+ ansi-colors@4.1.3:
+ resolution: {integrity: sha512-/6w/C21Pm1A7aZitlI5Ni/2J6FFQN8i1Cvz3kHABAAbw93v/NlvKdVOqz7CCWz/3iv/JplRSEEZ83XION15ovw==}
+ engines: {node: '>=6'}
+
+ ansi-escapes@4.3.2:
+ resolution: {integrity: sha512-gKXj5ALrKWQLsYG9jlTRmR/xKluxHV+Z9QEwNIgCfM1/uwPMCuzVVnh5mwTd+OuBZcwSIMbqssNWRm1lE51QaQ==}
+ engines: {node: '>=8'}
+
+ ansi-regex@2.1.1:
+ resolution: {integrity: sha512-TIGnTpdo+E3+pCyAluZvtED5p5wCqLdezCyhPZzKPcxvFplEt4i+W7OONCKgeZFT3+y5NZZfOOS/Bdcanm1MYA==}
+ engines: {node: '>=0.10.0'}
+
+ ansi-regex@5.0.1:
+ resolution: {integrity: sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==}
+ engines: {node: '>=8'}
+
+ ansi-regex@6.1.0:
+ resolution: {integrity: sha512-7HSX4QQb4CspciLpVFwyRe79O3xsIZDDLER21kERQ71oaPodF8jL725AgJMFAYbooIqolJoRLuM81SpeUkpkvA==}
+ engines: {node: '>=12'}
+
+ ansi-styles@2.2.1:
+ resolution: {integrity: sha512-kmCevFghRiWM7HB5zTPULl4r9bVFSWjz62MhqizDGUrq2NWuNMQyuv4tHHoKJHs69M/MF64lEcHdYIocrdWQYA==}
+ engines: {node: '>=0.10.0'}
+
+ ansi-styles@3.2.1:
+ resolution: {integrity: sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==}
+ engines: {node: '>=4'}
+
+ ansi-styles@4.3.0:
+ resolution: {integrity: sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==}
+ engines: {node: '>=8'}
+
+ ansi-styles@5.2.0:
+ resolution: {integrity: sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA==}
+ engines: {node: '>=10'}
+
+ ansi-styles@6.2.1:
+ resolution: {integrity: sha512-bN798gFfQX+viw3R7yrGWRqnrN2oRkEkUjjl4JNn4E8GxxbjtG3FbrEIIY3l8/hrwUwIeCZvi4QuOTP4MErVug==}
+ engines: {node: '>=12'}
+
+ ansicolors@0.2.1:
+ resolution: {integrity: sha512-tOIuy1/SK/dr94ZA0ckDohKXNeBNqZ4us6PjMVLs5h1w2GBB6uPtOknp2+VF4F/zcy9LI70W+Z+pE2Soajky1w==}
+
+ ansicolors@0.3.2:
+ resolution: {integrity: sha512-QXu7BPrP29VllRxH8GwB7x5iX5qWKAAMLqKQGWTeLWVlNHNOpVMJ91dsxQAIWXpjuW5wqvxu3Jd/nRjrJ+0pqg==}
+
+ any-promise@1.3.0:
+ resolution: {integrity: sha512-7UvmKalWRt1wgjL1RrGxoSJW/0QZFIegpeGvZG9kjp8vrRu55XTHbwnqq2GpXm9uLbcuhxm3IqX9OB4MZR1b2A==}
+
+ anymatch@3.1.3:
+ resolution: {integrity: sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==}
+ engines: {node: '>= 8'}
+
+ api@4.5.2:
+ resolution: {integrity: sha512-RbqDVdRVBd3Y/M+iAkFj4IqHhBR86FoyfcRkRs77qYQW9nL+tBC+aPkgKtlhirMHjoCmNrxnh0CNhCTqFq4PSg==}
+ engines: {node: ^12 || ^14 || ^16}
+
+ aproba@1.2.0:
+ resolution: {integrity: sha512-Y9J6ZjXtoYh8RnXVCMOU/ttDmk1aBjunq9vO0ta5x85WDQiQfUF9sIPBITdbiiIVcBo03Hi3jMxigBtsddlXRw==}
+
+ archiver-utils@2.1.0:
+ resolution: {integrity: sha512-bEL/yUb/fNNiNTuUz979Z0Yg5L+LzLxGJz8x79lYmR54fmTIb6ob/hNQgkQnIUDWIFjZVQwl9Xs356I6BAMHfw==}
+ engines: {node: '>= 6'}
+
+ archiver@4.0.2:
+ resolution: {integrity: sha512-B9IZjlGwaxF33UN4oPbfBkyA4V1SxNLeIhR1qY8sRXSsbdUkEHrrOvwlYFPx+8uQeCe9M+FG6KgO+imDmQ79CQ==}
+ engines: {node: '>= 8'}
+
+ are-we-there-yet@1.1.7:
+ resolution: {integrity: sha512-nxwy40TuMiUGqMyRHgCSWZ9FM4VAoRP4xUYSTv5ImRog+h9yISPbVH7H8fASCIzYn9wlEv4zvFL7uKDMCFQm3g==}
+ deprecated: This package is no longer supported.
+
+ argparse@1.0.10:
+ resolution: {integrity: sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==}
+
+ argparse@2.0.1:
+ resolution: {integrity: sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==}
+
+ aria-query@5.3.2:
+ resolution: {integrity: sha512-COROpnaoap1E2F000S62r6A60uHZnmlvomhfyT2DlTcrY1OrBKn2UhH7qn5wTC9zMvD0AY7csdPSNwKP+7WiQw==}
+ engines: {node: '>= 0.4'}
+
+ array-back@3.1.0:
+ resolution: {integrity: sha512-TkuxA4UCOvxuDK6NZYXCalszEzj+TLszyASooky+i742l9TqsOdYCMJJupxRic61hwquNtppB3hgcuq9SVSH1Q==}
+ engines: {node: '>=6'}
+
+ array-back@4.0.2:
+ resolution: {integrity: sha512-NbdMezxqf94cnNfWLL7V/im0Ub+Anbb0IoZhvzie8+4HJ4nMQuzHuy49FkGYCJK2yAloZ3meiB6AVMClbrI1vg==}
+ engines: {node: '>=8'}
+
+ array-back@6.2.2:
+ resolution: {integrity: sha512-gUAZ7HPyb4SJczXAMUXMGAvI976JoK3qEx9v1FTmeYuJj0IBiaKttG1ydtGKdkfqWkIkouke7nG8ufGy77+Cvw==}
+ engines: {node: '>=12.17'}
+
+ array-buffer-byte-length@1.0.1:
+ resolution: {integrity: sha512-ahC5W1xgou+KTXix4sAO8Ki12Q+jf4i0+tmk3sC+zgcynshkHxzpXdImBehiUYKKKDwvfFiJl1tZt6ewscS1Mg==}
+ engines: {node: '>= 0.4'}
+
+ array-flat-polyfill@1.0.1:
+ resolution: {integrity: sha512-hfJmKupmQN0lwi0xG6FQ5U8Rd97RnIERplymOv/qpq8AoNKPPAnxJadjFA23FNWm88wykh9HmpLJUUwUtNU/iw==}
+ engines: {node: '>=6.0.0'}
+
+ array-includes@3.1.8:
+ resolution: {integrity: sha512-itaWrbYbqpGXkGhZPGUulwnhVf5Hpy1xiCFsGqyIGglbBxmG5vSjxQen3/WGOjPpNEv1RtBLKxbmVXm8HpJStQ==}
+ engines: {node: '>= 0.4'}
+
+ array-indexofobject@0.0.1:
+ resolution: {integrity: sha512-tpdPBIBm4TMNxSp8O3pZgC7mF4+wn9SmJlhE+7bi5so6x39PvzUqChQMbv93R5ilYGZ1HV+Neki4IH/i+87AoQ==}
+
+ array-union@2.1.0:
+ resolution: {integrity: sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==}
+ engines: {node: '>=8'}
+
+ array.prototype.findindex@2.2.3:
+ resolution: {integrity: sha512-Saz3pStJ2X5bg27GTWWLyhJrcwbMVLsnbho2zUVQFW2Pgrh0mSKKvAeZr6BPww7E1AygK33cX7w0W1YERC1RHA==}
+
+ array.prototype.findlast@1.2.5:
+ resolution: {integrity: sha512-CVvd6FHg1Z3POpBLxO6E6zr+rSKEQ9L6rZHAaY7lLfhKsWYUBBOuMs0e9o24oopj6H+geRCX0YJ+TJLBK2eHyQ==}
+ engines: {node: '>= 0.4'}
+
+ array.prototype.findlastindex@1.2.5:
+ resolution: {integrity: sha512-zfETvRFA8o7EiNn++N5f/kaCw221hrpGsDmcpndVupkPzEc1Wuf3VgC0qby1BbHs7f5DVYjgtEU2LLh5bqeGfQ==}
+ engines: {node: '>= 0.4'}
+
+ array.prototype.flat@1.3.2:
+ resolution: {integrity: sha512-djYB+Zx2vLewY8RWlNCUdHjDXs2XOgm602S9E7P/UpHgfeHL00cRiIF+IN/G/aUJ7kGPb6yO/ErDI5V2s8iycA==}
+ engines: {node: '>= 0.4'}
+
+ array.prototype.flatmap@1.3.2:
+ resolution: {integrity: sha512-Ewyx0c9PmpcsByhSW4r+9zDU7sGjFc86qf/kKtuSCRdhfbk0SNLLkaT5qvcHnRGgc5NP/ly/y+qkXkqONX54CQ==}
+ engines: {node: '>= 0.4'}
+
+ array.prototype.map@1.0.7:
+ resolution: {integrity: sha512-XpcFfLoBEAhezrrNw1V+yLXkE7M6uR7xJEsxbG6c/V9v043qurwVJB9r9UTnoSioFDoz1i1VOydpWGmJpfVZbg==}
+ engines: {node: '>= 0.4'}
+
+ array.prototype.tosorted@1.1.4:
+ resolution: {integrity: sha512-p6Fx8B7b7ZhL/gmUsAy0D15WhvDccw3mnGNbZpi3pmeJdxtWsj2jEaI4Y6oo3XiHfzuSgPwKc04MYt6KgvC/wA==}
+ engines: {node: '>= 0.4'}
+
+ arraybuffer.prototype.slice@1.0.3:
+ resolution: {integrity: sha512-bMxMKAjg13EBSVscxTaYA4mRc5t1UAXa2kXiGTNfZ079HIWXEkKmkgFrh/nJqamaLSrXO5H4WFFkPEaLJWbs3A==}
+ engines: {node: '>= 0.4'}
+
+ arrify@2.0.1:
+ resolution: {integrity: sha512-3duEwti880xqi4eAMN8AyR4a0ByT90zoYdLlevfrvU43vb0YZwZVfxOgxWrLXXXpyugL0hNZc9G6BiB5B3nUug==}
+ engines: {node: '>=8'}
+
+ asap@2.0.6:
+ resolution: {integrity: sha512-BSHWgDSAiKs50o2Re8ppvp3seVHXSRM44cdSsT9FfNEUUZLOGWVCsiWaRPWM1Znn+mqZ1OfVZ3z3DWEzSp7hRA==}
+
+ asn1.js-rfc2560@5.0.1:
+ resolution: {integrity: sha512-1PrVg6kuBziDN3PGFmRk3QrjpKvP9h/Hv5yMrFZvC1kpzP6dQRzf5BpKstANqHBkaOUmTpakJWhicTATOA/SbA==}
+ peerDependencies:
+ asn1.js: ^5.0.0
+
+ asn1.js-rfc5280@3.0.0:
+ resolution: {integrity: sha512-Y2LZPOWeZ6qehv698ZgOGGCZXBQShObWnGthTrIFlIQjuV1gg2B8QOhWFRExq/MR1VnPpIIe7P9vX2vElxv+Pg==}
+
+ asn1.js@5.4.1:
+ resolution: {integrity: sha512-+I//4cYPccV8LdmBLiX8CYvf9Sp3vQsrqu2QNXRcrbiWvcx/UdlFiqUJJzxRQxgsZmvhXhn4cSKeSmoFjVdupA==}
+
+ asn1@0.2.6:
+ resolution: {integrity: sha512-ix/FxPn0MDjeyJ7i/yoHGFt/EX6LyNbxSEhPPXODPL+KB0VPk86UYfL0lMdy+KCnv+fmvIzySwaK5COwqVbWTQ==}
+
+ assert-plus@1.0.0:
+ resolution: {integrity: sha512-NfJ4UzBCcQGLDlQq7nHxH+tv3kyZ0hHQqF5BO6J7tNJeP5do1llPr8dZ8zHonfhAu0PHAdMkSo+8o0wxg9lZWw==}
+ engines: {node: '>=0.8'}
+
+ ast-module-types@2.7.1:
+ resolution: {integrity: sha512-Rnnx/4Dus6fn7fTqdeLEAn5vUll5w7/vts0RN608yFa6si/rDOUonlIIiwugHBFWjylHjxm9owoSZn71KwG4gw==}
+
+ ast-module-types@3.0.0:
+ resolution: {integrity: sha512-CMxMCOCS+4D+DkOQfuZf+vLrSEmY/7xtORwdxs4wtcC1wVgvk2MqFFTwQCFhvWsI4KPU9lcWXPI8DgRiz+xetQ==}
+ engines: {node: '>=6.0'}
+
+ ast-types-flow@0.0.8:
+ resolution: {integrity: sha512-OH/2E5Fg20h2aPrbe+QL8JZQFko0YZaF+j4mnQ7BGhfavO7OpSLa8a0y9sBwomHdSbkhTS8TQNayBfnW5DwbvQ==}
+
+ ast-types@0.13.4:
+ resolution: {integrity: sha512-x1FCFnFifvYDDzTaLII71vG5uvDwgtmDTEVWAxrgeiR8VjMONcCXJx7E+USjDtHlwFmt9MysbqgF9b9Vjr6w+w==}
+ engines: {node: '>=4'}
+
+ ast-types@0.16.1:
+ resolution: {integrity: sha512-6t10qk83GOG8p0vKmaCr8eiilZwO171AvbROMtvvNiwrTly62t+7XkA8RdIIVbpMhCASAsxgAzdRSwh6nw/5Dg==}
+ engines: {node: '>=4'}
+
+ astral-regex@2.0.0:
+ resolution: {integrity: sha512-Z7tMw1ytTXt5jqMcOP+OQteU1VuNK9Y02uuJtKQ1Sv69jXQKKg5cibLwGJow8yzZP+eAc18EmLGPal0bp36rvQ==}
+ engines: {node: '>=8'}
+
+ async-retry@1.3.3:
+ resolution: {integrity: sha512-wfr/jstw9xNi/0teMHrRW7dsz3Lt5ARhYNZ2ewpadnhaIp5mbALhOAP+EAdsC7t4Z6wqsDVv9+W6gm1Dk9mEyw==}
+
+ async@1.5.2:
+ resolution: {integrity: sha512-nSVgobk4rv61R9PUSDtYt7mPVB2olxNR5RWJcAsH676/ef11bUZwvu7+RGYrYauVdDPcO519v68wRhXQtxsV9w==}
+
+ async@3.2.6:
+ resolution: {integrity: sha512-htCUDlxyyCLMgaM3xXg0C0LW2xqfuQ6p05pCEIsXuyQ+a1koYKTuBMzRNwmybfLgvJDMd0r1LTn4+E0Ti6C2AA==}
+
+ asynckit@0.4.0:
+ resolution: {integrity: sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q==}
+
+ autocreate@1.2.0:
+ resolution: {integrity: sha512-69hVJ14Nm6rP5b4fd5TQGbBCPxH3M4L+/eDrCePoa3dCyNHWFS/HhE8mY6DG5q6LMscjMcjpSwEsX8G+8jT5ZA==}
+
+ available-typed-arrays@1.0.7:
+ resolution: {integrity: sha512-wvUjBtSGN7+7SjNpq/9M2Tg350UZD3q62IFZLbRAR1bSMlCo1ZaeW+BJ+D090e4hIIZLBcTDWe4Mh4jvUDajzQ==}
+ engines: {node: '>= 0.4'}
+
+ aws-sign2@0.7.0:
+ resolution: {integrity: sha512-08kcGqnYf/YmjoRhfxyu+CLxBjUtHLXLXX/vUfx9l2LYzG3c1m61nrpyFUZI6zeS+Li/wWMMidD9KgrqtGq3mA==}
+
+ aws-ssl-profiles@1.1.2:
+ resolution: {integrity: sha512-NZKeq9AfyQvEeNlN0zSYAaWrmBffJh3IELMZfRpJVWgrpEbtEpnjvzqBPf+mxoI287JohRDoa+/nsfqqiZmF6g==}
+ engines: {node: '>= 6.0.0'}
+
+ aws4@1.13.2:
+ resolution: {integrity: sha512-lHe62zvbTB5eEABUVi/AwVh0ZKY9rMMDhmm+eeyuuUQbQ3+J+fONVQOZyj+DdrvD4BY33uYniyRJ4UJIaSKAfw==}
+
+ axe-core@4.10.2:
+ resolution: {integrity: sha512-RE3mdQ7P3FRSe7eqCWoeQ/Z9QXrtniSjp1wUjt5nRC3WIpz5rSCve6o3fsZ2aCpJtrZjSZgjwXAoTO5k4tEI0w==}
+ engines: {node: '>=4'}
+
+ axios@0.19.2:
+ resolution: {integrity: sha512-fjgm5MvRHLhx+osE2xoekY70AhARk3a6hkN+3Io1jc00jtquGvxYlKlsFUhmUET0V5te6CcZI7lcv2Ym61mjHA==}
+ deprecated: Critical security vulnerability fixed in v0.21.1. For more information, see https://github.com/axios/axios/pull/3410
+
+ axios@0.21.4:
+ resolution: {integrity: sha512-ut5vewkiu8jjGBdqpM44XxjuCjq9LAKeHVmoVfHVzy8eHgxxq8SbAVQNovDA8mVi05kP0Ea/n/UzcSHcTJQfNg==}
+
+ axios@0.25.0:
+ resolution: {integrity: sha512-cD8FOb0tRH3uuEe6+evtAbgJtfxr7ly3fQjYcMcuPlgkwVS9xboaVIpcDV+cYQe+yGykgwZCs1pzjntcGa6l5g==}
+
+ axios@0.26.1:
+ resolution: {integrity: sha512-fPwcX4EvnSHuInCMItEhAGnaSEXRBjtzh9fOtsE6E1G6p7vl7edEeZe11QHf18+6+9gR5PbKV/sGKNaD8YaMeA==}
+
+ axios@0.27.2:
+ resolution: {integrity: sha512-t+yRIyySRTp/wua5xEr+z1q60QmLq8ABsS5O9Me1AsE5dfKqgnCFzwiCZZ/cGNd1lq4/7akDWMxdhVlucjmnOQ==}
+
+ axios@0.28.1:
+ resolution: {integrity: sha512-iUcGA5a7p0mVb4Gm/sy+FSECNkPFT4y7wt6OM/CDpO/OnNCvSs3PoMG8ibrC9jRoGYU0gUK5pXVC4NPXq6lHRQ==}
+
+ axios@1.6.0:
+ resolution: {integrity: sha512-EZ1DYihju9pwVB+jg67ogm+Tmqc6JmhamRN6I4Zt8DfZu5lbcQGw3ozH9lFejSJgs/ibaef3A9PMXPLeefFGJg==}
+
+ axios@1.6.7:
+ resolution: {integrity: sha512-/hDJGff6/c7u0hDkvkGxR/oy6CbCs8ziCsC7SqmhjfozqiJGc8Z11wrv9z9lYfY4K8l+H9TpjcMDX0xOZmx+RA==}
+
+ axios@1.6.8:
+ resolution: {integrity: sha512-v/ZHtJDU39mDpyBoFVkETcd/uNdxrWRrg3bKpOKzXFA6Bvqopts6ALSMU3y6ijYxbw2B+wPrIv46egTzJXCLGQ==}
+
+ axios@1.7.4:
+ resolution: {integrity: sha512-DukmaFRnY6AzAALSH4J2M3k6PkaC+MfaAGdEERRWcC9q3/TWQwLpHR8ZRLKTdQ3aBDL64EdluRDjJqKw+BPZEw==}
+
+ axios@1.7.7:
+ resolution: {integrity: sha512-S4kL7XrjgBmvdGut0sN3yJxqYzrDOnivkBiN0OFs6hLiUam3UPvswUo0kqGyhqUZGEOytHyumEdXsAkgCOUf3Q==}
+
+ axobject-query@4.1.0:
+ resolution: {integrity: sha512-qIj0G9wZbMGNLjLmg1PT6v2mE9AH2zlnADJD/2tC6E00hgmhUOfEB6greHPAfLRSufHqROIUTkw6E+M3lH0PTQ==}
+ engines: {node: '>= 0.4'}
+
+ b4a@1.6.7:
+ resolution: {integrity: sha512-OnAYlL5b7LEkALw87fUVafQw5rVR9RjwGd4KUwNQ6DrrNmaVaUCgLipfVlzrPQ4tWOR9P0IXGNOx50jYCCdSJg==}
+
+ babel-code-frame@6.26.0:
+ resolution: {integrity: sha512-XqYMR2dfdGMW+hd0IUZ2PwK+fGeFkOxZJ0wY+JaQAHzt1Zx8LcvpiZD2NiGkEG8qx0CfkAOr5xt76d1e8vG90g==}
+
+ babel-jest@29.7.0:
+ resolution: {integrity: sha512-BrvGY3xZSwEcCzKvKsCi2GgHqDqsYkOP4/by5xCgIwGXQxIEh+8ew3gmrE1y7XRR6LHZIj6yLYnUi/mm2KXKBg==}
+ engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
+ peerDependencies:
+ '@babel/core': ^7.8.0
+
+ babel-plugin-istanbul@6.1.1:
+ resolution: {integrity: sha512-Y1IQok9821cC9onCx5otgFfRm7Lm+I+wwxOx738M/WLPZ9Q42m4IG5W0FNX8WLL2gYMZo3JkuXIH2DOpWM+qwA==}
+ engines: {node: '>=8'}
+
+ babel-plugin-jest-hoist@29.6.3:
+ resolution: {integrity: sha512-ESAc/RJvGTFEzRwOTT4+lNDk/GNHMkKbNzsvT0qKRfDyyYTskxB5rnU2njIDYVxXCBHHEI1c0YwHob3WaYujOg==}
+ engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
+
+ babel-plugin-macros@3.1.0:
+ resolution: {integrity: sha512-Cg7TFGpIr01vOQNODXOOaGz2NpCU5gl8x1qJFbb6hbZxR7XrcE2vtbAsTAbJ7/xwJtUuJEw8K8Zr/AE0LHlesg==}
+ engines: {node: '>=10', npm: '>=6'}
+
+ babel-plugin-polyfill-corejs2@0.4.12:
+ resolution: {integrity: sha512-CPWT6BwvhrTO2d8QVorhTCQw9Y43zOu7G9HigcfxvepOU6b8o3tcWad6oVgZIsZCTt42FFv97aA7ZJsbM4+8og==}
+ peerDependencies:
+ '@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0
+
+ babel-plugin-polyfill-corejs3@0.10.6:
+ resolution: {integrity: sha512-b37+KR2i/khY5sKmWNVQAnitvquQbNdWy6lJdsr0kmquCKEEUgMKK4SboVM3HtfnZilfjr4MMQ7vY58FVWDtIA==}
+ peerDependencies:
+ '@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0
+
+ babel-plugin-polyfill-regenerator@0.6.3:
+ resolution: {integrity: sha512-LiWSbl4CRSIa5x/JAU6jZiG9eit9w6mz+yVMFwDE83LAWvt0AfGBoZ7HS/mkhrKuh2ZlzfVZYKoLjXdqw6Yt7Q==}
+ peerDependencies:
+ '@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0
+
+ babel-preset-current-node-syntax@1.1.0:
+ resolution: {integrity: sha512-ldYss8SbBlWva1bs28q78Ju5Zq1F+8BrqBZZ0VFhLBvhh6lCpC2o3gDJi/5DRLs9FgYZCnmPYIVFU4lRXCkyUw==}
+ peerDependencies:
+ '@babel/core': ^7.0.0
+
+ babel-preset-jest@29.6.3:
+ resolution: {integrity: sha512-0B3bhxR6snWXJZtR/RliHTDPRgn1sNHOR0yVtq/IiQFyuOVjFS+wuio/R4gSNkyYmKmJB4wGZv2NZanmKmTnNA==}
+ engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
+ peerDependencies:
+ '@babel/core': ^7.0.0
+
+ backoff@2.5.0:
+ resolution: {integrity: sha512-wC5ihrnUXmR2douXmXLCe5O3zg3GKIyvRi/hi58a/XyRxVI+3/yM0PYueQOZXPXQ9pxBislYkw+sF9b7C/RuMA==}
+ engines: {node: '>= 0.6'}
+
+ bail@1.0.5:
+ resolution: {integrity: sha512-xFbRxM1tahm08yHBP16MMjVUAvDaBMD38zsM9EMAUN61omwLmKlOpB/Zku5QkjZ8TZ4vn53pj+t518cH0S03RQ==}
+
+ bail@2.0.2:
+ resolution: {integrity: sha512-0xO6mYd7JB2YesxDKplafRpsiOzPt9V02ddPCLbY1xYGPOX24NTyN50qnUxgCPcSoYMhKpAuBTjQoRZCAkUDRw==}
+
+ balanced-match@1.0.2:
+ resolution: {integrity: sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==}
+
+ balanced-match@2.0.0:
+ resolution: {integrity: sha512-1ugUSr8BHXRnK23KfuYS+gVMC3LB8QGH9W1iGtDPsNWoQbgtXSExkBu2aDR4epiGWZOjZsj6lDl/N/AqqTC3UA==}
+
+ bare-events@2.5.0:
+ resolution: {integrity: sha512-/E8dDe9dsbLyh2qrZ64PEPadOQ0F4gbl1sUJOrmph7xOiIxfY8vwab/4bFLh4Y88/Hk/ujKcrQKc+ps0mv873A==}
+
+ bare-fs@2.3.5:
+ resolution: {integrity: sha512-SlE9eTxifPDJrT6YgemQ1WGFleevzwY+XAP1Xqgl56HtcrisC2CHCZ2tq6dBpcH2TnNxwUEUGhweo+lrQtYuiw==}
+
+ bare-os@2.4.4:
+ resolution: {integrity: sha512-z3UiI2yi1mK0sXeRdc4O1Kk8aOa/e+FNWZcTiPB/dfTWyLypuE99LibgRaQki914Jq//yAWylcAt+mknKdixRQ==}
+
+ bare-path@2.1.3:
+ resolution: {integrity: sha512-lh/eITfU8hrj9Ru5quUp0Io1kJWIk1bTjzo7JH1P5dWmQ2EL4hFUlfI8FonAhSlgIfhn63p84CDY/x+PisgcXA==}
+
+ bare-stream@2.4.0:
+ resolution: {integrity: sha512-sd96/aZ8LjF1uJbEHzIo1LrERPKRFPEy1nZ1eOILftBxrVsFDAQkimHIIq87xrHcubzjNeETsD9PwN0wp+vLiQ==}
+
+ base-64@0.1.0:
+ resolution: {integrity: sha512-Y5gU45svrR5tI2Vt/X9GPd3L0HNIKzGu202EjxrXMpuc2V2CiKgemAbUUsqYmZJvPtCXoUKjNZwBJzsNScUbXA==}
+
+ base-64@1.0.0:
+ resolution: {integrity: sha512-kwDPIFCGx0NZHog36dj+tHiwP4QMzsZ3AgMViUBKI0+V5n4U0ufTCUMhnQ04diaRI8EX/QcPfql7zlhZ7j4zgg==}
+
+ base64-js@1.5.1:
+ resolution: {integrity: sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==}
+
+ basic-ftp@5.0.5:
+ resolution: {integrity: sha512-4Bcg1P8xhUuqcii/S0Z9wiHIrQVPMermM1any+MX5GeGD7faD3/msQUDGLol9wOcz4/jbg/WJnGqoJF6LiBdtg==}
+ engines: {node: '>=10.0.0'}
+
+ bcrypt-pbkdf@1.0.2:
+ resolution: {integrity: sha512-qeFIXtP4MSoi6NLqO12WfqARWWuCKi2Rn/9hJLEmtB5yTNr9DqFWkJRCf2qShWzPeAMRnOgCrq0sg/KLv5ES9w==}
+
+ before-after-hook@2.2.3:
+ resolution: {integrity: sha512-NzUnlZexiaH/46WDhANlyR2bXRopNg4F/zuSA3OpZnllCUgRaOF2znDioDWrmbNVsuZk6l9pMquQB38cfBZwkQ==}
+
+ big-integer@1.6.52:
+ resolution: {integrity: sha512-QxD8cf2eVqJOOz63z6JIN9BzvVs/dlySa5HGSBH5xtR8dPteIRQnBxxKqkNTiT6jbDTF6jAfrd4oMcND9RGbQg==}
+ engines: {node: '>=0.6'}
+
+ big.js@5.2.2:
+ resolution: {integrity: sha512-vyL2OymJxmarO8gxMr0mhChsO9QGwhynfuu4+MHTAW6czfq9humCB7rKpUjDd9YUiDPU4mzpyupFSvOClAwbmQ==}
+
+ big.js@6.2.2:
+ resolution: {integrity: sha512-y/ie+Faknx7sZA5MfGA2xKlu0GDv8RWrXGsmlteyJQ2lvoKv9GBK/fpRMc2qlSoBAgNxrixICFCBefIq8WCQpQ==}
+
+ bignumber.js@2.4.0:
+ resolution: {integrity: sha512-uw4ra6Cv483Op/ebM0GBKKfxZlSmn6NgFRby5L3yGTlunLj53KQgndDlqy2WVFOwgvurocApYkSud0aO+mvrpQ==}
+
+ bignumber.js@9.1.2:
+ resolution: {integrity: sha512-2/mKyZH9K85bzOEfhXDBFZTGd1CTs+5IHpeFQo9luiBG7hghdC851Pj2WAhb6E3R6b9tZj/XKhbg4fum+Kepug==}
+
+ binary-extensions@2.3.0:
+ resolution: {integrity: sha512-Ceh+7ox5qe7LJuLHoY0feh3pHuUDHAcRUeyL2VYghZwfpkNIy/+8Ocg0a3UuSoYzavmylwuLWQOf3hl0jjMMIw==}
+ engines: {node: '>=8'}
+
+ binascii@0.0.2:
+ resolution: {integrity: sha512-rA2CrUl1+6yKrn+XgLs8Hdy18OER1UW146nM+ixzhQXDY+Bd3ySkyIJGwF2a4I45JwbvF1mDL/nWkqBwpOcdBA==}
+
+ bindings@1.5.0:
+ resolution: {integrity: sha512-p2q/t/mhvuOj/UeLlV6566GD/guowlr0hHxClI0W9m7MWYkL1F0hLo+0Aexs9HSPCtR1SXQ0TD3MMKrXZajbiQ==}
+
+ bl@1.2.3:
+ resolution: {integrity: sha512-pvcNpa0UU69UT341rO6AYy4FVAIkUHuZXRIWbq+zHnsVcRzDDjIAhGuuYoi0d//cwIwtt4pkpKycWEfjdV+vww==}
+
+ bl@4.1.0:
+ resolution: {integrity: sha512-1W07cM9gS6DcLperZfFSj+bWLtaPGSOHWhPiGzXmvVJbRLdG82sH/Kn8EtW1VqWVA54AKf2h5k5BbnIbwF3h6w==}
+
+ bl@6.0.16:
+ resolution: {integrity: sha512-V/kz+z2Mx5/6qDfRCilmrukUXcXuCoXKg3/3hDvzKKoSUx8CJKudfIoT29XZc3UE9xBvxs5qictiHdprwtteEg==}
+
+ bluebird@3.7.2:
+ resolution: {integrity: sha512-XpNj6GDQzdfW+r2Wnn7xiSAd7TM3jzkxGXBGTtWKuSXv1xUV+azxAm8jdWZN06QTQk+2N2XB9jRDkvbmQmcRtg==}
+
+ bn.js@2.0.0:
+ resolution: {integrity: sha512-NmOLApC80+n+P28y06yHgwGlOCkq/X4jRh5s590959FZXSrM+I/61h0xxuIaYsg0mD44mEAZYG/rnclWuRoz+A==}
+
+ bn.js@4.12.1:
+ resolution: {integrity: sha512-k8TVBiPkPJT9uHLdOKfFpqcfprwBFOAAXXozRubr7R7PfIuKvQlzcI4M0pALeqXN09vdaMbUdUj+pass+uULAg==}
+
+ bn.js@5.2.1:
+ resolution: {integrity: sha512-eXRvHzWyYPBuB4NBy0cmYQjGitUrtqwbvlzP3G6VFnNRbsZQIxQ10PbKKHt8gZ/HW/D/747aDl+QkDqg3KQLMQ==}
+
+ body-parser@1.20.3:
+ resolution: {integrity: sha512-7rAxByjUMqQ3/bHJy7D6OGXvx/MMc4IqBn/X0fcM1QUcAItpZrBEYhWGem+tzXH90c+G01ypMcYJBO9Y30203g==}
+ engines: {node: '>= 0.8', npm: 1.2.8000 || >= 1.4.16}
+
+ boolbase@1.0.0:
+ resolution: {integrity: sha512-JZOSA7Mo9sNGB8+UjSgzdLtokWAky1zbztM3WRLCbZ70/3cTANmQmOdR7y2g+J0e2WXywy1yS468tY+IruqEww==}
+
+ bottleneck@2.19.5:
+ resolution: {integrity: sha512-VHiNCbI1lKdl44tGrhNfU3lup0Tj/ZBMJB5/2ZbNXRCPuRCO7ed2mgcK4r17y+KB2EfuYuRaVlwNbAeaWGSpbw==}
+
+ bowser@2.11.0:
+ resolution: {integrity: sha512-AlcaJBi/pqqJBIQ8U9Mcpc9i8Aqxn88Skv5d+xBX006BY5u8N3mGLHa5Lgppa7L/HfwgwLgZ6NYs+Ag6uUmJRA==}
+
+ boxen@5.1.2:
+ resolution: {integrity: sha512-9gYgQKXx+1nP8mP7CzFyaUARhg7D3n1dF/FnErWmu9l6JvGpNUN278h0aSb+QjoiKSWG+iZ3uHrcqk0qrY9RQQ==}
+ engines: {node: '>=10'}
+
+ brace-expansion@1.1.11:
+ resolution: {integrity: sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==}
+
+ brace-expansion@2.0.1:
+ resolution: {integrity: sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==}
+
+ braces@3.0.3:
+ resolution: {integrity: sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA==}
+ engines: {node: '>=8'}
+
+ browser-request@0.3.3:
+ resolution: {integrity: sha512-YyNI4qJJ+piQG6MMEuo7J3Bzaqssufx04zpEKYfSrl/1Op59HWali9zMtBpXnkmqMcOuWJPZvudrm9wISmnCbg==}
+ engines: {'0': node}
+
+ browserslist@4.24.2:
+ resolution: {integrity: sha512-ZIc+Q62revdMcqC6aChtW4jz3My3klmCO1fEmINZY/8J3EpBg5/A/D0AKmBveUh6pgoeycoMkVMko84tuYS+Gg==}
+ engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7}
+ hasBin: true
+
+ bs-logger@0.2.6:
+ resolution: {integrity: sha512-pd8DCoxmbgc7hyPKOvxtqNcjYoOsABPQdcCUjGp3d42VR2CX1ORhk2A87oqqu5R1kk+76nsxZupkmyd+MVtCog==}
+ engines: {node: '>= 6'}
+
+ bser@2.1.1:
+ resolution: {integrity: sha512-gQxTNE/GAfIIrmHLUE3oJyp5FO6HRBfhjnw4/wMmA63ZGDJnWBmgY/lyQBpnDUkGmAhbSe39tx2d/iTOAfglwQ==}
+
+ bson@4.7.2:
+ resolution: {integrity: sha512-Ry9wCtIZ5kGqkJoi6aD8KjxFZEx78guTQDnpXWiNthsxzrxAK/i8E6pCHAIZTbaEFWcOCvbecMukfK7XUvyLpQ==}
+ engines: {node: '>=6.9.0'}
+
+ btoa-lite@1.0.0:
+ resolution: {integrity: sha512-gvW7InbIyF8AicrqWoptdW08pUxuhq8BEgowNajy9RhiE86fmGAGl+bLKo6oB8QP0CkqHLowfN0oJdKC/J6LbA==}
+
+ buffer-crc32@0.2.13:
+ resolution: {integrity: sha512-VO9Ht/+p3SN7SKWqcrgEzjGbRSJYTx+Q1pTQC0wrWqHx0vpJraQ6GtHx8tvcg1rlK1byhU5gccxgOgj7B0TDkQ==}
+
+ buffer-equal-constant-time@1.0.1:
+ resolution: {integrity: sha1-+OcRMvf/5uAaXJaXpMbz5I1cyBk=}
+
+ buffer-from@1.1.2:
+ resolution: {integrity: sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ==}
+
+ buffer@5.7.1:
+ resolution: {integrity: sha512-EHcyIPBQ4BSGlvjB16k5KgAJ27CIsHY/2JBmCRReo48y9rQ3MaUzWX3KVlBa4U7MyX02HdVj0K7C3WaB3ju7FQ==}
+
+ buffer@6.0.3:
+ resolution: {integrity: sha512-FTiCpNxtwiZZHEZbcbTIcZjERVICn9yq/pDFkTl95/AxzD1naBctN7YO68riM/gLSDY7sdrMby8hofADYuuqOA==}
+
+ build-url@1.3.3:
+ resolution: {integrity: sha512-uSC8d+d4SlbXTu/9nBhwEKi33CE0KQgCvfy8QwyrrO5vCuXr9hN021ZBh8ip5vxPbMOrZiPwgqcupuhezxiP3g==}
+ deprecated: This package is no longer maintained
+
+ buildcheck@0.0.6:
+ resolution: {integrity: sha512-8f9ZJCUXyT1M35Jx7MkBgmBMo3oHTTBIPLiY9xyL0pl3T5RwcPEY8cUHr5LBNfu/fk6c2T4DJZuVM/8ZZT2D2A==}
+ engines: {node: '>=10.0.0'}
+
+ builtin-modules@1.1.1:
+ resolution: {integrity: sha512-wxXCdllwGhI2kCC0MnvTGYTMvnVZTvqgypkiTI8Pa5tcz2i6VqsqwYGgqwXji+4RgCzms6EajE4IxiUH6HH8nQ==}
+ engines: {node: '>=0.10.0'}
+
+ builtins@1.0.3:
+ resolution: {integrity: sha512-uYBjakWipfaO/bXI7E8rq6kpwHRZK5cNYrUv2OzZSI/FvmdMyXJ2tG9dKcjEC5YHmHpUAwsargWIZNWdxb/bnQ==}
+
+ busboy@1.6.0:
+ resolution: {integrity: sha512-8SFQbg/0hQ9xy3UNTB0YEnsNBbWfhf7RtnzpL7TkBiTBRfrQ9Fxcnz7VJsleJpyp6rVLvXiuORqjlHi5q+PYuA==}
+ engines: {node: '>=10.16.0'}
+
+ bytes@3.1.2:
+ resolution: {integrity: sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg==}
+ engines: {node: '>= 0.8'}
+
+ cacheable-lookup@5.0.4:
+ resolution: {integrity: sha512-2/kNscPhpcxrOigMZzbiWF7dz8ilhb/nIHU3EyZiXWXpeq/au8qJ8VhdftMkty3n7Gj6HIGalQG8oiBNB3AJgA==}
+ engines: {node: '>=10.6.0'}
+
+ cacheable-lookup@7.0.0:
+ resolution: {integrity: sha512-+qJyx4xiKra8mZrcwhjMRMUhD5NR1R8esPkzIYxX96JiecFoxAXFuz/GpR3+ev4PE1WamHip78wV0vcmPQtp8w==}
+ engines: {node: '>=14.16'}
+
+ cacheable-request@10.2.14:
+ resolution: {integrity: sha512-zkDT5WAF4hSSoUgyfg5tFIxz8XQK+25W/TLVojJTMKBaxevLBBtLxgqguAuVQB8PVW79FVjHcU+GJ9tVbDZ9mQ==}
+ engines: {node: '>=14.16'}
+
+ cacheable-request@12.0.1:
+ resolution: {integrity: sha512-Yo9wGIQUaAfIbk+qY0X4cDQgCosecfBe3V9NSyeY4qPC2SAkbCS4Xj79VP8WOzitpJUZKc/wsRCYF5ariDIwkg==}
+ engines: {node: '>=18'}
+
+ cacheable-request@7.0.4:
+ resolution: {integrity: sha512-v+p6ongsrp0yTGbJXjgxPow2+DL93DASP4kXCDKb8/bwRtt9OEF3whggkkDkGNzgcWy2XaF4a8nZglC7uElscg==}
+ engines: {node: '>=8'}
+
+ cacheable@1.8.4:
+ resolution: {integrity: sha512-eqcPwJIM8hcx2mQIZtgrBQ7BmOf2pkL+1URswJaKRikCDw5of/lGpBTxODL1z1VuVVuxZHTuTejAMd9vyAUpLg==}
+
+ cachedir@2.4.0:
+ resolution: {integrity: sha512-9EtFOZR8g22CL7BWjJ9BUx1+A/djkofnyW3aOXZORNW2kxoUpx2h+uN2cOqwPmFhnpVmxg+KW2OjOSgChTEvsQ==}
+ engines: {node: '>=6'}
+
+ call-bind@1.0.7:
+ resolution: {integrity: sha512-GHTSNSYICQ7scH7sZ+M2rFopRoLh8t2bLSW6BbgrtLsahOIB5iyAVJf9GjWK3cYTDaMj4XdBpM1cA6pIS0Kv2w==}
+ engines: {node: '>= 0.4'}
+
+ call-me-maybe@1.0.2:
+ resolution: {integrity: sha512-HpX65o1Hnr9HH25ojC1YGs7HCQLq0GCOibSaWER0eNpgJ/Z1MZv2mTc7+xh6WOPxbRVcmgbv4hGU+uSQ/2xFZQ==}
+
+ caller-callsite@2.0.0:
+ resolution: {integrity: sha512-JuG3qI4QOftFsZyOn1qq87fq5grLIyk1JYd5lJmdA+fG7aQ9pA/i3JIJGcO3q0MrRcHlOt1U+ZeHW8Dq9axALQ==}
+ engines: {node: '>=4'}
+
+ caller-path@2.0.0:
+ resolution: {integrity: sha512-MCL3sf6nCSXOwCTzvPKhN18TU7AHTvdtam8DAogxcrJ8Rjfbbg7Lgng64H9Iy+vUV6VGFClN/TyxBkAebLRR4A==}
+ engines: {node: '>=4'}
+
+ callsites@2.0.0:
+ resolution: {integrity: sha512-ksWePWBloaWPxJYQ8TL0JHvtci6G5QTKwQ95RcWAa/lzoAKuAOflGdAK92hpHXjkwb8zLxoLNUoNYZgVsaJzvQ==}
+ engines: {node: '>=4'}
+
+ callsites@3.1.0:
+ resolution: {integrity: sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==}
+ engines: {node: '>=6'}
+
+ camelcase-keys@9.1.3:
+ resolution: {integrity: sha512-Rircqi9ch8AnZscQcsA1C47NFdaO3wukpmIRzYcDOrmvgt78hM/sj5pZhZNec2NM12uk5vTwRHZ4anGcrC4ZTg==}
+ engines: {node: '>=16'}
+
+ camelcase@5.3.1:
+ resolution: {integrity: sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==}
+ engines: {node: '>=6'}
+
+ camelcase@6.3.0:
+ resolution: {integrity: sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA==}
+ engines: {node: '>=10'}
+
+ camelcase@8.0.0:
+ resolution: {integrity: sha512-8WB3Jcas3swSvjIeA2yvCJ+Miyz5l1ZmB6HFb9R1317dt9LCQoswg/BGrmAmkWVEszSrrg4RwmO46qIm2OEnSA==}
+ engines: {node: '>=16'}
+
+ caniuse-lite@1.0.30001683:
+ resolution: {integrity: sha512-iqmNnThZ0n70mNwvxpEC2nBJ037ZHZUoBI5Gorh1Mw6IlEAZujEoU1tXA628iZfzm7R9FvFzxbfdgml82a3k8Q==}
+
+ capture-stack-trace@1.0.2:
+ resolution: {integrity: sha512-X/WM2UQs6VMHUtjUDnZTRI+i1crWteJySFzr9UpGoQa4WQffXVTTXuekjl7TjZRlcF2XfjgITT0HxZ9RnxeT0w==}
+ engines: {node: '>=0.10.0'}
+
+ cardinal@0.4.4:
+ resolution: {integrity: sha512-3MxV0o9wOpQcobrcSrRpaSxlYkohCcZu0ytOjJUww/Yo/223q4Ecloo7odT+M0SI5kPgb1JhvSaF4EEuVXOLAQ==}
+ hasBin: true
+
+ cardinal@2.1.1:
+ resolution: {integrity: sha512-JSr5eOgoEymtYHBjNWyjrMqet9Am2miJhlfKNdqLp6zoeAh0KN5dRAcxlecj5mAJrmQomgiOBj35xHLrFjqBpw==}
+ hasBin: true
+
+ caseless@0.12.0:
+ resolution: {integrity: sha512-4tYFyifaFfGacoiObjJegolkwSU4xQNGbVgUiNYVUxbQ2x2lUsFvY4hVgVzGiIe6WLOPqycWXA40l+PWsxthUw==}
+
+ catharsis@0.9.0:
+ resolution: {integrity: sha512-prMTQVpcns/tzFgFVkVp6ak6RykZyWb3gu8ckUpd6YkTlacOd3DXGJjIpD4Q6zJirizvaiAjSSHlOsA+6sNh2A==}
+ engines: {node: '>= 10'}
+
+ ccount@1.1.0:
+ resolution: {integrity: sha512-vlNK021QdI7PNeiUh/lKkC/mNHHfV0m/Ad5JoI0TYtlBnJAslM/JIkm/tGC88bkLIwO6OQ5uV6ztS6kVAtCDlg==}
+
+ ccount@2.0.1:
+ resolution: {integrity: sha512-eyrF0jiFpY+3drT6383f1qhkbGsLSifNAjA61IUjZjmLCWjItY6LB9ft9YhoDgwfmclB2zhu51Lc7+95b8NRAg==}
+
+ chalk@1.1.3:
+ resolution: {integrity: sha512-U3lRVLMSlsCfjqYPbLyVv11M9CPW4I728d6TCKMAOJueEeB9/8o+eSsMnxPJD+Q+K909sdESg7C+tIkoH6on1A==}
+ engines: {node: '>=0.10.0'}
+
+ chalk@2.4.2:
+ resolution: {integrity: sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==}
+ engines: {node: '>=4'}
+
+ chalk@4.1.2:
+ resolution: {integrity: sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==}
+ engines: {node: '>=10'}
+
+ chalk@5.3.0:
+ resolution: {integrity: sha512-dLitG79d+GV1Nb/VYcCDFivJeK1hiukt9QjRNVOsUtTy1rR1YJsmpGGTZ3qJos+uw7WmWF4wUwBd9jxjocFC2w==}
+ engines: {node: ^12.17.0 || ^14.13 || >=16.0.0}
+
+ char-regex@1.0.2:
+ resolution: {integrity: sha512-kWWXztvZ5SBQV+eRgKFeh8q5sLuZY2+8WUIzlxWVTg+oGwY14qylx1KbKzHd8P6ZYkAg0xyIDU9JMHhyJMZ1jw==}
+ engines: {node: '>=10'}
+
+ character-entities-html4@2.1.0:
+ resolution: {integrity: sha512-1v7fgQRj6hnSwFpq1Eu0ynr/CDEw0rXo2B61qXrLNdHZmPKgb7fqS1a2JwF0rISo9q77jDI8VMEHoApn8qDoZA==}
+
+ character-entities-legacy@1.1.4:
+ resolution: {integrity: sha512-3Xnr+7ZFS1uxeiUDvV02wQ+QDbc55o97tIV5zHScSPJpcLm/r0DFPcoY3tYRp+VZukxuMeKgXYmsXQHO05zQeA==}
+
+ character-entities-legacy@3.0.0:
+ resolution: {integrity: sha512-RpPp0asT/6ufRm//AJVwpViZbGM/MkjQFxJccQRHmISF/22NBtsHqAWmL+/pmkPWoIUJdWyeVleTl1wydHATVQ==}
+
+ character-entities@1.2.4:
+ resolution: {integrity: sha512-iBMyeEHxfVnIakwOuDXpVkc54HijNgCyQB2w0VfGQThle6NXn50zU6V/u+LDhxHcDUPojn6Kpga3PTAD8W1bQw==}
+
+ character-entities@2.0.2:
+ resolution: {integrity: sha512-shx7oQ0Awen/BRIdkjkvz54PnEEI/EjwXDSIZp86/KKdbafHh1Df/RYGBhn4hbe2+uKC9FnT5UCEdyPz3ai9hQ==}
+
+ character-reference-invalid@1.1.4:
+ resolution: {integrity: sha512-mKKUkUbhPpQlCOfIuZkvSEgktjPFIsZKRRbC6KWVEMvlzblj3i3asQv5ODsrwt0N3pHAEvjP8KTQPHkp0+6jOg==}
+
+ character-reference-invalid@2.0.1:
+ resolution: {integrity: sha512-iBZ4F4wRbyORVsu0jPV7gXkOsGYjGHPmAyv+HiHG8gi5PtC9KI2j1+v8/tlibRvjoWX027ypmG/n0HtO5t7unw==}
+
+ chardet@0.7.0:
+ resolution: {integrity: sha512-mT8iDcrh03qDGRRmoA2hmBJnxpllMR+0/0qlzjqZES6NdiWDcZkCNAk4rPFZ9Q85r27unkiNNg8ZOiwZXBHwcA==}
+
+ charenc@0.0.2:
+ resolution: {integrity: sha512-yrLQ/yVUFXkzg7EDQsPieE/53+0RlaWTs+wBrvW36cyilJ2SaDWfl4Yj7MtLTXleV9uEKefbAGUPv2/iWSooRA==}
+
+ chargebee@2.44.0:
+ resolution: {integrity: sha512-yPAtwVJfVku6G8xWOGteXu5SzmCKy7H0KqCCU8yyl6FR2ae7Lu5Jr3dfSC/PdLO5XY7jhRo5E716j8rlenO4Uw==}
+ engines: {node: '>=0.6.0'}
+
+ charm@1.0.2:
+ resolution: {integrity: sha512-wqW3VdPnlSWT4eRiYX+hcs+C6ViBPUWk1qTCd+37qw9kEm/a5n2qcyQDMBWvSYKN/ctqZzeXNQaeBjOetJJUkw==}
+
+ chokidar@3.6.0:
+ resolution: {integrity: sha512-7VT13fmjotKpGipCW9JEQAusEPE+Ei8nl6/g4FBAmIm0GOOLMua9NDDo/DWp0ZAxCr3cPq5ZpBqmPAQgDda2Pw==}
+ engines: {node: '>= 8.10.0'}
+
+ chownr@1.1.4:
+ resolution: {integrity: sha512-jJ0bqzaylmJtVnNgzTeSOs8DPavpbYgEr/b0YL8/2GO3xJEhInFmhKMUnEJQjZumK7KXGFhUy89PrsJWlakBVg==}
+
+ chownr@2.0.0:
+ resolution: {integrity: sha512-bIomtDF5KGpdogkLd9VspvFzk9KfpyyGlS8YFVZl7TGPBHL5snIOnxeshwVgPteQ9b4Eydl+pVbIyE1DcvCWgQ==}
+ engines: {node: '>=10'}
+
+ chromium-bidi@0.4.7:
+ resolution: {integrity: sha512-6+mJuFXwTMU6I3vYLs6IL8A1DyQTPjCfIL971X0aMPVGRbGnNfl6i6Cl0NMbxi2bRYLGESt9T2ZIMRM5PAEcIQ==}
+ peerDependencies:
+ devtools-protocol: '*'
+
+ chromium-bidi@0.5.8:
+ resolution: {integrity: sha512-blqh+1cEQbHBKmok3rVJkBlBxt9beKBgOsxbFgs7UJcoVbbeZ+K7+6liAsjgpc8l1Xd55cQUy14fXZdGSb4zIw==}
+ peerDependencies:
+ devtools-protocol: '*'
+
+ ci-info@2.0.0:
+ resolution: {integrity: sha512-5tK7EtrZ0N+OLFMthtqOj4fI2Jeb88C4CAZPu25LDVUgXJ0A3Js4PMGqrn0JU1W0Mh1/Z8wZzYPxqUrXeBboCQ==}
+
+ ci-info@3.9.0:
+ resolution: {integrity: sha512-NIxF55hv4nSqQswkAeiOi1r83xy8JldOFDTWiug55KBu9Jnblncd2U6ViHmYgHf01TPZS77NJBhBMKdWj9HQMQ==}
+ engines: {node: '>=8'}
+
+ ci-info@4.1.0:
+ resolution: {integrity: sha512-HutrvTNsF48wnxkzERIXOe5/mlcfFcbfCmwcg6CJnizbSue78AbDt+1cgl26zwn61WFxhcPykPfZrbqjGmBb4A==}
+ engines: {node: '>=8'}
+
+ cipher-base@1.0.5:
+ resolution: {integrity: sha512-xq7ICKB4TMHUx7Tz1L9O2SGKOhYMOTR32oir45Bq28/AQTpHogKgHcoYFSdRbMtddl+ozNXfXY9jWcgYKmde0w==}
+ engines: {node: '>= 0.10'}
+
+ cjs-module-lexer@1.4.1:
+ resolution: {integrity: sha512-cuSVIHi9/9E/+821Qjdvngor+xpnlwnuwIyZOaLmHBVdXL+gP+I6QQB9VkO7RI77YIcTV+S1W9AreJ5eN63JBA==}
+
+ clean-deep@3.4.0:
+ resolution: {integrity: sha512-Lo78NV5ItJL/jl+B5w0BycAisaieJGXK1qYi/9m4SjR8zbqmrUtO7Yhro40wEShGmmxs/aJLI/A+jNhdkXK8mw==}
+ engines: {node: '>=4'}
+
+ clean-stack@2.2.0:
+ resolution: {integrity: sha512-4diC9HaTE+KRAMWhDhrGOECgWZxoevMc5TlkObMqNSsVU62PYzXZ/SMTjzyGAFF1YusgxGcSWTEXBhp0CPwQ1A==}
+ engines: {node: '>=6'}
+
+ cli-boxes@2.2.1:
+ resolution: {integrity: sha512-y4coMcylgSCdVinjiDBuR8PCC2bLjyGTwEmPb9NHR/QaNU6EUOXcTY/s6VjGMD6ENSEaeQYHCY0GNGS5jfMwPw==}
+ engines: {node: '>=6'}
+
+ cli-cursor@3.1.0:
+ resolution: {integrity: sha512-I/zHAwsKf9FqGoXM4WWRACob9+SNukZTd94DWF57E4toouRulbCxcUh6RKUEOQlYTHJnzkPMySvPNaaSLNfLZw==}
+ engines: {node: '>=8'}
+
+ cli-progress@3.12.0:
+ resolution: {integrity: sha512-tRkV3HJ1ASwm19THiiLIXLO7Im7wlTuKnvkYaTkyoAPefqjNg7W7DHKUlGRxy9vxDvbyCYQkQozvptuMkGCg8A==}
+ engines: {node: '>=4'}
+
+ cli-spinners@2.9.2:
+ resolution: {integrity: sha512-ywqV+5MmyL4E7ybXgKys4DugZbX0FC6LnwrhjuykIjnK9k8OQacQ7axGKnjDXWNhns0xot3bZI5h55H8yo9cJg==}
+ engines: {node: '>=6'}
+
+ cli-truncate@2.1.0:
+ resolution: {integrity: sha512-n8fOixwDD6b/ObinzTrp1ZKFzbgvKZvuz/TvejnLn1aQfC6r52XEx85FmuC+3HI+JM7coBRXUvNqEU2PHVrHpg==}
+ engines: {node: '>=8'}
+
+ cli-truncate@3.1.0:
+ resolution: {integrity: sha512-wfOBkjXteqSnI59oPcJkcPl/ZmwvMMOj340qUIY1SKZCv0B9Cf4D4fAucRkIKQmsIuYK3x1rrgU7MeGRruiuiA==}
+ engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0}
+
+ cli-width@3.0.0:
+ resolution: {integrity: sha512-FxqpkPPwu1HjuN93Omfm4h8uIanXofW0RxVEW3k5RKx+mJJYSthzNhp32Kzxxy3YAEZ/Dc/EWN1vZRY0+kOhbw==}
+ engines: {node: '>= 10'}
+
+ client-only@0.0.1:
+ resolution: {integrity: sha512-IV3Ou0jSMzZrd3pZ48nLkT9DA7Ag1pnPzaiQhpW7c3RbcqqzvzzVu+L8gfqMp/8IM2MQtSiqaCxrrcfu8I8rMA==}
+
+ cliui@6.0.0:
+ resolution: {integrity: sha512-t6wbgtoCXvAzst7QgXxJYqPt0usEfbgQdftEPbLL/cvv6HPE5VgvqCuAIDR0NgU52ds6rFwqrgakNLrHEjCbrQ==}
+
+ cliui@7.0.4:
+ resolution: {integrity: sha512-OcRE68cOsVMXp1Yvonl/fzkQOyjLSu/8bhPDfQt0e0/Eb283TKP20Fs2MqoPsr9SwA595rRCA+QMzYc9nBP+JQ==}
+
+ cliui@8.0.1:
+ resolution: {integrity: sha512-BSeNnyus75C4//NQ9gQt1/csTXyo/8Sb+afLAkzAptFuMsod9HFokGNudZpi/oQV73hnVK+sR+5PVRMd+Dr7YQ==}
+ engines: {node: '>=12'}
+
+ clone-deep@4.0.1:
+ resolution: {integrity: sha512-neHB9xuzh/wk0dIHweyAXv2aPGZIVk3pLMe+/RNzINf17fe0OG96QroktYAUm7SM1PBnzTabaLboqqxDyMU+SQ==}
+ engines: {node: '>=6'}
+
+ clone-response@1.0.3:
+ resolution: {integrity: sha512-ROoL94jJH2dUVML2Y/5PEDNaSHgeOdSDicUyS7izcF63G6sTc/FTjLub4b8Il9S8S0beOfYt0TaA5qvFK+w0wA==}
+
+ clone@1.0.4:
+ resolution: {integrity: sha512-JQHZ2QMW6l3aH/j6xCqQThY/9OH4D/9ls34cgkUBiEeocRTU04tHfKPBsUK1PqZCUQM7GiA0IIXJSuXHI64Kbg==}
+ engines: {node: '>=0.8'}
+
+ cloudflare@2.9.1:
+ resolution: {integrity: sha512-x8yXPPoloy7xQ9GCKnsvQ3U1nwvcLndA2B3nxwSjIWxgLTUJOyakeEDsrqxZO8Dr6FkGdaXwy554fQVMpOabiw==}
+
+ cloudinary-core@2.13.1:
+ resolution: {integrity: sha512-z53GPNWnvU0Zi+ns8CIVbZBfj7ps/++zDvwIyiFuq5p1MoK+KUCg0k5mBceDDHTnx1gHmHUd9aohS+gDxPNt6w==}
+ peerDependencies:
+ lodash: '>=4.0'
+
+ cloudinary@1.41.3:
+ resolution: {integrity: sha512-4o84y+E7dbif3lMns+p3UW6w6hLHEifbX/7zBJvaih1E9QNMZITENQ14GPYJC4JmhygYXsuuBb9bRA3xWEoOfg==}
+ engines: {node: '>=0.6'}
+
+ clubhouse-lib@0.12.0:
+ resolution: {integrity: sha512-+f7v8D2qqKxezdhTCvPtiov/1BYuTkyR2LIe3yEJPnecwqMtU8kjo0mcid7eRM2YSwwoHH/sJvzygE5TNDD5RA==}
+ deprecated: Deprecated in favor of @shortcut/client
+
+ co@4.6.0:
+ resolution: {integrity: sha512-QVb0dM5HvG+uaxitm8wONl7jltx8dqhfU33DcqtOZcLSVIKSDDLDi7+0LbAKiyI8hD9u42m2YxXSkMGWThaecQ==}
+ engines: {iojs: '>= 1.0.0', node: '>= 0.12.0'}
+
+ code-error-fragment@0.0.230:
+ resolution: {integrity: sha512-cadkfKp6932H8UkhzE/gcUqhRMNf8jHzkAN7+5Myabswaghu4xABTgPHDCjW+dBAJxj/SpkTYokpzDqY4pCzQw==}
+ engines: {node: '>= 4'}
+
+ code-point-at@1.1.0:
+ resolution: {integrity: sha512-RpAVKQA5T63xEj6/giIbUEtZwJ4UFIc3ZtvEkiaUERylqe8xb5IvqcgOurZLahv93CLKfxcw5YI+DZcUBRyLXA==}
+ engines: {node: '>=0.10.0'}
+
+ cohere-ai@7.14.0:
+ resolution: {integrity: sha512-hSo2/tFV29whjFFtVtdS7kHmtUsjfMO1sgwE/d5bhOE4O7Vkj5G1R9lLIqkIprp/+rrvCq3HGvEaOgry7xRcDA==}
+
+ collect-v8-coverage@1.0.2:
+ resolution: {integrity: sha512-lHl4d5/ONEbLlJvaJNtsF/Lz+WvB07u2ycqTYbdrq7UypDXailES4valYb2eWiJFxZlVmpGekfqoxQhzyFdT4Q==}
+
+ color-2-name@1.4.4:
+ resolution: {integrity: sha512-CSF+PANU5YSZYviiU88GJBeJADD4g9mydxLRMYtMEqVxhcLyl72b6PkMQnvomZyUZZLbPhfXs42QZcR0We4JOA==}
+ engines: {node: '>=14.0.0', npm: '>=6.0.0'}
+
+ color-convert@1.9.3:
+ resolution: {integrity: sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==}
+
+ color-convert@2.0.1:
+ resolution: {integrity: sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==}
+ engines: {node: '>=7.0.0'}
+
+ color-name@1.1.3:
+ resolution: {integrity: sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==}
+
+ color-name@1.1.4:
+ resolution: {integrity: sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==}
+
+ color-string@1.9.1:
+ resolution: {integrity: sha512-shrVawQFojnZv6xM40anx4CkoDP+fZsw/ZerEMsW/pyzsRbElpsL/DBVW7q3ExxwusdNXI3lXpuhEZkzs8p5Eg==}
+
+ color@3.2.1:
+ resolution: {integrity: sha512-aBl7dZI9ENN6fUGC7mWpMTPNHmWUSNan9tuWN6ahh5ZLNk9baLJOnSMlrQkHcrfFgz2/RigjUVAjdx36VcemKA==}
+
+ color@4.2.3:
+ resolution: {integrity: sha512-1rXeuUUiGGrykh+CeBdu5Ie7OJwinCgQY0bc7GCRxy5xVHy+moaqkpL/jqQq0MtQOeYcrqEz4abc5f0KtU7W4A==}
+ engines: {node: '>=12.5.0'}
+
+ colord@2.9.3:
+ resolution: {integrity: sha512-jeC1axXpnb0/2nn/Y1LPuLdgXBLH7aDcHu4KEKfqw3CUhX7ZpfBSlPKyqXE6btIgEzfWtrX3/tyBCaCvXvMkOw==}
+
+ colorette@2.0.20:
+ resolution: {integrity: sha512-IfEDxwoWIjkeXL1eXcDiow4UbKjhLdq6/EuSVR9GMN7KVH3r9gQ83e73hsz1Nd1T3ijd5xv1wcWRYO+D6kCI2w==}
+
+ colorspace@1.1.4:
+ resolution: {integrity: sha512-BgvKJiuVu1igBUF2kEjRCZXol6wiiGbY5ipL/oVPwm0BL9sIpMIzM8IK7vwuxIIzOXMV3Ey5w+vxhm0rR/TN8w==}
+
+ columns-graph-model@1.1.4:
+ resolution: {integrity: sha512-44pHExxpELWGa3ekgiI/lX8EWUy4IDgcSN/BQlHyd1hgW++lBx1YkiVXIDcQPtQd8uakkDAk+BcwdLliDC5CQg==}
+
+ columns-sdk@0.0.6:
+ resolution: {integrity: sha512-yaOcRgaV+XdIarxDOvpzUErxvvzbAfxiM4zQrrGvzCRMxdBBIg6CYThkcPxhl0BdCYwDumL4GQFrkefAMk38cg==}
+
+ combined-stream@1.0.8:
+ resolution: {integrity: sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==}
+ engines: {node: '>= 0.8'}
+
+ comma-separated-tokens@2.0.3:
+ resolution: {integrity: sha512-Fu4hJdvzeylCfQPp9SGWidpzrMs7tTrlu6Vb8XGaRGck8QSNZJJp538Wrb60Lax4fPwR64ViY468OIUTbRlGZg==}
+
+ command-exists@1.2.9:
+ resolution: {integrity: sha512-LTQ/SGc+s0Xc0Fu5WaKnR0YiygZkm9eKFvyS+fRsU7/ZWFF8ykFM6Pc9aCVf1+xasOOZpO3BAVgVrKvsqKHV7w==}
+
+ command-line-args@5.2.1:
+ resolution: {integrity: sha512-H4UfQhZyakIjC74I9d34fGYDwk3XpSr17QhEd0Q3I9Xq1CETHo4Hcuo87WyWHpAF1aSLjLRf5lD9ZGX2qStUvg==}
+ engines: {node: '>=4.0.0'}
+
+ command-line-usage@6.1.3:
+ resolution: {integrity: sha512-sH5ZSPr+7UStsloltmDh7Ce5fb8XPlHyoPzTpyyMuYCtervL65+ubVZ6Q61cFtFl62UyJlc8/JwERRbAFPUqgw==}
+ engines: {node: '>=8.0.0'}
+
+ commander@11.1.0:
+ resolution: {integrity: sha512-yPVavfyCcRhmorC7rWlkHn15b4wDVgVmBA7kV4QVBsF7kv/9TKJAbAXVTxvTnwP8HHKjRCJDClKbciiYS7p0DQ==}
+ engines: {node: '>=16'}
+
+ commander@12.1.0:
+ resolution: {integrity: sha512-Vw8qHK3bZM9y/P10u3Vib8o/DdkvA2OtPtZvD871QKjy74Wj1WSKFILMPRPSdUSx5RFK1arlJzEtA4PkFgnbuA==}
+ engines: {node: '>=18'}
+
+ commander@2.20.3:
+ resolution: {integrity: sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==}
+
+ commander@6.2.1:
+ resolution: {integrity: sha512-U7VdrJFnJgo4xjrHpTzu0yrHPGImdsmD95ZlgYSEajAn2JKzDhDTPG9kBTefmObL2w/ngeZnilk+OV9CG3d7UA==}
+ engines: {node: '>= 6'}
+
+ commander@9.5.0:
+ resolution: {integrity: sha512-KRs7WVDKg86PWiuAqhDrAQnTXZKraVcCc6vFdL14qrZ/DcWwuRo7VoiYXalXO7S5GKpqYiVEwCbgFDfxNHKJBQ==}
+ engines: {node: ^12.20.0 || >=14}
+
+ comment-patterns@0.12.2:
+ resolution: {integrity: sha512-yA1FeubMSK0MXzapPm1uNdxyGk0mTAn5qrsVS6uQUSDOpUgWVLCqsgZfA/lhRx6TCLr1MvxeRqXOb1peWXWg3Q==}
+
+ common-path-prefix@2.0.0:
+ resolution: {integrity: sha512-Lb9qbwwyQdRDmyib0qur7BC9/GHIbviTaQebayFsGC/n77AwFhZINCcJkQx2qVv9LJsA8F5ex65F2qrOfWGUyw==}
+
+ common-path-prefix@3.0.0:
+ resolution: {integrity: sha512-QE33hToZseCH3jS0qN96O/bSh3kaw/h+Tq7ngyY9eWDUnTlTNUyqfqvCXioLe5Na5jFsL78ra/wuBU4iuEgd4w==}
+
+ commondir@1.0.1:
+ resolution: {integrity: sha512-W9pAhw0ja1Edb5GVdIF1mjZw/ASI0AlShXM83UUGe2DVr5TdAPEA1OA8m/g8zWp9x6On7gqufY+FatDbC3MDQg==}
+
+ compare-versions@6.1.1:
+ resolution: {integrity: sha512-4hm4VPpIecmlg59CHXnRDnqGplJFrbLG4aFEl5vl6cK1u76ws3LLvX7ikFnTDl5vo39sjWD6AaDPYodJp/NNHg==}
+
+ component-emitter@1.3.1:
+ resolution: {integrity: sha512-T0+barUSQRTUQASh8bx02dl+DhF54GtIDY13Y3m9oWTklKbb3Wv974meRpeZ3lp1JpLVECWWNHC4vaG2XHXouQ==}
+
+ component-emitter@2.0.0:
+ resolution: {integrity: sha512-4m5s3Me2xxlVKG9PkZpQqHQR7bgpnN7joDMJ4yvVkVXngjoITG76IaZmzmywSeRTeTpc6N6r3H3+KyUurV8OYw==}
+ engines: {node: '>=18'}
+
+ component-type@1.2.1:
+ resolution: {integrity: sha512-Kgy+2+Uwr75vAi6ChWXgHuLvd+QLD7ssgpaRq2zCvt80ptvAfMc/hijcJxXkBa2wMlEZcJvC2H8Ubo+A9ATHIg==}
+
+ compress-commons@3.0.0:
+ resolution: {integrity: sha512-FyDqr8TKX5/X0qo+aVfaZ+PVmNJHJeckFBlq8jZGSJOgnynhfifoyl24qaqdUdDIBe0EVTHByN6NAkqYvE/2Xg==}
+ engines: {node: '>= 8'}
+
+ compressible@2.0.18:
+ resolution: {integrity: sha512-AF3r7P5dWxL8MxyITRMlORQNaOA2IkAFaTr4k7BUumjPtRpGDTZpl0Pb1XCO6JeDCBdp126Cgs9sMxqSjgYyRg==}
+ engines: {node: '>= 0.6'}
+
+ compute-gcd@1.2.1:
+ resolution: {integrity: sha512-TwMbxBNz0l71+8Sc4czv13h4kEqnchV9igQZBi6QUaz09dnz13juGnnaWWJTRsP3brxOoxeB4SA2WELLw1hCtg==}
+
+ compute-lcm@1.1.2:
+ resolution: {integrity: sha512-OFNPdQAXnQhDSKioX8/XYT6sdUlXwpeMjfd6ApxMJfyZ4GxmLR1xvMERctlYhlHwIiz6CSpBc2+qYKjHGZw4TQ==}
+
+ computeds@0.0.1:
+ resolution: {integrity: sha512-7CEBgcMjVmitjYo5q8JTJVra6X5mQ20uTThdK+0kR7UEaDrAWEQcRiBtWJzga4eRpP6afNwwLsX2SET2JhVB1Q==}
+
+ concat-map@0.0.1:
+ resolution: {integrity: sha1-2Klr13/Wjfd5OnMDajug1UBdR3s=}
+
+ concat-stream@2.0.0:
+ resolution: {integrity: sha512-MWufYdFw53ccGjCA+Ol7XJYpAlW6/prSMzuPOTRnJGcGzuhLn4Scrz7qf6o8bROZ514ltazcIFJZevcfbo0x7A==}
+ engines: {'0': node >= 6.0}
+
+ confbox@0.1.8:
+ resolution: {integrity: sha512-RMtmw0iFkeR4YV+fUOSucriAQNb9g8zFR52MWCtl+cCZOFRNL6zeB395vPzFhEjjn4fMxXudmELnl/KF/WrK6w==}
+
+ configstore@5.0.1:
+ resolution: {integrity: sha512-aMKprgk5YhBNyH25hj8wGt2+D52Sw1DRRIzqBwLp2Ya9mFmY8KPvvtvmna8SxVR9JMZ4kzMD68N22vlaRpkeFA==}
+ engines: {node: '>=8'}
+
+ console-control-strings@1.1.0:
+ resolution: {integrity: sha512-ty/fTekppD2fIwRvnZAVdeOiGd1c7YXEixbgJTNzqcxJWKQnjJ/V1bNEEE6hygpM3WjwHFUVK6HTjWSzV4a8sQ==}
+
+ content-type@1.0.5:
+ resolution: {integrity: sha512-nTjqfcBFEipKdXCv4YDQWCfmcLZKm81ldF0pAopTvyrFGVbcR6P/VAAd5G7N+0tTr8QqiU0tFadD6FK4NtJwOA==}
+ engines: {node: '>= 0.6'}
+
+ convert-source-map@1.9.0:
+ resolution: {integrity: sha512-ASFBup0Mz1uyiIjANan1jzLQami9z1PoYSZCiiYW2FczPbenXc45FZdBZLzOT+r6+iciuEModtmCti+hjaAk0A==}
+
+ convert-source-map@2.0.0:
+ resolution: {integrity: sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg==}
+
+ cookiejar@2.1.4:
+ resolution: {integrity: sha512-LDx6oHrK+PhzLKJU9j5S7/Y3jM/mUHvD/DeI1WQmJn652iPC5Y4TBzC9l+5OMOXlyTTA+SmVUPm0HQUwpD5Jqw==}
+
+ core-js-compat@3.39.0:
+ resolution: {integrity: sha512-VgEUx3VwlExr5no0tXlBt+silBvhTryPwCXRI2Id1PN8WTKu7MreethvddqOubrYxkFdv/RnYrqlv1sFNAUelw==}
+
+ core-js@3.39.0:
+ resolution: {integrity: sha512-raM0ew0/jJUqkJ0E6e8UDtl+y/7ktFivgWvqw8dNSQeNWoSDLvQ1H/RN3aPXB9tBd4/FhyR4RDPGhsNIMsAn7g==}
+
+ core-util-is@1.0.2:
+ resolution: {integrity: sha512-3lqz5YjWTYnW6dlDa5TLaTCcShfar1e40rmcJVwCBJC6mWlFuj0eCHIElmG1g5kyuJ/GD+8Wn4FFCcz4gJPfaQ==}
+
+ core-util-is@1.0.3:
+ resolution: {integrity: sha512-ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ==}
+
+ cosmiconfig@5.2.1:
+ resolution: {integrity: sha512-H65gsXo1SKjf8zmrJ67eJk8aIRKV5ff2D4uKZIBZShbhGSpEmsQOPW/SKMKYhSTrqR7ufy6RP69rPogdaPh/kA==}
+ engines: {node: '>=4'}
+
+ cosmiconfig@7.1.0:
+ resolution: {integrity: sha512-AdmX6xUzdNASswsFtmwSt7Vj8po9IuqXm0UXz7QKPuEUmPB4XyjGfaAr2PSuELMwkRMVH1EpIkX5bTZGRB3eCA==}
+ engines: {node: '>=10'}
+
+ cosmiconfig@9.0.0:
+ resolution: {integrity: sha512-itvL5h8RETACmOTFc4UfIyB2RfEHi71Ax6E/PivVxq9NseKbOWpeyHEOIbmAw1rs8Ak0VursQNww7lf7YtUwzg==}
+ engines: {node: '>=14'}
+ peerDependencies:
+ typescript: '>=4.9.5'
+ peerDependenciesMeta:
+ typescript:
+ optional: true
+
+ cp-file@6.2.0:
+ resolution: {integrity: sha512-fmvV4caBnofhPe8kOcitBwSn2f39QLjnAnGq3gO9dfd75mUytzKNZB1hde6QHunW2Rt+OwuBOMc3i1tNElbszA==}
+ engines: {node: '>=6'}
+
+ cp-file@7.0.0:
+ resolution: {integrity: sha512-0Cbj7gyvFVApzpK/uhCtQ/9kE9UnYpxMzaq5nQQC/Dh4iaj5fxp7iEFIullrYwzj8nf0qnsI1Qsx34hAeAebvw==}
+ engines: {node: '>=8'}
+
+ cpu-features@0.0.10:
+ resolution: {integrity: sha512-9IkYqtX3YHPCzoVg1Py+o9057a3i0fp7S530UWokCSaFVTc7CwXPRiOjRjBQQ18ZCNafx78YfnG+HALxtVmOGA==}
+ engines: {node: '>=10.0.0'}
+
+ crc32-stream@3.0.1:
+ resolution: {integrity: sha512-mctvpXlbzsvK+6z8kJwSJ5crm7yBwrQMTybJzMw1O4lLGJqjlDCXY2Zw7KheiA6XBEcBmfLx1D88mjRGVJtY9w==}
+ engines: {node: '>= 6.9.0'}
+
+ crc@3.8.0:
+ resolution: {integrity: sha512-iX3mfgcTMIq3ZKLIsVFAbv7+Mc10kxabAGQb8HvjA1o3T1PIYprbakQ65d3I+2HGHt6nSKkM9PYjgoJO2KcFBQ==}
+
+ create-error-class@3.0.2:
+ resolution: {integrity: sha512-gYTKKexFO3kh200H1Nit76sRwRtOY32vQd3jpAQKpLtZqyNsSQNfI4N7o3eP2wUjV35pTWKRYqFUDBvUha/Pkw==}
+ engines: {node: '>=0.10.0'}
+
+ create-hash@1.2.0:
+ resolution: {integrity: sha512-z00bCGNHDG8mHAkP7CtT1qVu+bFQUPjYq/4Iv3C3kWjTFV10zIjfSoeqXo9Asws8gwSHDGj/hl2u4OGIjapeCg==}
+
+ create-hmac@1.1.7:
+ resolution: {integrity: sha512-MJG9liiZ+ogc4TzUwuvbER1JRdgvUFSB5+VR/g5h82fGaIRWMWddtKBHi7/sVhfjQZ6SehlyhvQYrcYkaUIpLg==}
+
+ create-jest@29.7.0:
+ resolution: {integrity: sha512-Adz2bdH0Vq3F53KEMJOoftQFutWCukm6J24wbPWRO4k1kMY7gS7ds/uoJkNuV8wDCtWWnuwGcJwpWcih+zEW1Q==}
+ engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
+ hasBin: true
+
+ cron-parser@4.9.0:
+ resolution: {integrity: sha512-p0SaNjrHOnQeR8/VnfGbmg9te2kfyYSQ7Sc/j/6DtPL3JQvKxmjO9TSjNFpujqV3vEYYBvNNvXSxzyksBWAx1Q==}
+ engines: {node: '>=12.0.0'}
+
+ cross-fetch@3.1.5:
+ resolution: {integrity: sha512-lvb1SBsI0Z7GDwmuid+mU3kWVBwTVUbe7S0H52yaaAdQOXq2YktTCZdlAcNKFzE6QtRz0snpw9bNiPeOIkkQvw==}
+
+ cross-fetch@3.1.8:
+ resolution: {integrity: sha512-cvA+JwZoU0Xq+h6WkMvAUqPEYy92Obet6UdKLfW60qn99ftItKjB5T+BkyWOFWe2pUyfQ+IJHmpOTznqk1M6Kg==}
+
+ cross-fetch@4.0.0:
+ resolution: {integrity: sha512-e4a5N8lVvuLgAWgnCrLr2PP0YyDOTHa9H/Rj54dirp61qXnNq46m82bRhNqIA5VccJtWBvPTFRV3TtvHUKPB1g==}
+
+ cross-spawn@6.0.6:
+ resolution: {integrity: sha512-VqCUuhcd1iB+dsv8gxPttb5iZh/D0iubSP21g36KXdEuf6I5JiioesUVjpCdHV9MZRUfVFlvwtIUyPfxo5trtw==}
+ engines: {node: '>=4.8'}
+
+ cross-spawn@7.0.6:
+ resolution: {integrity: sha512-uV2QOWP2nWzsy2aMp8aRibhi9dlzF5Hgh5SHaB9OiTGEyDTiJJyx0uy51QXdyWbtAHNua4XJzUKca3OzKUd3vA==}
+ engines: {node: '>= 8'}
+
+ crypt@0.0.2:
+ resolution: {integrity: sha512-mCxBlsHFYh9C+HVpiEacem8FEBnMXgU9gy4zmNC+SXAZNB/1idgp/aulFJ4FgCi7GPEVbfyng092GqL2k2rmow==}
+
+ crypto-js@4.2.0:
+ resolution: {integrity: sha512-KALDyEYgpY+Rlob/iriUtjV6d5Eq+Y191A5g4UqLAi8CyGP9N1+FdVbkc1SxKc2r4YAYqG8JzO2KGL+AizD70Q==}
+
+ crypto-random-string@1.0.0:
+ resolution: {integrity: sha512-GsVpkFPlycH7/fRR7Dhcmnoii54gV1nz7y4CWyeFS14N+JVBBhY+r8amRHE4BwSYal7BPTDp8isvAlCxyFt3Hg==}
+ engines: {node: '>=4'}
+
+ crypto-random-string@2.0.0:
+ resolution: {integrity: sha512-v1plID3y9r/lPhviJ1wrXpLeyUIGAZ2SHNYTEapm7/8A9nLPoyvVp3RK/EPFqn5kEznyWgYZNsRtYYIWbuG8KA==}
+ engines: {node: '>=8'}
+
+ crypto@1.0.1:
+ resolution: {integrity: sha512-VxBKmeNcqQdiUQUW2Tzq0t377b54N2bMtXO/qiLa+6eRRmmC4qT3D4OnTGoT/U6O9aklQ/jTwbOtRMTTY8G0Ig==}
+ deprecated: This package is no longer supported. It's now a built-in Node module. If you've depended on crypto, you should switch to the one that's built-in.
+
+ css-functions-list@3.2.3:
+ resolution: {integrity: sha512-IQOkD3hbR5KrN93MtcYuad6YPuTSUhntLHDuLEbFWE+ff2/XSZNdZG+LcbbIW5AXKg/WFIfYItIzVoHngHXZzA==}
+ engines: {node: '>=12 || >=16'}
+
+ css-select@5.1.0:
+ resolution: {integrity: sha512-nwoRF1rvRRnnCqqY7updORDsuqKzqYJ28+oSMaJMMgOauh3fvwHqMS7EZpIPqK8GL+g9mKxF1vP/ZjSeNjEVHg==}
+
+ css-tree@3.0.1:
+ resolution: {integrity: sha512-8Fxxv+tGhORlshCdCwnNJytvlvq46sOLSYEx2ZIGurahWvMucSRnyjPA3AmrMq4VPRYbHVpWj5VkiVasrM2H4Q==}
+ engines: {node: ^10 || ^12.20.0 || ^14.13.0 || >=15.0.0}
+
+ css-what@6.1.0:
+ resolution: {integrity: sha512-HTUrgRJ7r4dsZKU6GjmpfRK1O76h97Z8MfS1G0FozR+oF2kG6Vfe8JE6zwrkbxigziPHinCJ+gCPjA9EaBDtRw==}
+ engines: {node: '>= 6'}
+
+ cssesc@3.0.0:
+ resolution: {integrity: sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg==}
+ engines: {node: '>=4'}
+ hasBin: true
+
+ cssfilter@0.0.10:
+ resolution: {integrity: sha1-xtJnJjKi5cg+AT5oZKQs6N79IK4=}
+
+ cssom@0.5.0:
+ resolution: {integrity: sha512-iKuQcq+NdHqlAcwUY0o/HL69XQrUaQdMjmStJ8JFmUaiiQErlhrmuigkg/CU4E2J0IyUKUrMAgl36TvN67MqTw==}
+
+ csstype@3.1.3:
+ resolution: {integrity: sha512-M1uQkMl8rQK/szD0LNhtqxIPLpimGm8sOBwU7lLnCpSbTyY3yeU1Vc7l4KT5zT4s/yOxHH5O7tIuuLOCnLADRw==}
+
+ csv-parse@5.6.0:
+ resolution: {integrity: sha512-l3nz3euub2QMg5ouu5U09Ew9Wf6/wQ8I++ch1loQ0ljmzhmfZYrH9fflS22i/PQEvsPvxCwxgz5q7UB8K1JO4Q==}
+
+ current-module-paths@1.1.2:
+ resolution: {integrity: sha512-H4s4arcLx/ugbu1XkkgSvcUZax0L6tXUqnppGniQb8l5VjUKGHoayXE5RiriiPhYDd+kjZnaok1Uig13PKtKYQ==}
+ engines: {node: '>=12.17'}
+
+ currify@4.0.0:
+ resolution: {integrity: sha512-ABfH28PWp5oqqp31cLXJQdeMqoFNej9rJOu84wKhN3jPCH7FAZg3zY1MVI27PTFoqfPlxOyhGmh9PzOVv+yN2g==}
+
+ custom-error-generator@7.0.0:
+ resolution: {integrity: sha512-/sR1A6avsI0IOeeOThWlnZqnx5/aoBsI2FznAmFiMC5loQissvItrVAkkc+AJEhBb/FC9nkVkjH2NyqYQkzNHw==}
+ engines: {'0': node >=0.6.0}
+
+ cyclist@1.0.2:
+ resolution: {integrity: sha512-0sVXIohTfLqVIW3kb/0n6IiWF3Ifj5nm2XaSrLq2DI6fKIGa2fYAZdk917rUneaeLVpYfFcyXE2ft0fe3remsA==}
+
+ d@1.0.2:
+ resolution: {integrity: sha512-MOqHvMWF9/9MX6nza0KgvFH4HpMU0EF5uUDXqX/BtxtU8NfB0QzRtJ8Oe/6SuS4kbhyzVJwjd97EA4PKrzJ8bw==}
+ engines: {node: '>=0.12'}
+
+ damerau-levenshtein@1.0.8:
+ resolution: {integrity: sha512-sdQSFB7+llfUcQHUQO3+B8ERRj0Oa4w9POWMI/puGtuf7gFywGmkaLCElnudfTiKZV+NvHqL0ifzdrI8Ro7ESA==}
+
+ dashdash@1.14.1:
+ resolution: {integrity: sha512-jRFi8UDGo6j+odZiEpjazZaWqEal3w/basFjQHQEwVtZJGDpxbH1MeYluwCS8Xq5wmLJooDlMgvVarmWfGM44g==}
+ engines: {node: '>=0.10'}
+
+ data-uri-to-buffer@3.0.1:
+ resolution: {integrity: sha512-WboRycPNsVw3B3TL559F7kuBUM4d8CgMEvk6xEJlOp7OBPjt6G7z8WMWlD2rOFZLk6OYfFIUGsCOWzcQH9K2og==}
+ engines: {node: '>= 6'}
+
+ data-uri-to-buffer@4.0.1:
+ resolution: {integrity: sha512-0R9ikRb668HB7QDxT1vkpuUBtqc53YyAwMwGeUFKRojY/NWKvdZ+9UYtRfGmhqNbRkTSVpMbmyhXipFFv2cb/A==}
+ engines: {node: '>= 12'}
+
+ data-uri-to-buffer@6.0.2:
+ resolution: {integrity: sha512-7hvf7/GW8e86rW0ptuwS3OcBGDjIi6SZva7hCyWC0yYry2cOPmLIjXAUHI6DK2HsnwJd9ifmt57i8eV2n4YNpw==}
+ engines: {node: '>= 14'}
+
+ data-view-buffer@1.0.1:
+ resolution: {integrity: sha512-0lht7OugA5x3iJLOWFhWK/5ehONdprk0ISXqVFn/NFrDu+cuc8iADFrGQz5BnRK7LLU3JmkbXSxaqX+/mXYtUA==}
+ engines: {node: '>= 0.4'}
+
+ data-view-byte-length@1.0.1:
+ resolution: {integrity: sha512-4J7wRJD3ABAzr8wP+OcIcqq2dlUKp4DVflx++hs5h5ZKydWMI6/D/fAot+yh6g2tHh8fLFTvNOaVN357NvSrOQ==}
+ engines: {node: '>= 0.4'}
+
+ data-view-byte-offset@1.0.0:
+ resolution: {integrity: sha512-t/Ygsytq+R995EJ5PZlD4Cu56sWa8InXySaViRzw9apusqsOO2bQP+SbYzAhR0pFKoB+43lYy8rWban9JSuXnA==}
+ engines: {node: '>= 0.4'}
+
+ databox@2.1.2:
+ resolution: {integrity: sha512-LmYu8YnIlzVsnTmrC8AFhdEQ75SiU3lex25GWKo+xxgjkW5SvHC2IcEI7YDVetOaS2ilOdJDH8i/NUefB682jg==}
+
+ datauri@4.1.0:
+ resolution: {integrity: sha512-y17kh32+I82G+ED9MNWFkZiP/Cq/vO1hN9+tSZsT9C9qn3NrvcBnh7crSepg0AQPge1hXx2Ca44s1FRdv0gFWA==}
+ engines: {node: '>= 10'}
+
+ date-fns@2.30.0:
+ resolution: {integrity: sha512-fnULvOpxnC5/Vg3NCiWelDsLiUc9bRwAPs/+LfTLNvetFCtCTN+yQz15C/fs4AwX1R9K5GLtLfn8QW+dWisaAw==}
+ engines: {node: '>=0.11'}
+
+ date-fns@3.6.0:
+ resolution: {integrity: sha512-fRHTG8g/Gif+kSh50gaGEdToemgfj74aRX3swtiouboip5JDLAyDE9F11nHMIcvOaXeOC6D7SpNhi7uFyB7Uww==}
+
+ date-fns@4.1.0:
+ resolution: {integrity: sha512-Ukq0owbQXxa/U3EGtsdVBkR1w7KOQ5gIBqdH2hkvknzZPYvBxb/aa6E8L7tmjFtkwZBu3UXBbjIgPo/Ez4xaNg==}
+
+ date-format@4.0.14:
+ resolution: {integrity: sha512-39BOQLs9ZjKh0/patS9nrT8wc3ioX3/eA/zgbKNopnF2wCqJEoxywwwElATYvRsXdnOxA/OQeQoFZ3rFjVajhg==}
+ engines: {node: '>=4.0'}
+
+ dateformat@5.0.3:
+ resolution: {integrity: sha512-Kvr6HmPXUMerlLcLF+Pwq3K7apHpYmGDVqrxcDasBg86UcKeTSNWbEzU8bwdXnxnR44FtMhJAxI4Bov6Y/KUfA==}
+ engines: {node: '>=12.20'}
+
+ dayjs@1.11.13:
+ resolution: {integrity: sha512-oaMBel6gjolK862uaPQOVTA7q3TZhuSvuMQAAglQDOWYO9A91IrAOUJEyKVlqJlHE0vq5p5UXxzdPfMH/x6xNg==}
+
+ de-indent@1.0.2:
+ resolution: {integrity: sha512-e/1zu3xH5MQryN2zdVaF0OrdNLUbvWxzMbi+iNA6Bky7l1RoP8a2fIbRocyHclXt/arDrrR6lL3TqFD9pMQTsg==}
+
+ debug@2.6.9:
+ resolution: {integrity: sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==}
+ peerDependencies:
+ supports-color: '*'
+ peerDependenciesMeta:
+ supports-color:
+ optional: true
+
+ debug@3.1.0:
+ resolution: {integrity: sha512-OX8XqP7/1a9cqkxYw2yXss15f26NKWBpDXQd0/uK/KPqdQhxbPa994hnzjcE2VqQpDslf55723cKPUOGSmMY3g==}
+ peerDependencies:
+ supports-color: '*'
+ peerDependenciesMeta:
+ supports-color:
+ optional: true
+
+ debug@3.2.7:
+ resolution: {integrity: sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==}
+ peerDependencies:
+ supports-color: '*'
+ peerDependenciesMeta:
+ supports-color:
+ optional: true
+
+ debug@4.3.4:
+ resolution: {integrity: sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==}
+ engines: {node: '>=6.0'}
+ peerDependencies:
+ supports-color: '*'
+ peerDependenciesMeta:
+ supports-color:
+ optional: true
+
+ debug@4.3.7:
+ resolution: {integrity: sha512-Er2nc/H7RrMXZBFCEim6TCmMk02Z8vLC2Rbi1KEBggpo0fS6l0S1nnapwmIi3yW/+GOJap1Krg4w0Hg80oCqgQ==}
+ engines: {node: '>=6.0'}
+ peerDependencies:
+ supports-color: '*'
+ peerDependenciesMeta:
+ supports-color:
+ optional: true
+
+ decamelize@1.2.0:
+ resolution: {integrity: sha512-z2S+W9X73hAUUki+N+9Za2lBlun89zigOyGrsax+KUQ6wKW4ZoWpEYBkGhQjwAjjDCkWxhY0VKEhk8wzY7F5cA==}
+ engines: {node: '>=0.10.0'}
+
+ decode-named-character-reference@1.0.2:
+ resolution: {integrity: sha512-O8x12RzrUF8xyVcY0KJowWsmaJxQbmy0/EtnNtHRpsOcT7dFk5W598coHqBVpmWo1oQQfsCqfCmkZN5DJrZVdg==}
+
+ decode-uri-component@0.2.2:
+ resolution: {integrity: sha512-FqUYQ+8o158GyGTrMFJms9qh3CqTKvAqgqsTnkLI8sKu0028orqBhxNMFkFen0zGyg6epACD32pjVk58ngIErQ==}
+ engines: {node: '>=0.10'}
+
+ decode-uri-component@0.4.1:
+ resolution: {integrity: sha512-+8VxcR21HhTy8nOt6jf20w0c9CADrw1O8d+VZ/YzzCt4bJ3uBjw+D1q2osAB8RnpwwaeYBxy0HyKQxD5JBMuuQ==}
+ engines: {node: '>=14.16'}
+
+ decompress-response@6.0.0:
+ resolution: {integrity: sha512-aW35yZM6Bb/4oJlZncMH2LCoZtJXTRxES17vE3hoRiowU2kWHaJKFkSBDnDR+cm9J+9QhXmREyIfv0pji9ejCQ==}
+ engines: {node: '>=10'}
+
+ dedent@1.5.3:
+ resolution: {integrity: sha512-NHQtfOOW68WD8lgypbLA5oT+Bt0xXJhiYvoR6SmmNXZfpzOGXwdKWmcwG8N7PwVVWV3eF/68nmD9BaJSsTBhyQ==}
+ peerDependencies:
+ babel-plugin-macros: ^3.1.0
+ peerDependenciesMeta:
+ babel-plugin-macros:
+ optional: true
+
+ deeks@2.6.1:
+ resolution: {integrity: sha512-PZrpz5xLo2JPZa3L+kqMMMdZU5pRwMysTM1xd6pLhNtgQw4Iq3wbF2QWaQTVh+HRq9Yg4rcjDIJ+scfGLxmsjQ==}
+ engines: {node: '>= 12'}
+
+ deep-assign@3.0.0:
+ resolution: {integrity: sha512-YX2i9XjJ7h5q/aQ/IM9PEwEnDqETAIYbggmdDB3HLTlSgo1CxPsj6pvhPG68rq6SVE0+p+6Ywsm5fTYNrYtBWw==}
+ engines: {node: '>=0.10.0'}
+ deprecated: Check out `lodash.merge` or `merge-options` instead.
+
+ deep-extend@0.6.0:
+ resolution: {integrity: sha512-LOHxIOaPYdHlJRtCQfDIVZtfw/ufM8+rVj649RIHzcm/vGwQRXFt6OPqIFWsm2XEMrNIEtWR64sY1LEKD2vAOA==}
+ engines: {node: '>=4.0.0'}
+
+ deep-is@0.1.4:
+ resolution: {integrity: sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==}
+
+ deepmerge@4.3.1:
+ resolution: {integrity: sha512-3sUqbMEc77XqpdNO7FRyRog+eW3ph+GYCbj+rK+uYyRMuwsVy0rMiVtPn+QJlKFvWP/1PYpapqYn0Me2knFn+A==}
+ engines: {node: '>=0.10.0'}
+
+ defaults@1.0.4:
+ resolution: {integrity: sha512-eFuaLoy/Rxalv2kr+lqMlUnrDWV+3j4pljOIJgLIhI058IQfWJ7vXhyEIHu+HtC738klGALYxOKDO0bQP3tg8A==}
+
+ defer-to-connect@2.0.1:
+ resolution: {integrity: sha512-4tvttepXG1VaYGrRibk5EwJd1t4udunSOVMdLSAL6mId1ix438oPwPZMALY41FCijukO1L0twNcGsdzS7dHgDg==}
+ engines: {node: '>=10'}
+
+ define-data-property@1.1.4:
+ resolution: {integrity: sha512-rBMvIzlpA8v6E+SJZoo++HAYqsLrkg7MSfIinMPFhmkorw7X+dOXVJQs+QT69zGkzMyfDnIMN2Wid1+NbL3T+A==}
+ engines: {node: '>= 0.4'}
+
+ define-lazy-prop@2.0.0:
+ resolution: {integrity: sha512-Ds09qNh8yw3khSjiJjiUInaGX9xlqZDY7JVryGxdxV7NPeuqQfplOpQ66yJFZut3jLa5zOwkXw1g9EI2uKh4Og==}
+ engines: {node: '>=8'}
+
+ define-properties@1.2.1:
+ resolution: {integrity: sha512-8QmQKqEASLd5nx0U1B1okLElbUuuttJ/AnYmRXbbbGDWh6uS208EjD4Xqq/I9wK7u0v6O08XhTWnt5XtEbR6Dg==}
+ engines: {node: '>= 0.4'}
+
+ degenerator@3.0.4:
+ resolution: {integrity: sha512-Z66uPeBfHZAHVmue3HPfyKu2Q0rC2cRxbTOsvmU/po5fvvcx27W4mIu9n0PUlQih4oUYvcG1BsbtVv8x7KDOSw==}
+ engines: {node: '>= 6'}
+
+ degenerator@5.0.1:
+ resolution: {integrity: sha512-TllpMR/t0M5sqCXfj85i4XaAzxmS5tVA16dqvdkMwGmzI+dXLXnw3J+3Vdv7VKw+ThlTMboK6i9rnZ6Nntj5CQ==}
+ engines: {node: '>= 14'}
+
+ del@5.1.0:
+ resolution: {integrity: sha512-wH9xOVHnczo9jN2IW68BabcecVPxacIA3g/7z6vhSU/4stOKQzeCRK0yD0A24WiAAUJmmVpWqrERcTxnLo3AnA==}
+ engines: {node: '>=8'}
+
+ delayed-stream@1.0.0:
+ resolution: {integrity: sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ==}
+ engines: {node: '>=0.4.0'}
+
+ delegates@1.0.0:
+ resolution: {integrity: sha512-bd2L678uiWATM6m5Z1VzNCErI3jiGzt6HGY8OVICs40JQq/HALfbyNJmp0UDakEY4pMMaN0Ly5om/B1VI/+xfQ==}
+
+ delighted@2.1.0:
+ resolution: {integrity: sha512-GC981FrvWm4ElRf0QHDUNDn1NvvyVy0bmfdygPtUmknUJDeFqgmf8+MJlX40KQBgg1NgkYdWQQlW8PuIqRR0qw==}
+
+ denque@2.1.0:
+ resolution: {integrity: sha512-HVQE3AAb/pxF8fQAoiqpvg9i3evqug3hoiwakOyZAwJm+6vZehbkYXZ0l4JxS+I3QxM97v5aaRNhj8v5oBhekw==}
+ engines: {node: '>=0.10'}
+
+ depd@1.1.2:
+ resolution: {integrity: sha512-7emPTl6Dpo6JRXOXjLRxck+FlLRX5847cLKEn00PLAgc3g2hTZZgr+e4c2v6QpSmLeFP3n5yUo7ft6avBK/5jQ==}
+ engines: {node: '>= 0.6'}
+
+ depd@2.0.0:
+ resolution: {integrity: sha512-g7nH6P6dyDioJogAAGprGpCtVImJhpPk/roCzdb3fIh61/s/nPsfR6onyMwkCAR/OlC3yBC0lESvUoQEAssIrw==}
+ engines: {node: '>= 0.8'}
+
+ deprecation@2.3.1:
+ resolution: {integrity: sha512-xmHIy4F3scKVwMsQ4WnVaS8bHOx0DmVwRywosKhaILI0ywMDWPtBSku2HNxRvF7jtwDRsoEwYQSfbxj8b7RlJQ==}
+
+ depseek@0.4.1:
+ resolution: {integrity: sha512-YYfPPajzH9s2qnEva411VJzCMWtArBTfluI9USiKQ+T6xBWFh3C7yPxhaa1KVgJa17v9aRKc+LcRhgxS5/9mOA==}
+
+ dequal@2.0.3:
+ resolution: {integrity: sha512-0je+qPKHEMohvfRTCEo3CrPG6cAzAYgmzKyxRiYSSDkS6eGJdyVJm7WaYA5ECaAD9wLB2T4EEeymA5aFVcYXCA==}
+ engines: {node: '>=6'}
+
+ destroy@1.2.0:
+ resolution: {integrity: sha512-2sJGJTaXIIaR1w4iJSNoN0hnMY7Gpc/n8D4qSCJw8QqFWXf7cuAgnEHxBpweaVcPevC2l3KpjYCx3NypQQgaJg==}
+ engines: {node: '>= 0.8', npm: 1.2.8000 || >= 1.4.16}
+
+ detect-libc@2.0.3:
+ resolution: {integrity: sha512-bwy0MGW55bG41VqxxypOsdSdGqLwXPI/focwgTYCFMbdUiBAxLg9CFzG08sz2aqzknwiX7Hkl0bQENjg8iLByw==}
+ engines: {node: '>=8'}
+
+ detect-newline@3.1.0:
+ resolution: {integrity: sha512-TLz+x/vEXm/Y7P7wn1EJFNLxYpUD4TgMosxY6fAVJUnJMbupHBOncxyWUG9OpTaH9EBD7uFI5LfEgmMOc54DsA==}
+ engines: {node: '>=8'}
+
+ detect-node@2.1.0:
+ resolution: {integrity: sha512-T0NIuQpnTvFDATNuHN5roPwSBG83rFsuO+MXXH9/3N1eFbn4wcPjttvjMLEPWJ0RGUYgQE7cGgS3tNxbqCGM7g==}
+
+ detective-amd@3.1.2:
+ resolution: {integrity: sha512-jffU26dyqJ37JHR/o44La6CxtrDf3Rt9tvd2IbImJYxWKTMdBjctp37qoZ6ZcY80RHg+kzWz4bXn39e4P7cctQ==}
+ engines: {node: '>=6.0'}
+ hasBin: true
+
+ detective-cjs@3.1.3:
+ resolution: {integrity: sha512-ljs7P0Yj9MK64B7G0eNl0ThWSYjhAaSYy+fQcpzaKalYl/UoQBOzOeLCSFEY1qEBhziZ3w7l46KG/nH+s+L7BQ==}
+ engines: {node: '>=6.0'}
+
+ detective-es6@2.2.2:
+ resolution: {integrity: sha512-eZUKCUsbHm8xoeoCM0z6JFwvDfJ5Ww5HANo+jPR7AzkFpW9Mun3t/TqIF2jjeWa2TFbAiGaWESykf2OQp3oeMw==}
+ engines: {node: '>=6.0'}
+
+ detective-less@1.0.2:
+ resolution: {integrity: sha512-Rps1xDkEEBSq3kLdsdnHZL1x2S4NGDcbrjmd4q+PykK5aJwDdP5MBgrJw1Xo+kyUHuv3JEzPqxr+Dj9ryeDRTA==}
+ engines: {node: '>= 6.0'}
+
+ detective-postcss@3.0.1:
+ resolution: {integrity: sha512-tfTS2GdpUal5NY0aCqI4dpEy8Xfr88AehYKB0iBIZvo8y2g3UsrcDnrp9PR2FbzoW7xD5Rip3NJW7eCSvtqdUw==}
+ engines: {node: '>=6.0.0'}
+
+ detective-sass@3.0.2:
+ resolution: {integrity: sha512-DNVYbaSlmti/eztFGSfBw4nZvwsTaVXEQ4NsT/uFckxhJrNRFUh24d76KzoCC3aarvpZP9m8sC2L1XbLej4F7g==}
+ engines: {node: '>=6.0'}
+
+ detective-scss@2.0.2:
+ resolution: {integrity: sha512-hDWnWh/l0tht/7JQltumpVea/inmkBaanJUcXRB9kEEXVwVUMuZd6z7eusQ6GcBFrfifu3pX/XPyD7StjbAiBg==}
+ engines: {node: '>=6.0'}
+
+ detective-stylus@1.0.3:
+ resolution: {integrity: sha512-4/bfIU5kqjwugymoxLXXLltzQNeQfxGoLm2eIaqtnkWxqbhap9puDVpJPVDx96hnptdERzS5Cy6p9N8/08A69Q==}
+
+ detective-typescript@5.8.0:
+ resolution: {integrity: sha512-SrsUCfCaDTF64QVMHMidRal+kmkbIc5zP8cxxZPsomWx9vuEUjBlSJNhf7/ypE5cLdJJDI4qzKDmyzqQ+iz/xg==}
+ engines: {node: '>=6.0'}
+
+ devlop@1.1.0:
+ resolution: {integrity: sha512-RWmIqhcFf1lRYBvNmr7qTNuyCt/7/ns2jbpp1+PalgE/rDQcBT0fioSMUpJ93irlUhC5hrg4cYqe6U+0ImW0rA==}
+
+ devtools-protocol@0.0.1107588:
+ resolution: {integrity: sha512-yIR+pG9x65Xko7bErCUSQaDLrO/P1p3JUzEk7JCU4DowPcGHkTGUGQapcfcLc4qj0UaALwZ+cr0riFgiqpixcg==}
+
+ devtools-protocol@0.0.1232444:
+ resolution: {integrity: sha512-pM27vqEfxSxRkTMnF+XCmxSEb6duO5R+t8A9DEEJgy4Wz2RVanje2mmj99B6A3zv2r/qGfYlOvYznUhuokizmg==}
+
+ dezalgo@1.0.4:
+ resolution: {integrity: sha512-rXSP0bf+5n0Qonsb+SVVfNfIsimO4HEtmnIpPHY8Q1UCzKlQrDMfdobr8nJOOsRgWCyMRqeSBQzmWUMq7zvVig==}
+
+ diff-match-patch@1.0.5:
+ resolution: {integrity: sha512-IayShXAgj/QMXgB0IWmKx+rOPuGMhqm5w6jvFxmVenXKIzRqTAAsbBPT3kWQeGANj3jGgvcvv4yK6SxqYmikgw==}
+
+ diff-sequences@27.5.1:
+ resolution: {integrity: sha512-k1gCAXAsNgLwEL+Y8Wvl+M6oEFj5bgazfZULpS5CneoPPXRaCCW7dm+q21Ky2VEE5X+VeRDBVg1Pcvvsr4TtNQ==}
+ engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0}
+
+ diff-sequences@29.6.3:
+ resolution: {integrity: sha512-EjePK1srD3P08o2j4f0ExnylqRs5B9tJjcp9t1krH2qRi8CCdsYfwe9JgSLurFBWwq4uOlipzfk5fHNvwFKr8Q==}
+ engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
+
+ diff@3.5.0:
+ resolution: {integrity: sha512-A46qtFgd+g7pDZinpnwiRJtxbC1hpgf0uzP3iG89scHk0AUC7A1TGxf5OiiOUv/JMZR8GOt8hL900hV0bOy5xA==}
+ engines: {node: '>=0.3.1'}
+
+ dir-glob@3.0.1:
+ resolution: {integrity: sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA==}
+ engines: {node: '>=8'}
+
+ discontinuous-range@1.0.0:
+ resolution: {integrity: sha512-c68LpLbO+7kP/b1Hr1qs8/BJ09F5khZGTxqxZuhzxpmwJKOgRFHJWIb9/KmqnqHhLdO55aOxFH/EGBvUQbL/RQ==}
+
+ do-wrapper@4.5.1:
+ resolution: {integrity: sha512-E2I3xvDS306UwzpuQYL4wz5Fm+RvtV0cxOBPiWsflAEOA06mcBxAEUXvMeox9L6WI7R1PMiEhHLdo/s52JqUAQ==}
+
+ doc-path@3.1.0:
+ resolution: {integrity: sha512-Pv2hLQbUM8du5681lTWIYk0OtVBmNhMAeZNGeFhMMJBIR89Nw4XesBwee1Xtlfk83n71tn0Y6VsJOn4d3qIiTw==}
+ engines: {node: '>=12'}
+
+ doctrine@2.1.0:
+ resolution: {integrity: sha512-35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw==}
+ engines: {node: '>=0.10.0'}
+
+ doctrine@3.0.0:
+ resolution: {integrity: sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w==}
+ engines: {node: '>=6.0.0'}
+
+ dom-helpers@5.2.1:
+ resolution: {integrity: sha512-nRCa7CK3VTrM2NmGkIy4cbK7IZlgBE/PYMn55rrXefr5xXDP0LdtfPnblFDoVdcAfslJ7or6iqAUnx0CCGIWQA==}
+
+ dom-serializer@1.4.1:
+ resolution: {integrity: sha512-VHwB3KfrcOOkelEG2ZOfxqLZdfkil8PtJi4P8N2MMXucZq2yLp75ClViUlOVwyoHEDjYU433Aq+5zWP61+RGag==}
+
+ dom-serializer@2.0.0:
+ resolution: {integrity: sha512-wIkAryiqt/nV5EQKqQpo3SToSOV9J0DnbJqwK7Wv/Trc92zIAYZ4FlMu+JPFW1DfGFt81ZTCGgDEabffXeLyJg==}
+
+ domelementtype@2.3.0:
+ resolution: {integrity: sha512-OLETBj6w0OsagBwdXnPdN0cnMfF9opN69co+7ZrbfPGrdpPVNBUj02spi6B1N7wChLQiPn4CSH/zJvXw56gmHw==}
+
+ domhandler@4.3.1:
+ resolution: {integrity: sha512-GrwoxYN+uWlzO8uhUXRl0P+kHE4GtVPfYzVLcUxPL7KNdHKj66vvlhiweIHqYYXWlw+T8iLMp42Lm67ghw4WMQ==}
+ engines: {node: '>= 4'}
+
+ domhandler@5.0.3:
+ resolution: {integrity: sha512-cgwlv/1iFQiFnU96XXgROh8xTeetsnJiDsTc7TYCLFd9+/WNkIqPTxiM/8pSd8VIrhXGTf1Ny1q1hquVqDJB5w==}
+ engines: {node: '>= 4'}
+
+ domutils@2.8.0:
+ resolution: {integrity: sha512-w96Cjofp72M5IIhpjgobBimYEfoPjx1Vx0BSX9P30WBdZW2WIKU0T1Bd0kz2eNZ9ikjKgHbEyKx8BB6H1L3h3A==}
+
+ domutils@3.1.0:
+ resolution: {integrity: sha512-H78uMmQtI2AhgDJjWeQmHwJJ2bLPD3GMmO7Zja/ZZh84wkm+4ut+IUnUdRa8uCGX88DiVx1j6FRe1XfxEgjEZA==}
+
+ dot-prop@5.3.0:
+ resolution: {integrity: sha512-QM8q3zDe58hqUqjraQOmzZ1LIH9SWQJTlEKCH4kJ2oQvLZk7RbQXvtDM2XEq3fwkV9CCvvH4LA0AV+ogFsBM2Q==}
+ engines: {node: '>=8'}
+
+ dot-prop@6.0.1:
+ resolution: {integrity: sha512-tE7ztYzXHIeyvc7N+hR3oi7FIbf/NIjVP9hmAt3yMXzrQ072/fpjGLx2GxNxGxUl5V73MEqYzioOMoVhGMJ5cA==}
+ engines: {node: '>=10'}
+
+ dotenv@8.6.0:
+ resolution: {integrity: sha512-IrPdXQsk2BbzvCBGBOTmmSH5SodmqZNt4ERAZDmW4CT+tL8VtvinqywuANaFu4bOMWki16nqf0e4oC0QIaDr/g==}
+ engines: {node: '>=10'}
+
+ double-ended-queue@2.0.0-0:
+ resolution: {integrity: sha512-t5ouWOpItmHrm0J0+bX/cFrIjBFWnJkk5LbIJq6bbU/M4aLX2c3LrM4QYsBptwvlPe3WzdpQefQ0v1pe/A5wjg==}
+
+ dropbox@10.34.0:
+ resolution: {integrity: sha512-5jb5/XzU0fSnq36/hEpwT5/QIep7MgqKuxghEG44xCu7HruOAjPdOb3x0geXv5O/hd0nHpQpWO+r5MjYTpMvJg==}
+ engines: {node: '>=0.10.3'}
+ peerDependencies:
+ '@types/node-fetch': ^2.5.7
+
+ dts-critic@3.3.11:
+ resolution: {integrity: sha512-HMO2f9AO7ge44YO8OK18f+cxm/IaE1CFuyNFbfJRCEbyazWj5X5wWDF6W4CGdo5Ax0ILYVfJ7L/rOwuUN1fzWw==}
+ engines: {node: '>=10.17.0'}
+ peerDependencies:
+ typescript: '*'
+
+ dtslint@4.2.1:
+ resolution: {integrity: sha512-57mWY9osUEfS6k62ATS9RSgug1dZcuN4O31hO76u+iEexa6VUEbKoPGaA2mNtc0FQDcdTl0zEUtti79UQKSQyQ==}
+ engines: {node: '>=10.0.0'}
+ deprecated: See https://aka.ms/type-testing-tools
+ hasBin: true
+ peerDependencies:
+ typescript: '>= 3.0.0-dev || >= 3.1.0-dev || >= 3.2.0-dev || >= 3.3.0-dev || >= 3.4.0-dev || >= 3.5.0-dev || >= 3.6.0-dev || >= 3.7.0-dev || >= 3.8.0-dev || >= 3.9.0-dev || >= 4.0.0-dev'
+
+ duplexer3@0.1.5:
+ resolution: {integrity: sha512-1A8za6ws41LQgv9HrE/66jyC5yuSjQ3L/KOpFtoBilsAK2iA2wuS5rTt1OCzIvtS2V7nVmedsUU+DGRcjBmOYA==}
+
+ duplexer@0.1.2:
+ resolution: {integrity: sha512-jtD6YG370ZCIi/9GTaJKQxWTZD045+4R4hTk/x1UyoqadyJ9x9CgSi1RlVDQF8U2sxLLSnFkCaMihqljHIWgMg==}
+
+ duplexify@4.1.3:
+ resolution: {integrity: sha512-M3BmBhwJRZsSx38lZyhE53Csddgzl5R7xGJNk7CVddZD6CcmwMCH8J+7AprIrQKH7TonKxaCjcv27Qmf+sQ+oA==}
+
+ e2b@1.0.5:
+ resolution: {integrity: sha512-0c2xqNQfVcVBmETsd1bXWCYaN3iVl7m81dJVcjB7O2/c15A7t0s/FkydcZGzVvfZchj40/1f09AdjGX6nk1eNQ==}
+ engines: {node: '>=18'}
+
+ eastasianwidth@0.2.0:
+ resolution: {integrity: sha512-I88TYZWc9XiYHRQ4/3c5rjjfgkjhLyW2luGIheGERbNQ6OY7yTybanSpDXZa8y7VUP9YmDcYa+eyq4ca7iLqWA==}
+
+ ecc-jsbn@0.1.2:
+ resolution: {integrity: sha512-eh9O+hwRHNbG4BLTjEl3nw044CkGm5X6LoaCf7LPp7UU8Qrt47JYNi6nPX8xjW97TKGKm1ouctg0QSpZe9qrnw==}
+
+ ecdsa-sig-formatter@1.0.11:
+ resolution: {integrity: sha512-nagl3RYrbNv6kQkeJIpt6NJZy8twLB/2vtz6yN9Z4vRKHN4/QZJIEbqohALSgwKdnksuY3k5Addp5lg8sVoVcQ==}
+
+ ee-first@1.1.1:
+ resolution: {integrity: sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow==}
+
+ eivindfjeldstad-dot@0.0.1:
+ resolution: {integrity: sha512-fQc4xSFjrQ35pissb3PGf+kew7jX3zsNAPjuswujUl6gjj9rhvZoO++tlRI+KLbT7bIL3KMWYyks49EP3luMNA==}
+ deprecated: Use @eivifj/dot instead
+
+ ejs@3.1.10:
+ resolution: {integrity: sha512-UeJmFfOrAQS8OJWPZ4qtgHyWExa088/MtK5UEyoJGFH67cDEXkZSviOiKRCZ4Xij0zxI3JECgYs3oKx+AizQBA==}
+ engines: {node: '>=0.10.0'}
+ hasBin: true
+
+ electron-to-chromium@1.5.64:
+ resolution: {integrity: sha512-IXEuxU+5ClW2IGEYFC2T7szbyVgehupCWQe5GNh+H065CD6U6IFN0s4KeAMFGNmQolRU4IV7zGBWSYMmZ8uuqQ==}
+
+ elf-cam@0.1.1:
+ resolution: {integrity: sha512-tKSFTWOp5OwJSp6MKyQDX7umYDkvUuI8rxHXw8BuUQ63d9Trj9xLeo6SHyoTGSoZNNZVitFa+RuHHXuoAzN3Rw==}
+
+ emitter-component@1.1.2:
+ resolution: {integrity: sha512-QdXO3nXOzZB4pAjM0n6ZE+R9/+kPpECA/XSELIcc54NeYVnBqIk+4DFiBgK+8QbV3mdvTG6nedl7dTYgO+5wDw==}
+
+ emittery@0.13.1:
+ resolution: {integrity: sha512-DeWwawk6r5yR9jFgnDKYt4sLS0LmHJJi3ZOnb5/JdbYwj3nW+FxQnHIjhBKz8YLC7oRNPVM9NQ47I3CVx34eqQ==}
+ engines: {node: '>=12'}
+
+ emoji-regex@10.4.0:
+ resolution: {integrity: sha512-EC+0oUMY1Rqm4O6LLrgjtYDvcVYTy7chDnM4Q7030tP4Kwj3u/pR6gP9ygnp2CJMK5Gq+9Q2oqmrFJAz01DXjw==}
+
+ emoji-regex@8.0.0:
+ resolution: {integrity: sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==}
+
+ emoji-regex@9.2.2:
+ resolution: {integrity: sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==}
+
+ emojis-list@3.0.0:
+ resolution: {integrity: sha512-/kyM18EfinwXZbno9FyUGeFh87KC8HRQBQGildHZbEuRyWFOmv1U10o9BBp8XVZDVNNuQKyIGIu5ZYAAXJ0V2Q==}
+ engines: {node: '>= 4'}
+
+ enabled@2.0.0:
+ resolution: {integrity: sha512-AKrN98kuwOzMIdAizXGI86UFBoo26CL21UM763y1h/GMSJ4/OHU9k2YlsmBpyScFo/wbLzWQJBMCW4+IO3/+OQ==}
+
+ encodeurl@2.0.0:
+ resolution: {integrity: sha512-Q0n9HRi4m6JuGIV1eFlmvJB7ZEVxu93IrMyiMsGC0lrMJMWzRgx6WGquyfQgZVb31vhGgXnfmPNNXmxnOkRBrg==}
+ engines: {node: '>= 0.8'}
+
+ encoding-japanese@2.0.0:
+ resolution: {integrity: sha512-++P0RhebUC8MJAwJOsT93dT+5oc5oPImp1HubZpAuCZ5kTLnhuuBhKHj2jJeO/Gj93idPBWmIuQ9QWMe5rX3pQ==}
+ engines: {node: '>=8.10.0'}
+
+ encoding-japanese@2.1.0:
+ resolution: {integrity: sha512-58XySVxUgVlBikBTbQ8WdDxBDHIdXucB16LO5PBHR8t75D54wQrNo4cg+58+R1CtJfKnsVsvt9XlteRaR8xw1w==}
+ engines: {node: '>=8.10.0'}
+
+ end-of-stream@1.4.4:
+ resolution: {integrity: sha512-+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q==}
+
+ enhanced-resolve@5.17.1:
+ resolution: {integrity: sha512-LMHl3dXhTcfv8gM4kEzIUeTQ+7fpdA0l2tUf34BddXPkz2A5xJ5L/Pchd5BL6rdccM9QGvu0sWZzK1Z1t4wwyg==}
+ engines: {node: '>=10.13.0'}
+
+ enquirer@2.4.1:
+ resolution: {integrity: sha512-rRqJg/6gd538VHvR3PSrdRBb/1Vy2YfzHqzvbhGIQpDRKIa4FgV/54b5Q1xYSxOOwKvjXweS26E0Q+nAMwp2pQ==}
+ engines: {node: '>=8.6'}
+
+ ent@2.2.1:
+ resolution: {integrity: sha512-QHuXVeZx9d+tIQAz/XztU0ZwZf2Agg9CcXcgE1rurqvdBeDBrpSwjl8/6XUqMg7tw2Y7uAdKb2sRv+bSEFqQ5A==}
+ engines: {node: '>= 0.4'}
+
+ entities@2.2.0:
+ resolution: {integrity: sha512-p92if5Nz619I0w+akJrLZH0MX0Pb5DX39XOwQTtXSdQQOaYH03S1uIQp4mhOZtAXrxq4ViO67YTiLBo2638o9A==}
+
+ entities@4.5.0:
+ resolution: {integrity: sha512-V0hjH4dGPh9Ao5p0MoRY6BVqtwCjhz6vI5LT8AJ55H+4g9/4vbHx1I54fS0XuclLhDHArPQCiMjDxjaL8fPxhw==}
+ engines: {node: '>=0.12'}
+
+ env-paths@2.2.1:
+ resolution: {integrity: sha512-+h1lkLKhZMTYjog1VEpJNG7NZJWcuc2DDk/qsqSTRRCOXiLjeQ1d1/udrUGhqMxUgAlwKNZ0cf2uqan5GLuS2A==}
+ engines: {node: '>=6'}
+
+ err-code@2.0.3:
+ resolution: {integrity: sha512-2bmlRpNKBxT/CRmPOlyISQpNj+qSeYvcym/uT0Jx2bMOlKLtSy1ZmLuVxSEKKyor/N5yhvp/ZiG1oE3DEYMSFA==}
+
+ error-ex@1.3.2:
+ resolution: {integrity: sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==}
+
+ es-abstract@1.23.5:
+ resolution: {integrity: sha512-vlmniQ0WNPwXqA0BnmwV3Ng7HxiGlh6r5U6JcTMNx8OilcAGqVJBHJcPjqOMaczU9fRuRK5Px2BdVyPRnKMMVQ==}
+ engines: {node: '>= 0.4'}
+
+ es-aggregate-error@1.0.13:
+ resolution: {integrity: sha512-KkzhUUuD2CUMqEc8JEqsXEMDHzDPE8RCjZeUBitsnB1eNcAJWQPiciKsMXe3Yytj4Flw1XLl46Qcf9OxvZha7A==}
+ engines: {node: '>= 0.4'}
+
+ es-array-method-boxes-properly@1.0.0:
+ resolution: {integrity: sha512-wd6JXUmyHmt8T5a2xreUwKcGPq6f1f+WwIJkijUqiGcJz1qqnZgP6XIK+QyIWU5lT7imeNxUll48bziG+TSYcA==}
+
+ es-class@2.1.1:
+ resolution: {integrity: sha512-loFNtCIGY81XvaHMzsxPocOgwZW71p+d/iES+zDSWeK9D4JaxrR/AoO0sZnWbV39D/ESppKbHrApxMi+Vbl8rg==}
+
+ es-define-property@1.0.0:
+ resolution: {integrity: sha512-jxayLKShrEqqzJ0eumQbVhTYQM27CfT1T35+gCgDFoL82JLsXqTJ76zv6A0YLOgEnLUMvLzsDsGIrl8NFpT2gQ==}
+ engines: {node: '>= 0.4'}
+
+ es-errors@1.3.0:
+ resolution: {integrity: sha512-Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw==}
+ engines: {node: '>= 0.4'}
+
+ es-get-iterator@1.1.3:
+ resolution: {integrity: sha512-sPZmqHBe6JIiTfN5q2pEi//TwxmAFHwj/XEuYjTuse78i8KxaqMTTzxPoFKuzRpDpTJ+0NAbpfenkmH2rePtuw==}
+
+ es-iterator-helpers@1.2.0:
+ resolution: {integrity: sha512-tpxqxncxnpw3c93u8n3VOzACmRFoVmWJqbWXvX/JfKbkhBw1oslgPrUfeSt2psuqyEJFD6N/9lg5i7bsKpoq+Q==}
+ engines: {node: '>= 0.4'}
+
+ es-object-atoms@1.0.0:
+ resolution: {integrity: sha512-MZ4iQ6JwHOBQjahnjwaC1ZtIBH+2ohjamzAO3oaHcXYup7qxjF2fixyH+Q71voWHeOkI2q/TnJao/KfXYIZWbw==}
+ engines: {node: '>= 0.4'}
+
+ es-set-tostringtag@2.0.3:
+ resolution: {integrity: sha512-3T8uNMC3OQTHkFUsFq8r/BwAXLHvU/9O9mE0fBc/MY5iq/8H7ncvO947LmYA6ldWw9Uh8Yhf25zu6n7nML5QWQ==}
+ engines: {node: '>= 0.4'}
+
+ es-shim-unscopables@1.0.2:
+ resolution: {integrity: sha512-J3yBRXCzDu4ULnQwxyToo/OjdMx6akgVC7K6few0a7F/0wLtmKKN7I73AH5T2836UuXRqN7Qg+IIUw/+YJksRw==}
+
+ es-to-primitive@1.2.1:
+ resolution: {integrity: sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA==}
+ engines: {node: '>= 0.4'}
+
+ es5-ext@0.10.64:
+ resolution: {integrity: sha512-p2snDhiLaXe6dahss1LddxqEm+SkuDvV8dnIQG0MWjyHpcMNfXKPE+/Cc0y+PhxJX3A4xGNeFCj5oc0BUh6deg==}
+ engines: {node: '>=0.10'}
+
+ es6-iterator@2.0.3:
+ resolution: {integrity: sha512-zw4SRzoUkd+cl+ZoE15A9o1oQd920Bb0iOJMQkQhl3jNc03YqVjAhG7scf9C5KWRU/R13Orf588uCC6525o02g==}
+
+ es6-promise@3.3.1:
+ resolution: {integrity: sha512-SOp9Phqvqn7jtEUxPWdWfWoLmyt2VaJ6MpvP9Comy1MceMXqE6bxvaTu4iaxpYYPzhny28Lc+M87/c2cPK6lDg==}
+
+ es6-symbol@3.1.4:
+ resolution: {integrity: sha512-U9bFFjX8tFiATgtkJ1zg25+KviIXpgRvRHS8sau3GfhVzThRQrOeksPeT0BWW2MNZs1OEWJ1DPXOQMn0KKRkvg==}
+ engines: {node: '>=0.12'}
+
+ es6-weak-map@2.0.3:
+ resolution: {integrity: sha512-p5um32HOTO1kP+w7PRnB+5lQ43Z6muuMuIMffvDN8ZB4GcnjLBV6zGStpbASIMk4DCAvEaamhe2zhyCb/QXXsA==}
+
+ esbuild@0.11.10:
+ resolution: {integrity: sha512-XvGbf+UreVFA24Tlk6sNOqNcvF2z49XAZt4E7A4H80+yqn944QOLTTxaU0lkdYNtZKFiITNea+VxmtrfjvnLPA==}
+ hasBin: true
+
+ esbuild@0.21.5:
+ resolution: {integrity: sha512-mg3OPMV4hXywwpoDxu3Qda5xCKQi+vCTZq8S9J/EpkhB2HzKXq4SNFZE3+NK93JYxc8VMSep+lOUSC/RVKaBqw==}
+ engines: {node: '>=12'}
+ hasBin: true
+
+ escalade@3.2.0:
+ resolution: {integrity: sha512-WUj2qlxaQtO4g6Pq5c29GTcWGDyd8itL8zTlipgECz3JesAiiOKotd8JU6otB3PACgG6xkJUyVhboMS+bje/jA==}
+ engines: {node: '>=6'}
+
+ escape-html@1.0.3:
+ resolution: {integrity: sha512-NiSupZ4OeuGwr68lGIeym/ksIZMJodUGOSCZ/FSnTxcrekbvqrgdUxlJOMpijaKZVjAJrWrGs/6Jy8OMuyj9ow==}
+
+ escape-string-regexp@1.0.5:
+ resolution: {integrity: sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==}
+ engines: {node: '>=0.8.0'}
+
+ escape-string-regexp@2.0.0:
+ resolution: {integrity: sha512-UpzcLCXolUWcNu5HtVMHYdXJjArjsF9C0aNnquZYY4uW/Vu0miy5YoWvbV345HauVvcAUnpRuhMMcqTcGOY2+w==}
+ engines: {node: '>=8'}
+
+ escape-string-regexp@4.0.0:
+ resolution: {integrity: sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==}
+ engines: {node: '>=10'}
+
+ escodegen@1.14.3:
+ resolution: {integrity: sha512-qFcX0XJkdg+PB3xjZZG/wKSuT1PnQWx57+TVSjIMmILd2yC/6ByYElPwJnslDsuWuSAp4AwJGumarAAmJch5Kw==}
+ engines: {node: '>=4.0'}
+ hasBin: true
+
+ escodegen@2.1.0:
+ resolution: {integrity: sha512-2NlIDTwUWJN0mRPQOdtQBzbUHvdGY2P1VXSyU83Q3xKxM7WHX2Ql8dKq782Q9TgQUNOLEzEYu9bzLNj1q88I5w==}
+ engines: {node: '>=6.0'}
+ hasBin: true
+
+ eslint-compat-utils@0.5.1:
+ resolution: {integrity: sha512-3z3vFexKIEnjHE3zCMRo6fn/e44U7T1khUjg+Hp0ZQMCigh28rALD0nPFBcGZuiLC5rLZa2ubQHDRln09JfU2Q==}
+ engines: {node: '>=12'}
+ peerDependencies:
+ eslint: '>=6.0.0'
+
+ eslint-config-next@15.0.3:
+ resolution: {integrity: sha512-IGP2DdQQrgjcr4mwFPve4DrCqo7CVVez1WoYY47XwKSrYO4hC0Dlb+iJA60i0YfICOzgNADIb8r28BpQ5Zs0wg==}
+ peerDependencies:
+ eslint: ^7.23.0 || ^8.0.0 || ^9.0.0
+ typescript: '>=3.3.1'
+ peerDependenciesMeta:
+ typescript:
+ optional: true
+
+ eslint-import-resolver-node@0.3.9:
+ resolution: {integrity: sha512-WFj2isz22JahUv+B788TlO3N6zL3nNJGU8CcZbPZvVEkBPaJdCV4vy5wyghty5ROFbCRnm132v8BScu5/1BQ8g==}
+
+ eslint-import-resolver-typescript@3.6.3:
+ resolution: {integrity: sha512-ud9aw4szY9cCT1EWWdGv1L1XR6hh2PaRWif0j2QjQ0pgTY/69iw+W0Z4qZv5wHahOl8isEr+k/JnyAqNQkLkIA==}
+ engines: {node: ^14.18.0 || >=16.0.0}
+ peerDependencies:
+ eslint: '*'
+ eslint-plugin-import: '*'
+ eslint-plugin-import-x: '*'
+ peerDependenciesMeta:
+ eslint-plugin-import:
+ optional: true
+ eslint-plugin-import-x:
+ optional: true
+
+ eslint-module-utils@2.12.0:
+ resolution: {integrity: sha512-wALZ0HFoytlyh/1+4wuZ9FJCD/leWHQzzrxJ8+rebyReSLk7LApMyd3WJaLVoN+D5+WIdJyDK1c6JnE65V4Zyg==}
+ engines: {node: '>=4'}
+ peerDependencies:
+ '@typescript-eslint/parser': '*'
+ eslint: '*'
+ eslint-import-resolver-node: '*'
+ eslint-import-resolver-typescript: '*'
+ eslint-import-resolver-webpack: '*'
+ peerDependenciesMeta:
+ '@typescript-eslint/parser':
+ optional: true
+ eslint:
+ optional: true
+ eslint-import-resolver-node:
+ optional: true
+ eslint-import-resolver-typescript:
+ optional: true
+ eslint-import-resolver-webpack:
+ optional: true
+
+ eslint-plugin-es-x@7.8.0:
+ resolution: {integrity: sha512-7Ds8+wAAoV3T+LAKeu39Y5BzXCrGKrcISfgKEqTS4BDN8SFEDQd0S43jiQ8vIa3wUKD07qitZdfzlenSi8/0qQ==}
+ engines: {node: ^14.18.0 || >=16.0.0}
+ peerDependencies:
+ eslint: '>=8'
+
+ eslint-plugin-import@2.31.0:
+ resolution: {integrity: sha512-ixmkI62Rbc2/w8Vfxyh1jQRTdRTF52VxwRVHl/ykPAmqG+Nb7/kNn+byLP0LxPgI7zWA16Jt82SybJInmMia3A==}
+ engines: {node: '>=4'}
+ peerDependencies:
+ '@typescript-eslint/parser': '*'
+ eslint: ^2 || ^3 || ^4 || ^5 || ^6 || ^7.2.0 || ^8 || ^9
+ peerDependenciesMeta:
+ '@typescript-eslint/parser':
+ optional: true
+
+ eslint-plugin-jest@28.9.0:
+ resolution: {integrity: sha512-rLu1s1Wf96TgUUxSw6loVIkNtUjq1Re7A9QdCCHSohnvXEBAjuL420h0T/fMmkQlNsQP2GhQzEUpYHPfxBkvYQ==}
+ engines: {node: ^16.10.0 || ^18.12.0 || >=20.0.0}
+ peerDependencies:
+ '@typescript-eslint/eslint-plugin': ^6.0.0 || ^7.0.0 || ^8.0.0
+ eslint: ^7.0.0 || ^8.0.0 || ^9.0.0
+ jest: '*'
+ peerDependenciesMeta:
+ '@typescript-eslint/eslint-plugin':
+ optional: true
+ jest:
+ optional: true
+
+ eslint-plugin-jsonc@1.7.0:
+ resolution: {integrity: sha512-pb3CAD9B0zhv3r9Bg9AdzswL50I3mbIq1ys+tNeuaDeibFlweo84SBNm22oqaFx/Dka+YZw2SLukAkQlJzSHMQ==}
+ engines: {node: '>=8.10.0'}
+ peerDependencies:
+ eslint: '>=5.0.0'
+
+ eslint-plugin-jsx-a11y@6.10.2:
+ resolution: {integrity: sha512-scB3nz4WmG75pV8+3eRUQOHZlNSUhFNq37xnpgRkCCELU3XMvXAxLk1eqWWyE22Ki4Q01Fnsw9BA3cJHDPgn2Q==}
+ engines: {node: '>=4.0'}
+ peerDependencies:
+ eslint: ^3 || ^4 || ^5 || ^6 || ^7 || ^8 || ^9
+
+ eslint-plugin-n@17.14.0:
+ resolution: {integrity: sha512-maxPLMEA0rPmRpoOlxEclKng4UpDe+N5BJS4t24I3UKnN109Qcivnfs37KMy84G0af3bxjog5lKctP5ObsvcTA==}
+ engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
+ peerDependencies:
+ eslint: '>=8.23.0'
+
+ eslint-plugin-pipedream@0.2.4:
+ resolution: {integrity: sha512-mKgRf5DFJnxcDantRh0b7CoSNRqPiDZMlAP9Ab/Pha8Uq7ZseIEiRGtWOJwp9tHSZnNOe1+MCN1X6yXnWC39sA==}
+
+ eslint-plugin-putout@23.2.0:
+ resolution: {integrity: sha512-uv+TkB3Dli3QzsKVkmGCX2MKnM2VF18eh2O64uxGlHUtoG4nlJ6+y0MksWDclJn648RQA5qvj+4E81NERT6bNg==}
+ engines: {node: '>=18'}
+ peerDependencies:
+ eslint: '>=8.0.0'
+ putout: '>=36'
+
+ eslint-plugin-react-hooks@5.0.0:
+ resolution: {integrity: sha512-hIOwI+5hYGpJEc4uPRmz2ulCjAGD/N13Lukkh8cLV0i2IRk/bdZDYjgLVHj+U9Z704kLIdIO6iueGvxNur0sgw==}
+ engines: {node: '>=10'}
+ peerDependencies:
+ eslint: ^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0-0 || ^9.0.0
+
+ eslint-plugin-react@7.37.2:
+ resolution: {integrity: sha512-EsTAnj9fLVr/GZleBLFbj/sSuXeWmp1eXIN60ceYnZveqEaUCyW4X+Vh4WTdUhCkW4xutXYqTXCUSyqD4rB75w==}
+ engines: {node: '>=4'}
+ peerDependencies:
+ eslint: ^3 || ^4 || ^5 || ^6 || ^7 || ^8 || ^9.7
+
+ eslint-scope@7.2.2:
+ resolution: {integrity: sha512-dOt21O7lTMhDM+X9mB4GX+DZrZtCUJPL/wlcTqxyrx5IvO0IYtILdtrQGQp+8n5S0gwSVmOf9NQrjMOgfQZlIg==}
+ engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
+
+ eslint-utils@2.1.0:
+ resolution: {integrity: sha512-w94dQYoauyvlDc43XnGB8lU3Zt713vNChgt4EWwhXAP2XkBvndfxF0AgIqKOOasjPIPzj9JqgwkwbCYD0/V3Zg==}
+ engines: {node: '>=6'}
+
+ eslint-utils@3.0.0:
+ resolution: {integrity: sha512-uuQC43IGctw68pJA1RgbQS8/NP7rch6Cwd4j3ZBtgo4/8Flj4eGE7ZYSZRN3iq5pVUv6GPdW5Z1RFleo84uLDA==}
+ engines: {node: ^10.0.0 || ^12.0.0 || >= 14.0.0}
+ peerDependencies:
+ eslint: '>=5'
+
+ eslint-visitor-keys@1.3.0:
+ resolution: {integrity: sha512-6J72N8UNa462wa/KFODt/PJ3IU60SDpC3QXC1Hjc1BXXpfL2C9R5+AU7jhe0F6GREqVMh4Juu+NY7xn+6dipUQ==}
+ engines: {node: '>=4'}
+
+ eslint-visitor-keys@2.1.0:
+ resolution: {integrity: sha512-0rSmRBzXgDzIsD6mGdJgevzgezI534Cer5L/vyMX0kHzT/jiB43jRhd9YUlMGYLQy2zprNmoT8qasCGtY+QaKw==}
+ engines: {node: '>=10'}
+
+ eslint-visitor-keys@3.4.3:
+ resolution: {integrity: sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag==}
+ engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
+
+ eslint-visitor-keys@4.2.0:
+ resolution: {integrity: sha512-UyLnSehNt62FFhSwjZlHmeokpRK59rcz29j+F1/aDgbkbRTk7wIc9XzdoasMUbRNKDM0qQt/+BJ4BrpFeABemw==}
+ engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
+
+ eslint@8.57.1:
+ resolution: {integrity: sha512-ypowyDxpVSYpkXr9WPv2PAZCtNip1Mv5KTW0SCurXv/9iOpcrH9PaqUElksqEB6pChqHGDRCFTyrZlGhnLNGiA==}
+ engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
+ deprecated: This version is no longer supported. Please see https://eslint.org/version-support for other options.
+ hasBin: true
+
+ esniff@2.0.1:
+ resolution: {integrity: sha512-kTUIGKQ/mDPFoJ0oVfcmyJn4iBDRptjNVIzwIFR7tqWXdVI9xfA2RMwY/gbSpJG3lkdWNEjLap/NqVHZiJsdfg==}
+ engines: {node: '>=0.10'}
+
+ espree@10.3.0:
+ resolution: {integrity: sha512-0QYC8b24HWY8zjRnDTL6RiHfDbAWn63qb4LMj1Z4b076A4une81+z03Kg7l7mn/48PUTqoLptSXez8oknU8Clg==}
+ engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
+
+ espree@6.2.1:
+ resolution: {integrity: sha512-ysCxRQY3WaXJz9tdbWOwuWr5Y/XrPTGX9Kiz3yoUXwW0VZ4w30HTkQLaGx/+ttFjF8i+ACbArnB4ce68a9m5hw==}
+ engines: {node: '>=6.0.0'}
+
+ espree@9.6.1:
+ resolution: {integrity: sha512-oruZaFkjorTpF32kDSI5/75ViwGeZginGGy2NoOSg3Q9bnwlnmDm4HLnkl0RE3n+njDXR037aY1+x58Z/zFdwQ==}
+ engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
+
+ esprima@1.0.4:
+ resolution: {integrity: sha512-rp5dMKN8zEs9dfi9g0X1ClLmV//WRyk/R15mppFNICIFRG5P92VP7Z04p8pk++gABo9W2tY+kHyu6P1mEHgmTA==}
+ engines: {node: '>=0.4.0'}
+ hasBin: true
+
+ esprima@1.2.2:
+ resolution: {integrity: sha512-+JpPZam9w5DuJ3Q67SqsMGtiHKENSMRVoxvArfJZK01/BfLEObtZ6orJa/MtoGNR/rfMgp5837T41PAmTwAv/A==}
+ engines: {node: '>=0.4.0'}
+ hasBin: true
+
+ esprima@4.0.1:
+ resolution: {integrity: sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==}
+ engines: {node: '>=4'}
+ hasBin: true
+
+ esquery@1.6.0:
+ resolution: {integrity: sha512-ca9pw9fomFcKPvFLXhBKUK90ZvGibiGOvRJNbjljY7s7uq/5YO4BOzcYtJqExdx99rF6aAcnRxHmcUHcz6sQsg==}
+ engines: {node: '>=0.10'}
+
+ esrecurse@4.3.0:
+ resolution: {integrity: sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==}
+ engines: {node: '>=4.0'}
+
+ estraverse@4.3.0:
+ resolution: {integrity: sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw==}
+ engines: {node: '>=4.0'}
+
+ estraverse@5.3.0:
+ resolution: {integrity: sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==}
+ engines: {node: '>=4.0'}
+
+ estree-to-babel@10.0.1:
+ resolution: {integrity: sha512-88kLs3xHXa+f6e1fi5R8uC8IHJPLKcl2UN1eKHduf9abbv1HV9TPZSlxGUXRcsl80KVjPhJixURorueIE9IMbA==}
+ engines: {node: '>=18'}
+
+ estree-util-attach-comments@3.0.0:
+ resolution: {integrity: sha512-cKUwm/HUcTDsYh/9FgnuFqpfquUbwIqwKM26BVCGDPVgvaCl/nDCCjUfiLlx6lsEZ3Z4RFxNbOQ60pkaEwFxGw==}
+
+ estree-util-is-identifier-name@3.0.0:
+ resolution: {integrity: sha512-hFtqIDZTIUZ9BXLb8y4pYGyk6+wekIivNVTcmvk8NoOh+VeRn5y6cEHzbURrWbfp1fIqdVipilzj+lfaadNZmg==}
+
+ estree-walker@2.0.2:
+ resolution: {integrity: sha512-Rfkk/Mp/DL7JVje3u18FxFujQlTNR2q6QfMSMB7AvCBx91NGj/ba3kCfza0f6dVDbw7YlRf/nDrn7pQrCCyQ/w==}
+
+ esutils@2.0.3:
+ resolution: {integrity: sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==}
+ engines: {node: '>=0.10.0'}
+
+ event-emitter@0.3.5:
+ resolution: {integrity: sha512-D9rRn9y7kLPnJ+hMq7S/nhvoKwwvVJahBi2BPmx3bvbsEdK3W9ii8cBSGjP+72/LnM4n6fo3+dkCX5FeTQruXA==}
+
+ event-stream@3.3.4:
+ resolution: {integrity: sha1-SrTJoPWlTbkzi0w02Gv86PSzVXE=}
+
+ event-target-shim@5.0.1:
+ resolution: {integrity: sha512-i/2XbnSz/uxRCU6+NdVJgKWDTM427+MqYbkQzD321DuCQJUqOuJKIA0IM2+W2xtYHdKOmZ4dR6fExsd4SXL+WQ==}
+ engines: {node: '>=6'}
+
+ eventemitter3@3.1.2:
+ resolution: {integrity: sha512-tvtQIeLVHjDkJYnzf2dgVMxfuSGJeM/7UCG17TT4EumTfNtF+0nebF/4zWOIkCreAbtNqhGEboB6BWrwqNaw4Q==}
+
+ eventemitter3@4.0.7:
+ resolution: {integrity: sha512-8guHBZCwKnFhYdHr2ysuRWErTwhoN2X8XELRlrRwpmfeY2jjuUN4taQMsULKUVo1K4DvZl+0pgfyoysHxvmvEw==}
+
+ eventemitter3@5.0.1:
+ resolution: {integrity: sha512-GWkBvjiSZK87ELrYOSESUYeVIc9mvLLf/nXalMOS5dYrgZq9o5OVkbZAVM06CVxYsCwH9BDZFPlQTlPA1j4ahA==}
+
+ eventid@2.0.1:
+ resolution: {integrity: sha512-sPNTqiMokAvV048P2c9+foqVJzk49o6d4e0D/sq5jog3pw+4kBgyR0gaM1FM7Mx6Kzd9dztesh9oYz1LWWOpzw==}
+ engines: {node: '>=10'}
+
+ events@3.3.0:
+ resolution: {integrity: sha512-mQw+2fkQbALzQ7V0MY0IqdnXNOeTtP4r0lN9z7AAawCXgqea7bDii20AYrIBrFd/Hx0M2Ocz6S111CaFkUcb0Q==}
+ engines: {node: '>=0.8.x'}
+
+ execa@1.0.0:
+ resolution: {integrity: sha512-adbxcyWV46qiHyvSp50TKt05tB4tK3HcmF7/nxfAdhnox83seTDbwnaqKO4sXRy7roHAIFqJP/Rw/AuEbX61LA==}
+ engines: {node: '>=6'}
+
+ execa@5.1.1:
+ resolution: {integrity: sha512-8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg==}
+ engines: {node: '>=10'}
+
+ exit@0.1.2:
+ resolution: {integrity: sha512-Zk/eNKV2zbjpKzrsQ+n1G6poVbErQxJ0LBOJXaKZ1EViLzH+hrLu9cdXI4zw9dBQJslwBEpbQ2P1oS7nDxs6jQ==}
+ engines: {node: '>= 0.8.0'}
+
+ expand-tilde@2.0.2:
+ resolution: {integrity: sha512-A5EmesHW6rfnZ9ysHQjPdJRni0SRar0tjtG5MNtm9n5TUvsYU8oozprtRD4AqHxcZWWlVuAmQo2nWKfN9oyjTw==}
+ engines: {node: '>=0.10.0'}
+
+ expect@29.7.0:
+ resolution: {integrity: sha512-2Zks0hf1VLFYI1kbh0I5jP3KHHyCHpkfyHBzsSXRFgl/Bg9mWYfMW8oD+PdMPlEwy5HNsR9JutYy6pMeOh61nw==}
+ engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
+
+ exponential-backoff@3.1.1:
+ resolution: {integrity: sha512-dX7e/LHVJ6W3DE1MHWi9S1EYzDESENfLrYohG2G++ovZrYOkm4Knwa0mc1cn84xJOR4KEU0WSchhLbd0UklbHw==}
+
+ ext@1.7.0:
+ resolution: {integrity: sha512-6hxeJYaL110a9b5TEJSj0gojyHQAmA2ch5Os+ySCiA1QGdS697XWY1pzsrSjqA9LDEEgdB/KypIlR59RcLuHYw==}
+
+ extend@3.0.2:
+ resolution: {integrity: sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g==}
+
+ external-editor@3.1.0:
+ resolution: {integrity: sha512-hMQ4CX1p1izmuLYyZqLMO/qGNw10wSv9QDCPfzXfyFrOaCSSoRfqE1Kf1s5an66J5JZC62NewG+mK49jOCtQew==}
+ engines: {node: '>=4'}
+
+ extract-files@9.0.0:
+ resolution: {integrity: sha512-CvdFfHkC95B4bBBk36hcEmvdR2awOdhhVUYH6S/zrVj3477zven/fJMYg7121h4T1xHZC+tetUpubpAhxwI7hQ==}
+ engines: {node: ^10.17.0 || ^12.0.0 || >= 13.7.0}
+
+ extract-zip@2.0.1:
+ resolution: {integrity: sha512-GDhU9ntwuKyGXdZBUgTIe+vXnWj0fppUEtMDL0+idd5Sta8TGpHssn/eusA9mrPr9qNDym6SxAYZjNvCn/9RBg==}
+ engines: {node: '>= 10.17.0'}
+ hasBin: true
+
+ extsprintf@1.3.0:
+ resolution: {integrity: sha512-11Ndz7Nv+mvAC1j0ktTa7fAb0vLyGGX+rMHNBYQviQDGU0Hw7lhctJANqbPhu9nV9/izT/IntTgZ7Im/9LJs9g==}
+ engines: {'0': node >=0.6.0}
+
+ fast-deep-equal@3.1.3:
+ resolution: {integrity: sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==}
+
+ fast-diff@1.3.0:
+ resolution: {integrity: sha512-VxPP4NqbUjj6MaAOafWeUn2cXWLcCtljklUtZf0Ind4XQ+QPtmA0b18zZy0jIQx+ExRVCR/ZQpBmik5lXshNsw==}
+
+ fast-fifo@1.3.2:
+ resolution: {integrity: sha512-/d9sfos4yxzpwkDkuN7k2SqFKtYNmCTzgfEpz82x34IM9/zc8KGxQoXg1liNC/izpRM/MBdt44Nmx41ZWqk+FQ==}
+
+ fast-glob@3.3.1:
+ resolution: {integrity: sha512-kNFPyjhh5cKjrUltxs+wFx+ZkbRaxxmZ+X0ZU31SOsxCEtP9VPgtq2teZw1DebupL5GmDaNQ6yKMMVcM41iqDg==}
+ engines: {node: '>=8.6.0'}
+
+ fast-glob@3.3.2:
+ resolution: {integrity: sha512-oX2ruAFQwf/Orj8m737Y5adxDQO0LAB7/S5MnxCdTNDd4p6BsyIVsv9JQsATbTSq8KHRpLwIHbVlUNatxd+1Ow==}
+ engines: {node: '>=8.6.0'}
+
+ fast-json-stable-stringify@2.1.0:
+ resolution: {integrity: sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==}
+
+ fast-levenshtein@2.0.6:
+ resolution: {integrity: sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==}
+
+ fast-safe-stringify@2.1.1:
+ resolution: {integrity: sha512-W+KJc2dmILlPplD/H4K9l9LcAHAfPtP6BY84uVLXQ6Evcz9Lcg33Y2z1IVblT6xdY54PXYVHEv+0Wpq8Io6zkA==}
+
+ fast-sha256@1.3.0:
+ resolution: {integrity: sha512-n11RGP/lrWEFI/bWdygLxhI+pVeo1ZYIVwvvPkW7azl/rOy+F3HYRZ2K5zeE9mmkhQppyv9sQFx0JM9UabnpPQ==}
+
+ fast-text-encoding@1.0.6:
+ resolution: {integrity: sha512-VhXlQgj9ioXCqGstD37E/HBeqEGV/qOD/kmbVG8h5xKBYvM1L3lR1Zn4555cQ8GkYbJa8aJSipLPndE1k6zK2w==}
+
+ fast-uri@3.0.3:
+ resolution: {integrity: sha512-aLrHthzCjH5He4Z2H9YZ+v6Ujb9ocRuW6ZzkJQOrTxleEijANq4v1TsaPaVG1PZcuurEzrLcWRyYBYXD5cEiaw==}
+
+ fast-xml-parser@4.4.1:
+ resolution: {integrity: sha512-xkjOecfnKGkSsOwtZ5Pz7Us/T6mrbPQrq0nh+aCO5V9nk5NLWmasAHumTKjiPJPWANe+kAZ84Jc8ooJkzZ88Sw==}
+ hasBin: true
+
+ fast-xml-parser@4.5.0:
+ resolution: {integrity: sha512-/PlTQCI96+fZMAOLMZK4CWG1ItCbfZ/0jx7UIJFChPNrx7tcEgerUgWbeieCM9MfHInUDyK8DWYZ+YrywDJuTg==}
+ hasBin: true
+
+ fastest-levenshtein@1.0.16:
+ resolution: {integrity: sha512-eRnCtTTtGZFpQCwhJiUOuxPQWRXVKYDn0b2PeHfXL6/Zi53SLAzAHfVhVWK2AryC/WH05kGfxhFIPvTF0SXQzg==}
+ engines: {node: '>= 4.9.1'}
+
+ fastparse@1.1.2:
+ resolution: {integrity: sha512-483XLLxTVIwWK3QTrMGRqUfUpoOs/0hbQrl2oz4J0pAcm3A3bu84wxTFqGqkJzewCLdME38xJLJAxBABfQT8sQ==}
+
+ fastq@1.17.1:
+ resolution: {integrity: sha512-sRVD3lWVIXWg6By68ZN7vho9a1pQcN/WBFaAAsDDFzlJjvoGx0P8z7V1t72grFJfJhu3YPZBuu25f7Kaw2jN1w==}
+
+ faunadb@4.8.1:
+ resolution: {integrity: sha512-rYxIwo+tEVHpbGOrt4osqdOIJQM4lIjkAjolRfj/6sTwhcBwZYryc8m/GSvtGgpx9gbaSQqMIB7pu/J0aTmiwg==}
+
+ faye-websocket@0.11.4:
+ resolution: {integrity: sha512-CzbClwlXAuiRQAlUyfqPgvPoNKTckTPGfwZV4ZdAhVcP2lh9KUxJg2b5GkE7XbjKQ3YJnQ9z6D9ntLAlB+tP8g==}
+ engines: {node: '>=0.8.0'}
+
+ fb-watchman@2.0.2:
+ resolution: {integrity: sha512-p5161BqbuCaSnB8jIbzQHOlpgsPmK5rJVDfDKO91Axs5NC1uu3HRQm6wt9cd9/+GtQQIO53JdGXXoyDpTAsgYA==}
+
+ fd-slicer@1.1.0:
+ resolution: {integrity: sha512-cE1qsB/VwyQozZ+q1dGxR8LBYNZeofhEdUNGSMbQD3Gw2lAzX9Zb3uIU6Ebc/Fmyjo9AWWfnn0AUCHqtevs/8g==}
+
+ fecha@4.2.3:
+ resolution: {integrity: sha512-OP2IUU6HeYKJi3i0z4A19kHMQoLVs4Hc+DPqqxI2h/DPZHTm/vjsfC6P0b4jCMy14XizLBqvndQ+UilD7707Jw==}
+
+ feedparser@2.2.10:
+ resolution: {integrity: sha512-WoAOooa61V8/xuKMi2pEtK86qQ3ZH/M72EEGdqlOTxxb3m6ve1NPvZcmPFs3wEDfcBbFLId2GqZ4YjsYi+h1xA==}
+ engines: {node: '>= 10.18.1'}
+ hasBin: true
+
+ fetch-blob@1.0.6:
+ resolution: {integrity: sha512-XTotUY7hVtqdbHE0Ilm/u/nnXRv1T8nepxhMHzB885O0EkVvI05UlZq7rHQSd6hVDCNAGx4HTjbJO60Onjfckw==}
+ engines: {node: '>=6'}
+
+ fetch-blob@2.1.2:
+ resolution: {integrity: sha512-YKqtUDwqLyfyMnmbw8XD6Q8j9i/HggKtPEI+pZ1+8bvheBu78biSmNaXWusx1TauGqtUUGx/cBb1mKdq2rLYow==}
+ engines: {node: ^10.17.0 || >=12.3.0}
+ peerDependencies:
+ domexception: '*'
+ peerDependenciesMeta:
+ domexception:
+ optional: true
+
+ fetch-blob@3.2.0:
+ resolution: {integrity: sha512-7yAQpD2UMJzLi1Dqv7qFYnPbaPx7ZfFK6PiIxQ4PfkGPyNyl2Ugx+a/umUonmKqjhM4DnfbMvdX6otXq83soQQ==}
+ engines: {node: ^12.20 || >= 14.13}
+
+ fetch-har@5.0.5:
+ resolution: {integrity: sha512-Vzj/U++CyHhTMNTB1NAyjOuhOc/2rXhCweWHfCX02rHb8+IfFUSy9aWnImRJ/tMYT/c1c7tYNwwU7Dr9ty3cyg==}
+ engines: {node: ^12 || ^14 || ^16}
+
+ fetch-ponyfill@7.1.0:
+ resolution: {integrity: sha512-FhbbL55dj/qdVO3YNK7ZEkshvj3eQ7EuIGV2I6ic/2YiocvyWv+7jg2s4AyS0wdRU75s3tA8ZxI/xPigb0v5Aw==}
+
+ figures@3.2.0:
+ resolution: {integrity: sha512-yaduQFRKLXYOGgEn6AZau90j3ggSOyiqXU0F9JZfeXYhNa+Jk4X+s45A2zg5jns87GAFa34BBm2kXw4XpNcbdg==}
+ engines: {node: '>=8'}
+
+ file-entry-cache@10.0.2:
+ resolution: {integrity: sha512-NCR+vD1IDP7rQ4D5yOpDfP1hH00jcoINoqB/hlN9p28tDbmr4ps2X10qEX3iOg5tKmVzzS4wEqJ66+aSALO6fQ==}
+
+ file-entry-cache@6.0.1:
+ resolution: {integrity: sha512-7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg==}
+ engines: {node: ^10.12.0 || >=12.0.0}
+
+ file-entry-cache@9.1.0:
+ resolution: {integrity: sha512-/pqPFG+FdxWQj+/WSuzXSDaNzxgTLr/OrR1QuqfEZzDakpdYE70PwUxL7BPUa8hpjbvY1+qvCl8k+8Tq34xJgg==}
+ engines: {node: '>=18'}
+
+ file-set@5.2.2:
+ resolution: {integrity: sha512-/KgJI1V/QaDK4enOk/E2xMFk1cTWJghEr7UmWiRZfZ6upt6gQCfMn4jJ7aOm64OKurj4TaVnSSgSDqv5ZKYA3A==}
+ engines: {node: '>=12.17'}
+ peerDependencies:
+ '@75lb/nature': latest
+ peerDependenciesMeta:
+ '@75lb/nature':
+ optional: true
+
+ file-type@16.5.4:
+ resolution: {integrity: sha512-/yFHK0aGjFEgDJjEKP0pWCplsPFPhwyfwevf/pVxiN0tmE4L9LmwWxWukdJSHdoCli4VgQLehjJtwQBnqmsKcw==}
+ engines: {node: '>=10'}
+
+ file-type@18.7.0:
+ resolution: {integrity: sha512-ihHtXRzXEziMrQ56VSgU7wkxh55iNchFkosu7Y9/S+tXHdKyrGjVK0ujbqNnsxzea+78MaLhN6PGmfYSAv1ACw==}
+ engines: {node: '>=14.16'}
+
+ file-type@3.9.0:
+ resolution: {integrity: sha512-RLoqTXE8/vPmMuTI88DAzhMYC99I8BWv7zYP4A1puo5HIjEJ5EX48ighy4ZyKMG9EDXxBgW6e++cn7d1xuFghA==}
+ engines: {node: '>=0.10.0'}
+
+ file-uri-to-path@1.0.0:
+ resolution: {integrity: sha512-0Zt+s3L7Vf1biwWZ29aARiVYLx7iMGnEUl9x33fbB/j3jR81u/O2LbqK+Bm1CDSNDKVtJ/YjwY7TUd5SkeLQLw==}
+
+ file-uri-to-path@2.0.0:
+ resolution: {integrity: sha512-hjPFI8oE/2iQPVe4gbrJ73Pp+Xfub2+WI2LlXDbsaJBwT5wuMh35WNWVYYTpnz895shtwfyutMFLFywpQAFdLg==}
+ engines: {node: '>= 6'}
+
+ filelist@1.0.4:
+ resolution: {integrity: sha512-w1cEuf3S+DrLCQL7ET6kz+gmlJdbq9J7yXCSjK/OZCPA+qEN1WyF4ZAf0YYJa4/shHJra2t/d/r8SV4Ji+x+8Q==}
+
+ fill-range@7.1.1:
+ resolution: {integrity: sha512-YsGpe3WHLK8ZYi4tWDg2Jy3ebRz2rXowDxnld4bkQB00cc/1Zw9AWnC0i9ztDJitivtQvaI9KaLyKrc+hBW0yg==}
+ engines: {node: '>=8'}
+
+ filter-obj@1.1.0:
+ resolution: {integrity: sha512-8rXg1ZnX7xzy2NGDVkBVaAy+lSlPNwad13BtgSlLuxfIslyt5Vg64U7tFcCt4WS1R0hvtnQybT/IyCkGZ3DpXQ==}
+ engines: {node: '>=0.10.0'}
+
+ filter-obj@2.0.2:
+ resolution: {integrity: sha512-lO3ttPjHZRfjMcxWKb1j1eDhTFsu4meeR3lnMcnBFhk6RuLhvEiuALu2TlfL310ph4lCYYwgF/ElIjdP739tdg==}
+ engines: {node: '>=8'}
+
+ filter-obj@5.1.0:
+ resolution: {integrity: sha512-qWeTREPoT7I0bifpPUXtxkZJ1XJzxWtfoWWkdVGqa+eCr3SHW/Ocp89o8vLvbUuQnadybJpjOKu4V+RwO6sGng==}
+ engines: {node: '>=14.16'}
+
+ finalhandler@1.3.1:
+ resolution: {integrity: sha512-6BN9trH7bp3qvnrRyzsBz+g3lZxTNZTbVO2EV1CS0WIcDbawYVdYvGflME/9QP0h0pYlCDBCTjYa9nZzMDpyxQ==}
+ engines: {node: '>= 0.8'}
+
+ find-cache-dir@3.3.2:
+ resolution: {integrity: sha512-wXZV5emFEjrridIgED11OoUKLxiYjAcqot/NJdAkOhlJ+vGzwhOAfcG5OX1jP+S0PcjEn8bdMJv+g2jwQ3Onig==}
+ engines: {node: '>=8'}
+
+ find-cache-dir@5.0.0:
+ resolution: {integrity: sha512-OuWNfjfP05JcpAP3JPgAKUhWefjMRfI5iAoSsvE24ANYWJaepAtlSgWECSVEuRgSXpyNEc9DJwG/TZpgcOqyig==}
+ engines: {node: '>=16'}
+
+ find-replace@3.0.0:
+ resolution: {integrity: sha512-6Tb2myMioCAgv5kfvP5/PkZZ/ntTpVK39fHY7WkWBgvbeE+VHd/tZuZ4mrC+bxh4cfOZeYKVPaJIZtZXV7GNCQ==}
+ engines: {node: '>=4.0.0'}
+
+ find-root@1.1.0:
+ resolution: {integrity: sha512-NKfW6bec6GfKc0SGx1e07QZY9PE99u0Bft/0rzSD5k3sO/vwkVUpDUKVm5Gpp5Ue3YfShPFTX2070tDs5kB9Ng==}
+
+ find-up@4.1.0:
+ resolution: {integrity: sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==}
+ engines: {node: '>=8'}
+
+ find-up@5.0.0:
+ resolution: {integrity: sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==}
+ engines: {node: '>=10'}
+
+ find-up@6.3.0:
+ resolution: {integrity: sha512-v2ZsoEuVHYy8ZIlYqwPe/39Cy+cFDzp4dXPaxNvkEuouymu+2Jbz0PxpKarJHYJTmv2HWT3O382qY8l4jMWthw==}
+ engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0}
+
+ find-up@7.0.0:
+ resolution: {integrity: sha512-YyZM99iHrqLKjmt4LJDj58KI+fYyufRLBSYcqycxf//KpBk9FoewoGX0450m9nB44qrZnovzC2oeP5hUibxc/g==}
+ engines: {node: '>=18'}
+
+ firebase-admin@10.3.0:
+ resolution: {integrity: sha512-A0wgMLEjyVyUE+heyMJYqHRkPVjpebhOYsa47RHdrTM4ltApcx8Tn86sUmjqxlfh09gNnILAm7a8q5+FmgBYpg==}
+ engines: {node: '>=12.7.0'}
+
+ flat-cache@3.2.0:
+ resolution: {integrity: sha512-CYcENa+FtcUKLmhhqyctpclsq7QF38pKjZHsGNiSQF5r4FtoKDWabFDl3hzaEQMvT1LHEysw5twgLvpYYb4vbw==}
+ engines: {node: ^10.12.0 || >=12.0.0}
+
+ flat-cache@5.0.0:
+ resolution: {integrity: sha512-JrqFmyUl2PnPi1OvLyTVHnQvwQ0S+e6lGSwu8OkAZlSaNIZciTY2H/cOOROxsBA1m/LZNHDsqAgDZt6akWcjsQ==}
+ engines: {node: '>=18'}
+
+ flat-cache@6.1.2:
+ resolution: {integrity: sha512-WakhGOkx886u7DJGpgMpUU81VUYHyQlXuqPDI53g6lIVHf7Shepr/XGo7Qa0yYOPwyMItQs34dG7X0KgnHwWtQ==}
+
+ flat@5.0.2:
+ resolution: {integrity: sha512-b6suED+5/3rTpUBdG1gupIl8MPFCAMA0QXwmljLhvCUKcUvdE4gWky9zpuGCcXHOsz4J9wPGNWq6OKpmIzz3hQ==}
+ hasBin: true
+
+ flatted@3.3.2:
+ resolution: {integrity: sha512-AiwGJM8YcNOaobumgtng+6NHuOqC3A7MixFeDafM3X9cIUM+xUXoS5Vfgf+OihAYe20fxqNM9yPBXJzRtZ/4eA==}
+
+ flatten@1.0.3:
+ resolution: {integrity: sha512-dVsPA/UwQ8+2uoFe5GHtiBMu48dWLTdsuEd7CKGlZlD78r1TTWBvDuFaFGKCo/ZfEr95Uk56vZoX86OsHkUeIg==}
+ deprecated: flatten is deprecated in favor of utility frameworks such as lodash.
+
+ flush-write-stream@2.0.0:
+ resolution: {integrity: sha512-uXClqPxT4xW0lcdSBheb2ObVU+kuqUk3Jk64EwieirEXZx9XUrVwp/JuBfKAWaM4T5Td/VL7QLDWPXp/MvGm/g==}
+
+ fn-annotate@1.2.0:
+ resolution: {integrity: sha512-j2gv2wkRhQgkJNf1ygdca8ynP3tK+a87bowc+RG81iWTye3yKIOeAkrKYv0Kqyh8yCeSyljOk3ZFelfXUFpirA==}
+ engines: {node: '>=0.10.0'}
+
+ fn.name@1.1.0:
+ resolution: {integrity: sha512-GRnmB5gPyJpAhTQdSZTSp9uaPSvl09KoYcMQtsB9rQoOmzs9dH6ffeccH+Z+cv6P68Hu5bC6JjRh4Ah/mHSNRw==}
+
+ folder-walker@3.2.0:
+ resolution: {integrity: sha512-VjAQdSLsl6AkpZNyrQJfO7BXLo4chnStqb055bumZMbRUPpVuPN3a4ktsnRCmrFZjtMlYLkyXiR5rAs4WOpC4Q==}
+
+ follow-redirects@1.15.9:
+ resolution: {integrity: sha512-gew4GsXizNgdoRyqmyfMHyAmXsZDk6mHkSxZFCzW9gwlbtOW44CDtYavM+y+72qD/Vq2l550kMF52DT8fOLJqQ==}
+ engines: {node: '>=4.0'}
+ peerDependencies:
+ debug: '*'
+ peerDependenciesMeta:
+ debug:
+ optional: true
+
+ follow-redirects@1.5.10:
+ resolution: {integrity: sha512-0V5l4Cizzvqt5D44aTXbFZz+FtyXV1vrDN6qrelxtfYQKW0KO0W2T/hkE8xvGa/540LkZlkaUjO4ailYTFtHVQ==}
+ engines: {node: '>=4.0'}
+
+ for-each@0.3.3:
+ resolution: {integrity: sha512-jqYfLp7mo9vIyQf8ykW2v7A+2N4QjeCeI5+Dz9XraiO1ign81wjiH7Fb9vSOWvQfNtmSa4H2RoQTrrXivdUZmw==}
+
+ forever-agent@0.6.1:
+ resolution: {integrity: sha512-j0KLYPhm6zeac4lz3oJ3o65qvgQCcPubiyotZrXqEaG4hNagNYO8qdlUrX5vwqv9ohqeT/Z3j6+yW067yWWdUw==}
+
+ form-data-encoder@2.1.4:
+ resolution: {integrity: sha512-yDYSgNMraqvnxiEXO4hi88+YZxaHC6QKzb5N84iRCTDeRO7ZALpir/lVmf/uXUhnwUr2O4HU8s/n6x+yNjQkHw==}
+ engines: {node: '>= 14.17'}
+
+ form-data-encoder@4.0.2:
+ resolution: {integrity: sha512-KQVhvhK8ZkWzxKxOr56CPulAhH3dobtuQ4+hNQ+HekH/Wp5gSOafqRAeTphQUJAIk0GBvHZgJ2ZGRWd5kphMuw==}
+ engines: {node: '>= 18'}
+
+ form-data@2.3.3:
+ resolution: {integrity: sha512-1lLKB2Mu3aGP1Q/2eCOx0fNbRMe7XdwktwOruhfqqd0rIJWwN4Dh+E3hrPSlDCXnSR7UtZ1N38rVXm+6+MEhJQ==}
+ engines: {node: '>= 0.12'}
+
+ form-data@2.5.2:
+ resolution: {integrity: sha512-GgwY0PS7DbXqajuGf4OYlsrIu3zgxD6Vvql43IBhm6MahqA5SK/7mwhtNj2AdH2z35YR34ujJ7BN+3fFC3jP5Q==}
+ engines: {node: '>= 0.12'}
+
+ form-data@3.0.0:
+ resolution: {integrity: sha512-CKMFDglpbMi6PyN+brwB9Q/GOw0eAnsrEZDgcsH5Krhz5Od/haKHAX0NmQfha2zPPz0JpWzA7GJHGSnvCRLWsg==}
+ engines: {node: '>= 6'}
+
+ form-data@3.0.2:
+ resolution: {integrity: sha512-sJe+TQb2vIaIyO783qN6BlMYWMw3WBOHA1Ay2qxsnjuafEOQFJ2JakedOQirT6D5XPRxDvS7AHYyem9fTpb4LQ==}
+ engines: {node: '>= 6'}
+
+ form-data@4.0.1:
+ resolution: {integrity: sha512-tzN8e4TX8+kkxGPK8D5u0FNmjPUjw3lwC9lSLxxoB/+GtsJG91CO8bSWy73APlgAZzZbXEYZJuxjkHH2w+Ezhw==}
+ engines: {node: '>= 6'}
+
+ format-io@2.0.0:
+ resolution: {integrity: sha512-iQz8w2qr4f+doWBV6LsfScHbu1gXhccByjbmA1wjBTaKRhweH2baJL96UGR4C7Fjpr8zSkK7EXiLmbzZWTyQIA==}
+ engines: {node: '>=8'}
+
+ formdata-node@6.0.3:
+ resolution: {integrity: sha512-8e1++BCiTzUno9v5IZ2J6bv4RU+3UKDmqWUQD0MIMVCd9AdhWkO1gw57oo1mNEX1dMq2EGI+FbWz4B92pscSQg==}
+ engines: {node: '>= 18'}
+
+ formdata-polyfill@4.0.10:
+ resolution: {integrity: sha512-buewHzMvYL29jdeQTVILecSaZKnt/RJWjoZCF5OW60Z67/GmSLBkOFM7qh1PI3zFNtJbaZL5eQu1vLfazOwj4g==}
+ engines: {node: '>=12.20.0'}
+
+ formidable@1.2.6:
+ resolution: {integrity: sha512-KcpbcpuLNOwrEjnbpMC0gS+X8ciDoZE1kkqzat4a8vrprf+s9pKNQ/QIwWfbfs4ltgmFl3MD177SNTkve3BwGQ==}
+ deprecated: 'Please upgrade to latest, formidable@v2 or formidable@v3! Check these notes: https://bit.ly/2ZEqIau'
+
+ formidable@2.1.2:
+ resolution: {integrity: sha512-CM3GuJ57US06mlpQ47YcunuUZ9jpm8Vx+P2CGt2j7HpgkKZO/DJYQ0Bobim8G6PFQmK5lOqOOdUXboU+h73A4g==}
+
+ fp-ts@2.16.9:
+ resolution: {integrity: sha512-+I2+FnVB+tVaxcYyQkHUq7ZdKScaBlX53A41mxQtpIccsfyv8PzdzP7fzp2AY832T4aoK6UZ5WRX/ebGd8uZuQ==}
+
+ fraudlabspro-nodejs@3.0.0:
+ resolution: {integrity: sha512-f+3gwDWunQoFRiX8/pbegr28qRztGgKrxF0oH7yIZQho0N3/kZjYHn3LelTio++nGoPcDIKkZob/WS1jQuSnHg==}
+
+ from2-array@0.0.4:
+ resolution: {integrity: sha1-6vwWtl9uJxm81X/cGGkAWsEzLNY=}
+
+ from2@2.3.0:
+ resolution: {integrity: sha512-OMcX/4IC/uqEPVgGeyfN22LJk6AZrMkRZHxcHBMBvHScDGgwTm2GT2Wkgtocyd3JfZffjj2kYUDXXII0Fk9W0g==}
+
+ from@0.1.7:
+ resolution: {integrity: sha512-twe20eF1OxVxp/ML/kq2p1uc6KvFK/+vs8WjEbeKmV2He22MKm7YF2ANIt+EOqhJ5L3K/SuuPhk0hWQDjOM23g==}
+
+ fs-constants@1.0.0:
+ resolution: {integrity: sha512-y6OAwoSIf7FyjMIv94u+b5rdheZEjzR63GTyZJm5qh4Bi+2YgwLCcI/fPFZkL5PSixOt6ZNKm+w+Hfp/Bciwow==}
+
+ fs-extra@11.2.0:
+ resolution: {integrity: sha512-PmDi3uwK5nFuXh7XDTlVnS17xJS7vW36is2+w3xcv8SVxiB4NyATf4ctkVY5bkSjX0Y4nbvZCq1/EjtEyr9ktw==}
+ engines: {node: '>=14.14'}
+
+ fs-extra@6.0.1:
+ resolution: {integrity: sha512-GnyIkKhhzXZUWFCaJzvyDLEEgDkPfb4/TPvJCJVuS8MWZgoSsErf++QpiAlDnKFcqhRlm+tIOcencCjyJE6ZCA==}
+
+ fs-extra@7.0.1:
+ resolution: {integrity: sha512-YJDaCJZEnBmcbw13fvdAM9AwNOJwOzrE4pqMqBq5nFiEqXUqHwlK4B+3pUw6JNvfSPtX05xFHtYy/1ni01eGCw==}
+ engines: {node: '>=6 <7 || >=8'}
+
+ fs-extra@8.1.0:
+ resolution: {integrity: sha512-yhlQgA6mnOJUKOsRUFsgJdQCvkKhcz8tlZG5HBQfReYZy46OwLcY+Zia0mtdHsOo9y/hP+CxMN0TU9QxoOtG4g==}
+ engines: {node: '>=6 <7 || >=8'}
+
+ fs-minipass@2.1.0:
+ resolution: {integrity: sha512-V/JgOLFCS+R6Vcq0slCuaeWEdNC3ouDlJMNIsacH2VtALiu9mV4LPrHc5cDl8k5aw6J8jwgWWpiTo5RYhmIzvg==}
+ engines: {node: '>= 8'}
+
+ fs-readdir-recursive@1.1.0:
+ resolution: {integrity: sha512-GNanXlVr2pf02+sPN40XN8HG+ePaNcvM0q5mZBd668Obwb0yD5GiUbZOFgwn8kGMY6I3mdyDJzieUy3PTYyTRA==}
+
+ fs.realpath@1.0.0:
+ resolution: {integrity: sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==}
+
+ fs@0.0.1-security:
+ resolution: {integrity: sha512-3XY9e1pP0CVEUCdj5BmfIZxRBTSDycnbqhIOGec9QYtmVH2fbLpj86CFWkrNOkt/Fvty4KZG5lTglL9j/gJ87w==}
+
+ fsevents@2.3.3:
+ resolution: {integrity: sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==}
+ engines: {node: ^8.16.0 || ^10.6.0 || >=11.0.0}
+ os: [darwin]
+
+ ftp@0.3.10:
+ resolution: {integrity: sha512-faFVML1aBx2UoDStmLwv2Wptt4vw5x03xxX172nhA5Y5HBshW5JweqQ2W4xL4dezQTG8inJsuYcpPHHU3X5OTQ==}
+ engines: {node: '>=0.8.0'}
+
+ fullstore@3.0.0:
+ resolution: {integrity: sha512-EEIdG+HWpyygWRwSLIZy+x4u0xtghjHNfhQb0mI5825Mmjq6oFESFUY0hoZigEgd3KH8GX+ZOCK9wgmOiS7VBQ==}
+ engines: {node: '>=4'}
+
+ function-bind@1.1.2:
+ resolution: {integrity: sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==}
+
+ function.prototype.name@1.1.6:
+ resolution: {integrity: sha512-Z5kx79swU5P27WEayXM1tBi5Ze/lbIyiNgU3qyXUOf9b2rgXYyF9Dy9Cx+IQv/Lc8WCG6L82zwUPpSS9hGehIg==}
+ engines: {node: '>= 0.4'}
+
+ functional-red-black-tree@1.0.1:
+ resolution: {integrity: sha512-dsKNQNdj6xA3T+QlADDA7mOSlX0qiMINjn0cgr+eGHGsbSHzTabcIogz2+p/iqP1Xs6EP/sS2SbqH+brGTbq0g==}
+
+ functions-have-names@1.2.3:
+ resolution: {integrity: sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ==}
+
+ gauge@2.7.4:
+ resolution: {integrity: sha512-14x4kjc6lkD3ltw589k0NrPD6cCNTD6CWoVUNpB85+DrtONoZn+Rug6xZU5RvSC4+TZPxA5AnBibQYAvZn41Hg==}
+ deprecated: This package is no longer supported.
+
+ gaxios@4.3.3:
+ resolution: {integrity: sha512-gSaYYIO1Y3wUtdfHmjDUZ8LWaxJQpiavzbF5Kq53akSzvmVg0RfyOcFDbO1KJ/KCGRFz2qG+lS81F0nkr7cRJA==}
+ engines: {node: '>=10'}
+
+ gaxios@5.1.3:
+ resolution: {integrity: sha512-95hVgBRgEIRQQQHIbnxBXeHbW4TqFk4ZDJW7wmVtvYar72FdhRIo1UGOLS2eRAKCPEdPBWu+M7+A33D9CdX9rA==}
+ engines: {node: '>=12'}
+
+ gaxios@6.7.1:
+ resolution: {integrity: sha512-LDODD4TMYx7XXdpwxAVRAIAuB0bzv0s+ywFonY46k126qzQHT9ygyoa9tncmOiQmmDrik65UYsEkv3lbfqQ3yQ==}
+ engines: {node: '>=14'}
+
+ gcp-metadata@4.3.1:
+ resolution: {integrity: sha512-x850LS5N7V1F3UcV7PoupzGsyD6iVwTVvsh3tbXfkctZnBnjW5yu5z1/3k3SehF7TyoTIe78rJs02GMMy+LF+A==}
+ engines: {node: '>=10'}
+
+ gcp-metadata@5.3.0:
+ resolution: {integrity: sha512-FNTkdNEnBdlqF2oatizolQqNANMrcqJt6AAYt99B3y1aLLC8Hc5IOBb+ZnnzllodEEf6xMBp6wRcBbc16fa65w==}
+ engines: {node: '>=12'}
+
+ gcp-metadata@6.1.0:
+ resolution: {integrity: sha512-Jh/AIwwgaxan+7ZUUmRLCjtchyDiqh4KjBJ5tW3plBZb5iL/BPcso8A5DlzeD9qlw0duCamnNdpFjxwaT0KyKg==}
+ engines: {node: '>=14'}
+
+ gdata-vaas@2.4.1:
+ resolution: {integrity: sha512-G7Rn3jJ1QtMfr4fxtJ9ZwA2UikE1CAd9fAjc/HxeELJ+FwtqiTORSFdyE7boZsyCYzp5PcQ/69W8zSvz8xytUg==}
+
+ generate-function@2.3.1:
+ resolution: {integrity: sha512-eeB5GfMNeevm/GRYq20ShmsaGcmI81kIX2K9XQx5miC8KdHaC6Jm0qQ8ZNeGOi7wYB8OsdxKs+Y2oVuTFuVwKQ==}
+
+ generic-pool@3.9.0:
+ resolution: {integrity: sha512-hymDOu5B53XvN4QT9dBmZxPX4CWhBPPLguTZ9MMFeFa/Kg0xWVfylOVNlJji/E7yTZWFd/q9GO5TxDLq156D7g==}
+ engines: {node: '>= 4'}
+
+ gensync@1.0.0-beta.2:
+ resolution: {integrity: sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==}
+ engines: {node: '>=6.9.0'}
+
+ get-amd-module-type@3.0.2:
+ resolution: {integrity: sha512-PcuKwB8ouJnKuAPn6Hk3UtdfKoUV3zXRqVEvj8XGIXqjWfgd1j7QGdXy5Z9OdQfzVt1Sk29HVe/P+X74ccOuqw==}
+ engines: {node: '>=6.0'}
+
+ get-caller-file@2.0.5:
+ resolution: {integrity: sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==}
+ engines: {node: 6.* || 8.* || >= 10.*}
+
+ get-intrinsic@1.2.4:
+ resolution: {integrity: sha512-5uYhsJH8VJBTv7oslg4BznJYhDoRI6waYCxMmCdnTrcCrHA/fCFKoTFz2JKKE0HdDFUF7/oQuhzumXJK7paBRQ==}
+ engines: {node: '>= 0.4'}
+
+ get-package-type@0.1.0:
+ resolution: {integrity: sha512-pjzuKtY64GYfWizNAJ0fr9VqttZkNiK2iS430LtIHzjBEr6bX8Am2zm4sW4Ro5wjWW5cAlRL1qAMTcXbjNAO2Q==}
+ engines: {node: '>=8.0.0'}
+
+ get-stdin@7.0.0:
+ resolution: {integrity: sha512-zRKcywvrXlXsA0v0i9Io4KDRaAw7+a1ZpjRwl9Wox8PFlVCCHra7E9c4kqXCoCM9nR5tBkaTTZRBoCm60bFqTQ==}
+ engines: {node: '>=8'}
+
+ get-stream@3.0.0:
+ resolution: {integrity: sha512-GlhdIUuVakc8SJ6kK0zAFbiGzRFzNnY4jUuEbV9UROo4Y+0Ny4fjvcZFVTeDA4odpFyOQzaw6hXukJSq/f28sQ==}
+ engines: {node: '>=4'}
+
+ get-stream@4.1.0:
+ resolution: {integrity: sha512-GMat4EJ5161kIy2HevLlr4luNjBgvmj413KaQA7jt4V8B4RDsfpHk7WQ9GVqfYyyx8OS/L66Kox+rJRNklLK7w==}
+ engines: {node: '>=6'}
+
+ get-stream@5.2.0:
+ resolution: {integrity: sha512-nBF+F1rAZVCu/p7rjzgA+Yb4lfYXrpl7a6VmJrU8wF9I1CKvP/QwPNZHnOlwbTkY6dvtFIzFMSyQXbLoTQPRpA==}
+ engines: {node: '>=8'}
+
+ get-stream@6.0.1:
+ resolution: {integrity: sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg==}
+ engines: {node: '>=10'}
+
+ get-stream@9.0.1:
+ resolution: {integrity: sha512-kVCxPF3vQM/N0B1PmoqVUqgHP+EeVjmZSQn+1oCRPxd2P21P2F19lIgbR3HBosbB1PUhOAoctJnfEn2GbN2eZA==}
+ engines: {node: '>=18'}
+
+ get-symbol-description@1.0.2:
+ resolution: {integrity: sha512-g0QYk1dZBxGwk+Ngc+ltRH2IBp2f7zBkBMBJZCDerh6EhlhSR6+9irMCuT/09zD6qkarHUSn529sK/yL4S27mg==}
+ engines: {node: '>= 0.4'}
+
+ get-tsconfig@4.8.1:
+ resolution: {integrity: sha512-k9PN+cFBmaLWtVz29SkUoqU5O0slLuHJXt/2P+tMVFT+phsSGXGkp9t3rQIqdz0e+06EHNGs3oM6ZX1s2zHxRg==}
+
+ get-uri@3.0.2:
+ resolution: {integrity: sha512-+5s0SJbGoyiJTZZ2JTpFPLMPSch72KEqGOTvQsBqg0RBWvwhWUSYZFAtz3TPW0GXJuLBJPts1E241iHg+VRfhg==}
+ engines: {node: '>= 6'}
+
+ get-uri@6.0.3:
+ resolution: {integrity: sha512-BzUrJBS9EcUb4cFol8r4W3v1cPsSyajLSthNkz5BxbpDcHN5tIrM10E2eNvfnvBn3DaT3DUgx0OpsBKkaOpanw==}
+ engines: {node: '>= 14'}
+
+ getpass@0.1.7:
+ resolution: {integrity: sha512-0fzj9JxOLfJ+XGLhR8ze3unN0KZCgZwiSSDz168VERjK8Wl8kVSdcu2kspd4s4wtAa1y/qrVRiAA0WclVsu0ng==}
+
+ glob-parent@5.1.2:
+ resolution: {integrity: sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==}
+ engines: {node: '>= 6'}
+
+ glob-parent@6.0.2:
+ resolution: {integrity: sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==}
+ engines: {node: '>=10.13.0'}
+
+ glob@7.2.3:
+ resolution: {integrity: sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==}
+ deprecated: Glob versions prior to v9 are no longer supported
+
+ glob@8.1.0:
+ resolution: {integrity: sha512-r8hpEjiQEYlF2QU0df3dS+nxxSIreXQS1qRhMJM0Q5NDdR386C7jb7Hwwod8Fgiuex+k0GFjgft18yvxm5XoCQ==}
+ engines: {node: '>=12'}
+ deprecated: Glob versions prior to v9 are no longer supported
+
+ global-dirs@3.0.1:
+ resolution: {integrity: sha512-NBcGGFbBA9s1VzD41QXDG+3++t9Mn5t1FpLdhESY6oKY4gYTFpX4wO3sqGUa0Srjtbfj3szX0RnemmrVRUdULA==}
+ engines: {node: '>=10'}
+
+ global-modules@2.0.0:
+ resolution: {integrity: sha512-NGbfmJBp9x8IxyJSd1P+otYK8vonoJactOogrVfFRIAEY1ukil8RSKDz2Yo7wh1oihl51l/r6W4epkeKJHqL8A==}
+ engines: {node: '>=6'}
+
+ global-prefix@3.0.0:
+ resolution: {integrity: sha512-awConJSVCHVGND6x3tmMaKcQvwXLhjdkmomy2W+Goaui8YPgYgXJZewhg3fWC+DlfqqQuWg8AwqjGTD2nAPVWg==}
+ engines: {node: '>=6'}
+
+ globals@11.12.0:
+ resolution: {integrity: sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==}
+ engines: {node: '>=4'}
+
+ globals@13.24.0:
+ resolution: {integrity: sha512-AhO5QUcj8llrbG09iWhPU2B204J1xnPeL8kQmVorSsy+Sjj1sk8gIyh6cUocGmH4L0UuhAJy+hJMRA4mgA4mFQ==}
+ engines: {node: '>=8'}
+
+ globals@14.0.0:
+ resolution: {integrity: sha512-oahGvuMGQlPw/ivIYBjVSrWAfWLBeku5tpPE2fOPLi+WHffIWbuh2tCjhyQhTBPMf5E9jDEH4FOmTYgYwbKwtQ==}
+ engines: {node: '>=18'}
+
+ globals@15.12.0:
+ resolution: {integrity: sha512-1+gLErljJFhbOVyaetcwJiJ4+eLe45S2E7P5UiZ9xGfeq3ATQf5DOv9G7MH3gGbKQLkzmNh2DxfZwLdw+j6oTQ==}
+ engines: {node: '>=18'}
+
+ globalthis@1.0.4:
+ resolution: {integrity: sha512-DpLKbNU4WylpxJykQujfCcwYWiV/Jhm50Goo0wrVILAv5jOr9d+H+UR3PhSCD2rCCEIg0uc+G+muBTwD54JhDQ==}
+ engines: {node: '>= 0.4'}
+
+ globby@10.0.2:
+ resolution: {integrity: sha512-7dUi7RvCoT/xast/o/dLN53oqND4yk0nsHkhRgn9w65C4PofCLOoJ39iSOg+qVDdWQPIEj+eszMHQ+aLVwwQSg==}
+ engines: {node: '>=8'}
+
+ globby@11.1.0:
+ resolution: {integrity: sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g==}
+ engines: {node: '>=10'}
+
+ globby@13.2.2:
+ resolution: {integrity: sha512-Y1zNGV+pzQdh7H39l9zgB4PJqjRNqydvdYCDG4HFXM4XuvSaQQlEc91IU1yALL8gUTDomgBAfz3XJdmUS+oo0w==}
+ engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0}
+
+ globjoin@0.1.4:
+ resolution: {integrity: sha512-xYfnw62CKG8nLkZBfWbhWwDw02CHty86jfPcc2cr3ZfeuK9ysoVPPEUxf21bAD/rWAgk52SuBrLJlefNy8mvFg==}
+
+ goldstein@5.19.0:
+ resolution: {integrity: sha512-8o78KcwF4oXm/sNDPkPSFK8v/L1hCiP5WgCyJzt3WjmfIw8lA08LPthMs/cbZpLZEnEFrNsMApWssndqboWozQ==}
+ engines: {node: '>=18'}
+ hasBin: true
+
+ gonzales-pe@4.3.0:
+ resolution: {integrity: sha512-otgSPpUmdWJ43VXyiNgEYE4luzHCL2pz4wQ0OnDluC6Eg4Ko3Vexy/SrSynglw/eR+OhkzmqFCZa/OFa/RgAOQ==}
+ engines: {node: '>=0.6.0'}
+ hasBin: true
+
+ google-auth-library@7.14.1:
+ resolution: {integrity: sha512-5Rk7iLNDFhFeBYc3s8l1CqzbEBcdhwR193RlD4vSNFajIcINKI8W8P0JLmBpwymHqqWbX34pJDQu39cSy/6RsA==}
+ engines: {node: '>=10'}
+
+ google-auth-library@8.9.0:
+ resolution: {integrity: sha512-f7aQCJODJFmYWN6PeNKzgvy9LI2tYmXnzpNDHEjG5sDNPgGb2FXQyTBnXeSH+PAtpKESFD+LmHw3Ox3mN7e1Fg==}
+ engines: {node: '>=12'}
+
+ google-auth-library@9.15.0:
+ resolution: {integrity: sha512-7ccSEJFDFO7exFbO6NRyC+xH8/mZ1GZGG2xxx9iHxZWcjUjJpjWxIMw3cofAKcueZ6DATiukmmprD7yavQHOyQ==}
+ engines: {node: '>=14'}
+
+ google-docs-mustaches@1.2.2:
+ resolution: {integrity: sha512-RkV/3468jlT6TNOiPKVIPS+Q+P7OFffTkrW/z5s9u7GO/aad9tIT2XTmHwpAgXvT8Lekf/bNOjeKMWIuRtlXdg==}
+
+ google-gax@2.30.5:
+ resolution: {integrity: sha512-Jey13YrAN2hfpozHzbtrwEfEHdStJh1GwaQ2+Akh1k0Tv/EuNVSuBtHZoKSBm5wBMvNsxTsEIZ/152NrYyZgxQ==}
+ engines: {node: '>=10'}
+ hasBin: true
+
+ google-gax@3.6.1:
+ resolution: {integrity: sha512-g/lcUjGcB6DSw2HxgEmCDOrI/CByOwqRvsuUvNalHUK2iPPPlmAIpbMbl62u0YufGMr8zgE3JL7th6dCb1Ry+w==}
+ engines: {node: '>=12'}
+ hasBin: true
+
+ google-gax@4.4.1:
+ resolution: {integrity: sha512-Phyp9fMfA00J3sZbJxbbB4jC55b7DBjE3F6poyL3wKMEBVKA79q6BGuHcTiM28yOzVql0NDbRL8MLLh8Iwk9Dg==}
+ engines: {node: '>=14'}
+
+ google-p12-pem@3.1.4:
+ resolution: {integrity: sha512-HHuHmkLgwjdmVRngf5+gSmpkyaRI6QmOg77J8tkNBHhNEI62sGHyw4/+UkgyZEI7h84NbWprXDJ+sa3xOYFvTg==}
+ engines: {node: '>=10'}
+ deprecated: Package is no longer maintained
+ hasBin: true
+
+ google-p12-pem@4.0.1:
+ resolution: {integrity: sha512-WPkN4yGtz05WZ5EhtlxNDWPhC4JIic6G8ePitwUWy4l+XPVYec+a0j0Ts47PDtW59y3RwAhUd9/h9ZZ63px6RQ==}
+ engines: {node: '>=12.0.0'}
+ deprecated: Package is no longer maintained
+ hasBin: true
+
+ google-protobuf@3.21.4:
+ resolution: {integrity: sha512-MnG7N936zcKTco4Jd2PX2U96Kf9PxygAPKBug+74LHzmHXmceN16MmRcdgZv+DGef/S9YvQAfRsNCn4cjf9yyQ==}
+
+ googleapis-common@5.1.0:
+ resolution: {integrity: sha512-RXrif+Gzhq1QAzfjxulbGvAY3FPj8zq/CYcvgjzDbaBNCD6bUl+86I7mUs4DKWHGruuK26ijjR/eDpWIDgNROA==}
+ engines: {node: '>=10.10.0'}
+
+ googleapis-common@6.0.4:
+ resolution: {integrity: sha512-m4ErxGE8unR1z0VajT6AYk3s6a9gIMM6EkDZfkPnES8joeOlEtFEJeF8IyZkb0tjPXkktUfYrE4b3Li1DNyOwA==}
+ engines: {node: '>=12.0.0'}
+
+ googleapis-common@7.2.0:
+ resolution: {integrity: sha512-/fhDZEJZvOV3X5jmD+fKxMqma5q2Q9nZNSF3kn1F18tpxmA86BcTxAGBQdM0N89Z3bEaIs+HVznSmFJEAmMTjA==}
+ engines: {node: '>=14.0.0'}
+
+ googleapis@105.0.0:
+ resolution: {integrity: sha512-wH/jU/6QpqwsjTKj4vfKZz97ne7xT7BBbKwzQEwnbsG8iH9Seyw19P+AuLJcxNNrmgblwLqfr3LORg4Okat1BQ==}
+ engines: {node: '>=12.0.0'}
+
+ googleapis@108.0.1:
+ resolution: {integrity: sha512-NKYTMfQH1xVl38Efj4UAwYq/9j+vc/iaqULfG3dSBK4vQHhsYKgKN6agMrgzlWo3NA8ivwb/0bToxZxnhxj7Bg==}
+ engines: {node: '>=12.0.0'}
+
+ googleapis@131.0.0:
+ resolution: {integrity: sha512-fa4kdkY0VwHDw/04ItpQv2tlvlPIwbh6NjHDoWAVrV52GuaZbYCMOC5Y+hRmprp5HHIMRODmyb2YujlbZSRUbQ==}
+ engines: {node: '>=14.0.0'}
+
+ googleapis@96.0.0:
+ resolution: {integrity: sha512-tEQtcukxA4sW1OXh35teJbui+BIjMTghH6i0tvUctyXgMDO0Upu3+hrytrw9JqZJxtXReM3Wr5+g4U7veqHpBQ==}
+ engines: {node: '>=10'}
+
+ gopd@1.0.1:
+ resolution: {integrity: sha512-d65bNlIadxvpb/A2abVdlqKqV563juRnZ1Wtk6s1sIR8uNsXR70xqIzVqxVf1eTqDunwT2MkczEeaezCKTZhwA==}
+
+ got@11.8.6:
+ resolution: {integrity: sha512-6tfZ91bOr7bOXnK7PRDCGBLa1H4U080YHNaAQ2KsMGlLEzRbk44nsZF2E1IeRc3vtJHPVbKCYgdFbaGO2ljd8g==}
+ engines: {node: '>=10.19.0'}
+
+ got@12.6.1:
+ resolution: {integrity: sha512-mThBblvlAF1d4O5oqyvN+ZxLAYwIJK7bpMxgYqPD9okW0C3qm5FFn7k811QrcuEBwaogR3ngOFoCfs6mRv7teQ==}
+ engines: {node: '>=14.16'}
+
+ got@13.0.0:
+ resolution: {integrity: sha512-XfBk1CxOOScDcMr9O1yKkNaQyy865NbYs+F7dr4H0LZMVgCj2Le59k6PqbNHoL5ToeaEQUYh6c6yMfVcc6SJxA==}
+ engines: {node: '>=16'}
+
+ got@14.4.4:
+ resolution: {integrity: sha512-tqiF7eSgTBwQkxb1LxsEpva8TaMYVisbhplrFVmw9GQE3855Z+MH/mnsXLLOkDxR6hZJRFMj5VTAZ8lmTF8ZOA==}
+ engines: {node: '>=20'}
+
+ got@6.7.1:
+ resolution: {integrity: sha512-Y/K3EDuiQN9rTZhBvPRWMLXIKdeD1Rj0nzunfoi0Yyn5WBEbzxXKU9Ub2X41oZBagVWOBU3MuDonFMgPWQFnwg==}
+ engines: {node: '>=4'}
+
+ graceful-fs@4.2.11:
+ resolution: {integrity: sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==}
+
+ grapheme-splitter@1.0.4:
+ resolution: {integrity: sha512-bzh50DW9kTPM00T8y4o8vQg89Di9oLJVLW/KaOGIXJWP/iqCN6WKYkbNOF04vFLJhwcpYUh9ydh/+5vpOqV4YQ==}
+
+ graphemer@1.4.0:
+ resolution: {integrity: sha512-EtKwoO6kxCL9WO5xipiHTZlSzBm7WLT627TqC/uVRd0HKmq8NXyebnNYxDoBi7wt8eTWrUrKXCOVaFq9x1kgag==}
+
+ graphql-request@3.7.0:
+ resolution: {integrity: sha512-dw5PxHCgBneN2DDNqpWu8QkbbJ07oOziy8z+bK/TAXufsOLaETuVO4GkXrbs0WjhdKhBMN3BkpN/RIvUHkmNUQ==}
+ peerDependencies:
+ graphql: 14 - 16
+
+ graphql-request@5.2.0:
+ resolution: {integrity: sha512-pLhKIvnMyBERL0dtFI3medKqWOz/RhHdcgbZ+hMMIb32mEPa5MJSzS4AuXxfI4sRAu6JVVk5tvXuGfCWl9JYWQ==}
+ peerDependencies:
+ graphql: 14 - 16
+
+ graphql-request@7.1.2:
+ resolution: {integrity: sha512-+XE3iuC55C2di5ZUrB4pjgwe+nIQBuXVIK9J98wrVwojzDW3GMdSBZfxUk8l4j9TieIpjpggclxhNEU9ebGF8w==}
+ peerDependencies:
+ graphql: 14 - 16
+
+ graphql@15.9.0:
+ resolution: {integrity: sha512-GCOQdvm7XxV1S4U4CGrsdlEN37245eC8P9zaYCMr6K1BG0IPGy5lUwmJsEOGyl1GD6HXjOtl2keCP9asRBwNvA==}
+ engines: {node: '>= 10.x'}
+
+ graphql@16.9.0:
+ resolution: {integrity: sha512-GGTKBX4SD7Wdb8mqeDLni2oaRGYQWjWHGKPQ24ZMnUtKfcsVoiv4uX8+LJr1K6U5VW2Lu1BwJnj7uiori0YtRw==}
+ engines: {node: ^12.22.0 || ^14.16.0 || ^16.0.0 || >=17.0.0}
+
+ gtoken@5.3.2:
+ resolution: {integrity: sha512-gkvEKREW7dXWF8NV8pVrKfW7WqReAmjjkMBh6lNCCGOM4ucS0r0YyXXl0r/9Yj8wcW/32ISkfc8h5mPTDbtifQ==}
+ engines: {node: '>=10'}
+
+ gtoken@6.1.2:
+ resolution: {integrity: sha512-4ccGpzz7YAr7lxrT2neugmXQ3hP9ho2gcaityLVkiUecAiwiy60Ii8gRbZeOsXV19fYaRjgBSshs8kXw+NKCPQ==}
+ engines: {node: '>=12.0.0'}
+
+ gtoken@7.1.0:
+ resolution: {integrity: sha512-pCcEwRi+TKpMlxAQObHDQ56KawURgyAf6jtIY046fJ5tIv3zDe/LEIubckAO8fj6JnAxLdmWkUfNyulQ2iKdEw==}
+ engines: {node: '>=14.0.0'}
+
+ handlebars-loader@1.7.3:
+ resolution: {integrity: sha512-dDb+8D51vE3OTSE2wuGPWRAegtsEuw8Mk8hCjtRu/pNcBfN5q+M8ZG3kVJxBuOeBrVElpFStipGmaxSBTRR1mQ==}
+ peerDependencies:
+ handlebars: '>= 1.3.0 < 5'
+
+ handlebars@4.7.8:
+ resolution: {integrity: sha512-vafaFqs8MZkRrSX7sFVUdo3ap/eNiLnb4IakshzvP56X5Nr1iGKAIqdX6tMlm6HcNRIkr6AxO5jFEoJzzpT8aQ==}
+ engines: {node: '>=0.4.7'}
+ hasBin: true
+
+ har-schema@2.0.0:
+ resolution: {integrity: sha512-Oqluz6zhGX8cyRaTQlFMPw80bSJVG2x/cFb8ZPhUILGgHka9SsokCCOQgpveePerqidZOrT14ipqfJb7ILcW5Q==}
+ engines: {node: '>=4'}
+
+ har-validator@5.1.5:
+ resolution: {integrity: sha512-nmT2T0lljbxdQZfspsno9hgrG3Uir6Ks5afism62poxqBM6sDnMEuPmzTq8XN0OEwqKLLdh1jQI3qyE66Nzb3w==}
+ engines: {node: '>=6'}
+ deprecated: this library is no longer supported
+
+ has-ansi@2.0.0:
+ resolution: {integrity: sha512-C8vBJ8DwUCx19vhm7urhTuUsr4/IyP6l4VzNQDv+ryHQObW3TTTp9yB68WpYgRe2bbaGuZ/se74IqFeVnMnLZg==}
+ engines: {node: '>=0.10.0'}
+
+ has-bigints@1.0.2:
+ resolution: {integrity: sha512-tSvCKtBr9lkF0Ex0aQiP9N+OpV4zi2r/Nee5VkRDbaqv35RLYMzbwQfFSZZH0kR+Rd6302UJZ2p/bJCEoR3VoQ==}
+
+ has-flag@3.0.0:
+ resolution: {integrity: sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==}
+ engines: {node: '>=4'}
+
+ has-flag@4.0.0:
+ resolution: {integrity: sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==}
+ engines: {node: '>=8'}
+
+ has-property-descriptors@1.0.2:
+ resolution: {integrity: sha512-55JNKuIW+vq4Ke1BjOTjM2YctQIvCT7GFzHwmfZPGo5wnrgkid0YQtnAleFSqumZm4az3n2BS+erby5ipJdgrg==}
+
+ has-proto@1.0.3:
+ resolution: {integrity: sha512-SJ1amZAJUiZS+PhsVLf5tGydlaVB8EdFpaSO4gmiUKUOxk8qzn5AIy4ZeJUmh22znIdk/uMAUT2pl3FxzVUH+Q==}
+ engines: {node: '>= 0.4'}
+
+ has-symbols@1.0.3:
+ resolution: {integrity: sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A==}
+ engines: {node: '>= 0.4'}
+
+ has-tostringtag@1.0.2:
+ resolution: {integrity: sha512-NqADB8VjPFLM2V0VvHUewwwsw0ZWBaIdgo+ieHtK3hasLz4qeCRjYcqfB6AQrBggRKppKF8L52/VqdVsO47Dlw==}
+ engines: {node: '>= 0.4'}
+
+ has-unicode@2.0.1:
+ resolution: {integrity: sha512-8Rf9Y83NBReMnx0gFzA8JImQACstCYWUplepDa9xprwwtmgEZUF0h/i5xSA625zB/I37EtrswSST6OXxwaaIJQ==}
+
+ hash-base@3.1.0:
+ resolution: {integrity: sha512-1nmYp/rhMDiE7AYkDw+lLwlAzz0AntGIe51F3RfFfEqyQ3feY2eI/NcwC6umIQVOASPMsWJLJScWKSSvzL9IVA==}
+ engines: {node: '>=4'}
+
+ hash-stream-validation@0.2.4:
+ resolution: {integrity: sha512-Gjzu0Xn7IagXVkSu9cSFuK1fqzwtLwFhNhVL8IFJijRNMgUttFbBSIAzKuSIrsFMO1+g1RlsoN49zPIbwPDMGQ==}
+
+ hasha@5.2.2:
+ resolution: {integrity: sha512-Hrp5vIK/xr5SkeN2onO32H0MgNZ0f17HRNH39WfL0SYUNOTZ5Lz1TJ8Pajo/87dYGEFlLMm7mIc/k/s6Bvz9HQ==}
+ engines: {node: '>=8'}
+
+ hasown@2.0.2:
+ resolution: {integrity: sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ==}
+ engines: {node: '>= 0.4'}
+
+ hast-util-to-jsx-runtime@2.3.2:
+ resolution: {integrity: sha512-1ngXYb+V9UT5h+PxNRa1O1FYguZK/XL+gkeqvp7EdHlB9oHUG0eYRo/vY5inBdcqo3RkPMC58/H94HvkbfGdyg==}
+
+ hast-util-whitespace@3.0.0:
+ resolution: {integrity: sha512-88JUN06ipLwsnv+dVn+OIYOvAuvBMy/Qoi6O7mQHxdPXpjy+Cd6xRkWwux7DKO+4sYILtLBRIKgsdpS2gQc7qw==}
+
+ hasurl@1.0.0:
+ resolution: {integrity: sha512-43ypUd3DbwyCT01UYpA99AEZxZ4aKtRxWGBHEIbjcOsUghd9YUON0C+JF6isNjaiwC/UF5neaUudy6JS9jZPZQ==}
+ engines: {node: '>= 4'}
+
+ he@1.2.0:
+ resolution: {integrity: sha512-F/1DnUGPopORZi0ni+CvrCgHQ5FyEAHRLSApuYWMmrbSwoN2Mn/7k+Gl38gJnR7yyDZk6WLXwiGod1JOWNDKGw==}
+ hasBin: true
+
+ heap-js@2.5.0:
+ resolution: {integrity: sha512-kUGoI3p7u6B41z/dp33G6OaL7J4DRqRYwVmeIlwLClx7yaaAy7hoDExnuejTKtuDwfcatGmddHDEOjf6EyIxtQ==}
+ engines: {node: '>=10.0.0'}
+
+ hexoid@1.0.0:
+ resolution: {integrity: sha512-QFLV0taWQOZtvIRIAdBChesmogZrtuXvVWsFHZTk2SU+anspqZ2vMnoLg7IE1+Uk16N19APic1BuF8bC8c2m5g==}
+ engines: {node: '>=8'}
+
+ hoist-non-react-statics@3.3.2:
+ resolution: {integrity: sha512-/gGivxi8JPKWNm/W0jSmzcMPpfpPLc3dY/6GxhX2hQ9iGj3aDfklV4ET7NjKpSinLpJ5vafa9iiGIEZg10SfBw==}
+
+ homedir-polyfill@1.0.3:
+ resolution: {integrity: sha512-eSmmWE5bZTK2Nou4g0AI3zZ9rswp7GRKoKXS1BLUkvPviOqs4YTN1djQIqrXy9k5gEtdLPy86JjRwsNM9tnDcA==}
+ engines: {node: '>=0.10.0'}
+
+ hookified@1.5.0:
+ resolution: {integrity: sha512-4U0zw2ibOws7kfGdNCIL6oRg+t6ITxkgi9kUaJ71IDp0ZATHjvY6o7l90RBa/R8H2qOKl47SZISA5a3hNnei1g==}
+
+ hosted-git-info@2.8.9:
+ resolution: {integrity: sha512-mxIDAb9Lsm6DoOJ7xH+5+X4y1LU/4Hi50L9C5sIswK3JzULS4bwk1FvjdBgvYR4bzT4tuUQiC15FE2f5HbLvYw==}
+
+ hosted-git-info@4.1.0:
+ resolution: {integrity: sha512-kyCuEOWjJqZuDbRHzL8V93NzQhwIB71oFWSyzVo+KPZI+pnQPPxucdkrOZvkLRnrf5URsQM+IJ09Dw29cRALIA==}
+ engines: {node: '>=10'}
+
+ html-entities-decoder@1.0.5:
+ resolution: {integrity: sha512-Cc/RSOGlojr7NDw1oXamUQenYBB0f/SISO8QWtRdZkDOmlO/hvbGZMjgyl+6+mh2PKPRrGXUKH4JhCU18LNS2g==}
+
+ html-escaper@2.0.2:
+ resolution: {integrity: sha512-H2iMtd0I4Mt5eYiapRdIDjp+XzelXQ0tFE4JS7YFwFevXXMmOp9myNrUvCg0D6ws8iqkRPBfKHgbwig1SmlLfg==}
+
+ html-escaper@3.0.3:
+ resolution: {integrity: sha512-RuMffC89BOWQoY0WKGpIhn5gX3iI54O6nRA0yC124NYVtzjmFWBIiFd8M0x+ZdX0P9R4lADg1mgP8C7PxGOWuQ==}
+
+ html-tags@3.3.1:
+ resolution: {integrity: sha512-ztqyC3kLto0e9WbNp0aeP+M3kTt+nbaIveGmUxAtZa+8iFgKLUOD4YKM5j+f3QD89bra7UeumolZHKuOXnTmeQ==}
+ engines: {node: '>=8'}
+
+ html-to-text@8.2.1:
+ resolution: {integrity: sha512-aN/3JvAk8qFsWVeE9InWAWueLXrbkoVZy0TkzaGhoRBC2gCFEeRLDDJN3/ijIGHohy6H+SZzUQWN/hcYtaPK8w==}
+ engines: {node: '>=10.23.2'}
+ hasBin: true
+
+ html-to-text@9.0.5:
+ resolution: {integrity: sha512-qY60FjREgVZL03vJU6IfMV4GDjGBIoOyvuFdpBDIX9yTlDw0TjxVBQp+P8NvpdIXNJvfWBTNul7fsAQJq2FNpg==}
+ engines: {node: '>=14'}
+
+ html-url-attributes@3.0.1:
+ resolution: {integrity: sha512-ol6UPyBWqsrO6EJySPz2O7ZSr856WDrEzM5zMqp+FJJLGMW35cLYmmZnl0vztAZxRUoNZJFTCohfjuIJ8I4QBQ==}
+
+ htmlparser2@6.1.0:
+ resolution: {integrity: sha512-gyyPk6rgonLFEDGoeRgQNaEUvdJ4ktTmmUh/h2t7s+M8oPpIPxgNACWa+6ESR57kXstwqPiCut0V8NRpcwgU7A==}
+
+ htmlparser2@8.0.2:
+ resolution: {integrity: sha512-GYdjWKDkbRLkZ5geuHs5NY1puJ+PXwP7+fHPRz06Eirsb9ugf6d8kkXav6ADhcODhFFPMIXyxkxSuMf3D6NCFA==}
+
+ http-cache-semantics@4.1.1:
+ resolution: {integrity: sha512-er295DKPVsV82j5kw1Gjt+ADA/XYHsajl82cGNQG2eyoPkvgUhX+nDIyelzhIWbbsXP39EHcI6l5tYs2FYqYXQ==}
+
+ http-errors@2.0.0:
+ resolution: {integrity: sha512-FtwrG/euBzaEjYeRqOgly7G0qviiXoJWnvEH2Z1plBdXgbyjv34pHTSb9zoeHMyDy33+DWy5Wt9Wo+TURtOYSQ==}
+ engines: {node: '>= 0.8'}
+
+ http-parser-js@0.5.8:
+ resolution: {integrity: sha512-SGeBX54F94Wgu5RH3X5jsDtf4eHyRogWX1XGT3b4HuW3tQPM4AaBzoUji/4AAJNXCEOWZ5O0DgZmJw1947gD5Q==}
+
+ http-proxy-agent@4.0.1:
+ resolution: {integrity: sha512-k0zdNgqWTGA6aeIRVpvfVob4fL52dTfaehylg0Y4UvSySvOq/Y+BOyPrgpUrA7HylqvU8vIZGsRuXmspskV0Tg==}
+ engines: {node: '>= 6'}
+
+ http-proxy-agent@5.0.0:
+ resolution: {integrity: sha512-n2hY8YdoRE1i7r6M0w9DIw5GgZN0G25P8zLCRQ8rjXtTU3vsNFBI/vWK/UIeE6g5MUUz6avwAPXmL6Fy9D/90w==}
+ engines: {node: '>= 6'}
+
+ http-proxy-agent@7.0.2:
+ resolution: {integrity: sha512-T1gkAiYYDWYx3V5Bmyu7HcfcvL7mUrTWiM6yOfa3PIphViJ/gFPbvidQ+veqSOHci/PxBcDabeUNCzpOODJZig==}
+ engines: {node: '>= 14'}
+
+ http-signature@1.2.0:
+ resolution: {integrity: sha512-CAbnr6Rz4CYQkLYUtSNXxQPUH2gK8f3iWexVlsnMeD+GjlsQ0Xsy1cOX+mN3dtxYomRy21CiOzU8Uhw6OwncEQ==}
+ engines: {node: '>=0.8', npm: '>=1.3.7'}
+
+ http2-client@1.3.5:
+ resolution: {integrity: sha512-EC2utToWl4RKfs5zd36Mxq7nzHHBuomZboI0yYL6Y0RmBgT7Sgkq4rQ0ezFTYoIsSs7Tm9SJe+o2FcAg6GBhGA==}
+
+ http2-wrapper@1.0.3:
+ resolution: {integrity: sha512-V+23sDMr12Wnz7iTcDeJr3O6AIxlnvT/bmaAAAP/Xda35C90p9599p0F1eHR/N1KILWSoWVAiOMFjBBXaXSMxg==}
+ engines: {node: '>=10.19.0'}
+
+ http2-wrapper@2.2.1:
+ resolution: {integrity: sha512-V5nVw1PAOgfI3Lmeaj2Exmeg7fenjhRUgz1lPSezy1CuhPYbgQtbQj4jZfEAEMlaL+vupsvhjqCyjzob0yxsmQ==}
+ engines: {node: '>=10.19.0'}
+
+ https-proxy-agent@5.0.1:
+ resolution: {integrity: sha512-dFcAjpTQFgoLMzC2VwU+C/CbS7uRL0lWmxDITmqm7C+7F0Odmj6s9l6alZc6AELXhrnggM2CeWSXHGOdX2YtwA==}
+ engines: {node: '>= 6'}
+
+ https-proxy-agent@7.0.5:
+ resolution: {integrity: sha512-1e4Wqeblerz+tMKPIq2EMGiiWW1dIjZOksyHWSUm1rmuvw/how9hBHZ38lAGj5ID4Ik6EdkOw7NmWPy6LAwalw==}
+ engines: {node: '>= 14'}
+
+ human-signals@2.1.0:
+ resolution: {integrity: sha512-B4FFZ6q/T2jhhksgkbEW3HBvWIfDW85snkQgawt07S7J5QXTk6BkNV+0yAeZrM5QpMAdYlocGoljn0sJ/WQkFw==}
+ engines: {node: '>=10.17.0'}
+
+ husky@3.1.0:
+ resolution: {integrity: sha512-FJkPoHHB+6s4a+jwPqBudBDvYZsoQW5/HBuMSehC8qDiCe50kpcxeqFoDSlow+9I6wg47YxBoT3WxaURlrDIIQ==}
+ engines: {node: '>=8.6.0'}
+ hasBin: true
+
+ husky@7.0.4:
+ resolution: {integrity: sha512-vbaCKN2QLtP/vD4yvs6iz6hBEo6wkSzs8HpRah1Z6aGmF2KW5PdYuAd7uX5a+OyBZHBhd+TFLqgjUgytQr4RvQ==}
+ engines: {node: '>=12'}
+ hasBin: true
+
+ iconv-lite@0.4.24:
+ resolution: {integrity: sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==}
+ engines: {node: '>=0.10.0'}
+
+ iconv-lite@0.6.3:
+ resolution: {integrity: sha512-4fCk79wshMdzMp2rH06qWrJE4iolqLhCUH+OiuIgU++RB0+94NlDL81atO7GX55uUKueo0txHNtvEyI6D7WdMw==}
+ engines: {node: '>=0.10.0'}
+
+ idb@7.0.1:
+ resolution: {integrity: sha512-UUxlE7vGWK5RfB/fDwEGgRf84DY/ieqNha6msMV99UsEMQhJ1RwbCd8AYBj3QMgnE3VZnfQvm4oKVCJTYlqIgg==}
+
+ ieee754@1.2.1:
+ resolution: {integrity: sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==}
+
+ ignore-by-default@1.0.1:
+ resolution: {integrity: sha512-Ius2VYcGNk7T90CppJqcIkS5ooHUZyIQK+ClZfMfMNFEF9VSE73Fq+906u/CWu92x4gzZMWOwfFYckPObzdEbA==}
+
+ ignore@5.3.2:
+ resolution: {integrity: sha512-hsBTNUqQTDwkWtcdYI2i06Y/nUBEsNEDJKjWdigLvegy8kDuJAS8uRlpkkcQpyEXL0Z/pjDy5HBmMjRCJ2gq+g==}
+ engines: {node: '>= 4'}
+
+ ignore@6.0.2:
+ resolution: {integrity: sha512-InwqeHHN2XpumIkMvpl/DCJVrAHgCsG5+cn1XlnLWGwtZBm8QJfSusItfrwx81CTp5agNZqpKU2J/ccC5nGT4A==}
+ engines: {node: '>= 4'}
+
+ image-size@1.0.0:
+ resolution: {integrity: sha512-JLJ6OwBfO1KcA+TvJT+v8gbE6iWbj24LyDNFgFEN0lzegn6cC6a/p3NIDaepMsJjQjlUWqIC7wJv8lBFxPNjcw==}
+ engines: {node: '>=12.0.0'}
+ hasBin: true
+
+ imap@0.8.19:
+ resolution: {integrity: sha512-z5DxEA1uRnZG73UcPA4ES5NSCGnPuuouUx43OPX7KZx1yzq3N8/vx2mtXEShT5inxB3pRgnfG1hijfu7XN2YMw==}
+ engines: {node: '>=0.8.0'}
+
+ immediate@3.0.6:
+ resolution: {integrity: sha512-XXOFtyqDjNDAQxVfYxuF7g9Il/IbWmmlQg2MYKOH8ExIT1qg6xc4zyS3HaEEATgs1btfzxq15ciUiY7gjSXRGQ==}
+
+ import-fresh@2.0.0:
+ resolution: {integrity: sha512-eZ5H8rcgYazHbKC3PG4ClHNykCSxtAhxSSEM+2mb+7evD2CKF5V7c0dNum7AdpDh0ZdICwZY9sRSn8f+KH96sg==}
+ engines: {node: '>=4'}
+
+ import-fresh@3.3.0:
+ resolution: {integrity: sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==}
+ engines: {node: '>=6'}
+
+ import-lazy@4.0.0:
+ resolution: {integrity: sha512-rKtvo6a868b5Hu3heneU+L4yEQ4jYKLtjpnPeUdK7h0yzXGmyBTypknlkCvHFBqfX9YlorEiMM6Dnq/5atfHkw==}
+ engines: {node: '>=8'}
+
+ import-local@3.2.0:
+ resolution: {integrity: sha512-2SPlun1JUPWoM6t3F0dw0FkCF/jWY8kttcY4f599GLTSjh2OCuuhdTkJQsEcZzBqbXZGKMK2OqW1oZsjtf/gQA==}
+ engines: {node: '>=8'}
+ hasBin: true
+
+ imurmurhash@0.1.4:
+ resolution: {integrity: sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==}
+ engines: {node: '>=0.8.19'}
+
+ indent-string@4.0.0:
+ resolution: {integrity: sha512-EdDDZu4A2OyIK7Lr/2zG+w5jmbuk1DVBnEwREQvBzspBJkCEbRa8GxU1lghYcaGJCnRWibjDXlq779X1/y5xwg==}
+ engines: {node: '>=8'}
+
+ indexes-of@1.0.1:
+ resolution: {integrity: sha512-bup+4tap3Hympa+JBJUG7XuOsdNQ6fxt0MHyXMKuLBKn0OqsTfvUxkUrroEX1+B2VsSHvCjiIcZVxRtYa4nllA==}
+
+ inflection@3.0.0:
+ resolution: {integrity: sha512-1zEJU1l19SgJlmwqsEyFTbScw/tkMHFenUo//Y0i+XEP83gDFdMvPizAD/WGcE+l1ku12PcTVHQhO6g5E0UCMw==}
+ engines: {node: '>=18.0.0'}
+
+ inflight@1.0.6:
+ resolution: {integrity: sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==}
+ deprecated: This module is not supported, and leaks memory. Do not use it. Check out lru-cache if you want a good and tested way to coalesce async requests by a key value, which is much more comprehensive and powerful.
+
+ inherits@2.0.3:
+ resolution: {integrity: sha512-x00IRNXNy63jwGkJmzPigoySHbaqpNuzKbBOmzK+g2OdZpQ9w+sxCN+VSB3ja7IAge2OP2qpfxTjeNcyjmW1uw==}
+
+ inherits@2.0.4:
+ resolution: {integrity: sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==}
+
+ ini@1.3.8:
+ resolution: {integrity: sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew==}
+
+ ini@2.0.0:
+ resolution: {integrity: sha512-7PnF4oN3CvZF23ADhA5wRaYEQpJ8qygSkbtTXWBeXWXmEVRXK+1ITciHWwHhsjv1TmW0MgacIv6hEi5pX5NQdA==}
+ engines: {node: '>=10'}
+
+ inline-style-parser@0.2.4:
+ resolution: {integrity: sha512-0aO8FkhNZlj/ZIbNi7Lxxr12obT7cL1moPfE4tg1LkX7LlLfC6DeX4l2ZEud1ukP9jNQyNnfzQVqwbwmAATY4Q==}
+
+ inquirer@8.2.6:
+ resolution: {integrity: sha512-M1WuAmb7pn9zdFRtQYk26ZBoY043Sse0wVDdk4Bppr+JOXyQYybdtvK+l9wUibhtjdjvtoiNy8tk+EgsYIUqKg==}
+ engines: {node: '>=12.0.0'}
+
+ internal-slot@1.0.7:
+ resolution: {integrity: sha512-NGnrKwXzSms2qUUih/ILZ5JBqNTSa1+ZmP6flaIp6KmSElgE9qdndzS3cqjrDovwFdmwsGsLdeFgB6suw+1e9g==}
+ engines: {node: '>= 0.4'}
+
+ invariant@2.2.4:
+ resolution: {integrity: sha512-phJfQVBuaJM5raOpJjSfkiD6BpbCE4Ns//LaXl6wGYtUBY83nWS6Rf9tXm2e8VaK60JEjYldbPif/A2B1C2gNA==}
+
+ io-ts@2.2.21:
+ resolution: {integrity: sha512-zz2Z69v9ZIC3mMLYWIeoUcwWD6f+O7yP92FMVVaXEOSZH1jnVBmET/urd/uoarD1WGBY4rCj8TAyMPzsGNzMFQ==}
+ peerDependencies:
+ fp-ts: ^2.5.0
+
+ ip-address@9.0.5:
+ resolution: {integrity: sha512-zHtQzGojZXTwZTHQqra+ETKd4Sn3vgi7uBmlPoXVWZqYvuKmtI0l/VZTjqGmJY9x88GGOaZ9+G9ES8hC4T4X8g==}
+ engines: {node: '>= 12'}
+
+ ip@1.1.9:
+ resolution: {integrity: sha512-cyRxvOEpNHNtchU3Ln9KC/auJgup87llfQpQ+t5ghoC/UhL16SWzbueiCsdTnWmqAWl7LadfuwhlqmtOaqMHdQ==}
+
+ is-alphabetical@1.0.4:
+ resolution: {integrity: sha512-DwzsA04LQ10FHTZuL0/grVDk4rFoVH1pjAToYwBrHSxcrBIGQuXrQMtD5U1b0U2XVgKZCTLLP8u2Qxqhy3l2Vg==}
+
+ is-alphabetical@2.0.1:
+ resolution: {integrity: sha512-FWyyY60MeTNyeSRpkM2Iry0G9hpr7/9kD40mD/cGQEuilcZYS4okz8SN2Q6rLCJ8gbCt6fN+rC+6tMGS99LaxQ==}
+
+ is-alphanumerical@1.0.4:
+ resolution: {integrity: sha512-UzoZUr+XfVz3t3v4KyGEniVL9BDRoQtY7tOyrRybkVNjDFWyo1yhXNGrrBTQxp3ib9BLAWs7k2YKBQsFRkZG9A==}
+
+ is-alphanumerical@2.0.1:
+ resolution: {integrity: sha512-hmbYhX/9MUMF5uh7tOXyK/n0ZvWpad5caBA17GsC6vyuCqaWliRG5K1qS9inmUhEMaOBIW7/whAnSwveW/LtZw==}
+
+ is-arguments@1.1.1:
+ resolution: {integrity: sha512-8Q7EARjzEnKpt/PCD7e1cgUS0a6X8u5tdSiMqXhojOdoV9TsMsiO+9VLC5vAmO8N7/GmXn7yjR8qnA6bVAEzfA==}
+ engines: {node: '>= 0.4'}
+
+ is-array-buffer@3.0.4:
+ resolution: {integrity: sha512-wcjaerHw0ydZwfhiKbXJWLDY8A7yV7KhjQOpb83hGgGfId/aQa4TOvwyzn2PuswW2gPCYEL/nEAiSVpdOj1lXw==}
+ engines: {node: '>= 0.4'}
+
+ is-arrayish@0.2.1:
+ resolution: {integrity: sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg==}
+
+ is-arrayish@0.3.2:
+ resolution: {integrity: sha512-eVRqCvVlZbuw3GrM63ovNSNAeA1K16kaR/LRY/92w0zxQ5/1YzwblUX652i4Xs9RwAGjW9d9y6X88t8OaAJfWQ==}
+
+ is-async-function@2.0.0:
+ resolution: {integrity: sha512-Y1JXKrfykRJGdlDwdKlLpLyMIiWqWvuSd17TvZk68PLAOGOoF4Xyav1z0Xhoi+gCYjZVeC5SI+hYFOfvXmGRCA==}
+ engines: {node: '>= 0.4'}
+
+ is-bigint@1.0.4:
+ resolution: {integrity: sha512-zB9CruMamjym81i2JZ3UMn54PKGsQzsJeo6xvN3HJJ4CAsQNB6iRutp2To77OfCNuoxspsIhzaPoO1zyCEhFOg==}
+
+ is-binary-path@2.1.0:
+ resolution: {integrity: sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==}
+ engines: {node: '>=8'}
+
+ is-boolean-object@1.1.2:
+ resolution: {integrity: sha512-gDYaKHJmnj4aWxyj6YHyXVpdQawtVLHU5cb+eztPGczf6cjuTdwve5ZIEfgXqH4e57An1D1AKf8CZ3kYrQRqYA==}
+ engines: {node: '>= 0.4'}
+
+ is-buffer@1.1.6:
+ resolution: {integrity: sha512-NcdALwpXkTm5Zvvbk7owOUSvVvBKDgKP5/ewfXEznmQFfs4ZRmanOeKBTjRVjka3QFoN6XJ+9F3USqfHqTaU5w==}
+
+ is-buffer@2.0.5:
+ resolution: {integrity: sha512-i2R6zNFDwgEHJyQUtJEk0XFi1i0dPFn/oqjK3/vPCcDeJvW5NQ83V8QbicfF1SupOaB0h8ntgBC2YiE7dfyctQ==}
+ engines: {node: '>=4'}
+
+ is-bun-module@1.2.1:
+ resolution: {integrity: sha512-AmidtEM6D6NmUiLOvvU7+IePxjEjOzra2h0pSrsfSAcXwl/83zLLXDByafUJy9k/rKK0pvXMLdwKwGHlX2Ke6Q==}
+
+ is-callable@1.2.7:
+ resolution: {integrity: sha512-1BC0BVFhS/p0qtw6enp8e+8OD0UrK0oFLztSjNzhcKA3WDuJxxAPXzPuPtKkjEY9UUoEWlX/8fgKeu2S8i9JTA==}
+ engines: {node: '>= 0.4'}
+
+ is-core-module@2.15.1:
+ resolution: {integrity: sha512-z0vtXSwucUJtANQWldhbtbt7BnL0vxiFjIdDLAatwhDYty2bad6s+rijD6Ri4YuYJubLzIJLUidCh09e1djEVQ==}
+ engines: {node: '>= 0.4'}
+
+ is-data-view@1.0.1:
+ resolution: {integrity: sha512-AHkaJrsUVW6wq6JS8y3JnM/GJF/9cf+k20+iDzlSaJrinEo5+7vRiteOSwBhHRiAyQATN1AmY4hwzxJKPmYf+w==}
+ engines: {node: '>= 0.4'}
+
+ is-date-object@1.0.5:
+ resolution: {integrity: sha512-9YQaSxsAiSwcvS33MBk3wTCVnWK+HhF8VZR2jRxehM16QcVOdHqPn4VPHmRK4lSr38n9JriurInLcP90xsYNfQ==}
+ engines: {node: '>= 0.4'}
+
+ is-decimal@1.0.4:
+ resolution: {integrity: sha512-RGdriMmQQvZ2aqaQq3awNA6dCGtKpiDFcOzrTWrDAT2MiWrKQVPmxLGHl7Y2nNu6led0kEyoX0enY0qXYsv9zw==}
+
+ is-decimal@2.0.1:
+ resolution: {integrity: sha512-AAB9hiomQs5DXWcRB1rqsxGUstbRroFOPPVAomNk/3XHR5JyEZChOyTWe2oayKnsSsr/kcGqF+z6yuH6HHpN0A==}
+
+ is-directory@0.3.1:
+ resolution: {integrity: sha512-yVChGzahRFvbkscn2MlwGismPO12i9+znNruC5gVEntG3qu0xQMzsGg/JFbrsqDOHtHFPci+V5aP5T9I+yeKqw==}
+ engines: {node: '>=0.10.0'}
+
+ is-docker@2.2.1:
+ resolution: {integrity: sha512-F+i2BKsFrH66iaUFc0woD8sLy8getkwTwtOBjvs56Cx4CgJDeKQeqfz8wAYiSb8JOprWhHH5p77PbmYCvvUuXQ==}
+ engines: {node: '>=8'}
+ hasBin: true
+
+ is-electron@2.2.2:
+ resolution: {integrity: sha512-FO/Rhvz5tuw4MCWkpMzHFKWD2LsfHzIb7i6MdPYZ/KW7AlxawyLkqdy+jPZP1WubqEADE3O4FUENlJHDfQASRg==}
+
+ is-extglob@2.1.1:
+ resolution: {integrity: sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==}
+ engines: {node: '>=0.10.0'}
+
+ is-finalizationregistry@1.0.2:
+ resolution: {integrity: sha512-0by5vtUJs8iFQb5TYUHHPudOR+qXYIMKtiUzvLIZITZUjknFmziyBJuLhVRc+Ds0dREFlskDNJKYIdIzu/9pfw==}
+
+ is-fullwidth-code-point@1.0.0:
+ resolution: {integrity: sha512-1pqUqRjkhPJ9miNq9SwMfdvi6lBJcd6eFxvfaivQhaH3SgisfiuudvFntdKOmxuee/77l+FPjKrQjWvmPjWrRw==}
+ engines: {node: '>=0.10.0'}
+
+ is-fullwidth-code-point@3.0.0:
+ resolution: {integrity: sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==}
+ engines: {node: '>=8'}
+
+ is-fullwidth-code-point@4.0.0:
+ resolution: {integrity: sha512-O4L094N2/dZ7xqVdrXhh9r1KODPJpFms8B5sGdJLPy664AgvXsreZUyCQQNItZRDlYug4xStLjNp/sz3HvBowQ==}
+ engines: {node: '>=12'}
+
+ is-generator-fn@2.1.0:
+ resolution: {integrity: sha512-cTIB4yPYL/Grw0EaSzASzg6bBy9gqCofvWN8okThAYIxKJZC+udlRAmGbM0XLeniEJSs8uEgHPGuHSe1XsOLSQ==}
+ engines: {node: '>=6'}
+
+ is-generator-function@1.0.10:
+ resolution: {integrity: sha512-jsEjy9l3yiXEQ+PsXdmBwEPcOxaXWLspKdplFUVI9vq1iZgIekeC0L167qeu86czQaxed3q/Uzuw0swL0irL8A==}
+ engines: {node: '>= 0.4'}
+
+ is-glob@4.0.3:
+ resolution: {integrity: sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==}
+ engines: {node: '>=0.10.0'}
+
+ is-hexadecimal@1.0.4:
+ resolution: {integrity: sha512-gyPJuv83bHMpocVYoqof5VDiZveEoGoFL8m3BXNb2VW8Xs+rz9kqO8LOQ5DH6EsuvilT1ApazU0pyl+ytbPtlw==}
+
+ is-hexadecimal@2.0.1:
+ resolution: {integrity: sha512-DgZQp241c8oO6cA1SbTEWiXeoxV42vlcJxgH+B3hi1AiqqKruZR3ZGF8In3fj4+/y/7rHvlOZLZtgJ/4ttYGZg==}
+
+ is-interactive@1.0.0:
+ resolution: {integrity: sha512-2HvIEKRoqS62guEC+qBjpvRubdX910WCMuJTZ+I9yvqKU2/12eSL549HMwtabb4oupdj2sMP50k+XJfB/8JE6w==}
+ engines: {node: '>=8'}
+
+ is-map@2.0.3:
+ resolution: {integrity: sha512-1Qed0/Hr2m+YqxnM09CjA2d/i6YZNfF6R2oRAOj36eUdS6qIV/huPJNSEpKbupewFs+ZsJlxsjjPbc0/afW6Lw==}
+ engines: {node: '>= 0.4'}
+
+ is-negative-zero@2.0.3:
+ resolution: {integrity: sha512-5KoIu2Ngpyek75jXodFvnafB6DJgr3u8uuK0LEZJjrU19DrMD3EVERaR8sjz8CCGgpZvxPl9SuE1GMVPFHx1mw==}
+ engines: {node: '>= 0.4'}
+
+ is-number-object@1.0.7:
+ resolution: {integrity: sha512-k1U0IRzLMo7ZlYIfzRu23Oh6MiIFasgpb9X76eqfFZAqwH44UI4KTBvBYIZ1dSL9ZzChTB9ShHfLkR4pdW5krQ==}
+ engines: {node: '>= 0.4'}
+
+ is-number@7.0.0:
+ resolution: {integrity: sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==}
+ engines: {node: '>=0.12.0'}
+
+ is-obj@1.0.1:
+ resolution: {integrity: sha512-l4RyHgRqGN4Y3+9JHVrNqO+tN0rV5My76uW5/nuO4K1b6vw5G8d/cmFjP9tRfEsdhZNt0IFdZuK/c2Vr4Nb+Qg==}
+ engines: {node: '>=0.10.0'}
+
+ is-obj@2.0.0:
+ resolution: {integrity: sha512-drqDG3cbczxxEJRoOXcOjtdp1J/lyp1mNn0xaznRs8+muBhgQcrnbspox5X5fOw0HnMnbfDzvnEMEtqDEJEo8w==}
+ engines: {node: '>=8'}
+
+ is-path-cwd@2.2.0:
+ resolution: {integrity: sha512-w942bTcih8fdJPJmQHFzkS76NEP8Kzzvmw92cXsazb8intwLqPibPPdXf4ANdKV3rYMuuQYGIWtvz9JilB3NFQ==}
+ engines: {node: '>=6'}
+
+ is-path-inside@3.0.3:
+ resolution: {integrity: sha512-Fd4gABb+ycGAmKou8eMftCupSir5lRxqf4aD/vd0cD2qc4HL07OjCeuHMr8Ro4CoMaeCKDB0/ECBOVWjTwUvPQ==}
+ engines: {node: '>=8'}
+
+ is-plain-obj@2.1.0:
+ resolution: {integrity: sha512-YWnfyRwxL/+SsrWYfOpUtz5b3YD+nyfkHvjbcanzk8zgyO4ASD67uVMRt8k5bM4lLMDnXfriRhOpemw+NfT1eA==}
+ engines: {node: '>=8'}
+
+ is-plain-obj@4.1.0:
+ resolution: {integrity: sha512-+Pgi+vMuUNkJyExiMBt5IlFoMyKnr5zhJ4Uspz58WOhBF5QoIZkFyNHIbBAtHwzVAgk5RtndVNsDRN61/mmDqg==}
+ engines: {node: '>=12'}
+
+ is-plain-object@2.0.4:
+ resolution: {integrity: sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og==}
+ engines: {node: '>=0.10.0'}
+
+ is-plain-object@5.0.0:
+ resolution: {integrity: sha512-VRSzKkbMm5jMDoKLbltAkFQ5Qr7VDiTFGXxYFXXowVj387GeGNOCsOH6Msy00SGZ3Fp84b1Naa1psqgcCIEP5Q==}
+ engines: {node: '>=0.10.0'}
+
+ is-promise@2.2.2:
+ resolution: {integrity: sha512-+lP4/6lKUBfQjZ2pdxThZvLUAafmZb8OAxFb8XXtiQmS35INgr85hdOGoEs124ez1FCnZJt6jau/T+alh58QFQ==}
+
+ is-property@1.0.2:
+ resolution: {integrity: sha512-Ks/IoX00TtClbGQr4TWXemAnktAQvYB7HzcCxDGqEZU6oCmb2INHuOoKxbtR+HFkmYWBKv/dOZtGRiAjDhj92g==}
+
+ is-redirect@1.0.0:
+ resolution: {integrity: sha512-cr/SlUEe5zOGmzvj9bUyC4LVvkNVAXu4GytXLNMr1pny+a65MpQ9IJzFHD5vi7FyJgb4qt27+eS3TuQnqB+RQw==}
+ engines: {node: '>=0.10.0'}
+
+ is-regex@1.1.4:
+ resolution: {integrity: sha512-kvRdxDsxZjhzUX07ZnLydzS1TU/TJlTUHHY4YLL87e37oUA49DfkLqgy+VjFocowy29cKvcSiu+kIv728jTTVg==}
+ engines: {node: '>= 0.4'}
+
+ is-relative@1.0.0:
+ resolution: {integrity: sha512-Kw/ReK0iqwKeu0MITLFuj0jbPAmEiOsIwyIXvvbfa6QfmN9pkD1M+8pdk7Rl/dTKbH34/XBFMbgD4iMJhLQbGA==}
+ engines: {node: '>=0.10.0'}
+
+ is-retry-allowed@1.2.0:
+ resolution: {integrity: sha512-RUbUeKwvm3XG2VYamhJL1xFktgjvPzL0Hq8C+6yrWIswDy3BIXGqCxhxkc30N9jqK311gVU137K8Ei55/zVJRg==}
+ engines: {node: '>=0.10.0'}
+
+ is-set@2.0.3:
+ resolution: {integrity: sha512-iPAjerrse27/ygGLxw+EBR9agv9Y6uLeYVJMu+QNCoouJ1/1ri0mGrcWpfCqFZuzzx3WjtwxG098X+n4OuRkPg==}
+ engines: {node: '>= 0.4'}
+
+ is-shared-array-buffer@1.0.3:
+ resolution: {integrity: sha512-nA2hv5XIhLR3uVzDDfCIknerhx8XUKnstuOERPNNIinXG7v9u+ohXF67vxm4TPTEPU6lm61ZkwP3c9PCB97rhg==}
+ engines: {node: '>= 0.4'}
+
+ is-stream-ended@0.1.4:
+ resolution: {integrity: sha512-xj0XPvmr7bQFTvirqnFr50o0hQIh6ZItDqloxt5aJrR4NQsYeSsyFQERYGCAzfindAcnKjINnwEEgLx4IqVzQw==}
+
+ is-stream@1.1.0:
+ resolution: {integrity: sha512-uQPm8kcs47jx38atAcWTVxyltQYoPT68y9aWYdV6yWXSyW8mzSat0TL6CiWdZeCdF3KrAvpVtnHbTv4RN+rqdQ==}
+ engines: {node: '>=0.10.0'}
+
+ is-stream@2.0.1:
+ resolution: {integrity: sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg==}
+ engines: {node: '>=8'}
+
+ is-stream@4.0.1:
+ resolution: {integrity: sha512-Dnz92NInDqYckGEUJv689RbRiTSEHCQ7wOVeALbkOz999YpqT46yMRIGtSNl2iCL1waAZSx40+h59NV/EwzV/A==}
+ engines: {node: '>=18'}
+
+ is-string@1.0.7:
+ resolution: {integrity: sha512-tE2UXzivje6ofPW7l23cjDOMa09gb7xlAqG6jG5ej6uPV32TlWP3NKPigtaGeHNu9fohccRYvIiZMfOOnOYUtg==}
+ engines: {node: '>= 0.4'}
+
+ is-symbol@1.0.4:
+ resolution: {integrity: sha512-C/CPBqKWnvdcxqIARxyOh4v1UUEOCHpgDa0WYgpKDFMszcrPcffg5uhwSgPCLD2WWxmq6isisz87tzT01tuGhg==}
+ engines: {node: '>= 0.4'}
+
+ is-typed-array@1.1.13:
+ resolution: {integrity: sha512-uZ25/bUAlUY5fR4OKT4rZQEBrzQWYV9ZJYGGsUmEJ6thodVJ1HX64ePQ6Z0qPWP+m+Uq6e9UugrE38jeYsDSMw==}
+ engines: {node: '>= 0.4'}
+
+ is-typedarray@1.0.0:
+ resolution: {integrity: sha512-cyA56iCMHAh5CdzjJIa4aohJyeO1YbwLi3Jc35MmRU6poroFjIGZzUzupGiRPOjgHg9TLu43xbpwXk523fMxKA==}
+
+ is-unc-path@1.0.0:
+ resolution: {integrity: sha512-mrGpVd0fs7WWLfVsStvgF6iEJnbjDFZh9/emhRDcGWTduTfNHd9CHeUwH3gYIjdbwo4On6hunkztwOaAw0yllQ==}
+ engines: {node: '>=0.10.0'}
+
+ is-unicode-supported@0.1.0:
+ resolution: {integrity: sha512-knxG2q4UC3u8stRGyAVJCOdxFmv5DZiRcdlIaAQXAbSfJya+OhopNotLQrstBhququ4ZpuKbDc/8S6mgXgPFPw==}
+ engines: {node: '>=10'}
+
+ is-url-superb@6.1.0:
+ resolution: {integrity: sha512-LXdhGlYqUPdvEyIhWPEEwYYK3yrUiPcBjmFGlZNv1u5GtIL5qQRf7ddDyPNAvsMFqdzS923FROpTQU97tLe3JQ==}
+ engines: {node: '>=12'}
+
+ is-url@1.2.4:
+ resolution: {integrity: sha512-ITvGim8FhRiYe4IQ5uHSkj7pVaPDrCTkNd3yq3cV7iZAcJdHTUMPMEHcqSOy9xZ9qFenQCvi+2wjH9a1nXqHww==}
+
+ is-weakmap@2.0.2:
+ resolution: {integrity: sha512-K5pXYOm9wqY1RgjpL3YTkF39tni1XajUIkawTLUo9EZEVUFga5gSQJF8nNS7ZwJQ02y+1YCNYcMh+HIf1ZqE+w==}
+ engines: {node: '>= 0.4'}
+
+ is-weakref@1.0.2:
+ resolution: {integrity: sha512-qctsuLZmIQ0+vSSMfoVvyFe2+GSEvnmZ2ezTup1SBse9+twCCeial6EEi3Nc2KFcf6+qz2FBPnjXsk8xhKSaPQ==}
+
+ is-weakset@2.0.3:
+ resolution: {integrity: sha512-LvIm3/KWzS9oRFHugab7d+M/GcBXuXX5xZkzPmN+NxihdQlZUQ4dWuSV1xR/sq6upL1TJEDrfBgRepHFdBtSNQ==}
+ engines: {node: '>= 0.4'}
+
+ is-wsl@2.2.0:
+ resolution: {integrity: sha512-fKzAra0rGJUUBwGBgNkHZuToZcn+TtXHpeCgmkMJMMYx1sQDYaCSyjJBSCa2nH1DGm7s3n1oBnohoVTBaN7Lww==}
+ engines: {node: '>=8'}
+
+ is@3.3.0:
+ resolution: {integrity: sha512-nW24QBoPcFGGHJGUwnfpI7Yc5CdqWNdsyHQszVE/z2pKHXzh7FZ5GWhJqSyaQ9wMkQnsTx+kAI8bHlCX4tKdbg==}
+
+ isarray@0.0.1:
+ resolution: {integrity: sha512-D2S+3GLxWH+uhrNEcoh/fnmYeP8E8/zHl644d/jdA0g2uyXvy3sb0qxotE+ne0LtccHknQzWwZEzhak7oJ0COQ==}
+
+ isarray@1.0.0:
+ resolution: {integrity: sha512-VLghIWNM6ELQzo7zwmcg0NmTVyWKYjvIeM83yjp0wRDTmUnrM678fQbcKBo6n2CJEF0szoG//ytg+TKla89ALQ==}
+
+ isarray@2.0.5:
+ resolution: {integrity: sha512-xHjhDr3cNBK0BzdUJSPXZntQUx/mwMS5Rw4A7lPJ90XGAO6ISP/ePDNuo0vhqOZU+UD5JoodwCAAoZQd3FeAKw==}
+
+ isexe@2.0.0:
+ resolution: {integrity: sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==}
+
+ isexe@3.1.1:
+ resolution: {integrity: sha512-LpB/54B+/2J5hqQ7imZHfdU31OlgQqx7ZicVlkm9kzg9/w8GKLEcFfJl/t7DCEDueOyBAD6zCCwTO6Fzs0NoEQ==}
+ engines: {node: '>=16'}
+
+ isobject@3.0.1:
+ resolution: {integrity: sha512-WhB9zCku7EGTj/HQQRz5aUQEUeoQZH2bWcltRErOpymJ4boYE6wL9Tbr23krRPSZ+C5zqNSrSw+Cc7sZZ4b7vg==}
+ engines: {node: '>=0.10.0'}
+
+ isomorphic-fetch@3.0.0:
+ resolution: {integrity: sha512-qvUtwJ3j6qwsF3jLxkZ72qCgjMysPzDfeV240JHiGZsANBYd+EEuu35v7dfrJ9Up0Ak07D7GGSkGhCHTqg/5wA==}
+
+ isomorphic-unfetch@3.1.0:
+ resolution: {integrity: sha512-geDJjpoZ8N0kWexiwkX8F9NkTsXhetLPVbZFQ+JTW239QNOwvB0gniuR1Wc6f0AMTn7/mFGyXvHTifrCp/GH8Q==}
+
+ isomorphic-ws@4.0.1:
+ resolution: {integrity: sha512-BhBvN2MBpWTaSHdWRb/bwdZJ1WaehQ2L1KngkCkfLUGF0mAWAT1sQUQacEmQ0jXkFw/czDXPNQSL5u2/Krsz1w==}
+ peerDependencies:
+ ws: '*'
+
+ isstream@0.1.2:
+ resolution: {integrity: sha512-Yljz7ffyPbrLpLngrMtZ7NduUgVvi6wG9RJ9IUcyCd59YQ911PBJphODUcbOVbqYfxe1wuYf/LJ8PauMRwsM/g==}
+
+ istanbul-lib-coverage@3.2.2:
+ resolution: {integrity: sha512-O8dpsF+r0WV/8MNRKfnmrtCWhuKjxrq2w+jpzBL5UZKTi2LeVWnWOmWRxFlesJONmc+wLAGvKQZEOanko0LFTg==}
+ engines: {node: '>=8'}
+
+ istanbul-lib-instrument@5.2.1:
+ resolution: {integrity: sha512-pzqtp31nLv/XFOzXGuvhCb8qhjmTVo5vjVk19XE4CRlSWz0KoeJ3bw9XsA7nOp9YBf4qHjwBxkDzKcME/J29Yg==}
+ engines: {node: '>=8'}
+
+ istanbul-lib-instrument@6.0.3:
+ resolution: {integrity: sha512-Vtgk7L/R2JHyyGW07spoFlB8/lpjiOLTjMdms6AFMraYt3BaJauod/NGrfnVG/y4Ix1JEuMRPDPEj2ua+zz1/Q==}
+ engines: {node: '>=10'}
+
+ istanbul-lib-report@3.0.1:
+ resolution: {integrity: sha512-GCfE1mtsHGOELCU8e/Z7YWzpmybrx/+dSTfLrvY8qRmaY6zXTKWn6WQIjaAFw069icm6GVMNkgu0NzI4iPZUNw==}
+ engines: {node: '>=10'}
+
+ istanbul-lib-source-maps@4.0.1:
+ resolution: {integrity: sha512-n3s8EwkdFIJCG3BPKBYvskgXGoy88ARzvegkitk60NxRdwltLOTaH7CUiMRXvwYorl0Q712iEjcWB+fK/MrWVw==}
+ engines: {node: '>=10'}
+
+ istanbul-reports@3.1.7:
+ resolution: {integrity: sha512-BewmUXImeuRk2YY0PVbxgKAysvhRPUQE0h5QRM++nVWyubKGV0l8qQ5op8+B2DOmwSe63Jivj0BjkPQVf8fP5g==}
+ engines: {node: '>=8'}
+
+ iterate-iterator@1.0.2:
+ resolution: {integrity: sha512-t91HubM4ZDQ70M9wqp+pcNpu8OyJ9UAtXntT/Bcsvp5tZMnz9vRa+IunKXeI8AnfZMTv0jNuVEmGeLSMjVvfPw==}
+
+ iterate-value@1.0.2:
+ resolution: {integrity: sha512-A6fMAio4D2ot2r/TYzr4yUWrmwNdsN5xL7+HUiyACE4DXm+q8HtPcnFTp+NnW3k4N05tZ7FVYFFb2CR13NxyHQ==}
+
+ iterator.prototype@1.1.3:
+ resolution: {integrity: sha512-FW5iMbeQ6rBGm/oKgzq2aW4KvAGpxPzYES8N4g4xNXUKpL1mclMvOe+76AcLDTvD+Ze+sOpVhgdAQEKF4L9iGQ==}
+ engines: {node: '>= 0.4'}
+
+ jake@10.9.2:
+ resolution: {integrity: sha512-2P4SQ0HrLQ+fw6llpLnOaGAvN2Zu6778SJMrCUwns4fOoG9ayrTiZk3VV8sCPkVZF8ab0zksVpS8FDY5pRCNBA==}
+ engines: {node: '>=10'}
+ hasBin: true
+
+ jessy@3.1.1:
+ resolution: {integrity: sha512-Eivuwu3H8qfm4DldbyBci4RJMgoPK3pT3BCzIWNrGPOatkl4jh91PO4LZp7N2zIz8jQlYqs5bPKOkf138jRYqw==}
+ engines: {node: '>=4'}
+
+ jest-changed-files@29.7.0:
+ resolution: {integrity: sha512-fEArFiwf1BpQ+4bXSprcDc3/x4HSzL4al2tozwVpDFpsxALjLYdyiIK4e5Vz66GQJIbXJ82+35PtysofptNX2w==}
+ engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
+
+ jest-circus@29.7.0:
+ resolution: {integrity: sha512-3E1nCMgipcTkCocFwM90XXQab9bS+GMsjdpmPrlelaxwD93Ad8iVEjX/vvHPdLPnFf+L40u+5+iutRdA1N9myw==}
+ engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
+
+ jest-cli@29.7.0:
+ resolution: {integrity: sha512-OVVobw2IubN/GSYsxETi+gOe7Ka59EFMR/twOU3Jb2GnKKeMGJB5SGUUrEz3SFVmJASUdZUzy83sLNNQ2gZslg==}
+ engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
+ hasBin: true
+ peerDependencies:
+ node-notifier: ^8.0.1 || ^9.0.0 || ^10.0.0
+ peerDependenciesMeta:
+ node-notifier:
+ optional: true
+
+ jest-config@29.7.0:
+ resolution: {integrity: sha512-uXbpfeQ7R6TZBqI3/TxCU4q4ttk3u0PJeC+E0zbfSoSjq6bJ7buBPxzQPL0ifrkY4DNu4JUdk0ImlBUYi840eQ==}
+ engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
+ peerDependencies:
+ '@types/node': '*'
+ ts-node: '>=9.0.0'
+ peerDependenciesMeta:
+ '@types/node':
+ optional: true
+ ts-node:
+ optional: true
+
+ jest-diff@27.5.1:
+ resolution: {integrity: sha512-m0NvkX55LDt9T4mctTEgnZk3fmEg3NRYutvMPWM/0iPnkFj2wIeF45O1718cMSOFO1vINkqmxqD8vE37uTEbqw==}
+ engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0}
+
+ jest-diff@29.7.0:
+ resolution: {integrity: sha512-LMIgiIrhigmPrs03JHpxUh2yISK3vLFPkAodPeo0+BuF7wA2FoQbkEg1u8gBYBThncu7e1oEDUfIXVuTqLRUjw==}
+ engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
+
+ jest-docblock@29.7.0:
+ resolution: {integrity: sha512-q617Auw3A612guyaFgsbFeYpNP5t2aoUNLwBUbc/0kD1R4t9ixDbyFTHd1nok4epoVFpr7PmeWHrhvuV3XaJ4g==}
+ engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
+
+ jest-each@29.7.0:
+ resolution: {integrity: sha512-gns+Er14+ZrEoC5fhOfYCY1LOHHr0TI+rQUHZS8Ttw2l7gl+80eHc/gFf2Ktkw0+SIACDTeWvpFcv3B04VembQ==}
+ engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
+
+ jest-environment-node@29.7.0:
+ resolution: {integrity: sha512-DOSwCRqXirTOyheM+4d5YZOrWcdu0LNZ87ewUoywbcb2XR4wKgqiG8vNeYwhjFMbEkfju7wx2GYH0P2gevGvFw==}
+ engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
+
+ jest-fetch-mock@3.0.3:
+ resolution: {integrity: sha512-Ux1nWprtLrdrH4XwE7O7InRY6psIi3GOsqNESJgMJ+M5cv4A8Lh7SN9d2V2kKRZ8ebAfcd1LNyZguAOb6JiDqw==}
+
+ jest-get-type@27.5.1:
+ resolution: {integrity: sha512-2KY95ksYSaK7DMBWQn6dQz3kqAf3BB64y2udeG+hv4KfSOb9qwcYQstTJc1KCbsix+wLZWZYN8t7nwX3GOBLRw==}
+ engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0}
+
+ jest-get-type@29.6.3:
+ resolution: {integrity: sha512-zrteXnqYxfQh7l5FHyL38jL39di8H8rHoecLH3JNxH3BwOrBsNeabdap5e0I23lD4HHI8W5VFBZqG4Eaq5LNcw==}
+ engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
+
+ jest-haste-map@29.7.0:
+ resolution: {integrity: sha512-fP8u2pyfqx0K1rGn1R9pyE0/KTn+G7PxktWidOBTqFPLYX0b9ksaMFkhK5vrS3DVun09pckLdlx90QthlW7AmA==}
+ engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
+
+ jest-leak-detector@29.7.0:
+ resolution: {integrity: sha512-kYA8IJcSYtST2BY9I+SMC32nDpBT3J2NvWJx8+JCuCdl/CR1I4EKUJROiP8XtCcxqgTTBGJNdbB1A8XRKbTetw==}
+ engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
+
+ jest-matcher-utils@27.5.1:
+ resolution: {integrity: sha512-z2uTx/T6LBaCoNWNFWwChLBKYxTMcGBRjAt+2SbP929/Fflb9aa5LGma654Rz8z9HLxsrUaYzxE9T/EFIL/PAw==}
+ engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0}
+
+ jest-matcher-utils@29.7.0:
+ resolution: {integrity: sha512-sBkD+Xi9DtcChsI3L3u0+N0opgPYnCRPtGcQYrgXmR+hmt/fYfWAL0xRXYU8eWOdfuLgBe0YCW3AFtnRLagq/g==}
+ engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
+
+ jest-message-util@29.7.0:
+ resolution: {integrity: sha512-GBEV4GRADeP+qtB2+6u61stea8mGcOT4mCtrYISZwfu9/ISHFJ/5zOMXYbpBE9RsS5+Gb63DW4FgmnKJ79Kf6w==}
+ engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
+
+ jest-mock@29.7.0:
+ resolution: {integrity: sha512-ITOMZn+UkYS4ZFh83xYAOzWStloNzJFO2s8DWrE4lhtGD+AorgnbkiKERe4wQVBydIGPx059g6riW5Btp6Llnw==}
+ engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
+
+ jest-pnp-resolver@1.2.3:
+ resolution: {integrity: sha512-+3NpwQEnRoIBtx4fyhblQDPgJI0H1IEIkX7ShLUjPGA7TtUTvI1oiKi3SR4oBR0hQhQR80l4WAe5RrXBwWMA8w==}
+ engines: {node: '>=6'}
+ peerDependencies:
+ jest-resolve: '*'
+ peerDependenciesMeta:
+ jest-resolve:
+ optional: true
+
+ jest-regex-util@29.6.3:
+ resolution: {integrity: sha512-KJJBsRCyyLNWCNBOvZyRDnAIfUiRJ8v+hOBQYGn8gDyF3UegwiP4gwRR3/SDa42g1YbVycTidUF3rKjyLFDWbg==}
+ engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
+
+ jest-resolve-dependencies@29.7.0:
+ resolution: {integrity: sha512-un0zD/6qxJ+S0et7WxeI3H5XSe9lTBBR7bOHCHXkKR6luG5mwDDlIzVQ0V5cZCuoTgEdcdwzTghYkTWfubi+nA==}
+ engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
+
+ jest-resolve@29.7.0:
+ resolution: {integrity: sha512-IOVhZSrg+UvVAshDSDtHyFCCBUl/Q3AAJv8iZ6ZjnZ74xzvwuzLXid9IIIPgTnY62SJjfuupMKZsZQRsCvxEgA==}
+ engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
+
+ jest-runner@29.7.0:
+ resolution: {integrity: sha512-fsc4N6cPCAahybGBfTRcq5wFR6fpLznMg47sY5aDpsoejOcVYFb07AHuSnR0liMcPTgBsA3ZJL6kFOjPdoNipQ==}
+ engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
+
+ jest-runtime@29.7.0:
+ resolution: {integrity: sha512-gUnLjgwdGqW7B4LvOIkbKs9WGbn+QLqRQQ9juC6HndeDiezIwhDP+mhMwHWCEcfQ5RUXa6OPnFF8BJh5xegwwQ==}
+ engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
+
+ jest-snapshot@29.7.0:
+ resolution: {integrity: sha512-Rm0BMWtxBcioHr1/OX5YCP8Uov4riHvKPknOGs804Zg9JGZgmIBkbtlxJC/7Z4msKYVbIJtfU+tKb8xlYNfdkw==}
+ engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
+
+ jest-util@29.7.0:
+ resolution: {integrity: sha512-z6EbKajIpqGKU56y5KBUgy1dt1ihhQJgWzUlZHArA/+X2ad7Cb5iF+AK1EWVL/Bo7Rz9uurpqw6SiBCefUbCGA==}
+ engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
+
+ jest-validate@29.7.0:
+ resolution: {integrity: sha512-ZB7wHqaRGVw/9hST/OuFUReG7M8vKeq0/J2egIGLdvjHCmYqGARhzXmtgi+gVeZ5uXFF219aOc3Ls2yLg27tkw==}
+ engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
+
+ jest-watcher@29.7.0:
+ resolution: {integrity: sha512-49Fg7WXkU3Vl2h6LbLtMQ/HyB6rXSIX7SqvBLQmssRBGN9I0PNvPmAmCWSOY6SOvrjhI/F7/bGAv9RtnsPA03g==}
+ engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
+
+ jest-worker@29.7.0:
+ resolution: {integrity: sha512-eIz2msL/EzL9UFTFFx7jBTkeZfku0yUAyZZZmJ93H2TYEiroIx2PQjEXcwYtYl8zXCxb+PAmA2hLIt/6ZEkPHw==}
+ engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
+
+ jest@29.7.0:
+ resolution: {integrity: sha512-NIy3oAFp9shda19hy4HK0HRTWKtPJmGdnvywu01nOqNC2vZg+Z+fvJDxpMQA88eb2I9EcafcdjYgsDthnYTvGw==}
+ engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
+ hasBin: true
+ peerDependencies:
+ node-notifier: ^8.0.1 || ^9.0.0 || ^10.0.0
+ peerDependenciesMeta:
+ node-notifier:
+ optional: true
+
+ jju@1.4.0:
+ resolution: {integrity: sha512-8wb9Yw966OSxApiCt0K3yNJL8pnNeIv+OEq2YMidz4FKP6nonSRoOXc80iXY4JaN2FC11B9qsNmDsm+ZOfMROA==}
+
+ joi@17.13.3:
+ resolution: {integrity: sha512-otDA4ldcIx+ZXsKHWmp0YizCweVRZG96J10b0FevjfuncLO1oX59THoAmHkNubYJ+9gWsYsp5k8v4ib6oDv1fA==}
+
+ jose@2.0.7:
+ resolution: {integrity: sha512-5hFWIigKqC+e/lRyQhfnirrAqUdIPMB7SJRqflJaO29dW7q5DFvH1XCSTmv6PQ6pb++0k6MJlLRoS0Wv4s38Wg==}
+ engines: {node: '>=10.13.0 < 13 || >=13.7.0'}
+
+ jose@4.15.5:
+ resolution: {integrity: sha512-jc7BFxgKPKi94uOvEmzlSWFFe2+vASyXaKUpdQKatWAESU2MWjDfFf0fdfc83CDKcA5QecabZeNLyfhe3yKNkg==}
+
+ jose@5.9.6:
+ resolution: {integrity: sha512-AMlnetc9+CV9asI19zHmrgS/WYsWUwCn2R7RzlbJWD7F9eWYUTGyBmU9o6PxngtLGOiDGPRu+Uc4fhKzbpteZQ==}
+
+ js-base64@3.7.2:
+ resolution: {integrity: sha512-NnRs6dsyqUXejqk/yv2aiXlAvOs56sLkX6nUdeaNezI5LFFLlsZjOThmwnrcwh5ZZRwZlCMnVAY3CvhIhoVEKQ==}
+
+ js-base64@3.7.7:
+ resolution: {integrity: sha512-7rCnleh0z2CkXhH67J8K1Ytz0b2Y+yxTPL+/KOJoa20hfnVQ/3/T6W/KflYI4bRHRagNeXeU2bkNGI3v1oS/lw==}
+
+ js-md4@0.3.2:
+ resolution: {integrity: sha512-/GDnfQYsltsjRswQhN9fhv3EMw2sCpUdrdxyWDOUK7eyD++r3gRhzgiQgc/x4MAv2i1iuQ4lxO5mvqM3vj4bwA==}
+
+ js-sha256@0.9.0:
+ resolution: {integrity: sha512-sga3MHh9sgQN2+pJ9VYZ+1LPwXOxuBJBA5nrR5/ofPfuiJBE2hnjsaN8se8JznOmGLN2p49Pe5U/ttafcs/apA==}
+
+ js-tokens@3.0.2:
+ resolution: {integrity: sha512-RjTcuD4xjtthQkaWH7dFlH85L+QaVtSoOyGdZ3g6HFhS9dFNDfLyqgm2NFe2X6cQpeFmt0452FJjFG5UameExg==}
+
+ js-tokens@4.0.0:
+ resolution: {integrity: sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==}
+
+ js-tokens@8.0.3:
+ resolution: {integrity: sha512-UfJMcSJc+SEXEl9lH/VLHSZbThQyLpw1vLO1Lb+j4RWDvG3N2f7yj3PVQA3cmkTBNldJ9eFnM+xEXxHIXrYiJw==}
+
+ js-tokens@9.0.1:
+ resolution: {integrity: sha512-mxa9E9ITFOt0ban3j6L5MpjwegGz6lBQmM1IJkWeBZGcMxto50+eWdjC/52xDbS2vy0k7vIMK0Fe2wfL9OQSpQ==}
+
+ js-yaml@3.14.1:
+ resolution: {integrity: sha512-okMH7OXXJ7YrN9Ok3/SXrnu4iX9yOk+25nqX4imS2npuvTYDmo/QEZoqwZkYaIDk3jVvBOTOIEgEhaLOynBS9g==}
+ hasBin: true
+
+ js-yaml@4.1.0:
+ resolution: {integrity: sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==}
+ hasBin: true
+
+ js2xmlparser@4.0.2:
+ resolution: {integrity: sha512-6n4D8gLlLf1n5mNLQPRfViYzu9RATblzPEtm1SthMX1Pjao0r9YI9nw7ZIfRxQMERS87mcswrg+r/OYrPRX6jA==}
+
+ js2xmlparser@5.0.0:
+ resolution: {integrity: sha512-ckXs0Fzd6icWurbeAXuqo+3Mhq2m8pOPygsQjTPh8K5UWgKaUgDSHrdDxAfexmT11xvBKOQ6sgYwPkYc5RW/bg==}
+
+ jsbi@4.3.0:
+ resolution: {integrity: sha512-SnZNcinB4RIcnEyZqFPdGPVgrg2AcnykiBy0sHVJQKHYeaLUvi3Exj+iaPpLnFVkDPZIV4U0yvgC9/R4uEAZ9g==}
+
+ jsbn@0.1.1:
+ resolution: {integrity: sha512-UVU9dibq2JcFWxQPA6KCqj5O42VOmAY3zQUfEKxU0KpTGXwNoCjkX1e13eHNvw/xPynt6pU0rZ1htjWTNTSXsg==}
+
+ jsbn@1.1.0:
+ resolution: {integrity: sha512-4bYVV3aAMtDTTu4+xsDYa6sy9GyJ69/amsu9sYF2zqjiEoZA5xJi3BrfX3uY+/IekIu7MwdObdbDWpoZdBv3/A==}
+
+ jsdoc@4.0.4:
+ resolution: {integrity: sha512-zeFezwyXeG4syyYHbvh1A967IAqq/67yXtXvuL5wnqCkFZe8I0vKfm+EO+YEvLguo6w9CDUbrAXVtJSHh2E8rw==}
+ engines: {node: '>=12.0.0'}
+ hasBin: true
+
+ jsesc@3.0.2:
+ resolution: {integrity: sha512-xKqzzWXDttJuOcawBt4KnKHHIf5oQ/Cxax+0PWFG+DFDgHNAdi+TXECADI+RYiFUMmx8792xsMbbgXj4CwnP4g==}
+ engines: {node: '>=6'}
+ hasBin: true
+
+ json-2-csv@3.20.0:
+ resolution: {integrity: sha512-IbqUB+yaycVNB/q2fiY5kyRjy5kRiEXqvNvGlxM5L0Bfi0RdvklVHc4t9MfeYF1GsZVpZWDBs9LdWmSjsQ8jvg==}
+ engines: {node: '>= 12'}
+
+ json-bigint@1.0.0:
+ resolution: {integrity: sha512-SiPv/8VpZuWbvLSMtTDU8hEfrZWg/mH/nV/b4o0CYbSxu1UIQPLdwKOCIyLQX+VIPO5vrLX3i8qtqFyhdPSUSQ==}
+
+ json-buffer@3.0.1:
+ resolution: {integrity: sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ==}
+
+ json-parse-better-errors@1.0.2:
+ resolution: {integrity: sha512-mrqyZKfX5EhL7hvqcV6WG1yYjnjeuYDzDhhcAAUrq8Po85NBQBJP+ZDUT75qZQ98IkUoBqdkExkukOU7Ts2wrw==}
+
+ json-parse-even-better-errors@2.3.1:
+ resolution: {integrity: sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w==}
+
+ json-schema-compare@0.2.2:
+ resolution: {integrity: sha512-c4WYmDKyJXhs7WWvAWm3uIYnfyWFoIp+JEoX34rctVvEkMYCPGhXtvmFFXiffBbxfZsvQ0RNnV5H7GvDF5HCqQ==}
+
+ json-schema-merge-allof@0.8.1:
+ resolution: {integrity: sha512-CTUKmIlPJbsWfzRRnOXz+0MjIqvnleIXwFTzz+t9T86HnYX/Rozria6ZVGLktAU9e+NygNljveP+yxqtQp/Q4w==}
+ engines: {node: '>=12.0.0'}
+
+ json-schema-traverse@0.4.1:
+ resolution: {integrity: sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==}
+
+ json-schema-traverse@1.0.0:
+ resolution: {integrity: sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==}
+
+ json-schema@0.4.0:
+ resolution: {integrity: sha512-es94M3nTIfsEPisRafak+HDLfHXnKBhV3vU5eqPcS3flIWqcxJWgXHXiey3YrpaNsanY5ei1VoYEbOzijuq9BA==}
+
+ json-stable-stringify-without-jsonify@1.0.1:
+ resolution: {integrity: sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==}
+
+ json-stable-stringify@1.1.1:
+ resolution: {integrity: sha512-SU/971Kt5qVQfJpyDveVhQ/vya+5hvrjClFOcr8c0Fq5aODJjMwutrOfCU+eCnVD5gpx1Q3fEqkyom77zH1iIg==}
+ engines: {node: '>= 0.4'}
+
+ json-stringify-safe@5.0.1:
+ resolution: {integrity: sha512-ZClg6AaYvamvYEE82d3Iyd3vSSIjQ+odgjaTzRuO3s7toCdFKczob2i0zCh7JE8kWn17yvAWhUVxvqGwUalsRA==}
+
+ json-to-ast@2.1.0:
+ resolution: {integrity: sha512-W9Lq347r8tA1DfMvAGn9QNcgYm4Wm7Yc+k8e6vezpMnRT+NHbtlxgNBXRVjXe9YM6eTn6+p/MKOlV/aABJcSnQ==}
+ engines: {node: '>= 4'}
+
+ json2yaml@1.1.0:
+ resolution: {integrity: sha512-/xse+m0SlllfZahQrNOelmLrFNfeZv4QG0QKlvg7VsPSGIxpB3X+ggLkdffwmI1DdQ3o9XjZX+K+EOI1epdKgg==}
+ engines: {node: '>= 0.2.0'}
+ hasBin: true
+
+ json5@1.0.2:
+ resolution: {integrity: sha512-g1MWMLBiz8FKi1e4w0UyVL3w+iJceWAFBAaBnnGKOpNa5f8TLktkbre1+s6oICydWAm+HRUGTmI+//xv2hvXYA==}
+ hasBin: true
+
+ json5@2.2.3:
+ resolution: {integrity: sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==}
+ engines: {node: '>=6'}
+ hasBin: true
+
+ jsonc-eslint-parser@1.4.1:
+ resolution: {integrity: sha512-hXBrvsR1rdjmB2kQmUjf1rEIa+TqHBGMge8pwi++C+Si1ad7EjZrJcpgwym+QGK/pqTx+K7keFAtLlVNdLRJOg==}
+ engines: {node: '>=8.10.0'}
+
+ jsonfile@4.0.0:
+ resolution: {integrity: sha512-m6F1R3z8jjlf2imQHS2Qez5sjKWQzbuuhuJ/FKYFRZvPE3PuHcSMVZzfsLhGVOkfd20obL5SWEBew5ShlquNxg==}
+
+ jsonfile@6.1.0:
+ resolution: {integrity: sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==}
+
+ jsonify@0.0.1:
+ resolution: {integrity: sha512-2/Ki0GcmuqSrgFyelQq9M05y7PS0mEwuIzrf3f1fPqkVDVRvZrPZtVSMHxdgo8Aq0sxAOb/cr2aqqA3LeWHVPg==}
+
+ jsonpath@1.1.1:
+ resolution: {integrity: sha512-l6Cg7jRpixfbgoWgkrl77dgEj8RPvND0wMH6TwQmi9Qs4TFfS9u5cUFnbeKTwj5ga5Y3BTGGNI28k117LJ009w==}
+
+ jsonpointer@5.0.1:
+ resolution: {integrity: sha512-p/nXbhSEcu3pZRdkW1OfJhpsVtW1gd4Wa1fnQc9YLiTfAjn0312eMKimbdIQzuZl9aa9xUGaRlP9T/CJE/ditQ==}
+ engines: {node: '>=0.10.0'}
+
+ jsonwebtoken@8.5.1:
+ resolution: {integrity: sha512-XjwVfRS6jTMsqYs0EsuJ4LGxXV14zQybNd4L2r0UvbVnSF9Af8x7p5MzbJ90Ioz/9TI41/hTCvznF/loiSzn8w==}
+ engines: {node: '>=4', npm: '>=1.4.28'}
+
+ jsonwebtoken@9.0.0:
+ resolution: {integrity: sha512-tuGfYXxkQGDPnLJ7SibiQgVgeDgfbPq2k2ICcbgqW8WxWLBAxKQM/ZCu/IT8SOSwmaYl4dpTFCW5xZv7YbbWUw==}
+ engines: {node: '>=12', npm: '>=6'}
+
+ jsonwebtoken@9.0.2:
+ resolution: {integrity: sha512-PRp66vJ865SSqOlgqS8hujT5U4AOgMfhrwYIuIhfKaoSCZcirrmASQr8CX7cUg+RMih+hgznrjp99o+W4pJLHQ==}
+ engines: {node: '>=12', npm: '>=6'}
+
+ jsprim@1.4.2:
+ resolution: {integrity: sha512-P2bSOMAc/ciLz6DzgjVlGJP9+BrJWu5UDGK70C2iweC5QBIeFf0ZXRvGjEj2uYgrY2MkAAhsSWHDWlFtEroZWw==}
+ engines: {node: '>=0.6.0'}
+
+ jssha@3.3.1:
+ resolution: {integrity: sha512-VCMZj12FCFMQYcFLPRm/0lOBbLi8uM2BhXPTqw3U4YAfs4AZfiApOoBLoN8cQE60Z50m1MYMTQVCfgF/KaCVhQ==}
+
+ jsx-ast-utils@3.3.5:
+ resolution: {integrity: sha512-ZZow9HBI5O6EPgSJLUb8n2NKgmVWTwCvHGwFuJlMjvLFqlGG6pjirPhtdsseaLZjSibD8eegzmYpUZwoIlj2cQ==}
+ engines: {node: '>=4.0'}
+
+ junk@3.1.0:
+ resolution: {integrity: sha512-pBxcB3LFc8QVgdggvZWyeys+hnrNWg4OcZIU/1X59k5jQdLBlCsYGRQaz234SqoRLTCgMH00fY0xRJH+F9METQ==}
+ engines: {node: '>=8'}
+
+ just-camel-case@6.2.0:
+ resolution: {integrity: sha512-ICenRLXwkQYLk3UyvLQZ+uKuwFVJ3JHFYFn7F2782G2Mv2hW8WPePqgdhpnjGaqkYtSVWnyCESZhGXUmY3/bEg==}
+
+ just-kebab-case@4.2.0:
+ resolution: {integrity: sha512-p2BdO7o4BI+pMun3J+dhaOfYan5JsZrw9wjshRjkWY9+p+u+kKSMhNWYnot2yHDR9CSahZ9iT3dcqJ+V72qHMw==}
+
+ just-snake-case@3.2.0:
+ resolution: {integrity: sha512-iugHP9bSE0jOq3BzN0W0rdu/OOkFirPe8FtUw6v9y37UlbUDgJ1x4xiGNfUhI6mV9dc/paaifyiyn+F+mrm8gw==}
+
+ jwa@1.4.1:
+ resolution: {integrity: sha512-qiLX/xhEEFKUAJ6FiBMbes3w9ATzyk5W7Hvzpa/SLYdxNtng+gcurvrI7TbACjIXlsJyr05/S1oUhZrc63evQA==}
+
+ jwa@2.0.0:
+ resolution: {integrity: sha512-jrZ2Qx916EA+fq9cEAeCROWPTfCwi1IVHqT2tapuqLEVVDKFDENFw1oL+MwrTvH6msKxsd1YTDVw6uKEcsrLEA==}
+
+ jwks-rsa@2.1.5:
+ resolution: {integrity: sha512-IODtn1SwEm7n6GQZnQLY0oxKDrMh7n/jRH1MzE8mlxWMrh2NnMyOsXTebu8vJ1qCpmuTJcL4DdiE0E4h8jnwsA==}
+ engines: {node: '>=10 < 13 || >=14'}
+
+ jws@3.2.2:
+ resolution: {integrity: sha512-YHlZCB6lMTllWDtSPHz/ZXTsi8S00usEV6v1tjq8tOUZzw7DpSDWVXjXDre6ed1w/pd495ODpHZYSdkRTsa0HA==}
+
+ jws@4.0.0:
+ resolution: {integrity: sha512-KDncfTmOZoOMTFG4mBlG0qUIOlc03fmzH+ru6RgYVZhPkyiy/92Owlt/8UEN+a4TXR1FQetfIpJE8ApdvdVxTg==}
+
+ jwt-simple@0.5.6:
+ resolution: {integrity: sha512-40aUybvhH9t2h71ncA1/1SbtTNCVZHgsTsTgqPUxGWDmUDrXyDf2wMNQKEbdBjbf4AI+fQhbECNTV6lWxQKUzg==}
+ engines: {node: '>= 0.4.0'}
+
+ katex@0.12.0:
+ resolution: {integrity: sha512-y+8btoc/CK70XqcHqjxiGWBOeIL8upbS0peTPXTvgrh21n1RiWWcIpSWM+4uXq+IAgNh9YYQWdc7LVDPDAEEAg==}
+ hasBin: true
+
+ keyv@4.5.4:
+ resolution: {integrity: sha512-oxVHkHR/EJf2CNXnWxRLW6mg7JyCCUcG0DtEGmL2ctUo1PNTin1PUil+r/+4r5MpVgC/fn1kjsx7mjSujKqIpw==}
+
+ keyv@5.2.1:
+ resolution: {integrity: sha512-tpIgCaY02VCW2Pz0zAn4guyct+IeH6Mb5wZdOvpe4oqXeQOJO0C3Wo8fTnf7P3ZD83Vr9kghbkNmzG3lTOhy/A==}
+
+ kind-of@6.0.3:
+ resolution: {integrity: sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==}
+ engines: {node: '>=0.10.0'}
+
+ klaviyo-api@11.0.0:
+ resolution: {integrity: sha512-lzWNSZO962HECjCWKAylCwdvyClpilUBPJAW7J1Zk9H1qvbVvg/UaLow7iOORw6EzXsPa8YL8xNE4OTKGn1tjQ==}
+
+ klaw@3.0.0:
+ resolution: {integrity: sha512-0Fo5oir+O9jnXu5EefYbVK+mHMBeEVEy2cmctR1O1NECcCkPRreJKrS6Qt/j3KC2C148Dfo9i3pCmCMsdqGr0g==}
+
+ kleur@3.0.3:
+ resolution: {integrity: sha512-eTIzlVOSUR+JxdDFepEYcBMtZ9Qqdef+rnzWdRZuMbOywu5tO2w2N7rqjoANZ5k9vywhL6Br1VRjUIgTQx4E8w==}
+ engines: {node: '>=6'}
+
+ known-css-properties@0.34.0:
+ resolution: {integrity: sha512-tBECoUqNFbyAY4RrbqsBQqDFpGXAEbdD5QKr8kACx3+rnArmuuR22nKQWKazvp07N9yjTyDZaw/20UIH8tL9DQ==}
+
+ kolorist@1.8.0:
+ resolution: {integrity: sha512-Y+60/zizpJ3HRH8DCss+q95yr6145JXZo46OTpFvDZWLfRCE4qChOyk1b26nMaNpfHHgxagk9dXT5OP0Tfe+dQ==}
+
+ kuler@2.0.0:
+ resolution: {integrity: sha512-Xq9nH7KlWZmXAtodXDDRE7vs6DU1gTU8zYDHDiWLSip45Egwq3plLHzPn27NgvzL2r1LMPC1vdqh98sQxtqj4A==}
+
+ ky-universal@0.10.1:
+ resolution: {integrity: sha512-r8909k+ELKZAxhVA5c440x22hqw5XcMRwLRbgpPQk4JHy3/ddJnvzcnSo5Ww3HdKdNeS3Y8dBgcIYyVahMa46g==}
+ engines: {node: '>=14'}
+ peerDependencies:
+ ky: '>=0.26.0'
+ web-streams-polyfill: '>=3.0.1'
+ peerDependenciesMeta:
+ web-streams-polyfill:
+ optional: true
+
+ ky-universal@0.8.2:
+ resolution: {integrity: sha512-xe0JaOH9QeYxdyGLnzUOVGK4Z6FGvDVzcXFTdrYA1f33MZdEa45sUDaMBy98xQMcsd2XIBrTXRrRYnegcSdgVQ==}
+ engines: {node: '>=10.17'}
+ peerDependencies:
+ ky: '>=0.17.0'
+ web-streams-polyfill: '>=2.0.0'
+ peerDependenciesMeta:
+ web-streams-polyfill:
+ optional: true
+
+ ky@0.25.1:
+ resolution: {integrity: sha512-PjpCEWlIU7VpiMVrTwssahkYXX1by6NCT0fhTUX34F3DTinARlgMpriuroolugFPcMgpPWrOW4mTb984Qm1RXA==}
+ engines: {node: '>=10'}
+
+ ky@0.27.0:
+ resolution: {integrity: sha512-pgaBuB6wI9DdMSOZBVh2WkcbkAdEG5AUEWuNhtThu6FLIpDbzqzC/fSMmqr/j1wwQyW3SP3KGau7EbzWNkQ/yg==}
+ engines: {node: '>=12'}
+
+ language-subtag-registry@0.3.23:
+ resolution: {integrity: sha512-0K65Lea881pHotoGEa5gDlMxt3pctLi2RplBb7Ezh4rRdLEOtgi7n4EwK9lamnUCkKBqaeKRVebTq6BAxSkpXQ==}
+
+ language-tags@1.0.9:
+ resolution: {integrity: sha512-MbjN408fEndfiQXbFQ1vnd+1NoLDsnQW41410oQBXiyXDMYH5z505juWa4KUE1LqxRC7DgOgZDbKLxHIwm27hA==}
+ engines: {node: '>=0.10'}
+
+ lazystream@1.0.1:
+ resolution: {integrity: sha512-b94GiNHQNy6JNTrt5w6zNyffMrNkXZb3KTkCZJb2V1xaEGCk093vkZ2jk3tpaeP33/OiXC+WvK9AxUebnf5nbw==}
+ engines: {node: '>= 0.6.3'}
+
+ leac@0.6.0:
+ resolution: {integrity: sha512-y+SqErxb8h7nE/fiEX07jsbuhrpO9lL8eca7/Y1nuWV2moNlXhyd59iDGcRf6moVyDMbmTNzL40SUyrFU/yDpg==}
+
+ leven@3.1.0:
+ resolution: {integrity: sha512-qsda+H8jTaUaN/x5vzW2rzc+8Rw4TAQ/4KjB46IwK5VH+IlVeeeje/EoZRpiXvIqjFgK84QffqPztGI3VBLG1A==}
+ engines: {node: '>=6'}
+
+ levn@0.3.0:
+ resolution: {integrity: sha512-0OO4y2iOHix2W6ujICbKIaEQXvFQHue65vUG3pb5EUomzPI90z9hsA1VsO/dbIIpC53J8gxM9Q4Oho0jrCM/yA==}
+ engines: {node: '>= 0.8.0'}
+
+ levn@0.4.1:
+ resolution: {integrity: sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==}
+ engines: {node: '>= 0.8.0'}
+
+ li@1.3.0:
+ resolution: {integrity: sha512-z34TU6GlMram52Tss5mt1m//ifRIpKH5Dqm7yUVOdHI+BQCs9qGPHFaCUTIzsWX7edN30aa2WrPwR7IO10FHaw==}
+
+ libbase64@1.2.1:
+ resolution: {integrity: sha512-l+nePcPbIG1fNlqMzrh68MLkX/gTxk/+vdvAb388Ssi7UuUN31MI44w4Yf33mM3Cm4xDfw48mdf3rkdHszLNew==}
+
+ libbase64@1.3.0:
+ resolution: {integrity: sha512-GgOXd0Eo6phYgh0DJtjQ2tO8dc0IVINtZJeARPeiIJqge+HdsWSuaDTe8ztQ7j/cONByDZ3zeB325AHiv5O0dg==}
+
+ libmime@5.2.0:
+ resolution: {integrity: sha512-X2U5Wx0YmK0rXFbk67ASMeqYIkZ6E5vY7pNWRKtnNzqjvdYYG8xtPDpCnuUEnPU9vlgNev+JoSrcaKSUaNvfsw==}
+
+ libmime@5.3.5:
+ resolution: {integrity: sha512-nSlR1yRZ43L3cZCiWEw7ali3jY29Hz9CQQ96Oy+sSspYnIP5N54ucOPHqooBsXzwrX1pwn13VUE05q4WmzfaLg==}
+
+ libqp@2.0.1:
+ resolution: {integrity: sha512-Ka0eC5LkF3IPNQHJmYBWljJsw0UvM6j+QdKRbWyCdTmYwvIDE6a7bCm0UkTAL/K+3KXK5qXT/ClcInU01OpdLg==}
+
+ libqp@2.1.0:
+ resolution: {integrity: sha512-O6O6/fsG5jiUVbvdgT7YX3xY3uIadR6wEZ7+vy9u7PKHAlSEB6blvC1o5pHBjgsi95Uo0aiBBdkyFecj6jtb7A==}
+
+ lie@3.1.1:
+ resolution: {integrity: sha512-RiNhHysUjhrDQntfYSfY4MU24coXXdEOgw9WGcKHNeEwffDYbF//u87M1EWaMGzuFoSbqW0C9C6lEEhDOAswfw==}
+
+ lilconfig@2.0.5:
+ resolution: {integrity: sha512-xaYmXZtTHPAw5m+xLN8ab9C+3a8YmV3asNSPOATITbtwrfbwaLJj8h66H1WMIpALCkqsIzK3h7oQ+PdX+LQ9Eg==}
+ engines: {node: '>=10'}
+
+ limiter@1.1.5:
+ resolution: {integrity: sha512-FWWMIEOxz3GwUI4Ts/IvgVy6LPvoMPgjMdQ185nN6psJyBJ4yOpzqm695/h5umdLJg2vW3GR5iG11MAkR2AzJA==}
+
+ line-counter@1.1.0:
+ resolution: {integrity: sha512-6bmXJG/pOX5HBb2aIJZrI9CALBgY1VMbS0GPuXfJaT13UEfee/2xxPCsOOJdXLl3KPRyBf2/D+cjiG8hU9S7LA==}
+
+ lines-and-columns@1.2.4:
+ resolution: {integrity: sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==}
+
+ linkedom@0.14.26:
+ resolution: {integrity: sha512-mK6TrydfFA7phrnp+1j57ycBwFI5bGSW6YXlw9acHoqF+mP/y+FooEYYyniOt5Ot57FSKB3iwmnuQ1UUyNLm5A==}
+
+ linkify-it@5.0.0:
+ resolution: {integrity: sha512-5aHCbzQRADcdP+ATqnDuhhJ/MRIqDkZX5pyjFHRRysS8vZ5AbqGEoFIb6pYHPZ+L/OC2Lc+xT8uHVVR5CAK/wQ==}
+
+ lint-staged@12.5.0:
+ resolution: {integrity: sha512-BKLUjWDsKquV/JuIcoQW4MSAI3ggwEImF1+sB4zaKvyVx1wBk3FsG7UK9bpnmBTN1pm7EH2BBcMwINJzCRv12g==}
+ engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0}
+ hasBin: true
+
+ listr2@4.0.5:
+ resolution: {integrity: sha512-juGHV1doQdpNT3GSTs9IUN43QJb7KHdF9uqg7Vufs/tG9VTzpFphqF4pm/ICdAABGQxsyNn9CiYA3StkI6jpwA==}
+ engines: {node: '>=12'}
+ peerDependencies:
+ enquirer: '>= 2.3.0 < 3'
+ peerDependenciesMeta:
+ enquirer:
+ optional: true
+
+ livekit-server-sdk@2.8.1:
+ resolution: {integrity: sha512-l8egXU10jPuRJM2Df9Gk/KPEk6tBV0JEGG19cD5QeQtyIMgqULCCd/5yyG2FRvcWRf7pEyZZMXi63zDn7uaKHQ==}
+ engines: {node: '>=19'}
+
+ load-module@4.2.1:
+ resolution: {integrity: sha512-Sbfg6R4LjvyThJpqUoADHMjyoI2+cL4msbCQeZ9kkY/CqP/TT2938eftKm7x4I2gd4/A+DEe6nePkbfWYbXwSw==}
+ engines: {node: '>=12.17'}
+
+ loader-utils@1.4.2:
+ resolution: {integrity: sha512-I5d00Pd/jwMD2QCduo657+YM/6L3KZu++pmX9VFncxaxvHcru9jx1lBaFft+r4Mt2jK0Yhp41XlRAihzPxHNCg==}
+ engines: {node: '>=4.0.0'}
+
+ local-pkg@0.5.1:
+ resolution: {integrity: sha512-9rrA30MRRP3gBD3HTGnC6cDFpaE1kVDWxWgqWJUN0RvDNAo+Nz/9GxB+nHOH0ifbVFy0hSA1V6vFDvnx54lTEQ==}
+ engines: {node: '>=14'}
+
+ localforage@1.10.0:
+ resolution: {integrity: sha512-14/H1aX7hzBBmmh7sGPd+AOMkkIrHM3Z1PAyGgZigA1H1p5O5ANnMyWzvpAETtG68/dC4pC0ncy3+PPGzXZHPg==}
+
+ locate-path@5.0.0:
+ resolution: {integrity: sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==}
+ engines: {node: '>=8'}
+
+ locate-path@6.0.0:
+ resolution: {integrity: sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==}
+ engines: {node: '>=10'}
+
+ locate-path@7.2.0:
+ resolution: {integrity: sha512-gvVijfZvn7R+2qyPX8mAuKcFGDf6Nc61GdvGafQsHL0sBIxfKzA+usWn4GFC/bk+QdwPUD4kWFJLhElipq+0VA==}
+ engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0}
+
+ lodash-core@4.17.11:
+ resolution: {integrity: sha512-8ilprNE67U1REh0wQHL0z37qXdsxuFXjvxehg79Mh/MQgNJ+C1muXtysSKpt9sCxXZUSiwifEC82Vtzf2GSSKQ==}
+
+ lodash-es@4.17.21:
+ resolution: {integrity: sha512-mKnC+QJ9pWVzv+C4/U3rRsHapFfHvQFoFB92e52xeyGMcX6/OlIl78je1u8vePzYZSkkogMPJ2yjxxsb89cxyw==}
+
+ lodash.assign@4.2.0:
+ resolution: {integrity: sha512-hFuH8TY+Yji7Eja3mGiuAxBqLagejScbG8GbG0j6o9vzn0YL14My+ktnqtZgFTosKymC9/44wP6s7xyuLfnClw==}
+
+ lodash.camelcase@4.3.0:
+ resolution: {integrity: sha512-TwuEnCnxbc3rAvhf/LbG7tJUDzhqXyFnv3dtzLOPgCG/hODL7WFnsbwktkD7yUV0RrreP/l1PALq/YSg6VvjlA==}
+
+ lodash.chunk@4.2.0:
+ resolution: {integrity: sha512-ZzydJKfUHJwHa+hF5X66zLFCBrWn5GeF28OHEr4WVWtNDXlQ/IjWKPBiikqKo2ne0+v6JgCgJ0GzJp8k8bHC7w==}
+
+ lodash.clonedeep@4.5.0:
+ resolution: {integrity: sha512-H5ZhCF25riFd9uB5UCkVKo61m3S/xZk1x4wA6yp/L3RFP6Z/eHH1ymQcGLo7J3GMPfm0V/7m1tryHuGVxpqEBQ==}
+
+ lodash.debounce@4.0.8:
+ resolution: {integrity: sha512-FT1yDzDYEoYWhnSGnpE/4Kj1fLZkDFyqRb7fNt6FdYOSxlUWAtp42Eh6Wb0rGIv/m9Bgo7x4GhQbm5Ys4SG5ow==}
+
+ lodash.defaults@4.2.0:
+ resolution: {integrity: sha512-qjxPLHd3r5DnsdGacqOMU6pb/avJzdh9tFX2ymgoZE27BmjXrNy/y4LoaiTeAb+O3gL8AfpJGtqfX/ae2leYYQ==}
+
+ lodash.difference@4.5.0:
+ resolution: {integrity: sha512-dS2j+W26TQ7taQBGN8Lbbq04ssV3emRw4NY58WErlTO29pIqS0HmoT5aJ9+TUQ1N3G+JOZSji4eugsWwGp9yPA==}
+
+ lodash.flatmap@4.5.0:
+ resolution: {integrity: sha512-/OcpcAGWlrZyoHGeHh3cAoa6nGdX6QYtmzNP84Jqol6UEQQ2gIaU3H+0eICcjcKGl0/XF8LWOujNn9lffsnaOg==}
+
+ lodash.flatten@4.4.0:
+ resolution: {integrity: sha512-C5N2Z3DgnnKr0LOpv/hKCgKdb7ZZwafIrsesve6lmzvZIRZRGaZ/l6Q8+2W7NaT+ZwO3fFlSCzCzrDCFdJfZ4g==}
+
+ lodash.get@4.4.2:
+ resolution: {integrity: sha512-z+Uw/vLuy6gQe8cfaFWD7p0wVv8fJl3mbzXh33RS+0oW2wvUqiRXiQ69gLWSLpgB5/6sU+r6BlQR0MBILadqTQ==}
+
+ lodash.has@4.5.2:
+ resolution: {integrity: sha512-rnYUdIo6xRCJnQmbVFEwcxF144erlD+M3YcJUVesflU9paQaE8p+fJDcIQrlMYbxoANFL+AB9hZrzSBBk5PL+g==}
+
+ lodash.includes@4.3.0:
+ resolution: {integrity: sha512-W3Bx6mdkRTGtlJISOvVD/lbqjTlPPUDTMnlXZFnVwi9NKJ6tiAk6LVdlhZMm17VZisqhKcgzpO5Wz91PCt5b0w==}
+
+ lodash.isboolean@3.0.3:
+ resolution: {integrity: sha512-Bz5mupy2SVbPHURB98VAcw+aHh4vRV5IPNhILUCsOzRmsTmSQ17jIuqopAentWoehktxGd9e/hbIXq980/1QJg==}
+
+ lodash.isempty@4.4.0:
+ resolution: {integrity: sha512-oKMuF3xEeqDltrGMfDxAPGIVMSSRv8tbRSODbrs4KGsRRLEhrW8N8Rd4DRgB2+621hY8A8XwwrTVhXWpxFvMzg==}
+
+ lodash.isequal@4.5.0:
+ resolution: {integrity: sha512-pDo3lu8Jhfjqls6GkMgpahsF9kCyayhgykjyLMNFTKWrpVdAQtYyB4muAMWozBB4ig/dtWAmsMxLEI8wuz+DYQ==}
+
+ lodash.isinteger@4.0.4:
+ resolution: {integrity: sha512-DBwtEWN2caHQ9/imiNeEA5ys1JoRtRfY3d7V9wkqtbycnAmTvRRmbHKDV4a0EYc678/dia0jrte4tjYwVBaZUA==}
+
+ lodash.isnumber@3.0.3:
+ resolution: {integrity: sha512-QYqzpfwO3/CWf3XP+Z+tkQsfaLL/EnUlXWVkIk5FUPc4sBdTehEqZONuyRt2P67PXAk+NXmTBcc97zw9t1FQrw==}
+
+ lodash.isplainobject@4.0.6:
+ resolution: {integrity: sha512-oSXzaWypCMHkPC3NvBEaPHf0KsA5mvPrOPgQWDsbg8n7orZ290M0BmC/jgRZ4vcJ6DTAhjrsSYgdsW/F+MFOBA==}
+
+ lodash.isstring@4.0.1:
+ resolution: {integrity: sha512-0wJxfxH1wgO3GrbuP+dTTk7op+6L41QCXbGINEmD+ny/G/eCqGzxyCsh7159S+mgDDcoarnBw6PC1PS5+wUGgw==}
+
+ lodash.map@4.6.0:
+ resolution: {integrity: sha512-worNHGKLDetmcEYDvh2stPCrrQRkP20E4l0iIS7F8EvzMqBBi7ltvFN5m1HvTf1P7Jk1txKhvFcmYsCr8O2F1Q==}
+
+ lodash.maxby@4.6.0:
+ resolution: {integrity: sha512-QfTqQTwzmKxLy7VZlbx2M/ipWv8DCQ2F5BI/MRxLharOQ5V78yMSuB+JE+EuUM22txYfj09R2Q7hUlEYj7KdNg==}
+
+ lodash.memoize@4.1.2:
+ resolution: {integrity: sha512-t7j+NzmgnQzTAYXcsHYLgimltOV1MXHtlOWf6GjL9Kj8GK5FInw5JotxvbOs+IvV1/Dzo04/fCGfLVs7aXb4Ag==}
+
+ lodash.merge@4.6.2:
+ resolution: {integrity: sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==}
+
+ lodash.once@4.1.1:
+ resolution: {integrity: sha512-Sb487aTOCr9drQVL8pIxOzVhafOjZN9UU54hiN8PU3uAiSV7lx1yYNpbNmex2PK6dSJoNTSJUUswT651yww3Mg==}
+
+ lodash.pick@4.4.0:
+ resolution: {integrity: sha512-hXt6Ul/5yWjfklSGvLQl8vM//l3FtyHZeuelpzK6mm99pNvN9yTDruNZPEJZD1oWrqo+izBmB7oUfWgcCX7s4Q==}
+
+ lodash.pickby@4.6.0:
+ resolution: {integrity: sha512-AZV+GsS/6ckvPOVQPXSiFFacKvKB4kOQu6ynt9wz0F3LO4R9Ij4K1ddYsIytDpSgLz88JHd9P+oaLeej5/Sl7Q==}
+
+ lodash.snakecase@4.1.1:
+ resolution: {integrity: sha512-QZ1d4xoBHYUeuouhEq3lk3Uq7ldgyFXGBhg04+oRLnIz8o9T65Eh+8YdroUwn846zchkA9yDsDl5CVVaV2nqYw==}
+
+ lodash.sortby@4.7.0:
+ resolution: {integrity: sha512-HDWXG8isMntAyRF5vZ7xKuEvOhT4AhlRt/3czTSjvGUxjYCBVRQY48ViDHyfYz9VIoBkW4TMGQNapx+l3RUwdA==}
+
+ lodash.topath@4.5.2:
+ resolution: {integrity: sha512-1/W4dM+35DwvE/iEd1M9ekewOSTlpFekhw9mhAtrwjVqUr83/ilQiyAvmg4tVX7Unkcfl1KC+i9WdaT4B6aQcg==}
+
+ lodash.transform@4.6.0:
+ resolution: {integrity: sha512-LO37ZnhmBVx0GvOU/caQuipEh4GN82TcWv3yHlebGDgOxbxiwwzW5Pcx2AcvpIv2WmvmSMoC492yQFNhy/l/UQ==}
+
+ lodash.truncate@4.4.2:
+ resolution: {integrity: sha512-jttmRe7bRse52OsWIMDLaXxWqRAmtIUccAQ3garviCqJjafXOfNMO0yMfNpdD6zbGaTU0P5Nz7e7gAT6cKmJRw==}
+
+ lodash.union@4.6.0:
+ resolution: {integrity: sha512-c4pB2CdGrGdjMKYLA+XiRDO7Y0PRQbm/Gzg8qMj+QH+pFVAoTp5sBpO0odL3FjoPCGjK96p6qsP+yQoiLoOBcw==}
+
+ lodash.uniq@4.5.0:
+ resolution: {integrity: sha512-xfBaXQd9ryd9dlSDvnvI0lvxfLJlYAZzXomUYzLKtUeOQvOP5piqAWuGtrhWeqaXK9hhoM/iyJc5AV+XfsX3HQ==}
+
+ lodash.uniqby@4.7.0:
+ resolution: {integrity: sha512-e/zcLx6CSbmaEgFHCA7BnoQKyCtKMxnuWrJygbwPs/AIn+IMKl66L8/s+wBUn5LRw2pZx3bUHibiV1b6aTWIww==}
+
+ lodash@4.17.21:
+ resolution: {integrity: sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==}
+
+ log-symbols@4.1.0:
+ resolution: {integrity: sha512-8XPvpAA8uyhfteu8pIvQxpJZ7SYYdpUivZpGy6sFsBuKRY/7rQGavedeB8aK+Zkyq6upMFVL/9AW6vOYzfRyLg==}
+ engines: {node: '>=10'}
+
+ log-update@4.0.0:
+ resolution: {integrity: sha512-9fkkDevMefjg0mmzWFBW8YkFP91OrizzkW3diF7CpG+S2EYdy4+TVfGwz1zeF8x7hCx1ovSPTOE9Ngib74qqUg==}
+ engines: {node: '>=10'}
+
+ log4js@6.4.4:
+ resolution: {integrity: sha512-ncaWPsuw9Vl1CKA406hVnJLGQKy1OHx6buk8J4rE2lVW+NW5Y82G5/DIloO7NkqLOUtNPEANaWC1kZYVjXssPw==}
+ engines: {node: '>=8.0'}
+
+ logform@2.7.0:
+ resolution: {integrity: sha512-TFYA4jnP7PVbmlBIfhlSe+WKxs9dklXMTEGcBCIvLhE/Tn3H6Gk1norupVW7m5Cnd4bLcr08AytbyV/xj7f/kQ==}
+ engines: {node: '>= 12.0.0'}
+
+ long@4.0.0:
+ resolution: {integrity: sha512-XsP+KhQif4bjX1kbuSiySJFNAehNxgLb6hPRGJ9QsUr8ajHkuXGdrHmFUTUUXhDwVX2R5bY4JNZEwbUiMhV+MA==}
+
+ long@5.2.3:
+ resolution: {integrity: sha512-lcHwpNoggQTObv5apGNCTdJrO69eHOZMi4BNC+rTLER8iHAqGrUVeLh/irVIM7zTw2bOXA8T6uNPeujwOLg/2Q==}
+
+ longest-streak@2.0.4:
+ resolution: {integrity: sha512-vM6rUVCVUJJt33bnmHiZEvr7wPT78ztX7rojL+LW51bHtLh6HTjx84LA5W4+oa6aKEJA7jJu5LR6vQRBpA5DVg==}
+
+ longest-streak@3.1.0:
+ resolution: {integrity: sha512-9Ri+o0JYgehTaVBBDoMqIl8GXtbWg711O3srftcHhZ0dqnETqLaoIK0x17fUw9rFSlK/0NlsKe0Ahhyl5pXE2g==}
+
+ loose-envify@1.4.0:
+ resolution: {integrity: sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==}
+ hasBin: true
+
+ lowercase-keys@1.0.1:
+ resolution: {integrity: sha512-G2Lj61tXDnVFFOi8VZds+SoQjtQC3dgokKdDG2mTm1tx4m50NUHBOZSBwQQHyy0V12A0JTG4icfZQH+xPyh8VA==}
+ engines: {node: '>=0.10.0'}
+
+ lowercase-keys@2.0.0:
+ resolution: {integrity: sha512-tqNXrS78oMOE73NMxK4EMLQsQowWf8jKooH9g7xPavRT706R6bkQJ6DY2Te7QukaZsulxa30wQ7bk0pm4XiHmA==}
+ engines: {node: '>=8'}
+
+ lowercase-keys@3.0.0:
+ resolution: {integrity: sha512-ozCC6gdQ+glXOQsveKD0YsDy8DSQFjDTz4zyzEHNV5+JP5D62LmfDZ6o1cycFx9ouG940M5dE8C8CTewdj2YWQ==}
+ engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0}
+
+ lru-cache@2.5.0:
+ resolution: {integrity: sha512-dVmQmXPBlTgFw77hm60ud//l2bCuDKkqC2on1EBoM7s9Urm9IQDrnujwZ93NFnAq0dVZ0HBXTS7PwEG+YE7+EQ==}
+
+ lru-cache@5.1.1:
+ resolution: {integrity: sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==}
+
+ lru-cache@6.0.0:
+ resolution: {integrity: sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==}
+ engines: {node: '>=10'}
+
+ lru-cache@7.18.3:
+ resolution: {integrity: sha512-jumlc0BIUrS3qJGgIkWZsyfAM7NCWiBcCDhnd+3NNM5KbBmLTgHVfWBcg6W+rLUsIpzpERPsvwUP7CckAQSOoA==}
+ engines: {node: '>=12'}
+
+ lru-memoizer@2.3.0:
+ resolution: {integrity: sha512-GXn7gyHAMhO13WSKrIiNfztwxodVsP8IoZ3XfrJV4yH2x0/OeTO/FIaAHTY5YekdGgW94njfuKmyyt1E0mR6Ug==}
+
+ lru-queue@0.1.0:
+ resolution: {integrity: sha512-BpdYkt9EvGl8OfWHDQPISVpcl5xZthb+XPsbELj5AQXxIC8IriDZIQYjBJPEm5rS420sjZ0TLEzRcq5KdBhYrQ==}
+
+ lru.min@1.1.1:
+ resolution: {integrity: sha512-FbAj6lXil6t8z4z3j0E5mfRlPzxkySotzUHwRXjlpRh10vc6AI6WN62ehZj82VG7M20rqogJ0GLwar2Xa05a8Q==}
+ engines: {bun: '>=1.0.0', deno: '>=1.30.0', node: '>=8.0.0'}
+
+ luxon@3.5.0:
+ resolution: {integrity: sha512-rh+Zjr6DNfUYR3bPwJEnuwDdqMbxZW7LOQfUN4B54+Cl+0o5zaU9RJ6bcidfDtC1cWCZXQ+nvX8bf6bAji37QQ==}
+ engines: {node: '>=12'}
+
+ magic-string@0.30.13:
+ resolution: {integrity: sha512-8rYBO+MsWkgjDSOvLomYnzhdwEG51olQ4zL5KXnNJWV5MNmrb4rTZdrtkhxjnD/QyZUqR/Z/XDsUs/4ej2nx0g==}
+
+ mailersend@2.3.0:
+ resolution: {integrity: sha512-pe498Ry7VaAb+oqcYqmPw1V7FlECG/mcqahQ3SiK54en4ZkyRwjyxoQwA9VU4s3npB+I44LlQGUudObZQe4/jA==}
+
+ mailgun.js@3.7.3:
+ resolution: {integrity: sha512-DHP9v6dNPRM2puOx4HVJVjQKWzgzpQ5Fh1ICW632qaDVgd/QqGRhOjCoHe12JJqrFkhgDvXBhENYeZDHYdkJHQ==}
+
+ mailparser-mit@1.0.0:
+ resolution: {integrity: sha512-sckRITNb3VCT1sQ275g47MAN786pQ5lU20bLY5f794dF/ARGzuVATQ64gO13FOw8jayjFT10e5ttsripKGGXcw==}
+
+ mailparser@3.7.1:
+ resolution: {integrity: sha512-RCnBhy5q8XtB3mXzxcAfT1huNqN93HTYYyL6XawlIKycfxM/rXPg9tXoZ7D46+SgCS1zxKzw+BayDQSvncSTTw==}
+
+ mailsplit@5.4.0:
+ resolution: {integrity: sha512-wnYxX5D5qymGIPYLwnp6h8n1+6P6vz/MJn5AzGjZ8pwICWssL+CCQjWBIToOVHASmATot4ktvlLo6CyLfOXWYA==}
+
+ make-dir@2.1.0:
+ resolution: {integrity: sha512-LS9X+dc8KLxXCb8dni79fLIIUA5VyZoyjSMCwTluaXA0o27cCK0bhXkpgw+sTXVpPy/lSO57ilRixqk0vDmtRA==}
+ engines: {node: '>=6'}
+
+ make-dir@3.1.0:
+ resolution: {integrity: sha512-g3FeP20LNwhALb/6Cz6Dd4F2ngze0jz7tbzrD2wAV+o9FeNHe4rL+yK2md0J/fiSf1sa1ADhXqi5+oVwOM/eGw==}
+ engines: {node: '>=8'}
+
+ make-dir@4.0.0:
+ resolution: {integrity: sha512-hXdUTZYIVOt1Ex//jAQi+wTZZpUpwBj/0QsOzqegb3rGMMeJiSEu5xLHnYfBrRV4RH2+OCSOO95Is/7x1WJ4bw==}
+ engines: {node: '>=10'}
+
+ make-error@1.3.6:
+ resolution: {integrity: sha512-s8UhlNe7vPKomQhC1qFelMokr/Sc3AgNbso3n74mVPA5LTZwkB9NlXf4XPamLxJE8h0gh73rM94xvwRT2CVInw==}
+
+ makeerror@1.0.12:
+ resolution: {integrity: sha512-JmqCvUhmt43madlpFzG4BQzG2Z3m6tvQDNKdClZnO3VbIudJYmxsT0FNJMeiB2+JTSlTQTSbU8QdesVmwJcmLg==}
+
+ map-obj@5.0.0:
+ resolution: {integrity: sha512-2L3MIgJynYrZ3TYMriLDLWocz15okFakV6J12HXvMXDHui2x/zgChzg1u9mFFGbbGWE+GsLpQByt4POb9Or+uA==}
+ engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0}
+
+ map-stream@0.1.0:
+ resolution: {integrity: sha512-CkYQrPYZfWnu/DAmVCpTSX/xHpKZ80eKh2lAkyA6AJTef6bW+6JpbQZN5rofum7da+SyN1bi5ctTm+lTfcCW3g==}
+
+ markdown-it-anchor@8.6.7:
+ resolution: {integrity: sha512-FlCHFwNnutLgVTflOYHPW2pPcl2AACqVzExlkGQNsi4CJgqOHN7YTgDd4LuhgN1BFO3TS0vLAruV1Td6dwWPJA==}
+ peerDependencies:
+ '@types/markdown-it': '*'
+ markdown-it: '*'
+
+ markdown-it@14.1.0:
+ resolution: {integrity: sha512-a54IwgWPaeBCAAsv13YgmALOF1elABB08FxO9i+r4VFk5Vl4pKokRPeX8u5TCgSsPi6ec1otfLjdOpVcgbpshg==}
+ hasBin: true
+
+ markdown-table@2.0.0:
+ resolution: {integrity: sha512-Ezda85ToJUBhM6WGaG6veasyym+Tbs3cMAw/ZhOPqXiYsr0jgocBV3j3nx+4lk47plLlIqjwuTm/ywVI+zjJ/A==}
+
+ marked@4.3.0:
+ resolution: {integrity: sha512-PRsaiG84bK+AMvxziE/lCFss8juXjNaWzVbN5tXAm4XjeaS9NAHhop+PjQxz2A9h8Q4M/xGmzP8vqNwy6JeK0A==}
+ engines: {node: '>= 12'}
+ hasBin: true
+
+ mathml-tag-names@2.1.3:
+ resolution: {integrity: sha512-APMBEanjybaPzUrfqU0IMU5I0AswKMH7k8OTLs0vvV4KZpExkTkY87nR/zpbuTPj+gARop7aGUbl11pnDfW6xg==}
+
+ md5.js@1.3.5:
+ resolution: {integrity: sha512-xitP+WxNPcTTOgnTJcrhM0xvdPepipPSf3I8EIpGKeFLjt3PlJLIDG3u8EX53ZIubkb+5U2+3rELYpEhHhzdkg==}
+
+ md5@2.3.0:
+ resolution: {integrity: sha512-T1GITYmFaKuO91vxyoQMFETst+O71VUPEU3ze5GNzDm0OWdP8v1ziTaAEPUr/3kLsY3Sftgz242A1SetQiDL7g==}
+
+ mdast-comment-marker@3.0.0:
+ resolution: {integrity: sha512-bt08sLmTNg00/UtVDiqZKocxqvQqqyQZAg1uaRuO/4ysXV5motg7RolF5o5yy/sY1rG0v2XgZEqFWho1+2UquA==}
+
+ mdast-util-find-and-replace@1.1.1:
+ resolution: {integrity: sha512-9cKl33Y21lyckGzpSmEQnIDjEfeeWelN5s1kUW1LwdB0Fkuq2u+4GdqcGEygYxJE8GVqCl0741bYXHgamfWAZA==}
+
+ mdast-util-from-markdown@0.8.5:
+ resolution: {integrity: sha512-2hkTXtYYnr+NubD/g6KGBS/0mFmBcifAsI0yIWRiRo0PjVs6SSOSOdtzbp6kSGnShDN6G5aWZpKQ2lWRy27mWQ==}
+
+ mdast-util-from-markdown@2.0.2:
+ resolution: {integrity: sha512-uZhTV/8NBuw0WHkPTrCqDOl0zVe1BIng5ZtHoDk49ME1qqcjYmmLmOf0gELgcRMxN4w2iuIeVso5/6QymSrgmA==}
+
+ mdast-util-gfm-autolink-literal@0.1.3:
+ resolution: {integrity: sha512-GjmLjWrXg1wqMIO9+ZsRik/s7PLwTaeCHVB7vRxUwLntZc8mzmTsLVr6HW1yLokcnhfURsn5zmSVdi3/xWWu1A==}
+
+ mdast-util-gfm-strikethrough@0.2.3:
+ resolution: {integrity: sha512-5OQLXpt6qdbttcDG/UxYY7Yjj3e8P7X16LzvpX8pIQPYJ/C2Z1qFGMmcw+1PZMUM3Z8wt8NRfYTvCni93mgsgA==}
+
+ mdast-util-gfm-table@0.1.6:
+ resolution: {integrity: sha512-j4yDxQ66AJSBwGkbpFEp9uG/LS1tZV3P33fN1gkyRB2LoRL+RR3f76m0HPHaby6F4Z5xr9Fv1URmATlRRUIpRQ==}
+
+ mdast-util-gfm-task-list-item@0.1.6:
+ resolution: {integrity: sha512-/d51FFIfPsSmCIRNp7E6pozM9z1GYPIkSy1urQ8s/o4TC22BZ7DqfHFWiqBD23bc7J3vV1Fc9O4QIHBlfuit8A==}
+
+ mdast-util-gfm@0.1.2:
+ resolution: {integrity: sha512-NNkhDx/qYcuOWB7xHUGWZYVXvjPFFd6afg6/e2g+SV4r9q5XUcCbV4Wfa3DLYIiD+xAEZc6K4MGaE/m0KDcPwQ==}
+
+ mdast-util-heading-style@3.0.0:
+ resolution: {integrity: sha512-tsUfM9Kj9msjlemA/38Z3pvraQay880E3zP2NgIthMoGcpU9bcPX9oSM6QC/+eFXGGB4ba+VCB1dKAPHB7Veug==}
+
+ mdast-util-math@0.1.2:
+ resolution: {integrity: sha512-fogAitds+wH+QRas78Yr1TwmQGN4cW/G2WRw5ePuNoJbBSPJCxIOCE8MTzHgWHVSpgkRaPQTgfzXRE1CrwWSlg==}
+
+ mdast-util-mdx-expression@2.0.1:
+ resolution: {integrity: sha512-J6f+9hUp+ldTZqKRSg7Vw5V6MqjATc+3E4gf3CFNcuZNWD8XdyI6zQ8GqH7f8169MM6P7hMBRDVGnn7oHB9kXQ==}
+
+ mdast-util-mdx-jsx@3.1.3:
+ resolution: {integrity: sha512-bfOjvNt+1AcbPLTFMFWY149nJz0OjmewJs3LQQ5pIyVGxP4CdOqNVJL6kTaM5c68p8q82Xv3nCyFfUnuEcH3UQ==}
+
+ mdast-util-mdxjs-esm@2.0.1:
+ resolution: {integrity: sha512-EcmOpxsZ96CvlP03NghtH1EsLtr0n9Tm4lPUJUBccV9RwUOneqSycg19n5HGzCf+10LozMRSObtVr3ee1WoHtg==}
+
+ mdast-util-phrasing@4.1.0:
+ resolution: {integrity: sha512-TqICwyvJJpBwvGAMZjj4J2n0X8QWp21b9l0o7eXyVJ25YNWYbJDVIyD1bZXE6WtV6RmKJVYmQAKWa0zWOABz2w==}
+
+ mdast-util-to-hast@13.2.0:
+ resolution: {integrity: sha512-QGYKEuUsYT9ykKBCMOEDLsU5JRObWQusAolFMeko/tYPufNkRffBAQjIE+99jbA87xv6FgmjLtwjh9wBWajwAA==}
+
+ mdast-util-to-markdown@0.6.5:
+ resolution: {integrity: sha512-XeV9sDE7ZlOQvs45C9UKMtfTcctcaj/pGwH8YLbMHoMOXNNCn2LsqVQOqrF1+/NU8lKDAqozme9SCXWyo9oAcQ==}
+
+ mdast-util-to-markdown@2.1.2:
+ resolution: {integrity: sha512-xj68wMTvGXVOKonmog6LwyJKrYXZPvlwabaryTjLh9LuvovB/KAH+kvi8Gjj+7rJjsFi23nkUxRQv1KqSroMqA==}
+
+ mdast-util-to-string@2.0.0:
+ resolution: {integrity: sha512-AW4DRS3QbBayY/jJmD8437V1Gombjf8RSOUCMFBuo5iHi58AGEgVCKQ+ezHkZZDpAQS75hcBMpLqjpJTjtUL7w==}
+
+ mdast-util-to-string@4.0.0:
+ resolution: {integrity: sha512-0H44vDimn51F0YwvxSJSm0eCDOJTRlmN0R1yBh4HLj9wiV1Dn0QoXGbvFAWj2hSItVTlCmBF1hqKlIyUBVFLPg==}
+
+ mdn-data@2.12.1:
+ resolution: {integrity: sha512-rsfnCbOHjqrhWxwt5/wtSLzpoKTzW7OXdT5lLOIH1OTYhWu9rRJveGq0sKvDZODABH7RX+uoR+DYcpFnq4Tf6Q==}
+
+ mdurl@2.0.0:
+ resolution: {integrity: sha512-Lf+9+2r+Tdp5wXDXC4PcIBjTDtq4UKjCPMQhKIuzpJNW0b96kVqSwW0bT7FhRSfmAiFYgP+SCRvdrDozfh0U5w==}
+
+ media-typer@0.3.0:
+ resolution: {integrity: sha1-hxDXrwqmJvj/+hzgAWhUUmMlV0g=}
+ engines: {node: '>= 0.6'}
+
+ memoize-one@6.0.0:
+ resolution: {integrity: sha512-rkpe71W0N0c0Xz6QD0eJETuWAJGnJ9afsl1srmwPrI+yBCkge5EycXXbYRyvL29zZVUWQCY7InPRCv3GDXuZNw==}
+
+ memoizee@0.4.17:
+ resolution: {integrity: sha512-DGqD7Hjpi/1or4F/aYAspXKNm5Yili0QDAFAY4QYvpqpgiY6+1jOfqpmByzjxbWd/T9mChbCArXAbDAsTm5oXA==}
+ engines: {node: '>=0.12'}
+
+ memory-pager@1.5.0:
+ resolution: {integrity: sha512-ZS4Bp4r/Zoeq6+NLJpP+0Zzm0pR8whtGPf1XExKLJBAczGMnSi3It14OiNCStjQjM6NU1okjQGSxgEZN8eBYKg==}
+
+ meow@12.1.1:
+ resolution: {integrity: sha512-BhXM0Au22RwUneMPwSCnyhTOizdWoIEPU9sp0Aqa1PnDMR5Wv2FGXYDjuzJEIX+Eo2Rb8xuYe5jrnm5QowQFkw==}
+ engines: {node: '>=16.10'}
+
+ meow@13.2.0:
+ resolution: {integrity: sha512-pxQJQzB6djGPXh08dacEloMFopsOqGVRKFPYvPOt9XDZ1HasbgDZA74CJGreSU4G3Ak7EFJGoiH2auq+yXISgA==}
+ engines: {node: '>=18'}
+
+ merge-options@3.0.4:
+ resolution: {integrity: sha512-2Sug1+knBjkaMsMgf1ctR1Ujx+Ayku4EdJN4Z+C2+JzoeF7A3OZ9KM2GY0CpQS51NR61LTurMJrRKPhSs3ZRTQ==}
+ engines: {node: '>=10'}
+
+ merge-stream@2.0.0:
+ resolution: {integrity: sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==}
+
+ merge2@1.4.1:
+ resolution: {integrity: sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==}
+ engines: {node: '>= 8'}
+
+ methods@1.1.2:
+ resolution: {integrity: sha512-iclAHeNqNm68zFtnZ0e+1L2yUIdvzNoauKU4WBA3VvH/vPFieF7qfRlwUZU+DA9P9bPXIS90ulxoUoCH23sV2w==}
+ engines: {node: '>= 0.6'}
+
+ micro-api-client@3.3.0:
+ resolution: {integrity: sha512-y0y6CUB9RLVsy3kfgayU28746QrNMpSm9O/AYGNsBgOkJr/X/Jk0VLGoO8Ude7Bpa8adywzF+MzXNZRFRsNPhg==}
+
+ micromark-core-commonmark@2.0.2:
+ resolution: {integrity: sha512-FKjQKbxd1cibWMM1P9N+H8TwlgGgSkWZMmfuVucLCHaYqeSvJ0hFeHsIa65pA2nYbes0f8LDHPMrd9X7Ujxg9w==}
+
+ micromark-extension-gfm-autolink-literal@0.5.7:
+ resolution: {integrity: sha512-ePiDGH0/lhcngCe8FtH4ARFoxKTUelMp4L7Gg2pujYD5CSMb9PbblnyL+AAMud/SNMyusbS2XDSiPIRcQoNFAw==}
+
+ micromark-extension-gfm-strikethrough@0.6.5:
+ resolution: {integrity: sha512-PpOKlgokpQRwUesRwWEp+fHjGGkZEejj83k9gU5iXCbDG+XBA92BqnRKYJdfqfkrRcZRgGuPuXb7DaK/DmxOhw==}
+
+ micromark-extension-gfm-table@0.4.3:
+ resolution: {integrity: sha512-hVGvESPq0fk6ALWtomcwmgLvH8ZSVpcPjzi0AjPclB9FsVRgMtGZkUcpE0zgjOCFAznKepF4z3hX8z6e3HODdA==}
+
+ micromark-extension-gfm-tagfilter@0.3.0:
+ resolution: {integrity: sha512-9GU0xBatryXifL//FJH+tAZ6i240xQuFrSL7mYi8f4oZSbc+NvXjkrHemeYP0+L4ZUT+Ptz3b95zhUZnMtoi/Q==}
+
+ micromark-extension-gfm-task-list-item@0.3.3:
+ resolution: {integrity: sha512-0zvM5iSLKrc/NQl84pZSjGo66aTGd57C1idmlWmE87lkMcXrTxg1uXa/nXomxJytoje9trP0NDLvw4bZ/Z/XCQ==}
+
+ micromark-extension-gfm@0.3.3:
+ resolution: {integrity: sha512-oVN4zv5/tAIA+l3GbMi7lWeYpJ14oQyJ3uEim20ktYFAcfX1x3LNlFGGlmrZHt7u9YlKExmyJdDGaTt6cMSR/A==}
+
+ micromark-extension-math@0.1.2:
+ resolution: {integrity: sha512-ZJXsT2eVPM8VTmcw0CPSDeyonOn9SziGK3Z+nkf9Vb6xMPeU+4JMEnO6vzDL10562Favw8Vste74f54rxJ/i6Q==}
+
+ micromark-factory-destination@2.0.1:
+ resolution: {integrity: sha512-Xe6rDdJlkmbFRExpTOmRj9N3MaWmbAgdpSrBQvCFqhezUn4AHqJHbaEnfbVYYiexVSs//tqOdY/DxhjdCiJnIA==}
+
+ micromark-factory-label@2.0.1:
+ resolution: {integrity: sha512-VFMekyQExqIW7xIChcXn4ok29YE3rnuyveW3wZQWWqF4Nv9Wk5rgJ99KzPvHjkmPXF93FXIbBp6YdW3t71/7Vg==}
+
+ micromark-factory-space@2.0.1:
+ resolution: {integrity: sha512-zRkxjtBxxLd2Sc0d+fbnEunsTj46SWXgXciZmHq0kDYGnck/ZSGj9/wULTV95uoeYiK5hRXP2mJ98Uo4cq/LQg==}
+
+ micromark-factory-title@2.0.1:
+ resolution: {integrity: sha512-5bZ+3CjhAd9eChYTHsjy6TGxpOFSKgKKJPJxr293jTbfry2KDoWkhBb6TcPVB4NmzaPhMs1Frm9AZH7OD4Cjzw==}
+
+ micromark-factory-whitespace@2.0.1:
+ resolution: {integrity: sha512-Ob0nuZ3PKt/n0hORHyvoD9uZhr+Za8sFoP+OnMcnWK5lngSzALgQYKMr9RJVOWLqQYuyn6ulqGWSXdwf6F80lQ==}
+
+ micromark-util-character@2.1.1:
+ resolution: {integrity: sha512-wv8tdUTJ3thSFFFJKtpYKOYiGP2+v96Hvk4Tu8KpCAsTMs6yi+nVmGh1syvSCsaxz45J6Jbw+9DD6g97+NV67Q==}
+
+ micromark-util-chunked@2.0.1:
+ resolution: {integrity: sha512-QUNFEOPELfmvv+4xiNg2sRYeS/P84pTW0TCgP5zc9FpXetHY0ab7SxKyAQCNCc1eK0459uoLI1y5oO5Vc1dbhA==}
+
+ micromark-util-classify-character@2.0.1:
+ resolution: {integrity: sha512-K0kHzM6afW/MbeWYWLjoHQv1sgg2Q9EccHEDzSkxiP/EaagNzCm7T/WMKZ3rjMbvIpvBiZgwR3dKMygtA4mG1Q==}
+
+ micromark-util-combine-extensions@2.0.1:
+ resolution: {integrity: sha512-OnAnH8Ujmy59JcyZw8JSbK9cGpdVY44NKgSM7E9Eh7DiLS2E9RNQf0dONaGDzEG9yjEl5hcqeIsj4hfRkLH/Bg==}
+
+ micromark-util-decode-numeric-character-reference@2.0.2:
+ resolution: {integrity: sha512-ccUbYk6CwVdkmCQMyr64dXz42EfHGkPQlBj5p7YVGzq8I7CtjXZJrubAYezf7Rp+bjPseiROqe7G6foFd+lEuw==}
+
+ micromark-util-decode-string@2.0.1:
+ resolution: {integrity: sha512-nDV/77Fj6eH1ynwscYTOsbK7rR//Uj0bZXBwJZRfaLEJ1iGBR6kIfNmlNqaqJf649EP0F3NWNdeJi03elllNUQ==}
+
+ micromark-util-encode@2.0.1:
+ resolution: {integrity: sha512-c3cVx2y4KqUnwopcO9b/SCdo2O67LwJJ/UyqGfbigahfegL9myoEFoDYZgkT7f36T0bLrM9hZTAaAyH+PCAXjw==}
+
+ micromark-util-html-tag-name@2.0.1:
+ resolution: {integrity: sha512-2cNEiYDhCWKI+Gs9T0Tiysk136SnR13hhO8yW6BGNyhOC4qYFnwF1nKfD3HFAIXA5c45RrIG1ub11GiXeYd1xA==}
+
+ micromark-util-normalize-identifier@2.0.1:
+ resolution: {integrity: sha512-sxPqmo70LyARJs0w2UclACPUUEqltCkJ6PhKdMIDuJ3gSf/Q+/GIe3WKl0Ijb/GyH9lOpUkRAO2wp0GVkLvS9Q==}
+
+ micromark-util-resolve-all@2.0.1:
+ resolution: {integrity: sha512-VdQyxFWFT2/FGJgwQnJYbe1jjQoNTS4RjglmSjTUlpUMa95Htx9NHeYW4rGDJzbjvCsl9eLjMQwGeElsqmzcHg==}
+
+ micromark-util-sanitize-uri@2.0.1:
+ resolution: {integrity: sha512-9N9IomZ/YuGGZZmQec1MbgxtlgougxTodVwDzzEouPKo3qFWvymFHWcnDi2vzV1ff6kas9ucW+o3yzJK9YB1AQ==}
+
+ micromark-util-subtokenize@2.0.3:
+ resolution: {integrity: sha512-VXJJuNxYWSoYL6AJ6OQECCFGhIU2GGHMw8tahogePBrjkG8aCCas3ibkp7RnVOSTClg2is05/R7maAhF1XyQMg==}
+
+ micromark-util-symbol@2.0.1:
+ resolution: {integrity: sha512-vs5t8Apaud9N28kgCrRUdEed4UJ+wWNvicHLPxCa9ENlYuAY31M0ETy5y1vA33YoNPDFTghEbnh6efaE8h4x0Q==}
+
+ micromark-util-types@2.0.1:
+ resolution: {integrity: sha512-534m2WhVTddrcKVepwmVEVnUAmtrx9bfIjNoQHRqfnvdaHQiFytEhJoTgpWJvDEXCO5gLTQh3wYC1PgOJA4NSQ==}
+
+ micromark@2.11.4:
+ resolution: {integrity: sha512-+WoovN/ppKolQOFIAajxi7Lu9kInbPxFuTBVEavFcL8eAfVstoc5MocPmqBeAdBOJV00uaVjegzH4+MA0DN/uA==}
+
+ micromark@4.0.1:
+ resolution: {integrity: sha512-eBPdkcoCNvYcxQOAKAlceo5SNdzZWfF+FcSupREAzdAh9rRmE239CEQAiTwIgblwnoM8zzj35sZ5ZwvSEOF6Kw==}
+
+ micromatch@4.0.8:
+ resolution: {integrity: sha512-PXwfBhYu0hBCPw8Dn0E+WDYb7af3dSLVWKi3HGv84IdF4TyFoC0ysxFd0Goxw7nSv4T/PzEJQxsYsEiFCKo2BA==}
+ engines: {node: '>=8.6'}
+
+ mime-db@1.52.0:
+ resolution: {integrity: sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==}
+ engines: {node: '>= 0.6'}
+
+ mime-db@1.53.0:
+ resolution: {integrity: sha512-oHlN/w+3MQ3rba9rqFr6V/ypF10LSkdwUysQL7GkXoTgIWeV+tcXGA852TBxH+gsh8UWoyhR1hKcoMJTuWflpg==}
+ engines: {node: '>= 0.6'}
+
+ mime-types@2.1.35:
+ resolution: {integrity: sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==}
+ engines: {node: '>= 0.6'}
+
+ mime@1.6.0:
+ resolution: {integrity: sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg==}
+ engines: {node: '>=4'}
+ hasBin: true
+
+ mime@2.6.0:
+ resolution: {integrity: sha512-USPkMeET31rOMiarsBNIHZKLGgvKc/LrjofAnBlOttf5ajRvqiRA8QsenbcooctK6d6Ts6aqZXBA+XbkKthiQg==}
+ engines: {node: '>=4.0.0'}
+ hasBin: true
+
+ mime@3.0.0:
+ resolution: {integrity: sha512-jSCU7/VB1loIWBZe14aEYHU/+1UMEHoaO7qxCOVJOw9GgH72VAWppxNcjU+x9a2k3GSIBXNKxXQFqRvvZ7vr3A==}
+ engines: {node: '>=10.0.0'}
+ hasBin: true
+
+ mime@4.0.4:
+ resolution: {integrity: sha512-v8yqInVjhXyqP6+Kw4fV3ZzeMRqEW6FotRsKXjRS5VMTNIuXsdRoAvklpoRgSqXm6o9VNH4/C0mgedko9DdLsQ==}
+ engines: {node: '>=16'}
+ hasBin: true
+
+ mimer@2.0.2:
+ resolution: {integrity: sha512-izxvjsB7Ur5HrTbPu6VKTrzxSMBFBqyZQc6dWlZNQ4/wAvf886fD4lrjtFd8IQ8/WmZKdxKjUtqFFNaj3hQ52g==}
+ engines: {node: '>= 12'}
+ hasBin: true
+
+ mimic-fn@2.1.0:
+ resolution: {integrity: sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==}
+ engines: {node: '>=6'}
+
+ mimic-response@1.0.1:
+ resolution: {integrity: sha512-j5EctnkH7amfV/q5Hgmoal1g2QHFJRraOtmx0JpIqkxhBhI/lJSl1nMpQ45hVarwNETOoWEimndZ4QK0RHxuxQ==}
+ engines: {node: '>=4'}
+
+ mimic-response@3.1.0:
+ resolution: {integrity: sha512-z0yWI+4FDrrweS8Zmt4Ej5HdJmky15+L2e6Wgn3+iK5fWzb6T3fhNFq2+MeTRb064c6Wr4N/wv0DzQTjNzHNGQ==}
+ engines: {node: '>=10'}
+
+ mimic-response@4.0.0:
+ resolution: {integrity: sha512-e5ISH9xMYU0DzrT+jl8q2ze9D6eWBto+I8CNpe+VI+K2J/F/k3PdkdTdz4wvGVH4NTpo+NRYTVIuMQEMMcsLqg==}
+ engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0}
+
+ minimalistic-assert@1.0.1:
+ resolution: {integrity: sha512-UtJcAD4yEaGtjPezWuO9wC4nwUnVH/8/Im3yEHQP4b67cXlD/Qr9hdITCU1xDbSEXg2XKNaP8jsReV7vQd00/A==}
+
+ minimatch@3.0.8:
+ resolution: {integrity: sha512-6FsRAQsxQ61mw+qP1ZzbL9Bc78x2p5OqNgNpnoAFLTrX8n5Kxph0CsnhmKKNXTWjXqU5L0pGPR7hYk+XWZr60Q==}
+
+ minimatch@3.1.2:
+ resolution: {integrity: sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==}
+
+ minimatch@5.1.6:
+ resolution: {integrity: sha512-lKwV/1brpG6mBUFHtb7NUmtABCb2WZZmm2wNiOA5hAb8VdCS4B3dtMWyvcoViccwAW/COERjXLt0zP1zXUN26g==}
+ engines: {node: '>=10'}
+
+ minimatch@9.0.5:
+ resolution: {integrity: sha512-G6T0ZX48xgozx7587koeX9Ys2NYy6Gmv//P89sEte9V9whIapMNF4idKxnW2QtCcLiTWlb/wfCabAtAFWhhBow==}
+ engines: {node: '>=16 || 14 >=14.17'}
+
+ minimist@1.2.8:
+ resolution: {integrity: sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==}
+
+ minipass@3.3.6:
+ resolution: {integrity: sha512-DxiNidxSEK+tHG6zOIklvNOwm3hvCrbUrdtzY74U6HKTJxvIDfOUL5W5P2Ghd3DTkhhKPYGqeNUIh5qcM4YBfw==}
+ engines: {node: '>=8'}
+
+ minipass@5.0.0:
+ resolution: {integrity: sha512-3FnjYuehv9k6ovOEbyOswadCDPX1piCfhV8ncmYtHOjuPwylVWsghTLo7rabjC3Rx5xD4HDx8Wm1xnMF7S5qFQ==}
+ engines: {node: '>=8'}
+
+ minizlib@2.1.2:
+ resolution: {integrity: sha512-bAxsR8BVfj60DWXHE3u30oHzfl4G7khkSuPW+qvpd7jFRHm7dLxOjUk1EHACJ/hxLY8phGJ0YhYHZo7jil7Qdg==}
+ engines: {node: '>= 8'}
+
+ mitt@3.0.0:
+ resolution: {integrity: sha512-7dX2/10ITVyqh4aOSVI9gdape+t9l2/8QxHrFmUXu4EEUpdlxl6RudZUPZoc+zuY2hk1j7XxVroIVIan/pD/SQ==}
+
+ mitt@3.0.1:
+ resolution: {integrity: sha512-vKivATfr97l2/QBCYAkXYDbrIWPM2IIKEl7YPhjCvKlG3kE2gm+uBo6nEXK3M5/Ffh/FLpKExzOQ3JJoJGFKBw==}
+
+ mkdirp-classic@0.5.3:
+ resolution: {integrity: sha512-gKLcREMhtuZRwRAfqP3RFW+TK4JqApVBtOIftVgjuABpAtpxhPGaDcfvbhNvD0B8iD1oUr/txX35NjcaY6Ns/A==}
+
+ mkdirp@0.5.6:
+ resolution: {integrity: sha512-FP+p8RB8OWpF3YZBCrP5gtADmtXApB5AMLn+vdyA+PyxCjrCs00mjyUozssO33cwDeT3wNGdLxJ5M//YqtHAJw==}
+ hasBin: true
+
+ mkdirp@1.0.4:
+ resolution: {integrity: sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw==}
+ engines: {node: '>=10'}
+ hasBin: true
+
+ mlly@1.7.3:
+ resolution: {integrity: sha512-xUsx5n/mN0uQf4V548PKQ+YShA4/IW0KI1dZhrNrPCLG+xizETbHTkOa1f8/xut9JRPp8kQuMnz0oqwkTiLo/A==}
+
+ mnemonist@0.38.3:
+ resolution: {integrity: sha512-2K9QYubXx/NAjv4VLq1d1Ly8pWNC5L3BrixtdkyTegXWJIqY+zLNDhhX/A+ZwWt70tB1S8H4BE8FLYEFyNoOBw==}
+
+ module-definition@3.4.0:
+ resolution: {integrity: sha512-XxJ88R1v458pifaSkPNLUTdSPNVGMP2SXVncVmApGO+gAfrLANiYe6JofymCzVceGOMwQE2xogxBSc8uB7XegA==}
+ engines: {node: '>=6.0'}
+ hasBin: true
+
+ moment-timezone@0.5.46:
+ resolution: {integrity: sha512-ZXm9b36esbe7OmdABqIWJuBBiLLwAjrN7CE+7sYdCCx82Nabt1wHDj8TVseS59QIlfFPbOoiBPm6ca9BioG4hw==}
+
+ moment@2.29.4:
+ resolution: {integrity: sha512-5LC9SOxjSc2HF6vO2CyuTDNivEdoz2IvyJJGj6X8DJ0eFyfszE0QiEd+iXmBvUP3WHxSjFH/vIsA0EN00cgr8w==}
+
+ moment@2.30.1:
+ resolution: {integrity: sha512-uEmtNhbDOrWPFS+hdjFCBfy9f2YoyzRpwcl+DqpC6taX21FzsTLQVbMV/W7PzNSX6x/bhC1zA3c2UQ5NzH6how==}
+
+ monday-sdk-js@0.1.6:
+ resolution: {integrity: sha512-OfkICgBQRI8N4dmSLqR2k8tpIIogpfLQCksuV3E/TLayyJzinuN6KOp1Mk/qdG1lilA9AArQO11UvZnQ4ZRXDQ==}
+
+ monday-sdk-js@0.5.5:
+ resolution: {integrity: sha512-i5JyZwlDpsZznXMbrqlPhRdwn6DX1sVjZ87tR0x4vc4wJSTrDY1hHM+wN6YSCtP/JlW8+pqcymm6jDaE6+RyxA==}
+
+ mongodb-connection-string-url@2.6.0:
+ resolution: {integrity: sha512-WvTZlI9ab0QYtTYnuMLgobULWhokRjtC7db9LtcVfJ+Hsnyr5eo6ZtNAt3Ly24XZScGMelOcGtm7lSn0332tPQ==}
+
+ mongodb@4.17.2:
+ resolution: {integrity: sha512-mLV7SEiov2LHleRJPMPrK2PMyhXFZt2UQLC4VD4pnth3jMjYKHhtqfwwkkvS/NXuo/Fp3vbhaNcXrIDaLRb9Tg==}
+ engines: {node: '>=12.9.0'}
+
+ montag@1.2.1:
+ resolution: {integrity: sha512-YFuR6t5KhDlmAnUmVSxGzNcpWqSDqxbd95tvnEnn7X9yFv7g3kDFoRjwyGayVdF/NNoWk7YW7IxUjilnGnoC5Q==}
+
+ moo@0.5.2:
+ resolution: {integrity: sha512-iSAJLHYKnX41mKcJKjqvnAN9sf0LMDTXDEvFv+ffuRR9a1MIuXLjMNL6EsnDHSkKLTWNqQQ5uo61P4EbU4NU+Q==}
+
+ move-file@1.2.0:
+ resolution: {integrity: sha512-USHrRmxzGowUWAGBbJPdFjHzEqtxDU03pLHY0Rfqgtnq+q8FOIs8wvkkf+Udmg77SJKs47y9sI0jJvQeYsmiCA==}
+ engines: {node: '>=8'}
+
+ mri@1.2.0:
+ resolution: {integrity: sha512-tzzskb3bG8LvYGFF/mDTpq3jpI6Q9wc3LEmBaghu+DdCssd1FakN7Bc0hVNmEyGq1bq3RgfkCb3cmQLpNPOroA==}
+ engines: {node: '>=4'}
+
+ ms@2.0.0:
+ resolution: {integrity: sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==}
+
+ ms@2.1.2:
+ resolution: {integrity: sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==}
+
+ ms@2.1.3:
+ resolution: {integrity: sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==}
+
+ mssql@10.0.4:
+ resolution: {integrity: sha512-MhX5IcJ75/q+dUiOe+1ajpqjEe96ZKqMchYYPUIDU+Btqhwt4gbFeZhcGUZaRCEMV9uF+G8kLvaNSFaEzL9OXQ==}
+ engines: {node: '>=14'}
+ hasBin: true
+
+ muggle-string@0.4.1:
+ resolution: {integrity: sha512-VNTrAak/KhO2i8dqqnqnAHOa3cYBwXEZe9h+D5h/1ZqFSTEFHdM65lR7RoIqq3tBBYavsOXV84NoHXZ0AkPyqQ==}
+
+ multilang-extract-comments@0.4.0:
+ resolution: {integrity: sha512-8mXCo9Q42Wyfho9nn7hHkG/0sKxH0nJWfmBLl8+c+FLv++XhFkFC1sntOk4NFZ+nSpoMjlF/8ILeOLyMRTFbIw==}
+
+ mute-stream@0.0.8:
+ resolution: {integrity: sha512-nnbWWOkoWyUsTjKrhgD0dcz22mdkSnpYqbEjIm2nhwhuxlSkpywJmBo8h0ZqJdkp73mb90SssHkN4rsRaBAfAA==}
+
+ mysql2-promise@0.1.4:
+ resolution: {integrity: sha512-/h8ubU/36aIPpbfB6CENw9ZdbzIhZMZOIbstJUHVKp4J9JBRSLScrYImVx+3yZilgag732UhpQMMK5+ktdhLCw==}
+ engines: {node: '>=0.10.0'}
+
+ mysql2@0.15.8:
+ resolution: {integrity: sha512-3x5o6C20bfwJYPSoT74MOoad7/chJoq4qXHDL5VAuRBBrIyErovLoj04Dz/5EY9X2kTxWSGNiTegtxpROTd2YQ==}
+ engines: {node: '>= 0.8'}
+
+ mysql2@3.11.4:
+ resolution: {integrity: sha512-Z2o3tY4Z8EvSRDwknaC40MdZ3+m0sKbpnXrShQLdxPrAvcNli7jLrD2Zd2IzsRMw4eK9Yle500FDmlkIqp+krg==}
+ engines: {node: '>= 8.0'}
+
+ named-placeholders@0.1.3:
+ resolution: {integrity: sha512-Mt79RtxZ6MYTIEemPGv/YDKpbuavcAyGHb0r37xB2mnE5jej3uBzc4+nzOeoZ4nZiii1M32URKt9IjkSTZAmTA==}
+
+ named-placeholders@1.1.3:
+ resolution: {integrity: sha512-eLoBxg6wE/rZkJPhU/xRX1WTpkFEwDJEN96oxFrTsqBdbT5ec295Q+CoHrL9IT0DipqKhmGcaZmwOt8OON5x1w==}
+ engines: {node: '>=12.0.0'}
+
+ nan@2.22.0:
+ resolution: {integrity: sha512-nbajikzWTMwsW+eSsNm3QwlOs7het9gGJU5dDZzRTQGk03vyBOauxgI4VakDzE0PtsGTmXPsXTbbjVhRwR5mpw==}
+
+ nano-memoize@3.0.16:
+ resolution: {integrity: sha512-JyK96AKVGAwVeMj3MoMhaSXaUNqgMbCRSQB3trUV8tYZfWEzqUBKdK1qJpfuNXgKeHOx1jv/IEYTM659ly7zUA==}
+
+ nanoid@3.3.7:
+ resolution: {integrity: sha512-eSRppjcPIatRIMC1U6UngP8XFcz8MQWGQdt1MTBQ7NaAmvXDfvNxbvWV3x2y6CdEUciCSsDHDQZbhYaB8QEo2g==}
+ engines: {node: ^10 || ^12 || ^13.7 || ^14 || >=15.0.1}
+ hasBin: true
+
+ nanoid@4.0.2:
+ resolution: {integrity: sha512-7ZtY5KTCNheRGfEFxnedV5zFiORN1+Y1N6zvPTnHQd8ENUvfaDBeuJDZb2bN/oXwXxu3qkTXDzy57W5vAmDTBw==}
+ engines: {node: ^14 || ^16 || >=18}
+ hasBin: true
+
+ nanoid@5.0.8:
+ resolution: {integrity: sha512-TcJPw+9RV9dibz1hHUzlLVy8N4X9TnwirAjrU08Juo6BNKggzVfP2ZJ/3ZUSq15Xl5i85i+Z89XBO90pB2PghQ==}
+ engines: {node: ^18 || >=20}
+ hasBin: true
+
+ native-duplexpair@1.0.0:
+ resolution: {integrity: sha512-E7QQoM+3jvNtlmyfqRZ0/U75VFgCls+fSkbml2MpgWkWyz3ox8Y58gNhfuziuQYGNNQAbFZJQck55LHCnCK6CA==}
+
+ natural-compare@1.4.0:
+ resolution: {integrity: sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==}
+
+ nearley@2.20.1:
+ resolution: {integrity: sha512-+Mc8UaAebFzgV+KpI5n7DasuuQCHA89dmwm7JXw3TV43ukfNQ9DnBH3Mdb2g/I4Fdxc26pwimBWvjIw0UAILSQ==}
+ hasBin: true
+
+ nebula-js-lib@0.3.2:
+ resolution: {integrity: sha512-3BK0SMuxhXxqS1MClaIoGmHjZVJLLMXsSMTFvUAz9RklpfgdVFSO8MWPbkbOl0r5h43xtxxT5xx0PdsFn65CrQ==}
+
+ neo-async@2.6.2:
+ resolution: {integrity: sha512-Yd3UES5mWCSqR+qNT93S3UoYUkqAZ9lLg8a7g9rimsWmYGK8cVToA4/sF3RrshdyV3sAGMXVUmpMYOw+dLpOuw==}
+
+ nessy@4.0.0:
+ resolution: {integrity: sha512-XH4zOfmpxJhxXIp0Eb4vtJDtxfSjcbjY89/Rt64BNpkiBQ1mNumJWwDGq1kXWluCDQCu5LSrwABi58lWcfsWDQ==}
+ engines: {node: '>=8'}
+
+ nested-error-stacks@2.1.1:
+ resolution: {integrity: sha512-9iN1ka/9zmX1ZvLV9ewJYEk9h7RyRRtqdK0woXcqohu8EWIerfPUjYJPg0ULy0UqP7cslmdGc8xKDJcojlKiaw==}
+
+ netlify@6.1.29:
+ resolution: {integrity: sha512-Xr26CcTLt7ChN2cWysCWbAItJHmTufVhVkF3VEd25uOtBNufvg674Amw6bkyWwvfGJzrNP+tj07YVtsQGdlOZQ==}
+ engines: {node: '>=8.3.0'}
+
+ netmask@2.0.2:
+ resolution: {integrity: sha512-dBpDMdxv9Irdq66304OLfEmQ9tbNRFnFTuZiLo+bD+r332bBmMJ8GBLXklIXXgxd3+v9+KUnZaUR5PJMa75Gsg==}
+ engines: {node: '>= 0.4.0'}
+
+ next-tick@1.1.0:
+ resolution: {integrity: sha512-CXdUiJembsNjuToQvxayPZF9Vqht7hewsvy2sOWafLvi2awflj9mOC6bHIg50orX8IJvWKY9wYQ/zB2kogPslQ==}
+
+ next@15.0.3:
+ resolution: {integrity: sha512-ontCbCRKJUIoivAdGB34yCaOcPgYXr9AAkV/IwqFfWWTXEPUgLYkSkqBhIk9KK7gGmgjc64B+RdoeIDM13Irnw==}
+ engines: {node: ^18.18.0 || ^19.8.0 || >= 20.0.0}
+ hasBin: true
+ peerDependencies:
+ '@opentelemetry/api': ^1.1.0
+ '@playwright/test': ^1.41.2
+ babel-plugin-react-compiler: '*'
+ react: ^18.2.0 || 19.0.0-rc-66855b96-20241106
+ react-dom: ^18.2.0 || 19.0.0-rc-66855b96-20241106
+ sass: ^1.3.0
+ peerDependenciesMeta:
+ '@opentelemetry/api':
+ optional: true
+ '@playwright/test':
+ optional: true
+ babel-plugin-react-compiler:
+ optional: true
+ sass:
+ optional: true
+
+ nice-try@1.0.5:
+ resolution: {integrity: sha512-1nh45deeb5olNY7eX82BkPO7SSxR5SSYJiPTrTdFUVYwAl8CKMA5N9PjTYkHiRjisVcxcQ1HXdLhx2qxxJzLNQ==}
+
+ node-abort-controller@3.1.1:
+ resolution: {integrity: sha512-AGK2yQKIjRuqnc6VkX2Xj5d+QW8xZ87pa1UK6yA6ouUyuxfHuMP6umE5QK7UmTeOAymo+Zx1Fxiuw9rVx8taHQ==}
+
+ node-cleanup@2.1.2:
+ resolution: {integrity: sha512-qN8v/s2PAJwGUtr1/hYTpNKlD6Y9rc4p8KSmJXyGdYGZsDGKXrGThikLFP9OCHFeLeEpQzPwiAtdIvBLqm//Hw==}
+
+ node-domexception@1.0.0:
+ resolution: {integrity: sha512-/jKZoMpw0F8GRwl4/eLROPA3cfcXtLApP0QzLmUT/HuPCZWyB7IY9ZrMeKw2O/nFIqPQB3PVM9aYm0F312AXDQ==}
+ engines: {node: '>=10.5.0'}
+
+ node-fetch-h2@2.3.0:
+ resolution: {integrity: sha512-ofRW94Ab0T4AOh5Fk8t0h8OBWrmjb0SSB20xh1H8YnPV9EJ+f5AMoYSUQ2zgJ4Iq2HAK0I2l5/Nequ8YzFS3Hg==}
+ engines: {node: 4.x || >=6.0.0}
+
+ node-fetch@2.6.13:
+ resolution: {integrity: sha512-StxNAxh15zr77QvvkmveSQ8uCQ4+v5FkvNTj0OESmiHu+VRi/gXArXtkWMElOsOUNLtUEvI4yS+rdtOHZTwlQA==}
+ engines: {node: 4.x || >=6.0.0}
+ peerDependencies:
+ encoding: ^0.1.0
+ peerDependenciesMeta:
+ encoding:
+ optional: true
+
+ node-fetch@2.6.7:
+ resolution: {integrity: sha512-ZjMPFEfVx5j+y2yF35Kzx5sF7kDzxuDj6ziH4FFbOp87zKDZNx8yExJIb05OGF4Nlt9IHFIMBkRl41VdvcNdbQ==}
+ engines: {node: 4.x || >=6.0.0}
+ peerDependencies:
+ encoding: ^0.1.0
+ peerDependenciesMeta:
+ encoding:
+ optional: true
+
+ node-fetch@2.7.0:
+ resolution: {integrity: sha512-c4FRfUm/dbcWZ7U+1Wq0AwCyFL+3nt2bEw05wfxSz+DWpWsitgmSgYmy2dQdWyKC1694ELPqMs/YzUSNozLt8A==}
+ engines: {node: 4.x || >=6.0.0}
+ peerDependencies:
+ encoding: ^0.1.0
+ peerDependenciesMeta:
+ encoding:
+ optional: true
+
+ node-fetch@3.0.0-beta.9:
+ resolution: {integrity: sha512-RdbZCEynH2tH46+tj0ua9caUHVWrd/RHnRfvly2EVdqGmI3ndS1Vn/xjm5KuGejDt2RNDQsVRLPNd2QPwcewVg==}
+ engines: {node: ^10.17 || >=12.3}
+
+ node-fetch@3.3.2:
+ resolution: {integrity: sha512-dRB78srN/l6gqWulah9SrxeYnxeddIG30+GOqK/9OlLVyLg3HPnr6SqOWTWOXKRwC2eGYCkZ59NNuSgvSrpgOA==}
+ engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0}
+
+ node-forge@1.3.1:
+ resolution: {integrity: sha512-dPEtOeMvF9VMcYV/1Wb8CPoVAXtp6MKMlcbAt4ddqmGqUJ6fQZFXkNZNkNlfevtNkGtaSoXf/vNNNSvgrdXwtA==}
+ engines: {node: '>= 6.13.0'}
+
+ node-int64@0.4.0:
+ resolution: {integrity: sha512-O5lz91xSOeoXP6DulyHfllpq+Eg00MWitZIbtPfoSEvqIHdl5gfcY6hYzDWnj0qD5tz52PI08u9qUvSVeUBeHw==}
+
+ node-mailjet@3.4.1:
+ resolution: {integrity: sha512-m+msgBJYgwFbIZBIPOnsGOtBt9xP03UqmkmuEcgTcLlr/U1GUJQrVI7cDFRgujybb9Cl1wl4thIGyM3wt6X+zQ==}
+
+ node-readfiles@0.2.0:
+ resolution: {integrity: sha512-SU00ZarexNlE4Rjdm83vglt5Y9yiQ+XI1XpflWlb7q7UTN1JUItm69xMeiQCTxtTfnzt+83T8Cx+vI2ED++VDA==}
+
+ node-releases@2.0.18:
+ resolution: {integrity: sha512-d9VeXT4SJ7ZeOqGX6R5EM022wpL+eWPooLI+5UpWn2jCT1aosUQEhQP214x33Wkwx3JQMvIm+tIoVOdodFS40g==}
+
+ node-source-walk@4.3.0:
+ resolution: {integrity: sha512-8Q1hXew6ETzqKRAs3jjLioSxNfT1cx74ooiF8RlAONwVMcfq+UdzLC2eB5qcPldUxaE5w3ytLkrmV1TGddhZTA==}
+ engines: {node: '>=6.0'}
+
+ node-ssh@12.0.5:
+ resolution: {integrity: sha512-uN2GTGdBRUUKkZmcNBr9OM+xKL6zq74emnkSyb1TshBdVWegj3boue6QallQeqZzo7YGVheP5gAovUL+8hZSig==}
+ engines: {node: '>= 10'}
+
+ node-telegram-bot-api@0.54.0:
+ resolution: {integrity: sha512-ckrpY/ABFLwA1DUzEc9iEQtsgQs8WcGC6m7iJ1bbnH+c7EOLnMdCfw+hUesyfuwOfAkkECYFxvoW4lJNy+Oztw==}
+ engines: {node: '>=0.12'}
+
+ nodemailer@6.9.13:
+ resolution: {integrity: sha512-7o38Yogx6krdoBf3jCAqnIN4oSQFx+fMa0I7dK1D+me9kBxx12D+/33wSb+fhOCtIxvYJ+4x4IMEhmhCKfAiOA==}
+ engines: {node: '>=6.0.0'}
+
+ nodemailer@6.9.16:
+ resolution: {integrity: sha512-psAuZdTIRN08HKVd/E8ObdV6NO7NTBY3KsC30F7M4H1OnmLCUNaS56FpYxyb26zWLSyYF9Ozch9KYHhHegsiOQ==}
+ engines: {node: '>=6.0.0'}
+
+ nodemon@3.1.7:
+ resolution: {integrity: sha512-hLj7fuMow6f0lbB0cD14Lz2xNjwsyruH251Pk4t/yIitCFJbmY1myuLlHm/q06aST4jg6EgAh74PIBBrRqpVAQ==}
+ engines: {node: '>=10'}
+ hasBin: true
+
+ normalize-package-data@2.5.0:
+ resolution: {integrity: sha512-/5CMN3T0R4XTj4DcGaexo+roZSdSFW/0AOOTROrjxzCG1wrWXEsGbRKevjlIL+ZDE4sZlJr5ED4YW0yqmkK+eA==}
+
+ normalize-package-data@3.0.3:
+ resolution: {integrity: sha512-p2W1sgqij3zMMyRC067Dg16bfzVH+w7hyegmpIvZ4JNjqtGOVAIvLmjBx3yP7YTe9vKJgkoNOPjwQGogDoMXFA==}
+ engines: {node: '>=10'}
+
+ normalize-path@2.1.1:
+ resolution: {integrity: sha512-3pKJwH184Xo/lnH6oyP1q2pMd7HcypqqmRs91/6/i2CGtWwIKGCkOOMTm/zXbgTEWHw1uNpNi/igc3ePOYHb6w==}
+ engines: {node: '>=0.10.0'}
+
+ normalize-path@3.0.0:
+ resolution: {integrity: sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==}
+ engines: {node: '>=0.10.0'}
+
+ normalize-url@6.1.0:
+ resolution: {integrity: sha512-DlL+XwOy3NxAQ8xuC0okPgK46iuVNAK01YN7RueYBqqFeGsBjV9XmCAzAdgt+667bCl5kPh9EqKKDwnaPG1I7A==}
+ engines: {node: '>=10'}
+
+ normalize-url@8.0.1:
+ resolution: {integrity: sha512-IO9QvjUMWxPQQhs60oOu10CRkWCiZzSUkzbXGGV9pviYl1fXYcvkzQ5jV9z8Y6un8ARoVRl4EtC6v6jNqbaJ/w==}
+ engines: {node: '>=14.16'}
+
+ npm-normalize-package-bin@1.0.1:
+ resolution: {integrity: sha512-EPfafl6JL5/rU+ot6P3gRSCpPDW5VmIzX959Ob1+ySFUuuYHWHekXpwdUZcKP5C+DS4GEtdJluwBjnsNDl+fSA==}
+
+ npm-package-arg@8.1.5:
+ resolution: {integrity: sha512-LhgZrg0n0VgvzVdSm1oiZworPbTxYHUJCgtsJW8mGvlDpxTM1vSJc3m5QZeUkhAHIzbz3VCHd/R4osi1L1Tg/Q==}
+ engines: {node: '>=10'}
+
+ npm-run-path@2.0.2:
+ resolution: {integrity: sha512-lJxZYlT4DW/bRUtFh1MQIWqmLwQfAxnqWG4HhEdjMlkrJYnJn0Jrr2u3mgxqaWsdiBc76TYkTG/mhrnYTuzfHw==}
+ engines: {node: '>=4'}
+
+ npm-run-path@4.0.1:
+ resolution: {integrity: sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw==}
+ engines: {node: '>=8'}
+
+ npmlog@4.1.2:
+ resolution: {integrity: sha512-2uUqazuKlTaSI/dC8AzicUck7+IrEaOnN/e0jd3Xtt1KcGpwx30v50mL7oPyr/h9bL3E4aZccVwpwP+5W9Vjkg==}
+ deprecated: This package is no longer supported.
+
+ nth-check@2.1.1:
+ resolution: {integrity: sha512-lqjrjmaOoAnWfMmBPL+XNnynZh2+swxiX3WUE0s4yEHI6m+AwrK2UZOimIRl3X/4QctVqS8AiZjFqyOGrMXb/w==}
+
+ number-is-nan@1.0.1:
+ resolution: {integrity: sha512-4jbtZXNAsfZbAHiiqjLPBiCl16dES1zI4Hpzzxw61Tk+loF+sBDBKx1ICKKKwIqQ7M0mFn1TmkN7euSncWgHiQ==}
+ engines: {node: '>=0.10.0'}
+
+ oas-kit-common@1.0.8:
+ resolution: {integrity: sha512-pJTS2+T0oGIwgjGpw7sIRU8RQMcUoKCDWFLdBqKB2BNmGpbBMH2sdqAaOXUg8OzonZHU0L7vfJu1mJFEiYDWOQ==}
+
+ oas-linter@3.2.2:
+ resolution: {integrity: sha512-KEGjPDVoU5K6swgo9hJVA/qYGlwfbFx+Kg2QB/kd7rzV5N8N5Mg6PlsoCMohVnQmo+pzJap/F610qTodKzecGQ==}
+
+ oas-normalize@7.1.1:
+ resolution: {integrity: sha512-5ZSkbkhiDN5K0eTIkGkDAef6ta6l713/6XIc1wfnZZzjG13RSR9M6ON13nY5opwNjhKnXhssIK48cIUVs6z3gA==}
+ engines: {node: '>=14'}
+
+ oas-resolver@2.5.6:
+ resolution: {integrity: sha512-Yx5PWQNZomfEhPPOphFbZKi9W93CocQj18NlD2Pa4GWZzdZpSJvYwoiuurRI7m3SpcChrnO08hkuQDL3FGsVFQ==}
+ hasBin: true
+
+ oas-schema-walker@1.1.5:
+ resolution: {integrity: sha512-2yucenq1a9YPmeNExoUa9Qwrt9RFkjqaMAA1X+U7sbb0AqBeTIdMHky9SQQ6iN94bO5NW0W4TRYXerG+BdAvAQ==}
+
+ oas-validator@5.0.8:
+ resolution: {integrity: sha512-cu20/HE5N5HKqVygs3dt94eYJfBi0TsZvPVXDhbXQHiEityDN+RROTleefoKRKKJ9dFAF2JBkDHgvWj0sjKGmw==}
+
+ oas@18.4.4:
+ resolution: {integrity: sha512-m1r6vPRnNbPVfhXWiuFuK3JlneI0717iMHqsj9MaCF/lCQ7nAdX2sklqgQmKnnG8Jg6INHgP3oaHcHSuBfZooQ==}
+ engines: {node: '>=12'}
+ hasBin: true
+
+ oauth-1.0a@2.2.6:
+ resolution: {integrity: sha512-6bkxv3N4Gu5lty4viIcIAnq5GbxECviMBeKR3WX/q87SPQ8E8aursPZUtsXDnxCs787af09WPRBLqYrf/lwoYQ==}
+
+ oauth-sign@0.9.0:
+ resolution: {integrity: sha512-fexhUFFPTGV8ybAtSIGbV6gOkSv8UtRbDBnAyLQw4QPKkgNlsH2ByPGtMUqdWkos6YCRmAqViwgZrJc/mRDzZQ==}
+
+ object-assign@4.1.1:
+ resolution: {integrity: sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==}
+ engines: {node: '>=0.10.0'}
+
+ object-hash@3.0.0:
+ resolution: {integrity: sha512-RSn9F68PjH9HqtltsSnqYC1XXoWe9Bju5+213R98cNGttag9q9yAOTzdbsqvIa7aNm5WffBZFpWYr2aWrklWAw==}
+ engines: {node: '>= 6'}
+
+ object-inspect@1.13.3:
+ resolution: {integrity: sha512-kDCGIbxkDSXE3euJZZXzc6to7fCrKHNI/hSRQnRuQ+BWjFNzZwiFF8fj/6o2t2G9/jTj8PSIYTfCLelLZEeRpA==}
+ engines: {node: '>= 0.4'}
+
+ object-keys@1.1.1:
+ resolution: {integrity: sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==}
+ engines: {node: '>= 0.4'}
+
+ object.assign@4.1.5:
+ resolution: {integrity: sha512-byy+U7gp+FVwmyzKPYhW2h5l3crpmGsxl7X2s8y43IgxvG4g3QZ6CffDtsNQy1WsmZpQbO+ybo0AlW7TY6DcBQ==}
+ engines: {node: '>= 0.4'}
+
+ object.entries@1.1.8:
+ resolution: {integrity: sha512-cmopxi8VwRIAw/fkijJohSfpef5PdN0pMQJN6VC/ZKvn0LIknWD8KtgY6KlQdEc4tIjcQ3HxSMmnvtzIscdaYQ==}
+ engines: {node: '>= 0.4'}
+
+ object.fromentries@2.0.8:
+ resolution: {integrity: sha512-k6E21FzySsSK5a21KRADBd/NGneRegFO5pLHfdQLpRDETUNJueLXs3WCzyQ3tFRDYgbq3KHGXfTbi2bs8WQ6rQ==}
+ engines: {node: '>= 0.4'}
+
+ object.groupby@1.0.3:
+ resolution: {integrity: sha512-+Lhy3TQTuzXI5hevh8sBGqbmurHbbIjAi0Z4S63nthVLmLxfbj4T54a4CfZrXIrt9iP4mVAPYMo/v99taj3wjQ==}
+ engines: {node: '>= 0.4'}
+
+ object.values@1.2.0:
+ resolution: {integrity: sha512-yBYjY9QX2hnRmZHAjG/f13MzmBzxzYgQhFrke06TTyKY5zSTEqkOeukBzIdVA3j3ulu8Qa3MbVFShV7T2RmGtQ==}
+ engines: {node: '>= 0.4'}
+
+ obliterator@1.6.1:
+ resolution: {integrity: sha512-9WXswnqINnnhOG/5SLimUlzuU1hFJUc8zkwyD59Sd+dPOMf05PmnYG/d6Q7HZ+KmgkZJa1PxRso6QdM3sTNHig==}
+
+ omit.js@2.0.2:
+ resolution: {integrity: sha512-hJmu9D+bNB40YpL9jYebQl4lsTW6yEHRTroJzNLqQJYHm7c+NQnJGfZmIWh8S3q3KoaxV1aLhV6B3+0N0/kyJg==}
+
+ on-finished@2.4.1:
+ resolution: {integrity: sha512-oVlzkg3ENAhCk2zdv7IJwd/QUD4z2RxRwpkcGY8psCVcCYZNq4wYnVWALHM+brtuJjePWiYF/ClmuDr8Ch5+kg==}
+ engines: {node: '>= 0.8'}
+
+ once@1.4.0:
+ resolution: {integrity: sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==}
+
+ one-time@1.0.0:
+ resolution: {integrity: sha512-5DXOiRKwuSEcQ/l0kGCF6Q3jcADFv5tSmRaJck/OqkVFcOzutB134KRSfF0xDrL39MNnqxbHBbUUcjZIhTgb2g==}
+
+ onetime@5.1.2:
+ resolution: {integrity: sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg==}
+ engines: {node: '>=6'}
+
+ ongage@1.1.7:
+ resolution: {integrity: sha512-a5wzOuudt3AGcM7WquLjEXfoN4k618CM51h8iUOdEJPdcqeavjqLAn7SdFBHaUNIhHhgnWpdyXE5DVAufq2Sew==}
+ engines: {node: '>=10'}
+ peerDependencies:
+ node-fetch: ^2.6.1
+
+ open@7.4.2:
+ resolution: {integrity: sha512-MVHddDVweXZF3awtlAS+6pgKLlm/JgxZ90+/NBurBoQctVOOB/zDdVjcyPzQ+0laDGbsWgrRkflI65sQeOgT9Q==}
+ engines: {node: '>=8'}
+
+ open@8.4.2:
+ resolution: {integrity: sha512-7x81NCL719oNbsq/3mh+hVrAWmFuEYUqrq/Iw3kUzH8ReypT9QQ0BLoJS7/G9k6N81XjW4qHWtjWwe/9eLy1EQ==}
+ engines: {node: '>=12'}
+
+ openai@3.3.0:
+ resolution: {integrity: sha512-uqxI/Au+aPRnsaQRe8CojU0eCR7I0mBiKjD3sNMzY6DaC1ZVrc85u98mtJW6voDug8fgGN+DIZmTDxTthxb7dQ==}
+
+ openapi-fetch@0.9.8:
+ resolution: {integrity: sha512-zM6elH0EZStD/gSiNlcPrzXcVQ/pZo3BDvC6CDwRDUt1dDzxlshpmQnpD6cZaJ39THaSmwVCxxRrPKNM1hHrDg==}
+
+ openapi-types@12.1.3:
+ resolution: {integrity: sha512-N4YtSYJqghVu4iek2ZUvcN/0aqH1kRDuNqzcycDxhOUpg7GdvLa2F3DgS6yBNhInhv2r/6I0Flkn7CqL8+nIcw==}
+
+ openapi-typescript-helpers@0.0.8:
+ resolution: {integrity: sha512-1eNjQtbfNi5Z/kFhagDIaIRj6qqDzhjNJKz8cmMW0CVdGwT6e1GLbAfgI0d28VTJa1A8jz82jm/4dG8qNoNS8g==}
+
+ opencollective-postinstall@2.0.3:
+ resolution: {integrity: sha512-8AV/sCtuzUeTo8gQK5qDZzARrulB3egtLzFgteqB2tcT4Mw7B8Kt7JcDHmltjz6FOAHsvTevk70gZEbhM4ZS9Q==}
+ hasBin: true
+
+ opengraph-io@2.0.0:
+ resolution: {integrity: sha512-R0L0zJ6cnUcUnjPKNOAllaQuII0ZfRZhMAwdu0N5fdC48JiceKzD+D/pStg6NpobwXa8aRZIME617gbXMKhp7g==}
+
+ optionator@0.8.3:
+ resolution: {integrity: sha512-+IW9pACdk3XWmmTXG8m3upGUJst5XRGzxMRjXzAuJ1XnIFNvfhjjIuYkDvysnPQ7qzqVzLt78BCruntqRhWQbA==}
+ engines: {node: '>= 0.8.0'}
+
+ optionator@0.9.4:
+ resolution: {integrity: sha512-6IpQ7mKUxRcZNLIObR0hz7lxsapSSIYNZJwXPGeF0mTVqGKFIXj1DQcMoT22S3ROcLyY/rz0PWaWZ9ayWmad9g==}
+ engines: {node: '>= 0.8.0'}
+
+ ora@5.4.1:
+ resolution: {integrity: sha512-5b6Y85tPxZZ7QytO+BQzysW31HJku27cRIlkbAXaNx+BdcVi+LlRFmVXzeF6a7JCwJpyw5c4b+YSVImQIrBpuQ==}
+ engines: {node: '>=10'}
+
+ os-tmpdir@1.0.2:
+ resolution: {integrity: sha512-D2FR03Vir7FIu45XBY20mTb+/ZSWB00sjU9jdQXt83gDrI4Ztz5Fs7/yy74g2N5SVQY4xY1qDr4rNddwYRVX0g==}
+ engines: {node: '>=0.10.0'}
+
+ p-cancelable@2.1.1:
+ resolution: {integrity: sha512-BZOr3nRQHOntUjTrH8+Lh54smKHoHyur8We1V8DSMVrl5A2malOOwuJRnKRDjSnkoeBh4at6BwEnb5I7Jl31wg==}
+ engines: {node: '>=8'}
+
+ p-cancelable@3.0.0:
+ resolution: {integrity: sha512-mlVgR3PGuzlo0MmTdk4cXqXWlwQDLnONTAg6sm62XkMJEiRxN3GL3SffkYvqwonbkJBcrI7Uvv5Zh9yjvn2iUw==}
+ engines: {node: '>=12.20'}
+
+ p-cancelable@4.0.1:
+ resolution: {integrity: sha512-wBowNApzd45EIKdO1LaU+LrMBwAcjfPaYtVzV3lmfM3gf8Z4CHZsiIqlM8TZZ8okYvh5A1cP6gTfCRQtwUpaUg==}
+ engines: {node: '>=14.16'}
+
+ p-defer@3.0.0:
+ resolution: {integrity: sha512-ugZxsxmtTln604yeYd29EGrNhazN2lywetzpKhfmQjW/VJmhpDmWbiX+h0zL8V91R0UXkhb3KtPmyq9PZw3aYw==}
+ engines: {node: '>=8'}
+
+ p-event@4.2.0:
+ resolution: {integrity: sha512-KXatOjCRXXkSePPb1Nbi0p0m+gQAwdlbhi4wQKJPI1HsMQS9g+Sqp2o+QHziPr7eYJyOZet836KoHEVM1mwOrQ==}
+ engines: {node: '>=8'}
+
+ p-finally@1.0.0:
+ resolution: {integrity: sha512-LICb2p9CB7FS+0eR1oqWnHhp0FljGLZCWBE9aix0Uye9W8LTQPwMTYVGWQWIw9RdQiDg4+epXQODwIYJtSJaow==}
+ engines: {node: '>=4'}
+
+ p-limit@2.3.0:
+ resolution: {integrity: sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==}
+ engines: {node: '>=6'}
+
+ p-limit@3.1.0:
+ resolution: {integrity: sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==}
+ engines: {node: '>=10'}
+
+ p-limit@4.0.0:
+ resolution: {integrity: sha512-5b0R4txpzjPWVw/cXXUResoD4hb6U/x9BH08L7nw+GN1sezDzPdxeRvpc9c433fZhBan/wusjbCsqwqm4EIBIQ==}
+ engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0}
+
+ p-locate@4.1.0:
+ resolution: {integrity: sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==}
+ engines: {node: '>=8'}
+
+ p-locate@5.0.0:
+ resolution: {integrity: sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==}
+ engines: {node: '>=10'}
+
+ p-locate@6.0.0:
+ resolution: {integrity: sha512-wPrq66Llhl7/4AGC6I+cqxT07LhXvWL08LNXz1fENOw0Ap4sRZZ/gZpTTJ5jpurzzzfS2W/Ge9BY3LgLjCShcw==}
+ engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0}
+
+ p-map@3.0.0:
+ resolution: {integrity: sha512-d3qXVTF/s+W+CdJ5A29wywV2n8CQQYahlgz2bFiA+4eVNJbHJodPZ+/gXwPGh0bOqA+j8S+6+ckmvLGPk1QpxQ==}
+ engines: {node: '>=8'}
+
+ p-map@4.0.0:
+ resolution: {integrity: sha512-/bjOqmgETBYB5BoEeGVea8dmvHb2m9GLy1E9W43yeyfP6QQCZGFNa+XRceJEuDB6zqr+gKpIAmlLebMpykw/MQ==}
+ engines: {node: '>=10'}
+
+ p-queue@6.6.2:
+ resolution: {integrity: sha512-RwFpb72c/BhQLEXIZ5K2e+AhgNVmIejGlTgiB9MzZ0e93GRvqZ7uSi0dvRF7/XIXDeNkra2fNHBxTyPDGySpjQ==}
+ engines: {node: '>=8'}
+
+ p-retry@4.6.2:
+ resolution: {integrity: sha512-312Id396EbJdvRONlngUx0NydfrIQ5lsYu0znKVUzVvArzEIt08V1qhtyESbGVd1FGX7UKtiFp5uwKZdM8wIuQ==}
+ engines: {node: '>=8'}
+
+ p-timeout@3.2.0:
+ resolution: {integrity: sha512-rhIwUycgwwKcP9yTOOFK/AKsAopjjCakVqLHePO3CC6Mir1Z99xT+R63jZxAT5lFZLa2inS5h+ZS2GvR99/FBg==}
+ engines: {node: '>=8'}
+
+ p-try@2.2.0:
+ resolution: {integrity: sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==}
+ engines: {node: '>=6'}
+
+ p-wait-for@3.2.0:
+ resolution: {integrity: sha512-wpgERjNkLrBiFmkMEjuZJEWKKDrNfHCKA1OhyN1wg1FrLkULbviEy6py1AyJUgZ72YWFbZ38FIpnqvVqAlDUwA==}
+ engines: {node: '>=8'}
+
+ pac-proxy-agent@5.0.0:
+ resolution: {integrity: sha512-CcFG3ZtnxO8McDigozwE3AqAw15zDvGH+OjXO4kzf7IkEKkQ4gxQ+3sdF50WmhQ4P/bVusXcqNE2S3XrNURwzQ==}
+ engines: {node: '>= 8'}
+
+ pac-proxy-agent@7.0.2:
+ resolution: {integrity: sha512-BFi3vZnO9X5Qt6NRz7ZOaPja3ic0PhlsmCRYLOpN11+mWBCR6XJDqW5RF3j8jm4WGGQZtBA+bTfxYzeKW73eHg==}
+ engines: {node: '>= 14'}
+
+ pac-resolver@5.0.1:
+ resolution: {integrity: sha512-cy7u00ko2KVgBAjuhevqpPeHIkCIqPe1v24cydhWjmeuzaBfmUWFCZJ1iAh5TuVzVZoUzXIW7K8sMYOZ84uZ9Q==}
+ engines: {node: '>= 8'}
+
+ pac-resolver@7.0.1:
+ resolution: {integrity: sha512-5NPgf87AT2STgwa2ntRMr45jTKrYBGkVU36yT0ig/n/GMAa3oPqhZfIQ2kMEimReg0+t9kZViDVZ83qfVUlckg==}
+ engines: {node: '>= 14'}
+
+ package-lock-only@0.0.4:
+ resolution: {integrity: sha512-fV1YHeTMWH5LKmdVqfWskm2/SG0iF2IrxJn3ziaPVx9CnpecGJzt8xXtLV+CYINENZwPFMtbxO5qupz0asNz1A==}
+
+ package@1.0.1:
+ resolution: {integrity: sha512-g6xZR6CO7okjie83sIRJodgGvaXqymfE5GLhN8N2TmZGShmHc/V23hO/vWbdnuy3D81As3pfovw72gGi42l9qA==}
+ engines: {node: '>= 0.6.0'}
+
+ pako@2.1.0:
+ resolution: {integrity: sha512-w+eufiZ1WuJYgPXbV/PO3NCMEc3xqylkKHzp8bxp1uW4qaSNQUkwmLLEc3kKsfz8lpV1F8Ht3U1Cm+9Srog2ug==}
+
+ parallel-transform@1.2.0:
+ resolution: {integrity: sha512-P2vSmIu38uIlvdcU7fDkyrxj33gTUy/ABO5ZUbGowxNCopBq/OoD42bP4UmMrJoPyk4Uqf0mu3mtWBhHCZD8yg==}
+
+ parent-module@1.0.1:
+ resolution: {integrity: sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==}
+ engines: {node: '>=6'}
+
+ parse-data-url@4.0.1:
+ resolution: {integrity: sha512-W+ZgeHPkG2Awbj2RCGG3zALoKGoKucIWXRp8jPgTVNmRgiftXbwXXzzaXXH4L1+OdxeSXC6C8G+hzlcv41f24A==}
+ engines: {node: '>=8'}
+
+ parse-entities@2.0.0:
+ resolution: {integrity: sha512-kkywGpCcRYhqQIchaWqZ875wzpS/bMKhz5HnN3p7wveJTkTtyAB/AlnS0f8DFSqYW1T82t6yEAkEcB+A1I3MbQ==}
+
+ parse-entities@4.0.1:
+ resolution: {integrity: sha512-SWzvYcSJh4d/SGLIOQfZ/CoNv6BTlI6YEQ7Nj82oDVnRpwe/Z/F1EMx42x3JAOwGBlCjeCH0BRJQbQ/opHL17w==}
+
+ parse-import-specifiers@1.0.3:
+ resolution: {integrity: sha512-jNtWL2DinOHUGnFEzeAyCJhacxwFkLzPnR3Foy3t2mOTIEgzZ3aaOakPw0PvoLaPZUy64CWYuhVFa/QkEMLJhA==}
+ engines: {node: '>=16'}
+
+ parse-json@4.0.0:
+ resolution: {integrity: sha512-aOIos8bujGN93/8Ox/jPLh7RwVnPEysynVFE+fQZyg6jKELEHwzgKdLRFHUgXJL6kylijVSBC4BvN9OmsB48Rw==}
+ engines: {node: '>=4'}
+
+ parse-json@5.2.0:
+ resolution: {integrity: sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg==}
+ engines: {node: '>=8'}
+
+ parse-link-header@1.0.1:
+ resolution: {integrity: sha512-Z0gpfHmwCIKDr5rRzjypL+p93aHVWO7e+0rFcUl9E3sC67njjs+xHFenuboSXZGlvYtmQqRzRaE3iFpTUnLmFQ==}
+
+ parse-link-header@2.0.0:
+ resolution: {integrity: sha512-xjU87V0VyHZybn2RrCX5TIFGxTVZE6zqqZWMPlIKiSKuWh/X5WZdt+w1Ki1nXB+8L/KtL+nZ4iq+sfI6MrhhMw==}
+
+ parse-passwd@1.0.0:
+ resolution: {integrity: sha512-1Y1A//QUXEZK7YKz+rD9WydcE1+EuPr6ZBgKecAB8tmoW6UFv0NREVJe1p+jRxtThkcbbKkfwIbWJe/IeE6m2Q==}
+ engines: {node: '>=0.10.0'}
+
+ parseley@0.12.1:
+ resolution: {integrity: sha512-e6qHKe3a9HWr0oMRVDTRhKce+bRO8VGQR3NyVwcjwrbhMmFCX9KszEV35+rn4AdilFAq9VPxP/Fe1wC9Qjd2lw==}
+
+ parseley@0.7.0:
+ resolution: {integrity: sha512-xyOytsdDu077M3/46Am+2cGXEKM9U9QclBDv7fimY7e+BBlxh2JcBp2mgNsmkyA9uvgyTjVzDi7cP1v4hcFxbw==}
+
+ parseurl@1.3.3:
+ resolution: {integrity: sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ==}
+ engines: {node: '>= 0.8'}
+
+ path-browserify@1.0.1:
+ resolution: {integrity: sha512-b7uo2UCUOYZcnF/3ID0lulOJi/bafxa1xPe7ZPsammBSpjSWQkjNxlt635YGS2MiR9GjvuXCtz2emr3jbsz98g==}
+
+ path-exists@3.0.0:
+ resolution: {integrity: sha512-bpC7GYwiDYQ4wYLe+FA8lhRjhQCMcQGuSgGGqDkg/QerRWw9CmGRT0iSOVRSZJ29NMLZgIzqaljJ63oaL4NIJQ==}
+ engines: {node: '>=4'}
+
+ path-exists@4.0.0:
+ resolution: {integrity: sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==}
+ engines: {node: '>=8'}
+
+ path-exists@5.0.0:
+ resolution: {integrity: sha512-RjhtfwJOxzcFmNOi6ltcbcu4Iu+FL3zEj83dk4kAS+fVpTxXLO1b38RvJgT/0QwvV/L3aY9TAnyv0EOqW4GoMQ==}
+ engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0}
+
+ path-is-absolute@1.0.1:
+ resolution: {integrity: sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==}
+ engines: {node: '>=0.10.0'}
+
+ path-key@2.0.1:
+ resolution: {integrity: sha512-fEHGKCSmUSDPv4uoj8AlD+joPlq3peND+HRYyxFz4KPw4z926S/b8rIuFs2FYJg3BwsxJf6A9/3eIdLaYC+9Dw==}
+ engines: {node: '>=4'}
+
+ path-key@3.1.1:
+ resolution: {integrity: sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==}
+ engines: {node: '>=8'}
+
+ path-parse@1.0.7:
+ resolution: {integrity: sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==}
+
+ path-to-regexp@6.3.0:
+ resolution: {integrity: sha512-Yhpw4T9C6hPpgPeA28us07OJeqZ5EzQTkbfwuhsUg0c237RomFoETJgmp2sa3F/41gfLE6G5cqcYwznmeEeOlQ==}
+
+ path-type@4.0.0:
+ resolution: {integrity: sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==}
+ engines: {node: '>=8'}
+
+ path@0.12.7:
+ resolution: {integrity: sha512-aXXC6s+1w7otVF9UletFkFcDsJeO7lSZBPUQhtb5O0xJe8LtYhj/GxldoL09bBj9+ZmE2hNoHqQSFMN5fikh4Q==}
+
+ pathe@1.1.2:
+ resolution: {integrity: sha512-whLdWMYL2TwI08hn8/ZqAbrVemu0LNaNNJZX73O6qaIdCTfXutsLhMkjdENX0qhsQ9uIimo4/aQOmXkoon2nDQ==}
+
+ pause-stream@0.0.11:
+ resolution: {integrity: sha512-e3FBlXLmN/D1S+zHzanP4E/4Z60oFAa3O051qt1pxa7DEJWKAyil6upYVXCWadEnuoqa4Pkc9oUx9zsxYeRv8A==}
+
+ pcloud-sdk-js@2.0.0:
+ resolution: {integrity: sha512-T5m5YQT/X3bkDyvaylwPtHCMntJu/ZKdIlfKqu2fhnaFHwWLEx1G08N85EQGZV8wnpciqbnuhsxIVXDJyd5bTA==}
+ engines: {node: '>= 4.0.0'}
+
+ peberminta@0.9.0:
+ resolution: {integrity: sha512-XIxfHpEuSJbITd1H3EeQwpcZbTLHc+VVr8ANI9t5sit565tsI4/xK3KWTUFE2e6QiangUkh3B0jihzmGnNrRsQ==}
+
+ peek-readable@4.1.0:
+ resolution: {integrity: sha512-ZI3LnwUv5nOGbQzD9c2iDG6toheuXSZP5esSHBjopsXH4dg19soufvpUGA3uohi5anFtGb2lhAVdHzH6R/Evvg==}
+ engines: {node: '>=8'}
+
+ peek-readable@5.3.1:
+ resolution: {integrity: sha512-GVlENSDW6KHaXcd9zkZltB7tCLosKB/4Hg0fqBJkAoBgYG2Tn1xtMgXtSUuMU9AK/gCm/tTdT8mgAeF4YNeeqw==}
+ engines: {node: '>=14.16'}
+
+ pend@1.2.0:
+ resolution: {integrity: sha512-F3asv42UuXchdzt+xXqfW1OGlVBe+mxa2mqI0pg5yAHZPvFmY3Y6drSf/GQ1A86WgWEN9Kzh/WrgKa6iGcHXLg==}
+
+ performance-now@2.1.0:
+ resolution: {integrity: sha512-7EAHlyLHI56VEIdK57uwHdHKIaAGbnXPiw0yWbarQZOKaKpvUIgW0jWRVLiatnM+XXlSwsanIBH/hzGMJulMow==}
+
+ pg-cloudflare@1.1.1:
+ resolution: {integrity: sha512-xWPagP/4B6BgFO+EKz3JONXv3YDgvkbVrGw2mTo3D6tVDQRh1e7cqVGvyR3BE+eQgAvx1XhW/iEASj4/jCWl3Q==}
+
+ pg-connection-string@2.7.0:
+ resolution: {integrity: sha512-PI2W9mv53rXJQEOb8xNR8lH7Hr+EKa6oJa38zsK0S/ky2er16ios1wLKhZyxzD7jUReiWokc9WK5nxSnC7W1TA==}
+
+ pg-format@1.0.4:
+ resolution: {integrity: sha512-YyKEF78pEA6wwTAqOUaHIN/rWpfzzIuMh9KdAhc3rSLQ/7zkRFcCgYBAEGatDstLyZw4g0s9SNICmaTGnBVeyw==}
+ engines: {node: '>=4.0'}
+
+ pg-int8@1.0.1:
+ resolution: {integrity: sha512-WCtabS6t3c8SkpDBUlb1kjOs7l66xsGdKpIPZsg4wR+B3+u9UAum2odSsF9tnvxg80h4ZxLWMy4pRjOsFIqQpw==}
+ engines: {node: '>=4.0.0'}
+
+ pg-pool@3.7.0:
+ resolution: {integrity: sha512-ZOBQForurqh4zZWjrgSwwAtzJ7QiRX0ovFkZr2klsen3Nm0aoh33Ls0fzfv3imeH/nw/O27cjdz5kzYJfeGp/g==}
+ peerDependencies:
+ pg: '>=8.0'
+
+ pg-protocol@1.7.0:
+ resolution: {integrity: sha512-hTK/mE36i8fDDhgDFjy6xNOG+LCorxLG3WO17tku+ij6sVHXh1jQUJ8hYAnRhNla4QVD2H8er/FOjc/+EgC6yQ==}
+
+ pg-types@2.2.0:
+ resolution: {integrity: sha512-qTAAlrEsl8s4OiEQY69wDvcMIdQN6wdz5ojQiOy6YRMuynxenON0O5oCpJI6lshc6scgAY8qvJ2On/p+CXY0GA==}
+ engines: {node: '>=4'}
+
+ pg@8.13.1:
+ resolution: {integrity: sha512-OUir1A0rPNZlX//c7ksiu7crsGZTKSOXJPgtNiHGIlC9H0lO+NC6ZDYksSgBYY/thSWhnSRBv8w1lieNNGATNQ==}
+ engines: {node: '>= 8.0.0'}
+ peerDependencies:
+ pg-native: '>=3.0.1'
+ peerDependenciesMeta:
+ pg-native:
+ optional: true
+
+ pgpass@1.0.5:
+ resolution: {integrity: sha512-FdW9r/jQZhSeohs1Z3sI1yxFQNFvMcnmfuj4WBMUTxOrAyLMaTcE1aAMBiTlbMNaXvBCQuVi0R7hd8udDSP7ug==}
+
+ phone@3.1.53:
+ resolution: {integrity: sha512-+0sMjlxjcm1rjUDRLzXW06vRg/SePwa+MubuSt9WhHoUziGrGHjuC/tfFYfh2oXKU/dcckwCyMUMDAOaVArb6w==}
+ engines: {node: '>=12'}
+
+ picocolors@0.2.1:
+ resolution: {integrity: sha512-cMlDqaLEqfSaW8Z7N5Jw+lyIW869EzT73/F5lhtY9cLGoVxSXznfgfXMO0Z5K0o0Q2TkTXq+0KFsdnSe3jDViA==}
+
+ picocolors@1.1.1:
+ resolution: {integrity: sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==}
+
+ picomatch@2.3.1:
+ resolution: {integrity: sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==}
+ engines: {node: '>=8.6'}
+
+ picomatch@4.0.2:
+ resolution: {integrity: sha512-M7BAV6Rlcy5u+m6oPhAPFgJTzAioX/6B0DxyvDlo9l8+T3nLKbrczg2WLUyzd45L8RqfUMyGPzekbMvX2Ldkwg==}
+ engines: {node: '>=12'}
+
+ pidtree@0.5.0:
+ resolution: {integrity: sha512-9nxspIM7OpZuhBxPg73Zvyq7j1QMPMPsGKTqRc2XOaFQauDvoNz9fM1Wdkjmeo7l9GXOZiRs97sPkuayl39wjA==}
+ engines: {node: '>=0.10'}
+ hasBin: true
+
+ pify@4.0.1:
+ resolution: {integrity: sha512-uB80kBFb/tfd68bVleG9T5GGsGPjJrLAUpR5PZIrhBnIaRTQRjqdJSsIKkOP6OAIFbj7GOrcudc5pNjZ+geV2g==}
+ engines: {node: '>=6'}
+
+ pipedrive@13.3.4:
+ resolution: {integrity: sha512-4/o4wNFBd4rlN4oKlUfYc4NDuWhNwFUT0F/oPdRUh5xev7EoiMj0NgjEansiqyC3OvvGUjij7DQu09+MQBvjmA==}
+
+ pirates@4.0.6:
+ resolution: {integrity: sha512-saLsH7WeYYPiD25LDuLRRY/i+6HaPYr6G1OUlN39otzkSTxKnubR9RTxS3/Kk50s1g2JTgFwWQDQyplC5/SHZg==}
+ engines: {node: '>= 6'}
+
+ pkg-dir@4.2.0:
+ resolution: {integrity: sha512-HRDzbaKjC+AOWVXxAU/x54COGeIv9eb+6CkDSQoNTt4XyWoIJvuPsXizxu/Fr23EiekbtZwmh1IcIG/l/a10GQ==}
+ engines: {node: '>=8'}
+
+ pkg-dir@7.0.0:
+ resolution: {integrity: sha512-Ie9z/WINcxxLp27BKOCHGde4ITq9UklYKDzVo1nhk5sqGEXU3FpkwP5GM2voTGJkGd9B3Otl+Q4uwSOeSUtOBA==}
+ engines: {node: '>=14.16'}
+
+ pkg-types@1.2.1:
+ resolution: {integrity: sha512-sQoqa8alT3nHjGuTjuKgOnvjo4cljkufdtLMnO2LBP/wRwuDlo1tkaEdMxCRhyGRPacv/ztlZgDPm2b7FAmEvw==}
+
+ platform@1.3.6:
+ resolution: {integrity: sha512-fnWVljUchTro6RiCFvCXBbNhJc2NijN7oIQxbwsyL0buWJPG85v81ehlHI9fXrJsMNgTofEoWIQeClKpgxFLrg==}
+
+ playwright-core@1.41.2:
+ resolution: {integrity: sha512-VaTvwCA4Y8kxEe+kfm2+uUUw5Lubf38RxF7FpBxLPmGe5sdNkSg5e3ChEigaGrX7qdqT3pt2m/98LiyvU2x6CA==}
+ engines: {node: '>=16'}
+ hasBin: true
+
+ please-upgrade-node@3.2.0:
+ resolution: {integrity: sha512-gQR3WpIgNIKwBMVLkpMUeR3e1/E1y42bqDQZfql+kDeXd8COYfM8PQA4X6y7a8u9Ua9FHmsrrmirW2vHs45hWg==}
+
+ plivo@4.69.2:
+ resolution: {integrity: sha512-5AkMFV7s+oANgLgsxCxdI/SlFu9cf8TmDNFOpPnBULhH61GH9w73hdvLUJw982pGpXnBojcXWnuXAoZLXb0ddw==}
+
+ pluralize@8.0.0:
+ resolution: {integrity: sha512-Nc3IT5yHzflTfbjgqWcCPpo7DaKy4FnpB0l/zCAW0Tc7jxAiuqSxHasntB3D7887LSrA93kDJ9IXovxJYxyLCA==}
+ engines: {node: '>=4'}
+
+ pnpm@9.14.2:
+ resolution: {integrity: sha512-biuvd9Brk2IpQVLIUcTyeO3jerHro6Vf2jF6SheyCfTbuXP7JQp3q8Rjo0H8sfF/F8+iQJHE6zGc2g2bhCeDhw==}
+ engines: {node: '>=18.12'}
+ hasBin: true
+
+ pop-iterate@1.0.1:
+ resolution: {integrity: sha512-HRCx4+KJE30JhX84wBN4+vja9bNfysxg1y28l0DuJmkoaICiv2ZSilKddbS48pq50P8d2erAhqDLbp47yv3MbQ==}
+
+ possible-typed-array-names@1.0.0:
+ resolution: {integrity: sha512-d7Uw+eZoloe0EHDIYoe+bQ5WXnGMOpmiZFTuMWCwpjzzkL2nTjcKiAk4hh8TjnGye2TwWOk3UXucZ+3rbmBa8Q==}
+ engines: {node: '>= 0.4'}
+
+ postcss-resolve-nested-selector@0.1.6:
+ resolution: {integrity: sha512-0sglIs9Wmkzbr8lQwEyIzlDOOC9bGmfVKcJTaxv3vMmd3uo4o4DerC3En0bnmgceeql9BfC8hRkp7cg0fjdVqw==}
+
+ postcss-safe-parser@7.0.1:
+ resolution: {integrity: sha512-0AioNCJZ2DPYz5ABT6bddIqlhgwhpHZ/l65YAYo0BCIn0xiDpsnTHz0gnoTGk0OXZW0JRs+cDwL8u/teRdz+8A==}
+ engines: {node: '>=18.0'}
+ peerDependencies:
+ postcss: ^8.4.31
+
+ postcss-selector-parser@6.1.2:
+ resolution: {integrity: sha512-Q8qQfPiZ+THO/3ZrOrO0cJJKfpYCagtMUkXbnEfmgUjwXg6z/WBeOyS9APBBPCTSiDV+s4SwQGu8yFsiMRIudg==}
+ engines: {node: '>=4'}
+
+ postcss-value-parser@4.2.0:
+ resolution: {integrity: sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==}
+
+ postcss-values-parser@1.5.0:
+ resolution: {integrity: sha512-3M3p+2gMp0AH3da530TlX8kiO1nxdTnc3C6vr8dMxRLIlh8UYkz0/wcwptSXjhtx2Fr0TySI7a+BHDQ8NL7LaQ==}
+ engines: {node: '>=4'}
+
+ postcss@7.0.39:
+ resolution: {integrity: sha512-yioayjNbHn6z1/Bywyb2Y4s3yvDAeXGOyxqD+LnVOinq6Mdmd++SW2wUNVzavyyHxd6+DxzWGIuosg6P1Rj8uA==}
+ engines: {node: '>=6.0.0'}
+
+ postcss@8.4.31:
+ resolution: {integrity: sha512-PS08Iboia9mts/2ygV3eLpY5ghnUcfLV/EXTOW1E2qYxJKGGBUtNjN76FYHnMs36RmARn41bC0AZmn+rR0OVpQ==}
+ engines: {node: ^10 || ^12 || >=14}
+
+ postcss@8.4.49:
+ resolution: {integrity: sha512-OCVPnIObs4N29kxTjzLfUryOkvZEq+pf8jTF0lg8E7uETuWHA+v7j3c/xJmiqpX450191LlmZfUKkXxkTry7nA==}
+ engines: {node: ^10 || ^12 || >=14}
+
+ postgres-array@2.0.0:
+ resolution: {integrity: sha512-VpZrUqU5A69eQyW2c5CA1jtLecCsN2U/bD6VilrFDWq5+5UIEVO7nazS3TEcHf1zuPYO/sqGvUvW62g86RXZuA==}
+ engines: {node: '>=4'}
+
+ postgres-bytea@1.0.0:
+ resolution: {integrity: sha512-xy3pmLuQqRBZBXDULy7KbaitYqLcmxigw14Q5sj8QBVLqEwXfeybIKVWiqAXTlcvdvb0+xkOtDbfQMOf4lST1w==}
+ engines: {node: '>=0.10.0'}
+
+ postgres-date@1.0.7:
+ resolution: {integrity: sha512-suDmjLVQg78nMK2UZ454hAG+OAW+HQPZ6n++TNDUX+L0+uUlLywnoxJKDou51Zm+zTCjrCl0Nq6J9C5hP9vK/Q==}
+ engines: {node: '>=0.10.0'}
+
+ postgres-interval@1.2.0:
+ resolution: {integrity: sha512-9ZhXKM/rw350N1ovuWHbGxnGh/SNJ4cnxHiM0rxE4VN41wsg8P8zWn9hv/buK00RP4WvlOyr/RBDiptyxVbkZQ==}
+ engines: {node: '>=0.10.0'}
+
+ precinct@6.3.1:
+ resolution: {integrity: sha512-JAwyLCgTylWminoD7V0VJwMElWmwrVSR6r9HaPWCoswkB4iFzX7aNtO7VBfAVPy+NhmjKb8IF8UmlWJXzUkOIQ==}
+ engines: {node: '>=6.0.0'}
+ hasBin: true
+
+ precond@0.2.3:
+ resolution: {integrity: sha512-QCYG84SgGyGzqJ/vlMsxeXd/pgL/I94ixdNFyh1PusWmTCyVfPJjZ1K1jvHtsbfnXQs2TSkEP2fR7QiMZAnKFQ==}
+ engines: {node: '>= 0.6'}
+
+ prelude-ls@1.1.2:
+ resolution: {integrity: sha512-ESF23V4SKG6lVSGZgYNpbsiaAkdab6ZgOxe52p7+Kid3W3u3bxR4Vfd/o21dmN7jSt0IwgZ4v5MUd26FEtXE9w==}
+ engines: {node: '>= 0.8.0'}
+
+ prelude-ls@1.2.1:
+ resolution: {integrity: sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==}
+ engines: {node: '>= 0.8.0'}
+
+ prepend-http@1.0.4:
+ resolution: {integrity: sha512-PhmXi5XmoyKw1Un4E+opM2KcsJInDvKyuOumcjjw3waw86ZNjHwVUOOWLc4bCzLdcKNaWBH9e99sbWzDQsVaYg==}
+ engines: {node: '>=0.10.0'}
+
+ prettier-linter-helpers@1.0.0:
+ resolution: {integrity: sha512-GbK2cP9nraSSUF9N2XwUwqfzlAFlMNYYl+ShE/V+H8a9uNl/oUqB1w2EL54Jh0OlyRSd8RfWYJ3coVS4TROP2w==}
+ engines: {node: '>=6.0.0'}
+
+ prettier@2.8.8:
+ resolution: {integrity: sha512-tdN8qQGvNjw4CHbY+XXk0JgCXn9QiF21a55rBe5LJAU+kDyC4WQn4+awm2Xfk2lQMk5fKup9XgzTZtGkjBdP9Q==}
+ engines: {node: '>=10.13.0'}
+ hasBin: true
+
+ prettier@3.3.3:
+ resolution: {integrity: sha512-i2tDNA0O5IrMO757lfrdQZCc2jPNDVntV0m/+4whiDfWaTKfMNgR7Qz0NAeGz/nRqF4m5/6CLzbP4/liHt12Ew==}
+ engines: {node: '>=14'}
+ hasBin: true
+
+ pretty-format@27.5.1:
+ resolution: {integrity: sha512-Qb1gy5OrP5+zDf2Bvnzdl3jsTf1qXVMazbvCoKhtKqVs4/YK4ozX4gKQJJVyNe+cajNPn0KoC0MC3FUmaHWEmQ==}
+ engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0}
+
+ pretty-format@29.7.0:
+ resolution: {integrity: sha512-Pdlw/oPxN+aXdmM9R00JVC9WVFoCLTKJvDVLgmJ+qAffBMxsV85l/Lu7sNx4zSzPyoL2euImuEwHhOXdEgNFZQ==}
+ engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
+
+ printj@1.3.1:
+ resolution: {integrity: sha512-GA3TdL8szPK4AQ2YnOe/b+Y1jUFwmmGMMK/qbY7VcE3Z7FU8JstbKiKRzO6CIiAKPhTO8m01NoQ0V5f3jc4OGg==}
+ engines: {node: '>=0.8'}
+ hasBin: true
+
+ process-nextick-args@2.0.1:
+ resolution: {integrity: sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag==}
+
+ process@0.11.10:
+ resolution: {integrity: sha512-cdGef/drWFoydD1JsMzuFf8100nZl+GT+yacc2bEced5f9Rjk4z+WtFUTBu9PhOi9j/jfmBPu0mMEY4wIdAF8A==}
+ engines: {node: '>= 0.6.0'}
+
+ progress@2.0.3:
+ resolution: {integrity: sha512-7PiHtLll5LdnKIMw100I+8xJXR5gW2QwWYkT6iJva0bXitZKa/XMrSbdmg3r2Xnaidz9Qumd0VPaMrZlF9V9sA==}
+ engines: {node: '>=0.4.0'}
+
+ promise-polyfill@8.3.0:
+ resolution: {integrity: sha512-H5oELycFml5yto/atYqmjyigJoAo3+OXwolYiH7OfQuYlAqhxNvTfiNMbV9hsC6Yp83yE5r2KTVmtrG6R9i6Pg==}
+
+ promise-retry@2.0.1:
+ resolution: {integrity: sha512-y+WKFlBR8BGXnsNlIHFGPZmyDf3DFMoLhaflAnyZgV6rG6xu+JwesTo2Q9R6XwYmtmwAFCkAk3e35jEdoeh/3g==}
+ engines: {node: '>=10'}
+
+ promise.any@2.0.6:
+ resolution: {integrity: sha512-Ew/MrPtTjiHnnki0AA2hS2o65JaZ5n+5pp08JSyWWUdeOGF4F41P+Dn+rdqnaOV/FTxhR6eBDX412luwn3th9g==}
+ engines: {node: '>= 0.4'}
+
+ prompts@2.4.2:
+ resolution: {integrity: sha512-NxNv/kLguCA7p3jE8oL2aEBsrJWgAakBpgmgK6lpPWV+WuOmY6r2/zbAVnP+T8bQlA0nzHXSJSJW0Hq7ylaD2Q==}
+ engines: {node: '>= 6'}
+
+ prop-types@15.8.1:
+ resolution: {integrity: sha512-oj87CgZICdulUohogVAR7AjlC0327U4el4L6eAvOqCeudMDVU0NThNaV+b9Df4dXgSP1gXMTnPdhfe/2qDH5cg==}
+
+ property-information@6.5.0:
+ resolution: {integrity: sha512-PgTgs/BlvHxOu8QuEN7wi5A0OmXaBcHpmCSTehcs6Uuu9IkDIEo13Hy7n898RHfrQ49vKCoGeWZSaAK01nwVig==}
+
+ proto3-json-serializer@0.1.9:
+ resolution: {integrity: sha512-A60IisqvnuI45qNRygJjrnNjX2TMdQGMY+57tR3nul3ZgO2zXkR9OGR8AXxJhkqx84g0FTnrfi3D5fWMSdANdQ==}
+
+ proto3-json-serializer@1.1.1:
+ resolution: {integrity: sha512-AwAuY4g9nxx0u52DnSMkqqgyLHaW/XaPLtaAo3y/ZCfeaQB/g4YDH4kb8Wc/mWzWvu0YjOznVnfn373MVZZrgw==}
+ engines: {node: '>=12.0.0'}
+
+ proto3-json-serializer@2.0.2:
+ resolution: {integrity: sha512-SAzp/O4Yh02jGdRc+uIrGoe87dkN/XtwxfZ4ZyafJHymd79ozp5VG5nyZ7ygqPM5+cpLDjjGnYFUkngonyDPOQ==}
+ engines: {node: '>=14.0.0'}
+
+ protobufjs-cli@1.1.1:
+ resolution: {integrity: sha512-VPWMgIcRNyQwWUv8OLPyGQ/0lQY/QTQAVN5fh+XzfDwsVw1FZ2L3DM/bcBf8WPiRz2tNpaov9lPZfNcmNo6LXA==}
+ engines: {node: '>=12.0.0'}
+ hasBin: true
+ peerDependencies:
+ protobufjs: ^7.0.0
+
+ protobufjs@6.11.3:
+ resolution: {integrity: sha512-xL96WDdCZYdU7Slin569tFX712BxsxslWwAfAhCYjQKGTq7dAU91Lomy6nLLhh/dyGhk/YH4TwTSRxTzhuHyZg==}
+ hasBin: true
+
+ protobufjs@6.11.4:
+ resolution: {integrity: sha512-5kQWPaJHi1WoCpjTGszzQ32PG2F4+wRY6BmAT4Vfw56Q2FZ4YZzK20xUYQH4YkfehY1e6QSICrJquM6xXZNcrw==}
+ hasBin: true
+
+ protobufjs@7.2.4:
+ resolution: {integrity: sha512-AT+RJgD2sH8phPmCf7OUZR8xGdcJRga4+1cOaXJ64hvcSkVhNcRHOwIxUatPH15+nj59WAGTDv3LSGZPEQbJaQ==}
+ engines: {node: '>=12.0.0'}
+
+ protobufjs@7.4.0:
+ resolution: {integrity: sha512-mRUWCc3KUU4w1jU8sGxICXH/gNS94DvI1gxqDvBzhj1JpcsimQkYiOJfwsPUykUI5ZaspFbSgmBLER8IrQ3tqw==}
+ engines: {node: '>=12.0.0'}
+
+ proxy-agent@5.0.0:
+ resolution: {integrity: sha512-gkH7BkvLVkSfX9Dk27W6TyNOWWZWRilRfk1XxGNWOYJ2TuedAv1yFpCaU9QSBmBe716XOTNpYNOzhysyw8xn7g==}
+ engines: {node: '>= 8'}
+
+ proxy-agent@6.3.1:
+ resolution: {integrity: sha512-Rb5RVBy1iyqOtNl15Cw/llpeLH8bsb37gM1FUfKQ+Wck6xHlbAhWGUFiTRHtkjqGTA5pSHz6+0hrPW/oECihPQ==}
+ engines: {node: '>= 14'}
+
+ proxy-from-env@1.1.0:
+ resolution: {integrity: sha512-D+zkORCbA9f1tdWRK0RaCR3GPv50cMxcrz4X8k5LTSUD1Dkw47mKJEZQNunItRTkWwgtaUSo1RVFRIG9ZXiFYg==}
+
+ ps-tree@1.2.0:
+ resolution: {integrity: sha512-0VnamPPYHl4uaU/nSFeZZpR21QAWRz+sRv4iW9+v/GS/J5U5iZB5BNN6J0RMoOvdx2gWM2+ZFMIm58q24e4UYA==}
+ engines: {node: '>= 0.10'}
+ hasBin: true
+
+ psl@1.13.0:
+ resolution: {integrity: sha512-BFwmFXiJoFqlUpZ5Qssolv15DMyc84gTBds1BjsV1BfXEo1UyyD7GsmN67n7J77uRhoSNW1AXtXKPLcBFQn9Aw==}
+
+ pstree.remy@1.1.8:
+ resolution: {integrity: sha512-77DZwxQmxKnu3aR542U+X8FypNzbfJ+C5XQDk3uWjWxn6151aIMGthWYRXTqT1E5oJvg+ljaa2OJi+VfvCOQ8w==}
+
+ pump@2.0.1:
+ resolution: {integrity: sha512-ruPMNRkN3MHP1cWJc9OWr+T/xDP0jhXYCLfJcBuX54hhfIBnaQmAUMfDcG4DM5UMWByBbJY69QSphm3jtDKIkA==}
+
+ pump@3.0.2:
+ resolution: {integrity: sha512-tUPXtzlGM8FE3P0ZL6DVs/3P58k9nk8/jZeQCurTJylQA8qFYzHFfhBJkuqyE0FifOsQ0uKWekiZ5g8wtr28cw==}
+
+ pumpify@2.0.1:
+ resolution: {integrity: sha512-m7KOje7jZxrmutanlkS1daj1dS6z6BgslzOXmcSEpIlCxM3VJH7lG5QLeck/6hgF6F4crFf01UtQmNsJfweTAw==}
+
+ punycode.js@2.3.1:
+ resolution: {integrity: sha512-uxFIHU0YlHYhDQtV4R9J6a52SLx28BCjT+4ieh7IGbgwVJWO+km431c4yRlREUAsAmt/uMjQUyQHNEPf0M39CA==}
+ engines: {node: '>=6'}
+
+ punycode@1.4.1:
+ resolution: {integrity: sha512-jmYNElW7yvO7TV33CjSmvSiE2yco3bV2czu/OzDKdMNVZQWfxCblURLhf+47syQRBntjfLdd/H0egrzIG+oaFQ==}
+
+ punycode@2.3.1:
+ resolution: {integrity: sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg==}
+ engines: {node: '>=6'}
+
+ puppeteer-core@19.11.1:
+ resolution: {integrity: sha512-qcuC2Uf0Fwdj9wNtaTZ2OvYRraXpAK+puwwVW8ofOhOgLPZyz1c68tsorfIZyCUOpyBisjr+xByu7BMbEYMepA==}
+ engines: {node: '>=14.14.0'}
+ peerDependencies:
+ typescript: '>= 4.7.4'
+ peerDependenciesMeta:
+ typescript:
+ optional: true
+
+ puppeteer-core@21.11.0:
+ resolution: {integrity: sha512-ArbnyA3U5SGHokEvkfWjW+O8hOxV1RSJxOgriX/3A4xZRqixt9ZFHD0yPgZQF05Qj0oAqi8H/7stDorjoHY90Q==}
+ engines: {node: '>=16.13.2'}
+
+ pure-rand@6.1.0:
+ resolution: {integrity: sha512-bVWawvoZoBYpp6yIoQtQXHZjmz35RSVHnUOTefl8Vcjr8snTPY1wnpSPMWekcFwbxI6gtmT7rSYPFvz71ldiOA==}
+
+ putout@36.13.1:
+ resolution: {integrity: sha512-c0c9s04xmMgG4w2yljG/WsIupD+O1j4COUqzSkaVV1iXmyA9IIjBR5wl/YFsZyJpUE5zd78+FEbis1ruzbYl/w==}
+ engines: {node: '>=18'}
+ hasBin: true
+
+ python-struct@1.1.3:
+ resolution: {integrity: sha512-UsI/mNvk25jRpGKYI38Nfbv84z48oiIWwG67DLVvjRhy8B/0aIK+5Ju5WOHgw/o9rnEmbAS00v4rgKFQeC332Q==}
+
+ q@1.5.1:
+ resolution: {integrity: sha512-kV/CThkXo6xyFEZUugw/+pIOywXcDbFYgSct5cT3gqlbkBE1SJdwy6UQoZvodiWF/ckQLZyDE/Bu1M6gVu5lVw==}
+ engines: {node: '>=0.6.0', teleport: '>=0.2.0'}
+ deprecated: |-
+ You or someone you depend on is using Q, the JavaScript Promise library that gave JavaScript developers strong feelings about promises. They can almost certainly migrate to the native JavaScript promise now. Thank you literally everyone for joining me in this bet against the odds. Be excellent to each other.
+
+ (For a CapTP with native promises, see @endo/eventual-send and @endo/captp)
+
+ q@2.0.3:
+ resolution: {integrity: sha512-gv6vLGcmAOg96/fgo3d9tvA4dJNZL3fMyBqVRrGxQ+Q/o4k9QzbJ3NQF9cOO/71wRodoXhaPgphvMFU68qVAJQ==}
+ deprecated: |-
+ You or someone you depend on is using Q, the JavaScript Promise library that gave JavaScript developers strong feelings about promises. They can almost certainly migrate to the native JavaScript promise now. Thank you literally everyone for joining me in this bet against the odds. Be excellent to each other.
+
+ (For a CapTP with native promises, see @endo/eventual-send and @endo/captp)
+
+ qs@6.11.2:
+ resolution: {integrity: sha512-tDNIz22aBzCDxLtVH++VnTfzxlfeK5CbqohpSqpJgj1Wg/cQbStNAz3NuqCs5vV+pjBsK4x4pN9HlVh7rcYRiA==}
+ engines: {node: '>=0.6'}
+
+ qs@6.13.0:
+ resolution: {integrity: sha512-+38qI9SOr8tfZ4QmJNplMUxqjbe7LKvvZgWdExBOmd+egZTtjLB67Gu0HRX3u/XOq7UU2Nx6nsjvS16Z9uwfpg==}
+ engines: {node: '>=0.6'}
+
+ qs@6.13.1:
+ resolution: {integrity: sha512-EJPeIn0CYrGu+hli1xilKAPXODtJ12T0sP63Ijx2/khC2JtuaN3JyNIpvmnkmaEtha9ocbG4A4cMcr+TvqvwQg==}
+ engines: {node: '>=0.6'}
+
+ qs@6.5.3:
+ resolution: {integrity: sha512-qxXIEh4pCGfHICj1mAJQ2/2XVZkjCDTcEgfoSQxc/fYivUZxTkk7L3bDBJSoNrEzXI17oUO5Dp07ktqE5KzczA==}
+ engines: {node: '>=0.6'}
+
+ query-string@6.14.1:
+ resolution: {integrity: sha512-XDxAeVmpfu1/6IjyT/gXHOl+S0vQ9owggJ30hhWKdHAsNPOcasn5o9BW0eejZqL2e4vMjhAxoW3jVHcD6mbcYw==}
+ engines: {node: '>=6'}
+
+ query-string@7.1.3:
+ resolution: {integrity: sha512-hh2WYhq4fi8+b+/2Kg9CEge4fDPvHS534aOOvOZeQ3+Vf2mCFsaFBYj0i+iXcAq6I9Vzp5fjMFBlONvayDC1qg==}
+ engines: {node: '>=6'}
+
+ query-string@8.2.0:
+ resolution: {integrity: sha512-tUZIw8J0CawM5wyGBiDOAp7ObdRQh4uBor/fUR9ZjmbZVvw95OD9If4w3MQxr99rg0DJZ/9CIORcpEqU5hQG7g==}
+ engines: {node: '>=14.16'}
+
+ querystring@0.2.1:
+ resolution: {integrity: sha512-wkvS7mL/JMugcup3/rMitHmd9ecIGd2lhFhK9N3UUQ450h66d1r3Y9nvXzQAW1Lq+wyx61k/1pfKS5KuKiyEbg==}
+ engines: {node: '>=0.4.x'}
+ deprecated: The querystring API is considered Legacy. new code should use the URLSearchParams API instead.
+
+ querystringify@2.2.0:
+ resolution: {integrity: sha512-FIqgj2EUvTa7R50u0rGsyTftzjYmv/a3hO345bZNrqabNqjtgiDMgmo4mkUjd+nzU5oF3dClKqFIPUKybUyqoQ==}
+
+ queue-microtask@1.2.3:
+ resolution: {integrity: sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==}
+
+ queue-tick@1.0.1:
+ resolution: {integrity: sha512-kJt5qhMxoszgU/62PLP1CJytzd2NKetjSRnyuj31fDd3Rlcz3fzlFdFLD1SItunPwyqEOkca6GbV612BWfaBag==}
+
+ queue@6.0.2:
+ resolution: {integrity: sha512-iHZWu+q3IdFZFX36ro/lKBkSvfkztY5Y7HMiPlOUjhupPcG2JMfst2KKEpu5XndviX/3UhFbRngUPNKtgvtZiA==}
+
+ quick-lru@5.1.1:
+ resolution: {integrity: sha512-WuyALRjWPDGtt/wzJiadO5AXY+8hZ80hVpe6MyivgraREW751X3SbhRvG3eLKOYN+8VEvqLcf3wdnt44Z4S4SA==}
+ engines: {node: '>=10'}
+
+ quick-lru@6.1.2:
+ resolution: {integrity: sha512-AAFUA5O1d83pIHEhJwWCq/RQcRukCkn/NSm2QsTEMle5f2hP0ChI2+3Xb051PZCkLryI/Ir1MVKviT2FIloaTQ==}
+ engines: {node: '>=12'}
+
+ quotemeta@0.0.0:
+ resolution: {integrity: sha512-1XGObUh7RN5b58vKuAsrlfqT+Rc4vmw8N4pP9gFCq1GFlTdV0Ex/D2Ro1Drvrqj++HPi3ig0Np17XPslELeMRA==}
+
+ railroad-diagrams@1.0.0:
+ resolution: {integrity: sha512-cz93DjNeLY0idrCNOH6PviZGRN9GJhsdm9hpn1YCS879fj4W+x5IFJhhkRZcwVgMmFF7R82UA/7Oh+R8lLZg6A==}
+
+ randexp@0.4.6:
+ resolution: {integrity: sha512-80WNmd9DA0tmZrw9qQa62GPPWfuXJknrmVmLcxvq4uZBdYqb1wYoKTmnlGUchvVWe0XiLupYkBoXVOxz3C8DYQ==}
+ engines: {node: '>=0.12'}
+
+ raw-body@2.5.2:
+ resolution: {integrity: sha512-8zGqypfENjCIqGhgXToC8aB2r7YrBX+AQAfIPs/Mlk+BtPTztOvTS01NRW/3Eh60J+a48lt8qsCzirQ6loCVfA==}
+ engines: {node: '>= 0.8'}
+
+ react-dom@18.3.1:
+ resolution: {integrity: sha512-5m4nQKp+rZRb09LNH59GM4BxTh9251/ylbKIbpe7TpGxfJ+9kv6BLkLBXIjjspbgbnIBNqlI23tRnTWT0snUIw==}
+ peerDependencies:
+ react: ^18.3.1
+
+ react-dom@19.0.0-rc-66855b96-20241106:
+ resolution: {integrity: sha512-D25vdaytZ1wFIRiwNU98NPQ/upS2P8Co4/oNoa02PzHbh8deWdepjm5qwZM/46OdSiGv4WSWwxP55RO9obqJEQ==}
+ peerDependencies:
+ react: 19.0.0-rc-66855b96-20241106
+
+ react-is@16.13.1:
+ resolution: {integrity: sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ==}
+
+ react-is@17.0.2:
+ resolution: {integrity: sha512-w2GsyukL62IJnlaff/nRegPQR94C/XXamvMWmSHRJ4y7Ts/4ocGRmTHvOs8PSE6pB3dWOrD/nueuU5sduBsQ4w==}
+
+ react-is@18.3.1:
+ resolution: {integrity: sha512-/LLMVyas0ljjAtoYiPqYiL8VWXzUUdThrmU5+n20DZv+a+ClRoevUzw5JxU+Ieh5/c87ytoTBV9G1FiKfNJdmg==}
+
+ react-markdown@9.0.1:
+ resolution: {integrity: sha512-186Gw/vF1uRkydbsOIkcGXw7aHq0sZOCRFFjGrr7b9+nVZg4UfA4enXCaxm4fUzecU38sWfrNDitGhshuU7rdg==}
+ peerDependencies:
+ '@types/react': '>=18'
+ react: '>=18'
+
+ react-select@5.8.3:
+ resolution: {integrity: sha512-lVswnIq8/iTj1db7XCG74M/3fbGB6ZaluCzvwPGT5ZOjCdL/k0CLWhEK0vCBLuU5bHTEf6Gj8jtSvi+3v+tO1w==}
+ peerDependencies:
+ react: ^16.8.0 || ^17.0.0 || ^18.0.0
+ react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0
+
+ react-transition-group@4.4.5:
+ resolution: {integrity: sha512-pZcd1MCJoiKiBR2NRxeCRg13uCXbydPnmB4EOeRrY7480qNWO8IIgQG6zlDkm6uRMsURXPuKq0GWtiM59a5Q6g==}
+ peerDependencies:
+ react: '>=16.6.0'
+ react-dom: '>=16.6.0'
+
+ react@18.3.1:
+ resolution: {integrity: sha512-wS+hAgJShR0KhEvPJArfuPVN1+Hz1t0Y6n5jLrGQbkb4urgPE/0Rve+1kMB1v/oWgHgm4WIcV+i7F2pTVj+2iQ==}
+ engines: {node: '>=0.10.0'}
+
+ react@19.0.0-rc-66855b96-20241106:
+ resolution: {integrity: sha512-klH7xkT71SxRCx4hb1hly5FJB21Hz0ACyxbXYAECEqssUjtJeFUAaI2U1DgJAzkGEnvEm3DkxuBchMC/9K4ipg==}
+ engines: {node: '>=0.10.0'}
+
+ read-package-json-fast@2.0.3:
+ resolution: {integrity: sha512-W/BKtbL+dUjTuRL2vziuYhp76s5HZ9qQhd/dKfWIZveD0O40453QNyZhC0e63lqZrAQ4jiOapVoeJ7JrszenQQ==}
+ engines: {node: '>=10'}
+
+ read-pkg@5.2.0:
+ resolution: {integrity: sha512-Ug69mNOpfvKDAc2Q8DRpMjjzdtrnv9HcSMX+4VsZxD1aZ6ZzrIE7rlzXBtWTyhULSMKg076AW6WR5iZpD0JiOg==}
+ engines: {node: '>=8'}
+
+ readable-stream@1.0.33:
+ resolution: {integrity: sha512-72KxhcKi8bAvHP/cyyWSP+ODS5ef0DIRs0OzrhGXw31q41f19aoELCbvd42FjhpyEDxQMRiiC5rq9rfE5PzTqg==}
+
+ readable-stream@1.1.14:
+ resolution: {integrity: sha512-+MeVjFf4L44XUkhM1eYbD8fyEsxcV81pqMSR5gblfcLCHfZvbrqy4/qYHE+/R5HoBUT11WV5O08Cr1n3YXkWVQ==}
+
+ readable-stream@2.3.8:
+ resolution: {integrity: sha512-8p0AUk4XODgIewSi0l8Epjs+EVnWiK7NoDIEGU0HhE7+ZyY8D1IMY7odu5lRrFXGg71L15KG8QrPmum45RTtdA==}
+
+ readable-stream@3.6.2:
+ resolution: {integrity: sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==}
+ engines: {node: '>= 6'}
+
+ readable-stream@4.5.2:
+ resolution: {integrity: sha512-yjavECdqeZ3GLXNgRXgeQEdz9fvDDkNKyHnbHRFtOr7/LcfgBcmct7t/ET+HaCTqfh06OzoAxrkN/IfjJBVe+g==}
+ engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
+
+ readable-web-to-node-stream@3.0.2:
+ resolution: {integrity: sha512-ePeK6cc1EcKLEhJFt/AebMCLL+GgSKhuygrZ/GLaKZYEecIgIECf4UaUuaByiGtzckwR4ain9VzUh95T1exYGw==}
+ engines: {node: '>=8'}
+
+ readdirp@3.6.0:
+ resolution: {integrity: sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==}
+ engines: {node: '>=8.10.0'}
+
+ recast@0.23.9:
+ resolution: {integrity: sha512-Hx/BGIbwj+Des3+xy5uAtAbdCyqK9y9wbBcDFDYanLS9JnMqf7OeF87HQwUimE87OEc72mr6tkKUKMBBL+hF9Q==}
+ engines: {node: '>= 4'}
+
+ recurly@3.30.0:
+ resolution: {integrity: sha512-SVW5pke3MLe+QkIx3Y+NJD8UfR30eBrM90Vkrv6o3FvDPZBvSNpSadTay1SzLo+SmM31rBSeqELyX4zBDTd/Nw==}
+
+ redeyed@0.4.4:
+ resolution: {integrity: sha512-pnk1vsaNLu1UAAClKsImKz9HjBvg9i8cbRqTRzJbiCjGF0fZSMqpdcA5W3juO3c4etFvTrabECkq9wjC45ZyxA==}
+
+ redeyed@2.1.1:
+ resolution: {integrity: sha512-FNpGGo1DycYAdnrKFxCMmKYgo/mILAqtRYbkdQD8Ep/Hk2PQ5+aEAEx+IU713RTDmuBaH0c8P5ZozurNu5ObRQ==}
+
+ reduce-flatten@2.0.0:
+ resolution: {integrity: sha512-EJ4UNY/U1t2P/2k6oqotuX2Cc3T6nxJwsM0N0asT7dhrtH1ltUxDn4NalSYmPE2rCkVpcf/X6R0wDwcFpzhd4w==}
+ engines: {node: '>=6'}
+
+ reflect-metadata@0.1.14:
+ resolution: {integrity: sha512-ZhYeb6nRaXCfhnndflDK8qI6ZQ/YcWZCISRAWICW9XYqMUwjZM9Z0DveWX/ABN01oxSHwVxKQmxeYZSsm0jh5A==}
+
+ reflect.getprototypeof@1.0.6:
+ resolution: {integrity: sha512-fmfw4XgoDke3kdI6h4xcUz1dG8uaiv5q9gcEwLS4Pnth2kxT+GZ7YehS1JTMGBQmtV7Y4GFGbs2re2NqhdozUg==}
+ engines: {node: '>= 0.4'}
+
+ reftools@1.1.9:
+ resolution: {integrity: sha512-OVede/NQE13xBQ+ob5CKd5KyeJYU2YInb1bmV4nRoOfquZPkAkxuOXicSe1PvqIuZZ4kD13sPKBbR7UFDmli6w==}
+
+ regenerate-unicode-properties@10.2.0:
+ resolution: {integrity: sha512-DqHn3DwbmmPVzeKj9woBadqmXxLvQoQIwu7nopMc72ztvxVmVk2SBhSnx67zuye5TP+lJsb/TBQsjLKhnDf3MA==}
+ engines: {node: '>=4'}
+
+ regenerate@1.4.2:
+ resolution: {integrity: sha512-zrceR/XhGYU/d/opr2EKO7aRHUeiBI8qjtfHqADTwZd6Szfy16la6kqD0MIUs5z5hx6AaKa+PixpPrR289+I0A==}
+
+ regenerator-runtime@0.14.1:
+ resolution: {integrity: sha512-dYnhHh0nJoMfnkZs6GmmhFknAGRrLznOu5nc9ML+EJxGvrx6H7teuevqVqCuPcPK//3eDrrjQhehXVx9cnkGdw==}
+
+ regenerator-transform@0.15.2:
+ resolution: {integrity: sha512-hfMp2BoF0qOk3uc5V20ALGDS2ddjQaLrdl7xrGXvAIow7qeWRM2VA2HuCHkUKk9slq3VwEwLNK3DFBqDfPGYtg==}
+
+ regexp-tree@0.1.27:
+ resolution: {integrity: sha512-iETxpjK6YoRWJG5o6hXLwvjYAoW+FEZn9os0PD/b6AP6xQwsa/Y7lCVgIixBbUPMfhu+i2LtdeAqVTgGlQarfA==}
+ hasBin: true
+
+ regexp.prototype.flags@1.5.3:
+ resolution: {integrity: sha512-vqlC04+RQoFalODCbCumG2xIOvapzVMHwsyIGM/SIE8fRhFFsXeH8/QQ+s0T0kDAhKc4k30s73/0ydkHQz6HlQ==}
+ engines: {node: '>= 0.4'}
+
+ regexpu-core@6.2.0:
+ resolution: {integrity: sha512-H66BPQMrv+V16t8xtmq+UC0CBpiTBA60V8ibS1QVReIp8T1z8hwFxqcGzm9K6lgsN7sB5edVH8a+ze6Fqm4weA==}
+ engines: {node: '>=4'}
+
+ regjsgen@0.8.0:
+ resolution: {integrity: sha512-RvwtGe3d7LvWiDQXeQw8p5asZUmfU1G/l6WbUXeHta7Y2PEIvBTwH6E2EfmYUK8pxcxEdEmaomqyp0vZZ7C+3Q==}
+
+ regjsparser@0.12.0:
+ resolution: {integrity: sha512-cnE+y8bz4NhMjISKbgeVJtqNbtf5QpjZP+Bslo+UqkIt9QPnX9q095eiRRASJG1/tz6dlNr6Z5NsBiWYokp6EQ==}
+ hasBin: true
+
+ remark-gfm@1.0.0:
+ resolution: {integrity: sha512-KfexHJCiqvrdBZVbQ6RopMZGwaXz6wFJEfByIuEwGf0arvITHjiKKZ1dpXujjH9KZdm1//XJQwgfnJ3lmXaDPA==}
+
+ remark-lint-blockquote-indentation@4.0.0:
+ resolution: {integrity: sha512-hdUvn+KsJbBKpY9jLY01PmfpJ/WGhLu9GJMXQGU8ADXJc+F5DWSgKAr6GQ1IUKqvGYdEML/KZ61WomWFUuecVA==}
+
+ remark-lint-checkbox-character-style@5.0.0:
+ resolution: {integrity: sha512-K0G/Nok59fb2q5KUxcemBVt+ymnhTkDVLJAatZ4PAh9At8y0DGctHdU27jWsuvO0Fs7Zy62Usk7IJE2VO89p1w==}
+
+ remark-lint-code-block-style@4.0.0:
+ resolution: {integrity: sha512-LKBKMVruEO0tzDnnnqi1TfUcnwY6Mo7cVtZM4E4pKt3KMhtvgU2wD68/MxDOEJd0pmnLrEgIadv74bY0gWhZpg==}
+
+ remark-lint-emphasis-marker@4.0.0:
+ resolution: {integrity: sha512-xIRiB4PFWUOyIslN/UOPL6Lh+J0VD4R11+jo+W4hpGMNsg58l+2SgtdbinlXzDeoBxmaaka9n/sYpJ7cJWEIPQ==}
+
+ remark-lint-fenced-code-marker@4.0.0:
+ resolution: {integrity: sha512-WFN88Rx78m4/HSbW3Kx2XAYbVfzYns4bJd9qpwDD90DA3nc59zciYd01xi6Bk3n9vSs5gIlmG7xkwxVHHJ8KCA==}
+
+ remark-lint-heading-style@4.0.0:
+ resolution: {integrity: sha512-dQ6Jul5K0+aNUvrq4W7H0+osSoC9hsmwHZqBFq000+eMP/hWJqI8tuudw1rap8HHYuOsKLRbB5q+Fr7G+3Vw+Q==}
+
+ remark-lint-link-title-style@4.0.0:
+ resolution: {integrity: sha512-cihTO5dkhjMj/evYIDAvRdQHD82OQeF4fNAq8FLb81HmFKo77VlSF6CK55H1bvlZogfJG58uN/5d1tSsOdcEbg==}
+
+ remark-lint-list-item-content-indent@4.0.0:
+ resolution: {integrity: sha512-L4GZgWQQ54qWKbnDle3dbEOtnq+qdmZJ70lpM3yMFEMHs4xejqPKsIoiYeUtIV0rYHHCWS7IlLzcgYUK9vENQw==}
+
+ remark-lint-ordered-list-marker-style@4.0.0:
+ resolution: {integrity: sha512-xZ7Xppy5fzACH4b9h1b4lTzVtNY2AlUkNTfl1Oe6cIKN8tk3juFxN0wL2RpktPtSZ7iRIabzFmg6l8WPhlASJA==}
+
+ remark-lint-ordered-list-marker-value@4.0.0:
+ resolution: {integrity: sha512-7UjNU2Nv9LGEONTU9GPmTVoNoGKD5aL1X2xHzMbSJiTc50bfcazYqZawO+qj1pQ04WPhto1qHnl0HRB5wwSVwA==}
+
+ remark-lint-rule-style@4.0.0:
+ resolution: {integrity: sha512-Kt7IHMB5IbLgRFKaFUmB895sV3PTD0MBgN9CvXKxr1wHFF43S6tabjFIBSoQqyJRlhH0S3rK6Lvopofa009gLg==}
+
+ remark-lint-strong-marker@4.0.0:
+ resolution: {integrity: sha512-YcvuzakYhQWdCH+1E30sUY+wyvq+PNa77NZAMAYO/cS/pZczFB+q4Ccttw4Q+No/chX8oMfe0GYtm8dDWLei/g==}
+
+ remark-lint-table-cell-padding@5.0.0:
+ resolution: {integrity: sha512-LNyiHDQZBIOqcQGG1tYsZHW7g0v8OyRmRgDrD5WEsMaAYfM6EiECUokN/Q4py9h4oM/2KUSrdZbtfuZmy87/kA==}
+
+ remark-lint@10.0.0:
+ resolution: {integrity: sha512-E8yHHDOJ8b+qI0G49BRu24pe8t0fNNBWv8ENQJpCGNrVeTeyBIGEbaUe1yuF7OG8faA6PVpcN/pqWjzW9fcBWQ==}
+
+ remark-math@4.0.0:
+ resolution: {integrity: sha512-lH7SoQenXtQrvL0bm+mjZbvOk//YWNuyR+MxV18Qyv8rgFmMEGNuB0TSCQDkoDaiJ40FCnG8lxErc/zhcedYbw==}
+
+ remark-message-control@8.0.0:
+ resolution: {integrity: sha512-brpzOO+jdyE/mLqvqqvbogmhGxKygjpCUCG/PwSCU43+JZQ+RM+sSzkCWBcYvgF3KIAVNIoPsvXjBkzO7EdsYQ==}
+
+ remark-parse@11.0.0:
+ resolution: {integrity: sha512-FCxlKLNGknS5ba/1lmpYijMUzX2esxW5xQqjWxw2eHFfS2MSdaHVINFmhjo+qN1WhZhNimq0dZATN9pH0IDrpA==}
+
+ remark-parse@9.0.0:
+ resolution: {integrity: sha512-geKatMwSzEXKHuzBNU1z676sGcDcFoChMK38TgdHJNAYfFtsfHDQG7MoJAjs6sgYMqyLduCYWDIWZIxiPeafEw==}
+
+ remark-preset-lint-consistent@6.0.0:
+ resolution: {integrity: sha512-W3fwxajdietwjnFyTH5x2le63hxWGVOXxIs7KjRqU+5wkkN6ZQyuwPeeomblmS9wQr50fkidhXNHNDyCXtqgxQ==}
+
+ remark-rehype@11.1.1:
+ resolution: {integrity: sha512-g/osARvjkBXb6Wo0XvAeXQohVta8i84ACbenPpoSsxTOQH/Ae0/RGP4WZgnMH5pMLpsj4FG7OHmcIcXxpza8eQ==}
+
+ remark-stringify@11.0.0:
+ resolution: {integrity: sha512-1OSmLd3awB/t8qdoEOMazZkNsfVTeY4fTsgzcQFdXNq8ToTN4ZGwrMnlda4K6smTFKD+GRV6O48i6Z4iKgPPpw==}
+
+ remedial@1.0.8:
+ resolution: {integrity: sha512-/62tYiOe6DzS5BqVsNpH/nkGlX45C/Sp6V+NtiN6JQNS1Viay7cWkazmRkrQrdFj2eshDe96SIQNIoMxqhzBOg==}
+
+ remove-blank-lines@1.4.1:
+ resolution: {integrity: sha512-NEs3uvzpaZscL9qFGIHMO7iFy45/nRQC0bBeIMys8UDJT5CX/OcgDeRpcmwXGcr9Ez+IYZka7w0xhA9pEs7Cag==}
+
+ remove-trailing-separator@1.1.0:
+ resolution: {integrity: sha512-/hS+Y0u3aOfIETiaiirUFwDBDzmXPvO+jAfKTitUngIPzdKc6Z0LoFjM/CK5PL4C+eKwHohlHAb6H0VFfmmUsw==}
+
+ remove-undefined-objects@1.1.0:
+ resolution: {integrity: sha512-lZ8dJTI11nUE3M2l9lXHkXvhAxOquhLn/umJuBqu1Ea+4A10Wh0fymb36ioeze7UgCjYKIlZuSqjVZDtYa+FeQ==}
+ engines: {node: ^12 || ^14 || ^16}
+
+ renamer@4.0.0:
+ resolution: {integrity: sha512-yurufcXxbJfFBVAUoByNyDVH811zTZ/MrKo6gUH8pHGeAmdK7J5egj2lSNe57HuVIvnVzSalzeVGu8pi8UHGxg==}
+ engines: {node: '>=12.17'}
+ hasBin: true
+
+ rendy@4.1.3:
+ resolution: {integrity: sha512-ljyvSWWFaPvncY+C/0GlpRh6f2Ufe1fhZwAVkqTHi/EvZjWM1PumqWJzFY5dBRBvXGnxxvWzDasK7UihddJfmg==}
+ engines: {node: '>=16'}
+
+ repeat-string@1.6.1:
+ resolution: {integrity: sha512-PV0dzCYDNfRi1jCDbJzpW7jNNDRuCOG/jI5ctQcGKt/clZD+YcPS3yIlWuTJMmESC8aevCFmWJy5wjAFgNqN6w==}
+ engines: {node: '>=0.10'}
+
+ request-promise-any@1.0.9:
+ resolution: {integrity: sha512-TCS+MYW4C0TupboWQqCcq4ua7wt/wbMxQBX0vJ39qoGCdd379TZSDOdzLvgXNfEjP1lMOd/tqtk7cyeb59Kagw==}
+ engines: {node: '>=0.10.0'}
+ deprecated: request-promise-any has been deprecated because it extends the now deprecated request package, see https://github.com/request/request/issues/3142
+ peerDependencies:
+ request: ^2.34
+
+ request-promise-core@1.1.4:
+ resolution: {integrity: sha512-TTbAfBBRdWD7aNNOoVOBH4pN/KigV6LyapYNNlAPA8JwbovRti1E88m3sYAwsLi5ryhPKsE9APwnjFTgdUjTpw==}
+ engines: {node: '>=0.10.0'}
+ peerDependencies:
+ request: ^2.34
+
+ request-promise@4.2.6:
+ resolution: {integrity: sha512-HCHI3DJJUakkOr8fNoCc73E5nU5bqITjOYFMDrKHYOXWXrgD/SBaC7LjwuPymUprRyuF06UK7hd/lMHkmUXglQ==}
+ engines: {node: '>=0.10.0'}
+ deprecated: request-promise has been deprecated because it extends the now deprecated request package, see https://github.com/request/request/issues/3142
+ peerDependencies:
+ request: ^2.34
+
+ request@2.88.2:
+ resolution: {integrity: sha512-MsvtOrfG9ZcrOwAW+Qi+F6HbD0CWXEh9ou77uOb7FM2WPhwT7smM833PzanhJLsgXjN89Ir6V2PczXNnMpwKhw==}
+ engines: {node: '>= 6'}
+ deprecated: request has been deprecated, see https://github.com/request/request/issues/3142
+
+ require-directory@2.1.1:
+ resolution: {integrity: sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q==}
+ engines: {node: '>=0.10.0'}
+
+ require-from-string@2.0.2:
+ resolution: {integrity: sha512-Xf0nWe6RseziFMu+Ap9biiUbmplq6S9/p+7w7YXP/JBHhrUDDUhwa+vANyubuqfZWTveU//DYVGsDG7RKL/vEw==}
+ engines: {node: '>=0.10.0'}
+
+ require-main-filename@2.0.0:
+ resolution: {integrity: sha512-NKN5kMDylKuldxYLSUfrbo5Tuzh4hd+2E8NPPX02mZtn1VuREQToYe/ZdlJy+J3uCpfaiGF05e7B8W0iXbQHmg==}
+
+ require-package-name@2.0.1:
+ resolution: {integrity: sha512-uuoJ1hU/k6M0779t3VMVIYpb2VMJk05cehCaABFhXaibcbvfgR8wKiozLjVFSzJPmQMRqIcO0HMyTFqfV09V6Q==}
+
+ requires-port@1.0.0:
+ resolution: {integrity: sha512-KigOCHcocU3XODJxsu8i/j8T9tzT4adHiecwORRQ0ZZFcp7ahwXuRU1m+yuO90C5ZUyGeGfocHDI14M3L3yDAQ==}
+
+ requizzle@0.2.4:
+ resolution: {integrity: sha512-JRrFk1D4OQ4SqovXOgdav+K8EAhSB/LJZqCz8tbX0KObcdeM15Ss59ozWMBWmmINMagCwmqn4ZNryUGpBsl6Jw==}
+
+ resolve-alpn@1.2.1:
+ resolution: {integrity: sha512-0a1F4l73/ZFZOakJnQ3FvkJ2+gSTQWz/r2KE5OdDY0TxPm5h4GkqkWWfM47T7HsbnOtcJVEF4epCVy6u7Q3K+g==}
+
+ resolve-cwd@3.0.0:
+ resolution: {integrity: sha512-OrZaX2Mb+rJCpH/6CpSqt9xFVpN++x01XnN2ie9g6P5/3xelLAkXWVADpdz1IHD/KFfEXyE6V0U01OQ3UO2rEg==}
+ engines: {node: '>=8'}
+
+ resolve-from@3.0.0:
+ resolution: {integrity: sha512-GnlH6vxLymXJNMBo7XP1fJIzBFbdYt49CuTwmB/6N53t+kMPRMFKz783LlQ4tv28XoQfMWinAJX6WCGf2IlaIw==}
+ engines: {node: '>=4'}
+
+ resolve-from@4.0.0:
+ resolution: {integrity: sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==}
+ engines: {node: '>=4'}
+
+ resolve-from@5.0.0:
+ resolution: {integrity: sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw==}
+ engines: {node: '>=8'}
+
+ resolve-pkg-maps@1.0.0:
+ resolution: {integrity: sha512-seS2Tj26TBVOC2NIc2rOe2y2ZO7efxITtLZcGSOnHHNOQ7CkiUBfw0Iw2ck6xkIhPwLhKNLS8BO+hEpngQlqzw==}
+
+ resolve.exports@2.0.2:
+ resolution: {integrity: sha512-X2UW6Nw3n/aMgDVy+0rSqgHlv39WZAlZrXCdnbyEiKm17DSqHX4MmQMaST3FbeWR5FTuRcUwYAziZajji0Y7mg==}
+ engines: {node: '>=10'}
+
+ resolve@1.22.8:
+ resolution: {integrity: sha512-oKWePCxqpd6FlLvGV1VU0x7bkPmmCNolxzjMf4NczoDnQcIWrAF+cPtZn5i6n+RfD2d9i0tzpKnG6Yk168yIyw==}
+ hasBin: true
+
+ resolve@2.0.0-next.5:
+ resolution: {integrity: sha512-U7WjGVG9sH8tvjW5SmGbQuui75FiyjAX72HX15DwBBwF9dNiQZRQAg9nnPhYy+TUnE0+VcrttuvNI8oSxZcocA==}
+ hasBin: true
+
+ responselike@2.0.1:
+ resolution: {integrity: sha512-4gl03wn3hj1HP3yzgdI7d3lCkF95F21Pz4BPGvKHinyQzALR5CapwC8yIi0Rh58DEMQ/SguC03wFj2k0M/mHhw==}
+
+ responselike@3.0.0:
+ resolution: {integrity: sha512-40yHxbNcl2+rzXvZuVkrYohathsSJlMTXKryG5y8uciHv1+xDLHQpgjG64JUO9nrEq2jGLH6IZ8BcZyw3wrweg==}
+ engines: {node: '>=14.16'}
+
+ restore-cursor@3.1.0:
+ resolution: {integrity: sha512-l+sSefzHpj5qimhFSE5a8nufZYAM3sBSVMAPtYkmC+4EH2anSGaEMXSD0izRQbu9nfyQ9y5JrVmp7E8oZrUjvA==}
+ engines: {node: '>=8'}
+
+ ret@0.1.15:
+ resolution: {integrity: sha512-TTlYpa+OL+vMMNG24xSlQGEJ3B/RzEfUlLct7b5G/ytav+wPrplCpVMFuwzXbkecJrb6IYo1iFb0S9v37754mg==}
+ engines: {node: '>=0.12'}
+
+ retry-request@4.2.2:
+ resolution: {integrity: sha512-xA93uxUD/rogV7BV59agW/JHPGXeREMWiZc9jhcwY4YdZ7QOtC7qbomYg0n4wyk2lJhggjvKvhNX8wln/Aldhg==}
+ engines: {node: '>=8.10.0'}
+
+ retry-request@5.0.2:
+ resolution: {integrity: sha512-wfI3pk7EE80lCIXprqh7ym48IHYdwmAAzESdbU8Q9l7pnRCk9LEhpbOTNKjz6FARLm/Bl5m+4F0ABxOkYUujSQ==}
+ engines: {node: '>=12'}
+
+ retry-request@7.0.2:
+ resolution: {integrity: sha512-dUOvLMJ0/JJYEn8NrpOaGNE7X3vpI5XlZS/u0ANjqtcZVKnIxP7IgCFwrKTxENw29emmwug53awKtaMm4i9g5w==}
+ engines: {node: '>=14'}
+
+ retry@0.12.0:
+ resolution: {integrity: sha512-9LkiTwjUh6rT555DtE9rTX+BKByPfrMzEAtnlEtdEwr3Nkffwiihqe2bWADg+OQRjt9gl6ICdmB/ZFDCGAtSow==}
+ engines: {node: '>= 4'}
+
+ retry@0.13.1:
+ resolution: {integrity: sha512-XQBQ3I8W1Cge0Seh+6gjj03LbmRFWuoszgK9ooCpwYIrhhoO80pfq4cUkU5DkknwfOfFteRwlZ56PYOGYyFWdg==}
+ engines: {node: '>= 4'}
+
+ reusify@1.0.4:
+ resolution: {integrity: sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==}
+ engines: {iojs: '>=1.0.0', node: '>=0.10.0'}
+
+ rfdc@1.4.1:
+ resolution: {integrity: sha512-q1b3N5QkRUWUl7iyylaaj3kOpIT0N2i9MqIEQXP73GVsN9cw3fdx8X63cEmWhJGi2PPCF23Ijp7ktmd39rawIA==}
+
+ rhea-promise@2.1.0:
+ resolution: {integrity: sha512-CRMwdJ/o4oO/xKcvAwAsd0AHy5fVvSlqso7AadRmaaLGzAzc9LCoW7FOFnucI8THasVmOeCnv5c/fH/n7FcNaA==}
+
+ rhea@2.0.8:
+ resolution: {integrity: sha512-IgwlP4D2lzinBSll5f35tAWa30dGCZhG9Ujd1DiaB7MUGegIjAaLzqATCw3ha+h9oq9mXcitqayBbNIXYdvtFg==}
+
+ rimraf@3.0.2:
+ resolution: {integrity: sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==}
+ deprecated: Rimraf versions prior to v4 are no longer supported
+ hasBin: true
+
+ ripemd160@2.0.2:
+ resolution: {integrity: sha512-ii4iagi25WusVoiC4B4lq7pbXfAp3D9v5CwfkY33vffw2+pkDjY1D8GaN7spsxvCSx8dkPqOZCEZyfxcmJG2IA==}
+
+ rollup@4.27.3:
+ resolution: {integrity: sha512-SLsCOnlmGt9VoZ9Ek8yBK8tAdmPHeppkw+Xa7yDlCEhDTvwYei03JlWo1fdc7YTfLZ4tD8riJCUyAgTbszk1fQ==}
+ engines: {node: '>=18.0.0', npm: '>=8.0.0'}
+ hasBin: true
+
+ rootpath@0.1.2:
+ resolution: {integrity: sha512-R3wLbuAYejpxQjL/SjXo1Cjv4wcJECnMRT/FlcCfTwCBhaji9rWaRCoVEQ1SPiTJ4kKK+yh+bZLAV7SCafoDDw==}
+
+ rss-parser@3.13.0:
+ resolution: {integrity: sha512-7jWUBV5yGN3rqMMj7CZufl/291QAhvrrGpDNE4k/02ZchL0npisiYYqULF71jCEKoIiHvK/Q2e6IkDwPziT7+w==}
+
+ run-async@2.4.1:
+ resolution: {integrity: sha512-tvVnVv01b8c1RrA6Ep7JkStj85Guv/YrMcwqYQnwjsAS2cTmmPGBBjAjpCW7RrSodNSoE2/qg9O4bceNvUuDgQ==}
+ engines: {node: '>=0.12.0'}
+
+ run-node@1.0.0:
+ resolution: {integrity: sha512-kc120TBlQ3mih1LSzdAJXo4xn/GWS2ec0l3S+syHDXP9uRr0JAT8Qd3mdMuyjqCzeZktgP3try92cEgf9Nks8A==}
+ engines: {node: '>=4'}
+ hasBin: true
+
+ run-parallel@1.2.0:
+ resolution: {integrity: sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==}
+
+ rxjs@7.8.1:
+ resolution: {integrity: sha512-AA3TVj+0A2iuIoQkWEK/tqFjBq2j+6PO6Y0zJcvzLAFhEFIO3HL0vls9hWLncZbAAbK0mar7oZ4V079I/qPMxg==}
+
+ safe-array-concat@1.1.2:
+ resolution: {integrity: sha512-vj6RsCsWBCf19jIeHEfkRMw8DPiBb+DMXklQ/1SGDHOMlHdPUkZXFQ2YdplS23zESTijAcurb1aSgJA3AgMu1Q==}
+ engines: {node: '>=0.4'}
+
+ safe-buffer@5.1.2:
+ resolution: {integrity: sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==}
+
+ safe-buffer@5.2.1:
+ resolution: {integrity: sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==}
+
+ safe-regex-test@1.0.3:
+ resolution: {integrity: sha512-CdASjNJPvRa7roO6Ra/gLYBTzYzzPyyBXxIMdGW3USQLyjWEls2RgW5UBTXaQVp+OrpeCK3bLem8smtmheoRuw==}
+ engines: {node: '>= 0.4'}
+
+ safe-stable-stringify@2.5.0:
+ resolution: {integrity: sha512-b3rppTKm9T+PsVCBEOUR46GWI7fdOs00VKZ1+9c1EWDaDMvjQc6tUwuFyIprgGgTcWoVHSKrU8H31ZHA2e0RHA==}
+ engines: {node: '>=10'}
+
+ safer-buffer@2.1.2:
+ resolution: {integrity: sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==}
+
+ salesforce-webhooks@1.1.14:
+ resolution: {integrity: sha512-rWp/3t0I3zMIJ0opRhHPstx3ijJ/cxvk+VUbnqNnvwaQi5lB1l0S2eNq0BtD09cy83+amT9frkwHS1wEg5h/bQ==}
+
+ samadhi@2.10.0:
+ resolution: {integrity: sha512-rOOcZfHYK3haArS4/RaD+DDcPrfMC7G7dCRrzjHLaLjIj+VTs/cbWcbFkCAGwS0OY2DuiUAzBVFVX302zGzw6Q==}
+ engines: {node: '>=18'}
+
+ sax@1.4.1:
+ resolution: {integrity: sha512-+aWOz7yVScEGoKNd4PA10LZ8sk0A/z5+nXQG5giUO5rprX9jgYsTdov9qCchZiPIZezbZH+jRut8nPodFAX4Jg==}
+
+ sb-promise-queue@2.1.0:
+ resolution: {integrity: sha512-zwq4YuP1FQFkGx2Q7GIkZYZ6PqWpV+bg0nIO1sJhWOyGyhqbj0MsTvK6lCFo5TQwX5pZr6SCQ75e8PCDCuNvkg==}
+ engines: {node: '>= 8'}
+
+ sb-scandir@3.1.0:
+ resolution: {integrity: sha512-70BVm2xz9jn94zSQdpvYrEG101/UV9TVGcfWr9T5iob3QhCK4lYXeculfBqPGFv3XTeKgx4dpWyYIDeZUqo4kg==}
+ engines: {node: '>= 8'}
+
+ scheduler@0.23.2:
+ resolution: {integrity: sha512-UOShsPwz7NrMUqhR6t0hWjFduvOzbtv7toDH1/hIrfRNIDBnnBWd0CwJTGvTpngVlmwGCdP9/Zl/tVrDqcuYzQ==}
+
+ scheduler@0.25.0-rc-66855b96-20241106:
+ resolution: {integrity: sha512-HQXp/Mnp/MMRSXMQF7urNFla+gmtXW/Gr1KliuR0iboTit4KvZRY8KYaq5ccCTAOJiUqQh2rE2F3wgUekmgdlA==}
+
+ scmp@2.1.0:
+ resolution: {integrity: sha512-o/mRQGk9Rcer/jEEw/yw4mwo3EU/NvYvp577/Btqrym9Qy5/MdWGBqipbALgd2lrdWTJ5/gqDusxfnQBxOxT2Q==}
+
+ selderee@0.11.0:
+ resolution: {integrity: sha512-5TF+l7p4+OsnP8BCCvSyZiSPc4x4//p5uPwK8TCnVPJYRmU2aYKMpOXvw8zM5a5JvuuCGN1jmsMwuU2W02ukfA==}
+
+ selderee@0.6.0:
+ resolution: {integrity: sha512-ibqWGV5aChDvfVdqNYuaJP/HnVBhlRGSRrlbttmlMpHcLuTqqbMH36QkSs9GEgj5M88JDYLI8eyP94JaQ8xRlg==}
+
+ semver-compare@1.0.0:
+ resolution: {integrity: sha512-YM3/ITh2MJ5MtzaM429anh+x2jiLVjqILF4m4oyQB18W7Ggea7BfqdH/wGMK7dDiMghv/6WG7znWMwUDzJiXow==}
+
+ semver@5.3.0:
+ resolution: {integrity: sha512-mfmm3/H9+67MCVix1h+IXTpDwL6710LyHuk7+cWC9T1mE0qz4iHhh6r4hU2wrIT9iTsAAC2XQRvfblL028cpLw==}
+ hasBin: true
+
+ semver@5.7.2:
+ resolution: {integrity: sha512-cBznnQ9KjJqU67B52RMC65CMarK2600WFnbkcaiwWq3xy/5haFJlshgnpjovMVJ+Hff49d8GEn0b87C5pDQ10g==}
+ hasBin: true
+
+ semver@6.3.1:
+ resolution: {integrity: sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==}
+ hasBin: true
+
+ semver@7.5.4:
+ resolution: {integrity: sha512-1bCSESV6Pv+i21Hvpxp3Dx+pSD8lIPt8uVjRrxAUt/nbswYc+tK6Y2btiULjd4+fnq15PX+nqQDC7Oft7WkwcA==}
+ engines: {node: '>=10'}
+ hasBin: true
+
+ semver@7.6.3:
+ resolution: {integrity: sha512-oVekP1cKtI+CTDvHWYFUcMtsK/00wmAEfyqKfNdARm8u1wNVhSgaX7A8d4UuIlUI5e84iEwOhs7ZPYRmzU9U6A==}
+ engines: {node: '>=10'}
+ hasBin: true
+
+ sendbird-platform-sdk@0.0.14:
+ resolution: {integrity: sha512-nuVX2mwGBdMUys/c6MLOrjbTavfo34HDbrVjcjbL9UNeWXWK1hJ9/CUnxpnviCNzB9BCv4SEZhEQ2K6w4dZYoQ==}
+
+ seq-queue@0.0.5:
+ resolution: {integrity: sha512-hr3Wtp/GZIc/6DAGPDcV4/9WoZhjrkXsi5B/07QgX8tsdc6ilr7BFM6PM6rbdAX1kFSDYeZGLipIZZKyQP0O5Q==}
+
+ server-destroy@1.0.1:
+ resolution: {integrity: sha512-rb+9B5YBIEzYcD6x2VKidaa+cqYBJQKnU4oe4E3ANwRRN56yk/ua1YCJT1n21NTS8w6CcOclAKNP3PhdCXKYtQ==}
+
+ set-blocking@2.0.0:
+ resolution: {integrity: sha512-KiKBS8AnWGEyLzofFfmvKwpdPzqiy16LvQfK3yv/fVH7Bj13/wl3JSR1J+rfgRE9q7xUJK4qvgS8raSOeLUehw==}
+
+ set-function-length@1.2.2:
+ resolution: {integrity: sha512-pgRc4hJ4/sNjWCSS9AmnS40x3bNMDTknHgL5UaMBTMyJnU90EgWh1Rz+MC9eFu4BuN/UwZjKQuY/1v3rM7HMfg==}
+ engines: {node: '>= 0.4'}
+
+ set-function-name@2.0.2:
+ resolution: {integrity: sha512-7PGFlmtwsEADb0WYyvCMa1t+yke6daIG4Wirafur5kcf+MhUnPms1UeR0CKQdTZD81yESwMHbtn+TR+dMviakQ==}
+ engines: {node: '>= 0.4'}
+
+ setprototypeof@1.2.0:
+ resolution: {integrity: sha512-E5LDX7Wrp85Kil5bhZv46j8jOeboKq5JMmYM3gVGdGH8xFpPWXUMsNrlODCrkoxMEeNi/XZIwuRvY4XNwYMJpw==}
+
+ sha.js@2.4.11:
+ resolution: {integrity: sha512-QMEp5B7cftE7APOjk5Y6xgrbWu+WkLVQwk8JNjZ8nKRciZaByEW6MubieAiToS7+dwvrjGhH8jRXz3MVd0AYqQ==}
+ hasBin: true
+
+ shallow-clone@3.0.1:
+ resolution: {integrity: sha512-/6KqX+GVUdqPuPPd2LxDDxzX6CAbjJehAAOKlNpqqUpAqPM6HeL8f+o3a+JsyGjn2lv0WY8UsTgUJjU9Ok55NA==}
+ engines: {node: '>=8'}
+
+ sharp@0.33.5:
+ resolution: {integrity: sha512-haPVm1EkS9pgvHrQ/F3Xy+hgcuMV0Wm9vfIBSiwZ05k+xgb0PkBQpGsAA/oWdDobNaZTH5ppvHtzCFbnSEwHVw==}
+ engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0}
+
+ shebang-command@1.2.0:
+ resolution: {integrity: sha512-EV3L1+UQWGor21OmnvojK36mhg+TyIKDh3iFBKBohr5xeXIhNBcx8oWdgkTEEQ+BEFFYdLRuqMfd5L84N1V5Vg==}
+ engines: {node: '>=0.10.0'}
+
+ shebang-command@2.0.0:
+ resolution: {integrity: sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==}
+ engines: {node: '>=8'}
+
+ shebang-regex@1.0.0:
+ resolution: {integrity: sha512-wpoSFAxys6b2a2wHZ1XpDSgD7N9iVjg29Ph9uV/uaP9Ex/KXlkTZTeddxDPSYQpgvzKLGJke2UU0AzoGCjNIvQ==}
+ engines: {node: '>=0.10.0'}
+
+ shebang-regex@3.0.0:
+ resolution: {integrity: sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==}
+ engines: {node: '>=8'}
+
+ shell-escape@0.2.0:
+ resolution: {integrity: sha512-uRRBT2MfEOyxuECseCZd28jC1AJ8hmqqneWQ4VWUTgCAFvb3wKU1jLqj6egC4Exrr88ogg3dp+zroH4wJuaXzw==}
+
+ shopify-api-node@3.14.0:
+ resolution: {integrity: sha512-4rqfp5coivw4GEqai8OKFikWgFtfPxCEhDetXz8ig9TlMLWke8QhA/NrDdJ21qE4Hp0PqnCHW0vqE9h5XJnOWA==}
+ engines: {node: '>=10.0.0'}
+
+ short-unique-id@5.2.0:
+ resolution: {integrity: sha512-cMGfwNyfDZ/nzJ2k2M+ClthBIh//GlZl1JEf47Uoa9XR11bz8Pa2T2wQO4bVrRdH48LrIDWJahQziKo3MjhsWg==}
+ hasBin: true
+
+ should-equal@2.0.0:
+ resolution: {integrity: sha512-ZP36TMrK9euEuWQYBig9W55WPC7uo37qzAEmbjHz4gfyuXrEUgF8cUvQVO+w+d3OMfPvSRQJ22lSm8MQJ43LTA==}
+
+ should-format@3.0.3:
+ resolution: {integrity: sha512-hZ58adtulAk0gKtua7QxevgUaXTTXxIi8t41L3zo9AHvjXO1/7sdLECuHeIN2SRtYXpNkmhoUP2pdeWgricQ+Q==}
+
+ should-proxy@1.0.4:
+ resolution: {integrity: sha512-RPQhIndEIVUCjkfkQ6rs6sOR6pkxJWCNdxtfG5pP0RVgUYbK5911kLTF0TNcCC0G3YCGd492rMollFT2aTd9iQ==}
+
+ should-type-adaptors@1.1.0:
+ resolution: {integrity: sha512-JA4hdoLnN+kebEp2Vs8eBe9g7uy0zbRo+RMcU0EsNy+R+k049Ki+N5tT5Jagst2g7EAja+euFuoXFCa8vIklfA==}
+
+ should-type@1.4.0:
+ resolution: {integrity: sha512-MdAsTu3n25yDbIe1NeN69G4n6mUnJGtSJHygX3+oN0ZbO3DTiATnf7XnYJdGT42JCXurTb1JI0qOBR65shvhPQ==}
+
+ should-util@1.0.1:
+ resolution: {integrity: sha512-oXF8tfxx5cDk8r2kYqlkUJzZpDBqVY/II2WhvU0n9Y3XYvAYRmeaf1PvvIvTgPnv4KJ+ES5M0PyDq5Jp+Ygy2g==}
+
+ should@13.2.3:
+ resolution: {integrity: sha512-ggLesLtu2xp+ZxI+ysJTmNjh2U0TsC+rQ/pfED9bUZZ4DKefP27D+7YJVVTvKsmjLpIi9jAa7itwDGkDDmt1GQ==}
+
+ showdown@2.1.0:
+ resolution: {integrity: sha512-/6NVYu4U819R2pUIk79n67SYgJHWCce0a5xTP979WbNp0FL9MN1I1QK662IDU1b6JzKTvmhgI7T7JYIxBi3kMQ==}
+ hasBin: true
+
+ side-channel@1.0.6:
+ resolution: {integrity: sha512-fDW/EZ6Q9RiO8eFG8Hj+7u/oW+XrPTIChwCOM2+th2A6OblDtYYIpve9m+KvI9Z4C9qSEXlaGR6bTEYHReuglA==}
+ engines: {node: '>= 0.4'}
+
+ signal-exit@3.0.7:
+ resolution: {integrity: sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==}
+
+ signal-exit@4.1.0:
+ resolution: {integrity: sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==}
+ engines: {node: '>=14'}
+
+ simple-lru-cache@0.0.2:
+ resolution: {integrity: sha512-uEv/AFO0ADI7d99OHDmh1QfYzQk/izT1vCmu/riQfh7qjBVUUgRT87E5s5h7CxWCA/+YoZerykpEthzVrW3LIw==}
+
+ simple-oauth2@5.1.0:
+ resolution: {integrity: sha512-gWDa38Ccm4MwlG5U7AlcJxPv3lvr80dU7ARJWrGdgvOKyzSj1gr3GBPN1rABTedAYvC/LsGYoFuFxwDBPtGEbw==}
+
+ simple-swizzle@0.2.2:
+ resolution: {integrity: sha512-JA//kQgZtbuY83m+xT+tXJkmJncGMTFT+C+g2h2R9uxkYIrE2yy9sgmcLhCnw57/WSD+Eh3J97FPEDFnbXnDUg==}
+
+ simple-update-notifier@2.0.0:
+ resolution: {integrity: sha512-a2B9Y0KlNXl9u/vsW6sTIu9vGEpfKu2wRV6l1H3XEas/0gUIzGzBoP/IouTcUQbm9JWZLH3COxyn03TYlFax6w==}
+ engines: {node: '>=10'}
+
+ sisteransi@1.0.5:
+ resolution: {integrity: sha512-bLGGlR1QxBcynn2d5YmDX4MGjlZvy2MRBDRNHLJ8VI6l6+9FUiyTFNJ0IveOSP0bcXgVDPRcfGqA0pjaqUpfVg==}
+
+ slash@2.0.0:
+ resolution: {integrity: sha512-ZYKh3Wh2z1PpEXWr0MpSBZ0V6mZHAQfYevttO11c51CaWjGTaadiKZ+wVt1PbMlDV5qhMFslpZCemhwOK7C89A==}
+ engines: {node: '>=6'}
+
+ slash@3.0.0:
+ resolution: {integrity: sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==}
+ engines: {node: '>=8'}
+
+ slash@4.0.0:
+ resolution: {integrity: sha512-3dOsAHXXUkQTpOYcoAxLIorMTp4gIQr5IW3iVb7A7lFIp0VHhnynm9izx6TssdrIcVIESAlVjtnO2K8bg+Coew==}
+ engines: {node: '>=12'}
+
+ slice-ansi@3.0.0:
+ resolution: {integrity: sha512-pSyv7bSTC7ig9Dcgbw9AuRNUb5k5V6oDudjZoMBSr13qpLBG7tB+zgCkARjq7xIUgdz5P1Qe8u+rSGdouOOIyQ==}
+ engines: {node: '>=8'}
+
+ slice-ansi@4.0.0:
+ resolution: {integrity: sha512-qMCMfhY040cVHT43K9BFygqYbUPFZKHOg7K73mtTWJRb8pyP3fzf4Ixd5SzdEJQ6MRUg/WBnOLxghZtKKurENQ==}
+ engines: {node: '>=10'}
+
+ slice-ansi@5.0.0:
+ resolution: {integrity: sha512-FC+lgizVPfie0kkhqUScwRu1O/lF6NOgJmlCgK+/LYxDCTk8sGelYaHDhFcDN+Sn3Cv+3VSa4Byeo+IMCzpMgQ==}
+ engines: {node: '>=12'}
+
+ slide@1.1.6:
+ resolution: {integrity: sha512-NwrtjCg+lZoqhFU8fOwl4ay2ei8PaqCBOUV3/ektPY9trO1yQ1oXEfmHAhKArUVUr/hOHvy5f6AdP17dCM0zMw==}
+
+ slugify@1.6.6:
+ resolution: {integrity: sha512-h+z7HKHYXj6wJU+AnS/+IH8Uh9fdcX1Lrhg1/VMdf9PwoBQXFcXiAdsy2tSK0P6gKwJLXp02r90ahUCqHk9rrw==}
+ engines: {node: '>=8.0.0'}
+
+ smart-buffer@4.2.0:
+ resolution: {integrity: sha512-94hK0Hh8rPqQl2xXc3HsaBoOXKV20MToPkcXvwbISWLEs+64sBq5kFgn2kJDHb1Pry9yrP0dxrCI9RRci7RXKg==}
+ engines: {node: '>= 6.0.0', npm: '>= 3.0.0'}
+
+ snowflake-sdk@1.9.0:
+ resolution: {integrity: sha512-RtFRV2KC+ebQk/kOUg8WV42LnAu9puoan2wMXykgrAj1u4sGP/GgQyQhsAfLGwXWzn+J9JAwij07h3+6HYBmFw==}
+
+ socks-proxy-agent@5.0.1:
+ resolution: {integrity: sha512-vZdmnjb9a2Tz6WEQVIurybSwElwPxMZaIc7PzqbJTrezcKNznv6giT7J7tZDZ1BojVaa1jvO/UiUdhDVB0ACoQ==}
+ engines: {node: '>= 6'}
+
+ socks-proxy-agent@8.0.4:
+ resolution: {integrity: sha512-GNAq/eg8Udq2x0eNiFkr9gRg5bA7PXEWagQdeRX4cPSG+X/8V38v637gim9bjFptMk1QWsCTr0ttrJEiXbNnRw==}
+ engines: {node: '>= 14'}
+
+ socks@2.8.3:
+ resolution: {integrity: sha512-l5x7VUUWbjVFbafGLxPWkYsHIhEvmF85tbIeFZWc8ZPtoMyybuEhL7Jye/ooC4/d48FgOjSJXgsF/AJPYCW8Zw==}
+ engines: {node: '>= 10.0.0', npm: '>= 3.0.0'}
+
+ source-map-js@1.2.1:
+ resolution: {integrity: sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA==}
+ engines: {node: '>=0.10.0'}
+
+ source-map-support@0.5.13:
+ resolution: {integrity: sha512-SHSKFHadjVA5oR4PPqhtAVdcBWwRYVd6g6cAXnIbRiIwc2EhPrTuKUBdSLvlEKyIP3GCf89fltvcZiP9MMFA1w==}
+
+ source-map@0.5.7:
+ resolution: {integrity: sha512-LbrmJOMUSdEVxIKvdcJzQC+nQhe8FUZQTXQy6+I75skNgn3OoQ0DZA8YnFa7gp8tqtL3KPf1kmo0R5DoApeSGQ==}
+ engines: {node: '>=0.10.0'}
+
+ source-map@0.6.1:
+ resolution: {integrity: sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==}
+ engines: {node: '>=0.10.0'}
+
+ source-map@0.7.4:
+ resolution: {integrity: sha512-l3BikUxvPOcn5E74dZiq5BGsTb5yEwhaTSzccU6t4sDOH8NWJCstKO5QT2CvtFoK6F0saL7p9xHAqHOlCPJygA==}
+ engines: {node: '>= 8'}
+
+ space-separated-tokens@2.0.2:
+ resolution: {integrity: sha512-PEGlAwrG8yXGXRjW32fGbg66JAlOAwbObuqVoJpv/mRgoWDQfgH1wDPvtzWyUSNAXBGSk8h755YDbbcEy3SH2Q==}
+
+ sparse-bitfield@3.0.3:
+ resolution: {integrity: sha512-kvzhi7vqKTfkh0PZU+2D2PIllw2ymqJKujUcyPMd9Y75Nv4nPbGJZXNhxsgdQab2BmlDct1YnfQCguEvHr7VsQ==}
+
+ spdx-correct@3.2.0:
+ resolution: {integrity: sha512-kN9dJbvnySHULIluDHy32WHRUu3Og7B9sbY7tsFLctQkIqnMh3hErYgdMjTYuqmcXX+lK5T1lnUt3G7zNswmZA==}
+
+ spdx-exceptions@2.5.0:
+ resolution: {integrity: sha512-PiU42r+xO4UbUS1buo3LPJkjlO7430Xn5SVAhdpzzsPHsjbYVflnnFdATgabnLude+Cqu25p6N+g2lw/PFsa4w==}
+
+ spdx-expression-parse@3.0.1:
+ resolution: {integrity: sha512-cbqHunsQWnJNE6KhVSMsMeH5H/L9EpymbzqTQ3uLwNCLZ1Q481oWaofqH7nO6V07xlXwY6PhQdQ2IedWx/ZK4Q==}
+
+ spdx-license-ids@3.0.20:
+ resolution: {integrity: sha512-jg25NiDV/1fLtSgEgyvVyDunvaNHbuwF9lfNV17gSmPFAlYzdfNBlLtLzXTevwkPj7DhGbmN9VnmJIgLnhvaBw==}
+
+ split-on-first@1.1.0:
+ resolution: {integrity: sha512-43ZssAJaMusuKWL8sKUBQXHWOpq8d6CfN/u1p4gUzfJkM05C8rxTmYrkIPTXapZpORA6LkkzcUulJ8FqA7Uudw==}
+ engines: {node: '>=6'}
+
+ split-on-first@3.0.0:
+ resolution: {integrity: sha512-qxQJTx2ryR0Dw0ITYyekNQWpz6f8dGd7vffGNflQQ3Iqj9NJ6qiZ7ELpZsJ/QBhIVAiDfXdag3+Gp8RvWa62AA==}
+ engines: {node: '>=12'}
+
+ split2@4.2.0:
+ resolution: {integrity: sha512-UcjcJOWknrNkF6PLX83qcHM6KHgVKNkV62Y8a5uYDVv9ydGQVwAHMKqHdJje1VTWpljG0WYpCDhrCdAOYH4TWg==}
+ engines: {node: '>= 10.x'}
+
+ split@0.3.3:
+ resolution: {integrity: sha512-wD2AeVmxXRBoX44wAycgjVpMhvbwdI2aZjCkvfNcH1YqHQvJVa1duWc73OyVGJUc05fhFaTZeQ/PYsrmyH0JVA==}
+
+ sprintf-js@1.0.3:
+ resolution: {integrity: sha512-D9cPgkvLlV3t3IzL0D0YLvGA9Ahk4PcvVwUbN0dSGr1aP0Nrt4AEnTUbuGvquEC0mA64Gqt1fzirlRs5ibXx8g==}
+
+ sprintf-js@1.1.3:
+ resolution: {integrity: sha512-Oo+0REFV59/rz3gfJNKQiBlwfHaSESl1pcGyABQsnnIfWOFt6JNj5gCog2U6MLZ//IGYD+nA8nI+mTShREReaA==}
+
+ sqlstring@2.3.3:
+ resolution: {integrity: sha512-qC9iz2FlN7DQl3+wjwn3802RTyjCx7sDvfQEXchwa6CWOx07/WVfh91gBmQ9fahw8snwGEWU3xGzOt4tFyHLxg==}
+ engines: {node: '>= 0.6'}
+
+ ssh2-sftp-client@8.1.0:
+ resolution: {integrity: sha512-00Ds+QcE7S6R6knE4cgKrvFxsOoAjSS16BSGRkv4n4RNYawyy3Iu9jlRz/nEXxpaVnojf0nn9zp0zATJssRrVw==}
+ engines: {node: '>=10.24.1'}
+
+ ssh2@1.16.0:
+ resolution: {integrity: sha512-r1X4KsBGedJqo7h8F5c4Ybpcr5RjyP+aWIG007uBPRjmdQWfEiVLzSK71Zji1B9sKxwaCvD8y8cwSkYrlLiRRg==}
+ engines: {node: '>=10.16.0'}
+
+ sshpk@1.18.0:
+ resolution: {integrity: sha512-2p2KJZTSqQ/I3+HX42EpYOa2l3f8Erv8MWKsy2I9uf4wA7yFIkXRffYdsx86y6z4vHtV8u7g+pPlr8/4ouAxsQ==}
+ engines: {node: '>=0.10.0'}
+ hasBin: true
+
+ ssri@8.0.1:
+ resolution: {integrity: sha512-97qShzy1AiyxvPNIkLWoGua7xoQzzPjQ0HAH4B0rWKo7SZ6USuPcrUiAFrws0UH8RrbWmgq3LMTObhPIHbbBeQ==}
+ engines: {node: '>= 8'}
+
+ stack-trace@0.0.10:
+ resolution: {integrity: sha512-KGzahc7puUKkzyMt+IqAep+TVNbKP+k2Lmwhub39m1AsTSkaDutx56aDCo+HLDzf/D26BIHTJWNiTG1KAJiQCg==}
+
+ stack-utils@2.0.6:
+ resolution: {integrity: sha512-XlkWvfIm6RmsWtNJx+uqtKLS8eqFbxUg0ZzLXqY0caEy9l7hruX8IpiDnjsLavoBgqCCR71TqWO8MaXYheJ3RQ==}
+ engines: {node: '>=10'}
+
+ starkbank-ecdsa@1.1.5:
+ resolution: {integrity: sha512-5O9CJ0QF6pTrtDg6dmaHy1GC/2wA1tcXsYanWOCzg+2cZrCDylEvEl6krzI4Zy8ryar00lHErRTT2Q61w/MUVA==}
+
+ static-eval@2.0.2:
+ resolution: {integrity: sha512-N/D219Hcr2bPjLxPiV+TQE++Tsmrady7TqAJugLy7Xk1EumfDWS/f5dtBbkRCGE7wKKXuYockQoj8Rm2/pVKyg==}
+
+ statuses@2.0.1:
+ resolution: {integrity: sha512-RwNA9Z/7PrK06rYLIzFMlaF+l73iwpzsqRIFgbMLbTcLD6cOao82TaWefPXQvB2fOC4AjuYSEndS7N/mTCbkdQ==}
+ engines: {node: '>= 0.8'}
+
+ stealthy-require@1.1.1:
+ resolution: {integrity: sha512-ZnWpYnYugiOVEY5GkcuJK1io5V8QmNYChG62gSit9pQVGErXtrKuPC55ITaVSukmMta5qpMU7vqLt2Lnni4f/g==}
+ engines: {node: '>=0.10.0'}
+
+ stop-iteration-iterator@1.0.0:
+ resolution: {integrity: sha512-iCGQj+0l0HOdZ2AEeBADlsRC+vsnDsZsbdSiH1yNSjcfKM7fdpCMfqAL/dwF5BLiw/XhRft/Wax6zQbhq2BcjQ==}
+ engines: {node: '>= 0.4'}
+
+ stopcock@1.1.0:
+ resolution: {integrity: sha512-SNTAH55X9Ra5uE1JIxiPT3WwZiNMTcdCup+7qWOULNVUqiqi62qctNJ+x1R4znNudtkyu8LGc7Ok6Ldt+8N5iQ==}
+ engines: {node: '>=4.0.0'}
+
+ stoppable@1.1.0:
+ resolution: {integrity: sha512-KXDYZ9dszj6bzvnEMRYvxgeTHU74QBFL54XKtP3nyMuJ81CFYtABZ3bAzL2EdFUaEwJOBOgENyFj3R7oTzDyyw==}
+ engines: {node: '>=4', npm: '>=6'}
+
+ stream-combiner@0.0.4:
+ resolution: {integrity: sha512-rT00SPnTVyRsaSz5zgSPma/aHSOic5U1prhYdRy5HS2kTZviFpmDgzilbtsJsxiroqACmayynDN/9VzIbX5DOw==}
+
+ stream-events@1.0.5:
+ resolution: {integrity: sha512-E1GUzBSgvct8Jsb3v2X15pjzN1tYebtbLaMg+eBOUOAxgbLoSbT2NS91ckc5lJD1KfLjId+jXJRgo0qnV5Nerg==}
+
+ stream-read-all@3.0.1:
+ resolution: {integrity: sha512-EWZT9XOceBPlVJRrYcykW8jyRSZYbkb/0ZK36uLEmoWVO5gxBOnntNTseNzfREsqxqdfEGQrD8SXQ3QWbBmq8A==}
+ engines: {node: '>=10'}
+
+ stream-shift@1.0.3:
+ resolution: {integrity: sha512-76ORR0DO1o1hlKwTbi/DM3EXWGf3ZJYO8cXX5RJwnul2DEg2oyoZyjLNoQM8WsvZiFKCRfC1O0J7iCvie3RZmQ==}
+
+ stream@0.0.2:
+ resolution: {integrity: sha512-gCq3NDI2P35B2n6t76YJuOp7d6cN/C7Rt0577l91wllh0sY9ZBuw9KaSGqH/b0hzn3CWWJbpbW0W0WvQ1H/Q7g==}
+
+ stream@0.0.3:
+ resolution: {integrity: sha512-aMsbn7VKrl4A2T7QAQQbzgN7NVc70vgF5INQrBXqn4dCXN1zy3L9HGgLO5s7PExmdrzTJ8uR/27aviW8or8/+A==}
+
+ streamifier@0.1.1:
+ resolution: {integrity: sha512-zDgl+muIlWzXNsXeyUfOk9dChMjlpkq0DRsxujtYPgyJ676yQ8jEm6zzaaWHFDg5BNcLuif0eD2MTyJdZqXpdg==}
+ engines: {node: '>=0.10'}
+
+ streamroller@3.1.5:
+ resolution: {integrity: sha512-KFxaM7XT+irxvdqSP1LGLgNWbYN7ay5owZ3r/8t77p+EtSUAfUgtl7be3xtqtOmGUl9K9YPO2ca8133RlTjvKw==}
+ engines: {node: '>=8.0'}
+
+ streamsearch@1.1.0:
+ resolution: {integrity: sha512-Mcc5wHehp9aXz1ax6bZUyY5afg9u2rv5cqQI3mRrYkGC8rW2hM02jWuwjtL++LS5qinSyhj2QfLyNsuc+VsExg==}
+ engines: {node: '>=10.0.0'}
+
+ streamx@2.20.2:
+ resolution: {integrity: sha512-aDGDLU+j9tJcUdPGOaHmVF1u/hhI+CsGkT02V3OKlHDV7IukOI+nTWAGkiZEKCO35rWN1wIr4tS7YFr1f4qSvA==}
+
+ strict-uri-encode@2.0.0:
+ resolution: {integrity: sha512-QwiXZgpRcKkhTj2Scnn++4PKtWsH0kpzZ62L2R6c/LUVYv7hVnZqcg2+sMuT6R7Jusu1vviK/MFsu6kNJfWlEQ==}
+ engines: {node: '>=4'}
+
+ string-argv@0.1.2:
+ resolution: {integrity: sha512-mBqPGEOMNJKXRo7z0keX0wlAhbBAjilUdPW13nN0PecVryZxdHIeM7TqbsSUA7VYuS00HGC6mojP7DlQzfa9ZA==}
+ engines: {node: '>=0.6.19'}
+
+ string-argv@0.3.2:
+ resolution: {integrity: sha512-aqD2Q0144Z+/RqG52NeHEkZauTAUWJO8c6yTftGJKO3Tja5tUgIfmIl6kExvhtxSDP7fXB6DvzkfMpCd/F3G+Q==}
+ engines: {node: '>=0.6.19'}
+
+ string-length@4.0.2:
+ resolution: {integrity: sha512-+l6rNN5fYHNhZZy41RXsYptCjA2Igmq4EG7kZAYFQI1E1VTXarr6ZPXBg6eq7Y6eK4FEhY6AJlyuFIb/v/S0VQ==}
+ engines: {node: '>=10'}
+
+ string-similarity@4.0.4:
+ resolution: {integrity: sha512-/q/8Q4Bl4ZKAPjj8WerIBJWALKkaPRfrvhfF8k/B23i4nzrlRj2/go1m90In7nG/3XDSbOo0+pu6RvCTM9RGMQ==}
+ deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info.
+
+ string-to-stream@3.0.1:
+ resolution: {integrity: sha512-Hl092MV3USJuUCC6mfl9sPzGloA3K5VwdIeJjYIkXY/8K+mUvaeEabWJgArp+xXrsWxCajeT2pc4axbVhIZJyg==}
+
+ string-width@1.0.2:
+ resolution: {integrity: sha512-0XsVpQLnVCXHJfyEs8tC0zpTVIr5PKKsQtkT29IwupnPTjtPmQ3xT/4yCREF9hYkV/3M3kzcUTSAZT6a6h81tw==}
+ engines: {node: '>=0.10.0'}
+
+ string-width@4.2.3:
+ resolution: {integrity: sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==}
+ engines: {node: '>=8'}
+
+ string-width@5.1.2:
+ resolution: {integrity: sha512-HnLOCR3vjcY8beoNLtcjZ5/nxn2afmME6lhrDrebokqMap+XbeW8n9TXpPDOqdGK5qcI3oT0GKTW6wC7EMiVqA==}
+ engines: {node: '>=12'}
+
+ string.prototype.includes@2.0.1:
+ resolution: {integrity: sha512-o7+c9bW6zpAdJHTtujeePODAhkuicdAryFsfVKwA+wGw89wJ4GTY484WTucM9hLtDEOpOvI+aHnzqnC5lHp4Rg==}
+ engines: {node: '>= 0.4'}
+
+ string.prototype.matchall@4.0.11:
+ resolution: {integrity: sha512-NUdh0aDavY2og7IbBPenWqR9exH+E26Sv8e0/eTe1tltDGZL+GtBkDAnnyBtmekfK6/Dq3MkcGtzXFEd1LQrtg==}
+ engines: {node: '>= 0.4'}
+
+ string.prototype.repeat@1.0.0:
+ resolution: {integrity: sha512-0u/TldDbKD8bFCQ/4f5+mNRrXwZ8hg2w7ZR8wa16e8z9XpePWl3eGEcUD0OXpEH/VJH/2G3gjUtR3ZOiBe2S/w==}
+
+ string.prototype.trim@1.2.9:
+ resolution: {integrity: sha512-klHuCNxiMZ8MlsOihJhJEBJAiMVqU3Z2nEXWfWnIqjN0gEFS9J9+IxKozWWtQGcgoa1WUZzLjKPTr4ZHNFTFxw==}
+ engines: {node: '>= 0.4'}
+
+ string.prototype.trimend@1.0.8:
+ resolution: {integrity: sha512-p73uL5VCHCO2BZZ6krwwQE3kCzM7NKmis8S//xEC6fQonchbum4eP6kR4DLEjQFO3Wnj3Fuo8NM0kOSjVdHjZQ==}
+
+ string.prototype.trimstart@1.0.8:
+ resolution: {integrity: sha512-UXSH262CSZY1tfu3G3Secr6uGLCFVPMhIqHjlgCUtCCcgihYc/xKs9djMTMUOb2j1mVSeU8EU6NWc/iQKU6Gfg==}
+ engines: {node: '>= 0.4'}
+
+ string_decoder@0.10.31:
+ resolution: {integrity: sha512-ev2QzSzWPYmy9GuqfIVildA4OdcGLeFZQrq5ys6RtiuF+RQQiZWr8TZNyAcuVXyQRYfEO+MsoB/1BuQVhOJuoQ==}
+
+ string_decoder@1.1.1:
+ resolution: {integrity: sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==}
+
+ string_decoder@1.3.0:
+ resolution: {integrity: sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA==}
+
+ stringify-entities@4.0.4:
+ resolution: {integrity: sha512-IwfBptatlO+QCJUo19AqvrPNqlVMpW9YEL2LIVY+Rpv2qsjCGxaDLNRgeGsQWJhfItebuJhsGSLjaBbNSQ+ieg==}
+
+ strip-ansi@3.0.1:
+ resolution: {integrity: sha512-VhumSSbBqDTP8p2ZLKj40UjBCV4+v8bUSEpUb4KjRgWk9pbqGF4REFj6KEagidb2f/M6AzC0EmFyDNGaw9OCzg==}
+ engines: {node: '>=0.10.0'}
+
+ strip-ansi@6.0.1:
+ resolution: {integrity: sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==}
+ engines: {node: '>=8'}
+
+ strip-ansi@7.1.0:
+ resolution: {integrity: sha512-iq6eVVI64nQQTRYq2KtEg2d2uU7LElhTJwsH4YzIHZshxlgZms/wIc4VoDQTlG/IvVIrBKG06CrZnp0qv7hkcQ==}
+ engines: {node: '>=12'}
+
+ strip-bom@3.0.0:
+ resolution: {integrity: sha512-vavAMRXOgBVNF6nyEEmL3DBK19iRpDcoIwW+swQ+CbGiu7lju6t+JklA1MHweoWtadgt4ISVUsXLyDq34ddcwA==}
+ engines: {node: '>=4'}
+
+ strip-bom@4.0.0:
+ resolution: {integrity: sha512-3xurFv5tEgii33Zi8Jtp55wEIILR9eh34FAW00PZf+JnSsTmV/ioewSgQl97JHvgjoRGwPShsWm+IdrxB35d0w==}
+ engines: {node: '>=8'}
+
+ strip-eof@1.0.0:
+ resolution: {integrity: sha512-7FCwGGmx8mD5xQd3RPUvnSpUXHM3BWuzjtpD4TXsfcZ9EL4azvVVUscFYwD9nx8Kh+uCBC00XBtAykoMHwTh8Q==}
+ engines: {node: '>=0.10.0'}
+
+ strip-final-newline@2.0.0:
+ resolution: {integrity: sha512-BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA==}
+ engines: {node: '>=6'}
+
+ strip-json-comments@2.0.1:
+ resolution: {integrity: sha512-4gB8na07fecVVkOI6Rs4e7T6NOTki5EmL7TUduTs6bu3EdnSycntVJ4re8kgZA+wx9IueI2Y11bfbgwtzuE0KQ==}
+ engines: {node: '>=0.10.0'}
+
+ strip-json-comments@3.1.1:
+ resolution: {integrity: sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==}
+ engines: {node: '>=8'}
+
+ stripe@8.222.0:
+ resolution: {integrity: sha512-hrA79fjmN2Eb6K3kxkDzU4ODeVGGjXQsuVaAPSUro6I9MM3X+BvIsVqdphm3BXWfimAGFvUqWtPtHy25mICY1w==}
+ engines: {node: ^8.1 || >=10.*}
+
+ strnum@1.0.5:
+ resolution: {integrity: sha512-J8bbNyKKXl5qYcR36TIO8W3mVGVHrmmxsd5PAItGkmyzwJvybiw2IVq5nqd0i4LSNSkB/sx9VHllbfFdr9k1JA==}
+
+ strtok3@6.3.0:
+ resolution: {integrity: sha512-fZtbhtvI9I48xDSywd/somNqgUHl2L2cstmXCCif0itOf96jeW18MBSyrLuNicYQVkvpOxkZtkzujiTJ9LW5Jw==}
+ engines: {node: '>=10'}
+
+ strtok3@7.1.1:
+ resolution: {integrity: sha512-mKX8HA/cdBqMKUr0MMZAFssCkIGoZeSCMXgnt79yKxNFguMLVFgRe6wB+fsL0NmoHDbeyZXczy7vEPSoo3rkzg==}
+ engines: {node: '>=16'}
+
+ stubs@3.0.0:
+ resolution: {integrity: sha512-PdHt7hHUJKxvTCgbKX9C1V/ftOcjJQgz8BZwNfV5c4B6dcGqlpelTbJ999jBGZ2jYiPAwcX5dP6oBwVlBlUbxw==}
+
+ style-to-object@1.0.8:
+ resolution: {integrity: sha512-xT47I/Eo0rwJmaXC4oilDGDWLohVhR6o/xAQcPQN8q6QBuZVL8qMYL85kLmST5cPjAorwvqIA4qXTRQoYHaL6g==}
+
+ styled-jsx@5.1.6:
+ resolution: {integrity: sha512-qSVyDTeMotdvQYoHWLNGwRFJHC+i+ZvdBRYosOFgC+Wg1vx4frN2/RG/NA7SYqqvKNLf39P2LSRA2pu6n0XYZA==}
+ engines: {node: '>= 12.0.0'}
+ peerDependencies:
+ '@babel/core': '*'
+ babel-plugin-macros: '*'
+ react: '>= 16.8.0 || 17.x.x || ^18.0.0-0 || ^19.0.0-0'
+ peerDependenciesMeta:
+ '@babel/core':
+ optional: true
+ babel-plugin-macros:
+ optional: true
+
+ stylelint-config-recommended@14.0.1:
+ resolution: {integrity: sha512-bLvc1WOz/14aPImu/cufKAZYfXs/A/owZfSMZ4N+16WGXLoX5lOir53M6odBxvhgmgdxCVnNySJmZKx73T93cg==}
+ engines: {node: '>=18.12.0'}
+ peerDependencies:
+ stylelint: ^16.1.0
+
+ stylelint-config-standard@36.0.1:
+ resolution: {integrity: sha512-8aX8mTzJ6cuO8mmD5yon61CWuIM4UD8Q5aBcWKGSf6kg+EC3uhB+iOywpTK4ca6ZL7B49en8yanOFtUW0qNzyw==}
+ engines: {node: '>=18.12.0'}
+ peerDependencies:
+ stylelint: ^16.1.0
+
+ stylelint-prettier@5.0.2:
+ resolution: {integrity: sha512-qJ+BN+1T2ZcKz9WIrv0x+eFGHzSUnXfXd5gL///T6XoJvr3D8/ztzz2fhtmXef7Vb8P33zBXmLTTveByr0nwBw==}
+ engines: {node: '>=18.12.0'}
+ peerDependencies:
+ prettier: '>=3.0.0'
+ stylelint: '>=16.0.0'
+
+ stylelint@16.10.0:
+ resolution: {integrity: sha512-z/8X2rZ52dt2c0stVwI9QL2AFJhLhbPkyfpDFcizs200V/g7v+UYY6SNcB9hKOLcDDX/yGLDsY/pX08sLkz9xQ==}
+ engines: {node: '>=18.12.0'}
+ hasBin: true
+
+ stylis@4.2.0:
+ resolution: {integrity: sha512-Orov6g6BB1sDfYgzWfTHDOxamtX1bE/zo104Dh9e6fqJ3PooipYyfJ0pUmrZO2wAvO8YbEyeFrkV91XTsGMSrw==}
+
+ sugar-core@2.0.6:
+ resolution: {integrity: sha512-YmLFysR3Si6RImqL1+aB6JH81EXxvXn5iXhPf2PsjfoUYEwCxFDYCQY+zC3WqviuGWzxFaSkkJvkUE05Y03L5Q==}
+ engines: {node: '>= 0.8.23'}
+
+ sugar@2.0.6:
+ resolution: {integrity: sha512-s0P2/pjJtAD9VA44+2Gqm3NdC4v+08melA6YubOxzshu628krTbn95/M2GWMrI9rYspZMpYBIrChR46fjQ7xsQ==}
+ engines: {node: '>= 0.8.23'}
+
+ superagent-proxy@3.0.0:
+ resolution: {integrity: sha512-wAlRInOeDFyd9pyonrkJspdRAxdLrcsZ6aSnS+8+nu4x1aXbz6FWSTT9M6Ibze+eG60szlL7JA8wEIV7bPWuyQ==}
+ engines: {node: '>=6'}
+ peerDependencies:
+ superagent: '>= 0.15.4 || 1 || 2 || 3'
+
+ superagent@3.8.1:
+ resolution: {integrity: sha512-VMBFLYgFuRdfeNQSMLbxGSLfmXL/xc+OO+BZp41Za/NRDBet/BNbkRJrYzCUu0u4GU0i/ml2dtT8b9qgkw9z6Q==}
+ engines: {node: '>= 4.0'}
+ deprecated: Please upgrade to v7.0.2+ of superagent. We have fixed numerous issues with streams, form-data, attach(), filesystem errors not bubbling up (ENOENT on attach()), and all tests are now passing. See the releases tab for more information at .
+
+ superagent@4.1.0:
+ resolution: {integrity: sha512-FT3QLMasz0YyCd4uIi5HNe+3t/onxMyEho7C3PSqmti3Twgy2rXT4fmkTz6wRL6bTF4uzPcfkUCa8u4JWHw8Ag==}
+ engines: {node: '>= 6.0'}
+ deprecated: Please upgrade to v9.0.0+ as we have fixed a public vulnerability with formidable dependency. Note that v9.0.0+ requires Node.js v14.18.0+. See https://github.com/ladjs/superagent/pull/1800 for insight. This project is supported and maintained by the team at Forward Email @ https://forwardemail.net
+
+ superagent@5.3.1:
+ resolution: {integrity: sha512-wjJ/MoTid2/RuGCOFtlacyGNxN9QLMgcpYLDQlWFIhhdJ93kNscFonGvrpAHSCVjRVj++DGCglocF7Aej1KHvQ==}
+ engines: {node: '>= 7.0.0'}
+ deprecated: Please upgrade to v9.0.0+ as we have fixed a public vulnerability with formidable dependency. Note that v9.0.0+ requires Node.js v14.18.0+. See https://github.com/ladjs/superagent/pull/1800 for insight. This project is supported and maintained by the team at Forward Email @ https://forwardemail.net
+
+ superagent@7.1.6:
+ resolution: {integrity: sha512-gZkVCQR1gy/oUXr+kxJMLDjla434KmSOKbx5iGD30Ql+AkJQ/YlPKECJy2nhqOsHLjGHzoDTXNSjhnvWhzKk7g==}
+ engines: {node: '>=6.4.0 <13 || >=14'}
+ deprecated: Please upgrade to v9.0.0+ as we have fixed a public vulnerability with formidable dependency. Note that v9.0.0+ requires Node.js v14.18.0+. See https://github.com/ladjs/superagent/pull/1800 for insight. This project is supported and maintained by the team at Forward Email @ https://forwardemail.net
+
+ supports-color@2.0.0:
+ resolution: {integrity: sha512-KKNVtd6pCYgPIKU4cp2733HWYCpplQhddZLBUryaAHou723x+FRzQ5Df824Fj+IyyuiQTRoub4SnIFfIcrp70g==}
+ engines: {node: '>=0.8.0'}
+
+ supports-color@5.5.0:
+ resolution: {integrity: sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==}
+ engines: {node: '>=4'}
+
+ supports-color@7.2.0:
+ resolution: {integrity: sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==}
+ engines: {node: '>=8'}
+
+ supports-color@8.1.1:
+ resolution: {integrity: sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==}
+ engines: {node: '>=10'}
+
+ supports-color@9.4.0:
+ resolution: {integrity: sha512-VL+lNrEoIXww1coLPOmiEmK/0sGigko5COxI09KzHc2VJXJsQ37UaQ+8quuxjDeA7+KnLGTWRyOXSLLR2Wb4jw==}
+ engines: {node: '>=12'}
+
+ supports-hyperlinks@3.1.0:
+ resolution: {integrity: sha512-2rn0BZ+/f7puLOHZm1HOJfwBggfaHXUpPUSSG/SWM4TWp5KCfmNYwnC3hruy2rZlMnmWZ+QAGpZfchu3f3695A==}
+ engines: {node: '>=14.18'}
+
+ supports-preserve-symlinks-flag@1.0.0:
+ resolution: {integrity: sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==}
+ engines: {node: '>= 0.4'}
+
+ svg-tags@1.0.0:
+ resolution: {integrity: sha512-ovssysQTa+luh7A5Weu3Rta6FJlFBBbInjOh722LIt6klpU2/HtdUbszju/G4devcvk8PGt7FCLv5wftu3THUA==}
+
+ swagger-inline@6.1.1:
+ resolution: {integrity: sha512-ytE+mTC/xc5Apq8YM00gXtzoO4ptlNltF60LYd21pQEGWRBQVBvrliy1gtoluvNUMHQxpHiFi48njQyq6Iwccg==}
+ engines: {node: '>=14'}
+ hasBin: true
+
+ swagger2openapi@7.0.8:
+ resolution: {integrity: sha512-upi/0ZGkYgEcLeGieoz8gT74oWHA0E7JivX7aN9mAf+Tc7BQoRBvnIGHoPDw+f9TXTW4s6kGYCZJtauP6OYp7g==}
+ hasBin: true
+
+ synckit@0.9.2:
+ resolution: {integrity: sha512-vrozgXDQwYO72vHjUb/HnFbQx1exDjoKzqx23aXEg2a9VIg2TSFZ8FmeZpTjUCFMYw7mpX4BE2SFu8wI7asYsw==}
+ engines: {node: ^14.18.0 || >=16.0.0}
+
+ table-layout@1.0.2:
+ resolution: {integrity: sha512-qd/R7n5rQTRFi+Zf2sk5XVVd9UQl6ZkduPFC3S7WEGJAmetDTjY3qPN50eSKzwuzEyQKy5TN2TiZdkIjos2L6A==}
+ engines: {node: '>=8.0.0'}
+
+ table@6.8.2:
+ resolution: {integrity: sha512-w2sfv80nrAh2VCbqR5AK27wswXhqcck2AhfnNW76beQXskGZ1V12GwS//yYVa3d3fcvAip2OUnbDAjW2k3v9fA==}
+ engines: {node: '>=10.0.0'}
+
+ tapable@2.2.1:
+ resolution: {integrity: sha512-GNzQvQTOIP6RyTfE2Qxb8ZVlNmw0n88vp1szwWRimP02mnTsx3Wtn5qRdqY9w2XduFNUgvOwhNnQsjwCp+kqaQ==}
+ engines: {node: '>=6'}
+
+ tar-fs@2.1.1:
+ resolution: {integrity: sha512-V0r2Y9scmbDRLCNex/+hYzvp/zyYjvFbHPNgVTKfQvVrb6guiE/fxP+XblDNR011utopbkex2nM4dHNV6GDsng==}
+
+ tar-fs@3.0.4:
+ resolution: {integrity: sha512-5AFQU8b9qLfZCX9zp2duONhPmZv0hGYiBPJsyUdqMjzq/mqVpy/rEUSeHk1+YitmxugaptgBh5oDGU3VsAJq4w==}
+
+ tar-fs@3.0.6:
+ resolution: {integrity: sha512-iokBDQQkUyeXhgPYaZxmczGPhnhXZ0CmrqI+MOb/WFGS9DW5wnfrLgtjUJBvz50vQ3qfRwJ62QVoCFu8mPVu5w==}
+
+ tar-stream@2.2.0:
+ resolution: {integrity: sha512-ujeqbceABgwMZxEJnk2HDY2DlnUZ+9oEcb1KzTVfYHio0UE6dG71n60d8D2I4qNvleWrrXpmjpt7vZeF1LnMZQ==}
+ engines: {node: '>=6'}
+
+ tar-stream@3.1.7:
+ resolution: {integrity: sha512-qJj60CXt7IU1Ffyc3NJMjh6EkuCFej46zUqJ4J7pqYlThyd9bO0XBTmcOIhSzZJVWfsLks0+nle/j538YAW9RQ==}
+
+ tar@6.2.1:
+ resolution: {integrity: sha512-DZ4yORTwrbTj/7MZYq2w+/ZFdI6OZ/f9SFHR+71gIVUZhOQPHzVCLpvRnPgyaMpfWxxk/4ONva3GQSyNIKRv6A==}
+ engines: {node: '>=10'}
+
+ tarn@3.0.2:
+ resolution: {integrity: sha512-51LAVKUSZSVfI05vjPESNc5vwqqZpbXCsU+/+wxlOrUjk2SnFTt97v9ZgQrD4YmxYW1Px6w2KjaDitCfkvgxMQ==}
+ engines: {node: '>=8.0.0'}
+
+ tedious@16.7.1:
+ resolution: {integrity: sha512-NmedZS0NJiTv3CoYnf1FtjxIDUgVYzEmavrc8q2WHRb+lP4deI9BpQfmNnBZZaWusDbP5FVFZCcvzb3xOlNVlQ==}
+ engines: {node: '>=16'}
+
+ teeny-request@7.2.0:
+ resolution: {integrity: sha512-SyY0pek1zWsi0LRVAALem+avzMLc33MKW/JLLakdP4s9+D7+jHcy5x6P+h94g2QNZsAqQNfX5lsbd3WSeJXrrw==}
+ engines: {node: '>=10'}
+
+ teeny-request@8.0.3:
+ resolution: {integrity: sha512-jJZpA5He2y52yUhA7pyAGZlgQpcB+xLjcN0eUFxr9c8hP/H7uOXbBNVo/O0C/xVfJLJs680jvkFgVJEEvk9+ww==}
+ engines: {node: '>=12'}
+
+ teeny-request@9.0.0:
+ resolution: {integrity: sha512-resvxdc6Mgb7YEThw6G6bExlXKkv6+YbuzGg9xuXxSgxJF7Ozs+o8Y9+2R3sArdWdW8nOokoQb1yrpFB0pQK2g==}
+ engines: {node: '>=14'}
+
+ temp-dir@1.0.0:
+ resolution: {integrity: sha512-xZFXEGbG7SNC3itwBzI3RYjq/cEhBkx2hJuKGIUOcEULmkQExXiHat2z/qkISYsuR+IKumhEfKKbV5qXmhICFQ==}
+ engines: {node: '>=4'}
+
+ temp-dir@2.0.0:
+ resolution: {integrity: sha512-aoBAniQmmwtcKp/7BzsH8Cxzv8OL736p7v1ihGb5e9DJ9kTwGWHrQrVB5+lfVDzfGrdRzXch+ig7LHaY1JTOrg==}
+ engines: {node: '>=8'}
+
+ tempy@0.3.0:
+ resolution: {integrity: sha512-WrH/pui8YCwmeiAoxV+lpRH9HpRtgBhSR2ViBPgpGb/wnYDzp21R4MN45fsCGvLROvY67o3byhJRYRONJyImVQ==}
+ engines: {node: '>=8'}
+
+ test-exclude@6.0.0:
+ resolution: {integrity: sha512-cAGWPIyOHU6zlmg88jwm7VRyXnMN7iV68OGAbYDk/Mh/xC/pzVPlQtY6ngoIH/5/tciuhGfvESU8GrHrcxD56w==}
+ engines: {node: '>=8'}
+
+ text-decoder@1.2.1:
+ resolution: {integrity: sha512-x9v3H/lTKIJKQQe7RPQkLfKAnc9lUTkWDypIQgTzPJAq+5/GCDHonmshfvlsNSj58yyshbIJJDLmU15qNERrXQ==}
+
+ text-decoding@1.0.0:
+ resolution: {integrity: sha512-/0TJD42KDnVwKmDK6jj3xP7E2MG7SHAOG4tyTgyUCRPdHwvkquYNLEQltmdMa3owq3TkddCVcTsoctJI8VQNKA==}
+
+ text-hex@1.0.0:
+ resolution: {integrity: sha512-uuVGNWzgJ4yhRaNSiubPY7OjISw4sw4E5Uv0wbjp+OzcbmVU/rsT8ujgcXJhn9ypzsgr5vlzpPqP+MBBKcGvbg==}
+
+ text-table@0.2.0:
+ resolution: {integrity: sha512-N+8UisAXDGk8PFXP4HAzVR9nbfmVJ3zYLAWiTIoqC5v5isinhr+r5uaO8+7r3BMfuNIufIsA7RdpVgacC2cSpw==}
+
+ through2-filter@3.0.0:
+ resolution: {integrity: sha512-jaRjI2WxN3W1V8/FMZ9HKIBXixtiqs3SQSX4/YGIiP3gL6djW48VoZq9tDqeCWs3MT8YY5wb/zli8VW8snY1CA==}
+
+ through2-map@3.0.0:
+ resolution: {integrity: sha512-Ms68QPbSJKjRYY7fmqZHB0VGt+vD0/tjmDHUWgxltjifCof6hZWWeQAEi27Wjbs7jyNlIIyerQw/TVj7gHkd/Q==}
+
+ through2@2.0.5:
+ resolution: {integrity: sha512-/mrRod8xqpA+IHSLyGCQ2s8SPHiCDEeQJSep1jqLYeEUClOFG2Qsh+4FU6G9VeqpZnGW/Su8LQGc4YKni5rYSQ==}
+
+ through@2.3.8:
+ resolution: {integrity: sha512-w89qg7PI8wAdvX60bMDP+bFoD5Dvhm9oLheFp5O4a2QF0cSBGsBX4qZmadPMvVqlLJBBci+WqGGOAPvcDeNSVg==}
+
+ timed-out@4.0.1:
+ resolution: {integrity: sha512-G7r3AhovYtr5YKOWQkta8RKAPb+J9IsO4uVmzjl8AZwfhs8UcUwTiD6gcJYSgOtzyjvQKrKYn41syHbUWMkafA==}
+ engines: {node: '>=0.10.0'}
+
+ timer-node@5.0.7:
+ resolution: {integrity: sha512-M1aP6ASmuVD0PSxl5fqjCAGY9WyND3DHZ8RwT5I8o7469XE53Lb5zbPai20Dhj7TProyaapfVj3TaT0P+LoSEA==}
+
+ timers-ext@0.1.8:
+ resolution: {integrity: sha512-wFH7+SEAcKfJpfLPkrgMPvvwnEtj8W4IurvEyrKsDleXnKLCDw71w8jltvfLa8Rm4qQxxT4jmDBYbJG/z7qoww==}
+ engines: {node: '>=0.12'}
+
+ timezones-list@3.0.3:
+ resolution: {integrity: sha512-C+Vdvvj2c1xB6pu81pOX8geo6mrk/QsudFVlTVQET7QQwu8WAIyhDNeCrK5grU7EMzmbKLWqz7uU6dN8fvQvPQ==}
+
+ tiny-invariant@1.3.3:
+ resolution: {integrity: sha512-+FbBPE1o9QAYvviau/qC5SE3caw21q3xkvWKBtja5vgqOWIHHJ3ioaq1VPfn/Szqctz2bU/oYeKd9/z5BL+PVg==}
+
+ tiny-warning@1.0.3:
+ resolution: {integrity: sha512-lBN9zLN/oAf68o3zNXYrdCt1kP8WsiGW8Oo2ka41b2IM5JL/S1CTyX1rW0mb/zSuJun0ZUrDxx4sqvYS2FWzPA==}
+
+ tinyduration@3.3.1:
+ resolution: {integrity: sha512-39iO6CyHMFTPv9PKFxXPXa1DDc2JHog4oGK6x3fG75T+chRO+SKmuEPT00myYs3aGFIq3nQ6U5J5c5hR0PMKjw==}
+
+ title-case@3.0.3:
+ resolution: {integrity: sha512-e1zGYRvbffpcHIrnuqT0Dh+gEJtDaxDSoG4JAIpq4oDFyooziLBIiYQv0GBT4FUAnUop5uZ1hiIAj7oAF6sOCA==}
+
+ tlds@1.252.0:
+ resolution: {integrity: sha512-GA16+8HXvqtfEnw/DTcwB0UU354QE1n3+wh08oFjr6Znl7ZLAeUgYzCcK+/CCrOyE0vnHR8/pu3XXG3vDijXpQ==}
+ hasBin: true
+
+ tmp-promise@3.0.3:
+ resolution: {integrity: sha512-RwM7MoPojPxsOBYnyd2hy0bxtIlVrihNs9pj5SUvY8Zz1sQcQG2tG1hSr8PDxfgEB8RNKDhqbIlroIarSNDNsQ==}
+
+ tmp@0.0.33:
+ resolution: {integrity: sha512-jRCJlojKnZ3addtTOjdIqoRuPEKBvNXcGYqzO6zWZX8KfKEpnGY5jfggJQ3EjKuu8D4bJRr0y+cYJFmYbImXGw==}
+ engines: {node: '>=0.6.0'}
+
+ tmp@0.2.3:
+ resolution: {integrity: sha512-nZD7m9iCPC5g0pYmcaxogYKggSfLsdxl8of3Q/oIbqCqLLIO9IAF0GWjX1z9NZRHPiXv8Wex4yDCaZsgEw0Y8w==}
+ engines: {node: '>=14.14'}
+
+ tmpl@1.0.5:
+ resolution: {integrity: sha512-3f0uOEAQwIqGuWW2MVzYg8fV/QNnc/IpuJNG837rLuczAaLVHslWHZQj4IGiEl5Hs3kkbhwL9Ab7Hrsmuj+Smw==}
+
+ to-regex-range@5.0.1:
+ resolution: {integrity: sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==}
+ engines: {node: '>=8.0'}
+
+ toggl-api@1.0.2:
+ resolution: {integrity: sha512-4r6N+KF6Av2nmCmUEUeY+zH7Fh6dXTVMi3C97Rgd8fVoZSXg/c1L96Fqz5Xu21xCo5tMmTHejANMgv0E72rSBA==}
+
+ toidentifier@1.0.1:
+ resolution: {integrity: sha512-o5sSPKEkg/DIQNmH43V0/uerLrpzVedkUh8tGNvaeXpfpuwjKenlSox/2O/BTlZUtEe+JG7s5YhEz608PlAHRA==}
+ engines: {node: '>=0.6'}
+
+ token-types@4.2.1:
+ resolution: {integrity: sha512-6udB24Q737UD/SDsKAHI9FCRP7Bqc9D/MQUV02ORQg5iskjtLJlZJNdN4kKtcdtwCeWIwIHDGaUsTsCCAa8sFQ==}
+ engines: {node: '>=10'}
+
+ token-types@5.0.1:
+ resolution: {integrity: sha512-Y2fmSnZjQdDb9W4w4r1tswlMHylzWIeOKpx0aZH9BgGtACHhrk3OkT52AzwcuqTRBZtvvnTjDBh8eynMulu8Vg==}
+ engines: {node: '>=14.16'}
+
+ touch@3.1.1:
+ resolution: {integrity: sha512-r0eojU4bI8MnHr8c5bNo7lJDdI2qXlWWJk6a9EAFG7vbhTjElYhBVS3/miuE0uOuoLdb8Mc/rVfsmm6eo5o9GA==}
+ hasBin: true
+
+ tough-cookie@2.5.0:
+ resolution: {integrity: sha512-nlLsUzgm1kfLXSXfRZMc1KLAugd4hqJHDTvc2hDIwS3mZAfMEuMbc03SujMF+GEcpaX/qboeycw6iO8JwVv2+g==}
+ engines: {node: '>=0.8'}
+
+ tr46@0.0.3:
+ resolution: {integrity: sha512-N3WMsuqV66lT30CrXNbEjx4GEwlow3v6rr4mCcv6prnfwhS01rkgyFdjPNBYd9br7LpXV1+Emh01fHnq2Gdgrw==}
+
+ tr46@1.0.1:
+ resolution: {integrity: sha512-dTpowEjclQ7Kgx5SdBkqRzVhERQXov8/l9Ft9dVM9fmg0W0KQSVaXX9T4i6twCPNtYiZM53lpSSUAwJbFPOHxA==}
+
+ tr46@3.0.0:
+ resolution: {integrity: sha512-l7FvfAHlcmulp8kr+flpQZmVwtu7nfRV7NZujtN0OqES8EL4O4e0qqzL0DC5gAvx/ZC/9lk6rhcUwYvkBnBnYA==}
+ engines: {node: '>=12'}
+
+ trim-lines@3.0.1:
+ resolution: {integrity: sha512-kRj8B+YHZCc9kQYdWfJB2/oUl9rA99qbowYYBtr4ui4mZyAQ2JpvVBd/6U2YloATfqBhBTSMhTpgBHtU0Mf3Rg==}
+
+ triple-beam@1.4.1:
+ resolution: {integrity: sha512-aZbgViZrg1QNcG+LULa7nhZpJTZSLm/mXnHXnbAbjmN5aSa0y7V+wvv6+4WaBtpISJzThKy+PIPxc1Nq1EJ9mg==}
+ engines: {node: '>= 14.0.0'}
+
+ trough@1.0.5:
+ resolution: {integrity: sha512-rvuRbTarPXmMb79SmzEp8aqXNKcK+y0XaB298IXueQ8I2PsrATcPBCSPyK/dDNa2iWOhKlfNnOjdAOTBU/nkFA==}
+
+ trough@2.2.0:
+ resolution: {integrity: sha512-tmMpK00BjZiUyVyvrBK7knerNgmgvcV/KLVyuma/SC+TQN167GrMRciANTz09+k3zW8L8t60jWO1GpfkZdjTaw==}
+
+ try-catch@3.0.1:
+ resolution: {integrity: sha512-91yfXw1rr/P6oLpHSyHDOHm0vloVvUoo9FVdw8YwY05QjJQG9OT0LUxe2VRAzmHG+0CUOmI3nhxDUMLxDN/NEQ==}
+ engines: {node: '>=6'}
+
+ try-to-catch@3.0.1:
+ resolution: {integrity: sha512-hOY83V84Hx/1sCzDSaJA+Xz2IIQOHRvjxzt+F0OjbQGPZ6yLPLArMA0gw/484MlfUkQbCpKYMLX3VDCAjWKfzQ==}
+ engines: {node: '>=6'}
+
+ ts-api-utils@1.4.0:
+ resolution: {integrity: sha512-032cPxaEKwM+GT3vA5JXNzIaizx388rhsSW79vGRNGXfRRAdEAn2mvk36PvK5HnOchyWZ7afLEXqYCvPCrzuzQ==}
+ engines: {node: '>=16'}
+ peerDependencies:
+ typescript: '>=4.2.0'
+
+ ts-jest@29.2.5:
+ resolution: {integrity: sha512-KD8zB2aAZrcKIdGk4OwpJggeLcH1FgrICqDSROWqlnJXGCXK4Mn6FcdK2B6670Xr73lHMG1kHw8R87A0ecZ+vA==}
+ engines: {node: ^14.15.0 || ^16.10.0 || ^18.0.0 || >=20.0.0}
+ hasBin: true
+ peerDependencies:
+ '@babel/core': '>=7.0.0-beta.0 <8'
+ '@jest/transform': ^29.0.0
+ '@jest/types': ^29.0.0
+ babel-jest: ^29.0.0
+ esbuild: '*'
+ jest: ^29.0.0
+ typescript: '>=4.3 <6'
+ peerDependenciesMeta:
+ '@babel/core':
+ optional: true
+ '@jest/transform':
+ optional: true
+ '@jest/types':
+ optional: true
+ babel-jest:
+ optional: true
+ esbuild:
+ optional: true
+
+ tsc-esm-fix@2.20.27:
+ resolution: {integrity: sha512-bfoSY29XN4yRvXgfxc4rtKQPe9Xx02BahWSZ3D4GgBXIWSE+TJ/BXGSrpUIBkrsKIUQv2zA3qiwJVFnUV59Xdw==}
+ engines: {node: '>=16.0.0'}
+ hasBin: true
+
+ tsc-watch@5.0.3:
+ resolution: {integrity: sha512-Hz2UawwELMSLOf0xHvAFc7anLeMw62cMVXr1flYmhRuOhOyOljwmb1l/O60ZwRyy1k7N1iC1mrn1QYM2zITfuw==}
+ engines: {node: '>=8.17.0'}
+ hasBin: true
+ peerDependencies:
+ typescript: '*'
+
+ tsconfig-paths@3.15.0:
+ resolution: {integrity: sha512-2Ac2RgzDe/cn48GvOe3M+o82pEFewD3UPbyoUHHdKasHwJKjds4fLXWf/Ux5kATBKN20oaFGu+jbElp1pos0mg==}
+
+ tslib@1.14.1:
+ resolution: {integrity: sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==}
+
+ tslib@2.8.1:
+ resolution: {integrity: sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w==}
+
+ tslint@5.14.0:
+ resolution: {integrity: sha512-IUla/ieHVnB8Le7LdQFRGlVJid2T/gaJe5VkjzRVSRR6pA2ODYrnfR1hmxi+5+au9l50jBwpbBL34txgv4NnTQ==}
+ engines: {node: '>=4.8.0'}
+ hasBin: true
+ peerDependencies:
+ typescript: '>=2.1.0 || >=2.1.0-dev || >=2.2.0-dev || >=2.3.0-dev || >=2.4.0-dev || >=2.5.0-dev || >=2.6.0-dev || >=2.7.0-dev || >=2.8.0-dev || >=2.9.0-dev || >=3.0.0-dev || >= 3.1.0-dev || >= 3.2.0-dev'
+
+ tsutils@2.29.0:
+ resolution: {integrity: sha512-g5JVHCIJwzfISaXpXE1qvNalca5Jwob6FjI4AoPlqMusJ6ftFE7IkkFoMhVLRgK+4Kx3gkzb8UZK5t5yTTvEmA==}
+ peerDependencies:
+ typescript: '>=2.1.0 || >=2.1.0-dev || >=2.2.0-dev || >=2.3.0-dev || >=2.4.0-dev || >=2.5.0-dev || >=2.6.0-dev || >=2.7.0-dev || >=2.8.0-dev || >=2.9.0-dev || >= 3.0.0-dev || >= 3.1.0-dev'
+
+ tsutils@3.21.0:
+ resolution: {integrity: sha512-mHKK3iUXL+3UF6xL5k0PEhKRUBKPBCv/+RkEOpjRWxxx27KKRBmmA60A9pgOUvMi8GKhRMPEmjBRPzs2W7O1OA==}
+ engines: {node: '>= 6'}
+ peerDependencies:
+ typescript: '>=2.8.0 || >= 3.2.0-dev || >= 3.3.0-dev || >= 3.4.0-dev || >= 3.5.0-dev || >= 3.6.0-dev || >= 3.6.0-beta || >= 3.7.0-dev || >= 3.7.0-beta'
+
+ tunnel-agent@0.6.0:
+ resolution: {integrity: sha512-McnNiV1l8RYeY8tBgEpuodCC1mLUdbSN+CYBL7kJsJNInOP8UjDDEwdk6Mw60vdLLrr5NHKZhMAOSrR2NZuQ+w==}
+
+ tunnel@0.0.6:
+ resolution: {integrity: sha512-1h/Lnq9yajKY2PEbBadPXj3VxsDDu844OnaAo52UVmIzIvwwtBPIuNvkjuzBlTWpfJyUbG3ez0KSBibQkj4ojg==}
+ engines: {node: '>=0.6.11 <=0.7.0 || >=0.7.3'}
+
+ tweetnacl@0.14.5:
+ resolution: {integrity: sha512-KXXFFdAbFXY4geFIwoyNK+f5Z1b7swfXABfL7HXCmoIWMKU3dmS26672A4EeQtDzLKy7SXmfBu51JolvEKwtGA==}
+
+ twilio@3.84.1:
+ resolution: {integrity: sha512-Q/xaPoayTj+bgJdnUgpE+EiB/VoNOG+byDFdlDej0FgxiHLgXKliZfVv6boqHPWvC1k7Dt0AK96OBFZ0P55QQg==}
+ engines: {node: '>=6.0'}
+
+ type-check@0.3.2:
+ resolution: {integrity: sha512-ZCmOJdvOWDBYJlzAoFkC+Q0+bUyEOS1ltgp1MGU03fqHG+dbi9tBFU2Rd9QKiDZFAYrhPh2JUf7rZRIuHRKtOg==}
+ engines: {node: '>= 0.8.0'}
+
+ type-check@0.4.0:
+ resolution: {integrity: sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==}
+ engines: {node: '>= 0.8.0'}
+
+ type-detect@4.0.8:
+ resolution: {integrity: sha512-0fr/mIH1dlO+x7TlcMy+bIDqKPsw/70tVyeHW787goQjhmqaZe10uwLujubK9q9Lg6Fiho1KUKDYz0Z7k7g5/g==}
+ engines: {node: '>=4'}
+
+ type-fest@0.20.2:
+ resolution: {integrity: sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==}
+ engines: {node: '>=10'}
+
+ type-fest@0.21.3:
+ resolution: {integrity: sha512-t0rzBq87m3fVcduHDUFhKmyyX+9eo6WQjZvf51Ea/M0Q7+T374Jp1aUiyUl0GKxp8M/OETVHSDvmkyPgvX+X2w==}
+ engines: {node: '>=10'}
+
+ type-fest@0.3.1:
+ resolution: {integrity: sha512-cUGJnCdr4STbePCgqNFbpVNCepa+kAVohJs1sLhxzdH+gnEoOd8VhbYa7pD3zZYGiURWM2xzEII3fQcRizDkYQ==}
+ engines: {node: '>=6'}
+
+ type-fest@0.6.0:
+ resolution: {integrity: sha512-q+MB8nYR1KDLrgr4G5yemftpMC7/QLqVndBmEEdqzmNj5dcFOO4Oo8qlwZE3ULT3+Zim1F8Kq4cBnikNhlCMlg==}
+ engines: {node: '>=8'}
+
+ type-fest@0.8.1:
+ resolution: {integrity: sha512-4dbzIzqvjtgiM5rw1k5rEHtBANKmdudhGyBEajN01fEyhaAIhsoKNy6y7+IN93IfpFtwY9iqi7kD+xwKhQsNJA==}
+ engines: {node: '>=8'}
+
+ type-fest@4.27.0:
+ resolution: {integrity: sha512-3IMSWgP7C5KSQqmo1wjhKrwsvXAtF33jO3QY+Uy++ia7hqvgSK6iXbbg5PbDBc1P2ZbNEDgejOrN4YooXvhwCw==}
+ engines: {node: '>=16'}
+
+ type-is@1.6.18:
+ resolution: {integrity: sha512-TkRKr9sUTxEH8MdfuCSP7VizJyzRNMjj2J2do2Jr3Kym598JVdEksuzPQCnlFPW4ky9Q+iA+ma9BGm06XQBy8g==}
+ engines: {node: '>= 0.6'}
+
+ type@2.7.3:
+ resolution: {integrity: sha512-8j+1QmAbPvLZow5Qpi6NCaN8FB60p/6x8/vfNqOk/hC+HuvFZhL4+WfekuhQLiqFZXOgQdrs3B+XxEmCc6b3FQ==}
+
+ typecast@0.0.1:
+ resolution: {integrity: sha512-L2f5OCLKsJdCjSyN0d5O6CkNxhiC8EQ2XlXnHpWZVNfF+mj2OTaXhAVnP0/7SY/sxO1DHZpOFMpIuGlFUZEGNA==}
+
+ typed-array-buffer@1.0.2:
+ resolution: {integrity: sha512-gEymJYKZtKXzzBzM4jqa9w6Q1Jjm7x2d+sh19AdsD4wqnMPDYyvwpsIc2Q/835kHuo3BEQ7CjelGhfTsoBb2MQ==}
+ engines: {node: '>= 0.4'}
+
+ typed-array-byte-length@1.0.1:
+ resolution: {integrity: sha512-3iMJ9q0ao7WE9tWcaYKIptkNBuOIcZCCT0d4MRvuuH88fEoEH62IuQe0OtraD3ebQEoTRk8XCBoknUNc1Y67pw==}
+ engines: {node: '>= 0.4'}
+
+ typed-array-byte-offset@1.0.3:
+ resolution: {integrity: sha512-GsvTyUHTriq6o/bHcTd0vM7OQ9JEdlvluu9YISaA7+KzDzPaIzEeDFNkTfhdE3MYcNhNi0vq/LlegYgIs5yPAw==}
+ engines: {node: '>= 0.4'}
+
+ typed-array-length@1.0.6:
+ resolution: {integrity: sha512-/OxDN6OtAk5KBpGb28T+HZc2M+ADtvRxXrKKbUwtsLgdoxgX13hyy7ek6bFRl5+aBs2yZzB0c4CnQfAtVypW/g==}
+ engines: {node: '>= 0.4'}
+
+ typedarray-to-buffer@3.1.5:
+ resolution: {integrity: sha512-zdu8XMNEDepKKR+XYOXAVPtWui0ly0NtohUscw+UmaHiAWT8hrV1rr//H6V+0DvJ3OQ19S979M0laLfX8rm82Q==}
+
+ typedarray@0.0.6:
+ resolution: {integrity: sha512-/aCDEGatGvZ2BIk+HmLf4ifCJFwvKFNb9/JeZPMulfgFracn9QFcAf5GO8B/mweUjSoblS5In0cWhqpfs/5PQA==}
+
+ typescript-eslint@8.15.0:
+ resolution: {integrity: sha512-wY4FRGl0ZI+ZU4Jo/yjdBu0lVTSML58pu6PgGtJmCufvzfV565pUF6iACQt092uFOd49iLOTX/sEVmHtbSrS+w==}
+ engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
+ peerDependencies:
+ eslint: ^8.57.0 || ^9.0.0
+ typescript: '*'
+ peerDependenciesMeta:
+ typescript:
+ optional: true
+
+ typescript-json-serializer@3.4.5:
+ resolution: {integrity: sha512-KWsDGa1vddY3alUIzE9oBo6AfVzVXQCCHm9ATF4oiGAoTHTTIV0IBGSRAu2uiJHrpPC/n7fxnnAagOhLQZyTcg==}
+
+ typescript@3.9.10:
+ resolution: {integrity: sha512-w6fIxVE/H1PkLKcCPsFqKE7Kv7QUwhU8qQY2MueZXWx5cPZdwFupLgKK3vntcK98BtNHZtAF4LA/yl2a7k8R6Q==}
+ engines: {node: '>=4.2.0'}
+ hasBin: true
+
+ typescript@4.9.5:
+ resolution: {integrity: sha512-1FXk9E2Hm+QzZQ7z+McJiHL4NW1F2EzMu9Nq9i3zAaGqibafqYwCVU6WyWAuyQRRzOlxou8xZSyXLEN8oKj24g==}
+ engines: {node: '>=4.2.0'}
+ hasBin: true
+
+ typescript@5.4.2:
+ resolution: {integrity: sha512-+2/g0Fds1ERlP6JsakQQDXjZdZMM+rqpamFZJEKh4kwTIn3iDkgKtby0CeNd5ATNZ4Ry1ax15TMx0W2V+miizQ==}
+ engines: {node: '>=14.17'}
+ hasBin: true
+
+ typescript@5.6.3:
+ resolution: {integrity: sha512-hjcS1mhfuyi4WW8IWtjP7brDrG2cuDZukyrYrSauoXGNgx0S7zceP07adYkJycEr56BOUTNPzbInooiN3fn1qw==}
+ engines: {node: '>=14.17'}
+ hasBin: true
+
+ typescript@5.7.2:
+ resolution: {integrity: sha512-i5t66RHxDvVN40HfDd1PsEThGNnlMCMT3jMUuoh9/0TaqWevNontacunWyN02LA9/fIbEWlcHZcgTKb9QoaLfg==}
+ engines: {node: '>=14.17'}
+ hasBin: true
+
+ typical@4.0.0:
+ resolution: {integrity: sha512-VAH4IvQ7BDFYglMd7BPRDfLgxZZX4O4TFcRDA6EN5X7erNJJq+McIEp8np9aVtxrCJ6qx4GTYVfOWNjcqwZgRw==}
+ engines: {node: '>=8'}
+
+ typical@5.2.0:
+ resolution: {integrity: sha512-dvdQgNDNJo+8B2uBQoqdb11eUCE1JQXhvjC/CZtgvZseVd5TYMXnq0+vuUemXbd/Se29cTaUuPX3YIc2xgbvIg==}
+ engines: {node: '>=8'}
+
+ typical@7.3.0:
+ resolution: {integrity: sha512-ya4mg/30vm+DOWfBg4YK3j2WD6TWtRkCbasOJr40CseYENzCUby/7rIvXA99JGsQHeNxLbnXdyLLxKSv3tauFw==}
+ engines: {node: '>=12.17'}
+
+ uc.micro@2.1.0:
+ resolution: {integrity: sha512-ARDJmphmdvUk6Glw7y9DQ2bFkKBHwQHLi2lsaH6PPmz/Ka9sFOBsBluozhDltWmnv9u/cF6Rt87znRTPV+yp/A==}
+
+ ufo@1.5.4:
+ resolution: {integrity: sha512-UsUk3byDzKd04EyoZ7U4DOlxQaD14JUKQl6/P7wiX4FNvUfm3XL246n9W5AmqwW5RSFJ27NAuM0iLscAOYUiGQ==}
+
+ uglify-js@3.19.3:
+ resolution: {integrity: sha512-v3Xu+yuwBXisp6QYTcH4UbH+xYJXqnq2m/LtQVWKWzYc1iehYnLixoQDN9FH6/j9/oybfd6W9Ghwkl8+UMKTKQ==}
+ engines: {node: '>=0.8.0'}
+ hasBin: true
+
+ uhyphen@0.2.0:
+ resolution: {integrity: sha512-qz3o9CHXmJJPGBdqzab7qAYuW8kQGKNEuoHFYrBwV6hWIMcpAmxDLXojcHfFr9US1Pe6zUswEIJIbLI610fuqA==}
+
+ unbox-primitive@1.0.2:
+ resolution: {integrity: sha512-61pPlCD9h51VoreyJ0BReideM3MDKMKnh6+V9L08331ipq6Q8OFXZYiqP6n/tbHx4s5I9uRhcye6BrbkizkBDw==}
+
+ unbzip2-stream@1.4.3:
+ resolution: {integrity: sha512-mlExGW4w71ebDJviH16lQLtZS32VKqsSfk80GCfUlwT/4/hNRFsoscrF/c++9xinkMzECL1uL9DDwXqFWkruPg==}
+
+ unc-path-regex@0.1.2:
+ resolution: {integrity: sha512-eXL4nmJT7oCpkZsHZUOJo8hcX3GbsiDOa0Qu9F646fi8dT3XuSVopVqAcEiVzSKKH7UoDti23wNX3qGFxcW5Qg==}
+ engines: {node: '>=0.10.0'}
+
+ undefsafe@2.0.5:
+ resolution: {integrity: sha512-WxONCrssBM8TSPRqN5EmsjVrsv4A8X12J4ArBiiayv3DyyG3ZlIg6yysuuSYdZsVz3TKcTg2fd//Ujd4CHV1iA==}
+
+ underscore@1.12.1:
+ resolution: {integrity: sha512-hEQt0+ZLDVUMhebKxL4x1BTtDY7bavVofhZ9KZ4aI26X9SRaE+Y3m83XUL1UP2jn8ynjndwCCpEHdUG+9pP1Tw==}
+
+ underscore@1.13.7:
+ resolution: {integrity: sha512-GMXzWtsc57XAtguZgaQViUOzs0KTkk8ojr3/xAxXLITqf/3EMwxC0inyETfDFjH/Krbhuep0HNbbjI9i/q3F3g==}
+
+ undici-types@5.26.5:
+ resolution: {integrity: sha512-JlCMO+ehdEIKqlFxk6IfVoAUVmgz7cU7zD/h9XZ0qzeosSHmUJVOzSQvvYSYWXkFXC+IfLKSIffhv0sVZup6pA==}
+
+ undici-types@6.19.8:
+ resolution: {integrity: sha512-ve2KP6f/JnbPBFyobGHuerC9g1FYGn/F8n1LWTwNxCEzd6IfqTwUQcNXgEtmmQ6DlRrC1hrSrBnCZPokRrDHjw==}
+
+ undici@5.28.4:
+ resolution: {integrity: sha512-72RFADWFqKmUb2hmmvNODKL3p9hcB6Gt2DOQMis1SEBaV6a4MH8soBvzg+95CYhCKPFedut2JY9bMfrDl9D23g==}
+ engines: {node: '>=14.0'}
+
+ unfetch@4.2.0:
+ resolution: {integrity: sha512-F9p7yYCn6cIW9El1zi0HI6vqpeIvBsr3dSuRO6Xuppb1u5rXpCPmMvLSyECLhybr9isec8Ohl0hPekMVrEinDA==}
+
+ unicode-canonical-property-names-ecmascript@2.0.1:
+ resolution: {integrity: sha512-dA8WbNeb2a6oQzAQ55YlT5vQAWGV9WXOsi3SskE3bcCdM0P4SDd+24zS/OCacdRq5BkdsRj9q3Pg6YyQoxIGqg==}
+ engines: {node: '>=4'}
+
+ unicode-match-property-ecmascript@2.0.0:
+ resolution: {integrity: sha512-5kaZCrbp5mmbz5ulBkDkbY0SsPOjKqVS35VpL9ulMPfSl0J0Xsm+9Evphv9CoIZFwre7aJoa94AY6seMKGVN5Q==}
+ engines: {node: '>=4'}
+
+ unicode-match-property-value-ecmascript@2.2.0:
+ resolution: {integrity: sha512-4IehN3V/+kkr5YeSSDDQG8QLqO26XpL2XP3GQtqwlT/QYSECAwFztxVHjlbh0+gjJ3XmNLS0zDsbgs9jWKExLg==}
+ engines: {node: '>=4'}
+
+ unicode-property-aliases-ecmascript@2.1.0:
+ resolution: {integrity: sha512-6t3foTQI9qne+OZoVQB/8x8rk2k1eVy1gRXhV3oFQ5T6R1dqQ1xtin3XqSlx3+ATBkliTaR/hHyJBm+LVPNM8w==}
+ engines: {node: '>=4'}
+
+ unicorn-magic@0.1.0:
+ resolution: {integrity: sha512-lRfVq8fE8gz6QMBuDM6a+LO3IAzTi05H6gCVaUpir2E1Rwpo4ZUog45KpNXKC/Mn3Yb9UDuHumeFTo9iV/D9FQ==}
+ engines: {node: '>=18'}
+
+ unified-lint-rule@3.0.0:
+ resolution: {integrity: sha512-Sz96ILLsTy3djsG3H44zFb2b77MFf9CQVYnV3PWkxgRX8/n31fFrr+JnzUaJ6cbOHTtZnL1A71+YodsTjzwAew==}
+
+ unified-message-control@5.0.0:
+ resolution: {integrity: sha512-B2cSAkpuMVVmPP90KCfKdBhm1e9KYJ+zK3x5BCa0N65zpq1Ybkc9C77+M5qwR8FWO7RF3LM5QRRPZtgjW6DUCw==}
+
+ unified@11.0.5:
+ resolution: {integrity: sha512-xKvGhPWw3k84Qjh8bI3ZeJjqnyadK+GEFtazSfZv/rKeTkTjOJho6mFqh2SM96iIcZokxiOpg78GazTSg8+KHA==}
+
+ unified@9.2.2:
+ resolution: {integrity: sha512-Sg7j110mtefBD+qunSLO1lqOEKdrwBFBrR6Qd8f4uwkhWNlbkaqwHse6e7QvD3AP/MNoJdEDLaf8OxYyoWgorQ==}
+
+ uniq@1.0.1:
+ resolution: {integrity: sha512-Gw+zz50YNKPDKXs+9d+aKAjVwpjNwqzvNpLigIruT4HA9lMZNdMqs9x07kKHB/L9WRzqp4+DlTU5s4wG2esdoA==}
+
+ unique-string@1.0.0:
+ resolution: {integrity: sha512-ODgiYu03y5g76A1I9Gt0/chLCzQjvzDy7DsZGsLOE/1MrF6wriEskSncj1+/C58Xk/kPZDppSctDybCwOSaGAg==}
+ engines: {node: '>=4'}
+
+ unique-string@2.0.0:
+ resolution: {integrity: sha512-uNaeirEPvpZWSgzwsPGtU2zVSTrn/8L5q/IexZmH0eH6SA73CmAA5U4GwORTxQAZs95TAXLNqeLoPPNO5gZfWg==}
+ engines: {node: '>=8'}
+
+ unist-util-is@4.1.0:
+ resolution: {integrity: sha512-ZOQSsnce92GrxSqlnEEseX0gi7GH9zTJZ0p9dtu87WRb/37mMPO2Ilx1s/t9vBHrFhbgweUwb+t7cIn5dxPhZg==}
+
+ unist-util-is@6.0.0:
+ resolution: {integrity: sha512-2qCTHimwdxLfz+YzdGfkqNlH0tLi9xjTnHddPmJwtIG9MGsdbutfTc4P+haPD7l7Cjxf/WZj+we5qfVPvvxfYw==}
+
+ unist-util-position@5.0.0:
+ resolution: {integrity: sha512-fucsC7HjXvkB5R3kTCO7kUjRdrS0BJt3M/FPxmHMBOm8JQi2BsHAHFsy27E0EolP8rp0NzXsJ+jNPyDWvOJZPA==}
+
+ unist-util-stringify-position@2.0.3:
+ resolution: {integrity: sha512-3faScn5I+hy9VleOq/qNbAd6pAx7iH5jYBMS9I1HgQVijz/4mv5Bvw5iw1sC/90CODiKo81G/ps8AJrISn687g==}
+
+ unist-util-stringify-position@4.0.0:
+ resolution: {integrity: sha512-0ASV06AAoKCDkS2+xw5RXJywruurpbC4JZSm7nr7MOt1ojAzvyyaO+UxZf18j8FCF6kmzCZKcAgN/yu2gm2XgQ==}
+
+ unist-util-visit-parents@3.1.1:
+ resolution: {integrity: sha512-1KROIZWo6bcMrZEwiH2UrXDyalAa0uqzWCxCJj6lPOvTve2WkfgCytoDTPaMnodXh1WrXOq0haVYHj99ynJlsg==}
+
+ unist-util-visit-parents@6.0.1:
+ resolution: {integrity: sha512-L/PqWzfTP9lzzEa6CKs0k2nARxTdZduw3zyh8d2NVBnsyvHjSX4TWse388YrrQKbvI8w20fGjGlhgT96WwKykw==}
+
+ unist-util-visit@5.0.0:
+ resolution: {integrity: sha512-MR04uvD+07cwl/yhVuVWAtw+3GOR/knlL55Nd/wAdblk27GCVt3lqpTivy/tkJcZoNPzTwS1Y+KMojlLDhoTzg==}
+
+ universal-url@2.0.0:
+ resolution: {integrity: sha512-3DLtXdm/G1LQMCnPj+Aw7uDoleQttNHp2g5FnNQKR6cP6taNWS1b/Ehjjx4PVyvejKi3TJyu8iBraKM4q3JQPg==}
+ engines: {node: '>= 6'}
+
+ universal-user-agent@6.0.1:
+ resolution: {integrity: sha512-yCzhz6FN2wU1NiiQRogkTQszlQSlpWaw8SvVegAc+bDxbzHgh1vX8uIe8OYyMH6DwH+sdTJsgMl36+mSMdRJIQ==}
+
+ universalify@0.1.2:
+ resolution: {integrity: sha512-rBJeI5CXAlmy1pV+617WB9J63U6XcazHHF2f2dbJix4XzpUF0RS3Zbj0FGIOCAva5P/d/GBOYaACQ1w+0azUkg==}
+ engines: {node: '>= 4.0.0'}
+
+ universalify@2.0.1:
+ resolution: {integrity: sha512-gptHNQghINnc/vTGIk0SOFGFNXw7JVrlRUtConJRlvaw6DuX0wO5Jeko9sWrMBhh+PsYAZ7oXAiOnf/UKogyiw==}
+ engines: {node: '>= 10.0.0'}
+
+ unixify@1.0.0:
+ resolution: {integrity: sha512-6bc58dPYhCMHHuwxldQxO3RRNZ4eCogZ/st++0+fcC1nr0jiGUtAdBJ2qzmLQWSxbtz42pWt4QQMiZ9HvZf5cg==}
+ engines: {node: '>=0.10.0'}
+
+ unpipe@1.0.0:
+ resolution: {integrity: sha512-pjy2bYhSsufwWlKwPc+l3cN7+wuJlK6uz0YdJEOlQDbl6jo/YlPi4mb8agUkVC8BF7V8NuzeyPNqRksA3hztKQ==}
+ engines: {node: '>= 0.8'}
+
+ unzip-response@2.0.1:
+ resolution: {integrity: sha512-N0XH6lqDtFH84JxptQoZYmloF4nzrQqqrAymNj+/gW60AO2AZgOcf4O/nUXJcYfyQkqvMo9lSupBZmmgvuVXlw==}
+ engines: {node: '>=4'}
+
+ update-browserslist-db@1.1.1:
+ resolution: {integrity: sha512-R8UzCaa9Az+38REPiJ1tXlImTJXlVfgHZsglwBD/k6nj76ctsH1E3q4doGrukiLQd3sGQYu56r5+lo5r94l29A==}
+ hasBin: true
+ peerDependencies:
+ browserslist: '>= 4.21.0'
+
+ uri-js@4.4.1:
+ resolution: {integrity: sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==}
+
+ uri-parser@1.0.1:
+ resolution: {integrity: sha512-TRjjM2M83RD9jIIYttNj7ghUQTKSov+WXZbQIMM8DxY1R1QdJEGWNKKMYCxyeOw1p9re2nQ85usM6dPTVtox1g==}
+
+ url-exist@3.0.1:
+ resolution: {integrity: sha512-37KEE2gj60C4hTh2mGkFeqODO2KVG9TOJWpE3sOLEeLGt/p50VxemPiJ30v4m1dcw/wDEGUpYcmBV2e8jM5/FA==}
+ engines: {node: '>=14.8'}
+
+ url-join@0.0.1:
+ resolution: {integrity: sha1-HbSK1CLTQCRpqH99l73r/k+x48g=}
+
+ url-join@4.0.1:
+ resolution: {integrity: sha512-jk1+QP6ZJqyOiuEI9AEWQfju/nB2Pw466kbA0LEZljHwKeMgd9WrAEgEGxjPDD2+TNbbb37rTyhEfrCXfuKXnA==}
+
+ url-parse-lax@1.0.0:
+ resolution: {integrity: sha512-BVA4lR5PIviy2PMseNd2jbFQ+jwSwQGdJejf5ctd1rEXt0Ypd7yanUK9+lYechVlN5VaTJGsu2U/3MDDu6KgBA==}
+ engines: {node: '>=0.10.0'}
+
+ url-parse@1.5.10:
+ resolution: {integrity: sha512-WypcfiRhfeUP9vvF0j6rw0J3hrWrw6iZv3+22h6iRMJ/8z1Tj6XfLP4DsUix5MhMPnXpiHDoKyoZ/bdCkwBCiQ==}
+
+ url-pattern@1.0.3:
+ resolution: {integrity: sha512-uQcEj/2puA4aq1R3A2+VNVBgaWYR24FdWjl7VNW83rnWftlhyzOZ/tBjezRiC2UkIzuxC8Top3IekN3vUf1WxA==}
+ engines: {node: '>=0.12.0'}
+
+ url-template@2.0.8:
+ resolution: {integrity: sha512-XdVKMF4SJ0nP/O7XIPB0JwAEuT9lDIYnNsK8yGVe43y0AWoKeJNdv3ZNWh7ksJ6KqQFjOO6ox/VEitLnaVNufw==}
+
+ url@0.11.4:
+ resolution: {integrity: sha512-oCwdVC7mTuWiPyjLUz/COz5TLk6wgp0RCsN+wHZ2Ekneac9w8uuV0njcbbie2ME+Vs+d6duwmYuR3HgQXs1fOg==}
+ engines: {node: '>= 0.4'}
+
+ urlpattern-polyfill@10.0.0:
+ resolution: {integrity: sha512-H/A06tKD7sS1O1X2SshBVeA5FLycRpjqiBeqGKmBwBDBy28EnRjORxTNe269KSSr5un5qyWi1iL61wLxpd+ZOg==}
+
+ use-isomorphic-layout-effect@1.1.2:
+ resolution: {integrity: sha512-49L8yCO3iGT/ZF9QttjwLF/ZD9Iwto5LnH5LmEdk/6cFmXddqi2ulF0edxTwjj+7mqvpVVGQWvbXZdn32wRSHA==}
+ peerDependencies:
+ '@types/react': '*'
+ react: ^16.8.0 || ^17.0.0 || ^18.0.0
+ peerDependenciesMeta:
+ '@types/react':
+ optional: true
+
+ utf7@1.0.2:
+ resolution: {integrity: sha512-qQrPtYLLLl12NF4DrM9CvfkxkYI97xOb5dsnGZHE3teFr0tWiEZ9UdgMPczv24vl708cYMpe6mGXGHrotIp3Bw==}
+
+ utf8@2.1.2:
+ resolution: {integrity: sha512-QXo+O/QkLP/x1nyi54uQiG0XrODxdysuQvE5dtVqv7F5K2Qb6FsN+qbr6KhF5wQ20tfcV3VQp0/2x1e1MRSPWg==}
+
+ util-deprecate@1.0.2:
+ resolution: {integrity: sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==}
+
+ util@0.10.4:
+ resolution: {integrity: sha512-0Pm9hTQ3se5ll1XihRic3FDIku70C+iHUdT/W926rSgHV5QgXsYbKZN8MSC3tJtSkhuROzvsQjAaFENRXr+19A==}
+
+ util@0.12.5:
+ resolution: {integrity: sha512-kZf/K6hEIrWHI6XqOFUiiMa+79wE/D8Q+NCNAWclkyg3b4d2k7s0QGepNjiABc+aR3N1PAyHL7p6UcLY6LmrnA==}
+
+ uue@3.1.2:
+ resolution: {integrity: sha512-axKLXVqwtdI/czrjG0X8hyV1KLgeWx8F4KvSbvVCnS+RUvsQMGRjx0kfuZDXXqj0LYvVJmx3B9kWlKtEdRrJLg==}
+
+ uuid@10.0.0:
+ resolution: {integrity: sha512-8XkAphELsDnEGrDxUOHB3RGvXz6TeuYSGEZBOjtTtPm2lwhGBjLgOzLHB63IUWfBpNucQjND6d3AOudO+H3RWQ==}
+ hasBin: true
+
+ uuid@11.0.3:
+ resolution: {integrity: sha512-d0z310fCWv5dJwnX1Y/MncBAqGMKEzlBb1AOf7z9K8ALnd0utBX/msg/fA0+sbyN1ihbMsLhrBlnl1ak7Wa0rg==}
+ hasBin: true
+
+ uuid@3.3.2:
+ resolution: {integrity: sha512-yXJmeNaw3DnnKAOKJE51sL/ZaYfWJRl1pK9dr19YFCu0ObS231AB1/LbqTKRAQ5kw8A90rA6fr4riOUpTZvQZA==}
+ deprecated: Please upgrade to version 7 or higher. Older versions may use Math.random() in certain circumstances, which is known to be problematic. See https://v8.dev/blog/math-random for details.
+ hasBin: true
+
+ uuid@3.4.0:
+ resolution: {integrity: sha512-HjSDRw6gZE5JMggctHBcjVak08+KEVhSIiDzFnT9S9aegmp85S/bReBVTb4QTFaRNptJ9kuYaNhnbNEOkbKb/A==}
+ deprecated: Please upgrade to version 7 or higher. Older versions may use Math.random() in certain circumstances, which is known to be problematic. See https://v8.dev/blog/math-random for details.
+ hasBin: true
+
+ uuid@8.3.2:
+ resolution: {integrity: sha512-+NYs2QeMWy+GWFOEm9xnn6HCDp0l7QBD7ml8zLUmJ+93Q5NF0NocErnwkTkXVFNiX3/fpC6afS8Dhb/gz7R7eg==}
+ hasBin: true
+
+ uuid@9.0.1:
+ resolution: {integrity: sha512-b+1eJOlsR9K8HJpow9Ok3fiWOWSIcIzXodvv0rQjVoOVNpWMpxf1wZNpt4y9h10odCNrqnYp1OBzRktckBe3sA==}
+ hasBin: true
+
+ uuidv4@6.2.13:
+ resolution: {integrity: sha512-AXyzMjazYB3ovL3q051VLH06Ixj//Knx7QnUSi1T//Ie3io6CpsPu9nVMOx5MoLWh6xV0B9J0hIaxungxXUbPQ==}
+ deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info.
+
+ v8-to-istanbul@9.3.0:
+ resolution: {integrity: sha512-kiGUalWN+rgBJ/1OHZsBtU4rXZOfj/7rKQxULKlIzwzQSvMJUUNgPwJEEh7gU6xEVxC0ahoOBvN2YI8GH6FNgA==}
+ engines: {node: '>=10.12.0'}
+
+ valid-data-url@4.0.1:
+ resolution: {integrity: sha512-t0oA6VCnlQ/MPKP/Ie9ZD3biEpB2JTxK1Hx4KC72RbhubL9HsXznoBn228UQTazL7cPvsY36bhzt3fk424TjyA==}
+ engines: {node: '>=10'}
+
+ validate-npm-package-license@3.0.4:
+ resolution: {integrity: sha512-DpKm2Ui/xN7/HQKCtpZxoRWBhZ9Z0kqtygG8XCgNQ8ZlDnxuQmWhj566j8fN4Cu3/JmbhsDo7fcAJq4s9h27Ew==}
+
+ validate-npm-package-name@3.0.0:
+ resolution: {integrity: sha512-M6w37eVCMMouJ9V/sdPGnC5H4uDr73/+xdq0FBLO3TFFX1+7wiUY6Es328NN+y43tmY+doUdN9g9J21vqB7iLw==}
+
+ validate.io-array@1.0.6:
+ resolution: {integrity: sha512-DeOy7CnPEziggrOO5CZhVKJw6S3Yi7e9e65R1Nl/RTN1vTQKnzjfvks0/8kQ40FP/dsjRAOd4hxmJ7uLa6vxkg==}
+
+ validate.io-function@1.0.2:
+ resolution: {integrity: sha512-LlFybRJEriSuBnUhQyG5bwglhh50EpTL2ul23MPIuR1odjO7XaMLFV8vHGwp7AZciFxtYOeiSCT5st+XSPONiQ==}
+
+ validate.io-integer-array@1.0.0:
+ resolution: {integrity: sha512-mTrMk/1ytQHtCY0oNO3dztafHYyGU88KL+jRxWuzfOmQb+4qqnWmI+gykvGp8usKZOM0H7keJHEbRaFiYA0VrA==}
+
+ validate.io-integer@1.0.5:
+ resolution: {integrity: sha512-22izsYSLojN/P6bppBqhgUDjCkr5RY2jd+N2a3DCAUey8ydvrZ/OkGvFPR7qfOpwR2LC5p4Ngzxz36g5Vgr/hQ==}
+
+ validate.io-number@1.0.3:
+ resolution: {integrity: sha512-kRAyotcbNaSYoDnXvb4MHg/0a1egJdLwS6oJ38TJY7aw9n93Fl/3blIXdyYvPOp55CNxywooG/3BcrwNrBpcSg==}
+
+ validate.js@0.13.1:
+ resolution: {integrity: sha512-PnFM3xiZ+kYmLyTiMgTYmU7ZHkjBZz2/+F0DaALc/uUtVzdCt1wAosvYJ5hFQi/hz8O4zb52FQhHZRC+uVkJ+g==}
+
+ validate@4.5.1:
+ resolution: {integrity: sha512-ZdfYYgJDVrx4oxamyW0ynIoW8jIAoAeb8/pSu9XF+WCZueGogUMU7cGYHVUiWAJDc7RO3QR/EBhhkP46Wn9Hng==}
+ engines: {node: '>=7.6'}
+
+ verifalia@3.2.2:
+ resolution: {integrity: sha512-HqQcMK36oW2P0bHtMapRNz88z5EzrKhiSAmWw89g5zhkKnornANJPsxzQ+B98GsbXH2US2tjUxT+CW4rvX/dRg==}
+ engines: {node: '>= 0.8.0'}
+
+ verror@1.10.0:
+ resolution: {integrity: sha1-OhBcoXBTr1XW4nDB+CiGguGNpAA=}
+ engines: {'0': node >=0.6.0}
+
+ vfile-location@5.0.3:
+ resolution: {integrity: sha512-5yXvWDEgqeiYiBe1lbxYF7UMAIm/IcopxMHrMQDq3nvKcjPKIhZklUKL+AE7J7uApI4kwe2snsK+eI6UTj9EHg==}
+
+ vfile-message@2.0.4:
+ resolution: {integrity: sha512-DjssxRGkMvifUOJre00juHoP9DPWuzjxKuMDrhNbk2TdaYYBNMStsNhEOt3idrtI12VQYM/1+iM0KOzXi4pxwQ==}
+
+ vfile-message@4.0.2:
+ resolution: {integrity: sha512-jRDZ1IMLttGj41KcZvlrYAaI3CfqpLpfpf+Mfig13viT6NKvRzWZ+lXz0Y5D60w6uJIBAOGq9mSHf0gktF0duw==}
+
+ vfile@4.2.1:
+ resolution: {integrity: sha512-O6AE4OskCG5S1emQ/4gl8zK586RqA3srz3nfK/Viy0UPToBc5Trp9BVFb1u0CjsKrAWwnpr4ifM/KBXPWwJbCA==}
+
+ vfile@6.0.3:
+ resolution: {integrity: sha512-KzIbH/9tXat2u30jf+smMwFCsno4wHVdNmzFyL+T/L3UGqqk6JKfVqOFOZEpZSHADH1k40ab6NUIXZq422ov3Q==}
+
+ viesapi-client@1.2.7:
+ resolution: {integrity: sha512-+KyTNegTHWUbfrIWNL8dcSMEgK1pvEbHurFlHSsIOSwiwjcNHwAz5kTL/ZnJj7UUYdsmKRvSEUfQIF/KA3dyCQ==}
+
+ vite-plugin-dts@4.3.0:
+ resolution: {integrity: sha512-LkBJh9IbLwL6/rxh0C1/bOurDrIEmRE7joC+jFdOEEciAFPbpEKOLSAr5nNh5R7CJ45cMbksTrFfy52szzC5eA==}
+ engines: {node: ^14.18.0 || >=16.0.0}
+ peerDependencies:
+ typescript: '*'
+ vite: '*'
+ peerDependenciesMeta:
+ vite:
+ optional: true
+
+ vite@5.4.11:
+ resolution: {integrity: sha512-c7jFQRklXua0mTzneGW9QVyxFjUgwcihC4bXEtujIo2ouWCe1Ajt/amn2PCxYnhYfd5k09JX3SB7OYWFKYqj8Q==}
+ engines: {node: ^18.0.0 || >=20.0.0}
+ hasBin: true
+ peerDependencies:
+ '@types/node': ^18.0.0 || >=20.0.0
+ less: '*'
+ lightningcss: ^1.21.0
+ sass: '*'
+ sass-embedded: '*'
+ stylus: '*'
+ sugarss: '*'
+ terser: ^5.4.0
+ peerDependenciesMeta:
+ '@types/node':
+ optional: true
+ less:
+ optional: true
+ lightningcss:
+ optional: true
+ sass:
+ optional: true
+ sass-embedded:
+ optional: true
+ stylus:
+ optional: true
+ sugarss:
+ optional: true
+ terser:
+ optional: true
+
+ vm2@3.9.19:
+ resolution: {integrity: sha512-J637XF0DHDMV57R6JyVsTak7nIL8gy5KH4r1HiwWLf/4GBbb5MKL5y7LpmF4A8E2nR6XmzpmMFQ7V7ppPTmUQg==}
+ engines: {node: '>=6.0'}
+ deprecated: The library contains critical security issues and should not be used for production! The maintenance of the project has been discontinued. Consider migrating your code to isolated-vm.
+ hasBin: true
+
+ vscode-uri@3.0.8:
+ resolution: {integrity: sha512-AyFQ0EVmsOZOlAnxoFOGOq1SQDWAB7C6aqMGS23svWAllfOaxbuFvcT8D1i8z3Gyn8fraVeZNNmN6e9bxxXkKw==}
+
+ vue@2.7.16:
+ resolution: {integrity: sha512-4gCtFXaAA3zYZdTp5s4Hl2sozuySsgz4jy1EnpBHNfpMa9dK1ZCG7viqBPCwXtmgc8nHqUsAu3G4gtmXkkY3Sw==}
+ deprecated: Vue 2 has reached EOL and is no longer actively maintained. See https://v2.vuejs.org/eol/ for more details.
+
+ walker@1.0.8:
+ resolution: {integrity: sha512-ts/8E8l5b7kY0vlWLewOkDXMmPdLcVV4GmOQLyxuSswIJsweeFZtAsMF7k1Nszz+TYBQrlYRmzOnr398y1JemQ==}
+
+ wcwidth@1.0.1:
+ resolution: {integrity: sha512-XHPEwS0q6TaxcvG85+8EYkbiCux2XtWG2mkc47Ng2A77BQu9+DqIOJldST4HgPkuea7dvKSj5VgX3P1d4rW8Tg==}
+
+ weak-map@1.0.8:
+ resolution: {integrity: sha512-lNR9aAefbGPpHO7AEnY0hCFjz1eTkWCXYvkTRrTHs9qv8zJp+SkVYpzfLIFXQQiG3tVvbNFQgVg2bQS8YGgxyw==}
+
+ web-streams-polyfill@3.3.3:
+ resolution: {integrity: sha512-d2JWLCivmZYTSIoge9MsgFCZrt571BikcWGYkjC1khllbTeDlGqZ2D8vD8E/lJa8WGWbb7Plm8/XJYV7IJHZZw==}
+ engines: {node: '>= 8'}
+
+ webflow-api@1.3.1:
+ resolution: {integrity: sha512-ij/Y7t7VqeS2doOhHaCSToKkZeItFwkgCS003mqbG6d51eUmihcJ2ri4SOiR3zTxmUYZO+sg1sF+aAqsY7tgiA==}
+
+ webidl-conversions@3.0.1:
+ resolution: {integrity: sha512-2JAn3z8AR6rjK8Sm8orRC0h/bcl/DqL7tRPdGZ4I1CjdF+EaMLmYxBHyXuKL849eucPFhvBoxMsflfOb8kxaeQ==}
+
+ webidl-conversions@4.0.2:
+ resolution: {integrity: sha512-YQ+BmxuTgd6UXZW3+ICGfyqRyHXVlD5GtQr5+qjiNW7bF0cqrzX500HVXPBOvgXb5YnzDd+h0zqyv61KUD7+Sg==}
+
+ webidl-conversions@7.0.0:
+ resolution: {integrity: sha512-VwddBukDzu71offAQR975unBIGqfKZpM+8ZX6ySk8nYhVoo5CYaZyzt3YBvYtRtO+aoGlqxPg/B87NGVZ/fu6g==}
+ engines: {node: '>=12'}
+
+ webpack-merge@5.10.0:
+ resolution: {integrity: sha512-+4zXKdx7UnO+1jaN4l2lHVD+mFvnlZQP/6ljaJVb4SZiwIKeUnrT5l0gkT8z+n4hKpC+jpOv6O9R+gLtag7pSA==}
+ engines: {node: '>=10.0.0'}
+
+ websocket-driver@0.7.4:
+ resolution: {integrity: sha512-b17KeDIQVjvb0ssuSDF2cYXSg2iztliJ4B9WdsuB6J952qCPKmnVq4DyW5motImXHDC1cBT/1UezrJVsKw5zjg==}
+ engines: {node: '>=0.8.0'}
+
+ websocket-extensions@0.1.4:
+ resolution: {integrity: sha512-OqedPIGOfsDlo31UNwYbCFMSaO9m9G/0faIHj5/dZFDMFqPTcx6UwqyOy3COEaEOg/9VsGIpdqn62W5KhoKSpg==}
+ engines: {node: '>=0.8.0'}
+
+ whatwg-fetch@3.6.20:
+ resolution: {integrity: sha512-EqhiFU6daOA8kpjOWTL0olhVOF3i7OrFzSYiGsEMB8GcXS+RrzauAERX65xMeNWVqxA6HXH2m69Z9LaKKdisfg==}
+
+ whatwg-url@11.0.0:
+ resolution: {integrity: sha512-RKT8HExMpoYx4igMiVMY83lN6UeITKJlBQ+vR/8ZJ8OCdSiN3RwCq+9gH0+Xzj0+5IrM6i4j/6LuvzbZIQgEcQ==}
+ engines: {node: '>=12'}
+
+ whatwg-url@5.0.0:
+ resolution: {integrity: sha512-saE57nupxk6v3HY35+jzBwYa0rKSy0XR8JSxZPwgLr7ys0IBzhGviA1/TUGJLmSVqs8pb9AnvICXEuOHLprYTw==}
+
+ whatwg-url@7.1.0:
+ resolution: {integrity: sha512-WUu7Rg1DroM7oQvGWfOiAK21n74Gg+T4elXEQYkOhtyLeWiJFoOGLXPKI/9gzIie9CtwVLm8wtw6YJdKyxSjeg==}
+
+ which-boxed-primitive@1.0.2:
+ resolution: {integrity: sha512-bwZdv0AKLpplFY2KZRX6TvyuN7ojjr7lwkg6ml0roIy9YeuSr7JS372qlNW18UQYzgYK9ziGcerWqZOmEn9VNg==}
+
+ which-builtin-type@1.1.4:
+ resolution: {integrity: sha512-bppkmBSsHFmIMSl8BO9TbsyzsvGjVoppt8xUiGzwiu/bhDCGxnpOKCxgqj6GuyHE0mINMDecBFPlOm2hzY084w==}
+ engines: {node: '>= 0.4'}
+
+ which-collection@1.0.2:
+ resolution: {integrity: sha512-K4jVyjnBdgvc86Y6BkaLZEN933SwYOuBFkdmBu9ZfkcAbdVbpITnDmjvZ/aQjRXQrv5EPkTnD1s39GiiqbngCw==}
+ engines: {node: '>= 0.4'}
+
+ which-module@2.0.1:
+ resolution: {integrity: sha512-iBdZ57RDvnOR9AGBhML2vFZf7h8vmBjhoaZqODJBFWHVtKkDmKuHai3cx5PgVMrX5YDNp27AofYbAwctSS+vhQ==}
+
+ which-typed-array@1.1.15:
+ resolution: {integrity: sha512-oV0jmFtUky6CXfkqehVvBP/LSWJ2sy4vWMioiENyJLePrBO/yKyV9OyJySfAKosh+RYkIl5zJCNZ8/4JncrpdA==}
+ engines: {node: '>= 0.4'}
+
+ which@1.3.1:
+ resolution: {integrity: sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==}
+ hasBin: true
+
+ which@2.0.2:
+ resolution: {integrity: sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==}
+ engines: {node: '>= 8'}
+ hasBin: true
+
+ which@4.0.0:
+ resolution: {integrity: sha512-GlaYyEb07DPxYCKhKzplCWBJtvxZcZMrL+4UkrTSJHHPyZU4mYYTv3qaOe77H7EODLSSopAUFAc6W8U4yqvscg==}
+ engines: {node: ^16.13.0 || >=18.0.0}
+ hasBin: true
+
+ wide-align@1.1.5:
+ resolution: {integrity: sha512-eDMORYaPNZ4sQIuuYPDHdQvf4gyCF9rEEV/yPxGfwPkRodwEgiMUUXTx/dex+Me0wxx53S+NgUHaP7y3MGlDmg==}
+
+ widest-line@3.1.0:
+ resolution: {integrity: sha512-NsmoXalsWVDMGupxZ5R08ka9flZjjiLvHVAWYOKtiKM8ujtZWr9cRffak+uSE48+Ob8ObalXpwyeUiyDD6QFgg==}
+ engines: {node: '>=8'}
+
+ wildcard@2.0.1:
+ resolution: {integrity: sha512-CC1bOL87PIWSBhDcTrdeLo6eGT7mCFtrg0uIJtqJUFyK+eJnzl8A1niH56uu7KMa5XFrtiV+AQuHO3n7DsHnLQ==}
+
+ winston-transport@4.9.0:
+ resolution: {integrity: sha512-8drMJ4rkgaPo1Me4zD/3WLfI/zPdA9o2IipKODunnGDcuqbHwjsbB79ylv04LCGGzU0xQ6vTznOMpQGaLhhm6A==}
+ engines: {node: '>= 12.0.0'}
+
+ winston@3.11.0:
+ resolution: {integrity: sha512-L3yR6/MzZAOl0DsysUXHVjOwv8mKZ71TrA/41EIduGpOOV5LQVodqN+QdQ6BS6PJ/RdIshZhq84P/fStEZkk7g==}
+ engines: {node: '>= 12.0.0'}
+
+ winston@3.17.0:
+ resolution: {integrity: sha512-DLiFIXYC5fMPxaRg832S6F5mJYvePtmO5G9v9IgUFPhXm9/GkXarH/TUrBAVzhTCzAj9anE/+GjrgXp/54nOgw==}
+ engines: {node: '>= 12.0.0'}
+
+ woodpecker-api@1.1.0:
+ resolution: {integrity: sha512-OLKMUEb1Fla1wq5JWM5G/RS+apcpAwq8oJVMRPDpG/9p/u+dbChtNVbqOnyEU3om8+WArvjQrGtMuKzxUS2paA==}
+
+ word-wrap@1.2.5:
+ resolution: {integrity: sha512-BN22B5eaMMI9UMtjrGd5g5eCYPpCPDUy0FJXbYsaT5zYxjFOckS53SQDE3pWkVoWpHXVb3BrYcEN4Twa55B5cA==}
+ engines: {node: '>=0.10.0'}
+
+ wordwrap@1.0.0:
+ resolution: {integrity: sha512-gvVzJFlPycKc5dZN4yPkP8w7Dc37BtP1yczEneOb4uq34pXZcvrtRTmWV8W+Ume+XCxKgbjM+nevkyFPMybd4Q==}
+
+ wordwrapjs@4.0.1:
+ resolution: {integrity: sha512-kKlNACbvHrkpIw6oPeYDSmdCTu2hdMHoyXLTcUKala++lx5Y+wjJ/e474Jqv5abnVmwxw08DiTuHmw69lJGksA==}
+ engines: {node: '>=8.0.0'}
+
+ wpapi@1.2.2:
+ resolution: {integrity: sha512-lkgi8Gjav3SArrCkNpG61ZnmCyamXKB+SjaR8tAoHhSZbJRTeabIlsdqUUAN3JGbVY3ht8p+EGdpCFIaanI5+w==}
+
+ wrap-ansi@6.2.0:
+ resolution: {integrity: sha512-r6lPcBGxZXlIcymEu7InxDMhdW0KDxpLgoFLcguasxCaJ/SOIZwINatK9KY/tf+ZrlywOKU0UDj3ATXUBfxJXA==}
+ engines: {node: '>=8'}
+
+ wrap-ansi@7.0.0:
+ resolution: {integrity: sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==}
+ engines: {node: '>=10'}
+
+ wrappy@1.0.2:
+ resolution: {integrity: sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==}
+
+ wraptile@3.0.0:
+ resolution: {integrity: sha512-23LJhkIw940uTcDFyJZmNyO0z8lEINOTGCr4vR5YCG3urkdXwduRIhivBm9wKaVynLHYvxoHHYbKsDiafCLp6w==}
+
+ write-file-atomic@3.0.3:
+ resolution: {integrity: sha512-AvHcyZ5JnSfq3ioSyjrBkH9yW4m7Ayk8/9My/DD9onKeu/94fwrMocemO2QAJFAlnnDN+ZDS+ZjAR5ua1/PV/Q==}
+
+ write-file-atomic@4.0.2:
+ resolution: {integrity: sha512-7KxauUdBmSdWnmpaGFg+ppNjKF8uNLry8LyzjauQDOVONfFLNKrKvQOxZ/VuTIcS/gge/YNahf5RIIQWTSarlg==}
+ engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0}
+
+ write-file-atomic@5.0.1:
+ resolution: {integrity: sha512-+QU2zd6OTD8XWIJCbffaiQeH9U73qIqafo1x6V1snCWYGJf6cVE0cDR4D8xRzcEnfI21IFrUPzPGtcPf8AC+Rw==}
+ engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0}
+
+ ws@8.13.0:
+ resolution: {integrity: sha512-x9vcZYTrFPC7aSIbj7sRCYo7L/Xb8Iy+pW0ng0wt2vCJv7M9HOMy0UoN3rr+IFC7hb7vXoqS+P9ktyLLLhO+LA==}
+ engines: {node: '>=10.0.0'}
+ peerDependencies:
+ bufferutil: ^4.0.1
+ utf-8-validate: '>=5.0.2'
+ peerDependenciesMeta:
+ bufferutil:
+ optional: true
+ utf-8-validate:
+ optional: true
+
+ ws@8.16.0:
+ resolution: {integrity: sha512-HS0c//TP7Ina87TfiPUz1rQzMhHrl/SG2guqRcTOIUYD2q8uhUdNHZYJUaQ8aTGPzCh+c6oawMKW35nFl1dxyQ==}
+ engines: {node: '>=10.0.0'}
+ peerDependencies:
+ bufferutil: ^4.0.1
+ utf-8-validate: '>=5.0.2'
+ peerDependenciesMeta:
+ bufferutil:
+ optional: true
+ utf-8-validate:
+ optional: true
+
+ ws@8.18.0:
+ resolution: {integrity: sha512-8VbfWfHLbbwu3+N6OKsOMpBdT4kXPDDB9cJk2bJ6mh9ucxdlnNvH1e+roYkKmN9Nxw2yjz7VzeO9oOz2zJ04Pw==}
+ engines: {node: '>=10.0.0'}
+ peerDependencies:
+ bufferutil: ^4.0.1
+ utf-8-validate: '>=5.0.2'
+ peerDependenciesMeta:
+ bufferutil:
+ optional: true
+ utf-8-validate:
+ optional: true
+
+ ws@8.7.0:
+ resolution: {integrity: sha512-c2gsP0PRwcLFzUiA8Mkr37/MI7ilIlHQxaEAtd0uNMbVMoy8puJyafRlm0bV9MbGSabUPeLrRRaqIBcFcA2Pqg==}
+ engines: {node: '>=10.0.0'}
+ peerDependencies:
+ bufferutil: ^4.0.1
+ utf-8-validate: ^5.0.2
+ peerDependenciesMeta:
+ bufferutil:
+ optional: true
+ utf-8-validate:
+ optional: true
+
+ xdg-basedir@4.0.0:
+ resolution: {integrity: sha512-PSNhEJDejZYV7h50BohL09Er9VaIefr2LMAf3OEmpCkjOi34eYyQYAXUTjEQtZJTKcF0E2UKTh+osDLsgNim9Q==}
+ engines: {node: '>=8'}
+
+ xml-js@1.6.11:
+ resolution: {integrity: sha512-7rVi2KMfwfWFl+GpPg6m80IVMWXLRjO+PxTq7V2CDhoGak0wzYzFgUY2m4XJ47OGdXd8eLE8EmwfAmdjw7lC1g==}
+ hasBin: true
+
+ xml2js@0.5.0:
+ resolution: {integrity: sha512-drPFnkQJik/O+uPKpqSgr22mpuFHqKdbS835iAQrUC73L2F5WkboIRd63ai/2Yg6I1jzifPFKH2NTK+cfglkIA==}
+ engines: {node: '>=4.0.0'}
+
+ xml2js@0.6.2:
+ resolution: {integrity: sha512-T4rieHaC1EXcES0Kxxj4JWgaUQHDk+qwHcYOCFHfiwKz7tOVPLq7Hjq9dM1WCMhylqMEfP7hMcOIChvotiZegA==}
+ engines: {node: '>=4.0.0'}
+
+ xml2json-light@1.0.6:
+ resolution: {integrity: sha512-6CSibpteBS4B8/fzJaj6TDtWatIlonSFfVVK3TLM23mlTOxkMgVA4b2FaGeTIrrhOMdDZ8X1/dvo4mfBtsU4yw==}
+
+ xmlbuilder@11.0.1:
+ resolution: {integrity: sha512-fDlsI/kFEx7gLvbecc0/ohLG50fugQp8ryHzMTuW9vSa1GJ0XYWKnhsUx7oie3G98+r56aTQIUB4kht42R3JvA==}
+ engines: {node: '>=4.0'}
+
+ xmlbuilder@13.0.2:
+ resolution: {integrity: sha512-Eux0i2QdDYKbdbA6AM6xE4m6ZTZr4G4xF9kahI2ukSEMCzwce2eX9WlTI5J3s+NU7hpasFsr8hWIONae7LluAQ==}
+ engines: {node: '>=6.0'}
+
+ xmlbuilder@9.0.7:
+ resolution: {integrity: sha512-7YXTQc3P2l9+0rjaUbLwMKRhtmwg1M1eDf6nag7urC7pIPYLD9W/jmzQ4ptRSUbodw5S0jfoGTflLemQibSpeQ==}
+ engines: {node: '>=4.0'}
+
+ xmlcreate@2.0.4:
+ resolution: {integrity: sha512-nquOebG4sngPmGPICTS5EnxqhKbCmz5Ox5hsszI2T6U5qdrJizBc+0ilYSEjTSzU0yZcmvppztXe/5Al5fUwdg==}
+
+ xmldom@0.6.0:
+ resolution: {integrity: sha512-iAcin401y58LckRZ0TkI4k0VSM1Qg0KGSc3i8rU+xrxe19A/BN1zHyVSJY7uoutVlaTSzYyk/v5AmkewAP7jtg==}
+ engines: {node: '>=10.0.0'}
+
+ xpath@0.0.34:
+ resolution: {integrity: sha512-FxF6+rkr1rNSQrhUNYrAFJpRXNzlDoMxeXN5qI84939ylEv3qqPFKa85Oxr6tDaJKqwW6KKyo2v26TSv3k6LeA==}
+ engines: {node: '>=0.6.0'}
+
+ xregexp@2.0.0:
+ resolution: {integrity: sha512-xl/50/Cf32VsGq/1R8jJE5ajH1yMCQkpmoS10QbFZWl2Oor4H0Me64Pu2yxvsRWK3m6soJbmGfzSR7BYmDcWAA==}
+
+ xss@1.0.15:
+ resolution: {integrity: sha512-FVdlVVC67WOIPvfOwhoMETV72f6GbW7aOabBC3WxN/oUdoEMDyLz4OgRv5/gck2ZeNqEQu+Tb0kloovXOfpYVg==}
+ engines: {node: '>= 0.10.0'}
+ hasBin: true
+
+ xtend@4.0.2:
+ resolution: {integrity: sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ==}
+ engines: {node: '>=0.4'}
+
+ y18n@4.0.3:
+ resolution: {integrity: sha512-JKhqTOwSrqNA1NY5lSztJ1GrBiUodLMmIZuLiDaMRJ+itFd+ABVE8XBjOvIWL+rSqNDC74LCSFmlb/U4UZ4hJQ==}
+
+ y18n@5.0.8:
+ resolution: {integrity: sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA==}
+ engines: {node: '>=10'}
+
+ yallist@3.1.1:
+ resolution: {integrity: sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==}
+
+ yallist@4.0.0:
+ resolution: {integrity: sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==}
+
+ yaml@1.10.2:
+ resolution: {integrity: sha512-r3vXyErRCYJ7wg28yvBY5VSoAF8ZvlcW9/BwUzEtUsjvX/DKs24dIkuwjtuprwJJHsbyUbLApepYTR1BN4uHrg==}
+ engines: {node: '>= 6'}
+
+ yaml@2.6.1:
+ resolution: {integrity: sha512-7r0XPzioN/Q9kXBro/XPnA6kznR73DHq+GXh5ON7ZozRO6aMjbmiBuKste2wslTFkC5d1dw0GooOCepZXJ2SAg==}
+ engines: {node: '>= 14'}
+ hasBin: true
+
+ yargs-parser@18.1.3:
+ resolution: {integrity: sha512-o50j0JeToy/4K6OZcaQmW6lyXXKhq7csREXcDwk2omFPJEwUNOVtJKvmDr9EI1fAJZUyZcRF7kxGBWmRXudrCQ==}
+ engines: {node: '>=6'}
+
+ yargs-parser@20.2.9:
+ resolution: {integrity: sha512-y11nGElTIV+CT3Zv9t7VKl+Q3hTQoT9a1Qzezhhl6Rp21gJ/IVTW7Z3y9EWXhuUBC2Shnf+DX0antecpAwSP8w==}
+ engines: {node: '>=10'}
+
+ yargs-parser@21.1.1:
+ resolution: {integrity: sha512-tVpsJW7DdjecAiFpbIB1e3qxIQsE6NoPc5/eTdrbbIC4h0LVsWhnoa3g+m2HclBIujHzsxZ4VJVA+GUuc2/LBw==}
+ engines: {node: '>=12'}
+
+ yargs@15.4.1:
+ resolution: {integrity: sha512-aePbxDmcYW++PaqBsJ+HYUFwCdv4LVvdnhBy78E57PIor8/OVvhMrADFFEDh8DHDFRv/O9i3lPhsENjO7QX0+A==}
+ engines: {node: '>=8'}
+
+ yargs@16.2.0:
+ resolution: {integrity: sha512-D1mvvtDG0L5ft/jGWkLpG1+m0eQxOfaBvTNELraWj22wSVUMWxZUvYgJYcKh6jGGIkJFhH4IZPQhR4TKpc8mBw==}
+ engines: {node: '>=10'}
+
+ yargs@17.7.1:
+ resolution: {integrity: sha512-cwiTb08Xuv5fqF4AovYacTFNxk62th7LKJ6BL9IGUpTJrWoU7/7WdQGTP2SjKf1dUNBGzDd28p/Yfs/GI6JrLw==}
+ engines: {node: '>=12'}
+
+ yargs@17.7.2:
+ resolution: {integrity: sha512-7dSzzRQ++CKnNI/krKnYRV7JKKPUXMEh61soaHKg9mrWEhzFWhFnxPxGl+69cD1Ou63C13NUPCnmIcrvqCuM6w==}
+ engines: {node: '>=12'}
+
+ yarn@1.22.22:
+ resolution: {integrity: sha512-prL3kGtyG7o9Z9Sv8IPfBNrWTDmXB4Qbes8A9rEzt6wkJV8mUvoirjU0Mp3GGAU06Y0XQyA3/2/RQFVuK7MTfg==}
+ engines: {node: '>=4.0.0'}
+ hasBin: true
+
+ yauzl@2.10.0:
+ resolution: {integrity: sha512-p4a9I6X6nu6IhoGmBqAcbJy1mlC4j27vEPZX9F4L4/vZT3Lyq1VkFHw/V/PUcB9Buo+DG3iHkT0x3Qya58zc3g==}
+
+ ynab@1.55.0:
+ resolution: {integrity: sha512-i5MEPWpMILUiqQ9JXFBa//ljGEAtVziyx2C1s09THWoPu8b1R7k/NjDQRsM3YpYUDFTDyKRTmKOA+vxzkkK9dQ==}
+ engines: {node: <=18}
+
+ yocto-queue@0.1.0:
+ resolution: {integrity: sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==}
+ engines: {node: '>=10'}
+
+ yocto-queue@1.1.1:
+ resolution: {integrity: sha512-b4JR1PFR10y1mKjhHY9LaGo6tmrgjit7hxVIeAmyMw3jegXR4dhYqLaQF5zMXZxY7tLpMyJeLjr1C4rLmkVe8g==}
+ engines: {node: '>=12.20'}
+
+ zip-stream@3.0.1:
+ resolution: {integrity: sha512-r+JdDipt93ttDjsOVPU5zaq5bAyY+3H19bDrThkvuVxC0xMQzU1PJcS6D+KrP3u96gH9XLomcHPb+2skoDjulQ==}
+ engines: {node: '>= 8'}
+
+ zlib@1.0.5:
+ resolution: {integrity: sha512-40fpE2II+Cd3k8HWTWONfeKE2jL+P42iWJ1zzps5W51qcTsOUKM5Q5m2PFb0CLxlmFAaUuUdJGc3OfZy947v0w==}
+ engines: {node: '>=0.2.0'}
+
+ zwitch@1.0.5:
+ resolution: {integrity: sha512-V50KMwwzqJV0NpZIZFwfOD5/lyny3WlSzRiXgA0G7VUnRlqttta1L6UQIHzd6EuBY/cHGfwTIck7w1yH6Q5zUw==}
+
+ zwitch@2.0.4:
+ resolution: {integrity: sha512-bXE4cR/kVZhKZX/RjPEflHaKVhUVl85noU3v6b8apfQEc1x4A+zBxjZ4lN8LqGd6WZ3dl98pY4o717VFmoPp+A==}
+
+snapshots:
+
+ '@actions/core@1.11.1':
+ dependencies:
+ '@actions/exec': 1.1.1
+ '@actions/http-client': 2.2.3
+
+ '@actions/exec@1.1.1':
+ dependencies:
+ '@actions/io': 1.1.3
+
+ '@actions/http-client@2.2.3':
+ dependencies:
+ tunnel: 0.0.6
+ undici: 5.28.4
+
+ '@actions/io@1.1.3': {}
+
+ '@adobe/pdfservices-node-sdk@3.4.2':
+ dependencies:
+ adm-zip: 0.5.2
+ form-data: 3.0.0
+ jsonwebtoken: 9.0.0
+ lodash: 4.17.21
+ lodash-core: 4.17.11
+ log4js: 6.4.4
+ move-file: 1.2.0
+ streamifier: 0.1.1
+ temp-dir: 2.0.0
+ url-template: 2.0.8
+ uuid: 3.3.2
+ validate: 4.5.1
+ xml2js: 0.5.0
+ transitivePeerDependencies:
+ - supports-color
+
+ '@adyen/api-library@20.0.0':
+ dependencies:
+ https-proxy-agent: 5.0.1
+ optionalDependencies:
+ '@types/node': 14.18.63
+ transitivePeerDependencies:
+ - supports-color
+
+ '@algolia/cache-browser-local-storage@4.24.0':
+ dependencies:
+ '@algolia/cache-common': 4.24.0
+
+ '@algolia/cache-common@4.24.0': {}
+
+ '@algolia/cache-in-memory@4.24.0':
+ dependencies:
+ '@algolia/cache-common': 4.24.0
+
+ '@algolia/client-account@4.24.0':
+ dependencies:
+ '@algolia/client-common': 4.24.0
+ '@algolia/client-search': 4.24.0
+ '@algolia/transporter': 4.24.0
+
+ '@algolia/client-analytics@4.24.0':
+ dependencies:
+ '@algolia/client-common': 4.24.0
+ '@algolia/client-search': 4.24.0
+ '@algolia/requester-common': 4.24.0
+ '@algolia/transporter': 4.24.0
+
+ '@algolia/client-common@4.24.0':
+ dependencies:
+ '@algolia/requester-common': 4.24.0
+ '@algolia/transporter': 4.24.0
+
+ '@algolia/client-personalization@4.24.0':
+ dependencies:
+ '@algolia/client-common': 4.24.0
+ '@algolia/requester-common': 4.24.0
+ '@algolia/transporter': 4.24.0
+
+ '@algolia/client-search@4.24.0':
+ dependencies:
+ '@algolia/client-common': 4.24.0
+ '@algolia/requester-common': 4.24.0
+ '@algolia/transporter': 4.24.0
+
+ '@algolia/logger-common@4.24.0': {}
+
+ '@algolia/logger-console@4.24.0':
+ dependencies:
+ '@algolia/logger-common': 4.24.0
+
+ '@algolia/recommend@4.24.0':
+ dependencies:
+ '@algolia/cache-browser-local-storage': 4.24.0
+ '@algolia/cache-common': 4.24.0
+ '@algolia/cache-in-memory': 4.24.0
+ '@algolia/client-common': 4.24.0
+ '@algolia/client-search': 4.24.0
+ '@algolia/logger-common': 4.24.0
+ '@algolia/logger-console': 4.24.0
+ '@algolia/requester-browser-xhr': 4.24.0
+ '@algolia/requester-common': 4.24.0
+ '@algolia/requester-node-http': 4.24.0
+ '@algolia/transporter': 4.24.0
+
+ '@algolia/requester-browser-xhr@4.24.0':
+ dependencies:
+ '@algolia/requester-common': 4.24.0
+
+ '@algolia/requester-common@4.24.0': {}
+
+ '@algolia/requester-node-http@4.24.0':
+ dependencies:
+ '@algolia/requester-common': 4.24.0
+
+ '@algolia/transporter@4.24.0':
+ dependencies:
+ '@algolia/cache-common': 4.24.0
+ '@algolia/logger-common': 4.24.0
+ '@algolia/requester-common': 4.24.0
+
+ '@ampproject/remapping@2.3.0':
+ dependencies:
+ '@jridgewell/gen-mapping': 0.3.5
+ '@jridgewell/trace-mapping': 0.3.25
+
+ '@apidevtools/swagger-methods@3.0.2': {}
+
+ '@apimatic/schema@0.6.0':
+ dependencies:
+ tslib: 2.8.1
+
+ '@aws-crypto/crc32@3.0.0':
+ dependencies:
+ '@aws-crypto/util': 3.0.0
+ '@aws-sdk/types': 3.696.0
+ tslib: 1.14.1
+
+ '@aws-crypto/crc32@5.2.0':
+ dependencies:
+ '@aws-crypto/util': 5.2.0
+ '@aws-sdk/types': 3.696.0
+ tslib: 2.8.1
+
+ '@aws-crypto/crc32c@5.2.0':
+ dependencies:
+ '@aws-crypto/util': 5.2.0
+ '@aws-sdk/types': 3.696.0
+ tslib: 2.8.1
+
+ '@aws-crypto/sha1-browser@5.2.0':
+ dependencies:
+ '@aws-crypto/supports-web-crypto': 5.2.0
+ '@aws-crypto/util': 5.2.0
+ '@aws-sdk/types': 3.696.0
+ '@aws-sdk/util-locate-window': 3.693.0
+ '@smithy/util-utf8': 2.3.0
+ tslib: 2.8.1
+
+ '@aws-crypto/sha256-browser@5.2.0':
+ dependencies:
+ '@aws-crypto/sha256-js': 5.2.0
+ '@aws-crypto/supports-web-crypto': 5.2.0
+ '@aws-crypto/util': 5.2.0
+ '@aws-sdk/types': 3.696.0
+ '@aws-sdk/util-locate-window': 3.693.0
+ '@smithy/util-utf8': 2.3.0
+ tslib: 2.8.1
+
+ '@aws-crypto/sha256-js@5.2.0':
+ dependencies:
+ '@aws-crypto/util': 5.2.0
+ '@aws-sdk/types': 3.696.0
+ tslib: 2.8.1
+
+ '@aws-crypto/supports-web-crypto@5.2.0':
+ dependencies:
+ tslib: 2.8.1
+
+ '@aws-crypto/util@3.0.0':
+ dependencies:
+ '@aws-sdk/types': 3.696.0
+ '@aws-sdk/util-utf8-browser': 3.259.0
+ tslib: 1.14.1
+
+ '@aws-crypto/util@5.2.0':
+ dependencies:
+ '@aws-sdk/types': 3.696.0
+ '@smithy/util-utf8': 2.3.0
+ tslib: 2.8.1
+
+ '@aws-sdk/client-cloudwatch-logs@3.698.0':
+ dependencies:
+ '@aws-crypto/sha256-browser': 5.2.0
+ '@aws-crypto/sha256-js': 5.2.0
+ '@aws-sdk/client-sso-oidc': 3.696.0(@aws-sdk/client-sts@3.696.0)
+ '@aws-sdk/client-sts': 3.696.0
+ '@aws-sdk/core': 3.696.0
+ '@aws-sdk/credential-provider-node': 3.696.0(@aws-sdk/client-sso-oidc@3.696.0(@aws-sdk/client-sts@3.696.0))(@aws-sdk/client-sts@3.696.0)
+ '@aws-sdk/middleware-host-header': 3.696.0
+ '@aws-sdk/middleware-logger': 3.696.0
+ '@aws-sdk/middleware-recursion-detection': 3.696.0
+ '@aws-sdk/middleware-user-agent': 3.696.0
+ '@aws-sdk/region-config-resolver': 3.696.0
+ '@aws-sdk/types': 3.696.0
+ '@aws-sdk/util-endpoints': 3.696.0
+ '@aws-sdk/util-user-agent-browser': 3.696.0
+ '@aws-sdk/util-user-agent-node': 3.696.0
+ '@smithy/config-resolver': 3.0.12
+ '@smithy/core': 2.5.4
+ '@smithy/eventstream-serde-browser': 3.0.13
+ '@smithy/eventstream-serde-config-resolver': 3.0.10
+ '@smithy/eventstream-serde-node': 3.0.12
+ '@smithy/fetch-http-handler': 4.1.1
+ '@smithy/hash-node': 3.0.10
+ '@smithy/invalid-dependency': 3.0.10
+ '@smithy/middleware-content-length': 3.0.12
+ '@smithy/middleware-endpoint': 3.2.4
+ '@smithy/middleware-retry': 3.0.28
+ '@smithy/middleware-serde': 3.0.10
+ '@smithy/middleware-stack': 3.0.10
+ '@smithy/node-config-provider': 3.1.11
+ '@smithy/node-http-handler': 3.3.1
+ '@smithy/protocol-http': 4.1.7
+ '@smithy/smithy-client': 3.4.5
+ '@smithy/types': 3.7.1
+ '@smithy/url-parser': 3.0.10
+ '@smithy/util-base64': 3.0.0
+ '@smithy/util-body-length-browser': 3.0.0
+ '@smithy/util-body-length-node': 3.0.0
+ '@smithy/util-defaults-mode-browser': 3.0.28
+ '@smithy/util-defaults-mode-node': 3.0.28
+ '@smithy/util-endpoints': 2.1.6
+ '@smithy/util-middleware': 3.0.10
+ '@smithy/util-retry': 3.0.10
+ '@smithy/util-utf8': 3.0.0
+ '@types/uuid': 9.0.8
+ tslib: 2.8.1
+ uuid: 9.0.1
+ transitivePeerDependencies:
+ - aws-crt
+
+ '@aws-sdk/client-cognito-identity@3.696.0':
+ dependencies:
+ '@aws-crypto/sha256-browser': 5.2.0
+ '@aws-crypto/sha256-js': 5.2.0
+ '@aws-sdk/client-sso-oidc': 3.696.0(@aws-sdk/client-sts@3.696.0)
+ '@aws-sdk/client-sts': 3.696.0
+ '@aws-sdk/core': 3.696.0
+ '@aws-sdk/credential-provider-node': 3.696.0(@aws-sdk/client-sso-oidc@3.696.0(@aws-sdk/client-sts@3.696.0))(@aws-sdk/client-sts@3.696.0)
+ '@aws-sdk/middleware-host-header': 3.696.0
+ '@aws-sdk/middleware-logger': 3.696.0
+ '@aws-sdk/middleware-recursion-detection': 3.696.0
+ '@aws-sdk/middleware-user-agent': 3.696.0
+ '@aws-sdk/region-config-resolver': 3.696.0
+ '@aws-sdk/types': 3.696.0
+ '@aws-sdk/util-endpoints': 3.696.0
+ '@aws-sdk/util-user-agent-browser': 3.696.0
+ '@aws-sdk/util-user-agent-node': 3.696.0
+ '@smithy/config-resolver': 3.0.12
+ '@smithy/core': 2.5.4
+ '@smithy/fetch-http-handler': 4.1.1
+ '@smithy/hash-node': 3.0.10
+ '@smithy/invalid-dependency': 3.0.10
+ '@smithy/middleware-content-length': 3.0.12
+ '@smithy/middleware-endpoint': 3.2.4
+ '@smithy/middleware-retry': 3.0.28
+ '@smithy/middleware-serde': 3.0.10
+ '@smithy/middleware-stack': 3.0.10
+ '@smithy/node-config-provider': 3.1.11
+ '@smithy/node-http-handler': 3.3.1
+ '@smithy/protocol-http': 4.1.7
+ '@smithy/smithy-client': 3.4.5
+ '@smithy/types': 3.7.1
+ '@smithy/url-parser': 3.0.10
+ '@smithy/util-base64': 3.0.0
+ '@smithy/util-body-length-browser': 3.0.0
+ '@smithy/util-body-length-node': 3.0.0
+ '@smithy/util-defaults-mode-browser': 3.0.28
+ '@smithy/util-defaults-mode-node': 3.0.28
+ '@smithy/util-endpoints': 2.1.6
+ '@smithy/util-middleware': 3.0.10
+ '@smithy/util-retry': 3.0.10
+ '@smithy/util-utf8': 3.0.0
+ tslib: 2.8.1
+ transitivePeerDependencies:
+ - aws-crt
+
+ '@aws-sdk/client-dynamodb-streams@3.696.0':
+ dependencies:
+ '@aws-crypto/sha256-browser': 5.2.0
+ '@aws-crypto/sha256-js': 5.2.0
+ '@aws-sdk/client-sso-oidc': 3.696.0(@aws-sdk/client-sts@3.696.0)
+ '@aws-sdk/client-sts': 3.696.0
+ '@aws-sdk/core': 3.696.0
+ '@aws-sdk/credential-provider-node': 3.696.0(@aws-sdk/client-sso-oidc@3.696.0(@aws-sdk/client-sts@3.696.0))(@aws-sdk/client-sts@3.696.0)
+ '@aws-sdk/middleware-host-header': 3.696.0
+ '@aws-sdk/middleware-logger': 3.696.0
+ '@aws-sdk/middleware-recursion-detection': 3.696.0
+ '@aws-sdk/middleware-user-agent': 3.696.0
+ '@aws-sdk/region-config-resolver': 3.696.0
+ '@aws-sdk/types': 3.696.0
+ '@aws-sdk/util-endpoints': 3.696.0
+ '@aws-sdk/util-user-agent-browser': 3.696.0
+ '@aws-sdk/util-user-agent-node': 3.696.0
+ '@smithy/config-resolver': 3.0.12
+ '@smithy/core': 2.5.4
+ '@smithy/fetch-http-handler': 4.1.1
+ '@smithy/hash-node': 3.0.10
+ '@smithy/invalid-dependency': 3.0.10
+ '@smithy/middleware-content-length': 3.0.12
+ '@smithy/middleware-endpoint': 3.2.4
+ '@smithy/middleware-retry': 3.0.28
+ '@smithy/middleware-serde': 3.0.10
+ '@smithy/middleware-stack': 3.0.10
+ '@smithy/node-config-provider': 3.1.11
+ '@smithy/node-http-handler': 3.3.1
+ '@smithy/protocol-http': 4.1.7
+ '@smithy/smithy-client': 3.4.5
+ '@smithy/types': 3.7.1
+ '@smithy/url-parser': 3.0.10
+ '@smithy/util-base64': 3.0.0
+ '@smithy/util-body-length-browser': 3.0.0
+ '@smithy/util-body-length-node': 3.0.0
+ '@smithy/util-defaults-mode-browser': 3.0.28
+ '@smithy/util-defaults-mode-node': 3.0.28
+ '@smithy/util-endpoints': 2.1.6
+ '@smithy/util-middleware': 3.0.10
+ '@smithy/util-retry': 3.0.10
+ '@smithy/util-utf8': 3.0.0
+ tslib: 2.8.1
+ transitivePeerDependencies:
+ - aws-crt
+
+ '@aws-sdk/client-dynamodb@3.696.0':
+ dependencies:
+ '@aws-crypto/sha256-browser': 5.2.0
+ '@aws-crypto/sha256-js': 5.2.0
+ '@aws-sdk/client-sso-oidc': 3.696.0(@aws-sdk/client-sts@3.696.0)
+ '@aws-sdk/client-sts': 3.696.0
+ '@aws-sdk/core': 3.696.0
+ '@aws-sdk/credential-provider-node': 3.696.0(@aws-sdk/client-sso-oidc@3.696.0(@aws-sdk/client-sts@3.696.0))(@aws-sdk/client-sts@3.696.0)
+ '@aws-sdk/middleware-endpoint-discovery': 3.696.0
+ '@aws-sdk/middleware-host-header': 3.696.0
+ '@aws-sdk/middleware-logger': 3.696.0
+ '@aws-sdk/middleware-recursion-detection': 3.696.0
+ '@aws-sdk/middleware-user-agent': 3.696.0
+ '@aws-sdk/region-config-resolver': 3.696.0
+ '@aws-sdk/types': 3.696.0
+ '@aws-sdk/util-endpoints': 3.696.0
+ '@aws-sdk/util-user-agent-browser': 3.696.0
+ '@aws-sdk/util-user-agent-node': 3.696.0
+ '@smithy/config-resolver': 3.0.12
+ '@smithy/core': 2.5.4
+ '@smithy/fetch-http-handler': 4.1.1
+ '@smithy/hash-node': 3.0.10
+ '@smithy/invalid-dependency': 3.0.10
+ '@smithy/middleware-content-length': 3.0.12
+ '@smithy/middleware-endpoint': 3.2.4
+ '@smithy/middleware-retry': 3.0.28
+ '@smithy/middleware-serde': 3.0.10
+ '@smithy/middleware-stack': 3.0.10
+ '@smithy/node-config-provider': 3.1.11
+ '@smithy/node-http-handler': 3.3.1
+ '@smithy/protocol-http': 4.1.7
+ '@smithy/smithy-client': 3.4.5
+ '@smithy/types': 3.7.1
+ '@smithy/url-parser': 3.0.10
+ '@smithy/util-base64': 3.0.0
+ '@smithy/util-body-length-browser': 3.0.0
+ '@smithy/util-body-length-node': 3.0.0
+ '@smithy/util-defaults-mode-browser': 3.0.28
+ '@smithy/util-defaults-mode-node': 3.0.28
+ '@smithy/util-endpoints': 2.1.6
+ '@smithy/util-middleware': 3.0.10
+ '@smithy/util-retry': 3.0.10
+ '@smithy/util-utf8': 3.0.0
+ '@smithy/util-waiter': 3.1.9
+ '@types/uuid': 9.0.8
+ tslib: 2.8.1
+ uuid: 9.0.1
+ transitivePeerDependencies:
+ - aws-crt
+
+ '@aws-sdk/client-ec2@3.698.0':
+ dependencies:
+ '@aws-crypto/sha256-browser': 5.2.0
+ '@aws-crypto/sha256-js': 5.2.0
+ '@aws-sdk/client-sso-oidc': 3.696.0(@aws-sdk/client-sts@3.696.0)
+ '@aws-sdk/client-sts': 3.696.0
+ '@aws-sdk/core': 3.696.0
+ '@aws-sdk/credential-provider-node': 3.696.0(@aws-sdk/client-sso-oidc@3.696.0(@aws-sdk/client-sts@3.696.0))(@aws-sdk/client-sts@3.696.0)
+ '@aws-sdk/middleware-host-header': 3.696.0
+ '@aws-sdk/middleware-logger': 3.696.0
+ '@aws-sdk/middleware-recursion-detection': 3.696.0
+ '@aws-sdk/middleware-sdk-ec2': 3.696.0
+ '@aws-sdk/middleware-user-agent': 3.696.0
+ '@aws-sdk/region-config-resolver': 3.696.0
+ '@aws-sdk/types': 3.696.0
+ '@aws-sdk/util-endpoints': 3.696.0
+ '@aws-sdk/util-user-agent-browser': 3.696.0
+ '@aws-sdk/util-user-agent-node': 3.696.0
+ '@smithy/config-resolver': 3.0.12
+ '@smithy/core': 2.5.4
+ '@smithy/fetch-http-handler': 4.1.1
+ '@smithy/hash-node': 3.0.10
+ '@smithy/invalid-dependency': 3.0.10
+ '@smithy/middleware-content-length': 3.0.12
+ '@smithy/middleware-endpoint': 3.2.4
+ '@smithy/middleware-retry': 3.0.28
+ '@smithy/middleware-serde': 3.0.10
+ '@smithy/middleware-stack': 3.0.10
+ '@smithy/node-config-provider': 3.1.11
+ '@smithy/node-http-handler': 3.3.1
+ '@smithy/protocol-http': 4.1.7
+ '@smithy/smithy-client': 3.4.5
+ '@smithy/types': 3.7.1
+ '@smithy/url-parser': 3.0.10
+ '@smithy/util-base64': 3.0.0
+ '@smithy/util-body-length-browser': 3.0.0
+ '@smithy/util-body-length-node': 3.0.0
+ '@smithy/util-defaults-mode-browser': 3.0.28
+ '@smithy/util-defaults-mode-node': 3.0.28
+ '@smithy/util-endpoints': 2.1.6
+ '@smithy/util-middleware': 3.0.10
+ '@smithy/util-retry': 3.0.10
+ '@smithy/util-utf8': 3.0.0
+ '@smithy/util-waiter': 3.1.9
+ '@types/uuid': 9.0.8
+ tslib: 2.8.1
+ uuid: 9.0.1
+ transitivePeerDependencies:
+ - aws-crt
+
+ '@aws-sdk/client-eventbridge@3.696.0':
+ dependencies:
+ '@aws-crypto/sha256-browser': 5.2.0
+ '@aws-crypto/sha256-js': 5.2.0
+ '@aws-sdk/client-sso-oidc': 3.696.0(@aws-sdk/client-sts@3.696.0)
+ '@aws-sdk/client-sts': 3.696.0
+ '@aws-sdk/core': 3.696.0
+ '@aws-sdk/credential-provider-node': 3.696.0(@aws-sdk/client-sso-oidc@3.696.0(@aws-sdk/client-sts@3.696.0))(@aws-sdk/client-sts@3.696.0)
+ '@aws-sdk/middleware-host-header': 3.696.0
+ '@aws-sdk/middleware-logger': 3.696.0
+ '@aws-sdk/middleware-recursion-detection': 3.696.0
+ '@aws-sdk/middleware-user-agent': 3.696.0
+ '@aws-sdk/region-config-resolver': 3.696.0
+ '@aws-sdk/signature-v4-multi-region': 3.696.0
+ '@aws-sdk/types': 3.696.0
+ '@aws-sdk/util-endpoints': 3.696.0
+ '@aws-sdk/util-user-agent-browser': 3.696.0
+ '@aws-sdk/util-user-agent-node': 3.696.0
+ '@smithy/config-resolver': 3.0.12
+ '@smithy/core': 2.5.4
+ '@smithy/fetch-http-handler': 4.1.1
+ '@smithy/hash-node': 3.0.10
+ '@smithy/invalid-dependency': 3.0.10
+ '@smithy/middleware-content-length': 3.0.12
+ '@smithy/middleware-endpoint': 3.2.4
+ '@smithy/middleware-retry': 3.0.28
+ '@smithy/middleware-serde': 3.0.10
+ '@smithy/middleware-stack': 3.0.10
+ '@smithy/node-config-provider': 3.1.11
+ '@smithy/node-http-handler': 3.3.1
+ '@smithy/protocol-http': 4.1.7
+ '@smithy/smithy-client': 3.4.5
+ '@smithy/types': 3.7.1
+ '@smithy/url-parser': 3.0.10
+ '@smithy/util-base64': 3.0.0
+ '@smithy/util-body-length-browser': 3.0.0
+ '@smithy/util-body-length-node': 3.0.0
+ '@smithy/util-defaults-mode-browser': 3.0.28
+ '@smithy/util-defaults-mode-node': 3.0.28
+ '@smithy/util-endpoints': 2.1.6
+ '@smithy/util-middleware': 3.0.10
+ '@smithy/util-retry': 3.0.10
+ '@smithy/util-utf8': 3.0.0
+ tslib: 2.8.1
+ transitivePeerDependencies:
+ - aws-crt
+
+ '@aws-sdk/client-iam@3.696.0':
+ dependencies:
+ '@aws-crypto/sha256-browser': 5.2.0
+ '@aws-crypto/sha256-js': 5.2.0
+ '@aws-sdk/client-sso-oidc': 3.696.0(@aws-sdk/client-sts@3.696.0)
+ '@aws-sdk/client-sts': 3.696.0
+ '@aws-sdk/core': 3.696.0
+ '@aws-sdk/credential-provider-node': 3.696.0(@aws-sdk/client-sso-oidc@3.696.0(@aws-sdk/client-sts@3.696.0))(@aws-sdk/client-sts@3.696.0)
+ '@aws-sdk/middleware-host-header': 3.696.0
+ '@aws-sdk/middleware-logger': 3.696.0
+ '@aws-sdk/middleware-recursion-detection': 3.696.0
+ '@aws-sdk/middleware-user-agent': 3.696.0
+ '@aws-sdk/region-config-resolver': 3.696.0
+ '@aws-sdk/types': 3.696.0
+ '@aws-sdk/util-endpoints': 3.696.0
+ '@aws-sdk/util-user-agent-browser': 3.696.0
+ '@aws-sdk/util-user-agent-node': 3.696.0
+ '@smithy/config-resolver': 3.0.12
+ '@smithy/core': 2.5.4
+ '@smithy/fetch-http-handler': 4.1.1
+ '@smithy/hash-node': 3.0.10
+ '@smithy/invalid-dependency': 3.0.10
+ '@smithy/middleware-content-length': 3.0.12
+ '@smithy/middleware-endpoint': 3.2.4
+ '@smithy/middleware-retry': 3.0.28
+ '@smithy/middleware-serde': 3.0.10
+ '@smithy/middleware-stack': 3.0.10
+ '@smithy/node-config-provider': 3.1.11
+ '@smithy/node-http-handler': 3.3.1
+ '@smithy/protocol-http': 4.1.7
+ '@smithy/smithy-client': 3.4.5
+ '@smithy/types': 3.7.1
+ '@smithy/url-parser': 3.0.10
+ '@smithy/util-base64': 3.0.0
+ '@smithy/util-body-length-browser': 3.0.0
+ '@smithy/util-body-length-node': 3.0.0
+ '@smithy/util-defaults-mode-browser': 3.0.28
+ '@smithy/util-defaults-mode-node': 3.0.28
+ '@smithy/util-endpoints': 2.1.6
+ '@smithy/util-middleware': 3.0.10
+ '@smithy/util-retry': 3.0.10
+ '@smithy/util-utf8': 3.0.0
+ '@smithy/util-waiter': 3.1.9
+ tslib: 2.8.1
+ transitivePeerDependencies:
+ - aws-crt
+
+ '@aws-sdk/client-lambda@3.698.0':
+ dependencies:
+ '@aws-crypto/sha256-browser': 5.2.0
+ '@aws-crypto/sha256-js': 5.2.0
+ '@aws-sdk/client-sso-oidc': 3.696.0(@aws-sdk/client-sts@3.696.0)
+ '@aws-sdk/client-sts': 3.696.0
+ '@aws-sdk/core': 3.696.0
+ '@aws-sdk/credential-provider-node': 3.696.0(@aws-sdk/client-sso-oidc@3.696.0(@aws-sdk/client-sts@3.696.0))(@aws-sdk/client-sts@3.696.0)
+ '@aws-sdk/middleware-host-header': 3.696.0
+ '@aws-sdk/middleware-logger': 3.696.0
+ '@aws-sdk/middleware-recursion-detection': 3.696.0
+ '@aws-sdk/middleware-user-agent': 3.696.0
+ '@aws-sdk/region-config-resolver': 3.696.0
+ '@aws-sdk/types': 3.696.0
+ '@aws-sdk/util-endpoints': 3.696.0
+ '@aws-sdk/util-user-agent-browser': 3.696.0
+ '@aws-sdk/util-user-agent-node': 3.696.0
+ '@smithy/config-resolver': 3.0.12
+ '@smithy/core': 2.5.4
+ '@smithy/eventstream-serde-browser': 3.0.13
+ '@smithy/eventstream-serde-config-resolver': 3.0.10
+ '@smithy/eventstream-serde-node': 3.0.12
+ '@smithy/fetch-http-handler': 4.1.1
+ '@smithy/hash-node': 3.0.10
+ '@smithy/invalid-dependency': 3.0.10
+ '@smithy/middleware-content-length': 3.0.12
+ '@smithy/middleware-endpoint': 3.2.4
+ '@smithy/middleware-retry': 3.0.28
+ '@smithy/middleware-serde': 3.0.10
+ '@smithy/middleware-stack': 3.0.10
+ '@smithy/node-config-provider': 3.1.11
+ '@smithy/node-http-handler': 3.3.1
+ '@smithy/protocol-http': 4.1.7
+ '@smithy/smithy-client': 3.4.5
+ '@smithy/types': 3.7.1
+ '@smithy/url-parser': 3.0.10
+ '@smithy/util-base64': 3.0.0
+ '@smithy/util-body-length-browser': 3.0.0
+ '@smithy/util-body-length-node': 3.0.0
+ '@smithy/util-defaults-mode-browser': 3.0.28
+ '@smithy/util-defaults-mode-node': 3.0.28
+ '@smithy/util-endpoints': 2.1.6
+ '@smithy/util-middleware': 3.0.10
+ '@smithy/util-retry': 3.0.10
+ '@smithy/util-stream': 3.3.1
+ '@smithy/util-utf8': 3.0.0
+ '@smithy/util-waiter': 3.1.9
+ tslib: 2.8.1
+ transitivePeerDependencies:
+ - aws-crt
+
+ '@aws-sdk/client-rds@3.697.0':
+ dependencies:
+ '@aws-crypto/sha256-browser': 5.2.0
+ '@aws-crypto/sha256-js': 5.2.0
+ '@aws-sdk/client-sso-oidc': 3.696.0(@aws-sdk/client-sts@3.696.0)
+ '@aws-sdk/client-sts': 3.696.0
+ '@aws-sdk/core': 3.696.0
+ '@aws-sdk/credential-provider-node': 3.696.0(@aws-sdk/client-sso-oidc@3.696.0(@aws-sdk/client-sts@3.696.0))(@aws-sdk/client-sts@3.696.0)
+ '@aws-sdk/middleware-host-header': 3.696.0
+ '@aws-sdk/middleware-logger': 3.696.0
+ '@aws-sdk/middleware-recursion-detection': 3.696.0
+ '@aws-sdk/middleware-sdk-rds': 3.696.0
+ '@aws-sdk/middleware-user-agent': 3.696.0
+ '@aws-sdk/region-config-resolver': 3.696.0
+ '@aws-sdk/types': 3.696.0
+ '@aws-sdk/util-endpoints': 3.696.0
+ '@aws-sdk/util-user-agent-browser': 3.696.0
+ '@aws-sdk/util-user-agent-node': 3.696.0
+ '@smithy/config-resolver': 3.0.12
+ '@smithy/core': 2.5.4
+ '@smithy/fetch-http-handler': 4.1.1
+ '@smithy/hash-node': 3.0.10
+ '@smithy/invalid-dependency': 3.0.10
+ '@smithy/middleware-content-length': 3.0.12
+ '@smithy/middleware-endpoint': 3.2.4
+ '@smithy/middleware-retry': 3.0.28
+ '@smithy/middleware-serde': 3.0.10
+ '@smithy/middleware-stack': 3.0.10
+ '@smithy/node-config-provider': 3.1.11
+ '@smithy/node-http-handler': 3.3.1
+ '@smithy/protocol-http': 4.1.7
+ '@smithy/smithy-client': 3.4.5
+ '@smithy/types': 3.7.1
+ '@smithy/url-parser': 3.0.10
+ '@smithy/util-base64': 3.0.0
+ '@smithy/util-body-length-browser': 3.0.0
+ '@smithy/util-body-length-node': 3.0.0
+ '@smithy/util-defaults-mode-browser': 3.0.28
+ '@smithy/util-defaults-mode-node': 3.0.28
+ '@smithy/util-endpoints': 2.1.6
+ '@smithy/util-middleware': 3.0.10
+ '@smithy/util-retry': 3.0.10
+ '@smithy/util-utf8': 3.0.0
+ '@smithy/util-waiter': 3.1.9
+ tslib: 2.8.1
+ transitivePeerDependencies:
+ - aws-crt
+
+ '@aws-sdk/client-s3@3.698.0':
+ dependencies:
+ '@aws-crypto/sha1-browser': 5.2.0
+ '@aws-crypto/sha256-browser': 5.2.0
+ '@aws-crypto/sha256-js': 5.2.0
+ '@aws-sdk/client-sso-oidc': 3.696.0(@aws-sdk/client-sts@3.696.0)
+ '@aws-sdk/client-sts': 3.696.0
+ '@aws-sdk/core': 3.696.0
+ '@aws-sdk/credential-provider-node': 3.696.0(@aws-sdk/client-sso-oidc@3.696.0(@aws-sdk/client-sts@3.696.0))(@aws-sdk/client-sts@3.696.0)
+ '@aws-sdk/middleware-bucket-endpoint': 3.696.0
+ '@aws-sdk/middleware-expect-continue': 3.696.0
+ '@aws-sdk/middleware-flexible-checksums': 3.697.0
+ '@aws-sdk/middleware-host-header': 3.696.0
+ '@aws-sdk/middleware-location-constraint': 3.696.0
+ '@aws-sdk/middleware-logger': 3.696.0
+ '@aws-sdk/middleware-recursion-detection': 3.696.0
+ '@aws-sdk/middleware-sdk-s3': 3.696.0
+ '@aws-sdk/middleware-ssec': 3.696.0
+ '@aws-sdk/middleware-user-agent': 3.696.0
+ '@aws-sdk/region-config-resolver': 3.696.0
+ '@aws-sdk/signature-v4-multi-region': 3.696.0
+ '@aws-sdk/types': 3.696.0
+ '@aws-sdk/util-endpoints': 3.696.0
+ '@aws-sdk/util-user-agent-browser': 3.696.0
+ '@aws-sdk/util-user-agent-node': 3.696.0
+ '@aws-sdk/xml-builder': 3.696.0
+ '@smithy/config-resolver': 3.0.12
+ '@smithy/core': 2.5.4
+ '@smithy/eventstream-serde-browser': 3.0.13
+ '@smithy/eventstream-serde-config-resolver': 3.0.10
+ '@smithy/eventstream-serde-node': 3.0.12
+ '@smithy/fetch-http-handler': 4.1.1
+ '@smithy/hash-blob-browser': 3.1.9
+ '@smithy/hash-node': 3.0.10
+ '@smithy/hash-stream-node': 3.1.9
+ '@smithy/invalid-dependency': 3.0.10
+ '@smithy/md5-js': 3.0.10
+ '@smithy/middleware-content-length': 3.0.12
+ '@smithy/middleware-endpoint': 3.2.4
+ '@smithy/middleware-retry': 3.0.28
+ '@smithy/middleware-serde': 3.0.10
+ '@smithy/middleware-stack': 3.0.10
+ '@smithy/node-config-provider': 3.1.11
+ '@smithy/node-http-handler': 3.3.1
+ '@smithy/protocol-http': 4.1.7
+ '@smithy/smithy-client': 3.4.5
+ '@smithy/types': 3.7.1
+ '@smithy/url-parser': 3.0.10
+ '@smithy/util-base64': 3.0.0
+ '@smithy/util-body-length-browser': 3.0.0
+ '@smithy/util-body-length-node': 3.0.0
+ '@smithy/util-defaults-mode-browser': 3.0.28
+ '@smithy/util-defaults-mode-node': 3.0.28
+ '@smithy/util-endpoints': 2.1.6
+ '@smithy/util-middleware': 3.0.10
+ '@smithy/util-retry': 3.0.10
+ '@smithy/util-stream': 3.3.1
+ '@smithy/util-utf8': 3.0.0
+ '@smithy/util-waiter': 3.1.9
+ tslib: 2.8.1
+ transitivePeerDependencies:
+ - aws-crt
+
+ '@aws-sdk/client-sagemaker@3.696.0':
+ dependencies:
+ '@aws-crypto/sha256-browser': 5.2.0
+ '@aws-crypto/sha256-js': 5.2.0
+ '@aws-sdk/client-sso-oidc': 3.696.0(@aws-sdk/client-sts@3.696.0)
+ '@aws-sdk/client-sts': 3.696.0
+ '@aws-sdk/core': 3.696.0
+ '@aws-sdk/credential-provider-node': 3.696.0(@aws-sdk/client-sso-oidc@3.696.0(@aws-sdk/client-sts@3.696.0))(@aws-sdk/client-sts@3.696.0)
+ '@aws-sdk/middleware-host-header': 3.696.0
+ '@aws-sdk/middleware-logger': 3.696.0
+ '@aws-sdk/middleware-recursion-detection': 3.696.0
+ '@aws-sdk/middleware-user-agent': 3.696.0
+ '@aws-sdk/region-config-resolver': 3.696.0
+ '@aws-sdk/types': 3.696.0
+ '@aws-sdk/util-endpoints': 3.696.0
+ '@aws-sdk/util-user-agent-browser': 3.696.0
+ '@aws-sdk/util-user-agent-node': 3.696.0
+ '@smithy/config-resolver': 3.0.12
+ '@smithy/core': 2.5.4
+ '@smithy/fetch-http-handler': 4.1.1
+ '@smithy/hash-node': 3.0.10
+ '@smithy/invalid-dependency': 3.0.10
+ '@smithy/middleware-content-length': 3.0.12
+ '@smithy/middleware-endpoint': 3.2.4
+ '@smithy/middleware-retry': 3.0.28
+ '@smithy/middleware-serde': 3.0.10
+ '@smithy/middleware-stack': 3.0.10
+ '@smithy/node-config-provider': 3.1.11
+ '@smithy/node-http-handler': 3.3.1
+ '@smithy/protocol-http': 4.1.7
+ '@smithy/smithy-client': 3.4.5
+ '@smithy/types': 3.7.1
+ '@smithy/url-parser': 3.0.10
+ '@smithy/util-base64': 3.0.0
+ '@smithy/util-body-length-browser': 3.0.0
+ '@smithy/util-body-length-node': 3.0.0
+ '@smithy/util-defaults-mode-browser': 3.0.28
+ '@smithy/util-defaults-mode-node': 3.0.28
+ '@smithy/util-endpoints': 2.1.6
+ '@smithy/util-middleware': 3.0.10
+ '@smithy/util-retry': 3.0.10
+ '@smithy/util-utf8': 3.0.0
+ '@smithy/util-waiter': 3.1.9
+ '@types/uuid': 9.0.8
+ tslib: 2.8.1
+ uuid: 9.0.1
+ transitivePeerDependencies:
+ - aws-crt
+
+ '@aws-sdk/client-ses@3.696.0':
+ dependencies:
+ '@aws-crypto/sha256-browser': 5.2.0
+ '@aws-crypto/sha256-js': 5.2.0
+ '@aws-sdk/client-sso-oidc': 3.696.0(@aws-sdk/client-sts@3.696.0)
+ '@aws-sdk/client-sts': 3.696.0
+ '@aws-sdk/core': 3.696.0
+ '@aws-sdk/credential-provider-node': 3.696.0(@aws-sdk/client-sso-oidc@3.696.0(@aws-sdk/client-sts@3.696.0))(@aws-sdk/client-sts@3.696.0)
+ '@aws-sdk/middleware-host-header': 3.696.0
+ '@aws-sdk/middleware-logger': 3.696.0
+ '@aws-sdk/middleware-recursion-detection': 3.696.0
+ '@aws-sdk/middleware-user-agent': 3.696.0
+ '@aws-sdk/region-config-resolver': 3.696.0
+ '@aws-sdk/types': 3.696.0
+ '@aws-sdk/util-endpoints': 3.696.0
+ '@aws-sdk/util-user-agent-browser': 3.696.0
+ '@aws-sdk/util-user-agent-node': 3.696.0
+ '@smithy/config-resolver': 3.0.12
+ '@smithy/core': 2.5.4
+ '@smithy/fetch-http-handler': 4.1.1
+ '@smithy/hash-node': 3.0.10
+ '@smithy/invalid-dependency': 3.0.10
+ '@smithy/middleware-content-length': 3.0.12
+ '@smithy/middleware-endpoint': 3.2.4
+ '@smithy/middleware-retry': 3.0.28
+ '@smithy/middleware-serde': 3.0.10
+ '@smithy/middleware-stack': 3.0.10
+ '@smithy/node-config-provider': 3.1.11
+ '@smithy/node-http-handler': 3.3.1
+ '@smithy/protocol-http': 4.1.7
+ '@smithy/smithy-client': 3.4.5
+ '@smithy/types': 3.7.1
+ '@smithy/url-parser': 3.0.10
+ '@smithy/util-base64': 3.0.0
+ '@smithy/util-body-length-browser': 3.0.0
+ '@smithy/util-body-length-node': 3.0.0
+ '@smithy/util-defaults-mode-browser': 3.0.28
+ '@smithy/util-defaults-mode-node': 3.0.28
+ '@smithy/util-endpoints': 2.1.6
+ '@smithy/util-middleware': 3.0.10
+ '@smithy/util-retry': 3.0.10
+ '@smithy/util-utf8': 3.0.0
+ '@smithy/util-waiter': 3.1.9
+ tslib: 2.8.1
+ transitivePeerDependencies:
+ - aws-crt
+
+ '@aws-sdk/client-sesv2@3.696.0':
+ dependencies:
+ '@aws-crypto/sha256-browser': 5.2.0
+ '@aws-crypto/sha256-js': 5.2.0
+ '@aws-sdk/client-sso-oidc': 3.696.0(@aws-sdk/client-sts@3.696.0)
+ '@aws-sdk/client-sts': 3.696.0
+ '@aws-sdk/core': 3.696.0
+ '@aws-sdk/credential-provider-node': 3.696.0(@aws-sdk/client-sso-oidc@3.696.0(@aws-sdk/client-sts@3.696.0))(@aws-sdk/client-sts@3.696.0)
+ '@aws-sdk/middleware-host-header': 3.696.0
+ '@aws-sdk/middleware-logger': 3.696.0
+ '@aws-sdk/middleware-recursion-detection': 3.696.0
+ '@aws-sdk/middleware-user-agent': 3.696.0
+ '@aws-sdk/region-config-resolver': 3.696.0
+ '@aws-sdk/types': 3.696.0
+ '@aws-sdk/util-endpoints': 3.696.0
+ '@aws-sdk/util-user-agent-browser': 3.696.0
+ '@aws-sdk/util-user-agent-node': 3.696.0
+ '@smithy/config-resolver': 3.0.12
+ '@smithy/core': 2.5.4
+ '@smithy/fetch-http-handler': 4.1.1
+ '@smithy/hash-node': 3.0.10
+ '@smithy/invalid-dependency': 3.0.10
+ '@smithy/middleware-content-length': 3.0.12
+ '@smithy/middleware-endpoint': 3.2.4
+ '@smithy/middleware-retry': 3.0.28
+ '@smithy/middleware-serde': 3.0.10
+ '@smithy/middleware-stack': 3.0.10
+ '@smithy/node-config-provider': 3.1.11
+ '@smithy/node-http-handler': 3.3.1
+ '@smithy/protocol-http': 4.1.7
+ '@smithy/smithy-client': 3.4.5
+ '@smithy/types': 3.7.1
+ '@smithy/url-parser': 3.0.10
+ '@smithy/util-base64': 3.0.0
+ '@smithy/util-body-length-browser': 3.0.0
+ '@smithy/util-body-length-node': 3.0.0
+ '@smithy/util-defaults-mode-browser': 3.0.28
+ '@smithy/util-defaults-mode-node': 3.0.28
+ '@smithy/util-endpoints': 2.1.6
+ '@smithy/util-middleware': 3.0.10
+ '@smithy/util-retry': 3.0.10
+ '@smithy/util-utf8': 3.0.0
+ tslib: 2.8.1
+ transitivePeerDependencies:
+ - aws-crt
+
+ '@aws-sdk/client-sfn@3.696.0':
+ dependencies:
+ '@aws-crypto/sha256-browser': 5.2.0
+ '@aws-crypto/sha256-js': 5.2.0
+ '@aws-sdk/client-sso-oidc': 3.696.0(@aws-sdk/client-sts@3.696.0)
+ '@aws-sdk/client-sts': 3.696.0
+ '@aws-sdk/core': 3.696.0
+ '@aws-sdk/credential-provider-node': 3.696.0(@aws-sdk/client-sso-oidc@3.696.0(@aws-sdk/client-sts@3.696.0))(@aws-sdk/client-sts@3.696.0)
+ '@aws-sdk/middleware-host-header': 3.696.0
+ '@aws-sdk/middleware-logger': 3.696.0
+ '@aws-sdk/middleware-recursion-detection': 3.696.0
+ '@aws-sdk/middleware-user-agent': 3.696.0
+ '@aws-sdk/region-config-resolver': 3.696.0
+ '@aws-sdk/types': 3.696.0
+ '@aws-sdk/util-endpoints': 3.696.0
+ '@aws-sdk/util-user-agent-browser': 3.696.0
+ '@aws-sdk/util-user-agent-node': 3.696.0
+ '@smithy/config-resolver': 3.0.12
+ '@smithy/core': 2.5.4
+ '@smithy/fetch-http-handler': 4.1.1
+ '@smithy/hash-node': 3.0.10
+ '@smithy/invalid-dependency': 3.0.10
+ '@smithy/middleware-content-length': 3.0.12
+ '@smithy/middleware-endpoint': 3.2.4
+ '@smithy/middleware-retry': 3.0.28
+ '@smithy/middleware-serde': 3.0.10
+ '@smithy/middleware-stack': 3.0.10
+ '@smithy/node-config-provider': 3.1.11
+ '@smithy/node-http-handler': 3.3.1
+ '@smithy/protocol-http': 4.1.7
+ '@smithy/smithy-client': 3.4.5
+ '@smithy/types': 3.7.1
+ '@smithy/url-parser': 3.0.10
+ '@smithy/util-base64': 3.0.0
+ '@smithy/util-body-length-browser': 3.0.0
+ '@smithy/util-body-length-node': 3.0.0
+ '@smithy/util-defaults-mode-browser': 3.0.28
+ '@smithy/util-defaults-mode-node': 3.0.28
+ '@smithy/util-endpoints': 2.1.6
+ '@smithy/util-middleware': 3.0.10
+ '@smithy/util-retry': 3.0.10
+ '@smithy/util-utf8': 3.0.0
+ '@types/uuid': 9.0.8
+ tslib: 2.8.1
+ uuid: 9.0.1
+ transitivePeerDependencies:
+ - aws-crt
+
+ '@aws-sdk/client-sns@3.696.0':
+ dependencies:
+ '@aws-crypto/sha256-browser': 5.2.0
+ '@aws-crypto/sha256-js': 5.2.0
+ '@aws-sdk/client-sso-oidc': 3.696.0(@aws-sdk/client-sts@3.696.0)
+ '@aws-sdk/client-sts': 3.696.0
+ '@aws-sdk/core': 3.696.0
+ '@aws-sdk/credential-provider-node': 3.696.0(@aws-sdk/client-sso-oidc@3.696.0(@aws-sdk/client-sts@3.696.0))(@aws-sdk/client-sts@3.696.0)
+ '@aws-sdk/middleware-host-header': 3.696.0
+ '@aws-sdk/middleware-logger': 3.696.0
+ '@aws-sdk/middleware-recursion-detection': 3.696.0
+ '@aws-sdk/middleware-user-agent': 3.696.0
+ '@aws-sdk/region-config-resolver': 3.696.0
+ '@aws-sdk/types': 3.696.0
+ '@aws-sdk/util-endpoints': 3.696.0
+ '@aws-sdk/util-user-agent-browser': 3.696.0
+ '@aws-sdk/util-user-agent-node': 3.696.0
+ '@smithy/config-resolver': 3.0.12
+ '@smithy/core': 2.5.4
+ '@smithy/fetch-http-handler': 4.1.1
+ '@smithy/hash-node': 3.0.10
+ '@smithy/invalid-dependency': 3.0.10
+ '@smithy/middleware-content-length': 3.0.12
+ '@smithy/middleware-endpoint': 3.2.4
+ '@smithy/middleware-retry': 3.0.28
+ '@smithy/middleware-serde': 3.0.10
+ '@smithy/middleware-stack': 3.0.10
+ '@smithy/node-config-provider': 3.1.11
+ '@smithy/node-http-handler': 3.3.1
+ '@smithy/protocol-http': 4.1.7
+ '@smithy/smithy-client': 3.4.5
+ '@smithy/types': 3.7.1
+ '@smithy/url-parser': 3.0.10
+ '@smithy/util-base64': 3.0.0
+ '@smithy/util-body-length-browser': 3.0.0
+ '@smithy/util-body-length-node': 3.0.0
+ '@smithy/util-defaults-mode-browser': 3.0.28
+ '@smithy/util-defaults-mode-node': 3.0.28
+ '@smithy/util-endpoints': 2.1.6
+ '@smithy/util-middleware': 3.0.10
+ '@smithy/util-retry': 3.0.10
+ '@smithy/util-utf8': 3.0.0
+ tslib: 2.8.1
+ transitivePeerDependencies:
+ - aws-crt
+
+ '@aws-sdk/client-sqs@3.696.0':
+ dependencies:
+ '@aws-crypto/sha256-browser': 5.2.0
+ '@aws-crypto/sha256-js': 5.2.0
+ '@aws-sdk/client-sso-oidc': 3.696.0(@aws-sdk/client-sts@3.696.0)
+ '@aws-sdk/client-sts': 3.696.0
+ '@aws-sdk/core': 3.696.0
+ '@aws-sdk/credential-provider-node': 3.696.0(@aws-sdk/client-sso-oidc@3.696.0(@aws-sdk/client-sts@3.696.0))(@aws-sdk/client-sts@3.696.0)
+ '@aws-sdk/middleware-host-header': 3.696.0
+ '@aws-sdk/middleware-logger': 3.696.0
+ '@aws-sdk/middleware-recursion-detection': 3.696.0
+ '@aws-sdk/middleware-sdk-sqs': 3.696.0
+ '@aws-sdk/middleware-user-agent': 3.696.0
+ '@aws-sdk/region-config-resolver': 3.696.0
+ '@aws-sdk/types': 3.696.0
+ '@aws-sdk/util-endpoints': 3.696.0
+ '@aws-sdk/util-user-agent-browser': 3.696.0
+ '@aws-sdk/util-user-agent-node': 3.696.0
+ '@smithy/config-resolver': 3.0.12
+ '@smithy/core': 2.5.4
+ '@smithy/fetch-http-handler': 4.1.1
+ '@smithy/hash-node': 3.0.10
+ '@smithy/invalid-dependency': 3.0.10
+ '@smithy/md5-js': 3.0.10
+ '@smithy/middleware-content-length': 3.0.12
+ '@smithy/middleware-endpoint': 3.2.4
+ '@smithy/middleware-retry': 3.0.28
+ '@smithy/middleware-serde': 3.0.10
+ '@smithy/middleware-stack': 3.0.10
+ '@smithy/node-config-provider': 3.1.11
+ '@smithy/node-http-handler': 3.3.1
+ '@smithy/protocol-http': 4.1.7
+ '@smithy/smithy-client': 3.4.5
+ '@smithy/types': 3.7.1
+ '@smithy/url-parser': 3.0.10
+ '@smithy/util-base64': 3.0.0
+ '@smithy/util-body-length-browser': 3.0.0
+ '@smithy/util-body-length-node': 3.0.0
+ '@smithy/util-defaults-mode-browser': 3.0.28
+ '@smithy/util-defaults-mode-node': 3.0.28
+ '@smithy/util-endpoints': 2.1.6
+ '@smithy/util-middleware': 3.0.10
+ '@smithy/util-retry': 3.0.10
+ '@smithy/util-utf8': 3.0.0
+ tslib: 2.8.1
+ transitivePeerDependencies:
+ - aws-crt
+
+ '@aws-sdk/client-ssm@3.698.0':
+ dependencies:
+ '@aws-crypto/sha256-browser': 5.2.0
+ '@aws-crypto/sha256-js': 5.2.0
+ '@aws-sdk/client-sso-oidc': 3.696.0(@aws-sdk/client-sts@3.696.0)
+ '@aws-sdk/client-sts': 3.696.0
+ '@aws-sdk/core': 3.696.0
+ '@aws-sdk/credential-provider-node': 3.696.0(@aws-sdk/client-sso-oidc@3.696.0(@aws-sdk/client-sts@3.696.0))(@aws-sdk/client-sts@3.696.0)
+ '@aws-sdk/middleware-host-header': 3.696.0
+ '@aws-sdk/middleware-logger': 3.696.0
+ '@aws-sdk/middleware-recursion-detection': 3.696.0
+ '@aws-sdk/middleware-user-agent': 3.696.0
+ '@aws-sdk/region-config-resolver': 3.696.0
+ '@aws-sdk/types': 3.696.0
+ '@aws-sdk/util-endpoints': 3.696.0
+ '@aws-sdk/util-user-agent-browser': 3.696.0
+ '@aws-sdk/util-user-agent-node': 3.696.0
+ '@smithy/config-resolver': 3.0.12
+ '@smithy/core': 2.5.4
+ '@smithy/fetch-http-handler': 4.1.1
+ '@smithy/hash-node': 3.0.10
+ '@smithy/invalid-dependency': 3.0.10
+ '@smithy/middleware-content-length': 3.0.12
+ '@smithy/middleware-endpoint': 3.2.4
+ '@smithy/middleware-retry': 3.0.28
+ '@smithy/middleware-serde': 3.0.10
+ '@smithy/middleware-stack': 3.0.10
+ '@smithy/node-config-provider': 3.1.11
+ '@smithy/node-http-handler': 3.3.1
+ '@smithy/protocol-http': 4.1.7
+ '@smithy/smithy-client': 3.4.5
+ '@smithy/types': 3.7.1
+ '@smithy/url-parser': 3.0.10
+ '@smithy/util-base64': 3.0.0
+ '@smithy/util-body-length-browser': 3.0.0
+ '@smithy/util-body-length-node': 3.0.0
+ '@smithy/util-defaults-mode-browser': 3.0.28
+ '@smithy/util-defaults-mode-node': 3.0.28
+ '@smithy/util-endpoints': 2.1.6
+ '@smithy/util-middleware': 3.0.10
+ '@smithy/util-retry': 3.0.10
+ '@smithy/util-utf8': 3.0.0
+ '@smithy/util-waiter': 3.1.9
+ '@types/uuid': 9.0.8
+ tslib: 2.8.1
+ uuid: 9.0.1
+ transitivePeerDependencies:
+ - aws-crt
+
+ '@aws-sdk/client-sso-oidc@3.696.0(@aws-sdk/client-sts@3.696.0)':
+ dependencies:
+ '@aws-crypto/sha256-browser': 5.2.0
+ '@aws-crypto/sha256-js': 5.2.0
+ '@aws-sdk/client-sts': 3.696.0
+ '@aws-sdk/core': 3.696.0
+ '@aws-sdk/credential-provider-node': 3.696.0(@aws-sdk/client-sso-oidc@3.696.0(@aws-sdk/client-sts@3.696.0))(@aws-sdk/client-sts@3.696.0)
+ '@aws-sdk/middleware-host-header': 3.696.0
+ '@aws-sdk/middleware-logger': 3.696.0
+ '@aws-sdk/middleware-recursion-detection': 3.696.0
+ '@aws-sdk/middleware-user-agent': 3.696.0
+ '@aws-sdk/region-config-resolver': 3.696.0
+ '@aws-sdk/types': 3.696.0
+ '@aws-sdk/util-endpoints': 3.696.0
+ '@aws-sdk/util-user-agent-browser': 3.696.0
+ '@aws-sdk/util-user-agent-node': 3.696.0
+ '@smithy/config-resolver': 3.0.12
+ '@smithy/core': 2.5.4
+ '@smithy/fetch-http-handler': 4.1.1
+ '@smithy/hash-node': 3.0.10
+ '@smithy/invalid-dependency': 3.0.10
+ '@smithy/middleware-content-length': 3.0.12
+ '@smithy/middleware-endpoint': 3.2.4
+ '@smithy/middleware-retry': 3.0.28
+ '@smithy/middleware-serde': 3.0.10
+ '@smithy/middleware-stack': 3.0.10
+ '@smithy/node-config-provider': 3.1.11
+ '@smithy/node-http-handler': 3.3.1
+ '@smithy/protocol-http': 4.1.7
+ '@smithy/smithy-client': 3.4.5
+ '@smithy/types': 3.7.1
+ '@smithy/url-parser': 3.0.10
+ '@smithy/util-base64': 3.0.0
+ '@smithy/util-body-length-browser': 3.0.0
+ '@smithy/util-body-length-node': 3.0.0
+ '@smithy/util-defaults-mode-browser': 3.0.28
+ '@smithy/util-defaults-mode-node': 3.0.28
+ '@smithy/util-endpoints': 2.1.6
+ '@smithy/util-middleware': 3.0.10
+ '@smithy/util-retry': 3.0.10
+ '@smithy/util-utf8': 3.0.0
+ tslib: 2.8.1
+ transitivePeerDependencies:
+ - aws-crt
+
+ '@aws-sdk/client-sso@3.696.0':
+ dependencies:
+ '@aws-crypto/sha256-browser': 5.2.0
+ '@aws-crypto/sha256-js': 5.2.0
+ '@aws-sdk/core': 3.696.0
+ '@aws-sdk/middleware-host-header': 3.696.0
+ '@aws-sdk/middleware-logger': 3.696.0
+ '@aws-sdk/middleware-recursion-detection': 3.696.0
+ '@aws-sdk/middleware-user-agent': 3.696.0
+ '@aws-sdk/region-config-resolver': 3.696.0
+ '@aws-sdk/types': 3.696.0
+ '@aws-sdk/util-endpoints': 3.696.0
+ '@aws-sdk/util-user-agent-browser': 3.696.0
+ '@aws-sdk/util-user-agent-node': 3.696.0
+ '@smithy/config-resolver': 3.0.12
+ '@smithy/core': 2.5.4
+ '@smithy/fetch-http-handler': 4.1.1
+ '@smithy/hash-node': 3.0.10
+ '@smithy/invalid-dependency': 3.0.10
+ '@smithy/middleware-content-length': 3.0.12
+ '@smithy/middleware-endpoint': 3.2.4
+ '@smithy/middleware-retry': 3.0.28
+ '@smithy/middleware-serde': 3.0.10
+ '@smithy/middleware-stack': 3.0.10
+ '@smithy/node-config-provider': 3.1.11
+ '@smithy/node-http-handler': 3.3.1
+ '@smithy/protocol-http': 4.1.7
+ '@smithy/smithy-client': 3.4.5
+ '@smithy/types': 3.7.1
+ '@smithy/url-parser': 3.0.10
+ '@smithy/util-base64': 3.0.0
+ '@smithy/util-body-length-browser': 3.0.0
+ '@smithy/util-body-length-node': 3.0.0
+ '@smithy/util-defaults-mode-browser': 3.0.28
+ '@smithy/util-defaults-mode-node': 3.0.28
+ '@smithy/util-endpoints': 2.1.6
+ '@smithy/util-middleware': 3.0.10
+ '@smithy/util-retry': 3.0.10
+ '@smithy/util-utf8': 3.0.0
+ tslib: 2.8.1
+ transitivePeerDependencies:
+ - aws-crt
+
+ '@aws-sdk/client-sts@3.696.0':
+ dependencies:
+ '@aws-crypto/sha256-browser': 5.2.0
+ '@aws-crypto/sha256-js': 5.2.0
+ '@aws-sdk/client-sso-oidc': 3.696.0(@aws-sdk/client-sts@3.696.0)
+ '@aws-sdk/core': 3.696.0
+ '@aws-sdk/credential-provider-node': 3.696.0(@aws-sdk/client-sso-oidc@3.696.0(@aws-sdk/client-sts@3.696.0))(@aws-sdk/client-sts@3.696.0)
+ '@aws-sdk/middleware-host-header': 3.696.0
+ '@aws-sdk/middleware-logger': 3.696.0
+ '@aws-sdk/middleware-recursion-detection': 3.696.0
+ '@aws-sdk/middleware-user-agent': 3.696.0
+ '@aws-sdk/region-config-resolver': 3.696.0
+ '@aws-sdk/types': 3.696.0
+ '@aws-sdk/util-endpoints': 3.696.0
+ '@aws-sdk/util-user-agent-browser': 3.696.0
+ '@aws-sdk/util-user-agent-node': 3.696.0
+ '@smithy/config-resolver': 3.0.12
+ '@smithy/core': 2.5.4
+ '@smithy/fetch-http-handler': 4.1.1
+ '@smithy/hash-node': 3.0.10
+ '@smithy/invalid-dependency': 3.0.10
+ '@smithy/middleware-content-length': 3.0.12
+ '@smithy/middleware-endpoint': 3.2.4
+ '@smithy/middleware-retry': 3.0.28
+ '@smithy/middleware-serde': 3.0.10
+ '@smithy/middleware-stack': 3.0.10
+ '@smithy/node-config-provider': 3.1.11
+ '@smithy/node-http-handler': 3.3.1
+ '@smithy/protocol-http': 4.1.7
+ '@smithy/smithy-client': 3.4.5
+ '@smithy/types': 3.7.1
+ '@smithy/url-parser': 3.0.10
+ '@smithy/util-base64': 3.0.0
+ '@smithy/util-body-length-browser': 3.0.0
+ '@smithy/util-body-length-node': 3.0.0
+ '@smithy/util-defaults-mode-browser': 3.0.28
+ '@smithy/util-defaults-mode-node': 3.0.28
+ '@smithy/util-endpoints': 2.1.6
+ '@smithy/util-middleware': 3.0.10
+ '@smithy/util-retry': 3.0.10
+ '@smithy/util-utf8': 3.0.0
+ tslib: 2.8.1
+ transitivePeerDependencies:
+ - aws-crt
+
+ '@aws-sdk/core@3.696.0':
+ dependencies:
+ '@aws-sdk/types': 3.696.0
+ '@smithy/core': 2.5.4
+ '@smithy/node-config-provider': 3.1.11
+ '@smithy/property-provider': 3.1.10
+ '@smithy/protocol-http': 4.1.7
+ '@smithy/signature-v4': 4.2.3
+ '@smithy/smithy-client': 3.4.5
+ '@smithy/types': 3.7.1
+ '@smithy/util-middleware': 3.0.10
+ fast-xml-parser: 4.4.1
+ tslib: 2.8.1
+
+ '@aws-sdk/credential-provider-cognito-identity@3.696.0':
+ dependencies:
+ '@aws-sdk/client-cognito-identity': 3.696.0
+ '@aws-sdk/types': 3.696.0
+ '@smithy/property-provider': 3.1.10
+ '@smithy/types': 3.7.1
+ tslib: 2.8.1
+ transitivePeerDependencies:
+ - aws-crt
+
+ '@aws-sdk/credential-provider-env@3.696.0':
+ dependencies:
+ '@aws-sdk/core': 3.696.0
+ '@aws-sdk/types': 3.696.0
+ '@smithy/property-provider': 3.1.10
+ '@smithy/types': 3.7.1
+ tslib: 2.8.1
+
+ '@aws-sdk/credential-provider-http@3.696.0':
+ dependencies:
+ '@aws-sdk/core': 3.696.0
+ '@aws-sdk/types': 3.696.0
+ '@smithy/fetch-http-handler': 4.1.1
+ '@smithy/node-http-handler': 3.3.1
+ '@smithy/property-provider': 3.1.10
+ '@smithy/protocol-http': 4.1.7
+ '@smithy/smithy-client': 3.4.5
+ '@smithy/types': 3.7.1
+ '@smithy/util-stream': 3.3.1
+ tslib: 2.8.1
+
+ '@aws-sdk/credential-provider-ini@3.696.0(@aws-sdk/client-sso-oidc@3.696.0(@aws-sdk/client-sts@3.696.0))(@aws-sdk/client-sts@3.696.0)':
+ dependencies:
+ '@aws-sdk/client-sts': 3.696.0
+ '@aws-sdk/core': 3.696.0
+ '@aws-sdk/credential-provider-env': 3.696.0
+ '@aws-sdk/credential-provider-http': 3.696.0
+ '@aws-sdk/credential-provider-process': 3.696.0
+ '@aws-sdk/credential-provider-sso': 3.696.0(@aws-sdk/client-sso-oidc@3.696.0(@aws-sdk/client-sts@3.696.0))
+ '@aws-sdk/credential-provider-web-identity': 3.696.0(@aws-sdk/client-sts@3.696.0)
+ '@aws-sdk/types': 3.696.0
+ '@smithy/credential-provider-imds': 3.2.7
+ '@smithy/property-provider': 3.1.10
+ '@smithy/shared-ini-file-loader': 3.1.11
+ '@smithy/types': 3.7.1
+ tslib: 2.8.1
+ transitivePeerDependencies:
+ - '@aws-sdk/client-sso-oidc'
+ - aws-crt
+
+ '@aws-sdk/credential-provider-node@3.696.0(@aws-sdk/client-sso-oidc@3.696.0(@aws-sdk/client-sts@3.696.0))(@aws-sdk/client-sts@3.696.0)':
+ dependencies:
+ '@aws-sdk/credential-provider-env': 3.696.0
+ '@aws-sdk/credential-provider-http': 3.696.0
+ '@aws-sdk/credential-provider-ini': 3.696.0(@aws-sdk/client-sso-oidc@3.696.0(@aws-sdk/client-sts@3.696.0))(@aws-sdk/client-sts@3.696.0)
+ '@aws-sdk/credential-provider-process': 3.696.0
+ '@aws-sdk/credential-provider-sso': 3.696.0(@aws-sdk/client-sso-oidc@3.696.0(@aws-sdk/client-sts@3.696.0))
+ '@aws-sdk/credential-provider-web-identity': 3.696.0(@aws-sdk/client-sts@3.696.0)
+ '@aws-sdk/types': 3.696.0
+ '@smithy/credential-provider-imds': 3.2.7
+ '@smithy/property-provider': 3.1.10
+ '@smithy/shared-ini-file-loader': 3.1.11
+ '@smithy/types': 3.7.1
+ tslib: 2.8.1
+ transitivePeerDependencies:
+ - '@aws-sdk/client-sso-oidc'
+ - '@aws-sdk/client-sts'
+ - aws-crt
+
+ '@aws-sdk/credential-provider-process@3.696.0':
+ dependencies:
+ '@aws-sdk/core': 3.696.0
+ '@aws-sdk/types': 3.696.0
+ '@smithy/property-provider': 3.1.10
+ '@smithy/shared-ini-file-loader': 3.1.11
+ '@smithy/types': 3.7.1
+ tslib: 2.8.1
+
+ '@aws-sdk/credential-provider-sso@3.696.0(@aws-sdk/client-sso-oidc@3.696.0(@aws-sdk/client-sts@3.696.0))':
+ dependencies:
+ '@aws-sdk/client-sso': 3.696.0
+ '@aws-sdk/core': 3.696.0
+ '@aws-sdk/token-providers': 3.696.0(@aws-sdk/client-sso-oidc@3.696.0(@aws-sdk/client-sts@3.696.0))
+ '@aws-sdk/types': 3.696.0
+ '@smithy/property-provider': 3.1.10
+ '@smithy/shared-ini-file-loader': 3.1.11
+ '@smithy/types': 3.7.1
+ tslib: 2.8.1
+ transitivePeerDependencies:
+ - '@aws-sdk/client-sso-oidc'
+ - aws-crt
+
+ '@aws-sdk/credential-provider-web-identity@3.696.0(@aws-sdk/client-sts@3.696.0)':
+ dependencies:
+ '@aws-sdk/client-sts': 3.696.0
+ '@aws-sdk/core': 3.696.0
+ '@aws-sdk/types': 3.696.0
+ '@smithy/property-provider': 3.1.10
+ '@smithy/types': 3.7.1
+ tslib: 2.8.1
+
+ '@aws-sdk/credential-providers@3.696.0(@aws-sdk/client-sso-oidc@3.696.0(@aws-sdk/client-sts@3.696.0))':
+ dependencies:
+ '@aws-sdk/client-cognito-identity': 3.696.0
+ '@aws-sdk/client-sso': 3.696.0
+ '@aws-sdk/client-sts': 3.696.0
+ '@aws-sdk/core': 3.696.0
+ '@aws-sdk/credential-provider-cognito-identity': 3.696.0
+ '@aws-sdk/credential-provider-env': 3.696.0
+ '@aws-sdk/credential-provider-http': 3.696.0
+ '@aws-sdk/credential-provider-ini': 3.696.0(@aws-sdk/client-sso-oidc@3.696.0(@aws-sdk/client-sts@3.696.0))(@aws-sdk/client-sts@3.696.0)
+ '@aws-sdk/credential-provider-node': 3.696.0(@aws-sdk/client-sso-oidc@3.696.0(@aws-sdk/client-sts@3.696.0))(@aws-sdk/client-sts@3.696.0)
+ '@aws-sdk/credential-provider-process': 3.696.0
+ '@aws-sdk/credential-provider-sso': 3.696.0(@aws-sdk/client-sso-oidc@3.696.0(@aws-sdk/client-sts@3.696.0))
+ '@aws-sdk/credential-provider-web-identity': 3.696.0(@aws-sdk/client-sts@3.696.0)
+ '@aws-sdk/types': 3.696.0
+ '@smithy/credential-provider-imds': 3.2.7
+ '@smithy/property-provider': 3.1.10
+ '@smithy/types': 3.7.1
+ tslib: 2.8.1
+ transitivePeerDependencies:
+ - '@aws-sdk/client-sso-oidc'
+ - aws-crt
+
+ '@aws-sdk/endpoint-cache@3.693.0':
+ dependencies:
+ mnemonist: 0.38.3
+ tslib: 2.8.1
+
+ '@aws-sdk/middleware-bucket-endpoint@3.696.0':
+ dependencies:
+ '@aws-sdk/types': 3.696.0
+ '@aws-sdk/util-arn-parser': 3.693.0
+ '@smithy/node-config-provider': 3.1.11
+ '@smithy/protocol-http': 4.1.7
+ '@smithy/types': 3.7.1
+ '@smithy/util-config-provider': 3.0.0
+ tslib: 2.8.1
+
+ '@aws-sdk/middleware-endpoint-discovery@3.696.0':
+ dependencies:
+ '@aws-sdk/endpoint-cache': 3.693.0
+ '@aws-sdk/types': 3.696.0
+ '@smithy/node-config-provider': 3.1.11
+ '@smithy/protocol-http': 4.1.7
+ '@smithy/types': 3.7.1
+ tslib: 2.8.1
+
+ '@aws-sdk/middleware-expect-continue@3.696.0':
+ dependencies:
+ '@aws-sdk/types': 3.696.0
+ '@smithy/protocol-http': 4.1.7
+ '@smithy/types': 3.7.1
+ tslib: 2.8.1
+
+ '@aws-sdk/middleware-flexible-checksums@3.697.0':
+ dependencies:
+ '@aws-crypto/crc32': 5.2.0
+ '@aws-crypto/crc32c': 5.2.0
+ '@aws-crypto/util': 5.2.0
+ '@aws-sdk/core': 3.696.0
+ '@aws-sdk/types': 3.696.0
+ '@smithy/is-array-buffer': 3.0.0
+ '@smithy/node-config-provider': 3.1.11
+ '@smithy/protocol-http': 4.1.7
+ '@smithy/types': 3.7.1
+ '@smithy/util-middleware': 3.0.10
+ '@smithy/util-stream': 3.3.1
+ '@smithy/util-utf8': 3.0.0
+ tslib: 2.8.1
+
+ '@aws-sdk/middleware-host-header@3.696.0':
+ dependencies:
+ '@aws-sdk/types': 3.696.0
+ '@smithy/protocol-http': 4.1.7
+ '@smithy/types': 3.7.1
+ tslib: 2.8.1
+
+ '@aws-sdk/middleware-location-constraint@3.696.0':
+ dependencies:
+ '@aws-sdk/types': 3.696.0
+ '@smithy/types': 3.7.1
+ tslib: 2.8.1
+
+ '@aws-sdk/middleware-logger@3.696.0':
+ dependencies:
+ '@aws-sdk/types': 3.696.0
+ '@smithy/types': 3.7.1
+ tslib: 2.8.1
+
+ '@aws-sdk/middleware-recursion-detection@3.696.0':
+ dependencies:
+ '@aws-sdk/types': 3.696.0
+ '@smithy/protocol-http': 4.1.7
+ '@smithy/types': 3.7.1
+ tslib: 2.8.1
+
+ '@aws-sdk/middleware-sdk-ec2@3.696.0':
+ dependencies:
+ '@aws-sdk/types': 3.696.0
+ '@aws-sdk/util-format-url': 3.696.0
+ '@smithy/middleware-endpoint': 3.2.4
+ '@smithy/protocol-http': 4.1.7
+ '@smithy/signature-v4': 4.2.3
+ '@smithy/smithy-client': 3.4.5
+ '@smithy/types': 3.7.1
+ tslib: 2.8.1
+
+ '@aws-sdk/middleware-sdk-rds@3.696.0':
+ dependencies:
+ '@aws-sdk/types': 3.696.0
+ '@aws-sdk/util-format-url': 3.696.0
+ '@smithy/middleware-endpoint': 3.2.4
+ '@smithy/protocol-http': 4.1.7
+ '@smithy/signature-v4': 4.2.3
+ '@smithy/types': 3.7.1
+ tslib: 2.8.1
+
+ '@aws-sdk/middleware-sdk-s3@3.696.0':
+ dependencies:
+ '@aws-sdk/core': 3.696.0
+ '@aws-sdk/types': 3.696.0
+ '@aws-sdk/util-arn-parser': 3.693.0
+ '@smithy/core': 2.5.4
+ '@smithy/node-config-provider': 3.1.11
+ '@smithy/protocol-http': 4.1.7
+ '@smithy/signature-v4': 4.2.3
+ '@smithy/smithy-client': 3.4.5
+ '@smithy/types': 3.7.1
+ '@smithy/util-config-provider': 3.0.0
+ '@smithy/util-middleware': 3.0.10
+ '@smithy/util-stream': 3.3.1
+ '@smithy/util-utf8': 3.0.0
+ tslib: 2.8.1
+
+ '@aws-sdk/middleware-sdk-sqs@3.696.0':
+ dependencies:
+ '@aws-sdk/types': 3.696.0
+ '@smithy/smithy-client': 3.4.5
+ '@smithy/types': 3.7.1
+ '@smithy/util-hex-encoding': 3.0.0
+ '@smithy/util-utf8': 3.0.0
+ tslib: 2.8.1
+
+ '@aws-sdk/middleware-ssec@3.696.0':
+ dependencies:
+ '@aws-sdk/types': 3.696.0
+ '@smithy/types': 3.7.1
+ tslib: 2.8.1
+
+ '@aws-sdk/middleware-user-agent@3.696.0':
+ dependencies:
+ '@aws-sdk/core': 3.696.0
+ '@aws-sdk/types': 3.696.0
+ '@aws-sdk/util-endpoints': 3.696.0
+ '@smithy/core': 2.5.4
+ '@smithy/protocol-http': 4.1.7
+ '@smithy/types': 3.7.1
+ tslib: 2.8.1
+
+ '@aws-sdk/protocol-http@3.374.0':
+ dependencies:
+ '@smithy/protocol-http': 1.2.0
+ tslib: 2.8.1
+
+ '@aws-sdk/region-config-resolver@3.696.0':
+ dependencies:
+ '@aws-sdk/types': 3.696.0
+ '@smithy/node-config-provider': 3.1.11
+ '@smithy/types': 3.7.1
+ '@smithy/util-config-provider': 3.0.0
+ '@smithy/util-middleware': 3.0.10
+ tslib: 2.8.1
+
+ '@aws-sdk/s3-request-presigner@3.698.0':
+ dependencies:
+ '@aws-sdk/signature-v4-multi-region': 3.696.0
+ '@aws-sdk/types': 3.696.0
+ '@aws-sdk/util-format-url': 3.696.0
+ '@smithy/middleware-endpoint': 3.2.4
+ '@smithy/protocol-http': 4.1.7
+ '@smithy/smithy-client': 3.4.5
+ '@smithy/types': 3.7.1
+ tslib: 2.8.1
+
+ '@aws-sdk/signature-v4-multi-region@3.696.0':
+ dependencies:
+ '@aws-sdk/middleware-sdk-s3': 3.696.0
+ '@aws-sdk/types': 3.696.0
+ '@smithy/protocol-http': 4.1.7
+ '@smithy/signature-v4': 4.2.3
+ '@smithy/types': 3.7.1
+ tslib: 2.8.1
+
+ '@aws-sdk/signature-v4@3.374.0':
+ dependencies:
+ '@smithy/signature-v4': 1.1.0
+ tslib: 2.8.1
+
+ '@aws-sdk/token-providers@3.696.0(@aws-sdk/client-sso-oidc@3.696.0(@aws-sdk/client-sts@3.696.0))':
+ dependencies:
+ '@aws-sdk/client-sso-oidc': 3.696.0(@aws-sdk/client-sts@3.696.0)
+ '@aws-sdk/types': 3.696.0
+ '@smithy/property-provider': 3.1.10
+ '@smithy/shared-ini-file-loader': 3.1.11
+ '@smithy/types': 3.7.1
+ tslib: 2.8.1
+
+ '@aws-sdk/types@3.696.0':
+ dependencies:
+ '@smithy/types': 3.7.1
+ tslib: 2.8.1
+
+ '@aws-sdk/util-arn-parser@3.693.0':
+ dependencies:
+ tslib: 2.8.1
+
+ '@aws-sdk/util-endpoints@3.696.0':
+ dependencies:
+ '@aws-sdk/types': 3.696.0
+ '@smithy/types': 3.7.1
+ '@smithy/util-endpoints': 2.1.6
+ tslib: 2.8.1
+
+ '@aws-sdk/util-format-url@3.696.0':
+ dependencies:
+ '@aws-sdk/types': 3.696.0
+ '@smithy/querystring-builder': 3.0.10
+ '@smithy/types': 3.7.1
+ tslib: 2.8.1
+
+ '@aws-sdk/util-locate-window@3.693.0':
+ dependencies:
+ tslib: 2.8.1
+
+ '@aws-sdk/util-user-agent-browser@3.696.0':
+ dependencies:
+ '@aws-sdk/types': 3.696.0
+ '@smithy/types': 3.7.1
+ bowser: 2.11.0
+ tslib: 2.8.1
+
+ '@aws-sdk/util-user-agent-node@3.696.0':
+ dependencies:
+ '@aws-sdk/middleware-user-agent': 3.696.0
+ '@aws-sdk/types': 3.696.0
+ '@smithy/node-config-provider': 3.1.11
+ '@smithy/types': 3.7.1
+ tslib: 2.8.1
+
+ '@aws-sdk/util-utf8-browser@3.259.0':
+ dependencies:
+ tslib: 2.8.1
+
+ '@aws-sdk/xml-builder@3.696.0':
+ dependencies:
+ '@smithy/types': 3.7.1
+ tslib: 2.8.1
+
+ '@azure/abort-controller@1.1.0':
+ dependencies:
+ tslib: 2.8.1
+
+ '@azure/abort-controller@2.1.2':
+ dependencies:
+ tslib: 2.8.1
+
+ '@azure/core-auth@1.9.0':
+ dependencies:
+ '@azure/abort-controller': 2.1.2
+ '@azure/core-util': 1.11.0
+ tslib: 2.8.1
+
+ '@azure/core-client@1.9.2':
+ dependencies:
+ '@azure/abort-controller': 2.1.2
+ '@azure/core-auth': 1.9.0
+ '@azure/core-rest-pipeline': 1.18.0
+ '@azure/core-tracing': 1.2.0
+ '@azure/core-util': 1.11.0
+ '@azure/logger': 1.1.4
+ tslib: 2.8.1
+ transitivePeerDependencies:
+ - supports-color
+
+ '@azure/core-http-compat@2.1.2':
+ dependencies:
+ '@azure/abort-controller': 2.1.2
+ '@azure/core-client': 1.9.2
+ '@azure/core-rest-pipeline': 1.18.0
+ transitivePeerDependencies:
+ - supports-color
+
+ '@azure/core-lro@2.7.2':
+ dependencies:
+ '@azure/abort-controller': 2.1.2
+ '@azure/core-util': 1.11.0
+ '@azure/logger': 1.1.4
+ tslib: 2.8.1
+
+ '@azure/core-paging@1.6.2':
+ dependencies:
+ tslib: 2.8.1
+
+ '@azure/core-rest-pipeline@1.18.0':
+ dependencies:
+ '@azure/abort-controller': 2.1.2
+ '@azure/core-auth': 1.9.0
+ '@azure/core-tracing': 1.2.0
+ '@azure/core-util': 1.11.0
+ '@azure/logger': 1.1.4
+ http-proxy-agent: 7.0.2
+ https-proxy-agent: 7.0.5
+ tslib: 2.8.1
+ transitivePeerDependencies:
+ - supports-color
+
+ '@azure/core-tracing@1.2.0':
+ dependencies:
+ tslib: 2.8.1
+
+ '@azure/core-util@1.11.0':
+ dependencies:
+ '@azure/abort-controller': 2.1.2
+ tslib: 2.8.1
+
+ '@azure/core-xml@1.4.4':
+ dependencies:
+ fast-xml-parser: 4.5.0
+ tslib: 2.8.1
+
+ '@azure/identity@3.4.2':
+ dependencies:
+ '@azure/abort-controller': 1.1.0
+ '@azure/core-auth': 1.9.0
+ '@azure/core-client': 1.9.2
+ '@azure/core-rest-pipeline': 1.18.0
+ '@azure/core-tracing': 1.2.0
+ '@azure/core-util': 1.11.0
+ '@azure/logger': 1.1.4
+ '@azure/msal-browser': 3.27.0
+ '@azure/msal-node': 2.16.2
+ events: 3.3.0
+ jws: 4.0.0
+ open: 8.4.2
+ stoppable: 1.1.0
+ tslib: 2.8.1
+ transitivePeerDependencies:
+ - supports-color
+
+ '@azure/keyvault-common@2.0.0':
+ dependencies:
+ '@azure/abort-controller': 2.1.2
+ '@azure/core-auth': 1.9.0
+ '@azure/core-client': 1.9.2
+ '@azure/core-rest-pipeline': 1.18.0
+ '@azure/core-tracing': 1.2.0
+ '@azure/core-util': 1.11.0
+ '@azure/logger': 1.1.4
+ tslib: 2.8.1
+ transitivePeerDependencies:
+ - supports-color
+
+ '@azure/keyvault-keys@4.9.0':
+ dependencies:
+ '@azure/abort-controller': 2.1.2
+ '@azure/core-auth': 1.9.0
+ '@azure/core-client': 1.9.2
+ '@azure/core-http-compat': 2.1.2
+ '@azure/core-lro': 2.7.2
+ '@azure/core-paging': 1.6.2
+ '@azure/core-rest-pipeline': 1.18.0
+ '@azure/core-tracing': 1.2.0
+ '@azure/core-util': 1.11.0
+ '@azure/keyvault-common': 2.0.0
+ '@azure/logger': 1.1.4
+ tslib: 2.8.1
+ transitivePeerDependencies:
+ - supports-color
+
+ '@azure/logger@1.1.4':
+ dependencies:
+ tslib: 2.8.1
+
+ '@azure/msal-browser@3.27.0':
+ dependencies:
+ '@azure/msal-common': 14.16.0
+
+ '@azure/msal-common@14.16.0': {}
+
+ '@azure/msal-node@2.16.2':
+ dependencies:
+ '@azure/msal-common': 14.16.0
+ jsonwebtoken: 9.0.2
+ uuid: 8.3.2
+
+ '@azure/storage-blob@12.26.0':
+ dependencies:
+ '@azure/abort-controller': 2.1.2
+ '@azure/core-auth': 1.9.0
+ '@azure/core-client': 1.9.2
+ '@azure/core-http-compat': 2.1.2
+ '@azure/core-lro': 2.7.2
+ '@azure/core-paging': 1.6.2
+ '@azure/core-rest-pipeline': 1.18.0
+ '@azure/core-tracing': 1.2.0
+ '@azure/core-util': 1.11.0
+ '@azure/core-xml': 1.4.4
+ '@azure/logger': 1.1.4
+ events: 3.3.0
+ tslib: 2.8.1
+ transitivePeerDependencies:
+ - supports-color
+
+ '@babel/cli@7.25.9(@babel/core@7.26.0)':
+ dependencies:
+ '@babel/core': 7.26.0
+ '@jridgewell/trace-mapping': 0.3.25
+ commander: 6.2.1
+ convert-source-map: 2.0.0
+ fs-readdir-recursive: 1.1.0
+ glob: 7.2.3
+ make-dir: 2.1.0
+ slash: 2.0.0
+ optionalDependencies:
+ '@nicolo-ribaudo/chokidar-2': 2.1.8-no-fsevents.3
+ chokidar: 3.6.0
+
+ '@babel/code-frame@7.26.2':
+ dependencies:
+ '@babel/helper-validator-identifier': 7.25.9
+ js-tokens: 4.0.0
+ picocolors: 1.1.1
+
+ '@babel/code-frame@8.0.0-alpha.13':
+ dependencies:
+ '@babel/helper-validator-identifier': 8.0.0-alpha.13
+ js-tokens: 8.0.3
+ picocolors: 1.1.1
+
+ '@babel/compat-data@7.26.2': {}
+
+ '@babel/compat-data@8.0.0-alpha.13': {}
+
+ '@babel/core@7.26.0':
+ dependencies:
+ '@ampproject/remapping': 2.3.0
+ '@babel/code-frame': 7.26.2
+ '@babel/generator': 7.26.2
+ '@babel/helper-compilation-targets': 7.25.9
+ '@babel/helper-module-transforms': 7.26.0(@babel/core@7.26.0)
+ '@babel/helpers': 7.26.0
+ '@babel/parser': 7.26.2
+ '@babel/template': 7.25.9
+ '@babel/traverse': 7.25.9
+ '@babel/types': 7.26.0
+ convert-source-map: 2.0.0
+ debug: 4.3.7(supports-color@9.4.0)
+ gensync: 1.0.0-beta.2
+ json5: 2.2.3
+ semver: 6.3.1
+ transitivePeerDependencies:
+ - supports-color
+
+ '@babel/core@8.0.0-alpha.13':
+ dependencies:
+ '@ampproject/remapping': 2.3.0
+ '@babel/code-frame': 8.0.0-alpha.13
+ '@babel/generator': 8.0.0-alpha.13
+ '@babel/helper-compilation-targets': 8.0.0-alpha.13
+ '@babel/helpers': 8.0.0-alpha.13
+ '@babel/parser': 8.0.0-alpha.13
+ '@babel/template': 8.0.0-alpha.13
+ '@babel/traverse': 8.0.0-alpha.13
+ '@babel/types': 8.0.0-alpha.13
+ convert-source-map: 2.0.0
+ debug: 4.3.7(supports-color@9.4.0)
+ gensync: 1.0.0-beta.2
+ json5: 2.2.3
+ semver: 7.6.3
+ transitivePeerDependencies:
+ - supports-color
+
+ '@babel/eslint-parser@8.0.0-alpha.13(@babel/core@8.0.0-alpha.13)(eslint@8.57.1)':
+ dependencies:
+ '@babel/core': 8.0.0-alpha.13
+ eslint: 8.57.1
+ eslint-scope: 7.2.2
+ eslint-visitor-keys: 3.4.3
+ semver: 7.6.3
+
+ '@babel/generator@7.26.2':
+ dependencies:
+ '@babel/parser': 7.26.2
+ '@babel/types': 7.26.0
+ '@jridgewell/gen-mapping': 0.3.5
+ '@jridgewell/trace-mapping': 0.3.25
+ jsesc: 3.0.2
+
+ '@babel/generator@8.0.0-alpha.13':
+ dependencies:
+ '@babel/parser': 8.0.0-alpha.13
+ '@babel/types': 8.0.0-alpha.13
+ '@jridgewell/gen-mapping': 0.3.5
+ '@jridgewell/trace-mapping': 0.3.25
+ jsesc: 3.0.2
+
+ '@babel/helper-annotate-as-pure@7.25.9':
+ dependencies:
+ '@babel/types': 7.26.0
+
+ '@babel/helper-builder-binary-assignment-operator-visitor@7.25.9':
+ dependencies:
+ '@babel/traverse': 7.25.9
+ '@babel/types': 7.26.0
+ transitivePeerDependencies:
+ - supports-color
+
+ '@babel/helper-compilation-targets@7.25.9':
+ dependencies:
+ '@babel/compat-data': 7.26.2
+ '@babel/helper-validator-option': 7.25.9
+ browserslist: 4.24.2
+ lru-cache: 5.1.1
+ semver: 6.3.1
+
+ '@babel/helper-compilation-targets@8.0.0-alpha.13':
+ dependencies:
+ '@babel/compat-data': 8.0.0-alpha.13
+ '@babel/helper-validator-option': 8.0.0-alpha.13
+ browserslist: 4.24.2
+ lru-cache: 7.18.3
+ semver: 7.6.3
+
+ '@babel/helper-create-class-features-plugin@7.25.9(@babel/core@7.26.0)':
+ dependencies:
+ '@babel/core': 7.26.0
+ '@babel/helper-annotate-as-pure': 7.25.9
+ '@babel/helper-member-expression-to-functions': 7.25.9
+ '@babel/helper-optimise-call-expression': 7.25.9
+ '@babel/helper-replace-supers': 7.25.9(@babel/core@7.26.0)
+ '@babel/helper-skip-transparent-expression-wrappers': 7.25.9
+ '@babel/traverse': 7.25.9
+ semver: 6.3.1
+ transitivePeerDependencies:
+ - supports-color
+
+ '@babel/helper-create-regexp-features-plugin@7.25.9(@babel/core@7.26.0)':
+ dependencies:
+ '@babel/core': 7.26.0
+ '@babel/helper-annotate-as-pure': 7.25.9
+ regexpu-core: 6.2.0
+ semver: 6.3.1
+
+ '@babel/helper-define-polyfill-provider@0.6.3(@babel/core@7.26.0)':
+ dependencies:
+ '@babel/core': 7.26.0
+ '@babel/helper-compilation-targets': 7.25.9
+ '@babel/helper-plugin-utils': 7.25.9
+ debug: 4.3.7(supports-color@9.4.0)
+ lodash.debounce: 4.0.8
+ resolve: 1.22.8
+ transitivePeerDependencies:
+ - supports-color
+
+ '@babel/helper-member-expression-to-functions@7.25.9':
+ dependencies:
+ '@babel/traverse': 7.25.9
+ '@babel/types': 7.26.0
+ transitivePeerDependencies:
+ - supports-color
+
+ '@babel/helper-module-imports@7.25.9':
+ dependencies:
+ '@babel/traverse': 7.25.9
+ '@babel/types': 7.26.0
+ transitivePeerDependencies:
+ - supports-color
+
+ '@babel/helper-module-transforms@7.26.0(@babel/core@7.26.0)':
+ dependencies:
+ '@babel/core': 7.26.0
+ '@babel/helper-module-imports': 7.25.9
+ '@babel/helper-validator-identifier': 7.25.9
+ '@babel/traverse': 7.25.9
+ transitivePeerDependencies:
+ - supports-color
+
+ '@babel/helper-optimise-call-expression@7.25.9':
+ dependencies:
+ '@babel/types': 7.26.0
+
+ '@babel/helper-plugin-utils@7.25.9': {}
+
+ '@babel/helper-remap-async-to-generator@7.25.9(@babel/core@7.26.0)':
+ dependencies:
+ '@babel/core': 7.26.0
+ '@babel/helper-annotate-as-pure': 7.25.9
+ '@babel/helper-wrap-function': 7.25.9
+ '@babel/traverse': 7.25.9
+ transitivePeerDependencies:
+ - supports-color
+
+ '@babel/helper-replace-supers@7.25.9(@babel/core@7.26.0)':
+ dependencies:
+ '@babel/core': 7.26.0
+ '@babel/helper-member-expression-to-functions': 7.25.9
+ '@babel/helper-optimise-call-expression': 7.25.9
+ '@babel/traverse': 7.25.9
+ transitivePeerDependencies:
+ - supports-color
+
+ '@babel/helper-simple-access@7.25.9':
+ dependencies:
+ '@babel/traverse': 7.25.9
+ '@babel/types': 7.26.0
+ transitivePeerDependencies:
+ - supports-color
+
+ '@babel/helper-skip-transparent-expression-wrappers@7.25.9':
+ dependencies:
+ '@babel/traverse': 7.25.9
+ '@babel/types': 7.26.0
+ transitivePeerDependencies:
+ - supports-color
+
+ '@babel/helper-string-parser@7.25.9': {}
+
+ '@babel/helper-string-parser@8.0.0-alpha.13': {}
+
+ '@babel/helper-validator-identifier@7.25.9': {}
+
+ '@babel/helper-validator-identifier@8.0.0-alpha.13': {}
+
+ '@babel/helper-validator-option@7.25.9': {}
+
+ '@babel/helper-validator-option@8.0.0-alpha.13': {}
+
+ '@babel/helper-wrap-function@7.25.9':
+ dependencies:
+ '@babel/template': 7.25.9
+ '@babel/traverse': 7.25.9
+ '@babel/types': 7.26.0
+ transitivePeerDependencies:
+ - supports-color
+
+ '@babel/helpers@7.26.0':
+ dependencies:
+ '@babel/template': 7.25.9
+ '@babel/types': 7.26.0
+
+ '@babel/helpers@8.0.0-alpha.13':
+ dependencies:
+ '@babel/template': 8.0.0-alpha.13
+ '@babel/types': 8.0.0-alpha.13
+
+ '@babel/parser@7.26.2':
+ dependencies:
+ '@babel/types': 7.26.0
+
+ '@babel/parser@8.0.0-alpha.13':
+ dependencies:
+ '@babel/types': 8.0.0-alpha.13
+
+ '@babel/plugin-bugfix-firefox-class-in-computed-class-key@7.25.9(@babel/core@7.26.0)':
+ dependencies:
+ '@babel/core': 7.26.0
+ '@babel/helper-plugin-utils': 7.25.9
+ '@babel/traverse': 7.25.9
+ transitivePeerDependencies:
+ - supports-color
+
+ '@babel/plugin-bugfix-safari-class-field-initializer-scope@7.25.9(@babel/core@7.26.0)':
+ dependencies:
+ '@babel/core': 7.26.0
+ '@babel/helper-plugin-utils': 7.25.9
+
+ '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@7.25.9(@babel/core@7.26.0)':
+ dependencies:
+ '@babel/core': 7.26.0
+ '@babel/helper-plugin-utils': 7.25.9
+
+ '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@7.25.9(@babel/core@7.26.0)':
+ dependencies:
+ '@babel/core': 7.26.0
+ '@babel/helper-plugin-utils': 7.25.9
+ '@babel/helper-skip-transparent-expression-wrappers': 7.25.9
+ '@babel/plugin-transform-optional-chaining': 7.25.9(@babel/core@7.26.0)
+ transitivePeerDependencies:
+ - supports-color
+
+ '@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly@7.25.9(@babel/core@7.26.0)':
+ dependencies:
+ '@babel/core': 7.26.0
+ '@babel/helper-plugin-utils': 7.25.9
+ '@babel/traverse': 7.25.9
+ transitivePeerDependencies:
+ - supports-color
+
+ '@babel/plugin-proposal-private-property-in-object@7.21.0-placeholder-for-preset-env.2(@babel/core@7.26.0)':
+ dependencies:
+ '@babel/core': 7.26.0
+
+ '@babel/plugin-syntax-async-generators@7.8.4(@babel/core@7.26.0)':
+ dependencies:
+ '@babel/core': 7.26.0
+ '@babel/helper-plugin-utils': 7.25.9
+
+ '@babel/plugin-syntax-async-generators@7.8.4(@babel/core@8.0.0-alpha.13)':
+ dependencies:
+ '@babel/core': 8.0.0-alpha.13
+ '@babel/helper-plugin-utils': 7.25.9
+ optional: true
+
+ '@babel/plugin-syntax-bigint@7.8.3(@babel/core@7.26.0)':
+ dependencies:
+ '@babel/core': 7.26.0
+ '@babel/helper-plugin-utils': 7.25.9
+
+ '@babel/plugin-syntax-bigint@7.8.3(@babel/core@8.0.0-alpha.13)':
+ dependencies:
+ '@babel/core': 8.0.0-alpha.13
+ '@babel/helper-plugin-utils': 7.25.9
+ optional: true
+
+ '@babel/plugin-syntax-class-properties@7.12.13(@babel/core@7.26.0)':
+ dependencies:
+ '@babel/core': 7.26.0
+ '@babel/helper-plugin-utils': 7.25.9
+
+ '@babel/plugin-syntax-class-properties@7.12.13(@babel/core@8.0.0-alpha.13)':
+ dependencies:
+ '@babel/core': 8.0.0-alpha.13
+ '@babel/helper-plugin-utils': 7.25.9
+ optional: true
+
+ '@babel/plugin-syntax-class-static-block@7.14.5(@babel/core@7.26.0)':
+ dependencies:
+ '@babel/core': 7.26.0
+ '@babel/helper-plugin-utils': 7.25.9
+
+ '@babel/plugin-syntax-class-static-block@7.14.5(@babel/core@8.0.0-alpha.13)':
+ dependencies:
+ '@babel/core': 8.0.0-alpha.13
+ '@babel/helper-plugin-utils': 7.25.9
+ optional: true
+
+ '@babel/plugin-syntax-import-assertions@7.26.0(@babel/core@7.26.0)':
+ dependencies:
+ '@babel/core': 7.26.0
+ '@babel/helper-plugin-utils': 7.25.9
+
+ '@babel/plugin-syntax-import-attributes@7.26.0(@babel/core@7.26.0)':
+ dependencies:
+ '@babel/core': 7.26.0
+ '@babel/helper-plugin-utils': 7.25.9
+
+ '@babel/plugin-syntax-import-attributes@7.26.0(@babel/core@8.0.0-alpha.13)':
+ dependencies:
+ '@babel/core': 8.0.0-alpha.13
+ '@babel/helper-plugin-utils': 7.25.9
+ optional: true
+
+ '@babel/plugin-syntax-import-meta@7.10.4(@babel/core@7.26.0)':
+ dependencies:
+ '@babel/core': 7.26.0
+ '@babel/helper-plugin-utils': 7.25.9
+
+ '@babel/plugin-syntax-import-meta@7.10.4(@babel/core@8.0.0-alpha.13)':
+ dependencies:
+ '@babel/core': 8.0.0-alpha.13
+ '@babel/helper-plugin-utils': 7.25.9
+ optional: true
+
+ '@babel/plugin-syntax-json-strings@7.8.3(@babel/core@7.26.0)':
+ dependencies:
+ '@babel/core': 7.26.0
+ '@babel/helper-plugin-utils': 7.25.9
+
+ '@babel/plugin-syntax-json-strings@7.8.3(@babel/core@8.0.0-alpha.13)':
+ dependencies:
+ '@babel/core': 8.0.0-alpha.13
+ '@babel/helper-plugin-utils': 7.25.9
+ optional: true
+
+ '@babel/plugin-syntax-jsx@7.25.9(@babel/core@7.26.0)':
+ dependencies:
+ '@babel/core': 7.26.0
+ '@babel/helper-plugin-utils': 7.25.9
+
+ '@babel/plugin-syntax-logical-assignment-operators@7.10.4(@babel/core@7.26.0)':
+ dependencies:
+ '@babel/core': 7.26.0
+ '@babel/helper-plugin-utils': 7.25.9
+
+ '@babel/plugin-syntax-logical-assignment-operators@7.10.4(@babel/core@8.0.0-alpha.13)':
+ dependencies:
+ '@babel/core': 8.0.0-alpha.13
+ '@babel/helper-plugin-utils': 7.25.9
+ optional: true
+
+ '@babel/plugin-syntax-nullish-coalescing-operator@7.8.3(@babel/core@7.26.0)':
+ dependencies:
+ '@babel/core': 7.26.0
+ '@babel/helper-plugin-utils': 7.25.9
+
+ '@babel/plugin-syntax-nullish-coalescing-operator@7.8.3(@babel/core@8.0.0-alpha.13)':
+ dependencies:
+ '@babel/core': 8.0.0-alpha.13
+ '@babel/helper-plugin-utils': 7.25.9
+ optional: true
+
+ '@babel/plugin-syntax-numeric-separator@7.10.4(@babel/core@7.26.0)':
+ dependencies:
+ '@babel/core': 7.26.0
+ '@babel/helper-plugin-utils': 7.25.9
+
+ '@babel/plugin-syntax-numeric-separator@7.10.4(@babel/core@8.0.0-alpha.13)':
+ dependencies:
+ '@babel/core': 8.0.0-alpha.13
+ '@babel/helper-plugin-utils': 7.25.9
+ optional: true
+
+ '@babel/plugin-syntax-object-rest-spread@7.8.3(@babel/core@7.26.0)':
+ dependencies:
+ '@babel/core': 7.26.0
+ '@babel/helper-plugin-utils': 7.25.9
+
+ '@babel/plugin-syntax-object-rest-spread@7.8.3(@babel/core@8.0.0-alpha.13)':
+ dependencies:
+ '@babel/core': 8.0.0-alpha.13
+ '@babel/helper-plugin-utils': 7.25.9
+ optional: true
+
+ '@babel/plugin-syntax-optional-catch-binding@7.8.3(@babel/core@7.26.0)':
+ dependencies:
+ '@babel/core': 7.26.0
+ '@babel/helper-plugin-utils': 7.25.9
+
+ '@babel/plugin-syntax-optional-catch-binding@7.8.3(@babel/core@8.0.0-alpha.13)':
+ dependencies:
+ '@babel/core': 8.0.0-alpha.13
+ '@babel/helper-plugin-utils': 7.25.9
+ optional: true
+
+ '@babel/plugin-syntax-optional-chaining@7.8.3(@babel/core@7.26.0)':
+ dependencies:
+ '@babel/core': 7.26.0
+ '@babel/helper-plugin-utils': 7.25.9
+
+ '@babel/plugin-syntax-optional-chaining@7.8.3(@babel/core@8.0.0-alpha.13)':
+ dependencies:
+ '@babel/core': 8.0.0-alpha.13
+ '@babel/helper-plugin-utils': 7.25.9
+ optional: true
+
+ '@babel/plugin-syntax-private-property-in-object@7.14.5(@babel/core@7.26.0)':
+ dependencies:
+ '@babel/core': 7.26.0
+ '@babel/helper-plugin-utils': 7.25.9
+
+ '@babel/plugin-syntax-private-property-in-object@7.14.5(@babel/core@8.0.0-alpha.13)':
+ dependencies:
+ '@babel/core': 8.0.0-alpha.13
+ '@babel/helper-plugin-utils': 7.25.9
+ optional: true
+
+ '@babel/plugin-syntax-top-level-await@7.14.5(@babel/core@7.26.0)':
+ dependencies:
+ '@babel/core': 7.26.0
+ '@babel/helper-plugin-utils': 7.25.9
+
+ '@babel/plugin-syntax-top-level-await@7.14.5(@babel/core@8.0.0-alpha.13)':
+ dependencies:
+ '@babel/core': 8.0.0-alpha.13
+ '@babel/helper-plugin-utils': 7.25.9
+ optional: true
+
+ '@babel/plugin-syntax-typescript@7.25.9(@babel/core@7.26.0)':
+ dependencies:
+ '@babel/core': 7.26.0
+ '@babel/helper-plugin-utils': 7.25.9
+
+ '@babel/plugin-syntax-unicode-sets-regex@7.18.6(@babel/core@7.26.0)':
+ dependencies:
+ '@babel/core': 7.26.0
+ '@babel/helper-create-regexp-features-plugin': 7.25.9(@babel/core@7.26.0)
+ '@babel/helper-plugin-utils': 7.25.9
+
+ '@babel/plugin-transform-arrow-functions@7.25.9(@babel/core@7.26.0)':
+ dependencies:
+ '@babel/core': 7.26.0
+ '@babel/helper-plugin-utils': 7.25.9
+
+ '@babel/plugin-transform-async-generator-functions@7.25.9(@babel/core@7.26.0)':
+ dependencies:
+ '@babel/core': 7.26.0
+ '@babel/helper-plugin-utils': 7.25.9
+ '@babel/helper-remap-async-to-generator': 7.25.9(@babel/core@7.26.0)
+ '@babel/traverse': 7.25.9
+ transitivePeerDependencies:
+ - supports-color
+
+ '@babel/plugin-transform-async-to-generator@7.25.9(@babel/core@7.26.0)':
+ dependencies:
+ '@babel/core': 7.26.0
+ '@babel/helper-module-imports': 7.25.9
+ '@babel/helper-plugin-utils': 7.25.9
+ '@babel/helper-remap-async-to-generator': 7.25.9(@babel/core@7.26.0)
+ transitivePeerDependencies:
+ - supports-color
+
+ '@babel/plugin-transform-block-scoped-functions@7.25.9(@babel/core@7.26.0)':
+ dependencies:
+ '@babel/core': 7.26.0
+ '@babel/helper-plugin-utils': 7.25.9
+
+ '@babel/plugin-transform-block-scoping@7.25.9(@babel/core@7.26.0)':
+ dependencies:
+ '@babel/core': 7.26.0
+ '@babel/helper-plugin-utils': 7.25.9
+
+ '@babel/plugin-transform-class-properties@7.25.9(@babel/core@7.26.0)':
+ dependencies:
+ '@babel/core': 7.26.0
+ '@babel/helper-create-class-features-plugin': 7.25.9(@babel/core@7.26.0)
+ '@babel/helper-plugin-utils': 7.25.9
+ transitivePeerDependencies:
+ - supports-color
+
+ '@babel/plugin-transform-class-static-block@7.26.0(@babel/core@7.26.0)':
+ dependencies:
+ '@babel/core': 7.26.0
+ '@babel/helper-create-class-features-plugin': 7.25.9(@babel/core@7.26.0)
+ '@babel/helper-plugin-utils': 7.25.9
+ transitivePeerDependencies:
+ - supports-color
+
+ '@babel/plugin-transform-classes@7.25.9(@babel/core@7.26.0)':
+ dependencies:
+ '@babel/core': 7.26.0
+ '@babel/helper-annotate-as-pure': 7.25.9
+ '@babel/helper-compilation-targets': 7.25.9
+ '@babel/helper-plugin-utils': 7.25.9
+ '@babel/helper-replace-supers': 7.25.9(@babel/core@7.26.0)
+ '@babel/traverse': 7.25.9
+ globals: 11.12.0
+ transitivePeerDependencies:
+ - supports-color
+
+ '@babel/plugin-transform-computed-properties@7.25.9(@babel/core@7.26.0)':
+ dependencies:
+ '@babel/core': 7.26.0
+ '@babel/helper-plugin-utils': 7.25.9
+ '@babel/template': 7.25.9
+
+ '@babel/plugin-transform-destructuring@7.25.9(@babel/core@7.26.0)':
+ dependencies:
+ '@babel/core': 7.26.0
+ '@babel/helper-plugin-utils': 7.25.9
+
+ '@babel/plugin-transform-dotall-regex@7.25.9(@babel/core@7.26.0)':
+ dependencies:
+ '@babel/core': 7.26.0
+ '@babel/helper-create-regexp-features-plugin': 7.25.9(@babel/core@7.26.0)
+ '@babel/helper-plugin-utils': 7.25.9
+
+ '@babel/plugin-transform-duplicate-keys@7.25.9(@babel/core@7.26.0)':
+ dependencies:
+ '@babel/core': 7.26.0
+ '@babel/helper-plugin-utils': 7.25.9
+
+ '@babel/plugin-transform-duplicate-named-capturing-groups-regex@7.25.9(@babel/core@7.26.0)':
+ dependencies:
+ '@babel/core': 7.26.0
+ '@babel/helper-create-regexp-features-plugin': 7.25.9(@babel/core@7.26.0)
+ '@babel/helper-plugin-utils': 7.25.9
+
+ '@babel/plugin-transform-dynamic-import@7.25.9(@babel/core@7.26.0)':
+ dependencies:
+ '@babel/core': 7.26.0
+ '@babel/helper-plugin-utils': 7.25.9
+
+ '@babel/plugin-transform-exponentiation-operator@7.25.9(@babel/core@7.26.0)':
+ dependencies:
+ '@babel/core': 7.26.0
+ '@babel/helper-builder-binary-assignment-operator-visitor': 7.25.9
+ '@babel/helper-plugin-utils': 7.25.9
+ transitivePeerDependencies:
+ - supports-color
+
+ '@babel/plugin-transform-export-namespace-from@7.25.9(@babel/core@7.26.0)':
+ dependencies:
+ '@babel/core': 7.26.0
+ '@babel/helper-plugin-utils': 7.25.9
+
+ '@babel/plugin-transform-for-of@7.25.9(@babel/core@7.26.0)':
+ dependencies:
+ '@babel/core': 7.26.0
+ '@babel/helper-plugin-utils': 7.25.9
+ '@babel/helper-skip-transparent-expression-wrappers': 7.25.9
+ transitivePeerDependencies:
+ - supports-color
+
+ '@babel/plugin-transform-function-name@7.25.9(@babel/core@7.26.0)':
+ dependencies:
+ '@babel/core': 7.26.0
+ '@babel/helper-compilation-targets': 7.25.9
+ '@babel/helper-plugin-utils': 7.25.9
+ '@babel/traverse': 7.25.9
+ transitivePeerDependencies:
+ - supports-color
+
+ '@babel/plugin-transform-json-strings@7.25.9(@babel/core@7.26.0)':
+ dependencies:
+ '@babel/core': 7.26.0
+ '@babel/helper-plugin-utils': 7.25.9
+
+ '@babel/plugin-transform-literals@7.25.9(@babel/core@7.26.0)':
+ dependencies:
+ '@babel/core': 7.26.0
+ '@babel/helper-plugin-utils': 7.25.9
+
+ '@babel/plugin-transform-logical-assignment-operators@7.25.9(@babel/core@7.26.0)':
+ dependencies:
+ '@babel/core': 7.26.0
+ '@babel/helper-plugin-utils': 7.25.9
+
+ '@babel/plugin-transform-member-expression-literals@7.25.9(@babel/core@7.26.0)':
+ dependencies:
+ '@babel/core': 7.26.0
+ '@babel/helper-plugin-utils': 7.25.9
+
+ '@babel/plugin-transform-modules-amd@7.25.9(@babel/core@7.26.0)':
+ dependencies:
+ '@babel/core': 7.26.0
+ '@babel/helper-module-transforms': 7.26.0(@babel/core@7.26.0)
+ '@babel/helper-plugin-utils': 7.25.9
+ transitivePeerDependencies:
+ - supports-color
+
+ '@babel/plugin-transform-modules-commonjs@7.25.9(@babel/core@7.26.0)':
+ dependencies:
+ '@babel/core': 7.26.0
+ '@babel/helper-module-transforms': 7.26.0(@babel/core@7.26.0)
+ '@babel/helper-plugin-utils': 7.25.9
+ '@babel/helper-simple-access': 7.25.9
+ transitivePeerDependencies:
+ - supports-color
+
+ '@babel/plugin-transform-modules-systemjs@7.25.9(@babel/core@7.26.0)':
+ dependencies:
+ '@babel/core': 7.26.0
+ '@babel/helper-module-transforms': 7.26.0(@babel/core@7.26.0)
+ '@babel/helper-plugin-utils': 7.25.9
+ '@babel/helper-validator-identifier': 7.25.9
+ '@babel/traverse': 7.25.9
+ transitivePeerDependencies:
+ - supports-color
+
+ '@babel/plugin-transform-modules-umd@7.25.9(@babel/core@7.26.0)':
+ dependencies:
+ '@babel/core': 7.26.0
+ '@babel/helper-module-transforms': 7.26.0(@babel/core@7.26.0)
+ '@babel/helper-plugin-utils': 7.25.9
+ transitivePeerDependencies:
+ - supports-color
+
+ '@babel/plugin-transform-named-capturing-groups-regex@7.25.9(@babel/core@7.26.0)':
+ dependencies:
+ '@babel/core': 7.26.0
+ '@babel/helper-create-regexp-features-plugin': 7.25.9(@babel/core@7.26.0)
+ '@babel/helper-plugin-utils': 7.25.9
+
+ '@babel/plugin-transform-new-target@7.25.9(@babel/core@7.26.0)':
+ dependencies:
+ '@babel/core': 7.26.0
+ '@babel/helper-plugin-utils': 7.25.9
+
+ '@babel/plugin-transform-nullish-coalescing-operator@7.25.9(@babel/core@7.26.0)':
+ dependencies:
+ '@babel/core': 7.26.0
+ '@babel/helper-plugin-utils': 7.25.9
+
+ '@babel/plugin-transform-numeric-separator@7.25.9(@babel/core@7.26.0)':
+ dependencies:
+ '@babel/core': 7.26.0
+ '@babel/helper-plugin-utils': 7.25.9
+
+ '@babel/plugin-transform-object-rest-spread@7.25.9(@babel/core@7.26.0)':
+ dependencies:
+ '@babel/core': 7.26.0
+ '@babel/helper-compilation-targets': 7.25.9
+ '@babel/helper-plugin-utils': 7.25.9
+ '@babel/plugin-transform-parameters': 7.25.9(@babel/core@7.26.0)
+
+ '@babel/plugin-transform-object-super@7.25.9(@babel/core@7.26.0)':
+ dependencies:
+ '@babel/core': 7.26.0
+ '@babel/helper-plugin-utils': 7.25.9
+ '@babel/helper-replace-supers': 7.25.9(@babel/core@7.26.0)
+ transitivePeerDependencies:
+ - supports-color
+
+ '@babel/plugin-transform-optional-catch-binding@7.25.9(@babel/core@7.26.0)':
+ dependencies:
+ '@babel/core': 7.26.0
+ '@babel/helper-plugin-utils': 7.25.9
+
+ '@babel/plugin-transform-optional-chaining@7.25.9(@babel/core@7.26.0)':
+ dependencies:
+ '@babel/core': 7.26.0
+ '@babel/helper-plugin-utils': 7.25.9
+ '@babel/helper-skip-transparent-expression-wrappers': 7.25.9
+ transitivePeerDependencies:
+ - supports-color
+
+ '@babel/plugin-transform-parameters@7.25.9(@babel/core@7.26.0)':
+ dependencies:
+ '@babel/core': 7.26.0
+ '@babel/helper-plugin-utils': 7.25.9
+
+ '@babel/plugin-transform-private-methods@7.25.9(@babel/core@7.26.0)':
+ dependencies:
+ '@babel/core': 7.26.0
+ '@babel/helper-create-class-features-plugin': 7.25.9(@babel/core@7.26.0)
+ '@babel/helper-plugin-utils': 7.25.9
+ transitivePeerDependencies:
+ - supports-color
+
+ '@babel/plugin-transform-private-property-in-object@7.25.9(@babel/core@7.26.0)':
+ dependencies:
+ '@babel/core': 7.26.0
+ '@babel/helper-annotate-as-pure': 7.25.9
+ '@babel/helper-create-class-features-plugin': 7.25.9(@babel/core@7.26.0)
+ '@babel/helper-plugin-utils': 7.25.9
+ transitivePeerDependencies:
+ - supports-color
+
+ '@babel/plugin-transform-property-literals@7.25.9(@babel/core@7.26.0)':
+ dependencies:
+ '@babel/core': 7.26.0
+ '@babel/helper-plugin-utils': 7.25.9
+
+ '@babel/plugin-transform-regenerator@7.25.9(@babel/core@7.26.0)':
+ dependencies:
+ '@babel/core': 7.26.0
+ '@babel/helper-plugin-utils': 7.25.9
+ regenerator-transform: 0.15.2
+
+ '@babel/plugin-transform-regexp-modifiers@7.26.0(@babel/core@7.26.0)':
+ dependencies:
+ '@babel/core': 7.26.0
+ '@babel/helper-create-regexp-features-plugin': 7.25.9(@babel/core@7.26.0)
+ '@babel/helper-plugin-utils': 7.25.9
+
+ '@babel/plugin-transform-reserved-words@7.25.9(@babel/core@7.26.0)':
+ dependencies:
+ '@babel/core': 7.26.0
+ '@babel/helper-plugin-utils': 7.25.9
+
+ '@babel/plugin-transform-shorthand-properties@7.25.9(@babel/core@7.26.0)':
+ dependencies:
+ '@babel/core': 7.26.0
+ '@babel/helper-plugin-utils': 7.25.9
+
+ '@babel/plugin-transform-spread@7.25.9(@babel/core@7.26.0)':
+ dependencies:
+ '@babel/core': 7.26.0
+ '@babel/helper-plugin-utils': 7.25.9
+ '@babel/helper-skip-transparent-expression-wrappers': 7.25.9
+ transitivePeerDependencies:
+ - supports-color
+
+ '@babel/plugin-transform-sticky-regex@7.25.9(@babel/core@7.26.0)':
+ dependencies:
+ '@babel/core': 7.26.0
+ '@babel/helper-plugin-utils': 7.25.9
+
+ '@babel/plugin-transform-template-literals@7.25.9(@babel/core@7.26.0)':
+ dependencies:
+ '@babel/core': 7.26.0
+ '@babel/helper-plugin-utils': 7.25.9
+
+ '@babel/plugin-transform-typeof-symbol@7.25.9(@babel/core@7.26.0)':
+ dependencies:
+ '@babel/core': 7.26.0
+ '@babel/helper-plugin-utils': 7.25.9
+
+ '@babel/plugin-transform-unicode-escapes@7.25.9(@babel/core@7.26.0)':
+ dependencies:
+ '@babel/core': 7.26.0
+ '@babel/helper-plugin-utils': 7.25.9
+
+ '@babel/plugin-transform-unicode-property-regex@7.25.9(@babel/core@7.26.0)':
+ dependencies:
+ '@babel/core': 7.26.0
+ '@babel/helper-create-regexp-features-plugin': 7.25.9(@babel/core@7.26.0)
+ '@babel/helper-plugin-utils': 7.25.9
+
+ '@babel/plugin-transform-unicode-regex@7.25.9(@babel/core@7.26.0)':
+ dependencies:
+ '@babel/core': 7.26.0
+ '@babel/helper-create-regexp-features-plugin': 7.25.9(@babel/core@7.26.0)
+ '@babel/helper-plugin-utils': 7.25.9
+
+ '@babel/plugin-transform-unicode-sets-regex@7.25.9(@babel/core@7.26.0)':
+ dependencies:
+ '@babel/core': 7.26.0
+ '@babel/helper-create-regexp-features-plugin': 7.25.9(@babel/core@7.26.0)
+ '@babel/helper-plugin-utils': 7.25.9
+
+ '@babel/preset-env@7.26.0(@babel/core@7.26.0)':
+ dependencies:
+ '@babel/compat-data': 7.26.2
+ '@babel/core': 7.26.0
+ '@babel/helper-compilation-targets': 7.25.9
+ '@babel/helper-plugin-utils': 7.25.9
+ '@babel/helper-validator-option': 7.25.9
+ '@babel/plugin-bugfix-firefox-class-in-computed-class-key': 7.25.9(@babel/core@7.26.0)
+ '@babel/plugin-bugfix-safari-class-field-initializer-scope': 7.25.9(@babel/core@7.26.0)
+ '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression': 7.25.9(@babel/core@7.26.0)
+ '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining': 7.25.9(@babel/core@7.26.0)
+ '@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly': 7.25.9(@babel/core@7.26.0)
+ '@babel/plugin-proposal-private-property-in-object': 7.21.0-placeholder-for-preset-env.2(@babel/core@7.26.0)
+ '@babel/plugin-syntax-import-assertions': 7.26.0(@babel/core@7.26.0)
+ '@babel/plugin-syntax-import-attributes': 7.26.0(@babel/core@7.26.0)
+ '@babel/plugin-syntax-unicode-sets-regex': 7.18.6(@babel/core@7.26.0)
+ '@babel/plugin-transform-arrow-functions': 7.25.9(@babel/core@7.26.0)
+ '@babel/plugin-transform-async-generator-functions': 7.25.9(@babel/core@7.26.0)
+ '@babel/plugin-transform-async-to-generator': 7.25.9(@babel/core@7.26.0)
+ '@babel/plugin-transform-block-scoped-functions': 7.25.9(@babel/core@7.26.0)
+ '@babel/plugin-transform-block-scoping': 7.25.9(@babel/core@7.26.0)
+ '@babel/plugin-transform-class-properties': 7.25.9(@babel/core@7.26.0)
+ '@babel/plugin-transform-class-static-block': 7.26.0(@babel/core@7.26.0)
+ '@babel/plugin-transform-classes': 7.25.9(@babel/core@7.26.0)
+ '@babel/plugin-transform-computed-properties': 7.25.9(@babel/core@7.26.0)
+ '@babel/plugin-transform-destructuring': 7.25.9(@babel/core@7.26.0)
+ '@babel/plugin-transform-dotall-regex': 7.25.9(@babel/core@7.26.0)
+ '@babel/plugin-transform-duplicate-keys': 7.25.9(@babel/core@7.26.0)
+ '@babel/plugin-transform-duplicate-named-capturing-groups-regex': 7.25.9(@babel/core@7.26.0)
+ '@babel/plugin-transform-dynamic-import': 7.25.9(@babel/core@7.26.0)
+ '@babel/plugin-transform-exponentiation-operator': 7.25.9(@babel/core@7.26.0)
+ '@babel/plugin-transform-export-namespace-from': 7.25.9(@babel/core@7.26.0)
+ '@babel/plugin-transform-for-of': 7.25.9(@babel/core@7.26.0)
+ '@babel/plugin-transform-function-name': 7.25.9(@babel/core@7.26.0)
+ '@babel/plugin-transform-json-strings': 7.25.9(@babel/core@7.26.0)
+ '@babel/plugin-transform-literals': 7.25.9(@babel/core@7.26.0)
+ '@babel/plugin-transform-logical-assignment-operators': 7.25.9(@babel/core@7.26.0)
+ '@babel/plugin-transform-member-expression-literals': 7.25.9(@babel/core@7.26.0)
+ '@babel/plugin-transform-modules-amd': 7.25.9(@babel/core@7.26.0)
+ '@babel/plugin-transform-modules-commonjs': 7.25.9(@babel/core@7.26.0)
+ '@babel/plugin-transform-modules-systemjs': 7.25.9(@babel/core@7.26.0)
+ '@babel/plugin-transform-modules-umd': 7.25.9(@babel/core@7.26.0)
+ '@babel/plugin-transform-named-capturing-groups-regex': 7.25.9(@babel/core@7.26.0)
+ '@babel/plugin-transform-new-target': 7.25.9(@babel/core@7.26.0)
+ '@babel/plugin-transform-nullish-coalescing-operator': 7.25.9(@babel/core@7.26.0)
+ '@babel/plugin-transform-numeric-separator': 7.25.9(@babel/core@7.26.0)
+ '@babel/plugin-transform-object-rest-spread': 7.25.9(@babel/core@7.26.0)
+ '@babel/plugin-transform-object-super': 7.25.9(@babel/core@7.26.0)
+ '@babel/plugin-transform-optional-catch-binding': 7.25.9(@babel/core@7.26.0)
+ '@babel/plugin-transform-optional-chaining': 7.25.9(@babel/core@7.26.0)
+ '@babel/plugin-transform-parameters': 7.25.9(@babel/core@7.26.0)
+ '@babel/plugin-transform-private-methods': 7.25.9(@babel/core@7.26.0)
+ '@babel/plugin-transform-private-property-in-object': 7.25.9(@babel/core@7.26.0)
+ '@babel/plugin-transform-property-literals': 7.25.9(@babel/core@7.26.0)
+ '@babel/plugin-transform-regenerator': 7.25.9(@babel/core@7.26.0)
+ '@babel/plugin-transform-regexp-modifiers': 7.26.0(@babel/core@7.26.0)
+ '@babel/plugin-transform-reserved-words': 7.25.9(@babel/core@7.26.0)
+ '@babel/plugin-transform-shorthand-properties': 7.25.9(@babel/core@7.26.0)
+ '@babel/plugin-transform-spread': 7.25.9(@babel/core@7.26.0)
+ '@babel/plugin-transform-sticky-regex': 7.25.9(@babel/core@7.26.0)
+ '@babel/plugin-transform-template-literals': 7.25.9(@babel/core@7.26.0)
+ '@babel/plugin-transform-typeof-symbol': 7.25.9(@babel/core@7.26.0)
+ '@babel/plugin-transform-unicode-escapes': 7.25.9(@babel/core@7.26.0)
+ '@babel/plugin-transform-unicode-property-regex': 7.25.9(@babel/core@7.26.0)
+ '@babel/plugin-transform-unicode-regex': 7.25.9(@babel/core@7.26.0)
+ '@babel/plugin-transform-unicode-sets-regex': 7.25.9(@babel/core@7.26.0)
+ '@babel/preset-modules': 0.1.6-no-external-plugins(@babel/core@7.26.0)
+ babel-plugin-polyfill-corejs2: 0.4.12(@babel/core@7.26.0)
+ babel-plugin-polyfill-corejs3: 0.10.6(@babel/core@7.26.0)
+ babel-plugin-polyfill-regenerator: 0.6.3(@babel/core@7.26.0)
+ core-js-compat: 3.39.0
+ semver: 6.3.1
+ transitivePeerDependencies:
+ - supports-color
+
+ '@babel/preset-modules@0.1.6-no-external-plugins(@babel/core@7.26.0)':
+ dependencies:
+ '@babel/core': 7.26.0
+ '@babel/helper-plugin-utils': 7.25.9
+ '@babel/types': 7.26.0
+ esutils: 2.0.3
+
+ '@babel/runtime@7.26.0':
+ dependencies:
+ regenerator-runtime: 0.14.1
+
+ '@babel/template@7.25.9':
+ dependencies:
+ '@babel/code-frame': 7.26.2
+ '@babel/parser': 7.26.2
+ '@babel/types': 7.26.0
+
+ '@babel/template@8.0.0-alpha.13':
+ dependencies:
+ '@babel/code-frame': 8.0.0-alpha.13
+ '@babel/parser': 8.0.0-alpha.13
+ '@babel/types': 8.0.0-alpha.13
+
+ '@babel/traverse@7.25.9':
+ dependencies:
+ '@babel/code-frame': 7.26.2
+ '@babel/generator': 7.26.2
+ '@babel/parser': 7.26.2
+ '@babel/template': 7.25.9
+ '@babel/types': 7.26.0
+ debug: 4.3.7(supports-color@9.4.0)
+ globals: 11.12.0
+ transitivePeerDependencies:
+ - supports-color
+
+ '@babel/traverse@8.0.0-alpha.13':
+ dependencies:
+ '@babel/code-frame': 8.0.0-alpha.13
+ '@babel/generator': 8.0.0-alpha.13
+ '@babel/parser': 8.0.0-alpha.13
+ '@babel/template': 8.0.0-alpha.13
+ '@babel/types': 8.0.0-alpha.13
+ debug: 4.3.7(supports-color@9.4.0)
+ globals: 15.12.0
+ transitivePeerDependencies:
+ - supports-color
+
+ '@babel/types@7.26.0':
+ dependencies:
+ '@babel/helper-string-parser': 7.25.9
+ '@babel/helper-validator-identifier': 7.25.9
+
+ '@babel/types@8.0.0-alpha.13':
+ dependencies:
+ '@babel/helper-string-parser': 8.0.0-alpha.13
+ '@babel/helper-validator-identifier': 8.0.0-alpha.13
+
+ '@bandwidth/messaging@4.1.7':
+ dependencies:
+ '@apimatic/schema': 0.6.0
+ axios: 1.7.7(debug@3.2.7)
+ detect-node: 2.1.0
+ form-data: 3.0.2
+ json-bigint: 1.0.0
+ lodash.flatmap: 4.5.0
+ tiny-warning: 1.0.3
+ transitivePeerDependencies:
+ - debug
+
+ '@bcoe/v8-coverage@0.2.3': {}
+
+ '@bufbuild/protobuf@1.10.0': {}
+
+ '@bufbuild/protobuf@2.2.2': {}
+
+ '@colors/colors@1.6.0': {}
+
+ '@connectrpc/connect-web@2.0.0-rc.3(@bufbuild/protobuf@2.2.2)(@connectrpc/connect@2.0.0-rc.3(@bufbuild/protobuf@2.2.2))':
+ dependencies:
+ '@bufbuild/protobuf': 2.2.2
+ '@connectrpc/connect': 2.0.0-rc.3(@bufbuild/protobuf@2.2.2)
+
+ '@connectrpc/connect@2.0.0-rc.3(@bufbuild/protobuf@2.2.2)':
+ dependencies:
+ '@bufbuild/protobuf': 2.2.2
+
+ '@csstools/css-parser-algorithms@3.0.4(@csstools/css-tokenizer@3.0.3)':
+ dependencies:
+ '@csstools/css-tokenizer': 3.0.3
+
+ '@csstools/css-tokenizer@3.0.3': {}
+
+ '@csstools/media-query-list-parser@3.0.1(@csstools/css-parser-algorithms@3.0.4(@csstools/css-tokenizer@3.0.3))(@csstools/css-tokenizer@3.0.3)':
+ dependencies:
+ '@csstools/css-parser-algorithms': 3.0.4(@csstools/css-tokenizer@3.0.3)
+ '@csstools/css-tokenizer': 3.0.3
+
+ '@csstools/selector-specificity@4.0.0(postcss-selector-parser@6.1.2)':
+ dependencies:
+ postcss-selector-parser: 6.1.2
+
+ '@dabh/diagnostics@2.0.3':
+ dependencies:
+ colorspace: 1.1.4
+ enabled: 2.0.0
+ kuler: 2.0.0
+
+ '@definitelytyped/header-parser@0.2.15':
+ dependencies:
+ '@definitelytyped/typescript-versions': 0.1.5
+ '@definitelytyped/utils': 0.1.8
+ semver: 7.6.3
+
+ '@definitelytyped/typescript-versions@0.1.5': {}
+
+ '@definitelytyped/utils@0.1.8':
+ dependencies:
+ '@qiwi/npm-registry-client': 8.9.1
+ '@types/node': 18.19.64
+ cachedir: 2.4.0
+ charm: 1.0.2
+ minimatch: 9.0.5
+ tar: 6.2.1
+ tar-stream: 3.1.7
+ which: 4.0.0
+
+ '@dual-bundle/import-meta-resolve@4.1.0': {}
+
+ '@e2b/code-interpreter@1.0.4':
+ dependencies:
+ e2b: 1.0.5
+
+ '@emnapi/runtime@1.3.1':
+ dependencies:
+ tslib: 2.8.1
+ optional: true
+
+ '@emotion/babel-plugin@11.13.5':
+ dependencies:
+ '@babel/helper-module-imports': 7.25.9
+ '@babel/runtime': 7.26.0
+ '@emotion/hash': 0.9.2
+ '@emotion/memoize': 0.9.0
+ '@emotion/serialize': 1.3.3
+ babel-plugin-macros: 3.1.0
+ convert-source-map: 1.9.0
+ escape-string-regexp: 4.0.0
+ find-root: 1.1.0
+ source-map: 0.5.7
+ stylis: 4.2.0
+ transitivePeerDependencies:
+ - supports-color
+
+ '@emotion/cache@11.13.5':
+ dependencies:
+ '@emotion/memoize': 0.9.0
+ '@emotion/sheet': 1.4.0
+ '@emotion/utils': 1.4.2
+ '@emotion/weak-memoize': 0.4.0
+ stylis: 4.2.0
+
+ '@emotion/hash@0.9.2': {}
+
+ '@emotion/memoize@0.9.0': {}
+
+ '@emotion/react@11.13.5(@types/react@18.3.12)(react@18.3.1)':
+ dependencies:
+ '@babel/runtime': 7.26.0
+ '@emotion/babel-plugin': 11.13.5
+ '@emotion/cache': 11.13.5
+ '@emotion/serialize': 1.3.3
+ '@emotion/use-insertion-effect-with-fallbacks': 1.1.0(react@18.3.1)
+ '@emotion/utils': 1.4.2
+ '@emotion/weak-memoize': 0.4.0
+ hoist-non-react-statics: 3.3.2
+ react: 18.3.1
+ optionalDependencies:
+ '@types/react': 18.3.12
+ transitivePeerDependencies:
+ - supports-color
+
+ '@emotion/react@11.13.5(@types/react@18.3.12)(react@19.0.0-rc-66855b96-20241106)':
+ dependencies:
+ '@babel/runtime': 7.26.0
+ '@emotion/babel-plugin': 11.13.5
+ '@emotion/cache': 11.13.5
+ '@emotion/serialize': 1.3.3
+ '@emotion/use-insertion-effect-with-fallbacks': 1.1.0(react@19.0.0-rc-66855b96-20241106)
+ '@emotion/utils': 1.4.2
+ '@emotion/weak-memoize': 0.4.0
+ hoist-non-react-statics: 3.3.2
+ react: 19.0.0-rc-66855b96-20241106
+ optionalDependencies:
+ '@types/react': 18.3.12
+ transitivePeerDependencies:
+ - supports-color
+
+ '@emotion/serialize@1.3.3':
+ dependencies:
+ '@emotion/hash': 0.9.2
+ '@emotion/memoize': 0.9.0
+ '@emotion/unitless': 0.10.0
+ '@emotion/utils': 1.4.2
+ csstype: 3.1.3
+
+ '@emotion/sheet@1.4.0': {}
+
+ '@emotion/unitless@0.10.0': {}
+
+ '@emotion/use-insertion-effect-with-fallbacks@1.1.0(react@18.3.1)':
+ dependencies:
+ react: 18.3.1
+
+ '@emotion/use-insertion-effect-with-fallbacks@1.1.0(react@19.0.0-rc-66855b96-20241106)':
+ dependencies:
+ react: 19.0.0-rc-66855b96-20241106
+
+ '@emotion/utils@1.4.2': {}
+
+ '@emotion/weak-memoize@0.4.0': {}
+
+ '@esbuild/aix-ppc64@0.21.5':
+ optional: true
+
+ '@esbuild/android-arm64@0.21.5':
+ optional: true
+
+ '@esbuild/android-arm@0.21.5':
+ optional: true
+
+ '@esbuild/android-x64@0.21.5':
+ optional: true
+
+ '@esbuild/darwin-arm64@0.21.5':
+ optional: true
+
+ '@esbuild/darwin-x64@0.21.5':
+ optional: true
+
+ '@esbuild/freebsd-arm64@0.21.5':
+ optional: true
+
+ '@esbuild/freebsd-x64@0.21.5':
+ optional: true
+
+ '@esbuild/linux-arm64@0.21.5':
+ optional: true
+
+ '@esbuild/linux-arm@0.21.5':
+ optional: true
+
+ '@esbuild/linux-ia32@0.21.5':
+ optional: true
+
+ '@esbuild/linux-loong64@0.21.5':
+ optional: true
+
+ '@esbuild/linux-mips64el@0.21.5':
+ optional: true
+
+ '@esbuild/linux-ppc64@0.21.5':
+ optional: true
+
+ '@esbuild/linux-riscv64@0.21.5':
+ optional: true
+
+ '@esbuild/linux-s390x@0.21.5':
+ optional: true
+
+ '@esbuild/linux-x64@0.21.5':
+ optional: true
+
+ '@esbuild/netbsd-x64@0.21.5':
+ optional: true
+
+ '@esbuild/openbsd-x64@0.21.5':
+ optional: true
+
+ '@esbuild/sunos-x64@0.21.5':
+ optional: true
+
+ '@esbuild/win32-arm64@0.21.5':
+ optional: true
+
+ '@esbuild/win32-ia32@0.21.5':
+ optional: true
+
+ '@esbuild/win32-x64@0.21.5':
+ optional: true
+
+ '@eslint-community/eslint-utils@4.4.1(eslint@8.57.1)':
+ dependencies:
+ eslint: 8.57.1
+ eslint-visitor-keys: 3.4.3
+
+ '@eslint-community/regexpp@4.12.1': {}
+
+ '@eslint/eslintrc@2.1.4':
+ dependencies:
+ ajv: 6.12.6
+ debug: 4.3.7(supports-color@9.4.0)
+ espree: 9.6.1
+ globals: 13.24.0
+ ignore: 5.3.2
+ import-fresh: 3.3.0
+ js-yaml: 4.1.0
+ minimatch: 3.1.2
+ strip-json-comments: 3.1.1
+ transitivePeerDependencies:
+ - supports-color
+
+ '@eslint/eslintrc@3.2.0':
+ dependencies:
+ ajv: 6.12.6
+ debug: 4.3.7(supports-color@9.4.0)
+ espree: 10.3.0
+ globals: 14.0.0
+ ignore: 5.3.2
+ import-fresh: 3.3.0
+ js-yaml: 4.1.0
+ minimatch: 3.1.2
+ strip-json-comments: 3.1.1
+ transitivePeerDependencies:
+ - supports-color
+
+ '@eslint/js@8.57.1': {}
+
+ '@eslint/js@9.15.0': {}
+
+ '@exodus/schemasafe@1.3.0': {}
+
+ '@fastify/busboy@1.2.1':
+ dependencies:
+ text-decoding: 1.0.0
+
+ '@fastify/busboy@2.1.1': {}
+
+ '@ffmpeg-installer/darwin-arm64@4.1.5':
+ optional: true
+
+ '@ffmpeg-installer/darwin-x64@4.1.0':
+ optional: true
+
+ '@ffmpeg-installer/ffmpeg@1.1.0':
+ optionalDependencies:
+ '@ffmpeg-installer/darwin-arm64': 4.1.5
+ '@ffmpeg-installer/darwin-x64': 4.1.0
+ '@ffmpeg-installer/linux-arm': 4.1.3
+ '@ffmpeg-installer/linux-arm64': 4.1.4
+ '@ffmpeg-installer/linux-ia32': 4.1.0
+ '@ffmpeg-installer/linux-x64': 4.1.0
+ '@ffmpeg-installer/win32-ia32': 4.1.0
+ '@ffmpeg-installer/win32-x64': 4.1.0
+
+ '@ffmpeg-installer/linux-arm64@4.1.4':
+ optional: true
+
+ '@ffmpeg-installer/linux-arm@4.1.3':
+ optional: true
+
+ '@ffmpeg-installer/linux-ia32@4.1.0':
+ optional: true
+
+ '@ffmpeg-installer/linux-x64@4.1.0':
+ optional: true
+
+ '@ffmpeg-installer/win32-ia32@4.1.0':
+ optional: true
+
+ '@ffmpeg-installer/win32-x64@4.1.0':
+ optional: true
+
+ '@firebase/app-compat@0.1.39':
+ dependencies:
+ '@firebase/app': 0.8.4
+ '@firebase/component': 0.5.21
+ '@firebase/logger': 0.3.4
+ '@firebase/util': 1.7.3
+ tslib: 2.8.1
+
+ '@firebase/app-types@0.7.0': {}
+
+ '@firebase/app-types@0.8.1': {}
+
+ '@firebase/app@0.8.4':
+ dependencies:
+ '@firebase/component': 0.5.21
+ '@firebase/logger': 0.3.4
+ '@firebase/util': 1.7.3
+ idb: 7.0.1
+ tslib: 2.8.1
+
+ '@firebase/auth-interop-types@0.1.7(@firebase/app-types@0.7.0)(@firebase/util@1.7.3)':
+ dependencies:
+ '@firebase/app-types': 0.7.0
+ '@firebase/util': 1.7.3
+
+ '@firebase/component@0.5.21':
+ dependencies:
+ '@firebase/util': 1.7.3
+ tslib: 2.8.1
+
+ '@firebase/database-compat@0.2.10(@firebase/app-types@0.7.0)':
+ dependencies:
+ '@firebase/component': 0.5.21
+ '@firebase/database': 0.13.10(@firebase/app-types@0.7.0)
+ '@firebase/database-types': 0.9.17
+ '@firebase/logger': 0.3.4
+ '@firebase/util': 1.7.3
+ tslib: 2.8.1
+ transitivePeerDependencies:
+ - '@firebase/app-types'
+
+ '@firebase/database-types@0.9.17':
+ dependencies:
+ '@firebase/app-types': 0.8.1
+ '@firebase/util': 1.7.3
+
+ '@firebase/database@0.13.10(@firebase/app-types@0.7.0)':
+ dependencies:
+ '@firebase/auth-interop-types': 0.1.7(@firebase/app-types@0.7.0)(@firebase/util@1.7.3)
+ '@firebase/component': 0.5.21
+ '@firebase/logger': 0.3.4
+ '@firebase/util': 1.7.3
+ faye-websocket: 0.11.4
+ tslib: 2.8.1
+ transitivePeerDependencies:
+ - '@firebase/app-types'
+
+ '@firebase/logger@0.3.4':
+ dependencies:
+ tslib: 2.8.1
+
+ '@firebase/util@1.7.3':
+ dependencies:
+ tslib: 2.8.1
+
+ '@floating-ui/core@1.6.8':
+ dependencies:
+ '@floating-ui/utils': 0.2.8
+
+ '@floating-ui/dom@1.6.12':
+ dependencies:
+ '@floating-ui/core': 1.6.8
+ '@floating-ui/utils': 0.2.8
+
+ '@floating-ui/utils@0.2.8': {}
+
+ '@google-ai/generativelanguage@0.2.1':
+ dependencies:
+ google-gax: 3.6.1
+ transitivePeerDependencies:
+ - encoding
+ - supports-color
+
+ '@google-cloud/bigquery-data-transfer@4.4.0':
+ dependencies:
+ google-gax: 4.4.1
+ transitivePeerDependencies:
+ - encoding
+ - supports-color
+
+ '@google-cloud/bigquery@6.2.1':
+ dependencies:
+ '@google-cloud/common': 4.0.3
+ '@google-cloud/paginator': 4.0.1
+ '@google-cloud/precise-date': 3.0.1
+ '@google-cloud/promisify': 3.0.1
+ arrify: 2.0.1
+ big.js: 6.2.2
+ duplexify: 4.1.3
+ extend: 3.0.2
+ is: 3.3.0
+ stream-events: 1.0.5
+ uuid: 9.0.1
+ transitivePeerDependencies:
+ - encoding
+ - supports-color
+
+ '@google-cloud/common@4.0.3':
+ dependencies:
+ '@google-cloud/projectify': 3.0.0
+ '@google-cloud/promisify': 3.0.1
+ arrify: 2.0.1
+ duplexify: 4.1.3
+ ent: 2.2.1
+ extend: 3.0.2
+ google-auth-library: 8.9.0
+ retry-request: 5.0.2
+ teeny-request: 8.0.3
+ transitivePeerDependencies:
+ - encoding
+ - supports-color
+
+ '@google-cloud/compute@4.8.0':
+ dependencies:
+ google-gax: 4.4.1
+ transitivePeerDependencies:
+ - encoding
+ - supports-color
+
+ '@google-cloud/dialogflow@5.9.0':
+ dependencies:
+ google-gax: 3.6.1
+ transitivePeerDependencies:
+ - encoding
+ - supports-color
+
+ '@google-cloud/firestore@4.15.1':
+ dependencies:
+ fast-deep-equal: 3.1.3
+ functional-red-black-tree: 1.0.1
+ google-gax: 2.30.5
+ protobufjs: 6.11.4
+ transitivePeerDependencies:
+ - encoding
+ - supports-color
+ optional: true
+
+ '@google-cloud/local-auth@2.1.1':
+ dependencies:
+ arrify: 2.0.1
+ google-auth-library: 8.9.0
+ open: 7.4.2
+ server-destroy: 1.0.1
+ transitivePeerDependencies:
+ - encoding
+ - supports-color
+
+ '@google-cloud/logging@10.5.0':
+ dependencies:
+ '@google-cloud/common': 4.0.3
+ '@google-cloud/paginator': 4.0.1
+ '@google-cloud/projectify': 3.0.0
+ '@google-cloud/promisify': 3.0.1
+ arrify: 2.0.1
+ dot-prop: 6.0.1
+ eventid: 2.0.1
+ extend: 3.0.2
+ gcp-metadata: 4.3.1
+ google-auth-library: 8.9.0
+ google-gax: 3.6.1
+ on-finished: 2.4.1
+ pumpify: 2.0.1
+ stream-events: 1.0.5
+ uuid: 9.0.1
+ transitivePeerDependencies:
+ - encoding
+ - supports-color
+
+ '@google-cloud/paginator@3.0.7':
+ dependencies:
+ arrify: 2.0.1
+ extend: 3.0.2
+
+ '@google-cloud/paginator@4.0.1':
+ dependencies:
+ arrify: 2.0.1
+ extend: 3.0.2
+
+ '@google-cloud/paginator@5.0.2':
+ dependencies:
+ arrify: 2.0.1
+ extend: 3.0.2
+
+ '@google-cloud/precise-date@3.0.1': {}
+
+ '@google-cloud/precise-date@4.0.0': {}
+
+ '@google-cloud/projectify@2.1.1':
+ optional: true
+
+ '@google-cloud/projectify@3.0.0': {}
+
+ '@google-cloud/projectify@4.0.0': {}
+
+ '@google-cloud/promisify@2.0.4': {}
+
+ '@google-cloud/promisify@3.0.1': {}
+
+ '@google-cloud/promisify@4.0.0': {}
+
+ '@google-cloud/pubsub@3.7.5':
+ dependencies:
+ '@google-cloud/paginator': 4.0.1
+ '@google-cloud/precise-date': 3.0.1
+ '@google-cloud/projectify': 3.0.0
+ '@google-cloud/promisify': 2.0.4
+ '@opentelemetry/api': 1.9.0
+ '@opentelemetry/semantic-conventions': 1.3.1
+ '@types/duplexify': 3.6.4
+ '@types/long': 4.0.2
+ arrify: 2.0.1
+ extend: 3.0.2
+ google-auth-library: 8.9.0
+ google-gax: 3.6.1
+ heap-js: 2.5.0
+ is-stream-ended: 0.1.4
+ lodash.snakecase: 4.1.1
+ p-defer: 3.0.0
+ transitivePeerDependencies:
+ - encoding
+ - supports-color
+
+ '@google-cloud/pubsub@4.9.0':
+ dependencies:
+ '@google-cloud/paginator': 5.0.2
+ '@google-cloud/precise-date': 4.0.0
+ '@google-cloud/projectify': 4.0.0
+ '@google-cloud/promisify': 4.0.0
+ '@opentelemetry/api': 1.9.0
+ '@opentelemetry/semantic-conventions': 1.26.0
+ arrify: 2.0.1
+ extend: 3.0.2
+ google-auth-library: 9.15.0
+ google-gax: 4.4.1
+ heap-js: 2.5.0
+ is-stream-ended: 0.1.4
+ lodash.snakecase: 4.1.1
+ p-defer: 3.0.0
+ transitivePeerDependencies:
+ - encoding
+ - supports-color
+
+ '@google-cloud/storage@5.20.5':
+ dependencies:
+ '@google-cloud/paginator': 3.0.7
+ '@google-cloud/projectify': 2.1.1
+ '@google-cloud/promisify': 2.0.4
+ abort-controller: 3.0.0
+ arrify: 2.0.1
+ async-retry: 1.3.3
+ compressible: 2.0.18
+ configstore: 5.0.1
+ duplexify: 4.1.3
+ ent: 2.2.1
+ extend: 3.0.2
+ gaxios: 4.3.3
+ google-auth-library: 7.14.1
+ hash-stream-validation: 0.2.4
+ mime: 3.0.0
+ mime-types: 2.1.35
+ p-limit: 3.1.0
+ pumpify: 2.0.1
+ retry-request: 4.2.2
+ stream-events: 1.0.5
+ teeny-request: 7.2.0
+ uuid: 8.3.2
+ xdg-basedir: 4.0.0
+ transitivePeerDependencies:
+ - encoding
+ - supports-color
+ optional: true
+
+ '@google-cloud/storage@6.12.0':
+ dependencies:
+ '@google-cloud/paginator': 3.0.7
+ '@google-cloud/projectify': 3.0.0
+ '@google-cloud/promisify': 3.0.1
+ abort-controller: 3.0.0
+ async-retry: 1.3.3
+ compressible: 2.0.18
+ duplexify: 4.1.3
+ ent: 2.2.1
+ extend: 3.0.2
+ fast-xml-parser: 4.5.0
+ gaxios: 5.1.3
+ google-auth-library: 8.9.0
+ mime: 3.0.0
+ mime-types: 2.1.35
+ p-limit: 3.1.0
+ retry-request: 5.0.2
+ teeny-request: 8.0.3
+ uuid: 8.3.2
+ transitivePeerDependencies:
+ - encoding
+ - supports-color
+
+ '@googleapis/admin@6.0.2':
+ dependencies:
+ googleapis-common: 5.1.0
+ transitivePeerDependencies:
+ - encoding
+ - supports-color
+
+ '@googleapis/analyticsreporting@1.0.7':
+ dependencies:
+ googleapis-common: 7.2.0
+ transitivePeerDependencies:
+ - encoding
+ - supports-color
+
+ '@googleapis/calendar@1.0.4':
+ dependencies:
+ googleapis-common: 5.1.0
+ transitivePeerDependencies:
+ - encoding
+ - supports-color
+
+ '@googleapis/calendar@9.7.9':
+ dependencies:
+ googleapis-common: 7.2.0
+ transitivePeerDependencies:
+ - encoding
+ - supports-color
+
+ '@googleapis/docs@3.3.0':
+ dependencies:
+ googleapis-common: 7.2.0
+ transitivePeerDependencies:
+ - encoding
+ - supports-color
+
+ '@googleapis/drive@2.4.0':
+ dependencies:
+ googleapis-common: 5.1.0
+ transitivePeerDependencies:
+ - encoding
+ - supports-color
+
+ '@googleapis/gmail@0.3.4':
+ dependencies:
+ googleapis-common: 5.1.0
+ transitivePeerDependencies:
+ - encoding
+ - supports-color
+
+ '@googleapis/sheets@0.3.0':
+ dependencies:
+ googleapis-common: 5.1.0
+ transitivePeerDependencies:
+ - encoding
+ - supports-color
+
+ '@googleapis/slides@0.7.1':
+ dependencies:
+ googleapis-common: 5.1.0
+ transitivePeerDependencies:
+ - encoding
+ - supports-color
+
+ '@googleapis/youtube@6.0.0':
+ dependencies:
+ googleapis-common: 5.1.0
+ transitivePeerDependencies:
+ - encoding
+ - supports-color
+
+ '@graphql-typed-document-node/core@3.2.0(graphql@15.9.0)':
+ dependencies:
+ graphql: 15.9.0
+
+ '@graphql-typed-document-node/core@3.2.0(graphql@16.9.0)':
+ dependencies:
+ graphql: 16.9.0
+
+ '@grpc/grpc-js@1.12.2':
+ dependencies:
+ '@grpc/proto-loader': 0.7.13
+ '@js-sdsl/ordered-map': 4.4.2
+
+ '@grpc/grpc-js@1.6.12':
+ dependencies:
+ '@grpc/proto-loader': 0.7.13
+ '@types/node': 20.17.6
+ optional: true
+
+ '@grpc/grpc-js@1.8.22':
+ dependencies:
+ '@grpc/proto-loader': 0.7.13
+ '@types/node': 20.17.6
+
+ '@grpc/proto-loader@0.6.13':
+ dependencies:
+ '@types/long': 4.0.2
+ lodash.camelcase: 4.3.0
+ long: 4.0.0
+ protobufjs: 6.11.4
+ yargs: 16.2.0
+ optional: true
+
+ '@grpc/proto-loader@0.7.13':
+ dependencies:
+ lodash.camelcase: 4.3.0
+ long: 5.2.3
+ protobufjs: 7.4.0
+ yargs: 17.7.2
+
+ '@hapi/boom@10.0.1':
+ dependencies:
+ '@hapi/hoek': 11.0.7
+
+ '@hapi/bourne@3.0.0': {}
+
+ '@hapi/hoek@11.0.7': {}
+
+ '@hapi/hoek@9.3.0': {}
+
+ '@hapi/topo@5.1.0':
+ dependencies:
+ '@hapi/hoek': 9.3.0
+
+ '@hapi/wreck@18.1.0':
+ dependencies:
+ '@hapi/boom': 10.0.1
+ '@hapi/bourne': 3.0.0
+ '@hapi/hoek': 11.0.7
+
+ '@huggingface/inference@1.8.0': {}
+
+ '@humanwhocodes/config-array@0.13.0':
+ dependencies:
+ '@humanwhocodes/object-schema': 2.0.3
+ debug: 4.3.7(supports-color@9.4.0)
+ minimatch: 3.1.2
+ transitivePeerDependencies:
+ - supports-color
+
+ '@humanwhocodes/module-importer@1.0.1': {}
+
+ '@humanwhocodes/momoa@2.0.4': {}
+
+ '@humanwhocodes/object-schema@2.0.3': {}
+
+ '@img/sharp-darwin-arm64@0.33.5':
+ optionalDependencies:
+ '@img/sharp-libvips-darwin-arm64': 1.0.4
+ optional: true
+
+ '@img/sharp-darwin-x64@0.33.5':
+ optionalDependencies:
+ '@img/sharp-libvips-darwin-x64': 1.0.4
+ optional: true
+
+ '@img/sharp-libvips-darwin-arm64@1.0.4':
+ optional: true
+
+ '@img/sharp-libvips-darwin-x64@1.0.4':
+ optional: true
+
+ '@img/sharp-libvips-linux-arm64@1.0.4':
+ optional: true
+
+ '@img/sharp-libvips-linux-arm@1.0.5':
+ optional: true
+
+ '@img/sharp-libvips-linux-s390x@1.0.4':
+ optional: true
+
+ '@img/sharp-libvips-linux-x64@1.0.4':
+ optional: true
+
+ '@img/sharp-libvips-linuxmusl-arm64@1.0.4':
+ optional: true
+
+ '@img/sharp-libvips-linuxmusl-x64@1.0.4':
+ optional: true
+
+ '@img/sharp-linux-arm64@0.33.5':
+ optionalDependencies:
+ '@img/sharp-libvips-linux-arm64': 1.0.4
+ optional: true
+
+ '@img/sharp-linux-arm@0.33.5':
+ optionalDependencies:
+ '@img/sharp-libvips-linux-arm': 1.0.5
+ optional: true
+
+ '@img/sharp-linux-s390x@0.33.5':
+ optionalDependencies:
+ '@img/sharp-libvips-linux-s390x': 1.0.4
+ optional: true
+
+ '@img/sharp-linux-x64@0.33.5':
+ optionalDependencies:
+ '@img/sharp-libvips-linux-x64': 1.0.4
+ optional: true
+
+ '@img/sharp-linuxmusl-arm64@0.33.5':
+ optionalDependencies:
+ '@img/sharp-libvips-linuxmusl-arm64': 1.0.4
+ optional: true
+
+ '@img/sharp-linuxmusl-x64@0.33.5':
+ optionalDependencies:
+ '@img/sharp-libvips-linuxmusl-x64': 1.0.4
+ optional: true
+
+ '@img/sharp-wasm32@0.33.5':
+ dependencies:
+ '@emnapi/runtime': 1.3.1
+ optional: true
+
+ '@img/sharp-win32-ia32@0.33.5':
+ optional: true
+
+ '@img/sharp-win32-x64@0.33.5':
+ optional: true
+
+ '@istanbuljs/load-nyc-config@1.1.0':
+ dependencies:
+ camelcase: 5.3.1
+ find-up: 4.1.0
+ get-package-type: 0.1.0
+ js-yaml: 3.14.1
+ resolve-from: 5.0.0
+
+ '@istanbuljs/schema@0.1.3': {}
+
+ '@jest/console@29.7.0':
+ dependencies:
+ '@jest/types': 29.6.3
+ '@types/node': 20.17.6
+ chalk: 4.1.2
+ jest-message-util: 29.7.0
+ jest-util: 29.7.0
+ slash: 3.0.0
+
+ '@jest/core@29.7.0(babel-plugin-macros@3.1.0)':
+ dependencies:
+ '@jest/console': 29.7.0
+ '@jest/reporters': 29.7.0
+ '@jest/test-result': 29.7.0
+ '@jest/transform': 29.7.0
+ '@jest/types': 29.6.3
+ '@types/node': 20.17.6
+ ansi-escapes: 4.3.2
+ chalk: 4.1.2
+ ci-info: 3.9.0
+ exit: 0.1.2
+ graceful-fs: 4.2.11
+ jest-changed-files: 29.7.0
+ jest-config: 29.7.0(@types/node@20.17.6)(babel-plugin-macros@3.1.0)
+ jest-haste-map: 29.7.0
+ jest-message-util: 29.7.0
+ jest-regex-util: 29.6.3
+ jest-resolve: 29.7.0
+ jest-resolve-dependencies: 29.7.0
+ jest-runner: 29.7.0
+ jest-runtime: 29.7.0
+ jest-snapshot: 29.7.0
+ jest-util: 29.7.0
+ jest-validate: 29.7.0
+ jest-watcher: 29.7.0
+ micromatch: 4.0.8
+ pretty-format: 29.7.0
+ slash: 3.0.0
+ strip-ansi: 6.0.1
+ transitivePeerDependencies:
+ - babel-plugin-macros
+ - supports-color
+ - ts-node
+
+ '@jest/environment@29.7.0':
+ dependencies:
+ '@jest/fake-timers': 29.7.0
+ '@jest/types': 29.6.3
+ '@types/node': 20.17.6
+ jest-mock: 29.7.0
+
+ '@jest/expect-utils@29.7.0':
+ dependencies:
+ jest-get-type: 29.6.3
+
+ '@jest/expect@29.7.0':
+ dependencies:
+ expect: 29.7.0
+ jest-snapshot: 29.7.0
+ transitivePeerDependencies:
+ - supports-color
+
+ '@jest/fake-timers@29.7.0':
+ dependencies:
+ '@jest/types': 29.6.3
+ '@sinonjs/fake-timers': 10.3.0
+ '@types/node': 20.17.6
+ jest-message-util: 29.7.0
+ jest-mock: 29.7.0
+ jest-util: 29.7.0
+
+ '@jest/globals@29.7.0':
+ dependencies:
+ '@jest/environment': 29.7.0
+ '@jest/expect': 29.7.0
+ '@jest/types': 29.6.3
+ jest-mock: 29.7.0
+ transitivePeerDependencies:
+ - supports-color
+
+ '@jest/reporters@29.7.0':
+ dependencies:
+ '@bcoe/v8-coverage': 0.2.3
+ '@jest/console': 29.7.0
+ '@jest/test-result': 29.7.0
+ '@jest/transform': 29.7.0
+ '@jest/types': 29.6.3
+ '@jridgewell/trace-mapping': 0.3.25
+ '@types/node': 20.17.6
+ chalk: 4.1.2
+ collect-v8-coverage: 1.0.2
+ exit: 0.1.2
+ glob: 7.2.3
+ graceful-fs: 4.2.11
+ istanbul-lib-coverage: 3.2.2
+ istanbul-lib-instrument: 6.0.3
+ istanbul-lib-report: 3.0.1
+ istanbul-lib-source-maps: 4.0.1
+ istanbul-reports: 3.1.7
+ jest-message-util: 29.7.0
+ jest-util: 29.7.0
+ jest-worker: 29.7.0
+ slash: 3.0.0
+ string-length: 4.0.2
+ strip-ansi: 6.0.1
+ v8-to-istanbul: 9.3.0
+ transitivePeerDependencies:
+ - supports-color
+
+ '@jest/schemas@29.6.3':
+ dependencies:
+ '@sinclair/typebox': 0.27.8
+
+ '@jest/source-map@29.6.3':
+ dependencies:
+ '@jridgewell/trace-mapping': 0.3.25
+ callsites: 3.1.0
+ graceful-fs: 4.2.11
+
+ '@jest/test-result@29.7.0':
+ dependencies:
+ '@jest/console': 29.7.0
+ '@jest/types': 29.6.3
+ '@types/istanbul-lib-coverage': 2.0.6
+ collect-v8-coverage: 1.0.2
+
+ '@jest/test-sequencer@29.7.0':
+ dependencies:
+ '@jest/test-result': 29.7.0
+ graceful-fs: 4.2.11
+ jest-haste-map: 29.7.0
+ slash: 3.0.0
+
+ '@jest/transform@29.7.0':
+ dependencies:
+ '@babel/core': 7.26.0
+ '@jest/types': 29.6.3
+ '@jridgewell/trace-mapping': 0.3.25
+ babel-plugin-istanbul: 6.1.1
+ chalk: 4.1.2
+ convert-source-map: 2.0.0
+ fast-json-stable-stringify: 2.1.0
+ graceful-fs: 4.2.11
+ jest-haste-map: 29.7.0
+ jest-regex-util: 29.6.3
+ jest-util: 29.7.0
+ micromatch: 4.0.8
+ pirates: 4.0.6
+ slash: 3.0.0
+ write-file-atomic: 4.0.2
+ transitivePeerDependencies:
+ - supports-color
+
+ '@jest/types@29.6.3':
+ dependencies:
+ '@jest/schemas': 29.6.3
+ '@types/istanbul-lib-coverage': 2.0.6
+ '@types/istanbul-reports': 3.0.4
+ '@types/node': 20.17.6
+ '@types/yargs': 17.0.33
+ chalk: 4.1.2
+
+ '@jridgewell/gen-mapping@0.3.5':
+ dependencies:
+ '@jridgewell/set-array': 1.2.1
+ '@jridgewell/sourcemap-codec': 1.5.0
+ '@jridgewell/trace-mapping': 0.3.25
+
+ '@jridgewell/resolve-uri@3.1.2': {}
+
+ '@jridgewell/set-array@1.2.1': {}
+
+ '@jridgewell/sourcemap-codec@1.5.0': {}
+
+ '@jridgewell/trace-mapping@0.3.25':
+ dependencies:
+ '@jridgewell/resolve-uri': 3.1.2
+ '@jridgewell/sourcemap-codec': 1.5.0
+
+ '@js-joda/core@5.6.3': {}
+
+ '@js-sdsl/ordered-map@4.4.2': {}
+
+ '@jsdevtools/ono@7.1.3': {}
+
+ '@jsdoc/salty@0.2.8':
+ dependencies:
+ lodash: 4.17.21
+
+ '@keyv/serialize@1.0.1':
+ dependencies:
+ buffer: 6.0.3
+
+ '@kontent-ai/core-sdk@10.4.0':
+ dependencies:
+ axios: 1.6.7
+ transitivePeerDependencies:
+ - debug
+
+ '@kontent-ai/core-sdk@10.7.0':
+ dependencies:
+ axios: 1.7.4
+ transitivePeerDependencies:
+ - debug
+
+ '@kontent-ai/delivery-sdk@14.11.0':
+ dependencies:
+ '@kontent-ai/core-sdk': 10.7.0
+ url-parse: 1.5.10
+ uuid: 10.0.0
+ transitivePeerDependencies:
+ - debug
+
+ '@kontent-ai/management-sdk@5.9.0':
+ dependencies:
+ '@kontent-ai/core-sdk': 10.4.0
+ mime: 3.0.0
+ transitivePeerDependencies:
+ - debug
+
+ '@kontent-ai/webhook-helper@2.1.0': {}
+
+ '@line/bot-sdk@7.7.0':
+ dependencies:
+ '@types/body-parser': 1.19.5
+ '@types/node': 18.19.64
+ axios: 1.7.7(debug@3.2.7)
+ body-parser: 1.20.3
+ file-type: 16.5.4
+ form-data: 4.0.1
+ transitivePeerDependencies:
+ - debug
+ - supports-color
+
+ '@linear/sdk@13.0.0':
+ dependencies:
+ '@graphql-typed-document-node/core': 3.2.0(graphql@15.9.0)
+ graphql: 15.9.0
+ isomorphic-unfetch: 3.1.0
+ transitivePeerDependencies:
+ - encoding
+
+ '@livekit/protocol@1.27.1':
+ dependencies:
+ '@bufbuild/protobuf': 1.10.0
+
+ '@lob/lob-typescript-sdk@1.3.5':
+ dependencies:
+ axios: 1.7.7(debug@3.2.7)
+ tslib: 2.8.1
+ transitivePeerDependencies:
+ - debug
+
+ '@mailchimp/mailchimp_marketing@3.0.80':
+ dependencies:
+ dotenv: 8.6.0
+ superagent: 3.8.1
+ transitivePeerDependencies:
+ - supports-color
+
+ '@memberstack/admin@1.3.1':
+ dependencies:
+ axios: 1.6.8
+ jose: 4.15.5
+ transitivePeerDependencies:
+ - debug
+
+ '@microsoft/api-extractor-model@7.29.9(@types/node@20.17.6)':
+ dependencies:
+ '@microsoft/tsdoc': 0.15.0
+ '@microsoft/tsdoc-config': 0.17.0
+ '@rushstack/node-core-library': 5.10.0(@types/node@20.17.6)
+ transitivePeerDependencies:
+ - '@types/node'
+
+ '@microsoft/api-extractor@7.47.12(@types/node@20.17.6)':
+ dependencies:
+ '@microsoft/api-extractor-model': 7.29.9(@types/node@20.17.6)
+ '@microsoft/tsdoc': 0.15.0
+ '@microsoft/tsdoc-config': 0.17.0
+ '@rushstack/node-core-library': 5.10.0(@types/node@20.17.6)
+ '@rushstack/rig-package': 0.5.3
+ '@rushstack/terminal': 0.14.3(@types/node@20.17.6)
+ '@rushstack/ts-command-line': 4.23.1(@types/node@20.17.6)
+ lodash: 4.17.21
+ minimatch: 3.0.8
+ resolve: 1.22.8
+ semver: 7.5.4
+ source-map: 0.6.1
+ typescript: 5.4.2
+ transitivePeerDependencies:
+ - '@types/node'
+
+ '@microsoft/kiota-abstractions@1.0.0-preview.77':
+ dependencies:
+ '@opentelemetry/api': 1.9.0
+ '@std-uritemplate/std-uritemplate': 1.0.6
+ tinyduration: 3.3.1
+ tslib: 2.8.1
+ uuid: 11.0.3
+
+ '@microsoft/kiota-http-fetchlibrary@1.0.0-preview.77':
+ dependencies:
+ '@microsoft/kiota-abstractions': 1.0.0-preview.77
+ '@opentelemetry/api': 1.9.0
+ tslib: 2.8.1
+
+ '@microsoft/kiota-serialization-form@1.0.0-preview.77':
+ dependencies:
+ '@microsoft/kiota-abstractions': 1.0.0-preview.77
+ tslib: 2.8.1
+
+ '@microsoft/kiota-serialization-json@1.0.0-preview.77':
+ dependencies:
+ '@microsoft/kiota-abstractions': 1.0.0-preview.77
+ tslib: 2.8.1
+
+ '@microsoft/kiota-serialization-text@1.0.0-preview.77':
+ dependencies:
+ '@microsoft/kiota-abstractions': 1.0.0-preview.77
+ tslib: 2.8.1
+
+ '@microsoft/microsoft-graph-client@3.0.7':
+ dependencies:
+ '@babel/runtime': 7.26.0
+ tslib: 2.8.1
+
+ '@microsoft/tsdoc-config@0.17.0':
+ dependencies:
+ '@microsoft/tsdoc': 0.15.0
+ ajv: 8.12.0
+ jju: 1.4.0
+ resolve: 1.22.8
+
+ '@microsoft/tsdoc@0.15.0': {}
+
+ '@mongodb-js/saslprep@1.1.9':
+ dependencies:
+ sparse-bitfield: 3.0.3
+ optional: true
+
+ '@netlify/open-api@2.34.0': {}
+
+ '@netlify/zip-it-and-ship-it@3.10.0':
+ dependencies:
+ archiver: 4.0.2
+ array-flat-polyfill: 1.0.1
+ common-path-prefix: 2.0.0
+ cp-file: 7.0.0
+ del: 5.1.0
+ elf-cam: 0.1.1
+ end-of-stream: 1.4.4
+ esbuild: 0.11.10
+ filter-obj: 2.0.2
+ find-up: 4.1.0
+ glob: 7.2.3
+ junk: 3.1.0
+ locate-path: 5.0.0
+ make-dir: 3.1.0
+ merge-options: 3.0.4
+ minimatch: 3.1.2
+ p-map: 3.0.0
+ path-exists: 4.0.0
+ pkg-dir: 4.2.0
+ precinct: 6.3.1
+ read-package-json-fast: 2.0.3
+ require-package-name: 2.0.1
+ resolve: 2.0.0-next.5
+ semver: 6.3.1
+ unixify: 1.0.0
+ yargs: 15.4.1
+ transitivePeerDependencies:
+ - supports-color
+
+ '@next/env@15.0.3': {}
+
+ '@next/eslint-plugin-next@15.0.3':
+ dependencies:
+ fast-glob: 3.3.1
+
+ '@next/swc-darwin-arm64@15.0.3':
+ optional: true
+
+ '@next/swc-darwin-x64@15.0.3':
+ optional: true
+
+ '@next/swc-linux-arm64-gnu@15.0.3':
+ optional: true
+
+ '@next/swc-linux-arm64-musl@15.0.3':
+ optional: true
+
+ '@next/swc-linux-x64-gnu@15.0.3':
+ optional: true
+
+ '@next/swc-linux-x64-musl@15.0.3':
+ optional: true
+
+ '@next/swc-win32-arm64-msvc@15.0.3':
+ optional: true
+
+ '@next/swc-win32-x64-msvc@15.0.3':
+ optional: true
+
+ '@nicolo-ribaudo/chokidar-2@2.1.8-no-fsevents.3':
+ optional: true
+
+ '@nodelib/fs.scandir@2.1.5':
+ dependencies:
+ '@nodelib/fs.stat': 2.0.5
+ run-parallel: 1.2.0
+
+ '@nodelib/fs.stat@2.0.5': {}
+
+ '@nodelib/fs.walk@1.2.8':
+ dependencies:
+ '@nodelib/fs.scandir': 2.1.5
+ fastq: 1.17.1
+
+ '@nolyfill/is-core-module@1.0.39': {}
+
+ '@notionhq/client@1.0.4':
+ dependencies:
+ '@types/node-fetch': 2.6.12
+ node-fetch: 2.7.0
+ transitivePeerDependencies:
+ - encoding
+
+ '@notionhq/client@2.2.15':
+ dependencies:
+ '@types/node-fetch': 2.6.12
+ node-fetch: 2.7.0
+ transitivePeerDependencies:
+ - encoding
+
+ '@octokit/auth-token@2.5.0':
+ dependencies:
+ '@octokit/types': 6.41.0
+
+ '@octokit/auth-token@3.0.4': {}
+
+ '@octokit/core@3.6.0':
+ dependencies:
+ '@octokit/auth-token': 2.5.0
+ '@octokit/graphql': 4.8.0
+ '@octokit/request': 5.6.3
+ '@octokit/request-error': 2.1.0
+ '@octokit/types': 6.41.0
+ before-after-hook: 2.2.3
+ universal-user-agent: 6.0.1
+ transitivePeerDependencies:
+ - encoding
+
+ '@octokit/core@4.2.4':
+ dependencies:
+ '@octokit/auth-token': 3.0.4
+ '@octokit/graphql': 5.0.6
+ '@octokit/request': 6.2.8
+ '@octokit/request-error': 3.0.3
+ '@octokit/types': 9.3.2
+ before-after-hook: 2.2.3
+ universal-user-agent: 6.0.1
+ transitivePeerDependencies:
+ - encoding
+
+ '@octokit/endpoint@6.0.12':
+ dependencies:
+ '@octokit/types': 6.41.0
+ is-plain-object: 5.0.0
+ universal-user-agent: 6.0.1
+
+ '@octokit/endpoint@7.0.6':
+ dependencies:
+ '@octokit/types': 9.3.2
+ is-plain-object: 5.0.0
+ universal-user-agent: 6.0.1
+
+ '@octokit/graphql@4.8.0':
+ dependencies:
+ '@octokit/request': 5.6.3
+ '@octokit/types': 6.41.0
+ universal-user-agent: 6.0.1
+ transitivePeerDependencies:
+ - encoding
+
+ '@octokit/graphql@5.0.6':
+ dependencies:
+ '@octokit/request': 6.2.8
+ '@octokit/types': 9.3.2
+ universal-user-agent: 6.0.1
+ transitivePeerDependencies:
+ - encoding
+
+ '@octokit/openapi-types@12.11.0': {}
+
+ '@octokit/openapi-types@18.1.1': {}
+
+ '@octokit/plugin-paginate-rest@2.21.3(@octokit/core@4.2.4)':
+ dependencies:
+ '@octokit/core': 4.2.4
+ '@octokit/types': 6.41.0
+
+ '@octokit/request-error@2.1.0':
+ dependencies:
+ '@octokit/types': 6.41.0
+ deprecation: 2.3.1
+ once: 1.4.0
+
+ '@octokit/request-error@3.0.3':
+ dependencies:
+ '@octokit/types': 9.3.2
+ deprecation: 2.3.1
+ once: 1.4.0
+
+ '@octokit/request@5.6.3':
+ dependencies:
+ '@octokit/endpoint': 6.0.12
+ '@octokit/request-error': 2.1.0
+ '@octokit/types': 6.41.0
+ is-plain-object: 5.0.0
+ node-fetch: 2.7.0
+ universal-user-agent: 6.0.1
+ transitivePeerDependencies:
+ - encoding
+
+ '@octokit/request@6.2.8':
+ dependencies:
+ '@octokit/endpoint': 7.0.6
+ '@octokit/request-error': 3.0.3
+ '@octokit/types': 9.3.2
+ is-plain-object: 5.0.0
+ node-fetch: 2.7.0
+ universal-user-agent: 6.0.1
+ transitivePeerDependencies:
+ - encoding
+
+ '@octokit/types@6.41.0':
+ dependencies:
+ '@octokit/openapi-types': 12.11.0
+
+ '@octokit/types@9.3.2':
dependencies:
- putout: 32.2.0_typescript@5.2.2
- dev: true
+ '@octokit/openapi-types': 18.1.1
+
+ '@octokit/webhooks-definitions@3.67.3': {}
+
+ '@onfleet/node-onfleet@1.3.8':
+ dependencies:
+ bottleneck: 2.19.5
+ node-fetch: 3.3.2
+
+ '@opentelemetry/api@1.9.0': {}
+
+ '@opentelemetry/semantic-conventions@1.26.0': {}
+
+ '@opentelemetry/semantic-conventions@1.3.1': {}
+
+ '@panva/asn1.js@1.0.0': {}
+
+ '@pdfless/pdfless-js@1.0.510':
+ dependencies:
+ '@microsoft/kiota-abstractions': 1.0.0-preview.77
+ '@microsoft/kiota-http-fetchlibrary': 1.0.0-preview.77
+ '@microsoft/kiota-serialization-form': 1.0.0-preview.77
+ '@microsoft/kiota-serialization-json': 1.0.0-preview.77
+ '@microsoft/kiota-serialization-text': 1.0.0-preview.77
+
+ '@pipedream/aws@0.7.0(babel-plugin-macros@3.1.0)':
+ dependencies:
+ '@aws-sdk/client-cloudwatch-logs': 3.698.0
+ '@aws-sdk/client-dynamodb': 3.696.0
+ '@aws-sdk/client-dynamodb-streams': 3.696.0
+ '@aws-sdk/client-ec2': 3.698.0
+ '@aws-sdk/client-eventbridge': 3.696.0
+ '@aws-sdk/client-iam': 3.696.0
+ '@aws-sdk/client-lambda': 3.698.0
+ '@aws-sdk/client-rds': 3.697.0
+ '@aws-sdk/client-s3': 3.698.0
+ '@aws-sdk/client-ses': 3.696.0
+ '@aws-sdk/client-sfn': 3.696.0
+ '@aws-sdk/client-sns': 3.696.0
+ '@aws-sdk/client-sqs': 3.696.0
+ '@aws-sdk/client-ssm': 3.698.0
+ '@aws-sdk/client-sts': 3.696.0
+ '@aws-sdk/s3-request-presigner': 3.698.0
+ '@pipedream/helper_functions': 0.3.13
+ '@pipedream/platform': 1.6.6
+ adm-zip: 0.5.16
+ dedent: 1.5.3(babel-plugin-macros@3.1.0)
+ mailparser: 3.7.1
+ mailparser-mit: 1.0.0
+ nanoid: 5.0.8
+ uuid: 9.0.1
+ transitivePeerDependencies:
+ - aws-crt
+ - babel-plugin-macros
+ - debug
+
+ '@pipedream/connect-react@file:packages/connect-react(@types/react@18.3.12)(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106)':
+ dependencies:
+ '@pipedream/sdk': 1.0.7
+ '@tanstack/react-query': 5.61.0(react@19.0.0-rc-66855b96-20241106)
+ lodash.isequal: 4.5.0
+ react: 19.0.0-rc-66855b96-20241106
+ react-dom: 19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106)
+ react-markdown: 9.0.1(@types/react@18.3.12)(react@19.0.0-rc-66855b96-20241106)
+ react-select: 5.8.3(@types/react@18.3.12)(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106)
+ transitivePeerDependencies:
+ - '@types/react'
+ - bufferutil
+ - supports-color
+ - utf-8-validate
+
+ '@pipedream/google_drive@0.6.19':
+ dependencies:
+ '@googleapis/drive': 2.4.0
+ '@pipedream/platform': 1.6.6
+ cron-parser: 4.9.0
+ google-docs-mustaches: 1.2.2
+ got: 13.0.0
+ lodash: 4.17.21
+ mime-db: 1.53.0
+ uuid: 8.3.2
+ transitivePeerDependencies:
+ - debug
+ - encoding
+ - supports-color
+
+ '@pipedream/helper_functions@0.3.13':
+ dependencies:
+ '@pipedream/platform': 1.6.6
+ streamifier: 0.1.1
+ xml-js: 1.6.11
+ transitivePeerDependencies:
+ - debug
+
+ '@pipedream/helpers@1.3.12':
+ dependencies:
+ '@pipedream/types': 0.0.5
+ lodash-es: 4.17.21
+
+ '@pipedream/platform@0.10.0':
+ dependencies:
+ axios: 0.19.2
+ fp-ts: 2.16.9
+ io-ts: 2.2.21(fp-ts@2.16.9)
+ transitivePeerDependencies:
+ - supports-color
+
+ '@pipedream/platform@0.9.0':
+ dependencies:
+ axios: 0.19.2
+ fp-ts: 2.16.9
+ io-ts: 2.2.21(fp-ts@2.16.9)
+ transitivePeerDependencies:
+ - supports-color
+
+ '@pipedream/platform@1.5.1':
+ dependencies:
+ axios: 0.21.4
+ fp-ts: 2.16.9
+ io-ts: 2.2.21(fp-ts@2.16.9)
+ querystring: 0.2.1
+ transitivePeerDependencies:
+ - debug
+
+ '@pipedream/platform@1.6.0':
+ dependencies:
+ axios: 1.7.7(debug@3.2.7)
+ fp-ts: 2.16.9
+ io-ts: 2.2.21(fp-ts@2.16.9)
+ querystring: 0.2.1
+ transitivePeerDependencies:
+ - debug
+
+ '@pipedream/platform@1.6.2':
+ dependencies:
+ axios: 1.7.7(debug@3.2.7)
+ fp-ts: 2.16.9
+ io-ts: 2.2.21(fp-ts@2.16.9)
+ querystring: 0.2.1
+ transitivePeerDependencies:
+ - debug
+
+ '@pipedream/platform@1.6.4':
+ dependencies:
+ axios: 1.7.7(debug@3.2.7)
+ fp-ts: 2.16.9
+ io-ts: 2.2.21(fp-ts@2.16.9)
+ querystring: 0.2.1
+ transitivePeerDependencies:
+ - debug
+
+ '@pipedream/platform@1.6.5':
+ dependencies:
+ axios: 1.7.7(debug@3.2.7)
+ fp-ts: 2.16.9
+ io-ts: 2.2.21(fp-ts@2.16.9)
+ querystring: 0.2.1
+ transitivePeerDependencies:
+ - debug
+
+ '@pipedream/platform@1.6.6':
+ dependencies:
+ axios: 1.7.7(debug@3.2.7)
+ fp-ts: 2.16.9
+ io-ts: 2.2.21(fp-ts@2.16.9)
+ querystring: 0.2.1
+ transitivePeerDependencies:
+ - debug
+
+ '@pipedream/platform@2.0.0':
+ dependencies:
+ axios: 1.7.7(debug@3.2.7)
+ fp-ts: 2.16.9
+ io-ts: 2.2.21(fp-ts@2.16.9)
+ querystring: 0.2.1
+ transitivePeerDependencies:
+ - debug
+
+ '@pipedream/platform@3.0.1':
+ dependencies:
+ axios: 1.7.7(debug@3.2.7)
+ fp-ts: 2.16.9
+ io-ts: 2.2.21(fp-ts@2.16.9)
+ querystring: 0.2.1
+ transitivePeerDependencies:
+ - debug
+
+ '@pipedream/platform@3.0.3':
+ dependencies:
+ axios: 1.7.7(debug@3.2.7)
+ fp-ts: 2.16.9
+ io-ts: 2.2.21(fp-ts@2.16.9)
+ querystring: 0.2.1
+ transitivePeerDependencies:
+ - debug
+
+ '@pipedream/sdk@1.0.7':
+ dependencies:
+ '@rails/actioncable': 8.0.0
+ commander: 12.1.0
+ simple-oauth2: 5.1.0
+ ws: 8.18.0
+ transitivePeerDependencies:
+ - bufferutil
+ - supports-color
+ - utf-8-validate
+
+ '@pipedream/snowflake-sdk@1.0.8(asn1.js@5.4.1)':
+ dependencies:
+ snowflake-sdk: 1.9.0(asn1.js@5.4.1)
+ transitivePeerDependencies:
+ - asn1.js
+ - aws-crt
+ - encoding
+ - supports-color
- /@putout/plugin-convert-array-copy-to-slice/3.0.0_putout@32.2.0:
- resolution: {integrity: sha512-rmUhado8IydOc+amBzBLiQ7j39TadIrDwyaEZmAcLG1LrQNQ8LGssvnKqE0EqRBy3t/D3y3r4PKKR2sklqz7+A==}
- engines: {node: '>=16'}
- peerDependencies:
- putout: '>=29'
+ '@pipedream/types@0.0.5':
dependencies:
- putout: 32.2.0_typescript@5.2.2
- dev: true
+ typescript: 4.9.5
- /@putout/plugin-convert-assignment-to-arrow-function/1.2.0_putout@32.2.0:
- resolution: {integrity: sha512-zLYy4hUDPx3CXw5OxWR0Opy8qQJ31W/VO6WLsbCz3NYVgjydoMuQM3UxIL2LuLkd2yEtTOW8bjudLX7a+sUcJg==}
- engines: {node: '>=14'}
- peerDependencies:
- putout: '>=15'
+ '@pipedream/types@0.1.4':
dependencies:
- putout: 32.2.0_typescript@5.2.2
- dev: true
+ typescript: 4.9.5
- /@putout/plugin-convert-assignment-to-comparison/2.0.0_putout@32.2.0:
- resolution: {integrity: sha512-8V9iefPoCugiJiyRM6+diwNLw0QuPEUBF/wyWgadNt26t5y4pUQIHyl+6zz+WkRc5ZxhkOcGMODXIhObb+CuSA==}
- engines: {node: '>=16'}
- peerDependencies:
- putout: '>=29'
+ '@pipedream/types@0.1.6':
dependencies:
- putout: 32.2.0_typescript@5.2.2
- dev: true
+ typescript: 4.9.5
- /@putout/plugin-convert-commonjs-to-esm/10.0.0_putout@32.2.0:
- resolution: {integrity: sha512-6WfCcUcrIfk6shKDe6j+3ILwTsZ2YwSGb/3yn1TXBaaTishOcjVwXkdvfF3GrO5YyoK3f829242SHiY6LPfC6Q==}
- engines: {node: '>=16'}
- peerDependencies:
- putout: '>=29'
+ '@pipedream/types@0.3.2':
dependencies:
- just-camel-case: 4.0.2
- putout: 32.2.0_typescript@5.2.2
- dev: true
+ typescript: 5.7.2
- /@putout/plugin-convert-concat-to-flat/1.0.0_putout@32.2.0:
- resolution: {integrity: sha512-5vpw+xZ+00xQW6Ql9Ku6MrARV/EPq1KrTAHYYaBTLyMZcpNaM3L+LYJ08/Cc1/mm64ufBa3LTaFJtr9PrzmuHA==}
- engines: {node: '>=14'}
- peerDependencies:
- putout: '>=16'
+ '@pipedreamhq/platform@0.8.1':
dependencies:
- putout: 32.2.0_typescript@5.2.2
- dev: true
+ axios: 0.19.2
+ fp-ts: 2.16.9
+ io-ts: 2.2.21(fp-ts@2.16.9)
+ transitivePeerDependencies:
+ - supports-color
- /@putout/plugin-convert-const-to-let/1.2.0_putout@32.2.0:
- resolution: {integrity: sha512-U4enDDqp+iXfvnHKu6B/2xVTYwVdj5CGnpweL+QCpKe8KTDd1uxjM2sEcK+V5Ly8Y0SIGLJVyvGkUBIIufsRBw==}
- engines: {node: '>=16'}
- peerDependencies:
- putout: '>=26'
- dependencies:
- putout: 32.2.0_typescript@5.2.2
- dev: true
+ '@pkgr/core@0.1.1': {}
- /@putout/plugin-convert-esm-to-commonjs/6.0.0_putout@32.2.0:
- resolution: {integrity: sha512-v5MzKrxXYHa0jkiC/+iM/h+pjJSUQwG02uSqUPF6tGzwlXxhBisb4++n/KxGO2uPaxwPMIGFYNKQZBdmBwIAXA==}
- engines: {node: '>=16'}
- peerDependencies:
- putout: '>=29'
+ '@protobuf-ts/plugin-framework@2.9.4':
dependencies:
- putout: 32.2.0_typescript@5.2.2
- dev: true
+ '@protobuf-ts/runtime': 2.9.4
+ typescript: 3.9.10
- /@putout/plugin-convert-index-of-to-includes/2.0.1_putout@32.2.0:
- resolution: {integrity: sha512-l8OA1+5hzviySeGTYsKZFBLALIye0at/ewRnvXQI5bH3s2De7d8OdMn5x7wdHwTph1NyrCwo4sLHlQX6E/fG7g==}
- engines: {node: '>=16'}
- peerDependencies:
- putout: '>=29'
+ '@protobuf-ts/plugin@2.9.4':
dependencies:
- putout: 32.2.0_typescript@5.2.2
- dev: true
+ '@protobuf-ts/plugin-framework': 2.9.4
+ '@protobuf-ts/protoc': 2.9.4
+ '@protobuf-ts/runtime': 2.9.4
+ '@protobuf-ts/runtime-rpc': 2.9.4
+ typescript: 3.9.10
- /@putout/plugin-convert-mock-require-to-mock-import/4.1.0_putout@32.2.0:
- resolution: {integrity: sha512-4FkGCLh6xnyqrTnMyQiHZpbl7uNig8efvBuIPj9+LqTBqg79Wsv0EVLbzL/7c7hH0RFhUTICEW0tBJ9XIuM2Wg==}
- engines: {node: '>=16'}
- peerDependencies:
- putout: '>=26'
- dependencies:
- putout: 32.2.0_typescript@5.2.2
- dev: true
+ '@protobuf-ts/protoc@2.9.4': {}
- /@putout/plugin-convert-object-assign-to-merge-spread/6.0.0_putout@32.2.0:
- resolution: {integrity: sha512-EdEgVRhIXZq6bV0WVcUwz0Zm72eEeWrWcccuKYnmUgJ20rL0LpUmxdVuTvDEzDsX4WjQXku32ACfAn/nUEfwiA==}
- engines: {node: '>=16'}
- peerDependencies:
- putout: '>=25'
+ '@protobuf-ts/runtime-rpc@2.9.4':
dependencies:
- putout: 32.2.0_typescript@5.2.2
- dev: true
+ '@protobuf-ts/runtime': 2.9.4
- /@putout/plugin-convert-object-entries-to-array-entries/3.0.1_putout@32.2.0:
- resolution: {integrity: sha512-Pam9J1cgmvkCgmKo68D6chA1//oI1IWWblVb/C0/l38eJdOzvuB3Izg9YDguNzJrP/y1ELTg5nB4pLp4nzz15w==}
- engines: {node: '>=16'}
- peerDependencies:
- putout: '>=31'
- dependencies:
- putout: 32.2.0_typescript@5.2.2
- dev: true
+ '@protobuf-ts/runtime@2.9.4': {}
- /@putout/plugin-convert-optional-to-logical/3.1.0_putout@32.2.0:
- resolution: {integrity: sha512-H/xDpYQHfswlIHlkDMftF/IBBnPIlsnYymAK06z3vyvSw/V/2SXiPDyH4NAcYxzAtI21tgTtQjo2OoCl9rLr+w==}
- engines: {node: '>=16'}
- peerDependencies:
- putout: '>=32'
- dependencies:
- putout: 32.2.0_typescript@5.2.2
- dev: true
+ '@protobufjs/aspromise@1.1.2': {}
- /@putout/plugin-convert-quotes-to-backticks/2.1.0_putout@32.2.0:
- resolution: {integrity: sha512-kf6JWMQG41R7i376ef6ljD47u2X/c76Y8pOLPBhL2/82wTIEkzVAg5DmoZVlYzb7sM8GcYCAbxSJUwI43FvQSA==}
- engines: {node: '>=16'}
- peerDependencies:
- putout: '>=25'
- dependencies:
- putout: 32.2.0_typescript@5.2.2
- dev: true
+ '@protobufjs/base64@1.1.2': {}
- /@putout/plugin-convert-template-to-string/1.0.0_putout@32.2.0:
- resolution: {integrity: sha512-Oh/MN4Irc6b3qafOSh3VQ+qw/DVZq2FSKt200XKpJw1HXcUk8RpPxNnG3xTpn2vTe/qK2e4VDtlLgdxUNo0onA==}
- engines: {node: '>=8.3.0'}
- peerDependencies:
- putout: '>=7'
- dependencies:
- putout: 32.2.0_typescript@5.2.2
- dev: true
+ '@protobufjs/codegen@2.0.4': {}
- /@putout/plugin-convert-to-arrow-function/4.0.0_putout@32.2.0:
- resolution: {integrity: sha512-oE+jmjjrSxD9BtLEiHnqW0UA7wXPzNrt46iNbrGRT6EkoKcJogp1BedP6bMlvdJUsHZu/Lx1Ib1unPQ7dWk+Tg==}
- engines: {node: '>=16'}
- peerDependencies:
- putout: '>=29'
- dependencies:
- putout: 32.2.0_typescript@5.2.2
- dev: true
+ '@protobufjs/eventemitter@1.1.0': {}
- /@putout/plugin-declare-before-reference/3.0.0_putout@32.2.0:
- resolution: {integrity: sha512-xXVifhMa464CBFKjQ4BTrjFy6gHkS7thJxKeNTMMC6AvtKAYL9DtSqqTl8/WJRR7nBDjUgCWK9MNfaFU4EeEOA==}
- engines: {node: '>=16'}
- peerDependencies:
- putout: '>=31'
+ '@protobufjs/fetch@1.1.0':
dependencies:
- putout: 32.2.0_typescript@5.2.2
- dev: true
+ '@protobufjs/aspromise': 1.1.2
+ '@protobufjs/inquire': 1.1.0
- /@putout/plugin-declare-imports-first/2.1.0_putout@32.2.0:
- resolution: {integrity: sha512-0L9XQ7wM09hOrokLm3IJhh300MkgIa+5XGbJ0JgHKtgY5zhk6hdEtcGefbzhRLbc0oiXFfEsad14z0nSbdvv4A==}
- engines: {node: '>=16'}
- peerDependencies:
- putout: '>=27'
- dependencies:
- putout: 32.2.0_typescript@5.2.2
- dev: true
+ '@protobufjs/float@1.0.2': {}
- /@putout/plugin-declare/2.0.1_putout@32.2.0:
- resolution: {integrity: sha512-cGJUFkBqD1L2uqCdkDDY/qOX3jlcgrNkJhka/P2VupnFSoUYPteUhew1gYp329rGypE1QbCOx+R8cdOZ0S5b7Q==}
- engines: {node: '>=16'}
- peerDependencies:
- putout: '>=31'
- dependencies:
- putout: 32.2.0_typescript@5.2.2
- dev: true
+ '@protobufjs/inquire@1.1.0': {}
- /@putout/plugin-eslint/5.0.0_putout@32.2.0:
- resolution: {integrity: sha512-nifImcSf3IP13lb02jnjQ2dCtqfOmyeNUEVSbYcuINwBEdzXfMf/icEcBmFwKdGT8Vmda+kieUdWPGe1VAteMA==}
- engines: {node: '>=16'}
- peerDependencies:
- putout: '>=29'
- dependencies:
- putout: 32.2.0_typescript@5.2.2
- dev: true
+ '@protobufjs/path@1.1.2': {}
- /@putout/plugin-extract-object-properties/9.0.0_putout@32.2.0:
- resolution: {integrity: sha512-26RafMuaxdjJS9Y9TJC+uyxYU9VyprdQtpcL5xHbUA66DurUbY+7Gg3yxGfs2dNd+czd3gRB2TQ/3x9MSuFmjw==}
- engines: {node: '>=16'}
- peerDependencies:
- putout: '>=29'
- dependencies:
- putout: 32.2.0_typescript@5.2.2
- dev: true
+ '@protobufjs/pool@1.1.0': {}
- /@putout/plugin-extract-sequence-expressions/3.5.0_putout@32.2.0:
- resolution: {integrity: sha512-ywDbX0CpgweJrT7xiakwb2IEjzjQL4tdMXrBuW6OjVzOs6mNcuaFEHGMXnzFuNNCYOWpoUwr2oHdim++8QVuwg==}
- engines: {node: '>=16'}
- peerDependencies:
- putout: '>=25'
- dependencies:
- putout: 32.2.0_typescript@5.2.2
- dev: true
+ '@protobufjs/utf8@1.1.0': {}
- /@putout/plugin-for-of/3.0.0_putout@32.2.0:
- resolution: {integrity: sha512-YqF2EJruY1199TAsCcYC1ue5YZJgLTGMT1Qu63pZVwDtnzT7rqiPQvXJqoCwNLdvtdF5WXiM24VVA8ZFK9+g6w==}
- engines: {node: '>=16'}
- peerDependencies:
- putout: '>=31'
+ '@puppeteer/browsers@0.5.0(typescript@5.7.2)':
dependencies:
- putout: 32.2.0_typescript@5.2.2
- dev: true
+ debug: 4.3.4
+ extract-zip: 2.0.1
+ https-proxy-agent: 5.0.1
+ progress: 2.0.3
+ proxy-from-env: 1.1.0
+ tar-fs: 2.1.1
+ unbzip2-stream: 1.4.3
+ yargs: 17.7.1
+ optionalDependencies:
+ typescript: 5.7.2
+ transitivePeerDependencies:
+ - supports-color
- /@putout/plugin-github/8.2.0_putout@32.2.0:
- resolution: {integrity: sha512-UF8k7dtSp9pgxBBsF4xwLP9h3UIt9nn6riMGXeAyn1d81RZAtZSX0uEIvLQKLW1YRtEpQGHAYGwgPZzX5uaHSQ==}
- engines: {node: '>=16'}
- peerDependencies:
- putout: '>=31'
+ '@puppeteer/browsers@1.9.1':
dependencies:
- fast-deep-equal: 3.1.3
- putout: 32.2.0_typescript@5.2.2
- dev: true
+ debug: 4.3.4
+ extract-zip: 2.0.1
+ progress: 2.0.3
+ proxy-agent: 6.3.1
+ tar-fs: 3.0.4
+ unbzip2-stream: 1.4.3
+ yargs: 17.7.2
+ transitivePeerDependencies:
+ - supports-color
- /@putout/plugin-gitignore/3.1.0_putout@32.2.0:
- resolution: {integrity: sha512-Ik409hROJgaBySxu2b1o8ToaKrMFXFupDOJ9W+yoyTQAJlWy9zgY3ef7w+kkGdPmedBDv4bQBNBhVW67O5eV5A==}
- engines: {node: '>=14'}
- peerDependencies:
- putout: '>=14'
- dependencies:
- putout: 32.2.0_typescript@5.2.2
- dev: true
+ '@putout/babel@2.9.0': {}
- /@putout/plugin-logical-expressions/4.0.0_putout@32.2.0:
- resolution: {integrity: sha512-iiI+5LWsMunMuwjL8UzVpC9okVG+i9p1C2dULCWGMw9Kc571rf0f0wrzNgb6Ow2EjIZ0bdwK786S0ZR54qTthQ==}
- engines: {node: '>=16'}
- peerDependencies:
- putout: '>=31'
+ '@putout/cli-cache@3.2.0':
dependencies:
- putout: 32.2.0_typescript@5.2.2
- dev: true
+ file-entry-cache: 10.0.2
+ find-cache-dir: 5.0.0
+ find-up: 7.0.0
+ imurmurhash: 0.1.4
+ json-stable-stringify-without-jsonify: 1.0.1
+ try-to-catch: 3.0.1
- /@putout/plugin-madrun/16.1.1_putout@32.2.0:
- resolution: {integrity: sha512-e0xMjogtnwJBW8O2AxZ+FxG/ym+dEw59iFgKGCsScFt2g96/YP8nkmXb07Qu3x46cc8AtTinlnQ6UZo35GHK1Q==}
- engines: {node: '>=16'}
- peerDependencies:
- putout: '>=31'
+ '@putout/cli-choose-formatter@4.0.0(putout@36.13.1(eslint@8.57.1)(typescript@5.6.3))':
dependencies:
- putout: 32.2.0_typescript@5.2.2
- dev: true
+ '@putout/cli-choose': 2.0.0
+ find-up: 7.0.0
+ putout: 36.13.1(eslint@8.57.1)(typescript@5.6.3)
- /@putout/plugin-math/2.1.0_putout@32.2.0:
- resolution: {integrity: sha512-HWx6Zv8cAr5fglBNqlaQyQ/CZApxSgM36aJFUTPzcTihgvLUBWkh5P+JrKE+tl0fIqFssRu0XtUUuRkOlrbouw==}
- engines: {node: '>=16'}
- peerDependencies:
- putout: '>=29'
+ '@putout/cli-choose@2.0.0':
dependencies:
- putout: 32.2.0_typescript@5.2.2
- dev: true
+ enquirer: 2.4.1
+ try-to-catch: 3.0.1
- /@putout/plugin-maybe/1.1.4_putout@32.2.0:
- resolution: {integrity: sha512-0UpiLIoJfhfSHr9xW+kMon053zaTLUQrrVdbcb9lncyQ4UHVLxuDuKhPbtRsYo1rem8rOkqQKpH8P+j5U7LaYQ==}
- engines: {node: '>=16'}
- peerDependencies:
- putout: '>=29'
+ '@putout/cli-filesystem@2.0.1': {}
+
+ '@putout/cli-keypress@2.0.0':
dependencies:
- putout: 32.2.0_typescript@5.2.2
- dev: true
+ ci-info: 4.1.0
+ fullstore: 3.0.0
- /@putout/plugin-merge-destructuring-properties/8.0.0_putout@32.2.0:
- resolution: {integrity: sha512-XI53Sum3Ypf3g45ZYSmQW5oa/7dDHDUIHfQXUxUuhgjt1cOidMqkd+dUaMl8OjU/OyQr3B3yNm7asXZF+tZVBQ==}
- engines: {node: '>=16'}
- peerDependencies:
- putout: '>=29'
+ '@putout/cli-match@2.2.0':
dependencies:
- putout: 32.2.0_typescript@5.2.2
- dev: true
+ try-catch: 3.0.1
+ try-to-catch: 3.0.1
- /@putout/plugin-merge-duplicate-functions/2.0.0_putout@32.2.0:
- resolution: {integrity: sha512-FhhyFksBVRR7RfOUWrFgH+j7NvbRkWrKs1mKDWR7TzPbAs2STWmR45j6UeYoItbujWBo0Udk7UxhdUwR6ymRdw==}
- engines: {node: '>=16'}
- peerDependencies:
- putout: '>=32'
+ '@putout/cli-ruler@3.1.0':
dependencies:
- putout: 32.2.0_typescript@5.2.2
- dev: true
+ try-to-catch: 3.0.1
- /@putout/plugin-merge-duplicate-imports/9.0.0_putout@32.2.0:
- resolution: {integrity: sha512-ZD6vxV3SDtwAfTk4wfWqDUJuVTDyf/jDguMKE5lh7JAH+iPris6VDcqjgWYHQLI5ofdM1fIQ98DKVGMRKNmpUg==}
- engines: {node: '>=16'}
- peerDependencies:
- putout: '>=29'
+ '@putout/cli-staged@1.1.0':
dependencies:
- putout: 32.2.0_typescript@5.2.2
- dev: true
+ '@putout/git-status-porcelain': 3.0.0
+ fullstore: 3.0.0
+ once: 1.4.0
+ try-to-catch: 3.0.1
- /@putout/plugin-montag/2.0.0_putout@32.2.0:
- resolution: {integrity: sha512-e0l8ZlxXbn+5Y+hmcrou0ubU3dBou2hDivSHRjL8RQdRlbS/miPVioe2UI5yiK4ogFavFnbd3GgGHkwQmcyd3g==}
- engines: {node: '>=16'}
- peerDependencies:
- putout: '>=29'
+ '@putout/cli-validate-args@2.0.0':
dependencies:
- putout: 32.2.0_typescript@5.2.2
- dev: true
+ fastest-levenshtein: 1.0.16
+ just-kebab-case: 4.2.0
- /@putout/plugin-new/2.1.0_putout@32.2.0:
- resolution: {integrity: sha512-gAzSOLQ3Jo2nhMhJfdGRWwREJMj3v1v8fx7vTMMRx3GJGpEQ+42ibdvPblvJ10+dV2O9//KLDlahzlT8R3on/A==}
- engines: {node: '>=16'}
- peerDependencies:
- putout: '>=29'
+ '@putout/compare@15.0.2':
dependencies:
- putout: 32.2.0_typescript@5.2.2
- dev: true
+ '@putout/babel': 2.9.0
+ '@putout/engine-parser': 11.0.1
+ '@putout/operate': 12.14.0
+ debug: 4.3.7(supports-color@9.4.0)
+ jessy: 3.1.1
+ nessy: 4.0.0
+ transitivePeerDependencies:
+ - supports-color
- /@putout/plugin-nodejs/7.2.0_putout@32.2.0:
- resolution: {integrity: sha512-67vzAfla7VhWCse3HjI2/QJk5ogAMoF1cx88yKR7jfqLThrFG6EvVj09hxwDYwWbUeFhtv2IRTDorsK9xRNJzw==}
- engines: {node: '>=16'}
- peerDependencies:
- putout: '>=31'
+ '@putout/engine-loader@15.0.1(putout@36.13.1(eslint@8.57.1)(typescript@5.6.3))':
dependencies:
- putout: 32.2.0_typescript@5.2.2
- dev: true
+ diff-match-patch: 1.0.5
+ nano-memoize: 3.0.16
+ once: 1.4.0
+ putout: 36.13.1(eslint@8.57.1)(typescript@5.6.3)
+ try-catch: 3.0.1
+ try-to-catch: 3.0.1
- /@putout/plugin-npmignore/2.0.1_putout@32.2.0:
- resolution: {integrity: sha512-+WAS7Pu/+OaycigK59rcRH0VqapM0rA7BOXx8NQH5aOgVkKFDQ6BrXh0mCGskG3PsYRCNoObzlDAz713P38OaQ==}
- engines: {node: '>=14'}
- peerDependencies:
- putout: '>=14'
+ '@putout/engine-parser@11.0.1':
dependencies:
- putout: 32.2.0_typescript@5.2.2
- dev: true
+ '@putout/babel': 2.9.0
+ '@putout/printer': 10.3.0
+ estree-to-babel: 10.0.1
+ nano-memoize: 3.0.16
+ once: 1.4.0
+ recast: 0.23.9
+ try-catch: 3.0.1
+ transitivePeerDependencies:
+ - supports-color
- /@putout/plugin-package-json/5.0.1_putout@32.2.0:
- resolution: {integrity: sha512-a3aLh8t0gZxLn00KUgIfy6QwWIrJTg6O7yQmkucPzcNjb9vtxVm8XgObhibjwYYZItYFpf49/raStU6R5pj8QQ==}
- engines: {node: '>=16'}
- peerDependencies:
- putout: '>=29'
+ '@putout/engine-processor@13.0.0(putout@36.13.1(eslint@8.57.1)(typescript@5.6.3))':
dependencies:
- putout: 32.2.0_typescript@5.2.2
- dev: true
+ '@putout/engine-loader': 15.0.1(putout@36.13.1(eslint@8.57.1)(typescript@5.6.3))
+ once: 1.4.0
+ picomatch: 4.0.2
+ putout: 36.13.1(eslint@8.57.1)(typescript@5.6.3)
+ try-to-catch: 3.0.1
- /@putout/plugin-promises/13.0.0_putout@32.2.0:
- resolution: {integrity: sha512-txXyFWL+8cyni2pzqqs/4HdkLAoOLRRz0WrrDmUHFz9UJT7e0/sFhWWpQ7FozzhN119sesR/+5euAF6NGbhdww==}
- engines: {node: '>=16'}
- peerDependencies:
- putout: '>=32'
+ '@putout/engine-reporter@3.0.0(putout@36.13.1(eslint@8.57.1)(typescript@5.6.3))':
dependencies:
+ '@putout/cli-choose-formatter': 4.0.0(putout@36.13.1(eslint@8.57.1)(typescript@5.6.3))
+ '@putout/cli-keypress': 2.0.0
+ '@putout/engine-loader': 15.0.1(putout@36.13.1(eslint@8.57.1)(typescript@5.6.3))
fullstore: 3.0.0
- putout: 32.2.0_typescript@5.2.2
- dev: true
+ putout: 36.13.1(eslint@8.57.1)(typescript@5.6.3)
+ try-catch: 3.0.1
+ try-to-catch: 3.0.1
- /@putout/plugin-putout-config/3.0.0_putout@32.2.0:
- resolution: {integrity: sha512-oDRx7bVB/MPGrD37Uf0JV/NomxXO/Thch73hAbdSD4EljIQqfyckDESNAM+IDwOOvR8wKhhNd025UhO1+iY13w==}
- engines: {node: '>=16'}
- peerDependencies:
- putout: '>=29'
+ '@putout/engine-runner@22.0.4(putout@36.13.1(eslint@8.57.1)(typescript@5.6.3))':
+ dependencies:
+ '@putout/babel': 2.9.0
+ '@putout/compare': 15.0.2
+ '@putout/engine-parser': 11.0.1
+ '@putout/operate': 12.14.0
+ '@putout/operator-declare': 10.0.1(putout@36.13.1(eslint@8.57.1)(typescript@5.6.3))
+ '@putout/operator-filesystem': 5.0.0(putout@36.13.1(eslint@8.57.1)(typescript@5.6.3))
+ '@putout/operator-json': 2.2.0
+ '@putout/plugin-filesystem': 6.0.0(putout@36.13.1(eslint@8.57.1)(typescript@5.6.3))
+ debug: 4.3.7(supports-color@9.4.0)
+ fullstore: 3.0.0
+ jessy: 3.1.1
+ nessy: 4.0.0
+ once: 1.4.0
+ putout: 36.13.1(eslint@8.57.1)(typescript@5.6.3)
+ try-catch: 3.0.1
+ wraptile: 3.0.0
+ transitivePeerDependencies:
+ - supports-color
+
+ '@putout/eslint-config@9.3.0(eslint@8.57.1)':
dependencies:
- putout: 32.2.0_typescript@5.2.2
- dev: true
+ '@eslint/js': 9.15.0
+ '@stylistic/eslint-plugin-js': 2.11.0(eslint@8.57.1)
+ eslint: 8.57.1
- /@putout/plugin-putout/15.0.0_putout@32.2.0:
- resolution: {integrity: sha512-BurixHy6TFxda0/WtCZ5qEd2+zYzNdk2VDtZTf5xjN2twohyRLzkzOLxZ5cLj+s+bUemNKtLLr4T9Z3n5vGRYQ==}
- engines: {node: '>=16'}
- peerDependencies:
- putout: '>=32'
+ '@putout/eslint@3.6.0(eslint@8.57.1)':
dependencies:
- fullstore: 3.0.0
- just-camel-case: 6.2.0
- parse-import-specifiers: 1.0.2
- putout: 32.2.0_typescript@5.2.2
- try-catch: 3.0.1
- dev: true
+ eslint: 8.57.1
+ find-up: 7.0.0
+ try-to-catch: 3.0.1
- /@putout/plugin-regexp/7.0.0_putout@32.2.0:
- resolution: {integrity: sha512-Yl1Sjgp964opvvhUCTaadeqWtYam6tNr57IvBCrpaUIaT/EefYvzU1FBn8yiusY/29PI/agELa7YhOmmjRcANQ==}
- engines: {node: '>=16'}
- peerDependencies:
- putout: '>=29'
+ '@putout/formatter-codeframe@7.0.0(putout@36.13.1(eslint@8.57.1)(typescript@5.6.3))':
dependencies:
- putout: 32.2.0_typescript@5.2.2
- regexp-tree: 0.1.27
- try-catch: 3.0.1
- dev: true
+ '@putout/babel': 2.9.0
+ '@putout/formatter-json': 2.0.0(putout@36.13.1(eslint@8.57.1)(typescript@5.6.3))
+ chalk: 5.3.0
+ putout: 36.13.1(eslint@8.57.1)(typescript@5.6.3)
+ table: 6.8.2
- /@putout/plugin-remove-console/6.0.0_putout@32.2.0:
- resolution: {integrity: sha512-MpnIc0JmB7z3VMcqJnBdzkg2NTOorLb6WKpt3PWlSh8HZ1lqz78CRW7styHYTtSg5fcp/zkPUk4nkbxMPuoOiw==}
- engines: {node: '>=16'}
- peerDependencies:
- putout: '>=29'
+ '@putout/formatter-dump@5.0.0(putout@36.13.1(eslint@8.57.1)(typescript@5.6.3))':
dependencies:
- putout: 32.2.0_typescript@5.2.2
- dev: true
+ '@putout/formatter-json': 2.0.0(putout@36.13.1(eslint@8.57.1)(typescript@5.6.3))
+ chalk: 5.3.0
+ putout: 36.13.1(eslint@8.57.1)(typescript@5.6.3)
+ table: 6.8.2
- /@putout/plugin-remove-constant-conditions/4.0.2_putout@32.2.0:
- resolution: {integrity: sha512-UN+SlFVkSFbKjA9aw9WT32SaKnfeBo+TX0fqDu/dAyoe7gp8GAXRnDr/Yw02kRkDHmAYEcoKd1EGpRhhWHX1Gg==}
- engines: {node: '>=16'}
- peerDependencies:
- putout: '>=25'
+ '@putout/formatter-frame@6.0.0(putout@36.13.1(eslint@8.57.1)(typescript@5.6.3))':
dependencies:
- putout: 32.2.0_typescript@5.2.2
- dev: true
+ '@putout/formatter-codeframe': 7.0.0(putout@36.13.1(eslint@8.57.1)(typescript@5.6.3))
+ putout: 36.13.1(eslint@8.57.1)(typescript@5.6.3)
- /@putout/plugin-remove-debugger/5.0.0_putout@32.2.0:
- resolution: {integrity: sha512-a5Qp8+yWl9I2pGs6YrW4lnCRALcW1Uqh9CGcHnSPfh1mYguUHSAx/grb27ugLeZS4ycOjN+GX3UiFE1qYw0dtQ==}
- engines: {node: '>=16'}
- peerDependencies:
- putout: '>=25'
+ '@putout/formatter-json-lines@3.0.0(putout@36.13.1(eslint@8.57.1)(typescript@5.6.3))':
dependencies:
- putout: 32.2.0_typescript@5.2.2
- dev: true
+ putout: 36.13.1(eslint@8.57.1)(typescript@5.6.3)
- /@putout/plugin-remove-duplicate-case/3.0.0_putout@32.2.0:
- resolution: {integrity: sha512-NLj45ob0RDk///SNTo3h+rJGbK3l22RkkRih2e7xg7ky6fKMtBCuMk0IYI8/mNNDR0Xm6UKwvBC9nFzqp9stTw==}
- engines: {node: '>=16'}
- peerDependencies:
- putout: '>=30'
+ '@putout/formatter-json@2.0.0(putout@36.13.1(eslint@8.57.1)(typescript@5.6.3))':
dependencies:
- putout: 32.2.0_typescript@5.2.2
- dev: true
+ putout: 36.13.1(eslint@8.57.1)(typescript@5.6.3)
- /@putout/plugin-remove-duplicate-keys/3.0.0_putout@32.2.0:
- resolution: {integrity: sha512-9IZXP2RTTUaCYV+jn48QLoG1/kVZSz8ISeUYzLY3aNamajmkw523WK4cqxvrvZ4FdpmE/P3HH4UFjR6wDwgnuw==}
- engines: {node: '>=16'}
- peerDependencies:
- putout: '>=25'
+ '@putout/formatter-memory@4.0.1(putout@36.13.1(eslint@8.57.1)(typescript@5.6.3))':
dependencies:
- fullstore: 3.0.0
- putout: 32.2.0_typescript@5.2.2
- dev: true
+ '@putout/formatter-dump': 5.0.0(putout@36.13.1(eslint@8.57.1)(typescript@5.6.3))
+ chalk: 5.3.0
+ cli-progress: 3.12.0
+ format-io: 2.0.0
+ montag: 1.2.1
+ once: 1.4.0
+ putout: 36.13.1(eslint@8.57.1)(typescript@5.6.3)
+
+ '@putout/formatter-progress-bar@4.0.1(putout@36.13.1(eslint@8.57.1)(typescript@5.6.3))':
+ dependencies:
+ '@putout/formatter-dump': 5.0.0(putout@36.13.1(eslint@8.57.1)(typescript@5.6.3))
+ chalk: 5.3.0
+ cli-progress: 3.12.0
+ once: 1.4.0
+ putout: 36.13.1(eslint@8.57.1)(typescript@5.6.3)
- /@putout/plugin-remove-empty/10.4.0_putout@32.2.0:
- resolution: {integrity: sha512-4T8dL0kO4smmkuF61JXmTLQsBOZlwc0Fyp/GJ1/ZowcNekhsRGMavf3D6K7OntAUg3W3nzEQaDHqohbA2tne8Q==}
- engines: {node: '>=16'}
- peerDependencies:
- putout: '>=29'
+ '@putout/formatter-progress@5.0.0(putout@36.13.1(eslint@8.57.1)(typescript@5.6.3))':
dependencies:
- putout: 32.2.0_typescript@5.2.2
- dev: true
+ '@putout/formatter-dump': 5.0.0(putout@36.13.1(eslint@8.57.1)(typescript@5.6.3))
+ putout: 36.13.1(eslint@8.57.1)(typescript@5.6.3)
- /@putout/plugin-remove-iife/4.1.0_putout@32.2.0:
- resolution: {integrity: sha512-sprRQalN9BRJ28iz2LPhnz4bM6qjwlnRZoHZY7+a4Grqp/mFeKcnvfWsL/EUaeykHCnSk/tC6umLlCbme/I8OA==}
- engines: {node: '>=16'}
- peerDependencies:
- putout: '>=29'
+ '@putout/formatter-stream@5.0.0(putout@36.13.1(eslint@8.57.1)(typescript@5.6.3))':
dependencies:
- putout: 32.2.0_typescript@5.2.2
- dev: true
+ chalk: 5.3.0
+ putout: 36.13.1(eslint@8.57.1)(typescript@5.6.3)
+ table: 6.8.2
- /@putout/plugin-remove-nested-blocks/6.3.0_putout@32.2.0:
- resolution: {integrity: sha512-H4acUrKSuqHAWLeIZNZ37LLqHDFrncdu2NxArBLkjZXSYl1e4LCVJbEmfjtk3gqsBax2bQO32H+ir/FOHQRgdw==}
- engines: {node: '>=16'}
- peerDependencies:
- putout: '>=25'
+ '@putout/formatter-time@3.0.1(putout@36.13.1(eslint@8.57.1)(typescript@5.6.3))':
dependencies:
- putout: 32.2.0_typescript@5.2.2
- dev: true
+ '@putout/formatter-dump': 5.0.0(putout@36.13.1(eslint@8.57.1)(typescript@5.6.3))
+ chalk: 5.3.0
+ cli-progress: 3.12.0
+ format-io: 2.0.0
+ montag: 1.2.1
+ once: 1.4.0
+ putout: 36.13.1(eslint@8.57.1)(typescript@5.6.3)
+ timer-node: 5.0.7
- /@putout/plugin-remove-unreachable-code/1.2.0_putout@32.2.0:
- resolution: {integrity: sha512-3UkXYoeXVeSfcTrHENsRhbmsh4oxUgIpsAkFn7knKmi/WCVH7n0jQXUX+RRziX4E0sgs79mFodnMhQWtqMFXZg==}
- engines: {node: '>=8.3.0'}
- peerDependencies:
- putout: '>=4.31'
+ '@putout/git-status-porcelain@3.0.0': {}
+
+ '@putout/operate@12.14.0':
dependencies:
- putout: 32.2.0_typescript@5.2.2
- dev: true
+ '@putout/babel': 2.9.0
- /@putout/plugin-remove-unreferenced-variables/3.1.0_putout@32.2.0:
- resolution: {integrity: sha512-Ve62OjbpmY76Z8fi/lv8PM4i1Adk6KaYfuQCwzZy9QtOBIFXyhWgJKEUPLPoJGKF2oH6RmIc7xyrJwb6F14Sig==}
- engines: {node: '>=16'}
- peerDependencies:
- putout: '>=30'
+ '@putout/operator-add-args@9.0.0(putout@36.13.1(eslint@8.57.1)(typescript@5.6.3))':
dependencies:
- putout: 32.2.0_typescript@5.2.2
- dev: true
+ '@putout/babel': 2.9.0
+ '@putout/compare': 15.0.2
+ '@putout/engine-parser': 11.0.1
+ putout: 36.13.1(eslint@8.57.1)(typescript@5.6.3)
+ transitivePeerDependencies:
+ - supports-color
- /@putout/plugin-remove-unused-expressions/7.0.0_putout@32.2.0:
- resolution: {integrity: sha512-GZsSz8ZDwvSfrhQaRB+BAWHb56R8ZstuKAQYZNIlG2zqugdWxHukXj0jWdlrB0Ky+s42qjYRyQDBgjz/DUBsbA==}
- engines: {node: '>=16'}
- peerDependencies:
- putout: '>=30'
+ '@putout/operator-declare@10.0.1(putout@36.13.1(eslint@8.57.1)(typescript@5.6.3))':
dependencies:
- putout: 32.2.0_typescript@5.2.2
- dev: true
+ '@putout/babel': 2.9.0
+ '@putout/compare': 15.0.2
+ '@putout/engine-parser': 11.0.1
+ '@putout/operate': 12.14.0
+ putout: 36.13.1(eslint@8.57.1)(typescript@5.6.3)
+ transitivePeerDependencies:
+ - supports-color
- /@putout/plugin-remove-unused-for-of-variables/3.0.1_putout@32.2.0:
- resolution: {integrity: sha512-nFsBnRYdvSEBvOmKOzqMaWSlimX6K6jLl3HRX0KlfyJI/EOQYqjqPBvTRq3XS0resZw4LZ2cSPduL/dYuR1juw==}
- engines: {node: '>=16'}
- peerDependencies:
- putout: '>=25'
+ '@putout/operator-filesystem@5.0.0(putout@36.13.1(eslint@8.57.1)(typescript@5.6.3))':
dependencies:
- putout: 32.2.0_typescript@5.2.2
- dev: true
+ '@putout/babel': 2.9.0
+ '@putout/operate': 12.14.0
+ fullstore: 3.0.0
+ putout: 36.13.1(eslint@8.57.1)(typescript@5.6.3)
+ try-catch: 3.0.1
- /@putout/plugin-remove-unused-private-fields/2.1.0_putout@32.2.0:
- resolution: {integrity: sha512-g+hZPUDuJMCSrN4r2pWD5vPLGBouD651gbD2n1furOzEXFbduzpbMZqmn2pEBvOLu2e+61m03nLX3AUZmSgEYQ==}
- engines: {node: '>=16'}
- peerDependencies:
- putout: '>=25'
+ '@putout/operator-ignore@1.2.0':
dependencies:
- putout: 32.2.0_typescript@5.2.2
- dev: true
+ '@putout/babel': 2.9.0
+ '@putout/operate': 12.14.0
- /@putout/plugin-remove-unused-variables/7.0.0_putout@32.2.0:
- resolution: {integrity: sha512-OQGZ+TsnZbdwaKbnaujviVDgdlF8t0mbum7UPZnayujqGJCyDe67QeSa9u7gC6i7WQbaNhwjH2nk5MPDRv9rgg==}
- engines: {node: '>=16'}
- peerDependencies:
- putout: '>=32'
+ '@putout/operator-json@2.2.0':
dependencies:
- putout: 32.2.0_typescript@5.2.2
- dev: true
+ remove-blank-lines: 1.4.1
- /@putout/plugin-remove-useless-arguments/8.0.0_putout@32.2.0:
- resolution: {integrity: sha512-rW5a2FGqYta+vIXvTGWlyZmBAHMmmTLjqzWCAnUAxquWhI9JaedKXlEccQ2j9xKc4sqLzqvj3AiKGjdUY3jB6Q==}
- engines: {node: '>=16'}
- peerDependencies:
- putout: '>=31'
+ '@putout/operator-match-files@5.0.0(putout@36.13.1(eslint@8.57.1)(typescript@5.6.3))':
dependencies:
- putout: 32.2.0_typescript@5.2.2
- dev: true
+ '@putout/babel': 2.9.0
+ '@putout/engine-parser': 11.0.1
+ '@putout/operator-filesystem': 5.0.0(putout@36.13.1(eslint@8.57.1)(typescript@5.6.3))
+ '@putout/operator-json': 2.2.0
+ putout: 36.13.1(eslint@8.57.1)(typescript@5.6.3)
- /@putout/plugin-remove-useless-array-constructor/2.0.0_putout@32.2.0:
- resolution: {integrity: sha512-R3GAHGeDoh916SSEFrPaiEu9BylOrIP07+Xh+v+hzZuw/tINiA94sdWZ4BPhOmIX3qbWe6LqqVQ4j8VikaaF9Q==}
- engines: {node: '>=14'}
- peerDependencies:
- putout: '>=30'
+ '@putout/operator-regexp@1.0.0(putout@36.13.1(eslint@8.57.1)(typescript@5.6.3))':
dependencies:
- putout: 32.2.0_typescript@5.2.2
- dev: true
+ putout: 36.13.1(eslint@8.57.1)(typescript@5.6.3)
+ regexp-tree: 0.1.27
- /@putout/plugin-remove-useless-array-entries/1.0.0_putout@32.2.0:
- resolution: {integrity: sha512-ArLWIUXH1ajRPRe/6Pv4MhW3HAFoet4dy1fMlYVa+2i2ydjVYsKnwdJU70cI9B2Mo25JQXUY5yskkSaRQx339g==}
- engines: {node: '>=14'}
- peerDependencies:
- putout: '>=23'
+ '@putout/operator-rename-files@2.0.0(putout@36.13.1(eslint@8.57.1)(typescript@5.6.3))':
dependencies:
- putout: 32.2.0_typescript@5.2.2
- dev: true
+ '@putout/operator-filesystem': 5.0.0(putout@36.13.1(eslint@8.57.1)(typescript@5.6.3))
+ putout: 36.13.1(eslint@8.57.1)(typescript@5.6.3)
- /@putout/plugin-remove-useless-assign/1.1.0_putout@32.2.0:
- resolution: {integrity: sha512-lfTkCAVYKacsEuZRjVogH29FUH9xE3+7+15VEVzPPMiBdsACOJ9561yldXeqy6u/+9rwmmkYr8W1Bt7VyQEyvg==}
- engines: {node: '>=16'}
- peerDependencies:
- putout: '>=26'
+ '@putout/plugin-apply-at@2.0.0(putout@36.13.1(eslint@8.57.1)(typescript@5.6.3))':
dependencies:
- putout: 32.2.0_typescript@5.2.2
- dev: true
+ putout: 36.13.1(eslint@8.57.1)(typescript@5.6.3)
- /@putout/plugin-remove-useless-constructor/1.0.0_putout@32.2.0:
- resolution: {integrity: sha512-K/HAWhsO65T1pPkYjHEH1u8pG7sz69sqzU509b4mWQx6C4rWNRCEkucuF1MQT2eNaawrHE+TUfzJOWoQ2J90vw==}
- engines: {node: '>=14'}
- peerDependencies:
- putout: '>=16'
+ '@putout/plugin-apply-destructuring@7.1.0(putout@36.13.1(eslint@8.57.1)(typescript@5.6.3))':
dependencies:
- putout: 32.2.0_typescript@5.2.2
- dev: true
+ putout: 36.13.1(eslint@8.57.1)(typescript@5.6.3)
- /@putout/plugin-remove-useless-continue/2.0.0_putout@32.2.0:
- resolution: {integrity: sha512-OxG5fr4uIGSmITzX4pkYPBYnn1NaGu9ZSBCzcrNrG5/7mGNIO9YnC9yyVRjTXELdxJXL5sjxzoBCSsS33PMwFQ==}
- engines: {node: '>=16'}
- peerDependencies:
- putout: '>=28'
+ '@putout/plugin-apply-dot-notation@2.0.0(putout@36.13.1(eslint@8.57.1)(typescript@5.6.3))':
dependencies:
- putout: 32.2.0_typescript@5.2.2
- dev: true
+ putout: 36.13.1(eslint@8.57.1)(typescript@5.6.3)
- /@putout/plugin-remove-useless-escape/3.2.0_putout@32.2.0:
- resolution: {integrity: sha512-9Nxf3mJWnwpg1mYDwZv2pS0eFefuOdbdTlQswfvRvGAzrS7u+2md1/uN/cPGXIr8nqQZG4ldfN3NpEWEynxeNw==}
- engines: {node: '>=16'}
- peerDependencies:
- putout: '>=25'
+ '@putout/plugin-apply-early-return@3.0.0(putout@36.13.1(eslint@8.57.1)(typescript@5.6.3))':
dependencies:
- emoji-regex: 10.2.1
- putout: 32.2.0_typescript@5.2.2
- dev: true
+ putout: 36.13.1(eslint@8.57.1)(typescript@5.6.3)
- /@putout/plugin-remove-useless-functions/3.0.0_putout@32.2.0:
- resolution: {integrity: sha512-50WsmBy0Kvdqj+uYmSyyUZuy0NptYk2GrvpyIzgmjiJaNtSLgUcTRViRki/0NTsbDt73q/cdBypPdomMKoYJiw==}
- engines: {node: '>=16'}
- peerDependencies:
- putout: '>=30'
+ '@putout/plugin-apply-flat-map@2.0.0(putout@36.13.1(eslint@8.57.1)(typescript@5.6.3))':
dependencies:
- putout: 32.2.0_typescript@5.2.2
- dev: true
+ putout: 36.13.1(eslint@8.57.1)(typescript@5.6.3)
- /@putout/plugin-remove-useless-map/1.1.0_putout@32.2.0:
- resolution: {integrity: sha512-/5VQNb1YkcTZ16FqFrSfoILgGqsMJ6zIaKP1LlhZa3Xt1svLoN2Y2NIve9mSn7NgxFWnR1eUZPaeXl+FT+ltog==}
- engines: {node: '>=14'}
- peerDependencies:
- putout: '>=18'
+ '@putout/plugin-apply-optional-chaining@6.0.0(putout@36.13.1(eslint@8.57.1)(typescript@5.6.3))':
dependencies:
- putout: 32.2.0_typescript@5.2.2
- dev: true
+ putout: 36.13.1(eslint@8.57.1)(typescript@5.6.3)
- /@putout/plugin-remove-useless-operand/2.1.0_putout@32.2.0:
- resolution: {integrity: sha512-Et+8ZHBRD1zTHjYu71lC22rRuwayI4r4yQw+kibvwIEgVvLBbJu8DhlTKKjWkH04BQWEtigSwd/kKQSL0bVo+Q==}
- engines: {node: '>=16'}
- peerDependencies:
- putout: '>=25'
+ '@putout/plugin-apply-overrides@2.1.0(putout@36.13.1(eslint@8.57.1)(typescript@5.6.3))':
dependencies:
- putout: 32.2.0_typescript@5.2.2
- dev: true
+ putout: 36.13.1(eslint@8.57.1)(typescript@5.6.3)
- /@putout/plugin-remove-useless-replace/1.0.4_putout@32.2.0:
- resolution: {integrity: sha512-w4TdcqM/9UOjv3YtyRldV49P95o32MIYyVe4aSxyAD4m29f/tnzD11RsCDC20mHZzSK3BIVpB72guK2U0ylqGQ==}
- engines: {node: '>=16'}
- peerDependencies:
- putout: '>=26'
+ '@putout/plugin-apply-starts-with@1.1.0(putout@36.13.1(eslint@8.57.1)(typescript@5.6.3))':
dependencies:
- putout: 32.2.0_typescript@5.2.2
- dev: true
+ putout: 36.13.1(eslint@8.57.1)(typescript@5.6.3)
- /@putout/plugin-remove-useless-return/5.0.0_putout@32.2.0:
- resolution: {integrity: sha512-d71iFuVF1dOa79ZNXwzFponkuwRKrmawnIzKuPXyHQpGyJcngVbVOOyPo/wDrSQOFHR0hMOo0/awscS73cq5qA==}
- engines: {node: '>=16'}
- peerDependencies:
- putout: '>=29'
+ '@putout/plugin-apply-template-literals@3.0.0(putout@36.13.1(eslint@8.57.1)(typescript@5.6.3))':
dependencies:
- putout: 32.2.0_typescript@5.2.2
- dev: true
+ putout: 36.13.1(eslint@8.57.1)(typescript@5.6.3)
- /@putout/plugin-remove-useless-spread/8.0.1_putout@32.2.0:
- resolution: {integrity: sha512-wcNuu9gB0Ct8SrP+R9tHLJGWwKyIJaI5IkrzN2Uc1Gcjb4qTIPJOs8LR5g1311ykZUKm6GIsvngD1nCMYP8aUg==}
- engines: {node: '>=16'}
- peerDependencies:
- putout: '>=30'
+ '@putout/plugin-browserlist@2.0.0(putout@36.13.1(eslint@8.57.1)(typescript@5.6.3))':
dependencies:
- putout: 32.2.0_typescript@5.2.2
- dev: true
+ putout: 36.13.1(eslint@8.57.1)(typescript@5.6.3)
- /@putout/plugin-remove-useless-template-expressions/2.0.0_putout@32.2.0:
- resolution: {integrity: sha512-1Dcnjc4h2Nd6eSvdTEhgtSbqvCMVxv6Mbvhj2yXjzNyP0vMi/CIUta23gM7Ie5Kzpkf/g9xhUUVqYVwYKjIkKw==}
- engines: {node: '>=16'}
- peerDependencies:
- putout: '>=29'
+ '@putout/plugin-conditions@5.0.0(putout@36.13.1(eslint@8.57.1)(typescript@5.6.3))':
dependencies:
- putout: 32.2.0_typescript@5.2.2
- dev: true
+ putout: 36.13.1(eslint@8.57.1)(typescript@5.6.3)
- /@putout/plugin-remove-useless-variables/10.0.0_putout@32.2.0:
- resolution: {integrity: sha512-7Xco4Jc25uYrdQG9GD43fiHUE6LrEFfrjtJ6E6x5uJKaC+Lqw/GngtebRPd5WTRAsS4feDlDVDV/bbuDZnNELQ==}
- engines: {node: '>=16'}
- peerDependencies:
- putout: '>=32'
+ '@putout/plugin-convert-apply-to-spread@4.0.0(putout@36.13.1(eslint@8.57.1)(typescript@5.6.3))':
dependencies:
- putout: 32.2.0_typescript@5.2.2
- dev: true
+ putout: 36.13.1(eslint@8.57.1)(typescript@5.6.3)
- /@putout/plugin-reuse-duplicate-init/5.0.0_putout@32.2.0:
- resolution: {integrity: sha512-RdyWx7B9p2J6g0rsY5wCUIsCXVqn4NiZCF46tr//HCahJdVg6luCiT657qtY+JEbTkMBcCp6qQTRcIVcBGKa3Q==}
- engines: {node: '>=16'}
- peerDependencies:
- putout: '>=29'
+ '@putout/plugin-convert-arguments-to-rest@3.1.0(putout@36.13.1(eslint@8.57.1)(typescript@5.6.3))':
dependencies:
- putout: 32.2.0_typescript@5.2.2
- dev: true
+ putout: 36.13.1(eslint@8.57.1)(typescript@5.6.3)
- /@putout/plugin-simplify-assignment/3.1.0_putout@32.2.0:
- resolution: {integrity: sha512-pwYwK96USqM//E15/SAQ9x4DTzbMV3oBXCBDtliXQeVsDKGfm0Wn17LStl9yQ88M9hrplXFBGNHuQUAUOBAPeQ==}
- engines: {node: '>=16'}
- peerDependencies:
- putout: '>=29'
+ '@putout/plugin-convert-array-copy-to-slice@3.0.0(putout@36.13.1(eslint@8.57.1)(typescript@5.6.3))':
dependencies:
- putout: 32.2.0_typescript@5.2.2
- dev: true
+ putout: 36.13.1(eslint@8.57.1)(typescript@5.6.3)
- /@putout/plugin-simplify-boolean-return/1.1.0_putout@32.2.0:
- resolution: {integrity: sha512-c9yJVDX2MyoNeboj/saTiWUg049FYKFYi/wxuer+glWFFydXlyGwxEBwIuqitDaiqMkKGTr8zh7uF/RXDmxB9A==}
- engines: {node: '>=16'}
- peerDependencies:
- putout: '>=29'
+ '@putout/plugin-convert-assignment-to-arrow-function@1.2.0(putout@36.13.1(eslint@8.57.1)(typescript@5.6.3))':
dependencies:
- putout: 32.2.0_typescript@5.2.2
- dev: true
+ putout: 36.13.1(eslint@8.57.1)(typescript@5.6.3)
- /@putout/plugin-simplify-ternary/6.1.0_putout@32.2.0:
- resolution: {integrity: sha512-XtfbdPHywYZaAVOYZUg1zMoz/BqKwgqcZazw4QL+TKgMp5HYIFHQ5FfqyvhYQOX+3v9NQq1lmLuHjT7mFn4Gyg==}
- engines: {node: '>=16'}
- peerDependencies:
- putout: '>=30'
+ '@putout/plugin-convert-assignment-to-comparison@2.0.0(putout@36.13.1(eslint@8.57.1)(typescript@5.6.3))':
dependencies:
- putout: 32.2.0_typescript@5.2.2
- dev: true
+ putout: 36.13.1(eslint@8.57.1)(typescript@5.6.3)
- /@putout/plugin-split-nested-destructuring/3.0.0_putout@32.2.0:
- resolution: {integrity: sha512-f0iLhhD2T2v1PMetc/KRoFU/46buGOhtuKDLWTmc1A9LAJSL1YLPOgrleTnZZb6virchPt09GKfJrrXAhjzsDA==}
- engines: {node: '>=16'}
- peerDependencies:
- putout: '>=29'
+ '@putout/plugin-convert-assignment-to-declaration@1.0.1(putout@36.13.1(eslint@8.57.1)(typescript@5.6.3))':
dependencies:
- putout: 32.2.0_typescript@5.2.2
- dev: true
+ putout: 36.13.1(eslint@8.57.1)(typescript@5.6.3)
- /@putout/plugin-split-variable-declarations/3.0.0_putout@32.2.0:
- resolution: {integrity: sha512-K8b958p3+5c+hB8YxqBgrUGV2W79lHnsokzFGSe1KqpSmYzoM1cIEiT7MxpcA+WJi3rAlQ2iPO6ehWUIM+9USQ==}
- engines: {node: '>=16'}
- peerDependencies:
- putout: '>=29'
+ '@putout/plugin-convert-concat-to-flat@1.0.0(putout@36.13.1(eslint@8.57.1)(typescript@5.6.3))':
dependencies:
- putout: 32.2.0_typescript@5.2.2
- dev: true
+ putout: 36.13.1(eslint@8.57.1)(typescript@5.6.3)
- /@putout/plugin-strict-mode/9.0.0_putout@32.2.0:
- resolution: {integrity: sha512-T6kDGZ+x2Xa8Aj3m3re6XTKLW3aCkTZ1jU7Ygv/8MyXGYz+3CgJQaEUhK8BUZkQ1LCdW7nhBzk6GZt2Ovy8lZw==}
- engines: {node: '>=16'}
- peerDependencies:
- putout: '>=32'
+ '@putout/plugin-convert-const-to-let@3.0.0(putout@36.13.1(eslint@8.57.1)(typescript@5.6.3))':
dependencies:
- putout: 32.2.0_typescript@5.2.2
- dev: true
+ putout: 36.13.1(eslint@8.57.1)(typescript@5.6.3)
- /@putout/plugin-tape/11.1.0_putout@32.2.0:
- resolution: {integrity: sha512-oRRoHLTJhUR5XsN5Sr132UuWDIHg1iDDW47VYr6t0VBR0c+3VpU4z6LuoI74WqBVRDHgkHkf/M5QpAKkRbytIQ==}
- engines: {node: '>=16'}
- peerDependencies:
- putout: '>=29'
+ '@putout/plugin-convert-index-of-to-includes@2.0.1(putout@36.13.1(eslint@8.57.1)(typescript@5.6.3))':
dependencies:
- putout: 32.2.0_typescript@5.2.2
- dev: true
+ putout: 36.13.1(eslint@8.57.1)(typescript@5.6.3)
- /@putout/plugin-try-catch/3.0.0_putout@32.2.0:
- resolution: {integrity: sha512-JtmeB9ZXvWZdnnmw8KZSLBxNzMQ5YUqn3bt+bB46PXXqicOhoHcZBx/O4Rn0TvmfIztf+Li2yyF4tPXfpNVjUQ==}
- engines: {node: '>=16'}
- peerDependencies:
- putout: '>=30'
+ '@putout/plugin-convert-object-assign-to-merge-spread@6.0.0(putout@36.13.1(eslint@8.57.1)(typescript@5.6.3))':
dependencies:
- putout: 32.2.0_typescript@5.2.2
- dev: true
+ putout: 36.13.1(eslint@8.57.1)(typescript@5.6.3)
- /@putout/plugin-types/3.0.0_putout@32.2.0:
- resolution: {integrity: sha512-DX/uhechHHBgJkDgk8+lyUjQn6kIktYVVHX2l9pVlqy9BIot4lG5Hy3AAFBm7/LeBrTNafy7z3s/sZmqBHj3GA==}
- engines: {node: '>=16'}
- peerDependencies:
- putout: '>=31'
+ '@putout/plugin-convert-object-entries-to-array-entries@3.0.1(putout@36.13.1(eslint@8.57.1)(typescript@5.6.3))':
dependencies:
- putout: 32.2.0_typescript@5.2.2
- dev: true
+ putout: 36.13.1(eslint@8.57.1)(typescript@5.6.3)
- /@putout/plugin-typescript/5.0.3_putout@32.2.0:
- resolution: {integrity: sha512-Fw6sOXwOOIMHbW7EOFtR3GjWAXz/f6Gm2GQdkDLlDycLT6ewj3EzG6nv9rPTrDXFI/jYbVqsBMLqLBbJb5vpPw==}
- engines: {node: '>=16'}
- peerDependencies:
- putout: '>=31'
+ '@putout/plugin-convert-optional-to-logical@4.0.0(putout@36.13.1(eslint@8.57.1)(typescript@5.6.3))':
dependencies:
- putout: 32.2.0_typescript@5.2.2
- dev: true
+ putout: 36.13.1(eslint@8.57.1)(typescript@5.6.3)
- /@putout/plugin-webpack/3.0.0_putout@32.2.0:
- resolution: {integrity: sha512-qYUUvasY7AuWYGVOSuSnxYOMBcbIFIt+MaesxLW5j3sE0I51BkyiA8RPS7nUTW3nuzRt4TnzSdHS66RC6VO7nw==}
- engines: {node: '>=16'}
- peerDependencies:
- putout: '>=29'
+ '@putout/plugin-convert-quotes-to-backticks@3.0.0(putout@36.13.1(eslint@8.57.1)(typescript@5.6.3))':
dependencies:
- putout: 32.2.0_typescript@5.2.2
- dev: true
+ putout: 36.13.1(eslint@8.57.1)(typescript@5.6.3)
- /@putout/printer/5.20.0:
- resolution: {integrity: sha512-fo4Ada5igMG9s6Kt3NZBEAxPqjIQKd2yZZRV56iFJ3mEEqQ+mBVhQ5khGPNf/HWMHiV5KXABRUC6tn8izwa7Jg==}
- engines: {node: '>=16'}
+ '@putout/plugin-convert-template-to-string@2.0.0(putout@36.13.1(eslint@8.57.1)(typescript@5.6.3))':
dependencies:
- '@putout/babel': 1.2.2
- '@putout/compare': 13.0.1
- '@putout/operate': 11.0.0
- '@putout/processor-json': 7.0.1
- fullstore: 3.0.0
- just-snake-case: 3.2.0
- parse-import-specifiers: 1.0.2
- rendy: 3.1.1
- transitivePeerDependencies:
- - supports-color
- dev: true
+ putout: 36.13.1(eslint@8.57.1)(typescript@5.6.3)
- /@putout/processor-css/7.0.1_eccp55ufww7m6mic6rsho5pehq:
- resolution: {integrity: sha512-GNhRw+XbF/Tc8S3hqZhVJjKc+GGVyBo2HAJ15nZ85J+7hd+SC95oQoOKLzgb01trzwRR7Cdct6uQy+WfdMf55g==}
- engines: {node: '>=16'}
- peerDependencies:
- putout: '>=29'
+ '@putout/plugin-convert-to-arrow-function@4.0.0(putout@36.13.1(eslint@8.57.1)(typescript@5.6.3))':
dependencies:
- cosmiconfig: 8.3.6_typescript@5.2.2
- deepmerge: 4.3.1
- putout: 32.2.0_typescript@5.2.2
- stylelint: 15.10.3_typescript@5.2.2
- stylelint-config-standard: 33.0.0_stylelint@15.10.3
- transitivePeerDependencies:
- - supports-color
- - typescript
- dev: true
+ putout: 36.13.1(eslint@8.57.1)(typescript@5.6.3)
- /@putout/processor-ignore/4.0.0_putout@32.2.0:
- resolution: {integrity: sha512-ZrkC3eHgxhzFr7tI0rfxIpHBrBhEHfX6SeCjirrWqvCKIGGese32ng5n+5DG/rnqGsQgZqyVdPbbXW7OIAnr4w==}
- engines: {node: '>=16'}
- peerDependencies:
- putout: '>=29'
+ '@putout/plugin-coverage@1.0.0(putout@36.13.1(eslint@8.57.1)(typescript@5.6.3))':
dependencies:
- putout: 32.2.0_typescript@5.2.2
- dev: true
+ putout: 36.13.1(eslint@8.57.1)(typescript@5.6.3)
- /@putout/processor-javascript/5.0.0_putout@32.2.0:
- resolution: {integrity: sha512-0V2S2GTtzSXo1rLwCnEplVYZnAC2e2jdmSUig1p9qx9FjQj4MHCEHsmRjKkjh0NsajKUY5t2Z+ZLZ6GeagUlxg==}
- engines: {node: '>=16'}
- peerDependencies:
- putout: '>=29'
+ '@putout/plugin-declare-before-reference@4.0.0(putout@36.13.1(eslint@8.57.1)(typescript@5.6.3))':
dependencies:
- putout: 32.2.0_typescript@5.2.2
- dev: true
+ putout: 36.13.1(eslint@8.57.1)(typescript@5.6.3)
- /@putout/processor-json/7.0.1:
- resolution: {integrity: sha512-qK1TFH5PkkLp+s6vJHWAyoy2famr9GDcvg15jLbWMW702adSISzEGqujgz7qC1cru/AxanabPLX4+kEgDKbMnA==}
- engines: {node: '>=16'}
+ '@putout/plugin-declare-imports-first@2.1.0(putout@36.13.1(eslint@8.57.1)(typescript@5.6.3))':
dependencies:
- remove-blank-lines: 1.4.1
- dev: true
+ putout: 36.13.1(eslint@8.57.1)(typescript@5.6.3)
- /@putout/processor-markdown/10.1.2:
- resolution: {integrity: sha512-IqxmTBZT37Nlysb0pOmMIR9BymI/N/g/fmLb+iubcZdQzprkCA8AwXvos2kAcJTjxWX0iczONshpdJzkrgNKMQ==}
- engines: {node: '>=16'}
+ '@putout/plugin-declare@4.0.0(putout@36.13.1(eslint@8.57.1)(typescript@5.6.3))':
dependencies:
- '@putout/processor-json': 7.0.1
- once: 1.4.0
- remark-parse: 11.0.0
- remark-preset-lint-consistent: 5.1.2
- remark-stringify: 11.0.0
- unified: 11.0.3
- unified-lint-rule: 2.1.2
- unist-util-visit: 5.0.0
- transitivePeerDependencies:
- - supports-color
- dev: true
+ putout: 36.13.1(eslint@8.57.1)(typescript@5.6.3)
- /@putout/processor-yaml/6.0.0:
- resolution: {integrity: sha512-OXbmCdUZFjXFDW10On5RW6j3BxUw4uJ3gb56vlH6pJwx6CDvCu86WZuH+5mqM6C434nuuyoQy2szg8th4FhZJA==}
- engines: {node: '>=16'}
+ '@putout/plugin-eslint@9.1.0(putout@36.13.1(eslint@8.57.1)(typescript@5.6.3))':
dependencies:
- '@putout/processor-json': 7.0.1
- just-kebab-case: 4.2.0
- try-catch: 3.0.1
- yaml: 2.3.2
- dev: true
+ putout: 36.13.1(eslint@8.57.1)(typescript@5.6.3)
- /@putout/recast/1.13.0:
- resolution: {integrity: sha512-UILta9MHeFmlxs19SC/c3ivPZ6SEhoeYDxRXN/B44SgG8RG7wlLHvEy/Np0kT8Q2vbSot7ee788IaWJUolCXZA==}
- engines: {node: '>=12'}
+ '@putout/plugin-extract-object-properties@9.0.0(putout@36.13.1(eslint@8.57.1)(typescript@5.6.3))':
dependencies:
- assert: 2.1.0
- ast-types: 0.16.1
- esprima: 4.0.1
- source-map: 0.6.1
- tslib: 2.6.3
- dev: true
+ putout: 36.13.1(eslint@8.57.1)(typescript@5.6.3)
- /@putout/traverse/9.0.0:
- resolution: {integrity: sha512-sDZzwGnWYh1pKHEiTgm4Armqla//33fH46t5aJnBE6raEowuy9GQeDBsRWMb6n1oH14oP7gnDJuBWQqfdqn35w==}
- engines: {node: '>=16'}
+ '@putout/plugin-extract-sequence-expressions@3.5.0(putout@36.13.1(eslint@8.57.1)(typescript@5.6.3))':
dependencies:
- '@putout/babel': 1.2.2
- '@putout/compare': 13.0.1
- transitivePeerDependencies:
- - supports-color
- dev: true
+ putout: 36.13.1(eslint@8.57.1)(typescript@5.6.3)
- /@qdrant/js-client-rest/1.11.0_typescript@5.5.4:
- resolution: {integrity: sha512-RzF+HxL8A7bb/uaxU1jVS1a919bb3FCo1giB/D19UT3d50AYl4+4AyklbsjlXpWEHekbNocQAQ016fqT9hSRtQ==}
- engines: {node: '>=18.0.0', pnpm: '>=8'}
- peerDependencies:
- typescript: '>=4.7'
+ '@putout/plugin-filesystem@6.0.0(putout@36.13.1(eslint@8.57.1)(typescript@5.6.3))':
dependencies:
- '@qdrant/openapi-typescript-fetch': 1.2.6
- '@sevinf/maybe': 0.5.0
- typescript: 5.5.4
- undici: 5.28.4
- dev: false
+ '@putout/babel': 2.9.0
+ '@putout/operate': 12.14.0
+ '@putout/operator-filesystem': 5.0.0(putout@36.13.1(eslint@8.57.1)(typescript@5.6.3))
+ '@putout/operator-json': 2.2.0
+ putout: 36.13.1(eslint@8.57.1)(typescript@5.6.3)
- /@qdrant/openapi-typescript-fetch/1.2.6:
- resolution: {integrity: sha512-oQG/FejNpItrxRHoyctYvT3rwGZOnK4jr3JdppO/c78ktDvkWiPXPHNsrDf33K9sZdRb6PR7gi4noIapu5q4HA==}
- engines: {node: '>=18.0.0', pnpm: '>=8'}
- dev: false
+ '@putout/plugin-for-of@6.1.1(putout@36.13.1(eslint@8.57.1)(typescript@5.6.3))':
+ dependencies:
+ putout: 36.13.1(eslint@8.57.1)(typescript@5.6.3)
- /@qiwi/npm-registry-client/8.9.1:
- resolution: {integrity: sha512-rZF+mG+NfijR0SHphhTLHRr4aM4gtfdwoAMY6we2VGQam8vkN1cxGG1Lg/Llrj8Dd0Mu6VjdFQRyMMRZxtZR2A==}
+ '@putout/plugin-generators@1.0.0(putout@36.13.1(eslint@8.57.1)(typescript@5.6.3))':
dependencies:
- concat-stream: 2.0.0
- graceful-fs: 4.2.11
- normalize-package-data: 3.0.3
- npm-package-arg: 8.1.5
- once: 1.4.0
- request: 2.88.2
- retry: 0.12.0
- safe-buffer: 5.2.1
- semver: 7.6.3
- slide: 1.1.6
- ssri: 8.0.1
- optionalDependencies:
- npmlog: 4.1.2
- dev: true
+ fullstore: 3.0.0
+ putout: 36.13.1(eslint@8.57.1)(typescript@5.6.3)
- /@rails/actioncable/8.0.0:
- resolution: {integrity: sha512-9IXyJeaBggOzlD3pF4/yWELdyUWZm/KTyKBRqxNf9laLBXPqxJt3t6fO+X4s0WajMR8cIhzkxvq1gxsXVbn3LA==}
- dev: false
+ '@putout/plugin-github@13.0.0(putout@36.13.1(eslint@8.57.1)(typescript@5.6.3))':
+ dependencies:
+ putout: 36.13.1(eslint@8.57.1)(typescript@5.6.3)
- /@readme/better-ajv-errors/1.6.0_ajv@8.17.1:
- resolution: {integrity: sha512-9gO9rld84Jgu13kcbKRU+WHseNhaVt76wYMeRDGsUGYxwJtI3RmEJ9LY9dZCYQGI8eUZLuxb5qDja0nqklpFjQ==}
- engines: {node: '>=14'}
- peerDependencies:
- ajv: 4.11.8 - 8
+ '@putout/plugin-gitignore@6.0.0(putout@36.13.1(eslint@8.57.1)(typescript@5.6.3))':
dependencies:
- '@babel/code-frame': 7.24.7
- '@babel/runtime': 7.23.1
- '@humanwhocodes/momoa': 2.0.4
- ajv: 8.17.1
- chalk: 4.1.2
- json-to-ast: 2.1.0
- jsonpointer: 5.0.1
- leven: 3.1.0
- dev: false
+ putout: 36.13.1(eslint@8.57.1)(typescript@5.6.3)
- /@readme/json-schema-ref-parser/1.2.0:
- resolution: {integrity: sha512-Bt3QVovFSua4QmHa65EHUmh2xS0XJ3rgTEUPH998f4OW4VVJke3BuS16f+kM0ZLOGdvIrzrPRqwihuv5BAjtrA==}
+ '@putout/plugin-group-imports-by-source@2.0.0(putout@36.13.1(eslint@8.57.1)(typescript@5.6.3))':
dependencies:
- '@jsdevtools/ono': 7.1.3
- '@types/json-schema': 7.0.13
- call-me-maybe: 1.0.2
- js-yaml: 4.1.0
- dev: false
+ putout: 36.13.1(eslint@8.57.1)(typescript@5.6.3)
- /@readme/oas-extensions/14.4.0_oas@18.4.4:
- resolution: {integrity: sha512-vNrZ1s7SyvWfqJAW9OI3lciDe9fbgJYXz2XIGoyi6f3Q8MMHbKx1GCVsX4SiAFai7lUIZDe2ltEKKtoxTfOKNQ==}
- engines: {node: '>=14'}
- peerDependencies:
- oas: ^17.1.0 || ^18.0.0
+ '@putout/plugin-labels@1.0.0(putout@36.13.1(eslint@8.57.1)(typescript@5.6.3))':
dependencies:
- oas: 18.4.4
- dev: false
+ fullstore: 3.0.0
+ putout: 36.13.1(eslint@8.57.1)(typescript@5.6.3)
- /@readme/oas-to-har/16.1.0:
- resolution: {integrity: sha512-gwyu5w41sigPhijmOxeQFgjfe7ItCLo6wwWuw/MzKfW5ma2GWANauT2c+tSlsZN7zNuPdjAK0wEfOxKSXxQE0g==}
- engines: {node: ^12 || ^14 || ^16}
+ '@putout/plugin-logical-expressions@6.0.0(putout@36.13.1(eslint@8.57.1)(typescript@5.6.3))':
dependencies:
- '@readme/oas-extensions': 14.4.0_oas@18.4.4
- oas: 18.4.4
- parse-data-url: 4.0.1
- remove-undefined-objects: 1.1.0
- transitivePeerDependencies:
- - encoding
- dev: false
+ putout: 36.13.1(eslint@8.57.1)(typescript@5.6.3)
- /@readme/openapi-parser/2.5.0_openapi-types@12.1.3:
- resolution: {integrity: sha512-IbymbOqRuUzoIgxfAAR7XJt2FWl6n2yqN09fF5adacGm7W03siA3bj1Emql0X9D2T+RpBYz3x9zDsMhuoMP62A==}
- engines: {node: '>=14'}
- peerDependencies:
- openapi-types: '>=7'
+ '@putout/plugin-madrun@19.0.0(putout@36.13.1(eslint@8.57.1)(typescript@5.6.3))':
dependencies:
- '@apidevtools/openapi-schemas': 2.1.0
- '@apidevtools/swagger-methods': 3.0.2
- '@jsdevtools/ono': 7.1.3
- '@readme/better-ajv-errors': 1.6.0_ajv@8.17.1
- '@readme/json-schema-ref-parser': 1.2.0
- ajv: 8.17.1
- ajv-draft-04: 1.0.0_ajv@8.17.1
- call-me-maybe: 1.0.2
- openapi-types: 12.1.3
- dev: false
+ putout: 36.13.1(eslint@8.57.1)(typescript@5.6.3)
- /@rtsao/scc/1.1.0:
- resolution: {integrity: sha512-zt6OdqaDoOnJ1ZYsCYGt9YmWzDXl4vQdKTyJev62gFhRGKdx7mcT54V9KIjg+d2wi9EXsPvAPKe7i7WjfVWB8g==}
- dev: true
+ '@putout/plugin-math@2.1.0(putout@36.13.1(eslint@8.57.1)(typescript@5.6.3))':
+ dependencies:
+ putout: 36.13.1(eslint@8.57.1)(typescript@5.6.3)
- /@rushstack/eslint-patch/1.10.4:
- resolution: {integrity: sha512-WJgX9nzTqknM393q1QJDJmoW28kUfEnybeTfVNcNAPnIx210RXm2DiXiHzfNPJNIUUb1tJnz/l4QGtJ30PgWmA==}
- dev: true
+ '@putout/plugin-maybe@2.0.1(putout@36.13.1(eslint@8.57.1)(typescript@5.6.3))':
+ dependencies:
+ putout: 36.13.1(eslint@8.57.1)(typescript@5.6.3)
- /@selderee/plugin-htmlparser2/0.11.0:
- resolution: {integrity: sha512-P33hHGdldxGabLFjPPpaTxVolMrzrcegejx+0GxjrIb9Zv48D8yAIA/QTDR2dFl7Uz7urX8aX6+5bCZslr+gWQ==}
+ '@putout/plugin-merge-destructuring-properties@10.0.0(putout@36.13.1(eslint@8.57.1)(typescript@5.6.3))':
dependencies:
- domhandler: 5.0.3
- selderee: 0.11.0
- dev: false
+ putout: 36.13.1(eslint@8.57.1)(typescript@5.6.3)
- /@selderee/plugin-htmlparser2/0.6.0:
- resolution: {integrity: sha512-J3jpy002TyBjd4N/p6s+s90eX42H2eRhK3SbsZuvTDv977/E8p2U3zikdiehyJja66do7FlxLomZLPlvl2/xaA==}
+ '@putout/plugin-merge-duplicate-functions@2.0.0(putout@36.13.1(eslint@8.57.1)(typescript@5.6.3))':
dependencies:
- domhandler: 4.3.1
- selderee: 0.6.0
- dev: false
+ putout: 36.13.1(eslint@8.57.1)(typescript@5.6.3)
- /@sendgrid/client/7.7.0:
- resolution: {integrity: sha512-SxH+y8jeAQSnDavrTD0uGDXYIIkFylCo+eDofVmZLQ0f862nnqbC3Vd1ej6b7Le7lboyzQF6F7Fodv02rYspuA==}
- engines: {node: 6.* || 8.* || >=10.*}
+ '@putout/plugin-merge-duplicate-imports@11.0.0(putout@36.13.1(eslint@8.57.1)(typescript@5.6.3))':
dependencies:
- '@sendgrid/helpers': 7.7.0
- axios: 0.26.1
- transitivePeerDependencies:
- - debug
- dev: false
+ putout: 36.13.1(eslint@8.57.1)(typescript@5.6.3)
- /@sendgrid/eventwebhook/7.7.0:
- resolution: {integrity: sha512-L2C6nzZgG6YZ/jfXCEqn5l8K8+6oxvhaQ9v/cIM6aXxRHwmTAia9s20snafgTLa27w//vcs+W+MDEm8x4sN+xg==}
- engines: {node: 6.* || 8.* || >=10.*}
+ '@putout/plugin-montag@2.0.0(putout@36.13.1(eslint@8.57.1)(typescript@5.6.3))':
dependencies:
- starkbank-ecdsa: 1.1.5
- dev: false
+ putout: 36.13.1(eslint@8.57.1)(typescript@5.6.3)
- /@sendgrid/helpers/7.7.0:
- resolution: {integrity: sha512-3AsAxfN3GDBcXoZ/y1mzAAbKzTtUZ5+ZrHOmWQ279AuaFXUNCh9bPnRpN504bgveTqoW+11IzPg3I0WVgDINpw==}
- engines: {node: '>= 6.0.0'}
+ '@putout/plugin-new@3.0.1(putout@36.13.1(eslint@8.57.1)(typescript@5.6.3))':
dependencies:
- deepmerge: 4.3.1
- dev: false
+ putout: 36.13.1(eslint@8.57.1)(typescript@5.6.3)
- /@sentry-internal/tracing/7.73.0:
- resolution: {integrity: sha512-ig3WL/Nqp8nRQ52P205NaypGKNfIl/G+cIqge9xPW6zfRb5kJdM1YParw9GSJ1SPjEZBkBORGAML0on5H2FILw==}
- engines: {node: '>=8'}
+ '@putout/plugin-nodejs@12.0.1(putout@36.13.1(eslint@8.57.1)(typescript@5.6.3))':
dependencies:
- '@sentry/core': 7.73.0
- '@sentry/types': 7.73.0
- '@sentry/utils': 7.73.0
- tslib: 2.6.3
- dev: false
+ just-camel-case: 6.2.0
+ putout: 36.13.1(eslint@8.57.1)(typescript@5.6.3)
- /@sentry/core/7.73.0:
- resolution: {integrity: sha512-9FEz4Gq848LOgVN2OxJGYuQqxv7cIVw69VlAzWHEm3njt8mjvlTq+7UiFsGRo84+59V2FQuHxzA7vVjl90WfSg==}
- engines: {node: '>=8'}
+ '@putout/plugin-npmignore@5.0.0(putout@36.13.1(eslint@8.57.1)(typescript@5.6.3))':
dependencies:
- '@sentry/types': 7.73.0
- '@sentry/utils': 7.73.0
- tslib: 2.6.3
- dev: false
+ putout: 36.13.1(eslint@8.57.1)(typescript@5.6.3)
- /@sentry/node/7.73.0:
- resolution: {integrity: sha512-i50bRfmgkRRx0XXUbg9jGD/RuznDJxJXc4rBILhoJuhl+BjRIaoXA3ayplfJn8JLZxsNh75uJaCq4IUK70SORw==}
- engines: {node: '>=8'}
+ '@putout/plugin-package-json@8.3.0(putout@36.13.1(eslint@8.57.1)(typescript@5.6.3))':
dependencies:
- '@sentry-internal/tracing': 7.73.0
- '@sentry/core': 7.73.0
- '@sentry/types': 7.73.0
- '@sentry/utils': 7.73.0
- cookie: 0.5.0
- https-proxy-agent: 5.0.1
- lru_map: 0.3.3
- tslib: 2.6.2
- transitivePeerDependencies:
- - supports-color
- dev: false
+ putout: 36.13.1(eslint@8.57.1)(typescript@5.6.3)
- /@sentry/types/7.73.0:
- resolution: {integrity: sha512-/v8++bly8jW7r4cP2wswYiiVpn7eLLcqwnfPUMeCQze4zj3F3nTRIKc9BGHzU0V+fhHa3RwRC2ksqTGq1oJMDg==}
- engines: {node: '>=8'}
- dev: false
+ '@putout/plugin-promises@15.2.0(putout@36.13.1(eslint@8.57.1)(typescript@5.6.3))':
+ dependencies:
+ fullstore: 3.0.0
+ putout: 36.13.1(eslint@8.57.1)(typescript@5.6.3)
- /@sentry/utils/7.73.0:
- resolution: {integrity: sha512-h3ZK/qpf4k76FhJV9uiSbvMz3V/0Ovy94C+5/9UgPMVCJXFmVsdw8n/dwANJ7LupVPfYP23xFGgebDMFlK1/2w==}
- engines: {node: '>=8'}
+ '@putout/plugin-putout-config@6.9.3(putout@36.13.1(eslint@8.57.1)(typescript@5.6.3))':
dependencies:
- '@sentry/types': 7.73.0
- tslib: 2.6.3
- dev: false
+ putout: 36.13.1(eslint@8.57.1)(typescript@5.6.3)
- /@sevinf/maybe/0.5.0:
- resolution: {integrity: sha512-ARhyoYDnY1LES3vYI0fiG6e9esWfTNcXcO6+MPJJXcnyMV3bim4lnFt45VXouV7y82F4x3YH8nOQ6VztuvUiWg==}
- dev: false
+ '@putout/plugin-putout@21.4.0(putout@36.13.1(eslint@8.57.1)(typescript@5.6.3))':
+ dependencies:
+ fullstore: 3.0.0
+ just-camel-case: 6.2.0
+ parse-import-specifiers: 1.0.3
+ putout: 36.13.1(eslint@8.57.1)(typescript@5.6.3)
+ try-catch: 3.0.1
- /@sideway/address/4.1.4:
- resolution: {integrity: sha512-7vwq+rOHVWjyXxVlR76Agnvhy8I9rpzjosTESvmhNeXOXdZZB15Fl+TI9x1SiHZH5Jv2wTGduSxFDIaq0m3DUw==}
+ '@putout/plugin-regexp@9.0.0(putout@36.13.1(eslint@8.57.1)(typescript@5.6.3))':
dependencies:
- '@hapi/hoek': 9.3.0
- dev: false
+ putout: 36.13.1(eslint@8.57.1)(typescript@5.6.3)
+ regexp-tree: 0.1.27
+ try-catch: 3.0.1
- /@sideway/formula/3.0.1:
- resolution: {integrity: sha512-/poHZJJVjx3L+zVD6g9KgHfYnb443oi7wLu/XKojDviHy6HOEOA6z1Trk5aR1dGcmPenJEgb2sK2I80LeS3MIg==}
- dev: false
+ '@putout/plugin-remove-console@6.0.0(putout@36.13.1(eslint@8.57.1)(typescript@5.6.3))':
+ dependencies:
+ putout: 36.13.1(eslint@8.57.1)(typescript@5.6.3)
- /@sideway/pinpoint/2.0.0:
- resolution: {integrity: sha512-RNiOoTPkptFtSVzQevY/yWtZwf/RxyVnPy/OcA9HBM3MlGDnBEYL5B41H0MTn0Uec8Hi+2qUtTfG2WWZBmMejQ==}
- dev: false
+ '@putout/plugin-remove-constant-conditions@4.0.2(putout@36.13.1(eslint@8.57.1)(typescript@5.6.3))':
+ dependencies:
+ putout: 36.13.1(eslint@8.57.1)(typescript@5.6.3)
- /@sinclair/typebox/0.27.8:
- resolution: {integrity: sha512-+Fj43pSMwJs4KRrH/938Uf+uAELIgVBmQzg/q1YG10djyfA3TnrU8N8XzqCh/okZdszqBQTZf96idMfE5lnwTA==}
- dev: true
+ '@putout/plugin-remove-debugger@7.0.0(putout@36.13.1(eslint@8.57.1)(typescript@5.6.3))':
+ dependencies:
+ putout: 36.13.1(eslint@8.57.1)(typescript@5.6.3)
- /@sindresorhus/is/4.6.0:
- resolution: {integrity: sha512-t09vSN3MdfsyCHoFcTRCH/iUtG7OJ0CsjzB8cjAmKc/va/kIgeDI/TxsigdncE/4be734m0cvIYwNaV4i2XqAw==}
- engines: {node: '>=10'}
- dev: false
+ '@putout/plugin-remove-duplicate-case@3.0.0(putout@36.13.1(eslint@8.57.1)(typescript@5.6.3))':
+ dependencies:
+ putout: 36.13.1(eslint@8.57.1)(typescript@5.6.3)
- /@sindresorhus/is/5.6.0:
- resolution: {integrity: sha512-TV7t8GKYaJWsn00tFDqBw8+Uqmr8A0fRU1tvTQhyZzGv0sJCGRQL3JGMI3ucuKo3XIZdUP+Lx7/gh2t3lewy7g==}
- engines: {node: '>=14.16'}
- dev: false
+ '@putout/plugin-remove-duplicate-keys@6.0.0(putout@36.13.1(eslint@8.57.1)(typescript@5.6.3))':
+ dependencies:
+ fullstore: 3.0.0
+ putout: 36.13.1(eslint@8.57.1)(typescript@5.6.3)
- /@sindresorhus/is/6.1.0:
- resolution: {integrity: sha512-BuvU07zq3tQ/2SIgBsEuxKYDyDjC0n7Zir52bpHy2xnBbW81+po43aLFPLbeV3HRAheFbGud1qgcqSYfhtHMAg==}
- engines: {node: '>=16'}
- dev: false
+ '@putout/plugin-remove-empty@12.1.0(putout@36.13.1(eslint@8.57.1)(typescript@5.6.3))':
+ dependencies:
+ putout: 36.13.1(eslint@8.57.1)(typescript@5.6.3)
- /@sinonjs/commons/3.0.1:
- resolution: {integrity: sha512-K3mCHKQ9sVh8o1C9cxkwxaOmXoAMlDxC1mYyHrjqOWEcBjYr76t96zL2zlj5dUGZ3HSw240X1qgH3Mjf1yJWpQ==}
+ '@putout/plugin-remove-iife@4.1.0(putout@36.13.1(eslint@8.57.1)(typescript@5.6.3))':
dependencies:
- type-detect: 4.0.8
- dev: true
+ putout: 36.13.1(eslint@8.57.1)(typescript@5.6.3)
- /@sinonjs/fake-timers/10.3.0:
- resolution: {integrity: sha512-V4BG07kuYSUkTCSBHG8G8TNhM+F19jXFWnQtzj+we8DrkpSBCee9Z3Ms8yiGer/dlmhe35/Xdgyo3/0rQKg7YA==}
+ '@putout/plugin-remove-nested-blocks@6.3.0(putout@36.13.1(eslint@8.57.1)(typescript@5.6.3))':
dependencies:
- '@sinonjs/commons': 3.0.1
- dev: true
+ putout: 36.13.1(eslint@8.57.1)(typescript@5.6.3)
- /@slack/logger/2.0.0:
- resolution: {integrity: sha512-OkIJpiU2fz6HOJujhlhfIGrc8hB4ibqtf7nnbJQDerG0BqwZCfmgtK5sWzZ0TkXVRBKD5MpLrTmCYyMxoMCgPw==}
- engines: {node: '>= 8.9.0', npm: '>= 5.5.1'}
+ '@putout/plugin-remove-quotes-from-import-assertions@1.0.0(putout@36.13.1(eslint@8.57.1)(typescript@5.6.3))':
dependencies:
- '@types/node': 20.17.6
- dev: false
+ putout: 36.13.1(eslint@8.57.1)(typescript@5.6.3)
- /@slack/logger/4.0.0:
- resolution: {integrity: sha512-Wz7QYfPAlG/DR+DfABddUZeNgoeY7d1J39OCR2jR+v7VBsB8ezulDK5szTnDDPDwLH5IWhLvXIHlCFZV7MSKgA==}
- engines: {node: '>= 18', npm: '>= 8.6.0'}
+ '@putout/plugin-remove-unreachable-code@1.2.0(putout@36.13.1(eslint@8.57.1)(typescript@5.6.3))':
dependencies:
- '@types/node': 20.17.6
- dev: false
+ putout: 36.13.1(eslint@8.57.1)(typescript@5.6.3)
- /@slack/types/1.10.0:
- resolution: {integrity: sha512-tA7GG7Tj479vojfV3AoxbckalA48aK6giGjNtgH6ihpLwTyHE3fIgRrvt8TWfLwW8X8dyu7vgmAsGLRG7hWWOg==}
- engines: {node: '>= 8.9.0', npm: '>= 5.5.1'}
- dev: false
+ '@putout/plugin-remove-unreferenced-variables@4.0.0(putout@36.13.1(eslint@8.57.1)(typescript@5.6.3))':
+ dependencies:
+ putout: 36.13.1(eslint@8.57.1)(typescript@5.6.3)
- /@slack/types/2.11.0:
- resolution: {integrity: sha512-UlIrDWvuLaDly3QZhCPnwUSI/KYmV1N9LyhuH6EDKCRS1HWZhyTG3Ja46T3D0rYfqdltKYFXbJSSRPwZpwO0cQ==}
- engines: {node: '>= 12.13.0', npm: '>= 6.12.0'}
- dev: false
+ '@putout/plugin-remove-unused-expressions@9.0.0(putout@36.13.1(eslint@8.57.1)(typescript@5.6.3))':
+ dependencies:
+ putout: 36.13.1(eslint@8.57.1)(typescript@5.6.3)
- /@slack/web-api/5.15.0:
- resolution: {integrity: sha512-tjQ8Zqv/Fmj9SOL9yIEd7IpTiKfKHi9DKAkfRVeotoX0clMr3SqQtBqO+KZMX27gm7dmgJsQaDKlILyzdCO+IA==}
- engines: {node: '>= 8.9.0', npm: '>= 5.5.1'}
+ '@putout/plugin-remove-unused-for-of-variables@3.0.1(putout@36.13.1(eslint@8.57.1)(typescript@5.6.3))':
dependencies:
- '@slack/logger': 2.0.0
- '@slack/types': 1.10.0
- '@types/is-stream': 1.1.0
- '@types/node': 17.0.45
- axios: 0.21.4
- eventemitter3: 3.1.2
- form-data: 2.5.1
- is-stream: 1.1.0
- p-queue: 6.6.2
- p-retry: 4.6.2
- transitivePeerDependencies:
- - debug
- dev: false
+ putout: 36.13.1(eslint@8.57.1)(typescript@5.6.3)
- /@slack/web-api/7.0.4:
- resolution: {integrity: sha512-21tbte7N8itwjG7nsiQbDmXP9T/oqEILuvyL2UtgaZxfSY4a1JWWsLGL5n/hcgS2WE2oxmEHsBuhuRkZDwDovw==}
- engines: {node: '>= 18', npm: '>= 8.6.0'}
+ '@putout/plugin-remove-unused-labels@1.0.2(putout@36.13.1(eslint@8.57.1)(typescript@5.6.3))':
dependencies:
- '@slack/logger': 4.0.0
- '@slack/types': 2.11.0
- '@types/node': 20.9.2
- '@types/retry': 0.12.0
- axios: 1.6.5
- eventemitter3: 5.0.1
- form-data: 4.0.1
- is-electron: 2.2.2
- is-stream: 2.0.1
- p-queue: 6.6.2
- p-retry: 4.6.2
- retry: 0.13.1
- transitivePeerDependencies:
- - debug
- dev: false
+ putout: 36.13.1(eslint@8.57.1)(typescript@5.6.3)
- /@smiirl/smiirl-library-js/1.0.5:
- resolution: {integrity: sha512-xaOV2aLYlx9jFtJzIPl0uv3/bSTcbBIlv778sWf2b3GxbL+RM70nIn4i8c2hzXzAR5dlAg++zBnbl6n8j3bchA==}
+ '@putout/plugin-remove-unused-private-fields@2.1.0(putout@36.13.1(eslint@8.57.1)(typescript@5.6.3))':
dependencies:
- node-fetch: 2.7.0
- transitivePeerDependencies:
- - encoding
- dev: false
+ putout: 36.13.1(eslint@8.57.1)(typescript@5.6.3)
- /@smithy/abort-controller/2.0.10:
- resolution: {integrity: sha512-xn7PnFD3m4rQIG00h1lPuDVnC2QMtTFhzRLX3y56KkgFaCysS7vpNevNBgmNUtmJ4eVFc+66Zucwo2KDLdicOg==}
- engines: {node: '>=14.0.0'}
+ '@putout/plugin-remove-unused-variables@10.1.0(putout@36.13.1(eslint@8.57.1)(typescript@5.6.3))':
dependencies:
- '@smithy/types': 2.12.0
- tslib: 2.6.3
- dev: false
+ putout: 36.13.1(eslint@8.57.1)(typescript@5.6.3)
- /@smithy/abort-controller/2.2.0:
- resolution: {integrity: sha512-wRlta7GuLWpTqtFfGo+nZyOO1vEvewdNR1R4rTxpC8XU6vG/NDyrFBhwLZsqg1NUoR1noVaXJPC/7ZK47QCySw==}
- engines: {node: '>=14.0.0'}
+ '@putout/plugin-remove-useless-arguments@9.0.0(putout@36.13.1(eslint@8.57.1)(typescript@5.6.3))':
dependencies:
- '@smithy/types': 2.12.0
- tslib: 2.6.3
- dev: false
+ putout: 36.13.1(eslint@8.57.1)(typescript@5.6.3)
- /@smithy/abort-controller/3.1.0:
- resolution: {integrity: sha512-XOm4LkuC0PsK1sf2bBJLIlskn5ghmVxiEBVlo/jg0R8hxASBKYYgOoJEhKWgOr4vWGkN+5rC+oyBAqHYtxjnwQ==}
- engines: {node: '>=16.0.0'}
+ '@putout/plugin-remove-useless-array-constructor@2.0.0(putout@36.13.1(eslint@8.57.1)(typescript@5.6.3))':
dependencies:
- '@smithy/types': 3.2.0
- tslib: 2.6.3
- dev: false
+ putout: 36.13.1(eslint@8.57.1)(typescript@5.6.3)
- /@smithy/abort-controller/3.1.1:
- resolution: {integrity: sha512-MBJBiidoe+0cTFhyxT8g+9g7CeVccLM0IOKKUMCNQ1CNMJ/eIfoo0RTfVrXOONEI1UCN1W+zkiHSbzUNE9dZtQ==}
- engines: {node: '>=16.0.0'}
+ '@putout/plugin-remove-useless-array-entries@1.0.0(putout@36.13.1(eslint@8.57.1)(typescript@5.6.3))':
dependencies:
- '@smithy/types': 3.3.0
- tslib: 2.6.3
- dev: false
+ putout: 36.13.1(eslint@8.57.1)(typescript@5.6.3)
- /@smithy/chunked-blob-reader-native/2.0.0:
- resolution: {integrity: sha512-HM8V2Rp1y8+1343tkZUKZllFhEQPNmpNdgFAncbTsxkZ18/gqjk23XXv3qGyXWp412f3o43ZZ1UZHVcHrpRnCQ==}
+ '@putout/plugin-remove-useless-array@1.1.0(putout@36.13.1(eslint@8.57.1)(typescript@5.6.3))':
dependencies:
- '@smithy/util-base64': 2.3.0
- tslib: 2.6.3
- dev: false
+ putout: 36.13.1(eslint@8.57.1)(typescript@5.6.3)
- /@smithy/chunked-blob-reader/2.0.0:
- resolution: {integrity: sha512-k+J4GHJsMSAIQPChGBrjEmGS+WbPonCXesoqP9fynIqjn7rdOThdH8FAeCmokP9mxTYKQAKoHCLPzNlm6gh7Wg==}
+ '@putout/plugin-remove-useless-assign@1.1.0(putout@36.13.1(eslint@8.57.1)(typescript@5.6.3))':
dependencies:
- tslib: 2.6.3
- dev: false
+ putout: 36.13.1(eslint@8.57.1)(typescript@5.6.3)
- /@smithy/config-resolver/2.0.11:
- resolution: {integrity: sha512-q97FnlUmbai1c4JlQJgLVBsvSxgV/7Nvg/JK76E1nRq/U5UM56Eqo3dn2fY7JibqgJLg4LPsGdwtIyqyOk35CQ==}
- engines: {node: '>=14.0.0'}
+ '@putout/plugin-remove-useless-constructor@2.0.0(putout@36.13.1(eslint@8.57.1)(typescript@5.6.3))':
dependencies:
- '@smithy/node-config-provider': 2.0.13
- '@smithy/types': 2.3.4
- '@smithy/util-config-provider': 2.0.0
- '@smithy/util-middleware': 2.0.3
- tslib: 2.6.2
- dev: false
+ putout: 36.13.1(eslint@8.57.1)(typescript@5.6.3)
- /@smithy/config-resolver/2.2.0:
- resolution: {integrity: sha512-fsiMgd8toyUba6n1WRmr+qACzXltpdDkPTAaDqc8QqPBUzO+/JKwL6bUBseHVi8tu9l+3JOK+tSf7cay+4B3LA==}
- engines: {node: '>=14.0.0'}
+ '@putout/plugin-remove-useless-continue@2.0.0(putout@36.13.1(eslint@8.57.1)(typescript@5.6.3))':
dependencies:
- '@smithy/node-config-provider': 2.3.0
- '@smithy/types': 2.12.0
- '@smithy/util-config-provider': 2.3.0
- '@smithy/util-middleware': 2.2.0
- tslib: 2.6.3
- dev: false
+ putout: 36.13.1(eslint@8.57.1)(typescript@5.6.3)
- /@smithy/config-resolver/3.0.3:
- resolution: {integrity: sha512-4wHqCMkdfVDP4qmr4fVPYOFOH+vKhOv3X4e6KEU9wIC8xXUQ24tnF4CW+sddGDX1zU86GGyQ7A+rg2xmUD6jpQ==}
- engines: {node: '>=16.0.0'}
+ '@putout/plugin-remove-useless-delete@1.0.4(putout@36.13.1(eslint@8.57.1)(typescript@5.6.3))':
dependencies:
- '@smithy/node-config-provider': 3.1.3
- '@smithy/types': 3.3.0
- '@smithy/util-config-provider': 3.0.0
- '@smithy/util-middleware': 3.0.3
- tslib: 2.6.3
- dev: false
+ putout: 36.13.1(eslint@8.57.1)(typescript@5.6.3)
- /@smithy/core/1.4.2:
- resolution: {integrity: sha512-2fek3I0KZHWJlRLvRTqxTEri+qV0GRHrJIoLFuBMZB4EMg4WgeBGfF0X6abnrNYpq55KJ6R4D6x4f0vLnhzinA==}
- engines: {node: '>=14.0.0'}
+ '@putout/plugin-remove-useless-escape@6.0.0(putout@36.13.1(eslint@8.57.1)(typescript@5.6.3))':
dependencies:
- '@smithy/middleware-endpoint': 2.5.1
- '@smithy/middleware-retry': 2.3.1
- '@smithy/middleware-serde': 2.3.0
- '@smithy/protocol-http': 3.3.0
- '@smithy/smithy-client': 2.5.1
- '@smithy/types': 2.12.0
- '@smithy/util-middleware': 2.2.0
- tslib: 2.6.3
- dev: false
-
- /@smithy/core/2.2.3:
- resolution: {integrity: sha512-SpyLOL2vgE6sUYM6nQfu82OirCPkCDKctyG3aMgjMlDPTJpUlmlNH0ttu9ZWwzEjrzzr8uABmPjJTRI7gk1HFQ==}
- engines: {node: '>=16.0.0'}
+ emoji-regex: 10.4.0
+ putout: 36.13.1(eslint@8.57.1)(typescript@5.6.3)
+
+ '@putout/plugin-remove-useless-functions@3.0.0(putout@36.13.1(eslint@8.57.1)(typescript@5.6.3))':
dependencies:
- '@smithy/middleware-endpoint': 3.0.4
- '@smithy/middleware-retry': 3.0.6
- '@smithy/middleware-serde': 3.0.3
- '@smithy/protocol-http': 4.0.3
- '@smithy/smithy-client': 3.1.6
- '@smithy/types': 3.3.0
- '@smithy/util-middleware': 3.0.3
- tslib: 2.6.3
- dev: false
-
- /@smithy/credential-provider-imds/2.0.13:
- resolution: {integrity: sha512-/xe3wNoC4j+BeTemH9t2gSKLBfyZmk8LXB2pQm/TOEYi+QhBgT+PSolNDfNAhrR68eggNE17uOimsrnwSkCt4w==}
- engines: {node: '>=14.0.0'}
+ putout: 36.13.1(eslint@8.57.1)(typescript@5.6.3)
+
+ '@putout/plugin-remove-useless-map@1.1.0(putout@36.13.1(eslint@8.57.1)(typescript@5.6.3))':
dependencies:
- '@smithy/node-config-provider': 2.3.0
- '@smithy/property-provider': 2.2.0
- '@smithy/types': 2.12.0
- '@smithy/url-parser': 2.2.0
- tslib: 2.6.3
- dev: false
+ putout: 36.13.1(eslint@8.57.1)(typescript@5.6.3)
- /@smithy/credential-provider-imds/2.3.0:
- resolution: {integrity: sha512-BWB9mIukO1wjEOo1Ojgl6LrG4avcaC7T/ZP6ptmAaW4xluhSIPZhY+/PI5YKzlk+jsm+4sQZB45Bt1OfMeQa3w==}
- engines: {node: '>=14.0.0'}
+ '@putout/plugin-remove-useless-operand@2.1.0(putout@36.13.1(eslint@8.57.1)(typescript@5.6.3))':
dependencies:
- '@smithy/node-config-provider': 2.3.0
- '@smithy/property-provider': 2.2.0
- '@smithy/types': 2.12.0
- '@smithy/url-parser': 2.2.0
- tslib: 2.6.3
- dev: false
+ putout: 36.13.1(eslint@8.57.1)(typescript@5.6.3)
- /@smithy/credential-provider-imds/3.1.2:
- resolution: {integrity: sha512-gqVmUaNoeqyrOAjgZg+rTmFLsphh/vS59LCMdFfVpthVS0jbfBzvBmEPktBd+y9ME4DYMGHFAMSYJDK8q0noOQ==}
- engines: {node: '>=16.0.0'}
+ '@putout/plugin-remove-useless-push@1.0.3(putout@36.13.1(eslint@8.57.1)(typescript@5.6.3))':
dependencies:
- '@smithy/node-config-provider': 3.1.3
- '@smithy/property-provider': 3.1.3
- '@smithy/types': 3.3.0
- '@smithy/url-parser': 3.0.3
- tslib: 2.6.3
- dev: false
+ putout: 36.13.1(eslint@8.57.1)(typescript@5.6.3)
- /@smithy/eventstream-codec/1.1.0:
- resolution: {integrity: sha512-3tEbUb8t8an226jKB6V/Q2XU/J53lCwCzULuBPEaF4JjSh+FlCMp7TmogE/Aij5J9DwlsZ4VAD/IRDuQ/0ZtMw==}
+ '@putout/plugin-remove-useless-replace@1.0.4(putout@36.13.1(eslint@8.57.1)(typescript@5.6.3))':
dependencies:
- '@aws-crypto/crc32': 3.0.0
- '@smithy/types': 1.2.0
- '@smithy/util-hex-encoding': 1.1.0
- tslib: 2.6.3
- dev: false
+ putout: 36.13.1(eslint@8.57.1)(typescript@5.6.3)
- /@smithy/eventstream-codec/2.0.10:
- resolution: {integrity: sha512-3SSDgX2nIsFwif6m+I4+ar4KDcZX463Noes8ekBgQHitULiWvaDZX8XqPaRQSQ4bl1vbeVXHklJfv66MnVO+lw==}
+ '@putout/plugin-remove-useless-return@7.0.0(putout@36.13.1(eslint@8.57.1)(typescript@5.6.3))':
dependencies:
- '@aws-crypto/crc32': 3.0.0
- '@smithy/types': 2.12.0
- '@smithy/util-hex-encoding': 2.2.0
- tslib: 2.6.3
- dev: false
+ putout: 36.13.1(eslint@8.57.1)(typescript@5.6.3)
- /@smithy/eventstream-serde-browser/2.0.10:
- resolution: {integrity: sha512-/NSUNrWedO9Se80jo/2WcPvqobqCM/0drZ03Kqn1GZpGwVTsdqNj7frVTCUJs/W/JEzOShdMv8ewoKIR7RWPmA==}
- engines: {node: '>=14.0.0'}
+ '@putout/plugin-remove-useless-spread@11.1.0(putout@36.13.1(eslint@8.57.1)(typescript@5.6.3))':
dependencies:
- '@smithy/eventstream-serde-universal': 2.0.10
- '@smithy/types': 2.3.4
- tslib: 2.6.2
- dev: false
+ putout: 36.13.1(eslint@8.57.1)(typescript@5.6.3)
- /@smithy/eventstream-serde-config-resolver/2.0.10:
- resolution: {integrity: sha512-ag1U0vsC5rhRm7okFzsS6YsvyTRe62jIgJ82+Wr4qoOASx7eCDWdjoqLnrdDY0S4UToF9hZAyo4Du/xrSSSk4g==}
- engines: {node: '>=14.0.0'}
+ '@putout/plugin-remove-useless-template-expressions@2.0.0(putout@36.13.1(eslint@8.57.1)(typescript@5.6.3))':
dependencies:
- '@smithy/types': 2.3.4
- tslib: 2.6.2
- dev: false
+ putout: 36.13.1(eslint@8.57.1)(typescript@5.6.3)
- /@smithy/eventstream-serde-node/2.0.10:
- resolution: {integrity: sha512-3+VeofxoVCa+dvqcuzEpnFve8EQJKaYR7UslDFpj6UTZfa7Hxr8o1/cbFkTftFo71PxzYVsR+bsD56EbAO432A==}
- engines: {node: '>=14.0.0'}
+ '@putout/plugin-remove-useless-variables@12.6.1(putout@36.13.1(eslint@8.57.1)(typescript@5.6.3))':
dependencies:
- '@smithy/eventstream-serde-universal': 2.0.10
- '@smithy/types': 2.3.4
- tslib: 2.6.2
- dev: false
+ putout: 36.13.1(eslint@8.57.1)(typescript@5.6.3)
- /@smithy/eventstream-serde-universal/2.0.10:
- resolution: {integrity: sha512-JhJJU1ULLsn5kxKfFe8zOF2tibjxlPIvIB71Kn20aa/OFs+lvXBR0hBGswpovyYyckXH3qU8VxuIOEuS+2G+3A==}
- engines: {node: '>=14.0.0'}
+ '@putout/plugin-reuse-duplicate-init@6.0.0(putout@36.13.1(eslint@8.57.1)(typescript@5.6.3))':
dependencies:
- '@smithy/eventstream-codec': 2.0.10
- '@smithy/types': 2.12.0
- tslib: 2.6.3
- dev: false
-
- /@smithy/fetch-http-handler/2.2.1:
- resolution: {integrity: sha512-bXyM8PBAIKxVV++2ZSNBEposTDjFQ31XWOdHED+2hWMNvJHUoQqFbECg/uhcVOa6vHie2/UnzIZfXBSTpDBnEw==}
- dependencies:
- '@smithy/protocol-http': 3.0.6
- '@smithy/querystring-builder': 2.0.10
- '@smithy/types': 2.3.4
- '@smithy/util-base64': 2.0.0
- tslib: 2.6.2
- dev: false
-
- /@smithy/fetch-http-handler/2.5.0:
- resolution: {integrity: sha512-BOWEBeppWhLn/no/JxUL/ghTfANTjT7kg3Ww2rPqTUY9R4yHPXxJ9JhMe3Z03LN3aPwiwlpDIUcVw1xDyHqEhw==}
- dependencies:
- '@smithy/protocol-http': 3.3.0
- '@smithy/querystring-builder': 2.2.0
- '@smithy/types': 2.12.0
- '@smithy/util-base64': 2.3.0
- tslib: 2.6.3
- dev: false
-
- /@smithy/fetch-http-handler/3.1.0:
- resolution: {integrity: sha512-s7oQjEOUH9TYjctpITtWF4qxOdg7pBrP9eigEQ8SBsxF3dRFV0S28pGMllC83DUr7ECmErhO/BUwnULfoNhKgQ==}
- dependencies:
- '@smithy/protocol-http': 4.0.2
- '@smithy/querystring-builder': 3.0.2
- '@smithy/types': 3.2.0
- '@smithy/util-base64': 3.0.0
- tslib: 2.6.3
- dev: false
+ putout: 36.13.1(eslint@8.57.1)(typescript@5.6.3)
- /@smithy/fetch-http-handler/3.2.1:
- resolution: {integrity: sha512-0w0bgUvZmfa0vHN8a+moByhCJT07WN6AHKEhFSOLsDpnszm+5dLVv5utGaqbhOrZ/aF5x3xuPMs/oMCd+4O5xg==}
+ '@putout/plugin-simplify-assignment@3.1.0(putout@36.13.1(eslint@8.57.1)(typescript@5.6.3))':
dependencies:
- '@smithy/protocol-http': 4.0.3
- '@smithy/querystring-builder': 3.0.3
- '@smithy/types': 3.3.0
- '@smithy/util-base64': 3.0.0
- tslib: 2.6.3
- dev: false
+ putout: 36.13.1(eslint@8.57.1)(typescript@5.6.3)
- /@smithy/hash-blob-browser/2.0.10:
- resolution: {integrity: sha512-U2+wIWWloOZ9DaRuz2sk9f7A6STRTlwdcv+q6abXDvS0TRDk8KGgUmfV5lCZy8yxFxZIA0hvHDNqcd25r4Hrew==}
+ '@putout/plugin-simplify-boolean-return@2.0.0(putout@36.13.1(eslint@8.57.1)(typescript@5.6.3))':
dependencies:
- '@smithy/chunked-blob-reader': 2.0.0
- '@smithy/chunked-blob-reader-native': 2.0.0
- '@smithy/types': 2.12.0
- tslib: 2.6.3
- dev: false
+ putout: 36.13.1(eslint@8.57.1)(typescript@5.6.3)
- /@smithy/hash-node/2.0.10:
- resolution: {integrity: sha512-jSTf6uzPk/Vf+8aQ7tVXeHfjxe9wRXSCqIZcBymSDTf7/YrVxniBdpyN74iI8ZUOx/Pyagc81OK5FROLaEjbXQ==}
- engines: {node: '>=14.0.0'}
+ '@putout/plugin-simplify-ternary@7.0.0(putout@36.13.1(eslint@8.57.1)(typescript@5.6.3))':
dependencies:
- '@smithy/types': 2.3.4
- '@smithy/util-buffer-from': 2.0.0
- '@smithy/util-utf8': 2.0.0
- tslib: 2.6.2
- dev: false
+ putout: 36.13.1(eslint@8.57.1)(typescript@5.6.3)
- /@smithy/hash-node/2.2.0:
- resolution: {integrity: sha512-zLWaC/5aWpMrHKpoDF6nqpNtBhlAYKF/7+9yMN7GpdR8CzohnWfGtMznPybnwSS8saaXBMxIGwJqR4HmRp6b3g==}
- engines: {node: '>=14.0.0'}
+ '@putout/plugin-sort-imports-by-specifiers@1.1.0(putout@36.13.1(eslint@8.57.1)(typescript@5.6.3))':
dependencies:
- '@smithy/types': 2.12.0
- '@smithy/util-buffer-from': 2.2.0
- '@smithy/util-utf8': 2.3.0
- tslib: 2.6.3
- dev: false
+ parse-import-specifiers: 1.0.3
+ putout: 36.13.1(eslint@8.57.1)(typescript@5.6.3)
- /@smithy/hash-node/3.0.2:
- resolution: {integrity: sha512-43uGA6o6QJQdXwAogybdTDHDd3SCdKyoiHIHb8PpdE2rKmVicjG9b1UgVwdgO8QPytmVqHFaUw27M3LZKwu8Yg==}
- engines: {node: '>=16.0.0'}
+ '@putout/plugin-split-assignment-expressions@1.2.0(putout@36.13.1(eslint@8.57.1)(typescript@5.6.3))':
dependencies:
- '@smithy/types': 3.3.0
- '@smithy/util-buffer-from': 3.0.0
- '@smithy/util-utf8': 3.0.0
- tslib: 2.6.3
- dev: false
+ putout: 36.13.1(eslint@8.57.1)(typescript@5.6.3)
- /@smithy/hash-stream-node/2.0.10:
- resolution: {integrity: sha512-L58XEGrownZZSpF7Lp0gc0hy+eYKXuPgNz3pQgP5lPFGwBzHdldx2X6o3c6swD6RkcPvTRh0wTUVVGwUotbgnQ==}
- engines: {node: '>=14.0.0'}
+ '@putout/plugin-split-nested-destructuring@3.0.0(putout@36.13.1(eslint@8.57.1)(typescript@5.6.3))':
dependencies:
- '@smithy/types': 2.12.0
- '@smithy/util-utf8': 2.0.0
- tslib: 2.6.3
- dev: false
+ putout: 36.13.1(eslint@8.57.1)(typescript@5.6.3)
- /@smithy/invalid-dependency/2.0.10:
- resolution: {integrity: sha512-zw9p/zsmJ2cFcW4KMz3CJoznlbRvEA6HG2mvEaX5eAca5dq4VGI2MwPDTfmteC/GsnURS4ogoMQ0p6aHM2SDVQ==}
+ '@putout/plugin-split-variable-declarations@3.0.0(putout@36.13.1(eslint@8.57.1)(typescript@5.6.3))':
dependencies:
- '@smithy/types': 2.3.4
- tslib: 2.6.2
- dev: false
+ putout: 36.13.1(eslint@8.57.1)(typescript@5.6.3)
- /@smithy/invalid-dependency/2.2.0:
- resolution: {integrity: sha512-nEDASdbKFKPXN2O6lOlTgrEEOO9NHIeO+HVvZnkqc8h5U9g3BIhWsvzFo+UcUbliMHvKNPD/zVxDrkP1Sbgp8Q==}
+ '@putout/plugin-tape@15.1.0(putout@36.13.1(eslint@8.57.1)(typescript@5.6.3))':
dependencies:
- '@smithy/types': 2.12.0
- tslib: 2.6.3
- dev: false
+ putout: 36.13.1(eslint@8.57.1)(typescript@5.6.3)
- /@smithy/invalid-dependency/3.0.2:
- resolution: {integrity: sha512-+BAY3fMhomtq470tswXyrdVBSUhiLuhBVT+rOmpbz5e04YX+s1dX4NxTLzZGwBjCpeWZNtTxP8zbIvvFk81gUg==}
+ '@putout/plugin-try-catch@4.0.0(putout@36.13.1(eslint@8.57.1)(typescript@5.6.3))':
dependencies:
- '@smithy/types': 3.3.0
- tslib: 2.6.3
- dev: false
+ putout: 36.13.1(eslint@8.57.1)(typescript@5.6.3)
- /@smithy/is-array-buffer/1.1.0:
- resolution: {integrity: sha512-twpQ/n+3OWZJ7Z+xu43MJErmhB/WO/mMTnqR6PwWQShvSJ/emx5d1N59LQZk6ZpTAeuRWrc+eHhkzTp9NFjNRQ==}
- engines: {node: '>=14.0.0'}
+ '@putout/plugin-types@5.1.0(putout@36.13.1(eslint@8.57.1)(typescript@5.6.3))':
dependencies:
- tslib: 2.6.3
- dev: false
+ putout: 36.13.1(eslint@8.57.1)(typescript@5.6.3)
- /@smithy/is-array-buffer/2.0.0:
- resolution: {integrity: sha512-z3PjFjMyZNI98JFRJi/U0nGoLWMSJlDjAW4QUX2WNZLas5C0CmVV6LJ01JI0k90l7FvpmixjWxPFmENSClQ7ug==}
- engines: {node: '>=14.0.0'}
+ '@putout/plugin-typescript@8.3.0(putout@36.13.1(eslint@8.57.1)(typescript@5.6.3))':
dependencies:
- tslib: 2.6.3
- dev: false
+ putout: 36.13.1(eslint@8.57.1)(typescript@5.6.3)
- /@smithy/is-array-buffer/2.2.0:
- resolution: {integrity: sha512-GGP3O9QFD24uGeAXYUjwSTXARoqpZykHadOmA8G5vfJPK0/DC67qa//0qvqrJzL1xc8WQWX7/yc7fwudjPHPhA==}
- engines: {node: '>=14.0.0'}
+ '@putout/plugin-webpack@3.0.0(putout@36.13.1(eslint@8.57.1)(typescript@5.6.3))':
dependencies:
- tslib: 2.6.3
- dev: false
+ putout: 36.13.1(eslint@8.57.1)(typescript@5.6.3)
- /@smithy/is-array-buffer/3.0.0:
- resolution: {integrity: sha512-+Fsu6Q6C4RSJiy81Y8eApjEB5gVtM+oFKTffg+jSuwtvomJJrhUJBu2zS8wjXSgH/g1MKEWrzyChTBe6clb5FQ==}
- engines: {node: '>=16.0.0'}
+ '@putout/printer@10.3.0':
dependencies:
- tslib: 2.6.3
- dev: false
+ '@putout/babel': 2.9.0
+ '@putout/compare': 15.0.2
+ '@putout/operate': 12.14.0
+ '@putout/operator-json': 2.2.0
+ fullstore: 3.0.0
+ just-snake-case: 3.2.0
+ parse-import-specifiers: 1.0.3
+ rendy: 4.1.3
+ transitivePeerDependencies:
+ - supports-color
- /@smithy/md5-js/2.0.10:
- resolution: {integrity: sha512-eA/Ova4/UdQUbMlrbBmnewmukH0zWU6C67HFFR/719vkFNepbnliGjmGksQ9vylz9eD4nfGkZZ5NKZMAcUuzjQ==}
+ '@putout/processor-css@9.0.0(putout@36.13.1(eslint@8.57.1)(typescript@5.6.3))(typescript@5.6.3)':
dependencies:
- '@smithy/types': 2.12.0
- '@smithy/util-utf8': 2.0.0
- tslib: 2.6.3
- dev: false
+ align-spaces: 1.0.4
+ cosmiconfig: 9.0.0(typescript@5.6.3)
+ deepmerge: 4.3.1
+ prettier: 3.3.3
+ putout: 36.13.1(eslint@8.57.1)(typescript@5.6.3)
+ stylelint: 16.10.0(typescript@5.6.3)
+ stylelint-config-standard: 36.0.1(stylelint@16.10.0(typescript@5.6.3))
+ stylelint-prettier: 5.0.2(prettier@3.3.3)(stylelint@16.10.0(typescript@5.6.3))
+ transitivePeerDependencies:
+ - supports-color
+ - typescript
- /@smithy/middleware-content-length/2.0.12:
- resolution: {integrity: sha512-QRhJTo5TjG7oF7np6yY4ZO9GDKFVzU/GtcqUqyEa96bLHE3yZHgNmsolOQ97pfxPHmFhH4vDP//PdpAIN3uI1Q==}
- engines: {node: '>=14.0.0'}
+ '@putout/processor-filesystem@5.0.0(putout@36.13.1(eslint@8.57.1)(typescript@5.6.3))':
dependencies:
- '@smithy/protocol-http': 3.0.6
- '@smithy/types': 2.3.4
- tslib: 2.6.2
- dev: false
+ '@putout/cli-filesystem': 2.0.1
+ '@putout/operator-filesystem': 5.0.0(putout@36.13.1(eslint@8.57.1)(typescript@5.6.3))
+ '@putout/operator-json': 2.2.0
+ transitivePeerDependencies:
+ - putout
- /@smithy/middleware-content-length/2.2.0:
- resolution: {integrity: sha512-5bl2LG1Ah/7E5cMSC+q+h3IpVHMeOkG0yLRyQT1p2aMJkSrZG7RlXHPuAgb7EyaFeidKEnnd/fNaLLaKlHGzDQ==}
- engines: {node: '>=14.0.0'}
+ '@putout/processor-ignore@6.0.1':
dependencies:
- '@smithy/protocol-http': 3.3.0
- '@smithy/types': 2.12.0
- tslib: 2.6.3
- dev: false
+ '@putout/operator-json': 2.2.0
- /@smithy/middleware-content-length/3.0.2:
- resolution: {integrity: sha512-/Havz3PkYIEmwpqkyRTR21yJsWnFbD1ec4H1pUL+TkDnE7RCQkAVUQepLL/UeCaZeCBXvfdoKbOjSbV01xIinQ==}
- engines: {node: '>=16.0.0'}
+ '@putout/processor-javascript@5.0.0(putout@36.13.1(eslint@8.57.1)(typescript@5.6.3))':
dependencies:
- '@smithy/protocol-http': 4.0.3
- '@smithy/types': 3.3.0
- tslib: 2.6.3
- dev: false
+ putout: 36.13.1(eslint@8.57.1)(typescript@5.6.3)
- /@smithy/middleware-endpoint/2.0.10:
- resolution: {integrity: sha512-O6m4puZc16xfenotZUHL4bRlMrwf4gTp+0I5l954M5KNd3dOK18P+FA/IIUgnXF/dX6hlCUcJkBp7nAzwrePKA==}
- engines: {node: '>=14.0.0'}
+ '@putout/processor-json@9.0.0':
dependencies:
- '@smithy/middleware-serde': 2.0.10
- '@smithy/types': 2.3.4
- '@smithy/url-parser': 2.0.10
- '@smithy/util-middleware': 2.0.3
- tslib: 2.6.2
- dev: false
+ '@putout/operator-json': 2.2.0
- /@smithy/middleware-endpoint/2.5.1:
- resolution: {integrity: sha512-1/8kFp6Fl4OsSIVTWHnNjLnTL8IqpIb/D3sTSczrKFnrE9VMNWxnrRKNvpUHOJ6zpGD5f62TPm7+17ilTJpiCQ==}
- engines: {node: '>=14.0.0'}
+ '@putout/processor-markdown@12.1.0':
dependencies:
- '@smithy/middleware-serde': 2.3.0
- '@smithy/node-config-provider': 2.3.0
- '@smithy/shared-ini-file-loader': 2.4.0
- '@smithy/types': 2.12.0
- '@smithy/url-parser': 2.2.0
- '@smithy/util-middleware': 2.2.0
- tslib: 2.6.3
- dev: false
-
- /@smithy/middleware-endpoint/3.0.3:
- resolution: {integrity: sha512-ARAXHodhj4tttKa9y75zvENdSoHq6VGsSi7XS3+yLutrnxttJs6N10UMInCC1yi3/bopT8xug3iOP/y9R6sKJQ==}
- engines: {node: '>=16.0.0'}
+ '@putout/operator-json': 2.2.0
+ once: 1.4.0
+ remark-parse: 11.0.0
+ remark-preset-lint-consistent: 6.0.0
+ remark-stringify: 11.0.0
+ unified: 11.0.5
+ unified-lint-rule: 3.0.0
+ unist-util-visit: 5.0.0
+ transitivePeerDependencies:
+ - supports-color
+
+ '@putout/processor-yaml@8.1.0':
dependencies:
- '@smithy/middleware-serde': 3.0.2
- '@smithy/node-config-provider': 3.1.2
- '@smithy/shared-ini-file-loader': 3.1.2
- '@smithy/types': 3.2.0
- '@smithy/url-parser': 3.0.2
- '@smithy/util-middleware': 3.0.2
- tslib: 2.6.3
- dev: false
-
- /@smithy/middleware-endpoint/3.0.4:
- resolution: {integrity: sha512-whUJMEPwl3ANIbXjBXZVdJNgfV2ZU8ayln7xUM47rXL2txuenI7jQ/VFFwCzy5lCmXScjp6zYtptW5Evud8e9g==}
- engines: {node: '>=16.0.0'}
+ '@putout/operator-json': 2.2.0
+ just-kebab-case: 4.2.0
+ try-catch: 3.0.1
+ yaml: 2.6.1
+
+ '@putout/quick-lint@1.4.0':
dependencies:
- '@smithy/middleware-serde': 3.0.3
- '@smithy/node-config-provider': 3.1.3
- '@smithy/shared-ini-file-loader': 3.1.3
- '@smithy/types': 3.3.0
- '@smithy/url-parser': 3.0.3
- '@smithy/util-middleware': 3.0.3
- tslib: 2.6.3
- dev: false
-
- /@smithy/middleware-retry/2.0.13:
- resolution: {integrity: sha512-zuOva8xgWC7KYG8rEXyWIcZv2GWszO83DCTU6IKcf/FKu6OBmSE+EYv3EUcCGY+GfiwCX0EyJExC9Lpq9b0w5Q==}
- engines: {node: '>=14.0.0'}
+ once: 1.4.0
+
+ '@putout/traverse@11.0.0':
dependencies:
- '@smithy/node-config-provider': 2.0.13
- '@smithy/protocol-http': 3.0.6
- '@smithy/service-error-classification': 2.0.3
- '@smithy/types': 2.3.4
- '@smithy/util-middleware': 2.0.3
- '@smithy/util-retry': 2.0.3
- tslib: 2.6.2
- uuid: 8.3.2
- dev: false
+ '@putout/babel': 2.9.0
+ '@putout/compare': 15.0.2
+ transitivePeerDependencies:
+ - supports-color
- /@smithy/middleware-retry/2.3.1:
- resolution: {integrity: sha512-P2bGufFpFdYcWvqpyqqmalRtwFUNUA8vHjJR5iGqbfR6mp65qKOLcUd6lTr4S9Gn/enynSrSf3p3FVgVAf6bXA==}
- engines: {node: '>=14.0.0'}
+ '@qdrant/js-client-rest@1.12.0(typescript@5.7.2)':
dependencies:
- '@smithy/node-config-provider': 2.3.0
- '@smithy/protocol-http': 3.3.0
- '@smithy/service-error-classification': 2.1.5
- '@smithy/smithy-client': 2.5.1
- '@smithy/types': 2.12.0
- '@smithy/util-middleware': 2.2.0
- '@smithy/util-retry': 2.2.0
- tslib: 2.6.3
- uuid: 9.0.1
- dev: false
+ '@qdrant/openapi-typescript-fetch': 1.2.6
+ '@sevinf/maybe': 0.5.0
+ typescript: 5.7.2
+ undici: 5.28.4
- /@smithy/middleware-retry/3.0.6:
- resolution: {integrity: sha512-ICsFKp8eAyIMmxN5UT3IU37S6886L879TKtgxPsn/VD/laYNwqTLmJaCAn5//+2fRIrV0dnHp6LFlMwdXlWoUQ==}
- engines: {node: '>=16.0.0'}
+ '@qdrant/openapi-typescript-fetch@1.2.6': {}
+
+ '@qiwi/npm-registry-client@8.9.1':
dependencies:
- '@smithy/node-config-provider': 3.1.3
- '@smithy/protocol-http': 4.0.3
- '@smithy/service-error-classification': 3.0.2
- '@smithy/smithy-client': 3.1.6
- '@smithy/types': 3.3.0
- '@smithy/util-middleware': 3.0.3
- '@smithy/util-retry': 3.0.2
- tslib: 2.6.3
- uuid: 9.0.1
- dev: false
+ concat-stream: 2.0.0
+ graceful-fs: 4.2.11
+ normalize-package-data: 3.0.3
+ npm-package-arg: 8.1.5
+ once: 1.4.0
+ request: 2.88.2
+ retry: 0.12.0
+ safe-buffer: 5.2.1
+ semver: 7.6.3
+ slide: 1.1.6
+ ssri: 8.0.1
+ optionalDependencies:
+ npmlog: 4.1.2
- /@smithy/middleware-serde/2.0.10:
- resolution: {integrity: sha512-+A0AFqs768256H/BhVEsBF6HijFbVyAwYRVXY/izJFkTalVWJOp4JA0YdY0dpXQd+AlW0tzs+nMQCE1Ew+DcgQ==}
- engines: {node: '>=14.0.0'}
+ '@rails/actioncable@8.0.0': {}
+
+ '@readme/better-ajv-errors@1.6.0(ajv@8.17.1)':
dependencies:
- '@smithy/types': 2.3.4
- tslib: 2.6.2
- dev: false
+ '@babel/code-frame': 7.26.2
+ '@babel/runtime': 7.26.0
+ '@humanwhocodes/momoa': 2.0.4
+ ajv: 8.17.1
+ chalk: 4.1.2
+ json-to-ast: 2.1.0
+ jsonpointer: 5.0.1
+ leven: 3.1.0
- /@smithy/middleware-serde/2.3.0:
- resolution: {integrity: sha512-sIADe7ojwqTyvEQBe1nc/GXB9wdHhi9UwyX0lTyttmUWDJLP655ZYE1WngnNyXREme8I27KCaUhyhZWRXL0q7Q==}
- engines: {node: '>=14.0.0'}
+ '@readme/json-schema-ref-parser@1.2.0':
dependencies:
- '@smithy/types': 2.12.0
- tslib: 2.6.3
- dev: false
+ '@jsdevtools/ono': 7.1.3
+ '@types/json-schema': 7.0.15
+ call-me-maybe: 1.0.2
+ js-yaml: 4.1.0
- /@smithy/middleware-serde/3.0.2:
- resolution: {integrity: sha512-oT2abV5zLhBucJe1LIIFEcRgIBDbZpziuMPswTMbBQNcaEUycLFvX63zsFmqfwG+/ZQKsNx+BSE8W51CMuK7Yw==}
- engines: {node: '>=16.0.0'}
+ '@readme/oas-extensions@14.4.0(oas@18.4.4)':
dependencies:
- '@smithy/types': 3.2.0
- tslib: 2.6.3
- dev: false
+ oas: 18.4.4
- /@smithy/middleware-serde/3.0.3:
- resolution: {integrity: sha512-puUbyJQBcg9eSErFXjKNiGILJGtiqmuuNKEYNYfUD57fUl4i9+mfmThtQhvFXU0hCVG0iEJhvQUipUf+/SsFdA==}
- engines: {node: '>=16.0.0'}
+ '@readme/oas-to-har@16.1.0':
dependencies:
- '@smithy/types': 3.3.0
- tslib: 2.6.3
- dev: false
+ '@readme/oas-extensions': 14.4.0(oas@18.4.4)
+ oas: 18.4.4
+ parse-data-url: 4.0.1
+ remove-undefined-objects: 1.1.0
+ transitivePeerDependencies:
+ - encoding
- /@smithy/middleware-stack/2.0.4:
- resolution: {integrity: sha512-MW0KNKfh8ZGLagMZnxcLJWPNXoKqW6XV/st5NnCBmmA2e2JhrUjU0AJ5Ca/yjTyNEKs3xH7AQDwp1YmmpEpmQQ==}
- engines: {node: '>=14.0.0'}
+ '@readme/openapi-parser@2.6.0(openapi-types@12.1.3)':
dependencies:
- '@smithy/types': 2.3.4
- tslib: 2.6.2
- dev: false
+ '@apidevtools/swagger-methods': 3.0.2
+ '@jsdevtools/ono': 7.1.3
+ '@readme/better-ajv-errors': 1.6.0(ajv@8.17.1)
+ '@readme/json-schema-ref-parser': 1.2.0
+ '@readme/openapi-schemas': 3.1.0
+ ajv: 8.17.1
+ ajv-draft-04: 1.0.0(ajv@8.17.1)
+ call-me-maybe: 1.0.2
+ openapi-types: 12.1.3
- /@smithy/middleware-stack/2.2.0:
- resolution: {integrity: sha512-Qntc3jrtwwrsAC+X8wms8zhrTr0sFXnyEGhZd9sLtsJ/6gGQKFzNB+wWbOcpJd7BR8ThNCoKt76BuQahfMvpeA==}
- engines: {node: '>=14.0.0'}
+ '@readme/openapi-schemas@3.1.0': {}
+
+ '@rollup/pluginutils@5.1.3(rollup@4.27.3)':
dependencies:
- '@smithy/types': 2.12.0
- tslib: 2.6.3
- dev: false
+ '@types/estree': 1.0.6
+ estree-walker: 2.0.2
+ picomatch: 4.0.2
+ optionalDependencies:
+ rollup: 4.27.3
- /@smithy/middleware-stack/3.0.2:
- resolution: {integrity: sha512-6fRcxomlNKBPIy/YjcnC7YHpMAjRvGUYlYVJAfELqZjkW0vQegNcImjY7T1HgYA6u3pAcCxKVBLYnkTw8z/l0A==}
- engines: {node: '>=16.0.0'}
+ '@rollup/rollup-android-arm-eabi@4.27.3':
+ optional: true
+
+ '@rollup/rollup-android-arm64@4.27.3':
+ optional: true
+
+ '@rollup/rollup-darwin-arm64@4.27.3':
+ optional: true
+
+ '@rollup/rollup-darwin-x64@4.27.3':
+ optional: true
+
+ '@rollup/rollup-freebsd-arm64@4.27.3':
+ optional: true
+
+ '@rollup/rollup-freebsd-x64@4.27.3':
+ optional: true
+
+ '@rollup/rollup-linux-arm-gnueabihf@4.27.3':
+ optional: true
+
+ '@rollup/rollup-linux-arm-musleabihf@4.27.3':
+ optional: true
+
+ '@rollup/rollup-linux-arm64-gnu@4.27.3':
+ optional: true
+
+ '@rollup/rollup-linux-arm64-musl@4.27.3':
+ optional: true
+
+ '@rollup/rollup-linux-powerpc64le-gnu@4.27.3':
+ optional: true
+
+ '@rollup/rollup-linux-riscv64-gnu@4.27.3':
+ optional: true
+
+ '@rollup/rollup-linux-s390x-gnu@4.27.3':
+ optional: true
+
+ '@rollup/rollup-linux-x64-gnu@4.27.3':
+ optional: true
+
+ '@rollup/rollup-linux-x64-musl@4.27.3':
+ optional: true
+
+ '@rollup/rollup-win32-arm64-msvc@4.27.3':
+ optional: true
+
+ '@rollup/rollup-win32-ia32-msvc@4.27.3':
+ optional: true
+
+ '@rollup/rollup-win32-x64-msvc@4.27.3':
+ optional: true
+
+ '@rtsao/scc@1.1.0': {}
+
+ '@rushstack/eslint-patch@1.10.4': {}
+
+ '@rushstack/node-core-library@5.10.0(@types/node@20.17.6)':
dependencies:
- '@smithy/types': 3.2.0
- tslib: 2.6.3
- dev: false
+ ajv: 8.13.0
+ ajv-draft-04: 1.0.0(ajv@8.13.0)
+ ajv-formats: 3.0.1(ajv@8.13.0)
+ fs-extra: 7.0.1
+ import-lazy: 4.0.0
+ jju: 1.4.0
+ resolve: 1.22.8
+ semver: 7.5.4
+ optionalDependencies:
+ '@types/node': 20.17.6
- /@smithy/middleware-stack/3.0.3:
- resolution: {integrity: sha512-r4klY9nFudB0r9UdSMaGSyjyQK5adUyPnQN/ZM6M75phTxOdnc/AhpvGD1fQUvgmqjQEBGCwpnPbDm8pH5PapA==}
- engines: {node: '>=16.0.0'}
+ '@rushstack/rig-package@0.5.3':
dependencies:
- '@smithy/types': 3.3.0
- tslib: 2.6.3
- dev: false
+ resolve: 1.22.8
+ strip-json-comments: 3.1.1
- /@smithy/node-config-provider/2.0.13:
- resolution: {integrity: sha512-pPpLqYuJcOq1sj1EGu+DoZK47DUS4gepqSTNgRezmrjnzNlSU2/Dcc9Ebzs+WZ0Z5vXKazuE+k+NksFLo07/AA==}
- engines: {node: '>=14.0.0'}
+ '@rushstack/terminal@0.14.3(@types/node@20.17.6)':
dependencies:
- '@smithy/property-provider': 2.0.11
- '@smithy/shared-ini-file-loader': 2.0.12
- '@smithy/types': 2.3.4
- tslib: 2.6.2
- dev: false
+ '@rushstack/node-core-library': 5.10.0(@types/node@20.17.6)
+ supports-color: 8.1.1
+ optionalDependencies:
+ '@types/node': 20.17.6
- /@smithy/node-config-provider/2.3.0:
- resolution: {integrity: sha512-0elK5/03a1JPWMDPaS726Iw6LpQg80gFut1tNpPfxFuChEEklo2yL823V94SpTZTxmKlXFtFgsP55uh3dErnIg==}
- engines: {node: '>=14.0.0'}
+ '@rushstack/ts-command-line@4.23.1(@types/node@20.17.6)':
dependencies:
- '@smithy/property-provider': 2.2.0
- '@smithy/shared-ini-file-loader': 2.4.0
- '@smithy/types': 2.12.0
- tslib: 2.6.3
- dev: false
+ '@rushstack/terminal': 0.14.3(@types/node@20.17.6)
+ '@types/argparse': 1.0.38
+ argparse: 1.0.10
+ string-argv: 0.3.2
+ transitivePeerDependencies:
+ - '@types/node'
- /@smithy/node-config-provider/3.1.2:
- resolution: {integrity: sha512-388fEAa7+6ORj/BDC70peg3fyFBTTXJyXfXJ0Bwd6FYsRltePr2oGzIcm5AuC1WUSLtZ/dF+hYOnfTMs04rLvA==}
- engines: {node: '>=16.0.0'}
- dependencies:
- '@smithy/property-provider': 3.1.2
- '@smithy/shared-ini-file-loader': 3.1.2
- '@smithy/types': 3.2.0
- tslib: 2.6.3
- dev: false
+ '@sec-ant/readable-stream@0.4.1': {}
- /@smithy/node-config-provider/3.1.3:
- resolution: {integrity: sha512-rxdpAZczzholz6CYZxtqDu/aKTxATD5DAUDVj7HoEulq+pDSQVWzbg0btZDlxeFfa6bb2b5tUvgdX5+k8jUqcg==}
- engines: {node: '>=16.0.0'}
+ '@selderee/plugin-htmlparser2@0.11.0':
dependencies:
- '@smithy/property-provider': 3.1.3
- '@smithy/shared-ini-file-loader': 3.1.3
- '@smithy/types': 3.3.0
- tslib: 2.6.3
- dev: false
+ domhandler: 5.0.3
+ selderee: 0.11.0
- /@smithy/node-http-handler/2.1.6:
- resolution: {integrity: sha512-NspvD3aCwiUNtoSTcVHz0RZz1tQ/SaRIe1KPF+r0mAdCZ9eWuhIeJT8ZNPYa1ITn7/Lgg64IyFjqPynZ8KnYQw==}
- engines: {node: '>=14.0.0'}
+ '@selderee/plugin-htmlparser2@0.6.0':
dependencies:
- '@smithy/abort-controller': 2.0.10
- '@smithy/protocol-http': 3.0.6
- '@smithy/querystring-builder': 2.0.10
- '@smithy/types': 2.3.4
- tslib: 2.6.2
- dev: false
+ domhandler: 4.3.1
+ selderee: 0.6.0
- /@smithy/node-http-handler/2.5.0:
- resolution: {integrity: sha512-mVGyPBzkkGQsPoxQUbxlEfRjrj6FPyA3u3u2VXGr9hT8wilsoQdZdvKpMBFMB8Crfhv5dNkKHIW0Yyuc7eABqA==}
- engines: {node: '>=14.0.0'}
+ '@sendgrid/client@7.7.0':
dependencies:
- '@smithy/abort-controller': 2.2.0
- '@smithy/protocol-http': 3.3.0
- '@smithy/querystring-builder': 2.2.0
- '@smithy/types': 2.12.0
- tslib: 2.6.3
- dev: false
+ '@sendgrid/helpers': 7.7.0
+ axios: 0.26.1
+ transitivePeerDependencies:
+ - debug
- /@smithy/node-http-handler/3.1.0:
- resolution: {integrity: sha512-pOpgB6B+VLXLwAyyvRz+ZAVXABlbAsJ2xvn3WZvrppAPImxwQOPFbeSUzWYMhpC8Tr7yQ3R8fG990QDhskkf1Q==}
- engines: {node: '>=16.0.0'}
+ '@sendgrid/eventwebhook@7.7.0':
dependencies:
- '@smithy/abort-controller': 3.1.0
- '@smithy/protocol-http': 4.0.2
- '@smithy/querystring-builder': 3.0.2
- '@smithy/types': 3.2.0
- tslib: 2.6.3
- dev: false
+ starkbank-ecdsa: 1.1.5
- /@smithy/node-http-handler/3.1.2:
- resolution: {integrity: sha512-Td3rUNI7qqtoSLTsJBtsyfoG4cF/XMFmJr6Z2dX8QNzIi6tIW6YmuyFml8mJ2cNpyWNqITKbROMOFrvQjmsOvw==}
- engines: {node: '>=16.0.0'}
+ '@sendgrid/helpers@7.7.0':
dependencies:
- '@smithy/abort-controller': 3.1.1
- '@smithy/protocol-http': 4.0.3
- '@smithy/querystring-builder': 3.0.3
- '@smithy/types': 3.3.0
- tslib: 2.6.3
- dev: false
+ deepmerge: 4.3.1
- /@smithy/property-provider/2.0.11:
- resolution: {integrity: sha512-kzuOadu6XvrnlF1iXofpKXYmo4oe19st9/DE8f5gHNaFepb4eTkR8gD8BSdTnNnv7lxfv6uOwZPg4VS6hemX1w==}
- engines: {node: '>=14.0.0'}
+ '@sentry-internal/tracing@7.120.0':
dependencies:
- '@smithy/types': 2.12.0
- tslib: 2.6.3
- dev: false
+ '@sentry/core': 7.120.0
+ '@sentry/types': 7.120.0
+ '@sentry/utils': 7.120.0
- /@smithy/property-provider/2.2.0:
- resolution: {integrity: sha512-+xiil2lFhtTRzXkx8F053AV46QnIw6e7MV8od5Mi68E1ICOjCeCHw2XfLnDEUHnT9WGUIkwcqavXjfwuJbGlpg==}
- engines: {node: '>=14.0.0'}
+ '@sentry/core@7.120.0':
dependencies:
- '@smithy/types': 2.12.0
- tslib: 2.6.3
- dev: false
+ '@sentry/types': 7.120.0
+ '@sentry/utils': 7.120.0
- /@smithy/property-provider/3.1.2:
- resolution: {integrity: sha512-Hzp32BpeFFexBpO1z+ts8okbq/VLzJBadxanJAo/Wf2CmvXMBp6Q/TLWr7Js6IbMEcr0pDZ02V3u1XZkuQUJaA==}
- engines: {node: '>=16.0.0'}
+ '@sentry/integrations@7.120.0':
dependencies:
- '@smithy/types': 3.2.0
- tslib: 2.6.3
- dev: false
+ '@sentry/core': 7.120.0
+ '@sentry/types': 7.120.0
+ '@sentry/utils': 7.120.0
+ localforage: 1.10.0
- /@smithy/property-provider/3.1.3:
- resolution: {integrity: sha512-zahyOVR9Q4PEoguJ/NrFP4O7SMAfYO1HLhB18M+q+Z4KFd4V2obiMnlVoUFzFLSPeVt1POyNWneHHrZaTMoc/g==}
- engines: {node: '>=16.0.0'}
+ '@sentry/node@7.120.0':
dependencies:
- '@smithy/types': 3.3.0
- tslib: 2.6.3
- dev: false
+ '@sentry-internal/tracing': 7.120.0
+ '@sentry/core': 7.120.0
+ '@sentry/integrations': 7.120.0
+ '@sentry/types': 7.120.0
+ '@sentry/utils': 7.120.0
- /@smithy/protocol-http/1.2.0:
- resolution: {integrity: sha512-GfGfruksi3nXdFok5RhgtOnWe5f6BndzYfmEXISD+5gAGdayFGpjWu5pIqIweTudMtse20bGbc+7MFZXT1Tb8Q==}
- engines: {node: '>=14.0.0'}
- dependencies:
- '@smithy/types': 1.2.0
- tslib: 2.6.3
- dev: false
+ '@sentry/types@7.120.0': {}
- /@smithy/protocol-http/3.0.6:
- resolution: {integrity: sha512-F0jAZzwznMmHaggiZgc7YoS08eGpmLvhVktY/Taz6+OAOHfyIqWSDNgFqYR+WHW9z5fp2XvY4mEUrQgYMQ71jw==}
- engines: {node: '>=14.0.0'}
+ '@sentry/utils@7.120.0':
dependencies:
- '@smithy/types': 2.3.4
- tslib: 2.6.2
- dev: false
+ '@sentry/types': 7.120.0
- /@smithy/protocol-http/3.3.0:
- resolution: {integrity: sha512-Xy5XK1AFWW2nlY/biWZXu6/krgbaf2dg0q492D8M5qthsnU2H+UgFeZLbM76FnH7s6RO/xhQRkj+T6KBO3JzgQ==}
- engines: {node: '>=14.0.0'}
- dependencies:
- '@smithy/types': 2.12.0
- tslib: 2.6.3
- dev: false
+ '@sevinf/maybe@0.5.0': {}
- /@smithy/protocol-http/4.0.2:
- resolution: {integrity: sha512-X/90xNWIOqSR2tLUyWxVIBdatpm35DrL44rI/xoeBWUuanE0iyCXJpTcnqlOpnEzgcu0xCKE06+g70TTu2j7RQ==}
- engines: {node: '>=16.0.0'}
+ '@sideway/address@4.1.5':
dependencies:
- '@smithy/types': 3.2.0
- tslib: 2.6.3
- dev: false
+ '@hapi/hoek': 9.3.0
- /@smithy/protocol-http/4.0.3:
- resolution: {integrity: sha512-x5jmrCWwQlx+Zv4jAtc33ijJ+vqqYN+c/ZkrnpvEe/uDas7AT7A/4Rc2CdfxgWv4WFGmEqODIrrUToPN6DDkGw==}
- engines: {node: '>=16.0.0'}
- dependencies:
- '@smithy/types': 3.3.0
- tslib: 2.6.3
- dev: false
+ '@sideway/formula@3.0.1': {}
- /@smithy/querystring-builder/2.0.10:
- resolution: {integrity: sha512-uujJGp8jzrrU1UHme8sUKEbawQTcTmUWsh8rbGXYD/lMwNLQ+9jQ9dMDWbbH9Hpoa9RER1BeL/38WzGrbpob2w==}
- engines: {node: '>=14.0.0'}
- dependencies:
- '@smithy/types': 2.12.0
- '@smithy/util-uri-escape': 2.2.0
- tslib: 2.6.3
- dev: false
+ '@sideway/pinpoint@2.0.0': {}
- /@smithy/querystring-builder/2.2.0:
- resolution: {integrity: sha512-L1kSeviUWL+emq3CUVSgdogoM/D9QMFaqxL/dd0X7PCNWmPXqt+ExtrBjqT0V7HLN03Vs9SuiLrG3zy3JGnE5A==}
- engines: {node: '>=14.0.0'}
- dependencies:
- '@smithy/types': 2.12.0
- '@smithy/util-uri-escape': 2.2.0
- tslib: 2.6.3
- dev: false
+ '@sinclair/typebox@0.27.8': {}
- /@smithy/querystring-builder/3.0.2:
- resolution: {integrity: sha512-xhv1+HacDYsOLdNt7zW+8Fe779KYAzmWvzs9bC5NlKM8QGYCwwuFwDBynhlU4D5twgi2pZ14Lm4h6RiAazCtmA==}
- engines: {node: '>=16.0.0'}
- dependencies:
- '@smithy/types': 3.2.0
- '@smithy/util-uri-escape': 3.0.0
- tslib: 2.6.3
- dev: false
+ '@sindresorhus/is@4.6.0': {}
- /@smithy/querystring-builder/3.0.3:
- resolution: {integrity: sha512-vyWckeUeesFKzCDaRwWLUA1Xym9McaA6XpFfAK5qI9DKJ4M33ooQGqvM4J+LalH4u/Dq9nFiC8U6Qn1qi0+9zw==}
- engines: {node: '>=16.0.0'}
- dependencies:
- '@smithy/types': 3.3.0
- '@smithy/util-uri-escape': 3.0.0
- tslib: 2.6.3
- dev: false
+ '@sindresorhus/is@5.6.0': {}
- /@smithy/querystring-parser/2.0.10:
- resolution: {integrity: sha512-WSD4EU60Q8scacT5PIpx4Bahn6nWpt+MiYLcBkFt6fOj7AssrNeaNIU2Z0g40ftVmrwLcEOIKGX92ynbVDb3ZA==}
- engines: {node: '>=14.0.0'}
- dependencies:
- '@smithy/types': 2.12.0
- tslib: 2.6.3
- dev: false
+ '@sindresorhus/is@7.0.1': {}
- /@smithy/querystring-parser/2.2.0:
- resolution: {integrity: sha512-BvHCDrKfbG5Yhbpj4vsbuPV2GgcpHiAkLeIlcA1LtfpMz3jrqizP1+OguSNSj1MwBHEiN+jwNisXLGdajGDQJA==}
- engines: {node: '>=14.0.0'}
+ '@sinonjs/commons@3.0.1':
dependencies:
- '@smithy/types': 2.12.0
- tslib: 2.6.3
- dev: false
+ type-detect: 4.0.8
- /@smithy/querystring-parser/3.0.2:
- resolution: {integrity: sha512-C5hyRKgrZGPNh5QqIWzXnW+LXVrPmVQO0iJKjHeb5v3C61ZkP9QhrKmbfchcTyg/VnaE0tMNf/nmLpQlWuiqpg==}
- engines: {node: '>=16.0.0'}
+ '@sinonjs/fake-timers@10.3.0':
dependencies:
- '@smithy/types': 3.2.0
- tslib: 2.6.3
- dev: false
+ '@sinonjs/commons': 3.0.1
- /@smithy/querystring-parser/3.0.3:
- resolution: {integrity: sha512-zahM1lQv2YjmznnfQsWbYojFe55l0SLG/988brlLv1i8z3dubloLF+75ATRsqPBboUXsW6I9CPGE5rQgLfY0vQ==}
- engines: {node: '>=16.0.0'}
+ '@slack/logger@2.0.0':
dependencies:
- '@smithy/types': 3.3.0
- tslib: 2.6.3
- dev: false
+ '@types/node': 20.17.6
- /@smithy/service-error-classification/2.0.3:
- resolution: {integrity: sha512-b+m4QCHXb7oKAkM/jHwHrl5gpqhFoMTHF643L0/vAEkegrcUWyh1UjyoHttuHcP5FnHVVy4EtpPtLkEYD+xMFw==}
- engines: {node: '>=14.0.0'}
+ '@slack/logger@4.0.0':
dependencies:
- '@smithy/types': 2.12.0
- dev: false
+ '@types/node': 20.17.6
- /@smithy/service-error-classification/2.1.5:
- resolution: {integrity: sha512-uBDTIBBEdAQryvHdc5W8sS5YX7RQzF683XrHePVdFmAgKiMofU15FLSM0/HU03hKTnazdNRFa0YHS7+ArwoUSQ==}
- engines: {node: '>=14.0.0'}
- dependencies:
- '@smithy/types': 2.12.0
- dev: false
+ '@slack/types@1.10.0': {}
- /@smithy/service-error-classification/3.0.2:
- resolution: {integrity: sha512-cu0WV2XRttItsuXlcM0kq5MKdphbMMmSd2CXF122dJ75NrFE0o7rruXFGfxAp3BKzgF/DMxX+PllIA/cj4FHMw==}
- engines: {node: '>=16.0.0'}
- dependencies:
- '@smithy/types': 3.3.0
- dev: false
+ '@slack/types@2.14.0': {}
- /@smithy/shared-ini-file-loader/2.0.12:
- resolution: {integrity: sha512-umi0wc4UBGYullAgYNUVfGLgVpxQyES47cnomTqzCKeKO5oudO4hyDNj+wzrOjqDFwK2nWYGVgS8Y0JgGietrw==}
- engines: {node: '>=14.0.0'}
+ '@slack/web-api@5.15.0':
dependencies:
- '@smithy/types': 2.12.0
- tslib: 2.6.3
- dev: false
+ '@slack/logger': 2.0.0
+ '@slack/types': 1.10.0
+ '@types/is-stream': 1.1.0
+ '@types/node': 20.17.6
+ axios: 0.21.4
+ eventemitter3: 3.1.2
+ form-data: 2.5.2
+ is-stream: 1.1.0
+ p-queue: 6.6.2
+ p-retry: 4.6.2
+ transitivePeerDependencies:
+ - debug
- /@smithy/shared-ini-file-loader/2.4.0:
- resolution: {integrity: sha512-WyujUJL8e1B6Z4PBfAqC/aGY1+C7T0w20Gih3yrvJSk97gpiVfB+y7c46T4Nunk+ZngLq0rOIdeVeIklk0R3OA==}
- engines: {node: '>=14.0.0'}
+ '@slack/web-api@7.7.0':
dependencies:
- '@smithy/types': 2.12.0
- tslib: 2.6.3
- dev: false
+ '@slack/logger': 4.0.0
+ '@slack/types': 2.14.0
+ '@types/node': 20.17.6
+ '@types/retry': 0.12.0
+ axios: 1.7.7(debug@3.2.7)
+ eventemitter3: 5.0.1
+ form-data: 4.0.1
+ is-electron: 2.2.2
+ is-stream: 2.0.1
+ p-queue: 6.6.2
+ p-retry: 4.6.2
+ retry: 0.13.1
+ transitivePeerDependencies:
+ - debug
- /@smithy/shared-ini-file-loader/3.1.2:
- resolution: {integrity: sha512-tgnXrXbLMO8vo6VeuqabMw/eTzQHlLmZx0TC0TjtjJghnD0Xl4pEnJtBjTJr6XF5fHMNrt5BcczDXHJT9yNQnA==}
- engines: {node: '>=16.0.0'}
+ '@smiirl/smiirl-library-js@1.0.5':
dependencies:
- '@smithy/types': 3.2.0
- tslib: 2.6.3
- dev: false
+ node-fetch: 2.7.0
+ transitivePeerDependencies:
+ - encoding
- /@smithy/shared-ini-file-loader/3.1.3:
- resolution: {integrity: sha512-Z8Y3+08vgoDgl4HENqNnnzSISAaGrF2RoKupoC47u2wiMp+Z8P/8mDh1CL8+8ujfi2U5naNvopSBmP/BUj8b5w==}
- engines: {node: '>=16.0.0'}
+ '@smithy/abort-controller@3.1.8':
dependencies:
- '@smithy/types': 3.3.0
- tslib: 2.6.3
- dev: false
+ '@smithy/types': 3.7.1
+ tslib: 2.8.1
- /@smithy/signature-v4/1.1.0:
- resolution: {integrity: sha512-fDo3m7YqXBs7neciOePPd/X9LPm5QLlDMdIC4m1H6dgNLnXfLMFNIxEfPyohGA8VW9Wn4X8lygnPSGxDZSmp0Q==}
- engines: {node: '>=14.0.0'}
+ '@smithy/chunked-blob-reader-native@3.0.1':
dependencies:
- '@smithy/eventstream-codec': 1.1.0
- '@smithy/is-array-buffer': 1.1.0
- '@smithy/types': 1.2.0
- '@smithy/util-hex-encoding': 1.1.0
- '@smithy/util-middleware': 1.1.0
- '@smithy/util-uri-escape': 1.1.0
- '@smithy/util-utf8': 1.1.0
- tslib: 2.6.3
- dev: false
+ '@smithy/util-base64': 3.0.0
+ tslib: 2.8.1
- /@smithy/signature-v4/2.0.10:
- resolution: {integrity: sha512-S6gcP4IXfO/VMswovrhxPpqvQvMal7ZRjM4NvblHSPpE5aNBYx67UkHFF3kg0hR3tJKqNpBGbxwq0gzpdHKLRA==}
- engines: {node: '>=14.0.0'}
+ '@smithy/chunked-blob-reader@4.0.0':
dependencies:
- '@smithy/eventstream-codec': 2.0.10
- '@smithy/is-array-buffer': 2.2.0
- '@smithy/types': 2.12.0
- '@smithy/util-hex-encoding': 2.2.0
- '@smithy/util-middleware': 2.2.0
- '@smithy/util-uri-escape': 2.2.0
- '@smithy/util-utf8': 2.3.0
- tslib: 2.6.3
- dev: false
+ tslib: 2.8.1
- /@smithy/signature-v4/2.3.0:
- resolution: {integrity: sha512-ui/NlpILU+6HAQBfJX8BBsDXuKSNrjTSuOYArRblcrErwKFutjrCNb/OExfVRyj9+26F9J+ZmfWT+fKWuDrH3Q==}
- engines: {node: '>=14.0.0'}
+ '@smithy/config-resolver@3.0.12':
dependencies:
- '@smithy/is-array-buffer': 2.2.0
- '@smithy/types': 2.12.0
- '@smithy/util-hex-encoding': 2.2.0
- '@smithy/util-middleware': 2.2.0
- '@smithy/util-uri-escape': 2.2.0
- '@smithy/util-utf8': 2.3.0
- tslib: 2.6.3
- dev: false
+ '@smithy/node-config-provider': 3.1.11
+ '@smithy/types': 3.7.1
+ '@smithy/util-config-provider': 3.0.0
+ '@smithy/util-middleware': 3.0.10
+ tslib: 2.8.1
- /@smithy/signature-v4/3.1.2:
- resolution: {integrity: sha512-3BcPylEsYtD0esM4Hoyml/+s7WP2LFhcM3J2AGdcL2vx9O60TtfpDOL72gjb4lU8NeRPeKAwR77YNyyGvMbuEA==}
- engines: {node: '>=16.0.0'}
+ '@smithy/core@2.5.4':
dependencies:
- '@smithy/is-array-buffer': 3.0.0
- '@smithy/types': 3.3.0
- '@smithy/util-hex-encoding': 3.0.0
- '@smithy/util-middleware': 3.0.3
- '@smithy/util-uri-escape': 3.0.0
+ '@smithy/middleware-serde': 3.0.10
+ '@smithy/protocol-http': 4.1.7
+ '@smithy/types': 3.7.1
+ '@smithy/util-body-length-browser': 3.0.0
+ '@smithy/util-middleware': 3.0.10
+ '@smithy/util-stream': 3.3.1
'@smithy/util-utf8': 3.0.0
- tslib: 2.6.3
- dev: false
+ tslib: 2.8.1
- /@smithy/smithy-client/2.1.9:
- resolution: {integrity: sha512-HTicQSn/lOcXKJT+DKJ4YMu51S6PzbWsO8Z6Pwueo30mSoFKXg5P0BDkg2VCDqCVR0mtddM/F6hKhjW6YAV/yg==}
- engines: {node: '>=14.0.0'}
+ '@smithy/credential-provider-imds@3.2.7':
dependencies:
- '@smithy/middleware-stack': 2.0.4
- '@smithy/types': 2.3.4
- '@smithy/util-stream': 2.0.14
- tslib: 2.6.2
- dev: false
+ '@smithy/node-config-provider': 3.1.11
+ '@smithy/property-provider': 3.1.10
+ '@smithy/types': 3.7.1
+ '@smithy/url-parser': 3.0.10
+ tslib: 2.8.1
- /@smithy/smithy-client/2.5.1:
- resolution: {integrity: sha512-jrbSQrYCho0yDaaf92qWgd+7nAeap5LtHTI51KXqmpIFCceKU3K9+vIVTUH72bOJngBMqa4kyu1VJhRcSrk/CQ==}
- engines: {node: '>=14.0.0'}
+ '@smithy/eventstream-codec@1.1.0':
dependencies:
- '@smithy/middleware-endpoint': 2.5.1
- '@smithy/middleware-stack': 2.2.0
- '@smithy/protocol-http': 3.3.0
- '@smithy/types': 2.12.0
- '@smithy/util-stream': 2.2.0
- tslib: 2.6.3
- dev: false
+ '@aws-crypto/crc32': 3.0.0
+ '@smithy/types': 1.2.0
+ '@smithy/util-hex-encoding': 1.1.0
+ tslib: 2.8.1
- /@smithy/smithy-client/3.1.4:
- resolution: {integrity: sha512-y6xJROGrIoitjpwXLY7P9luDHvuT9jWpAluliuSFdBymFxcl6iyQjo9U/JhYfRHFNTruqsvKOrOESVuPGEcRmQ==}
- engines: {node: '>=16.0.0'}
+ '@smithy/eventstream-codec@3.1.9':
dependencies:
- '@smithy/middleware-endpoint': 3.0.3
- '@smithy/middleware-stack': 3.0.2
- '@smithy/protocol-http': 4.0.2
- '@smithy/types': 3.2.0
- '@smithy/util-stream': 3.0.4
- tslib: 2.6.3
- dev: false
+ '@aws-crypto/crc32': 5.2.0
+ '@smithy/types': 3.7.1
+ '@smithy/util-hex-encoding': 3.0.0
+ tslib: 2.8.1
- /@smithy/smithy-client/3.1.6:
- resolution: {integrity: sha512-w9oboI661hfptr26houZ5mdKc//DMxkuOMXSaIiALqGn4bHYT9S4U69BBS6tHX4TZHgShmhcz0d6aXk7FY5soA==}
- engines: {node: '>=16.0.0'}
+ '@smithy/eventstream-serde-browser@3.0.13':
dependencies:
- '@smithy/middleware-endpoint': 3.0.4
- '@smithy/middleware-stack': 3.0.3
- '@smithy/protocol-http': 4.0.3
- '@smithy/types': 3.3.0
- '@smithy/util-stream': 3.0.6
- tslib: 2.6.3
- dev: false
+ '@smithy/eventstream-serde-universal': 3.0.12
+ '@smithy/types': 3.7.1
+ tslib: 2.8.1
- /@smithy/types/1.2.0:
- resolution: {integrity: sha512-z1r00TvBqF3dh4aHhya7nz1HhvCg4TRmw51fjMrh5do3h+ngSstt/yKlNbHeb9QxJmFbmN8KEVSWgb1bRvfEoA==}
- engines: {node: '>=14.0.0'}
+ '@smithy/eventstream-serde-config-resolver@3.0.10':
dependencies:
- tslib: 2.6.3
- dev: false
+ '@smithy/types': 3.7.1
+ tslib: 2.8.1
- /@smithy/types/2.12.0:
- resolution: {integrity: sha512-QwYgloJ0sVNBeBuBs65cIkTbfzV/Q6ZNPCJ99EICFEdJYG50nGIY/uYXp+TbsdJReIuPr0a0kXmCvren3MbRRw==}
- engines: {node: '>=14.0.0'}
+ '@smithy/eventstream-serde-node@3.0.12':
dependencies:
- tslib: 2.6.3
- dev: false
+ '@smithy/eventstream-serde-universal': 3.0.12
+ '@smithy/types': 3.7.1
+ tslib: 2.8.1
- /@smithy/types/2.3.4:
- resolution: {integrity: sha512-D7xlM9FOMFyFw7YnMXn9dK2KuN6+JhnrZwVt1fWaIu8hCk5CigysweeIT/H/nCo4YV+s8/oqUdLfexbkPZtvqw==}
- engines: {node: '>=14.0.0'}
+ '@smithy/eventstream-serde-universal@3.0.12':
dependencies:
- tslib: 2.6.2
- dev: false
+ '@smithy/eventstream-codec': 3.1.9
+ '@smithy/types': 3.7.1
+ tslib: 2.8.1
- /@smithy/types/3.2.0:
- resolution: {integrity: sha512-cKyeKAPazZRVqm7QPvcPD2jEIt2wqDPAL1KJKb0f/5I7uhollvsWZuZKLclmyP6a+Jwmr3OV3t+X0pZUUHS9BA==}
- engines: {node: '>=16.0.0'}
+ '@smithy/fetch-http-handler@4.1.1':
dependencies:
- tslib: 2.6.3
- dev: false
+ '@smithy/protocol-http': 4.1.7
+ '@smithy/querystring-builder': 3.0.10
+ '@smithy/types': 3.7.1
+ '@smithy/util-base64': 3.0.0
+ tslib: 2.8.1
- /@smithy/types/3.3.0:
- resolution: {integrity: sha512-IxvBBCTFDHbVoK7zIxqA1ZOdc4QfM5HM7rGleCuHi7L1wnKv5Pn69xXJQ9hgxH60ZVygH9/JG0jRgtUncE3QUA==}
- engines: {node: '>=16.0.0'}
+ '@smithy/hash-blob-browser@3.1.9':
dependencies:
- tslib: 2.6.3
- dev: false
+ '@smithy/chunked-blob-reader': 4.0.0
+ '@smithy/chunked-blob-reader-native': 3.0.1
+ '@smithy/types': 3.7.1
+ tslib: 2.8.1
- /@smithy/url-parser/2.0.10:
- resolution: {integrity: sha512-4TXQFGjHcqru8aH5VRB4dSnOFKCYNX6SR1Do6fwxZ+ExT2onLsh2W77cHpks7ma26W5jv6rI1u7d0+KX9F0aOw==}
+ '@smithy/hash-node@3.0.10':
dependencies:
- '@smithy/querystring-parser': 2.0.10
- '@smithy/types': 2.3.4
- tslib: 2.6.2
- dev: false
+ '@smithy/types': 3.7.1
+ '@smithy/util-buffer-from': 3.0.0
+ '@smithy/util-utf8': 3.0.0
+ tslib: 2.8.1
- /@smithy/url-parser/2.2.0:
- resolution: {integrity: sha512-hoA4zm61q1mNTpksiSWp2nEl1dt3j726HdRhiNgVJQMj7mLp7dprtF57mOB6JvEk/x9d2bsuL5hlqZbBuHQylQ==}
+ '@smithy/hash-stream-node@3.1.9':
dependencies:
- '@smithy/querystring-parser': 2.2.0
- '@smithy/types': 2.12.0
- tslib: 2.6.3
- dev: false
+ '@smithy/types': 3.7.1
+ '@smithy/util-utf8': 3.0.0
+ tslib: 2.8.1
- /@smithy/url-parser/3.0.2:
- resolution: {integrity: sha512-pRiPHrgibeAr4avtXDoBHmTLtthwA4l8jKYRfZjNgp+bBPyxDMPRg2TMJaYxqbKemvrOkHu9MIBTv2RkdNfD6w==}
+ '@smithy/invalid-dependency@3.0.10':
dependencies:
- '@smithy/querystring-parser': 3.0.2
- '@smithy/types': 3.2.0
- tslib: 2.6.3
- dev: false
+ '@smithy/types': 3.7.1
+ tslib: 2.8.1
- /@smithy/url-parser/3.0.3:
- resolution: {integrity: sha512-pw3VtZtX2rg+s6HMs6/+u9+hu6oY6U7IohGhVNnjbgKy86wcIsSZwgHrFR+t67Uyxvp4Xz3p3kGXXIpTNisq8A==}
+ '@smithy/is-array-buffer@1.1.0':
dependencies:
- '@smithy/querystring-parser': 3.0.3
- '@smithy/types': 3.3.0
- tslib: 2.6.3
- dev: false
+ tslib: 2.8.1
- /@smithy/util-base64/2.0.0:
- resolution: {integrity: sha512-Zb1E4xx+m5Lud8bbeYi5FkcMJMnn+1WUnJF3qD7rAdXpaL7UjkFQLdmW5fHadoKbdHpwH9vSR8EyTJFHJs++tA==}
- engines: {node: '>=14.0.0'}
+ '@smithy/is-array-buffer@2.2.0':
dependencies:
- '@smithy/util-buffer-from': 2.0.0
- tslib: 2.6.2
- dev: false
+ tslib: 2.8.1
- /@smithy/util-base64/2.3.0:
- resolution: {integrity: sha512-s3+eVwNeJuXUwuMbusncZNViuhv2LjVJ1nMwTqSA0XAC7gjKhqqxRdJPhR8+YrkoZ9IiIbFk/yK6ACe/xlF+hw==}
- engines: {node: '>=14.0.0'}
+ '@smithy/is-array-buffer@3.0.0':
dependencies:
- '@smithy/util-buffer-from': 2.2.0
- '@smithy/util-utf8': 2.3.0
- tslib: 2.6.3
- dev: false
+ tslib: 2.8.1
- /@smithy/util-base64/3.0.0:
- resolution: {integrity: sha512-Kxvoh5Qtt0CDsfajiZOCpJxgtPHXOKwmM+Zy4waD43UoEMA+qPxxa98aE/7ZhdnBFZFXMOiBR5xbcaMhLtznQQ==}
- engines: {node: '>=16.0.0'}
+ '@smithy/md5-js@3.0.10':
dependencies:
- '@smithy/util-buffer-from': 3.0.0
+ '@smithy/types': 3.7.1
'@smithy/util-utf8': 3.0.0
- tslib: 2.6.3
- dev: false
+ tslib: 2.8.1
+
+ '@smithy/middleware-content-length@3.0.12':
+ dependencies:
+ '@smithy/protocol-http': 4.1.7
+ '@smithy/types': 3.7.1
+ tslib: 2.8.1
+
+ '@smithy/middleware-endpoint@3.2.4':
+ dependencies:
+ '@smithy/core': 2.5.4
+ '@smithy/middleware-serde': 3.0.10
+ '@smithy/node-config-provider': 3.1.11
+ '@smithy/shared-ini-file-loader': 3.1.11
+ '@smithy/types': 3.7.1
+ '@smithy/url-parser': 3.0.10
+ '@smithy/util-middleware': 3.0.10
+ tslib: 2.8.1
+
+ '@smithy/middleware-retry@3.0.28':
+ dependencies:
+ '@smithy/node-config-provider': 3.1.11
+ '@smithy/protocol-http': 4.1.7
+ '@smithy/service-error-classification': 3.0.10
+ '@smithy/smithy-client': 3.4.5
+ '@smithy/types': 3.7.1
+ '@smithy/util-middleware': 3.0.10
+ '@smithy/util-retry': 3.0.10
+ tslib: 2.8.1
+ uuid: 9.0.1
- /@smithy/util-body-length-browser/2.0.0:
- resolution: {integrity: sha512-JdDuS4ircJt+FDnaQj88TzZY3+njZ6O+D3uakS32f2VNnDo3vyEuNdBOh/oFd8Df1zSZOuH1HEChk2AOYDezZg==}
+ '@smithy/middleware-serde@3.0.10':
dependencies:
- tslib: 2.6.2
- dev: false
+ '@smithy/types': 3.7.1
+ tslib: 2.8.1
- /@smithy/util-body-length-browser/2.2.0:
- resolution: {integrity: sha512-dtpw9uQP7W+n3vOtx0CfBD5EWd7EPdIdsQnWTDoFf77e3VUf05uA7R7TGipIo8e4WL2kuPdnsr3hMQn9ziYj5w==}
+ '@smithy/middleware-stack@3.0.10':
dependencies:
- tslib: 2.6.3
- dev: false
+ '@smithy/types': 3.7.1
+ tslib: 2.8.1
- /@smithy/util-body-length-browser/3.0.0:
- resolution: {integrity: sha512-cbjJs2A1mLYmqmyVl80uoLTJhAcfzMOyPgjwAYusWKMdLeNtzmMz9YxNl3/jRLoxSS3wkqkf0jwNdtXWtyEBaQ==}
+ '@smithy/node-config-provider@3.1.11':
dependencies:
- tslib: 2.6.3
- dev: false
+ '@smithy/property-provider': 3.1.10
+ '@smithy/shared-ini-file-loader': 3.1.11
+ '@smithy/types': 3.7.1
+ tslib: 2.8.1
- /@smithy/util-body-length-node/2.1.0:
- resolution: {integrity: sha512-/li0/kj/y3fQ3vyzn36NTLGmUwAICb7Jbe/CsWCktW363gh1MOcpEcSO3mJ344Gv2dqz8YJCLQpb6hju/0qOWw==}
- engines: {node: '>=14.0.0'}
+ '@smithy/node-http-handler@3.3.1':
dependencies:
- tslib: 2.6.2
- dev: false
+ '@smithy/abort-controller': 3.1.8
+ '@smithy/protocol-http': 4.1.7
+ '@smithy/querystring-builder': 3.0.10
+ '@smithy/types': 3.7.1
+ tslib: 2.8.1
- /@smithy/util-body-length-node/2.3.0:
- resolution: {integrity: sha512-ITWT1Wqjubf2CJthb0BuT9+bpzBfXeMokH/AAa5EJQgbv9aPMVfnM76iFIZVFf50hYXGbtiV71BHAthNWd6+dw==}
- engines: {node: '>=14.0.0'}
+ '@smithy/property-provider@3.1.10':
dependencies:
- tslib: 2.6.3
- dev: false
+ '@smithy/types': 3.7.1
+ tslib: 2.8.1
- /@smithy/util-body-length-node/3.0.0:
- resolution: {integrity: sha512-Tj7pZ4bUloNUP6PzwhN7K386tmSmEET9QtQg0TgdNOnxhZvCssHji+oZTUIuzxECRfG8rdm2PMw2WCFs6eIYkA==}
- engines: {node: '>=16.0.0'}
+ '@smithy/protocol-http@1.2.0':
dependencies:
- tslib: 2.6.3
- dev: false
+ '@smithy/types': 1.2.0
+ tslib: 2.8.1
- /@smithy/util-buffer-from/1.1.0:
- resolution: {integrity: sha512-9m6NXE0ww+ra5HKHCHig20T+FAwxBAm7DIdwc/767uGWbRcY720ybgPacQNB96JMOI7xVr/CDa3oMzKmW4a+kw==}
- engines: {node: '>=14.0.0'}
+ '@smithy/protocol-http@4.1.7':
dependencies:
- '@smithy/is-array-buffer': 1.1.0
- tslib: 2.6.3
- dev: false
+ '@smithy/types': 3.7.1
+ tslib: 2.8.1
- /@smithy/util-buffer-from/2.0.0:
- resolution: {integrity: sha512-/YNnLoHsR+4W4Vf2wL5lGv0ksg8Bmk3GEGxn2vEQt52AQaPSCuaO5PM5VM7lP1K9qHRKHwrPGktqVoAHKWHxzw==}
- engines: {node: '>=14.0.0'}
+ '@smithy/querystring-builder@3.0.10':
dependencies:
- '@smithy/is-array-buffer': 2.2.0
- tslib: 2.6.3
- dev: false
+ '@smithy/types': 3.7.1
+ '@smithy/util-uri-escape': 3.0.0
+ tslib: 2.8.1
- /@smithy/util-buffer-from/2.2.0:
- resolution: {integrity: sha512-IJdWBbTcMQ6DA0gdNhh/BwrLkDR+ADW5Kr1aZmd4k3DIF6ezMV4R2NIAmT08wQJ3yUK82thHWmC/TnK/wpMMIA==}
- engines: {node: '>=14.0.0'}
+ '@smithy/querystring-parser@3.0.10':
dependencies:
- '@smithy/is-array-buffer': 2.2.0
- tslib: 2.6.3
- dev: false
+ '@smithy/types': 3.7.1
+ tslib: 2.8.1
- /@smithy/util-buffer-from/3.0.0:
- resolution: {integrity: sha512-aEOHCgq5RWFbP+UDPvPot26EJHjOC+bRgse5A8V3FSShqd5E5UN4qc7zkwsvJPPAVsf73QwYcHN1/gt/rtLwQA==}
- engines: {node: '>=16.0.0'}
+ '@smithy/service-error-classification@3.0.10':
dependencies:
- '@smithy/is-array-buffer': 3.0.0
- tslib: 2.6.3
- dev: false
+ '@smithy/types': 3.7.1
- /@smithy/util-config-provider/2.0.0:
- resolution: {integrity: sha512-xCQ6UapcIWKxXHEU4Mcs2s7LcFQRiU3XEluM2WcCjjBtQkUN71Tb+ydGmJFPxMUrW/GWMgQEEGipLym4XG0jZg==}
- engines: {node: '>=14.0.0'}
+ '@smithy/shared-ini-file-loader@3.1.11':
dependencies:
- tslib: 2.6.3
- dev: false
+ '@smithy/types': 3.7.1
+ tslib: 2.8.1
- /@smithy/util-config-provider/2.3.0:
- resolution: {integrity: sha512-HZkzrRcuFN1k70RLqlNK4FnPXKOpkik1+4JaBoHNJn+RnJGYqaa3c5/+XtLOXhlKzlRgNvyaLieHTW2VwGN0VQ==}
- engines: {node: '>=14.0.0'}
+ '@smithy/signature-v4@1.1.0':
dependencies:
- tslib: 2.6.3
- dev: false
+ '@smithy/eventstream-codec': 1.1.0
+ '@smithy/is-array-buffer': 1.1.0
+ '@smithy/types': 1.2.0
+ '@smithy/util-hex-encoding': 1.1.0
+ '@smithy/util-middleware': 1.1.0
+ '@smithy/util-uri-escape': 1.1.0
+ '@smithy/util-utf8': 1.1.0
+ tslib: 2.8.1
- /@smithy/util-config-provider/3.0.0:
- resolution: {integrity: sha512-pbjk4s0fwq3Di/ANL+rCvJMKM5bzAQdE5S/6RL5NXgMExFAi6UgQMPOm5yPaIWPpr+EOXKXRonJ3FoxKf4mCJQ==}
- engines: {node: '>=16.0.0'}
+ '@smithy/signature-v4@4.2.3':
dependencies:
- tslib: 2.6.3
- dev: false
+ '@smithy/is-array-buffer': 3.0.0
+ '@smithy/protocol-http': 4.1.7
+ '@smithy/types': 3.7.1
+ '@smithy/util-hex-encoding': 3.0.0
+ '@smithy/util-middleware': 3.0.10
+ '@smithy/util-uri-escape': 3.0.0
+ '@smithy/util-utf8': 3.0.0
+ tslib: 2.8.1
- /@smithy/util-defaults-mode-browser/2.0.13:
- resolution: {integrity: sha512-UmmOdUzaQjqdsl1EjbpEaQxM0VDFqTj6zDuI26/hXN7L/a1k1koTwkYpogHMvunDX3fjrQusg5gv1Td4UsGyog==}
- engines: {node: '>= 10.0.0'}
+ '@smithy/smithy-client@3.4.5':
dependencies:
- '@smithy/property-provider': 2.0.11
- '@smithy/smithy-client': 2.1.9
- '@smithy/types': 2.3.4
- bowser: 2.11.0
- tslib: 2.6.2
- dev: false
+ '@smithy/core': 2.5.4
+ '@smithy/middleware-endpoint': 3.2.4
+ '@smithy/middleware-stack': 3.0.10
+ '@smithy/protocol-http': 4.1.7
+ '@smithy/types': 3.7.1
+ '@smithy/util-stream': 3.3.1
+ tslib: 2.8.1
- /@smithy/util-defaults-mode-browser/2.2.1:
- resolution: {integrity: sha512-RtKW+8j8skk17SYowucwRUjeh4mCtnm5odCL0Lm2NtHQBsYKrNW0od9Rhopu9wF1gHMfHeWF7i90NwBz/U22Kw==}
- engines: {node: '>= 10.0.0'}
+ '@smithy/types@1.2.0':
dependencies:
- '@smithy/property-provider': 2.2.0
- '@smithy/smithy-client': 2.5.1
- '@smithy/types': 2.12.0
- bowser: 2.11.0
- tslib: 2.6.3
- dev: false
+ tslib: 2.8.1
- /@smithy/util-defaults-mode-browser/3.0.6:
- resolution: {integrity: sha512-tAgoc++Eq+KL7g55+k108pn7nAob3GLWNEMbXhZIQyBcBNaE/o3+r4AEbae0A8bWvLRvArVsjeiuhMykGa04/A==}
- engines: {node: '>= 10.0.0'}
+ '@smithy/types@3.7.1':
dependencies:
- '@smithy/property-provider': 3.1.3
- '@smithy/smithy-client': 3.1.6
- '@smithy/types': 3.3.0
- bowser: 2.11.0
- tslib: 2.6.3
- dev: false
+ tslib: 2.8.1
- /@smithy/util-defaults-mode-node/2.0.15:
- resolution: {integrity: sha512-g6J7MHAibVPMTlXyH3mL+Iet4lMJKFVhsOhJmn+IKG81uy9m42CkRSDlwdQSJAcprLQBIaOPdFxNXQvrg2w1Uw==}
- engines: {node: '>= 10.0.0'}
- dependencies:
- '@smithy/config-resolver': 2.0.11
- '@smithy/credential-provider-imds': 2.0.13
- '@smithy/node-config-provider': 2.0.13
- '@smithy/property-provider': 2.0.11
- '@smithy/smithy-client': 2.1.9
- '@smithy/types': 2.3.4
- tslib: 2.6.2
- dev: false
-
- /@smithy/util-defaults-mode-node/2.3.1:
- resolution: {integrity: sha512-vkMXHQ0BcLFysBMWgSBLSk3+leMpFSyyFj8zQtv5ZyUBx8/owVh1/pPEkzmW/DR/Gy/5c8vjLDD9gZjXNKbrpA==}
- engines: {node: '>= 10.0.0'}
- dependencies:
- '@smithy/config-resolver': 2.2.0
- '@smithy/credential-provider-imds': 2.3.0
- '@smithy/node-config-provider': 2.3.0
- '@smithy/property-provider': 2.2.0
- '@smithy/smithy-client': 2.5.1
- '@smithy/types': 2.12.0
- tslib: 2.6.3
- dev: false
-
- /@smithy/util-defaults-mode-node/3.0.6:
- resolution: {integrity: sha512-UNerul6/E8aiCyFTBHk+RSIZCo7m96d/N5K3FeO/wFeZP6oy5HAicLzxqa85Wjv7MkXSxSySX29L/LwTV/QMag==}
- engines: {node: '>= 10.0.0'}
- dependencies:
- '@smithy/config-resolver': 3.0.3
- '@smithy/credential-provider-imds': 3.1.2
- '@smithy/node-config-provider': 3.1.3
- '@smithy/property-provider': 3.1.3
- '@smithy/smithy-client': 3.1.6
- '@smithy/types': 3.3.0
- tslib: 2.6.3
- dev: false
-
- /@smithy/util-endpoints/1.2.0:
- resolution: {integrity: sha512-BuDHv8zRjsE5zXd3PxFXFknzBG3owCpjq8G3FcsXW3CykYXuEqM3nTSsmLzw5q+T12ZYuDlVUZKBdpNbhVtlrQ==}
- engines: {node: '>= 14.0.0'}
+ '@smithy/url-parser@3.0.10':
dependencies:
- '@smithy/node-config-provider': 2.3.0
- '@smithy/types': 2.12.0
- tslib: 2.6.3
- dev: false
+ '@smithy/querystring-parser': 3.0.10
+ '@smithy/types': 3.7.1
+ tslib: 2.8.1
- /@smithy/util-endpoints/2.0.3:
- resolution: {integrity: sha512-Dyi+pfLglDHSGsKSYunuUUSFM5V0tz7UDgv1Ex97yg+Xkn0Eb0rH0rcvl1n0MaJ11fac3HKDOH0DkALyQYCQag==}
- engines: {node: '>=16.0.0'}
+ '@smithy/util-base64@3.0.0':
dependencies:
- '@smithy/node-config-provider': 3.1.3
- '@smithy/types': 3.3.0
- tslib: 2.6.3
- dev: false
+ '@smithy/util-buffer-from': 3.0.0
+ '@smithy/util-utf8': 3.0.0
+ tslib: 2.8.1
- /@smithy/util-hex-encoding/1.1.0:
- resolution: {integrity: sha512-7UtIE9eH0u41zpB60Jzr0oNCQ3hMJUabMcKRUVjmyHTXiWDE4vjSqN6qlih7rCNeKGbioS7f/y2Jgym4QZcKFg==}
- engines: {node: '>=14.0.0'}
+ '@smithy/util-body-length-browser@3.0.0':
dependencies:
- tslib: 2.6.3
- dev: false
+ tslib: 2.8.1
- /@smithy/util-hex-encoding/2.0.0:
- resolution: {integrity: sha512-c5xY+NUnFqG6d7HFh1IFfrm3mGl29lC+vF+geHv4ToiuJCBmIfzx6IeHLg+OgRdPFKDXIw6pvi+p3CsscaMcMA==}
- engines: {node: '>=14.0.0'}
+ '@smithy/util-body-length-node@3.0.0':
dependencies:
- tslib: 2.6.3
- dev: false
+ tslib: 2.8.1
- /@smithy/util-hex-encoding/2.2.0:
- resolution: {integrity: sha512-7iKXR+/4TpLK194pVjKiasIyqMtTYJsgKgM242Y9uzt5dhHnUDvMNb+3xIhRJ9QhvqGii/5cRUt4fJn3dtXNHQ==}
- engines: {node: '>=14.0.0'}
+ '@smithy/util-buffer-from@1.1.0':
dependencies:
- tslib: 2.6.3
- dev: false
+ '@smithy/is-array-buffer': 1.1.0
+ tslib: 2.8.1
- /@smithy/util-hex-encoding/3.0.0:
- resolution: {integrity: sha512-eFndh1WEK5YMUYvy3lPlVmYY/fZcQE1D8oSf41Id2vCeIkKJXPcYDCZD+4+xViI6b1XSd7tE+s5AmXzz5ilabQ==}
- engines: {node: '>=16.0.0'}
+ '@smithy/util-buffer-from@2.2.0':
dependencies:
- tslib: 2.6.3
- dev: false
+ '@smithy/is-array-buffer': 2.2.0
+ tslib: 2.8.1
- /@smithy/util-middleware/1.1.0:
- resolution: {integrity: sha512-6hhckcBqVgjWAqLy2vqlPZ3rfxLDhFWEmM7oLh2POGvsi7j0tHkbN7w4DFhuBExVJAbJ/qqxqZdRY6Fu7/OezQ==}
- engines: {node: '>=14.0.0'}
+ '@smithy/util-buffer-from@3.0.0':
dependencies:
- tslib: 2.6.3
- dev: false
+ '@smithy/is-array-buffer': 3.0.0
+ tslib: 2.8.1
- /@smithy/util-middleware/2.0.3:
- resolution: {integrity: sha512-+FOCFYOxd2HO7v/0hkFSETKf7FYQWa08wh/x/4KUeoVBnLR4juw8Qi+TTqZI6E2h5LkzD9uOaxC9lAjrpVzaaA==}
- engines: {node: '>=14.0.0'}
+ '@smithy/util-config-provider@3.0.0':
dependencies:
- '@smithy/types': 2.12.0
- tslib: 2.6.3
- dev: false
+ tslib: 2.8.1
- /@smithy/util-middleware/2.2.0:
- resolution: {integrity: sha512-L1qpleXf9QD6LwLCJ5jddGkgWyuSvWBkJwWAZ6kFkdifdso+sk3L3O1HdmPvCdnCK3IS4qWyPxev01QMnfHSBw==}
- engines: {node: '>=14.0.0'}
+ '@smithy/util-defaults-mode-browser@3.0.28':
dependencies:
- '@smithy/types': 2.12.0
- tslib: 2.6.3
- dev: false
+ '@smithy/property-provider': 3.1.10
+ '@smithy/smithy-client': 3.4.5
+ '@smithy/types': 3.7.1
+ bowser: 2.11.0
+ tslib: 2.8.1
- /@smithy/util-middleware/3.0.2:
- resolution: {integrity: sha512-7WW5SD0XVrpfqljBYzS5rLR+EiDzl7wCVJZ9Lo6ChNFV4VYDk37Z1QI5w/LnYtU/QKnSawYoHRd7VjSyC8QRQQ==}
- engines: {node: '>=16.0.0'}
+ '@smithy/util-defaults-mode-node@3.0.28':
dependencies:
- '@smithy/types': 3.2.0
- tslib: 2.6.3
- dev: false
+ '@smithy/config-resolver': 3.0.12
+ '@smithy/credential-provider-imds': 3.2.7
+ '@smithy/node-config-provider': 3.1.11
+ '@smithy/property-provider': 3.1.10
+ '@smithy/smithy-client': 3.4.5
+ '@smithy/types': 3.7.1
+ tslib: 2.8.1
- /@smithy/util-middleware/3.0.3:
- resolution: {integrity: sha512-l+StyYYK/eO3DlVPbU+4Bi06Jjal+PFLSMmlWM1BEwyLxZ3aKkf1ROnoIakfaA7mC6uw3ny7JBkau4Yc+5zfWw==}
- engines: {node: '>=16.0.0'}
+ '@smithy/util-endpoints@2.1.6':
dependencies:
- '@smithy/types': 3.3.0
- tslib: 2.6.3
- dev: false
+ '@smithy/node-config-provider': 3.1.11
+ '@smithy/types': 3.7.1
+ tslib: 2.8.1
- /@smithy/util-retry/2.0.3:
- resolution: {integrity: sha512-gw+czMnj82i+EaH7NL7XKkfX/ZKrCS2DIWwJFPKs76bMgkhf0y1C94Lybn7f8GkBI9lfIOUdPYtzm19zQOC8sw==}
- engines: {node: '>= 14.0.0'}
+ '@smithy/util-hex-encoding@1.1.0':
dependencies:
- '@smithy/service-error-classification': 2.0.3
- '@smithy/types': 2.3.4
- tslib: 2.6.2
- dev: false
+ tslib: 2.8.1
- /@smithy/util-retry/2.2.0:
- resolution: {integrity: sha512-q9+pAFPTfftHXRytmZ7GzLFFrEGavqapFc06XxzZFcSIGERXMerXxCitjOG1prVDR9QdjqotF40SWvbqcCpf8g==}
- engines: {node: '>= 14.0.0'}
+ '@smithy/util-hex-encoding@3.0.0':
dependencies:
- '@smithy/service-error-classification': 2.1.5
- '@smithy/types': 2.12.0
- tslib: 2.6.3
- dev: false
+ tslib: 2.8.1
- /@smithy/util-retry/3.0.2:
- resolution: {integrity: sha512-HUVOb1k8p/IH6WFUjsLa+L9H1Zi/FAAB2CDOpWuffI1b2Txi6sknau8kNfC46Xrt39P1j2KDzCE1UlLa2eW5+A==}
- engines: {node: '>=16.0.0'}
+ '@smithy/util-middleware@1.1.0':
dependencies:
- '@smithy/service-error-classification': 3.0.2
- '@smithy/types': 3.3.0
- tslib: 2.6.3
- dev: false
+ tslib: 2.8.1
- /@smithy/util-stream/2.0.14:
- resolution: {integrity: sha512-XjvlDYe+9DieXhLf7p+EgkXwFtl34kHZcWfHnc5KaILbhyVfDLWuqKTFx6WwCFqb01iFIig8trGwExRIqqkBYg==}
- engines: {node: '>=14.0.0'}
+ '@smithy/util-middleware@3.0.10':
dependencies:
- '@smithy/fetch-http-handler': 2.2.1
- '@smithy/node-http-handler': 2.1.6
- '@smithy/types': 2.3.4
- '@smithy/util-base64': 2.0.0
- '@smithy/util-buffer-from': 2.0.0
- '@smithy/util-hex-encoding': 2.0.0
- '@smithy/util-utf8': 2.0.0
- tslib: 2.6.2
- dev: false
-
- /@smithy/util-stream/2.2.0:
- resolution: {integrity: sha512-17faEXbYWIRst1aU9SvPZyMdWmqIrduZjVOqCPMIsWFNxs5yQQgFrJL6b2SdiCzyW9mJoDjFtgi53xx7EH+BXA==}
- engines: {node: '>=14.0.0'}
- dependencies:
- '@smithy/fetch-http-handler': 2.5.0
- '@smithy/node-http-handler': 2.5.0
- '@smithy/types': 2.12.0
- '@smithy/util-base64': 2.3.0
- '@smithy/util-buffer-from': 2.2.0
- '@smithy/util-hex-encoding': 2.2.0
- '@smithy/util-utf8': 2.3.0
- tslib: 2.6.3
- dev: false
+ '@smithy/types': 3.7.1
+ tslib: 2.8.1
- /@smithy/util-stream/3.0.4:
- resolution: {integrity: sha512-CcMioiaOOsEVdb09pS7ux1ij7QcQ2jE/cE1+iin1DXMeRgAEQN/47m7Xztu7KFQuQsj0A5YwB2UN45q97CqKCg==}
- engines: {node: '>=16.0.0'}
+ '@smithy/util-retry@3.0.10':
dependencies:
- '@smithy/fetch-http-handler': 3.1.0
- '@smithy/node-http-handler': 3.1.0
- '@smithy/types': 3.2.0
- '@smithy/util-base64': 3.0.0
- '@smithy/util-buffer-from': 3.0.0
- '@smithy/util-hex-encoding': 3.0.0
- '@smithy/util-utf8': 3.0.0
- tslib: 2.6.3
- dev: false
+ '@smithy/service-error-classification': 3.0.10
+ '@smithy/types': 3.7.1
+ tslib: 2.8.1
- /@smithy/util-stream/3.0.6:
- resolution: {integrity: sha512-w9i//7egejAIvplX821rPWWgaiY1dxsQUw0hXX7qwa/uZ9U3zplqTQ871jWadkcVB9gFDhkPWYVZf4yfFbZ0xA==}
- engines: {node: '>=16.0.0'}
+ '@smithy/util-stream@3.3.1':
dependencies:
- '@smithy/fetch-http-handler': 3.2.1
- '@smithy/node-http-handler': 3.1.2
- '@smithy/types': 3.3.0
+ '@smithy/fetch-http-handler': 4.1.1
+ '@smithy/node-http-handler': 3.3.1
+ '@smithy/types': 3.7.1
'@smithy/util-base64': 3.0.0
'@smithy/util-buffer-from': 3.0.0
'@smithy/util-hex-encoding': 3.0.0
'@smithy/util-utf8': 3.0.0
- tslib: 2.6.3
- dev: false
-
- /@smithy/util-uri-escape/1.1.0:
- resolution: {integrity: sha512-/jL/V1xdVRt5XppwiaEU8Etp5WHZj609n0xMTuehmCqdoOFbId1M+aEeDWZsQ+8JbEB/BJ6ynY2SlYmOaKtt8w==}
- engines: {node: '>=14.0.0'}
- dependencies:
- tslib: 2.6.3
- dev: false
+ tslib: 2.8.1
- /@smithy/util-uri-escape/2.2.0:
- resolution: {integrity: sha512-jtmJMyt1xMD/d8OtbVJ2gFZOSKc+ueYJZPW20ULW1GOp/q/YIM0wNh+u8ZFao9UaIGz4WoPW8hC64qlWLIfoDA==}
- engines: {node: '>=14.0.0'}
+ '@smithy/util-uri-escape@1.1.0':
dependencies:
- tslib: 2.6.3
- dev: false
+ tslib: 2.8.1
- /@smithy/util-uri-escape/3.0.0:
- resolution: {integrity: sha512-LqR7qYLgZTD7nWLBecUi4aqolw8Mhza9ArpNEQ881MJJIU2sE5iHCK6TdyqqzcDLy0OPe10IY4T8ctVdtynubg==}
- engines: {node: '>=16.0.0'}
+ '@smithy/util-uri-escape@3.0.0':
dependencies:
- tslib: 2.6.3
- dev: false
+ tslib: 2.8.1
- /@smithy/util-utf8/1.1.0:
- resolution: {integrity: sha512-p/MYV+JmqmPyjdgyN2UxAeYDj9cBqCjp0C/NsTWnnjoZUVqoeZ6IrW915L9CAKWVECgv9lVQGc4u/yz26/bI1A==}
- engines: {node: '>=14.0.0'}
+ '@smithy/util-utf8@1.1.0':
dependencies:
'@smithy/util-buffer-from': 1.1.0
- tslib: 2.6.3
- dev: false
-
- /@smithy/util-utf8/2.0.0:
- resolution: {integrity: sha512-rctU1VkziY84n5OXe3bPNpKR001ZCME2JCaBBFgtiM2hfKbHFudc/BkMuPab8hRbLd0j3vbnBTTZ1igBf0wgiQ==}
- engines: {node: '>=14.0.0'}
- dependencies:
- '@smithy/util-buffer-from': 2.0.0
- tslib: 2.6.2
- dev: false
+ tslib: 2.8.1
- /@smithy/util-utf8/2.3.0:
- resolution: {integrity: sha512-R8Rdn8Hy72KKcebgLiv8jQcQkXoLMOGGv5uI1/k0l+snqkOzQ1R0ChUBCxWMlBsFMekWjq0wRudIweFs7sKT5A==}
- engines: {node: '>=14.0.0'}
+ '@smithy/util-utf8@2.3.0':
dependencies:
'@smithy/util-buffer-from': 2.2.0
- tslib: 2.6.3
- dev: false
+ tslib: 2.8.1
- /@smithy/util-utf8/3.0.0:
- resolution: {integrity: sha512-rUeT12bxFnplYDe815GXbq/oixEGHfRFFtcTF3YdDi/JaENIM6aSYYLJydG83UNzLXeRI5K8abYd/8Sp/QM0kA==}
- engines: {node: '>=16.0.0'}
+ '@smithy/util-utf8@3.0.0':
dependencies:
'@smithy/util-buffer-from': 3.0.0
- tslib: 2.6.3
- dev: false
+ tslib: 2.8.1
- /@smithy/util-waiter/2.0.10:
- resolution: {integrity: sha512-yQjwWVrwYw+/f3hFQccE3zZF7lk6N6xtNcA6jvhWFYhnyKAm6B2mX8Gzftl0TbgoPUpzCvKYlvhaEpVtRpVfVw==}
- engines: {node: '>=14.0.0'}
+ '@smithy/util-waiter@3.1.9':
dependencies:
- '@smithy/abort-controller': 2.0.10
- '@smithy/types': 2.3.4
- tslib: 2.6.2
- dev: false
+ '@smithy/abort-controller': 3.1.8
+ '@smithy/types': 3.7.1
+ tslib: 2.8.1
- /@smithy/util-waiter/2.2.0:
- resolution: {integrity: sha512-IHk53BVw6MPMi2Gsn+hCng8rFA3ZmR3Rk7GllxDUW9qFJl/hiSvskn7XldkECapQVkIg/1dHpMAxI9xSTaLLSA==}
- engines: {node: '>=14.0.0'}
+ '@sparticuz/chromium@121.0.0':
dependencies:
- '@smithy/abort-controller': 2.2.0
- '@smithy/types': 2.12.0
- tslib: 2.6.3
- dev: false
+ follow-redirects: 1.15.9(debug@3.2.7)
+ tar-fs: 3.0.6
+ transitivePeerDependencies:
+ - debug
- /@smithy/util-waiter/3.1.1:
- resolution: {integrity: sha512-xT+Bbpe5sSrC7cCWSElOreDdWzqovR1V+7xrp+fmwGAA+TPYBb78iasaXjO1pa+65sY6JjW5GtGeIoJwCK9B1g==}
- engines: {node: '>=16.0.0'}
+ '@std-uritemplate/std-uritemplate@1.0.6': {}
+
+ '@stylistic/eslint-plugin-js@2.11.0(eslint@8.57.1)':
dependencies:
- '@smithy/abort-controller': 3.1.0
- '@smithy/types': 3.2.0
- tslib: 2.6.3
- dev: false
+ eslint: 8.57.1
+ eslint-visitor-keys: 4.2.0
+ espree: 10.3.0
- /@sparticuz/chromium/121.0.0:
- resolution: {integrity: sha512-0DiRzlCJljjMKOUh0W36zeR1ibG7EZkwIG+ve8Lg0+tbCM6TWaFlHMSt/6K6Y7o7PFy3eaPoLrUvGRRYUvd81g==}
- engines: {node: '>= 16'}
+ '@stylistic/eslint-plugin-jsx@2.11.0(eslint@8.57.1)':
dependencies:
- follow-redirects: 1.15.5
- tar-fs: 3.0.4
+ eslint: 8.57.1
+ eslint-visitor-keys: 4.2.0
+ espree: 10.3.0
+ estraverse: 5.3.0
+ picomatch: 4.0.2
+
+ '@stylistic/eslint-plugin-ts@2.11.0(eslint@8.57.1)(typescript@5.6.3)':
+ dependencies:
+ '@typescript-eslint/utils': 8.15.0(eslint@8.57.1)(typescript@5.6.3)
+ eslint: 8.57.1
+ eslint-visitor-keys: 4.2.0
+ espree: 10.3.0
transitivePeerDependencies:
- - debug
- dev: false
+ - supports-color
+ - typescript
- /@supabase/auth-js/2.65.1:
- resolution: {integrity: sha512-IA7i2Xq2SWNCNMKxwmPlHafBQda0qtnFr8QnyyBr+KaSxoXXqEzFCnQ1dGTy6bsZjVBgXu++o3qrDypTspaAPw==}
+ '@supabase/auth-js@2.65.1':
dependencies:
'@supabase/node-fetch': 2.6.15
- dev: false
- /@supabase/functions-js/2.4.3:
- resolution: {integrity: sha512-sOLXy+mWRyu4LLv1onYydq+10mNRQ4rzqQxNhbrKLTLTcdcmS9hbWif0bGz/NavmiQfPs4ZcmQJp4WqOXlR4AQ==}
+ '@supabase/functions-js@2.4.3':
dependencies:
'@supabase/node-fetch': 2.6.15
- dev: false
- /@supabase/node-fetch/2.6.15:
- resolution: {integrity: sha512-1ibVeYUacxWYi9i0cf5efil6adJ9WRyZBLivgjs+AUpewx1F3xPi7gLgaASI2SmIQxPoCEjAsLAzKPgMJVgOUQ==}
- engines: {node: 4.x || >=6.0.0}
+ '@supabase/node-fetch@2.6.15':
dependencies:
whatwg-url: 5.0.0
- dev: false
- /@supabase/postgrest-js/1.16.3:
- resolution: {integrity: sha512-HI6dsbW68AKlOPofUjDTaosiDBCtW4XAm0D18pPwxoW3zKOE2Ru13Z69Wuys9fd6iTpfDViNco5sgrtnP0666A==}
+ '@supabase/postgrest-js@1.16.3':
dependencies:
'@supabase/node-fetch': 2.6.15
- dev: false
- /@supabase/realtime-js/2.10.7:
- resolution: {integrity: sha512-OLI0hiSAqQSqRpGMTUwoIWo51eUivSYlaNBgxsXZE7PSoWh12wPRdVt0psUMaUzEonSB85K21wGc7W5jHnT6uA==}
+ '@supabase/realtime-js@2.10.7':
dependencies:
'@supabase/node-fetch': 2.6.15
- '@types/phoenix': 1.6.2
+ '@types/phoenix': 1.6.5
'@types/ws': 8.5.13
ws: 8.18.0
transitivePeerDependencies:
- bufferutil
- utf-8-validate
- dev: false
- /@supabase/storage-js/2.7.1:
- resolution: {integrity: sha512-asYHcyDR1fKqrMpytAS1zjyEfvxuOIp1CIXX7ji4lHHcJKqyk+sLl/Vxgm4sN6u8zvuUtae9e4kDxQP2qrwWBA==}
+ '@supabase/storage-js@2.7.1':
dependencies:
'@supabase/node-fetch': 2.6.15
- dev: false
- /@supabase/supabase-js/2.46.1:
- resolution: {integrity: sha512-HiBpd8stf7M6+tlr+/82L8b2QmCjAD8ex9YdSAKU+whB/SHXXJdus1dGlqiH9Umy9ePUuxaYmVkGd9BcvBnNvg==}
+ '@supabase/supabase-js@2.46.1':
dependencies:
'@supabase/auth-js': 2.65.1
'@supabase/functions-js': 2.4.3
@@ -21583,57 +29902,52 @@ packages:
transitivePeerDependencies:
- bufferutil
- utf-8-validate
- dev: false
- /@szmarczak/http-timer/4.0.6:
- resolution: {integrity: sha512-4BAffykYOgO+5nzBWYwE3W90sBgLJoUPRWWcL8wlyiM8IB8ipJz3UMJ9KXQd1RKQXpKp8Tutn80HZtWsu2u76w==}
- engines: {node: '>=10'}
+ '@swc/counter@0.1.3': {}
+
+ '@swc/helpers@0.5.13':
+ dependencies:
+ tslib: 2.8.1
+
+ '@szmarczak/http-timer@4.0.6':
dependencies:
defer-to-connect: 2.0.1
- dev: false
- /@szmarczak/http-timer/5.0.1:
- resolution: {integrity: sha512-+PmQX0PiAYPMeVYe237LJAYvOMYW1j2rH5YROyS3b4CTVJum34HfRvKvAzozHAQG0TnHNdUfY9nCeUyRAs//cw==}
- engines: {node: '>=14.16'}
+ '@szmarczak/http-timer@5.0.1':
dependencies:
defer-to-connect: 2.0.1
- dev: false
- /@techteamer/ocsp/1.0.0:
- resolution: {integrity: sha512-lNAOoFHaZN+4huo30ukeqVrUmfC+avoEBYQ11QAnAw1PFhnI5oBCg8O/TNiCoEWix7gNGBIEjrQwtPREqKMPog==}
+ '@tanstack/query-core@5.60.6': {}
+
+ '@tanstack/react-query@5.61.0(react@18.3.1)':
+ dependencies:
+ '@tanstack/query-core': 5.60.6
+ react: 18.3.1
+
+ '@tanstack/react-query@5.61.0(react@19.0.0-rc-66855b96-20241106)':
+ dependencies:
+ '@tanstack/query-core': 5.60.6
+ react: 19.0.0-rc-66855b96-20241106
+
+ '@techteamer/ocsp@1.0.0':
dependencies:
asn1.js: 5.4.1
- asn1.js-rfc2560: 5.0.1_asn1.js@5.4.1
+ asn1.js-rfc2560: 5.0.1(asn1.js@5.4.1)
asn1.js-rfc5280: 3.0.0
- async: 3.2.4
+ async: 3.2.6
simple-lru-cache: 0.0.2
- dev: false
- /@tediousjs/connection-string/0.5.0:
- resolution: {integrity: sha512-7qSgZbincDDDFyRweCIEvZULFAw5iz/DeunhvuxpL31nfntX3P4Yd4HkHBRg9H8CdqY1e5WFN1PZIz/REL9MVQ==}
- dev: false
+ '@tediousjs/connection-string@0.5.0': {}
- /@tokenizer/token/0.3.0:
- resolution: {integrity: sha512-OvjF+z51L3ov0OyAU0duzsYuvO01PH7x4t6DJx+guahgTnBHkhJdG7soQeTSFLWN3efnHyibZ4Z8l2EuWwJN3A==}
- dev: false
+ '@tokenizer/token@0.3.0': {}
- /@tootallnate/once/1.1.2:
- resolution: {integrity: sha512-RbzJvlNzmRq5c3O09UipeuXno4tA1FE6ikOjxZK0tuxVv3412l64l5t1W5pj4+rJq9vpkm/kwiR07aZXnsKPxw==}
- engines: {node: '>= 6'}
- dev: false
+ '@tootallnate/once@1.1.2': {}
- /@tootallnate/once/2.0.0:
- resolution: {integrity: sha512-XCuKFP5PS55gnMVu3dty8KPatLqUoy/ZYzDzAGCQ8JNFCkLXzmI7vNHCR+XpbZaMWQK/vQubr7PkYq8g470J/A==}
- engines: {node: '>= 10'}
- dev: false
+ '@tootallnate/once@2.0.0': {}
- /@tootallnate/quickjs-emscripten/0.23.0:
- resolution: {integrity: sha512-C5Mc6rdnsaJDjO3UpGW/CQTHtCKaYlScZTly4JIu97Jxo/odCiH0ITnDXSJPTOrEKk/ycSZ0AOgTmkDtkOsvIA==}
- dev: false
+ '@tootallnate/quickjs-emscripten@0.23.0': {}
- /@tryfabric/martian/1.2.4:
- resolution: {integrity: sha512-g7SP7beaxrjxLnW//vskra07a1jsJowqp07KMouxh4gCwaF+ItHbRZN8O+1dhJivBi3VdasT71BPyk+8wzEreQ==}
- engines: {node: '>=15'}
+ '@tryfabric/martian@1.2.4':
dependencies:
'@notionhq/client': 1.0.4
remark-gfm: 1.0.0
@@ -21643,765 +29957,468 @@ packages:
transitivePeerDependencies:
- encoding
- supports-color
- dev: false
- /@tsconfig/node14/1.0.3:
- resolution: {integrity: sha512-ysT8mhdixWK6Hw3i1V2AeRqZ5WfXg1G43mqoYlM2nc6388Fq5jcXyr5mRsqViLx/GJYdoL0bfXD8nmF+Zn/Iow==}
- dev: true
+ '@tsconfig/node14@1.0.3': {}
- /@types/axios/0.14.0:
- resolution: {integrity: sha512-KqQnQbdYE54D7oa/UmYVMZKq7CO4l8DEENzOKc4aBRwxCXSlJXGz83flFx5L7AWrOQnmuN3kVsRdt+GZPPjiVQ==}
- deprecated: This is a stub types definition for axios (https://github.com/mzabriskie/axios). axios provides its own type definitions, so you don't need @types/axios installed!
+ '@types/argparse@1.0.38': {}
+
+ '@types/axios@0.14.4':
dependencies:
- axios: 1.6.5
+ axios: 1.7.7(debug@3.2.7)
transitivePeerDependencies:
- debug
- dev: true
- /@types/babel__core/7.20.5:
- resolution: {integrity: sha512-qoQprZvz5wQFJwMDqeseRXWv3rqMvhgpbXFfVyWhbx9X47POIA6i/+dXefEmZKoAgOaTdaIgNSMqMIU61yRyzA==}
+ '@types/babel__core@7.20.5':
dependencies:
- '@babel/parser': 7.25.3
- '@babel/types': 7.25.2
+ '@babel/parser': 7.26.2
+ '@babel/types': 7.26.0
'@types/babel__generator': 7.6.8
'@types/babel__template': 7.4.4
'@types/babel__traverse': 7.20.6
- dev: true
- /@types/babel__generator/7.6.8:
- resolution: {integrity: sha512-ASsj+tpEDsEiFr1arWrlN6V3mdfjRMZt6LtK/Vp/kreFLnr5QH5+DhvD5nINYZXzwJvXeGq+05iUXcAzVrqWtw==}
+ '@types/babel__generator@7.6.8':
dependencies:
- '@babel/types': 7.25.2
- dev: true
+ '@babel/types': 7.26.0
- /@types/babel__template/7.4.4:
- resolution: {integrity: sha512-h/NUaSyG5EyxBIp8YRxo4RMe2/qQgvyowRwVMzhYhBCONbW8PUsg4lkFMrhgZhUe5z3L3MiLDuvyJ/CaPa2A8A==}
+ '@types/babel__template@7.4.4':
dependencies:
- '@babel/parser': 7.25.3
- '@babel/types': 7.25.2
- dev: true
+ '@babel/parser': 7.26.2
+ '@babel/types': 7.26.0
- /@types/babel__traverse/7.20.6:
- resolution: {integrity: sha512-r1bzfrm0tomOI8g1SzvCaQHo6Lcv6zu0EA+W2kHrt8dyrHQxGzBBL4kdkzIS+jBMV+EYcMAEAqXqYaLJq5rOZg==}
+ '@types/babel__traverse@7.20.6':
dependencies:
- '@babel/types': 7.25.2
- dev: true
+ '@babel/types': 7.26.0
- /@types/body-parser/1.19.3:
- resolution: {integrity: sha512-oyl4jvAfTGX9Bt6Or4H9ni1Z447/tQuxnZsytsCaExKlmJiU8sFgnIBRzJUpKwB5eWn9HuBYlUlVA74q/yN0eQ==}
+ '@types/body-parser@1.19.5':
dependencies:
- '@types/connect': 3.4.36
+ '@types/connect': 3.4.38
'@types/node': 20.17.6
- dev: false
- /@types/cacheable-request/6.0.3:
- resolution: {integrity: sha512-IQ3EbTzGxIigb1I3qPZc1rWJnH0BmSKv5QYTalEwweFvyBDLSAe24zP0le/hyi7ecGfZVlIVAg4BZqb8WBwKqw==}
+ '@types/cacheable-request@6.0.3':
dependencies:
- '@types/http-cache-semantics': 4.0.2
+ '@types/http-cache-semantics': 4.0.4
'@types/keyv': 3.1.4
- '@types/node': 20.16.1
- '@types/responselike': 1.0.1
- dev: false
+ '@types/node': 20.17.6
+ '@types/responselike': 1.0.3
- /@types/caseless/0.12.4:
- resolution: {integrity: sha512-2in/lrHRNmDvHPgyormtEralhPcN3An1gLjJzj2Bw145VBxkQ75JEXW6CTdMAwShiHQcYsl2d10IjQSdJSJz4g==}
- dev: false
+ '@types/caseless@0.12.5': {}
- /@types/connect/3.4.36:
- resolution: {integrity: sha512-P63Zd/JUGq+PdrM1lv0Wv5SBYeA2+CORvbrXbngriYY0jzLUWfQMQQxOhjONEz/wlHOAxOdY7CY65rgQdTjq2w==}
+ '@types/connect@3.4.38':
dependencies:
'@types/node': 20.17.6
- dev: false
- /@types/debug/4.1.12:
- resolution: {integrity: sha512-vIChWdVG3LG1SMxEvI/AK+FWJthlrqlTu7fbrlywTkkaONwk/UAGaULXRlf8vkzFBLVm0zkMdCquhL5aOjhXPQ==}
+ '@types/debug@4.1.12':
dependencies:
'@types/ms': 0.7.34
- dev: true
- /@types/duplexify/3.6.2:
- resolution: {integrity: sha512-2/0R4riyD/OS6GNJLIhwRaj+8ZbxHUZl3I0a3PHwH7zhZEEAACUWjzaBrY1qVWckueZ5pouDRP0UxX6P8Hzfww==}
+ '@types/duplexify@3.6.4':
dependencies:
'@types/node': 20.17.6
- dev: false
- /@types/estree-jsx/1.0.5:
- resolution: {integrity: sha512-52CcUVNFyfb1A2ALocQw/Dd1BQFNmSdkuC3BkZ6iqhdMfQz7JWOFRuJFloOzjk+6WijU56m9oKXFAXc7o3Towg==}
+ '@types/estree-jsx@1.0.5':
dependencies:
- '@types/estree': 1.0.5
- dev: true
+ '@types/estree': 1.0.6
- /@types/estree/1.0.5:
- resolution: {integrity: sha512-/kYRxGDLWzHOB7q+wtSUQlFrtcdUccpfy+X+9iMBpHK8QLLhx2wIPYuS5DYtR9Wa/YlZAbIovy7qVdB1Aq6Lyw==}
- dev: true
+ '@types/estree@1.0.6': {}
- /@types/express-serve-static-core/4.17.37:
- resolution: {integrity: sha512-ZohaCYTgGFcOP7u6aJOhY9uIZQgZ2vxC2yWoArY+FeDXlqeH66ZVBjgvg+RLVAS/DWNq4Ap9ZXu1+SUQiiWYMg==}
+ '@types/express-serve-static-core@4.19.6':
dependencies:
'@types/node': 20.17.6
- '@types/qs': 6.9.8
- '@types/range-parser': 1.2.5
- '@types/send': 0.17.2
- dev: false
+ '@types/qs': 6.9.17
+ '@types/range-parser': 1.2.7
+ '@types/send': 0.17.4
- /@types/express/4.17.18:
- resolution: {integrity: sha512-Sxv8BSLLgsBYmcnGdGjjEjqET2U+AKAdCRODmMiq02FgjwuV75Ut85DRpvFjyw/Mk0vgUOliGRU0UUmuuZHByQ==}
+ '@types/express@4.17.21':
dependencies:
- '@types/body-parser': 1.19.3
- '@types/express-serve-static-core': 4.17.37
- '@types/qs': 6.9.8
- '@types/serve-static': 1.15.3
- dev: false
+ '@types/body-parser': 1.19.5
+ '@types/express-serve-static-core': 4.19.6
+ '@types/qs': 6.9.17
+ '@types/serve-static': 1.15.7
- /@types/feedparser/2.2.6:
- resolution: {integrity: sha512-RzrQ9oJ2XazbH8aoMHkupHkJMwpCqsX7U7I80OHRoVnKuwir+LawhK7M+H4A0NsUh7hOcZAAQLxQMJujrAVqOw==}
+ '@types/feedparser@2.2.8':
dependencies:
- '@types/node': 17.0.45
- '@types/sax': 1.2.5
- dev: true
+ '@types/node': 20.17.6
+ '@types/sax': 1.2.7
- /@types/fetch-mock/7.3.8:
- resolution: {integrity: sha512-ztsIGiyUvD0GaqPc9/hb8k20gnr6lupqA6SFtqt+8v2mtHhNO/Ebb6/b7N6af/7x0A7s1C8nxrEGzajMBqz8qA==}
- dev: true
+ '@types/fetch-mock@7.3.8': {}
- /@types/glob/7.2.0:
- resolution: {integrity: sha512-ZUxbzKl0IfJILTS6t7ip5fQQM/J3TJYubDm3nMbgubNNYS62eXeUpoLUC8/7fJNiFYHTrGPQn7hspDUzIHX3UA==}
+ '@types/glob@7.2.0':
dependencies:
'@types/minimatch': 5.1.2
'@types/node': 20.17.6
- dev: false
- /@types/glob/8.1.0:
- resolution: {integrity: sha512-IO+MJPVhoqz+28h1qLAcBEH2+xHMK6MTyHJc7MTnnYb6wsoLR29POVGJ7LycmVXIqyy/4/2ShP5sUwTXuOwb/w==}
+ '@types/glob@8.1.0':
dependencies:
'@types/minimatch': 5.1.2
'@types/node': 20.17.6
- dev: false
- /@types/graceful-fs/4.1.9:
- resolution: {integrity: sha512-olP3sd1qOEe5dXTSaFvQG+02VdRXcdytWLAZsAq1PecU8uqQAhkrnbli7DagjtXKW/Bl7YJbUsa8MPcuc8LHEQ==}
+ '@types/graceful-fs@4.1.9':
dependencies:
'@types/node': 20.17.6
- dev: true
- /@types/hast/2.3.10:
- resolution: {integrity: sha512-McWspRw8xx8J9HurkVBfYj0xKoE25tOFlHGdx4MJ5xORQrMGZNqJhVQWaIbm6Oyla5kYOXtDiopzKRJzEOkwJw==}
+ '@types/hast@3.0.4':
dependencies:
- '@types/unist': 2.0.10
- dev: true
+ '@types/unist': 3.0.3
- /@types/http-cache-semantics/4.0.2:
- resolution: {integrity: sha512-FD+nQWA2zJjh4L9+pFXqWOi0Hs1ryBCfI+985NjluQ1p8EYtoLvjLOKidXBtZ4/IcxDX4o8/E8qDS3540tNliw==}
- dev: false
+ '@types/http-cache-semantics@4.0.4': {}
- /@types/http-errors/2.0.2:
- resolution: {integrity: sha512-lPG6KlZs88gef6aD85z3HNkztpj7w2R7HmR3gygjfXCQmsLloWNARFkMuzKiiY8FGdh1XDpgBdrSf4aKDiA7Kg==}
- dev: false
+ '@types/http-errors@2.0.4': {}
- /@types/is-stream/1.1.0:
- resolution: {integrity: sha512-jkZatu4QVbR60mpIzjINmtS1ZF4a/FqdTUTBeQDVOQ2PYyidtwFKr0B5G6ERukKwliq+7mIXvxyppwzG5EgRYg==}
+ '@types/is-stream@1.1.0':
dependencies:
'@types/node': 20.17.6
- dev: false
- /@types/istanbul-lib-coverage/2.0.6:
- resolution: {integrity: sha512-2QF/t/auWm0lsy8XtKVPG19v3sSOQlJe/YHZgfjb/KBBHOGSV+J2q/S671rcq9uTBrLAXmZpqJiaQbMT+zNU1w==}
- dev: true
+ '@types/istanbul-lib-coverage@2.0.6': {}
- /@types/istanbul-lib-report/3.0.3:
- resolution: {integrity: sha512-NQn7AHQnk/RSLOxrBbGyJM/aVQ+pjj5HCgasFxc0K/KhoATfQ/47AyUl15I2yBUpihjmas+a+VJBOqecrFH+uA==}
+ '@types/istanbul-lib-report@3.0.3':
dependencies:
'@types/istanbul-lib-coverage': 2.0.6
- dev: true
- /@types/istanbul-reports/3.0.4:
- resolution: {integrity: sha512-pk2B1NWalF9toCRu6gjBzR69syFjP4Od8WRAX+0mmf9lAjCRicLOWc+ZrxZHx/0XRjotgkF9t6iaMJ+aXcOdZQ==}
+ '@types/istanbul-reports@3.0.4':
dependencies:
'@types/istanbul-lib-report': 3.0.3
- dev: true
- /@types/jest/27.5.2:
- resolution: {integrity: sha512-mpT8LJJ4CMeeahobofYWIjFo0xonRS/HfxnVEPMPFSQdGUt1uHCnoPT7Zhb+sjDU2wz0oKV0OLUR0WzrHNgfeA==}
+ '@types/jest@27.5.2':
dependencies:
jest-matcher-utils: 27.5.1
pretty-format: 27.5.1
- dev: true
- /@types/jest/29.5.13:
- resolution: {integrity: sha512-wd+MVEZCHt23V0/L642O5APvspWply/rGY5BcW4SUETo2UzPU3Z26qr8jC2qxpimI2jjx9h7+2cj2FwIr01bXg==}
+ '@types/jest@29.5.14':
dependencies:
expect: 29.7.0
pretty-format: 29.7.0
- dev: true
- /@types/json-schema/7.0.13:
- resolution: {integrity: sha512-RbSSoHliUbnXj3ny0CNFOoxrIDV6SUGyStHsvDqosw6CkdPV8TtWGlfecuK4ToyMEAql6pzNxgCFKanovUzlgQ==}
+ '@types/json-schema@7.0.15': {}
- /@types/json5/0.0.29:
- resolution: {integrity: sha512-dRLjCWHYg4oaA77cxO64oO+7JwCwnIzkZPdrrC71jQmQtlhM556pwKo5bUzqvZndkVbeFLIIi+9TC40JNF5hNQ==}
- dev: true
+ '@types/json5@0.0.29': {}
- /@types/jsonwebtoken/8.5.9:
- resolution: {integrity: sha512-272FMnFGzAVMGtu9tkr29hRL6bZj4Zs1KZNeHLnKqAvp06tAIcarTMwOh8/8bz4FmKRcMxZhZNeUAQsNLoiPhg==}
+ '@types/jsonwebtoken@8.5.9':
dependencies:
'@types/node': 20.17.6
- dev: false
- /@types/keyv/3.1.4:
- resolution: {integrity: sha512-BQ5aZNSCpj7D6K2ksrRCTmKRLEpnPvWDiLPfoGyhZ++8YtiK9d/3DBKPJgry359X/P1PfruyYwvnvwFjuEiEIg==}
+ '@types/keyv@3.1.4':
dependencies:
'@types/node': 20.17.6
- dev: false
- /@types/linkify-it/3.0.3:
- resolution: {integrity: sha512-pTjcqY9E4nOI55Wgpz7eiI8+LzdYnw3qxXCfHyBDdPbYvbyLgWLJGh8EdPvqawwMK1Uo1794AUkkR38Fr0g+2g==}
- dev: false
+ '@types/linkify-it@5.0.0': {}
- /@types/lodash-es/4.17.12:
- resolution: {integrity: sha512-0NgftHUcV4v34VhXm8QBSftKVXtbkBG3ViCjs6+eJ5a6y6Mi/jiFGPc1sC7QK+9BFhWrURE3EOggmWaSxL9OzQ==}
+ '@types/lodash-es@4.17.12':
dependencies:
- '@types/lodash': 4.14.199
- dev: true
+ '@types/lodash': 4.17.13
- /@types/lodash/4.14.199:
- resolution: {integrity: sha512-Vrjz5N5Ia4SEzWWgIVwnHNEnb1UE1XMkvY5DGXrAeOGE9imk0hgTHh5GyDjLDJi9OTCn9oo9dXH1uToK1VRfrg==}
- dev: true
+ '@types/lodash.isequal@4.5.8':
+ dependencies:
+ '@types/lodash': 4.17.13
- /@types/long/4.0.2:
- resolution: {integrity: sha512-MqTGEo5bj5t157U6fA/BiDynNkn0YknVdh48CMPkTSpFTVmvao5UQmm7uEF6xBEo7qIMAlY/JSleYaE6VOdpaA==}
- dev: false
+ '@types/lodash@4.17.13': {}
- /@types/markdown-it/12.2.3:
- resolution: {integrity: sha512-GKMHFfv3458yYy+v/N8gjufHO6MSZKCOXpZc5GXIWWy8uldwfmPn98vp81gZ5f9SVw8YYBctgfJ22a2d7AOMeQ==}
- dependencies:
- '@types/linkify-it': 3.0.3
- '@types/mdurl': 1.0.3
- dev: false
+ '@types/long@4.0.2': {}
- /@types/mdast/3.0.13:
- resolution: {integrity: sha512-HjiGiWedR0DVFkeNljpa6Lv4/IZU1+30VY5d747K7lBudFc3R0Ibr6yJ9lN3BE28VnZyDfLF/VB1Ql1ZIbKrmg==}
+ '@types/markdown-it@14.1.2':
dependencies:
- '@types/unist': 2.0.8
+ '@types/linkify-it': 5.0.0
+ '@types/mdurl': 2.0.0
- /@types/mdast/3.0.15:
- resolution: {integrity: sha512-LnwD+mUEfxWMa1QpDraczIn6k0Ee3SMicuYSSzS6ZYl2gKS09EClnJYGd8Du6rfc5r/GZEk5o1mRb8TaTj03sQ==}
+ '@types/mdast@3.0.15':
dependencies:
- '@types/unist': 2.0.10
- dev: true
+ '@types/unist': 2.0.11
- /@types/mdast/4.0.4:
- resolution: {integrity: sha512-kGaNbPh1k7AFzgpud/gMdvIm5xuECykRR+JnWKQno9TAXVa6WIVCGTPvYGekIDL4uwCZQSYbUxNBSb1aUo79oA==}
+ '@types/mdast@4.0.4':
dependencies:
- '@types/unist': 3.0.2
- dev: true
+ '@types/unist': 3.0.3
- /@types/mdurl/1.0.3:
- resolution: {integrity: sha512-T5k6kTXak79gwmIOaDF2UUQXFbnBE0zBUzF20pz7wDYu0RQMzWg+Ml/Pz50214NsFHBITkoi5VtdjFZnJ2ijjA==}
- dev: false
+ '@types/mdurl@2.0.0': {}
- /@types/mime/1.3.3:
- resolution: {integrity: sha512-Ys+/St+2VF4+xuY6+kDIXGxbNRO0mesVg0bbxEfB97Od1Vjpjx9KD1qxs64Gcb3CWPirk9Xe+PT4YiiHQ9T+eg==}
- dev: false
+ '@types/mime@1.3.5': {}
- /@types/mime/3.0.2:
- resolution: {integrity: sha512-Wj+fqpTLtTbG7c0tH47dkahefpLKEbB+xAZuLq7b4/IDHPl/n6VoXcyUQ2bypFlbSwvCr0y+bD4euTTqTJsPxQ==}
- dev: false
+ '@types/minimatch@5.1.2': {}
- /@types/minimatch/5.1.2:
- resolution: {integrity: sha512-K0VQKziLUWkVKiRVrx4a40iPaxTUefQmjtkQofBkYRcoaaL/8rhwDWww9qWbrgicNOgnpIsMxyNIUM4+n6dUIA==}
- dev: false
-
- /@types/minimist/1.2.3:
- resolution: {integrity: sha512-ZYFzrvyWUNhaPomn80dsMNgMeXxNWZBdkuG/hWlUvXvbdUH8ZERNBGXnU87McuGcWDsyzX2aChCv/SVN348k3A==}
- dev: true
-
- /@types/ms/0.7.34:
- resolution: {integrity: sha512-nG96G3Wp6acyAgJqGasjODb+acrI7KltPiRxzHPXnP3NgI28bpQDRv53olbqGXbfcgF5aiiHmO3xpwEpS5Ld9g==}
- dev: true
+ '@types/ms@0.7.34': {}
- /@types/node-fetch/2.6.6:
- resolution: {integrity: sha512-95X8guJYhfqiuVVhRFxVQcf4hW/2bCuoPwDasMf/531STFoNoWTT7YDnWdXHEZKqAGUigmpG31r2FE70LwnzJw==}
+ '@types/node-fetch@2.6.12':
dependencies:
- '@types/node': 17.0.45
- form-data: 4.0.0
- dev: false
-
- /@types/node/14.18.63:
- resolution: {integrity: sha512-fAtCfv4jJg+ExtXhvCkCqUKZ+4ok/JQk01qDKhL5BDDoS3AxKXhV5/MAVUZyQnSEd2GT92fkgZl0pz0Q0AzcIQ==}
- dev: false
-
- /@types/node/17.0.45:
- resolution: {integrity: sha512-w+tIMs3rq2afQdsPJlODhoUEKzFP1ayaoyl1CcnwtIlsVe7K7bA1NGm4s3PraqTLlXnbIN84zuBlxBWo1u9BLw==}
+ '@types/node': 20.17.6
+ form-data: 4.0.1
- /@types/node/18.18.3:
- resolution: {integrity: sha512-0OVfGupTl3NBFr8+iXpfZ8NR7jfFO+P1Q+IO/q0wbo02wYkP5gy36phojeYWpLQ6WAMjl+VfmqUk2YbUfp0irA==}
- dev: false
+ '@types/node@14.18.63': {}
- /@types/node/18.19.8:
- resolution: {integrity: sha512-g1pZtPhsvGVTwmeVoexWZLTQaOvXwoSq//pTL0DHeNzUDrFnir4fgETdhjhIxjVnN+hKOuh98+E1eMLnUXstFg==}
- dependencies:
- undici-types: 5.26.5
- dev: true
+ '@types/node@17.0.45': {}
- /@types/node/20.14.8:
- resolution: {integrity: sha512-DO+2/jZinXfROG7j7WKFn/3C6nFwxy2lLpgLjEXJz+0XKphZlTLJ14mo8Vfg8X5BWN6XjyESXq+LcYdT7tR3bA==}
+ '@types/node@18.19.64':
dependencies:
undici-types: 5.26.5
- dev: true
- /@types/node/20.16.1:
- resolution: {integrity: sha512-zJDo7wEadFtSyNz5QITDfRcrhqDvQI1xQNQ0VoizPjM/dVAODqqIUWbJPkvsxmTI0MYRGRikcdjMPhOssnPejQ==}
+ '@types/node@20.17.6':
dependencies:
undici-types: 6.19.8
- /@types/node/20.17.6:
- resolution: {integrity: sha512-VEI7OdvK2wP7XHnsuXbAJnEpEkF6NjSN45QJlL4VGqZSXsnicpesdTWsg9RISeSdYd3yeRj/y3k5KGjUXYnFwQ==}
- dependencies:
- undici-types: 6.19.8
+ '@types/normalize-package-data@2.4.4': {}
- /@types/node/20.9.2:
- resolution: {integrity: sha512-WHZXKFCEyIUJzAwh3NyyTHYSR35SevJ6mZ1nWwJafKtiQbqRTIKSRcw3Ma3acqgsent3RRDqeVwpHntMk+9irg==}
- dependencies:
- undici-types: 5.26.5
+ '@types/object-hash@2.2.1': {}
- /@types/normalize-package-data/2.4.2:
- resolution: {integrity: sha512-lqa4UEhhv/2sjjIQgjX8B+RBjj47eo0mzGasklVJ78UKGQY1r0VpB9XHDaZZO9qzEFDdy4MrXLuEaSmPrPSe/A==}
- dev: true
+ '@types/parse-json@4.0.2': {}
- /@types/object-hash/2.2.1:
- resolution: {integrity: sha512-i/rtaJFCsPljrZvP/akBqEwUP2y5cZLOmvO+JaYnz01aPknrQ+hB5MRcO7iqCUsFaYfTG8kGfKUyboA07xeDHQ==}
- dev: true
+ '@types/phoenix@1.6.5': {}
- /@types/phoenix/1.6.2:
- resolution: {integrity: sha512-I3mm7x5XIi+5NsIY3nfreY+H4PmQdyBwJ84SiUSOxSg1axwEPNmkKWYVm56y+emDpPPUL3cPzrLcgRWSd9gI7g==}
- dev: false
+ '@types/prop-types@15.7.13': {}
- /@types/qs/6.9.8:
- resolution: {integrity: sha512-u95svzDlTysU5xecFNTgfFG5RUWu1A9P0VzgpcIiGZA9iraHOdSzcxMxQ55DyeRaGCSxQi7LxXDI4rzq/MYfdg==}
- dev: false
+ '@types/qs@6.9.17': {}
- /@types/rails__actioncable/6.1.11:
- resolution: {integrity: sha512-L6A3Rg6sGsv2cqalOgdOmyFvL1Pw69Mg0WuG6NtY9chzabhtkiSFY5fczo72mqRGezrMvl0Jy80v+N719CW+Tg==}
- dev: true
+ '@types/rails__actioncable@6.1.11': {}
+
+ '@types/range-parser@1.2.7': {}
- /@types/range-parser/1.2.5:
- resolution: {integrity: sha512-xrO9OoVPqFuYyR/loIHjnbvvyRZREYKLjxV4+dY6v3FQR3stQ9ZxIGkaclF7YhI9hfjpuTbu14hZEy94qKLtOA==}
- dev: false
+ '@types/react-dom@18.3.1':
+ dependencies:
+ '@types/react': 18.3.12
+
+ '@types/react-transition-group@4.4.11':
+ dependencies:
+ '@types/react': 18.3.12
+
+ '@types/react@18.3.12':
+ dependencies:
+ '@types/prop-types': 15.7.13
+ csstype: 3.1.3
- /@types/request/2.48.11:
- resolution: {integrity: sha512-HuihY1+Vss5RS9ZHzRyTGIzwPTdrJBkCm/mAeLRYrOQu/MGqyezKXWOK1VhCnR+SDbp9G2mRUP+OVEqCrzpcfA==}
+ '@types/readable-stream@4.0.18':
dependencies:
- '@types/caseless': 0.12.4
'@types/node': 20.17.6
- '@types/tough-cookie': 4.0.4
- form-data: 2.5.1
- dev: false
+ safe-buffer: 5.1.2
- /@types/responselike/1.0.1:
- resolution: {integrity: sha512-TiGnitEDxj2X0j+98Eqk5lv/Cij8oHd32bU4D/Yw6AOq7vvTk0gSD2GPj0G/HkvhMoVsdlhYF4yqqlyPBTM6Sg==}
+ '@types/request@2.48.12':
dependencies:
+ '@types/caseless': 0.12.5
'@types/node': 20.17.6
- dev: false
+ '@types/tough-cookie': 4.0.5
+ form-data: 2.5.2
- /@types/retry/0.12.0:
- resolution: {integrity: sha512-wWKOClTTiizcZhXnPY4wikVAwmdYHp8q6DmC+EJUzAMsycb7HB32Kh9RN4+0gExjmPmZSAQjgURXIGATPegAvA==}
- dev: false
+ '@types/responselike@1.0.3':
+ dependencies:
+ '@types/node': 20.17.6
- /@types/rimraf/3.0.2:
- resolution: {integrity: sha512-F3OznnSLAUxFrCEu/L5PY8+ny8DtcFRjx7fZZ9bycvXRi3KPTRS9HOitGZwvPg0juRhXFWIeKX58cnX5YqLohQ==}
+ '@types/retry@0.12.0': {}
+
+ '@types/rimraf@3.0.2':
dependencies:
'@types/glob': 8.1.0
'@types/node': 20.17.6
- dev: false
- /@types/sax/1.2.5:
- resolution: {integrity: sha512-9jWta97bBVC027/MShr3gLab8gPhKy4l6qpb+UJLF5pDm3501NvA7uvqVCW+REFtx00oTi6Cq9JzLwgq6evVgw==}
+ '@types/sax@1.2.7':
dependencies:
- '@types/node': 20.16.1
- dev: true
-
- /@types/semver/7.5.3:
- resolution: {integrity: sha512-OxepLK9EuNEIPxWNME+C6WwbRAOOI2o2BaQEGzz5Lu2e4Z5eDnEo+/aVEDMIXywoJitJ7xWd641wrGLZdtwRyw==}
- dev: true
+ '@types/node': 20.17.6
- /@types/send/0.17.2:
- resolution: {integrity: sha512-aAG6yRf6r0wQ29bkS+x97BIs64ZLxeE/ARwyS6wrldMm3C1MdKwCcnnEwMC1slI8wuxJOpiUH9MioC0A0i+GJw==}
+ '@types/send@0.17.4':
dependencies:
- '@types/mime': 1.3.3
+ '@types/mime': 1.3.5
'@types/node': 20.17.6
- dev: false
- /@types/serve-static/1.15.3:
- resolution: {integrity: sha512-yVRvFsEMrv7s0lGhzrggJjNOSmZCdgCjw9xWrPr/kNNLp6FaDfMC1KaYl3TSJ0c58bECwNBMoQrZJ8hA8E1eFg==}
+ '@types/serve-static@1.15.7':
dependencies:
- '@types/http-errors': 2.0.2
- '@types/mime': 3.0.2
+ '@types/http-errors': 2.0.4
'@types/node': 20.17.6
- dev: false
+ '@types/send': 0.17.4
- /@types/simple-oauth2/5.0.7:
- resolution: {integrity: sha512-8JbWVJbiTSBQP/7eiyGKyXWAqp3dKQZpaA+pdW16FCi32ujkzRMG8JfjoAzdWt6W8U591ZNdHcPtP2D7ILTKuA==}
- dev: true
+ '@types/simple-oauth2@5.0.7': {}
- /@types/source-map/0.5.7:
- resolution: {integrity: sha512-LrnsgZIfJaysFkv9rRJp4/uAyqw87oVed3s1hhF83nwbo9c7MG9g5DqR0seHP+lkX4ldmMrVolPjQSe2ZfD0yA==}
- deprecated: This is a stub types definition for source-map (https://github.com/mozilla/source-map). source-map provides its own type definitions, so you don't need @types/source-map installed!
+ '@types/source-map@0.5.7':
dependencies:
source-map: 0.7.4
- dev: false
- /@types/stack-utils/2.0.3:
- resolution: {integrity: sha512-9aEbYZ3TbYMznPdcdr3SmIrLXwC/AKZXQeCf9Pgao5CKb8CyHuEX5jzWPTkvregvhRJHcpRO6BFoGW9ycaOkYw==}
- dev: true
-
- /@types/tough-cookie/4.0.4:
- resolution: {integrity: sha512-95Sfz4nvMAb0Nl9DTxN3j64adfwfbBPEYq14VN7zT5J5O2M9V6iZMIIQU1U+pJyl9agHYHNCqhCXgyEtIRRa5A==}
- dev: false
+ '@types/stack-utils@2.0.3': {}
- /@types/triple-beam/1.3.3:
- resolution: {integrity: sha512-6tOUG+nVHn0cJbVp25JFayS5UE6+xlbcNF9Lo9mU7U0zk3zeUShZied4YEQZjy1JBF043FSkdXw8YkUJuVtB5g==}
- dev: false
-
- /@types/tunnel/0.0.3:
- resolution: {integrity: sha512-sOUTGn6h1SfQ+gbgqC364jLFBw2lnFqkgF3q0WovEHRLMrVD1sd5aufqi/aJObLekJO+Aq5z646U4Oxy6shXMA==}
- dependencies:
- '@types/node': 20.17.6
- dev: false
+ '@types/tough-cookie@4.0.5': {}
- /@types/unist/2.0.10:
- resolution: {integrity: sha512-IfYcSBWE3hLpBg8+X2SEa8LVkJdJEkT2Ese2aaLs3ptGdVtABxndrMaxuFlQ1qdFf9Q5rDvDpxI3WwgvKFAsQA==}
- dev: true
+ '@types/triple-beam@1.3.5': {}
- /@types/unist/2.0.8:
- resolution: {integrity: sha512-d0XxK3YTObnWVp6rZuev3c49+j4Lo8g4L1ZRm9z5L0xpoZycUPshHgczK5gsUMaZOstjVYYi09p5gYvUtfChYw==}
+ '@types/unist@2.0.11': {}
- /@types/unist/3.0.0:
- resolution: {integrity: sha512-MFETx3tbTjE7Uk6vvnWINA/1iJ7LuMdO4fcq8UfF0pRbj01aGLduVvQcRyswuACJdpnHgg8E3rQLhaRdNEJS0w==}
- dev: true
+ '@types/unist@3.0.3': {}
- /@types/unist/3.0.2:
- resolution: {integrity: sha512-dqId9J8K/vGi5Zr7oo212BGii5m3q5Hxlkwy3WpYuKPklmBEvsbMYYyLxAQpSffdLl/gdW0XUpKWFvYmyoWCoQ==}
- dev: true
+ '@types/uuid@8.3.4': {}
- /@types/uuid/8.3.4:
- resolution: {integrity: sha512-c/I8ZRb51j+pYGAu5CrFMRxqZ2ke4y2grEBO5AUjgSkSk+qT2Ea+OdWElz/OiMf5MNpn2b17kuVBwZLQJXzihw==}
- dev: false
+ '@types/uuid@9.0.8': {}
- /@types/webidl-conversions/7.0.1:
- resolution: {integrity: sha512-8hKOnOan+Uu+NgMaCouhg3cT9x5fFZ92Jwf+uDLXLu/MFRbXxlWwGeQY7KVHkeSft6RvY+tdxklUBuyY9eIEKg==}
- dev: false
+ '@types/webidl-conversions@7.0.3': {}
- /@types/whatwg-url/8.2.2:
- resolution: {integrity: sha512-FtQu10RWgn3D9U4aazdwIE2yzphmTJREDqNdODHrbrZmmMqI0vMheC/6NE/J1Yveaj8H+ela+YwWTjq5PGmuhA==}
+ '@types/whatwg-url@8.2.2':
dependencies:
'@types/node': 20.17.6
- '@types/webidl-conversions': 7.0.1
- dev: false
+ '@types/webidl-conversions': 7.0.3
- /@types/ws/8.5.13:
- resolution: {integrity: sha512-osM/gWBTPKgHV8XkTunnegTRIsvF6owmf5w+JtAfOw472dptdm0dlGv4xCt6GwQRcC2XVOvvRE/0bAoQcL2QkA==}
+ '@types/ws@8.5.13':
dependencies:
'@types/node': 20.17.6
- /@types/ws/8.5.3:
- resolution: {integrity: sha512-6YOoWjruKj1uLf3INHH7D3qTXwFfEsg1kf3c0uDdSBJwfa/llkwIjrAGV7j7mVgGNbzTQ3HiHKKDXl6bJPD97w==}
+ '@types/ws@8.5.3':
dependencies:
'@types/node': 20.17.6
- dev: false
- /@types/yargs-parser/21.0.3:
- resolution: {integrity: sha512-I4q9QU9MQv4oEOz4tAHJtNz1cwuLxn2F3xcc2iV5WdqLPpUnj30aUuxt1mAxYTG+oe8CZMV/+6rU4S4gRDzqtQ==}
- dev: true
+ '@types/yargs-parser@21.0.3': {}
- /@types/yargs/17.0.32:
- resolution: {integrity: sha512-xQ67Yc/laOG5uMfX/093MRlGGCIBzZMarVa+gfNKJxWAIgykYpVGkBdbqEzGDDfCrVUj6Hiff4mTZ5BA6TmAog==}
+ '@types/yargs@17.0.33':
dependencies:
'@types/yargs-parser': 21.0.3
- dev: true
- /@types/yauzl/2.10.1:
- resolution: {integrity: sha512-CHzgNU3qYBnp/O4S3yv2tXPlvMTq0YWSTVg2/JYLqWZGHwwgJGAwd00poay/11asPq8wLFwHzubyInqHIFmmiw==}
- requiresBuild: true
+ '@types/yauzl@2.10.3':
dependencies:
'@types/node': 20.17.6
- dev: false
optional: true
- /@typescript-eslint/eslint-plugin/5.62.0_6g6eennhkqjl6gzwjnnl72aq3u:
- resolution: {integrity: sha512-TiZzBSJja/LbhNPvk6yc0JrX9XqhQ0hdh6M2svYfsHGejaKFIAGd9MQ+ERIMzLGlN/kZoYIgdxFV0PuljTKXag==}
- engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
- peerDependencies:
- '@typescript-eslint/parser': ^5.0.0
- eslint: ^6.0.0 || ^7.0.0 || ^8.0.0
- typescript: '*'
- peerDependenciesMeta:
- typescript:
- optional: true
- dependencies:
- '@eslint-community/regexpp': 4.9.1
- '@typescript-eslint/parser': 5.62.0_hx5tgzcbd2ycqgjduqhliuc3jm
- '@typescript-eslint/scope-manager': 5.62.0
- '@typescript-eslint/type-utils': 5.62.0_hx5tgzcbd2ycqgjduqhliuc3jm
- '@typescript-eslint/utils': 5.62.0_hx5tgzcbd2ycqgjduqhliuc3jm
- debug: 4.3.4
- eslint: 8.15.0
- graphemer: 1.4.0
- ignore: 5.2.4
- natural-compare-lite: 1.4.0
- semver: 7.5.4
- tsutils: 3.21.0_typescript@4.9.5
- typescript: 4.9.5
- transitivePeerDependencies:
- - supports-color
- dev: true
-
- /@typescript-eslint/eslint-plugin/5.62.0_lvg7vfeyjgbaq3eyeq5ilmueem:
- resolution: {integrity: sha512-TiZzBSJja/LbhNPvk6yc0JrX9XqhQ0hdh6M2svYfsHGejaKFIAGd9MQ+ERIMzLGlN/kZoYIgdxFV0PuljTKXag==}
- engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
- peerDependencies:
- '@typescript-eslint/parser': ^5.0.0
- eslint: ^6.0.0 || ^7.0.0 || ^8.0.0
- typescript: '*'
- peerDependenciesMeta:
- typescript:
- optional: true
+ '@typescript-eslint/eslint-plugin@8.15.0(@typescript-eslint/parser@8.15.0(eslint@8.57.1)(typescript@5.6.3))(eslint@8.57.1)(typescript@5.6.3)':
dependencies:
- '@eslint-community/regexpp': 4.9.1
- '@typescript-eslint/parser': 5.62.0_qkejthbfznbxawpodlwdvzhwbm
- '@typescript-eslint/scope-manager': 5.62.0
- '@typescript-eslint/type-utils': 5.62.0_qkejthbfznbxawpodlwdvzhwbm
- '@typescript-eslint/utils': 5.62.0_qkejthbfznbxawpodlwdvzhwbm
- debug: 4.3.4
- eslint: 8.15.0
+ '@eslint-community/regexpp': 4.12.1
+ '@typescript-eslint/parser': 8.15.0(eslint@8.57.1)(typescript@5.6.3)
+ '@typescript-eslint/scope-manager': 8.15.0
+ '@typescript-eslint/type-utils': 8.15.0(eslint@8.57.1)(typescript@5.6.3)
+ '@typescript-eslint/utils': 8.15.0(eslint@8.57.1)(typescript@5.6.3)
+ '@typescript-eslint/visitor-keys': 8.15.0
+ eslint: 8.57.1
graphemer: 1.4.0
- ignore: 5.2.4
- natural-compare-lite: 1.4.0
- semver: 7.5.4
- tsutils: 3.21.0_typescript@5.2.2
- typescript: 5.2.2
- transitivePeerDependencies:
- - supports-color
- dev: true
-
- /@typescript-eslint/parser/5.62.0_hx5tgzcbd2ycqgjduqhliuc3jm:
- resolution: {integrity: sha512-VlJEV0fOQ7BExOsHYAGrgbEiZoi8D+Bl2+f6V2RrXerRSylnp+ZBHmPvaIa8cz0Ajx7WO7Z5RqfgYg7ED1nRhA==}
- engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
- peerDependencies:
- eslint: ^6.0.0 || ^7.0.0 || ^8.0.0
- typescript: '*'
- peerDependenciesMeta:
- typescript:
- optional: true
- dependencies:
- '@typescript-eslint/scope-manager': 5.62.0
- '@typescript-eslint/types': 5.62.0
- '@typescript-eslint/typescript-estree': 5.62.0_typescript@4.9.5
- debug: 4.3.4
- eslint: 8.15.0
- typescript: 4.9.5
+ ignore: 5.3.2
+ natural-compare: 1.4.0
+ ts-api-utils: 1.4.0(typescript@5.6.3)
+ optionalDependencies:
+ typescript: 5.6.3
transitivePeerDependencies:
- supports-color
- dev: true
- /@typescript-eslint/parser/5.62.0_qkejthbfznbxawpodlwdvzhwbm:
- resolution: {integrity: sha512-VlJEV0fOQ7BExOsHYAGrgbEiZoi8D+Bl2+f6V2RrXerRSylnp+ZBHmPvaIa8cz0Ajx7WO7Z5RqfgYg7ED1nRhA==}
- engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
- peerDependencies:
- eslint: ^6.0.0 || ^7.0.0 || ^8.0.0
- typescript: '*'
- peerDependenciesMeta:
- typescript:
- optional: true
+ '@typescript-eslint/parser@8.15.0(eslint@8.57.1)(typescript@5.6.3)':
dependencies:
- '@typescript-eslint/scope-manager': 5.62.0
- '@typescript-eslint/types': 5.62.0
- '@typescript-eslint/typescript-estree': 5.62.0_typescript@5.2.2
- debug: 4.3.4
- eslint: 8.15.0
- typescript: 5.2.2
+ '@typescript-eslint/scope-manager': 8.15.0
+ '@typescript-eslint/types': 8.15.0
+ '@typescript-eslint/typescript-estree': 8.15.0(typescript@5.6.3)
+ '@typescript-eslint/visitor-keys': 8.15.0
+ debug: 4.3.7(supports-color@9.4.0)
+ eslint: 8.57.1
+ optionalDependencies:
+ typescript: 5.6.3
transitivePeerDependencies:
- supports-color
- dev: true
-
- /@typescript-eslint/scope-manager/5.62.0:
- resolution: {integrity: sha512-VXuvVvZeQCQb5Zgf4HAxc04q5j+WrNAtNh9OwCsCgpKqESMTu3tF/jhZ3xG6T4NZwWl65Bg8KuS2uEvhSfLl0w==}
- engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
- dependencies:
- '@typescript-eslint/types': 5.62.0
- '@typescript-eslint/visitor-keys': 5.62.0
- dev: true
- /@typescript-eslint/type-utils/5.62.0_hx5tgzcbd2ycqgjduqhliuc3jm:
- resolution: {integrity: sha512-xsSQreu+VnfbqQpW5vnCJdq1Z3Q0U31qiWmRhr98ONQmcp/yhiPJFPq8MXiJVLiksmOKSjIldZzkebzHuCGzew==}
- engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
- peerDependencies:
- eslint: '*'
- typescript: '*'
- peerDependenciesMeta:
- typescript:
- optional: true
+ '@typescript-eslint/scope-manager@8.15.0':
dependencies:
- '@typescript-eslint/typescript-estree': 5.62.0_typescript@4.9.5
- '@typescript-eslint/utils': 5.62.0_hx5tgzcbd2ycqgjduqhliuc3jm
- debug: 4.3.6
- eslint: 8.15.0
- tsutils: 3.21.0_typescript@4.9.5
- typescript: 4.9.5
- transitivePeerDependencies:
- - supports-color
- dev: true
+ '@typescript-eslint/types': 8.15.0
+ '@typescript-eslint/visitor-keys': 8.15.0
- /@typescript-eslint/type-utils/5.62.0_qkejthbfznbxawpodlwdvzhwbm:
- resolution: {integrity: sha512-xsSQreu+VnfbqQpW5vnCJdq1Z3Q0U31qiWmRhr98ONQmcp/yhiPJFPq8MXiJVLiksmOKSjIldZzkebzHuCGzew==}
- engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
- peerDependencies:
- eslint: '*'
- typescript: '*'
- peerDependenciesMeta:
- typescript:
- optional: true
+ '@typescript-eslint/type-utils@8.15.0(eslint@8.57.1)(typescript@5.6.3)':
dependencies:
- '@typescript-eslint/typescript-estree': 5.62.0_typescript@5.2.2
- '@typescript-eslint/utils': 5.62.0_qkejthbfznbxawpodlwdvzhwbm
- debug: 4.3.6
- eslint: 8.15.0
- tsutils: 3.21.0_typescript@5.2.2
- typescript: 5.2.2
+ '@typescript-eslint/typescript-estree': 8.15.0(typescript@5.6.3)
+ '@typescript-eslint/utils': 8.15.0(eslint@8.57.1)(typescript@5.6.3)
+ debug: 4.3.7(supports-color@9.4.0)
+ eslint: 8.57.1
+ ts-api-utils: 1.4.0(typescript@5.6.3)
+ optionalDependencies:
+ typescript: 5.6.3
transitivePeerDependencies:
- supports-color
- dev: true
- /@typescript-eslint/types/5.62.0:
- resolution: {integrity: sha512-87NVngcbVXUahrRTqIK27gD2t5Cu1yuCXxbLcFtCzZGlfyVWWh8mLHkoxzjsB6DDNnvdL+fW8MiwPEJyGJQDgQ==}
- engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
- dev: true
+ '@typescript-eslint/types@8.15.0': {}
- /@typescript-eslint/typescript-estree/2.34.0_typescript@3.9.10:
- resolution: {integrity: sha512-OMAr+nJWKdlVM9LOqCqh3pQQPwxHAN7Du8DR6dmwCrAmxtiXQnhHJ6tBNtf+cggqfo51SG/FCwnKhXCIM7hnVg==}
- engines: {node: ^8.10.0 || ^10.13.0 || >=11.10.1}
- peerDependencies:
- typescript: '*'
- peerDependenciesMeta:
- typescript:
- optional: true
+ '@typescript-eslint/typescript-estree@2.34.0(typescript@3.9.10)':
dependencies:
- debug: 4.3.6
+ debug: 4.3.7(supports-color@9.4.0)
eslint-visitor-keys: 1.3.0
glob: 7.2.3
is-glob: 4.0.3
lodash: 4.17.21
semver: 7.6.3
- tsutils: 3.21.0_typescript@3.9.10
+ tsutils: 3.21.0(typescript@3.9.10)
+ optionalDependencies:
typescript: 3.9.10
transitivePeerDependencies:
- supports-color
- dev: false
- /@typescript-eslint/typescript-estree/5.62.0_typescript@4.9.5:
- resolution: {integrity: sha512-CmcQ6uY7b9y694lKdRB8FEel7JbU/40iSAPomu++SjLMntB+2Leay2LO6i8VnJk58MtE9/nQSFIH6jpyRWyYzA==}
- engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
- peerDependencies:
- typescript: '*'
- peerDependenciesMeta:
- typescript:
- optional: true
+ '@typescript-eslint/typescript-estree@8.15.0(typescript@5.6.3)':
dependencies:
- '@typescript-eslint/types': 5.62.0
- '@typescript-eslint/visitor-keys': 5.62.0
- debug: 4.3.6
- globby: 11.1.0
+ '@typescript-eslint/types': 8.15.0
+ '@typescript-eslint/visitor-keys': 8.15.0
+ debug: 4.3.7(supports-color@9.4.0)
+ fast-glob: 3.3.2
is-glob: 4.0.3
+ minimatch: 9.0.5
semver: 7.6.3
- tsutils: 3.21.0_typescript@4.9.5
- typescript: 4.9.5
+ ts-api-utils: 1.4.0(typescript@5.6.3)
+ optionalDependencies:
+ typescript: 5.6.3
transitivePeerDependencies:
- supports-color
- dev: true
- /@typescript-eslint/typescript-estree/5.62.0_typescript@5.2.2:
- resolution: {integrity: sha512-CmcQ6uY7b9y694lKdRB8FEel7JbU/40iSAPomu++SjLMntB+2Leay2LO6i8VnJk58MtE9/nQSFIH6jpyRWyYzA==}
- engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
- peerDependencies:
- typescript: '*'
- peerDependenciesMeta:
- typescript:
- optional: true
+ '@typescript-eslint/utils@8.15.0(eslint@8.57.1)(typescript@5.6.3)':
dependencies:
- '@typescript-eslint/types': 5.62.0
- '@typescript-eslint/visitor-keys': 5.62.0
- debug: 4.3.6
- globby: 11.1.0
- is-glob: 4.0.3
- semver: 7.6.3
- tsutils: 3.21.0_typescript@5.2.2
- typescript: 5.2.2
+ '@eslint-community/eslint-utils': 4.4.1(eslint@8.57.1)
+ '@typescript-eslint/scope-manager': 8.15.0
+ '@typescript-eslint/types': 8.15.0
+ '@typescript-eslint/typescript-estree': 8.15.0(typescript@5.6.3)
+ eslint: 8.57.1
+ optionalDependencies:
+ typescript: 5.6.3
transitivePeerDependencies:
- supports-color
- dev: true
- /@typescript-eslint/utils/5.62.0_hx5tgzcbd2ycqgjduqhliuc3jm:
- resolution: {integrity: sha512-n8oxjeb5aIbPFEtmQxQYOLI0i9n5ySBEY/ZEHHZqKQSFnxio1rv6dthascc9dLuwrL0RC5mPCxB7vnAVGAYWAQ==}
- engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
- peerDependencies:
- eslint: ^6.0.0 || ^7.0.0 || ^8.0.0
+ '@typescript-eslint/visitor-keys@8.15.0':
dependencies:
- '@eslint-community/eslint-utils': 4.4.0_eslint@8.15.0
- '@types/json-schema': 7.0.13
- '@types/semver': 7.5.3
- '@typescript-eslint/scope-manager': 5.62.0
- '@typescript-eslint/types': 5.62.0
- '@typescript-eslint/typescript-estree': 5.62.0_typescript@4.9.5
- eslint: 8.15.0
- eslint-scope: 5.1.1
- semver: 7.6.3
- transitivePeerDependencies:
- - supports-color
- - typescript
- dev: true
+ '@typescript-eslint/types': 8.15.0
+ eslint-visitor-keys: 4.2.0
- /@typescript-eslint/utils/5.62.0_qkejthbfznbxawpodlwdvzhwbm:
- resolution: {integrity: sha512-n8oxjeb5aIbPFEtmQxQYOLI0i9n5ySBEY/ZEHHZqKQSFnxio1rv6dthascc9dLuwrL0RC5mPCxB7vnAVGAYWAQ==}
- engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
- peerDependencies:
- eslint: ^6.0.0 || ^7.0.0 || ^8.0.0
+ '@ungap/structured-clone@1.2.0': {}
+
+ '@ungap/url-search-params@0.2.2': {}
+
+ '@volar/language-core@2.4.10':
dependencies:
- '@eslint-community/eslint-utils': 4.4.0_eslint@8.15.0
- '@types/json-schema': 7.0.13
- '@types/semver': 7.5.3
- '@typescript-eslint/scope-manager': 5.62.0
- '@typescript-eslint/types': 5.62.0
- '@typescript-eslint/typescript-estree': 5.62.0_typescript@5.2.2
- eslint: 8.15.0
- eslint-scope: 5.1.1
- semver: 7.6.3
- transitivePeerDependencies:
- - supports-color
- - typescript
- dev: true
+ '@volar/source-map': 2.4.10
- /@typescript-eslint/visitor-keys/5.62.0:
- resolution: {integrity: sha512-07ny+LHRzQXepkGg6w0mFY41fVUNBrL2Roj/++7V1txKugfjm/Ci/qSND03r2RhlJhJYMcTn9AhhSSqQp0Ysyw==}
- engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
+ '@volar/source-map@2.4.10': {}
+
+ '@volar/typescript@2.4.10':
dependencies:
- '@typescript-eslint/types': 5.62.0
- eslint-visitor-keys: 3.4.3
- dev: true
+ '@volar/language-core': 2.4.10
+ path-browserify: 1.0.1
+ vscode-uri: 3.0.8
- /@ungap/url-search-params/0.2.2:
- resolution: {integrity: sha512-qQsguKXZVKdCixOHX9jqnX/K/1HekPDpGKyEcXHT+zR6EjGA7S4boSuelL4uuPv6YfhN0n8c4UxW+v/Z3gM2iw==}
- dev: false
+ '@vue/compiler-core@3.5.13':
+ dependencies:
+ '@babel/parser': 7.26.2
+ '@vue/shared': 3.5.13
+ entities: 4.5.0
+ estree-walker: 2.0.2
+ source-map-js: 1.2.1
- /@vue/compiler-sfc/2.7.14:
- resolution: {integrity: sha512-aNmNHyLPsw+sVvlQFQ2/8sjNuLtK54TC6cuKnVzAY93ks4ZBrvwQSnkkIh7bsbNhum5hJBS00wSDipQ937f5DA==}
+ '@vue/compiler-dom@3.5.13':
dependencies:
- '@babel/parser': 7.25.3
- postcss: 8.4.31
+ '@vue/compiler-core': 3.5.13
+ '@vue/shared': 3.5.13
+
+ '@vue/compiler-sfc@2.7.16':
+ dependencies:
+ '@babel/parser': 7.26.2
+ postcss: 8.4.49
source-map: 0.6.1
- dev: false
+ optionalDependencies:
+ prettier: 2.8.8
- /@woocommerce/woocommerce-rest-api/1.0.1:
- resolution: {integrity: sha512-YBk3EEYE0zax/egx6Rhpbu6hcCFyZpYQrjH9JO4NUGU3n3T0W9Edn7oAUbjL/c7Oezcg+UaQluCaKjY/B3zwxg==}
- engines: {node: '>=8.0.0'}
+ '@vue/compiler-vue2@2.7.16':
+ dependencies:
+ de-indent: 1.0.2
+ he: 1.2.0
+
+ '@vue/language-core@2.1.6(typescript@5.7.2)':
+ dependencies:
+ '@volar/language-core': 2.4.10
+ '@vue/compiler-dom': 3.5.13
+ '@vue/compiler-vue2': 2.7.16
+ '@vue/shared': 3.5.13
+ computeds: 0.0.1
+ minimatch: 9.0.5
+ muggle-string: 0.4.1
+ path-browserify: 1.0.1
+ optionalDependencies:
+ typescript: 5.7.2
+
+ '@vue/shared@3.5.13': {}
+
+ '@woocommerce/woocommerce-rest-api@1.0.1':
dependencies:
axios: 0.19.2
create-hmac: 1.1.7
@@ -22409,249 +30426,171 @@ packages:
url-parse: 1.5.10
transitivePeerDependencies:
- supports-color
- dev: false
- /abort-controller/3.0.0:
- resolution: {integrity: sha512-h8lQ8tacZYnR3vNQTgibj+tODHI5/+l06Au2Pcriv/Gmet0eaj4TwWH41sO9wnHDiQsEj19q0drzdWdeAHtweg==}
- engines: {node: '>=6.5'}
+ abort-controller@3.0.0:
dependencies:
event-target-shim: 5.0.1
- dev: false
- /abortcontroller-polyfill/1.7.5:
- resolution: {integrity: sha512-JMJ5soJWP18htbbxJjG7bG6yuI6pRhgJ0scHHTfkUjf6wjP912xZWvM+A4sJK3gqd9E8fcPbDnOefbA9Th/FIQ==}
- dev: false
+ abortcontroller-polyfill@1.7.6: {}
- /acorn-jsx/5.3.2_acorn@7.4.1:
- resolution: {integrity: sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==}
- peerDependencies:
- acorn: ^6.0.0 || ^7.0.0 || ^8.0.0
+ acorn-jsx@5.3.2(acorn@7.4.1):
dependencies:
acorn: 7.4.1
- dev: true
- /acorn-jsx/5.3.2_acorn@8.12.1:
- resolution: {integrity: sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==}
- peerDependencies:
- acorn: ^6.0.0 || ^7.0.0 || ^8.0.0
+ acorn-jsx@5.3.2(acorn@8.14.0):
dependencies:
- acorn: 8.12.1
+ acorn: 8.14.0
- /acorn-walk/8.2.0:
- resolution: {integrity: sha512-k+iyHEuPgSw6SbuDpGQM+06HQUa04DZ3o+F6CSzXMvvI5KMvnaEqXe+YVe555R9nn6GPt404fos4wcgpw12SDA==}
- engines: {node: '>=0.4.0'}
- dev: false
+ acorn-typescript@1.4.13(acorn@8.14.0):
+ dependencies:
+ acorn: 8.14.0
- /acorn/7.4.1:
- resolution: {integrity: sha512-nQyp0o1/mNdbTO1PO6kHkwSrmgZ0MT/jCCpNiwbUjGoRN4dlBhqJtoQuCnEOKzgTVwg0ZWiCoQy6SxMebQVh8A==}
- engines: {node: '>=0.4.0'}
- hasBin: true
- dev: true
+ acorn-walk@8.3.4:
+ dependencies:
+ acorn: 8.14.0
- /acorn/8.12.1:
- resolution: {integrity: sha512-tcpGyI9zbizT9JbV6oYE477V6mTlXvvi0T0G3SNIYE2apm/G5huBa1+K89VGeovbg+jycCrfhl3ADxErOuO6Jg==}
- engines: {node: '>=0.4.0'}
- hasBin: true
+ acorn@7.4.1: {}
- /addressparser/1.0.1:
- resolution: {integrity: sha512-aQX7AISOMM7HFE0iZ3+YnD07oIeJqWGVnJ+ZIKaBZAk03ftmVYVqsGas/rbXKR21n4D/hKCSHypvcyOkds/xzg==}
- dev: false
+ acorn@8.14.0: {}
- /adm-zip/0.5.10:
- resolution: {integrity: sha512-x0HvcHqVJNTPk/Bw8JbLWlWoo6Wwnsug0fnYYro1HBrjxZ3G7/AZk7Ahv8JwDe1uIcz8eBqvu86FuF1POiG7vQ==}
- engines: {node: '>=6.0'}
- dev: false
+ addressparser@1.0.1: {}
- /adm-zip/0.5.2:
- resolution: {integrity: sha512-lUI3ZSNsfQXNYNzGjt68MdxzCs0eW29lgL74y/Y2h4nARgHmH3poFWuK3LonvFbNHFt4dTb2X/QQ4c1ZUWWsJw==}
- engines: {node: '>=6.0'}
- dev: false
+ adm-zip@0.5.16: {}
+
+ adm-zip@0.5.2: {}
- /agent-base/6.0.2:
- resolution: {integrity: sha512-RZNwNclF7+MS/8bDg70amg32dyeZGZxiDuQmZxKLAlQjr3jGyLx+4Kkk58UO7D2QdgFIQCovuSuZESne6RG6XQ==}
- engines: {node: '>= 6.0.0'}
+ agent-base@6.0.2:
dependencies:
- debug: 4.3.6
+ debug: 4.3.7(supports-color@9.4.0)
transitivePeerDependencies:
- supports-color
- dev: false
- /agent-base/7.1.0:
- resolution: {integrity: sha512-o/zjMZRhJxny7OyEF+Op8X+efiELC7k7yOjMzgfzVqOzXqkBkWI79YoTdOtsuWd5BWhAGAuOY/Xa6xpiaWXiNg==}
- engines: {node: '>= 14'}
+ agent-base@7.1.1:
dependencies:
- debug: 4.3.6
+ debug: 4.3.4
transitivePeerDependencies:
- supports-color
- dev: false
- /aggregate-error/3.1.0:
- resolution: {integrity: sha512-4I7Td01quW/RpocfNayFdFVk1qSuoh0E7JrbRJ16nH01HhKFQ88INq9Sd+nd72zqRySlr9BmDA8xlEJ6vJMrYA==}
- engines: {node: '>=8'}
+ aggregate-error@3.1.0:
dependencies:
clean-stack: 2.2.0
indent-string: 4.0.0
- /airtable/0.11.6:
- resolution: {integrity: sha512-Na67L2TO1DflIJ1yOGhQG5ilMfL2beHpsR+NW/jhaYOa4QcoxZOtDFs08cpSd1tBMsLpz5/rrz/VMX/pGL/now==}
- engines: {node: '>=8.0.0'}
+ airtable@0.11.6:
dependencies:
'@types/node': 14.18.63
abort-controller: 3.0.0
- abortcontroller-polyfill: 1.7.5
+ abortcontroller-polyfill: 1.7.6
lodash: 4.17.21
node-fetch: 2.7.0
transitivePeerDependencies:
- encoding
- dev: false
- /ajv-draft-04/1.0.0_ajv@8.17.1:
- resolution: {integrity: sha512-mv00Te6nmYbRp5DCwclxtt7yV/joXJPGS7nM+97GdxvuttCOfgI3K4U25zboyeX0O+myI8ERluxQe5wljMmVIw==}
- peerDependencies:
- ajv: ^8.5.0
- peerDependenciesMeta:
- ajv:
- optional: true
- dependencies:
+ ajv-draft-04@1.0.0(ajv@8.13.0):
+ optionalDependencies:
+ ajv: 8.13.0
+
+ ajv-draft-04@1.0.0(ajv@8.17.1):
+ optionalDependencies:
ajv: 8.17.1
- dev: false
- /ajv/6.12.6:
- resolution: {integrity: sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==}
+ ajv-formats@3.0.1(ajv@8.13.0):
+ optionalDependencies:
+ ajv: 8.13.0
+
+ ajv@6.12.6:
dependencies:
fast-deep-equal: 3.1.3
fast-json-stable-stringify: 2.1.0
json-schema-traverse: 0.4.1
uri-js: 4.4.1
- /ajv/8.12.0:
- resolution: {integrity: sha512-sRu1kpcO9yLtYxBKvqfTeh9KzZEwO3STyX1HT+4CaDzC6HpTGYhIhPIzj9XuKU7KYDwnaeh5hcOwjy1QuJzBPA==}
+ ajv@8.12.0:
dependencies:
fast-deep-equal: 3.1.3
json-schema-traverse: 1.0.0
require-from-string: 2.0.2
uri-js: 4.4.1
- dev: true
- /ajv/8.17.1:
- resolution: {integrity: sha512-B/gBuNg5SiMTrPkC+A2+cW0RszwxYmn6VYxB/inlBStS5nx6xHIt/ehKRhIMhqusl7a8LjQoZnjCs5vhwxOQ1g==}
+ ajv@8.13.0:
dependencies:
fast-deep-equal: 3.1.3
- fast-uri: 3.0.1
json-schema-traverse: 1.0.0
require-from-string: 2.0.2
+ uri-js: 4.4.1
- /alge/0.8.1:
- resolution: {integrity: sha512-kiV9nTt+XIauAXsowVygDxMZLplZxDWt0W8plE/nB32/V2ziM/P/TxDbSVK7FYIUt2Xo16h3/htDh199LNPCKQ==}
- dependencies:
- lodash.ismatch: 4.4.0
- remeda: 1.61.0
- ts-toolbelt: 9.6.0
- zod: 3.23.8
- dev: false
-
- /algoliasearch/4.20.0:
- resolution: {integrity: sha512-y+UHEjnOItoNy0bYO+WWmLWBlPwDjKHW6mNHrPi0NkuhpQOOEbrkwQH/wgKFDLh7qlKjzoKeiRtlpewDPDG23g==}
- dependencies:
- '@algolia/cache-browser-local-storage': 4.20.0
- '@algolia/cache-common': 4.20.0
- '@algolia/cache-in-memory': 4.20.0
- '@algolia/client-account': 4.20.0
- '@algolia/client-analytics': 4.20.0
- '@algolia/client-common': 4.20.0
- '@algolia/client-personalization': 4.20.0
- '@algolia/client-search': 4.20.0
- '@algolia/logger-common': 4.20.0
- '@algolia/logger-console': 4.20.0
- '@algolia/requester-browser-xhr': 4.20.0
- '@algolia/requester-common': 4.20.0
- '@algolia/requester-node-http': 4.20.0
- '@algolia/transporter': 4.20.0
- dev: false
-
- /align-spaces/1.0.4:
- resolution: {integrity: sha512-JPl93xFbsX4OY7VFKjerJ9cjaelmKo1wt1EP0ScrKI578vro1WhGy+w9C0nAFup8qYADgAS2FvMb7uLPStTB6g==}
- engines: {node: '>=8.3.0'}
- hasBin: true
- dev: true
+ ajv@8.17.1:
+ dependencies:
+ fast-deep-equal: 3.1.3
+ fast-uri: 3.0.3
+ json-schema-traverse: 1.0.0
+ require-from-string: 2.0.2
- /ansi-align/3.0.1:
- resolution: {integrity: sha512-IOfwwBF5iczOjp/WeY4YxyjqAFMQoZufdQWDd19SEExbVLNXqvpzSJ/M7Za4/sCPmQ0+GRquoA7bGcINcxew6w==}
+ algoliasearch@4.24.0:
+ dependencies:
+ '@algolia/cache-browser-local-storage': 4.24.0
+ '@algolia/cache-common': 4.24.0
+ '@algolia/cache-in-memory': 4.24.0
+ '@algolia/client-account': 4.24.0
+ '@algolia/client-analytics': 4.24.0
+ '@algolia/client-common': 4.24.0
+ '@algolia/client-personalization': 4.24.0
+ '@algolia/client-search': 4.24.0
+ '@algolia/logger-common': 4.24.0
+ '@algolia/logger-console': 4.24.0
+ '@algolia/recommend': 4.24.0
+ '@algolia/requester-browser-xhr': 4.24.0
+ '@algolia/requester-common': 4.24.0
+ '@algolia/requester-node-http': 4.24.0
+ '@algolia/transporter': 4.24.0
+
+ align-spaces@1.0.4: {}
+
+ ansi-align@3.0.1:
dependencies:
string-width: 4.2.3
- dev: false
- /ansi-escapes/4.3.2:
- resolution: {integrity: sha512-gKXj5ALrKWQLsYG9jlTRmR/xKluxHV+Z9QEwNIgCfM1/uwPMCuzVVnh5mwTd+OuBZcwSIMbqssNWRm1lE51QaQ==}
- engines: {node: '>=8'}
+ ansi-colors@4.1.3: {}
+
+ ansi-escapes@4.3.2:
dependencies:
type-fest: 0.21.3
- /ansi-regex/2.1.1:
- resolution: {integrity: sha512-TIGnTpdo+E3+pCyAluZvtED5p5wCqLdezCyhPZzKPcxvFplEt4i+W7OONCKgeZFT3+y5NZZfOOS/Bdcanm1MYA==}
- engines: {node: '>=0.10.0'}
- dev: true
+ ansi-regex@2.1.1: {}
- /ansi-regex/5.0.1:
- resolution: {integrity: sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==}
- engines: {node: '>=8'}
+ ansi-regex@5.0.1: {}
- /ansi-regex/6.0.1:
- resolution: {integrity: sha512-n5M855fKb2SsfMIiFFoVrABHJC8QtHwVx+mHWP3QcEqBHYienj5dHSgjbxtC0WEZXYt4wcD6zrQElDPhFuZgfA==}
- engines: {node: '>=12'}
+ ansi-regex@6.1.0: {}
- /ansi-styles/2.2.1:
- resolution: {integrity: sha512-kmCevFghRiWM7HB5zTPULl4r9bVFSWjz62MhqizDGUrq2NWuNMQyuv4tHHoKJHs69M/MF64lEcHdYIocrdWQYA==}
- engines: {node: '>=0.10.0'}
- dev: true
+ ansi-styles@2.2.1: {}
- /ansi-styles/3.2.1:
- resolution: {integrity: sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==}
- engines: {node: '>=4'}
+ ansi-styles@3.2.1:
dependencies:
color-convert: 1.9.3
- /ansi-styles/4.3.0:
- resolution: {integrity: sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==}
- engines: {node: '>=8'}
+ ansi-styles@4.3.0:
dependencies:
color-convert: 2.0.1
- /ansi-styles/5.2.0:
- resolution: {integrity: sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA==}
- engines: {node: '>=10'}
- dev: true
+ ansi-styles@5.2.0: {}
- /ansi-styles/6.2.1:
- resolution: {integrity: sha512-bN798gFfQX+viw3R7yrGWRqnrN2oRkEkUjjl4JNn4E8GxxbjtG3FbrEIIY3l8/hrwUwIeCZvi4QuOTP4MErVug==}
- engines: {node: '>=12'}
- dev: true
+ ansi-styles@6.2.1: {}
- /ansicolors/0.2.1:
- resolution: {integrity: sha512-tOIuy1/SK/dr94ZA0ckDohKXNeBNqZ4us6PjMVLs5h1w2GBB6uPtOknp2+VF4F/zcy9LI70W+Z+pE2Soajky1w==}
- dev: false
+ ansicolors@0.2.1: {}
- /ansicolors/0.3.2:
- resolution: {integrity: sha512-QXu7BPrP29VllRxH8GwB7x5iX5qWKAAMLqKQGWTeLWVlNHNOpVMJ91dsxQAIWXpjuW5wqvxu3Jd/nRjrJ+0pqg==}
- dev: false
+ ansicolors@0.3.2: {}
- /any-promise/1.3.0:
- resolution: {integrity: sha512-7UvmKalWRt1wgjL1RrGxoSJW/0QZFIegpeGvZG9kjp8vrRu55XTHbwnqq2GpXm9uLbcuhxm3IqX9OB4MZR1b2A==}
- dev: false
+ any-promise@1.3.0: {}
- /anymatch/3.1.3:
- resolution: {integrity: sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==}
- engines: {node: '>= 8'}
+ anymatch@3.1.3:
dependencies:
normalize-path: 3.0.0
picomatch: 2.3.1
- /api/4.5.2_openapi-types@12.1.3:
- resolution: {integrity: sha512-RbqDVdRVBd3Y/M+iAkFj4IqHhBR86FoyfcRkRs77qYQW9nL+tBC+aPkgKtlhirMHjoCmNrxnh0CNhCTqFq4PSg==}
- engines: {node: ^12 || ^14 || ^16}
+ api@4.5.2(openapi-types@12.1.3):
dependencies:
'@readme/oas-to-har': 16.1.0
- '@readme/openapi-parser': 2.5.0_openapi-types@12.1.3
+ '@readme/openapi-parser': 2.6.0(openapi-types@12.1.3)
datauri: 4.1.0
fetch-har: 5.0.5
find-cache-dir: 3.3.2
@@ -22665,16 +30604,11 @@ packages:
transitivePeerDependencies:
- encoding
- openapi-types
- dev: false
- /aproba/1.2.0:
- resolution: {integrity: sha512-Y9J6ZjXtoYh8RnXVCMOU/ttDmk1aBjunq9vO0ta5x85WDQiQfUF9sIPBITdbiiIVcBo03Hi3jMxigBtsddlXRw==}
- dev: true
+ aproba@1.2.0:
optional: true
- /archiver-utils/2.1.0:
- resolution: {integrity: sha512-bEL/yUb/fNNiNTuUz979Z0Yg5L+LzLxGJz8x79lYmR54fmTIb6ob/hNQgkQnIUDWIFjZVQwl9Xs356I6BAMHfw==}
- engines: {node: '>= 6'}
+ archiver-utils@2.1.0:
dependencies:
glob: 7.2.3
graceful-fs: 4.2.11
@@ -22686,707 +30620,500 @@ packages:
lodash.union: 4.6.0
normalize-path: 3.0.0
readable-stream: 2.3.8
- dev: false
- /archiver/4.0.2:
- resolution: {integrity: sha512-B9IZjlGwaxF33UN4oPbfBkyA4V1SxNLeIhR1qY8sRXSsbdUkEHrrOvwlYFPx+8uQeCe9M+FG6KgO+imDmQ79CQ==}
- engines: {node: '>= 8'}
+ archiver@4.0.2:
dependencies:
archiver-utils: 2.1.0
- async: 3.2.4
+ async: 3.2.6
buffer-crc32: 0.2.13
glob: 7.2.3
readable-stream: 3.6.2
tar-stream: 2.2.0
zip-stream: 3.0.1
- dev: false
- /are-we-there-yet/1.1.7:
- resolution: {integrity: sha512-nxwy40TuMiUGqMyRHgCSWZ9FM4VAoRP4xUYSTv5ImRog+h9yISPbVH7H8fASCIzYn9wlEv4zvFL7uKDMCFQm3g==}
- deprecated: This package is no longer supported.
+ are-we-there-yet@1.1.7:
dependencies:
delegates: 1.0.0
readable-stream: 2.3.8
- dev: true
optional: true
- /argparse/1.0.10:
- resolution: {integrity: sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==}
+ argparse@1.0.10:
dependencies:
sprintf-js: 1.0.3
- dev: true
- /argparse/2.0.1:
- resolution: {integrity: sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==}
+ argparse@2.0.1: {}
- /aria-query/5.1.3:
- resolution: {integrity: sha512-R5iJ5lkuHybztUfuOAznmboyjWq8O6sqNqtK7CLOqdydi54VNbORp49mb14KbWgG1QD3JFO9hJdZ+y4KutfdOQ==}
- dependencies:
- deep-equal: 2.2.3
- dev: true
+ aria-query@5.3.2: {}
- /array-back/3.1.0:
- resolution: {integrity: sha512-TkuxA4UCOvxuDK6NZYXCalszEzj+TLszyASooky+i742l9TqsOdYCMJJupxRic61hwquNtppB3hgcuq9SVSH1Q==}
- engines: {node: '>=6'}
- dev: true
+ array-back@3.1.0: {}
- /array-back/4.0.2:
- resolution: {integrity: sha512-NbdMezxqf94cnNfWLL7V/im0Ub+Anbb0IoZhvzie8+4HJ4nMQuzHuy49FkGYCJK2yAloZ3meiB6AVMClbrI1vg==}
- engines: {node: '>=8'}
- dev: true
+ array-back@4.0.2: {}
- /array-back/6.2.2:
- resolution: {integrity: sha512-gUAZ7HPyb4SJczXAMUXMGAvI976JoK3qEx9v1FTmeYuJj0IBiaKttG1ydtGKdkfqWkIkouke7nG8ufGy77+Cvw==}
- engines: {node: '>=12.17'}
- dev: true
+ array-back@6.2.2: {}
- /array-buffer-byte-length/1.0.1:
- resolution: {integrity: sha512-ahC5W1xgou+KTXix4sAO8Ki12Q+jf4i0+tmk3sC+zgcynshkHxzpXdImBehiUYKKKDwvfFiJl1tZt6ewscS1Mg==}
- engines: {node: '>= 0.4'}
+ array-buffer-byte-length@1.0.1:
dependencies:
call-bind: 1.0.7
is-array-buffer: 3.0.4
- /array-flat-polyfill/1.0.1:
- resolution: {integrity: sha512-hfJmKupmQN0lwi0xG6FQ5U8Rd97RnIERplymOv/qpq8AoNKPPAnxJadjFA23FNWm88wykh9HmpLJUUwUtNU/iw==}
- engines: {node: '>=6.0.0'}
- dev: false
+ array-flat-polyfill@1.0.1: {}
- /array-includes/3.1.8:
- resolution: {integrity: sha512-itaWrbYbqpGXkGhZPGUulwnhVf5Hpy1xiCFsGqyIGglbBxmG5vSjxQen3/WGOjPpNEv1RtBLKxbmVXm8HpJStQ==}
- engines: {node: '>= 0.4'}
+ array-includes@3.1.8:
dependencies:
call-bind: 1.0.7
define-properties: 1.2.1
- es-abstract: 1.23.3
+ es-abstract: 1.23.5
es-object-atoms: 1.0.0
get-intrinsic: 1.2.4
is-string: 1.0.7
- dev: true
- /array-indexofobject/0.0.1:
- resolution: {integrity: sha512-tpdPBIBm4TMNxSp8O3pZgC7mF4+wn9SmJlhE+7bi5so6x39PvzUqChQMbv93R5ilYGZ1HV+Neki4IH/i+87AoQ==}
- dev: false
+ array-indexofobject@0.0.1: {}
- /array-union/2.1.0:
- resolution: {integrity: sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==}
- engines: {node: '>=8'}
+ array-union@2.1.0: {}
- /array.prototype.findindex/2.2.2:
- resolution: {integrity: sha512-fnTMT+Xq/VloVDsroPW9JLL1M5UxNTVfoNxU4KeyDcH5C/Jmjikf5+KDH5207wWMC8MBlSOn7kZkkys8XnqWNg==}
+ array.prototype.findindex@2.2.3:
dependencies:
call-bind: 1.0.7
define-properties: 1.2.1
- es-abstract: 1.23.3
- es-shim-unscopables: 1.0.0
- dev: false
+ es-abstract: 1.23.5
+ es-object-atoms: 1.0.0
+ es-shim-unscopables: 1.0.2
- /array.prototype.findlast/1.2.5:
- resolution: {integrity: sha512-CVvd6FHg1Z3POpBLxO6E6zr+rSKEQ9L6rZHAaY7lLfhKsWYUBBOuMs0e9o24oopj6H+geRCX0YJ+TJLBK2eHyQ==}
- engines: {node: '>= 0.4'}
+ array.prototype.findlast@1.2.5:
dependencies:
call-bind: 1.0.7
define-properties: 1.2.1
- es-abstract: 1.23.3
+ es-abstract: 1.23.5
es-errors: 1.3.0
es-object-atoms: 1.0.0
es-shim-unscopables: 1.0.2
- dev: true
- /array.prototype.findlastindex/1.2.5:
- resolution: {integrity: sha512-zfETvRFA8o7EiNn++N5f/kaCw221hrpGsDmcpndVupkPzEc1Wuf3VgC0qby1BbHs7f5DVYjgtEU2LLh5bqeGfQ==}
- engines: {node: '>= 0.4'}
+ array.prototype.findlastindex@1.2.5:
dependencies:
call-bind: 1.0.7
define-properties: 1.2.1
- es-abstract: 1.23.3
+ es-abstract: 1.23.5
es-errors: 1.3.0
es-object-atoms: 1.0.0
es-shim-unscopables: 1.0.2
- dev: true
- /array.prototype.flat/1.3.2:
- resolution: {integrity: sha512-djYB+Zx2vLewY8RWlNCUdHjDXs2XOgm602S9E7P/UpHgfeHL00cRiIF+IN/G/aUJ7kGPb6yO/ErDI5V2s8iycA==}
- engines: {node: '>= 0.4'}
+ array.prototype.flat@1.3.2:
dependencies:
call-bind: 1.0.7
define-properties: 1.2.1
- es-abstract: 1.23.3
- es-shim-unscopables: 1.0.0
- dev: true
+ es-abstract: 1.23.5
+ es-shim-unscopables: 1.0.2
- /array.prototype.flatmap/1.3.2:
- resolution: {integrity: sha512-Ewyx0c9PmpcsByhSW4r+9zDU7sGjFc86qf/kKtuSCRdhfbk0SNLLkaT5qvcHnRGgc5NP/ly/y+qkXkqONX54CQ==}
- engines: {node: '>= 0.4'}
+ array.prototype.flatmap@1.3.2:
dependencies:
call-bind: 1.0.7
define-properties: 1.2.1
- es-abstract: 1.23.3
- es-shim-unscopables: 1.0.0
- dev: true
+ es-abstract: 1.23.5
+ es-shim-unscopables: 1.0.2
- /array.prototype.map/1.0.6:
- resolution: {integrity: sha512-nK1psgF2cXqP3wSyCSq0Hc7zwNq3sfljQqaG27r/7a7ooNUnn5nGq6yYWyks9jMO5EoFQ0ax80hSg6oXSRNXaw==}
- engines: {node: '>= 0.4'}
+ array.prototype.map@1.0.7:
dependencies:
call-bind: 1.0.7
define-properties: 1.2.1
- es-abstract: 1.23.3
+ es-abstract: 1.23.5
es-array-method-boxes-properly: 1.0.0
+ es-object-atoms: 1.0.0
is-string: 1.0.7
- dev: false
- /array.prototype.tosorted/1.1.4:
- resolution: {integrity: sha512-p6Fx8B7b7ZhL/gmUsAy0D15WhvDccw3mnGNbZpi3pmeJdxtWsj2jEaI4Y6oo3XiHfzuSgPwKc04MYt6KgvC/wA==}
- engines: {node: '>= 0.4'}
+ array.prototype.tosorted@1.1.4:
dependencies:
call-bind: 1.0.7
define-properties: 1.2.1
- es-abstract: 1.23.3
+ es-abstract: 1.23.5
es-errors: 1.3.0
es-shim-unscopables: 1.0.2
- dev: true
- /arraybuffer.prototype.slice/1.0.3:
- resolution: {integrity: sha512-bMxMKAjg13EBSVscxTaYA4mRc5t1UAXa2kXiGTNfZ079HIWXEkKmkgFrh/nJqamaLSrXO5H4WFFkPEaLJWbs3A==}
- engines: {node: '>= 0.4'}
+ arraybuffer.prototype.slice@1.0.3:
dependencies:
array-buffer-byte-length: 1.0.1
call-bind: 1.0.7
define-properties: 1.2.1
- es-abstract: 1.23.3
+ es-abstract: 1.23.5
es-errors: 1.3.0
get-intrinsic: 1.2.4
is-array-buffer: 3.0.4
is-shared-array-buffer: 1.0.3
- /arrify/1.0.1:
- resolution: {integrity: sha512-3CYzex9M9FGQjCGMGyi6/31c8GJbgb0qGyrx5HWxPd0aCwh4cB2YjMb2Xf9UuoogrMrlO9cTqnB5rI5GHZTcUA==}
- engines: {node: '>=0.10.0'}
- dev: true
-
- /arrify/2.0.1:
- resolution: {integrity: sha512-3duEwti880xqi4eAMN8AyR4a0ByT90zoYdLlevfrvU43vb0YZwZVfxOgxWrLXXXpyugL0hNZc9G6BiB5B3nUug==}
- engines: {node: '>=8'}
- dev: false
+ arrify@2.0.1: {}
- /asap/2.0.6:
- resolution: {integrity: sha512-BSHWgDSAiKs50o2Re8ppvp3seVHXSRM44cdSsT9FfNEUUZLOGWVCsiWaRPWM1Znn+mqZ1OfVZ3z3DWEzSp7hRA==}
- dev: false
+ asap@2.0.6: {}
- /asn1.js-rfc2560/5.0.1_asn1.js@5.4.1:
- resolution: {integrity: sha512-1PrVg6kuBziDN3PGFmRk3QrjpKvP9h/Hv5yMrFZvC1kpzP6dQRzf5BpKstANqHBkaOUmTpakJWhicTATOA/SbA==}
- peerDependencies:
- asn1.js: ^5.0.0
+ asn1.js-rfc2560@5.0.1(asn1.js@5.4.1):
dependencies:
asn1.js: 5.4.1
asn1.js-rfc5280: 3.0.0
- dev: false
- /asn1.js-rfc5280/3.0.0:
- resolution: {integrity: sha512-Y2LZPOWeZ6qehv698ZgOGGCZXBQShObWnGthTrIFlIQjuV1gg2B8QOhWFRExq/MR1VnPpIIe7P9vX2vElxv+Pg==}
+ asn1.js-rfc5280@3.0.0:
dependencies:
asn1.js: 5.4.1
- dev: false
- /asn1.js/5.4.1:
- resolution: {integrity: sha512-+I//4cYPccV8LdmBLiX8CYvf9Sp3vQsrqu2QNXRcrbiWvcx/UdlFiqUJJzxRQxgsZmvhXhn4cSKeSmoFjVdupA==}
+ asn1.js@5.4.1:
dependencies:
- bn.js: 4.12.0
+ bn.js: 4.12.1
inherits: 2.0.4
minimalistic-assert: 1.0.1
safer-buffer: 2.1.2
- dev: false
- /asn1/0.2.6:
- resolution: {integrity: sha512-ix/FxPn0MDjeyJ7i/yoHGFt/EX6LyNbxSEhPPXODPL+KB0VPk86UYfL0lMdy+KCnv+fmvIzySwaK5COwqVbWTQ==}
+ asn1@0.2.6:
dependencies:
safer-buffer: 2.1.2
- /assert-plus/1.0.0:
- resolution: {integrity: sha512-NfJ4UzBCcQGLDlQq7nHxH+tv3kyZ0hHQqF5BO6J7tNJeP5do1llPr8dZ8zHonfhAu0PHAdMkSo+8o0wxg9lZWw==}
- engines: {node: '>=0.8'}
-
- /assert/2.1.0:
- resolution: {integrity: sha512-eLHpSK/Y4nhMJ07gDaAzoX/XAKS8PSaojml3M0DM4JpV1LAi5JOJ/p6H/XWrl8L+DzVEvVCW1z3vWAaB9oTsQw==}
- dependencies:
- call-bind: 1.0.7
- is-nan: 1.3.2
- object-is: 1.1.5
- object.assign: 4.1.5
- util: 0.12.5
- dev: true
+ assert-plus@1.0.0: {}
- /ast-module-types/2.7.1:
- resolution: {integrity: sha512-Rnnx/4Dus6fn7fTqdeLEAn5vUll5w7/vts0RN608yFa6si/rDOUonlIIiwugHBFWjylHjxm9owoSZn71KwG4gw==}
- dev: false
+ ast-module-types@2.7.1: {}
- /ast-module-types/3.0.0:
- resolution: {integrity: sha512-CMxMCOCS+4D+DkOQfuZf+vLrSEmY/7xtORwdxs4wtcC1wVgvk2MqFFTwQCFhvWsI4KPU9lcWXPI8DgRiz+xetQ==}
- engines: {node: '>=6.0'}
- dev: false
+ ast-module-types@3.0.0: {}
- /ast-types-flow/0.0.8:
- resolution: {integrity: sha512-OH/2E5Fg20h2aPrbe+QL8JZQFko0YZaF+j4mnQ7BGhfavO7OpSLa8a0y9sBwomHdSbkhTS8TQNayBfnW5DwbvQ==}
- dev: true
+ ast-types-flow@0.0.8: {}
- /ast-types/0.13.4:
- resolution: {integrity: sha512-x1FCFnFifvYDDzTaLII71vG5uvDwgtmDTEVWAxrgeiR8VjMONcCXJx7E+USjDtHlwFmt9MysbqgF9b9Vjr6w+w==}
- engines: {node: '>=4'}
+ ast-types@0.13.4:
dependencies:
- tslib: 2.6.3
- dev: false
+ tslib: 2.8.1
- /ast-types/0.16.1:
- resolution: {integrity: sha512-6t10qk83GOG8p0vKmaCr8eiilZwO171AvbROMtvvNiwrTly62t+7XkA8RdIIVbpMhCASAsxgAzdRSwh6nw/5Dg==}
- engines: {node: '>=4'}
+ ast-types@0.16.1:
dependencies:
- tslib: 2.6.3
- dev: true
+ tslib: 2.8.1
- /astral-regex/2.0.0:
- resolution: {integrity: sha512-Z7tMw1ytTXt5jqMcOP+OQteU1VuNK9Y02uuJtKQ1Sv69jXQKKg5cibLwGJow8yzZP+eAc18EmLGPal0bp36rvQ==}
- engines: {node: '>=8'}
- dev: true
+ astral-regex@2.0.0: {}
- /async-retry/1.3.3:
- resolution: {integrity: sha512-wfr/jstw9xNi/0teMHrRW7dsz3Lt5ARhYNZ2ewpadnhaIp5mbALhOAP+EAdsC7t4Z6wqsDVv9+W6gm1Dk9mEyw==}
+ async-retry@1.3.3:
dependencies:
retry: 0.13.1
- dev: false
-
- /async/1.5.2:
- resolution: {integrity: sha512-nSVgobk4rv61R9PUSDtYt7mPVB2olxNR5RWJcAsH676/ef11bUZwvu7+RGYrYauVdDPcO519v68wRhXQtxsV9w==}
- dev: false
- /async/3.2.4:
- resolution: {integrity: sha512-iAB+JbDEGXhyIUavoDl9WP/Jj106Kz9DEn1DPgYw5ruDn0e3Wgi3sKFm55sASdGBNOQB8F59d9qQ7deqrHA8wQ==}
+ async@1.5.2: {}
- /asynckit/0.4.0:
- resolution: {integrity: sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q==}
+ async@3.2.6: {}
- /autocreate/1.2.0:
- resolution: {integrity: sha512-69hVJ14Nm6rP5b4fd5TQGbBCPxH3M4L+/eDrCePoa3dCyNHWFS/HhE8mY6DG5q6LMscjMcjpSwEsX8G+8jT5ZA==}
- dev: false
+ asynckit@0.4.0: {}
- /available-typed-arrays/1.0.5:
- resolution: {integrity: sha512-DMD0KiN46eipeziST1LPP/STfDU0sufISXmjSgvVsoU2tqxctQeASejWcfNtxYKqETM1UxQ8sp2OrSBWpHY6sw==}
- engines: {node: '>= 0.4'}
+ autocreate@1.2.0: {}
- /available-typed-arrays/1.0.7:
- resolution: {integrity: sha512-wvUjBtSGN7+7SjNpq/9M2Tg350UZD3q62IFZLbRAR1bSMlCo1ZaeW+BJ+D090e4hIIZLBcTDWe4Mh4jvUDajzQ==}
- engines: {node: '>= 0.4'}
+ available-typed-arrays@1.0.7:
dependencies:
possible-typed-array-names: 1.0.0
- /aws-sign2/0.7.0:
- resolution: {integrity: sha512-08kcGqnYf/YmjoRhfxyu+CLxBjUtHLXLXX/vUfx9l2LYzG3c1m61nrpyFUZI6zeS+Li/wWMMidD9KgrqtGq3mA==}
+ aws-sign2@0.7.0: {}
- /aws4/1.12.0:
- resolution: {integrity: sha512-NmWvPnx0F1SfrQbYwOi7OeaNGokp9XhzNioJ/CSBs8Qa4vxug81mhJEAVZwxXuBmYB5KDRfMq/F3RR0BIU7sWg==}
+ aws-ssl-profiles@1.1.2: {}
- /axe-core/4.10.0:
- resolution: {integrity: sha512-Mr2ZakwQ7XUAjp7pAwQWRhhK8mQQ6JAaNWSjmjxil0R8BPioMtQsTLOolGYkji1rcL++3dCqZA3zWqpT+9Ew6g==}
- engines: {node: '>=4'}
- dev: true
+ aws4@1.13.2: {}
- /axios/0.19.2:
- resolution: {integrity: sha512-fjgm5MvRHLhx+osE2xoekY70AhARk3a6hkN+3Io1jc00jtquGvxYlKlsFUhmUET0V5te6CcZI7lcv2Ym61mjHA==}
- deprecated: Critical security vulnerability fixed in v0.21.1. For more information, see https://github.com/axios/axios/pull/3410
+ axe-core@4.10.2: {}
+
+ axios@0.19.2:
dependencies:
follow-redirects: 1.5.10
transitivePeerDependencies:
- supports-color
- dev: false
-
- /axios/0.21.4:
- resolution: {integrity: sha512-ut5vewkiu8jjGBdqpM44XxjuCjq9LAKeHVmoVfHVzy8eHgxxq8SbAVQNovDA8mVi05kP0Ea/n/UzcSHcTJQfNg==}
- dependencies:
- follow-redirects: 1.15.5
- transitivePeerDependencies:
- - debug
- dev: false
-
- /axios/0.24.0:
- resolution: {integrity: sha512-Q6cWsys88HoPgAaFAVUb0WpPk0O8iTeisR9IMqy9G8AbO4NlpVknrnQS03zzF9PGAWgO3cgletO3VjV/P7VztA==}
- dependencies:
- follow-redirects: 1.15.9
- transitivePeerDependencies:
- - debug
- dev: false
- /axios/0.25.0:
- resolution: {integrity: sha512-cD8FOb0tRH3uuEe6+evtAbgJtfxr7ly3fQjYcMcuPlgkwVS9xboaVIpcDV+cYQe+yGykgwZCs1pzjntcGa6l5g==}
+ axios@0.21.4:
dependencies:
- follow-redirects: 1.15.3
+ follow-redirects: 1.15.9(debug@3.2.7)
transitivePeerDependencies:
- debug
- dev: false
- /axios/0.26.1:
- resolution: {integrity: sha512-fPwcX4EvnSHuInCMItEhAGnaSEXRBjtzh9fOtsE6E1G6p7vl7edEeZe11QHf18+6+9gR5PbKV/sGKNaD8YaMeA==}
+ axios@0.25.0:
dependencies:
- follow-redirects: 1.15.9
+ follow-redirects: 1.15.9(debug@3.2.7)
transitivePeerDependencies:
- debug
- dev: false
- /axios/0.27.2:
- resolution: {integrity: sha512-t+yRIyySRTp/wua5xEr+z1q60QmLq8ABsS5O9Me1AsE5dfKqgnCFzwiCZZ/cGNd1lq4/7akDWMxdhVlucjmnOQ==}
+ axios@0.26.1:
dependencies:
- follow-redirects: 1.15.3
- form-data: 4.0.0
+ follow-redirects: 1.15.9(debug@3.2.7)
transitivePeerDependencies:
- debug
- dev: false
- /axios/1.4.0:
- resolution: {integrity: sha512-S4XCWMEmzvo64T9GfvQDOXgYRDJ/wsSZc7Jvdgx5u1sd0JwsuPLqb3SYmusag+edF6ziyMensPVqLTSc1PiSEA==}
+ axios@0.27.2:
dependencies:
- follow-redirects: 1.15.9
+ follow-redirects: 1.15.9(debug@3.2.7)
form-data: 4.0.1
- proxy-from-env: 1.1.0
transitivePeerDependencies:
- debug
- dev: false
- /axios/1.5.0:
- resolution: {integrity: sha512-D4DdjDo5CY50Qms0qGQTTw6Q44jl7zRwY7bthds06pUGfChBCTcQs+N743eFWGEd6pRTMd6A+I87aWyFV5wiZQ==}
+ axios@0.28.1:
dependencies:
- follow-redirects: 1.15.9
+ follow-redirects: 1.15.9(debug@3.2.7)
form-data: 4.0.1
proxy-from-env: 1.1.0
transitivePeerDependencies:
- debug
- dev: false
-
- /axios/1.5.1:
- resolution: {integrity: sha512-Q28iYCWzNHjAm+yEAot5QaAMxhMghWLFVf7rRdwhUI+c2jix2DUXjAHXVi+s1ibs3mjPO/cCgbA++3BjD0vP/A==}
- dependencies:
- follow-redirects: 1.15.3
- form-data: 4.0.0
- proxy-from-env: 1.1.0
- transitivePeerDependencies:
- - debug
- dev: false
-
- /axios/1.6.1:
- resolution: {integrity: sha512-vfBmhDpKafglh0EldBEbVuoe7DyAavGSLWhuSm5ZSEKQnHhBf0xAAwybbNH1IkrJNGnS/VG4I5yxig1pCEXE4g==}
- dependencies:
- follow-redirects: 1.15.3
- form-data: 4.0.0
- proxy-from-env: 1.1.0
- transitivePeerDependencies:
- - debug
- dev: false
-
- /axios/1.6.2:
- resolution: {integrity: sha512-7i24Ri4pmDRfJTR7LDBhsOTtcm+9kjX5WiY1X3wIisx6G9So3pfMkEiU7emUBe46oceVImccTEM3k6C5dbVW8A==}
- dependencies:
- follow-redirects: 1.15.3
- form-data: 4.0.0
- proxy-from-env: 1.1.0
- transitivePeerDependencies:
- - debug
- dev: false
- /axios/1.6.5:
- resolution: {integrity: sha512-Ii012v05KEVuUoFWmMW/UQv9aRIc3ZwkWDcM+h5Il8izZCtRVpDUfwpoFf7eOtajT3QiGR4yDUx7lPqHJULgbg==}
+ axios@1.6.0:
dependencies:
- follow-redirects: 1.15.5
- form-data: 4.0.0
+ follow-redirects: 1.15.9(debug@3.2.7)
+ form-data: 4.0.1
proxy-from-env: 1.1.0
transitivePeerDependencies:
- debug
- /axios/1.6.5_debug@3.2.7:
- resolution: {integrity: sha512-Ii012v05KEVuUoFWmMW/UQv9aRIc3ZwkWDcM+h5Il8izZCtRVpDUfwpoFf7eOtajT3QiGR4yDUx7lPqHJULgbg==}
+ axios@1.6.7:
dependencies:
- follow-redirects: 1.15.9_debug@3.2.7
+ follow-redirects: 1.15.9(debug@3.2.7)
form-data: 4.0.1
proxy-from-env: 1.1.0
transitivePeerDependencies:
- debug
- dev: false
- /axios/1.7.4:
- resolution: {integrity: sha512-DukmaFRnY6AzAALSH4J2M3k6PkaC+MfaAGdEERRWcC9q3/TWQwLpHR8ZRLKTdQ3aBDL64EdluRDjJqKw+BPZEw==}
+ axios@1.6.8:
dependencies:
- follow-redirects: 1.15.6
+ follow-redirects: 1.15.9(debug@3.2.7)
form-data: 4.0.1
proxy-from-env: 1.1.0
transitivePeerDependencies:
- debug
- dev: false
- /axios/1.7.5:
- resolution: {integrity: sha512-fZu86yCo+svH3uqJ/yTdQ0QHpQu5oL+/QE+QPSv6BZSkDAoky9vytxp7u5qk83OJFS3kEBcesWni9WTZAv3tSw==}
+ axios@1.7.4:
dependencies:
- follow-redirects: 1.15.6
+ follow-redirects: 1.15.9(debug@3.2.7)
form-data: 4.0.1
proxy-from-env: 1.1.0
transitivePeerDependencies:
- debug
- dev: false
- /axios/1.7.7:
- resolution: {integrity: sha512-S4kL7XrjgBmvdGut0sN3yJxqYzrDOnivkBiN0OFs6hLiUam3UPvswUo0kqGyhqUZGEOytHyumEdXsAkgCOUf3Q==}
+ axios@1.7.7(debug@3.2.7):
dependencies:
- follow-redirects: 1.15.9
+ follow-redirects: 1.15.9(debug@3.2.7)
form-data: 4.0.1
proxy-from-env: 1.1.0
transitivePeerDependencies:
- debug
- dev: false
- /axobject-query/4.1.0:
- resolution: {integrity: sha512-qIj0G9wZbMGNLjLmg1PT6v2mE9AH2zlnADJD/2tC6E00hgmhUOfEB6greHPAfLRSufHqROIUTkw6E+M3lH0PTQ==}
- engines: {node: '>= 0.4'}
- dev: true
+ axobject-query@4.1.0: {}
- /b4a/1.6.4:
- resolution: {integrity: sha512-fpWrvyVHEKyeEvbKZTVOeZF3VSKKWtJxFIxX/jaVPf+cLbGUSitjb49pHLqPV2BUNNZ0LcoeEGfE/YCpyDYHIw==}
+ b4a@1.6.7: {}
- /babel-code-frame/6.26.0:
- resolution: {integrity: sha512-XqYMR2dfdGMW+hd0IUZ2PwK+fGeFkOxZJ0wY+JaQAHzt1Zx8LcvpiZD2NiGkEG8qx0CfkAOr5xt76d1e8vG90g==}
+ babel-code-frame@6.26.0:
dependencies:
chalk: 1.1.3
esutils: 2.0.3
js-tokens: 3.0.2
- dev: true
- /babel-jest/29.7.0_@babel+core@7.25.2:
- resolution: {integrity: sha512-BrvGY3xZSwEcCzKvKsCi2GgHqDqsYkOP4/by5xCgIwGXQxIEh+8ew3gmrE1y7XRR6LHZIj6yLYnUi/mm2KXKBg==}
- engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
- peerDependencies:
- '@babel/core': ^7.8.0
+ babel-jest@29.7.0(@babel/core@7.26.0):
dependencies:
- '@babel/core': 7.25.2
+ '@babel/core': 7.26.0
'@jest/transform': 29.7.0
'@types/babel__core': 7.20.5
babel-plugin-istanbul: 6.1.1
- babel-preset-jest: 29.6.3_@babel+core@7.25.2
+ babel-preset-jest: 29.6.3(@babel/core@7.26.0)
chalk: 4.1.2
graceful-fs: 4.2.11
slash: 3.0.0
transitivePeerDependencies:
- supports-color
- dev: true
- /babel-plugin-istanbul/6.1.1:
- resolution: {integrity: sha512-Y1IQok9821cC9onCx5otgFfRm7Lm+I+wwxOx738M/WLPZ9Q42m4IG5W0FNX8WLL2gYMZo3JkuXIH2DOpWM+qwA==}
- engines: {node: '>=8'}
+ babel-jest@29.7.0(@babel/core@8.0.0-alpha.13):
+ dependencies:
+ '@babel/core': 8.0.0-alpha.13
+ '@jest/transform': 29.7.0
+ '@types/babel__core': 7.20.5
+ babel-plugin-istanbul: 6.1.1
+ babel-preset-jest: 29.6.3(@babel/core@8.0.0-alpha.13)
+ chalk: 4.1.2
+ graceful-fs: 4.2.11
+ slash: 3.0.0
+ transitivePeerDependencies:
+ - supports-color
+ optional: true
+
+ babel-plugin-istanbul@6.1.1:
dependencies:
- '@babel/helper-plugin-utils': 7.24.8
+ '@babel/helper-plugin-utils': 7.25.9
'@istanbuljs/load-nyc-config': 1.1.0
'@istanbuljs/schema': 0.1.3
istanbul-lib-instrument: 5.2.1
test-exclude: 6.0.0
transitivePeerDependencies:
- supports-color
- dev: true
- /babel-plugin-jest-hoist/29.6.3:
- resolution: {integrity: sha512-ESAc/RJvGTFEzRwOTT4+lNDk/GNHMkKbNzsvT0qKRfDyyYTskxB5rnU2njIDYVxXCBHHEI1c0YwHob3WaYujOg==}
- engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
+ babel-plugin-jest-hoist@29.6.3:
dependencies:
- '@babel/template': 7.25.0
- '@babel/types': 7.25.2
+ '@babel/template': 7.25.9
+ '@babel/types': 7.26.0
'@types/babel__core': 7.20.5
'@types/babel__traverse': 7.20.6
- dev: true
- /babel-plugin-polyfill-corejs2/0.4.5_@babel+core@7.23.0:
- resolution: {integrity: sha512-19hwUH5FKl49JEsvyTcoHakh6BE0wgXLLptIyKZ3PijHc/Ci521wygORCUCCred+E/twuqRyAkE02BAWPmsHOg==}
- peerDependencies:
- '@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0
+ babel-plugin-macros@3.1.0:
+ dependencies:
+ '@babel/runtime': 7.26.0
+ cosmiconfig: 7.1.0
+ resolve: 1.22.8
+
+ babel-plugin-polyfill-corejs2@0.4.12(@babel/core@7.26.0):
dependencies:
- '@babel/compat-data': 7.25.2
- '@babel/core': 7.23.0
- '@babel/helper-define-polyfill-provider': 0.4.2_@babel+core@7.23.0
+ '@babel/compat-data': 7.26.2
+ '@babel/core': 7.26.0
+ '@babel/helper-define-polyfill-provider': 0.6.3(@babel/core@7.26.0)
semver: 6.3.1
transitivePeerDependencies:
- supports-color
- dev: false
- /babel-plugin-polyfill-corejs3/0.8.4_@babel+core@7.23.0:
- resolution: {integrity: sha512-9l//BZZsPR+5XjyJMPtZSK4jv0BsTO1zDac2GC6ygx9WLGlcsnRd1Co0B2zT5fF5Ic6BZy+9m3HNZ3QcOeDKfg==}
- peerDependencies:
- '@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0
+ babel-plugin-polyfill-corejs3@0.10.6(@babel/core@7.26.0):
dependencies:
- '@babel/core': 7.23.0
- '@babel/helper-define-polyfill-provider': 0.4.2_@babel+core@7.23.0
- core-js-compat: 3.33.0
+ '@babel/core': 7.26.0
+ '@babel/helper-define-polyfill-provider': 0.6.3(@babel/core@7.26.0)
+ core-js-compat: 3.39.0
transitivePeerDependencies:
- supports-color
- dev: false
- /babel-plugin-polyfill-regenerator/0.5.2_@babel+core@7.23.0:
- resolution: {integrity: sha512-tAlOptU0Xj34V1Y2PNTL4Y0FOJMDB6bZmoW39FeCQIhigGLkqu3Fj6uiXpxIf6Ij274ENdYx64y6Au+ZKlb1IA==}
- peerDependencies:
- '@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0
+ babel-plugin-polyfill-regenerator@0.6.3(@babel/core@7.26.0):
dependencies:
- '@babel/core': 7.23.0
- '@babel/helper-define-polyfill-provider': 0.4.2_@babel+core@7.23.0
+ '@babel/core': 7.26.0
+ '@babel/helper-define-polyfill-provider': 0.6.3(@babel/core@7.26.0)
transitivePeerDependencies:
- supports-color
- dev: false
- /babel-preset-current-node-syntax/1.0.1_@babel+core@7.25.2:
- resolution: {integrity: sha512-M7LQ0bxarkxQoN+vz5aJPsLBn77n8QgTFmo8WK0/44auK2xlCXrYcUxHFxgU7qW5Yzw/CjmLRK2uJzaCd7LvqQ==}
- peerDependencies:
- '@babel/core': ^7.0.0
+ babel-preset-current-node-syntax@1.1.0(@babel/core@7.26.0):
+ dependencies:
+ '@babel/core': 7.26.0
+ '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.26.0)
+ '@babel/plugin-syntax-bigint': 7.8.3(@babel/core@7.26.0)
+ '@babel/plugin-syntax-class-properties': 7.12.13(@babel/core@7.26.0)
+ '@babel/plugin-syntax-class-static-block': 7.14.5(@babel/core@7.26.0)
+ '@babel/plugin-syntax-import-attributes': 7.26.0(@babel/core@7.26.0)
+ '@babel/plugin-syntax-import-meta': 7.10.4(@babel/core@7.26.0)
+ '@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.26.0)
+ '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.26.0)
+ '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.26.0)
+ '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.26.0)
+ '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.26.0)
+ '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.26.0)
+ '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.26.0)
+ '@babel/plugin-syntax-private-property-in-object': 7.14.5(@babel/core@7.26.0)
+ '@babel/plugin-syntax-top-level-await': 7.14.5(@babel/core@7.26.0)
+
+ babel-preset-current-node-syntax@1.1.0(@babel/core@8.0.0-alpha.13):
+ dependencies:
+ '@babel/core': 8.0.0-alpha.13
+ '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@8.0.0-alpha.13)
+ '@babel/plugin-syntax-bigint': 7.8.3(@babel/core@8.0.0-alpha.13)
+ '@babel/plugin-syntax-class-properties': 7.12.13(@babel/core@8.0.0-alpha.13)
+ '@babel/plugin-syntax-class-static-block': 7.14.5(@babel/core@8.0.0-alpha.13)
+ '@babel/plugin-syntax-import-attributes': 7.26.0(@babel/core@8.0.0-alpha.13)
+ '@babel/plugin-syntax-import-meta': 7.10.4(@babel/core@8.0.0-alpha.13)
+ '@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@8.0.0-alpha.13)
+ '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@8.0.0-alpha.13)
+ '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@8.0.0-alpha.13)
+ '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@8.0.0-alpha.13)
+ '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@8.0.0-alpha.13)
+ '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@8.0.0-alpha.13)
+ '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@8.0.0-alpha.13)
+ '@babel/plugin-syntax-private-property-in-object': 7.14.5(@babel/core@8.0.0-alpha.13)
+ '@babel/plugin-syntax-top-level-await': 7.14.5(@babel/core@8.0.0-alpha.13)
+ optional: true
+
+ babel-preset-jest@29.6.3(@babel/core@7.26.0):
dependencies:
- '@babel/core': 7.25.2
- '@babel/plugin-syntax-async-generators': 7.8.4_@babel+core@7.25.2
- '@babel/plugin-syntax-bigint': 7.8.3_@babel+core@7.25.2
- '@babel/plugin-syntax-class-properties': 7.12.13_@babel+core@7.25.2
- '@babel/plugin-syntax-import-meta': 7.10.4_@babel+core@7.25.2
- '@babel/plugin-syntax-json-strings': 7.8.3_@babel+core@7.25.2
- '@babel/plugin-syntax-logical-assignment-operators': 7.10.4_@babel+core@7.25.2
- '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3_@babel+core@7.25.2
- '@babel/plugin-syntax-numeric-separator': 7.10.4_@babel+core@7.25.2
- '@babel/plugin-syntax-object-rest-spread': 7.8.3_@babel+core@7.25.2
- '@babel/plugin-syntax-optional-catch-binding': 7.8.3_@babel+core@7.25.2
- '@babel/plugin-syntax-optional-chaining': 7.8.3_@babel+core@7.25.2
- '@babel/plugin-syntax-top-level-await': 7.14.5_@babel+core@7.25.2
- dev: true
-
- /babel-preset-jest/29.6.3_@babel+core@7.25.2:
- resolution: {integrity: sha512-0B3bhxR6snWXJZtR/RliHTDPRgn1sNHOR0yVtq/IiQFyuOVjFS+wuio/R4gSNkyYmKmJB4wGZv2NZanmKmTnNA==}
- engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
- peerDependencies:
- '@babel/core': ^7.0.0
+ '@babel/core': 7.26.0
+ babel-plugin-jest-hoist: 29.6.3
+ babel-preset-current-node-syntax: 1.1.0(@babel/core@7.26.0)
+
+ babel-preset-jest@29.6.3(@babel/core@8.0.0-alpha.13):
dependencies:
- '@babel/core': 7.25.2
+ '@babel/core': 8.0.0-alpha.13
babel-plugin-jest-hoist: 29.6.3
- babel-preset-current-node-syntax: 1.0.1_@babel+core@7.25.2
- dev: true
+ babel-preset-current-node-syntax: 1.1.0(@babel/core@8.0.0-alpha.13)
+ optional: true
- /backoff/2.5.0:
- resolution: {integrity: sha512-wC5ihrnUXmR2douXmXLCe5O3zg3GKIyvRi/hi58a/XyRxVI+3/yM0PYueQOZXPXQ9pxBislYkw+sF9b7C/RuMA==}
- engines: {node: '>= 0.6'}
+ backoff@2.5.0:
dependencies:
precond: 0.2.3
- dev: false
- /bail/1.0.5:
- resolution: {integrity: sha512-xFbRxM1tahm08yHBP16MMjVUAvDaBMD38zsM9EMAUN61omwLmKlOpB/Zku5QkjZ8TZ4vn53pj+t518cH0S03RQ==}
- dev: false
+ bail@1.0.5: {}
- /bail/2.0.2:
- resolution: {integrity: sha512-0xO6mYd7JB2YesxDKplafRpsiOzPt9V02ddPCLbY1xYGPOX24NTyN50qnUxgCPcSoYMhKpAuBTjQoRZCAkUDRw==}
- dev: true
+ bail@2.0.2: {}
- /balanced-match/1.0.2:
- resolution: {integrity: sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==}
+ balanced-match@1.0.2: {}
- /balanced-match/2.0.0:
- resolution: {integrity: sha512-1ugUSr8BHXRnK23KfuYS+gVMC3LB8QGH9W1iGtDPsNWoQbgtXSExkBu2aDR4epiGWZOjZsj6lDl/N/AqqTC3UA==}
- dev: true
+ balanced-match@2.0.0: {}
- /base-64/0.1.0:
- resolution: {integrity: sha512-Y5gU45svrR5tI2Vt/X9GPd3L0HNIKzGu202EjxrXMpuc2V2CiKgemAbUUsqYmZJvPtCXoUKjNZwBJzsNScUbXA==}
- dev: false
+ bare-events@2.5.0:
+ optional: true
- /base-64/1.0.0:
- resolution: {integrity: sha512-kwDPIFCGx0NZHog36dj+tHiwP4QMzsZ3AgMViUBKI0+V5n4U0ufTCUMhnQ04diaRI8EX/QcPfql7zlhZ7j4zgg==}
- dev: false
+ bare-fs@2.3.5:
+ dependencies:
+ bare-events: 2.5.0
+ bare-path: 2.1.3
+ bare-stream: 2.4.0
+ optional: true
- /base64-js/1.5.1:
- resolution: {integrity: sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==}
- dev: false
+ bare-os@2.4.4:
+ optional: true
- /basic-ftp/5.0.4:
- resolution: {integrity: sha512-8PzkB0arJFV4jJWSGOYR+OEic6aeKMu/osRhBULN6RY0ykby6LKhbmuQ5ublvaas5BOwboah5D87nrHyuh8PPA==}
- engines: {node: '>=10.0.0'}
- dev: false
+ bare-path@2.1.3:
+ dependencies:
+ bare-os: 2.4.4
+ optional: true
- /bcrypt-pbkdf/1.0.2:
- resolution: {integrity: sha512-qeFIXtP4MSoi6NLqO12WfqARWWuCKi2Rn/9hJLEmtB5yTNr9DqFWkJRCf2qShWzPeAMRnOgCrq0sg/KLv5ES9w==}
+ bare-stream@2.4.0:
+ dependencies:
+ streamx: 2.20.2
+ optional: true
+
+ base-64@0.1.0: {}
+
+ base-64@1.0.0: {}
+
+ base64-js@1.5.1: {}
+
+ basic-ftp@5.0.5: {}
+
+ bcrypt-pbkdf@1.0.2:
dependencies:
tweetnacl: 0.14.5
- /before-after-hook/2.2.3:
- resolution: {integrity: sha512-NzUnlZexiaH/46WDhANlyR2bXRopNg4F/zuSA3OpZnllCUgRaOF2znDioDWrmbNVsuZk6l9pMquQB38cfBZwkQ==}
+ before-after-hook@2.2.3: {}
- /big-integer/1.6.51:
- resolution: {integrity: sha512-GPEid2Y9QU1Exl1rpO9B2IPJGHPSupF5GnVIP0blYvNOMer2bTvSWs1jGOUg04hTmu67nmLsQ9TBo1puaotBHg==}
- engines: {node: '>=0.6'}
- dev: false
+ big-integer@1.6.52: {}
- /big.js/5.2.2:
- resolution: {integrity: sha512-vyL2OymJxmarO8gxMr0mhChsO9QGwhynfuu4+MHTAW6czfq9humCB7rKpUjDd9YUiDPU4mzpyupFSvOClAwbmQ==}
- dev: false
+ big.js@5.2.2: {}
- /big.js/6.2.1:
- resolution: {integrity: sha512-bCtHMwL9LeDIozFn+oNhhFoq+yQ3BNdnsLSASUxLciOb1vgvpHsIO1dsENiGMgbb4SkP5TrzWzRiLddn8ahVOQ==}
- dev: false
+ big.js@6.2.2: {}
- /bignumber.js/2.4.0:
- resolution: {integrity: sha512-uw4ra6Cv483Op/ebM0GBKKfxZlSmn6NgFRby5L3yGTlunLj53KQgndDlqy2WVFOwgvurocApYkSud0aO+mvrpQ==}
- dev: false
+ bignumber.js@2.4.0: {}
- /bignumber.js/9.1.2:
- resolution: {integrity: sha512-2/mKyZH9K85bzOEfhXDBFZTGd1CTs+5IHpeFQo9luiBG7hghdC851Pj2WAhb6E3R6b9tZj/XKhbg4fum+Kepug==}
- dev: false
+ bignumber.js@9.1.2: {}
- /binary-extensions/2.3.0:
- resolution: {integrity: sha512-Ceh+7ox5qe7LJuLHoY0feh3pHuUDHAcRUeyL2VYghZwfpkNIy/+8Ocg0a3UuSoYzavmylwuLWQOf3hl0jjMMIw==}
- engines: {node: '>=8'}
+ binary-extensions@2.3.0: {}
- /binascii/0.0.2:
- resolution: {integrity: sha512-rA2CrUl1+6yKrn+XgLs8Hdy18OER1UW146nM+ixzhQXDY+Bd3ySkyIJGwF2a4I45JwbvF1mDL/nWkqBwpOcdBA==}
- dev: false
+ binascii@0.0.2: {}
- /bindings/1.5.0:
- resolution: {integrity: sha512-p2q/t/mhvuOj/UeLlV6566GD/guowlr0hHxClI0W9m7MWYkL1F0hLo+0Aexs9HSPCtR1SXQ0TD3MMKrXZajbiQ==}
+ bindings@1.5.0:
dependencies:
file-uri-to-path: 1.0.0
- dev: false
- /bl/1.2.3:
- resolution: {integrity: sha512-pvcNpa0UU69UT341rO6AYy4FVAIkUHuZXRIWbq+zHnsVcRzDDjIAhGuuYoi0d//cwIwtt4pkpKycWEfjdV+vww==}
+ bl@1.2.3:
dependencies:
readable-stream: 2.3.8
safe-buffer: 5.2.1
- dev: false
- /bl/4.1.0:
- resolution: {integrity: sha512-1W07cM9gS6DcLperZfFSj+bWLtaPGSOHWhPiGzXmvVJbRLdG82sH/Kn8EtW1VqWVA54AKf2h5k5BbnIbwF3h6w==}
+ bl@4.1.0:
dependencies:
buffer: 5.7.1
inherits: 2.0.4
readable-stream: 3.6.2
- dev: false
- /bl/6.0.7:
- resolution: {integrity: sha512-9FNh0IvlWSU5C9BCDhw0IovmhuqevzBX1AME7BdFHNDMfOju4NmwRWoBrfz5Srs+JNBhxfjrPLxZSnDotgSs9A==}
+ bl@6.0.16:
dependencies:
+ '@types/readable-stream': 4.0.18
buffer: 6.0.3
inherits: 2.0.4
readable-stream: 4.5.2
- dev: false
- /bluebird/3.7.2:
- resolution: {integrity: sha512-XpNj6GDQzdfW+r2Wnn7xiSAd7TM3jzkxGXBGTtWKuSXv1xUV+azxAm8jdWZN06QTQk+2N2XB9jRDkvbmQmcRtg==}
- dev: false
+ bluebird@3.7.2: {}
- /bn.js/2.0.0:
- resolution: {integrity: sha512-NmOLApC80+n+P28y06yHgwGlOCkq/X4jRh5s590959FZXSrM+I/61h0xxuIaYsg0mD44mEAZYG/rnclWuRoz+A==}
- dev: false
+ bn.js@2.0.0: {}
- /bn.js/4.12.0:
- resolution: {integrity: sha512-c98Bf3tPniI+scsdk237ku1Dc3ujXQTSgyiPUDEOe7tRkhrqridvh8klBv0HCEso1OLOYcHuCv/cS6DNxKH+ZA==}
- dev: false
+ bn.js@4.12.1: {}
- /bn.js/5.2.1:
- resolution: {integrity: sha512-eXRvHzWyYPBuB4NBy0cmYQjGitUrtqwbvlzP3G6VFnNRbsZQIxQ10PbKKHt8gZ/HW/D/747aDl+QkDqg3KQLMQ==}
- dev: false
+ bn.js@5.2.1: {}
- /body-parser/1.20.2:
- resolution: {integrity: sha512-ml9pReCu3M61kGlqoTm2umSXTlRTuGTx0bfYj+uIUKKYycG5NtSbeetV3faSU6R7ajOPw0g/J1PvK4qNy7s5bA==}
- engines: {node: '>= 0.8', npm: 1.2.8000 || >= 1.4.16}
+ body-parser@1.20.3:
dependencies:
bytes: 3.1.2
content-type: 1.0.5
@@ -23396,29 +31123,20 @@ packages:
http-errors: 2.0.0
iconv-lite: 0.4.24
on-finished: 2.4.1
- qs: 6.11.0
+ qs: 6.13.0
raw-body: 2.5.2
type-is: 1.6.18
unpipe: 1.0.0
transitivePeerDependencies:
- supports-color
- dev: false
- /boolbase/1.0.0:
- resolution: {integrity: sha512-JZOSA7Mo9sNGB8+UjSgzdLtokWAky1zbztM3WRLCbZ70/3cTANmQmOdR7y2g+J0e2WXywy1yS468tY+IruqEww==}
- dev: false
+ boolbase@1.0.0: {}
- /bottleneck/2.19.5:
- resolution: {integrity: sha512-VHiNCbI1lKdl44tGrhNfU3lup0Tj/ZBMJB5/2ZbNXRCPuRCO7ed2mgcK4r17y+KB2EfuYuRaVlwNbAeaWGSpbw==}
- dev: false
+ bottleneck@2.19.5: {}
- /bowser/2.11.0:
- resolution: {integrity: sha512-AlcaJBi/pqqJBIQ8U9Mcpc9i8Aqxn88Skv5d+xBX006BY5u8N3mGLHa5Lgppa7L/HfwgwLgZ6NYs+Ag6uUmJRA==}
- dev: false
+ bowser@2.11.0: {}
- /boxen/5.1.2:
- resolution: {integrity: sha512-9gYgQKXx+1nP8mP7CzFyaUARhg7D3n1dF/FnErWmu9l6JvGpNUN278h0aSb+QjoiKSWG+iZ3uHrcqk0qrY9RQQ==}
- engines: {node: '>=10'}
+ boxen@5.1.2:
dependencies:
ansi-align: 3.0.1
camelcase: 6.3.0
@@ -23428,158 +31146,99 @@ packages:
type-fest: 0.20.2
widest-line: 3.1.0
wrap-ansi: 7.0.0
- dev: false
- /brace-expansion/1.1.11:
- resolution: {integrity: sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==}
+ brace-expansion@1.1.11:
dependencies:
balanced-match: 1.0.2
concat-map: 0.0.1
- /brace-expansion/2.0.1:
- resolution: {integrity: sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==}
+ brace-expansion@2.0.1:
dependencies:
balanced-match: 1.0.2
- /braces/3.0.3:
- resolution: {integrity: sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA==}
- engines: {node: '>=8'}
+ braces@3.0.3:
dependencies:
fill-range: 7.1.1
- /browser-request/0.3.3:
- resolution: {integrity: sha512-YyNI4qJJ+piQG6MMEuo7J3Bzaqssufx04zpEKYfSrl/1Op59HWali9zMtBpXnkmqMcOuWJPZvudrm9wISmnCbg==}
- engines: {'0': node}
- dev: false
+ browser-request@0.3.3: {}
- /browserslist/4.23.3:
- resolution: {integrity: sha512-btwCFJVjI4YWDNfau8RhZ+B1Q/VLoUITrm3RlP6y1tYGWIOa+InuYiRGXUBXo8nA1qKmHMyLB/iVQg5TT4eFoA==}
- engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7}
- hasBin: true
+ browserslist@4.24.2:
dependencies:
- caniuse-lite: 1.0.30001646
- electron-to-chromium: 1.5.4
+ caniuse-lite: 1.0.30001683
+ electron-to-chromium: 1.5.64
node-releases: 2.0.18
- update-browserslist-db: 1.1.0_browserslist@4.23.3
+ update-browserslist-db: 1.1.1(browserslist@4.24.2)
- /bs-logger/0.2.6:
- resolution: {integrity: sha512-pd8DCoxmbgc7hyPKOvxtqNcjYoOsABPQdcCUjGp3d42VR2CX1ORhk2A87oqqu5R1kk+76nsxZupkmyd+MVtCog==}
- engines: {node: '>= 6'}
+ bs-logger@0.2.6:
dependencies:
fast-json-stable-stringify: 2.1.0
- dev: true
- /bser/2.1.1:
- resolution: {integrity: sha512-gQxTNE/GAfIIrmHLUE3oJyp5FO6HRBfhjnw4/wMmA63ZGDJnWBmgY/lyQBpnDUkGmAhbSe39tx2d/iTOAfglwQ==}
+ bser@2.1.1:
dependencies:
node-int64: 0.4.0
- dev: true
- /bson/4.7.2:
- resolution: {integrity: sha512-Ry9wCtIZ5kGqkJoi6aD8KjxFZEx78guTQDnpXWiNthsxzrxAK/i8E6pCHAIZTbaEFWcOCvbecMukfK7XUvyLpQ==}
- engines: {node: '>=6.9.0'}
+ bson@4.7.2:
dependencies:
buffer: 5.7.1
- dev: false
-
- /btoa-lite/1.0.0:
- resolution: {integrity: sha512-gvW7InbIyF8AicrqWoptdW08pUxuhq8BEgowNajy9RhiE86fmGAGl+bLKo6oB8QP0CkqHLowfN0oJdKC/J6LbA==}
- dev: false
- /buffer-crc32/0.2.13:
- resolution: {integrity: sha512-VO9Ht/+p3SN7SKWqcrgEzjGbRSJYTx+Q1pTQC0wrWqHx0vpJraQ6GtHx8tvcg1rlK1byhU5gccxgOgj7B0TDkQ==}
- dev: false
+ btoa-lite@1.0.0: {}
- /buffer-equal-constant-time/1.0.1:
- resolution: {integrity: sha512-zRpUiDwd/xk6ADqPMATG8vc9VPrkck7T07OIx0gnjmJAnHnTVXNQG3vfvWNuiZIkwu9KrKdA1iJKfsfTVxE6NA==}
- dev: false
+ buffer-crc32@0.2.13: {}
- /buffer-from/1.1.2:
- resolution: {integrity: sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ==}
+ buffer-equal-constant-time@1.0.1: {}
- /buffer-writer/2.0.0:
- resolution: {integrity: sha512-a7ZpuTZU1TRtnwyCNW3I5dc0wWNC3VR9S++Ewyk2HHZdrO3CQJqSpd+95Us590V6AL7JqUAH2IwZ/398PmNFgw==}
- engines: {node: '>=4'}
- dev: false
+ buffer-from@1.1.2: {}
- /buffer/5.7.1:
- resolution: {integrity: sha512-EHcyIPBQ4BSGlvjB16k5KgAJ27CIsHY/2JBmCRReo48y9rQ3MaUzWX3KVlBa4U7MyX02HdVj0K7C3WaB3ju7FQ==}
+ buffer@5.7.1:
dependencies:
base64-js: 1.5.1
ieee754: 1.2.1
- dev: false
- /buffer/6.0.3:
- resolution: {integrity: sha512-FTiCpNxtwiZZHEZbcbTIcZjERVICn9yq/pDFkTl95/AxzD1naBctN7YO68riM/gLSDY7sdrMby8hofADYuuqOA==}
+ buffer@6.0.3:
dependencies:
base64-js: 1.5.1
ieee754: 1.2.1
- dev: false
- /build-url/1.3.3:
- resolution: {integrity: sha512-uSC8d+d4SlbXTu/9nBhwEKi33CE0KQgCvfy8QwyrrO5vCuXr9hN021ZBh8ip5vxPbMOrZiPwgqcupuhezxiP3g==}
- deprecated: This package is no longer maintained
- dev: false
+ build-url@1.3.3: {}
- /buildcheck/0.0.6:
- resolution: {integrity: sha512-8f9ZJCUXyT1M35Jx7MkBgmBMo3oHTTBIPLiY9xyL0pl3T5RwcPEY8cUHr5LBNfu/fk6c2T4DJZuVM/8ZZT2D2A==}
- engines: {node: '>=10.0.0'}
- dev: false
+ buildcheck@0.0.6:
optional: true
- /builtin-modules/1.1.1:
- resolution: {integrity: sha512-wxXCdllwGhI2kCC0MnvTGYTMvnVZTvqgypkiTI8Pa5tcz2i6VqsqwYGgqwXji+4RgCzms6EajE4IxiUH6HH8nQ==}
- engines: {node: '>=0.10.0'}
- dev: true
+ builtin-modules@1.1.1: {}
- /builtins/1.0.3:
- resolution: {integrity: sha512-uYBjakWipfaO/bXI7E8rq6kpwHRZK5cNYrUv2OzZSI/FvmdMyXJ2tG9dKcjEC5YHmHpUAwsargWIZNWdxb/bnQ==}
- dev: true
+ builtins@1.0.3: {}
- /bytes/3.1.2:
- resolution: {integrity: sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg==}
- engines: {node: '>= 0.8'}
- dev: false
+ busboy@1.6.0:
+ dependencies:
+ streamsearch: 1.1.0
- /cacheable-lookup/5.0.4:
- resolution: {integrity: sha512-2/kNscPhpcxrOigMZzbiWF7dz8ilhb/nIHU3EyZiXWXpeq/au8qJ8VhdftMkty3n7Gj6HIGalQG8oiBNB3AJgA==}
- engines: {node: '>=10.6.0'}
- dev: false
+ bytes@3.1.2: {}
- /cacheable-lookup/7.0.0:
- resolution: {integrity: sha512-+qJyx4xiKra8mZrcwhjMRMUhD5NR1R8esPkzIYxX96JiecFoxAXFuz/GpR3+ev4PE1WamHip78wV0vcmPQtp8w==}
- engines: {node: '>=14.16'}
- dev: false
+ cacheable-lookup@5.0.4: {}
- /cacheable-request/10.2.13:
- resolution: {integrity: sha512-3SD4rrMu1msNGEtNSt8Od6enwdo//U9s4ykmXfA2TD58kcLkCobtCDiby7kNyj7a/Q7lz/mAesAFI54rTdnvBA==}
- engines: {node: '>=14.16'}
+ cacheable-lookup@7.0.0: {}
+
+ cacheable-request@10.2.14:
dependencies:
- '@types/http-cache-semantics': 4.0.2
+ '@types/http-cache-semantics': 4.0.4
get-stream: 6.0.1
http-cache-semantics: 4.1.1
- keyv: 4.5.3
+ keyv: 4.5.4
mimic-response: 4.0.0
- normalize-url: 8.0.0
+ normalize-url: 8.0.1
responselike: 3.0.0
- dev: false
- /cacheable-request/10.2.14:
- resolution: {integrity: sha512-zkDT5WAF4hSSoUgyfg5tFIxz8XQK+25W/TLVojJTMKBaxevLBBtLxgqguAuVQB8PVW79FVjHcU+GJ9tVbDZ9mQ==}
- engines: {node: '>=14.16'}
+ cacheable-request@12.0.1:
dependencies:
- '@types/http-cache-semantics': 4.0.2
- get-stream: 6.0.1
+ '@types/http-cache-semantics': 4.0.4
+ get-stream: 9.0.1
http-cache-semantics: 4.1.1
- keyv: 4.5.3
+ keyv: 4.5.4
mimic-response: 4.0.0
- normalize-url: 8.0.0
+ normalize-url: 8.0.1
responselike: 3.0.0
- dev: false
- /cacheable-request/7.0.4:
- resolution: {integrity: sha512-v+p6ongsrp0yTGbJXjgxPow2+DL93DASP4kXCDKb8/bwRtt9OEF3whggkkDkGNzgcWy2XaF4a8nZglC7uElscg==}
- engines: {node: '>=8'}
+ cacheable-request@7.0.4:
dependencies:
clone-response: 1.0.3
get-stream: 5.2.0
@@ -23588,16 +31247,15 @@ packages:
lowercase-keys: 2.0.0
normalize-url: 6.1.0
responselike: 2.0.1
- dev: false
- /cachedir/2.4.0:
- resolution: {integrity: sha512-9EtFOZR8g22CL7BWjJ9BUx1+A/djkofnyW3aOXZORNW2kxoUpx2h+uN2cOqwPmFhnpVmxg+KW2OjOSgChTEvsQ==}
- engines: {node: '>=6'}
- dev: true
+ cacheable@1.8.4:
+ dependencies:
+ hookified: 1.5.0
+ keyv: 5.2.1
- /call-bind/1.0.7:
- resolution: {integrity: sha512-GHTSNSYICQ7scH7sZ+M2rFopRoLh8t2bLSW6BbgrtLsahOIB5iyAVJf9GjWK3cYTDaMj4XdBpM1cA6pIS0Kv2w==}
- engines: {node: '>= 0.4'}
+ cachedir@2.4.0: {}
+
+ call-bind@1.0.7:
dependencies:
es-define-property: 1.0.0
es-errors: 1.3.0
@@ -23605,183 +31263,108 @@ packages:
get-intrinsic: 1.2.4
set-function-length: 1.2.2
- /call-me-maybe/1.0.2:
- resolution: {integrity: sha512-HpX65o1Hnr9HH25ojC1YGs7HCQLq0GCOibSaWER0eNpgJ/Z1MZv2mTc7+xh6WOPxbRVcmgbv4hGU+uSQ/2xFZQ==}
- dev: false
+ call-me-maybe@1.0.2: {}
- /caller-callsite/2.0.0:
- resolution: {integrity: sha512-JuG3qI4QOftFsZyOn1qq87fq5grLIyk1JYd5lJmdA+fG7aQ9pA/i3JIJGcO3q0MrRcHlOt1U+ZeHW8Dq9axALQ==}
- engines: {node: '>=4'}
+ caller-callsite@2.0.0:
dependencies:
callsites: 2.0.0
- dev: true
- /caller-path/2.0.0:
- resolution: {integrity: sha512-MCL3sf6nCSXOwCTzvPKhN18TU7AHTvdtam8DAogxcrJ8Rjfbbg7Lgng64H9Iy+vUV6VGFClN/TyxBkAebLRR4A==}
- engines: {node: '>=4'}
+ caller-path@2.0.0:
dependencies:
caller-callsite: 2.0.0
- dev: true
-
- /callsites/2.0.0:
- resolution: {integrity: sha512-ksWePWBloaWPxJYQ8TL0JHvtci6G5QTKwQ95RcWAa/lzoAKuAOflGdAK92hpHXjkwb8zLxoLNUoNYZgVsaJzvQ==}
- engines: {node: '>=4'}
- dev: true
- /callsites/3.1.0:
- resolution: {integrity: sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==}
- engines: {node: '>=6'}
- dev: true
+ callsites@2.0.0: {}
- /camelcase-keys/7.0.2:
- resolution: {integrity: sha512-Rjs1H+A9R+Ig+4E/9oyB66UC5Mj9Xq3N//vcLf2WzgdTi/3gUu3Z9KoqmlrEG4VuuLK8wJHofxzdQXz/knhiYg==}
- engines: {node: '>=12'}
- dependencies:
- camelcase: 6.3.0
- map-obj: 4.3.0
- quick-lru: 5.1.1
- type-fest: 1.4.0
- dev: true
+ callsites@3.1.0: {}
- /camelcase-keys/9.1.3:
- resolution: {integrity: sha512-Rircqi9ch8AnZscQcsA1C47NFdaO3wukpmIRzYcDOrmvgt78hM/sj5pZhZNec2NM12uk5vTwRHZ4anGcrC4ZTg==}
- engines: {node: '>=16'}
+ camelcase-keys@9.1.3:
dependencies:
camelcase: 8.0.0
map-obj: 5.0.0
quick-lru: 6.1.2
- type-fest: 4.15.0
- dev: false
+ type-fest: 4.27.0
- /camelcase/5.3.1:
- resolution: {integrity: sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==}
- engines: {node: '>=6'}
+ camelcase@5.3.1: {}
- /camelcase/6.3.0:
- resolution: {integrity: sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA==}
- engines: {node: '>=10'}
+ camelcase@6.3.0: {}
- /camelcase/8.0.0:
- resolution: {integrity: sha512-8WB3Jcas3swSvjIeA2yvCJ+Miyz5l1ZmB6HFb9R1317dt9LCQoswg/BGrmAmkWVEszSrrg4RwmO46qIm2OEnSA==}
- engines: {node: '>=16'}
- dev: false
+ camelcase@8.0.0: {}
- /caniuse-lite/1.0.30001646:
- resolution: {integrity: sha512-dRg00gudiBDDTmUhClSdv3hqRfpbOnU28IpI1T6PBTLWa+kOj0681C8uML3PifYfREuBrVjDGhL3adYpBT6spw==}
+ caniuse-lite@1.0.30001683: {}
- /capture-stack-trace/1.0.2:
- resolution: {integrity: sha512-X/WM2UQs6VMHUtjUDnZTRI+i1crWteJySFzr9UpGoQa4WQffXVTTXuekjl7TjZRlcF2XfjgITT0HxZ9RnxeT0w==}
- engines: {node: '>=0.10.0'}
- dev: false
+ capture-stack-trace@1.0.2: {}
- /cardinal/0.4.4:
- resolution: {integrity: sha512-3MxV0o9wOpQcobrcSrRpaSxlYkohCcZu0ytOjJUww/Yo/223q4Ecloo7odT+M0SI5kPgb1JhvSaF4EEuVXOLAQ==}
- hasBin: true
+ cardinal@0.4.4:
dependencies:
ansicolors: 0.2.1
redeyed: 0.4.4
- dev: false
- /cardinal/2.1.1:
- resolution: {integrity: sha512-JSr5eOgoEymtYHBjNWyjrMqet9Am2miJhlfKNdqLp6zoeAh0KN5dRAcxlecj5mAJrmQomgiOBj35xHLrFjqBpw==}
- hasBin: true
+ cardinal@2.1.1:
dependencies:
ansicolors: 0.3.2
redeyed: 2.1.1
- dev: false
- /caseless/0.12.0:
- resolution: {integrity: sha512-4tYFyifaFfGacoiObjJegolkwSU4xQNGbVgUiNYVUxbQ2x2lUsFvY4hVgVzGiIe6WLOPqycWXA40l+PWsxthUw==}
+ caseless@0.12.0: {}
- /catharsis/0.9.0:
- resolution: {integrity: sha512-prMTQVpcns/tzFgFVkVp6ak6RykZyWb3gu8ckUpd6YkTlacOd3DXGJjIpD4Q6zJirizvaiAjSSHlOsA+6sNh2A==}
- engines: {node: '>= 10'}
+ catharsis@0.9.0:
dependencies:
lodash: 4.17.21
- dev: false
- /ccount/1.1.0:
- resolution: {integrity: sha512-vlNK021QdI7PNeiUh/lKkC/mNHHfV0m/Ad5JoI0TYtlBnJAslM/JIkm/tGC88bkLIwO6OQ5uV6ztS6kVAtCDlg==}
- dev: false
+ ccount@1.1.0: {}
- /chalk/1.1.3:
- resolution: {integrity: sha512-U3lRVLMSlsCfjqYPbLyVv11M9CPW4I728d6TCKMAOJueEeB9/8o+eSsMnxPJD+Q+K909sdESg7C+tIkoH6on1A==}
- engines: {node: '>=0.10.0'}
+ ccount@2.0.1: {}
+
+ chalk@1.1.3:
dependencies:
ansi-styles: 2.2.1
escape-string-regexp: 1.0.5
has-ansi: 2.0.0
strip-ansi: 3.0.1
supports-color: 2.0.0
- dev: true
- /chalk/2.4.2:
- resolution: {integrity: sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==}
- engines: {node: '>=4'}
+ chalk@2.4.2:
dependencies:
ansi-styles: 3.2.1
escape-string-regexp: 1.0.5
supports-color: 5.5.0
- /chalk/4.1.2:
- resolution: {integrity: sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==}
- engines: {node: '>=10'}
+ chalk@4.1.2:
dependencies:
ansi-styles: 4.3.0
supports-color: 7.2.0
- /chalk/5.3.0:
- resolution: {integrity: sha512-dLitG79d+GV1Nb/VYcCDFivJeK1hiukt9QjRNVOsUtTy1rR1YJsmpGGTZ3qJos+uw7WmWF4wUwBd9jxjocFC2w==}
- engines: {node: ^12.17.0 || ^14.13 || >=16.0.0}
- dev: false
+ chalk@5.3.0: {}
- /char-regex/1.0.2:
- resolution: {integrity: sha512-kWWXztvZ5SBQV+eRgKFeh8q5sLuZY2+8WUIzlxWVTg+oGwY14qylx1KbKzHd8P6ZYkAg0xyIDU9JMHhyJMZ1jw==}
- engines: {node: '>=10'}
- dev: true
+ char-regex@1.0.2: {}
- /character-entities-legacy/1.1.4:
- resolution: {integrity: sha512-3Xnr+7ZFS1uxeiUDvV02wQ+QDbc55o97tIV5zHScSPJpcLm/r0DFPcoY3tYRp+VZukxuMeKgXYmsXQHO05zQeA==}
- dev: false
+ character-entities-html4@2.1.0: {}
- /character-entities/1.2.4:
- resolution: {integrity: sha512-iBMyeEHxfVnIakwOuDXpVkc54HijNgCyQB2w0VfGQThle6NXn50zU6V/u+LDhxHcDUPojn6Kpga3PTAD8W1bQw==}
- dev: false
+ character-entities-legacy@1.1.4: {}
- /character-entities/2.0.2:
- resolution: {integrity: sha512-shx7oQ0Awen/BRIdkjkvz54PnEEI/EjwXDSIZp86/KKdbafHh1Df/RYGBhn4hbe2+uKC9FnT5UCEdyPz3ai9hQ==}
- dev: true
+ character-entities-legacy@3.0.0: {}
- /character-reference-invalid/1.1.4:
- resolution: {integrity: sha512-mKKUkUbhPpQlCOfIuZkvSEgktjPFIsZKRRbC6KWVEMvlzblj3i3asQv5ODsrwt0N3pHAEvjP8KTQPHkp0+6jOg==}
- dev: false
+ character-entities@1.2.4: {}
- /chardet/0.7.0:
- resolution: {integrity: sha512-mT8iDcrh03qDGRRmoA2hmBJnxpllMR+0/0qlzjqZES6NdiWDcZkCNAk4rPFZ9Q85r27unkiNNg8ZOiwZXBHwcA==}
- dev: false
+ character-entities@2.0.2: {}
- /charenc/0.0.2:
- resolution: {integrity: sha512-yrLQ/yVUFXkzg7EDQsPieE/53+0RlaWTs+wBrvW36cyilJ2SaDWfl4Yj7MtLTXleV9uEKefbAGUPv2/iWSooRA==}
- dev: false
+ character-reference-invalid@1.1.4: {}
- /chargebee/2.28.0:
- resolution: {integrity: sha512-WMohnZGvuwDyylrL5p7DtQhbQMVgJgCKMtRZcslzmV8VSCVGWSR41QufuQWpvfNTaCKhdLyIJ74nVa6XViPKbg==}
- engines: {node: '>=0.6.0'}
+ character-reference-invalid@2.0.1: {}
+
+ chardet@0.7.0: {}
+
+ charenc@0.0.2: {}
+
+ chargebee@2.44.0:
dependencies:
q: 1.5.1
safer-buffer: 2.1.2
- dev: false
- /charm/1.0.2:
- resolution: {integrity: sha512-wqW3VdPnlSWT4eRiYX+hcs+C6ViBPUWk1qTCd+37qw9kEm/a5n2qcyQDMBWvSYKN/ctqZzeXNQaeBjOetJJUkw==}
+ charm@1.0.2:
dependencies:
inherits: 2.0.4
- dev: true
- /chokidar/3.6.0:
- resolution: {integrity: sha512-7VT13fmjotKpGipCW9JEQAusEPE+Ei8nl6/g4FBAmIm0GOOLMua9NDDo/DWp0ZAxCr3cPq5ZpBqmPAQgDda2Pw==}
- engines: {node: '>= 8.10.0'}
- requiresBuild: true
+ chokidar@3.6.0:
dependencies:
anymatch: 3.1.3
braces: 3.0.3
@@ -23793,162 +31376,100 @@ packages:
optionalDependencies:
fsevents: 2.3.3
- /chownr/1.1.4:
- resolution: {integrity: sha512-jJ0bqzaylmJtVnNgzTeSOs8DPavpbYgEr/b0YL8/2GO3xJEhInFmhKMUnEJQjZumK7KXGFhUy89PrsJWlakBVg==}
- dev: false
+ chownr@1.1.4: {}
- /chownr/2.0.0:
- resolution: {integrity: sha512-bIomtDF5KGpdogkLd9VspvFzk9KfpyyGlS8YFVZl7TGPBHL5snIOnxeshwVgPteQ9b4Eydl+pVbIyE1DcvCWgQ==}
- engines: {node: '>=10'}
- dev: true
+ chownr@2.0.0: {}
- /chromium-bidi/0.4.5_7yd6ibrwer4fxzjxd6md3toxiy:
- resolution: {integrity: sha512-rkav9YzRfAshSTG3wNXF7P7yNiI29QAo1xBXElPoCoSQR5n20q3cOyVhDv6S7+GlF/CJ/emUxlQiR0xOPurkGg==}
- peerDependencies:
- devtools-protocol: '*'
+ chromium-bidi@0.4.7(devtools-protocol@0.0.1107588):
dependencies:
devtools-protocol: 0.0.1107588
mitt: 3.0.0
- dev: false
- /chromium-bidi/0.5.8_ncn5kdxe6rasr54dhc2fl42uoa:
- resolution: {integrity: sha512-blqh+1cEQbHBKmok3rVJkBlBxt9beKBgOsxbFgs7UJcoVbbeZ+K7+6liAsjgpc8l1Xd55cQUy14fXZdGSb4zIw==}
- peerDependencies:
- devtools-protocol: '*'
+ chromium-bidi@0.5.8(devtools-protocol@0.0.1232444):
dependencies:
devtools-protocol: 0.0.1232444
mitt: 3.0.1
urlpattern-polyfill: 10.0.0
- dev: false
- /ci-info/2.0.0:
- resolution: {integrity: sha512-5tK7EtrZ0N+OLFMthtqOj4fI2Jeb88C4CAZPu25LDVUgXJ0A3Js4PMGqrn0JU1W0Mh1/Z8wZzYPxqUrXeBboCQ==}
- dev: true
+ ci-info@2.0.0: {}
- /ci-info/3.8.0:
- resolution: {integrity: sha512-eXTggHWSooYhq49F2opQhuHWgzucfF2YgODK4e1566GQs5BIfP30B0oenwBJHfWxAs2fyPB1s7Mg949zLf61Yw==}
- engines: {node: '>=8'}
- dev: true
+ ci-info@3.9.0: {}
- /ci-info/3.9.0:
- resolution: {integrity: sha512-NIxF55hv4nSqQswkAeiOi1r83xy8JldOFDTWiug55KBu9Jnblncd2U6ViHmYgHf01TPZS77NJBhBMKdWj9HQMQ==}
- engines: {node: '>=8'}
- dev: true
+ ci-info@4.1.0: {}
- /cipher-base/1.0.4:
- resolution: {integrity: sha512-Kkht5ye6ZGmwv40uUDZztayT2ThLQGfnj/T71N/XzeZeo3nf8foyW7zGTsPYkEya3m5f3cAypH+qe7YOrM1U2Q==}
+ cipher-base@1.0.5:
dependencies:
inherits: 2.0.4
safe-buffer: 5.2.1
- dev: false
- /cjs-module-lexer/1.3.1:
- resolution: {integrity: sha512-a3KdPAANPbNE4ZUv9h6LckSl9zLsYOP4MBmhIPkRaeyybt+r4UghLvq+xw/YwUcC1gqylCkL4rdVs3Lwupjm4Q==}
- dev: true
+ cjs-module-lexer@1.4.1: {}
- /clean-deep/3.4.0:
- resolution: {integrity: sha512-Lo78NV5ItJL/jl+B5w0BycAisaieJGXK1qYi/9m4SjR8zbqmrUtO7Yhro40wEShGmmxs/aJLI/A+jNhdkXK8mw==}
- engines: {node: '>=4'}
+ clean-deep@3.4.0:
dependencies:
lodash.isempty: 4.4.0
lodash.isplainobject: 4.0.6
lodash.transform: 4.6.0
- dev: false
- /clean-stack/2.2.0:
- resolution: {integrity: sha512-4diC9HaTE+KRAMWhDhrGOECgWZxoevMc5TlkObMqNSsVU62PYzXZ/SMTjzyGAFF1YusgxGcSWTEXBhp0CPwQ1A==}
- engines: {node: '>=6'}
+ clean-stack@2.2.0: {}
- /cli-boxes/2.2.1:
- resolution: {integrity: sha512-y4coMcylgSCdVinjiDBuR8PCC2bLjyGTwEmPb9NHR/QaNU6EUOXcTY/s6VjGMD6ENSEaeQYHCY0GNGS5jfMwPw==}
- engines: {node: '>=6'}
- dev: false
+ cli-boxes@2.2.1: {}
- /cli-cursor/3.1.0:
- resolution: {integrity: sha512-I/zHAwsKf9FqGoXM4WWRACob9+SNukZTd94DWF57E4toouRulbCxcUh6RKUEOQlYTHJnzkPMySvPNaaSLNfLZw==}
- engines: {node: '>=8'}
+ cli-cursor@3.1.0:
dependencies:
restore-cursor: 3.1.0
- /cli-progress/3.12.0:
- resolution: {integrity: sha512-tRkV3HJ1ASwm19THiiLIXLO7Im7wlTuKnvkYaTkyoAPefqjNg7W7DHKUlGRxy9vxDvbyCYQkQozvptuMkGCg8A==}
- engines: {node: '>=4'}
+ cli-progress@3.12.0:
dependencies:
string-width: 4.2.3
- dev: true
- /cli-spinners/2.9.1:
- resolution: {integrity: sha512-jHgecW0pxkonBJdrKsqxgRX9AcG+u/5k0Q7WPDfi8AogLAdwxEkyYYNWwZ5GvVFoFx2uiY1eNcSK00fh+1+FyQ==}
- engines: {node: '>=6'}
- dev: false
+ cli-spinners@2.9.2: {}
- /cli-truncate/2.1.0:
- resolution: {integrity: sha512-n8fOixwDD6b/ObinzTrp1ZKFzbgvKZvuz/TvejnLn1aQfC6r52XEx85FmuC+3HI+JM7coBRXUvNqEU2PHVrHpg==}
- engines: {node: '>=8'}
+ cli-truncate@2.1.0:
dependencies:
slice-ansi: 3.0.0
string-width: 4.2.3
- dev: true
- /cli-truncate/3.1.0:
- resolution: {integrity: sha512-wfOBkjXteqSnI59oPcJkcPl/ZmwvMMOj340qUIY1SKZCv0B9Cf4D4fAucRkIKQmsIuYK3x1rrgU7MeGRruiuiA==}
- engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0}
+ cli-truncate@3.1.0:
dependencies:
slice-ansi: 5.0.0
string-width: 5.1.2
- dev: true
- /cli-width/3.0.0:
- resolution: {integrity: sha512-FxqpkPPwu1HjuN93Omfm4h8uIanXofW0RxVEW3k5RKx+mJJYSthzNhp32Kzxxy3YAEZ/Dc/EWN1vZRY0+kOhbw==}
- engines: {node: '>= 10'}
- dev: false
+ cli-width@3.0.0: {}
- /cliui/6.0.0:
- resolution: {integrity: sha512-t6wbgtoCXvAzst7QgXxJYqPt0usEfbgQdftEPbLL/cvv6HPE5VgvqCuAIDR0NgU52ds6rFwqrgakNLrHEjCbrQ==}
+ client-only@0.0.1: {}
+
+ cliui@6.0.0:
dependencies:
string-width: 4.2.3
strip-ansi: 6.0.1
wrap-ansi: 6.2.0
- /cliui/7.0.4:
- resolution: {integrity: sha512-OcRE68cOsVMXp1Yvonl/fzkQOyjLSu/8bhPDfQt0e0/Eb283TKP20Fs2MqoPsr9SwA595rRCA+QMzYc9nBP+JQ==}
+ cliui@7.0.4:
dependencies:
string-width: 4.2.3
strip-ansi: 6.0.1
wrap-ansi: 7.0.0
- dev: false
optional: true
- /cliui/8.0.1:
- resolution: {integrity: sha512-BSeNnyus75C4//NQ9gQt1/csTXyo/8Sb+afLAkzAptFuMsod9HFokGNudZpi/oQV73hnVK+sR+5PVRMd+Dr7YQ==}
- engines: {node: '>=12'}
+ cliui@8.0.1:
dependencies:
string-width: 4.2.3
strip-ansi: 6.0.1
wrap-ansi: 7.0.0
- /clone-deep/4.0.1:
- resolution: {integrity: sha512-neHB9xuzh/wk0dIHweyAXv2aPGZIVk3pLMe+/RNzINf17fe0OG96QroktYAUm7SM1PBnzTabaLboqqxDyMU+SQ==}
- engines: {node: '>=6'}
+ clone-deep@4.0.1:
dependencies:
is-plain-object: 2.0.4
kind-of: 6.0.3
shallow-clone: 3.0.1
- dev: false
- /clone-response/1.0.3:
- resolution: {integrity: sha512-ROoL94jJH2dUVML2Y/5PEDNaSHgeOdSDicUyS7izcF63G6sTc/FTjLub4b8Il9S8S0beOfYt0TaA5qvFK+w0wA==}
+ clone-response@1.0.3:
dependencies:
mimic-response: 1.0.1
- dev: false
- /clone/1.0.4:
- resolution: {integrity: sha512-JQHZ2QMW6l3aH/j6xCqQThY/9OH4D/9ls34cgkUBiEeocRTU04tHfKPBsUK1PqZCUQM7GiA0IIXJSuXHI64Kbg==}
- engines: {node: '>=0.8'}
- dev: false
+ clone@1.0.4: {}
- /cloudflare/2.9.1:
- resolution: {integrity: sha512-x8yXPPoloy7xQ9GCKnsvQ3U1nwvcLndA2B3nxwSjIWxgLTUJOyakeEDsrqxZO8Dr6FkGdaXwy554fQVMpOabiw==}
+ cloudflare@2.9.1:
dependencies:
autocreate: 1.2.0
es-class: 2.1.1
@@ -23959,61 +31480,40 @@ packages:
url-pattern: 1.0.3
transitivePeerDependencies:
- supports-color
- dev: false
- /cloudinary-core/2.13.0_lodash@4.17.21:
- resolution: {integrity: sha512-Nt0Q5I2FtenmJghtC4YZ3MZZbGg1wLm84SsxcuVwZ83OyJqG9CNIGp86CiI6iDv3QobaqBUpOT7vg+HqY5HxEA==}
- peerDependencies:
- lodash: '>=4.0'
+ cloudinary-core@2.13.1(lodash@4.17.21):
dependencies:
lodash: 4.17.21
- dev: false
- /cloudinary/1.41.0:
- resolution: {integrity: sha512-qFf2McjvILJITePf4VF1PrY/8c2zy+/q5FVV6V3VWrP/gpIZsusPqXL4QZ6ZKXibPRukzMYqsQEhaSQgJHKKow==}
- engines: {node: '>=0.6'}
+ cloudinary@1.41.3:
dependencies:
- cloudinary-core: 2.13.0_lodash@4.17.21
- core-js: 3.33.0
+ cloudinary-core: 2.13.1(lodash@4.17.21)
+ core-js: 3.39.0
lodash: 4.17.21
q: 1.5.1
- dev: false
- /clubhouse-lib/0.12.0:
- resolution: {integrity: sha512-+f7v8D2qqKxezdhTCvPtiov/1BYuTkyR2LIe3yEJPnecwqMtU8kjo0mcid7eRM2YSwwoHH/sJvzygE5TNDD5RA==}
- deprecated: Deprecated in favor of @shortcut/client
+ clubhouse-lib@0.12.0:
dependencies:
cross-fetch: 3.1.8
query-string: 6.14.1
universal-url: 2.0.0
transitivePeerDependencies:
- encoding
- dev: false
- /co/4.6.0:
- resolution: {integrity: sha512-QVb0dM5HvG+uaxitm8wONl7jltx8dqhfU33DcqtOZcLSVIKSDDLDi7+0LbAKiyI8hD9u42m2YxXSkMGWThaecQ==}
- engines: {iojs: '>= 1.0.0', node: '>= 0.12.0'}
- dev: true
+ co@4.6.0: {}
- /code-error-fragment/0.0.230:
- resolution: {integrity: sha512-cadkfKp6932H8UkhzE/gcUqhRMNf8jHzkAN7+5Myabswaghu4xABTgPHDCjW+dBAJxj/SpkTYokpzDqY4pCzQw==}
- engines: {node: '>= 4'}
- dev: false
+ code-error-fragment@0.0.230: {}
- /code-point-at/1.1.0:
- resolution: {integrity: sha512-RpAVKQA5T63xEj6/giIbUEtZwJ4UFIc3ZtvEkiaUERylqe8xb5IvqcgOurZLahv93CLKfxcw5YI+DZcUBRyLXA==}
- engines: {node: '>=0.10.0'}
- dev: true
+ code-point-at@1.1.0:
optional: true
- /cohere-ai/7.10.6_dseaa2p5u2yk67qiepewcq3hkq:
- resolution: {integrity: sha512-J9y5wenl6IMqQUjklseocgusXcym0wnmuSoEdWyaNEQSYrNsHqWrpjeOYbQZ3A8/5edpPkR5Qsdwcc4FOJ5DOA==}
+ cohere-ai@7.14.0(@aws-sdk/client-sso-oidc@3.696.0(@aws-sdk/client-sts@3.696.0)):
dependencies:
- '@aws-sdk/client-sagemaker': 3.602.0
- '@aws-sdk/credential-providers': 3.600.0_dseaa2p5u2yk67qiepewcq3hkq
+ '@aws-sdk/client-sagemaker': 3.696.0
+ '@aws-sdk/credential-providers': 3.696.0(@aws-sdk/client-sso-oidc@3.696.0(@aws-sdk/client-sts@3.696.0))
'@aws-sdk/protocol-http': 3.374.0
'@aws-sdk/signature-v4': 3.374.0
- form-data: 4.0.0
+ form-data: 4.0.1
form-data-encoder: 4.0.2
formdata-node: 6.0.3
js-base64: 3.7.2
@@ -24025,73 +31525,55 @@ packages:
- '@aws-sdk/client-sso-oidc'
- aws-crt
- encoding
- dev: false
- /collect-v8-coverage/1.0.2:
- resolution: {integrity: sha512-lHl4d5/ONEbLlJvaJNtsF/Lz+WvB07u2ycqTYbdrq7UypDXailES4valYb2eWiJFxZlVmpGekfqoxQhzyFdT4Q==}
- dev: true
+ collect-v8-coverage@1.0.2: {}
- /color-2-name/1.4.4:
- resolution: {integrity: sha512-CSF+PANU5YSZYviiU88GJBeJADD4g9mydxLRMYtMEqVxhcLyl72b6PkMQnvomZyUZZLbPhfXs42QZcR0We4JOA==}
- engines: {node: '>=14.0.0', npm: '>=6.0.0'}
- dev: false
+ color-2-name@1.4.4: {}
- /color-convert/1.9.3:
- resolution: {integrity: sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==}
+ color-convert@1.9.3:
dependencies:
color-name: 1.1.3
- /color-convert/2.0.1:
- resolution: {integrity: sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==}
- engines: {node: '>=7.0.0'}
+ color-convert@2.0.1:
dependencies:
color-name: 1.1.4
- /color-name/1.1.3:
- resolution: {integrity: sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==}
+ color-name@1.1.3: {}
- /color-name/1.1.4:
- resolution: {integrity: sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==}
+ color-name@1.1.4: {}
- /color-string/1.9.1:
- resolution: {integrity: sha512-shrVawQFojnZv6xM40anx4CkoDP+fZsw/ZerEMsW/pyzsRbElpsL/DBVW7q3ExxwusdNXI3lXpuhEZkzs8p5Eg==}
+ color-string@1.9.1:
dependencies:
color-name: 1.1.4
simple-swizzle: 0.2.2
- dev: false
- /color/3.2.1:
- resolution: {integrity: sha512-aBl7dZI9ENN6fUGC7mWpMTPNHmWUSNan9tuWN6ahh5ZLNk9baLJOnSMlrQkHcrfFgz2/RigjUVAjdx36VcemKA==}
+ color@3.2.1:
dependencies:
color-convert: 1.9.3
color-string: 1.9.1
- dev: false
- /colord/2.9.3:
- resolution: {integrity: sha512-jeC1axXpnb0/2nn/Y1LPuLdgXBLH7aDcHu4KEKfqw3CUhX7ZpfBSlPKyqXE6btIgEzfWtrX3/tyBCaCvXvMkOw==}
- dev: true
+ color@4.2.3:
+ dependencies:
+ color-convert: 2.0.1
+ color-string: 1.9.1
+ optional: true
- /colorette/2.0.20:
- resolution: {integrity: sha512-IfEDxwoWIjkeXL1eXcDiow4UbKjhLdq6/EuSVR9GMN7KVH3r9gQ83e73hsz1Nd1T3ijd5xv1wcWRYO+D6kCI2w==}
- dev: true
+ colord@2.9.3: {}
- /colorspace/1.1.4:
- resolution: {integrity: sha512-BgvKJiuVu1igBUF2kEjRCZXol6wiiGbY5ipL/oVPwm0BL9sIpMIzM8IK7vwuxIIzOXMV3Ey5w+vxhm0rR/TN8w==}
+ colorette@2.0.20: {}
+
+ colorspace@1.1.4:
dependencies:
color: 3.2.1
text-hex: 1.0.0
- dev: false
- /columns-graph-model/1.1.4:
- resolution: {integrity: sha512-44pHExxpELWGa3ekgiI/lX8EWUy4IDgcSN/BQlHyd1hgW++lBx1YkiVXIDcQPtQd8uakkDAk+BcwdLliDC5CQg==}
+ columns-graph-model@1.1.4:
dependencies:
date-fns: 3.6.0
- dev: false
- /columns-sdk/0.0.6:
- resolution: {integrity: sha512-yaOcRgaV+XdIarxDOvpzUErxvvzbAfxiM4zQrrGvzCRMxdBBIg6CYThkcPxhl0BdCYwDumL4GQFrkefAMk38cg==}
+ columns-sdk@0.0.6:
dependencies:
- axios: 1.7.7
+ axios: 1.7.7(debug@3.2.7)
columns-graph-model: 1.1.4
nebula-js-lib: 0.3.2
pako: 2.1.0
@@ -24099,149 +31581,95 @@ packages:
transitivePeerDependencies:
- debug
- supports-color
- dev: false
- /combined-stream/1.0.8:
- resolution: {integrity: sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==}
- engines: {node: '>= 0.8'}
+ combined-stream@1.0.8:
dependencies:
delayed-stream: 1.0.0
- /command-exists/1.2.9:
- resolution: {integrity: sha512-LTQ/SGc+s0Xc0Fu5WaKnR0YiygZkm9eKFvyS+fRsU7/ZWFF8ykFM6Pc9aCVf1+xasOOZpO3BAVgVrKvsqKHV7w==}
- dev: true
+ comma-separated-tokens@2.0.3: {}
- /command-line-args/5.2.1:
- resolution: {integrity: sha512-H4UfQhZyakIjC74I9d34fGYDwk3XpSr17QhEd0Q3I9Xq1CETHo4Hcuo87WyWHpAF1aSLjLRf5lD9ZGX2qStUvg==}
- engines: {node: '>=4.0.0'}
+ command-exists@1.2.9: {}
+
+ command-line-args@5.2.1:
dependencies:
array-back: 3.1.0
find-replace: 3.0.0
lodash.camelcase: 4.3.0
typical: 4.0.0
- dev: true
- /command-line-usage/6.1.3:
- resolution: {integrity: sha512-sH5ZSPr+7UStsloltmDh7Ce5fb8XPlHyoPzTpyyMuYCtervL65+ubVZ6Q61cFtFl62UyJlc8/JwERRbAFPUqgw==}
- engines: {node: '>=8.0.0'}
+ command-line-usage@6.1.3:
dependencies:
array-back: 4.0.2
chalk: 2.4.2
table-layout: 1.0.2
typical: 5.2.0
- dev: true
-
- /commander/11.0.0:
- resolution: {integrity: sha512-9HMlXtt/BNoYr8ooyjjNRdIilOTkVJXB+GhxMTtOKwk0R4j4lS4NpjuqmRxroBfnfTSHQIHQB7wryHhXarNjmQ==}
- engines: {node: '>=16'}
- dev: false
- /commander/12.1.0:
- resolution: {integrity: sha512-Vw8qHK3bZM9y/P10u3Vib8o/DdkvA2OtPtZvD871QKjy74Wj1WSKFILMPRPSdUSx5RFK1arlJzEtA4PkFgnbuA==}
- engines: {node: '>=18'}
- dev: false
+ commander@11.1.0: {}
- /commander/2.20.3:
- resolution: {integrity: sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==}
+ commander@12.1.0: {}
- /commander/4.1.1:
- resolution: {integrity: sha512-NOKm8xhkzAjzFx8B2v5OAHT+u5pRQc2UCa2Vq9jYL/31o2wi9mxBA7LIFs3sV5VSC49z6pEhfbMULvShKj26WA==}
- engines: {node: '>= 6'}
- dev: false
+ commander@2.20.3: {}
- /commander/6.2.1:
- resolution: {integrity: sha512-U7VdrJFnJgo4xjrHpTzu0yrHPGImdsmD95ZlgYSEajAn2JKzDhDTPG9kBTefmObL2w/ngeZnilk+OV9CG3d7UA==}
- engines: {node: '>= 6'}
- dev: false
+ commander@6.2.1: {}
- /commander/9.5.0:
- resolution: {integrity: sha512-KRs7WVDKg86PWiuAqhDrAQnTXZKraVcCc6vFdL14qrZ/DcWwuRo7VoiYXalXO7S5GKpqYiVEwCbgFDfxNHKJBQ==}
- engines: {node: ^12.20.0 || >=14}
+ commander@9.5.0: {}
- /comment-patterns/0.12.2:
- resolution: {integrity: sha512-yA1FeubMSK0MXzapPm1uNdxyGk0mTAn5qrsVS6uQUSDOpUgWVLCqsgZfA/lhRx6TCLr1MvxeRqXOb1peWXWg3Q==}
+ comment-patterns@0.12.2:
dependencies:
lodash: 4.17.21
- dev: false
- /common-path-prefix/2.0.0:
- resolution: {integrity: sha512-Lb9qbwwyQdRDmyib0qur7BC9/GHIbviTaQebayFsGC/n77AwFhZINCcJkQx2qVv9LJsA8F5ex65F2qrOfWGUyw==}
- dev: false
+ common-path-prefix@2.0.0: {}
- /common-path-prefix/3.0.0:
- resolution: {integrity: sha512-QE33hToZseCH3jS0qN96O/bSh3kaw/h+Tq7ngyY9eWDUnTlTNUyqfqvCXioLe5Na5jFsL78ra/wuBU4iuEgd4w==}
- dev: true
+ common-path-prefix@3.0.0: {}
- /commondir/1.0.1:
- resolution: {integrity: sha512-W9pAhw0ja1Edb5GVdIF1mjZw/ASI0AlShXM83UUGe2DVr5TdAPEA1OA8m/g8zWp9x6On7gqufY+FatDbC3MDQg==}
- dev: false
+ commondir@1.0.1: {}
- /compare-versions/6.1.1:
- resolution: {integrity: sha512-4hm4VPpIecmlg59CHXnRDnqGplJFrbLG4aFEl5vl6cK1u76ws3LLvX7ikFnTDl5vo39sjWD6AaDPYodJp/NNHg==}
- dev: false
+ compare-versions@6.1.1: {}
- /component-emitter/1.3.0:
- resolution: {integrity: sha512-Rd3se6QB+sO1TwqZjscQrurpEPIfO0/yYnSin6Q/rD3mOutHvUrCAhJub3r90uNb+SESBuE0QYoB90YdfatsRg==}
- dev: false
+ component-emitter@1.3.1: {}
- /component-emitter/2.0.0:
- resolution: {integrity: sha512-4m5s3Me2xxlVKG9PkZpQqHQR7bgpnN7joDMJ4yvVkVXngjoITG76IaZmzmywSeRTeTpc6N6r3H3+KyUurV8OYw==}
- engines: {node: '>=18'}
- dev: false
+ component-emitter@2.0.0: {}
- /component-type/1.2.1:
- resolution: {integrity: sha512-Kgy+2+Uwr75vAi6ChWXgHuLvd+QLD7ssgpaRq2zCvt80ptvAfMc/hijcJxXkBa2wMlEZcJvC2H8Ubo+A9ATHIg==}
- dev: false
+ component-type@1.2.1: {}
- /compress-commons/3.0.0:
- resolution: {integrity: sha512-FyDqr8TKX5/X0qo+aVfaZ+PVmNJHJeckFBlq8jZGSJOgnynhfifoyl24qaqdUdDIBe0EVTHByN6NAkqYvE/2Xg==}
- engines: {node: '>= 8'}
+ compress-commons@3.0.0:
dependencies:
buffer-crc32: 0.2.13
crc32-stream: 3.0.1
normalize-path: 3.0.0
readable-stream: 2.3.8
- dev: false
- /compressible/2.0.18:
- resolution: {integrity: sha512-AF3r7P5dWxL8MxyITRMlORQNaOA2IkAFaTr4k7BUumjPtRpGDTZpl0Pb1XCO6JeDCBdp126Cgs9sMxqSjgYyRg==}
- engines: {node: '>= 0.6'}
+ compressible@2.0.18:
dependencies:
- mime-db: 1.52.0
- dev: false
+ mime-db: 1.53.0
- /compute-gcd/1.2.1:
- resolution: {integrity: sha512-TwMbxBNz0l71+8Sc4czv13h4kEqnchV9igQZBi6QUaz09dnz13juGnnaWWJTRsP3brxOoxeB4SA2WELLw1hCtg==}
+ compute-gcd@1.2.1:
dependencies:
validate.io-array: 1.0.6
validate.io-function: 1.0.2
validate.io-integer-array: 1.0.0
- dev: false
- /compute-lcm/1.1.2:
- resolution: {integrity: sha512-OFNPdQAXnQhDSKioX8/XYT6sdUlXwpeMjfd6ApxMJfyZ4GxmLR1xvMERctlYhlHwIiz6CSpBc2+qYKjHGZw4TQ==}
+ compute-lcm@1.1.2:
dependencies:
compute-gcd: 1.2.1
validate.io-array: 1.0.6
validate.io-function: 1.0.2
validate.io-integer-array: 1.0.0
- dev: false
- /concat-map/0.0.1:
- resolution: {integrity: sha1-2Klr13/Wjfd5OnMDajug1UBdR3s=}
+ computeds@0.0.1: {}
- /concat-stream/2.0.0:
- resolution: {integrity: sha512-MWufYdFw53ccGjCA+Ol7XJYpAlW6/prSMzuPOTRnJGcGzuhLn4Scrz7qf6o8bROZ514ltazcIFJZevcfbo0x7A==}
- engines: {'0': node >= 6.0}
+ concat-map@0.0.1: {}
+
+ concat-stream@2.0.0:
dependencies:
buffer-from: 1.1.2
inherits: 2.0.4
readable-stream: 3.6.2
typedarray: 0.0.6
- /configstore/5.0.1:
- resolution: {integrity: sha512-aMKprgk5YhBNyH25hj8wGt2+D52Sw1DRRIzqBwLp2Ya9mFmY8KPvvtvmna8SxVR9JMZ4kzMD68N22vlaRpkeFA==}
- engines: {node: '>=8'}
+ confbox@0.1.8: {}
+
+ configstore@5.0.1:
dependencies:
dot-prop: 5.3.0
graceful-fs: 4.2.11
@@ -24249,195 +31677,111 @@ packages:
unique-string: 2.0.0
write-file-atomic: 3.0.3
xdg-basedir: 4.0.0
- dev: false
optional: true
- /console-control-strings/1.1.0:
- resolution: {integrity: sha512-ty/fTekppD2fIwRvnZAVdeOiGd1c7YXEixbgJTNzqcxJWKQnjJ/V1bNEEE6hygpM3WjwHFUVK6HTjWSzV4a8sQ==}
- dev: true
+ console-control-strings@1.1.0:
optional: true
- /content-type/1.0.5:
- resolution: {integrity: sha512-nTjqfcBFEipKdXCv4YDQWCfmcLZKm81ldF0pAopTvyrFGVbcR6P/VAAd5G7N+0tTr8QqiU0tFadD6FK4NtJwOA==}
- engines: {node: '>= 0.6'}
- dev: false
+ content-type@1.0.5: {}
- /convert-source-map/2.0.0:
- resolution: {integrity: sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg==}
+ convert-source-map@1.9.0: {}
- /cookie/0.5.0:
- resolution: {integrity: sha512-YZ3GUyn/o8gfKJlnlX7g7xq4gyO6OSuhGPKaaGssGB2qgDUS0gPgtTvoyZLTt9Ab6dC4hfc9dV5arkvc/OCmrw==}
- engines: {node: '>= 0.6'}
- dev: false
+ convert-source-map@2.0.0: {}
- /cookiejar/2.1.4:
- resolution: {integrity: sha512-LDx6oHrK+PhzLKJU9j5S7/Y3jM/mUHvD/DeI1WQmJn652iPC5Y4TBzC9l+5OMOXlyTTA+SmVUPm0HQUwpD5Jqw==}
- dev: false
+ cookiejar@2.1.4: {}
- /core-js-compat/3.33.0:
- resolution: {integrity: sha512-0w4LcLXsVEuNkIqwjjf9rjCoPhK8uqA4tMRh4Ge26vfLtUutshn+aRJU21I9LCJlh2QQHfisNToLjw1XEJLTWw==}
+ core-js-compat@3.39.0:
dependencies:
- browserslist: 4.23.3
- dev: false
+ browserslist: 4.24.2
- /core-js/3.33.0:
- resolution: {integrity: sha512-HoZr92+ZjFEKar5HS6MC776gYslNOKHt75mEBKWKnPeFDpZ6nH5OeF3S6HFT1mUAUZKrzkez05VboaX8myjSuw==}
- requiresBuild: true
- dev: false
+ core-js@3.39.0: {}
- /core-util-is/1.0.2:
- resolution: {integrity: sha512-3lqz5YjWTYnW6dlDa5TLaTCcShfar1e40rmcJVwCBJC6mWlFuj0eCHIElmG1g5kyuJ/GD+8Wn4FFCcz4gJPfaQ==}
+ core-util-is@1.0.2: {}
- /core-util-is/1.0.3:
- resolution: {integrity: sha512-ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ==}
+ core-util-is@1.0.3: {}
- /cosmiconfig/5.2.1:
- resolution: {integrity: sha512-H65gsXo1SKjf8zmrJ67eJk8aIRKV5ff2D4uKZIBZShbhGSpEmsQOPW/SKMKYhSTrqR7ufy6RP69rPogdaPh/kA==}
- engines: {node: '>=4'}
+ cosmiconfig@5.2.1:
dependencies:
import-fresh: 2.0.0
is-directory: 0.3.1
js-yaml: 3.14.1
parse-json: 4.0.0
- dev: true
- /cosmiconfig/8.3.6_typescript@5.2.2:
- resolution: {integrity: sha512-kcZ6+W5QzcJ3P1Mt+83OUv/oHFqZHIx8DuxG6eZ5RGMERoLqp4BuGjhHLYGK+Kf5XVkQvqBSmAy/nGWN3qDgEA==}
- engines: {node: '>=14'}
- peerDependencies:
- typescript: '>=4.9.5'
- peerDependenciesMeta:
- typescript:
- optional: true
+ cosmiconfig@7.1.0:
dependencies:
+ '@types/parse-json': 4.0.2
import-fresh: 3.3.0
- js-yaml: 4.1.0
parse-json: 5.2.0
path-type: 4.0.0
- typescript: 5.2.2
- dev: true
+ yaml: 1.10.2
- /cp-file/6.2.0:
- resolution: {integrity: sha512-fmvV4caBnofhPe8kOcitBwSn2f39QLjnAnGq3gO9dfd75mUytzKNZB1hde6QHunW2Rt+OwuBOMc3i1tNElbszA==}
- engines: {node: '>=6'}
+ cosmiconfig@9.0.0(typescript@5.6.3):
+ dependencies:
+ env-paths: 2.2.1
+ import-fresh: 3.3.0
+ js-yaml: 4.1.0
+ parse-json: 5.2.0
+ optionalDependencies:
+ typescript: 5.6.3
+
+ cp-file@6.2.0:
dependencies:
graceful-fs: 4.2.11
make-dir: 2.1.0
nested-error-stacks: 2.1.1
pify: 4.0.1
safe-buffer: 5.2.1
- dev: false
- /cp-file/7.0.0:
- resolution: {integrity: sha512-0Cbj7gyvFVApzpK/uhCtQ/9kE9UnYpxMzaq5nQQC/Dh4iaj5fxp7iEFIullrYwzj8nf0qnsI1Qsx34hAeAebvw==}
- engines: {node: '>=8'}
+ cp-file@7.0.0:
dependencies:
graceful-fs: 4.2.11
make-dir: 3.1.0
nested-error-stacks: 2.1.1
p-event: 4.2.0
- dev: false
-
- /cpu-features/0.0.9:
- resolution: {integrity: sha512-AKjgn2rP2yJyfbepsmLfiYcmtNn/2eUvocUyM/09yB0YDiz39HteK/5/T4Onf0pmdYDMgkBoGvRLvEguzyL7wQ==}
- engines: {node: '>=10.0.0'}
- requiresBuild: true
- dependencies:
- buildcheck: 0.0.6
- nan: 2.18.0
- dev: false
- optional: true
- /crc/3.8.0:
- resolution: {integrity: sha512-iX3mfgcTMIq3ZKLIsVFAbv7+Mc10kxabAGQb8HvjA1o3T1PIYprbakQ65d3I+2HGHt6nSKkM9PYjgoJO2KcFBQ==}
+ cpu-features@0.0.10:
dependencies:
- buffer: 5.7.1
- dev: false
+ buildcheck: 0.0.6
+ nan: 2.22.0
+ optional: true
- /crc32-stream/3.0.1:
- resolution: {integrity: sha512-mctvpXlbzsvK+6z8kJwSJ5crm7yBwrQMTybJzMw1O4lLGJqjlDCXY2Zw7KheiA6XBEcBmfLx1D88mjRGVJtY9w==}
- engines: {node: '>= 6.9.0'}
+ crc32-stream@3.0.1:
dependencies:
crc: 3.8.0
readable-stream: 3.6.2
- dev: false
- /create-error-class/3.0.2:
- resolution: {integrity: sha512-gYTKKexFO3kh200H1Nit76sRwRtOY32vQd3jpAQKpLtZqyNsSQNfI4N7o3eP2wUjV35pTWKRYqFUDBvUha/Pkw==}
- engines: {node: '>=0.10.0'}
+ crc@3.8.0:
+ dependencies:
+ buffer: 5.7.1
+
+ create-error-class@3.0.2:
dependencies:
capture-stack-trace: 1.0.2
- dev: false
- /create-hash/1.2.0:
- resolution: {integrity: sha512-z00bCGNHDG8mHAkP7CtT1qVu+bFQUPjYq/4Iv3C3kWjTFV10zIjfSoeqXo9Asws8gwSHDGj/hl2u4OGIjapeCg==}
+ create-hash@1.2.0:
dependencies:
- cipher-base: 1.0.4
+ cipher-base: 1.0.5
inherits: 2.0.4
md5.js: 1.3.5
ripemd160: 2.0.2
sha.js: 2.4.11
- dev: false
- /create-hmac/1.1.7:
- resolution: {integrity: sha512-MJG9liiZ+ogc4TzUwuvbER1JRdgvUFSB5+VR/g5h82fGaIRWMWddtKBHi7/sVhfjQZ6SehlyhvQYrcYkaUIpLg==}
+ create-hmac@1.1.7:
dependencies:
- cipher-base: 1.0.4
+ cipher-base: 1.0.5
create-hash: 1.2.0
inherits: 2.0.4
ripemd160: 2.0.2
safe-buffer: 5.2.1
sha.js: 2.4.11
- dev: false
-
- /create-jest/29.7.0:
- resolution: {integrity: sha512-Adz2bdH0Vq3F53KEMJOoftQFutWCukm6J24wbPWRO4k1kMY7gS7ds/uoJkNuV8wDCtWWnuwGcJwpWcih+zEW1Q==}
- engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
- hasBin: true
- dependencies:
- '@jest/types': 29.6.3
- chalk: 4.1.2
- exit: 0.1.2
- graceful-fs: 4.2.11
- jest-config: 29.7.0
- jest-util: 29.7.0
- prompts: 2.4.2
- transitivePeerDependencies:
- - '@types/node'
- - babel-plugin-macros
- - supports-color
- - ts-node
- dev: true
-
- /create-jest/29.7.0_@types+node@20.17.6:
- resolution: {integrity: sha512-Adz2bdH0Vq3F53KEMJOoftQFutWCukm6J24wbPWRO4k1kMY7gS7ds/uoJkNuV8wDCtWWnuwGcJwpWcih+zEW1Q==}
- engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
- hasBin: true
- dependencies:
- '@jest/types': 29.6.3
- chalk: 4.1.2
- exit: 0.1.2
- graceful-fs: 4.2.11
- jest-config: 29.7.0_@types+node@20.17.6
- jest-util: 29.7.0
- prompts: 2.4.2
- transitivePeerDependencies:
- - '@types/node'
- - babel-plugin-macros
- - supports-color
- - ts-node
- dev: true
- /create-jest/29.7.0_@types+node@20.9.2:
- resolution: {integrity: sha512-Adz2bdH0Vq3F53KEMJOoftQFutWCukm6J24wbPWRO4k1kMY7gS7ds/uoJkNuV8wDCtWWnuwGcJwpWcih+zEW1Q==}
- engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
- hasBin: true
+ create-jest@29.7.0(@types/node@20.17.6)(babel-plugin-macros@3.1.0):
dependencies:
'@jest/types': 29.6.3
chalk: 4.1.2
exit: 0.1.2
graceful-fs: 4.2.11
- jest-config: 29.7.0_@types+node@20.9.2
+ jest-config: 29.7.0(@types/node@20.17.6)(babel-plugin-macros@3.1.0)
jest-util: 29.7.0
prompts: 2.4.2
transitivePeerDependencies:
@@ -24445,488 +31789,239 @@ packages:
- babel-plugin-macros
- supports-color
- ts-node
- dev: true
- /cron-parser/4.9.0:
- resolution: {integrity: sha512-p0SaNjrHOnQeR8/VnfGbmg9te2kfyYSQ7Sc/j/6DtPL3JQvKxmjO9TSjNFpujqV3vEYYBvNNvXSxzyksBWAx1Q==}
- engines: {node: '>=12.0.0'}
+ cron-parser@4.9.0:
dependencies:
- luxon: 3.4.3
- dev: false
+ luxon: 3.5.0
- /cross-fetch/3.1.5:
- resolution: {integrity: sha512-lvb1SBsI0Z7GDwmuid+mU3kWVBwTVUbe7S0H52yaaAdQOXq2YktTCZdlAcNKFzE6QtRz0snpw9bNiPeOIkkQvw==}
+ cross-fetch@3.1.5:
dependencies:
node-fetch: 2.6.7
transitivePeerDependencies:
- encoding
- dev: false
- /cross-fetch/3.1.8:
- resolution: {integrity: sha512-cvA+JwZoU0Xq+h6WkMvAUqPEYy92Obet6UdKLfW60qn99ftItKjB5T+BkyWOFWe2pUyfQ+IJHmpOTznqk1M6Kg==}
+ cross-fetch@3.1.8:
dependencies:
node-fetch: 2.7.0
transitivePeerDependencies:
- encoding
- /cross-fetch/4.0.0:
- resolution: {integrity: sha512-e4a5N8lVvuLgAWgnCrLr2PP0YyDOTHa9H/Rj54dirp61qXnNq46m82bRhNqIA5VccJtWBvPTFRV3TtvHUKPB1g==}
+ cross-fetch@4.0.0:
dependencies:
node-fetch: 2.7.0
transitivePeerDependencies:
- encoding
- dev: false
- /cross-spawn/6.0.5:
- resolution: {integrity: sha512-eTVLrBSt7fjbDygz805pMnstIs2VTBNkRm0qxZd+M7A5XDdxVRWO5MxGBXZhjY4cqLYLdtrGqRf8mBPmzwSpWQ==}
- engines: {node: '>=4.8'}
+ cross-spawn@6.0.6:
dependencies:
nice-try: 1.0.5
path-key: 2.0.1
semver: 5.7.2
shebang-command: 1.2.0
which: 1.3.1
- dev: true
- /cross-spawn/7.0.3:
- resolution: {integrity: sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==}
- engines: {node: '>= 8'}
+ cross-spawn@7.0.6:
dependencies:
path-key: 3.1.1
shebang-command: 2.0.0
which: 2.0.2
- dev: true
-
- /crypt/0.0.2:
- resolution: {integrity: sha512-mCxBlsHFYh9C+HVpiEacem8FEBnMXgU9gy4zmNC+SXAZNB/1idgp/aulFJ4FgCi7GPEVbfyng092GqL2k2rmow==}
- dev: false
- /crypto-js/4.1.1:
- resolution: {integrity: sha512-o2JlM7ydqd3Qk9CA0L4NL6mTzU2sdx96a+oOfPu8Mkl/PK51vSyoi8/rQ8NknZtk44vq15lmhAj9CIAGwgeWKw==}
- dev: false
+ crypt@0.0.2: {}
- /crypto-js/4.2.0:
- resolution: {integrity: sha512-KALDyEYgpY+Rlob/iriUtjV6d5Eq+Y191A5g4UqLAi8CyGP9N1+FdVbkc1SxKc2r4YAYqG8JzO2KGL+AizD70Q==}
- dev: false
+ crypto-js@4.2.0: {}
- /crypto-random-string/1.0.0:
- resolution: {integrity: sha512-GsVpkFPlycH7/fRR7Dhcmnoii54gV1nz7y4CWyeFS14N+JVBBhY+r8amRHE4BwSYal7BPTDp8isvAlCxyFt3Hg==}
- engines: {node: '>=4'}
- dev: false
+ crypto-random-string@1.0.0: {}
- /crypto-random-string/2.0.0:
- resolution: {integrity: sha512-v1plID3y9r/lPhviJ1wrXpLeyUIGAZ2SHNYTEapm7/8A9nLPoyvVp3RK/EPFqn5kEznyWgYZNsRtYYIWbuG8KA==}
- engines: {node: '>=8'}
- dev: false
+ crypto-random-string@2.0.0:
optional: true
- /crypto/1.0.1:
- resolution: {integrity: sha512-VxBKmeNcqQdiUQUW2Tzq0t377b54N2bMtXO/qiLa+6eRRmmC4qT3D4OnTGoT/U6O9aklQ/jTwbOtRMTTY8G0Ig==}
- deprecated: This package is no longer supported. It's now a built-in Node module. If you've depended on crypto, you should switch to the one that's built-in.
- dev: false
+ crypto@1.0.1: {}
- /css-functions-list/3.2.0:
- resolution: {integrity: sha512-d/jBMPyYybkkLVypgtGv12R+pIFw4/f/IHtCTxWpZc8ofTYOPigIgmA6vu5rMHartZC+WuXhBUHfnyNUIQSYrg==}
- engines: {node: '>=12.22'}
- dev: true
+ css-functions-list@3.2.3: {}
- /css-select/5.1.0:
- resolution: {integrity: sha512-nwoRF1rvRRnnCqqY7updORDsuqKzqYJ28+oSMaJMMgOauh3fvwHqMS7EZpIPqK8GL+g9mKxF1vP/ZjSeNjEVHg==}
+ css-select@5.1.0:
dependencies:
boolbase: 1.0.0
css-what: 6.1.0
domhandler: 5.0.3
domutils: 3.1.0
nth-check: 2.1.1
- dev: false
- /css-tree/2.3.1:
- resolution: {integrity: sha512-6Fv1DV/TYw//QF5IzQdqsNDjx/wc8TrMBZsqjL9eW01tWb7R7k/mq+/VXfJCl7SoD5emsJop9cOByJZfs8hYIw==}
- engines: {node: ^10 || ^12.20.0 || ^14.13.0 || >=15.0.0}
+ css-tree@3.0.1:
dependencies:
- mdn-data: 2.0.30
- source-map-js: 1.2.0
- dev: true
+ mdn-data: 2.12.1
+ source-map-js: 1.2.1
- /css-what/6.1.0:
- resolution: {integrity: sha512-HTUrgRJ7r4dsZKU6GjmpfRK1O76h97Z8MfS1G0FozR+oF2kG6Vfe8JE6zwrkbxigziPHinCJ+gCPjA9EaBDtRw==}
- engines: {node: '>= 6'}
- dev: false
+ css-what@6.1.0: {}
- /cssesc/3.0.0:
- resolution: {integrity: sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg==}
- engines: {node: '>=4'}
- hasBin: true
- dev: true
+ cssesc@3.0.0: {}
- /cssfilter/0.0.10:
- resolution: {integrity: sha512-FAaLDaplstoRsDR8XGYH51znUN0UY7nMc6Z9/fvE8EXGwvJE9hu7W2vHwx1+bd6gCYnln9nLbzxFTrcO9YQDZw==}
- dev: false
+ cssfilter@0.0.10: {}
- /cssom/0.5.0:
- resolution: {integrity: sha512-iKuQcq+NdHqlAcwUY0o/HL69XQrUaQdMjmStJ8JFmUaiiQErlhrmuigkg/CU4E2J0IyUKUrMAgl36TvN67MqTw==}
- dev: false
+ cssom@0.5.0: {}
- /csstype/3.1.2:
- resolution: {integrity: sha512-I7K1Uu0MBPzaFKg4nI5Q7Vs2t+3gWWW648spaF+Rg7pI9ds18Ugn+lvg4SHczUdKlHI5LWBXyqfS8+DufyBsgQ==}
- dev: false
+ csstype@3.1.3: {}
- /csv-parse/5.5.6:
- resolution: {integrity: sha512-uNpm30m/AGSkLxxy7d9yRXpJQFrZzVWLFBkS+6ngPcZkw/5k3L/jjFuj7tVnEpRn+QgmiXr21nDlhCiUK4ij2A==}
- dev: false
+ csv-parse@5.6.0: {}
- /current-module-paths/1.1.1:
- resolution: {integrity: sha512-8Ga5T8oMXBaSsHq9Gj+bddX7kHSaJKsl2vaAd3ep51eQLkr4W18eFEmEZM5bLo1zrz8tt3jE1U8QK9QGhaLR4g==}
- engines: {node: '>=12.17'}
- dev: true
+ current-module-paths@1.1.2: {}
- /currify/4.0.0:
- resolution: {integrity: sha512-ABfH28PWp5oqqp31cLXJQdeMqoFNej9rJOu84wKhN3jPCH7FAZg3zY1MVI27PTFoqfPlxOyhGmh9PzOVv+yN2g==}
- dev: true
+ currify@4.0.0: {}
- /custom-error-generator/7.0.0:
- resolution: {integrity: sha512-/sR1A6avsI0IOeeOThWlnZqnx5/aoBsI2FznAmFiMC5loQissvItrVAkkc+AJEhBb/FC9nkVkjH2NyqYQkzNHw==}
- engines: {'0': node >=0.6.0}
- dev: false
+ custom-error-generator@7.0.0: {}
- /cyclist/1.0.2:
- resolution: {integrity: sha512-0sVXIohTfLqVIW3kb/0n6IiWF3Ifj5nm2XaSrLq2DI6fKIGa2fYAZdk917rUneaeLVpYfFcyXE2ft0fe3remsA==}
- dev: false
+ cyclist@1.0.2: {}
- /d/1.0.1:
- resolution: {integrity: sha512-m62ShEObQ39CfralilEQRjH6oAMtNCV1xJyEx5LpRYUVN+EviphDgUc/F3hnYbADmkiNs67Y+3ylmlG7Lnu+FA==}
+ d@1.0.2:
dependencies:
- es5-ext: 0.10.62
- type: 1.2.0
- dev: false
+ es5-ext: 0.10.64
+ type: 2.7.3
- /damerau-levenshtein/1.0.8:
- resolution: {integrity: sha512-sdQSFB7+llfUcQHUQO3+B8ERRj0Oa4w9POWMI/puGtuf7gFywGmkaLCElnudfTiKZV+NvHqL0ifzdrI8Ro7ESA==}
- dev: true
+ damerau-levenshtein@1.0.8: {}
- /dashdash/1.14.1:
- resolution: {integrity: sha512-jRFi8UDGo6j+odZiEpjazZaWqEal3w/basFjQHQEwVtZJGDpxbH1MeYluwCS8Xq5wmLJooDlMgvVarmWfGM44g==}
- engines: {node: '>=0.10'}
+ dashdash@1.14.1:
dependencies:
assert-plus: 1.0.0
- /data-uri-to-buffer/3.0.1:
- resolution: {integrity: sha512-WboRycPNsVw3B3TL559F7kuBUM4d8CgMEvk6xEJlOp7OBPjt6G7z8WMWlD2rOFZLk6OYfFIUGsCOWzcQH9K2og==}
- engines: {node: '>= 6'}
- dev: false
+ data-uri-to-buffer@3.0.1: {}
- /data-uri-to-buffer/4.0.1:
- resolution: {integrity: sha512-0R9ikRb668HB7QDxT1vkpuUBtqc53YyAwMwGeUFKRojY/NWKvdZ+9UYtRfGmhqNbRkTSVpMbmyhXipFFv2cb/A==}
- engines: {node: '>= 12'}
- dev: false
+ data-uri-to-buffer@4.0.1: {}
- /data-uri-to-buffer/6.0.1:
- resolution: {integrity: sha512-MZd3VlchQkp8rdend6vrx7MmVDJzSNTBvghvKjirLkD+WTChA3KUf0jkE68Q4UyctNqI11zZO9/x2Yx+ub5Cvg==}
- engines: {node: '>= 14'}
- dev: false
+ data-uri-to-buffer@6.0.2: {}
- /data-view-buffer/1.0.1:
- resolution: {integrity: sha512-0lht7OugA5x3iJLOWFhWK/5ehONdprk0ISXqVFn/NFrDu+cuc8iADFrGQz5BnRK7LLU3JmkbXSxaqX+/mXYtUA==}
- engines: {node: '>= 0.4'}
+ data-view-buffer@1.0.1:
dependencies:
call-bind: 1.0.7
es-errors: 1.3.0
is-data-view: 1.0.1
- /data-view-byte-length/1.0.1:
- resolution: {integrity: sha512-4J7wRJD3ABAzr8wP+OcIcqq2dlUKp4DVflx++hs5h5ZKydWMI6/D/fAot+yh6g2tHh8fLFTvNOaVN357NvSrOQ==}
- engines: {node: '>= 0.4'}
+ data-view-byte-length@1.0.1:
dependencies:
call-bind: 1.0.7
es-errors: 1.3.0
is-data-view: 1.0.1
- /data-view-byte-offset/1.0.0:
- resolution: {integrity: sha512-t/Ygsytq+R995EJ5PZlD4Cu56sWa8InXySaViRzw9apusqsOO2bQP+SbYzAhR0pFKoB+43lYy8rWban9JSuXnA==}
- engines: {node: '>= 0.4'}
+ data-view-byte-offset@1.0.0:
dependencies:
call-bind: 1.0.7
es-errors: 1.3.0
is-data-view: 1.0.1
- /databox/2.0.1:
- resolution: {integrity: sha512-Y34sg9deT/xh7nKGGu7ceDCUpMinbV7ucqu9a6D465bHnYz9vRbC7VDxtSCfmU8u/rN5f6bDnYnEoqr81gL/Pw==}
- dev: false
+ databox@2.1.2: {}
- /datauri/4.1.0:
- resolution: {integrity: sha512-y17kh32+I82G+ED9MNWFkZiP/Cq/vO1hN9+tSZsT9C9qn3NrvcBnh7crSepg0AQPge1hXx2Ca44s1FRdv0gFWA==}
- engines: {node: '>= 10'}
+ datauri@4.1.0:
dependencies:
image-size: 1.0.0
mimer: 2.0.2
- dev: false
- /date-fns/2.30.0:
- resolution: {integrity: sha512-fnULvOpxnC5/Vg3NCiWelDsLiUc9bRwAPs/+LfTLNvetFCtCTN+yQz15C/fs4AwX1R9K5GLtLfn8QW+dWisaAw==}
- engines: {node: '>=0.11'}
+ date-fns@2.30.0:
dependencies:
- '@babel/runtime': 7.23.1
- dev: false
+ '@babel/runtime': 7.26.0
- /date-fns/3.6.0:
- resolution: {integrity: sha512-fRHTG8g/Gif+kSh50gaGEdToemgfj74aRX3swtiouboip5JDLAyDE9F11nHMIcvOaXeOC6D7SpNhi7uFyB7Uww==}
- dev: false
+ date-fns@3.6.0: {}
- /date-format/4.0.14:
- resolution: {integrity: sha512-39BOQLs9ZjKh0/patS9nrT8wc3ioX3/eA/zgbKNopnF2wCqJEoxywwwElATYvRsXdnOxA/OQeQoFZ3rFjVajhg==}
- engines: {node: '>=4.0'}
- dev: false
+ date-fns@4.1.0: {}
- /dateformat/5.0.3:
- resolution: {integrity: sha512-Kvr6HmPXUMerlLcLF+Pwq3K7apHpYmGDVqrxcDasBg86UcKeTSNWbEzU8bwdXnxnR44FtMhJAxI4Bov6Y/KUfA==}
- engines: {node: '>=12.20'}
- dev: false
+ date-format@4.0.14: {}
- /dayjs/1.11.10:
- resolution: {integrity: sha512-vjAczensTgRcqDERK0SR2XMwsF/tSvnvlv6VcF2GIhg6Sx4yOIt/irsr1RDJsKiIyBzJDpCoXiWWq28MqH2cnQ==}
- dev: false
+ dateformat@5.0.3: {}
- /debug/2.6.9:
- resolution: {integrity: sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==}
- peerDependencies:
- supports-color: '*'
- peerDependenciesMeta:
- supports-color:
- optional: true
+ dayjs@1.11.13: {}
+
+ de-indent@1.0.2: {}
+
+ debug@2.6.9:
dependencies:
ms: 2.0.0
- dev: false
- /debug/3.1.0:
- resolution: {integrity: sha512-OX8XqP7/1a9cqkxYw2yXss15f26NKWBpDXQd0/uK/KPqdQhxbPa994hnzjcE2VqQpDslf55723cKPUOGSmMY3g==}
- peerDependencies:
- supports-color: '*'
- peerDependenciesMeta:
- supports-color:
- optional: true
+ debug@3.1.0:
dependencies:
ms: 2.0.0
- dev: false
- /debug/3.2.7:
- resolution: {integrity: sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==}
- peerDependencies:
- supports-color: '*'
- peerDependenciesMeta:
- supports-color:
- optional: true
+ debug@3.2.7:
dependencies:
ms: 2.1.3
- /debug/4.3.4:
- resolution: {integrity: sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==}
- engines: {node: '>=6.0'}
- peerDependencies:
- supports-color: '*'
- peerDependenciesMeta:
- supports-color:
- optional: true
- dependencies:
- ms: 2.1.2
-
- /debug/4.3.4_supports-color@9.4.0:
- resolution: {integrity: sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==}
- engines: {node: '>=6.0'}
- peerDependencies:
- supports-color: '*'
- peerDependenciesMeta:
- supports-color:
- optional: true
- dependencies:
- ms: 2.1.2
- supports-color: 9.4.0
- dev: true
-
- /debug/4.3.6:
- resolution: {integrity: sha512-O/09Bd4Z1fBrU4VzkhFqVgpPzaGbw6Sm9FEkBT1A/YBXQFGuuSxa1dN2nxgxS34JmKXqYx8CZAwEVoJFImUXIg==}
- engines: {node: '>=6.0'}
- peerDependencies:
- supports-color: '*'
- peerDependenciesMeta:
- supports-color:
- optional: true
+ debug@4.3.4:
dependencies:
ms: 2.1.2
- /debug/4.3.6_supports-color@5.5.0:
- resolution: {integrity: sha512-O/09Bd4Z1fBrU4VzkhFqVgpPzaGbw6Sm9FEkBT1A/YBXQFGuuSxa1dN2nxgxS34JmKXqYx8CZAwEVoJFImUXIg==}
- engines: {node: '>=6.0'}
- peerDependencies:
- supports-color: '*'
- peerDependenciesMeta:
- supports-color:
- optional: true
+ debug@4.3.7(supports-color@5.5.0):
dependencies:
- ms: 2.1.2
+ ms: 2.1.3
+ optionalDependencies:
supports-color: 5.5.0
- dev: true
- /decamelize-keys/1.1.1:
- resolution: {integrity: sha512-WiPxgEirIV0/eIOMcnFBA3/IJZAZqKnwAwWyvvdi4lsr1WCN22nhdf/3db3DoZcUjTV2SqfzIwNyp6y2xs3nmg==}
- engines: {node: '>=0.10.0'}
+ debug@4.3.7(supports-color@9.4.0):
dependencies:
- decamelize: 1.2.0
- map-obj: 1.0.1
- dev: true
-
- /decamelize/1.2.0:
- resolution: {integrity: sha512-z2S+W9X73hAUUki+N+9Za2lBlun89zigOyGrsax+KUQ6wKW4ZoWpEYBkGhQjwAjjDCkWxhY0VKEhk8wzY7F5cA==}
- engines: {node: '>=0.10.0'}
+ ms: 2.1.3
+ optionalDependencies:
+ supports-color: 9.4.0
- /decamelize/5.0.1:
- resolution: {integrity: sha512-VfxadyCECXgQlkoEAjeghAr5gY3Hf+IKjKb+X8tGVDtveCjN+USwprd2q3QXBR9T1+x2DG0XZF5/w+7HAtSaXA==}
- engines: {node: '>=10'}
- dev: true
+ decamelize@1.2.0: {}
- /decode-named-character-reference/1.0.2:
- resolution: {integrity: sha512-O8x12RzrUF8xyVcY0KJowWsmaJxQbmy0/EtnNtHRpsOcT7dFk5W598coHqBVpmWo1oQQfsCqfCmkZN5DJrZVdg==}
+ decode-named-character-reference@1.0.2:
dependencies:
character-entities: 2.0.2
- dev: true
- /decode-uri-component/0.2.2:
- resolution: {integrity: sha512-FqUYQ+8o158GyGTrMFJms9qh3CqTKvAqgqsTnkLI8sKu0028orqBhxNMFkFen0zGyg6epACD32pjVk58ngIErQ==}
- engines: {node: '>=0.10'}
- dev: false
+ decode-uri-component@0.2.2: {}
- /decode-uri-component/0.4.1:
- resolution: {integrity: sha512-+8VxcR21HhTy8nOt6jf20w0c9CADrw1O8d+VZ/YzzCt4bJ3uBjw+D1q2osAB8RnpwwaeYBxy0HyKQxD5JBMuuQ==}
- engines: {node: '>=14.16'}
- dev: false
+ decode-uri-component@0.4.1: {}
- /decompress-response/6.0.0:
- resolution: {integrity: sha512-aW35yZM6Bb/4oJlZncMH2LCoZtJXTRxES17vE3hoRiowU2kWHaJKFkSBDnDR+cm9J+9QhXmREyIfv0pji9ejCQ==}
- engines: {node: '>=10'}
+ decompress-response@6.0.0:
dependencies:
mimic-response: 3.1.0
- dev: false
-
- /dedent/1.5.1:
- resolution: {integrity: sha512-+LxW+KLWxu3HW3M2w2ympwtqPrqYRzU8fqi6Fhd18fBALe15blJPI/I4+UHveMVG6lJqB4JNd4UG0S5cnVHwIg==}
- peerDependencies:
- babel-plugin-macros: ^3.1.0
- peerDependenciesMeta:
- babel-plugin-macros:
- optional: true
- dev: false
- /dedent/1.5.3:
- resolution: {integrity: sha512-NHQtfOOW68WD8lgypbLA5oT+Bt0xXJhiYvoR6SmmNXZfpzOGXwdKWmcwG8N7PwVVWV3eF/68nmD9BaJSsTBhyQ==}
- peerDependencies:
- babel-plugin-macros: ^3.1.0
- peerDependenciesMeta:
- babel-plugin-macros:
- optional: true
- dev: true
+ dedent@1.5.3(babel-plugin-macros@3.1.0):
+ optionalDependencies:
+ babel-plugin-macros: 3.1.0
- /deeks/2.6.1:
- resolution: {integrity: sha512-PZrpz5xLo2JPZa3L+kqMMMdZU5pRwMysTM1xd6pLhNtgQw4Iq3wbF2QWaQTVh+HRq9Yg4rcjDIJ+scfGLxmsjQ==}
- engines: {node: '>= 12'}
- dev: false
+ deeks@2.6.1: {}
- /deep-assign/3.0.0:
- resolution: {integrity: sha512-YX2i9XjJ7h5q/aQ/IM9PEwEnDqETAIYbggmdDB3HLTlSgo1CxPsj6pvhPG68rq6SVE0+p+6Ywsm5fTYNrYtBWw==}
- engines: {node: '>=0.10.0'}
- deprecated: Check out `lodash.merge` or `merge-options` instead.
+ deep-assign@3.0.0:
dependencies:
is-obj: 1.0.1
- dev: false
-
- /deep-equal/2.2.3:
- resolution: {integrity: sha512-ZIwpnevOurS8bpT4192sqAowWM76JDKSHYzMLty3BZGSswgq6pBaH3DhCSW5xVAZICZyKdOBPjwww5wfgT/6PA==}
- engines: {node: '>= 0.4'}
- dependencies:
- array-buffer-byte-length: 1.0.1
- call-bind: 1.0.7
- es-get-iterator: 1.1.3
- get-intrinsic: 1.2.4
- is-arguments: 1.1.1
- is-array-buffer: 3.0.4
- is-date-object: 1.0.5
- is-regex: 1.1.4
- is-shared-array-buffer: 1.0.3
- isarray: 2.0.5
- object-is: 1.1.5
- object-keys: 1.1.1
- object.assign: 4.1.5
- regexp.prototype.flags: 1.5.2
- side-channel: 1.0.6
- which-boxed-primitive: 1.0.2
- which-collection: 1.0.2
- which-typed-array: 1.1.15
- dev: true
- /deep-extend/0.6.0:
- resolution: {integrity: sha512-LOHxIOaPYdHlJRtCQfDIVZtfw/ufM8+rVj649RIHzcm/vGwQRXFt6OPqIFWsm2XEMrNIEtWR64sY1LEKD2vAOA==}
- engines: {node: '>=4.0.0'}
- dev: true
+ deep-extend@0.6.0: {}
- /deep-is/0.1.4:
- resolution: {integrity: sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==}
+ deep-is@0.1.4: {}
- /deepmerge/4.3.1:
- resolution: {integrity: sha512-3sUqbMEc77XqpdNO7FRyRog+eW3ph+GYCbj+rK+uYyRMuwsVy0rMiVtPn+QJlKFvWP/1PYpapqYn0Me2knFn+A==}
- engines: {node: '>=0.10.0'}
+ deepmerge@4.3.1: {}
- /defaults/1.0.4:
- resolution: {integrity: sha512-eFuaLoy/Rxalv2kr+lqMlUnrDWV+3j4pljOIJgLIhI058IQfWJ7vXhyEIHu+HtC738klGALYxOKDO0bQP3tg8A==}
+ defaults@1.0.4:
dependencies:
clone: 1.0.4
- dev: false
- /defer-to-connect/2.0.1:
- resolution: {integrity: sha512-4tvttepXG1VaYGrRibk5EwJd1t4udunSOVMdLSAL6mId1ix438oPwPZMALY41FCijukO1L0twNcGsdzS7dHgDg==}
- engines: {node: '>=10'}
- dev: false
+ defer-to-connect@2.0.1: {}
- /define-data-property/1.1.4:
- resolution: {integrity: sha512-rBMvIzlpA8v6E+SJZoo++HAYqsLrkg7MSfIinMPFhmkorw7X+dOXVJQs+QT69zGkzMyfDnIMN2Wid1+NbL3T+A==}
- engines: {node: '>= 0.4'}
+ define-data-property@1.1.4:
dependencies:
es-define-property: 1.0.0
es-errors: 1.3.0
gopd: 1.0.1
- /define-lazy-prop/2.0.0:
- resolution: {integrity: sha512-Ds09qNh8yw3khSjiJjiUInaGX9xlqZDY7JVryGxdxV7NPeuqQfplOpQ66yJFZut3jLa5zOwkXw1g9EI2uKh4Og==}
- engines: {node: '>=8'}
- dev: false
+ define-lazy-prop@2.0.0: {}
- /define-properties/1.2.1:
- resolution: {integrity: sha512-8QmQKqEASLd5nx0U1B1okLElbUuuttJ/AnYmRXbbbGDWh6uS208EjD4Xqq/I9wK7u0v6O08XhTWnt5XtEbR6Dg==}
- engines: {node: '>= 0.4'}
+ define-properties@1.2.1:
dependencies:
define-data-property: 1.1.4
has-property-descriptors: 1.0.2
object-keys: 1.1.1
- /degenerator/3.0.4:
- resolution: {integrity: sha512-Z66uPeBfHZAHVmue3HPfyKu2Q0rC2cRxbTOsvmU/po5fvvcx27W4mIu9n0PUlQih4oUYvcG1BsbtVv8x7KDOSw==}
- engines: {node: '>= 6'}
+ degenerator@3.0.4:
dependencies:
ast-types: 0.13.4
escodegen: 1.14.3
esprima: 4.0.1
vm2: 3.9.19
- dev: false
- /degenerator/5.0.1:
- resolution: {integrity: sha512-TllpMR/t0M5sqCXfj85i4XaAzxmS5tVA16dqvdkMwGmzI+dXLXnw3J+3Vdv7VKw+ThlTMboK6i9rnZ6Nntj5CQ==}
- engines: {node: '>= 14'}
+ degenerator@5.0.1:
dependencies:
ast-types: 0.13.4
escodegen: 2.1.0
esprima: 4.0.1
- dev: false
- /del/5.1.0:
- resolution: {integrity: sha512-wH9xOVHnczo9jN2IW68BabcecVPxacIA3g/7z6vhSU/4stOKQzeCRK0yD0A24WiAAUJmmVpWqrERcTxnLo3AnA==}
- engines: {node: '>=8'}
+ del@5.1.0:
dependencies:
globby: 10.0.2
graceful-fs: 4.2.11
@@ -24936,526 +32031,307 @@ packages:
p-map: 3.0.0
rimraf: 3.0.2
slash: 3.0.0
- dev: false
- /delayed-stream/1.0.0:
- resolution: {integrity: sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ==}
- engines: {node: '>=0.4.0'}
+ delayed-stream@1.0.0: {}
- /delegates/1.0.0:
- resolution: {integrity: sha512-bd2L678uiWATM6m5Z1VzNCErI3jiGzt6HGY8OVICs40JQq/HALfbyNJmp0UDakEY4pMMaN0Ly5om/B1VI/+xfQ==}
- dev: true
+ delegates@1.0.0:
optional: true
- /delighted/2.1.0:
- resolution: {integrity: sha512-GC981FrvWm4ElRf0QHDUNDn1NvvyVy0bmfdygPtUmknUJDeFqgmf8+MJlX40KQBgg1NgkYdWQQlW8PuIqRR0qw==}
- dev: false
+ delighted@2.1.0: {}
- /denque/2.1.0:
- resolution: {integrity: sha512-HVQE3AAb/pxF8fQAoiqpvg9i3evqug3hoiwakOyZAwJm+6vZehbkYXZ0l4JxS+I3QxM97v5aaRNhj8v5oBhekw==}
- engines: {node: '>=0.10'}
- dev: false
+ denque@2.1.0: {}
- /depd/1.1.2:
- resolution: {integrity: sha512-7emPTl6Dpo6JRXOXjLRxck+FlLRX5847cLKEn00PLAgc3g2hTZZgr+e4c2v6QpSmLeFP3n5yUo7ft6avBK/5jQ==}
- engines: {node: '>= 0.6'}
- dev: false
+ depd@1.1.2: {}
- /depd/2.0.0:
- resolution: {integrity: sha512-g7nH6P6dyDioJogAAGprGpCtVImJhpPk/roCzdb3fIh61/s/nPsfR6onyMwkCAR/OlC3yBC0lESvUoQEAssIrw==}
- engines: {node: '>= 0.8'}
- dev: false
+ depd@2.0.0: {}
- /deprecation/2.3.1:
- resolution: {integrity: sha512-xmHIy4F3scKVwMsQ4WnVaS8bHOx0DmVwRywosKhaILI0ywMDWPtBSku2HNxRvF7jtwDRsoEwYQSfbxj8b7RlJQ==}
+ deprecation@2.3.1: {}
- /dequal/2.0.3:
- resolution: {integrity: sha512-0je+qPKHEMohvfRTCEo3CrPG6cAzAYgmzKyxRiYSSDkS6eGJdyVJm7WaYA5ECaAD9wLB2T4EEeymA5aFVcYXCA==}
- engines: {node: '>=6'}
- dev: true
+ depseek@0.4.1: {}
- /destroy/1.2.0:
- resolution: {integrity: sha512-2sJGJTaXIIaR1w4iJSNoN0hnMY7Gpc/n8D4qSCJw8QqFWXf7cuAgnEHxBpweaVcPevC2l3KpjYCx3NypQQgaJg==}
- engines: {node: '>= 0.8', npm: 1.2.8000 || >= 1.4.16}
- dev: false
+ dequal@2.0.3: {}
- /detect-newline/3.1.0:
- resolution: {integrity: sha512-TLz+x/vEXm/Y7P7wn1EJFNLxYpUD4TgMosxY6fAVJUnJMbupHBOncxyWUG9OpTaH9EBD7uFI5LfEgmMOc54DsA==}
- engines: {node: '>=8'}
- dev: true
+ destroy@1.2.0: {}
- /detect-node/2.1.0:
- resolution: {integrity: sha512-T0NIuQpnTvFDATNuHN5roPwSBG83rFsuO+MXXH9/3N1eFbn4wcPjttvjMLEPWJ0RGUYgQE7cGgS3tNxbqCGM7g==}
- dev: false
+ detect-libc@2.0.3:
+ optional: true
- /detective-amd/3.1.2:
- resolution: {integrity: sha512-jffU26dyqJ37JHR/o44La6CxtrDf3Rt9tvd2IbImJYxWKTMdBjctp37qoZ6ZcY80RHg+kzWz4bXn39e4P7cctQ==}
- engines: {node: '>=6.0'}
- hasBin: true
+ detect-newline@3.1.0: {}
+
+ detect-node@2.1.0: {}
+
+ detective-amd@3.1.2:
dependencies:
ast-module-types: 3.0.0
escodegen: 2.1.0
get-amd-module-type: 3.0.2
node-source-walk: 4.3.0
- dev: false
- /detective-cjs/3.1.3:
- resolution: {integrity: sha512-ljs7P0Yj9MK64B7G0eNl0ThWSYjhAaSYy+fQcpzaKalYl/UoQBOzOeLCSFEY1qEBhziZ3w7l46KG/nH+s+L7BQ==}
- engines: {node: '>=6.0'}
+ detective-cjs@3.1.3:
dependencies:
ast-module-types: 3.0.0
node-source-walk: 4.3.0
- dev: false
- /detective-es6/2.2.2:
- resolution: {integrity: sha512-eZUKCUsbHm8xoeoCM0z6JFwvDfJ5Ww5HANo+jPR7AzkFpW9Mun3t/TqIF2jjeWa2TFbAiGaWESykf2OQp3oeMw==}
- engines: {node: '>=6.0'}
+ detective-es6@2.2.2:
dependencies:
node-source-walk: 4.3.0
- dev: false
- /detective-less/1.0.2:
- resolution: {integrity: sha512-Rps1xDkEEBSq3kLdsdnHZL1x2S4NGDcbrjmd4q+PykK5aJwDdP5MBgrJw1Xo+kyUHuv3JEzPqxr+Dj9ryeDRTA==}
- engines: {node: '>= 6.0'}
+ detective-less@1.0.2:
dependencies:
- debug: 4.3.6
+ debug: 4.3.7(supports-color@9.4.0)
gonzales-pe: 4.3.0
node-source-walk: 4.3.0
transitivePeerDependencies:
- supports-color
- dev: false
- /detective-postcss/3.0.1:
- resolution: {integrity: sha512-tfTS2GdpUal5NY0aCqI4dpEy8Xfr88AehYKB0iBIZvo8y2g3UsrcDnrp9PR2FbzoW7xD5Rip3NJW7eCSvtqdUw==}
- engines: {node: '>=6.0.0'}
+ detective-postcss@3.0.1:
dependencies:
- debug: 4.3.6
+ debug: 4.3.7(supports-color@9.4.0)
is-url: 1.2.4
postcss: 7.0.39
postcss-values-parser: 1.5.0
transitivePeerDependencies:
- supports-color
- dev: false
- /detective-sass/3.0.2:
- resolution: {integrity: sha512-DNVYbaSlmti/eztFGSfBw4nZvwsTaVXEQ4NsT/uFckxhJrNRFUh24d76KzoCC3aarvpZP9m8sC2L1XbLej4F7g==}
- engines: {node: '>=6.0'}
+ detective-sass@3.0.2:
dependencies:
gonzales-pe: 4.3.0
node-source-walk: 4.3.0
- dev: false
- /detective-scss/2.0.2:
- resolution: {integrity: sha512-hDWnWh/l0tht/7JQltumpVea/inmkBaanJUcXRB9kEEXVwVUMuZd6z7eusQ6GcBFrfifu3pX/XPyD7StjbAiBg==}
- engines: {node: '>=6.0'}
+ detective-scss@2.0.2:
dependencies:
gonzales-pe: 4.3.0
node-source-walk: 4.3.0
- dev: false
- /detective-stylus/1.0.3:
- resolution: {integrity: sha512-4/bfIU5kqjwugymoxLXXLltzQNeQfxGoLm2eIaqtnkWxqbhap9puDVpJPVDx96hnptdERzS5Cy6p9N8/08A69Q==}
- dev: false
+ detective-stylus@1.0.3: {}
- /detective-typescript/5.8.0:
- resolution: {integrity: sha512-SrsUCfCaDTF64QVMHMidRal+kmkbIc5zP8cxxZPsomWx9vuEUjBlSJNhf7/ypE5cLdJJDI4qzKDmyzqQ+iz/xg==}
- engines: {node: '>=6.0'}
+ detective-typescript@5.8.0:
dependencies:
- '@typescript-eslint/typescript-estree': 2.34.0_typescript@3.9.10
+ '@typescript-eslint/typescript-estree': 2.34.0(typescript@3.9.10)
ast-module-types: 2.7.1
node-source-walk: 4.3.0
typescript: 3.9.10
transitivePeerDependencies:
- supports-color
- dev: false
- /devlop/1.1.0:
- resolution: {integrity: sha512-RWmIqhcFf1lRYBvNmr7qTNuyCt/7/ns2jbpp1+PalgE/rDQcBT0fioSMUpJ93irlUhC5hrg4cYqe6U+0ImW0rA==}
+ devlop@1.1.0:
dependencies:
dequal: 2.0.3
- dev: true
- /devtools-protocol/0.0.1107588:
- resolution: {integrity: sha512-yIR+pG9x65Xko7bErCUSQaDLrO/P1p3JUzEk7JCU4DowPcGHkTGUGQapcfcLc4qj0UaALwZ+cr0riFgiqpixcg==}
- dev: false
+ devtools-protocol@0.0.1107588: {}
- /devtools-protocol/0.0.1232444:
- resolution: {integrity: sha512-pM27vqEfxSxRkTMnF+XCmxSEb6duO5R+t8A9DEEJgy4Wz2RVanje2mmj99B6A3zv2r/qGfYlOvYznUhuokizmg==}
- dev: false
+ devtools-protocol@0.0.1232444: {}
- /dezalgo/1.0.4:
- resolution: {integrity: sha512-rXSP0bf+5n0Qonsb+SVVfNfIsimO4HEtmnIpPHY8Q1UCzKlQrDMfdobr8nJOOsRgWCyMRqeSBQzmWUMq7zvVig==}
+ dezalgo@1.0.4:
dependencies:
asap: 2.0.6
wrappy: 1.0.2
- dev: false
-
- /diff-match-patch/1.0.5:
- resolution: {integrity: sha512-IayShXAgj/QMXgB0IWmKx+rOPuGMhqm5w6jvFxmVenXKIzRqTAAsbBPT3kWQeGANj3jGgvcvv4yK6SxqYmikgw==}
- dev: true
- /diff-sequences/27.5.1:
- resolution: {integrity: sha512-k1gCAXAsNgLwEL+Y8Wvl+M6oEFj5bgazfZULpS5CneoPPXRaCCW7dm+q21Ky2VEE5X+VeRDBVg1Pcvvsr4TtNQ==}
- engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0}
- dev: true
+ diff-match-patch@1.0.5: {}
- /diff-sequences/29.6.3:
- resolution: {integrity: sha512-EjePK1srD3P08o2j4f0ExnylqRs5B9tJjcp9t1krH2qRi8CCdsYfwe9JgSLurFBWwq4uOlipzfk5fHNvwFKr8Q==}
- engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
- dev: true
+ diff-sequences@27.5.1: {}
- /diff/3.5.0:
- resolution: {integrity: sha512-A46qtFgd+g7pDZinpnwiRJtxbC1hpgf0uzP3iG89scHk0AUC7A1TGxf5OiiOUv/JMZR8GOt8hL900hV0bOy5xA==}
- engines: {node: '>=0.3.1'}
- dev: true
+ diff-sequences@29.6.3: {}
- /diff/5.2.0:
- resolution: {integrity: sha512-uIFDxqpRZGZ6ThOk84hEfqWoHx2devRFvpTZcTHur85vImfaxUbTW9Ryh4CpCuDnToOP1CEtXKIgytHBPVff5A==}
- engines: {node: '>=0.3.1'}
- dev: true
+ diff@3.5.0: {}
- /dir-glob/3.0.1:
- resolution: {integrity: sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA==}
- engines: {node: '>=8'}
+ dir-glob@3.0.1:
dependencies:
path-type: 4.0.0
- /discontinuous-range/1.0.0:
- resolution: {integrity: sha512-c68LpLbO+7kP/b1Hr1qs8/BJ09F5khZGTxqxZuhzxpmwJKOgRFHJWIb9/KmqnqHhLdO55aOxFH/EGBvUQbL/RQ==}
- dev: false
+ discontinuous-range@1.0.0: {}
- /do-wrapper/4.5.1:
- resolution: {integrity: sha512-E2I3xvDS306UwzpuQYL4wz5Fm+RvtV0cxOBPiWsflAEOA06mcBxAEUXvMeox9L6WI7R1PMiEhHLdo/s52JqUAQ==}
+ do-wrapper@4.5.1:
dependencies:
got: 11.8.6
- dev: false
- /doc-path/3.1.0:
- resolution: {integrity: sha512-Pv2hLQbUM8du5681lTWIYk0OtVBmNhMAeZNGeFhMMJBIR89Nw4XesBwee1Xtlfk83n71tn0Y6VsJOn4d3qIiTw==}
- engines: {node: '>=12'}
- dev: false
+ doc-path@3.1.0: {}
- /doctrine/2.1.0:
- resolution: {integrity: sha512-35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw==}
- engines: {node: '>=0.10.0'}
+ doctrine@2.1.0:
dependencies:
esutils: 2.0.3
- dev: true
- /doctrine/3.0.0:
- resolution: {integrity: sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w==}
- engines: {node: '>=6.0.0'}
+ doctrine@3.0.0:
dependencies:
esutils: 2.0.3
- dev: true
- /dom-serializer/1.4.1:
- resolution: {integrity: sha512-VHwB3KfrcOOkelEG2ZOfxqLZdfkil8PtJi4P8N2MMXucZq2yLp75ClViUlOVwyoHEDjYU433Aq+5zWP61+RGag==}
+ dom-helpers@5.2.1:
+ dependencies:
+ '@babel/runtime': 7.26.0
+ csstype: 3.1.3
+
+ dom-serializer@1.4.1:
dependencies:
domelementtype: 2.3.0
domhandler: 4.3.1
entities: 2.2.0
- dev: false
- /dom-serializer/2.0.0:
- resolution: {integrity: sha512-wIkAryiqt/nV5EQKqQpo3SToSOV9J0DnbJqwK7Wv/Trc92zIAYZ4FlMu+JPFW1DfGFt81ZTCGgDEabffXeLyJg==}
+ dom-serializer@2.0.0:
dependencies:
domelementtype: 2.3.0
domhandler: 5.0.3
entities: 4.5.0
- dev: false
- /domelementtype/2.3.0:
- resolution: {integrity: sha512-OLETBj6w0OsagBwdXnPdN0cnMfF9opN69co+7ZrbfPGrdpPVNBUj02spi6B1N7wChLQiPn4CSH/zJvXw56gmHw==}
- dev: false
+ domelementtype@2.3.0: {}
- /domhandler/4.3.1:
- resolution: {integrity: sha512-GrwoxYN+uWlzO8uhUXRl0P+kHE4GtVPfYzVLcUxPL7KNdHKj66vvlhiweIHqYYXWlw+T8iLMp42Lm67ghw4WMQ==}
- engines: {node: '>= 4'}
+ domhandler@4.3.1:
dependencies:
domelementtype: 2.3.0
- dev: false
- /domhandler/5.0.3:
- resolution: {integrity: sha512-cgwlv/1iFQiFnU96XXgROh8xTeetsnJiDsTc7TYCLFd9+/WNkIqPTxiM/8pSd8VIrhXGTf1Ny1q1hquVqDJB5w==}
- engines: {node: '>= 4'}
+ domhandler@5.0.3:
dependencies:
domelementtype: 2.3.0
- dev: false
- /domutils/2.8.0:
- resolution: {integrity: sha512-w96Cjofp72M5IIhpjgobBimYEfoPjx1Vx0BSX9P30WBdZW2WIKU0T1Bd0kz2eNZ9ikjKgHbEyKx8BB6H1L3h3A==}
+ domutils@2.8.0:
dependencies:
dom-serializer: 1.4.1
domelementtype: 2.3.0
domhandler: 4.3.1
- dev: false
- /domutils/3.1.0:
- resolution: {integrity: sha512-H78uMmQtI2AhgDJjWeQmHwJJ2bLPD3GMmO7Zja/ZZh84wkm+4ut+IUnUdRa8uCGX88DiVx1j6FRe1XfxEgjEZA==}
+ domutils@3.1.0:
dependencies:
dom-serializer: 2.0.0
domelementtype: 2.3.0
domhandler: 5.0.3
- dev: false
- /dot-prop/5.3.0:
- resolution: {integrity: sha512-QM8q3zDe58hqUqjraQOmzZ1LIH9SWQJTlEKCH4kJ2oQvLZk7RbQXvtDM2XEq3fwkV9CCvvH4LA0AV+ogFsBM2Q==}
- engines: {node: '>=8'}
+ dot-prop@5.3.0:
dependencies:
is-obj: 2.0.0
- dev: false
optional: true
- /dot-prop/6.0.1:
- resolution: {integrity: sha512-tE7ztYzXHIeyvc7N+hR3oi7FIbf/NIjVP9hmAt3yMXzrQ072/fpjGLx2GxNxGxUl5V73MEqYzioOMoVhGMJ5cA==}
- engines: {node: '>=10'}
+ dot-prop@6.0.1:
dependencies:
is-obj: 2.0.0
- dev: false
- /dotenv/8.6.0:
- resolution: {integrity: sha512-IrPdXQsk2BbzvCBGBOTmmSH5SodmqZNt4ERAZDmW4CT+tL8VtvinqywuANaFu4bOMWki16nqf0e4oC0QIaDr/g==}
- engines: {node: '>=10'}
- dev: false
+ dotenv@8.6.0: {}
- /double-ended-queue/2.0.0-0:
- resolution: {integrity: sha512-t5ouWOpItmHrm0J0+bX/cFrIjBFWnJkk5LbIJq6bbU/M4aLX2c3LrM4QYsBptwvlPe3WzdpQefQ0v1pe/A5wjg==}
- dev: false
+ double-ended-queue@2.0.0-0: {}
- /dropbox/10.34.0_@types+node-fetch@2.6.6:
- resolution: {integrity: sha512-5jb5/XzU0fSnq36/hEpwT5/QIep7MgqKuxghEG44xCu7HruOAjPdOb3x0geXv5O/hd0nHpQpWO+r5MjYTpMvJg==}
- engines: {node: '>=0.10.3'}
- peerDependencies:
- '@types/node-fetch': ^2.5.7
+ dropbox@10.34.0(@types/node-fetch@2.6.12):
dependencies:
- '@types/node-fetch': 2.6.6
+ '@types/node-fetch': 2.6.12
node-fetch: 2.7.0
transitivePeerDependencies:
- encoding
- dev: false
-
- /dts-critic/3.3.11_typescript@5.2.2:
- resolution: {integrity: sha512-HMO2f9AO7ge44YO8OK18f+cxm/IaE1CFuyNFbfJRCEbyazWj5X5wWDF6W4CGdo5Ax0ILYVfJ7L/rOwuUN1fzWw==}
- engines: {node: '>=10.17.0'}
- peerDependencies:
- typescript: '*'
- dependencies:
- '@definitelytyped/header-parser': 0.2.15
- command-exists: 1.2.9
- rimraf: 3.0.2
- semver: 6.3.1
- tmp: 0.2.1
- typescript: 5.2.2
- yargs: 15.4.1
- dev: true
- /dts-critic/3.3.11_typescript@5.5.4:
- resolution: {integrity: sha512-HMO2f9AO7ge44YO8OK18f+cxm/IaE1CFuyNFbfJRCEbyazWj5X5wWDF6W4CGdo5Ax0ILYVfJ7L/rOwuUN1fzWw==}
- engines: {node: '>=10.17.0'}
- peerDependencies:
- typescript: '*'
+ dts-critic@3.3.11(typescript@5.7.2):
dependencies:
'@definitelytyped/header-parser': 0.2.15
command-exists: 1.2.9
rimraf: 3.0.2
semver: 6.3.1
- tmp: 0.2.1
- typescript: 5.5.4
- yargs: 15.4.1
- dev: true
-
- /dtslint/4.2.1_typescript@5.2.2:
- resolution: {integrity: sha512-57mWY9osUEfS6k62ATS9RSgug1dZcuN4O31hO76u+iEexa6VUEbKoPGaA2mNtc0FQDcdTl0zEUtti79UQKSQyQ==}
- engines: {node: '>=10.0.0'}
- hasBin: true
- peerDependencies:
- typescript: '>= 3.0.0-dev || >= 3.1.0-dev || >= 3.2.0-dev || >= 3.3.0-dev || >= 3.4.0-dev || >= 3.5.0-dev || >= 3.6.0-dev || >= 3.7.0-dev || >= 3.8.0-dev || >= 3.9.0-dev || >= 4.0.0-dev'
- dependencies:
- '@definitelytyped/header-parser': 0.2.15
- '@definitelytyped/typescript-versions': 0.1.5
- '@definitelytyped/utils': 0.1.8
- dts-critic: 3.3.11_typescript@5.2.2
- fs-extra: 6.0.1
- json-stable-stringify: 1.0.2
- strip-json-comments: 2.0.1
- tslint: 5.14.0_typescript@5.2.2
- tsutils: 2.29.0_typescript@5.2.2
- typescript: 5.2.2
+ tmp: 0.2.3
+ typescript: 5.7.2
yargs: 15.4.1
- dev: true
- /dtslint/4.2.1_typescript@5.5.4:
- resolution: {integrity: sha512-57mWY9osUEfS6k62ATS9RSgug1dZcuN4O31hO76u+iEexa6VUEbKoPGaA2mNtc0FQDcdTl0zEUtti79UQKSQyQ==}
- engines: {node: '>=10.0.0'}
- hasBin: true
- peerDependencies:
- typescript: '>= 3.0.0-dev || >= 3.1.0-dev || >= 3.2.0-dev || >= 3.3.0-dev || >= 3.4.0-dev || >= 3.5.0-dev || >= 3.6.0-dev || >= 3.7.0-dev || >= 3.8.0-dev || >= 3.9.0-dev || >= 4.0.0-dev'
+ dtslint@4.2.1(typescript@5.7.2):
dependencies:
'@definitelytyped/header-parser': 0.2.15
'@definitelytyped/typescript-versions': 0.1.5
'@definitelytyped/utils': 0.1.8
- dts-critic: 3.3.11_typescript@5.5.4
+ dts-critic: 3.3.11(typescript@5.7.2)
fs-extra: 6.0.1
- json-stable-stringify: 1.0.2
+ json-stable-stringify: 1.1.1
strip-json-comments: 2.0.1
- tslint: 5.14.0_typescript@5.5.4
- tsutils: 2.29.0_typescript@5.5.4
- typescript: 5.5.4
+ tslint: 5.14.0(typescript@5.7.2)
+ tsutils: 2.29.0(typescript@5.7.2)
+ typescript: 5.7.2
yargs: 15.4.1
- dev: true
- /duplexer/0.1.2:
- resolution: {integrity: sha512-jtD6YG370ZCIi/9GTaJKQxWTZD045+4R4hTk/x1UyoqadyJ9x9CgSi1RlVDQF8U2sxLLSnFkCaMihqljHIWgMg==}
- dev: true
+ duplexer3@0.1.5: {}
- /duplexer3/0.1.5:
- resolution: {integrity: sha512-1A8za6ws41LQgv9HrE/66jyC5yuSjQ3L/KOpFtoBilsAK2iA2wuS5rTt1OCzIvtS2V7nVmedsUU+DGRcjBmOYA==}
- dev: false
+ duplexer@0.1.2: {}
- /duplexify/4.1.2:
- resolution: {integrity: sha512-fz3OjcNCHmRP12MJoZMPglx8m4rrFP8rovnk4vT8Fs+aonZoCwGg10dSsQsfP/E62eZcPTMSMP6686fu9Qlqtw==}
+ duplexify@4.1.3:
dependencies:
end-of-stream: 1.4.4
inherits: 2.0.4
readable-stream: 3.6.2
- stream-shift: 1.0.1
- dev: false
+ stream-shift: 1.0.3
- /e2b/1.0.5:
- resolution: {integrity: sha512-0c2xqNQfVcVBmETsd1bXWCYaN3iVl7m81dJVcjB7O2/c15A7t0s/FkydcZGzVvfZchj40/1f09AdjGX6nk1eNQ==}
- engines: {node: '>=18'}
+ e2b@1.0.5:
dependencies:
'@bufbuild/protobuf': 2.2.2
- '@connectrpc/connect': 2.0.0-rc.3_@bufbuild+protobuf@2.2.2
- '@connectrpc/connect-web': 2.0.0-rc.3_jstrmpjfjf66z7q7ylujb4ahui
+ '@connectrpc/connect': 2.0.0-rc.3(@bufbuild/protobuf@2.2.2)
+ '@connectrpc/connect-web': 2.0.0-rc.3(@bufbuild/protobuf@2.2.2)(@connectrpc/connect@2.0.0-rc.3(@bufbuild/protobuf@2.2.2))
compare-versions: 6.1.1
openapi-fetch: 0.9.8
platform: 1.3.6
- dev: false
- /eastasianwidth/0.2.0:
- resolution: {integrity: sha512-I88TYZWc9XiYHRQ4/3c5rjjfgkjhLyW2luGIheGERbNQ6OY7yTybanSpDXZa8y7VUP9YmDcYa+eyq4ca7iLqWA==}
- dev: true
+ eastasianwidth@0.2.0: {}
- /ecc-jsbn/0.1.2:
- resolution: {integrity: sha512-eh9O+hwRHNbG4BLTjEl3nw044CkGm5X6LoaCf7LPp7UU8Qrt47JYNi6nPX8xjW97TKGKm1ouctg0QSpZe9qrnw==}
+ ecc-jsbn@0.1.2:
dependencies:
jsbn: 0.1.1
safer-buffer: 2.1.2
- /ecdsa-sig-formatter/1.0.11:
- resolution: {integrity: sha512-nagl3RYrbNv6kQkeJIpt6NJZy8twLB/2vtz6yN9Z4vRKHN4/QZJIEbqohALSgwKdnksuY3k5Addp5lg8sVoVcQ==}
+ ecdsa-sig-formatter@1.0.11:
dependencies:
safe-buffer: 5.2.1
- dev: false
- /ee-first/1.1.1:
- resolution: {integrity: sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow==}
- dev: false
+ ee-first@1.1.1: {}
- /eivindfjeldstad-dot/0.0.1:
- resolution: {integrity: sha512-fQc4xSFjrQ35pissb3PGf+kew7jX3zsNAPjuswujUl6gjj9rhvZoO++tlRI+KLbT7bIL3KMWYyks49EP3luMNA==}
- deprecated: Use @eivifj/dot instead
- dev: false
+ eivindfjeldstad-dot@0.0.1: {}
- /ejs/3.1.10:
- resolution: {integrity: sha512-UeJmFfOrAQS8OJWPZ4qtgHyWExa088/MtK5UEyoJGFH67cDEXkZSviOiKRCZ4Xij0zxI3JECgYs3oKx+AizQBA==}
- engines: {node: '>=0.10.0'}
- hasBin: true
+ ejs@3.1.10:
dependencies:
jake: 10.9.2
- dev: true
- /electron-to-chromium/1.5.4:
- resolution: {integrity: sha512-orzA81VqLyIGUEA77YkVA1D+N+nNfl2isJVjjmOyrlxuooZ19ynb+dOlaDTqd/idKRS9lDCSBmtzM+kyCsMnkA==}
+ electron-to-chromium@1.5.64: {}
- /elf-cam/0.1.1:
- resolution: {integrity: sha512-tKSFTWOp5OwJSp6MKyQDX7umYDkvUuI8rxHXw8BuUQ63d9Trj9xLeo6SHyoTGSoZNNZVitFa+RuHHXuoAzN3Rw==}
- dev: false
+ elf-cam@0.1.1: {}
- /emitter-component/1.1.1:
- resolution: {integrity: sha512-G+mpdiAySMuB7kesVRLuyvYRqDmshB7ReKEVuyBPkzQlmiDiLrt7hHHIy4Aff552bgknVN7B2/d3lzhGO5dvpQ==}
- dev: false
+ emitter-component@1.1.2: {}
- /emittery/0.13.1:
- resolution: {integrity: sha512-DeWwawk6r5yR9jFgnDKYt4sLS0LmHJJi3ZOnb5/JdbYwj3nW+FxQnHIjhBKz8YLC7oRNPVM9NQ47I3CVx34eqQ==}
- engines: {node: '>=12'}
- dev: true
+ emittery@0.13.1: {}
- /emoji-regex/10.2.1:
- resolution: {integrity: sha512-97g6QgOk8zlDRdgq1WxwgTMgEWGVAQvB5Fdpgc1MkNy56la5SKP9GsMXKDOdqwn90/41a8yPwIGk1Y6WVbeMQA==}
- dev: true
+ emoji-regex@10.4.0: {}
- /emoji-regex/8.0.0:
- resolution: {integrity: sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==}
+ emoji-regex@8.0.0: {}
- /emoji-regex/9.2.2:
- resolution: {integrity: sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==}
- dev: true
+ emoji-regex@9.2.2: {}
- /emojis-list/3.0.0:
- resolution: {integrity: sha512-/kyM18EfinwXZbno9FyUGeFh87KC8HRQBQGildHZbEuRyWFOmv1U10o9BBp8XVZDVNNuQKyIGIu5ZYAAXJ0V2Q==}
- engines: {node: '>= 4'}
- dev: false
+ emojis-list@3.0.0: {}
- /enabled/2.0.0:
- resolution: {integrity: sha512-AKrN98kuwOzMIdAizXGI86UFBoo26CL21UM763y1h/GMSJ4/OHU9k2YlsmBpyScFo/wbLzWQJBMCW4+IO3/+OQ==}
- dev: false
+ enabled@2.0.0: {}
- /encodeurl/2.0.0:
- resolution: {integrity: sha512-Q0n9HRi4m6JuGIV1eFlmvJB7ZEVxu93IrMyiMsGC0lrMJMWzRgx6WGquyfQgZVb31vhGgXnfmPNNXmxnOkRBrg==}
- engines: {node: '>= 0.8'}
- dev: false
+ encodeurl@2.0.0: {}
- /encoding-japanese/2.0.0:
- resolution: {integrity: sha512-++P0RhebUC8MJAwJOsT93dT+5oc5oPImp1HubZpAuCZ5kTLnhuuBhKHj2jJeO/Gj93idPBWmIuQ9QWMe5rX3pQ==}
- engines: {node: '>=8.10.0'}
- dev: false
+ encoding-japanese@2.0.0: {}
- /end-of-stream/1.4.4:
- resolution: {integrity: sha512-+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q==}
+ encoding-japanese@2.1.0: {}
+
+ end-of-stream@1.4.4:
dependencies:
once: 1.4.0
- /enhanced-resolve/5.17.1:
- resolution: {integrity: sha512-LMHl3dXhTcfv8gM4kEzIUeTQ+7fpdA0l2tUf34BddXPkz2A5xJ5L/Pchd5BL6rdccM9QGvu0sWZzK1Z1t4wwyg==}
- engines: {node: '>=10.13.0'}
+ enhanced-resolve@5.17.1:
dependencies:
graceful-fs: 4.2.11
tapable: 2.2.1
- dev: true
- /ent/2.2.0:
- resolution: {integrity: sha512-GHrMyVZQWvTIdDtpiEXdHZnFQKzeO09apj8Cbl4pKWy4i0Oprcq17usfDt5aO63swf0JOeMWjWQE/LzgSRuWpA==}
- dev: false
+ enquirer@2.4.1:
+ dependencies:
+ ansi-colors: 4.1.3
+ strip-ansi: 6.0.1
+
+ ent@2.2.1:
+ dependencies:
+ punycode: 1.4.1
- /entities/2.1.0:
- resolution: {integrity: sha512-hCx1oky9PFrJ611mf0ifBLBRW8lUUVRlFolb5gWRfIELabBlbp9xZvrqZLZAs+NxFnbfQoeGd8wDkygjg7U85w==}
- dev: false
+ entities@2.2.0: {}
- /entities/2.2.0:
- resolution: {integrity: sha512-p92if5Nz619I0w+akJrLZH0MX0Pb5DX39XOwQTtXSdQQOaYH03S1uIQp4mhOZtAXrxq4ViO67YTiLBo2638o9A==}
- dev: false
+ entities@4.5.0: {}
- /entities/4.5.0:
- resolution: {integrity: sha512-V0hjH4dGPh9Ao5p0MoRY6BVqtwCjhz6vI5LT8AJ55H+4g9/4vbHx1I54fS0XuclLhDHArPQCiMjDxjaL8fPxhw==}
- engines: {node: '>=0.12'}
- dev: false
+ env-paths@2.2.1: {}
- /err-code/2.0.3:
- resolution: {integrity: sha512-2bmlRpNKBxT/CRmPOlyISQpNj+qSeYvcym/uT0Jx2bMOlKLtSy1ZmLuVxSEKKyor/N5yhvp/ZiG1oE3DEYMSFA==}
- dev: false
+ err-code@2.0.3: {}
- /error-ex/1.3.2:
- resolution: {integrity: sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==}
+ error-ex@1.3.2:
dependencies:
is-arrayish: 0.2.1
- dev: true
- /es-abstract/1.23.3:
- resolution: {integrity: sha512-e+HfNH61Bj1X9/jLc5v1owaLYuHdeHHSQlkhCBiTK8rBvKaULl/beGMxwrMXjpYrv4pz22BlY570vVePA2ho4A==}
- engines: {node: '>= 0.4'}
+ es-abstract@1.23.5:
dependencies:
array-buffer-byte-length: 1.0.1
arraybuffer.prototype.slice: 1.0.3
@@ -25488,10 +32364,10 @@ packages:
is-string: 1.0.7
is-typed-array: 1.1.13
is-weakref: 1.0.2
- object-inspect: 1.13.2
+ object-inspect: 1.13.3
object-keys: 1.1.1
object.assign: 4.1.5
- regexp.prototype.flags: 1.5.2
+ regexp.prototype.flags: 1.5.3
safe-array-concat: 1.1.2
safe-regex-test: 1.0.3
string.prototype.trim: 1.2.9
@@ -25499,45 +32375,33 @@ packages:
string.prototype.trimstart: 1.0.8
typed-array-buffer: 1.0.2
typed-array-byte-length: 1.0.1
- typed-array-byte-offset: 1.0.2
+ typed-array-byte-offset: 1.0.3
typed-array-length: 1.0.6
unbox-primitive: 1.0.2
which-typed-array: 1.1.15
- /es-aggregate-error/1.0.11:
- resolution: {integrity: sha512-DCiZiNlMlbvofET/cE55My387NiLvuGToBEZDdK9U2G3svDCjL8WOgO5Il6lO83nQ8qmag/R9nArdpaFQ/m3lA==}
- engines: {node: '>= 0.4'}
+ es-aggregate-error@1.0.13:
dependencies:
define-data-property: 1.1.4
define-properties: 1.2.1
- es-abstract: 1.23.3
+ es-abstract: 1.23.5
+ es-errors: 1.3.0
function-bind: 1.1.2
- get-intrinsic: 1.2.4
globalthis: 1.0.4
has-property-descriptors: 1.0.2
set-function-name: 2.0.2
- dev: false
- /es-array-method-boxes-properly/1.0.0:
- resolution: {integrity: sha512-wd6JXUmyHmt8T5a2xreUwKcGPq6f1f+WwIJkijUqiGcJz1qqnZgP6XIK+QyIWU5lT7imeNxUll48bziG+TSYcA==}
- dev: false
+ es-array-method-boxes-properly@1.0.0: {}
- /es-class/2.1.1:
- resolution: {integrity: sha512-loFNtCIGY81XvaHMzsxPocOgwZW71p+d/iES+zDSWeK9D4JaxrR/AoO0sZnWbV39D/ESppKbHrApxMi+Vbl8rg==}
- dev: false
+ es-class@2.1.1: {}
- /es-define-property/1.0.0:
- resolution: {integrity: sha512-jxayLKShrEqqzJ0eumQbVhTYQM27CfT1T35+gCgDFoL82JLsXqTJ76zv6A0YLOgEnLUMvLzsDsGIrl8NFpT2gQ==}
- engines: {node: '>= 0.4'}
+ es-define-property@1.0.0:
dependencies:
get-intrinsic: 1.2.4
- /es-errors/1.3.0:
- resolution: {integrity: sha512-Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw==}
- engines: {node: '>= 0.4'}
+ es-errors@1.3.0: {}
- /es-get-iterator/1.1.3:
- resolution: {integrity: sha512-sPZmqHBe6JIiTfN5q2pEi//TwxmAFHwj/XEuYjTuse78i8KxaqMTTzxPoFKuzRpDpTJ+0NAbpfenkmH2rePtuw==}
+ es-get-iterator@1.1.3:
dependencies:
call-bind: 1.0.7
get-intrinsic: 1.2.4
@@ -25549,132 +32413,110 @@ packages:
isarray: 2.0.5
stop-iteration-iterator: 1.0.0
- /es-iterator-helpers/1.1.0:
- resolution: {integrity: sha512-/SurEfycdyssORP/E+bj4sEu1CWw4EmLDsHynHwSXQ7utgbrMRWW195pTrCjFgFCddf/UkYm3oqKPRq5i8bJbw==}
- engines: {node: '>= 0.4'}
+ es-iterator-helpers@1.2.0:
dependencies:
call-bind: 1.0.7
define-properties: 1.2.1
- es-abstract: 1.23.3
+ es-abstract: 1.23.5
es-errors: 1.3.0
es-set-tostringtag: 2.0.3
function-bind: 1.1.2
get-intrinsic: 1.2.4
globalthis: 1.0.4
+ gopd: 1.0.1
has-property-descriptors: 1.0.2
has-proto: 1.0.3
has-symbols: 1.0.3
internal-slot: 1.0.7
iterator.prototype: 1.1.3
safe-array-concat: 1.1.2
- dev: true
- /es-object-atoms/1.0.0:
- resolution: {integrity: sha512-MZ4iQ6JwHOBQjahnjwaC1ZtIBH+2ohjamzAO3oaHcXYup7qxjF2fixyH+Q71voWHeOkI2q/TnJao/KfXYIZWbw==}
- engines: {node: '>= 0.4'}
+ es-object-atoms@1.0.0:
dependencies:
es-errors: 1.3.0
- /es-set-tostringtag/2.0.3:
- resolution: {integrity: sha512-3T8uNMC3OQTHkFUsFq8r/BwAXLHvU/9O9mE0fBc/MY5iq/8H7ncvO947LmYA6ldWw9Uh8Yhf25zu6n7nML5QWQ==}
- engines: {node: '>= 0.4'}
+ es-set-tostringtag@2.0.3:
dependencies:
get-intrinsic: 1.2.4
has-tostringtag: 1.0.2
hasown: 2.0.2
- /es-shim-unscopables/1.0.0:
- resolution: {integrity: sha512-Jm6GPcCdC30eMLbZ2x8z2WuRwAws3zTBBKuusffYVUrNj/GVSUAZ+xKMaUpfNDR5IbyNA5LJbaecoUVbmUcB1w==}
- dependencies:
- has: 1.0.3
-
- /es-shim-unscopables/1.0.2:
- resolution: {integrity: sha512-J3yBRXCzDu4ULnQwxyToo/OjdMx6akgVC7K6few0a7F/0wLtmKKN7I73AH5T2836UuXRqN7Qg+IIUw/+YJksRw==}
+ es-shim-unscopables@1.0.2:
dependencies:
hasown: 2.0.2
- dev: true
- /es-to-primitive/1.2.1:
- resolution: {integrity: sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA==}
- engines: {node: '>= 0.4'}
+ es-to-primitive@1.2.1:
dependencies:
is-callable: 1.2.7
is-date-object: 1.0.5
is-symbol: 1.0.4
- /es5-ext/0.10.62:
- resolution: {integrity: sha512-BHLqn0klhEpnOKSrzn/Xsz2UIW8j+cGmo9JLzr8BiUapV8hPL9+FliFqjwr9ngW7jWdnxv6eO+/LqyhJVqgrjA==}
- engines: {node: '>=0.10'}
- requiresBuild: true
+ es5-ext@0.10.64:
dependencies:
es6-iterator: 2.0.3
- es6-symbol: 3.1.3
+ es6-symbol: 3.1.4
+ esniff: 2.0.1
next-tick: 1.1.0
- dev: false
- /es6-iterator/2.0.3:
- resolution: {integrity: sha512-zw4SRzoUkd+cl+ZoE15A9o1oQd920Bb0iOJMQkQhl3jNc03YqVjAhG7scf9C5KWRU/R13Orf588uCC6525o02g==}
+ es6-iterator@2.0.3:
dependencies:
- d: 1.0.1
- es5-ext: 0.10.62
- es6-symbol: 3.1.3
- dev: false
+ d: 1.0.2
+ es5-ext: 0.10.64
+ es6-symbol: 3.1.4
- /es6-promise/3.3.1:
- resolution: {integrity: sha512-SOp9Phqvqn7jtEUxPWdWfWoLmyt2VaJ6MpvP9Comy1MceMXqE6bxvaTu4iaxpYYPzhny28Lc+M87/c2cPK6lDg==}
- dev: false
+ es6-promise@3.3.1: {}
- /es6-symbol/3.1.3:
- resolution: {integrity: sha512-NJ6Yn3FuDinBaBRWl/q5X/s4koRHBrgKAu+yGI6JCBeiu3qrcbJhwT2GeR/EXVfylRk8dpQVJoLEFhK+Mu31NA==}
+ es6-symbol@3.1.4:
dependencies:
- d: 1.0.1
+ d: 1.0.2
ext: 1.7.0
- dev: false
- /es6-weak-map/2.0.3:
- resolution: {integrity: sha512-p5um32HOTO1kP+w7PRnB+5lQ43Z6muuMuIMffvDN8ZB4GcnjLBV6zGStpbASIMk4DCAvEaamhe2zhyCb/QXXsA==}
+ es6-weak-map@2.0.3:
dependencies:
- d: 1.0.1
- es5-ext: 0.10.62
+ d: 1.0.2
+ es5-ext: 0.10.64
es6-iterator: 2.0.3
- es6-symbol: 3.1.3
- dev: false
-
- /esbuild/0.11.10:
- resolution: {integrity: sha512-XvGbf+UreVFA24Tlk6sNOqNcvF2z49XAZt4E7A4H80+yqn944QOLTTxaU0lkdYNtZKFiITNea+VxmtrfjvnLPA==}
- hasBin: true
- requiresBuild: true
- dev: false
-
- /escalade/3.1.1:
- resolution: {integrity: sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw==}
- engines: {node: '>=6'}
- dev: true
-
- /escalade/3.1.2:
- resolution: {integrity: sha512-ErCHMCae19vR8vQGe50xIsVomy19rg6gFu3+r3jkEO46suLMWBksvVyoGgQV+jOfl84ZSOSlmv6Gxa89PmTGmA==}
- engines: {node: '>=6'}
-
- /escape-html/1.0.3:
- resolution: {integrity: sha512-NiSupZ4OeuGwr68lGIeym/ksIZMJodUGOSCZ/FSnTxcrekbvqrgdUxlJOMpijaKZVjAJrWrGs/6Jy8OMuyj9ow==}
- dev: false
-
- /escape-string-regexp/1.0.5:
- resolution: {integrity: sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==}
- engines: {node: '>=0.8.0'}
-
- /escape-string-regexp/2.0.0:
- resolution: {integrity: sha512-UpzcLCXolUWcNu5HtVMHYdXJjArjsF9C0aNnquZYY4uW/Vu0miy5YoWvbV345HauVvcAUnpRuhMMcqTcGOY2+w==}
- engines: {node: '>=8'}
+ es6-symbol: 3.1.4
- /escape-string-regexp/4.0.0:
- resolution: {integrity: sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==}
- engines: {node: '>=10'}
+ esbuild@0.11.10: {}
- /escodegen/1.14.3:
- resolution: {integrity: sha512-qFcX0XJkdg+PB3xjZZG/wKSuT1PnQWx57+TVSjIMmILd2yC/6ByYElPwJnslDsuWuSAp4AwJGumarAAmJch5Kw==}
- engines: {node: '>=4.0'}
- hasBin: true
+ esbuild@0.21.5:
+ optionalDependencies:
+ '@esbuild/aix-ppc64': 0.21.5
+ '@esbuild/android-arm': 0.21.5
+ '@esbuild/android-arm64': 0.21.5
+ '@esbuild/android-x64': 0.21.5
+ '@esbuild/darwin-arm64': 0.21.5
+ '@esbuild/darwin-x64': 0.21.5
+ '@esbuild/freebsd-arm64': 0.21.5
+ '@esbuild/freebsd-x64': 0.21.5
+ '@esbuild/linux-arm': 0.21.5
+ '@esbuild/linux-arm64': 0.21.5
+ '@esbuild/linux-ia32': 0.21.5
+ '@esbuild/linux-loong64': 0.21.5
+ '@esbuild/linux-mips64el': 0.21.5
+ '@esbuild/linux-ppc64': 0.21.5
+ '@esbuild/linux-riscv64': 0.21.5
+ '@esbuild/linux-s390x': 0.21.5
+ '@esbuild/linux-x64': 0.21.5
+ '@esbuild/netbsd-x64': 0.21.5
+ '@esbuild/openbsd-x64': 0.21.5
+ '@esbuild/sunos-x64': 0.21.5
+ '@esbuild/win32-arm64': 0.21.5
+ '@esbuild/win32-ia32': 0.21.5
+ '@esbuild/win32-x64': 0.21.5
+
+ escalade@3.2.0: {}
+
+ escape-html@1.0.3: {}
+
+ escape-string-regexp@1.0.5: {}
+
+ escape-string-regexp@2.0.0: {}
+
+ escape-string-regexp@4.0.0: {}
+
+ escodegen@1.14.3:
dependencies:
esprima: 4.0.1
estraverse: 4.3.0
@@ -25682,149 +32524,97 @@ packages:
optionator: 0.8.3
optionalDependencies:
source-map: 0.6.1
- dev: false
- /escodegen/2.1.0:
- resolution: {integrity: sha512-2NlIDTwUWJN0mRPQOdtQBzbUHvdGY2P1VXSyU83Q3xKxM7WHX2Ql8dKq782Q9TgQUNOLEzEYu9bzLNj1q88I5w==}
- engines: {node: '>=6.0'}
- hasBin: true
+ escodegen@2.1.0:
dependencies:
esprima: 4.0.1
estraverse: 5.3.0
esutils: 2.0.3
optionalDependencies:
source-map: 0.6.1
- dev: false
- /eslint-config-next/14.2.15_qkejthbfznbxawpodlwdvzhwbm:
- resolution: {integrity: sha512-mKg+NC/8a4JKLZRIOBplxXNdStgxy7lzWuedUaCc8tev+Al9mwDUTujQH6W6qXDH9kycWiVo28tADWGvpBsZcQ==}
- peerDependencies:
- eslint: ^7.23.0 || ^8.0.0
- typescript: '>=3.3.1'
- peerDependenciesMeta:
- typescript:
- optional: true
+ eslint-compat-utils@0.5.1(eslint@8.57.1):
+ dependencies:
+ eslint: 8.57.1
+ semver: 7.6.3
+
+ eslint-config-next@15.0.3(eslint@8.57.1)(typescript@5.6.3):
dependencies:
- '@next/eslint-plugin-next': 14.2.15
+ '@next/eslint-plugin-next': 15.0.3
'@rushstack/eslint-patch': 1.10.4
- '@typescript-eslint/eslint-plugin': 5.62.0_lvg7vfeyjgbaq3eyeq5ilmueem
- '@typescript-eslint/parser': 5.62.0_qkejthbfznbxawpodlwdvzhwbm
- eslint: 8.15.0
+ '@typescript-eslint/eslint-plugin': 8.15.0(@typescript-eslint/parser@8.15.0(eslint@8.57.1)(typescript@5.6.3))(eslint@8.57.1)(typescript@5.6.3)
+ '@typescript-eslint/parser': 8.15.0(eslint@8.57.1)(typescript@5.6.3)
+ eslint: 8.57.1
eslint-import-resolver-node: 0.3.9
- eslint-import-resolver-typescript: 3.6.3_vseim5pjoykreg22l6knveo5cy
- eslint-plugin-import: 2.31.0_3plzrvwelkcitgi4wvrja7rwii
- eslint-plugin-jsx-a11y: 6.10.0_eslint@8.15.0
- eslint-plugin-react: 7.37.1_eslint@8.15.0
- eslint-plugin-react-hooks: 5.0.0-canary-7118f5dd7-20230705_eslint@8.15.0
- typescript: 5.2.2
+ eslint-import-resolver-typescript: 3.6.3(@typescript-eslint/parser@8.15.0(eslint@8.57.1)(typescript@5.6.3))(eslint-import-resolver-node@0.3.9)(eslint-plugin-import@2.31.0)(eslint@8.57.1)
+ eslint-plugin-import: 2.31.0(@typescript-eslint/parser@8.15.0(eslint@8.57.1)(typescript@5.6.3))(eslint-import-resolver-typescript@3.6.3)(eslint@8.57.1)
+ eslint-plugin-jsx-a11y: 6.10.2(eslint@8.57.1)
+ eslint-plugin-react: 7.37.2(eslint@8.57.1)
+ eslint-plugin-react-hooks: 5.0.0(eslint@8.57.1)
+ optionalDependencies:
+ typescript: 5.6.3
transitivePeerDependencies:
- eslint-import-resolver-webpack
- eslint-plugin-import-x
- supports-color
- dev: true
- /eslint-import-resolver-node/0.3.9:
- resolution: {integrity: sha512-WFj2isz22JahUv+B788TlO3N6zL3nNJGU8CcZbPZvVEkBPaJdCV4vy5wyghty5ROFbCRnm132v8BScu5/1BQ8g==}
+ eslint-import-resolver-node@0.3.9:
dependencies:
debug: 3.2.7
is-core-module: 2.15.1
resolve: 1.22.8
transitivePeerDependencies:
- supports-color
- dev: true
- /eslint-import-resolver-typescript/3.6.3_vseim5pjoykreg22l6knveo5cy:
- resolution: {integrity: sha512-ud9aw4szY9cCT1EWWdGv1L1XR6hh2PaRWif0j2QjQ0pgTY/69iw+W0Z4qZv5wHahOl8isEr+k/JnyAqNQkLkIA==}
- engines: {node: ^14.18.0 || >=16.0.0}
- peerDependencies:
- eslint: '*'
- eslint-plugin-import: '*'
- eslint-plugin-import-x: '*'
- peerDependenciesMeta:
- eslint-plugin-import:
- optional: true
- eslint-plugin-import-x:
- optional: true
+ eslint-import-resolver-typescript@3.6.3(@typescript-eslint/parser@8.15.0(eslint@8.57.1)(typescript@5.6.3))(eslint-import-resolver-node@0.3.9)(eslint-plugin-import@2.31.0)(eslint@8.57.1):
dependencies:
'@nolyfill/is-core-module': 1.0.39
- debug: 4.3.6
+ debug: 4.3.7(supports-color@9.4.0)
enhanced-resolve: 5.17.1
- eslint: 8.15.0
- eslint-module-utils: 2.12.0_m2moow5h6xkvki42jpz4a2li5u
- eslint-plugin-import: 2.31.0_3plzrvwelkcitgi4wvrja7rwii
+ eslint: 8.57.1
+ eslint-module-utils: 2.12.0(@typescript-eslint/parser@8.15.0(eslint@8.57.1)(typescript@5.6.3))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.6.3)(eslint@8.57.1)
fast-glob: 3.3.2
get-tsconfig: 4.8.1
is-bun-module: 1.2.1
is-glob: 4.0.3
+ optionalDependencies:
+ eslint-plugin-import: 2.31.0(@typescript-eslint/parser@8.15.0(eslint@8.57.1)(typescript@5.6.3))(eslint-import-resolver-typescript@3.6.3)(eslint@8.57.1)
transitivePeerDependencies:
- '@typescript-eslint/parser'
- eslint-import-resolver-node
- eslint-import-resolver-webpack
- supports-color
- dev: true
- /eslint-module-utils/2.12.0_m2moow5h6xkvki42jpz4a2li5u:
- resolution: {integrity: sha512-wALZ0HFoytlyh/1+4wuZ9FJCD/leWHQzzrxJ8+rebyReSLk7LApMyd3WJaLVoN+D5+WIdJyDK1c6JnE65V4Zyg==}
- engines: {node: '>=4'}
- peerDependencies:
- '@typescript-eslint/parser': '*'
- eslint: '*'
- eslint-import-resolver-node: '*'
- eslint-import-resolver-typescript: '*'
- eslint-import-resolver-webpack: '*'
- peerDependenciesMeta:
- '@typescript-eslint/parser':
- optional: true
- eslint:
- optional: true
- eslint-import-resolver-node:
- optional: true
- eslint-import-resolver-typescript:
- optional: true
- eslint-import-resolver-webpack:
- optional: true
+ eslint-module-utils@2.12.0(@typescript-eslint/parser@8.15.0(eslint@8.57.1)(typescript@5.6.3))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.6.3)(eslint@8.57.1):
dependencies:
- '@typescript-eslint/parser': 5.62.0_qkejthbfznbxawpodlwdvzhwbm
debug: 3.2.7
- eslint: 8.15.0
+ optionalDependencies:
+ '@typescript-eslint/parser': 8.15.0(eslint@8.57.1)(typescript@5.6.3)
+ eslint: 8.57.1
eslint-import-resolver-node: 0.3.9
- eslint-import-resolver-typescript: 3.6.3_vseim5pjoykreg22l6knveo5cy
+ eslint-import-resolver-typescript: 3.6.3(@typescript-eslint/parser@8.15.0(eslint@8.57.1)(typescript@5.6.3))(eslint-import-resolver-node@0.3.9)(eslint-plugin-import@2.31.0)(eslint@8.57.1)
transitivePeerDependencies:
- supports-color
- dev: true
- /eslint-plugin-es/3.0.1_eslint@8.15.0:
- resolution: {integrity: sha512-GUmAsJaN4Fc7Gbtl8uOBlayo2DqhwWvEzykMHSCZHU3XdJ+NSzzZcVhXh3VxX5icqQ+oQdIEawXX8xkR3mIFmQ==}
- engines: {node: '>=8.10.0'}
- peerDependencies:
- eslint: '>=4.19.1'
+ eslint-plugin-es-x@7.8.0(eslint@8.57.1):
dependencies:
- eslint: 8.15.0
- eslint-utils: 2.1.0
- regexpp: 3.2.0
- dev: true
+ '@eslint-community/eslint-utils': 4.4.1(eslint@8.57.1)
+ '@eslint-community/regexpp': 4.12.1
+ eslint: 8.57.1
+ eslint-compat-utils: 0.5.1(eslint@8.57.1)
- /eslint-plugin-import/2.31.0_3plzrvwelkcitgi4wvrja7rwii:
- resolution: {integrity: sha512-ixmkI62Rbc2/w8Vfxyh1jQRTdRTF52VxwRVHl/ykPAmqG+Nb7/kNn+byLP0LxPgI7zWA16Jt82SybJInmMia3A==}
- engines: {node: '>=4'}
- peerDependencies:
- '@typescript-eslint/parser': '*'
- eslint: ^2 || ^3 || ^4 || ^5 || ^6 || ^7.2.0 || ^8 || ^9
- peerDependenciesMeta:
- '@typescript-eslint/parser':
- optional: true
+ eslint-plugin-import@2.31.0(@typescript-eslint/parser@8.15.0(eslint@8.57.1)(typescript@5.6.3))(eslint-import-resolver-typescript@3.6.3)(eslint@8.57.1):
dependencies:
'@rtsao/scc': 1.1.0
- '@typescript-eslint/parser': 5.62.0_qkejthbfznbxawpodlwdvzhwbm
array-includes: 3.1.8
array.prototype.findlastindex: 1.2.5
array.prototype.flat: 1.3.2
array.prototype.flatmap: 1.3.2
debug: 3.2.7
doctrine: 2.1.0
- eslint: 8.15.0
+ eslint: 8.57.1
eslint-import-resolver-node: 0.3.9
- eslint-module-utils: 2.12.0_m2moow5h6xkvki42jpz4a2li5u
+ eslint-module-utils: 2.12.0(@typescript-eslint/parser@8.15.0(eslint@8.57.1)(typescript@5.6.3))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.6.3)(eslint@8.57.1)
hasown: 2.0.2
is-core-module: 2.15.1
is-glob: 4.0.3
@@ -25835,62 +32625,42 @@ packages:
semver: 6.3.1
string.prototype.trimend: 1.0.8
tsconfig-paths: 3.15.0
+ optionalDependencies:
+ '@typescript-eslint/parser': 8.15.0(eslint@8.57.1)(typescript@5.6.3)
transitivePeerDependencies:
- eslint-import-resolver-typescript
- eslint-import-resolver-webpack
- supports-color
- dev: true
- /eslint-plugin-jest/26.9.0_pjroak5divhl36k3bzc5twoh2m:
- resolution: {integrity: sha512-TWJxWGp1J628gxh2KhaH1H1paEdgE2J61BBF1I59c6xWeL5+D1BzMxGDN/nXAfX+aSkR5u80K+XhskK6Gwq9ng==}
- engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
- peerDependencies:
- '@typescript-eslint/eslint-plugin': ^5.0.0
- eslint: ^6.0.0 || ^7.0.0 || ^8.0.0
- jest: '*'
- peerDependenciesMeta:
- '@typescript-eslint/eslint-plugin':
- optional: true
- jest:
- optional: true
+ eslint-plugin-jest@28.9.0(@typescript-eslint/eslint-plugin@8.15.0(@typescript-eslint/parser@8.15.0(eslint@8.57.1)(typescript@5.6.3))(eslint@8.57.1)(typescript@5.6.3))(eslint@8.57.1)(jest@29.7.0(@types/node@20.17.6)(babel-plugin-macros@3.1.0))(typescript@5.6.3):
dependencies:
- '@typescript-eslint/eslint-plugin': 5.62.0_lvg7vfeyjgbaq3eyeq5ilmueem
- '@typescript-eslint/utils': 5.62.0_qkejthbfznbxawpodlwdvzhwbm
- eslint: 8.15.0
- jest: 29.7.0_@types+node@20.9.2
+ '@typescript-eslint/utils': 8.15.0(eslint@8.57.1)(typescript@5.6.3)
+ eslint: 8.57.1
+ optionalDependencies:
+ '@typescript-eslint/eslint-plugin': 8.15.0(@typescript-eslint/parser@8.15.0(eslint@8.57.1)(typescript@5.6.3))(eslint@8.57.1)(typescript@5.6.3)
+ jest: 29.7.0(@types/node@20.17.6)(babel-plugin-macros@3.1.0)
transitivePeerDependencies:
- supports-color
- typescript
- dev: true
- /eslint-plugin-jsonc/1.7.0_eslint@8.15.0:
- resolution: {integrity: sha512-pb3CAD9B0zhv3r9Bg9AdzswL50I3mbIq1ys+tNeuaDeibFlweo84SBNm22oqaFx/Dka+YZw2SLukAkQlJzSHMQ==}
- engines: {node: '>=8.10.0'}
- peerDependencies:
- eslint: '>=5.0.0'
+ eslint-plugin-jsonc@1.7.0(eslint@8.57.1):
dependencies:
- eslint: 8.15.0
- eslint-utils: 3.0.0_eslint@8.15.0
+ eslint: 8.57.1
+ eslint-utils: 3.0.0(eslint@8.57.1)
jsonc-eslint-parser: 1.4.1
natural-compare: 1.4.0
- dev: true
- /eslint-plugin-jsx-a11y/6.10.0_eslint@8.15.0:
- resolution: {integrity: sha512-ySOHvXX8eSN6zz8Bywacm7CvGNhUtdjvqfQDVe6020TUK34Cywkw7m0KsCCk1Qtm9G1FayfTN1/7mMYnYO2Bhg==}
- engines: {node: '>=4.0'}
- peerDependencies:
- eslint: ^3 || ^4 || ^5 || ^6 || ^7 || ^8 || ^9
+ eslint-plugin-jsx-a11y@6.10.2(eslint@8.57.1):
dependencies:
- aria-query: 5.1.3
+ aria-query: 5.3.2
array-includes: 3.1.8
array.prototype.flatmap: 1.3.2
ast-types-flow: 0.0.8
- axe-core: 4.10.0
+ axe-core: 4.10.2
axobject-query: 4.1.0
damerau-levenshtein: 1.0.8
emoji-regex: 9.2.2
- es-iterator-helpers: 1.1.0
- eslint: 8.15.0
+ eslint: 8.57.1
hasown: 2.0.2
jsx-ast-utils: 3.3.5
language-tags: 1.0.9
@@ -25898,74 +32668,60 @@ packages:
object.fromentries: 2.0.8
safe-regex-test: 1.0.3
string.prototype.includes: 2.0.1
- dev: true
-
- /eslint-plugin-node/11.1.0_eslint@8.15.0:
- resolution: {integrity: sha512-oUwtPJ1W0SKD0Tr+wqu92c5xuCeQqB3hSCHasn/ZgjFdA9iDGNkNf2Zi9ztY7X+hNuMib23LNGRm6+uN+KLE3g==}
- engines: {node: '>=8.10.0'}
- peerDependencies:
- eslint: '>=5.16.0'
- dependencies:
- eslint: 8.15.0
- eslint-plugin-es: 3.0.1_eslint@8.15.0
- eslint-utils: 2.1.0
- ignore: 5.3.1
- minimatch: 3.1.2
- resolve: 1.22.8
- semver: 6.3.1
- dev: true
- /eslint-plugin-pipedream/0.2.4:
- resolution: {integrity: sha512-mKgRf5DFJnxcDantRh0b7CoSNRqPiDZMlAP9Ab/Pha8Uq7ZseIEiRGtWOJwp9tHSZnNOe1+MCN1X6yXnWC39sA==}
- dev: true
+ eslint-plugin-n@17.14.0(eslint@8.57.1):
+ dependencies:
+ '@eslint-community/eslint-utils': 4.4.1(eslint@8.57.1)
+ enhanced-resolve: 5.17.1
+ eslint: 8.57.1
+ eslint-plugin-es-x: 7.8.0(eslint@8.57.1)
+ get-tsconfig: 4.8.1
+ globals: 15.12.0
+ ignore: 5.3.2
+ minimatch: 9.0.5
+ semver: 7.6.3
- /eslint-plugin-putout/15.8.1_cb7iv3cal4meppzziyv6oewpte:
- resolution: {integrity: sha512-U6558vsWx+IlgrEMGHZS6vVpvaPiWci75MJzxJQIdw8jNIsG5ai3YMQEabf4V810l6UB7m9rXMX0Bnjxv1uOeg==}
- engines: {node: '>=16'}
- peerDependencies:
- eslint: '>=8.0.0'
- putout: '>=26'
+ eslint-plugin-pipedream@0.2.4: {}
+
+ eslint-plugin-putout@23.2.0(eslint@8.57.1)(putout@36.13.1(eslint@8.57.1)(typescript@5.6.3)):
dependencies:
- '@babel/core': 7.23.0
- '@babel/eslint-parser': 7.22.15_uyhtsqgctq6k5edt5xbx6l7m4m
- '@babel/plugin-syntax-class-properties': 7.12.13_@babel+core@7.23.0
- '@babel/traverse': 7.23.0
- '@putout/engine-parser': 5.6.0
- '@putout/eslint-config': 7.4.0_eslint@8.15.0
- '@typescript-eslint/eslint-plugin': 5.62.0_6g6eennhkqjl6gzwjnnl72aq3u
- '@typescript-eslint/parser': 5.62.0_hx5tgzcbd2ycqgjduqhliuc3jm
+ '@babel/core': 8.0.0-alpha.13
+ '@babel/eslint-parser': 8.0.0-alpha.13(@babel/core@8.0.0-alpha.13)(eslint@8.57.1)
+ '@eslint/eslintrc': 3.2.0
+ '@putout/engine-parser': 11.0.1
+ '@putout/eslint': 3.6.0(eslint@8.57.1)
+ '@putout/eslint-config': 9.3.0(eslint@8.57.1)
+ '@stylistic/eslint-plugin-jsx': 2.11.0(eslint@8.57.1)
+ '@stylistic/eslint-plugin-ts': 2.11.0(eslint@8.57.1)(typescript@5.6.3)
+ '@typescript-eslint/eslint-plugin': 8.15.0(@typescript-eslint/parser@8.15.0(eslint@8.57.1)(typescript@5.6.3))(eslint@8.57.1)(typescript@5.6.3)
+ '@typescript-eslint/parser': 8.15.0(eslint@8.57.1)(typescript@5.6.3)
align-spaces: 1.0.4
- eslint: 8.15.0
- eslint-plugin-node: 11.1.0_eslint@8.15.0
- putout: 32.2.0_typescript@5.2.2
+ eslint: 8.57.1
+ eslint-plugin-n: 17.14.0(eslint@8.57.1)
+ eslint-plugin-react: 7.37.2(eslint@8.57.1)
+ parse-import-specifiers: 1.0.3
+ putout: 36.13.1(eslint@8.57.1)(typescript@5.6.3)
+ synckit: 0.9.2
try-catch: 3.0.1
- typescript: 4.9.5
+ try-to-catch: 3.0.1
+ typescript: 5.6.3
transitivePeerDependencies:
+ - '@babel/preset-typescript'
- supports-color
- dev: true
- /eslint-plugin-react-hooks/5.0.0-canary-7118f5dd7-20230705_eslint@8.15.0:
- resolution: {integrity: sha512-AZYbMo/NW9chdL7vk6HQzQhT+PvTAEVqWk9ziruUoW2kAOcN5qNyelv70e0F1VNQAbvutOC9oc+xfWycI9FxDw==}
- engines: {node: '>=10'}
- peerDependencies:
- eslint: ^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0-0
+ eslint-plugin-react-hooks@5.0.0(eslint@8.57.1):
dependencies:
- eslint: 8.15.0
- dev: true
+ eslint: 8.57.1
- /eslint-plugin-react/7.37.1_eslint@8.15.0:
- resolution: {integrity: sha512-xwTnwDqzbDRA8uJ7BMxPs/EXRB3i8ZfnOIp8BsxEQkT0nHPp+WWceqGgo6rKb9ctNi8GJLDT4Go5HAWELa/WMg==}
- engines: {node: '>=4'}
- peerDependencies:
- eslint: ^3 || ^4 || ^5 || ^6 || ^7 || ^8 || ^9.7
+ eslint-plugin-react@7.37.2(eslint@8.57.1):
dependencies:
array-includes: 3.1.8
array.prototype.findlast: 1.2.5
array.prototype.flatmap: 1.3.2
array.prototype.tosorted: 1.1.4
doctrine: 2.1.0
- es-iterator-helpers: 1.1.0
- eslint: 8.15.0
+ es-iterator-helpers: 1.2.0
+ eslint: 8.57.1
estraverse: 5.3.0
hasown: 2.0.2
jsx-ast-utils: 3.3.5
@@ -25978,184 +32734,135 @@ packages:
semver: 6.3.1
string.prototype.matchall: 4.0.11
string.prototype.repeat: 1.0.0
- dev: true
-
- /eslint-scope/5.1.1:
- resolution: {integrity: sha512-2NxwbF/hZ0KpepYN0cNbo+FN6XoK7GaHlQhgx/hIZl6Va0bF45RQOOwhLIy8lQDbuCiadSLCBnH2CFYquit5bw==}
- engines: {node: '>=8.0.0'}
- dependencies:
- esrecurse: 4.3.0
- estraverse: 4.3.0
- dev: true
- /eslint-scope/7.2.2:
- resolution: {integrity: sha512-dOt21O7lTMhDM+X9mB4GX+DZrZtCUJPL/wlcTqxyrx5IvO0IYtILdtrQGQp+8n5S0gwSVmOf9NQrjMOgfQZlIg==}
- engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
+ eslint-scope@7.2.2:
dependencies:
esrecurse: 4.3.0
estraverse: 5.3.0
- dev: true
- /eslint-utils/2.1.0:
- resolution: {integrity: sha512-w94dQYoauyvlDc43XnGB8lU3Zt713vNChgt4EWwhXAP2XkBvndfxF0AgIqKOOasjPIPzj9JqgwkwbCYD0/V3Zg==}
- engines: {node: '>=6'}
+ eslint-utils@2.1.0:
dependencies:
eslint-visitor-keys: 1.3.0
- dev: true
- /eslint-utils/3.0.0_eslint@8.15.0:
- resolution: {integrity: sha512-uuQC43IGctw68pJA1RgbQS8/NP7rch6Cwd4j3ZBtgo4/8Flj4eGE7ZYSZRN3iq5pVUv6GPdW5Z1RFleo84uLDA==}
- engines: {node: ^10.0.0 || ^12.0.0 || >= 14.0.0}
- peerDependencies:
- eslint: '>=5'
+ eslint-utils@3.0.0(eslint@8.57.1):
dependencies:
- eslint: 8.15.0
+ eslint: 8.57.1
eslint-visitor-keys: 2.1.0
- dev: true
- /eslint-visitor-keys/1.3.0:
- resolution: {integrity: sha512-6J72N8UNa462wa/KFODt/PJ3IU60SDpC3QXC1Hjc1BXXpfL2C9R5+AU7jhe0F6GREqVMh4Juu+NY7xn+6dipUQ==}
- engines: {node: '>=4'}
+ eslint-visitor-keys@1.3.0: {}
- /eslint-visitor-keys/2.1.0:
- resolution: {integrity: sha512-0rSmRBzXgDzIsD6mGdJgevzgezI534Cer5L/vyMX0kHzT/jiB43jRhd9YUlMGYLQy2zprNmoT8qasCGtY+QaKw==}
- engines: {node: '>=10'}
- dev: true
+ eslint-visitor-keys@2.1.0: {}
- /eslint-visitor-keys/3.4.3:
- resolution: {integrity: sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag==}
- engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
+ eslint-visitor-keys@3.4.3: {}
- /eslint/8.15.0:
- resolution: {integrity: sha512-GG5USZ1jhCu8HJkzGgeK8/+RGnHaNYZGrGDzUtigK3BsGESW/rs2az23XqE0WVwDxy1VRvvjSSGu5nB0Bu+6SA==}
- engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
- hasBin: true
+ eslint-visitor-keys@4.2.0: {}
+
+ eslint@8.57.1:
dependencies:
- '@eslint/eslintrc': 1.4.1
- '@humanwhocodes/config-array': 0.9.5
+ '@eslint-community/eslint-utils': 4.4.1(eslint@8.57.1)
+ '@eslint-community/regexpp': 4.12.1
+ '@eslint/eslintrc': 2.1.4
+ '@eslint/js': 8.57.1
+ '@humanwhocodes/config-array': 0.13.0
+ '@humanwhocodes/module-importer': 1.0.1
+ '@nodelib/fs.walk': 1.2.8
+ '@ungap/structured-clone': 1.2.0
ajv: 6.12.6
chalk: 4.1.2
- cross-spawn: 7.0.3
- debug: 4.3.4
+ cross-spawn: 7.0.6
+ debug: 4.3.7(supports-color@9.4.0)
doctrine: 3.0.0
escape-string-regexp: 4.0.0
eslint-scope: 7.2.2
- eslint-utils: 3.0.0_eslint@8.15.0
eslint-visitor-keys: 3.4.3
espree: 9.6.1
- esquery: 1.5.0
+ esquery: 1.6.0
esutils: 2.0.3
fast-deep-equal: 3.1.3
file-entry-cache: 6.0.1
- functional-red-black-tree: 1.0.1
+ find-up: 5.0.0
glob-parent: 6.0.2
- globals: 13.22.0
- ignore: 5.2.4
- import-fresh: 3.3.0
+ globals: 13.24.0
+ graphemer: 1.4.0
+ ignore: 5.3.2
imurmurhash: 0.1.4
is-glob: 4.0.3
+ is-path-inside: 3.0.3
js-yaml: 4.1.0
json-stable-stringify-without-jsonify: 1.0.1
levn: 0.4.1
lodash.merge: 4.6.2
minimatch: 3.1.2
natural-compare: 1.4.0
- optionator: 0.9.3
- regexpp: 3.2.0
+ optionator: 0.9.4
strip-ansi: 6.0.1
- strip-json-comments: 3.1.1
text-table: 0.2.0
- v8-compile-cache: 2.4.0
transitivePeerDependencies:
- supports-color
- dev: true
- /espree/6.2.1:
- resolution: {integrity: sha512-ysCxRQY3WaXJz9tdbWOwuWr5Y/XrPTGX9Kiz3yoUXwW0VZ4w30HTkQLaGx/+ttFjF8i+ACbArnB4ce68a9m5hw==}
- engines: {node: '>=6.0.0'}
+ esniff@2.0.1:
+ dependencies:
+ d: 1.0.2
+ es5-ext: 0.10.64
+ event-emitter: 0.3.5
+ type: 2.7.3
+
+ espree@10.3.0:
+ dependencies:
+ acorn: 8.14.0
+ acorn-jsx: 5.3.2(acorn@8.14.0)
+ eslint-visitor-keys: 4.2.0
+
+ espree@6.2.1:
dependencies:
acorn: 7.4.1
- acorn-jsx: 5.3.2_acorn@7.4.1
+ acorn-jsx: 5.3.2(acorn@7.4.1)
eslint-visitor-keys: 1.3.0
- dev: true
- /espree/9.6.1:
- resolution: {integrity: sha512-oruZaFkjorTpF32kDSI5/75ViwGeZginGGy2NoOSg3Q9bnwlnmDm4HLnkl0RE3n+njDXR037aY1+x58Z/zFdwQ==}
- engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
+ espree@9.6.1:
dependencies:
- acorn: 8.12.1
- acorn-jsx: 5.3.2_acorn@8.12.1
+ acorn: 8.14.0
+ acorn-jsx: 5.3.2(acorn@8.14.0)
eslint-visitor-keys: 3.4.3
- /esprima/1.0.4:
- resolution: {integrity: sha512-rp5dMKN8zEs9dfi9g0X1ClLmV//WRyk/R15mppFNICIFRG5P92VP7Z04p8pk++gABo9W2tY+kHyu6P1mEHgmTA==}
- engines: {node: '>=0.4.0'}
- hasBin: true
- dev: false
+ esprima@1.0.4: {}
- /esprima/1.2.2:
- resolution: {integrity: sha512-+JpPZam9w5DuJ3Q67SqsMGtiHKENSMRVoxvArfJZK01/BfLEObtZ6orJa/MtoGNR/rfMgp5837T41PAmTwAv/A==}
- engines: {node: '>=0.4.0'}
- hasBin: true
- dev: false
+ esprima@1.2.2: {}
- /esprima/4.0.1:
- resolution: {integrity: sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==}
- engines: {node: '>=4'}
- hasBin: true
+ esprima@4.0.1: {}
- /esquery/1.5.0:
- resolution: {integrity: sha512-YQLXUplAwJgCydQ78IMJywZCceoqk1oH01OERdSAJc/7U2AylwjhSCLDEtqwg811idIS/9fIU5GjG73IgjKMVg==}
- engines: {node: '>=0.10'}
+ esquery@1.6.0:
dependencies:
estraverse: 5.3.0
- dev: true
- /esrecurse/4.3.0:
- resolution: {integrity: sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==}
- engines: {node: '>=4.0'}
+ esrecurse@4.3.0:
dependencies:
estraverse: 5.3.0
- dev: true
- /estraverse/4.3.0:
- resolution: {integrity: sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw==}
- engines: {node: '>=4.0'}
+ estraverse@4.3.0: {}
- /estraverse/5.3.0:
- resolution: {integrity: sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==}
- engines: {node: '>=4.0'}
+ estraverse@5.3.0: {}
- /estree-to-babel/5.2.0:
- resolution: {integrity: sha512-90vbxHQoBcDH5itCjOACPSDyOBNGQgOlCPmUtf9j4S/dhLoXhOVZJ2ktwbAdWp4gtKgTkhGSDQznDsANubUnXw==}
- engines: {node: '>=16'}
+ estree-to-babel@10.0.1:
dependencies:
- '@babel/traverse': 7.25.3
- '@babel/types': 7.25.2
- transitivePeerDependencies:
- - supports-color
- dev: true
+ '@putout/babel': 2.9.0
- /estree-to-babel/7.0.0:
- resolution: {integrity: sha512-H/4hZuI8MYwjOKMxOAOO/4q+kTxSLZYpXbu4GUr7yTHNCVT8qW6hIOP2Bj9mYfJ4l6a8fDvXv3cXx31ZQpkLeg==}
- engines: {node: '>=16'}
+ estree-util-attach-comments@3.0.0:
dependencies:
- '@putout/babel': 1.2.2
- dev: true
+ '@types/estree': 1.0.6
- /esutils/2.0.3:
- resolution: {integrity: sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==}
- engines: {node: '>=0.10.0'}
+ estree-util-is-identifier-name@3.0.0: {}
- /event-emitter/0.3.5:
- resolution: {integrity: sha512-D9rRn9y7kLPnJ+hMq7S/nhvoKwwvVJahBi2BPmx3bvbsEdK3W9ii8cBSGjP+72/LnM4n6fo3+dkCX5FeTQruXA==}
+ estree-walker@2.0.2: {}
+
+ esutils@2.0.3: {}
+
+ event-emitter@0.3.5:
dependencies:
- d: 1.0.1
- es5-ext: 0.10.62
- dev: false
+ d: 1.0.2
+ es5-ext: 0.10.64
- /event-stream/3.3.4:
- resolution: {integrity: sha512-QHpkERcGsR0T7Qm3HNJSyXKEEj8AHNxkY3PK8TS2KJvQ7NiSHe3DDpwVKKtoYprL/AreyzFBeIkBIWChAqn60g==}
+ event-stream@3.3.4:
dependencies:
duplexer: 0.1.2
from: 0.1.7
@@ -26164,55 +32871,34 @@ packages:
split: 0.3.3
stream-combiner: 0.0.4
through: 2.3.8
- dev: true
- /event-target-shim/5.0.1:
- resolution: {integrity: sha512-i/2XbnSz/uxRCU6+NdVJgKWDTM427+MqYbkQzD321DuCQJUqOuJKIA0IM2+W2xtYHdKOmZ4dR6fExsd4SXL+WQ==}
- engines: {node: '>=6'}
- dev: false
+ event-target-shim@5.0.1: {}
- /eventemitter3/3.1.2:
- resolution: {integrity: sha512-tvtQIeLVHjDkJYnzf2dgVMxfuSGJeM/7UCG17TT4EumTfNtF+0nebF/4zWOIkCreAbtNqhGEboB6BWrwqNaw4Q==}
- dev: false
+ eventemitter3@3.1.2: {}
- /eventemitter3/4.0.7:
- resolution: {integrity: sha512-8guHBZCwKnFhYdHr2ysuRWErTwhoN2X8XELRlrRwpmfeY2jjuUN4taQMsULKUVo1K4DvZl+0pgfyoysHxvmvEw==}
- dev: false
+ eventemitter3@4.0.7: {}
- /eventemitter3/5.0.1:
- resolution: {integrity: sha512-GWkBvjiSZK87ELrYOSESUYeVIc9mvLLf/nXalMOS5dYrgZq9o5OVkbZAVM06CVxYsCwH9BDZFPlQTlPA1j4ahA==}
- dev: false
+ eventemitter3@5.0.1: {}
- /eventid/2.0.1:
- resolution: {integrity: sha512-sPNTqiMokAvV048P2c9+foqVJzk49o6d4e0D/sq5jog3pw+4kBgyR0gaM1FM7Mx6Kzd9dztesh9oYz1LWWOpzw==}
- engines: {node: '>=10'}
+ eventid@2.0.1:
dependencies:
uuid: 8.3.2
- dev: false
- /events/3.3.0:
- resolution: {integrity: sha512-mQw+2fkQbALzQ7V0MY0IqdnXNOeTtP4r0lN9z7AAawCXgqea7bDii20AYrIBrFd/Hx0M2Ocz6S111CaFkUcb0Q==}
- engines: {node: '>=0.8.x'}
- dev: false
+ events@3.3.0: {}
- /execa/1.0.0:
- resolution: {integrity: sha512-adbxcyWV46qiHyvSp50TKt05tB4tK3HcmF7/nxfAdhnox83seTDbwnaqKO4sXRy7roHAIFqJP/Rw/AuEbX61LA==}
- engines: {node: '>=6'}
+ execa@1.0.0:
dependencies:
- cross-spawn: 6.0.5
+ cross-spawn: 6.0.6
get-stream: 4.1.0
is-stream: 1.1.0
npm-run-path: 2.0.2
p-finally: 1.0.0
signal-exit: 3.0.7
strip-eof: 1.0.0
- dev: true
- /execa/5.1.1:
- resolution: {integrity: sha512-8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg==}
- engines: {node: '>=10'}
+ execa@5.1.1:
dependencies:
- cross-spawn: 7.0.3
+ cross-spawn: 7.0.6
get-stream: 6.0.1
human-signals: 2.1.0
is-stream: 2.0.1
@@ -26221,158 +32907,100 @@ packages:
onetime: 5.1.2
signal-exit: 3.0.7
strip-final-newline: 2.0.0
- dev: true
- /exit/0.1.2:
- resolution: {integrity: sha512-Zk/eNKV2zbjpKzrsQ+n1G6poVbErQxJ0LBOJXaKZ1EViLzH+hrLu9cdXI4zw9dBQJslwBEpbQ2P1oS7nDxs6jQ==}
- engines: {node: '>= 0.8.0'}
- dev: true
+ exit@0.1.2: {}
- /expand-tilde/2.0.2:
- resolution: {integrity: sha512-A5EmesHW6rfnZ9ysHQjPdJRni0SRar0tjtG5MNtm9n5TUvsYU8oozprtRD4AqHxcZWWlVuAmQo2nWKfN9oyjTw==}
- engines: {node: '>=0.10.0'}
+ expand-tilde@2.0.2:
dependencies:
homedir-polyfill: 1.0.3
- dev: false
- /expect/29.7.0:
- resolution: {integrity: sha512-2Zks0hf1VLFYI1kbh0I5jP3KHHyCHpkfyHBzsSXRFgl/Bg9mWYfMW8oD+PdMPlEwy5HNsR9JutYy6pMeOh61nw==}
- engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
+ expect@29.7.0:
dependencies:
'@jest/expect-utils': 29.7.0
jest-get-type: 29.6.3
jest-matcher-utils: 29.7.0
jest-message-util: 29.7.0
jest-util: 29.7.0
- dev: true
- /exponential-backoff/3.1.1:
- resolution: {integrity: sha512-dX7e/LHVJ6W3DE1MHWi9S1EYzDESENfLrYohG2G++ovZrYOkm4Knwa0mc1cn84xJOR4KEU0WSchhLbd0UklbHw==}
- dev: false
+ exponential-backoff@3.1.1: {}
- /ext/1.7.0:
- resolution: {integrity: sha512-6hxeJYaL110a9b5TEJSj0gojyHQAmA2ch5Os+ySCiA1QGdS697XWY1pzsrSjqA9LDEEgdB/KypIlR59RcLuHYw==}
+ ext@1.7.0:
dependencies:
- type: 2.7.2
- dev: false
+ type: 2.7.3
- /extend/3.0.2:
- resolution: {integrity: sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g==}
+ extend@3.0.2: {}
- /external-editor/3.1.0:
- resolution: {integrity: sha512-hMQ4CX1p1izmuLYyZqLMO/qGNw10wSv9QDCPfzXfyFrOaCSSoRfqE1Kf1s5an66J5JZC62NewG+mK49jOCtQew==}
- engines: {node: '>=4'}
+ external-editor@3.1.0:
dependencies:
chardet: 0.7.0
iconv-lite: 0.4.24
tmp: 0.0.33
- dev: false
- /extract-files/9.0.0:
- resolution: {integrity: sha512-CvdFfHkC95B4bBBk36hcEmvdR2awOdhhVUYH6S/zrVj3477zven/fJMYg7121h4T1xHZC+tetUpubpAhxwI7hQ==}
- engines: {node: ^10.17.0 || ^12.0.0 || >= 13.7.0}
+ extract-files@9.0.0: {}
- /extract-zip/2.0.1:
- resolution: {integrity: sha512-GDhU9ntwuKyGXdZBUgTIe+vXnWj0fppUEtMDL0+idd5Sta8TGpHssn/eusA9mrPr9qNDym6SxAYZjNvCn/9RBg==}
- engines: {node: '>= 10.17.0'}
- hasBin: true
+ extract-zip@2.0.1:
dependencies:
- debug: 4.3.6
+ debug: 4.3.4
get-stream: 5.2.0
yauzl: 2.10.0
optionalDependencies:
- '@types/yauzl': 2.10.1
+ '@types/yauzl': 2.10.3
transitivePeerDependencies:
- supports-color
- dev: false
- /extsprintf/1.3.0:
- resolution: {integrity: sha512-11Ndz7Nv+mvAC1j0ktTa7fAb0vLyGGX+rMHNBYQviQDGU0Hw7lhctJANqbPhu9nV9/izT/IntTgZ7Im/9LJs9g==}
- engines: {'0': node >=0.6.0}
+ extsprintf@1.3.0: {}
- /fast-deep-equal/3.1.3:
- resolution: {integrity: sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==}
+ fast-deep-equal@3.1.3: {}
- /fast-diff/1.3.0:
- resolution: {integrity: sha512-VxPP4NqbUjj6MaAOafWeUn2cXWLcCtljklUtZf0Ind4XQ+QPtmA0b18zZy0jIQx+ExRVCR/ZQpBmik5lXshNsw==}
- dev: true
+ fast-diff@1.3.0: {}
- /fast-fifo/1.3.2:
- resolution: {integrity: sha512-/d9sfos4yxzpwkDkuN7k2SqFKtYNmCTzgfEpz82x34IM9/zc8KGxQoXg1liNC/izpRM/MBdt44Nmx41ZWqk+FQ==}
+ fast-fifo@1.3.2: {}
- /fast-glob/3.3.1:
- resolution: {integrity: sha512-kNFPyjhh5cKjrUltxs+wFx+ZkbRaxxmZ+X0ZU31SOsxCEtP9VPgtq2teZw1DebupL5GmDaNQ6yKMMVcM41iqDg==}
- engines: {node: '>=8.6.0'}
+ fast-glob@3.3.1:
dependencies:
'@nodelib/fs.stat': 2.0.5
'@nodelib/fs.walk': 1.2.8
glob-parent: 5.1.2
merge2: 1.4.1
- micromatch: 4.0.7
- dev: true
+ micromatch: 4.0.8
- /fast-glob/3.3.2:
- resolution: {integrity: sha512-oX2ruAFQwf/Orj8m737Y5adxDQO0LAB7/S5MnxCdTNDd4p6BsyIVsv9JQsATbTSq8KHRpLwIHbVlUNatxd+1Ow==}
- engines: {node: '>=8.6.0'}
+ fast-glob@3.3.2:
dependencies:
'@nodelib/fs.stat': 2.0.5
'@nodelib/fs.walk': 1.2.8
glob-parent: 5.1.2
merge2: 1.4.1
- micromatch: 4.0.7
+ micromatch: 4.0.8
- /fast-json-stable-stringify/2.1.0:
- resolution: {integrity: sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==}
+ fast-json-stable-stringify@2.1.0: {}
- /fast-levenshtein/2.0.6:
- resolution: {integrity: sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==}
+ fast-levenshtein@2.0.6: {}
- /fast-safe-stringify/2.1.1:
- resolution: {integrity: sha512-W+KJc2dmILlPplD/H4K9l9LcAHAfPtP6BY84uVLXQ6Evcz9Lcg33Y2z1IVblT6xdY54PXYVHEv+0Wpq8Io6zkA==}
- dev: false
+ fast-safe-stringify@2.1.1: {}
- /fast-sha256/1.3.0:
- resolution: {integrity: sha512-n11RGP/lrWEFI/bWdygLxhI+pVeo1ZYIVwvvPkW7azl/rOy+F3HYRZ2K5zeE9mmkhQppyv9sQFx0JM9UabnpPQ==}
- dev: false
+ fast-sha256@1.3.0: {}
- /fast-text-encoding/1.0.6:
- resolution: {integrity: sha512-VhXlQgj9ioXCqGstD37E/HBeqEGV/qOD/kmbVG8h5xKBYvM1L3lR1Zn4555cQ8GkYbJa8aJSipLPndE1k6zK2w==}
- dev: false
+ fast-text-encoding@1.0.6: {}
- /fast-uri/3.0.1:
- resolution: {integrity: sha512-MWipKbbYiYI0UC7cl8m/i/IWTqfC8YXsqjzybjddLsFjStroQzsHXkc73JutMvBiXmOvapk+axIl79ig5t55Bw==}
+ fast-uri@3.0.3: {}
- /fast-xml-parser/4.2.5:
- resolution: {integrity: sha512-B9/wizE4WngqQftFPmdaMYlXoJlJOYxGQOanC77fq9k8+Z0v5dDSVh+3glErdIROP//s/jgb7ZuxKfB8nVyo0g==}
- hasBin: true
+ fast-xml-parser@4.4.1:
dependencies:
strnum: 1.0.5
- dev: false
- /fast-xml-parser/4.3.2:
- resolution: {integrity: sha512-rmrXUXwbJedoXkStenj1kkljNF7ugn5ZjR9FJcwmCfcCbtOMDghPajbc+Tck6vE6F5XsDmx+Pr2le9fw8+pXBg==}
- hasBin: true
+ fast-xml-parser@4.5.0:
dependencies:
strnum: 1.0.5
- dev: false
- /fastest-levenshtein/1.0.16:
- resolution: {integrity: sha512-eRnCtTTtGZFpQCwhJiUOuxPQWRXVKYDn0b2PeHfXL6/Zi53SLAzAHfVhVWK2AryC/WH05kGfxhFIPvTF0SXQzg==}
- engines: {node: '>= 4.9.1'}
- dev: true
+ fastest-levenshtein@1.0.16: {}
- /fastparse/1.1.2:
- resolution: {integrity: sha512-483XLLxTVIwWK3QTrMGRqUfUpoOs/0hbQrl2oz4J0pAcm3A3bu84wxTFqGqkJzewCLdME38xJLJAxBABfQT8sQ==}
- dev: false
+ fastparse@1.1.2: {}
- /fastq/1.17.1:
- resolution: {integrity: sha512-sRVD3lWVIXWg6By68ZN7vho9a1pQcN/WBFaAAsDDFzlJjvoGx0P8z7V1t72grFJfJhu3YPZBuu25f7Kaw2jN1w==}
+ fastq@1.17.1:
dependencies:
reusify: 1.0.4
- /faunadb/4.8.0:
- resolution: {integrity: sha512-pjl5WUYQ8GqM4ESk3mv0RXfxtQMHWb92XWkxjf3nWiAkf2HVtsENfTbyGPunzw4zDbdhn9aQSSxbwahaLLDR7Q==}
- requiresBuild: true
+ faunadb@4.8.1:
dependencies:
base64-js: 1.5.1
boxen: 5.1.2
@@ -26386,35 +33014,22 @@ packages:
util-deprecate: 1.0.2
transitivePeerDependencies:
- encoding
- dev: false
- /faye-websocket/0.11.4:
- resolution: {integrity: sha512-CzbClwlXAuiRQAlUyfqPgvPoNKTckTPGfwZV4ZdAhVcP2lh9KUxJg2b5GkE7XbjKQ3YJnQ9z6D9ntLAlB+tP8g==}
- engines: {node: '>=0.8.0'}
+ faye-websocket@0.11.4:
dependencies:
websocket-driver: 0.7.4
- dev: false
- /fb-watchman/2.0.2:
- resolution: {integrity: sha512-p5161BqbuCaSnB8jIbzQHOlpgsPmK5rJVDfDKO91Axs5NC1uu3HRQm6wt9cd9/+GtQQIO53JdGXXoyDpTAsgYA==}
+ fb-watchman@2.0.2:
dependencies:
bser: 2.1.1
- dev: true
- /fd-slicer/1.1.0:
- resolution: {integrity: sha512-cE1qsB/VwyQozZ+q1dGxR8LBYNZeofhEdUNGSMbQD3Gw2lAzX9Zb3uIU6Ebc/Fmyjo9AWWfnn0AUCHqtevs/8g==}
+ fd-slicer@1.1.0:
dependencies:
pend: 1.2.0
- dev: false
- /fecha/4.2.3:
- resolution: {integrity: sha512-OP2IUU6HeYKJi3i0z4A19kHMQoLVs4Hc+DPqqxI2h/DPZHTm/vjsfC6P0b4jCMy14XizLBqvndQ+UilD7707Jw==}
- dev: false
+ fecha@4.2.3: {}
- /feedparser/2.2.10:
- resolution: {integrity: sha512-WoAOooa61V8/xuKMi2pEtK86qQ3ZH/M72EEGdqlOTxxb3m6ve1NPvZcmPFs3wEDfcBbFLId2GqZ4YjsYi+h1xA==}
- engines: {node: '>= 10.18.1'}
- hasBin: true
+ feedparser@2.2.10:
dependencies:
addressparser: 1.0.1
array-indexofobject: 0.0.1
@@ -26424,138 +33039,81 @@ packages:
lodash.uniq: 4.5.0
mri: 1.2.0
readable-stream: 2.3.8
- sax: 1.3.0
- dev: false
+ sax: 1.4.1
- /fetch-blob/1.0.6:
- resolution: {integrity: sha512-XTotUY7hVtqdbHE0Ilm/u/nnXRv1T8nepxhMHzB885O0EkVvI05UlZq7rHQSd6hVDCNAGx4HTjbJO60Onjfckw==}
- engines: {node: '>=6'}
- dev: false
+ fetch-blob@1.0.6: {}
- /fetch-blob/2.1.2:
- resolution: {integrity: sha512-YKqtUDwqLyfyMnmbw8XD6Q8j9i/HggKtPEI+pZ1+8bvheBu78biSmNaXWusx1TauGqtUUGx/cBb1mKdq2rLYow==}
- engines: {node: ^10.17.0 || >=12.3.0}
- peerDependencies:
- domexception: '*'
- peerDependenciesMeta:
- domexception:
- optional: true
- dev: false
+ fetch-blob@2.1.2: {}
- /fetch-blob/3.2.0:
- resolution: {integrity: sha512-7yAQpD2UMJzLi1Dqv7qFYnPbaPx7ZfFK6PiIxQ4PfkGPyNyl2Ugx+a/umUonmKqjhM4DnfbMvdX6otXq83soQQ==}
- engines: {node: ^12.20 || >= 14.13}
+ fetch-blob@3.2.0:
dependencies:
node-domexception: 1.0.0
- web-streams-polyfill: 3.2.1
- dev: false
+ web-streams-polyfill: 3.3.3
- /fetch-har/5.0.5:
- resolution: {integrity: sha512-Vzj/U++CyHhTMNTB1NAyjOuhOc/2rXhCweWHfCX02rHb8+IfFUSy9aWnImRJ/tMYT/c1c7tYNwwU7Dr9ty3cyg==}
- engines: {node: ^12 || ^14 || ^16}
+ fetch-har@5.0.5:
dependencies:
parse-data-url: 4.0.1
- dev: false
- /fetch-ponyfill/7.1.0:
- resolution: {integrity: sha512-FhbbL55dj/qdVO3YNK7ZEkshvj3eQ7EuIGV2I6ic/2YiocvyWv+7jg2s4AyS0wdRU75s3tA8ZxI/xPigb0v5Aw==}
+ fetch-ponyfill@7.1.0:
dependencies:
node-fetch: 2.6.13
transitivePeerDependencies:
- encoding
- dev: false
- /figures/3.2.0:
- resolution: {integrity: sha512-yaduQFRKLXYOGgEn6AZau90j3ggSOyiqXU0F9JZfeXYhNa+Jk4X+s45A2zg5jns87GAFa34BBm2kXw4XpNcbdg==}
- engines: {node: '>=8'}
+ figures@3.2.0:
dependencies:
escape-string-regexp: 1.0.5
- dev: false
- /file-entry-cache/6.0.1:
- resolution: {integrity: sha512-7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg==}
- engines: {node: ^10.12.0 || >=12.0.0}
+ file-entry-cache@10.0.2:
dependencies:
- flat-cache: 3.2.0
- dev: true
+ flat-cache: 6.1.2
- /file-entry-cache/7.0.0:
- resolution: {integrity: sha512-OWhoO9dvvwspdI7YjGrs5wD7bPggVHc5b1NFAdyd1fEPIeno3Fj70fjBhklAqzUefgX7KCNDBnvrT8rZhS8Shw==}
- engines: {node: '>=12.0.0'}
+ file-entry-cache@6.0.1:
dependencies:
flat-cache: 3.2.0
- dev: true
- /file-set/5.1.3:
- resolution: {integrity: sha512-mQ6dqz+z59on3B50IGF3ujNGbZmY1TAeLHpNfhLEeNM6Lky31w3RUlbCyqZWQs0DuZJQU4R2qDuVd9ojyzadcg==}
- engines: {node: '>=12.17'}
+ file-entry-cache@9.1.0:
+ dependencies:
+ flat-cache: 5.0.0
+
+ file-set@5.2.2:
dependencies:
array-back: 6.2.2
- glob: 7.2.3
- dev: true
+ fast-glob: 3.3.2
- /file-type/16.5.4:
- resolution: {integrity: sha512-/yFHK0aGjFEgDJjEKP0pWCplsPFPhwyfwevf/pVxiN0tmE4L9LmwWxWukdJSHdoCli4VgQLehjJtwQBnqmsKcw==}
- engines: {node: '>=10'}
+ file-type@16.5.4:
dependencies:
readable-web-to-node-stream: 3.0.2
strtok3: 6.3.0
token-types: 4.2.1
- dev: false
- /file-type/18.7.0:
- resolution: {integrity: sha512-ihHtXRzXEziMrQ56VSgU7wkxh55iNchFkosu7Y9/S+tXHdKyrGjVK0ujbqNnsxzea+78MaLhN6PGmfYSAv1ACw==}
- engines: {node: '>=14.16'}
+ file-type@18.7.0:
dependencies:
readable-web-to-node-stream: 3.0.2
- strtok3: 7.0.0
+ strtok3: 7.1.1
token-types: 5.0.1
- dev: false
- /file-type/3.9.0:
- resolution: {integrity: sha512-RLoqTXE8/vPmMuTI88DAzhMYC99I8BWv7zYP4A1puo5HIjEJ5EX48ighy4ZyKMG9EDXxBgW6e++cn7d1xuFghA==}
- engines: {node: '>=0.10.0'}
- dev: false
+ file-type@3.9.0: {}
- /file-uri-to-path/1.0.0:
- resolution: {integrity: sha512-0Zt+s3L7Vf1biwWZ29aARiVYLx7iMGnEUl9x33fbB/j3jR81u/O2LbqK+Bm1CDSNDKVtJ/YjwY7TUd5SkeLQLw==}
- dev: false
+ file-uri-to-path@1.0.0: {}
- /file-uri-to-path/2.0.0:
- resolution: {integrity: sha512-hjPFI8oE/2iQPVe4gbrJ73Pp+Xfub2+WI2LlXDbsaJBwT5wuMh35WNWVYYTpnz895shtwfyutMFLFywpQAFdLg==}
- engines: {node: '>= 6'}
- dev: false
+ file-uri-to-path@2.0.0: {}
- /filelist/1.0.4:
- resolution: {integrity: sha512-w1cEuf3S+DrLCQL7ET6kz+gmlJdbq9J7yXCSjK/OZCPA+qEN1WyF4ZAf0YYJa4/shHJra2t/d/r8SV4Ji+x+8Q==}
+ filelist@1.0.4:
dependencies:
minimatch: 5.1.6
- dev: true
- /fill-range/7.1.1:
- resolution: {integrity: sha512-YsGpe3WHLK8ZYi4tWDg2Jy3ebRz2rXowDxnld4bkQB00cc/1Zw9AWnC0i9ztDJitivtQvaI9KaLyKrc+hBW0yg==}
- engines: {node: '>=8'}
+ fill-range@7.1.1:
dependencies:
to-regex-range: 5.0.1
- /filter-obj/1.1.0:
- resolution: {integrity: sha512-8rXg1ZnX7xzy2NGDVkBVaAy+lSlPNwad13BtgSlLuxfIslyt5Vg64U7tFcCt4WS1R0hvtnQybT/IyCkGZ3DpXQ==}
- engines: {node: '>=0.10.0'}
- dev: false
+ filter-obj@1.1.0: {}
- /filter-obj/2.0.2:
- resolution: {integrity: sha512-lO3ttPjHZRfjMcxWKb1j1eDhTFsu4meeR3lnMcnBFhk6RuLhvEiuALu2TlfL310ph4lCYYwgF/ElIjdP739tdg==}
- engines: {node: '>=8'}
- dev: false
+ filter-obj@2.0.2: {}
- /filter-obj/5.1.0:
- resolution: {integrity: sha512-qWeTREPoT7I0bifpPUXtxkZJ1XJzxWtfoWWkdVGqa+eCr3SHW/Ocp89o8vLvbUuQnadybJpjOKu4V+RwO6sGng==}
- engines: {node: '>=14.16'}
- dev: false
+ filter-obj@5.1.0: {}
- /finalhandler/1.3.1:
- resolution: {integrity: sha512-6BN9trH7bp3qvnrRyzsBz+g3lZxTNZTbVO2EV1CS0WIcDbawYVdYvGflME/9QP0h0pYlCDBCTjYa9nZzMDpyxQ==}
- engines: {node: '>= 0.8'}
+ finalhandler@1.3.1:
dependencies:
debug: 2.6.9
encodeurl: 2.0.0
@@ -26566,63 +33124,51 @@ packages:
unpipe: 1.0.0
transitivePeerDependencies:
- supports-color
- dev: false
- /find-cache-dir/3.3.2:
- resolution: {integrity: sha512-wXZV5emFEjrridIgED11OoUKLxiYjAcqot/NJdAkOhlJ+vGzwhOAfcG5OX1jP+S0PcjEn8bdMJv+g2jwQ3Onig==}
- engines: {node: '>=8'}
+ find-cache-dir@3.3.2:
dependencies:
commondir: 1.0.1
make-dir: 3.1.0
pkg-dir: 4.2.0
- dev: false
- /find-cache-dir/5.0.0:
- resolution: {integrity: sha512-OuWNfjfP05JcpAP3JPgAKUhWefjMRfI5iAoSsvE24ANYWJaepAtlSgWECSVEuRgSXpyNEc9DJwG/TZpgcOqyig==}
- engines: {node: '>=16'}
+ find-cache-dir@5.0.0:
dependencies:
common-path-prefix: 3.0.0
pkg-dir: 7.0.0
- dev: true
- /find-replace/3.0.0:
- resolution: {integrity: sha512-6Tb2myMioCAgv5kfvP5/PkZZ/ntTpVK39fHY7WkWBgvbeE+VHd/tZuZ4mrC+bxh4cfOZeYKVPaJIZtZXV7GNCQ==}
- engines: {node: '>=4.0.0'}
+ find-replace@3.0.0:
dependencies:
array-back: 3.1.0
- dev: true
- /find-up/4.1.0:
- resolution: {integrity: sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==}
- engines: {node: '>=8'}
+ find-root@1.1.0: {}
+
+ find-up@4.1.0:
dependencies:
locate-path: 5.0.0
path-exists: 4.0.0
- /find-up/5.0.0:
- resolution: {integrity: sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==}
- engines: {node: '>=10'}
+ find-up@5.0.0:
dependencies:
locate-path: 6.0.0
path-exists: 4.0.0
- dev: true
- /find-up/6.3.0:
- resolution: {integrity: sha512-v2ZsoEuVHYy8ZIlYqwPe/39Cy+cFDzp4dXPaxNvkEuouymu+2Jbz0PxpKarJHYJTmv2HWT3O382qY8l4jMWthw==}
- engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0}
+ find-up@6.3.0:
dependencies:
locate-path: 7.2.0
path-exists: 5.0.0
- dev: true
- /firebase-admin/10.3.0_@firebase+app-types@0.7.0:
- resolution: {integrity: sha512-A0wgMLEjyVyUE+heyMJYqHRkPVjpebhOYsa47RHdrTM4ltApcx8Tn86sUmjqxlfh09gNnILAm7a8q5+FmgBYpg==}
- engines: {node: '>=12.7.0'}
+ find-up@7.0.0:
+ dependencies:
+ locate-path: 7.2.0
+ path-exists: 5.0.0
+ unicorn-magic: 0.1.0
+
+ firebase-admin@10.3.0(@firebase/app-types@0.7.0):
dependencies:
'@fastify/busboy': 1.2.1
- '@firebase/database-compat': 0.2.10_@firebase+app-types@0.7.0
+ '@firebase/database-compat': 0.2.10(@firebase/app-types@0.7.0)
'@firebase/database-types': 0.9.17
- '@types/node': 17.0.45
+ '@types/node': 20.17.6
jsonwebtoken: 8.5.1
jwks-rsa: 2.1.5
node-forge: 1.3.1
@@ -26634,340 +33180,189 @@ packages:
- '@firebase/app-types'
- encoding
- supports-color
- dev: false
- /flat-cache/3.2.0:
- resolution: {integrity: sha512-CYcENa+FtcUKLmhhqyctpclsq7QF38pKjZHsGNiSQF5r4FtoKDWabFDl3hzaEQMvT1LHEysw5twgLvpYYb4vbw==}
- engines: {node: ^10.12.0 || >=12.0.0}
+ flat-cache@3.2.0:
dependencies:
- flatted: 3.3.1
+ flatted: 3.3.2
keyv: 4.5.4
rimraf: 3.0.2
- dev: true
- /flatted/3.2.9:
- resolution: {integrity: sha512-36yxDn5H7OFZQla0/jFJmbIKTdZAQHngCedGxiMmpNfEZM0sdEeT+WczLQrjK6D7o2aiyLYDnkw0R3JK0Qv1RQ==}
- dev: false
+ flat-cache@5.0.0:
+ dependencies:
+ flatted: 3.3.2
+ keyv: 4.5.4
+
+ flat-cache@6.1.2:
+ dependencies:
+ cacheable: 1.8.4
+ flatted: 3.3.2
+ hookified: 1.5.0
- /flatted/3.3.1:
- resolution: {integrity: sha512-X8cqMLLie7KsNUDSdzeN8FYK9rEt4Dt67OsG/DNGnYTSDBG4uFAJFBnUeiV+zCVAvwFy56IjM9sH51jVaEhNxw==}
- dev: true
+ flat@5.0.2: {}
- /flatten/1.0.3:
- resolution: {integrity: sha512-dVsPA/UwQ8+2uoFe5GHtiBMu48dWLTdsuEd7CKGlZlD78r1TTWBvDuFaFGKCo/ZfEr95Uk56vZoX86OsHkUeIg==}
- deprecated: flatten is deprecated in favor of utility frameworks such as lodash.
- dev: false
+ flatted@3.3.2: {}
- /flush-write-stream/2.0.0:
- resolution: {integrity: sha512-uXClqPxT4xW0lcdSBheb2ObVU+kuqUk3Jk64EwieirEXZx9XUrVwp/JuBfKAWaM4T5Td/VL7QLDWPXp/MvGm/g==}
+ flatten@1.0.3: {}
+
+ flush-write-stream@2.0.0:
dependencies:
inherits: 2.0.4
readable-stream: 3.6.2
- dev: false
- /fn-annotate/1.2.0:
- resolution: {integrity: sha512-j2gv2wkRhQgkJNf1ygdca8ynP3tK+a87bowc+RG81iWTye3yKIOeAkrKYv0Kqyh8yCeSyljOk3ZFelfXUFpirA==}
- engines: {node: '>=0.10.0'}
- dev: false
+ fn-annotate@1.2.0: {}
- /fn.name/1.1.0:
- resolution: {integrity: sha512-GRnmB5gPyJpAhTQdSZTSp9uaPSvl09KoYcMQtsB9rQoOmzs9dH6ffeccH+Z+cv6P68Hu5bC6JjRh4Ah/mHSNRw==}
- dev: false
+ fn.name@1.1.0: {}
- /folder-walker/3.2.0:
- resolution: {integrity: sha512-VjAQdSLsl6AkpZNyrQJfO7BXLo4chnStqb055bumZMbRUPpVuPN3a4ktsnRCmrFZjtMlYLkyXiR5rAs4WOpC4Q==}
+ folder-walker@3.2.0:
dependencies:
from2: 2.3.0
- dev: false
-
- /follow-redirects/1.15.3:
- resolution: {integrity: sha512-1VzOtuEM8pC9SFU1E+8KfTjZyMztRsgEfwQl44z8A25uy13jSzTj6dyK2Df52iV0vgHCfBwLhDWevLn95w5v6Q==}
- engines: {node: '>=4.0'}
- peerDependencies:
- debug: '*'
- peerDependenciesMeta:
- debug:
- optional: true
- dev: false
-
- /follow-redirects/1.15.5:
- resolution: {integrity: sha512-vSFWUON1B+yAw1VN4xMfxgn5fTUiaOzAJCKBwIIgT/+7CuGy9+r+5gITvP62j3RmaD5Ph65UaERdOSRGUzZtgw==}
- engines: {node: '>=4.0'}
- peerDependencies:
- debug: '*'
- peerDependenciesMeta:
- debug:
- optional: true
-
- /follow-redirects/1.15.6:
- resolution: {integrity: sha512-wWN62YITEaOpSK584EZXJafH1AGpO8RVgElfkuXbTOrPX4fIfOyEpW/CsiNd8JdYrAoOvafRTOEnvsO++qCqFA==}
- engines: {node: '>=4.0'}
- peerDependencies:
- debug: '*'
- peerDependenciesMeta:
- debug:
- optional: true
- dev: false
- /follow-redirects/1.15.9:
- resolution: {integrity: sha512-gew4GsXizNgdoRyqmyfMHyAmXsZDk6mHkSxZFCzW9gwlbtOW44CDtYavM+y+72qD/Vq2l550kMF52DT8fOLJqQ==}
- engines: {node: '>=4.0'}
- peerDependencies:
- debug: '*'
- peerDependenciesMeta:
- debug:
- optional: true
- dev: false
-
- /follow-redirects/1.15.9_debug@3.2.7:
- resolution: {integrity: sha512-gew4GsXizNgdoRyqmyfMHyAmXsZDk6mHkSxZFCzW9gwlbtOW44CDtYavM+y+72qD/Vq2l550kMF52DT8fOLJqQ==}
- engines: {node: '>=4.0'}
- peerDependencies:
- debug: '*'
- peerDependenciesMeta:
- debug:
- optional: true
- dependencies:
+ follow-redirects@1.15.9(debug@3.2.7):
+ optionalDependencies:
debug: 3.2.7
- dev: false
- /follow-redirects/1.5.10:
- resolution: {integrity: sha512-0V5l4Cizzvqt5D44aTXbFZz+FtyXV1vrDN6qrelxtfYQKW0KO0W2T/hkE8xvGa/540LkZlkaUjO4ailYTFtHVQ==}
- engines: {node: '>=4.0'}
+ follow-redirects@1.5.10:
dependencies:
debug: 3.1.0
transitivePeerDependencies:
- supports-color
- dev: false
- /for-each/0.3.3:
- resolution: {integrity: sha512-jqYfLp7mo9vIyQf8ykW2v7A+2N4QjeCeI5+Dz9XraiO1ign81wjiH7Fb9vSOWvQfNtmSa4H2RoQTrrXivdUZmw==}
+ for-each@0.3.3:
dependencies:
is-callable: 1.2.7
- /foreground-child/3.3.0:
- resolution: {integrity: sha512-Ld2g8rrAyMYFXBhEqMz8ZAHBi4J4uS1i/CxGMDnjyFWddMXLVcDp051DZfu+t7+ab7Wv6SMqpWmyFIj5UbfFvg==}
- engines: {node: '>=14'}
- dependencies:
- cross-spawn: 7.0.3
- signal-exit: 4.1.0
- dev: true
-
- /forever-agent/0.6.1:
- resolution: {integrity: sha512-j0KLYPhm6zeac4lz3oJ3o65qvgQCcPubiyotZrXqEaG4hNagNYO8qdlUrX5vwqv9ohqeT/Z3j6+yW067yWWdUw==}
-
- /form-data-encoder/2.1.4:
- resolution: {integrity: sha512-yDYSgNMraqvnxiEXO4hi88+YZxaHC6QKzb5N84iRCTDeRO7ZALpir/lVmf/uXUhnwUr2O4HU8s/n6x+yNjQkHw==}
- engines: {node: '>= 14.17'}
- dev: false
+ forever-agent@0.6.1: {}
- /form-data-encoder/4.0.2:
- resolution: {integrity: sha512-KQVhvhK8ZkWzxKxOr56CPulAhH3dobtuQ4+hNQ+HekH/Wp5gSOafqRAeTphQUJAIk0GBvHZgJ2ZGRWd5kphMuw==}
- engines: {node: '>= 18'}
- dev: false
+ form-data-encoder@2.1.4: {}
- /form-data/2.3.3:
- resolution: {integrity: sha512-1lLKB2Mu3aGP1Q/2eCOx0fNbRMe7XdwktwOruhfqqd0rIJWwN4Dh+E3hrPSlDCXnSR7UtZ1N38rVXm+6+MEhJQ==}
- engines: {node: '>= 0.12'}
- dependencies:
- asynckit: 0.4.0
- combined-stream: 1.0.8
- mime-types: 2.1.35
+ form-data-encoder@4.0.2: {}
- /form-data/2.5.1:
- resolution: {integrity: sha512-m21N3WOmEEURgk6B9GLOE4RuWOFf28Lhh9qGYeNlGq4VDXUlJy2th2slBNU8Gp8EzloYZOibZJ7t5ecIrFSjVA==}
- engines: {node: '>= 0.12'}
+ form-data@2.3.3:
dependencies:
asynckit: 0.4.0
combined-stream: 1.0.8
mime-types: 2.1.35
- dev: false
- /form-data/3.0.0:
- resolution: {integrity: sha512-CKMFDglpbMi6PyN+brwB9Q/GOw0eAnsrEZDgcsH5Krhz5Od/haKHAX0NmQfha2zPPz0JpWzA7GJHGSnvCRLWsg==}
- engines: {node: '>= 6'}
+ form-data@2.5.2:
dependencies:
asynckit: 0.4.0
combined-stream: 1.0.8
mime-types: 2.1.35
- dev: false
+ safe-buffer: 5.2.1
- /form-data/3.0.1:
- resolution: {integrity: sha512-RHkBKtLWUVwd7SqRIvCZMEvAMoGUp0XU+seQiZejj0COz3RI3hWP4sCv3gZWWLjJTd7rGwcsF5eKZGii0r/hbg==}
- engines: {node: '>= 6'}
+ form-data@3.0.0:
dependencies:
asynckit: 0.4.0
combined-stream: 1.0.8
mime-types: 2.1.35
- /form-data/4.0.0:
- resolution: {integrity: sha512-ETEklSGi5t0QMZuiXoA/Q6vcnxcLQP5vdugSpuAyi6SVGi2clPPp+xgEhuMaHC+zGgn31Kd235W35f7Hykkaww==}
- engines: {node: '>= 6'}
+ form-data@3.0.2:
dependencies:
asynckit: 0.4.0
combined-stream: 1.0.8
mime-types: 2.1.35
- /form-data/4.0.1:
- resolution: {integrity: sha512-tzN8e4TX8+kkxGPK8D5u0FNmjPUjw3lwC9lSLxxoB/+GtsJG91CO8bSWy73APlgAZzZbXEYZJuxjkHH2w+Ezhw==}
- engines: {node: '>= 6'}
+ form-data@4.0.1:
dependencies:
asynckit: 0.4.0
combined-stream: 1.0.8
mime-types: 2.1.35
- dev: false
- /format-io/2.0.0:
- resolution: {integrity: sha512-iQz8w2qr4f+doWBV6LsfScHbu1gXhccByjbmA1wjBTaKRhweH2baJL96UGR4C7Fjpr8zSkK7EXiLmbzZWTyQIA==}
- engines: {node: '>=8'}
+ format-io@2.0.0:
dependencies:
currify: 4.0.0
- dev: true
- /formdata-node/6.0.3:
- resolution: {integrity: sha512-8e1++BCiTzUno9v5IZ2J6bv4RU+3UKDmqWUQD0MIMVCd9AdhWkO1gw57oo1mNEX1dMq2EGI+FbWz4B92pscSQg==}
- engines: {node: '>= 18'}
- dev: false
+ formdata-node@6.0.3: {}
- /formdata-polyfill/4.0.10:
- resolution: {integrity: sha512-buewHzMvYL29jdeQTVILecSaZKnt/RJWjoZCF5OW60Z67/GmSLBkOFM7qh1PI3zFNtJbaZL5eQu1vLfazOwj4g==}
- engines: {node: '>=12.20.0'}
+ formdata-polyfill@4.0.10:
dependencies:
fetch-blob: 3.2.0
- dev: false
- /formidable/1.2.6:
- resolution: {integrity: sha512-KcpbcpuLNOwrEjnbpMC0gS+X8ciDoZE1kkqzat4a8vrprf+s9pKNQ/QIwWfbfs4ltgmFl3MD177SNTkve3BwGQ==}
- deprecated: 'Please upgrade to latest, formidable@v2 or formidable@v3! Check these notes: https://bit.ly/2ZEqIau'
- dev: false
+ formidable@1.2.6: {}
- /formidable/2.1.2:
- resolution: {integrity: sha512-CM3GuJ57US06mlpQ47YcunuUZ9jpm8Vx+P2CGt2j7HpgkKZO/DJYQ0Bobim8G6PFQmK5lOqOOdUXboU+h73A4g==}
+ formidable@2.1.2:
dependencies:
dezalgo: 1.0.4
hexoid: 1.0.0
once: 1.4.0
- qs: 6.12.0
- dev: false
-
- /fp-ts/2.16.1:
- resolution: {integrity: sha512-by7U5W8dkIzcvDofUcO42yl9JbnHTEDBrzu3pt5fKT+Z4Oy85I21K80EYJYdjQGC2qum4Vo55Ag57iiIK4FYuA==}
- dev: false
-
- /fp-ts/2.16.9:
- resolution: {integrity: sha512-+I2+FnVB+tVaxcYyQkHUq7ZdKScaBlX53A41mxQtpIccsfyv8PzdzP7fzp2AY832T4aoK6UZ5WRX/ebGd8uZuQ==}
- dev: false
+ qs: 6.13.1
- /fraudlabspro-nodejs/3.0.0:
- resolution: {integrity: sha512-f+3gwDWunQoFRiX8/pbegr28qRztGgKrxF0oH7yIZQho0N3/kZjYHn3LelTio++nGoPcDIKkZob/WS1jQuSnHg==}
- dev: false
+ fp-ts@2.16.9: {}
- /from/0.1.7:
- resolution: {integrity: sha512-twe20eF1OxVxp/ML/kq2p1uc6KvFK/+vs8WjEbeKmV2He22MKm7YF2ANIt+EOqhJ5L3K/SuuPhk0hWQDjOM23g==}
- dev: true
+ fraudlabspro-nodejs@3.0.0: {}
- /from2-array/0.0.4:
- resolution: {integrity: sha512-0G0cAp7sYLobH7ALsr835x98PU/YeVF7wlwxdWbCUaea7wsa7lJfKZUAo6p2YZGZ8F94luCuqHZS3JtFER6uPg==}
+ from2-array@0.0.4:
dependencies:
from2: 2.3.0
- dev: false
- /from2/2.3.0:
- resolution: {integrity: sha512-OMcX/4IC/uqEPVgGeyfN22LJk6AZrMkRZHxcHBMBvHScDGgwTm2GT2Wkgtocyd3JfZffjj2kYUDXXII0Fk9W0g==}
+ from2@2.3.0:
dependencies:
inherits: 2.0.4
readable-stream: 2.3.8
- dev: false
- /fs-constants/1.0.0:
- resolution: {integrity: sha512-y6OAwoSIf7FyjMIv94u+b5rdheZEjzR63GTyZJm5qh4Bi+2YgwLCcI/fPFZkL5PSixOt6ZNKm+w+Hfp/Bciwow==}
- dev: false
+ from@0.1.7: {}
- /fs-extra/11.1.1:
- resolution: {integrity: sha512-MGIE4HOvQCeUCzmlHs0vXpih4ysz4wg9qiSAu6cd42lVwPbTM1TjV7RusoyQqMmk/95gdQZX72u+YW+c3eEpFQ==}
- engines: {node: '>=14.14'}
+ fs-constants@1.0.0: {}
+
+ fs-extra@11.2.0:
dependencies:
graceful-fs: 4.2.11
jsonfile: 6.1.0
- universalify: 2.0.0
- dev: true
+ universalify: 2.0.1
- /fs-extra/6.0.1:
- resolution: {integrity: sha512-GnyIkKhhzXZUWFCaJzvyDLEEgDkPfb4/TPvJCJVuS8MWZgoSsErf++QpiAlDnKFcqhRlm+tIOcencCjyJE6ZCA==}
+ fs-extra@6.0.1:
dependencies:
graceful-fs: 4.2.11
jsonfile: 4.0.0
universalify: 0.1.2
- dev: true
- /fs-extra/8.1.0:
- resolution: {integrity: sha512-yhlQgA6mnOJUKOsRUFsgJdQCvkKhcz8tlZG5HBQfReYZy46OwLcY+Zia0mtdHsOo9y/hP+CxMN0TU9QxoOtG4g==}
- engines: {node: '>=6 <7 || >=8'}
+ fs-extra@7.0.1:
dependencies:
graceful-fs: 4.2.11
jsonfile: 4.0.0
universalify: 0.1.2
- dev: false
- /fs-minipass/2.1.0:
- resolution: {integrity: sha512-V/JgOLFCS+R6Vcq0slCuaeWEdNC3ouDlJMNIsacH2VtALiu9mV4LPrHc5cDl8k5aw6J8jwgWWpiTo5RYhmIzvg==}
- engines: {node: '>= 8'}
+ fs-extra@8.1.0:
+ dependencies:
+ graceful-fs: 4.2.11
+ jsonfile: 4.0.0
+ universalify: 0.1.2
+
+ fs-minipass@2.1.0:
dependencies:
minipass: 3.3.6
- dev: true
- /fs-readdir-recursive/1.1.0:
- resolution: {integrity: sha512-GNanXlVr2pf02+sPN40XN8HG+ePaNcvM0q5mZBd668Obwb0yD5GiUbZOFgwn8kGMY6I3mdyDJzieUy3PTYyTRA==}
- dev: false
+ fs-readdir-recursive@1.1.0: {}
- /fs.realpath/1.0.0:
- resolution: {integrity: sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==}
+ fs.realpath@1.0.0: {}
- /fs/0.0.1-security:
- resolution: {integrity: sha512-3XY9e1pP0CVEUCdj5BmfIZxRBTSDycnbqhIOGec9QYtmVH2fbLpj86CFWkrNOkt/Fvty4KZG5lTglL9j/gJ87w==}
- dev: false
+ fs@0.0.1-security: {}
- /fsevents/2.3.3:
- resolution: {integrity: sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==}
- engines: {node: ^8.16.0 || ^10.6.0 || >=11.0.0}
- os: [darwin]
- requiresBuild: true
+ fsevents@2.3.3:
optional: true
- /ftp/0.3.10:
- resolution: {integrity: sha512-faFVML1aBx2UoDStmLwv2Wptt4vw5x03xxX172nhA5Y5HBshW5JweqQ2W4xL4dezQTG8inJsuYcpPHHU3X5OTQ==}
- engines: {node: '>=0.8.0'}
+ ftp@0.3.10:
dependencies:
readable-stream: 1.1.14
xregexp: 2.0.0
- dev: false
- /fullstore/3.0.0:
- resolution: {integrity: sha512-EEIdG+HWpyygWRwSLIZy+x4u0xtghjHNfhQb0mI5825Mmjq6oFESFUY0hoZigEgd3KH8GX+ZOCK9wgmOiS7VBQ==}
- engines: {node: '>=4'}
- dev: true
+ fullstore@3.0.0: {}
- /function-bind/1.1.2:
- resolution: {integrity: sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==}
+ function-bind@1.1.2: {}
- /function.prototype.name/1.1.6:
- resolution: {integrity: sha512-Z5kx79swU5P27WEayXM1tBi5Ze/lbIyiNgU3qyXUOf9b2rgXYyF9Dy9Cx+IQv/Lc8WCG6L82zwUPpSS9hGehIg==}
- engines: {node: '>= 0.4'}
+ function.prototype.name@1.1.6:
dependencies:
call-bind: 1.0.7
define-properties: 1.2.1
- es-abstract: 1.23.3
+ es-abstract: 1.23.5
functions-have-names: 1.2.3
- /functional-red-black-tree/1.0.1:
- resolution: {integrity: sha512-dsKNQNdj6xA3T+QlADDA7mOSlX0qiMINjn0cgr+eGHGsbSHzTabcIogz2+p/iqP1Xs6EP/sS2SbqH+brGTbq0g==}
+ functional-red-black-tree@1.0.1:
+ optional: true
- /functions-have-names/1.2.3:
- resolution: {integrity: sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ==}
+ functions-have-names@1.2.3: {}
- /gauge/2.7.4:
- resolution: {integrity: sha512-14x4kjc6lkD3ltw589k0NrPD6cCNTD6CWoVUNpB85+DrtONoZn+Rug6xZU5RvSC4+TZPxA5AnBibQYAvZn41Hg==}
- deprecated: This package is no longer supported.
+ gauge@2.7.4:
dependencies:
aproba: 1.2.0
console-control-strings: 1.1.0
@@ -26977,12 +33372,9 @@ packages:
string-width: 1.0.2
strip-ansi: 3.0.1
wide-align: 1.1.5
- dev: true
optional: true
- /gaxios/4.3.3:
- resolution: {integrity: sha512-gSaYYIO1Y3wUtdfHmjDUZ8LWaxJQpiavzbF5Kq53akSzvmVg0RfyOcFDbO1KJ/KCGRFz2qG+lS81F0nkr7cRJA==}
- engines: {node: '>=10'}
+ gaxios@4.3.3:
dependencies:
abort-controller: 3.0.0
extend: 3.0.2
@@ -26992,11 +33384,8 @@ packages:
transitivePeerDependencies:
- encoding
- supports-color
- dev: false
- /gaxios/5.1.3:
- resolution: {integrity: sha512-95hVgBRgEIRQQQHIbnxBXeHbW4TqFk4ZDJW7wmVtvYar72FdhRIo1UGOLS2eRAKCPEdPBWu+M7+A33D9CdX9rA==}
- engines: {node: '>=12'}
+ gaxios@5.1.3:
dependencies:
extend: 3.0.2
https-proxy-agent: 5.0.1
@@ -27005,63 +33394,50 @@ packages:
transitivePeerDependencies:
- encoding
- supports-color
- dev: false
- /gaxios/6.1.1:
- resolution: {integrity: sha512-bw8smrX+XlAoo9o1JAksBwX+hi/RG15J+NTSxmNPIclKC3ZVK6C2afwY8OSdRvOK0+ZLecUJYtj2MmjOt3Dm0w==}
- engines: {node: '>=14'}
+ gaxios@6.7.1:
dependencies:
extend: 3.0.2
- https-proxy-agent: 7.0.2
+ https-proxy-agent: 7.0.5
is-stream: 2.0.1
node-fetch: 2.7.0
+ uuid: 9.0.1
transitivePeerDependencies:
- encoding
- supports-color
- dev: false
- /gcp-metadata/4.3.1:
- resolution: {integrity: sha512-x850LS5N7V1F3UcV7PoupzGsyD6iVwTVvsh3tbXfkctZnBnjW5yu5z1/3k3SehF7TyoTIe78rJs02GMMy+LF+A==}
- engines: {node: '>=10'}
+ gcp-metadata@4.3.1:
dependencies:
gaxios: 4.3.3
json-bigint: 1.0.0
transitivePeerDependencies:
- encoding
- supports-color
- dev: false
- /gcp-metadata/5.3.0:
- resolution: {integrity: sha512-FNTkdNEnBdlqF2oatizolQqNANMrcqJt6AAYt99B3y1aLLC8Hc5IOBb+ZnnzllodEEf6xMBp6wRcBbc16fa65w==}
- engines: {node: '>=12'}
+ gcp-metadata@5.3.0:
dependencies:
gaxios: 5.1.3
json-bigint: 1.0.0
transitivePeerDependencies:
- encoding
- supports-color
- dev: false
- /gcp-metadata/6.1.0:
- resolution: {integrity: sha512-Jh/AIwwgaxan+7ZUUmRLCjtchyDiqh4KjBJ5tW3plBZb5iL/BPcso8A5DlzeD9qlw0duCamnNdpFjxwaT0KyKg==}
- engines: {node: '>=14'}
+ gcp-metadata@6.1.0:
dependencies:
- gaxios: 6.1.1
+ gaxios: 6.7.1
json-bigint: 1.0.0
transitivePeerDependencies:
- encoding
- supports-color
- dev: false
- /gdata-vaas/2.4.1:
- resolution: {integrity: sha512-G7Rn3jJ1QtMfr4fxtJ9ZwA2UikE1CAd9fAjc/HxeELJ+FwtqiTORSFdyE7boZsyCYzp5PcQ/69W8zSvz8xytUg==}
+ gdata-vaas@2.4.1:
dependencies:
'@types/uuid': 8.3.4
'@types/ws': 8.5.3
'@ungap/url-search-params': 0.2.2
axios: 0.27.2
fast-sha256: 1.3.0
- isomorphic-ws: 4.0.1_ws@8.7.0
+ isomorphic-ws: 4.0.1(ws@8.7.0)
typescript-json-serializer: 3.4.5
uuid: 8.3.2
ws: 8.7.0
@@ -27069,38 +33445,23 @@ packages:
- bufferutil
- debug
- utf-8-validate
- dev: false
- /generate-function/2.3.1:
- resolution: {integrity: sha512-eeB5GfMNeevm/GRYq20ShmsaGcmI81kIX2K9XQx5miC8KdHaC6Jm0qQ8ZNeGOi7wYB8OsdxKs+Y2oVuTFuVwKQ==}
+ generate-function@2.3.1:
dependencies:
is-property: 1.0.2
- dev: false
- /generic-pool/3.9.0:
- resolution: {integrity: sha512-hymDOu5B53XvN4QT9dBmZxPX4CWhBPPLguTZ9MMFeFa/Kg0xWVfylOVNlJji/E7yTZWFd/q9GO5TxDLq156D7g==}
- engines: {node: '>= 4'}
- dev: false
+ generic-pool@3.9.0: {}
- /gensync/1.0.0-beta.2:
- resolution: {integrity: sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==}
- engines: {node: '>=6.9.0'}
+ gensync@1.0.0-beta.2: {}
- /get-amd-module-type/3.0.2:
- resolution: {integrity: sha512-PcuKwB8ouJnKuAPn6Hk3UtdfKoUV3zXRqVEvj8XGIXqjWfgd1j7QGdXy5Z9OdQfzVt1Sk29HVe/P+X74ccOuqw==}
- engines: {node: '>=6.0'}
+ get-amd-module-type@3.0.2:
dependencies:
ast-module-types: 3.0.0
node-source-walk: 4.3.0
- dev: false
- /get-caller-file/2.0.5:
- resolution: {integrity: sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==}
- engines: {node: 6.* || 8.* || >= 10.*}
+ get-caller-file@2.0.5: {}
- /get-intrinsic/1.2.4:
- resolution: {integrity: sha512-5uYhsJH8VJBTv7oslg4BznJYhDoRI6waYCxMmCdnTrcCrHA/fCFKoTFz2JKKE0HdDFUF7/oQuhzumXJK7paBRQ==}
- engines: {node: '>= 0.4'}
+ get-intrinsic@1.2.4:
dependencies:
es-errors: 1.3.0
function-bind: 1.1.2
@@ -27108,117 +33469,70 @@ packages:
has-symbols: 1.0.3
hasown: 2.0.2
- /get-package-type/0.1.0:
- resolution: {integrity: sha512-pjzuKtY64GYfWizNAJ0fr9VqttZkNiK2iS430LtIHzjBEr6bX8Am2zm4sW4Ro5wjWW5cAlRL1qAMTcXbjNAO2Q==}
- engines: {node: '>=8.0.0'}
- dev: true
+ get-package-type@0.1.0: {}
- /get-stdin/7.0.0:
- resolution: {integrity: sha512-zRKcywvrXlXsA0v0i9Io4KDRaAw7+a1ZpjRwl9Wox8PFlVCCHra7E9c4kqXCoCM9nR5tBkaTTZRBoCm60bFqTQ==}
- engines: {node: '>=8'}
- dev: true
+ get-stdin@7.0.0: {}
- /get-stream/3.0.0:
- resolution: {integrity: sha512-GlhdIUuVakc8SJ6kK0zAFbiGzRFzNnY4jUuEbV9UROo4Y+0Ny4fjvcZFVTeDA4odpFyOQzaw6hXukJSq/f28sQ==}
- engines: {node: '>=4'}
- dev: false
+ get-stream@3.0.0: {}
- /get-stream/4.1.0:
- resolution: {integrity: sha512-GMat4EJ5161kIy2HevLlr4luNjBgvmj413KaQA7jt4V8B4RDsfpHk7WQ9GVqfYyyx8OS/L66Kox+rJRNklLK7w==}
- engines: {node: '>=6'}
+ get-stream@4.1.0:
dependencies:
- pump: 3.0.0
- dev: true
+ pump: 3.0.2
- /get-stream/5.2.0:
- resolution: {integrity: sha512-nBF+F1rAZVCu/p7rjzgA+Yb4lfYXrpl7a6VmJrU8wF9I1CKvP/QwPNZHnOlwbTkY6dvtFIzFMSyQXbLoTQPRpA==}
- engines: {node: '>=8'}
+ get-stream@5.2.0:
dependencies:
- pump: 3.0.0
- dev: false
+ pump: 3.0.2
- /get-stream/6.0.1:
- resolution: {integrity: sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg==}
- engines: {node: '>=10'}
+ get-stream@6.0.1: {}
- /get-stream/8.0.1:
- resolution: {integrity: sha512-VaUJspBffn/LMCJVoMvSAdmscJyS1auj5Zulnn5UoYcY531UWmdwhRWkcGKnGU93m5HSXP9LP2usOryrBtQowA==}
- engines: {node: '>=16'}
- dev: false
+ get-stream@9.0.1:
+ dependencies:
+ '@sec-ant/readable-stream': 0.4.1
+ is-stream: 4.0.1
- /get-symbol-description/1.0.2:
- resolution: {integrity: sha512-g0QYk1dZBxGwk+Ngc+ltRH2IBp2f7zBkBMBJZCDerh6EhlhSR6+9irMCuT/09zD6qkarHUSn529sK/yL4S27mg==}
- engines: {node: '>= 0.4'}
+ get-symbol-description@1.0.2:
dependencies:
call-bind: 1.0.7
es-errors: 1.3.0
get-intrinsic: 1.2.4
- /get-tsconfig/4.8.1:
- resolution: {integrity: sha512-k9PN+cFBmaLWtVz29SkUoqU5O0slLuHJXt/2P+tMVFT+phsSGXGkp9t3rQIqdz0e+06EHNGs3oM6ZX1s2zHxRg==}
+ get-tsconfig@4.8.1:
dependencies:
resolve-pkg-maps: 1.0.0
- dev: true
- /get-uri/3.0.2:
- resolution: {integrity: sha512-+5s0SJbGoyiJTZZ2JTpFPLMPSch72KEqGOTvQsBqg0RBWvwhWUSYZFAtz3TPW0GXJuLBJPts1E241iHg+VRfhg==}
- engines: {node: '>= 6'}
+ get-uri@3.0.2:
dependencies:
'@tootallnate/once': 1.1.2
data-uri-to-buffer: 3.0.1
- debug: 4.3.6
+ debug: 4.3.7(supports-color@9.4.0)
file-uri-to-path: 2.0.0
fs-extra: 8.1.0
ftp: 0.3.10
transitivePeerDependencies:
- supports-color
- dev: false
- /get-uri/6.0.2:
- resolution: {integrity: sha512-5KLucCJobh8vBY1K07EFV4+cPZH3mrV9YeAruUseCQKHB58SGjjT2l9/eA9LD082IiuMjSlFJEcdJ27TXvbZNw==}
- engines: {node: '>= 14'}
+ get-uri@6.0.3:
dependencies:
- basic-ftp: 5.0.4
- data-uri-to-buffer: 6.0.1
- debug: 4.3.6
- fs-extra: 8.1.0
+ basic-ftp: 5.0.5
+ data-uri-to-buffer: 6.0.2
+ debug: 4.3.4
+ fs-extra: 11.2.0
transitivePeerDependencies:
- supports-color
- dev: false
- /getpass/0.1.7:
- resolution: {integrity: sha512-0fzj9JxOLfJ+XGLhR8ze3unN0KZCgZwiSSDz168VERjK8Wl8kVSdcu2kspd4s4wtAa1y/qrVRiAA0WclVsu0ng==}
+ getpass@0.1.7:
dependencies:
assert-plus: 1.0.0
- /glob-parent/5.1.2:
- resolution: {integrity: sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==}
- engines: {node: '>= 6'}
+ glob-parent@5.1.2:
dependencies:
is-glob: 4.0.3
- /glob-parent/6.0.2:
- resolution: {integrity: sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==}
- engines: {node: '>=10.13.0'}
+ glob-parent@6.0.2:
dependencies:
is-glob: 4.0.3
- dev: true
-
- /glob/10.3.10:
- resolution: {integrity: sha512-fa46+tv1Ak0UPK1TOy/pZrIybNNt4HCv7SDzwyfiOZkvZLEbjsZkJBPtDHVshZjbecAoAGSC20MjLDG/qr679g==}
- engines: {node: '>=16 || 14 >=14.17'}
- hasBin: true
- dependencies:
- foreground-child: 3.3.0
- jackspeak: 2.3.6
- minimatch: 9.0.5
- minipass: 5.0.0
- path-scurry: 1.11.1
- dev: true
- /glob/7.2.3:
- resolution: {integrity: sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==}
- deprecated: Glob versions prior to v9 are no longer supported
+ glob@7.2.3:
dependencies:
fs.realpath: 1.0.0
inflight: 1.0.6
@@ -27227,110 +33541,95 @@ packages:
once: 1.4.0
path-is-absolute: 1.0.1
- /glob/8.1.0:
- resolution: {integrity: sha512-r8hpEjiQEYlF2QU0df3dS+nxxSIreXQS1qRhMJM0Q5NDdR386C7jb7Hwwod8Fgiuex+k0GFjgft18yvxm5XoCQ==}
- engines: {node: '>=12'}
- deprecated: Glob versions prior to v9 are no longer supported
+ glob@8.1.0:
dependencies:
fs.realpath: 1.0.0
inflight: 1.0.6
inherits: 2.0.4
minimatch: 5.1.6
once: 1.4.0
- dev: false
- /global-dirs/3.0.1:
- resolution: {integrity: sha512-NBcGGFbBA9s1VzD41QXDG+3++t9Mn5t1FpLdhESY6oKY4gYTFpX4wO3sqGUa0Srjtbfj3szX0RnemmrVRUdULA==}
- engines: {node: '>=10'}
+ global-dirs@3.0.1:
dependencies:
ini: 2.0.0
- dev: true
- /global-modules/2.0.0:
- resolution: {integrity: sha512-NGbfmJBp9x8IxyJSd1P+otYK8vonoJactOogrVfFRIAEY1ukil8RSKDz2Yo7wh1oihl51l/r6W4epkeKJHqL8A==}
- engines: {node: '>=6'}
+ global-modules@2.0.0:
dependencies:
global-prefix: 3.0.0
- dev: true
- /global-prefix/3.0.0:
- resolution: {integrity: sha512-awConJSVCHVGND6x3tmMaKcQvwXLhjdkmomy2W+Goaui8YPgYgXJZewhg3fWC+DlfqqQuWg8AwqjGTD2nAPVWg==}
- engines: {node: '>=6'}
+ global-prefix@3.0.0:
dependencies:
ini: 1.3.8
kind-of: 6.0.3
which: 1.3.1
- dev: true
- /globals/11.12.0:
- resolution: {integrity: sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==}
- engines: {node: '>=4'}
+ globals@11.12.0: {}
- /globals/13.22.0:
- resolution: {integrity: sha512-H1Ddc/PbZHTDVJSnj8kWptIRSD6AM3pK+mKytuIVF4uoBV7rshFlhhvA58ceJ5wp3Er58w6zj7bykMpYXt3ETw==}
- engines: {node: '>=8'}
+ globals@13.24.0:
dependencies:
type-fest: 0.20.2
- dev: true
- /globalthis/1.0.4:
- resolution: {integrity: sha512-DpLKbNU4WylpxJykQujfCcwYWiV/Jhm50Goo0wrVILAv5jOr9d+H+UR3PhSCD2rCCEIg0uc+G+muBTwD54JhDQ==}
- engines: {node: '>= 0.4'}
+ globals@14.0.0: {}
+
+ globals@15.12.0: {}
+
+ globalthis@1.0.4:
dependencies:
define-properties: 1.2.1
gopd: 1.0.1
- /globby/10.0.2:
- resolution: {integrity: sha512-7dUi7RvCoT/xast/o/dLN53oqND4yk0nsHkhRgn9w65C4PofCLOoJ39iSOg+qVDdWQPIEj+eszMHQ+aLVwwQSg==}
- engines: {node: '>=8'}
+ globby@10.0.2:
dependencies:
'@types/glob': 7.2.0
array-union: 2.1.0
dir-glob: 3.0.1
fast-glob: 3.3.2
glob: 7.2.3
- ignore: 5.3.1
+ ignore: 5.3.2
merge2: 1.4.1
slash: 3.0.0
- dev: false
- /globby/11.1.0:
- resolution: {integrity: sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g==}
- engines: {node: '>=10'}
+ globby@11.1.0:
dependencies:
array-union: 2.1.0
dir-glob: 3.0.1
fast-glob: 3.3.2
- ignore: 5.3.1
+ ignore: 5.3.2
merge2: 1.4.1
slash: 3.0.0
- /globby/13.2.2:
- resolution: {integrity: sha512-Y1zNGV+pzQdh7H39l9zgB4PJqjRNqydvdYCDG4HFXM4XuvSaQQlEc91IU1yALL8gUTDomgBAfz3XJdmUS+oo0w==}
- engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0}
+ globby@13.2.2:
dependencies:
dir-glob: 3.0.1
fast-glob: 3.3.2
- ignore: 5.3.1
+ ignore: 5.3.2
merge2: 1.4.1
slash: 4.0.0
- dev: true
- /globjoin/0.1.4:
- resolution: {integrity: sha512-xYfnw62CKG8nLkZBfWbhWwDw02CHty86jfPcc2cr3ZfeuK9ysoVPPEUxf21bAD/rWAgk52SuBrLJlefNy8mvFg==}
- dev: true
+ globjoin@0.1.4: {}
- /gonzales-pe/4.3.0:
- resolution: {integrity: sha512-otgSPpUmdWJ43VXyiNgEYE4luzHCL2pz4wQ0OnDluC6Eg4Ko3Vexy/SrSynglw/eR+OhkzmqFCZa/OFa/RgAOQ==}
- engines: {node: '>=0.6.0'}
- hasBin: true
+ goldstein@5.19.0(eslint@8.57.1)(typescript@5.6.3):
+ dependencies:
+ '@putout/plugin-declare': 4.0.0(putout@36.13.1(eslint@8.57.1)(typescript@5.6.3))
+ '@putout/plugin-logical-expressions': 6.0.0(putout@36.13.1(eslint@8.57.1)(typescript@5.6.3))
+ '@putout/plugin-try-catch': 4.0.0(putout@36.13.1(eslint@8.57.1)(typescript@5.6.3))
+ '@putout/printer': 10.3.0
+ acorn: 8.14.0
+ acorn-typescript: 1.4.13(acorn@8.14.0)
+ estree-to-babel: 10.0.1
+ estree-util-attach-comments: 3.0.0
+ putout: 36.13.1(eslint@8.57.1)(typescript@5.6.3)
+ try-catch: 3.0.1
+ transitivePeerDependencies:
+ - eslint
+ - supports-color
+ - typescript
+
+ gonzales-pe@4.3.0:
dependencies:
minimist: 1.2.8
- dev: false
- /google-auth-library/7.14.1:
- resolution: {integrity: sha512-5Rk7iLNDFhFeBYc3s8l1CqzbEBcdhwR193RlD4vSNFajIcINKI8W8P0JLmBpwymHqqWbX34pJDQu39cSy/6RsA==}
- engines: {node: '>=10'}
+ google-auth-library@7.14.1:
dependencies:
arrify: 2.0.1
base64-js: 1.5.1
@@ -27344,11 +33643,8 @@ packages:
transitivePeerDependencies:
- encoding
- supports-color
- dev: false
- /google-auth-library/8.9.0:
- resolution: {integrity: sha512-f7aQCJODJFmYWN6PeNKzgvy9LI2tYmXnzpNDHEjG5sDNPgGb2FXQyTBnXeSH+PAtpKESFD+LmHw3Ox3mN7e1Fg==}
- engines: {node: '>=12'}
+ google-auth-library@8.9.0:
dependencies:
arrify: 2.0.1
base64-js: 1.5.1
@@ -27362,58 +33658,33 @@ packages:
transitivePeerDependencies:
- encoding
- supports-color
- dev: false
-
- /google-auth-library/9.1.0:
- resolution: {integrity: sha512-1M9HdOcQNPV5BwSXqwwT238MTKodJFBxZ/V2JP397ieOLv4FjQdfYb9SooR7Mb+oUT2IJ92mLJQf804dyx0MJA==}
- engines: {node: '>=14'}
- dependencies:
- base64-js: 1.5.1
- ecdsa-sig-formatter: 1.0.11
- gaxios: 6.1.1
- gcp-metadata: 6.1.0
- gtoken: 7.0.1
- jws: 4.0.0
- lru-cache: 6.0.0
- transitivePeerDependencies:
- - encoding
- - supports-color
- dev: false
- /google-auth-library/9.14.0:
- resolution: {integrity: sha512-Y/eq+RWVs55Io/anIsm24sDS8X79Tq948zVLGaa7+KlJYYqaGwp1YI37w48nzrNi12RgnzMrQD4NzdmCowT90g==}
- engines: {node: '>=14'}
+ google-auth-library@9.15.0:
dependencies:
base64-js: 1.5.1
ecdsa-sig-formatter: 1.0.11
- gaxios: 6.1.1
+ gaxios: 6.7.1
gcp-metadata: 6.1.0
- gtoken: 7.0.1
+ gtoken: 7.1.0
jws: 4.0.0
transitivePeerDependencies:
- encoding
- supports-color
- dev: false
- /google-docs-mustaches/1.2.2:
- resolution: {integrity: sha512-RkV/3468jlT6TNOiPKVIPS+Q+P7OFffTkrW/z5s9u7GO/aad9tIT2XTmHwpAgXvT8Lekf/bNOjeKMWIuRtlXdg==}
+ google-docs-mustaches@1.2.2:
dependencies:
cross-fetch: 3.1.8
fetch-blob: 1.0.6
transitivePeerDependencies:
- encoding
- dev: false
- /google-gax/2.30.5:
- resolution: {integrity: sha512-Jey13YrAN2hfpozHzbtrwEfEHdStJh1GwaQ2+Akh1k0Tv/EuNVSuBtHZoKSBm5wBMvNsxTsEIZ/152NrYyZgxQ==}
- engines: {node: '>=10'}
- hasBin: true
+ google-gax@2.30.5:
dependencies:
'@grpc/grpc-js': 1.6.12
'@grpc/proto-loader': 0.6.13
'@types/long': 4.0.2
abort-controller: 3.0.0
- duplexify: 4.1.2
+ duplexify: 4.1.3
fast-text-encoding: 1.0.6
google-auth-library: 7.14.1
is-stream-ended: 0.1.4
@@ -27425,20 +33696,16 @@ packages:
transitivePeerDependencies:
- encoding
- supports-color
- dev: false
optional: true
- /google-gax/3.6.1:
- resolution: {integrity: sha512-g/lcUjGcB6DSw2HxgEmCDOrI/CByOwqRvsuUvNalHUK2iPPPlmAIpbMbl62u0YufGMr8zgE3JL7th6dCb1Ry+w==}
- engines: {node: '>=12'}
- hasBin: true
+ google-gax@3.6.1:
dependencies:
- '@grpc/grpc-js': 1.8.21
+ '@grpc/grpc-js': 1.8.22
'@grpc/proto-loader': 0.7.13
'@types/long': 4.0.2
'@types/rimraf': 3.0.2
abort-controller: 3.0.0
- duplexify: 4.1.2
+ duplexify: 4.1.3
fast-text-encoding: 1.0.6
google-auth-library: 8.9.0
is-stream-ended: 0.1.4
@@ -27446,176 +33713,118 @@ packages:
object-hash: 3.0.0
proto3-json-serializer: 1.1.1
protobufjs: 7.2.4
- protobufjs-cli: 1.1.1_protobufjs@7.2.4
+ protobufjs-cli: 1.1.1(protobufjs@7.2.4)
retry-request: 5.0.2
transitivePeerDependencies:
- encoding
- supports-color
- dev: false
-
- /google-gax/4.0.5:
- resolution: {integrity: sha512-yLoYtp4zE+8OQA74oBEbNkbzI6c95W01JSL7RqC8XERKpRvj3ytZp1dgnbA6G9aRsc8pZB25xWYBcCmrbYOEhA==}
- engines: {node: '>=14'}
- dependencies:
- '@grpc/grpc-js': 1.9.9
- '@grpc/proto-loader': 0.7.13
- '@types/long': 4.0.2
- abort-controller: 3.0.0
- duplexify: 4.1.2
- google-auth-library: 9.14.0
- node-fetch: 2.7.0
- object-hash: 3.0.0
- proto3-json-serializer: 2.0.0
- protobufjs: 7.2.5
- retry-request: 7.0.1
- transitivePeerDependencies:
- - encoding
- - supports-color
- dev: false
- /google-gax/4.4.0:
- resolution: {integrity: sha512-4fkXSbNy85ikO7mkD5lChLL5UfLnRBvg6z3s3THUJKI6OSbISbufMDE4S/ZH+J3mB9A2FdMXBT/hh7wTvpGAow==}
- engines: {node: '>=14'}
+ google-gax@4.4.1:
dependencies:
- '@grpc/grpc-js': 1.11.1
+ '@grpc/grpc-js': 1.12.2
'@grpc/proto-loader': 0.7.13
'@types/long': 4.0.2
abort-controller: 3.0.0
- duplexify: 4.1.2
- google-auth-library: 9.14.0
+ duplexify: 4.1.3
+ google-auth-library: 9.15.0
node-fetch: 2.7.0
object-hash: 3.0.0
proto3-json-serializer: 2.0.2
protobufjs: 7.4.0
- retry-request: 7.0.1
+ retry-request: 7.0.2
uuid: 9.0.1
transitivePeerDependencies:
- encoding
- supports-color
- dev: false
- /google-p12-pem/3.1.4:
- resolution: {integrity: sha512-HHuHmkLgwjdmVRngf5+gSmpkyaRI6QmOg77J8tkNBHhNEI62sGHyw4/+UkgyZEI7h84NbWprXDJ+sa3xOYFvTg==}
- engines: {node: '>=10'}
- hasBin: true
+ google-p12-pem@3.1.4:
dependencies:
node-forge: 1.3.1
- dev: false
- /google-p12-pem/4.0.1:
- resolution: {integrity: sha512-WPkN4yGtz05WZ5EhtlxNDWPhC4JIic6G8ePitwUWy4l+XPVYec+a0j0Ts47PDtW59y3RwAhUd9/h9ZZ63px6RQ==}
- engines: {node: '>=12.0.0'}
- hasBin: true
+ google-p12-pem@4.0.1:
dependencies:
node-forge: 1.3.1
- dev: false
- /google-protobuf/3.21.4:
- resolution: {integrity: sha512-MnG7N936zcKTco4Jd2PX2U96Kf9PxygAPKBug+74LHzmHXmceN16MmRcdgZv+DGef/S9YvQAfRsNCn4cjf9yyQ==}
- dev: false
+ google-protobuf@3.21.4: {}
- /googleapis-common/5.1.0:
- resolution: {integrity: sha512-RXrif+Gzhq1QAzfjxulbGvAY3FPj8zq/CYcvgjzDbaBNCD6bUl+86I7mUs4DKWHGruuK26ijjR/eDpWIDgNROA==}
- engines: {node: '>=10.10.0'}
+ googleapis-common@5.1.0:
dependencies:
extend: 3.0.2
gaxios: 4.3.3
google-auth-library: 7.14.1
- qs: 6.12.0
+ qs: 6.13.1
url-template: 2.0.8
uuid: 8.3.2
transitivePeerDependencies:
- encoding
- supports-color
- dev: false
- /googleapis-common/6.0.4:
- resolution: {integrity: sha512-m4ErxGE8unR1z0VajT6AYk3s6a9gIMM6EkDZfkPnES8joeOlEtFEJeF8IyZkb0tjPXkktUfYrE4b3Li1DNyOwA==}
- engines: {node: '>=12.0.0'}
+ googleapis-common@6.0.4:
dependencies:
extend: 3.0.2
gaxios: 5.1.3
google-auth-library: 8.9.0
- qs: 6.12.0
+ qs: 6.13.1
url-template: 2.0.8
uuid: 9.0.1
transitivePeerDependencies:
- encoding
- supports-color
- dev: false
- /googleapis-common/7.0.0:
- resolution: {integrity: sha512-58iSybJPQZ8XZNMpjrklICefuOuyJ0lMxfKmBqmaC0/xGT4SiOs4BE60LAOOGtBURy1n8fHa2X2YUNFEWWbXyQ==}
- engines: {node: '>=14.0.0'}
+ googleapis-common@7.2.0:
dependencies:
extend: 3.0.2
- gaxios: 6.1.1
- google-auth-library: 9.14.0
- qs: 6.12.0
+ gaxios: 6.7.1
+ google-auth-library: 9.15.0
+ qs: 6.13.1
url-template: 2.0.8
uuid: 9.0.1
transitivePeerDependencies:
- encoding
- supports-color
- dev: false
- /googleapis/105.0.0:
- resolution: {integrity: sha512-wH/jU/6QpqwsjTKj4vfKZz97ne7xT7BBbKwzQEwnbsG8iH9Seyw19P+AuLJcxNNrmgblwLqfr3LORg4Okat1BQ==}
- engines: {node: '>=12.0.0'}
+ googleapis@105.0.0:
dependencies:
google-auth-library: 8.9.0
googleapis-common: 6.0.4
transitivePeerDependencies:
- encoding
- supports-color
- dev: false
- /googleapis/108.0.1:
- resolution: {integrity: sha512-NKYTMfQH1xVl38Efj4UAwYq/9j+vc/iaqULfG3dSBK4vQHhsYKgKN6agMrgzlWo3NA8ivwb/0bToxZxnhxj7Bg==}
- engines: {node: '>=12.0.0'}
+ googleapis@108.0.1:
dependencies:
google-auth-library: 8.9.0
googleapis-common: 6.0.4
transitivePeerDependencies:
- encoding
- supports-color
- dev: false
- /googleapis/131.0.0:
- resolution: {integrity: sha512-fa4kdkY0VwHDw/04ItpQv2tlvlPIwbh6NjHDoWAVrV52GuaZbYCMOC5Y+hRmprp5HHIMRODmyb2YujlbZSRUbQ==}
- engines: {node: '>=14.0.0'}
+ googleapis@131.0.0:
dependencies:
- google-auth-library: 9.1.0
- googleapis-common: 7.0.0
+ google-auth-library: 9.15.0
+ googleapis-common: 7.2.0
transitivePeerDependencies:
- encoding
- supports-color
- dev: false
- /googleapis/96.0.0:
- resolution: {integrity: sha512-tEQtcukxA4sW1OXh35teJbui+BIjMTghH6i0tvUctyXgMDO0Upu3+hrytrw9JqZJxtXReM3Wr5+g4U7veqHpBQ==}
- engines: {node: '>=10'}
+ googleapis@96.0.0:
dependencies:
google-auth-library: 7.14.1
googleapis-common: 5.1.0
transitivePeerDependencies:
- encoding
- supports-color
- dev: false
- /gopd/1.0.1:
- resolution: {integrity: sha512-d65bNlIadxvpb/A2abVdlqKqV563juRnZ1Wtk6s1sIR8uNsXR70xqIzVqxVf1eTqDunwT2MkczEeaezCKTZhwA==}
+ gopd@1.0.1:
dependencies:
get-intrinsic: 1.2.4
- /got/11.8.6:
- resolution: {integrity: sha512-6tfZ91bOr7bOXnK7PRDCGBLa1H4U080YHNaAQ2KsMGlLEzRbk44nsZF2E1IeRc3vtJHPVbKCYgdFbaGO2ljd8g==}
- engines: {node: '>=10.19.0'}
+ got@11.8.6:
dependencies:
'@sindresorhus/is': 4.6.0
'@szmarczak/http-timer': 4.0.6
'@types/cacheable-request': 6.0.3
- '@types/responselike': 1.0.1
+ '@types/responselike': 1.0.3
cacheable-lookup: 5.0.4
cacheable-request: 7.0.4
decompress-response: 6.0.0
@@ -27623,28 +33832,22 @@ packages:
lowercase-keys: 2.0.0
p-cancelable: 2.1.1
responselike: 2.0.1
- dev: false
- /got/12.6.1:
- resolution: {integrity: sha512-mThBblvlAF1d4O5oqyvN+ZxLAYwIJK7bpMxgYqPD9okW0C3qm5FFn7k811QrcuEBwaogR3ngOFoCfs6mRv7teQ==}
- engines: {node: '>=14.16'}
+ got@12.6.1:
dependencies:
'@sindresorhus/is': 5.6.0
'@szmarczak/http-timer': 5.0.1
cacheable-lookup: 7.0.0
- cacheable-request: 10.2.13
+ cacheable-request: 10.2.14
decompress-response: 6.0.0
form-data-encoder: 2.1.4
get-stream: 6.0.1
- http2-wrapper: 2.2.0
+ http2-wrapper: 2.2.1
lowercase-keys: 3.0.0
p-cancelable: 3.0.0
responselike: 3.0.0
- dev: false
- /got/13.0.0:
- resolution: {integrity: sha512-XfBk1CxOOScDcMr9O1yKkNaQyy865NbYs+F7dr4H0LZMVgCj2Le59k6PqbNHoL5ToeaEQUYh6c6yMfVcc6SJxA==}
- engines: {node: '>=16'}
+ got@13.0.0:
dependencies:
'@sindresorhus/is': 5.6.0
'@szmarczak/http-timer': 5.0.1
@@ -27657,31 +33860,25 @@ packages:
lowercase-keys: 3.0.0
p-cancelable: 3.0.0
responselike: 3.0.0
- dev: false
- /got/14.0.0:
- resolution: {integrity: sha512-X01vTgaX9SwaMq5DfImvS+3GMQFFs5HtrrlS9CuzUSzkxAf/tWGEyynuI+Qy7BjciMczZGjyVSmawYbP4eYhYA==}
- engines: {node: '>=20'}
+ got@14.4.4:
dependencies:
- '@sindresorhus/is': 6.1.0
+ '@sindresorhus/is': 7.0.1
'@szmarczak/http-timer': 5.0.1
cacheable-lookup: 7.0.0
- cacheable-request: 10.2.14
+ cacheable-request: 12.0.1
decompress-response: 6.0.0
form-data-encoder: 4.0.2
- get-stream: 8.0.1
http2-wrapper: 2.2.1
lowercase-keys: 3.0.0
p-cancelable: 4.0.1
responselike: 3.0.0
- dev: false
+ type-fest: 4.27.0
- /got/6.7.1:
- resolution: {integrity: sha512-Y/K3EDuiQN9rTZhBvPRWMLXIKdeD1Rj0nzunfoi0Yyn5WBEbzxXKU9Ub2X41oZBagVWOBU3MuDonFMgPWQFnwg==}
- engines: {node: '>=4'}
+ got@6.7.1:
dependencies:
'@types/keyv': 3.1.4
- '@types/responselike': 1.0.1
+ '@types/responselike': 1.0.3
create-error-class: 3.0.2
duplexer3: 0.1.5
get-stream: 3.0.0
@@ -27693,79 +33890,42 @@ packages:
timed-out: 4.0.1
unzip-response: 2.0.1
url-parse-lax: 1.0.0
- dev: false
- /graceful-fs/4.2.11:
- resolution: {integrity: sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==}
+ graceful-fs@4.2.11: {}
- /grapheme-splitter/1.0.4:
- resolution: {integrity: sha512-bzh50DW9kTPM00T8y4o8vQg89Di9oLJVLW/KaOGIXJWP/iqCN6WKYkbNOF04vFLJhwcpYUh9ydh/+5vpOqV4YQ==}
- dev: false
+ grapheme-splitter@1.0.4: {}
- /graphemer/1.4.0:
- resolution: {integrity: sha512-EtKwoO6kxCL9WO5xipiHTZlSzBm7WLT627TqC/uVRd0HKmq8NXyebnNYxDoBi7wt8eTWrUrKXCOVaFq9x1kgag==}
- dev: true
+ graphemer@1.4.0: {}
- /graphql-request/3.7.0_graphql@16.8.1:
- resolution: {integrity: sha512-dw5PxHCgBneN2DDNqpWu8QkbbJ07oOziy8z+bK/TAXufsOLaETuVO4GkXrbs0WjhdKhBMN3BkpN/RIvUHkmNUQ==}
- peerDependencies:
- graphql: 14 - 16
+ graphql-request@3.7.0(graphql@16.9.0):
dependencies:
cross-fetch: 3.1.8
extract-files: 9.0.0
- form-data: 3.0.1
- graphql: 16.8.1
+ form-data: 3.0.2
+ graphql: 16.9.0
transitivePeerDependencies:
- encoding
- /graphql-request/5.2.0_graphql@16.8.1:
- resolution: {integrity: sha512-pLhKIvnMyBERL0dtFI3medKqWOz/RhHdcgbZ+hMMIb32mEPa5MJSzS4AuXxfI4sRAu6JVVk5tvXuGfCWl9JYWQ==}
- peerDependencies:
- graphql: 14 - 16
+ graphql-request@5.2.0(graphql@16.9.0):
dependencies:
- '@graphql-typed-document-node/core': 3.2.0_graphql@16.8.1
+ '@graphql-typed-document-node/core': 3.2.0(graphql@16.9.0)
cross-fetch: 3.1.8
extract-files: 9.0.0
- form-data: 3.0.1
- graphql: 16.8.1
+ form-data: 3.0.2
+ graphql: 16.9.0
transitivePeerDependencies:
- encoding
- dev: false
- /graphql-request/7.1.0_graphql@16.8.1:
- resolution: {integrity: sha512-Ouu/lYVFhARS1aXeZoVJWnGT6grFJXTLwXJuK4mUGGRo0EUk1JkyYp43mdGmRgUVezpRm6V5Sq3t8jBDQcajng==}
- hasBin: true
- peerDependencies:
- '@dprint/formatter': ^0.3.0
- '@dprint/typescript': ^0.91.1
- dprint: ^0.46.2
- graphql: 14 - 16
- peerDependenciesMeta:
- '@dprint/formatter':
- optional: true
- '@dprint/typescript':
- optional: true
- dprint:
- optional: true
+ graphql-request@7.1.2(graphql@16.9.0):
dependencies:
- '@graphql-typed-document-node/core': 3.2.0_graphql@16.8.1
- '@molt/command': 0.9.0
- graphql: 16.8.1
- zod: 3.23.8
- dev: false
+ '@graphql-typed-document-node/core': 3.2.0(graphql@16.9.0)
+ graphql: 16.9.0
- /graphql/15.8.0:
- resolution: {integrity: sha512-5gghUc24tP9HRznNpV2+FIoq3xKkj5dTQqf4v0CpdPbFVwFkWoxOM+o+2OC9ZSvjEMTjfmG9QT+gcvggTwW1zw==}
- engines: {node: '>= 10.x'}
- dev: false
+ graphql@15.9.0: {}
- /graphql/16.8.1:
- resolution: {integrity: sha512-59LZHPdGZVh695Ud9lRzPBVTtlX9ZCV150Er2W43ro37wVof0ctenSaskPPjN7lVTIN8mSZt8PHUNKZuNQUuxw==}
- engines: {node: ^12.22.0 || ^14.16.0 || ^16.0.0 || >=17.0.0}
+ graphql@16.9.0: {}
- /gtoken/5.3.2:
- resolution: {integrity: sha512-gkvEKREW7dXWF8NV8pVrKfW7WqReAmjjkMBh6lNCCGOM4ucS0r0YyXXl0r/9Yj8wcW/32ISkfc8h5mPTDbtifQ==}
- engines: {node: '>=10'}
+ gtoken@5.3.2:
dependencies:
gaxios: 4.3.3
google-p12-pem: 3.1.4
@@ -27773,11 +33933,8 @@ packages:
transitivePeerDependencies:
- encoding
- supports-color
- dev: false
- /gtoken/6.1.2:
- resolution: {integrity: sha512-4ccGpzz7YAr7lxrT2neugmXQ3hP9ho2gcaityLVkiUecAiwiy60Ii8gRbZeOsXV19fYaRjgBSshs8kXw+NKCPQ==}
- engines: {node: '>=12.0.0'}
+ gtoken@6.1.2:
dependencies:
gaxios: 5.1.3
google-p12-pem: 4.0.1
@@ -27785,206 +33942,139 @@ packages:
transitivePeerDependencies:
- encoding
- supports-color
- dev: false
- /gtoken/7.0.1:
- resolution: {integrity: sha512-KcFVtoP1CVFtQu0aSk3AyAt2og66PFhZAlkUOuWKwzMLoulHXG5W5wE5xAnHb+yl3/wEFoqGW7/cDGMU8igDZQ==}
- engines: {node: '>=14.0.0'}
+ gtoken@7.1.0:
dependencies:
- gaxios: 6.1.1
+ gaxios: 6.7.1
jws: 4.0.0
transitivePeerDependencies:
- encoding
- supports-color
- dev: false
- /guid-typescript/1.0.9:
- resolution: {integrity: sha512-Y8T4vYhEfwJOTbouREvG+3XDsjr8E3kIr7uf+JZ0BYloFsttiHU0WfvANVsR7TxNUJa/WpCnw/Ino/p+DeBhBQ==}
- dev: false
-
- /handlebars-loader/1.7.3_handlebars@4.7.8:
- resolution: {integrity: sha512-dDb+8D51vE3OTSE2wuGPWRAegtsEuw8Mk8hCjtRu/pNcBfN5q+M8ZG3kVJxBuOeBrVElpFStipGmaxSBTRR1mQ==}
- peerDependencies:
- handlebars: '>= 1.3.0 < 5'
+ handlebars-loader@1.7.3(handlebars@4.7.8):
dependencies:
- async: 3.2.4
+ async: 3.2.6
fastparse: 1.1.2
handlebars: 4.7.8
loader-utils: 1.4.2
object-assign: 4.1.1
- dev: false
- /handlebars/4.7.8:
- resolution: {integrity: sha512-vafaFqs8MZkRrSX7sFVUdo3ap/eNiLnb4IakshzvP56X5Nr1iGKAIqdX6tMlm6HcNRIkr6AxO5jFEoJzzpT8aQ==}
- engines: {node: '>=0.4.7'}
- hasBin: true
+ handlebars@4.7.8:
dependencies:
minimist: 1.2.8
neo-async: 2.6.2
source-map: 0.6.1
wordwrap: 1.0.0
optionalDependencies:
- uglify-js: 3.17.4
- dev: false
+ uglify-js: 3.19.3
- /har-schema/2.0.0:
- resolution: {integrity: sha512-Oqluz6zhGX8cyRaTQlFMPw80bSJVG2x/cFb8ZPhUILGgHka9SsokCCOQgpveePerqidZOrT14ipqfJb7ILcW5Q==}
- engines: {node: '>=4'}
+ har-schema@2.0.0: {}
- /har-validator/5.1.5:
- resolution: {integrity: sha512-nmT2T0lljbxdQZfspsno9hgrG3Uir6Ks5afism62poxqBM6sDnMEuPmzTq8XN0OEwqKLLdh1jQI3qyE66Nzb3w==}
- engines: {node: '>=6'}
- deprecated: this library is no longer supported
+ har-validator@5.1.5:
dependencies:
ajv: 6.12.6
har-schema: 2.0.0
- /hard-rejection/2.1.0:
- resolution: {integrity: sha512-VIZB+ibDhx7ObhAe7OVtoEbuP4h/MuOTHJ+J8h/eBXotJYl0fBgR72xDFCKgIh22OJZIOVNxBMWuhAr10r8HdA==}
- engines: {node: '>=6'}
- dev: true
-
- /has-ansi/2.0.0:
- resolution: {integrity: sha512-C8vBJ8DwUCx19vhm7urhTuUsr4/IyP6l4VzNQDv+ryHQObW3TTTp9yB68WpYgRe2bbaGuZ/se74IqFeVnMnLZg==}
- engines: {node: '>=0.10.0'}
+ has-ansi@2.0.0:
dependencies:
ansi-regex: 2.1.1
- dev: true
- /has-bigints/1.0.2:
- resolution: {integrity: sha512-tSvCKtBr9lkF0Ex0aQiP9N+OpV4zi2r/Nee5VkRDbaqv35RLYMzbwQfFSZZH0kR+Rd6302UJZ2p/bJCEoR3VoQ==}
+ has-bigints@1.0.2: {}
- /has-flag/3.0.0:
- resolution: {integrity: sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==}
- engines: {node: '>=4'}
+ has-flag@3.0.0: {}
- /has-flag/4.0.0:
- resolution: {integrity: sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==}
- engines: {node: '>=8'}
+ has-flag@4.0.0: {}
- /has-property-descriptors/1.0.2:
- resolution: {integrity: sha512-55JNKuIW+vq4Ke1BjOTjM2YctQIvCT7GFzHwmfZPGo5wnrgkid0YQtnAleFSqumZm4az3n2BS+erby5ipJdgrg==}
+ has-property-descriptors@1.0.2:
dependencies:
es-define-property: 1.0.0
- /has-proto/1.0.3:
- resolution: {integrity: sha512-SJ1amZAJUiZS+PhsVLf5tGydlaVB8EdFpaSO4gmiUKUOxk8qzn5AIy4ZeJUmh22znIdk/uMAUT2pl3FxzVUH+Q==}
- engines: {node: '>= 0.4'}
-
- /has-symbols/1.0.3:
- resolution: {integrity: sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A==}
- engines: {node: '>= 0.4'}
+ has-proto@1.0.3: {}
- /has-tostringtag/1.0.0:
- resolution: {integrity: sha512-kFjcSNhnlGV1kyoGk7OXKSawH5JOb/LzUc5w9B02hOTO0dfFRjbHQKvg1d6cf3HbeUmtU9VbbV3qzZ2Teh97WQ==}
- engines: {node: '>= 0.4'}
- dependencies:
- has-symbols: 1.0.3
+ has-symbols@1.0.3: {}
- /has-tostringtag/1.0.2:
- resolution: {integrity: sha512-NqADB8VjPFLM2V0VvHUewwwsw0ZWBaIdgo+ieHtK3hasLz4qeCRjYcqfB6AQrBggRKppKF8L52/VqdVsO47Dlw==}
- engines: {node: '>= 0.4'}
+ has-tostringtag@1.0.2:
dependencies:
has-symbols: 1.0.3
- /has-unicode/2.0.1:
- resolution: {integrity: sha512-8Rf9Y83NBReMnx0gFzA8JImQACstCYWUplepDa9xprwwtmgEZUF0h/i5xSA625zB/I37EtrswSST6OXxwaaIJQ==}
- dev: true
+ has-unicode@2.0.1:
optional: true
- /has/1.0.3:
- resolution: {integrity: sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw==}
- engines: {node: '>= 0.4.0'}
- dependencies:
- function-bind: 1.1.2
-
- /hash-base/3.1.0:
- resolution: {integrity: sha512-1nmYp/rhMDiE7AYkDw+lLwlAzz0AntGIe51F3RfFfEqyQ3feY2eI/NcwC6umIQVOASPMsWJLJScWKSSvzL9IVA==}
- engines: {node: '>=4'}
+ hash-base@3.1.0:
dependencies:
inherits: 2.0.4
readable-stream: 3.6.2
safe-buffer: 5.2.1
- dev: false
- /hash-stream-validation/0.2.4:
- resolution: {integrity: sha512-Gjzu0Xn7IagXVkSu9cSFuK1fqzwtLwFhNhVL8IFJijRNMgUttFbBSIAzKuSIrsFMO1+g1RlsoN49zPIbwPDMGQ==}
- dev: false
+ hash-stream-validation@0.2.4:
optional: true
- /hasha/5.2.2:
- resolution: {integrity: sha512-Hrp5vIK/xr5SkeN2onO32H0MgNZ0f17HRNH39WfL0SYUNOTZ5Lz1TJ8Pajo/87dYGEFlLMm7mIc/k/s6Bvz9HQ==}
- engines: {node: '>=8'}
+ hasha@5.2.2:
dependencies:
is-stream: 2.0.1
type-fest: 0.8.1
- dev: false
- /hasown/2.0.2:
- resolution: {integrity: sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ==}
- engines: {node: '>= 0.4'}
+ hasown@2.0.2:
dependencies:
function-bind: 1.1.2
- /hasurl/1.0.0:
- resolution: {integrity: sha512-43ypUd3DbwyCT01UYpA99AEZxZ4aKtRxWGBHEIbjcOsUghd9YUON0C+JF6isNjaiwC/UF5neaUudy6JS9jZPZQ==}
- engines: {node: '>= 4'}
- dev: false
+ hast-util-to-jsx-runtime@2.3.2:
+ dependencies:
+ '@types/estree': 1.0.6
+ '@types/hast': 3.0.4
+ '@types/unist': 3.0.3
+ comma-separated-tokens: 2.0.3
+ devlop: 1.1.0
+ estree-util-is-identifier-name: 3.0.0
+ hast-util-whitespace: 3.0.0
+ mdast-util-mdx-expression: 2.0.1
+ mdast-util-mdx-jsx: 3.1.3
+ mdast-util-mdxjs-esm: 2.0.1
+ property-information: 6.5.0
+ space-separated-tokens: 2.0.2
+ style-to-object: 1.0.8
+ unist-util-position: 5.0.0
+ vfile-message: 4.0.2
+ transitivePeerDependencies:
+ - supports-color
- /he/1.2.0:
- resolution: {integrity: sha512-F/1DnUGPopORZi0ni+CvrCgHQ5FyEAHRLSApuYWMmrbSwoN2Mn/7k+Gl38gJnR7yyDZk6WLXwiGod1JOWNDKGw==}
- hasBin: true
- dev: false
+ hast-util-whitespace@3.0.0:
+ dependencies:
+ '@types/hast': 3.0.4
- /heap-js/2.3.0:
- resolution: {integrity: sha512-E5303mzwQ+4j/n2J0rDvEPBN7GKjhis10oHiYOgjxsmxYgqG++hz9NyLLOXttzH8as/DyiBHYpUrJTZWYaMo8Q==}
- engines: {node: '>=10.0.0'}
- dev: false
+ hasurl@1.0.0: {}
- /hexoid/1.0.0:
- resolution: {integrity: sha512-QFLV0taWQOZtvIRIAdBChesmogZrtuXvVWsFHZTk2SU+anspqZ2vMnoLg7IE1+Uk16N19APic1BuF8bC8c2m5g==}
- engines: {node: '>=8'}
- dev: false
+ he@1.2.0: {}
- /homedir-polyfill/1.0.3:
- resolution: {integrity: sha512-eSmmWE5bZTK2Nou4g0AI3zZ9rswp7GRKoKXS1BLUkvPviOqs4YTN1djQIqrXy9k5gEtdLPy86JjRwsNM9tnDcA==}
- engines: {node: '>=0.10.0'}
+ heap-js@2.5.0: {}
+
+ hexoid@1.0.0: {}
+
+ hoist-non-react-statics@3.3.2:
+ dependencies:
+ react-is: 16.13.1
+
+ homedir-polyfill@1.0.3:
dependencies:
parse-passwd: 1.0.0
- dev: false
- /hosted-git-info/2.8.9:
- resolution: {integrity: sha512-mxIDAb9Lsm6DoOJ7xH+5+X4y1LU/4Hi50L9C5sIswK3JzULS4bwk1FvjdBgvYR4bzT4tuUQiC15FE2f5HbLvYw==}
- dev: true
+ hookified@1.5.0: {}
- /hosted-git-info/4.1.0:
- resolution: {integrity: sha512-kyCuEOWjJqZuDbRHzL8V93NzQhwIB71oFWSyzVo+KPZI+pnQPPxucdkrOZvkLRnrf5URsQM+IJ09Dw29cRALIA==}
- engines: {node: '>=10'}
+ hosted-git-info@2.8.9: {}
+
+ hosted-git-info@4.1.0:
dependencies:
lru-cache: 6.0.0
- dev: true
- /html-entities-decoder/1.0.5:
- resolution: {integrity: sha512-Cc/RSOGlojr7NDw1oXamUQenYBB0f/SISO8QWtRdZkDOmlO/hvbGZMjgyl+6+mh2PKPRrGXUKH4JhCU18LNS2g==}
- dev: false
+ html-entities-decoder@1.0.5: {}
- /html-escaper/2.0.2:
- resolution: {integrity: sha512-H2iMtd0I4Mt5eYiapRdIDjp+XzelXQ0tFE4JS7YFwFevXXMmOp9myNrUvCg0D6ws8iqkRPBfKHgbwig1SmlLfg==}
- dev: true
+ html-escaper@2.0.2: {}
- /html-escaper/3.0.3:
- resolution: {integrity: sha512-RuMffC89BOWQoY0WKGpIhn5gX3iI54O6nRA0yC124NYVtzjmFWBIiFd8M0x+ZdX0P9R4lADg1mgP8C7PxGOWuQ==}
- dev: false
+ html-escaper@3.0.3: {}
- /html-tags/3.3.1:
- resolution: {integrity: sha512-ztqyC3kLto0e9WbNp0aeP+M3kTt+nbaIveGmUxAtZa+8iFgKLUOD4YKM5j+f3QD89bra7UeumolZHKuOXnTmeQ==}
- engines: {node: '>=8'}
- dev: true
+ html-tags@3.3.1: {}
- /html-to-text/8.2.1:
- resolution: {integrity: sha512-aN/3JvAk8qFsWVeE9InWAWueLXrbkoVZy0TkzaGhoRBC2gCFEeRLDDJN3/ijIGHohy6H+SZzUQWN/hcYtaPK8w==}
- engines: {node: '>=10.23.2'}
- hasBin: true
+ html-to-text@8.2.1:
dependencies:
'@selderee/plugin-htmlparser2': 0.6.0
deepmerge: 4.3.1
@@ -27992,154 +34082,101 @@ packages:
htmlparser2: 6.1.0
minimist: 1.2.8
selderee: 0.6.0
- dev: false
- /html-to-text/9.0.5:
- resolution: {integrity: sha512-qY60FjREgVZL03vJU6IfMV4GDjGBIoOyvuFdpBDIX9yTlDw0TjxVBQp+P8NvpdIXNJvfWBTNul7fsAQJq2FNpg==}
- engines: {node: '>=14'}
+ html-to-text@9.0.5:
dependencies:
'@selderee/plugin-htmlparser2': 0.11.0
deepmerge: 4.3.1
dom-serializer: 2.0.0
htmlparser2: 8.0.2
selderee: 0.11.0
- dev: false
- /htmlparser2/6.1.0:
- resolution: {integrity: sha512-gyyPk6rgonLFEDGoeRgQNaEUvdJ4ktTmmUh/h2t7s+M8oPpIPxgNACWa+6ESR57kXstwqPiCut0V8NRpcwgU7A==}
+ html-url-attributes@3.0.1: {}
+
+ htmlparser2@6.1.0:
dependencies:
domelementtype: 2.3.0
domhandler: 4.3.1
domutils: 2.8.0
entities: 2.2.0
- dev: false
- /htmlparser2/8.0.2:
- resolution: {integrity: sha512-GYdjWKDkbRLkZ5geuHs5NY1puJ+PXwP7+fHPRz06Eirsb9ugf6d8kkXav6ADhcODhFFPMIXyxkxSuMf3D6NCFA==}
+ htmlparser2@8.0.2:
dependencies:
domelementtype: 2.3.0
domhandler: 5.0.3
domutils: 3.1.0
entities: 4.5.0
- dev: false
- /http-cache-semantics/4.1.1:
- resolution: {integrity: sha512-er295DKPVsV82j5kw1Gjt+ADA/XYHsajl82cGNQG2eyoPkvgUhX+nDIyelzhIWbbsXP39EHcI6l5tYs2FYqYXQ==}
- dev: false
+ http-cache-semantics@4.1.1: {}
- /http-errors/2.0.0:
- resolution: {integrity: sha512-FtwrG/euBzaEjYeRqOgly7G0qviiXoJWnvEH2Z1plBdXgbyjv34pHTSb9zoeHMyDy33+DWy5Wt9Wo+TURtOYSQ==}
- engines: {node: '>= 0.8'}
+ http-errors@2.0.0:
dependencies:
depd: 2.0.0
inherits: 2.0.4
setprototypeof: 1.2.0
statuses: 2.0.1
toidentifier: 1.0.1
- dev: false
- /http-parser-js/0.5.8:
- resolution: {integrity: sha512-SGeBX54F94Wgu5RH3X5jsDtf4eHyRogWX1XGT3b4HuW3tQPM4AaBzoUji/4AAJNXCEOWZ5O0DgZmJw1947gD5Q==}
- dev: false
+ http-parser-js@0.5.8: {}
- /http-proxy-agent/4.0.1:
- resolution: {integrity: sha512-k0zdNgqWTGA6aeIRVpvfVob4fL52dTfaehylg0Y4UvSySvOq/Y+BOyPrgpUrA7HylqvU8vIZGsRuXmspskV0Tg==}
- engines: {node: '>= 6'}
+ http-proxy-agent@4.0.1:
dependencies:
'@tootallnate/once': 1.1.2
agent-base: 6.0.2
- debug: 4.3.6
+ debug: 4.3.7(supports-color@9.4.0)
transitivePeerDependencies:
- supports-color
- dev: false
- /http-proxy-agent/5.0.0:
- resolution: {integrity: sha512-n2hY8YdoRE1i7r6M0w9DIw5GgZN0G25P8zLCRQ8rjXtTU3vsNFBI/vWK/UIeE6g5MUUz6avwAPXmL6Fy9D/90w==}
- engines: {node: '>= 6'}
+ http-proxy-agent@5.0.0:
dependencies:
'@tootallnate/once': 2.0.0
agent-base: 6.0.2
- debug: 4.3.6
+ debug: 4.3.7(supports-color@9.4.0)
transitivePeerDependencies:
- supports-color
- dev: false
- /http-proxy-agent/7.0.0:
- resolution: {integrity: sha512-+ZT+iBxVUQ1asugqnD6oWoRiS25AkjNfG085dKJGtGxkdwLQrMKU5wJr2bOOFAXzKcTuqq+7fZlTMgG3SRfIYQ==}
- engines: {node: '>= 14'}
+ http-proxy-agent@7.0.2:
dependencies:
- agent-base: 7.1.0
- debug: 4.3.6
+ agent-base: 7.1.1
+ debug: 4.3.4
transitivePeerDependencies:
- supports-color
- dev: false
- /http-signature/1.2.0:
- resolution: {integrity: sha512-CAbnr6Rz4CYQkLYUtSNXxQPUH2gK8f3iWexVlsnMeD+GjlsQ0Xsy1cOX+mN3dtxYomRy21CiOzU8Uhw6OwncEQ==}
- engines: {node: '>=0.8', npm: '>=1.3.7'}
+ http-signature@1.2.0:
dependencies:
assert-plus: 1.0.0
jsprim: 1.4.2
- sshpk: 1.17.0
-
- /http2-client/1.3.5:
- resolution: {integrity: sha512-EC2utToWl4RKfs5zd36Mxq7nzHHBuomZboI0yYL6Y0RmBgT7Sgkq4rQ0ezFTYoIsSs7Tm9SJe+o2FcAg6GBhGA==}
- dev: false
+ sshpk: 1.18.0
- /http2-wrapper/1.0.3:
- resolution: {integrity: sha512-V+23sDMr12Wnz7iTcDeJr3O6AIxlnvT/bmaAAAP/Xda35C90p9599p0F1eHR/N1KILWSoWVAiOMFjBBXaXSMxg==}
- engines: {node: '>=10.19.0'}
- dependencies:
- quick-lru: 5.1.1
- resolve-alpn: 1.2.1
- dev: false
+ http2-client@1.3.5: {}
- /http2-wrapper/2.2.0:
- resolution: {integrity: sha512-kZB0wxMo0sh1PehyjJUWRFEd99KC5TLjZ2cULC4f9iqJBAmKQQXEICjxl5iPJRwP40dpeHFqqhm7tYCvODpqpQ==}
- engines: {node: '>=10.19.0'}
+ http2-wrapper@1.0.3:
dependencies:
quick-lru: 5.1.1
resolve-alpn: 1.2.1
- dev: false
- /http2-wrapper/2.2.1:
- resolution: {integrity: sha512-V5nVw1PAOgfI3Lmeaj2Exmeg7fenjhRUgz1lPSezy1CuhPYbgQtbQj4jZfEAEMlaL+vupsvhjqCyjzob0yxsmQ==}
- engines: {node: '>=10.19.0'}
+ http2-wrapper@2.2.1:
dependencies:
quick-lru: 5.1.1
resolve-alpn: 1.2.1
- dev: false
- /https-proxy-agent/5.0.1:
- resolution: {integrity: sha512-dFcAjpTQFgoLMzC2VwU+C/CbS7uRL0lWmxDITmqm7C+7F0Odmj6s9l6alZc6AELXhrnggM2CeWSXHGOdX2YtwA==}
- engines: {node: '>= 6'}
+ https-proxy-agent@5.0.1:
dependencies:
agent-base: 6.0.2
- debug: 4.3.6
+ debug: 4.3.7(supports-color@9.4.0)
transitivePeerDependencies:
- supports-color
- dev: false
- /https-proxy-agent/7.0.2:
- resolution: {integrity: sha512-NmLNjm6ucYwtcUmL7JQC1ZQ57LmHP4lT15FQ8D61nak1rO6DH+fz5qNK2Ap5UN4ZapYICE3/0KodcLYSPsPbaA==}
- engines: {node: '>= 14'}
+ https-proxy-agent@7.0.5:
dependencies:
- agent-base: 7.1.0
- debug: 4.3.6
+ agent-base: 7.1.1
+ debug: 4.3.7(supports-color@9.4.0)
transitivePeerDependencies:
- supports-color
- dev: false
- /human-signals/2.1.0:
- resolution: {integrity: sha512-B4FFZ6q/T2jhhksgkbEW3HBvWIfDW85snkQgawt07S7J5QXTk6BkNV+0yAeZrM5QpMAdYlocGoljn0sJ/WQkFw==}
- engines: {node: '>=10.17.0'}
- dev: true
+ human-signals@2.1.0: {}
- /husky/3.1.0:
- resolution: {integrity: sha512-FJkPoHHB+6s4a+jwPqBudBDvYZsoQW5/HBuMSehC8qDiCe50kpcxeqFoDSlow+9I6wg47YxBoT3WxaURlrDIIQ==}
- engines: {node: '>=8.6.0'}
- hasBin: true
- requiresBuild: true
+ husky@3.1.0:
dependencies:
chalk: 2.4.2
ci-info: 2.0.0
@@ -28152,143 +34189,79 @@ packages:
read-pkg: 5.2.0
run-node: 1.0.0
slash: 3.0.0
- dev: true
- /husky/7.0.4:
- resolution: {integrity: sha512-vbaCKN2QLtP/vD4yvs6iz6hBEo6wkSzs8HpRah1Z6aGmF2KW5PdYuAd7uX5a+OyBZHBhd+TFLqgjUgytQr4RvQ==}
- engines: {node: '>=12'}
- hasBin: true
- dev: true
+ husky@7.0.4: {}
- /iconv-lite/0.4.24:
- resolution: {integrity: sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==}
- engines: {node: '>=0.10.0'}
+ iconv-lite@0.4.24:
dependencies:
safer-buffer: 2.1.2
- dev: false
- /iconv-lite/0.6.3:
- resolution: {integrity: sha512-4fCk79wshMdzMp2rH06qWrJE4iolqLhCUH+OiuIgU++RB0+94NlDL81atO7GX55uUKueo0txHNtvEyI6D7WdMw==}
- engines: {node: '>=0.10.0'}
+ iconv-lite@0.6.3:
dependencies:
safer-buffer: 2.1.2
- dev: false
- /idb/7.0.1:
- resolution: {integrity: sha512-UUxlE7vGWK5RfB/fDwEGgRf84DY/ieqNha6msMV99UsEMQhJ1RwbCd8AYBj3QMgnE3VZnfQvm4oKVCJTYlqIgg==}
- dev: false
+ idb@7.0.1: {}
- /ieee754/1.2.1:
- resolution: {integrity: sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==}
- dev: false
+ ieee754@1.2.1: {}
- /ignore-by-default/1.0.1:
- resolution: {integrity: sha512-Ius2VYcGNk7T90CppJqcIkS5ooHUZyIQK+ClZfMfMNFEF9VSE73Fq+906u/CWu92x4gzZMWOwfFYckPObzdEbA==}
- dev: true
+ ignore-by-default@1.0.1: {}
- /ignore/5.2.4:
- resolution: {integrity: sha512-MAb38BcSbH0eHNBxn7ql2NH/kX33OkB3lZ1BNdh7ENeRChHTYsTvWrMubiIAMNS2llXEEgZ1MUOBtXChP3kaFQ==}
- engines: {node: '>= 4'}
- dev: true
+ ignore@5.3.2: {}
- /ignore/5.3.1:
- resolution: {integrity: sha512-5Fytz/IraMjqpwfd34ke28PTVMjZjJG2MPn5t7OE4eUCUNf8BAa7b5WUS9/Qvr6mwOQS7Mk6vdsMno5he+T8Xw==}
- engines: {node: '>= 4'}
+ ignore@6.0.2: {}
- /image-size/1.0.0:
- resolution: {integrity: sha512-JLJ6OwBfO1KcA+TvJT+v8gbE6iWbj24LyDNFgFEN0lzegn6cC6a/p3NIDaepMsJjQjlUWqIC7wJv8lBFxPNjcw==}
- engines: {node: '>=12.0.0'}
- hasBin: true
+ image-size@1.0.0:
dependencies:
queue: 6.0.2
- dev: false
- /imap/0.8.19:
- resolution: {integrity: sha512-z5DxEA1uRnZG73UcPA4ES5NSCGnPuuouUx43OPX7KZx1yzq3N8/vx2mtXEShT5inxB3pRgnfG1hijfu7XN2YMw==}
- engines: {node: '>=0.8.0'}
+ imap@0.8.19:
dependencies:
readable-stream: 1.1.14
utf7: 1.0.2
- dev: false
- /import-fresh/2.0.0:
- resolution: {integrity: sha512-eZ5H8rcgYazHbKC3PG4ClHNykCSxtAhxSSEM+2mb+7evD2CKF5V7c0dNum7AdpDh0ZdICwZY9sRSn8f+KH96sg==}
- engines: {node: '>=4'}
+ immediate@3.0.6: {}
+
+ import-fresh@2.0.0:
dependencies:
caller-path: 2.0.0
resolve-from: 3.0.0
- dev: true
- /import-fresh/3.3.0:
- resolution: {integrity: sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==}
- engines: {node: '>=6'}
+ import-fresh@3.3.0:
dependencies:
parent-module: 1.0.1
resolve-from: 4.0.0
- dev: true
- /import-lazy/4.0.0:
- resolution: {integrity: sha512-rKtvo6a868b5Hu3heneU+L4yEQ4jYKLtjpnPeUdK7h0yzXGmyBTypknlkCvHFBqfX9YlorEiMM6Dnq/5atfHkw==}
- engines: {node: '>=8'}
- dev: true
+ import-lazy@4.0.0: {}
- /import-local/3.1.0:
- resolution: {integrity: sha512-ASB07uLtnDs1o6EHjKpX34BKYDSqnFerfTOJL2HvMqF70LnxpjkzDB8J44oT9pu4AMPkQwf8jl6szgvNd2tRIg==}
- engines: {node: '>=8'}
- hasBin: true
+ import-local@3.2.0:
dependencies:
pkg-dir: 4.2.0
resolve-cwd: 3.0.0
- dev: true
-
- /imurmurhash/0.1.4:
- resolution: {integrity: sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==}
- engines: {node: '>=0.8.19'}
- /indent-string/4.0.0:
- resolution: {integrity: sha512-EdDDZu4A2OyIK7Lr/2zG+w5jmbuk1DVBnEwREQvBzspBJkCEbRa8GxU1lghYcaGJCnRWibjDXlq779X1/y5xwg==}
- engines: {node: '>=8'}
+ imurmurhash@0.1.4: {}
- /indent-string/5.0.0:
- resolution: {integrity: sha512-m6FAo/spmsW2Ab2fU35JTYwtOKa2yAwXSwgjSv1TJzh4Mh7mC3lzAOVLBprb72XsTrgkEIsl7YrFNAiDiRhIGg==}
- engines: {node: '>=12'}
- dev: true
+ indent-string@4.0.0: {}
- /indexes-of/1.0.1:
- resolution: {integrity: sha512-bup+4tap3Hympa+JBJUG7XuOsdNQ6fxt0MHyXMKuLBKn0OqsTfvUxkUrroEX1+B2VsSHvCjiIcZVxRtYa4nllA==}
- dev: false
+ indexes-of@1.0.1: {}
- /inflection/3.0.0:
- resolution: {integrity: sha512-1zEJU1l19SgJlmwqsEyFTbScw/tkMHFenUo//Y0i+XEP83gDFdMvPizAD/WGcE+l1ku12PcTVHQhO6g5E0UCMw==}
- engines: {node: '>=18.0.0'}
- dev: false
+ inflection@3.0.0: {}
- /inflight/1.0.6:
- resolution: {integrity: sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==}
- deprecated: This module is not supported, and leaks memory. Do not use it. Check out lru-cache if you want a good and tested way to coalesce async requests by a key value, which is much more comprehensive and powerful.
+ inflight@1.0.6:
dependencies:
once: 1.4.0
wrappy: 1.0.2
- /inherits/2.0.3:
- resolution: {integrity: sha512-x00IRNXNy63jwGkJmzPigoySHbaqpNuzKbBOmzK+g2OdZpQ9w+sxCN+VSB3ja7IAge2OP2qpfxTjeNcyjmW1uw==}
- dev: false
+ inherits@2.0.3: {}
- /inherits/2.0.4:
- resolution: {integrity: sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==}
+ inherits@2.0.4: {}
- /ini/1.3.8:
- resolution: {integrity: sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew==}
- dev: true
+ ini@1.3.8: {}
- /ini/2.0.0:
- resolution: {integrity: sha512-7PnF4oN3CvZF23ADhA5wRaYEQpJ8qygSkbtTXWBeXWXmEVRXK+1ITciHWwHhsjv1TmW0MgacIv6hEi5pX5NQdA==}
- engines: {node: '>=10'}
- dev: true
+ ini@2.0.0: {}
- /inquirer/8.2.6:
- resolution: {integrity: sha512-M1WuAmb7pn9zdFRtQYk26ZBoY043Sse0wVDdk4Bppr+JOXyQYybdtvK+l9wUibhtjdjvtoiNy8tk+EgsYIUqKg==}
- engines: {node: '>=12.0.0'}
+ inline-style-parser@0.2.4: {}
+
+ inquirer@8.2.6:
dependencies:
ansi-escapes: 4.3.2
chalk: 4.1.2
@@ -28305,586 +34278,340 @@ packages:
strip-ansi: 6.0.1
through: 2.3.8
wrap-ansi: 6.2.0
- dev: false
- /internal-slot/1.0.7:
- resolution: {integrity: sha512-NGnrKwXzSms2qUUih/ILZ5JBqNTSa1+ZmP6flaIp6KmSElgE9qdndzS3cqjrDovwFdmwsGsLdeFgB6suw+1e9g==}
- engines: {node: '>= 0.4'}
+ internal-slot@1.0.7:
dependencies:
es-errors: 1.3.0
hasown: 2.0.2
side-channel: 1.0.6
- /invariant/2.2.4:
- resolution: {integrity: sha512-phJfQVBuaJM5raOpJjSfkiD6BpbCE4Ns//LaXl6wGYtUBY83nWS6Rf9tXm2e8VaK60JEjYldbPif/A2B1C2gNA==}
+ invariant@2.2.4:
dependencies:
loose-envify: 1.4.0
- dev: false
- /io-ts/2.2.20_fp-ts@2.16.1:
- resolution: {integrity: sha512-Rq2BsYmtwS5vVttie4rqrOCIfHCS9TgpRLFpKQCM1wZBBRY9nWVGmEvm2FnDbSE2un1UE39DvFpTR5UL47YDcA==}
- peerDependencies:
- fp-ts: ^2.5.0
+ io-ts@2.2.21(fp-ts@2.16.9):
dependencies:
- fp-ts: 2.16.1
- dev: false
+ fp-ts: 2.16.9
- /io-ts/2.2.21_fp-ts@2.16.9:
- resolution: {integrity: sha512-zz2Z69v9ZIC3mMLYWIeoUcwWD6f+O7yP92FMVVaXEOSZH1jnVBmET/urd/uoarD1WGBY4rCj8TAyMPzsGNzMFQ==}
- peerDependencies:
- fp-ts: ^2.5.0
+ ip-address@9.0.5:
dependencies:
- fp-ts: 2.16.9
- dev: false
+ jsbn: 1.1.0
+ sprintf-js: 1.1.3
- /ip/1.1.8:
- resolution: {integrity: sha512-PuExPYUiu6qMBQb4l06ecm6T6ujzhmh+MeJcW9wa89PoAz5pvd4zPgN5WJV104mb6S2T1AwNIAaB70JNrLQWhg==}
- dev: false
+ ip@1.1.9: {}
- /ip/2.0.0:
- resolution: {integrity: sha512-WKa+XuLG1A1R0UWhl2+1XQSi+fZWMsYKffMZTTYsiZaUD8k2yDAj5atimTUD2TZkyCkNEeYE5NhFZmupOGtjYQ==}
- dev: false
+ is-alphabetical@1.0.4: {}
- /is-alphabetical/1.0.4:
- resolution: {integrity: sha512-DwzsA04LQ10FHTZuL0/grVDk4rFoVH1pjAToYwBrHSxcrBIGQuXrQMtD5U1b0U2XVgKZCTLLP8u2Qxqhy3l2Vg==}
- dev: false
+ is-alphabetical@2.0.1: {}
- /is-alphanumerical/1.0.4:
- resolution: {integrity: sha512-UzoZUr+XfVz3t3v4KyGEniVL9BDRoQtY7tOyrRybkVNjDFWyo1yhXNGrrBTQxp3ib9BLAWs7k2YKBQsFRkZG9A==}
+ is-alphanumerical@1.0.4:
dependencies:
is-alphabetical: 1.0.4
is-decimal: 1.0.4
- dev: false
- /is-arguments/1.1.1:
- resolution: {integrity: sha512-8Q7EARjzEnKpt/PCD7e1cgUS0a6X8u5tdSiMqXhojOdoV9TsMsiO+9VLC5vAmO8N7/GmXn7yjR8qnA6bVAEzfA==}
- engines: {node: '>= 0.4'}
+ is-alphanumerical@2.0.1:
+ dependencies:
+ is-alphabetical: 2.0.1
+ is-decimal: 2.0.1
+
+ is-arguments@1.1.1:
dependencies:
call-bind: 1.0.7
has-tostringtag: 1.0.2
- /is-array-buffer/3.0.4:
- resolution: {integrity: sha512-wcjaerHw0ydZwfhiKbXJWLDY8A7yV7KhjQOpb83hGgGfId/aQa4TOvwyzn2PuswW2gPCYEL/nEAiSVpdOj1lXw==}
- engines: {node: '>= 0.4'}
+ is-array-buffer@3.0.4:
dependencies:
call-bind: 1.0.7
get-intrinsic: 1.2.4
- /is-arrayish/0.2.1:
- resolution: {integrity: sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg==}
- dev: true
+ is-arrayish@0.2.1: {}
- /is-arrayish/0.3.2:
- resolution: {integrity: sha512-eVRqCvVlZbuw3GrM63ovNSNAeA1K16kaR/LRY/92w0zxQ5/1YzwblUX652i4Xs9RwAGjW9d9y6X88t8OaAJfWQ==}
- dev: false
+ is-arrayish@0.3.2: {}
- /is-async-function/2.0.0:
- resolution: {integrity: sha512-Y1JXKrfykRJGdlDwdKlLpLyMIiWqWvuSd17TvZk68PLAOGOoF4Xyav1z0Xhoi+gCYjZVeC5SI+hYFOfvXmGRCA==}
- engines: {node: '>= 0.4'}
+ is-async-function@2.0.0:
dependencies:
has-tostringtag: 1.0.2
- dev: true
- /is-bigint/1.0.4:
- resolution: {integrity: sha512-zB9CruMamjym81i2JZ3UMn54PKGsQzsJeo6xvN3HJJ4CAsQNB6iRutp2To77OfCNuoxspsIhzaPoO1zyCEhFOg==}
+ is-bigint@1.0.4:
dependencies:
has-bigints: 1.0.2
- /is-binary-path/2.1.0:
- resolution: {integrity: sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==}
- engines: {node: '>=8'}
+ is-binary-path@2.1.0:
dependencies:
binary-extensions: 2.3.0
- /is-boolean-object/1.1.2:
- resolution: {integrity: sha512-gDYaKHJmnj4aWxyj6YHyXVpdQawtVLHU5cb+eztPGczf6cjuTdwve5ZIEfgXqH4e57An1D1AKf8CZ3kYrQRqYA==}
- engines: {node: '>= 0.4'}
+ is-boolean-object@1.1.2:
dependencies:
call-bind: 1.0.7
has-tostringtag: 1.0.2
- /is-buffer/1.1.6:
- resolution: {integrity: sha512-NcdALwpXkTm5Zvvbk7owOUSvVvBKDgKP5/ewfXEznmQFfs4ZRmanOeKBTjRVjka3QFoN6XJ+9F3USqfHqTaU5w==}
- dev: false
+ is-buffer@1.1.6: {}
- /is-buffer/2.0.5:
- resolution: {integrity: sha512-i2R6zNFDwgEHJyQUtJEk0XFi1i0dPFn/oqjK3/vPCcDeJvW5NQ83V8QbicfF1SupOaB0h8ntgBC2YiE7dfyctQ==}
- engines: {node: '>=4'}
+ is-buffer@2.0.5: {}
- /is-bun-module/1.2.1:
- resolution: {integrity: sha512-AmidtEM6D6NmUiLOvvU7+IePxjEjOzra2h0pSrsfSAcXwl/83zLLXDByafUJy9k/rKK0pvXMLdwKwGHlX2Ke6Q==}
+ is-bun-module@1.2.1:
dependencies:
semver: 7.6.3
- dev: true
- /is-callable/1.2.7:
- resolution: {integrity: sha512-1BC0BVFhS/p0qtw6enp8e+8OD0UrK0oFLztSjNzhcKA3WDuJxxAPXzPuPtKkjEY9UUoEWlX/8fgKeu2S8i9JTA==}
- engines: {node: '>= 0.4'}
+ is-callable@1.2.7: {}
- /is-core-module/2.15.1:
- resolution: {integrity: sha512-z0vtXSwucUJtANQWldhbtbt7BnL0vxiFjIdDLAatwhDYty2bad6s+rijD6Ri4YuYJubLzIJLUidCh09e1djEVQ==}
- engines: {node: '>= 0.4'}
+ is-core-module@2.15.1:
dependencies:
hasown: 2.0.2
- /is-data-view/1.0.1:
- resolution: {integrity: sha512-AHkaJrsUVW6wq6JS8y3JnM/GJF/9cf+k20+iDzlSaJrinEo5+7vRiteOSwBhHRiAyQATN1AmY4hwzxJKPmYf+w==}
- engines: {node: '>= 0.4'}
+ is-data-view@1.0.1:
dependencies:
is-typed-array: 1.1.13
- /is-date-object/1.0.5:
- resolution: {integrity: sha512-9YQaSxsAiSwcvS33MBk3wTCVnWK+HhF8VZR2jRxehM16QcVOdHqPn4VPHmRK4lSr38n9JriurInLcP90xsYNfQ==}
- engines: {node: '>= 0.4'}
+ is-date-object@1.0.5:
dependencies:
has-tostringtag: 1.0.2
- /is-decimal/1.0.4:
- resolution: {integrity: sha512-RGdriMmQQvZ2aqaQq3awNA6dCGtKpiDFcOzrTWrDAT2MiWrKQVPmxLGHl7Y2nNu6led0kEyoX0enY0qXYsv9zw==}
- dev: false
+ is-decimal@1.0.4: {}
- /is-directory/0.3.1:
- resolution: {integrity: sha512-yVChGzahRFvbkscn2MlwGismPO12i9+znNruC5gVEntG3qu0xQMzsGg/JFbrsqDOHtHFPci+V5aP5T9I+yeKqw==}
- engines: {node: '>=0.10.0'}
- dev: true
+ is-decimal@2.0.1: {}
- /is-docker/2.2.1:
- resolution: {integrity: sha512-F+i2BKsFrH66iaUFc0woD8sLy8getkwTwtOBjvs56Cx4CgJDeKQeqfz8wAYiSb8JOprWhHH5p77PbmYCvvUuXQ==}
- engines: {node: '>=8'}
- hasBin: true
- dev: false
+ is-directory@0.3.1: {}
- /is-electron/2.2.2:
- resolution: {integrity: sha512-FO/Rhvz5tuw4MCWkpMzHFKWD2LsfHzIb7i6MdPYZ/KW7AlxawyLkqdy+jPZP1WubqEADE3O4FUENlJHDfQASRg==}
- dev: false
+ is-docker@2.2.1: {}
- /is-extglob/2.1.1:
- resolution: {integrity: sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==}
- engines: {node: '>=0.10.0'}
+ is-electron@2.2.2: {}
- /is-finalizationregistry/1.0.2:
- resolution: {integrity: sha512-0by5vtUJs8iFQb5TYUHHPudOR+qXYIMKtiUzvLIZITZUjknFmziyBJuLhVRc+Ds0dREFlskDNJKYIdIzu/9pfw==}
+ is-extglob@2.1.1: {}
+
+ is-finalizationregistry@1.0.2:
dependencies:
call-bind: 1.0.7
- dev: true
- /is-fullwidth-code-point/1.0.0:
- resolution: {integrity: sha512-1pqUqRjkhPJ9miNq9SwMfdvi6lBJcd6eFxvfaivQhaH3SgisfiuudvFntdKOmxuee/77l+FPjKrQjWvmPjWrRw==}
- engines: {node: '>=0.10.0'}
+ is-fullwidth-code-point@1.0.0:
dependencies:
number-is-nan: 1.0.1
- dev: true
optional: true
- /is-fullwidth-code-point/3.0.0:
- resolution: {integrity: sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==}
- engines: {node: '>=8'}
+ is-fullwidth-code-point@3.0.0: {}
- /is-fullwidth-code-point/4.0.0:
- resolution: {integrity: sha512-O4L094N2/dZ7xqVdrXhh9r1KODPJpFms8B5sGdJLPy664AgvXsreZUyCQQNItZRDlYug4xStLjNp/sz3HvBowQ==}
- engines: {node: '>=12'}
- dev: true
+ is-fullwidth-code-point@4.0.0: {}
- /is-generator-fn/2.1.0:
- resolution: {integrity: sha512-cTIB4yPYL/Grw0EaSzASzg6bBy9gqCofvWN8okThAYIxKJZC+udlRAmGbM0XLeniEJSs8uEgHPGuHSe1XsOLSQ==}
- engines: {node: '>=6'}
- dev: true
+ is-generator-fn@2.1.0: {}
- /is-generator-function/1.0.10:
- resolution: {integrity: sha512-jsEjy9l3yiXEQ+PsXdmBwEPcOxaXWLspKdplFUVI9vq1iZgIekeC0L167qeu86czQaxed3q/Uzuw0swL0irL8A==}
- engines: {node: '>= 0.4'}
+ is-generator-function@1.0.10:
dependencies:
has-tostringtag: 1.0.2
- /is-glob/4.0.3:
- resolution: {integrity: sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==}
- engines: {node: '>=0.10.0'}
+ is-glob@4.0.3:
dependencies:
is-extglob: 2.1.1
- /is-hexadecimal/1.0.4:
- resolution: {integrity: sha512-gyPJuv83bHMpocVYoqof5VDiZveEoGoFL8m3BXNb2VW8Xs+rz9kqO8LOQ5DH6EsuvilT1ApazU0pyl+ytbPtlw==}
- dev: false
+ is-hexadecimal@1.0.4: {}
- /is-interactive/1.0.0:
- resolution: {integrity: sha512-2HvIEKRoqS62guEC+qBjpvRubdX910WCMuJTZ+I9yvqKU2/12eSL549HMwtabb4oupdj2sMP50k+XJfB/8JE6w==}
- engines: {node: '>=8'}
- dev: false
+ is-hexadecimal@2.0.1: {}
- /is-map/2.0.3:
- resolution: {integrity: sha512-1Qed0/Hr2m+YqxnM09CjA2d/i6YZNfF6R2oRAOj36eUdS6qIV/huPJNSEpKbupewFs+ZsJlxsjjPbc0/afW6Lw==}
- engines: {node: '>= 0.4'}
+ is-interactive@1.0.0: {}
- /is-nan/1.3.2:
- resolution: {integrity: sha512-E+zBKpQ2t6MEo1VsonYmluk9NxGrbzpeeLC2xIViuO2EjU2xsXsBPwTr3Ykv9l08UYEVEdWeRZNouaZqF6RN0w==}
- engines: {node: '>= 0.4'}
- dependencies:
- call-bind: 1.0.7
- define-properties: 1.2.1
- dev: true
+ is-map@2.0.3: {}
- /is-negative-zero/2.0.3:
- resolution: {integrity: sha512-5KoIu2Ngpyek75jXodFvnafB6DJgr3u8uuK0LEZJjrU19DrMD3EVERaR8sjz8CCGgpZvxPl9SuE1GMVPFHx1mw==}
- engines: {node: '>= 0.4'}
+ is-negative-zero@2.0.3: {}
- /is-number-object/1.0.7:
- resolution: {integrity: sha512-k1U0IRzLMo7ZlYIfzRu23Oh6MiIFasgpb9X76eqfFZAqwH44UI4KTBvBYIZ1dSL9ZzChTB9ShHfLkR4pdW5krQ==}
- engines: {node: '>= 0.4'}
+ is-number-object@1.0.7:
dependencies:
has-tostringtag: 1.0.2
- /is-number/7.0.0:
- resolution: {integrity: sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==}
- engines: {node: '>=0.12.0'}
-
- /is-obj/1.0.1:
- resolution: {integrity: sha512-l4RyHgRqGN4Y3+9JHVrNqO+tN0rV5My76uW5/nuO4K1b6vw5G8d/cmFjP9tRfEsdhZNt0IFdZuK/c2Vr4Nb+Qg==}
- engines: {node: '>=0.10.0'}
- dev: false
+ is-number@7.0.0: {}
- /is-obj/2.0.0:
- resolution: {integrity: sha512-drqDG3cbczxxEJRoOXcOjtdp1J/lyp1mNn0xaznRs8+muBhgQcrnbspox5X5fOw0HnMnbfDzvnEMEtqDEJEo8w==}
- engines: {node: '>=8'}
- dev: false
+ is-obj@1.0.1: {}
- /is-path-cwd/2.2.0:
- resolution: {integrity: sha512-w942bTcih8fdJPJmQHFzkS76NEP8Kzzvmw92cXsazb8intwLqPibPPdXf4ANdKV3rYMuuQYGIWtvz9JilB3NFQ==}
- engines: {node: '>=6'}
- dev: false
+ is-obj@2.0.0: {}
- /is-path-inside/3.0.3:
- resolution: {integrity: sha512-Fd4gABb+ycGAmKou8eMftCupSir5lRxqf4aD/vd0cD2qc4HL07OjCeuHMr8Ro4CoMaeCKDB0/ECBOVWjTwUvPQ==}
- engines: {node: '>=8'}
- dev: false
+ is-path-cwd@2.2.0: {}
- /is-plain-obj/1.1.0:
- resolution: {integrity: sha512-yvkRyxmFKEOQ4pNXCmJG5AEQNlXJS5LaONXo5/cLdTZdWvsZ1ioJEonLGAosKlMWE8lwUy/bJzMjcw8az73+Fg==}
- engines: {node: '>=0.10.0'}
- dev: true
+ is-path-inside@3.0.3: {}
- /is-plain-obj/2.1.0:
- resolution: {integrity: sha512-YWnfyRwxL/+SsrWYfOpUtz5b3YD+nyfkHvjbcanzk8zgyO4ASD67uVMRt8k5bM4lLMDnXfriRhOpemw+NfT1eA==}
- engines: {node: '>=8'}
- dev: false
+ is-plain-obj@2.1.0: {}
- /is-plain-obj/4.1.0:
- resolution: {integrity: sha512-+Pgi+vMuUNkJyExiMBt5IlFoMyKnr5zhJ4Uspz58WOhBF5QoIZkFyNHIbBAtHwzVAgk5RtndVNsDRN61/mmDqg==}
- engines: {node: '>=12'}
- dev: true
+ is-plain-obj@4.1.0: {}
- /is-plain-object/2.0.4:
- resolution: {integrity: sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og==}
- engines: {node: '>=0.10.0'}
+ is-plain-object@2.0.4:
dependencies:
isobject: 3.0.1
- dev: false
- /is-plain-object/5.0.0:
- resolution: {integrity: sha512-VRSzKkbMm5jMDoKLbltAkFQ5Qr7VDiTFGXxYFXXowVj387GeGNOCsOH6Msy00SGZ3Fp84b1Naa1psqgcCIEP5Q==}
- engines: {node: '>=0.10.0'}
+ is-plain-object@5.0.0: {}
- /is-promise/2.2.2:
- resolution: {integrity: sha512-+lP4/6lKUBfQjZ2pdxThZvLUAafmZb8OAxFb8XXtiQmS35INgr85hdOGoEs124ez1FCnZJt6jau/T+alh58QFQ==}
- dev: false
+ is-promise@2.2.2: {}
- /is-property/1.0.2:
- resolution: {integrity: sha512-Ks/IoX00TtClbGQr4TWXemAnktAQvYB7HzcCxDGqEZU6oCmb2INHuOoKxbtR+HFkmYWBKv/dOZtGRiAjDhj92g==}
- dev: false
+ is-property@1.0.2: {}
- /is-redirect/1.0.0:
- resolution: {integrity: sha512-cr/SlUEe5zOGmzvj9bUyC4LVvkNVAXu4GytXLNMr1pny+a65MpQ9IJzFHD5vi7FyJgb4qt27+eS3TuQnqB+RQw==}
- engines: {node: '>=0.10.0'}
- dev: false
+ is-redirect@1.0.0: {}
- /is-regex/1.1.4:
- resolution: {integrity: sha512-kvRdxDsxZjhzUX07ZnLydzS1TU/TJlTUHHY4YLL87e37oUA49DfkLqgy+VjFocowy29cKvcSiu+kIv728jTTVg==}
- engines: {node: '>= 0.4'}
+ is-regex@1.1.4:
dependencies:
call-bind: 1.0.7
has-tostringtag: 1.0.2
- /is-relative/1.0.0:
- resolution: {integrity: sha512-Kw/ReK0iqwKeu0MITLFuj0jbPAmEiOsIwyIXvvbfa6QfmN9pkD1M+8pdk7Rl/dTKbH34/XBFMbgD4iMJhLQbGA==}
- engines: {node: '>=0.10.0'}
+ is-relative@1.0.0:
dependencies:
is-unc-path: 1.0.0
- dev: true
- /is-retry-allowed/1.2.0:
- resolution: {integrity: sha512-RUbUeKwvm3XG2VYamhJL1xFktgjvPzL0Hq8C+6yrWIswDy3BIXGqCxhxkc30N9jqK311gVU137K8Ei55/zVJRg==}
- engines: {node: '>=0.10.0'}
- dev: false
+ is-retry-allowed@1.2.0: {}
- /is-set/2.0.3:
- resolution: {integrity: sha512-iPAjerrse27/ygGLxw+EBR9agv9Y6uLeYVJMu+QNCoouJ1/1ri0mGrcWpfCqFZuzzx3WjtwxG098X+n4OuRkPg==}
- engines: {node: '>= 0.4'}
+ is-set@2.0.3: {}
- /is-shared-array-buffer/1.0.3:
- resolution: {integrity: sha512-nA2hv5XIhLR3uVzDDfCIknerhx8XUKnstuOERPNNIinXG7v9u+ohXF67vxm4TPTEPU6lm61ZkwP3c9PCB97rhg==}
- engines: {node: '>= 0.4'}
+ is-shared-array-buffer@1.0.3:
dependencies:
call-bind: 1.0.7
- /is-stream-ended/0.1.4:
- resolution: {integrity: sha512-xj0XPvmr7bQFTvirqnFr50o0hQIh6ZItDqloxt5aJrR4NQsYeSsyFQERYGCAzfindAcnKjINnwEEgLx4IqVzQw==}
- dev: false
+ is-stream-ended@0.1.4: {}
- /is-stream/1.1.0:
- resolution: {integrity: sha512-uQPm8kcs47jx38atAcWTVxyltQYoPT68y9aWYdV6yWXSyW8mzSat0TL6CiWdZeCdF3KrAvpVtnHbTv4RN+rqdQ==}
- engines: {node: '>=0.10.0'}
+ is-stream@1.1.0: {}
- /is-stream/2.0.1:
- resolution: {integrity: sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg==}
- engines: {node: '>=8'}
+ is-stream@2.0.1: {}
- /is-string/1.0.7:
- resolution: {integrity: sha512-tE2UXzivje6ofPW7l23cjDOMa09gb7xlAqG6jG5ej6uPV32TlWP3NKPigtaGeHNu9fohccRYvIiZMfOOnOYUtg==}
- engines: {node: '>= 0.4'}
+ is-stream@4.0.1: {}
+
+ is-string@1.0.7:
dependencies:
has-tostringtag: 1.0.2
- /is-symbol/1.0.4:
- resolution: {integrity: sha512-C/CPBqKWnvdcxqIARxyOh4v1UUEOCHpgDa0WYgpKDFMszcrPcffg5uhwSgPCLD2WWxmq6isisz87tzT01tuGhg==}
- engines: {node: '>= 0.4'}
+ is-symbol@1.0.4:
dependencies:
has-symbols: 1.0.3
- /is-typed-array/1.1.12:
- resolution: {integrity: sha512-Z14TF2JNG8Lss5/HMqt0//T9JeHXttXy5pH/DBU4vi98ozO2btxzq9MwYDZYnKwU8nRsz/+GVFVRDq3DkVuSPg==}
- engines: {node: '>= 0.4'}
- dependencies:
- which-typed-array: 1.1.15
-
- /is-typed-array/1.1.13:
- resolution: {integrity: sha512-uZ25/bUAlUY5fR4OKT4rZQEBrzQWYV9ZJYGGsUmEJ6thodVJ1HX64ePQ6Z0qPWP+m+Uq6e9UugrE38jeYsDSMw==}
- engines: {node: '>= 0.4'}
+ is-typed-array@1.1.13:
dependencies:
which-typed-array: 1.1.15
- /is-typedarray/1.0.0:
- resolution: {integrity: sha512-cyA56iCMHAh5CdzjJIa4aohJyeO1YbwLi3Jc35MmRU6poroFjIGZzUzupGiRPOjgHg9TLu43xbpwXk523fMxKA==}
+ is-typedarray@1.0.0: {}
- /is-unc-path/1.0.0:
- resolution: {integrity: sha512-mrGpVd0fs7WWLfVsStvgF6iEJnbjDFZh9/emhRDcGWTduTfNHd9CHeUwH3gYIjdbwo4On6hunkztwOaAw0yllQ==}
- engines: {node: '>=0.10.0'}
+ is-unc-path@1.0.0:
dependencies:
unc-path-regex: 0.1.2
- dev: true
- /is-unicode-supported/0.1.0:
- resolution: {integrity: sha512-knxG2q4UC3u8stRGyAVJCOdxFmv5DZiRcdlIaAQXAbSfJya+OhopNotLQrstBhququ4ZpuKbDc/8S6mgXgPFPw==}
- engines: {node: '>=10'}
- dev: false
+ is-unicode-supported@0.1.0: {}
- /is-url-superb/6.1.0:
- resolution: {integrity: sha512-LXdhGlYqUPdvEyIhWPEEwYYK3yrUiPcBjmFGlZNv1u5GtIL5qQRf7ddDyPNAvsMFqdzS923FROpTQU97tLe3JQ==}
- engines: {node: '>=12'}
- dev: false
+ is-url-superb@6.1.0: {}
- /is-url/1.2.4:
- resolution: {integrity: sha512-ITvGim8FhRiYe4IQ5uHSkj7pVaPDrCTkNd3yq3cV7iZAcJdHTUMPMEHcqSOy9xZ9qFenQCvi+2wjH9a1nXqHww==}
- dev: false
+ is-url@1.2.4: {}
- /is-weakmap/2.0.2:
- resolution: {integrity: sha512-K5pXYOm9wqY1RgjpL3YTkF39tni1XajUIkawTLUo9EZEVUFga5gSQJF8nNS7ZwJQ02y+1YCNYcMh+HIf1ZqE+w==}
- engines: {node: '>= 0.4'}
- dev: true
+ is-weakmap@2.0.2: {}
- /is-weakref/1.0.2:
- resolution: {integrity: sha512-qctsuLZmIQ0+vSSMfoVvyFe2+GSEvnmZ2ezTup1SBse9+twCCeial6EEi3Nc2KFcf6+qz2FBPnjXsk8xhKSaPQ==}
+ is-weakref@1.0.2:
dependencies:
call-bind: 1.0.7
- /is-weakset/2.0.3:
- resolution: {integrity: sha512-LvIm3/KWzS9oRFHugab7d+M/GcBXuXX5xZkzPmN+NxihdQlZUQ4dWuSV1xR/sq6upL1TJEDrfBgRepHFdBtSNQ==}
- engines: {node: '>= 0.4'}
+ is-weakset@2.0.3:
dependencies:
call-bind: 1.0.7
get-intrinsic: 1.2.4
- dev: true
- /is-wsl/2.2.0:
- resolution: {integrity: sha512-fKzAra0rGJUUBwGBgNkHZuToZcn+TtXHpeCgmkMJMMYx1sQDYaCSyjJBSCa2nH1DGm7s3n1oBnohoVTBaN7Lww==}
- engines: {node: '>=8'}
+ is-wsl@2.2.0:
dependencies:
is-docker: 2.2.1
- dev: false
- /is/3.3.0:
- resolution: {integrity: sha512-nW24QBoPcFGGHJGUwnfpI7Yc5CdqWNdsyHQszVE/z2pKHXzh7FZ5GWhJqSyaQ9wMkQnsTx+kAI8bHlCX4tKdbg==}
- dev: false
+ is@3.3.0: {}
- /isarray/0.0.1:
- resolution: {integrity: sha512-D2S+3GLxWH+uhrNEcoh/fnmYeP8E8/zHl644d/jdA0g2uyXvy3sb0qxotE+ne0LtccHknQzWwZEzhak7oJ0COQ==}
- dev: false
+ isarray@0.0.1: {}
- /isarray/1.0.0:
- resolution: {integrity: sha512-VLghIWNM6ELQzo7zwmcg0NmTVyWKYjvIeM83yjp0wRDTmUnrM678fQbcKBo6n2CJEF0szoG//ytg+TKla89ALQ==}
+ isarray@1.0.0: {}
- /isarray/2.0.5:
- resolution: {integrity: sha512-xHjhDr3cNBK0BzdUJSPXZntQUx/mwMS5Rw4A7lPJ90XGAO6ISP/ePDNuo0vhqOZU+UD5JoodwCAAoZQd3FeAKw==}
+ isarray@2.0.5: {}
- /isexe/2.0.0:
- resolution: {integrity: sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==}
- dev: true
+ isexe@2.0.0: {}
- /isexe/3.1.1:
- resolution: {integrity: sha512-LpB/54B+/2J5hqQ7imZHfdU31OlgQqx7ZicVlkm9kzg9/w8GKLEcFfJl/t7DCEDueOyBAD6zCCwTO6Fzs0NoEQ==}
- engines: {node: '>=16'}
- dev: true
+ isexe@3.1.1: {}
- /isobject/3.0.1:
- resolution: {integrity: sha512-WhB9zCku7EGTj/HQQRz5aUQEUeoQZH2bWcltRErOpymJ4boYE6wL9Tbr23krRPSZ+C5zqNSrSw+Cc7sZZ4b7vg==}
- engines: {node: '>=0.10.0'}
- dev: false
+ isobject@3.0.1: {}
- /isomorphic-fetch/3.0.0:
- resolution: {integrity: sha512-qvUtwJ3j6qwsF3jLxkZ72qCgjMysPzDfeV240JHiGZsANBYd+EEuu35v7dfrJ9Up0Ak07D7GGSkGhCHTqg/5wA==}
+ isomorphic-fetch@3.0.0:
dependencies:
node-fetch: 2.7.0
- whatwg-fetch: 3.6.19
+ whatwg-fetch: 3.6.20
transitivePeerDependencies:
- encoding
- dev: false
- /isomorphic-unfetch/3.1.0:
- resolution: {integrity: sha512-geDJjpoZ8N0kWexiwkX8F9NkTsXhetLPVbZFQ+JTW239QNOwvB0gniuR1Wc6f0AMTn7/mFGyXvHTifrCp/GH8Q==}
+ isomorphic-unfetch@3.1.0:
dependencies:
node-fetch: 2.7.0
unfetch: 4.2.0
transitivePeerDependencies:
- encoding
- dev: false
- /isomorphic-ws/4.0.1_ws@8.7.0:
- resolution: {integrity: sha512-BhBvN2MBpWTaSHdWRb/bwdZJ1WaehQ2L1KngkCkfLUGF0mAWAT1sQUQacEmQ0jXkFw/czDXPNQSL5u2/Krsz1w==}
- peerDependencies:
- ws: '*'
+ isomorphic-ws@4.0.1(ws@8.7.0):
dependencies:
ws: 8.7.0
- dev: false
- /isstream/0.1.2:
- resolution: {integrity: sha512-Yljz7ffyPbrLpLngrMtZ7NduUgVvi6wG9RJ9IUcyCd59YQ911PBJphODUcbOVbqYfxe1wuYf/LJ8PauMRwsM/g==}
+ isstream@0.1.2: {}
- /istanbul-lib-coverage/3.2.2:
- resolution: {integrity: sha512-O8dpsF+r0WV/8MNRKfnmrtCWhuKjxrq2w+jpzBL5UZKTi2LeVWnWOmWRxFlesJONmc+wLAGvKQZEOanko0LFTg==}
- engines: {node: '>=8'}
- dev: true
+ istanbul-lib-coverage@3.2.2: {}
- /istanbul-lib-instrument/5.2.1:
- resolution: {integrity: sha512-pzqtp31nLv/XFOzXGuvhCb8qhjmTVo5vjVk19XE4CRlSWz0KoeJ3bw9XsA7nOp9YBf4qHjwBxkDzKcME/J29Yg==}
- engines: {node: '>=8'}
+ istanbul-lib-instrument@5.2.1:
dependencies:
- '@babel/core': 7.25.2
- '@babel/parser': 7.25.3
+ '@babel/core': 7.26.0
+ '@babel/parser': 7.26.2
'@istanbuljs/schema': 0.1.3
istanbul-lib-coverage: 3.2.2
semver: 6.3.1
transitivePeerDependencies:
- supports-color
- dev: true
- /istanbul-lib-instrument/6.0.3:
- resolution: {integrity: sha512-Vtgk7L/R2JHyyGW07spoFlB8/lpjiOLTjMdms6AFMraYt3BaJauod/NGrfnVG/y4Ix1JEuMRPDPEj2ua+zz1/Q==}
- engines: {node: '>=10'}
+ istanbul-lib-instrument@6.0.3:
dependencies:
- '@babel/core': 7.25.2
- '@babel/parser': 7.25.3
+ '@babel/core': 7.26.0
+ '@babel/parser': 7.26.2
'@istanbuljs/schema': 0.1.3
istanbul-lib-coverage: 3.2.2
semver: 7.6.3
transitivePeerDependencies:
- supports-color
- dev: true
- /istanbul-lib-report/3.0.1:
- resolution: {integrity: sha512-GCfE1mtsHGOELCU8e/Z7YWzpmybrx/+dSTfLrvY8qRmaY6zXTKWn6WQIjaAFw069icm6GVMNkgu0NzI4iPZUNw==}
- engines: {node: '>=10'}
+ istanbul-lib-report@3.0.1:
dependencies:
istanbul-lib-coverage: 3.2.2
make-dir: 4.0.0
supports-color: 7.2.0
- dev: true
- /istanbul-lib-source-maps/4.0.1:
- resolution: {integrity: sha512-n3s8EwkdFIJCG3BPKBYvskgXGoy88ARzvegkitk60NxRdwltLOTaH7CUiMRXvwYorl0Q712iEjcWB+fK/MrWVw==}
- engines: {node: '>=10'}
+ istanbul-lib-source-maps@4.0.1:
dependencies:
- debug: 4.3.6
+ debug: 4.3.7(supports-color@9.4.0)
istanbul-lib-coverage: 3.2.2
source-map: 0.6.1
transitivePeerDependencies:
- supports-color
- dev: true
- /istanbul-reports/3.1.7:
- resolution: {integrity: sha512-BewmUXImeuRk2YY0PVbxgKAysvhRPUQE0h5QRM++nVWyubKGV0l8qQ5op8+B2DOmwSe63Jivj0BjkPQVf8fP5g==}
- engines: {node: '>=8'}
+ istanbul-reports@3.1.7:
dependencies:
html-escaper: 2.0.2
istanbul-lib-report: 3.0.1
- dev: true
- /iterate-iterator/1.0.2:
- resolution: {integrity: sha512-t91HubM4ZDQ70M9wqp+pcNpu8OyJ9UAtXntT/Bcsvp5tZMnz9vRa+IunKXeI8AnfZMTv0jNuVEmGeLSMjVvfPw==}
- dev: false
+ iterate-iterator@1.0.2: {}
- /iterate-value/1.0.2:
- resolution: {integrity: sha512-A6fMAio4D2ot2r/TYzr4yUWrmwNdsN5xL7+HUiyACE4DXm+q8HtPcnFTp+NnW3k4N05tZ7FVYFFb2CR13NxyHQ==}
+ iterate-value@1.0.2:
dependencies:
es-get-iterator: 1.1.3
iterate-iterator: 1.0.2
- dev: false
- /iterator.prototype/1.1.3:
- resolution: {integrity: sha512-FW5iMbeQ6rBGm/oKgzq2aW4KvAGpxPzYES8N4g4xNXUKpL1mclMvOe+76AcLDTvD+Ze+sOpVhgdAQEKF4L9iGQ==}
- engines: {node: '>= 0.4'}
+ iterator.prototype@1.1.3:
dependencies:
define-properties: 1.2.1
get-intrinsic: 1.2.4
has-symbols: 1.0.3
reflect.getprototypeof: 1.0.6
set-function-name: 2.0.2
- dev: true
- /jackspeak/2.3.6:
- resolution: {integrity: sha512-N3yCS/NegsOBokc8GAdM8UcmfsKiSS8cipheD/nivzr700H+nsMOxJjQnvwOcRYVuFkdH0wGUvW2WbXGmrZGbQ==}
- engines: {node: '>=14'}
- dependencies:
- '@isaacs/cliui': 8.0.2
- optionalDependencies:
- '@pkgjs/parseargs': 0.11.0
- dev: true
-
- /jake/10.9.2:
- resolution: {integrity: sha512-2P4SQ0HrLQ+fw6llpLnOaGAvN2Zu6778SJMrCUwns4fOoG9ayrTiZk3VV8sCPkVZF8ab0zksVpS8FDY5pRCNBA==}
- engines: {node: '>=10'}
- hasBin: true
+ jake@10.9.2:
dependencies:
- async: 3.2.4
+ async: 3.2.6
chalk: 4.1.2
filelist: 1.0.4
minimatch: 3.1.2
- dev: true
- /jessy/3.1.1:
- resolution: {integrity: sha512-Eivuwu3H8qfm4DldbyBci4RJMgoPK3pT3BCzIWNrGPOatkl4jh91PO4LZp7N2zIz8jQlYqs5bPKOkf138jRYqw==}
- engines: {node: '>=4'}
- dev: true
+ jessy@3.1.1: {}
- /jest-changed-files/29.7.0:
- resolution: {integrity: sha512-fEArFiwf1BpQ+4bXSprcDc3/x4HSzL4al2tozwVpDFpsxALjLYdyiIK4e5Vz66GQJIbXJ82+35PtysofptNX2w==}
- engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
+ jest-changed-files@29.7.0:
dependencies:
execa: 5.1.1
jest-util: 29.7.0
p-limit: 3.1.0
- dev: true
- /jest-circus/29.7.0:
- resolution: {integrity: sha512-3E1nCMgipcTkCocFwM90XXQab9bS+GMsjdpmPrlelaxwD93Ad8iVEjX/vvHPdLPnFf+L40u+5+iutRdA1N9myw==}
- engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
+ jest-circus@29.7.0(babel-plugin-macros@3.1.0):
dependencies:
'@jest/environment': 29.7.0
'@jest/expect': 29.7.0
@@ -28893,7 +34620,7 @@ packages:
'@types/node': 20.17.6
chalk: 4.1.2
co: 4.6.0
- dedent: 1.5.3
+ dedent: 1.5.3(babel-plugin-macros@3.1.0)
is-generator-fn: 2.1.0
jest-each: 29.7.0
jest-matcher-utils: 29.7.0
@@ -28909,82 +34636,17 @@ packages:
transitivePeerDependencies:
- babel-plugin-macros
- supports-color
- dev: true
-
- /jest-cli/29.7.0:
- resolution: {integrity: sha512-OVVobw2IubN/GSYsxETi+gOe7Ka59EFMR/twOU3Jb2GnKKeMGJB5SGUUrEz3SFVmJASUdZUzy83sLNNQ2gZslg==}
- engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
- hasBin: true
- peerDependencies:
- node-notifier: ^8.0.1 || ^9.0.0 || ^10.0.0
- peerDependenciesMeta:
- node-notifier:
- optional: true
- dependencies:
- '@jest/core': 29.7.0
- '@jest/test-result': 29.7.0
- '@jest/types': 29.6.3
- chalk: 4.1.2
- create-jest: 29.7.0
- exit: 0.1.2
- import-local: 3.1.0
- jest-config: 29.7.0
- jest-util: 29.7.0
- jest-validate: 29.7.0
- yargs: 17.7.2
- transitivePeerDependencies:
- - '@types/node'
- - babel-plugin-macros
- - supports-color
- - ts-node
- dev: true
-
- /jest-cli/29.7.0_@types+node@20.17.6:
- resolution: {integrity: sha512-OVVobw2IubN/GSYsxETi+gOe7Ka59EFMR/twOU3Jb2GnKKeMGJB5SGUUrEz3SFVmJASUdZUzy83sLNNQ2gZslg==}
- engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
- hasBin: true
- peerDependencies:
- node-notifier: ^8.0.1 || ^9.0.0 || ^10.0.0
- peerDependenciesMeta:
- node-notifier:
- optional: true
- dependencies:
- '@jest/core': 29.7.0
- '@jest/test-result': 29.7.0
- '@jest/types': 29.6.3
- chalk: 4.1.2
- create-jest: 29.7.0_@types+node@20.17.6
- exit: 0.1.2
- import-local: 3.1.0
- jest-config: 29.7.0_@types+node@20.17.6
- jest-util: 29.7.0
- jest-validate: 29.7.0
- yargs: 17.7.2
- transitivePeerDependencies:
- - '@types/node'
- - babel-plugin-macros
- - supports-color
- - ts-node
- dev: true
- /jest-cli/29.7.0_@types+node@20.9.2:
- resolution: {integrity: sha512-OVVobw2IubN/GSYsxETi+gOe7Ka59EFMR/twOU3Jb2GnKKeMGJB5SGUUrEz3SFVmJASUdZUzy83sLNNQ2gZslg==}
- engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
- hasBin: true
- peerDependencies:
- node-notifier: ^8.0.1 || ^9.0.0 || ^10.0.0
- peerDependenciesMeta:
- node-notifier:
- optional: true
+ jest-cli@29.7.0(@types/node@20.17.6)(babel-plugin-macros@3.1.0):
dependencies:
- '@jest/core': 29.7.0
+ '@jest/core': 29.7.0(babel-plugin-macros@3.1.0)
'@jest/test-result': 29.7.0
'@jest/types': 29.6.3
chalk: 4.1.2
- create-jest: 29.7.0_@types+node@20.9.2
+ create-jest: 29.7.0(@types/node@20.17.6)(babel-plugin-macros@3.1.0)
exit: 0.1.2
- import-local: 3.1.0
- jest-config: 29.7.0_@types+node@20.9.2
+ import-local: 3.2.0
+ jest-config: 29.7.0(@types/node@20.17.6)(babel-plugin-macros@3.1.0)
jest-util: 29.7.0
jest-validate: 29.7.0
yargs: 17.7.2
@@ -28993,30 +34655,19 @@ packages:
- babel-plugin-macros
- supports-color
- ts-node
- dev: true
- /jest-config/29.7.0:
- resolution: {integrity: sha512-uXbpfeQ7R6TZBqI3/TxCU4q4ttk3u0PJeC+E0zbfSoSjq6bJ7buBPxzQPL0ifrkY4DNu4JUdk0ImlBUYi840eQ==}
- engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
- peerDependencies:
- '@types/node': '*'
- ts-node: '>=9.0.0'
- peerDependenciesMeta:
- '@types/node':
- optional: true
- ts-node:
- optional: true
+ jest-config@29.7.0(@types/node@20.17.6)(babel-plugin-macros@3.1.0):
dependencies:
- '@babel/core': 7.25.2
+ '@babel/core': 7.26.0
'@jest/test-sequencer': 29.7.0
'@jest/types': 29.6.3
- babel-jest: 29.7.0_@babel+core@7.25.2
+ babel-jest: 29.7.0(@babel/core@7.26.0)
chalk: 4.1.2
ci-info: 3.9.0
deepmerge: 4.3.1
glob: 7.2.3
graceful-fs: 4.2.11
- jest-circus: 29.7.0
+ jest-circus: 29.7.0(babel-plugin-macros@3.1.0)
jest-environment-node: 29.7.0
jest-get-type: 29.6.3
jest-regex-util: 29.6.3
@@ -29024,137 +34675,44 @@ packages:
jest-runner: 29.7.0
jest-util: 29.7.0
jest-validate: 29.7.0
- micromatch: 4.0.7
+ micromatch: 4.0.8
parse-json: 5.2.0
pretty-format: 29.7.0
slash: 3.0.0
strip-json-comments: 3.1.1
- transitivePeerDependencies:
- - babel-plugin-macros
- - supports-color
- dev: true
-
- /jest-config/29.7.0_@types+node@20.17.6:
- resolution: {integrity: sha512-uXbpfeQ7R6TZBqI3/TxCU4q4ttk3u0PJeC+E0zbfSoSjq6bJ7buBPxzQPL0ifrkY4DNu4JUdk0ImlBUYi840eQ==}
- engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
- peerDependencies:
- '@types/node': '*'
- ts-node: '>=9.0.0'
- peerDependenciesMeta:
- '@types/node':
- optional: true
- ts-node:
- optional: true
- dependencies:
- '@babel/core': 7.25.2
- '@jest/test-sequencer': 29.7.0
- '@jest/types': 29.6.3
+ optionalDependencies:
'@types/node': 20.17.6
- babel-jest: 29.7.0_@babel+core@7.25.2
- chalk: 4.1.2
- ci-info: 3.9.0
- deepmerge: 4.3.1
- glob: 7.2.3
- graceful-fs: 4.2.11
- jest-circus: 29.7.0
- jest-environment-node: 29.7.0
- jest-get-type: 29.6.3
- jest-regex-util: 29.6.3
- jest-resolve: 29.7.0
- jest-runner: 29.7.0
- jest-util: 29.7.0
- jest-validate: 29.7.0
- micromatch: 4.0.7
- parse-json: 5.2.0
- pretty-format: 29.7.0
- slash: 3.0.0
- strip-json-comments: 3.1.1
- transitivePeerDependencies:
- - babel-plugin-macros
- - supports-color
- dev: true
-
- /jest-config/29.7.0_@types+node@20.9.2:
- resolution: {integrity: sha512-uXbpfeQ7R6TZBqI3/TxCU4q4ttk3u0PJeC+E0zbfSoSjq6bJ7buBPxzQPL0ifrkY4DNu4JUdk0ImlBUYi840eQ==}
- engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
- peerDependencies:
- '@types/node': '*'
- ts-node: '>=9.0.0'
- peerDependenciesMeta:
- '@types/node':
- optional: true
- ts-node:
- optional: true
- dependencies:
- '@babel/core': 7.25.2
- '@jest/test-sequencer': 29.7.0
- '@jest/types': 29.6.3
- '@types/node': 20.9.2
- babel-jest: 29.7.0_@babel+core@7.25.2
- chalk: 4.1.2
- ci-info: 3.9.0
- deepmerge: 4.3.1
- glob: 7.2.3
- graceful-fs: 4.2.11
- jest-circus: 29.7.0
- jest-environment-node: 29.7.0
- jest-get-type: 29.6.3
- jest-regex-util: 29.6.3
- jest-resolve: 29.7.0
- jest-runner: 29.7.0
- jest-util: 29.7.0
- jest-validate: 29.7.0
- micromatch: 4.0.7
- parse-json: 5.2.0
- pretty-format: 29.7.0
- slash: 3.0.0
- strip-json-comments: 3.1.1
transitivePeerDependencies:
- babel-plugin-macros
- supports-color
- dev: true
- /jest-diff/27.5.1:
- resolution: {integrity: sha512-m0NvkX55LDt9T4mctTEgnZk3fmEg3NRYutvMPWM/0iPnkFj2wIeF45O1718cMSOFO1vINkqmxqD8vE37uTEbqw==}
- engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0}
+ jest-diff@27.5.1:
dependencies:
chalk: 4.1.2
diff-sequences: 27.5.1
jest-get-type: 27.5.1
pretty-format: 27.5.1
- dev: true
- /jest-diff/29.7.0:
- resolution: {integrity: sha512-LMIgiIrhigmPrs03JHpxUh2yISK3vLFPkAodPeo0+BuF7wA2FoQbkEg1u8gBYBThncu7e1oEDUfIXVuTqLRUjw==}
- engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
+ jest-diff@29.7.0:
dependencies:
chalk: 4.1.2
diff-sequences: 29.6.3
jest-get-type: 29.6.3
pretty-format: 29.7.0
- dev: true
- /jest-docblock/29.7.0:
- resolution: {integrity: sha512-q617Auw3A612guyaFgsbFeYpNP5t2aoUNLwBUbc/0kD1R4t9ixDbyFTHd1nok4epoVFpr7PmeWHrhvuV3XaJ4g==}
- engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
+ jest-docblock@29.7.0:
dependencies:
detect-newline: 3.1.0
- dev: true
- /jest-each/29.7.0:
- resolution: {integrity: sha512-gns+Er14+ZrEoC5fhOfYCY1LOHHr0TI+rQUHZS8Ttw2l7gl+80eHc/gFf2Ktkw0+SIACDTeWvpFcv3B04VembQ==}
- engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
+ jest-each@29.7.0:
dependencies:
'@jest/types': 29.6.3
chalk: 4.1.2
jest-get-type: 29.6.3
jest-util: 29.7.0
pretty-format: 29.7.0
- dev: true
- /jest-environment-node/29.7.0:
- resolution: {integrity: sha512-DOSwCRqXirTOyheM+4d5YZOrWcdu0LNZ87ewUoywbcb2XR4wKgqiG8vNeYwhjFMbEkfju7wx2GYH0P2gevGvFw==}
- engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
+ jest-environment-node@29.7.0:
dependencies:
'@jest/environment': 29.7.0
'@jest/fake-timers': 29.7.0
@@ -29162,30 +34720,19 @@ packages:
'@types/node': 20.17.6
jest-mock: 29.7.0
jest-util: 29.7.0
- dev: true
- /jest-fetch-mock/3.0.3:
- resolution: {integrity: sha512-Ux1nWprtLrdrH4XwE7O7InRY6psIi3GOsqNESJgMJ+M5cv4A8Lh7SN9d2V2kKRZ8ebAfcd1LNyZguAOb6JiDqw==}
+ jest-fetch-mock@3.0.3:
dependencies:
cross-fetch: 3.1.8
promise-polyfill: 8.3.0
transitivePeerDependencies:
- encoding
- dev: true
- /jest-get-type/27.5.1:
- resolution: {integrity: sha512-2KY95ksYSaK7DMBWQn6dQz3kqAf3BB64y2udeG+hv4KfSOb9qwcYQstTJc1KCbsix+wLZWZYN8t7nwX3GOBLRw==}
- engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0}
- dev: true
+ jest-get-type@27.5.1: {}
- /jest-get-type/29.6.3:
- resolution: {integrity: sha512-zrteXnqYxfQh7l5FHyL38jL39di8H8rHoecLH3JNxH3BwOrBsNeabdap5e0I23lD4HHI8W5VFBZqG4Eaq5LNcw==}
- engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
- dev: true
+ jest-get-type@29.6.3: {}
- /jest-haste-map/29.7.0:
- resolution: {integrity: sha512-fP8u2pyfqx0K1rGn1R9pyE0/KTn+G7PxktWidOBTqFPLYX0b9ksaMFkhK5vrS3DVun09pckLdlx90QthlW7AmA==}
- engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
+ jest-haste-map@29.7.0:
dependencies:
'@jest/types': 29.6.3
'@types/graceful-fs': 4.1.9
@@ -29196,109 +34743,74 @@ packages:
jest-regex-util: 29.6.3
jest-util: 29.7.0
jest-worker: 29.7.0
- micromatch: 4.0.7
+ micromatch: 4.0.8
walker: 1.0.8
optionalDependencies:
fsevents: 2.3.3
- dev: true
- /jest-leak-detector/29.7.0:
- resolution: {integrity: sha512-kYA8IJcSYtST2BY9I+SMC32nDpBT3J2NvWJx8+JCuCdl/CR1I4EKUJROiP8XtCcxqgTTBGJNdbB1A8XRKbTetw==}
- engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
+ jest-leak-detector@29.7.0:
dependencies:
jest-get-type: 29.6.3
pretty-format: 29.7.0
- dev: true
- /jest-matcher-utils/27.5.1:
- resolution: {integrity: sha512-z2uTx/T6LBaCoNWNFWwChLBKYxTMcGBRjAt+2SbP929/Fflb9aa5LGma654Rz8z9HLxsrUaYzxE9T/EFIL/PAw==}
- engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0}
+ jest-matcher-utils@27.5.1:
dependencies:
chalk: 4.1.2
jest-diff: 27.5.1
jest-get-type: 27.5.1
pretty-format: 27.5.1
- dev: true
- /jest-matcher-utils/29.7.0:
- resolution: {integrity: sha512-sBkD+Xi9DtcChsI3L3u0+N0opgPYnCRPtGcQYrgXmR+hmt/fYfWAL0xRXYU8eWOdfuLgBe0YCW3AFtnRLagq/g==}
- engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
+ jest-matcher-utils@29.7.0:
dependencies:
chalk: 4.1.2
jest-diff: 29.7.0
jest-get-type: 29.6.3
pretty-format: 29.7.0
- dev: true
- /jest-message-util/29.7.0:
- resolution: {integrity: sha512-GBEV4GRADeP+qtB2+6u61stea8mGcOT4mCtrYISZwfu9/ISHFJ/5zOMXYbpBE9RsS5+Gb63DW4FgmnKJ79Kf6w==}
- engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
+ jest-message-util@29.7.0:
dependencies:
- '@babel/code-frame': 7.24.7
+ '@babel/code-frame': 7.26.2
'@jest/types': 29.6.3
'@types/stack-utils': 2.0.3
chalk: 4.1.2
graceful-fs: 4.2.11
- micromatch: 4.0.7
+ micromatch: 4.0.8
pretty-format: 29.7.0
- slash: 3.0.0
- stack-utils: 2.0.6
- dev: true
-
- /jest-mock/29.7.0:
- resolution: {integrity: sha512-ITOMZn+UkYS4ZFh83xYAOzWStloNzJFO2s8DWrE4lhtGD+AorgnbkiKERe4wQVBydIGPx059g6riW5Btp6Llnw==}
- engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
- dependencies:
- '@jest/types': 29.6.3
- '@types/node': 20.17.6
- jest-util: 29.7.0
- dev: true
-
- /jest-pnp-resolver/1.2.3_jest-resolve@29.7.0:
- resolution: {integrity: sha512-+3NpwQEnRoIBtx4fyhblQDPgJI0H1IEIkX7ShLUjPGA7TtUTvI1oiKi3SR4oBR0hQhQR80l4WAe5RrXBwWMA8w==}
- engines: {node: '>=6'}
- peerDependencies:
- jest-resolve: '*'
- peerDependenciesMeta:
- jest-resolve:
- optional: true
+ slash: 3.0.0
+ stack-utils: 2.0.6
+
+ jest-mock@29.7.0:
dependencies:
+ '@jest/types': 29.6.3
+ '@types/node': 20.17.6
+ jest-util: 29.7.0
+
+ jest-pnp-resolver@1.2.3(jest-resolve@29.7.0):
+ optionalDependencies:
jest-resolve: 29.7.0
- dev: true
- /jest-regex-util/29.6.3:
- resolution: {integrity: sha512-KJJBsRCyyLNWCNBOvZyRDnAIfUiRJ8v+hOBQYGn8gDyF3UegwiP4gwRR3/SDa42g1YbVycTidUF3rKjyLFDWbg==}
- engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
- dev: true
+ jest-regex-util@29.6.3: {}
- /jest-resolve-dependencies/29.7.0:
- resolution: {integrity: sha512-un0zD/6qxJ+S0et7WxeI3H5XSe9lTBBR7bOHCHXkKR6luG5mwDDlIzVQ0V5cZCuoTgEdcdwzTghYkTWfubi+nA==}
- engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
+ jest-resolve-dependencies@29.7.0:
dependencies:
jest-regex-util: 29.6.3
jest-snapshot: 29.7.0
transitivePeerDependencies:
- supports-color
- dev: true
- /jest-resolve/29.7.0:
- resolution: {integrity: sha512-IOVhZSrg+UvVAshDSDtHyFCCBUl/Q3AAJv8iZ6ZjnZ74xzvwuzLXid9IIIPgTnY62SJjfuupMKZsZQRsCvxEgA==}
- engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
+ jest-resolve@29.7.0:
dependencies:
chalk: 4.1.2
graceful-fs: 4.2.11
jest-haste-map: 29.7.0
- jest-pnp-resolver: 1.2.3_jest-resolve@29.7.0
+ jest-pnp-resolver: 1.2.3(jest-resolve@29.7.0)
jest-util: 29.7.0
jest-validate: 29.7.0
resolve: 1.22.8
resolve.exports: 2.0.2
slash: 3.0.0
- dev: true
- /jest-runner/29.7.0:
- resolution: {integrity: sha512-fsc4N6cPCAahybGBfTRcq5wFR6fpLznMg47sY5aDpsoejOcVYFb07AHuSnR0liMcPTgBsA3ZJL6kFOjPdoNipQ==}
- engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
+ jest-runner@29.7.0:
dependencies:
'@jest/console': 29.7.0
'@jest/environment': 29.7.0
@@ -29323,11 +34835,8 @@ packages:
source-map-support: 0.5.13
transitivePeerDependencies:
- supports-color
- dev: true
- /jest-runtime/29.7.0:
- resolution: {integrity: sha512-gUnLjgwdGqW7B4LvOIkbKs9WGbn+QLqRQQ9juC6HndeDiezIwhDP+mhMwHWCEcfQ5RUXa6OPnFF8BJh5xegwwQ==}
- engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
+ jest-runtime@29.7.0:
dependencies:
'@jest/environment': 29.7.0
'@jest/fake-timers': 29.7.0
@@ -29338,7 +34847,7 @@ packages:
'@jest/types': 29.6.3
'@types/node': 20.17.6
chalk: 4.1.2
- cjs-module-lexer: 1.3.1
+ cjs-module-lexer: 1.4.1
collect-v8-coverage: 1.0.2
glob: 7.2.3
graceful-fs: 4.2.11
@@ -29353,21 +34862,18 @@ packages:
strip-bom: 4.0.0
transitivePeerDependencies:
- supports-color
- dev: true
- /jest-snapshot/29.7.0:
- resolution: {integrity: sha512-Rm0BMWtxBcioHr1/OX5YCP8Uov4riHvKPknOGs804Zg9JGZgmIBkbtlxJC/7Z4msKYVbIJtfU+tKb8xlYNfdkw==}
- engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
+ jest-snapshot@29.7.0:
dependencies:
- '@babel/core': 7.25.2
- '@babel/generator': 7.25.0
- '@babel/plugin-syntax-jsx': 7.24.7_@babel+core@7.25.2
- '@babel/plugin-syntax-typescript': 7.24.7_@babel+core@7.25.2
- '@babel/types': 7.25.2
+ '@babel/core': 7.26.0
+ '@babel/generator': 7.26.2
+ '@babel/plugin-syntax-jsx': 7.25.9(@babel/core@7.26.0)
+ '@babel/plugin-syntax-typescript': 7.25.9(@babel/core@7.26.0)
+ '@babel/types': 7.26.0
'@jest/expect-utils': 29.7.0
'@jest/transform': 29.7.0
'@jest/types': 29.6.3
- babel-preset-current-node-syntax: 1.0.1_@babel+core@7.25.2
+ babel-preset-current-node-syntax: 1.1.0(@babel/core@7.26.0)
chalk: 4.1.2
expect: 29.7.0
graceful-fs: 4.2.11
@@ -29381,11 +34887,8 @@ packages:
semver: 7.6.3
transitivePeerDependencies:
- supports-color
- dev: true
- /jest-util/29.7.0:
- resolution: {integrity: sha512-z6EbKajIpqGKU56y5KBUgy1dt1ihhQJgWzUlZHArA/+X2ad7Cb5iF+AK1EWVL/Bo7Rz9uurpqw6SiBCefUbCGA==}
- engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
+ jest-util@29.7.0:
dependencies:
'@jest/types': 29.6.3
'@types/node': 20.17.6
@@ -29393,11 +34896,8 @@ packages:
ci-info: 3.9.0
graceful-fs: 4.2.11
picomatch: 2.3.1
- dev: true
- /jest-validate/29.7.0:
- resolution: {integrity: sha512-ZB7wHqaRGVw/9hST/OuFUReG7M8vKeq0/J2egIGLdvjHCmYqGARhzXmtgi+gVeZ5uXFF219aOc3Ls2yLg27tkw==}
- engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
+ jest-validate@29.7.0:
dependencies:
'@jest/types': 29.6.3
camelcase: 6.3.0
@@ -29405,11 +34905,8 @@ packages:
jest-get-type: 29.6.3
leven: 3.1.0
pretty-format: 29.7.0
- dev: true
- /jest-watcher/29.7.0:
- resolution: {integrity: sha512-49Fg7WXkU3Vl2h6LbLtMQ/HyB6rXSIX7SqvBLQmssRBGN9I0PNvPmAmCWSOY6SOvrjhI/F7/bGAv9RtnsPA03g==}
- engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
+ jest-watcher@29.7.0:
dependencies:
'@jest/test-result': 29.7.0
'@jest/types': 29.6.3
@@ -29419,326 +34916,189 @@ packages:
emittery: 0.13.1
jest-util: 29.7.0
string-length: 4.0.2
- dev: true
- /jest-worker/29.7.0:
- resolution: {integrity: sha512-eIz2msL/EzL9UFTFFx7jBTkeZfku0yUAyZZZmJ93H2TYEiroIx2PQjEXcwYtYl8zXCxb+PAmA2hLIt/6ZEkPHw==}
- engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
+ jest-worker@29.7.0:
dependencies:
'@types/node': 20.17.6
jest-util: 29.7.0
merge-stream: 2.0.0
supports-color: 8.1.1
- dev: true
-
- /jest/29.7.0:
- resolution: {integrity: sha512-NIy3oAFp9shda19hy4HK0HRTWKtPJmGdnvywu01nOqNC2vZg+Z+fvJDxpMQA88eb2I9EcafcdjYgsDthnYTvGw==}
- engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
- hasBin: true
- peerDependencies:
- node-notifier: ^8.0.1 || ^9.0.0 || ^10.0.0
- peerDependenciesMeta:
- node-notifier:
- optional: true
- dependencies:
- '@jest/core': 29.7.0
- '@jest/types': 29.6.3
- import-local: 3.1.0
- jest-cli: 29.7.0
- transitivePeerDependencies:
- - '@types/node'
- - babel-plugin-macros
- - supports-color
- - ts-node
- dev: true
- /jest/29.7.0_@types+node@20.17.6:
- resolution: {integrity: sha512-NIy3oAFp9shda19hy4HK0HRTWKtPJmGdnvywu01nOqNC2vZg+Z+fvJDxpMQA88eb2I9EcafcdjYgsDthnYTvGw==}
- engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
- hasBin: true
- peerDependencies:
- node-notifier: ^8.0.1 || ^9.0.0 || ^10.0.0
- peerDependenciesMeta:
- node-notifier:
- optional: true
+ jest@29.7.0(@types/node@20.17.6)(babel-plugin-macros@3.1.0):
dependencies:
- '@jest/core': 29.7.0
+ '@jest/core': 29.7.0(babel-plugin-macros@3.1.0)
'@jest/types': 29.6.3
- import-local: 3.1.0
- jest-cli: 29.7.0_@types+node@20.17.6
+ import-local: 3.2.0
+ jest-cli: 29.7.0(@types/node@20.17.6)(babel-plugin-macros@3.1.0)
transitivePeerDependencies:
- '@types/node'
- babel-plugin-macros
- supports-color
- ts-node
- dev: true
- /jest/29.7.0_@types+node@20.9.2:
- resolution: {integrity: sha512-NIy3oAFp9shda19hy4HK0HRTWKtPJmGdnvywu01nOqNC2vZg+Z+fvJDxpMQA88eb2I9EcafcdjYgsDthnYTvGw==}
- engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
- hasBin: true
- peerDependencies:
- node-notifier: ^8.0.1 || ^9.0.0 || ^10.0.0
- peerDependenciesMeta:
- node-notifier:
- optional: true
- dependencies:
- '@jest/core': 29.7.0
- '@jest/types': 29.6.3
- import-local: 3.1.0
- jest-cli: 29.7.0_@types+node@20.9.2
- transitivePeerDependencies:
- - '@types/node'
- - babel-plugin-macros
- - supports-color
- - ts-node
- dev: true
+ jju@1.4.0: {}
- /joi/17.10.2:
- resolution: {integrity: sha512-hcVhjBxRNW/is3nNLdGLIjkgXetkeGc2wyhydhz8KumG23Aerk4HPjU5zaPAMRqXQFc0xNqXTC7+zQjxr0GlKA==}
+ joi@17.13.3:
dependencies:
'@hapi/hoek': 9.3.0
'@hapi/topo': 5.1.0
- '@sideway/address': 4.1.4
+ '@sideway/address': 4.1.5
'@sideway/formula': 3.0.1
'@sideway/pinpoint': 2.0.0
- dev: false
- /jose/2.0.6:
- resolution: {integrity: sha512-FVoPY7SflDodE4lknJmbAHSUjLCzE2H1F6MS0RYKMQ8SR+lNccpMf8R4eqkNYyyUjR5qZReOzZo5C5YiHOCjjg==}
- engines: {node: '>=10.13.0 < 13 || >=13.7.0'}
+ jose@2.0.7:
dependencies:
'@panva/asn1.js': 1.0.0
- dev: false
- /jose/3.20.4:
- resolution: {integrity: sha512-PRnyOQwWGD3EZnnSpKOOLqQ0RT9chbB8f8AzY4bEHY0I2FCtrcp1ojG0nBgAMn2MtuPpE3wOwIhhW0G7AGzbLw==}
- dev: false
+ jose@4.15.5: {}
- /jose/5.9.6:
- resolution: {integrity: sha512-AMlnetc9+CV9asI19zHmrgS/WYsWUwCn2R7RzlbJWD7F9eWYUTGyBmU9o6PxngtLGOiDGPRu+Uc4fhKzbpteZQ==}
- dev: false
+ jose@5.9.6: {}
- /js-base64/3.7.2:
- resolution: {integrity: sha512-NnRs6dsyqUXejqk/yv2aiXlAvOs56sLkX6nUdeaNezI5LFFLlsZjOThmwnrcwh5ZZRwZlCMnVAY3CvhIhoVEKQ==}
- dev: false
+ js-base64@3.7.2: {}
- /js-base64/3.7.5:
- resolution: {integrity: sha512-3MEt5DTINKqfScXKfJFrRbxkrnk2AxPWGBL/ycjz4dK8iqiSJ06UxD8jh8xuh6p10TX4t2+7FsBYVxxQbMg+qA==}
- dev: false
+ js-base64@3.7.7: {}
- /js-md4/0.3.2:
- resolution: {integrity: sha512-/GDnfQYsltsjRswQhN9fhv3EMw2sCpUdrdxyWDOUK7eyD++r3gRhzgiQgc/x4MAv2i1iuQ4lxO5mvqM3vj4bwA==}
- dev: false
+ js-md4@0.3.2: {}
- /js-sha256/0.9.0:
- resolution: {integrity: sha512-sga3MHh9sgQN2+pJ9VYZ+1LPwXOxuBJBA5nrR5/ofPfuiJBE2hnjsaN8se8JznOmGLN2p49Pe5U/ttafcs/apA==}
- dev: false
+ js-sha256@0.9.0: {}
- /js-tokens/3.0.2:
- resolution: {integrity: sha512-RjTcuD4xjtthQkaWH7dFlH85L+QaVtSoOyGdZ3g6HFhS9dFNDfLyqgm2NFe2X6cQpeFmt0452FJjFG5UameExg==}
- dev: true
+ js-tokens@3.0.2: {}
- /js-tokens/4.0.0:
- resolution: {integrity: sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==}
+ js-tokens@4.0.0: {}
- /js-yaml/3.14.1:
- resolution: {integrity: sha512-okMH7OXXJ7YrN9Ok3/SXrnu4iX9yOk+25nqX4imS2npuvTYDmo/QEZoqwZkYaIDk3jVvBOTOIEgEhaLOynBS9g==}
- hasBin: true
+ js-tokens@8.0.3: {}
+
+ js-tokens@9.0.1: {}
+
+ js-yaml@3.14.1:
dependencies:
argparse: 1.0.10
esprima: 4.0.1
- dev: true
- /js-yaml/4.1.0:
- resolution: {integrity: sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==}
- hasBin: true
+ js-yaml@4.1.0:
dependencies:
argparse: 2.0.1
- /js2xmlparser/4.0.2:
- resolution: {integrity: sha512-6n4D8gLlLf1n5mNLQPRfViYzu9RATblzPEtm1SthMX1Pjao0r9YI9nw7ZIfRxQMERS87mcswrg+r/OYrPRX6jA==}
+ js2xmlparser@4.0.2:
dependencies:
xmlcreate: 2.0.4
- dev: false
- /js2xmlparser/5.0.0:
- resolution: {integrity: sha512-ckXs0Fzd6icWurbeAXuqo+3Mhq2m8pOPygsQjTPh8K5UWgKaUgDSHrdDxAfexmT11xvBKOQ6sgYwPkYc5RW/bg==}
+ js2xmlparser@5.0.0:
dependencies:
xmlcreate: 2.0.4
- dev: false
- /jsbi/4.3.0:
- resolution: {integrity: sha512-SnZNcinB4RIcnEyZqFPdGPVgrg2AcnykiBy0sHVJQKHYeaLUvi3Exj+iaPpLnFVkDPZIV4U0yvgC9/R4uEAZ9g==}
- dev: false
+ jsbi@4.3.0: {}
- /jsbn/0.1.1:
- resolution: {integrity: sha512-UVU9dibq2JcFWxQPA6KCqj5O42VOmAY3zQUfEKxU0KpTGXwNoCjkX1e13eHNvw/xPynt6pU0rZ1htjWTNTSXsg==}
+ jsbn@0.1.1: {}
- /jsdoc/4.0.2:
- resolution: {integrity: sha512-e8cIg2z62InH7azBBi3EsSEqrKx+nUtAS5bBcYTSpZFA+vhNPyhv8PTFZ0WsjOPDj04/dOLlm08EDcQJDqaGQg==}
- engines: {node: '>=12.0.0'}
- hasBin: true
+ jsbn@1.1.0: {}
+
+ jsdoc@4.0.4:
dependencies:
- '@babel/parser': 7.25.3
- '@jsdoc/salty': 0.2.5
- '@types/markdown-it': 12.2.3
+ '@babel/parser': 7.26.2
+ '@jsdoc/salty': 0.2.8
+ '@types/markdown-it': 14.1.2
bluebird: 3.7.2
catharsis: 0.9.0
escape-string-regexp: 2.0.0
js2xmlparser: 4.0.2
klaw: 3.0.0
- markdown-it: 12.3.2
- markdown-it-anchor: 8.6.7_2zb4u3vubltivolgu556vv4aom
+ markdown-it: 14.1.0
+ markdown-it-anchor: 8.6.7(@types/markdown-it@14.1.2)(markdown-it@14.1.0)
marked: 4.3.0
mkdirp: 1.0.4
requizzle: 0.2.4
strip-json-comments: 3.1.1
- underscore: 1.13.6
- dev: false
-
- /jsesc/0.5.0:
- resolution: {integrity: sha512-uZz5UnB7u4T9LvwmFqXii7pZSouaRPorGs5who1Ip7VO0wxanFvBL7GkM6dTHlgX+jhBApRetaWpnDabOeTcnA==}
- hasBin: true
- dev: false
+ underscore: 1.13.7
- /jsesc/2.5.2:
- resolution: {integrity: sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA==}
- engines: {node: '>=4'}
- hasBin: true
+ jsesc@3.0.2: {}
- /json-2-csv/3.20.0:
- resolution: {integrity: sha512-IbqUB+yaycVNB/q2fiY5kyRjy5kRiEXqvNvGlxM5L0Bfi0RdvklVHc4t9MfeYF1GsZVpZWDBs9LdWmSjsQ8jvg==}
- engines: {node: '>= 12'}
+ json-2-csv@3.20.0:
dependencies:
deeks: 2.6.1
doc-path: 3.1.0
- dev: false
- /json-bigint/1.0.0:
- resolution: {integrity: sha512-SiPv/8VpZuWbvLSMtTDU8hEfrZWg/mH/nV/b4o0CYbSxu1UIQPLdwKOCIyLQX+VIPO5vrLX3i8qtqFyhdPSUSQ==}
+ json-bigint@1.0.0:
dependencies:
bignumber.js: 9.1.2
- dev: false
- /json-buffer/3.0.1:
- resolution: {integrity: sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ==}
+ json-buffer@3.0.1: {}
- /json-parse-better-errors/1.0.2:
- resolution: {integrity: sha512-mrqyZKfX5EhL7hvqcV6WG1yYjnjeuYDzDhhcAAUrq8Po85NBQBJP+ZDUT75qZQ98IkUoBqdkExkukOU7Ts2wrw==}
- dev: true
+ json-parse-better-errors@1.0.2: {}
- /json-parse-even-better-errors/2.3.1:
- resolution: {integrity: sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w==}
+ json-parse-even-better-errors@2.3.1: {}
- /json-schema-compare/0.2.2:
- resolution: {integrity: sha512-c4WYmDKyJXhs7WWvAWm3uIYnfyWFoIp+JEoX34rctVvEkMYCPGhXtvmFFXiffBbxfZsvQ0RNnV5H7GvDF5HCqQ==}
+ json-schema-compare@0.2.2:
dependencies:
lodash: 4.17.21
- dev: false
- /json-schema-merge-allof/0.8.1:
- resolution: {integrity: sha512-CTUKmIlPJbsWfzRRnOXz+0MjIqvnleIXwFTzz+t9T86HnYX/Rozria6ZVGLktAU9e+NygNljveP+yxqtQp/Q4w==}
- engines: {node: '>=12.0.0'}
+ json-schema-merge-allof@0.8.1:
dependencies:
compute-lcm: 1.1.2
json-schema-compare: 0.2.2
lodash: 4.17.21
- dev: false
- /json-schema-traverse/0.4.1:
- resolution: {integrity: sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==}
+ json-schema-traverse@0.4.1: {}
- /json-schema-traverse/1.0.0:
- resolution: {integrity: sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==}
+ json-schema-traverse@1.0.0: {}
- /json-schema/0.4.0:
- resolution: {integrity: sha512-es94M3nTIfsEPisRafak+HDLfHXnKBhV3vU5eqPcS3flIWqcxJWgXHXiey3YrpaNsanY5ei1VoYEbOzijuq9BA==}
+ json-schema@0.4.0: {}
- /json-stable-stringify-without-jsonify/1.0.1:
- resolution: {integrity: sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==}
- dev: true
+ json-stable-stringify-without-jsonify@1.0.1: {}
- /json-stable-stringify/1.0.2:
- resolution: {integrity: sha512-eunSSaEnxV12z+Z73y/j5N37/In40GK4GmsSy+tEHJMxknvqnA7/djeYtAgW0GsWHUfg+847WJjKaEylk2y09g==}
+ json-stable-stringify@1.1.1:
dependencies:
+ call-bind: 1.0.7
+ isarray: 2.0.5
jsonify: 0.0.1
- dev: true
+ object-keys: 1.1.1
- /json-stringify-safe/5.0.1:
- resolution: {integrity: sha512-ZClg6AaYvamvYEE82d3Iyd3vSSIjQ+odgjaTzRuO3s7toCdFKczob2i0zCh7JE8kWn17yvAWhUVxvqGwUalsRA==}
+ json-stringify-safe@5.0.1: {}
- /json-to-ast/2.1.0:
- resolution: {integrity: sha512-W9Lq347r8tA1DfMvAGn9QNcgYm4Wm7Yc+k8e6vezpMnRT+NHbtlxgNBXRVjXe9YM6eTn6+p/MKOlV/aABJcSnQ==}
- engines: {node: '>= 4'}
+ json-to-ast@2.1.0:
dependencies:
code-error-fragment: 0.0.230
grapheme-splitter: 1.0.4
- dev: false
- /json2yaml/1.1.0:
- resolution: {integrity: sha512-/xse+m0SlllfZahQrNOelmLrFNfeZv4QG0QKlvg7VsPSGIxpB3X+ggLkdffwmI1DdQ3o9XjZX+K+EOI1epdKgg==}
- engines: {node: '>= 0.2.0'}
- hasBin: true
+ json2yaml@1.1.0:
dependencies:
remedial: 1.0.8
- dev: false
- /json5/1.0.2:
- resolution: {integrity: sha512-g1MWMLBiz8FKi1e4w0UyVL3w+iJceWAFBAaBnnGKOpNa5f8TLktkbre1+s6oICydWAm+HRUGTmI+//xv2hvXYA==}
- hasBin: true
+ json5@1.0.2:
dependencies:
minimist: 1.2.8
- /json5/2.2.3:
- resolution: {integrity: sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==}
- engines: {node: '>=6'}
- hasBin: true
+ json5@2.2.3: {}
- /jsonc-eslint-parser/1.4.1:
- resolution: {integrity: sha512-hXBrvsR1rdjmB2kQmUjf1rEIa+TqHBGMge8pwi++C+Si1ad7EjZrJcpgwym+QGK/pqTx+K7keFAtLlVNdLRJOg==}
- engines: {node: '>=8.10.0'}
+ jsonc-eslint-parser@1.4.1:
dependencies:
acorn: 7.4.1
eslint-utils: 2.1.0
eslint-visitor-keys: 1.3.0
espree: 6.2.1
semver: 6.3.1
- dev: true
- /jsonfile/4.0.0:
- resolution: {integrity: sha512-m6F1R3z8jjlf2imQHS2Qez5sjKWQzbuuhuJ/FKYFRZvPE3PuHcSMVZzfsLhGVOkfd20obL5SWEBew5ShlquNxg==}
+ jsonfile@4.0.0:
optionalDependencies:
graceful-fs: 4.2.11
- /jsonfile/6.1.0:
- resolution: {integrity: sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==}
+ jsonfile@6.1.0:
dependencies:
- universalify: 2.0.0
+ universalify: 2.0.1
optionalDependencies:
graceful-fs: 4.2.11
- dev: true
- /jsonify/0.0.1:
- resolution: {integrity: sha512-2/Ki0GcmuqSrgFyelQq9M05y7PS0mEwuIzrf3f1fPqkVDVRvZrPZtVSMHxdgo8Aq0sxAOb/cr2aqqA3LeWHVPg==}
- dev: true
+ jsonify@0.0.1: {}
- /jsonpath/1.1.1:
- resolution: {integrity: sha512-l6Cg7jRpixfbgoWgkrl77dgEj8RPvND0wMH6TwQmi9Qs4TFfS9u5cUFnbeKTwj5ga5Y3BTGGNI28k117LJ009w==}
+ jsonpath@1.1.1:
dependencies:
esprima: 1.2.2
static-eval: 2.0.2
underscore: 1.12.1
- dev: false
- /jsonpointer/5.0.1:
- resolution: {integrity: sha512-p/nXbhSEcu3pZRdkW1OfJhpsVtW1gd4Wa1fnQc9YLiTfAjn0312eMKimbdIQzuZl9aa9xUGaRlP9T/CJE/ditQ==}
- engines: {node: '>=0.10.0'}
- dev: false
+ jsonpointer@5.0.1: {}
- /jsonwebtoken/8.5.1:
- resolution: {integrity: sha512-XjwVfRS6jTMsqYs0EsuJ4LGxXV14zQybNd4L2r0UvbVnSF9Af8x7p5MzbJ90Ioz/9TI41/hTCvznF/loiSzn8w==}
- engines: {node: '>=4', npm: '>=1.4.28'}
+ jsonwebtoken@8.5.1:
dependencies:
jws: 3.2.2
lodash.includes: 4.3.0
@@ -29750,21 +35110,15 @@ packages:
lodash.once: 4.1.1
ms: 2.1.3
semver: 5.7.2
- dev: false
- /jsonwebtoken/9.0.0:
- resolution: {integrity: sha512-tuGfYXxkQGDPnLJ7SibiQgVgeDgfbPq2k2ICcbgqW8WxWLBAxKQM/ZCu/IT8SOSwmaYl4dpTFCW5xZv7YbbWUw==}
- engines: {node: '>=12', npm: '>=6'}
+ jsonwebtoken@9.0.0:
dependencies:
jws: 3.2.2
lodash: 4.17.21
ms: 2.1.3
- semver: 7.5.4
- dev: false
+ semver: 7.6.3
- /jsonwebtoken/9.0.2:
- resolution: {integrity: sha512-PRp66vJ865SSqOlgqS8hujT5U4AOgMfhrwYIuIhfKaoSCZcirrmASQr8CX7cUg+RMih+hgznrjp99o+W4pJLHQ==}
- engines: {node: '>=12', npm: '>=6'}
+ jsonwebtoken@9.0.2:
dependencies:
jws: 3.2.2
lodash.includes: 4.3.0
@@ -29775,966 +35129,583 @@ packages:
lodash.isstring: 4.0.1
lodash.once: 4.1.1
ms: 2.1.3
- semver: 7.5.4
- dev: false
+ semver: 7.6.3
- /jsprim/1.4.2:
- resolution: {integrity: sha512-P2bSOMAc/ciLz6DzgjVlGJP9+BrJWu5UDGK70C2iweC5QBIeFf0ZXRvGjEj2uYgrY2MkAAhsSWHDWlFtEroZWw==}
- engines: {node: '>=0.6.0'}
+ jsprim@1.4.2:
dependencies:
assert-plus: 1.0.0
extsprintf: 1.3.0
json-schema: 0.4.0
verror: 1.10.0
- /jssha/3.3.1:
- resolution: {integrity: sha512-VCMZj12FCFMQYcFLPRm/0lOBbLi8uM2BhXPTqw3U4YAfs4AZfiApOoBLoN8cQE60Z50m1MYMTQVCfgF/KaCVhQ==}
- dev: false
+ jssha@3.3.1: {}
- /jsx-ast-utils/3.3.5:
- resolution: {integrity: sha512-ZZow9HBI5O6EPgSJLUb8n2NKgmVWTwCvHGwFuJlMjvLFqlGG6pjirPhtdsseaLZjSibD8eegzmYpUZwoIlj2cQ==}
- engines: {node: '>=4.0'}
+ jsx-ast-utils@3.3.5:
dependencies:
array-includes: 3.1.8
array.prototype.flat: 1.3.2
object.assign: 4.1.5
object.values: 1.2.0
- dev: true
-
- /junk/3.1.0:
- resolution: {integrity: sha512-pBxcB3LFc8QVgdggvZWyeys+hnrNWg4OcZIU/1X59k5jQdLBlCsYGRQaz234SqoRLTCgMH00fY0xRJH+F9METQ==}
- engines: {node: '>=8'}
- dev: false
- /just-camel-case/4.0.2:
- resolution: {integrity: sha512-df6QI/EIq+6uHe/wtaa9Qq7/pp4wr4pJC/r1+7XhVL6m5j03G6h9u9/rIZr8rDASX7CxwDPQnZjffCo2e6PRLw==}
- dev: true
+ junk@3.1.0: {}
- /just-camel-case/6.2.0:
- resolution: {integrity: sha512-ICenRLXwkQYLk3UyvLQZ+uKuwFVJ3JHFYFn7F2782G2Mv2hW8WPePqgdhpnjGaqkYtSVWnyCESZhGXUmY3/bEg==}
- dev: true
-
- /just-kebab-case/1.1.0:
- resolution: {integrity: sha512-QkuwuBMQ9BQHMUEkAtIA4INLrkmnnveqlFB1oFi09gbU0wBdZo6tTnyxNWMR84zHxBuwK7GLAwqN8nrvVxOLTA==}
- dev: true
+ just-camel-case@6.2.0: {}
- /just-kebab-case/4.2.0:
- resolution: {integrity: sha512-p2BdO7o4BI+pMun3J+dhaOfYan5JsZrw9wjshRjkWY9+p+u+kKSMhNWYnot2yHDR9CSahZ9iT3dcqJ+V72qHMw==}
- dev: true
+ just-kebab-case@4.2.0: {}
- /just-snake-case/3.2.0:
- resolution: {integrity: sha512-iugHP9bSE0jOq3BzN0W0rdu/OOkFirPe8FtUw6v9y37UlbUDgJ1x4xiGNfUhI6mV9dc/paaifyiyn+F+mrm8gw==}
- dev: true
+ just-snake-case@3.2.0: {}
- /jwa/1.4.1:
- resolution: {integrity: sha512-qiLX/xhEEFKUAJ6FiBMbes3w9ATzyk5W7Hvzpa/SLYdxNtng+gcurvrI7TbACjIXlsJyr05/S1oUhZrc63evQA==}
+ jwa@1.4.1:
dependencies:
buffer-equal-constant-time: 1.0.1
ecdsa-sig-formatter: 1.0.11
safe-buffer: 5.2.1
- dev: false
- /jwa/2.0.0:
- resolution: {integrity: sha512-jrZ2Qx916EA+fq9cEAeCROWPTfCwi1IVHqT2tapuqLEVVDKFDENFw1oL+MwrTvH6msKxsd1YTDVw6uKEcsrLEA==}
+ jwa@2.0.0:
dependencies:
buffer-equal-constant-time: 1.0.1
ecdsa-sig-formatter: 1.0.11
safe-buffer: 5.2.1
- dev: false
- /jwks-rsa/2.1.5:
- resolution: {integrity: sha512-IODtn1SwEm7n6GQZnQLY0oxKDrMh7n/jRH1MzE8mlxWMrh2NnMyOsXTebu8vJ1qCpmuTJcL4DdiE0E4h8jnwsA==}
- engines: {node: '>=10 < 13 || >=14'}
+ jwks-rsa@2.1.5:
dependencies:
- '@types/express': 4.17.18
+ '@types/express': 4.17.21
'@types/jsonwebtoken': 8.5.9
- debug: 4.3.6
- jose: 2.0.6
+ debug: 4.3.7(supports-color@9.4.0)
+ jose: 2.0.7
limiter: 1.1.5
- lru-memoizer: 2.2.0
+ lru-memoizer: 2.3.0
transitivePeerDependencies:
- supports-color
- dev: false
- /jws/3.2.2:
- resolution: {integrity: sha512-YHlZCB6lMTllWDtSPHz/ZXTsi8S00usEV6v1tjq8tOUZzw7DpSDWVXjXDre6ed1w/pd495ODpHZYSdkRTsa0HA==}
+ jws@3.2.2:
dependencies:
jwa: 1.4.1
safe-buffer: 5.2.1
- dev: false
- /jws/4.0.0:
- resolution: {integrity: sha512-KDncfTmOZoOMTFG4mBlG0qUIOlc03fmzH+ru6RgYVZhPkyiy/92Owlt/8UEN+a4TXR1FQetfIpJE8ApdvdVxTg==}
+ jws@4.0.0:
dependencies:
jwa: 2.0.0
safe-buffer: 5.2.1
- dev: false
- /jwt-simple/0.5.6:
- resolution: {integrity: sha512-40aUybvhH9t2h71ncA1/1SbtTNCVZHgsTsTgqPUxGWDmUDrXyDf2wMNQKEbdBjbf4AI+fQhbECNTV6lWxQKUzg==}
- engines: {node: '>= 0.4.0'}
- dev: false
+ jwt-simple@0.5.6: {}
- /katex/0.12.0:
- resolution: {integrity: sha512-y+8btoc/CK70XqcHqjxiGWBOeIL8upbS0peTPXTvgrh21n1RiWWcIpSWM+4uXq+IAgNh9YYQWdc7LVDPDAEEAg==}
- hasBin: true
+ katex@0.12.0:
dependencies:
commander: 2.20.3
- dev: false
- /keyv/4.5.3:
- resolution: {integrity: sha512-QCiSav9WaX1PgETJ+SpNnx2PRRapJ/oRSXM4VO5OGYGSjrxbKPVFVhB3l2OCbLCk329N8qyAtsJjSjvVBWzEug==}
+ keyv@4.5.4:
dependencies:
json-buffer: 3.0.1
- dev: false
- /keyv/4.5.4:
- resolution: {integrity: sha512-oxVHkHR/EJf2CNXnWxRLW6mg7JyCCUcG0DtEGmL2ctUo1PNTin1PUil+r/+4r5MpVgC/fn1kjsx7mjSujKqIpw==}
+ keyv@5.2.1:
dependencies:
- json-buffer: 3.0.1
+ '@keyv/serialize': 1.0.1
- /kind-of/6.0.3:
- resolution: {integrity: sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==}
- engines: {node: '>=0.10.0'}
+ kind-of@6.0.3: {}
- /klaviyo-api/11.0.0:
- resolution: {integrity: sha512-lzWNSZO962HECjCWKAylCwdvyClpilUBPJAW7J1Zk9H1qvbVvg/UaLow7iOORw6EzXsPa8YL8xNE4OTKGn1tjQ==}
+ klaviyo-api@11.0.0:
dependencies:
- axios: 1.6.5
+ axios: 1.7.7(debug@3.2.7)
exponential-backoff: 3.1.1
form-data: 4.0.1
transitivePeerDependencies:
- debug
- dev: false
- /klaw/3.0.0:
- resolution: {integrity: sha512-0Fo5oir+O9jnXu5EefYbVK+mHMBeEVEy2cmctR1O1NECcCkPRreJKrS6Qt/j3KC2C148Dfo9i3pCmCMsdqGr0g==}
+ klaw@3.0.0:
dependencies:
graceful-fs: 4.2.11
- dev: false
- /kleur/3.0.3:
- resolution: {integrity: sha512-eTIzlVOSUR+JxdDFepEYcBMtZ9Qqdef+rnzWdRZuMbOywu5tO2w2N7rqjoANZ5k9vywhL6Br1VRjUIgTQx4E8w==}
- engines: {node: '>=6'}
- dev: true
+ kleur@3.0.3: {}
- /kleur/4.1.5:
- resolution: {integrity: sha512-o+NO+8WrRiQEE4/7nwRJhN1HWpVmJm511pBHUxPLtp0BUISzlBplORYSmTclCnJvQq2tKu/sgl3xVpkc7ZWuQQ==}
- engines: {node: '>=6'}
- dev: true
+ known-css-properties@0.34.0: {}
- /known-css-properties/0.28.0:
- resolution: {integrity: sha512-9pSL5XB4J+ifHP0e0jmmC98OGC1nL8/JjS+fi6mnTlIf//yt/MfVLtKg7S6nCtj/8KTcWX7nRlY0XywoYY1ISQ==}
- dev: true
+ kolorist@1.8.0: {}
- /kuler/2.0.0:
- resolution: {integrity: sha512-Xq9nH7KlWZmXAtodXDDRE7vs6DU1gTU8zYDHDiWLSip45Egwq3plLHzPn27NgvzL2r1LMPC1vdqh98sQxtqj4A==}
- dev: false
+ kuler@2.0.0: {}
- /ky-universal/0.10.1_ky@0.27.0:
- resolution: {integrity: sha512-r8909k+ELKZAxhVA5c440x22hqw5XcMRwLRbgpPQk4JHy3/ddJnvzcnSo5Ww3HdKdNeS3Y8dBgcIYyVahMa46g==}
- engines: {node: '>=14'}
- peerDependencies:
- ky: '>=0.26.0'
- web-streams-polyfill: '>=3.0.1'
- peerDependenciesMeta:
- web-streams-polyfill:
- optional: true
+ ky-universal@0.10.1(ky@0.27.0)(web-streams-polyfill@3.3.3):
dependencies:
abort-controller: 3.0.0
ky: 0.27.0
node-fetch: 3.3.2
- dev: false
+ optionalDependencies:
+ web-streams-polyfill: 3.3.3
- /ky-universal/0.8.2_pkdcfzdjosae4cy3uef4ugd56u:
- resolution: {integrity: sha512-xe0JaOH9QeYxdyGLnzUOVGK4Z6FGvDVzcXFTdrYA1f33MZdEa45sUDaMBy98xQMcsd2XIBrTXRrRYnegcSdgVQ==}
- engines: {node: '>=10.17'}
- peerDependencies:
- ky: '>=0.17.0'
- web-streams-polyfill: '>=2.0.0'
- peerDependenciesMeta:
- web-streams-polyfill:
- optional: true
+ ky-universal@0.8.2(ky@0.25.1)(web-streams-polyfill@3.3.3):
dependencies:
abort-controller: 3.0.0
ky: 0.25.1
node-fetch: 3.0.0-beta.9
- web-streams-polyfill: 3.2.1
+ optionalDependencies:
+ web-streams-polyfill: 3.3.3
transitivePeerDependencies:
- domexception
- dev: false
- /ky/0.25.1:
- resolution: {integrity: sha512-PjpCEWlIU7VpiMVrTwssahkYXX1by6NCT0fhTUX34F3DTinARlgMpriuroolugFPcMgpPWrOW4mTb984Qm1RXA==}
- engines: {node: '>=10'}
- dev: false
+ ky@0.25.1: {}
- /ky/0.27.0:
- resolution: {integrity: sha512-pgaBuB6wI9DdMSOZBVh2WkcbkAdEG5AUEWuNhtThu6FLIpDbzqzC/fSMmqr/j1wwQyW3SP3KGau7EbzWNkQ/yg==}
- engines: {node: '>=12'}
- dev: false
+ ky@0.27.0: {}
- /language-subtag-registry/0.3.23:
- resolution: {integrity: sha512-0K65Lea881pHotoGEa5gDlMxt3pctLi2RplBb7Ezh4rRdLEOtgi7n4EwK9lamnUCkKBqaeKRVebTq6BAxSkpXQ==}
- dev: true
+ language-subtag-registry@0.3.23: {}
- /language-tags/1.0.9:
- resolution: {integrity: sha512-MbjN408fEndfiQXbFQ1vnd+1NoLDsnQW41410oQBXiyXDMYH5z505juWa4KUE1LqxRC7DgOgZDbKLxHIwm27hA==}
- engines: {node: '>=0.10'}
+ language-tags@1.0.9:
dependencies:
language-subtag-registry: 0.3.23
- dev: true
- /lazystream/1.0.1:
- resolution: {integrity: sha512-b94GiNHQNy6JNTrt5w6zNyffMrNkXZb3KTkCZJb2V1xaEGCk093vkZ2jk3tpaeP33/OiXC+WvK9AxUebnf5nbw==}
- engines: {node: '>= 0.6.3'}
+ lazystream@1.0.1:
dependencies:
readable-stream: 2.3.8
- dev: false
- /leac/0.6.0:
- resolution: {integrity: sha512-y+SqErxb8h7nE/fiEX07jsbuhrpO9lL8eca7/Y1nuWV2moNlXhyd59iDGcRf6moVyDMbmTNzL40SUyrFU/yDpg==}
- dev: false
+ leac@0.6.0: {}
- /leven/3.1.0:
- resolution: {integrity: sha512-qsda+H8jTaUaN/x5vzW2rzc+8Rw4TAQ/4KjB46IwK5VH+IlVeeeje/EoZRpiXvIqjFgK84QffqPztGI3VBLG1A==}
- engines: {node: '>=6'}
+ leven@3.1.0: {}
- /levn/0.3.0:
- resolution: {integrity: sha512-0OO4y2iOHix2W6ujICbKIaEQXvFQHue65vUG3pb5EUomzPI90z9hsA1VsO/dbIIpC53J8gxM9Q4Oho0jrCM/yA==}
- engines: {node: '>= 0.8.0'}
+ levn@0.3.0:
dependencies:
prelude-ls: 1.1.2
type-check: 0.3.2
- dev: false
- /levn/0.4.1:
- resolution: {integrity: sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==}
- engines: {node: '>= 0.8.0'}
+ levn@0.4.1:
dependencies:
prelude-ls: 1.2.1
type-check: 0.4.0
- dev: true
- /li/1.3.0:
- resolution: {integrity: sha512-z34TU6GlMram52Tss5mt1m//ifRIpKH5Dqm7yUVOdHI+BQCs9qGPHFaCUTIzsWX7edN30aa2WrPwR7IO10FHaw==}
- dev: false
+ li@1.3.0: {}
- /libbase64/1.2.1:
- resolution: {integrity: sha512-l+nePcPbIG1fNlqMzrh68MLkX/gTxk/+vdvAb388Ssi7UuUN31MI44w4Yf33mM3Cm4xDfw48mdf3rkdHszLNew==}
- dev: false
+ libbase64@1.2.1: {}
- /libmime/5.2.0:
- resolution: {integrity: sha512-X2U5Wx0YmK0rXFbk67ASMeqYIkZ6E5vY7pNWRKtnNzqjvdYYG8xtPDpCnuUEnPU9vlgNev+JoSrcaKSUaNvfsw==}
+ libbase64@1.3.0: {}
+
+ libmime@5.2.0:
dependencies:
encoding-japanese: 2.0.0
iconv-lite: 0.6.3
libbase64: 1.2.1
libqp: 2.0.1
- dev: false
- /libmime/5.2.1:
- resolution: {integrity: sha512-A0z9O4+5q+ZTj7QwNe/Juy1KARNb4WaviO4mYeFC4b8dBT2EEqK2pkM+GC8MVnkOjqhl5nYQxRgnPYRRTNmuSQ==}
+ libmime@5.3.5:
dependencies:
- encoding-japanese: 2.0.0
+ encoding-japanese: 2.1.0
iconv-lite: 0.6.3
- libbase64: 1.2.1
- libqp: 2.0.1
- dev: false
+ libbase64: 1.3.0
+ libqp: 2.1.0
- /libqp/2.0.1:
- resolution: {integrity: sha512-Ka0eC5LkF3IPNQHJmYBWljJsw0UvM6j+QdKRbWyCdTmYwvIDE6a7bCm0UkTAL/K+3KXK5qXT/ClcInU01OpdLg==}
- dev: false
+ libqp@2.0.1: {}
- /lilconfig/2.0.5:
- resolution: {integrity: sha512-xaYmXZtTHPAw5m+xLN8ab9C+3a8YmV3asNSPOATITbtwrfbwaLJj8h66H1WMIpALCkqsIzK3h7oQ+PdX+LQ9Eg==}
- engines: {node: '>=10'}
- dev: true
+ libqp@2.1.0: {}
- /limiter/1.1.5:
- resolution: {integrity: sha512-FWWMIEOxz3GwUI4Ts/IvgVy6LPvoMPgjMdQ185nN6psJyBJ4yOpzqm695/h5umdLJg2vW3GR5iG11MAkR2AzJA==}
- dev: false
+ lie@3.1.1:
+ dependencies:
+ immediate: 3.0.6
- /line-counter/1.1.0:
- resolution: {integrity: sha512-6bmXJG/pOX5HBb2aIJZrI9CALBgY1VMbS0GPuXfJaT13UEfee/2xxPCsOOJdXLl3KPRyBf2/D+cjiG8hU9S7LA==}
- dev: false
+ lilconfig@2.0.5: {}
- /lines-and-columns/1.2.4:
- resolution: {integrity: sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==}
- dev: true
+ limiter@1.1.5: {}
- /linkedom/0.14.26:
- resolution: {integrity: sha512-mK6TrydfFA7phrnp+1j57ycBwFI5bGSW6YXlw9acHoqF+mP/y+FooEYYyniOt5Ot57FSKB3iwmnuQ1UUyNLm5A==}
+ line-counter@1.1.0: {}
+
+ lines-and-columns@1.2.4: {}
+
+ linkedom@0.14.26:
dependencies:
css-select: 5.1.0
cssom: 0.5.0
html-escaper: 3.0.3
htmlparser2: 8.0.2
uhyphen: 0.2.0
- dev: false
-
- /linkify-it/3.0.3:
- resolution: {integrity: sha512-ynTsyrFSdE5oZ/O9GEf00kPngmOfVwazR5GKDq6EYfhlpFug3J2zybX56a2PRRpc9P+FuSoGNAwjlbDs9jJBPQ==}
- dependencies:
- uc.micro: 1.0.6
- dev: false
-
- /linkify-it/4.0.1:
- resolution: {integrity: sha512-C7bfi1UZmoj8+PQx22XyeXCuBlokoyWQL5pWSP+EI6nzRylyThouddufc2c1NDIcP9k5agmN9fLpA7VNJfIiqw==}
- dependencies:
- uc.micro: 1.0.6
- dev: false
- /linkify-it/5.0.0:
- resolution: {integrity: sha512-5aHCbzQRADcdP+ATqnDuhhJ/MRIqDkZX5pyjFHRRysS8vZ5AbqGEoFIb6pYHPZ+L/OC2Lc+xT8uHVVR5CAK/wQ==}
+ linkify-it@5.0.0:
dependencies:
- uc.micro: 2.0.0
- dev: false
+ uc.micro: 2.1.0
- /lint-staged/12.5.0:
- resolution: {integrity: sha512-BKLUjWDsKquV/JuIcoQW4MSAI3ggwEImF1+sB4zaKvyVx1wBk3FsG7UK9bpnmBTN1pm7EH2BBcMwINJzCRv12g==}
- engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0}
- hasBin: true
+ lint-staged@12.5.0(enquirer@2.4.1):
dependencies:
cli-truncate: 3.1.0
colorette: 2.0.20
commander: 9.5.0
- debug: 4.3.4_supports-color@9.4.0
+ debug: 4.3.7(supports-color@9.4.0)
execa: 5.1.1
lilconfig: 2.0.5
- listr2: 4.0.5
- micromatch: 4.0.5
+ listr2: 4.0.5(enquirer@2.4.1)
+ micromatch: 4.0.8
normalize-path: 3.0.0
- object-inspect: 1.12.3
+ object-inspect: 1.13.3
pidtree: 0.5.0
string-argv: 0.3.2
supports-color: 9.4.0
yaml: 1.10.2
transitivePeerDependencies:
- enquirer
- dev: true
- /listr2/4.0.5:
- resolution: {integrity: sha512-juGHV1doQdpNT3GSTs9IUN43QJb7KHdF9uqg7Vufs/tG9VTzpFphqF4pm/ICdAABGQxsyNn9CiYA3StkI6jpwA==}
- engines: {node: '>=12'}
- peerDependencies:
- enquirer: '>= 2.3.0 < 3'
- peerDependenciesMeta:
- enquirer:
- optional: true
+ listr2@4.0.5(enquirer@2.4.1):
dependencies:
cli-truncate: 2.1.0
colorette: 2.0.20
log-update: 4.0.0
p-map: 4.0.0
- rfdc: 1.3.0
+ rfdc: 1.4.1
rxjs: 7.8.1
through: 2.3.8
wrap-ansi: 7.0.0
- dev: true
+ optionalDependencies:
+ enquirer: 2.4.1
- /livekit-server-sdk/2.8.1:
- resolution: {integrity: sha512-l8egXU10jPuRJM2Df9Gk/KPEk6tBV0JEGG19cD5QeQtyIMgqULCCd/5yyG2FRvcWRf7pEyZZMXi63zDn7uaKHQ==}
- engines: {node: '>=19'}
+ livekit-server-sdk@2.8.1:
dependencies:
'@livekit/protocol': 1.27.1
camelcase-keys: 9.1.3
jose: 5.9.6
- dev: false
- /load-module/4.2.1:
- resolution: {integrity: sha512-Sbfg6R4LjvyThJpqUoADHMjyoI2+cL4msbCQeZ9kkY/CqP/TT2938eftKm7x4I2gd4/A+DEe6nePkbfWYbXwSw==}
- engines: {node: '>=12.17'}
+ load-module@4.2.1:
dependencies:
array-back: 6.2.2
- dev: true
- /loader-utils/1.4.2:
- resolution: {integrity: sha512-I5d00Pd/jwMD2QCduo657+YM/6L3KZu++pmX9VFncxaxvHcru9jx1lBaFft+r4Mt2jK0Yhp41XlRAihzPxHNCg==}
- engines: {node: '>=4.0.0'}
+ loader-utils@1.4.2:
dependencies:
big.js: 5.2.2
emojis-list: 3.0.0
json5: 1.0.2
- dev: false
- /locate-path/5.0.0:
- resolution: {integrity: sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==}
- engines: {node: '>=8'}
+ local-pkg@0.5.1:
+ dependencies:
+ mlly: 1.7.3
+ pkg-types: 1.2.1
+
+ localforage@1.10.0:
+ dependencies:
+ lie: 3.1.1
+
+ locate-path@5.0.0:
dependencies:
p-locate: 4.1.0
- /locate-path/6.0.0:
- resolution: {integrity: sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==}
- engines: {node: '>=10'}
+ locate-path@6.0.0:
dependencies:
p-locate: 5.0.0
- dev: true
- /locate-path/7.2.0:
- resolution: {integrity: sha512-gvVijfZvn7R+2qyPX8mAuKcFGDf6Nc61GdvGafQsHL0sBIxfKzA+usWn4GFC/bk+QdwPUD4kWFJLhElipq+0VA==}
- engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0}
+ locate-path@7.2.0:
dependencies:
p-locate: 6.0.0
- dev: true
- /lodash-core/4.17.11:
- resolution: {integrity: sha512-8ilprNE67U1REh0wQHL0z37qXdsxuFXjvxehg79Mh/MQgNJ+C1muXtysSKpt9sCxXZUSiwifEC82Vtzf2GSSKQ==}
- dev: false
+ lodash-core@4.17.11: {}
- /lodash-es/4.17.21:
- resolution: {integrity: sha512-mKnC+QJ9pWVzv+C4/U3rRsHapFfHvQFoFB92e52xeyGMcX6/OlIl78je1u8vePzYZSkkogMPJ2yjxxsb89cxyw==}
- dev: false
+ lodash-es@4.17.21: {}
- /lodash.assign/4.2.0:
- resolution: {integrity: sha512-hFuH8TY+Yji7Eja3mGiuAxBqLagejScbG8GbG0j6o9vzn0YL14My+ktnqtZgFTosKymC9/44wP6s7xyuLfnClw==}
- dev: false
+ lodash.assign@4.2.0: {}
- /lodash.camelcase/4.3.0:
- resolution: {integrity: sha512-TwuEnCnxbc3rAvhf/LbG7tJUDzhqXyFnv3dtzLOPgCG/hODL7WFnsbwktkD7yUV0RrreP/l1PALq/YSg6VvjlA==}
+ lodash.camelcase@4.3.0: {}
- /lodash.chunk/4.2.0:
- resolution: {integrity: sha512-ZzydJKfUHJwHa+hF5X66zLFCBrWn5GeF28OHEr4WVWtNDXlQ/IjWKPBiikqKo2ne0+v6JgCgJ0GzJp8k8bHC7w==}
- dev: false
+ lodash.chunk@4.2.0: {}
- /lodash.clonedeep/4.5.0:
- resolution: {integrity: sha512-H5ZhCF25riFd9uB5UCkVKo61m3S/xZk1x4wA6yp/L3RFP6Z/eHH1ymQcGLo7J3GMPfm0V/7m1tryHuGVxpqEBQ==}
- dev: false
+ lodash.clonedeep@4.5.0: {}
- /lodash.debounce/4.0.8:
- resolution: {integrity: sha512-FT1yDzDYEoYWhnSGnpE/4Kj1fLZkDFyqRb7fNt6FdYOSxlUWAtp42Eh6Wb0rGIv/m9Bgo7x4GhQbm5Ys4SG5ow==}
- dev: false
+ lodash.debounce@4.0.8: {}
- /lodash.defaults/4.2.0:
- resolution: {integrity: sha512-qjxPLHd3r5DnsdGacqOMU6pb/avJzdh9tFX2ymgoZE27BmjXrNy/y4LoaiTeAb+O3gL8AfpJGtqfX/ae2leYYQ==}
- dev: false
+ lodash.defaults@4.2.0: {}
- /lodash.difference/4.5.0:
- resolution: {integrity: sha512-dS2j+W26TQ7taQBGN8Lbbq04ssV3emRw4NY58WErlTO29pIqS0HmoT5aJ9+TUQ1N3G+JOZSji4eugsWwGp9yPA==}
- dev: false
+ lodash.difference@4.5.0: {}
- /lodash.flatmap/4.5.0:
- resolution: {integrity: sha512-/OcpcAGWlrZyoHGeHh3cAoa6nGdX6QYtmzNP84Jqol6UEQQ2gIaU3H+0eICcjcKGl0/XF8LWOujNn9lffsnaOg==}
- dev: false
+ lodash.flatmap@4.5.0: {}
- /lodash.flatten/4.4.0:
- resolution: {integrity: sha512-C5N2Z3DgnnKr0LOpv/hKCgKdb7ZZwafIrsesve6lmzvZIRZRGaZ/l6Q8+2W7NaT+ZwO3fFlSCzCzrDCFdJfZ4g==}
- dev: false
+ lodash.flatten@4.4.0: {}
- /lodash.get/4.4.2:
- resolution: {integrity: sha512-z+Uw/vLuy6gQe8cfaFWD7p0wVv8fJl3mbzXh33RS+0oW2wvUqiRXiQ69gLWSLpgB5/6sU+r6BlQR0MBILadqTQ==}
- dev: false
+ lodash.get@4.4.2: {}
- /lodash.has/4.5.2:
- resolution: {integrity: sha512-rnYUdIo6xRCJnQmbVFEwcxF144erlD+M3YcJUVesflU9paQaE8p+fJDcIQrlMYbxoANFL+AB9hZrzSBBk5PL+g==}
- dev: false
+ lodash.has@4.5.2: {}
- /lodash.includes/4.3.0:
- resolution: {integrity: sha512-W3Bx6mdkRTGtlJISOvVD/lbqjTlPPUDTMnlXZFnVwi9NKJ6tiAk6LVdlhZMm17VZisqhKcgzpO5Wz91PCt5b0w==}
- dev: false
+ lodash.includes@4.3.0: {}
- /lodash.isboolean/3.0.3:
- resolution: {integrity: sha512-Bz5mupy2SVbPHURB98VAcw+aHh4vRV5IPNhILUCsOzRmsTmSQ17jIuqopAentWoehktxGd9e/hbIXq980/1QJg==}
- dev: false
+ lodash.isboolean@3.0.3: {}
- /lodash.isempty/4.4.0:
- resolution: {integrity: sha512-oKMuF3xEeqDltrGMfDxAPGIVMSSRv8tbRSODbrs4KGsRRLEhrW8N8Rd4DRgB2+621hY8A8XwwrTVhXWpxFvMzg==}
- dev: false
+ lodash.isempty@4.4.0: {}
- /lodash.isinteger/4.0.4:
- resolution: {integrity: sha512-DBwtEWN2caHQ9/imiNeEA5ys1JoRtRfY3d7V9wkqtbycnAmTvRRmbHKDV4a0EYc678/dia0jrte4tjYwVBaZUA==}
- dev: false
+ lodash.isequal@4.5.0: {}
- /lodash.ismatch/4.4.0:
- resolution: {integrity: sha512-fPMfXjGQEV9Xsq/8MTSgUf255gawYRbjwMyDbcvDhXgV7enSZA0hynz6vMPnpAb5iONEzBHBPsT+0zes5Z301g==}
- dev: false
+ lodash.isinteger@4.0.4: {}
- /lodash.isnumber/3.0.3:
- resolution: {integrity: sha512-QYqzpfwO3/CWf3XP+Z+tkQsfaLL/EnUlXWVkIk5FUPc4sBdTehEqZONuyRt2P67PXAk+NXmTBcc97zw9t1FQrw==}
- dev: false
+ lodash.isnumber@3.0.3: {}
- /lodash.isplainobject/4.0.6:
- resolution: {integrity: sha512-oSXzaWypCMHkPC3NvBEaPHf0KsA5mvPrOPgQWDsbg8n7orZ290M0BmC/jgRZ4vcJ6DTAhjrsSYgdsW/F+MFOBA==}
- dev: false
+ lodash.isplainobject@4.0.6: {}
- /lodash.isstring/4.0.1:
- resolution: {integrity: sha512-0wJxfxH1wgO3GrbuP+dTTk7op+6L41QCXbGINEmD+ny/G/eCqGzxyCsh7159S+mgDDcoarnBw6PC1PS5+wUGgw==}
- dev: false
+ lodash.isstring@4.0.1: {}
- /lodash.map/4.6.0:
- resolution: {integrity: sha512-worNHGKLDetmcEYDvh2stPCrrQRkP20E4l0iIS7F8EvzMqBBi7ltvFN5m1HvTf1P7Jk1txKhvFcmYsCr8O2F1Q==}
- dev: false
+ lodash.map@4.6.0: {}
- /lodash.maxby/4.6.0:
- resolution: {integrity: sha512-QfTqQTwzmKxLy7VZlbx2M/ipWv8DCQ2F5BI/MRxLharOQ5V78yMSuB+JE+EuUM22txYfj09R2Q7hUlEYj7KdNg==}
- dev: false
+ lodash.maxby@4.6.0: {}
- /lodash.memoize/4.1.2:
- resolution: {integrity: sha512-t7j+NzmgnQzTAYXcsHYLgimltOV1MXHtlOWf6GjL9Kj8GK5FInw5JotxvbOs+IvV1/Dzo04/fCGfLVs7aXb4Ag==}
- dev: true
+ lodash.memoize@4.1.2: {}
- /lodash.merge/4.6.2:
- resolution: {integrity: sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==}
- dev: true
+ lodash.merge@4.6.2: {}
- /lodash.once/4.1.1:
- resolution: {integrity: sha512-Sb487aTOCr9drQVL8pIxOzVhafOjZN9UU54hiN8PU3uAiSV7lx1yYNpbNmex2PK6dSJoNTSJUUswT651yww3Mg==}
- dev: false
+ lodash.once@4.1.1: {}
- /lodash.pick/4.4.0:
- resolution: {integrity: sha512-hXt6Ul/5yWjfklSGvLQl8vM//l3FtyHZeuelpzK6mm99pNvN9yTDruNZPEJZD1oWrqo+izBmB7oUfWgcCX7s4Q==}
- dev: false
+ lodash.pick@4.4.0: {}
- /lodash.pickby/4.6.0:
- resolution: {integrity: sha512-AZV+GsS/6ckvPOVQPXSiFFacKvKB4kOQu6ynt9wz0F3LO4R9Ij4K1ddYsIytDpSgLz88JHd9P+oaLeej5/Sl7Q==}
- dev: false
+ lodash.pickby@4.6.0: {}
- /lodash.snakecase/4.1.1:
- resolution: {integrity: sha512-QZ1d4xoBHYUeuouhEq3lk3Uq7ldgyFXGBhg04+oRLnIz8o9T65Eh+8YdroUwn846zchkA9yDsDl5CVVaV2nqYw==}
- dev: false
+ lodash.snakecase@4.1.1: {}
- /lodash.sortby/4.7.0:
- resolution: {integrity: sha512-HDWXG8isMntAyRF5vZ7xKuEvOhT4AhlRt/3czTSjvGUxjYCBVRQY48ViDHyfYz9VIoBkW4TMGQNapx+l3RUwdA==}
- dev: false
+ lodash.sortby@4.7.0: {}
- /lodash.topath/4.5.2:
- resolution: {integrity: sha512-1/W4dM+35DwvE/iEd1M9ekewOSTlpFekhw9mhAtrwjVqUr83/ilQiyAvmg4tVX7Unkcfl1KC+i9WdaT4B6aQcg==}
- dev: false
+ lodash.topath@4.5.2: {}
- /lodash.transform/4.6.0:
- resolution: {integrity: sha512-LO37ZnhmBVx0GvOU/caQuipEh4GN82TcWv3yHlebGDgOxbxiwwzW5Pcx2AcvpIv2WmvmSMoC492yQFNhy/l/UQ==}
- dev: false
+ lodash.transform@4.6.0: {}
- /lodash.truncate/4.4.2:
- resolution: {integrity: sha512-jttmRe7bRse52OsWIMDLaXxWqRAmtIUccAQ3garviCqJjafXOfNMO0yMfNpdD6zbGaTU0P5Nz7e7gAT6cKmJRw==}
- dev: true
+ lodash.truncate@4.4.2: {}
- /lodash.union/4.6.0:
- resolution: {integrity: sha512-c4pB2CdGrGdjMKYLA+XiRDO7Y0PRQbm/Gzg8qMj+QH+pFVAoTp5sBpO0odL3FjoPCGjK96p6qsP+yQoiLoOBcw==}
- dev: false
+ lodash.union@4.6.0: {}
- /lodash.uniq/4.5.0:
- resolution: {integrity: sha512-xfBaXQd9ryd9dlSDvnvI0lvxfLJlYAZzXomUYzLKtUeOQvOP5piqAWuGtrhWeqaXK9hhoM/iyJc5AV+XfsX3HQ==}
- dev: false
+ lodash.uniq@4.5.0: {}
- /lodash.uniqby/4.7.0:
- resolution: {integrity: sha512-e/zcLx6CSbmaEgFHCA7BnoQKyCtKMxnuWrJygbwPs/AIn+IMKl66L8/s+wBUn5LRw2pZx3bUHibiV1b6aTWIww==}
- dev: false
+ lodash.uniqby@4.7.0: {}
- /lodash/4.17.21:
- resolution: {integrity: sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==}
- dev: false
+ lodash@4.17.21: {}
- /log-symbols/4.1.0:
- resolution: {integrity: sha512-8XPvpAA8uyhfteu8pIvQxpJZ7SYYdpUivZpGy6sFsBuKRY/7rQGavedeB8aK+Zkyq6upMFVL/9AW6vOYzfRyLg==}
- engines: {node: '>=10'}
+ log-symbols@4.1.0:
dependencies:
chalk: 4.1.2
is-unicode-supported: 0.1.0
- dev: false
- /log-update/4.0.0:
- resolution: {integrity: sha512-9fkkDevMefjg0mmzWFBW8YkFP91OrizzkW3diF7CpG+S2EYdy4+TVfGwz1zeF8x7hCx1ovSPTOE9Ngib74qqUg==}
- engines: {node: '>=10'}
+ log-update@4.0.0:
dependencies:
ansi-escapes: 4.3.2
cli-cursor: 3.1.0
slice-ansi: 4.0.0
wrap-ansi: 6.2.0
- dev: true
- /log4js/6.4.4:
- resolution: {integrity: sha512-ncaWPsuw9Vl1CKA406hVnJLGQKy1OHx6buk8J4rE2lVW+NW5Y82G5/DIloO7NkqLOUtNPEANaWC1kZYVjXssPw==}
- engines: {node: '>=8.0'}
+ log4js@6.4.4:
dependencies:
date-format: 4.0.14
- debug: 4.3.4
- flatted: 3.2.9
- rfdc: 1.3.0
+ debug: 4.3.7(supports-color@9.4.0)
+ flatted: 3.3.2
+ rfdc: 1.4.1
streamroller: 3.1.5
transitivePeerDependencies:
- supports-color
- dev: false
- /logform/2.5.1:
- resolution: {integrity: sha512-9FyqAm9o9NKKfiAKfZoYo9bGXXuwMkxQiQttkT4YjjVtQVIQtK6LmVtlxmCaFswo6N4AfEkHqZTV0taDtPotNg==}
+ logform@2.7.0:
dependencies:
- '@colors/colors': 1.5.0
- '@types/triple-beam': 1.3.3
+ '@colors/colors': 1.6.0
+ '@types/triple-beam': 1.3.5
fecha: 4.2.3
ms: 2.1.3
- safe-stable-stringify: 2.4.3
+ safe-stable-stringify: 2.5.0
triple-beam: 1.4.1
- dev: false
- /long/4.0.0:
- resolution: {integrity: sha512-XsP+KhQif4bjX1kbuSiySJFNAehNxgLb6hPRGJ9QsUr8ajHkuXGdrHmFUTUUXhDwVX2R5bY4JNZEwbUiMhV+MA==}
- dev: false
+ long@4.0.0: {}
- /long/5.2.3:
- resolution: {integrity: sha512-lcHwpNoggQTObv5apGNCTdJrO69eHOZMi4BNC+rTLER8iHAqGrUVeLh/irVIM7zTw2bOXA8T6uNPeujwOLg/2Q==}
- dev: false
+ long@5.2.3: {}
- /longest-streak/2.0.4:
- resolution: {integrity: sha512-vM6rUVCVUJJt33bnmHiZEvr7wPT78ztX7rojL+LW51bHtLh6HTjx84LA5W4+oa6aKEJA7jJu5LR6vQRBpA5DVg==}
- dev: false
+ longest-streak@2.0.4: {}
- /longest-streak/3.1.0:
- resolution: {integrity: sha512-9Ri+o0JYgehTaVBBDoMqIl8GXtbWg711O3srftcHhZ0dqnETqLaoIK0x17fUw9rFSlK/0NlsKe0Ahhyl5pXE2g==}
- dev: true
+ longest-streak@3.1.0: {}
- /loose-envify/1.4.0:
- resolution: {integrity: sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==}
- hasBin: true
+ loose-envify@1.4.0:
dependencies:
js-tokens: 4.0.0
- /lowercase-keys/1.0.1:
- resolution: {integrity: sha512-G2Lj61tXDnVFFOi8VZds+SoQjtQC3dgokKdDG2mTm1tx4m50NUHBOZSBwQQHyy0V12A0JTG4icfZQH+xPyh8VA==}
- engines: {node: '>=0.10.0'}
- dev: false
-
- /lowercase-keys/2.0.0:
- resolution: {integrity: sha512-tqNXrS78oMOE73NMxK4EMLQsQowWf8jKooH9g7xPavRT706R6bkQJ6DY2Te7QukaZsulxa30wQ7bk0pm4XiHmA==}
- engines: {node: '>=8'}
- dev: false
-
- /lowercase-keys/3.0.0:
- resolution: {integrity: sha512-ozCC6gdQ+glXOQsveKD0YsDy8DSQFjDTz4zyzEHNV5+JP5D62LmfDZ6o1cycFx9ouG940M5dE8C8CTewdj2YWQ==}
- engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0}
- dev: false
+ lowercase-keys@1.0.1: {}
- /lru-cache/10.4.3:
- resolution: {integrity: sha512-JNAzZcXrCt42VGLuYz0zfAzDfAvJWW6AfYlDBQyDV5DClI2m5sAmK+OIO7s59XfsRsWHp02jAJrRadPRGTt6SQ==}
- dev: true
+ lowercase-keys@2.0.0: {}
- /lru-cache/2.5.0:
- resolution: {integrity: sha512-dVmQmXPBlTgFw77hm60ud//l2bCuDKkqC2on1EBoM7s9Urm9IQDrnujwZ93NFnAq0dVZ0HBXTS7PwEG+YE7+EQ==}
- dev: false
+ lowercase-keys@3.0.0: {}
- /lru-cache/4.0.2:
- resolution: {integrity: sha512-uQw9OqphAGiZhkuPlpFGmdTU2tEuhxTourM/19qGJrxBPHAr/f8BT1a0i/lOclESnGatdJG/UCkP9kZB/Lh1iw==}
- dependencies:
- pseudomap: 1.0.2
- yallist: 2.1.2
- dev: false
+ lru-cache@2.5.0: {}
- /lru-cache/5.1.1:
- resolution: {integrity: sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==}
+ lru-cache@5.1.1:
dependencies:
yallist: 3.1.1
- /lru-cache/6.0.0:
- resolution: {integrity: sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==}
- engines: {node: '>=10'}
+ lru-cache@6.0.0:
dependencies:
yallist: 4.0.0
- /lru-cache/7.18.3:
- resolution: {integrity: sha512-jumlc0BIUrS3qJGgIkWZsyfAM7NCWiBcCDhnd+3NNM5KbBmLTgHVfWBcg6W+rLUsIpzpERPsvwUP7CckAQSOoA==}
- engines: {node: '>=12'}
- dev: false
-
- /lru-cache/8.0.5:
- resolution: {integrity: sha512-MhWWlVnuab1RG5/zMRRcVGXZLCXrZTgfwMikgzCegsPnG62yDQo5JnqKkrK4jO5iKqDAZGItAqN5CtKBCBWRUA==}
- engines: {node: '>=16.14'}
- dev: false
+ lru-cache@7.18.3: {}
- /lru-memoizer/2.2.0:
- resolution: {integrity: sha512-QfOZ6jNkxCcM/BkIPnFsqDhtrazLRsghi9mBwFAzol5GCvj4EkFT899Za3+QwikCg5sRX8JstioBDwOxEyzaNw==}
+ lru-memoizer@2.3.0:
dependencies:
lodash.clonedeep: 4.5.0
- lru-cache: 4.0.2
- dev: false
+ lru-cache: 6.0.0
- /lru-queue/0.1.0:
- resolution: {integrity: sha512-BpdYkt9EvGl8OfWHDQPISVpcl5xZthb+XPsbELj5AQXxIC8IriDZIQYjBJPEm5rS420sjZ0TLEzRcq5KdBhYrQ==}
+ lru-queue@0.1.0:
dependencies:
- es5-ext: 0.10.62
- dev: false
+ es5-ext: 0.10.64
- /lru_map/0.3.3:
- resolution: {integrity: sha512-Pn9cox5CsMYngeDbmChANltQl+5pi6XmTrraMSzhPmMBbmgcxmqWry0U3PGapCU1yB4/LqCcom7qhHZiF/jGfQ==}
- dev: false
+ lru.min@1.1.1: {}
- /luxon/3.4.3:
- resolution: {integrity: sha512-tFWBiv3h7z+T/tDaoxA8rqTxy1CHV6gHS//QdaH4pulbq/JuBSGgQspQQqcgnwdAx6pNI7cmvz5Sv/addzHmUg==}
- engines: {node: '>=12'}
- dev: false
+ luxon@3.5.0: {}
- /mailersend/2.2.0:
- resolution: {integrity: sha512-U5d2RseMDm7oQIXqvMo1Xfvimh2k4O+nC27TA2tR4cwMDoAiZ9e0JpnbQ8mbT7gJoNdUittLs3n/kfRapu5tZg==}
+ magic-string@0.30.13:
+ dependencies:
+ '@jridgewell/sourcemap-codec': 1.5.0
+
+ mailersend@2.3.0:
dependencies:
gaxios: 5.1.3
isomorphic-unfetch: 3.1.0
- qs: 6.12.0
+ qs: 6.13.1
transitivePeerDependencies:
- encoding
- supports-color
- dev: false
- /mailgun.js/3.7.3:
- resolution: {integrity: sha512-DHP9v6dNPRM2puOx4HVJVjQKWzgzpQ5Fh1ICW632qaDVgd/QqGRhOjCoHe12JJqrFkhgDvXBhENYeZDHYdkJHQ==}
+ mailgun.js@3.7.3:
dependencies:
base-64: 1.0.0
bluebird: 3.7.2
ky: 0.25.1
- ky-universal: 0.8.2_pkdcfzdjosae4cy3uef4ugd56u
- url: 0.11.3
+ ky-universal: 0.8.2(ky@0.25.1)(web-streams-polyfill@3.3.3)
+ url: 0.11.4
url-join: 0.0.1
- web-streams-polyfill: 3.2.1
- webpack-merge: 5.9.0
+ web-streams-polyfill: 3.3.3
+ webpack-merge: 5.10.0
transitivePeerDependencies:
- domexception
- dev: false
- /mailparser-mit/1.0.0:
- resolution: {integrity: sha512-sckRITNb3VCT1sQ275g47MAN786pQ5lU20bLY5f794dF/ARGzuVATQ64gO13FOw8jayjFT10e5ttsripKGGXcw==}
+ mailparser-mit@1.0.0:
dependencies:
addressparser: 1.0.1
iconv-lite: 0.4.24
mime: 1.6.0
uue: 3.1.2
- dev: false
-
- /mailparser/3.6.5:
- resolution: {integrity: sha512-nteTpF0Khm5JLOnt4sigmzNdUH/6mO7PZ4KEnvxf4mckyXYFFhrtAWZzbq/V5aQMH+049gA7ZjfLdh+QiX2Uqg==}
- dependencies:
- encoding-japanese: 2.0.0
- he: 1.2.0
- html-to-text: 9.0.5
- iconv-lite: 0.6.3
- libmime: 5.2.1
- linkify-it: 4.0.1
- mailsplit: 5.4.0
- nodemailer: 6.9.3
- tlds: 1.240.0
- dev: false
- /mailparser/3.6.6:
- resolution: {integrity: sha512-noCjBl3FToxmqTP2fp7z17hQsiCroWNntfTd8O+UejOAF59xeN5WGZK27ilexXV2e2X/cbUhG3L8sfEKaz0/sw==}
+ mailparser@3.7.1:
dependencies:
- encoding-japanese: 2.0.0
+ encoding-japanese: 2.1.0
he: 1.2.0
html-to-text: 9.0.5
iconv-lite: 0.6.3
- libmime: 5.2.1
+ libmime: 5.3.5
linkify-it: 5.0.0
mailsplit: 5.4.0
- nodemailer: 6.9.8
- tlds: 1.248.0
- dev: false
+ nodemailer: 6.9.13
+ punycode.js: 2.3.1
+ tlds: 1.252.0
- /mailsplit/5.4.0:
- resolution: {integrity: sha512-wnYxX5D5qymGIPYLwnp6h8n1+6P6vz/MJn5AzGjZ8pwICWssL+CCQjWBIToOVHASmATot4ktvlLo6CyLfOXWYA==}
+ mailsplit@5.4.0:
dependencies:
libbase64: 1.2.1
libmime: 5.2.0
libqp: 2.0.1
- dev: false
- /make-dir/2.1.0:
- resolution: {integrity: sha512-LS9X+dc8KLxXCb8dni79fLIIUA5VyZoyjSMCwTluaXA0o27cCK0bhXkpgw+sTXVpPy/lSO57ilRixqk0vDmtRA==}
- engines: {node: '>=6'}
+ make-dir@2.1.0:
dependencies:
pify: 4.0.1
semver: 5.7.2
- dev: false
- /make-dir/3.1.0:
- resolution: {integrity: sha512-g3FeP20LNwhALb/6Cz6Dd4F2ngze0jz7tbzrD2wAV+o9FeNHe4rL+yK2md0J/fiSf1sa1ADhXqi5+oVwOM/eGw==}
- engines: {node: '>=8'}
+ make-dir@3.1.0:
dependencies:
semver: 6.3.1
- dev: false
- /make-dir/4.0.0:
- resolution: {integrity: sha512-hXdUTZYIVOt1Ex//jAQi+wTZZpUpwBj/0QsOzqegb3rGMMeJiSEu5xLHnYfBrRV4RH2+OCSOO95Is/7x1WJ4bw==}
- engines: {node: '>=10'}
+ make-dir@4.0.0:
dependencies:
semver: 7.6.3
- dev: true
- /make-error/1.3.6:
- resolution: {integrity: sha512-s8UhlNe7vPKomQhC1qFelMokr/Sc3AgNbso3n74mVPA5LTZwkB9NlXf4XPamLxJE8h0gh73rM94xvwRT2CVInw==}
- dev: true
+ make-error@1.3.6: {}
- /makeerror/1.0.12:
- resolution: {integrity: sha512-JmqCvUhmt43madlpFzG4BQzG2Z3m6tvQDNKdClZnO3VbIudJYmxsT0FNJMeiB2+JTSlTQTSbU8QdesVmwJcmLg==}
+ makeerror@1.0.12:
dependencies:
tmpl: 1.0.5
- dev: true
-
- /map-obj/1.0.1:
- resolution: {integrity: sha512-7N/q3lyZ+LVCp7PzuxrJr4KMbBE2hW7BT7YNia330OFxIf4d3r5zVpicP2650l7CPN6RM9zOJRl3NGpqSiw3Eg==}
- engines: {node: '>=0.10.0'}
- dev: true
- /map-obj/4.3.0:
- resolution: {integrity: sha512-hdN1wVrZbb29eBGiGjJbeP8JbKjq1urkHJ/LIP/NY48MZ1QVXUsQBV1G1zvYFHn1XE06cwjBsOI2K3Ulnj1YXQ==}
- engines: {node: '>=8'}
- dev: true
-
- /map-obj/5.0.0:
- resolution: {integrity: sha512-2L3MIgJynYrZ3TYMriLDLWocz15okFakV6J12HXvMXDHui2x/zgChzg1u9mFFGbbGWE+GsLpQByt4POb9Or+uA==}
- engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0}
- dev: false
+ map-obj@5.0.0: {}
- /map-stream/0.1.0:
- resolution: {integrity: sha512-CkYQrPYZfWnu/DAmVCpTSX/xHpKZ80eKh2lAkyA6AJTef6bW+6JpbQZN5rofum7da+SyN1bi5ctTm+lTfcCW3g==}
- dev: true
+ map-stream@0.1.0: {}
- /markdown-it-anchor/8.6.7_2zb4u3vubltivolgu556vv4aom:
- resolution: {integrity: sha512-FlCHFwNnutLgVTflOYHPW2pPcl2AACqVzExlkGQNsi4CJgqOHN7YTgDd4LuhgN1BFO3TS0vLAruV1Td6dwWPJA==}
- peerDependencies:
- '@types/markdown-it': '*'
- markdown-it: '*'
+ markdown-it-anchor@8.6.7(@types/markdown-it@14.1.2)(markdown-it@14.1.0):
dependencies:
- '@types/markdown-it': 12.2.3
- markdown-it: 12.3.2
- dev: false
+ '@types/markdown-it': 14.1.2
+ markdown-it: 14.1.0
- /markdown-it/12.3.2:
- resolution: {integrity: sha512-TchMembfxfNVpHkbtriWltGWc+m3xszaRD0CZup7GFFhzIgQqxIfn3eGj1yZpfuflzPvfkt611B2Q/Bsk1YnGg==}
- hasBin: true
+ markdown-it@14.1.0:
dependencies:
argparse: 2.0.1
- entities: 2.1.0
- linkify-it: 3.0.3
- mdurl: 1.0.1
- uc.micro: 1.0.6
- dev: false
+ entities: 4.5.0
+ linkify-it: 5.0.0
+ mdurl: 2.0.0
+ punycode.js: 2.3.1
+ uc.micro: 2.1.0
- /markdown-table/2.0.0:
- resolution: {integrity: sha512-Ezda85ToJUBhM6WGaG6veasyym+Tbs3cMAw/ZhOPqXiYsr0jgocBV3j3nx+4lk47plLlIqjwuTm/ywVI+zjJ/A==}
+ markdown-table@2.0.0:
dependencies:
repeat-string: 1.6.1
- dev: false
- /marked/4.3.0:
- resolution: {integrity: sha512-PRsaiG84bK+AMvxziE/lCFss8juXjNaWzVbN5tXAm4XjeaS9NAHhop+PjQxz2A9h8Q4M/xGmzP8vqNwy6JeK0A==}
- engines: {node: '>= 12'}
- hasBin: true
- dev: false
+ marked@4.3.0: {}
- /mathml-tag-names/2.1.3:
- resolution: {integrity: sha512-APMBEanjybaPzUrfqU0IMU5I0AswKMH7k8OTLs0vvV4KZpExkTkY87nR/zpbuTPj+gARop7aGUbl11pnDfW6xg==}
- dev: true
+ mathml-tag-names@2.1.3: {}
- /md5.js/1.3.5:
- resolution: {integrity: sha512-xitP+WxNPcTTOgnTJcrhM0xvdPepipPSf3I8EIpGKeFLjt3PlJLIDG3u8EX53ZIubkb+5U2+3rELYpEhHhzdkg==}
+ md5.js@1.3.5:
dependencies:
hash-base: 3.1.0
inherits: 2.0.4
safe-buffer: 5.2.1
- dev: false
- /md5/2.3.0:
- resolution: {integrity: sha512-T1GITYmFaKuO91vxyoQMFETst+O71VUPEU3ze5GNzDm0OWdP8v1ziTaAEPUr/3kLsY3Sftgz242A1SetQiDL7g==}
+ md5@2.3.0:
dependencies:
charenc: 0.0.2
crypt: 0.0.2
is-buffer: 1.1.6
- dev: false
- /mdast-comment-marker/2.1.2:
- resolution: {integrity: sha512-HED3ezseRVkBzZ0uK4q6RJMdufr/2p3VfVZstE3H1N9K8bwtspztWo6Xd7rEatuGNoCXaBna8oEqMwUn0Ve1bw==}
+ mdast-comment-marker@3.0.0:
dependencies:
- '@types/mdast': 3.0.13
- mdast-util-mdx-expression: 1.3.2
+ '@types/mdast': 4.0.4
+ mdast-util-mdx-expression: 2.0.1
transitivePeerDependencies:
- supports-color
- dev: true
- /mdast-util-find-and-replace/1.1.1:
- resolution: {integrity: sha512-9cKl33Y21lyckGzpSmEQnIDjEfeeWelN5s1kUW1LwdB0Fkuq2u+4GdqcGEygYxJE8GVqCl0741bYXHgamfWAZA==}
+ mdast-util-find-and-replace@1.1.1:
dependencies:
escape-string-regexp: 4.0.0
unist-util-is: 4.1.0
unist-util-visit-parents: 3.1.1
- dev: false
- /mdast-util-from-markdown/0.8.5:
- resolution: {integrity: sha512-2hkTXtYYnr+NubD/g6KGBS/0mFmBcifAsI0yIWRiRo0PjVs6SSOSOdtzbp6kSGnShDN6G5aWZpKQ2lWRy27mWQ==}
+ mdast-util-from-markdown@0.8.5:
dependencies:
- '@types/mdast': 3.0.13
+ '@types/mdast': 3.0.15
mdast-util-to-string: 2.0.0
micromark: 2.11.4
parse-entities: 2.0.0
unist-util-stringify-position: 2.0.3
transitivePeerDependencies:
- supports-color
- dev: false
-
- /mdast-util-from-markdown/1.3.1:
- resolution: {integrity: sha512-4xTO/M8c82qBcnQc1tgpNtubGUW/Y1tBQ1B0i5CtSoelOLKFYlElIr3bvgREYYO5iRqbMY1YuqZng0GVOI8Qww==}
- dependencies:
- '@types/mdast': 3.0.15
- '@types/unist': 2.0.10
- decode-named-character-reference: 1.0.2
- mdast-util-to-string: 3.2.0
- micromark: 3.2.0
- micromark-util-decode-numeric-character-reference: 1.1.0
- micromark-util-decode-string: 1.1.0
- micromark-util-normalize-identifier: 1.1.0
- micromark-util-symbol: 1.1.0
- micromark-util-types: 1.1.0
- unist-util-stringify-position: 3.0.3
- uvu: 0.5.6
- transitivePeerDependencies:
- - supports-color
- dev: true
- /mdast-util-from-markdown/2.0.1:
- resolution: {integrity: sha512-aJEUyzZ6TzlsX2s5B4Of7lN7EQtAxvtradMMglCQDyaTFgse6CmtmdJ15ElnVRlCg1vpNyVtbem0PWzlNieZsA==}
+ mdast-util-from-markdown@2.0.2:
dependencies:
'@types/mdast': 4.0.4
- '@types/unist': 3.0.2
+ '@types/unist': 3.0.3
decode-named-character-reference: 1.0.2
devlop: 1.1.0
mdast-util-to-string: 4.0.0
- micromark: 4.0.0
- micromark-util-decode-numeric-character-reference: 2.0.1
- micromark-util-decode-string: 2.0.0
- micromark-util-normalize-identifier: 2.0.0
- micromark-util-symbol: 2.0.0
- micromark-util-types: 2.0.0
+ micromark: 4.0.1
+ micromark-util-decode-numeric-character-reference: 2.0.2
+ micromark-util-decode-string: 2.0.1
+ micromark-util-normalize-identifier: 2.0.1
+ micromark-util-symbol: 2.0.1
+ micromark-util-types: 2.0.1
unist-util-stringify-position: 4.0.0
transitivePeerDependencies:
- supports-color
- dev: true
- /mdast-util-gfm-autolink-literal/0.1.3:
- resolution: {integrity: sha512-GjmLjWrXg1wqMIO9+ZsRik/s7PLwTaeCHVB7vRxUwLntZc8mzmTsLVr6HW1yLokcnhfURsn5zmSVdi3/xWWu1A==}
+ mdast-util-gfm-autolink-literal@0.1.3:
dependencies:
ccount: 1.1.0
mdast-util-find-and-replace: 1.1.1
micromark: 2.11.4
transitivePeerDependencies:
- supports-color
- dev: false
- /mdast-util-gfm-strikethrough/0.2.3:
- resolution: {integrity: sha512-5OQLXpt6qdbttcDG/UxYY7Yjj3e8P7X16LzvpX8pIQPYJ/C2Z1qFGMmcw+1PZMUM3Z8wt8NRfYTvCni93mgsgA==}
+ mdast-util-gfm-strikethrough@0.2.3:
dependencies:
mdast-util-to-markdown: 0.6.5
- dev: false
- /mdast-util-gfm-table/0.1.6:
- resolution: {integrity: sha512-j4yDxQ66AJSBwGkbpFEp9uG/LS1tZV3P33fN1gkyRB2LoRL+RR3f76m0HPHaby6F4Z5xr9Fv1URmATlRRUIpRQ==}
+ mdast-util-gfm-table@0.1.6:
dependencies:
markdown-table: 2.0.0
mdast-util-to-markdown: 0.6.5
- dev: false
- /mdast-util-gfm-task-list-item/0.1.6:
- resolution: {integrity: sha512-/d51FFIfPsSmCIRNp7E6pozM9z1GYPIkSy1urQ8s/o4TC22BZ7DqfHFWiqBD23bc7J3vV1Fc9O4QIHBlfuit8A==}
+ mdast-util-gfm-task-list-item@0.1.6:
dependencies:
mdast-util-to-markdown: 0.6.5
- dev: false
- /mdast-util-gfm/0.1.2:
- resolution: {integrity: sha512-NNkhDx/qYcuOWB7xHUGWZYVXvjPFFd6afg6/e2g+SV4r9q5XUcCbV4Wfa3DLYIiD+xAEZc6K4MGaE/m0KDcPwQ==}
+ mdast-util-gfm@0.1.2:
dependencies:
mdast-util-gfm-autolink-literal: 0.1.3
mdast-util-gfm-strikethrough: 0.2.3
@@ -30743,259 +35714,184 @@ packages:
mdast-util-to-markdown: 0.6.5
transitivePeerDependencies:
- supports-color
- dev: false
- /mdast-util-heading-style/2.0.1:
- resolution: {integrity: sha512-0L5rthU4xKDVbw+UQ7D8Y8xOEsX4JXZvemWoEAsL+WAaeSH+TvVVwFnTb3G/OrjyP4VYQULoNWU+PdZfkmNu4A==}
+ mdast-util-heading-style@3.0.0:
dependencies:
- '@types/mdast': 3.0.13
- dev: true
+ '@types/mdast': 4.0.4
- /mdast-util-math/0.1.2:
- resolution: {integrity: sha512-fogAitds+wH+QRas78Yr1TwmQGN4cW/G2WRw5ePuNoJbBSPJCxIOCE8MTzHgWHVSpgkRaPQTgfzXRE1CrwWSlg==}
+ mdast-util-math@0.1.2:
dependencies:
longest-streak: 2.0.4
mdast-util-to-markdown: 0.6.5
repeat-string: 1.6.1
- dev: false
- /mdast-util-mdx-expression/1.3.2:
- resolution: {integrity: sha512-xIPmR5ReJDu/DHH1OoIT1HkuybIfRGYRywC+gJtI7qHjCJp/M9jrmBEJW22O8lskDWm562BX2W8TiAwRTb0rKA==}
+ mdast-util-mdx-expression@2.0.1:
dependencies:
'@types/estree-jsx': 1.0.5
- '@types/hast': 2.3.10
- '@types/mdast': 3.0.15
- mdast-util-from-markdown: 1.3.1
- mdast-util-to-markdown: 1.5.0
+ '@types/hast': 3.0.4
+ '@types/mdast': 4.0.4
+ devlop: 1.1.0
+ mdast-util-from-markdown: 2.0.2
+ mdast-util-to-markdown: 2.1.2
transitivePeerDependencies:
- supports-color
- dev: true
- /mdast-util-phrasing/3.0.1:
- resolution: {integrity: sha512-WmI1gTXUBJo4/ZmSk79Wcb2HcjPJBzM1nlI/OUWA8yk2X9ik3ffNbBGsU+09BFmXaL1IBb9fiuvq6/KMiNycSg==}
+ mdast-util-mdx-jsx@3.1.3:
dependencies:
- '@types/mdast': 3.0.15
- unist-util-is: 5.2.1
- dev: true
+ '@types/estree-jsx': 1.0.5
+ '@types/hast': 3.0.4
+ '@types/mdast': 4.0.4
+ '@types/unist': 3.0.3
+ ccount: 2.0.1
+ devlop: 1.1.0
+ mdast-util-from-markdown: 2.0.2
+ mdast-util-to-markdown: 2.1.2
+ parse-entities: 4.0.1
+ stringify-entities: 4.0.4
+ unist-util-stringify-position: 4.0.0
+ vfile-message: 4.0.2
+ transitivePeerDependencies:
+ - supports-color
- /mdast-util-phrasing/4.1.0:
- resolution: {integrity: sha512-TqICwyvJJpBwvGAMZjj4J2n0X8QWp21b9l0o7eXyVJ25YNWYbJDVIyD1bZXE6WtV6RmKJVYmQAKWa0zWOABz2w==}
+ mdast-util-mdxjs-esm@2.0.1:
+ dependencies:
+ '@types/estree-jsx': 1.0.5
+ '@types/hast': 3.0.4
+ '@types/mdast': 4.0.4
+ devlop: 1.1.0
+ mdast-util-from-markdown: 2.0.2
+ mdast-util-to-markdown: 2.1.2
+ transitivePeerDependencies:
+ - supports-color
+
+ mdast-util-phrasing@4.1.0:
dependencies:
'@types/mdast': 4.0.4
unist-util-is: 6.0.0
- dev: true
- /mdast-util-to-markdown/0.6.5:
- resolution: {integrity: sha512-XeV9sDE7ZlOQvs45C9UKMtfTcctcaj/pGwH8YLbMHoMOXNNCn2LsqVQOqrF1+/NU8lKDAqozme9SCXWyo9oAcQ==}
+ mdast-util-to-hast@13.2.0:
dependencies:
- '@types/unist': 2.0.8
+ '@types/hast': 3.0.4
+ '@types/mdast': 4.0.4
+ '@ungap/structured-clone': 1.2.0
+ devlop: 1.1.0
+ micromark-util-sanitize-uri: 2.0.1
+ trim-lines: 3.0.1
+ unist-util-position: 5.0.0
+ unist-util-visit: 5.0.0
+ vfile: 6.0.3
+
+ mdast-util-to-markdown@0.6.5:
+ dependencies:
+ '@types/unist': 2.0.11
longest-streak: 2.0.4
mdast-util-to-string: 2.0.0
parse-entities: 2.0.0
repeat-string: 1.6.1
zwitch: 1.0.5
- dev: false
-
- /mdast-util-to-markdown/1.5.0:
- resolution: {integrity: sha512-bbv7TPv/WC49thZPg3jXuqzuvI45IL2EVAr/KxF0BSdHsU0ceFHOmwQn6evxAh1GaoK/6GQ1wp4R4oW2+LFL/A==}
- dependencies:
- '@types/mdast': 3.0.15
- '@types/unist': 2.0.10
- longest-streak: 3.1.0
- mdast-util-phrasing: 3.0.1
- mdast-util-to-string: 3.2.0
- micromark-util-decode-string: 1.1.0
- unist-util-visit: 4.1.2
- zwitch: 2.0.4
- dev: true
- /mdast-util-to-markdown/2.1.0:
- resolution: {integrity: sha512-SR2VnIEdVNCJbP6y7kVTJgPLifdr8WEU440fQec7qHoHOUz/oJ2jmNRqdDQ3rbiStOXb2mCDGTuwsK5OPUgYlQ==}
+ mdast-util-to-markdown@2.1.2:
dependencies:
'@types/mdast': 4.0.4
- '@types/unist': 3.0.2
+ '@types/unist': 3.0.3
longest-streak: 3.1.0
mdast-util-phrasing: 4.1.0
mdast-util-to-string: 4.0.0
- micromark-util-decode-string: 2.0.0
+ micromark-util-classify-character: 2.0.1
+ micromark-util-decode-string: 2.0.1
unist-util-visit: 5.0.0
zwitch: 2.0.4
- dev: true
-
- /mdast-util-to-string/2.0.0:
- resolution: {integrity: sha512-AW4DRS3QbBayY/jJmD8437V1Gombjf8RSOUCMFBuo5iHi58AGEgVCKQ+ezHkZZDpAQS75hcBMpLqjpJTjtUL7w==}
- dev: false
- /mdast-util-to-string/3.2.0:
- resolution: {integrity: sha512-V4Zn/ncyN1QNSqSBxTrMOLpjr+IKdHl2v3KVLoWmDPscP4r9GcCi71gjgvUV1SFSKh92AjAG4peFuBl2/YgCJg==}
- dependencies:
- '@types/mdast': 3.0.15
- dev: true
+ mdast-util-to-string@2.0.0: {}
- /mdast-util-to-string/4.0.0:
- resolution: {integrity: sha512-0H44vDimn51F0YwvxSJSm0eCDOJTRlmN0R1yBh4HLj9wiV1Dn0QoXGbvFAWj2hSItVTlCmBF1hqKlIyUBVFLPg==}
+ mdast-util-to-string@4.0.0:
dependencies:
'@types/mdast': 4.0.4
- dev: true
- /mdn-data/2.0.30:
- resolution: {integrity: sha512-GaqWWShW4kv/G9IEucWScBx9G1/vsFZZJUO+tD26M8J8z3Kw5RDQjaoZe03YAClgeS/SWPOcb4nkFBTEi5DUEA==}
- dev: true
+ mdn-data@2.12.1: {}
- /mdurl/1.0.1:
- resolution: {integrity: sha512-/sKlQJCBYVY9Ers9hqzKou4H6V5UWc/M59TH2dvkt+84itfnq7uFOMLpOiOS4ujvHP4etln18fmIxA5R5fll0g==}
- dev: false
+ mdurl@2.0.0: {}
- /media-typer/0.3.0:
- resolution: {integrity: sha512-dq+qelQ9akHpcOl/gUVRTxVIOkAJ1wR3QAvb4RsVjS8oVoFjDGTc679wJYmUmknUF5HwMLOgb5O+a3KxfWapPQ==}
- engines: {node: '>= 0.6'}
- dev: false
+ media-typer@0.3.0: {}
- /memoizee/0.4.15:
- resolution: {integrity: sha512-UBWmJpLZd5STPm7PMUlOw/TSy972M+z8gcyQ5veOnSDRREz/0bmpyTfKt3/51DhEBqCZQn1udM/5flcSPYhkdQ==}
+ memoize-one@6.0.0: {}
+
+ memoizee@0.4.17:
dependencies:
- d: 1.0.1
- es5-ext: 0.10.62
+ d: 1.0.2
+ es5-ext: 0.10.64
es6-weak-map: 2.0.3
event-emitter: 0.3.5
is-promise: 2.2.2
lru-queue: 0.1.0
next-tick: 1.1.0
- timers-ext: 0.1.7
- dev: false
+ timers-ext: 0.1.8
- /memory-pager/1.5.0:
- resolution: {integrity: sha512-ZS4Bp4r/Zoeq6+NLJpP+0Zzm0pR8whtGPf1XExKLJBAczGMnSi3It14OiNCStjQjM6NU1okjQGSxgEZN8eBYKg==}
- dev: false
+ memory-pager@1.5.0:
optional: true
- /meow/10.1.5:
- resolution: {integrity: sha512-/d+PQ4GKmGvM9Bee/DPa8z3mXs/pkvJE2KEThngVNOqtmljC6K7NMPxtc2JeZYTmpWb9k/TmxjeL18ez3h7vCw==}
- engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0}
- dependencies:
- '@types/minimist': 1.2.3
- camelcase-keys: 7.0.2
- decamelize: 5.0.1
- decamelize-keys: 1.1.1
- hard-rejection: 2.1.0
- minimist-options: 4.1.0
- normalize-package-data: 3.0.3
- read-pkg-up: 8.0.0
- redent: 4.0.0
- trim-newlines: 4.1.1
- type-fest: 1.4.0
- yargs-parser: 20.2.9
- dev: true
+ meow@12.1.1: {}
- /meow/12.1.1:
- resolution: {integrity: sha512-BhXM0Au22RwUneMPwSCnyhTOizdWoIEPU9sp0Aqa1PnDMR5Wv2FGXYDjuzJEIX+Eo2Rb8xuYe5jrnm5QowQFkw==}
- engines: {node: '>=16.10'}
- dev: true
+ meow@13.2.0: {}
- /merge-options/3.0.4:
- resolution: {integrity: sha512-2Sug1+knBjkaMsMgf1ctR1Ujx+Ayku4EdJN4Z+C2+JzoeF7A3OZ9KM2GY0CpQS51NR61LTurMJrRKPhSs3ZRTQ==}
- engines: {node: '>=10'}
+ merge-options@3.0.4:
dependencies:
is-plain-obj: 2.1.0
- dev: false
- /merge-stream/2.0.0:
- resolution: {integrity: sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==}
- dev: true
+ merge-stream@2.0.0: {}
- /merge2/1.4.1:
- resolution: {integrity: sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==}
- engines: {node: '>= 8'}
+ merge2@1.4.1: {}
- /methods/1.1.2:
- resolution: {integrity: sha512-iclAHeNqNm68zFtnZ0e+1L2yUIdvzNoauKU4WBA3VvH/vPFieF7qfRlwUZU+DA9P9bPXIS90ulxoUoCH23sV2w==}
- engines: {node: '>= 0.6'}
- dev: false
+ methods@1.1.2: {}
- /micro-api-client/3.3.0:
- resolution: {integrity: sha512-y0y6CUB9RLVsy3kfgayU28746QrNMpSm9O/AYGNsBgOkJr/X/Jk0VLGoO8Ude7Bpa8adywzF+MzXNZRFRsNPhg==}
- dev: false
+ micro-api-client@3.3.0: {}
- /micromark-core-commonmark/1.1.0:
- resolution: {integrity: sha512-BgHO1aRbolh2hcrzL2d1La37V0Aoz73ymF8rAcKnohLy93titmv62E0gP8Hrx9PKcKrqCZ1BbLGbP3bEhoXYlw==}
- dependencies:
- decode-named-character-reference: 1.0.2
- micromark-factory-destination: 1.1.0
- micromark-factory-label: 1.1.0
- micromark-factory-space: 1.1.0
- micromark-factory-title: 1.1.0
- micromark-factory-whitespace: 1.1.0
- micromark-util-character: 1.2.0
- micromark-util-chunked: 1.1.0
- micromark-util-classify-character: 1.1.0
- micromark-util-html-tag-name: 1.2.0
- micromark-util-normalize-identifier: 1.1.0
- micromark-util-resolve-all: 1.1.0
- micromark-util-subtokenize: 1.1.0
- micromark-util-symbol: 1.1.0
- micromark-util-types: 1.1.0
- uvu: 0.5.6
- dev: true
-
- /micromark-core-commonmark/2.0.1:
- resolution: {integrity: sha512-CUQyKr1e///ZODyD1U3xit6zXwy1a8q2a1S1HKtIlmgvurrEpaw/Y9y6KSIbF8P59cn/NjzHyO+Q2fAyYLQrAA==}
+ micromark-core-commonmark@2.0.2:
dependencies:
decode-named-character-reference: 1.0.2
devlop: 1.1.0
- micromark-factory-destination: 2.0.0
- micromark-factory-label: 2.0.0
- micromark-factory-space: 2.0.0
- micromark-factory-title: 2.0.0
- micromark-factory-whitespace: 2.0.0
- micromark-util-character: 2.1.0
- micromark-util-chunked: 2.0.0
- micromark-util-classify-character: 2.0.0
- micromark-util-html-tag-name: 2.0.0
- micromark-util-normalize-identifier: 2.0.0
- micromark-util-resolve-all: 2.0.0
- micromark-util-subtokenize: 2.0.1
- micromark-util-symbol: 2.0.0
- micromark-util-types: 2.0.0
- dev: true
-
- /micromark-extension-gfm-autolink-literal/0.5.7:
- resolution: {integrity: sha512-ePiDGH0/lhcngCe8FtH4ARFoxKTUelMp4L7Gg2pujYD5CSMb9PbblnyL+AAMud/SNMyusbS2XDSiPIRcQoNFAw==}
+ micromark-factory-destination: 2.0.1
+ micromark-factory-label: 2.0.1
+ micromark-factory-space: 2.0.1
+ micromark-factory-title: 2.0.1
+ micromark-factory-whitespace: 2.0.1
+ micromark-util-character: 2.1.1
+ micromark-util-chunked: 2.0.1
+ micromark-util-classify-character: 2.0.1
+ micromark-util-html-tag-name: 2.0.1
+ micromark-util-normalize-identifier: 2.0.1
+ micromark-util-resolve-all: 2.0.1
+ micromark-util-subtokenize: 2.0.3
+ micromark-util-symbol: 2.0.1
+ micromark-util-types: 2.0.1
+
+ micromark-extension-gfm-autolink-literal@0.5.7:
dependencies:
micromark: 2.11.4
transitivePeerDependencies:
- supports-color
- dev: false
- /micromark-extension-gfm-strikethrough/0.6.5:
- resolution: {integrity: sha512-PpOKlgokpQRwUesRwWEp+fHjGGkZEejj83k9gU5iXCbDG+XBA92BqnRKYJdfqfkrRcZRgGuPuXb7DaK/DmxOhw==}
+ micromark-extension-gfm-strikethrough@0.6.5:
dependencies:
micromark: 2.11.4
transitivePeerDependencies:
- supports-color
- dev: false
- /micromark-extension-gfm-table/0.4.3:
- resolution: {integrity: sha512-hVGvESPq0fk6ALWtomcwmgLvH8ZSVpcPjzi0AjPclB9FsVRgMtGZkUcpE0zgjOCFAznKepF4z3hX8z6e3HODdA==}
+ micromark-extension-gfm-table@0.4.3:
dependencies:
micromark: 2.11.4
transitivePeerDependencies:
- supports-color
- dev: false
- /micromark-extension-gfm-tagfilter/0.3.0:
- resolution: {integrity: sha512-9GU0xBatryXifL//FJH+tAZ6i240xQuFrSL7mYi8f4oZSbc+NvXjkrHemeYP0+L4ZUT+Ptz3b95zhUZnMtoi/Q==}
- dev: false
+ micromark-extension-gfm-tagfilter@0.3.0: {}
- /micromark-extension-gfm-task-list-item/0.3.3:
- resolution: {integrity: sha512-0zvM5iSLKrc/NQl84pZSjGo66aTGd57C1idmlWmE87lkMcXrTxg1uXa/nXomxJytoje9trP0NDLvw4bZ/Z/XCQ==}
+ micromark-extension-gfm-task-list-item@0.3.3:
dependencies:
micromark: 2.11.4
transitivePeerDependencies:
- supports-color
- dev: false
- /micromark-extension-gfm/0.3.3:
- resolution: {integrity: sha512-oVN4zv5/tAIA+l3GbMi7lWeYpJ14oQyJ3uEim20ktYFAcfX1x3LNlFGGlmrZHt7u9YlKExmyJdDGaTt6cMSR/A==}
+ micromark-extension-gfm@0.3.3:
dependencies:
micromark: 2.11.4
micromark-extension-gfm-autolink-literal: 0.5.7
@@ -31005,726 +35901,361 @@ packages:
micromark-extension-gfm-task-list-item: 0.3.3
transitivePeerDependencies:
- supports-color
- dev: false
- /micromark-extension-math/0.1.2:
- resolution: {integrity: sha512-ZJXsT2eVPM8VTmcw0CPSDeyonOn9SziGK3Z+nkf9Vb6xMPeU+4JMEnO6vzDL10562Favw8Vste74f54rxJ/i6Q==}
+ micromark-extension-math@0.1.2:
dependencies:
katex: 0.12.0
micromark: 2.11.4
transitivePeerDependencies:
- supports-color
- dev: false
-
- /micromark-factory-destination/1.1.0:
- resolution: {integrity: sha512-XaNDROBgx9SgSChd69pjiGKbV+nfHGDPVYFs5dOoDd7ZnMAE+Cuu91BCpsY8RT2NP9vo/B8pds2VQNCLiu0zhg==}
- dependencies:
- micromark-util-character: 1.2.0
- micromark-util-symbol: 1.1.0
- micromark-util-types: 1.1.0
- dev: true
-
- /micromark-factory-destination/2.0.0:
- resolution: {integrity: sha512-j9DGrQLm/Uhl2tCzcbLhy5kXsgkHUrjJHg4fFAeoMRwJmJerT9aw4FEhIbZStWN8A3qMwOp1uzHr4UL8AInxtA==}
- dependencies:
- micromark-util-character: 2.1.0
- micromark-util-symbol: 2.0.0
- micromark-util-types: 2.0.0
- dev: true
- /micromark-factory-label/1.1.0:
- resolution: {integrity: sha512-OLtyez4vZo/1NjxGhcpDSbHQ+m0IIGnT8BoPamh+7jVlzLJBH98zzuCoUeMxvM6WsNeh8wx8cKvqLiPHEACn0w==}
+ micromark-factory-destination@2.0.1:
dependencies:
- micromark-util-character: 1.2.0
- micromark-util-symbol: 1.1.0
- micromark-util-types: 1.1.0
- uvu: 0.5.6
- dev: true
+ micromark-util-character: 2.1.1
+ micromark-util-symbol: 2.0.1
+ micromark-util-types: 2.0.1
- /micromark-factory-label/2.0.0:
- resolution: {integrity: sha512-RR3i96ohZGde//4WSe/dJsxOX6vxIg9TimLAS3i4EhBAFx8Sm5SmqVfR8E87DPSR31nEAjZfbt91OMZWcNgdZw==}
+ micromark-factory-label@2.0.1:
dependencies:
devlop: 1.1.0
- micromark-util-character: 2.1.0
- micromark-util-symbol: 2.0.0
- micromark-util-types: 2.0.0
- dev: true
-
- /micromark-factory-space/1.1.0:
- resolution: {integrity: sha512-cRzEj7c0OL4Mw2v6nwzttyOZe8XY/Z8G0rzmWQZTBi/jjwyw/U4uqKtUORXQrR5bAZZnbTI/feRV/R7hc4jQYQ==}
- dependencies:
- micromark-util-character: 1.2.0
- micromark-util-types: 1.1.0
- dev: true
-
- /micromark-factory-space/2.0.0:
- resolution: {integrity: sha512-TKr+LIDX2pkBJXFLzpyPyljzYK3MtmllMUMODTQJIUfDGncESaqB90db9IAUcz4AZAJFdd8U9zOp9ty1458rxg==}
- dependencies:
- micromark-util-character: 2.1.0
- micromark-util-types: 2.0.0
- dev: true
-
- /micromark-factory-title/1.1.0:
- resolution: {integrity: sha512-J7n9R3vMmgjDOCY8NPw55jiyaQnH5kBdV2/UXCtZIpnHH3P6nHUKaH7XXEYuWwx/xUJcawa8plLBEjMPU24HzQ==}
- dependencies:
- micromark-factory-space: 1.1.0
- micromark-util-character: 1.2.0
- micromark-util-symbol: 1.1.0
- micromark-util-types: 1.1.0
- dev: true
-
- /micromark-factory-title/2.0.0:
- resolution: {integrity: sha512-jY8CSxmpWLOxS+t8W+FG3Xigc0RDQA9bKMY/EwILvsesiRniiVMejYTE4wumNc2f4UbAa4WsHqe3J1QS1sli+A==}
- dependencies:
- micromark-factory-space: 2.0.0
- micromark-util-character: 2.1.0
- micromark-util-symbol: 2.0.0
- micromark-util-types: 2.0.0
- dev: true
-
- /micromark-factory-whitespace/1.1.0:
- resolution: {integrity: sha512-v2WlmiymVSp5oMg+1Q0N1Lxmt6pMhIHD457whWM7/GUlEks1hI9xj5w3zbc4uuMKXGisksZk8DzP2UyGbGqNsQ==}
- dependencies:
- micromark-factory-space: 1.1.0
- micromark-util-character: 1.2.0
- micromark-util-symbol: 1.1.0
- micromark-util-types: 1.1.0
- dev: true
-
- /micromark-factory-whitespace/2.0.0:
- resolution: {integrity: sha512-28kbwaBjc5yAI1XadbdPYHX/eDnqaUFVikLwrO7FDnKG7lpgxnvk/XGRhX/PN0mOZ+dBSZ+LgunHS+6tYQAzhA==}
- dependencies:
- micromark-factory-space: 2.0.0
- micromark-util-character: 2.1.0
- micromark-util-symbol: 2.0.0
- micromark-util-types: 2.0.0
- dev: true
-
- /micromark-util-character/1.2.0:
- resolution: {integrity: sha512-lXraTwcX3yH/vMDaFWCQJP1uIszLVebzUa3ZHdrgxr7KEU/9mL4mVgCpGbyhvNLNlauROiNUq7WN5u7ndbY6xg==}
- dependencies:
- micromark-util-symbol: 1.1.0
- micromark-util-types: 1.1.0
- dev: true
-
- /micromark-util-character/2.1.0:
- resolution: {integrity: sha512-KvOVV+X1yLBfs9dCBSopq/+G1PcgT3lAK07mC4BzXi5E7ahzMAF8oIupDDJ6mievI6F+lAATkbQQlQixJfT3aQ==}
- dependencies:
- micromark-util-symbol: 2.0.0
- micromark-util-types: 2.0.0
- dev: true
-
- /micromark-util-chunked/1.1.0:
- resolution: {integrity: sha512-Ye01HXpkZPNcV6FiyoW2fGZDUw4Yc7vT0E9Sad83+bEDiCJ1uXu0S3mr8WLpsz3HaG3x2q0HM6CTuPdcZcluFQ==}
- dependencies:
- micromark-util-symbol: 1.1.0
- dev: true
+ micromark-util-character: 2.1.1
+ micromark-util-symbol: 2.0.1
+ micromark-util-types: 2.0.1
- /micromark-util-chunked/2.0.0:
- resolution: {integrity: sha512-anK8SWmNphkXdaKgz5hJvGa7l00qmcaUQoMYsBwDlSKFKjc6gjGXPDw3FNL3Nbwq5L8gE+RCbGqTw49FK5Qyvg==}
+ micromark-factory-space@2.0.1:
dependencies:
- micromark-util-symbol: 2.0.0
- dev: true
+ micromark-util-character: 2.1.1
+ micromark-util-types: 2.0.1
- /micromark-util-classify-character/1.1.0:
- resolution: {integrity: sha512-SL0wLxtKSnklKSUplok1WQFoGhUdWYKggKUiqhX+Swala+BtptGCu5iPRc+xvzJ4PXE/hwM3FNXsfEVgoZsWbw==}
+ micromark-factory-title@2.0.1:
dependencies:
- micromark-util-character: 1.2.0
- micromark-util-symbol: 1.1.0
- micromark-util-types: 1.1.0
- dev: true
+ micromark-factory-space: 2.0.1
+ micromark-util-character: 2.1.1
+ micromark-util-symbol: 2.0.1
+ micromark-util-types: 2.0.1
- /micromark-util-classify-character/2.0.0:
- resolution: {integrity: sha512-S0ze2R9GH+fu41FA7pbSqNWObo/kzwf8rN/+IGlW/4tC6oACOs8B++bh+i9bVyNnwCcuksbFwsBme5OCKXCwIw==}
+ micromark-factory-whitespace@2.0.1:
dependencies:
- micromark-util-character: 2.1.0
- micromark-util-symbol: 2.0.0
- micromark-util-types: 2.0.0
- dev: true
+ micromark-factory-space: 2.0.1
+ micromark-util-character: 2.1.1
+ micromark-util-symbol: 2.0.1
+ micromark-util-types: 2.0.1
- /micromark-util-combine-extensions/1.1.0:
- resolution: {integrity: sha512-Q20sp4mfNf9yEqDL50WwuWZHUrCO4fEyeDCnMGmG5Pr0Cz15Uo7KBs6jq+dq0EgX4DPwwrh9m0X+zPV1ypFvUA==}
+ micromark-util-character@2.1.1:
dependencies:
- micromark-util-chunked: 1.1.0
- micromark-util-types: 1.1.0
- dev: true
+ micromark-util-symbol: 2.0.1
+ micromark-util-types: 2.0.1
- /micromark-util-combine-extensions/2.0.0:
- resolution: {integrity: sha512-vZZio48k7ON0fVS3CUgFatWHoKbbLTK/rT7pzpJ4Bjp5JjkZeasRfrS9wsBdDJK2cJLHMckXZdzPSSr1B8a4oQ==}
+ micromark-util-chunked@2.0.1:
dependencies:
- micromark-util-chunked: 2.0.0
- micromark-util-types: 2.0.0
- dev: true
+ micromark-util-symbol: 2.0.1
- /micromark-util-decode-numeric-character-reference/1.1.0:
- resolution: {integrity: sha512-m9V0ExGv0jB1OT21mrWcuf4QhP46pH1KkfWy9ZEezqHKAxkj4mPCy3nIH1rkbdMlChLHX531eOrymlwyZIf2iw==}
+ micromark-util-classify-character@2.0.1:
dependencies:
- micromark-util-symbol: 1.1.0
- dev: true
+ micromark-util-character: 2.1.1
+ micromark-util-symbol: 2.0.1
+ micromark-util-types: 2.0.1
- /micromark-util-decode-numeric-character-reference/2.0.1:
- resolution: {integrity: sha512-bmkNc7z8Wn6kgjZmVHOX3SowGmVdhYS7yBpMnuMnPzDq/6xwVA604DuOXMZTO1lvq01g+Adfa0pE2UKGlxL1XQ==}
+ micromark-util-combine-extensions@2.0.1:
dependencies:
- micromark-util-symbol: 2.0.0
- dev: true
+ micromark-util-chunked: 2.0.1
+ micromark-util-types: 2.0.1
- /micromark-util-decode-string/1.1.0:
- resolution: {integrity: sha512-YphLGCK8gM1tG1bd54azwyrQRjCFcmgj2S2GoJDNnh4vYtnL38JS8M4gpxzOPNyHdNEpheyWXCTnnTDY3N+NVQ==}
+ micromark-util-decode-numeric-character-reference@2.0.2:
dependencies:
- decode-named-character-reference: 1.0.2
- micromark-util-character: 1.2.0
- micromark-util-decode-numeric-character-reference: 1.1.0
- micromark-util-symbol: 1.1.0
- dev: true
+ micromark-util-symbol: 2.0.1
- /micromark-util-decode-string/2.0.0:
- resolution: {integrity: sha512-r4Sc6leeUTn3P6gk20aFMj2ntPwn6qpDZqWvYmAG6NgvFTIlj4WtrAudLi65qYoaGdXYViXYw2pkmn7QnIFasA==}
+ micromark-util-decode-string@2.0.1:
dependencies:
decode-named-character-reference: 1.0.2
- micromark-util-character: 2.1.0
- micromark-util-decode-numeric-character-reference: 2.0.1
- micromark-util-symbol: 2.0.0
- dev: true
+ micromark-util-character: 2.1.1
+ micromark-util-decode-numeric-character-reference: 2.0.2
+ micromark-util-symbol: 2.0.1
- /micromark-util-encode/1.1.0:
- resolution: {integrity: sha512-EuEzTWSTAj9PA5GOAs992GzNh2dGQO52UvAbtSOMvXTxv3Criqb6IOzJUBCmEqrrXSblJIJBbFFv6zPxpreiJw==}
- dev: true
+ micromark-util-encode@2.0.1: {}
- /micromark-util-encode/2.0.0:
- resolution: {integrity: sha512-pS+ROfCXAGLWCOc8egcBvT0kf27GoWMqtdarNfDcjb6YLuV5cM3ioG45Ys2qOVqeqSbjaKg72vU+Wby3eddPsA==}
- dev: true
+ micromark-util-html-tag-name@2.0.1: {}
- /micromark-util-html-tag-name/1.2.0:
- resolution: {integrity: sha512-VTQzcuQgFUD7yYztuQFKXT49KghjtETQ+Wv/zUjGSGBioZnkA4P1XXZPT1FHeJA6RwRXSF47yvJ1tsJdoxwO+Q==}
- dev: true
-
- /micromark-util-html-tag-name/2.0.0:
- resolution: {integrity: sha512-xNn4Pqkj2puRhKdKTm8t1YHC/BAjx6CEwRFXntTaRf/x16aqka6ouVoutm+QdkISTlT7e2zU7U4ZdlDLJd2Mcw==}
- dev: true
-
- /micromark-util-normalize-identifier/1.1.0:
- resolution: {integrity: sha512-N+w5vhqrBihhjdpM8+5Xsxy71QWqGn7HYNUvch71iV2PM7+E3uWGox1Qp90loa1ephtCxG2ftRV/Conitc6P2Q==}
- dependencies:
- micromark-util-symbol: 1.1.0
- dev: true
-
- /micromark-util-normalize-identifier/2.0.0:
- resolution: {integrity: sha512-2xhYT0sfo85FMrUPtHcPo2rrp1lwbDEEzpx7jiH2xXJLqBuy4H0GgXk5ToU8IEwoROtXuL8ND0ttVa4rNqYK3w==}
- dependencies:
- micromark-util-symbol: 2.0.0
- dev: true
-
- /micromark-util-resolve-all/1.1.0:
- resolution: {integrity: sha512-b/G6BTMSg+bX+xVCshPTPyAu2tmA0E4X98NSR7eIbeC6ycCqCeE7wjfDIgzEbkzdEVJXRtOG4FbEm/uGbCRouA==}
- dependencies:
- micromark-util-types: 1.1.0
- dev: true
-
- /micromark-util-resolve-all/2.0.0:
- resolution: {integrity: sha512-6KU6qO7DZ7GJkaCgwBNtplXCvGkJToU86ybBAUdavvgsCiG8lSSvYxr9MhwmQ+udpzywHsl4RpGJsYWG1pDOcA==}
+ micromark-util-normalize-identifier@2.0.1:
dependencies:
- micromark-util-types: 2.0.0
- dev: true
+ micromark-util-symbol: 2.0.1
- /micromark-util-sanitize-uri/1.2.0:
- resolution: {integrity: sha512-QO4GXv0XZfWey4pYFndLUKEAktKkG5kZTdUNaTAkzbuJxn2tNBOr+QtxR2XpWaMhbImT2dPzyLrPXLlPhph34A==}
+ micromark-util-resolve-all@2.0.1:
dependencies:
- micromark-util-character: 1.2.0
- micromark-util-encode: 1.1.0
- micromark-util-symbol: 1.1.0
- dev: true
+ micromark-util-types: 2.0.1
- /micromark-util-sanitize-uri/2.0.0:
- resolution: {integrity: sha512-WhYv5UEcZrbAtlsnPuChHUAsu/iBPOVaEVsntLBIdpibO0ddy8OzavZz3iL2xVvBZOpolujSliP65Kq0/7KIYw==}
+ micromark-util-sanitize-uri@2.0.1:
dependencies:
- micromark-util-character: 2.1.0
- micromark-util-encode: 2.0.0
- micromark-util-symbol: 2.0.0
- dev: true
+ micromark-util-character: 2.1.1
+ micromark-util-encode: 2.0.1
+ micromark-util-symbol: 2.0.1
- /micromark-util-subtokenize/1.1.0:
- resolution: {integrity: sha512-kUQHyzRoxvZO2PuLzMt2P/dwVsTiivCK8icYTeR+3WgbuPqfHgPPy7nFKbeqRivBvn/3N3GBiNC+JRTMSxEC7A==}
- dependencies:
- micromark-util-chunked: 1.1.0
- micromark-util-symbol: 1.1.0
- micromark-util-types: 1.1.0
- uvu: 0.5.6
- dev: true
-
- /micromark-util-subtokenize/2.0.1:
- resolution: {integrity: sha512-jZNtiFl/1aY73yS3UGQkutD0UbhTt68qnRpw2Pifmz5wV9h8gOVsN70v+Lq/f1rKaU/W8pxRe8y8Q9FX1AOe1Q==}
+ micromark-util-subtokenize@2.0.3:
dependencies:
devlop: 1.1.0
- micromark-util-chunked: 2.0.0
- micromark-util-symbol: 2.0.0
- micromark-util-types: 2.0.0
- dev: true
-
- /micromark-util-symbol/1.1.0:
- resolution: {integrity: sha512-uEjpEYY6KMs1g7QfJ2eX1SQEV+ZT4rUD3UcF6l57acZvLNK7PBZL+ty82Z1qhK1/yXIY4bdx04FKMgR0g4IAag==}
- dev: true
-
- /micromark-util-symbol/2.0.0:
- resolution: {integrity: sha512-8JZt9ElZ5kyTnO94muPxIGS8oyElRJaiJO8EzV6ZSyGQ1Is8xwl4Q45qU5UOg+bGH4AikWziz0iN4sFLWs8PGw==}
- dev: true
+ micromark-util-chunked: 2.0.1
+ micromark-util-symbol: 2.0.1
+ micromark-util-types: 2.0.1
- /micromark-util-types/1.1.0:
- resolution: {integrity: sha512-ukRBgie8TIAcacscVHSiddHjO4k/q3pnedmzMQ4iwDcK0FtFCohKOlFbaOL/mPgfnPsL3C1ZyxJa4sbWrBl3jg==}
- dev: true
+ micromark-util-symbol@2.0.1: {}
- /micromark-util-types/2.0.0:
- resolution: {integrity: sha512-oNh6S2WMHWRZrmutsRmDDfkzKtxF+bc2VxLC9dvtrDIRFln627VsFP6fLMgTryGDljgLPjkrzQSDcPrjPyDJ5w==}
- dev: true
+ micromark-util-types@2.0.1: {}
- /micromark/2.11.4:
- resolution: {integrity: sha512-+WoovN/ppKolQOFIAajxi7Lu9kInbPxFuTBVEavFcL8eAfVstoc5MocPmqBeAdBOJV00uaVjegzH4+MA0DN/uA==}
+ micromark@2.11.4:
dependencies:
- debug: 4.3.6
+ debug: 4.3.7(supports-color@9.4.0)
parse-entities: 2.0.0
transitivePeerDependencies:
- supports-color
- dev: false
-
- /micromark/3.2.0:
- resolution: {integrity: sha512-uD66tJj54JLYq0De10AhWycZWGQNUvDI55xPgk2sQM5kn1JYlhbCMTtEeT27+vAhW2FBQxLlOmS3pmA7/2z4aA==}
- dependencies:
- '@types/debug': 4.1.12
- debug: 4.3.6
- decode-named-character-reference: 1.0.2
- micromark-core-commonmark: 1.1.0
- micromark-factory-space: 1.1.0
- micromark-util-character: 1.2.0
- micromark-util-chunked: 1.1.0
- micromark-util-combine-extensions: 1.1.0
- micromark-util-decode-numeric-character-reference: 1.1.0
- micromark-util-encode: 1.1.0
- micromark-util-normalize-identifier: 1.1.0
- micromark-util-resolve-all: 1.1.0
- micromark-util-sanitize-uri: 1.2.0
- micromark-util-subtokenize: 1.1.0
- micromark-util-symbol: 1.1.0
- micromark-util-types: 1.1.0
- uvu: 0.5.6
- transitivePeerDependencies:
- - supports-color
- dev: true
- /micromark/4.0.0:
- resolution: {integrity: sha512-o/sd0nMof8kYff+TqcDx3VSrgBTcZpSvYcAHIfHhv5VAuNmisCxjhx6YmxS8PFEpb9z5WKWKPdzf0jM23ro3RQ==}
+ micromark@4.0.1:
dependencies:
'@types/debug': 4.1.12
- debug: 4.3.6
+ debug: 4.3.7(supports-color@9.4.0)
decode-named-character-reference: 1.0.2
devlop: 1.1.0
- micromark-core-commonmark: 2.0.1
- micromark-factory-space: 2.0.0
- micromark-util-character: 2.1.0
- micromark-util-chunked: 2.0.0
- micromark-util-combine-extensions: 2.0.0
- micromark-util-decode-numeric-character-reference: 2.0.1
- micromark-util-encode: 2.0.0
- micromark-util-normalize-identifier: 2.0.0
- micromark-util-resolve-all: 2.0.0
- micromark-util-sanitize-uri: 2.0.0
- micromark-util-subtokenize: 2.0.1
- micromark-util-symbol: 2.0.0
- micromark-util-types: 2.0.0
+ micromark-core-commonmark: 2.0.2
+ micromark-factory-space: 2.0.1
+ micromark-util-character: 2.1.1
+ micromark-util-chunked: 2.0.1
+ micromark-util-combine-extensions: 2.0.1
+ micromark-util-decode-numeric-character-reference: 2.0.2
+ micromark-util-encode: 2.0.1
+ micromark-util-normalize-identifier: 2.0.1
+ micromark-util-resolve-all: 2.0.1
+ micromark-util-sanitize-uri: 2.0.1
+ micromark-util-subtokenize: 2.0.3
+ micromark-util-symbol: 2.0.1
+ micromark-util-types: 2.0.1
transitivePeerDependencies:
- supports-color
- dev: true
- /micromatch/4.0.5:
- resolution: {integrity: sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA==}
- engines: {node: '>=8.6'}
+ micromatch@4.0.8:
dependencies:
braces: 3.0.3
picomatch: 2.3.1
- dev: true
- /micromatch/4.0.7:
- resolution: {integrity: sha512-LPP/3KorzCwBxfeUuZmaR6bG2kdeHSbe0P2tY3FLRU4vYrjYz5hI4QZwV0njUx3jeuKe67YukQ1LSPZBKDqO/Q==}
- engines: {node: '>=8.6'}
- dependencies:
- braces: 3.0.3
- picomatch: 2.3.1
+ mime-db@1.52.0: {}
- /mime-db/1.52.0:
- resolution: {integrity: sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==}
- engines: {node: '>= 0.6'}
+ mime-db@1.53.0: {}
- /mime-types/2.1.35:
- resolution: {integrity: sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==}
- engines: {node: '>= 0.6'}
+ mime-types@2.1.35:
dependencies:
mime-db: 1.52.0
- /mime/1.6.0:
- resolution: {integrity: sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg==}
- engines: {node: '>=4'}
- hasBin: true
- dev: false
-
- /mime/2.6.0:
- resolution: {integrity: sha512-USPkMeET31rOMiarsBNIHZKLGgvKc/LrjofAnBlOttf5ajRvqiRA8QsenbcooctK6d6Ts6aqZXBA+XbkKthiQg==}
- engines: {node: '>=4.0.0'}
- hasBin: true
- dev: false
+ mime@1.6.0: {}
- /mime/3.0.0:
- resolution: {integrity: sha512-jSCU7/VB1loIWBZe14aEYHU/+1UMEHoaO7qxCOVJOw9GgH72VAWppxNcjU+x9a2k3GSIBXNKxXQFqRvvZ7vr3A==}
- engines: {node: '>=10.0.0'}
- hasBin: true
- dev: false
+ mime@2.6.0: {}
- /mime/4.0.4:
- resolution: {integrity: sha512-v8yqInVjhXyqP6+Kw4fV3ZzeMRqEW6FotRsKXjRS5VMTNIuXsdRoAvklpoRgSqXm6o9VNH4/C0mgedko9DdLsQ==}
- engines: {node: '>=16'}
- hasBin: true
- dev: false
+ mime@3.0.0: {}
- /mimer/2.0.2:
- resolution: {integrity: sha512-izxvjsB7Ur5HrTbPu6VKTrzxSMBFBqyZQc6dWlZNQ4/wAvf886fD4lrjtFd8IQ8/WmZKdxKjUtqFFNaj3hQ52g==}
- engines: {node: '>= 12'}
- hasBin: true
- dev: false
+ mime@4.0.4: {}
- /mimic-fn/2.1.0:
- resolution: {integrity: sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==}
- engines: {node: '>=6'}
+ mimer@2.0.2: {}
- /mimic-response/1.0.1:
- resolution: {integrity: sha512-j5EctnkH7amfV/q5Hgmoal1g2QHFJRraOtmx0JpIqkxhBhI/lJSl1nMpQ45hVarwNETOoWEimndZ4QK0RHxuxQ==}
- engines: {node: '>=4'}
- dev: false
+ mimic-fn@2.1.0: {}
- /mimic-response/3.1.0:
- resolution: {integrity: sha512-z0yWI+4FDrrweS8Zmt4Ej5HdJmky15+L2e6Wgn3+iK5fWzb6T3fhNFq2+MeTRb064c6Wr4N/wv0DzQTjNzHNGQ==}
- engines: {node: '>=10'}
- dev: false
+ mimic-response@1.0.1: {}
- /mimic-response/4.0.0:
- resolution: {integrity: sha512-e5ISH9xMYU0DzrT+jl8q2ze9D6eWBto+I8CNpe+VI+K2J/F/k3PdkdTdz4wvGVH4NTpo+NRYTVIuMQEMMcsLqg==}
- engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0}
- dev: false
+ mimic-response@3.1.0: {}
- /min-indent/1.0.1:
- resolution: {integrity: sha512-I9jwMn07Sy/IwOj3zVkVik2JTvgpaykDZEigL6Rx6N9LbMywwUSMtxET+7lVoDLLd3O3IXwJwvuuns8UB/HeAg==}
- engines: {node: '>=4'}
- dev: true
+ mimic-response@4.0.0: {}
- /minimalistic-assert/1.0.1:
- resolution: {integrity: sha512-UtJcAD4yEaGtjPezWuO9wC4nwUnVH/8/Im3yEHQP4b67cXlD/Qr9hdITCU1xDbSEXg2XKNaP8jsReV7vQd00/A==}
- dev: false
+ minimalistic-assert@1.0.1: {}
- /minimatch/3.1.2:
- resolution: {integrity: sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==}
+ minimatch@3.0.8:
dependencies:
brace-expansion: 1.1.11
- /minimatch/5.1.6:
- resolution: {integrity: sha512-lKwV/1brpG6mBUFHtb7NUmtABCb2WZZmm2wNiOA5hAb8VdCS4B3dtMWyvcoViccwAW/COERjXLt0zP1zXUN26g==}
- engines: {node: '>=10'}
+ minimatch@3.1.2:
dependencies:
- brace-expansion: 2.0.1
+ brace-expansion: 1.1.11
- /minimatch/9.0.5:
- resolution: {integrity: sha512-G6T0ZX48xgozx7587koeX9Ys2NYy6Gmv//P89sEte9V9whIapMNF4idKxnW2QtCcLiTWlb/wfCabAtAFWhhBow==}
- engines: {node: '>=16 || 14 >=14.17'}
+ minimatch@5.1.6:
dependencies:
brace-expansion: 2.0.1
- dev: true
- /minimist-options/4.1.0:
- resolution: {integrity: sha512-Q4r8ghd80yhO/0j1O3B2BjweX3fiHg9cdOwjJd2J76Q135c+NDxGCqdYKQ1SKBuFfgWbAUzBfvYjPUEeNgqN1A==}
- engines: {node: '>= 6'}
+ minimatch@9.0.5:
dependencies:
- arrify: 1.0.1
- is-plain-obj: 1.1.0
- kind-of: 6.0.3
- dev: true
+ brace-expansion: 2.0.1
- /minimist/1.2.8:
- resolution: {integrity: sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==}
+ minimist@1.2.8: {}
- /minipass/3.3.6:
- resolution: {integrity: sha512-DxiNidxSEK+tHG6zOIklvNOwm3hvCrbUrdtzY74U6HKTJxvIDfOUL5W5P2Ghd3DTkhhKPYGqeNUIh5qcM4YBfw==}
- engines: {node: '>=8'}
+ minipass@3.3.6:
dependencies:
yallist: 4.0.0
- dev: true
- /minipass/5.0.0:
- resolution: {integrity: sha512-3FnjYuehv9k6ovOEbyOswadCDPX1piCfhV8ncmYtHOjuPwylVWsghTLo7rabjC3Rx5xD4HDx8Wm1xnMF7S5qFQ==}
- engines: {node: '>=8'}
- dev: true
+ minipass@5.0.0: {}
- /minizlib/2.1.2:
- resolution: {integrity: sha512-bAxsR8BVfj60DWXHE3u30oHzfl4G7khkSuPW+qvpd7jFRHm7dLxOjUk1EHACJ/hxLY8phGJ0YhYHZo7jil7Qdg==}
- engines: {node: '>= 8'}
+ minizlib@2.1.2:
dependencies:
minipass: 3.3.6
yallist: 4.0.0
- dev: true
- /mitt/3.0.0:
- resolution: {integrity: sha512-7dX2/10ITVyqh4aOSVI9gdape+t9l2/8QxHrFmUXu4EEUpdlxl6RudZUPZoc+zuY2hk1j7XxVroIVIan/pD/SQ==}
- dev: false
+ mitt@3.0.0: {}
- /mitt/3.0.1:
- resolution: {integrity: sha512-vKivATfr97l2/QBCYAkXYDbrIWPM2IIKEl7YPhjCvKlG3kE2gm+uBo6nEXK3M5/Ffh/FLpKExzOQ3JJoJGFKBw==}
- dev: false
+ mitt@3.0.1: {}
- /mkdirp-classic/0.5.3:
- resolution: {integrity: sha512-gKLcREMhtuZRwRAfqP3RFW+TK4JqApVBtOIftVgjuABpAtpxhPGaDcfvbhNvD0B8iD1oUr/txX35NjcaY6Ns/A==}
- dev: false
+ mkdirp-classic@0.5.3: {}
- /mkdirp/0.5.6:
- resolution: {integrity: sha512-FP+p8RB8OWpF3YZBCrP5gtADmtXApB5AMLn+vdyA+PyxCjrCs00mjyUozssO33cwDeT3wNGdLxJ5M//YqtHAJw==}
- hasBin: true
+ mkdirp@0.5.6:
dependencies:
minimist: 1.2.8
- dev: true
- /mkdirp/1.0.4:
- resolution: {integrity: sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw==}
- engines: {node: '>=10'}
- hasBin: true
+ mkdirp@1.0.4: {}
- /mnemonist/0.38.3:
- resolution: {integrity: sha512-2K9QYubXx/NAjv4VLq1d1Ly8pWNC5L3BrixtdkyTegXWJIqY+zLNDhhX/A+ZwWt70tB1S8H4BE8FLYEFyNoOBw==}
+ mlly@1.7.3:
+ dependencies:
+ acorn: 8.14.0
+ pathe: 1.1.2
+ pkg-types: 1.2.1
+ ufo: 1.5.4
+
+ mnemonist@0.38.3:
dependencies:
obliterator: 1.6.1
- dev: false
- /module-definition/3.4.0:
- resolution: {integrity: sha512-XxJ88R1v458pifaSkPNLUTdSPNVGMP2SXVncVmApGO+gAfrLANiYe6JofymCzVceGOMwQE2xogxBSc8uB7XegA==}
- engines: {node: '>=6.0'}
- hasBin: true
+ module-definition@3.4.0:
dependencies:
ast-module-types: 3.0.0
node-source-walk: 4.3.0
- dev: false
-
- /moment-timezone/0.5.43:
- resolution: {integrity: sha512-72j3aNyuIsDxdF1i7CEgV2FfxM1r6aaqJyLB2vwb33mXYyoyLly+F1zbWqhA3/bVIoJ4szlUoMbUnVdid32NUQ==}
- dependencies:
- moment: 2.30.1
- dev: false
- /moment-timezone/0.5.45:
- resolution: {integrity: sha512-HIWmqA86KcmCAhnMAN0wuDOARV/525R2+lOLotuGFzn4HO+FH+/645z2wx0Dt3iDv6/p61SIvKnDstISainhLQ==}
+ moment-timezone@0.5.46:
dependencies:
moment: 2.30.1
- dev: false
- /moment/2.29.4:
- resolution: {integrity: sha512-5LC9SOxjSc2HF6vO2CyuTDNivEdoz2IvyJJGj6X8DJ0eFyfszE0QiEd+iXmBvUP3WHxSjFH/vIsA0EN00cgr8w==}
- dev: false
+ moment@2.29.4: {}
- /moment/2.30.1:
- resolution: {integrity: sha512-uEmtNhbDOrWPFS+hdjFCBfy9f2YoyzRpwcl+DqpC6taX21FzsTLQVbMV/W7PzNSX6x/bhC1zA3c2UQ5NzH6how==}
- dev: false
+ moment@2.30.1: {}
- /monday-sdk-js/0.1.6:
- resolution: {integrity: sha512-OfkICgBQRI8N4dmSLqR2k8tpIIogpfLQCksuV3E/TLayyJzinuN6KOp1Mk/qdG1lilA9AArQO11UvZnQ4ZRXDQ==}
+ monday-sdk-js@0.1.6:
dependencies:
'@types/source-map': 0.5.7
node-fetch: 2.7.0
transitivePeerDependencies:
- encoding
- dev: false
- /monday-sdk-js/0.5.5:
- resolution: {integrity: sha512-i5JyZwlDpsZznXMbrqlPhRdwn6DX1sVjZ87tR0x4vc4wJSTrDY1hHM+wN6YSCtP/JlW8+pqcymm6jDaE6+RyxA==}
+ monday-sdk-js@0.5.5:
dependencies:
node-fetch: 2.7.0
transitivePeerDependencies:
- encoding
- dev: false
- /mongodb-connection-string-url/2.6.0:
- resolution: {integrity: sha512-WvTZlI9ab0QYtTYnuMLgobULWhokRjtC7db9LtcVfJ+Hsnyr5eo6ZtNAt3Ly24XZScGMelOcGtm7lSn0332tPQ==}
+ mongodb-connection-string-url@2.6.0:
dependencies:
'@types/whatwg-url': 8.2.2
whatwg-url: 11.0.0
- dev: false
- /mongodb/4.17.1_dseaa2p5u2yk67qiepewcq3hkq:
- resolution: {integrity: sha512-MBuyYiPUPRTqfH2dV0ya4dcr2E5N52ocBuZ8Sgg/M030nGF78v855B3Z27mZJnp8PxjnUquEnAtjOsphgMZOlQ==}
- engines: {node: '>=12.9.0'}
+ mongodb@4.17.2(@aws-sdk/client-sso-oidc@3.696.0(@aws-sdk/client-sts@3.696.0)):
dependencies:
bson: 4.7.2
mongodb-connection-string-url: 2.6.0
- socks: 2.7.1
+ socks: 2.8.3
optionalDependencies:
- '@aws-sdk/credential-providers': 3.600.0_dseaa2p5u2yk67qiepewcq3hkq
- '@mongodb-js/saslprep': 1.1.0
+ '@aws-sdk/credential-providers': 3.696.0(@aws-sdk/client-sso-oidc@3.696.0(@aws-sdk/client-sts@3.696.0))
+ '@mongodb-js/saslprep': 1.1.9
transitivePeerDependencies:
- '@aws-sdk/client-sso-oidc'
- aws-crt
- dev: false
- /montag/1.2.1:
- resolution: {integrity: sha512-YFuR6t5KhDlmAnUmVSxGzNcpWqSDqxbd95tvnEnn7X9yFv7g3kDFoRjwyGayVdF/NNoWk7YW7IxUjilnGnoC5Q==}
- dev: true
+ montag@1.2.1: {}
- /moo/0.5.2:
- resolution: {integrity: sha512-iSAJLHYKnX41mKcJKjqvnAN9sf0LMDTXDEvFv+ffuRR9a1MIuXLjMNL6EsnDHSkKLTWNqQQ5uo61P4EbU4NU+Q==}
- dev: false
+ moo@0.5.2: {}
- /move-file/1.2.0:
- resolution: {integrity: sha512-USHrRmxzGowUWAGBbJPdFjHzEqtxDU03pLHY0Rfqgtnq+q8FOIs8wvkkf+Udmg77SJKs47y9sI0jJvQeYsmiCA==}
- engines: {node: '>=8'}
+ move-file@1.2.0:
dependencies:
cp-file: 6.2.0
make-dir: 3.1.0
path-exists: 3.0.0
- dev: false
- /mri/1.2.0:
- resolution: {integrity: sha512-tzzskb3bG8LvYGFF/mDTpq3jpI6Q9wc3LEmBaghu+DdCssd1FakN7Bc0hVNmEyGq1bq3RgfkCb3cmQLpNPOroA==}
- engines: {node: '>=4'}
+ mri@1.2.0: {}
- /ms/2.0.0:
- resolution: {integrity: sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==}
- dev: false
+ ms@2.0.0: {}
- /ms/2.1.2:
- resolution: {integrity: sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==}
+ ms@2.1.2: {}
- /ms/2.1.3:
- resolution: {integrity: sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==}
+ ms@2.1.3: {}
- /mssql/10.0.1:
- resolution: {integrity: sha512-k0Xkav/3OppZs8Kj+FIo7k7ejbcsVNxp5/ePayxfXzuBZhxD/Y/RhIhrtfHyH6FmlJnBQPj7eDI2IN7B0BiSxQ==}
- engines: {node: '>=14'}
- hasBin: true
+ mssql@10.0.4:
dependencies:
'@tediousjs/connection-string': 0.5.0
- commander: 11.0.0
- debug: 4.3.4
- rfdc: 1.3.0
+ commander: 11.1.0
+ debug: 4.3.7(supports-color@9.4.0)
+ rfdc: 1.4.1
tarn: 3.0.2
- tedious: 16.4.1
+ tedious: 16.7.1
transitivePeerDependencies:
- supports-color
- dev: false
- /multilang-extract-comments/0.4.0:
- resolution: {integrity: sha512-8mXCo9Q42Wyfho9nn7hHkG/0sKxH0nJWfmBLl8+c+FLv++XhFkFC1sntOk4NFZ+nSpoMjlF/8ILeOLyMRTFbIw==}
+ muggle-string@0.4.1: {}
+
+ multilang-extract-comments@0.4.0:
dependencies:
comment-patterns: 0.12.2
line-counter: 1.1.0
lodash: 4.17.21
quotemeta: 0.0.0
- dev: false
- /mute-stream/0.0.8:
- resolution: {integrity: sha512-nnbWWOkoWyUsTjKrhgD0dcz22mdkSnpYqbEjIm2nhwhuxlSkpywJmBo8h0ZqJdkp73mb90SssHkN4rsRaBAfAA==}
- dev: false
+ mute-stream@0.0.8: {}
- /mysql2-promise/0.1.4:
- resolution: {integrity: sha512-/h8ubU/36aIPpbfB6CENw9ZdbzIhZMZOIbstJUHVKp4J9JBRSLScrYImVx+3yZilgag732UhpQMMK5+ktdhLCw==}
- engines: {node: '>=0.10.0'}
+ mysql2-promise@0.1.4:
dependencies:
mysql2: 0.15.8
q: 1.5.1
- dev: false
- /mysql2/0.15.8:
- resolution: {integrity: sha512-3x5o6C20bfwJYPSoT74MOoad7/chJoq4qXHDL5VAuRBBrIyErovLoj04Dz/5EY9X2kTxWSGNiTegtxpROTd2YQ==}
- engines: {node: '>= 0.8'}
+ mysql2@0.15.8:
dependencies:
bn.js: 2.0.0
cardinal: 0.4.4
double-ended-queue: 2.0.0-0
named-placeholders: 0.1.3
readable-stream: 1.0.33
- dev: false
- /mysql2/3.9.2:
- resolution: {integrity: sha512-3Cwg/UuRkAv/wm6RhtPE5L7JlPB877vwSF6gfLAS68H+zhH+u5oa3AieqEd0D0/kC3W7qIhYbH419f7O9i/5nw==}
- engines: {node: '>= 8.0'}
+ mysql2@3.11.4:
dependencies:
+ aws-ssl-profiles: 1.1.2
denque: 2.1.0
generate-function: 2.3.1
iconv-lite: 0.6.3
long: 5.2.3
- lru-cache: 8.0.5
+ lru.min: 1.1.1
named-placeholders: 1.1.3
seq-queue: 0.0.5
sqlstring: 2.3.3
- dev: false
- /named-placeholders/0.1.3:
- resolution: {integrity: sha512-Mt79RtxZ6MYTIEemPGv/YDKpbuavcAyGHb0r37xB2mnE5jej3uBzc4+nzOeoZ4nZiii1M32URKt9IjkSTZAmTA==}
+ named-placeholders@0.1.3:
dependencies:
lru-cache: 2.5.0
- dev: false
- /named-placeholders/1.1.3:
- resolution: {integrity: sha512-eLoBxg6wE/rZkJPhU/xRX1WTpkFEwDJEN96oxFrTsqBdbT5ec295Q+CoHrL9IT0DipqKhmGcaZmwOt8OON5x1w==}
- engines: {node: '>=12.0.0'}
+ named-placeholders@1.1.3:
dependencies:
lru-cache: 7.18.3
- dev: false
- /nan/2.18.0:
- resolution: {integrity: sha512-W7tfG7vMOGtD30sHoZSSc/JVYiyDPEyQVso/Zz+/uQd0B0L46gtC+pHha5FFMRpil6fm/AoEcRWyOVi4+E/f8w==}
- dev: false
+ nan@2.22.0:
optional: true
- /nano-memoize/2.0.0:
- resolution: {integrity: sha512-/m8k0gPWeZUYW8yQDchzxAkHt9Sw5DT8h+6QtRGu23OUj3d7qCXfO9+RU2O/zptPM1+fJCi4Tku4XoYN8s7AYQ==}
- dev: true
-
- /nano-memoize/3.0.14:
- resolution: {integrity: sha512-wvW3zWL5sFTfaPvdLZJwzP7lCh2gXejMACAOUTtE91D0SLQqCt8nvkR+uJjYd5OkWQ4M893JKnWAaObdCj2ADw==}
- dev: true
-
- /nanoid/3.3.7:
- resolution: {integrity: sha512-eSRppjcPIatRIMC1U6UngP8XFcz8MQWGQdt1MTBQ7NaAmvXDfvNxbvWV3x2y6CdEUciCSsDHDQZbhYaB8QEo2g==}
- engines: {node: ^10 || ^12 || ^13.7 || ^14 || >=15.0.1}
- hasBin: true
+ nano-memoize@3.0.16: {}
- /nanoid/4.0.2:
- resolution: {integrity: sha512-7ZtY5KTCNheRGfEFxnedV5zFiORN1+Y1N6zvPTnHQd8ENUvfaDBeuJDZb2bN/oXwXxu3qkTXDzy57W5vAmDTBw==}
- engines: {node: ^14 || ^16 || >=18}
- hasBin: true
- dev: false
+ nanoid@3.3.7: {}
- /nanoid/5.0.4:
- resolution: {integrity: sha512-vAjmBf13gsmhXSgBrtIclinISzFFy22WwCYoyilZlsrRXNIHSwgFQ1bEdjRwMT3aoadeIF6HMuDRlOxzfXV8ig==}
- engines: {node: ^18 || >=20}
- hasBin: true
- dev: false
+ nanoid@4.0.2: {}
- /native-duplexpair/1.0.0:
- resolution: {integrity: sha512-E7QQoM+3jvNtlmyfqRZ0/U75VFgCls+fSkbml2MpgWkWyz3ox8Y58gNhfuziuQYGNNQAbFZJQck55LHCnCK6CA==}
- dev: false
+ nanoid@5.0.8: {}
- /natural-compare-lite/1.4.0:
- resolution: {integrity: sha512-Tj+HTDSJJKaZnfiuw+iaF9skdPpTo2GtEly5JHnWV/hfv2Qj/9RKsGISQtLh2ox3l5EAGw487hnBee0sIJ6v2g==}
- dev: true
+ native-duplexpair@1.0.0: {}
- /natural-compare/1.4.0:
- resolution: {integrity: sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==}
- dev: true
+ natural-compare@1.4.0: {}
- /nearley/2.20.1:
- resolution: {integrity: sha512-+Mc8UaAebFzgV+KpI5n7DasuuQCHA89dmwm7JXw3TV43ukfNQ9DnBH3Mdb2g/I4Fdxc26pwimBWvjIw0UAILSQ==}
- hasBin: true
+ nearley@2.20.1:
dependencies:
commander: 2.20.3
moo: 0.5.2
railroad-diagrams: 1.0.0
randexp: 0.4.6
- dev: false
- /nebula-js-lib/0.3.2:
- resolution: {integrity: sha512-3BK0SMuxhXxqS1MClaIoGmHjZVJLLMXsSMTFvUAz9RklpfgdVFSO8MWPbkbOl0r5h43xtxxT5xx0PdsFn65CrQ==}
+ nebula-js-lib@0.3.2:
dependencies:
- '@grpc/grpc-js': 1.11.1
+ '@grpc/grpc-js': 1.12.2
'@protobuf-ts/plugin': 2.9.4
'@protobuf-ts/protoc': 2.9.4
'@protobuf-ts/runtime': 2.9.4
@@ -31736,26 +36267,16 @@ packages:
winston: 3.11.0
transitivePeerDependencies:
- supports-color
- dev: false
- /neo-async/2.6.2:
- resolution: {integrity: sha512-Yd3UES5mWCSqR+qNT93S3UoYUkqAZ9lLg8a7g9rimsWmYGK8cVToA4/sF3RrshdyV3sAGMXVUmpMYOw+dLpOuw==}
- dev: false
+ neo-async@2.6.2: {}
- /nessy/4.0.0:
- resolution: {integrity: sha512-XH4zOfmpxJhxXIp0Eb4vtJDtxfSjcbjY89/Rt64BNpkiBQ1mNumJWwDGq1kXWluCDQCu5LSrwABi58lWcfsWDQ==}
- engines: {node: '>=8'}
- dev: true
+ nessy@4.0.0: {}
- /nested-error-stacks/2.1.1:
- resolution: {integrity: sha512-9iN1ka/9zmX1ZvLV9ewJYEk9h7RyRRtqdK0woXcqohu8EWIerfPUjYJPg0ULy0UqP7cslmdGc8xKDJcojlKiaw==}
- dev: false
+ nested-error-stacks@2.1.1: {}
- /netlify/6.1.29:
- resolution: {integrity: sha512-Xr26CcTLt7ChN2cWysCWbAItJHmTufVhVkF3VEd25uOtBNufvg674Amw6bkyWwvfGJzrNP+tj07YVtsQGdlOZQ==}
- engines: {node: '>=8.3.0'}
+ netlify@6.1.29:
dependencies:
- '@netlify/open-api': 2.23.0
+ '@netlify/open-api': 2.34.0
'@netlify/zip-it-and-ship-it': 3.10.0
backoff: 2.5.0
clean-deep: 3.4.0
@@ -31770,8 +36291,8 @@ packages:
p-map: 3.0.0
p-wait-for: 3.2.0
parallel-transform: 1.2.0
- pump: 3.0.0
- qs: 6.12.0
+ pump: 3.0.2
+ qs: 6.13.1
rimraf: 3.0.2
tempy: 0.3.0
through2-filter: 3.0.0
@@ -31779,148 +36300,109 @@ packages:
transitivePeerDependencies:
- encoding
- supports-color
- dev: false
- /netmask/2.0.2:
- resolution: {integrity: sha512-dBpDMdxv9Irdq66304OLfEmQ9tbNRFnFTuZiLo+bD+r332bBmMJ8GBLXklIXXgxd3+v9+KUnZaUR5PJMa75Gsg==}
- engines: {node: '>= 0.4.0'}
- dev: false
+ netmask@2.0.2: {}
- /next-tick/1.1.0:
- resolution: {integrity: sha512-CXdUiJembsNjuToQvxayPZF9Vqht7hewsvy2sOWafLvi2awflj9mOC6bHIg50orX8IJvWKY9wYQ/zB2kogPslQ==}
- dev: false
+ next-tick@1.1.0: {}
- /nice-try/1.0.5:
- resolution: {integrity: sha512-1nh45deeb5olNY7eX82BkPO7SSxR5SSYJiPTrTdFUVYwAl8CKMA5N9PjTYkHiRjisVcxcQ1HXdLhx2qxxJzLNQ==}
- dev: true
+ next@15.0.3(@babel/core@8.0.0-alpha.13)(@opentelemetry/api@1.9.0)(babel-plugin-macros@3.1.0)(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106):
+ dependencies:
+ '@next/env': 15.0.3
+ '@swc/counter': 0.1.3
+ '@swc/helpers': 0.5.13
+ busboy: 1.6.0
+ caniuse-lite: 1.0.30001683
+ postcss: 8.4.31
+ react: 19.0.0-rc-66855b96-20241106
+ react-dom: 19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106)
+ styled-jsx: 5.1.6(@babel/core@8.0.0-alpha.13)(babel-plugin-macros@3.1.0)(react@19.0.0-rc-66855b96-20241106)
+ optionalDependencies:
+ '@next/swc-darwin-arm64': 15.0.3
+ '@next/swc-darwin-x64': 15.0.3
+ '@next/swc-linux-arm64-gnu': 15.0.3
+ '@next/swc-linux-arm64-musl': 15.0.3
+ '@next/swc-linux-x64-gnu': 15.0.3
+ '@next/swc-linux-x64-musl': 15.0.3
+ '@next/swc-win32-arm64-msvc': 15.0.3
+ '@next/swc-win32-x64-msvc': 15.0.3
+ '@opentelemetry/api': 1.9.0
+ sharp: 0.33.5
+ transitivePeerDependencies:
+ - '@babel/core'
+ - babel-plugin-macros
- /node-abort-controller/3.1.1:
- resolution: {integrity: sha512-AGK2yQKIjRuqnc6VkX2Xj5d+QW8xZ87pa1UK6yA6ouUyuxfHuMP6umE5QK7UmTeOAymo+Zx1Fxiuw9rVx8taHQ==}
- dev: false
+ nice-try@1.0.5: {}
- /node-cleanup/2.1.2:
- resolution: {integrity: sha512-qN8v/s2PAJwGUtr1/hYTpNKlD6Y9rc4p8KSmJXyGdYGZsDGKXrGThikLFP9OCHFeLeEpQzPwiAtdIvBLqm//Hw==}
- dev: true
+ node-abort-controller@3.1.1: {}
- /node-domexception/1.0.0:
- resolution: {integrity: sha512-/jKZoMpw0F8GRwl4/eLROPA3cfcXtLApP0QzLmUT/HuPCZWyB7IY9ZrMeKw2O/nFIqPQB3PVM9aYm0F312AXDQ==}
- engines: {node: '>=10.5.0'}
- dev: false
+ node-cleanup@2.1.2: {}
- /node-fetch-h2/2.3.0:
- resolution: {integrity: sha512-ofRW94Ab0T4AOh5Fk8t0h8OBWrmjb0SSB20xh1H8YnPV9EJ+f5AMoYSUQ2zgJ4Iq2HAK0I2l5/Nequ8YzFS3Hg==}
- engines: {node: 4.x || >=6.0.0}
+ node-domexception@1.0.0: {}
+
+ node-fetch-h2@2.3.0:
dependencies:
http2-client: 1.3.5
- dev: false
- /node-fetch/2.6.13:
- resolution: {integrity: sha512-StxNAxh15zr77QvvkmveSQ8uCQ4+v5FkvNTj0OESmiHu+VRi/gXArXtkWMElOsOUNLtUEvI4yS+rdtOHZTwlQA==}
- engines: {node: 4.x || >=6.0.0}
- peerDependencies:
- encoding: ^0.1.0
- peerDependenciesMeta:
- encoding:
- optional: true
+ node-fetch@2.6.13:
dependencies:
whatwg-url: 5.0.0
- dev: false
- /node-fetch/2.6.7:
- resolution: {integrity: sha512-ZjMPFEfVx5j+y2yF35Kzx5sF7kDzxuDj6ziH4FFbOp87zKDZNx8yExJIb05OGF4Nlt9IHFIMBkRl41VdvcNdbQ==}
- engines: {node: 4.x || >=6.0.0}
- peerDependencies:
- encoding: ^0.1.0
- peerDependenciesMeta:
- encoding:
- optional: true
+ node-fetch@2.6.7:
dependencies:
whatwg-url: 5.0.0
- dev: false
- /node-fetch/2.7.0:
- resolution: {integrity: sha512-c4FRfUm/dbcWZ7U+1Wq0AwCyFL+3nt2bEw05wfxSz+DWpWsitgmSgYmy2dQdWyKC1694ELPqMs/YzUSNozLt8A==}
- engines: {node: 4.x || >=6.0.0}
- peerDependencies:
- encoding: ^0.1.0
- peerDependenciesMeta:
- encoding:
- optional: true
+ node-fetch@2.7.0:
dependencies:
whatwg-url: 5.0.0
- /node-fetch/3.0.0-beta.9:
- resolution: {integrity: sha512-RdbZCEynH2tH46+tj0ua9caUHVWrd/RHnRfvly2EVdqGmI3ndS1Vn/xjm5KuGejDt2RNDQsVRLPNd2QPwcewVg==}
- engines: {node: ^10.17 || >=12.3}
+ node-fetch@3.0.0-beta.9:
dependencies:
data-uri-to-buffer: 3.0.1
fetch-blob: 2.1.2
transitivePeerDependencies:
- domexception
- dev: false
- /node-fetch/3.3.2:
- resolution: {integrity: sha512-dRB78srN/l6gqWulah9SrxeYnxeddIG30+GOqK/9OlLVyLg3HPnr6SqOWTWOXKRwC2eGYCkZ59NNuSgvSrpgOA==}
- engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0}
+ node-fetch@3.3.2:
dependencies:
data-uri-to-buffer: 4.0.1
fetch-blob: 3.2.0
formdata-polyfill: 4.0.10
- dev: false
- /node-forge/1.3.1:
- resolution: {integrity: sha512-dPEtOeMvF9VMcYV/1Wb8CPoVAXtp6MKMlcbAt4ddqmGqUJ6fQZFXkNZNkNlfevtNkGtaSoXf/vNNNSvgrdXwtA==}
- engines: {node: '>= 6.13.0'}
- dev: false
+ node-forge@1.3.1: {}
- /node-int64/0.4.0:
- resolution: {integrity: sha512-O5lz91xSOeoXP6DulyHfllpq+Eg00MWitZIbtPfoSEvqIHdl5gfcY6hYzDWnj0qD5tz52PI08u9qUvSVeUBeHw==}
- dev: true
+ node-int64@0.4.0: {}
- /node-mailjet/3.4.1:
- resolution: {integrity: sha512-m+msgBJYgwFbIZBIPOnsGOtBt9xP03UqmkmuEcgTcLlr/U1GUJQrVI7cDFRgujybb9Cl1wl4thIGyM3wt6X+zQ==}
+ node-mailjet@3.4.1:
dependencies:
json-bigint: 1.0.0
- qs: 6.12.0
- superagent: 7.1.5
- superagent-proxy: 3.0.0_superagent@7.1.5
+ qs: 6.13.1
+ superagent: 7.1.6
+ superagent-proxy: 3.0.0(superagent@7.1.6)
transitivePeerDependencies:
- supports-color
- dev: false
- /node-readfiles/0.2.0:
- resolution: {integrity: sha512-SU00ZarexNlE4Rjdm83vglt5Y9yiQ+XI1XpflWlb7q7UTN1JUItm69xMeiQCTxtTfnzt+83T8Cx+vI2ED++VDA==}
+ node-readfiles@0.2.0:
dependencies:
es6-promise: 3.3.1
- dev: false
- /node-releases/2.0.18:
- resolution: {integrity: sha512-d9VeXT4SJ7ZeOqGX6R5EM022wpL+eWPooLI+5UpWn2jCT1aosUQEhQP214x33Wkwx3JQMvIm+tIoVOdodFS40g==}
+ node-releases@2.0.18: {}
- /node-source-walk/4.3.0:
- resolution: {integrity: sha512-8Q1hXew6ETzqKRAs3jjLioSxNfT1cx74ooiF8RlAONwVMcfq+UdzLC2eB5qcPldUxaE5w3ytLkrmV1TGddhZTA==}
- engines: {node: '>=6.0'}
+ node-source-walk@4.3.0:
dependencies:
- '@babel/parser': 7.25.3
- dev: false
+ '@babel/parser': 7.26.2
- /node-ssh/12.0.5:
- resolution: {integrity: sha512-uN2GTGdBRUUKkZmcNBr9OM+xKL6zq74emnkSyb1TshBdVWegj3boue6QallQeqZzo7YGVheP5gAovUL+8hZSig==}
- engines: {node: '>= 10'}
+ node-ssh@12.0.5:
dependencies:
is-stream: 2.0.1
make-dir: 3.1.0
sb-promise-queue: 2.1.0
sb-scandir: 3.1.0
shell-escape: 0.2.0
- ssh2: 1.14.0
- dev: false
+ ssh2: 1.16.0
- /node-telegram-bot-api/0.54.0:
- resolution: {integrity: sha512-ckrpY/ABFLwA1DUzEc9iEQtsgQs8WcGC6m7iJ1bbnH+c7EOLnMdCfw+hUesyfuwOfAkkECYFxvoW4lJNy+Oztw==}
- engines: {node: '>=0.12'}
+ node-telegram-bot-api@0.54.0:
dependencies:
- array.prototype.findindex: 2.2.2
+ array.prototype.findindex: 2.2.3
bl: 1.2.3
bluebird: 3.7.2
debug: 3.2.7
@@ -31930,33 +36412,18 @@ packages:
mime: 1.6.0
pump: 2.0.1
request: 2.88.2
- request-promise: 4.2.6_request@2.88.2
+ request-promise: 4.2.6(request@2.88.2)
transitivePeerDependencies:
- supports-color
- dev: false
-
- /nodemailer/6.9.3:
- resolution: {integrity: sha512-fy9v3NgTzBngrMFkDsKEj0r02U7jm6XfC3b52eoNV+GCrGj+s8pt5OqhiJdWKuw51zCTdiNR/IUD1z33LIIGpg==}
- engines: {node: '>=6.0.0'}
- dev: false
- /nodemailer/6.9.5:
- resolution: {integrity: sha512-/dmdWo62XjumuLc5+AYQZeiRj+PRR8y8qKtFCOyuOl1k/hckZd8durUUHs/ucKx6/8kN+wFxqKJlQ/LK/qR5FA==}
- engines: {node: '>=6.0.0'}
- dev: false
+ nodemailer@6.9.13: {}
- /nodemailer/6.9.8:
- resolution: {integrity: sha512-cfrYUk16e67Ks051i4CntM9kshRYei1/o/Gi8K1d+R34OIs21xdFnW7Pt7EucmVKA0LKtqUGNcjMZ7ehjl49mQ==}
- engines: {node: '>=6.0.0'}
- dev: false
+ nodemailer@6.9.16: {}
- /nodemon/3.1.7:
- resolution: {integrity: sha512-hLj7fuMow6f0lbB0cD14Lz2xNjwsyruH251Pk4t/yIitCFJbmY1myuLlHm/q06aST4jg6EgAh74PIBBrRqpVAQ==}
- engines: {node: '>=10'}
- hasBin: true
+ nodemon@3.1.7:
dependencies:
chokidar: 3.6.0
- debug: 4.3.6_supports-color@5.5.0
+ debug: 4.3.7(supports-color@5.5.0)
ignore-by-default: 1.0.1
minimatch: 3.1.2
pstree.remy: 1.1.8
@@ -31965,143 +36432,93 @@ packages:
supports-color: 5.5.0
touch: 3.1.1
undefsafe: 2.0.5
- dev: true
- /normalize-package-data/2.5.0:
- resolution: {integrity: sha512-/5CMN3T0R4XTj4DcGaexo+roZSdSFW/0AOOTROrjxzCG1wrWXEsGbRKevjlIL+ZDE4sZlJr5ED4YW0yqmkK+eA==}
+ normalize-package-data@2.5.0:
dependencies:
hosted-git-info: 2.8.9
resolve: 1.22.8
semver: 5.7.2
validate-npm-package-license: 3.0.4
- dev: true
- /normalize-package-data/3.0.3:
- resolution: {integrity: sha512-p2W1sgqij3zMMyRC067Dg16bfzVH+w7hyegmpIvZ4JNjqtGOVAIvLmjBx3yP7YTe9vKJgkoNOPjwQGogDoMXFA==}
- engines: {node: '>=10'}
+ normalize-package-data@3.0.3:
dependencies:
hosted-git-info: 4.1.0
is-core-module: 2.15.1
semver: 7.6.3
validate-npm-package-license: 3.0.4
- dev: true
- /normalize-path/2.1.1:
- resolution: {integrity: sha512-3pKJwH184Xo/lnH6oyP1q2pMd7HcypqqmRs91/6/i2CGtWwIKGCkOOMTm/zXbgTEWHw1uNpNi/igc3ePOYHb6w==}
- engines: {node: '>=0.10.0'}
+ normalize-path@2.1.1:
dependencies:
remove-trailing-separator: 1.1.0
- dev: false
- /normalize-path/3.0.0:
- resolution: {integrity: sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==}
- engines: {node: '>=0.10.0'}
+ normalize-path@3.0.0: {}
- /normalize-url/6.1.0:
- resolution: {integrity: sha512-DlL+XwOy3NxAQ8xuC0okPgK46iuVNAK01YN7RueYBqqFeGsBjV9XmCAzAdgt+667bCl5kPh9EqKKDwnaPG1I7A==}
- engines: {node: '>=10'}
- dev: false
+ normalize-url@6.1.0: {}
- /normalize-url/8.0.0:
- resolution: {integrity: sha512-uVFpKhj5MheNBJRTiMZ9pE/7hD1QTeEvugSJW/OmLzAp78PB5O6adfMNTvmfKhXBkvCzC+rqifWcVYpGFwTjnw==}
- engines: {node: '>=14.16'}
- dev: false
+ normalize-url@8.0.1: {}
- /npm-normalize-package-bin/1.0.1:
- resolution: {integrity: sha512-EPfafl6JL5/rU+ot6P3gRSCpPDW5VmIzX959Ob1+ySFUuuYHWHekXpwdUZcKP5C+DS4GEtdJluwBjnsNDl+fSA==}
- dev: false
+ npm-normalize-package-bin@1.0.1: {}
- /npm-package-arg/8.1.5:
- resolution: {integrity: sha512-LhgZrg0n0VgvzVdSm1oiZworPbTxYHUJCgtsJW8mGvlDpxTM1vSJc3m5QZeUkhAHIzbz3VCHd/R4osi1L1Tg/Q==}
- engines: {node: '>=10'}
+ npm-package-arg@8.1.5:
dependencies:
hosted-git-info: 4.1.0
semver: 7.6.3
validate-npm-package-name: 3.0.0
- dev: true
- /npm-run-path/2.0.2:
- resolution: {integrity: sha512-lJxZYlT4DW/bRUtFh1MQIWqmLwQfAxnqWG4HhEdjMlkrJYnJn0Jrr2u3mgxqaWsdiBc76TYkTG/mhrnYTuzfHw==}
- engines: {node: '>=4'}
+ npm-run-path@2.0.2:
dependencies:
path-key: 2.0.1
- dev: true
- /npm-run-path/4.0.1:
- resolution: {integrity: sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw==}
- engines: {node: '>=8'}
+ npm-run-path@4.0.1:
dependencies:
path-key: 3.1.1
- dev: true
- /npmlog/4.1.2:
- resolution: {integrity: sha512-2uUqazuKlTaSI/dC8AzicUck7+IrEaOnN/e0jd3Xtt1KcGpwx30v50mL7oPyr/h9bL3E4aZccVwpwP+5W9Vjkg==}
- deprecated: This package is no longer supported.
- requiresBuild: true
+ npmlog@4.1.2:
dependencies:
are-we-there-yet: 1.1.7
console-control-strings: 1.1.0
gauge: 2.7.4
set-blocking: 2.0.0
- dev: true
optional: true
- /nth-check/2.1.1:
- resolution: {integrity: sha512-lqjrjmaOoAnWfMmBPL+XNnynZh2+swxiX3WUE0s4yEHI6m+AwrK2UZOimIRl3X/4QctVqS8AiZjFqyOGrMXb/w==}
+ nth-check@2.1.1:
dependencies:
boolbase: 1.0.0
- dev: false
- /number-is-nan/1.0.1:
- resolution: {integrity: sha512-4jbtZXNAsfZbAHiiqjLPBiCl16dES1zI4Hpzzxw61Tk+loF+sBDBKx1ICKKKwIqQ7M0mFn1TmkN7euSncWgHiQ==}
- engines: {node: '>=0.10.0'}
- dev: true
+ number-is-nan@1.0.1:
optional: true
- /oas-kit-common/1.0.8:
- resolution: {integrity: sha512-pJTS2+T0oGIwgjGpw7sIRU8RQMcUoKCDWFLdBqKB2BNmGpbBMH2sdqAaOXUg8OzonZHU0L7vfJu1mJFEiYDWOQ==}
+ oas-kit-common@1.0.8:
dependencies:
fast-safe-stringify: 2.1.1
- dev: false
- /oas-linter/3.2.2:
- resolution: {integrity: sha512-KEGjPDVoU5K6swgo9hJVA/qYGlwfbFx+Kg2QB/kd7rzV5N8N5Mg6PlsoCMohVnQmo+pzJap/F610qTodKzecGQ==}
+ oas-linter@3.2.2:
dependencies:
'@exodus/schemasafe': 1.3.0
should: 13.2.3
yaml: 1.10.2
- dev: false
- /oas-normalize/7.1.1:
- resolution: {integrity: sha512-5ZSkbkhiDN5K0eTIkGkDAef6ta6l713/6XIc1wfnZZzjG13RSR9M6ON13nY5opwNjhKnXhssIK48cIUVs6z3gA==}
- engines: {node: '>=14'}
+ oas-normalize@7.1.1:
dependencies:
- '@readme/openapi-parser': 2.5.0_openapi-types@12.1.3
+ '@readme/openapi-parser': 2.6.0(openapi-types@12.1.3)
js-yaml: 4.1.0
node-fetch: 2.7.0
openapi-types: 12.1.3
swagger2openapi: 7.0.8
transitivePeerDependencies:
- encoding
- dev: false
- /oas-resolver/2.5.6:
- resolution: {integrity: sha512-Yx5PWQNZomfEhPPOphFbZKi9W93CocQj18NlD2Pa4GWZzdZpSJvYwoiuurRI7m3SpcChrnO08hkuQDL3FGsVFQ==}
- hasBin: true
+ oas-resolver@2.5.6:
dependencies:
node-fetch-h2: 2.3.0
oas-kit-common: 1.0.8
reftools: 1.1.9
yaml: 1.10.2
yargs: 17.7.2
- dev: false
- /oas-schema-walker/1.1.5:
- resolution: {integrity: sha512-2yucenq1a9YPmeNExoUa9Qwrt9RFkjqaMAA1X+U7sbb0AqBeTIdMHky9SQQ6iN94bO5NW0W4TRYXerG+BdAvAQ==}
- dev: false
+ oas-schema-walker@1.1.5: {}
- /oas-validator/5.0.8:
- resolution: {integrity: sha512-cu20/HE5N5HKqVygs3dt94eYJfBi0TsZvPVXDhbXQHiEityDN+RROTleefoKRKKJ9dFAF2JBkDHgvWj0sjKGmw==}
+ oas-validator@5.0.8:
dependencies:
call-me-maybe: 1.0.2
oas-kit-common: 1.0.8
@@ -32111,15 +36528,11 @@ packages:
reftools: 1.1.9
should: 13.2.3
yaml: 1.10.2
- dev: false
- /oas/18.4.4:
- resolution: {integrity: sha512-m1r6vPRnNbPVfhXWiuFuK3JlneI0717iMHqsj9MaCF/lCQ7nAdX2sklqgQmKnnG8Jg6INHgP3oaHcHSuBfZooQ==}
- engines: {node: '>=12'}
- hasBin: true
+ oas@18.4.4:
dependencies:
'@readme/json-schema-ref-parser': 1.2.0
- '@types/json-schema': 7.0.13
+ '@types/json-schema': 7.0.15
cardinal: 2.1.1
chalk: 4.1.2
glob: 8.1.0
@@ -32128,197 +36541,120 @@ packages:
json2yaml: 1.1.0
jsonpath: 1.1.1
jsonpointer: 5.0.1
- memoizee: 0.4.15
+ memoizee: 0.4.17
minimist: 1.2.8
oas-normalize: 7.1.1
openapi-types: 12.1.3
- path-to-regexp: 6.2.1
+ path-to-regexp: 6.3.0
swagger-inline: 6.1.1
transitivePeerDependencies:
- encoding
- dev: false
-
- /oauth-1.0a/2.2.6:
- resolution: {integrity: sha512-6bkxv3N4Gu5lty4viIcIAnq5GbxECviMBeKR3WX/q87SPQ8E8aursPZUtsXDnxCs787af09WPRBLqYrf/lwoYQ==}
- dev: false
-
- /oauth-sign/0.9.0:
- resolution: {integrity: sha512-fexhUFFPTGV8ybAtSIGbV6gOkSv8UtRbDBnAyLQw4QPKkgNlsH2ByPGtMUqdWkos6YCRmAqViwgZrJc/mRDzZQ==}
- /object-assign/4.1.1:
- resolution: {integrity: sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==}
- engines: {node: '>=0.10.0'}
+ oauth-1.0a@2.2.6: {}
- /object-hash/3.0.0:
- resolution: {integrity: sha512-RSn9F68PjH9HqtltsSnqYC1XXoWe9Bju5+213R98cNGttag9q9yAOTzdbsqvIa7aNm5WffBZFpWYr2aWrklWAw==}
- engines: {node: '>= 6'}
- dev: false
+ oauth-sign@0.9.0: {}
- /object-inspect/1.12.3:
- resolution: {integrity: sha512-geUvdk7c+eizMNUDkRpW1wJwgfOiOeHbxBR/hLXK1aT6zmVSO0jsQcs7fj6MGw89jC/cjGfLcNOrtMYtGqm81g==}
- dev: true
+ object-assign@4.1.1: {}
- /object-inspect/1.13.2:
- resolution: {integrity: sha512-IRZSRuzJiynemAXPYtPe5BoI/RESNYR7TYm50MC5Mqbd3Jmw5y790sErYw3V6SryFJD64b74qQQs9wn5Bg/k3g==}
- engines: {node: '>= 0.4'}
+ object-hash@3.0.0: {}
- /object-is/1.1.5:
- resolution: {integrity: sha512-3cyDsyHgtmi7I7DfSSI2LDp6SK2lwvtbg0p0R1e0RvTqF5ceGx+K2dfSjm1bKDMVCFEDAQvy+o8c6a7VujOddw==}
- engines: {node: '>= 0.4'}
- dependencies:
- call-bind: 1.0.7
- define-properties: 1.2.1
- dev: true
+ object-inspect@1.13.3: {}
- /object-keys/1.1.1:
- resolution: {integrity: sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==}
- engines: {node: '>= 0.4'}
+ object-keys@1.1.1: {}
- /object.assign/4.1.5:
- resolution: {integrity: sha512-byy+U7gp+FVwmyzKPYhW2h5l3crpmGsxl7X2s8y43IgxvG4g3QZ6CffDtsNQy1WsmZpQbO+ybo0AlW7TY6DcBQ==}
- engines: {node: '>= 0.4'}
+ object.assign@4.1.5:
dependencies:
call-bind: 1.0.7
define-properties: 1.2.1
has-symbols: 1.0.3
object-keys: 1.1.1
- /object.entries/1.1.8:
- resolution: {integrity: sha512-cmopxi8VwRIAw/fkijJohSfpef5PdN0pMQJN6VC/ZKvn0LIknWD8KtgY6KlQdEc4tIjcQ3HxSMmnvtzIscdaYQ==}
- engines: {node: '>= 0.4'}
+ object.entries@1.1.8:
dependencies:
call-bind: 1.0.7
define-properties: 1.2.1
es-object-atoms: 1.0.0
- dev: true
- /object.fromentries/2.0.8:
- resolution: {integrity: sha512-k6E21FzySsSK5a21KRADBd/NGneRegFO5pLHfdQLpRDETUNJueLXs3WCzyQ3tFRDYgbq3KHGXfTbi2bs8WQ6rQ==}
- engines: {node: '>= 0.4'}
+ object.fromentries@2.0.8:
dependencies:
call-bind: 1.0.7
define-properties: 1.2.1
- es-abstract: 1.23.3
+ es-abstract: 1.23.5
es-object-atoms: 1.0.0
- dev: true
- /object.groupby/1.0.3:
- resolution: {integrity: sha512-+Lhy3TQTuzXI5hevh8sBGqbmurHbbIjAi0Z4S63nthVLmLxfbj4T54a4CfZrXIrt9iP4mVAPYMo/v99taj3wjQ==}
- engines: {node: '>= 0.4'}
+ object.groupby@1.0.3:
dependencies:
call-bind: 1.0.7
define-properties: 1.2.1
- es-abstract: 1.23.3
- dev: true
+ es-abstract: 1.23.5
- /object.values/1.2.0:
- resolution: {integrity: sha512-yBYjY9QX2hnRmZHAjG/f13MzmBzxzYgQhFrke06TTyKY5zSTEqkOeukBzIdVA3j3ulu8Qa3MbVFShV7T2RmGtQ==}
- engines: {node: '>= 0.4'}
+ object.values@1.2.0:
dependencies:
call-bind: 1.0.7
define-properties: 1.2.1
es-object-atoms: 1.0.0
- dev: true
- /obliterator/1.6.1:
- resolution: {integrity: sha512-9WXswnqINnnhOG/5SLimUlzuU1hFJUc8zkwyD59Sd+dPOMf05PmnYG/d6Q7HZ+KmgkZJa1PxRso6QdM3sTNHig==}
- dev: false
+ obliterator@1.6.1: {}
- /omit.js/2.0.2:
- resolution: {integrity: sha512-hJmu9D+bNB40YpL9jYebQl4lsTW6yEHRTroJzNLqQJYHm7c+NQnJGfZmIWh8S3q3KoaxV1aLhV6B3+0N0/kyJg==}
- dev: false
+ omit.js@2.0.2: {}
- /on-finished/2.4.1:
- resolution: {integrity: sha512-oVlzkg3ENAhCk2zdv7IJwd/QUD4z2RxRwpkcGY8psCVcCYZNq4wYnVWALHM+brtuJjePWiYF/ClmuDr8Ch5+kg==}
- engines: {node: '>= 0.8'}
+ on-finished@2.4.1:
dependencies:
ee-first: 1.1.1
- dev: false
- /once/1.4.0:
- resolution: {integrity: sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==}
+ once@1.4.0:
dependencies:
wrappy: 1.0.2
- /one-time/1.0.0:
- resolution: {integrity: sha512-5DXOiRKwuSEcQ/l0kGCF6Q3jcADFv5tSmRaJck/OqkVFcOzutB134KRSfF0xDrL39MNnqxbHBbUUcjZIhTgb2g==}
+ one-time@1.0.0:
dependencies:
fn.name: 1.1.0
- dev: false
- /onetime/5.1.2:
- resolution: {integrity: sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg==}
- engines: {node: '>=6'}
+ onetime@5.1.2:
dependencies:
mimic-fn: 2.1.0
- /ongage/1.1.7_node-fetch@2.7.0:
- resolution: {integrity: sha512-a5wzOuudt3AGcM7WquLjEXfoN4k618CM51h8iUOdEJPdcqeavjqLAn7SdFBHaUNIhHhgnWpdyXE5DVAufq2Sew==}
- engines: {node: '>=10'}
- peerDependencies:
- node-fetch: ^2.6.1
+ ongage@1.1.7(node-fetch@2.7.0):
dependencies:
lodash: 4.17.21
node-fetch: 2.7.0
- qs: 6.12.0
- dev: false
+ qs: 6.13.1
- /open/7.4.2:
- resolution: {integrity: sha512-MVHddDVweXZF3awtlAS+6pgKLlm/JgxZ90+/NBurBoQctVOOB/zDdVjcyPzQ+0laDGbsWgrRkflI65sQeOgT9Q==}
- engines: {node: '>=8'}
+ open@7.4.2:
dependencies:
is-docker: 2.2.1
is-wsl: 2.2.0
- dev: false
- /open/8.4.2:
- resolution: {integrity: sha512-7x81NCL719oNbsq/3mh+hVrAWmFuEYUqrq/Iw3kUzH8ReypT9QQ0BLoJS7/G9k6N81XjW4qHWtjWwe/9eLy1EQ==}
- engines: {node: '>=12'}
+ open@8.4.2:
dependencies:
define-lazy-prop: 2.0.0
is-docker: 2.2.1
is-wsl: 2.2.0
- dev: false
- /openai/3.3.0:
- resolution: {integrity: sha512-uqxI/Au+aPRnsaQRe8CojU0eCR7I0mBiKjD3sNMzY6DaC1ZVrc85u98mtJW6voDug8fgGN+DIZmTDxTthxb7dQ==}
+ openai@3.3.0:
dependencies:
axios: 0.26.1
form-data: 4.0.1
transitivePeerDependencies:
- debug
- dev: false
- /openapi-fetch/0.9.8:
- resolution: {integrity: sha512-zM6elH0EZStD/gSiNlcPrzXcVQ/pZo3BDvC6CDwRDUt1dDzxlshpmQnpD6cZaJ39THaSmwVCxxRrPKNM1hHrDg==}
+ openapi-fetch@0.9.8:
dependencies:
openapi-typescript-helpers: 0.0.8
- dev: false
- /openapi-types/12.1.3:
- resolution: {integrity: sha512-N4YtSYJqghVu4iek2ZUvcN/0aqH1kRDuNqzcycDxhOUpg7GdvLa2F3DgS6yBNhInhv2r/6I0Flkn7CqL8+nIcw==}
- dev: false
+ openapi-types@12.1.3: {}
- /openapi-typescript-helpers/0.0.8:
- resolution: {integrity: sha512-1eNjQtbfNi5Z/kFhagDIaIRj6qqDzhjNJKz8cmMW0CVdGwT6e1GLbAfgI0d28VTJa1A8jz82jm/4dG8qNoNS8g==}
- dev: false
+ openapi-typescript-helpers@0.0.8: {}
- /opencollective-postinstall/2.0.3:
- resolution: {integrity: sha512-8AV/sCtuzUeTo8gQK5qDZzARrulB3egtLzFgteqB2tcT4Mw7B8Kt7JcDHmltjz6FOAHsvTevk70gZEbhM4ZS9Q==}
- hasBin: true
- dev: true
+ opencollective-postinstall@2.0.3: {}
- /opengraph-io/2.0.0:
- resolution: {integrity: sha512-R0L0zJ6cnUcUnjPKNOAllaQuII0ZfRZhMAwdu0N5fdC48JiceKzD+D/pStg6NpobwXa8aRZIME617gbXMKhp7g==}
+ opengraph-io@2.0.0:
dependencies:
lodash: 4.17.21
request: 2.88.2
- request-promise: 4.2.6_request@2.88.2
- dev: false
+ request-promise: 4.2.6(request@2.88.2)
- /optionator/0.8.3:
- resolution: {integrity: sha512-+IW9pACdk3XWmmTXG8m3upGUJst5XRGzxMRjXzAuJ1XnIFNvfhjjIuYkDvysnPQ7qzqVzLt78BCruntqRhWQbA==}
- engines: {node: '>= 0.8.0'}
+ optionator@0.8.3:
dependencies:
deep-is: 0.1.4
fast-levenshtein: 2.0.6
@@ -32326,165 +36662,101 @@ packages:
prelude-ls: 1.1.2
type-check: 0.3.2
word-wrap: 1.2.5
- dev: false
- /optionator/0.9.3:
- resolution: {integrity: sha512-JjCoypp+jKn1ttEFExxhetCKeJt9zhAgAve5FXHixTvFDW/5aEktX9bufBKLRRMdU7bNtpLfcGu94B3cdEJgjg==}
- engines: {node: '>= 0.8.0'}
+ optionator@0.9.4:
dependencies:
- '@aashutoshrathi/word-wrap': 1.2.6
deep-is: 0.1.4
fast-levenshtein: 2.0.6
levn: 0.4.1
prelude-ls: 1.2.1
type-check: 0.4.0
- dev: true
+ word-wrap: 1.2.5
- /ora/5.4.1:
- resolution: {integrity: sha512-5b6Y85tPxZZ7QytO+BQzysW31HJku27cRIlkbAXaNx+BdcVi+LlRFmVXzeF6a7JCwJpyw5c4b+YSVImQIrBpuQ==}
- engines: {node: '>=10'}
+ ora@5.4.1:
dependencies:
bl: 4.1.0
chalk: 4.1.2
cli-cursor: 3.1.0
- cli-spinners: 2.9.1
+ cli-spinners: 2.9.2
is-interactive: 1.0.0
is-unicode-supported: 0.1.0
log-symbols: 4.1.0
strip-ansi: 6.0.1
wcwidth: 1.0.1
- dev: false
- /os-tmpdir/1.0.2:
- resolution: {integrity: sha512-D2FR03Vir7FIu45XBY20mTb+/ZSWB00sjU9jdQXt83gDrI4Ztz5Fs7/yy74g2N5SVQY4xY1qDr4rNddwYRVX0g==}
- engines: {node: '>=0.10.0'}
- dev: false
+ os-tmpdir@1.0.2: {}
- /p-cancelable/2.1.1:
- resolution: {integrity: sha512-BZOr3nRQHOntUjTrH8+Lh54smKHoHyur8We1V8DSMVrl5A2malOOwuJRnKRDjSnkoeBh4at6BwEnb5I7Jl31wg==}
- engines: {node: '>=8'}
- dev: false
+ p-cancelable@2.1.1: {}
- /p-cancelable/3.0.0:
- resolution: {integrity: sha512-mlVgR3PGuzlo0MmTdk4cXqXWlwQDLnONTAg6sm62XkMJEiRxN3GL3SffkYvqwonbkJBcrI7Uvv5Zh9yjvn2iUw==}
- engines: {node: '>=12.20'}
- dev: false
+ p-cancelable@3.0.0: {}
- /p-cancelable/4.0.1:
- resolution: {integrity: sha512-wBowNApzd45EIKdO1LaU+LrMBwAcjfPaYtVzV3lmfM3gf8Z4CHZsiIqlM8TZZ8okYvh5A1cP6gTfCRQtwUpaUg==}
- engines: {node: '>=14.16'}
- dev: false
+ p-cancelable@4.0.1: {}
- /p-defer/3.0.0:
- resolution: {integrity: sha512-ugZxsxmtTln604yeYd29EGrNhazN2lywetzpKhfmQjW/VJmhpDmWbiX+h0zL8V91R0UXkhb3KtPmyq9PZw3aYw==}
- engines: {node: '>=8'}
- dev: false
+ p-defer@3.0.0: {}
- /p-event/4.2.0:
- resolution: {integrity: sha512-KXatOjCRXXkSePPb1Nbi0p0m+gQAwdlbhi4wQKJPI1HsMQS9g+Sqp2o+QHziPr7eYJyOZet836KoHEVM1mwOrQ==}
- engines: {node: '>=8'}
+ p-event@4.2.0:
dependencies:
p-timeout: 3.2.0
- dev: false
-
- /p-finally/1.0.0:
- resolution: {integrity: sha512-LICb2p9CB7FS+0eR1oqWnHhp0FljGLZCWBE9aix0Uye9W8LTQPwMTYVGWQWIw9RdQiDg4+epXQODwIYJtSJaow==}
- engines: {node: '>=4'}
- /p-limit/2.3.0:
- resolution: {integrity: sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==}
- engines: {node: '>=6'}
+ p-finally@1.0.0: {}
+
+ p-limit@2.3.0:
dependencies:
p-try: 2.2.0
- /p-limit/3.1.0:
- resolution: {integrity: sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==}
- engines: {node: '>=10'}
+ p-limit@3.1.0:
dependencies:
yocto-queue: 0.1.0
- /p-limit/4.0.0:
- resolution: {integrity: sha512-5b0R4txpzjPWVw/cXXUResoD4hb6U/x9BH08L7nw+GN1sezDzPdxeRvpc9c433fZhBan/wusjbCsqwqm4EIBIQ==}
- engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0}
+ p-limit@4.0.0:
dependencies:
yocto-queue: 1.1.1
- dev: true
- /p-locate/4.1.0:
- resolution: {integrity: sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==}
- engines: {node: '>=8'}
+ p-locate@4.1.0:
dependencies:
p-limit: 2.3.0
- /p-locate/5.0.0:
- resolution: {integrity: sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==}
- engines: {node: '>=10'}
+ p-locate@5.0.0:
dependencies:
p-limit: 3.1.0
- dev: true
- /p-locate/6.0.0:
- resolution: {integrity: sha512-wPrq66Llhl7/4AGC6I+cqxT07LhXvWL08LNXz1fENOw0Ap4sRZZ/gZpTTJ5jpurzzzfS2W/Ge9BY3LgLjCShcw==}
- engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0}
+ p-locate@6.0.0:
dependencies:
p-limit: 4.0.0
- dev: true
- /p-map/3.0.0:
- resolution: {integrity: sha512-d3qXVTF/s+W+CdJ5A29wywV2n8CQQYahlgz2bFiA+4eVNJbHJodPZ+/gXwPGh0bOqA+j8S+6+ckmvLGPk1QpxQ==}
- engines: {node: '>=8'}
+ p-map@3.0.0:
dependencies:
aggregate-error: 3.1.0
- dev: false
- /p-map/4.0.0:
- resolution: {integrity: sha512-/bjOqmgETBYB5BoEeGVea8dmvHb2m9GLy1E9W43yeyfP6QQCZGFNa+XRceJEuDB6zqr+gKpIAmlLebMpykw/MQ==}
- engines: {node: '>=10'}
+ p-map@4.0.0:
dependencies:
aggregate-error: 3.1.0
- dev: true
- /p-queue/6.6.2:
- resolution: {integrity: sha512-RwFpb72c/BhQLEXIZ5K2e+AhgNVmIejGlTgiB9MzZ0e93GRvqZ7uSi0dvRF7/XIXDeNkra2fNHBxTyPDGySpjQ==}
- engines: {node: '>=8'}
+ p-queue@6.6.2:
dependencies:
eventemitter3: 4.0.7
p-timeout: 3.2.0
- dev: false
- /p-retry/4.6.2:
- resolution: {integrity: sha512-312Id396EbJdvRONlngUx0NydfrIQ5lsYu0znKVUzVvArzEIt08V1qhtyESbGVd1FGX7UKtiFp5uwKZdM8wIuQ==}
- engines: {node: '>=8'}
+ p-retry@4.6.2:
dependencies:
'@types/retry': 0.12.0
retry: 0.13.1
- dev: false
- /p-timeout/3.2.0:
- resolution: {integrity: sha512-rhIwUycgwwKcP9yTOOFK/AKsAopjjCakVqLHePO3CC6Mir1Z99xT+R63jZxAT5lFZLa2inS5h+ZS2GvR99/FBg==}
- engines: {node: '>=8'}
+ p-timeout@3.2.0:
dependencies:
p-finally: 1.0.0
- dev: false
- /p-try/2.2.0:
- resolution: {integrity: sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==}
- engines: {node: '>=6'}
+ p-try@2.2.0: {}
- /p-wait-for/3.2.0:
- resolution: {integrity: sha512-wpgERjNkLrBiFmkMEjuZJEWKKDrNfHCKA1OhyN1wg1FrLkULbviEy6py1AyJUgZ72YWFbZ38FIpnqvVqAlDUwA==}
- engines: {node: '>=8'}
+ p-wait-for@3.2.0:
dependencies:
p-timeout: 3.2.0
- dev: false
- /pac-proxy-agent/5.0.0:
- resolution: {integrity: sha512-CcFG3ZtnxO8McDigozwE3AqAw15zDvGH+OjXO4kzf7IkEKkQ4gxQ+3sdF50WmhQ4P/bVusXcqNE2S3XrNURwzQ==}
- engines: {node: '>= 8'}
+ pac-proxy-agent@5.0.0:
dependencies:
'@tootallnate/once': 1.1.2
agent-base: 6.0.2
- debug: 4.3.6
+ debug: 4.3.7(supports-color@9.4.0)
get-uri: 3.0.2
http-proxy-agent: 4.0.1
https-proxy-agent: 5.0.1
@@ -32493,86 +36765,54 @@ packages:
socks-proxy-agent: 5.0.1
transitivePeerDependencies:
- supports-color
- dev: false
- /pac-proxy-agent/7.0.1:
- resolution: {integrity: sha512-ASV8yU4LLKBAjqIPMbrgtaKIvxQri/yh2OpI+S6hVa9JRkUI3Y3NPFbfngDtY7oFtSMD3w31Xns89mDa3Feo5A==}
- engines: {node: '>= 14'}
+ pac-proxy-agent@7.0.2:
dependencies:
'@tootallnate/quickjs-emscripten': 0.23.0
- agent-base: 7.1.0
- debug: 4.3.6
- get-uri: 6.0.2
- http-proxy-agent: 7.0.0
- https-proxy-agent: 7.0.2
- pac-resolver: 7.0.0
- socks-proxy-agent: 8.0.2
+ agent-base: 7.1.1
+ debug: 4.3.4
+ get-uri: 6.0.3
+ http-proxy-agent: 7.0.2
+ https-proxy-agent: 7.0.5
+ pac-resolver: 7.0.1
+ socks-proxy-agent: 8.0.4
transitivePeerDependencies:
- supports-color
- dev: false
- /pac-resolver/5.0.1:
- resolution: {integrity: sha512-cy7u00ko2KVgBAjuhevqpPeHIkCIqPe1v24cydhWjmeuzaBfmUWFCZJ1iAh5TuVzVZoUzXIW7K8sMYOZ84uZ9Q==}
- engines: {node: '>= 8'}
+ pac-resolver@5.0.1:
dependencies:
degenerator: 3.0.4
- ip: 1.1.8
+ ip: 1.1.9
netmask: 2.0.2
- dev: false
- /pac-resolver/7.0.0:
- resolution: {integrity: sha512-Fd9lT9vJbHYRACT8OhCbZBbxr6KRSawSovFpy8nDGshaK99S/EBhVIHp9+crhxrsZOuvLpgL1n23iyPg6Rl2hg==}
- engines: {node: '>= 14'}
+ pac-resolver@7.0.1:
dependencies:
degenerator: 5.0.1
- ip: 1.1.8
netmask: 2.0.2
- dev: false
- /package-lock-only/0.0.4:
- resolution: {integrity: sha512-fV1YHeTMWH5LKmdVqfWskm2/SG0iF2IrxJn3ziaPVx9CnpecGJzt8xXtLV+CYINENZwPFMtbxO5qupz0asNz1A==}
- requiresBuild: true
+ package-lock-only@0.0.4:
dependencies:
chalk: 2.4.2
- dev: false
-
- /package/1.0.1:
- resolution: {integrity: sha512-g6xZR6CO7okjie83sIRJodgGvaXqymfE5GLhN8N2TmZGShmHc/V23hO/vWbdnuy3D81As3pfovw72gGi42l9qA==}
- engines: {node: '>= 0.6.0'}
- dev: true
- /packet-reader/1.0.0:
- resolution: {integrity: sha512-HAKu/fG3HpHFO0AA8WE8q2g+gBJaZ9MG7fcKk+IJPLTGAD6Psw4443l+9DGRbOIh3/aXr7Phy0TjilYivJo5XQ==}
- dev: false
+ package@1.0.1: {}
- /pako/2.1.0:
- resolution: {integrity: sha512-w+eufiZ1WuJYgPXbV/PO3NCMEc3xqylkKHzp8bxp1uW4qaSNQUkwmLLEc3kKsfz8lpV1F8Ht3U1Cm+9Srog2ug==}
- dev: false
+ pako@2.1.0: {}
- /parallel-transform/1.2.0:
- resolution: {integrity: sha512-P2vSmIu38uIlvdcU7fDkyrxj33gTUy/ABO5ZUbGowxNCopBq/OoD42bP4UmMrJoPyk4Uqf0mu3mtWBhHCZD8yg==}
+ parallel-transform@1.2.0:
dependencies:
cyclist: 1.0.2
inherits: 2.0.4
readable-stream: 2.3.8
- dev: false
- /parent-module/1.0.1:
- resolution: {integrity: sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==}
- engines: {node: '>=6'}
+ parent-module@1.0.1:
dependencies:
callsites: 3.1.0
- dev: true
- /parse-data-url/4.0.1:
- resolution: {integrity: sha512-W+ZgeHPkG2Awbj2RCGG3zALoKGoKucIWXRp8jPgTVNmRgiftXbwXXzzaXXH4L1+OdxeSXC6C8G+hzlcv41f24A==}
- engines: {node: '>=8'}
+ parse-data-url@4.0.1:
dependencies:
valid-data-url: 4.0.1
- dev: false
- /parse-entities/2.0.0:
- resolution: {integrity: sha512-kkywGpCcRYhqQIchaWqZ875wzpS/bMKhz5HnN3p7wveJTkTtyAB/AlnS0f8DFSqYW1T82t6yEAkEcB+A1I3MbQ==}
+ parse-entities@2.0.0:
dependencies:
character-entities: 1.2.4
character-entities-legacy: 1.1.4
@@ -32580,349 +36820,201 @@ packages:
is-alphanumerical: 1.0.4
is-decimal: 1.0.4
is-hexadecimal: 1.0.4
- dev: false
- /parse-import-specifiers/1.0.2:
- resolution: {integrity: sha512-MzJKeFIsoY0cTv/Y41TZipso3aYMz4+jpI1jCPhA9os6McI1cUUhI88WtmzdZ2ghfhuZ+1YF8lzx29eIhMexlA==}
- engines: {node: '>=16'}
- dev: true
+ parse-entities@4.0.1:
+ dependencies:
+ '@types/unist': 2.0.11
+ character-entities: 2.0.2
+ character-entities-legacy: 3.0.0
+ character-reference-invalid: 2.0.1
+ decode-named-character-reference: 1.0.2
+ is-alphanumerical: 2.0.1
+ is-decimal: 2.0.1
+ is-hexadecimal: 2.0.1
- /parse-json/4.0.0:
- resolution: {integrity: sha512-aOIos8bujGN93/8Ox/jPLh7RwVnPEysynVFE+fQZyg6jKELEHwzgKdLRFHUgXJL6kylijVSBC4BvN9OmsB48Rw==}
- engines: {node: '>=4'}
+ parse-import-specifiers@1.0.3: {}
+
+ parse-json@4.0.0:
dependencies:
error-ex: 1.3.2
json-parse-better-errors: 1.0.2
- dev: true
- /parse-json/5.2.0:
- resolution: {integrity: sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg==}
- engines: {node: '>=8'}
+ parse-json@5.2.0:
dependencies:
- '@babel/code-frame': 7.24.7
+ '@babel/code-frame': 7.26.2
error-ex: 1.3.2
json-parse-even-better-errors: 2.3.1
lines-and-columns: 1.2.4
- dev: true
- /parse-link-header/1.0.1:
- resolution: {integrity: sha512-Z0gpfHmwCIKDr5rRzjypL+p93aHVWO7e+0rFcUl9E3sC67njjs+xHFenuboSXZGlvYtmQqRzRaE3iFpTUnLmFQ==}
+ parse-link-header@1.0.1:
dependencies:
xtend: 4.0.2
- dev: false
- /parse-link-header/2.0.0:
- resolution: {integrity: sha512-xjU87V0VyHZybn2RrCX5TIFGxTVZE6zqqZWMPlIKiSKuWh/X5WZdt+w1Ki1nXB+8L/KtL+nZ4iq+sfI6MrhhMw==}
+ parse-link-header@2.0.0:
dependencies:
xtend: 4.0.2
- dev: false
- /parse-passwd/1.0.0:
- resolution: {integrity: sha512-1Y1A//QUXEZK7YKz+rD9WydcE1+EuPr6ZBgKecAB8tmoW6UFv0NREVJe1p+jRxtThkcbbKkfwIbWJe/IeE6m2Q==}
- engines: {node: '>=0.10.0'}
- dev: false
+ parse-passwd@1.0.0: {}
- /parseley/0.12.1:
- resolution: {integrity: sha512-e6qHKe3a9HWr0oMRVDTRhKce+bRO8VGQR3NyVwcjwrbhMmFCX9KszEV35+rn4AdilFAq9VPxP/Fe1wC9Qjd2lw==}
+ parseley@0.12.1:
dependencies:
leac: 0.6.0
peberminta: 0.9.0
- dev: false
- /parseley/0.7.0:
- resolution: {integrity: sha512-xyOytsdDu077M3/46Am+2cGXEKM9U9QclBDv7fimY7e+BBlxh2JcBp2mgNsmkyA9uvgyTjVzDi7cP1v4hcFxbw==}
+ parseley@0.7.0:
dependencies:
moo: 0.5.2
nearley: 2.20.1
- dev: false
- /parseurl/1.3.3:
- resolution: {integrity: sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ==}
- engines: {node: '>= 0.8'}
- dev: false
+ parseurl@1.3.3: {}
- /path-exists/3.0.0:
- resolution: {integrity: sha512-bpC7GYwiDYQ4wYLe+FA8lhRjhQCMcQGuSgGGqDkg/QerRWw9CmGRT0iSOVRSZJ29NMLZgIzqaljJ63oaL4NIJQ==}
- engines: {node: '>=4'}
- dev: false
+ path-browserify@1.0.1: {}
- /path-exists/4.0.0:
- resolution: {integrity: sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==}
- engines: {node: '>=8'}
+ path-exists@3.0.0: {}
- /path-exists/5.0.0:
- resolution: {integrity: sha512-RjhtfwJOxzcFmNOi6ltcbcu4Iu+FL3zEj83dk4kAS+fVpTxXLO1b38RvJgT/0QwvV/L3aY9TAnyv0EOqW4GoMQ==}
- engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0}
- dev: true
+ path-exists@4.0.0: {}
- /path-is-absolute/1.0.1:
- resolution: {integrity: sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==}
- engines: {node: '>=0.10.0'}
+ path-exists@5.0.0: {}
- /path-key/2.0.1:
- resolution: {integrity: sha512-fEHGKCSmUSDPv4uoj8AlD+joPlq3peND+HRYyxFz4KPw4z926S/b8rIuFs2FYJg3BwsxJf6A9/3eIdLaYC+9Dw==}
- engines: {node: '>=4'}
- dev: true
+ path-is-absolute@1.0.1: {}
- /path-key/3.1.1:
- resolution: {integrity: sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==}
- engines: {node: '>=8'}
- dev: true
+ path-key@2.0.1: {}
- /path-parse/1.0.7:
- resolution: {integrity: sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==}
+ path-key@3.1.1: {}
- /path-scurry/1.11.1:
- resolution: {integrity: sha512-Xa4Nw17FS9ApQFJ9umLiJS4orGjm7ZzwUrwamcGQuHSzDyth9boKDaycYdDcZDuqYATXw4HFXgaqWTctW/v1HA==}
- engines: {node: '>=16 || 14 >=14.18'}
- dependencies:
- lru-cache: 10.4.3
- minipass: 5.0.0
- dev: true
+ path-parse@1.0.7: {}
- /path-to-regexp/6.2.1:
- resolution: {integrity: sha512-JLyh7xT1kizaEvcaXOQwOc2/Yhw6KZOvPf1S8401UyLk86CU79LN3vl7ztXGm/pZ+YjoyAJ4rxmHwbkBXJX+yw==}
- dev: false
+ path-to-regexp@6.3.0: {}
- /path-type/4.0.0:
- resolution: {integrity: sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==}
- engines: {node: '>=8'}
+ path-type@4.0.0: {}
- /path/0.12.7:
- resolution: {integrity: sha512-aXXC6s+1w7otVF9UletFkFcDsJeO7lSZBPUQhtb5O0xJe8LtYhj/GxldoL09bBj9+ZmE2hNoHqQSFMN5fikh4Q==}
+ path@0.12.7:
dependencies:
process: 0.11.10
util: 0.10.4
- dev: false
- /pause-stream/0.0.11:
- resolution: {integrity: sha512-e3FBlXLmN/D1S+zHzanP4E/4Z60oFAa3O051qt1pxa7DEJWKAyil6upYVXCWadEnuoqa4Pkc9oUx9zsxYeRv8A==}
+ pathe@1.1.2: {}
+
+ pause-stream@0.0.11:
dependencies:
through: 2.3.8
- dev: true
- /pcloud-sdk-js/2.0.0:
- resolution: {integrity: sha512-T5m5YQT/X3bkDyvaylwPtHCMntJu/ZKdIlfKqu2fhnaFHwWLEx1G08N85EQGZV8wnpciqbnuhsxIVXDJyd5bTA==}
- engines: {node: '>= 4.0.0'}
+ pcloud-sdk-js@2.0.0:
dependencies:
- '@babel/cli': 7.23.0_@babel+core@7.23.0
- '@babel/core': 7.23.0
- '@babel/preset-env': 7.22.20_@babel+core@7.23.0
- '@babel/runtime': 7.23.1
+ '@babel/cli': 7.25.9(@babel/core@7.26.0)
+ '@babel/core': 7.26.0
+ '@babel/preset-env': 7.26.0(@babel/core@7.26.0)
+ '@babel/runtime': 7.26.0
deep-assign: 3.0.0
- form-data: 3.0.1
+ form-data: 3.0.2
invariant: 2.2.4
superagent: 5.3.1
- yarn: 1.22.19
+ yarn: 1.22.22
transitivePeerDependencies:
- supports-color
- dev: false
- /peberminta/0.9.0:
- resolution: {integrity: sha512-XIxfHpEuSJbITd1H3EeQwpcZbTLHc+VVr8ANI9t5sit565tsI4/xK3KWTUFE2e6QiangUkh3B0jihzmGnNrRsQ==}
- dev: false
+ peberminta@0.9.0: {}
- /peek-readable/4.1.0:
- resolution: {integrity: sha512-ZI3LnwUv5nOGbQzD9c2iDG6toheuXSZP5esSHBjopsXH4dg19soufvpUGA3uohi5anFtGb2lhAVdHzH6R/Evvg==}
- engines: {node: '>=8'}
- dev: false
+ peek-readable@4.1.0: {}
- /peek-readable/5.0.0:
- resolution: {integrity: sha512-YtCKvLUOvwtMGmrniQPdO7MwPjgkFBtFIrmfSbYmYuq3tKDV/mcfAhBth1+C3ru7uXIZasc/pHnb+YDYNkkj4A==}
- engines: {node: '>=14.16'}
- dev: false
+ peek-readable@5.3.1: {}
- /pend/1.2.0:
- resolution: {integrity: sha512-F3asv42UuXchdzt+xXqfW1OGlVBe+mxa2mqI0pg5yAHZPvFmY3Y6drSf/GQ1A86WgWEN9Kzh/WrgKa6iGcHXLg==}
- dev: false
+ pend@1.2.0: {}
- /performance-now/2.1.0:
- resolution: {integrity: sha512-7EAHlyLHI56VEIdK57uwHdHKIaAGbnXPiw0yWbarQZOKaKpvUIgW0jWRVLiatnM+XXlSwsanIBH/hzGMJulMow==}
+ performance-now@2.1.0: {}
- /pg-cloudflare/1.1.1:
- resolution: {integrity: sha512-xWPagP/4B6BgFO+EKz3JONXv3YDgvkbVrGw2mTo3D6tVDQRh1e7cqVGvyR3BE+eQgAvx1XhW/iEASj4/jCWl3Q==}
- requiresBuild: true
- dev: false
+ pg-cloudflare@1.1.1:
optional: true
- /pg-connection-string/2.6.2:
- resolution: {integrity: sha512-ch6OwaeaPYcova4kKZ15sbJ2hKb/VP48ZD2gE7i1J+L4MspCtBMAx8nMgz7bksc7IojCIIWuEhHibSMFH8m8oA==}
- dev: false
-
- /pg-connection-string/2.7.0:
- resolution: {integrity: sha512-PI2W9mv53rXJQEOb8xNR8lH7Hr+EKa6oJa38zsK0S/ky2er16ios1wLKhZyxzD7jUReiWokc9WK5nxSnC7W1TA==}
- dev: false
-
- /pg-format/1.0.4:
- resolution: {integrity: sha512-YyKEF78pEA6wwTAqOUaHIN/rWpfzzIuMh9KdAhc3rSLQ/7zkRFcCgYBAEGatDstLyZw4g0s9SNICmaTGnBVeyw==}
- engines: {node: '>=4.0'}
- dev: false
+ pg-connection-string@2.7.0: {}
- /pg-int8/1.0.1:
- resolution: {integrity: sha512-WCtabS6t3c8SkpDBUlb1kjOs7l66xsGdKpIPZsg4wR+B3+u9UAum2odSsF9tnvxg80h4ZxLWMy4pRjOsFIqQpw==}
- engines: {node: '>=4.0.0'}
- dev: false
+ pg-format@1.0.4: {}
- /pg-pool/3.6.1_pg@8.11.3:
- resolution: {integrity: sha512-jizsIzhkIitxCGfPRzJn1ZdcosIt3pz9Sh3V01fm1vZnbnCMgmGl5wvGGdNN2EL9Rmb0EcFoCkixH4Pu+sP9Og==}
- peerDependencies:
- pg: '>=8.0'
- dependencies:
- pg: 8.11.3
- dev: false
+ pg-int8@1.0.1: {}
- /pg-pool/3.7.0_pg@8.13.0:
- resolution: {integrity: sha512-ZOBQForurqh4zZWjrgSwwAtzJ7QiRX0ovFkZr2klsen3Nm0aoh33Ls0fzfv3imeH/nw/O27cjdz5kzYJfeGp/g==}
- peerDependencies:
- pg: '>=8.0'
+ pg-pool@3.7.0(pg@8.13.1):
dependencies:
- pg: 8.13.0
- dev: false
+ pg: 8.13.1
- /pg-protocol/1.6.0:
- resolution: {integrity: sha512-M+PDm637OY5WM307051+bsDia5Xej6d9IR4GwJse1qA1DIhiKlksvrneZOYQq42OM+spubpcNYEo2FcKQrDk+Q==}
- dev: false
-
- /pg-protocol/1.7.0:
- resolution: {integrity: sha512-hTK/mE36i8fDDhgDFjy6xNOG+LCorxLG3WO17tku+ij6sVHXh1jQUJ8hYAnRhNla4QVD2H8er/FOjc/+EgC6yQ==}
- dev: false
+ pg-protocol@1.7.0: {}
- /pg-types/2.2.0:
- resolution: {integrity: sha512-qTAAlrEsl8s4OiEQY69wDvcMIdQN6wdz5ojQiOy6YRMuynxenON0O5oCpJI6lshc6scgAY8qvJ2On/p+CXY0GA==}
- engines: {node: '>=4'}
+ pg-types@2.2.0:
dependencies:
pg-int8: 1.0.1
postgres-array: 2.0.0
postgres-bytea: 1.0.0
postgres-date: 1.0.7
postgres-interval: 1.2.0
- dev: false
-
- /pg/8.11.3:
- resolution: {integrity: sha512-+9iuvG8QfaaUrrph+kpF24cXkH1YOOUeArRNYIxq1viYHZagBxrTno7cecY1Fa44tJeZvaoG+Djpkc3JwehN5g==}
- engines: {node: '>= 8.0.0'}
- peerDependencies:
- pg-native: '>=3.0.1'
- peerDependenciesMeta:
- pg-native:
- optional: true
- dependencies:
- buffer-writer: 2.0.0
- packet-reader: 1.0.0
- pg-connection-string: 2.6.2
- pg-pool: 3.6.1_pg@8.11.3
- pg-protocol: 1.6.0
- pg-types: 2.2.0
- pgpass: 1.0.5
- optionalDependencies:
- pg-cloudflare: 1.1.1
- dev: false
- /pg/8.13.0:
- resolution: {integrity: sha512-34wkUTh3SxTClfoHB3pQ7bIMvw9dpFU1audQQeZG837fmHfHpr14n/AELVDoOYVDW2h5RDWU78tFjkD+erSBsw==}
- engines: {node: '>= 8.0.0'}
- peerDependencies:
- pg-native: '>=3.0.1'
- peerDependenciesMeta:
- pg-native:
- optional: true
+ pg@8.13.1:
dependencies:
pg-connection-string: 2.7.0
- pg-pool: 3.7.0_pg@8.13.0
+ pg-pool: 3.7.0(pg@8.13.1)
pg-protocol: 1.7.0
pg-types: 2.2.0
pgpass: 1.0.5
optionalDependencies:
pg-cloudflare: 1.1.1
- dev: false
- /pgpass/1.0.5:
- resolution: {integrity: sha512-FdW9r/jQZhSeohs1Z3sI1yxFQNFvMcnmfuj4WBMUTxOrAyLMaTcE1aAMBiTlbMNaXvBCQuVi0R7hd8udDSP7ug==}
+ pgpass@1.0.5:
dependencies:
split2: 4.2.0
- dev: false
- /phone/3.1.49:
- resolution: {integrity: sha512-S+rHWXSQrllK5eQwz0sDbwfxQ2PzennWPgsP/jdpEPH3k7P5IBJZYjvYfU8e/RF5AwKCgOtzbTGTGJcBSLJVVw==}
- engines: {node: '>=12'}
- dev: false
+ phone@3.1.53: {}
- /picocolors/0.2.1:
- resolution: {integrity: sha512-cMlDqaLEqfSaW8Z7N5Jw+lyIW869EzT73/F5lhtY9cLGoVxSXznfgfXMO0Z5K0o0Q2TkTXq+0KFsdnSe3jDViA==}
- dev: false
+ picocolors@0.2.1: {}
- /picocolors/1.0.1:
- resolution: {integrity: sha512-anP1Z8qwhkbmu7MFP5iTt+wQKXgwzf7zTyGlcdzabySa9vd0Xt392U0rVmz9poOaBj0uHJKyyo9/upk0HrEQew==}
+ picocolors@1.1.1: {}
- /picomatch/2.3.1:
- resolution: {integrity: sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==}
- engines: {node: '>=8.6'}
+ picomatch@2.3.1: {}
- /pidtree/0.5.0:
- resolution: {integrity: sha512-9nxspIM7OpZuhBxPg73Zvyq7j1QMPMPsGKTqRc2XOaFQauDvoNz9fM1Wdkjmeo7l9GXOZiRs97sPkuayl39wjA==}
- engines: {node: '>=0.10'}
- hasBin: true
- dev: true
+ picomatch@4.0.2: {}
- /pify/4.0.1:
- resolution: {integrity: sha512-uB80kBFb/tfd68bVleG9T5GGsGPjJrLAUpR5PZIrhBnIaRTQRjqdJSsIKkOP6OAIFbj7GOrcudc5pNjZ+geV2g==}
- engines: {node: '>=6'}
- dev: false
+ pidtree@0.5.0: {}
- /pipedrive/13.3.4:
- resolution: {integrity: sha512-4/o4wNFBd4rlN4oKlUfYc4NDuWhNwFUT0F/oPdRUh5xev7EoiMj0NgjEansiqyC3OvvGUjij7DQu09+MQBvjmA==}
+ pify@4.0.1: {}
+
+ pipedrive@13.3.4:
dependencies:
- '@babel/runtime': 7.23.1
+ '@babel/runtime': 7.26.0
lodash: 4.17.21
superagent: 5.3.1
transitivePeerDependencies:
- supports-color
- dev: false
- /pirates/4.0.6:
- resolution: {integrity: sha512-saLsH7WeYYPiD25LDuLRRY/i+6HaPYr6G1OUlN39otzkSTxKnubR9RTxS3/Kk50s1g2JTgFwWQDQyplC5/SHZg==}
- engines: {node: '>= 6'}
- dev: true
+ pirates@4.0.6: {}
- /pkg-dir/4.2.0:
- resolution: {integrity: sha512-HRDzbaKjC+AOWVXxAU/x54COGeIv9eb+6CkDSQoNTt4XyWoIJvuPsXizxu/Fr23EiekbtZwmh1IcIG/l/a10GQ==}
- engines: {node: '>=8'}
+ pkg-dir@4.2.0:
dependencies:
find-up: 4.1.0
- /pkg-dir/7.0.0:
- resolution: {integrity: sha512-Ie9z/WINcxxLp27BKOCHGde4ITq9UklYKDzVo1nhk5sqGEXU3FpkwP5GM2voTGJkGd9B3Otl+Q4uwSOeSUtOBA==}
- engines: {node: '>=14.16'}
+ pkg-dir@7.0.0:
dependencies:
find-up: 6.3.0
- dev: true
- /platform/1.3.6:
- resolution: {integrity: sha512-fnWVljUchTro6RiCFvCXBbNhJc2NijN7oIQxbwsyL0buWJPG85v81ehlHI9fXrJsMNgTofEoWIQeClKpgxFLrg==}
- dev: false
+ pkg-types@1.2.1:
+ dependencies:
+ confbox: 0.1.8
+ mlly: 1.7.3
+ pathe: 1.1.2
- /playwright-core/1.41.2:
- resolution: {integrity: sha512-VaTvwCA4Y8kxEe+kfm2+uUUw5Lubf38RxF7FpBxLPmGe5sdNkSg5e3ChEigaGrX7qdqT3pt2m/98LiyvU2x6CA==}
- engines: {node: '>=16'}
- hasBin: true
- dev: false
+ platform@1.3.6: {}
- /please-upgrade-node/3.2.0:
- resolution: {integrity: sha512-gQR3WpIgNIKwBMVLkpMUeR3e1/E1y42bqDQZfql+kDeXd8COYfM8PQA4X6y7a8u9Ua9FHmsrrmirW2vHs45hWg==}
+ playwright-core@1.41.2: {}
+
+ please-upgrade-node@3.2.0:
dependencies:
semver-compare: 1.0.0
- dev: true
- /plivo/4.57.0:
- resolution: {integrity: sha512-9WyTDDw6T8XGIp5u1tUplgeVtFJeyy3D5q34Y9D/Yb+zTTLimer4s23PqTyjC+Lt/WlBmPP0CaDlekEBrq3lzg==}
+ plivo@4.69.2:
dependencies:
'@types/node': 14.18.63
- axios: 0.21.4
+ axios: 0.28.1
base-64: 0.1.0
build-url: 1.3.3
form-data: 4.0.1
https-proxy-agent: 5.0.1
- joi: 17.10.2
+ joi: 17.13.3
jsonwebtoken: 9.0.2
lodash: 4.17.21
querystring: 0.2.1
@@ -32933,105 +37025,65 @@ packages:
transitivePeerDependencies:
- debug
- supports-color
- dev: false
- /pluralize/8.0.0:
- resolution: {integrity: sha512-Nc3IT5yHzflTfbjgqWcCPpo7DaKy4FnpB0l/zCAW0Tc7jxAiuqSxHasntB3D7887LSrA93kDJ9IXovxJYxyLCA==}
- engines: {node: '>=4'}
+ pluralize@8.0.0: {}
- /pnpm/7.33.6:
- resolution: {integrity: sha512-kOJ/04BH8YWD8zQveEzD8Yf01MqsievB//rhjc17Ld52eKC/I3SBvLj36OZhNfo0gDhW5OssRCzggv+rXZ0kHw==}
- engines: {node: '>=14.6'}
- hasBin: true
- dev: true
+ pnpm@9.14.2: {}
- /pop-iterate/1.0.1:
- resolution: {integrity: sha512-HRCx4+KJE30JhX84wBN4+vja9bNfysxg1y28l0DuJmkoaICiv2ZSilKddbS48pq50P8d2erAhqDLbp47yv3MbQ==}
- dev: false
+ pop-iterate@1.0.1: {}
- /possible-typed-array-names/1.0.0:
- resolution: {integrity: sha512-d7Uw+eZoloe0EHDIYoe+bQ5WXnGMOpmiZFTuMWCwpjzzkL2nTjcKiAk4hh8TjnGye2TwWOk3UXucZ+3rbmBa8Q==}
- engines: {node: '>= 0.4'}
+ possible-typed-array-names@1.0.0: {}
- /postcss-resolve-nested-selector/0.1.1:
- resolution: {integrity: sha512-HvExULSwLqHLgUy1rl3ANIqCsvMS0WHss2UOsXhXnQaZ9VCc2oBvIpXrl00IUFT5ZDITME0o6oiXeiHr2SAIfw==}
- dev: true
+ postcss-resolve-nested-selector@0.1.6: {}
- /postcss-safe-parser/6.0.0_postcss@8.4.31:
- resolution: {integrity: sha512-FARHN8pwH+WiS2OPCxJI8FuRJpTVnn6ZNFiqAM2aeW2LwTHWWmWgIyKC6cUo0L8aeKiF/14MNvnpls6R2PBeMQ==}
- engines: {node: '>=12.0'}
- peerDependencies:
- postcss: ^8.3.3
+ postcss-safe-parser@7.0.1(postcss@8.4.49):
dependencies:
- postcss: 8.4.31
- dev: true
+ postcss: 8.4.49
- /postcss-selector-parser/6.0.13:
- resolution: {integrity: sha512-EaV1Gl4mUEV4ddhDnv/xtj7sxwrwxdetHdWUGnT4VJQf+4d05v6lHYZr8N573k5Z0BViss7BDhfWtKS3+sfAqQ==}
- engines: {node: '>=4'}
+ postcss-selector-parser@6.1.2:
dependencies:
cssesc: 3.0.0
util-deprecate: 1.0.2
- dev: true
- /postcss-value-parser/4.2.0:
- resolution: {integrity: sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==}
- dev: true
+ postcss-value-parser@4.2.0: {}
- /postcss-values-parser/1.5.0:
- resolution: {integrity: sha512-3M3p+2gMp0AH3da530TlX8kiO1nxdTnc3C6vr8dMxRLIlh8UYkz0/wcwptSXjhtx2Fr0TySI7a+BHDQ8NL7LaQ==}
- engines: {node: '>=4'}
+ postcss-values-parser@1.5.0:
dependencies:
flatten: 1.0.3
indexes-of: 1.0.1
uniq: 1.0.1
- dev: false
- /postcss/7.0.39:
- resolution: {integrity: sha512-yioayjNbHn6z1/Bywyb2Y4s3yvDAeXGOyxqD+LnVOinq6Mdmd++SW2wUNVzavyyHxd6+DxzWGIuosg6P1Rj8uA==}
- engines: {node: '>=6.0.0'}
+ postcss@7.0.39:
dependencies:
picocolors: 0.2.1
source-map: 0.6.1
- dev: false
- /postcss/8.4.31:
- resolution: {integrity: sha512-PS08Iboia9mts/2ygV3eLpY5ghnUcfLV/EXTOW1E2qYxJKGGBUtNjN76FYHnMs36RmARn41bC0AZmn+rR0OVpQ==}
- engines: {node: ^10 || ^12 || >=14}
+ postcss@8.4.31:
dependencies:
nanoid: 3.3.7
- picocolors: 1.0.1
- source-map-js: 1.2.0
+ picocolors: 1.1.1
+ source-map-js: 1.2.1
- /postgres-array/2.0.0:
- resolution: {integrity: sha512-VpZrUqU5A69eQyW2c5CA1jtLecCsN2U/bD6VilrFDWq5+5UIEVO7nazS3TEcHf1zuPYO/sqGvUvW62g86RXZuA==}
- engines: {node: '>=4'}
- dev: false
+ postcss@8.4.49:
+ dependencies:
+ nanoid: 3.3.7
+ picocolors: 1.1.1
+ source-map-js: 1.2.1
- /postgres-bytea/1.0.0:
- resolution: {integrity: sha512-xy3pmLuQqRBZBXDULy7KbaitYqLcmxigw14Q5sj8QBVLqEwXfeybIKVWiqAXTlcvdvb0+xkOtDbfQMOf4lST1w==}
- engines: {node: '>=0.10.0'}
- dev: false
+ postgres-array@2.0.0: {}
- /postgres-date/1.0.7:
- resolution: {integrity: sha512-suDmjLVQg78nMK2UZ454hAG+OAW+HQPZ6n++TNDUX+L0+uUlLywnoxJKDou51Zm+zTCjrCl0Nq6J9C5hP9vK/Q==}
- engines: {node: '>=0.10.0'}
- dev: false
+ postgres-bytea@1.0.0: {}
- /postgres-interval/1.2.0:
- resolution: {integrity: sha512-9ZhXKM/rw350N1ovuWHbGxnGh/SNJ4cnxHiM0rxE4VN41wsg8P8zWn9hv/buK00RP4WvlOyr/RBDiptyxVbkZQ==}
- engines: {node: '>=0.10.0'}
+ postgres-date@1.0.7: {}
+
+ postgres-interval@1.2.0:
dependencies:
xtend: 4.0.2
- dev: false
- /precinct/6.3.1:
- resolution: {integrity: sha512-JAwyLCgTylWminoD7V0VJwMElWmwrVSR6r9HaPWCoswkB4iFzX7aNtO7VBfAVPy+NhmjKb8IF8UmlWJXzUkOIQ==}
- engines: {node: '>=6.0.0'}
- hasBin: true
+ precinct@6.3.1:
dependencies:
commander: 2.20.3
- debug: 4.3.6
+ debug: 4.3.7(supports-color@9.4.0)
detective-amd: 3.1.2
detective-cjs: 3.1.3
detective-es6: 2.2.2
@@ -33045,179 +37097,102 @@ packages:
node-source-walk: 4.3.0
transitivePeerDependencies:
- supports-color
- dev: false
- /precond/0.2.3:
- resolution: {integrity: sha512-QCYG84SgGyGzqJ/vlMsxeXd/pgL/I94ixdNFyh1PusWmTCyVfPJjZ1K1jvHtsbfnXQs2TSkEP2fR7QiMZAnKFQ==}
- engines: {node: '>= 0.6'}
- dev: false
+ precond@0.2.3: {}
- /prelude-ls/1.1.2:
- resolution: {integrity: sha512-ESF23V4SKG6lVSGZgYNpbsiaAkdab6ZgOxe52p7+Kid3W3u3bxR4Vfd/o21dmN7jSt0IwgZ4v5MUd26FEtXE9w==}
- engines: {node: '>= 0.8.0'}
- dev: false
+ prelude-ls@1.1.2: {}
- /prelude-ls/1.2.1:
- resolution: {integrity: sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==}
- engines: {node: '>= 0.8.0'}
- dev: true
+ prelude-ls@1.2.1: {}
- /prepend-http/1.0.4:
- resolution: {integrity: sha512-PhmXi5XmoyKw1Un4E+opM2KcsJInDvKyuOumcjjw3waw86ZNjHwVUOOWLc4bCzLdcKNaWBH9e99sbWzDQsVaYg==}
- engines: {node: '>=0.10.0'}
- dev: false
+ prepend-http@1.0.4: {}
- /pretty-format/27.5.1:
- resolution: {integrity: sha512-Qb1gy5OrP5+zDf2Bvnzdl3jsTf1qXVMazbvCoKhtKqVs4/YK4ozX4gKQJJVyNe+cajNPn0KoC0MC3FUmaHWEmQ==}
- engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0}
+ prettier-linter-helpers@1.0.0:
+ dependencies:
+ fast-diff: 1.3.0
+
+ prettier@2.8.8:
+ optional: true
+
+ prettier@3.3.3: {}
+
+ pretty-format@27.5.1:
dependencies:
ansi-regex: 5.0.1
ansi-styles: 5.2.0
react-is: 17.0.2
- dev: true
- /pretty-format/29.7.0:
- resolution: {integrity: sha512-Pdlw/oPxN+aXdmM9R00JVC9WVFoCLTKJvDVLgmJ+qAffBMxsV85l/Lu7sNx4zSzPyoL2euImuEwHhOXdEgNFZQ==}
- engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
+ pretty-format@29.7.0:
dependencies:
'@jest/schemas': 29.6.3
ansi-styles: 5.2.0
react-is: 18.3.1
- dev: true
- /printj/1.3.1:
- resolution: {integrity: sha512-GA3TdL8szPK4AQ2YnOe/b+Y1jUFwmmGMMK/qbY7VcE3Z7FU8JstbKiKRzO6CIiAKPhTO8m01NoQ0V5f3jc4OGg==}
- engines: {node: '>=0.8'}
- hasBin: true
- dev: true
+ printj@1.3.1: {}
- /process-nextick-args/2.0.1:
- resolution: {integrity: sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag==}
+ process-nextick-args@2.0.1: {}
- /process/0.11.10:
- resolution: {integrity: sha512-cdGef/drWFoydD1JsMzuFf8100nZl+GT+yacc2bEced5f9Rjk4z+WtFUTBu9PhOi9j/jfmBPu0mMEY4wIdAF8A==}
- engines: {node: '>= 0.6.0'}
- dev: false
+ process@0.11.10: {}
- /progress/2.0.3:
- resolution: {integrity: sha512-7PiHtLll5LdnKIMw100I+8xJXR5gW2QwWYkT6iJva0bXitZKa/XMrSbdmg3r2Xnaidz9Qumd0VPaMrZlF9V9sA==}
- engines: {node: '>=0.4.0'}
- dev: false
+ progress@2.0.3: {}
- /promise-polyfill/8.3.0:
- resolution: {integrity: sha512-H5oELycFml5yto/atYqmjyigJoAo3+OXwolYiH7OfQuYlAqhxNvTfiNMbV9hsC6Yp83yE5r2KTVmtrG6R9i6Pg==}
- dev: true
+ promise-polyfill@8.3.0: {}
- /promise-retry/2.0.1:
- resolution: {integrity: sha512-y+WKFlBR8BGXnsNlIHFGPZmyDf3DFMoLhaflAnyZgV6rG6xu+JwesTo2Q9R6XwYmtmwAFCkAk3e35jEdoeh/3g==}
- engines: {node: '>=10'}
+ promise-retry@2.0.1:
dependencies:
err-code: 2.0.3
retry: 0.12.0
- dev: false
- /promise.any/2.0.6:
- resolution: {integrity: sha512-Ew/MrPtTjiHnnki0AA2hS2o65JaZ5n+5pp08JSyWWUdeOGF4F41P+Dn+rdqnaOV/FTxhR6eBDX412luwn3th9g==}
- engines: {node: '>= 0.4'}
+ promise.any@2.0.6:
dependencies:
- array.prototype.map: 1.0.6
+ array.prototype.map: 1.0.7
call-bind: 1.0.7
define-properties: 1.2.1
- es-abstract: 1.23.3
- es-aggregate-error: 1.0.11
+ es-abstract: 1.23.5
+ es-aggregate-error: 1.0.13
get-intrinsic: 1.2.4
iterate-value: 1.0.2
- dev: false
- /prompts/2.4.2:
- resolution: {integrity: sha512-NxNv/kLguCA7p3jE8oL2aEBsrJWgAakBpgmgK6lpPWV+WuOmY6r2/zbAVnP+T8bQlA0nzHXSJSJW0Hq7ylaD2Q==}
- engines: {node: '>= 6'}
+ prompts@2.4.2:
dependencies:
kleur: 3.0.3
sisteransi: 1.0.5
- dev: true
- /prop-types/15.8.1:
- resolution: {integrity: sha512-oj87CgZICdulUohogVAR7AjlC0327U4el4L6eAvOqCeudMDVU0NThNaV+b9Df4dXgSP1gXMTnPdhfe/2qDH5cg==}
+ prop-types@15.8.1:
dependencies:
loose-envify: 1.4.0
object-assign: 4.1.1
react-is: 16.13.1
- dev: true
- /proto3-json-serializer/0.1.9:
- resolution: {integrity: sha512-A60IisqvnuI45qNRygJjrnNjX2TMdQGMY+57tR3nul3ZgO2zXkR9OGR8AXxJhkqx84g0FTnrfi3D5fWMSdANdQ==}
+ property-information@6.5.0: {}
+
+ proto3-json-serializer@0.1.9:
dependencies:
protobufjs: 6.11.4
- dev: false
optional: true
- /proto3-json-serializer/1.1.1:
- resolution: {integrity: sha512-AwAuY4g9nxx0u52DnSMkqqgyLHaW/XaPLtaAo3y/ZCfeaQB/g4YDH4kb8Wc/mWzWvu0YjOznVnfn373MVZZrgw==}
- engines: {node: '>=12.0.0'}
- dependencies:
- protobufjs: 7.4.0
- dev: false
-
- /proto3-json-serializer/2.0.0:
- resolution: {integrity: sha512-FB/YaNrpiPkyQNSNPilpn8qn0KdEfkgmJ9JP93PQyF/U4bAiXY5BiUdDhiDO4S48uSQ6AesklgVlrKiqZPzegw==}
- engines: {node: '>=14.0.0'}
+ proto3-json-serializer@1.1.1:
dependencies:
- protobufjs: 7.4.0
- dev: false
+ protobufjs: 7.2.4
- /proto3-json-serializer/2.0.2:
- resolution: {integrity: sha512-SAzp/O4Yh02jGdRc+uIrGoe87dkN/XtwxfZ4ZyafJHymd79ozp5VG5nyZ7ygqPM5+cpLDjjGnYFUkngonyDPOQ==}
- engines: {node: '>=14.0.0'}
+ proto3-json-serializer@2.0.2:
dependencies:
protobufjs: 7.4.0
- dev: false
- /protobufjs-cli/1.1.1_protobufjs@7.2.4:
- resolution: {integrity: sha512-VPWMgIcRNyQwWUv8OLPyGQ/0lQY/QTQAVN5fh+XzfDwsVw1FZ2L3DM/bcBf8WPiRz2tNpaov9lPZfNcmNo6LXA==}
- engines: {node: '>=12.0.0'}
- hasBin: true
- peerDependencies:
- protobufjs: ^7.0.0
+ protobufjs-cli@1.1.1(protobufjs@7.2.4):
dependencies:
chalk: 4.1.2
escodegen: 1.14.3
- espree: 9.6.1
- estraverse: 5.3.0
- glob: 8.1.0
- jsdoc: 4.0.2
- minimist: 1.2.8
- protobufjs: 7.2.4
- semver: 7.6.3
- tmp: 0.2.1
- uglify-js: 3.17.4
- dev: false
-
- /protobufjs/6.11.3:
- resolution: {integrity: sha512-xL96WDdCZYdU7Slin569tFX712BxsxslWwAfAhCYjQKGTq7dAU91Lomy6nLLhh/dyGhk/YH4TwTSRxTzhuHyZg==}
- hasBin: true
- requiresBuild: true
- dependencies:
- '@protobufjs/aspromise': 1.1.2
- '@protobufjs/base64': 1.1.2
- '@protobufjs/codegen': 2.0.4
- '@protobufjs/eventemitter': 1.1.0
- '@protobufjs/fetch': 1.1.0
- '@protobufjs/float': 1.0.2
- '@protobufjs/inquire': 1.1.0
- '@protobufjs/path': 1.1.2
- '@protobufjs/pool': 1.1.0
- '@protobufjs/utf8': 1.1.0
- '@types/long': 4.0.2
- '@types/node': 20.17.6
- long: 4.0.0
- dev: false
- optional: true
+ espree: 9.6.1
+ estraverse: 5.3.0
+ glob: 8.1.0
+ jsdoc: 4.0.4
+ minimist: 1.2.8
+ protobufjs: 7.2.4
+ semver: 7.6.3
+ tmp: 0.2.3
+ uglify-js: 3.19.3
- /protobufjs/6.11.4:
- resolution: {integrity: sha512-5kQWPaJHi1WoCpjTGszzQ32PG2F4+wRY6BmAT4Vfw56Q2FZ4YZzK20xUYQH4YkfehY1e6QSICrJquM6xXZNcrw==}
- hasBin: true
- requiresBuild: true
+ protobufjs@6.11.3:
dependencies:
'@protobufjs/aspromise': 1.1.2
'@protobufjs/base64': 1.1.2
@@ -33232,13 +37207,9 @@ packages:
'@types/long': 4.0.2
'@types/node': 20.17.6
long: 4.0.0
- dev: false
optional: true
- /protobufjs/7.2.4:
- resolution: {integrity: sha512-AT+RJgD2sH8phPmCf7OUZR8xGdcJRga4+1cOaXJ64hvcSkVhNcRHOwIxUatPH15+nj59WAGTDv3LSGZPEQbJaQ==}
- engines: {node: '>=12.0.0'}
- requiresBuild: true
+ protobufjs@6.11.4:
dependencies:
'@protobufjs/aspromise': 1.1.2
'@protobufjs/base64': 1.1.2
@@ -33250,14 +37221,12 @@ packages:
'@protobufjs/path': 1.1.2
'@protobufjs/pool': 1.1.0
'@protobufjs/utf8': 1.1.0
+ '@types/long': 4.0.2
'@types/node': 20.17.6
- long: 5.2.3
- dev: false
+ long: 4.0.0
+ optional: true
- /protobufjs/7.2.5:
- resolution: {integrity: sha512-gGXRSXvxQ7UiPgfw8gevrfRWcTlSbOFg+p/N+JVJEK5VhueL2miT6qTymqAmjr1Q5WbOCyJbyrk6JfWKwlFn6A==}
- engines: {node: '>=12.0.0'}
- requiresBuild: true
+ protobufjs@7.2.4:
dependencies:
'@protobufjs/aspromise': 1.1.2
'@protobufjs/base64': 1.1.2
@@ -33271,12 +37240,8 @@ packages:
'@protobufjs/utf8': 1.1.0
'@types/node': 20.17.6
long: 5.2.3
- dev: false
- /protobufjs/7.4.0:
- resolution: {integrity: sha512-mRUWCc3KUU4w1jU8sGxICXH/gNS94DvI1gxqDvBzhj1JpcsimQkYiOJfwsPUykUI5ZaspFbSgmBLER8IrQ3tqw==}
- engines: {node: '>=12.0.0'}
- requiresBuild: true
+ protobufjs@7.4.0:
dependencies:
'@protobufjs/aspromise': 1.1.2
'@protobufjs/base64': 1.1.2
@@ -33290,14 +37255,11 @@ packages:
'@protobufjs/utf8': 1.1.0
'@types/node': 20.17.6
long: 5.2.3
- dev: false
- /proxy-agent/5.0.0:
- resolution: {integrity: sha512-gkH7BkvLVkSfX9Dk27W6TyNOWWZWRilRfk1XxGNWOYJ2TuedAv1yFpCaU9QSBmBe716XOTNpYNOzhysyw8xn7g==}
- engines: {node: '>= 8'}
+ proxy-agent@5.0.0:
dependencies:
agent-base: 6.0.2
- debug: 4.3.6
+ debug: 4.3.7(supports-color@9.4.0)
http-proxy-agent: 4.0.1
https-proxy-agent: 5.0.1
lru-cache: 5.1.1
@@ -33306,90 +37268,58 @@ packages:
socks-proxy-agent: 5.0.1
transitivePeerDependencies:
- supports-color
- dev: false
- /proxy-agent/6.3.1:
- resolution: {integrity: sha512-Rb5RVBy1iyqOtNl15Cw/llpeLH8bsb37gM1FUfKQ+Wck6xHlbAhWGUFiTRHtkjqGTA5pSHz6+0hrPW/oECihPQ==}
- engines: {node: '>= 14'}
+ proxy-agent@6.3.1:
dependencies:
- agent-base: 7.1.0
- debug: 4.3.6
- http-proxy-agent: 7.0.0
- https-proxy-agent: 7.0.2
+ agent-base: 7.1.1
+ debug: 4.3.4
+ http-proxy-agent: 7.0.2
+ https-proxy-agent: 7.0.5
lru-cache: 7.18.3
- pac-proxy-agent: 7.0.1
+ pac-proxy-agent: 7.0.2
proxy-from-env: 1.1.0
- socks-proxy-agent: 8.0.2
+ socks-proxy-agent: 8.0.4
transitivePeerDependencies:
- supports-color
- dev: false
- /proxy-from-env/1.1.0:
- resolution: {integrity: sha512-D+zkORCbA9f1tdWRK0RaCR3GPv50cMxcrz4X8k5LTSUD1Dkw47mKJEZQNunItRTkWwgtaUSo1RVFRIG9ZXiFYg==}
+ proxy-from-env@1.1.0: {}
- /ps-tree/1.2.0:
- resolution: {integrity: sha512-0VnamPPYHl4uaU/nSFeZZpR21QAWRz+sRv4iW9+v/GS/J5U5iZB5BNN6J0RMoOvdx2gWM2+ZFMIm58q24e4UYA==}
- engines: {node: '>= 0.10'}
- hasBin: true
+ ps-tree@1.2.0:
dependencies:
event-stream: 3.3.4
- dev: true
- /pseudomap/1.0.2:
- resolution: {integrity: sha512-b/YwNhb8lk1Zz2+bXXpS/LK9OisiZZ1SNsSLxN1x2OXVEhW2Ckr/7mWE5vrC1ZTiJlD9g19jWszTmJsB+oEpFQ==}
- dev: false
-
- /psl/1.9.0:
- resolution: {integrity: sha512-E/ZsdU4HLs/68gYzgGTkMicWTLPdAftJLfJFlLUAAKZGkStNU72sZjT66SnMDVOfOWY/YAoiD7Jxa9iHvngcag==}
+ psl@1.13.0:
+ dependencies:
+ punycode: 2.3.1
- /pstree.remy/1.1.8:
- resolution: {integrity: sha512-77DZwxQmxKnu3aR542U+X8FypNzbfJ+C5XQDk3uWjWxn6151aIMGthWYRXTqT1E5oJvg+ljaa2OJi+VfvCOQ8w==}
- dev: true
+ pstree.remy@1.1.8: {}
- /pump/2.0.1:
- resolution: {integrity: sha512-ruPMNRkN3MHP1cWJc9OWr+T/xDP0jhXYCLfJcBuX54hhfIBnaQmAUMfDcG4DM5UMWByBbJY69QSphm3jtDKIkA==}
+ pump@2.0.1:
dependencies:
end-of-stream: 1.4.4
once: 1.4.0
- dev: false
- /pump/3.0.0:
- resolution: {integrity: sha512-LwZy+p3SFs1Pytd/jYct4wpv49HiYCqd9Rlc5ZVdk0V+8Yzv6jR5Blk3TRmPL1ft69TxP0IMZGJ+WPFU2BFhww==}
+ pump@3.0.2:
dependencies:
end-of-stream: 1.4.4
once: 1.4.0
- /pumpify/2.0.1:
- resolution: {integrity: sha512-m7KOje7jZxrmutanlkS1daj1dS6z6BgslzOXmcSEpIlCxM3VJH7lG5QLeck/6hgF6F4crFf01UtQmNsJfweTAw==}
+ pumpify@2.0.1:
dependencies:
- duplexify: 4.1.2
+ duplexify: 4.1.3
inherits: 2.0.4
- pump: 3.0.0
- dev: false
+ pump: 3.0.2
- /punycode/1.4.1:
- resolution: {integrity: sha512-jmYNElW7yvO7TV33CjSmvSiE2yco3bV2czu/OzDKdMNVZQWfxCblURLhf+47syQRBntjfLdd/H0egrzIG+oaFQ==}
- dev: false
+ punycode.js@2.3.1: {}
- /punycode/2.3.0:
- resolution: {integrity: sha512-rRV+zQD8tVFys26lAGR9WUuS4iUAngJScM+ZRSKtvl5tKeZ2t5bvdNFdNHBW9FWR4guGHlgmsZ1G7BSm2wTbuA==}
- engines: {node: '>=6'}
- dev: false
+ punycode@1.4.1: {}
- /punycode/2.3.1:
- resolution: {integrity: sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg==}
- engines: {node: '>=6'}
+ punycode@2.3.1: {}
- /puppeteer-core/19.8.0:
- resolution: {integrity: sha512-5gBkLR9nae7chWDhI3mpj5QA+hPmjEOW29qw5ap5g51Uo5Lxe5Yip1uyQwZSjg5Wn/eyE9grh2Lyx3m8rPK90A==}
- engines: {node: '>=14.14.0'}
- peerDependencies:
- typescript: '>= 4.7.4'
- peerDependenciesMeta:
- typescript:
- optional: true
+ puppeteer-core@19.11.1(typescript@5.7.2):
dependencies:
- chromium-bidi: 0.4.5_7yd6ibrwer4fxzjxd6md3toxiy
+ '@puppeteer/browsers': 0.5.0(typescript@5.7.2)
+ chromium-bidi: 0.4.7(devtools-protocol@0.0.1107588)
cross-fetch: 3.1.5
debug: 4.3.4
devtools-protocol: 0.0.1107588
@@ -33399,19 +37329,18 @@ packages:
tar-fs: 2.1.1
unbzip2-stream: 1.4.3
ws: 8.13.0
+ optionalDependencies:
+ typescript: 5.7.2
transitivePeerDependencies:
- bufferutil
- encoding
- supports-color
- utf-8-validate
- dev: false
- /puppeteer-core/21.11.0:
- resolution: {integrity: sha512-ArbnyA3U5SGHokEvkfWjW+O8hOxV1RSJxOgriX/3A4xZRqixt9ZFHD0yPgZQF05Qj0oAqi8H/7stDorjoHY90Q==}
- engines: {node: '>=16.13.2'}
+ puppeteer-core@21.11.0:
dependencies:
'@puppeteer/browsers': 1.9.1
- chromium-bidi: 0.5.8_ncn5kdxe6rasr54dhc2fl42uoa
+ chromium-bidi: 0.5.8(devtools-protocol@0.0.1232444)
cross-fetch: 4.0.0
debug: 4.3.4
devtools-protocol: 0.0.1232444
@@ -33421,364 +37350,394 @@ packages:
- encoding
- supports-color
- utf-8-validate
- dev: false
- /pure-rand/6.1.0:
- resolution: {integrity: sha512-bVWawvoZoBYpp6yIoQtQXHZjmz35RSVHnUOTefl8Vcjr8snTPY1wnpSPMWekcFwbxI6gtmT7rSYPFvz71ldiOA==}
- dev: true
+ pure-rand@6.1.0: {}
- /putout/32.2.0_typescript@5.2.2:
- resolution: {integrity: sha512-ydPX2VCCLXywi9ETQmWEYoJMgg2Y9z0hlZVqWSQ/MyeDBEJhkXM91K1lAfQ0oDcAgsr2OSgJPIL1fEIZP55aHA==}
- engines: {node: '>=16'}
- hasBin: true
+ putout@36.13.1(eslint@8.57.1)(typescript@5.6.3):
dependencies:
- '@putout/babel': 1.2.2
- '@putout/cli-cache': 2.4.0
- '@putout/cli-keypress': 1.0.0
+ '@putout/babel': 2.9.0
+ '@putout/cli-cache': 3.2.0
+ '@putout/cli-choose-formatter': 4.0.0(putout@36.13.1(eslint@8.57.1)(typescript@5.6.3))
+ '@putout/cli-keypress': 2.0.0
'@putout/cli-match': 2.2.0
'@putout/cli-ruler': 3.1.0
'@putout/cli-staged': 1.1.0
- '@putout/cli-validate-args': 1.1.1
- '@putout/compare': 13.0.1
- '@putout/engine-loader': 12.0.0_putout@32.2.0
- '@putout/engine-parser': 9.3.0
- '@putout/engine-processor': 10.0.0_putout@32.2.0
- '@putout/engine-runner': 19.0.2_putout@32.2.0
- '@putout/eslint': 2.4.0
- '@putout/formatter-codeframe': 5.0.2_putout@32.2.0
- '@putout/formatter-dump': 4.0.1_putout@32.2.0
- '@putout/formatter-frame': 4.0.0_putout@32.2.0
- '@putout/formatter-json': 2.0.0_putout@32.2.0
- '@putout/formatter-json-lines': 3.0.0_putout@32.2.0
- '@putout/formatter-memory': 3.1.4_putout@32.2.0
- '@putout/formatter-progress': 4.0.0_putout@32.2.0
- '@putout/formatter-progress-bar': 3.0.2_putout@32.2.0
- '@putout/formatter-stream': 4.0.1_putout@32.2.0
- '@putout/operate': 11.0.0
- '@putout/operator-add-args': 7.1.0_putout@32.2.0
- '@putout/operator-declare': 8.0.2_putout@32.2.0
- '@putout/operator-regexp': 1.0.0_putout@32.2.0
- '@putout/plugin-apply-at': 2.0.0_putout@32.2.0
- '@putout/plugin-apply-destructuring': 7.1.0_putout@32.2.0
- '@putout/plugin-apply-early-return': 3.0.0_putout@32.2.0
- '@putout/plugin-apply-flat-map': 2.0.0_putout@32.2.0
- '@putout/plugin-apply-optional-chaining': 5.0.1_putout@32.2.0
- '@putout/plugin-apply-starts-with': 1.1.0_putout@32.2.0
- '@putout/plugin-apply-template-literals': 2.2.0_putout@32.2.0
- '@putout/plugin-browserlist': 1.0.1_putout@32.2.0
- '@putout/plugin-conditions': 3.0.1_putout@32.2.0
- '@putout/plugin-convert-apply-to-spread': 4.0.0_putout@32.2.0
- '@putout/plugin-convert-arguments-to-rest': 2.0.0_putout@32.2.0
- '@putout/plugin-convert-array-copy-to-slice': 3.0.0_putout@32.2.0
- '@putout/plugin-convert-assignment-to-arrow-function': 1.2.0_putout@32.2.0
- '@putout/plugin-convert-assignment-to-comparison': 2.0.0_putout@32.2.0
- '@putout/plugin-convert-commonjs-to-esm': 10.0.0_putout@32.2.0
- '@putout/plugin-convert-concat-to-flat': 1.0.0_putout@32.2.0
- '@putout/plugin-convert-const-to-let': 1.2.0_putout@32.2.0
- '@putout/plugin-convert-esm-to-commonjs': 6.0.0_putout@32.2.0
- '@putout/plugin-convert-index-of-to-includes': 2.0.1_putout@32.2.0
- '@putout/plugin-convert-mock-require-to-mock-import': 4.1.0_putout@32.2.0
- '@putout/plugin-convert-object-assign-to-merge-spread': 6.0.0_putout@32.2.0
- '@putout/plugin-convert-object-entries-to-array-entries': 3.0.1_putout@32.2.0
- '@putout/plugin-convert-optional-to-logical': 3.1.0_putout@32.2.0
- '@putout/plugin-convert-quotes-to-backticks': 2.1.0_putout@32.2.0
- '@putout/plugin-convert-template-to-string': 1.0.0_putout@32.2.0
- '@putout/plugin-convert-to-arrow-function': 4.0.0_putout@32.2.0
- '@putout/plugin-declare': 2.0.1_putout@32.2.0
- '@putout/plugin-declare-before-reference': 3.0.0_putout@32.2.0
- '@putout/plugin-declare-imports-first': 2.1.0_putout@32.2.0
- '@putout/plugin-eslint': 5.0.0_putout@32.2.0
- '@putout/plugin-extract-object-properties': 9.0.0_putout@32.2.0
- '@putout/plugin-extract-sequence-expressions': 3.5.0_putout@32.2.0
- '@putout/plugin-for-of': 3.0.0_putout@32.2.0
- '@putout/plugin-github': 8.2.0_putout@32.2.0
- '@putout/plugin-gitignore': 3.1.0_putout@32.2.0
- '@putout/plugin-logical-expressions': 4.0.0_putout@32.2.0
- '@putout/plugin-madrun': 16.1.1_putout@32.2.0
- '@putout/plugin-math': 2.1.0_putout@32.2.0
- '@putout/plugin-maybe': 1.1.4_putout@32.2.0
- '@putout/plugin-merge-destructuring-properties': 8.0.0_putout@32.2.0
- '@putout/plugin-merge-duplicate-functions': 2.0.0_putout@32.2.0
- '@putout/plugin-merge-duplicate-imports': 9.0.0_putout@32.2.0
- '@putout/plugin-montag': 2.0.0_putout@32.2.0
- '@putout/plugin-new': 2.1.0_putout@32.2.0
- '@putout/plugin-nodejs': 7.2.0_putout@32.2.0
- '@putout/plugin-npmignore': 2.0.1_putout@32.2.0
- '@putout/plugin-package-json': 5.0.1_putout@32.2.0
- '@putout/plugin-promises': 13.0.0_putout@32.2.0
- '@putout/plugin-putout': 15.0.0_putout@32.2.0
- '@putout/plugin-putout-config': 3.0.0_putout@32.2.0
- '@putout/plugin-regexp': 7.0.0_putout@32.2.0
- '@putout/plugin-remove-console': 6.0.0_putout@32.2.0
- '@putout/plugin-remove-constant-conditions': 4.0.2_putout@32.2.0
- '@putout/plugin-remove-debugger': 5.0.0_putout@32.2.0
- '@putout/plugin-remove-duplicate-case': 3.0.0_putout@32.2.0
- '@putout/plugin-remove-duplicate-keys': 3.0.0_putout@32.2.0
- '@putout/plugin-remove-empty': 10.4.0_putout@32.2.0
- '@putout/plugin-remove-iife': 4.1.0_putout@32.2.0
- '@putout/plugin-remove-nested-blocks': 6.3.0_putout@32.2.0
- '@putout/plugin-remove-unreachable-code': 1.2.0_putout@32.2.0
- '@putout/plugin-remove-unreferenced-variables': 3.1.0_putout@32.2.0
- '@putout/plugin-remove-unused-expressions': 7.0.0_putout@32.2.0
- '@putout/plugin-remove-unused-for-of-variables': 3.0.1_putout@32.2.0
- '@putout/plugin-remove-unused-private-fields': 2.1.0_putout@32.2.0
- '@putout/plugin-remove-unused-variables': 7.0.0_putout@32.2.0
- '@putout/plugin-remove-useless-arguments': 8.0.0_putout@32.2.0
- '@putout/plugin-remove-useless-array-constructor': 2.0.0_putout@32.2.0
- '@putout/plugin-remove-useless-array-entries': 1.0.0_putout@32.2.0
- '@putout/plugin-remove-useless-assign': 1.1.0_putout@32.2.0
- '@putout/plugin-remove-useless-constructor': 1.0.0_putout@32.2.0
- '@putout/plugin-remove-useless-continue': 2.0.0_putout@32.2.0
- '@putout/plugin-remove-useless-escape': 3.2.0_putout@32.2.0
- '@putout/plugin-remove-useless-functions': 3.0.0_putout@32.2.0
- '@putout/plugin-remove-useless-map': 1.1.0_putout@32.2.0
- '@putout/plugin-remove-useless-operand': 2.1.0_putout@32.2.0
- '@putout/plugin-remove-useless-replace': 1.0.4_putout@32.2.0
- '@putout/plugin-remove-useless-return': 5.0.0_putout@32.2.0
- '@putout/plugin-remove-useless-spread': 8.0.1_putout@32.2.0
- '@putout/plugin-remove-useless-template-expressions': 2.0.0_putout@32.2.0
- '@putout/plugin-remove-useless-variables': 10.0.0_putout@32.2.0
- '@putout/plugin-reuse-duplicate-init': 5.0.0_putout@32.2.0
- '@putout/plugin-simplify-assignment': 3.1.0_putout@32.2.0
- '@putout/plugin-simplify-boolean-return': 1.1.0_putout@32.2.0
- '@putout/plugin-simplify-ternary': 6.1.0_putout@32.2.0
- '@putout/plugin-split-nested-destructuring': 3.0.0_putout@32.2.0
- '@putout/plugin-split-variable-declarations': 3.0.0_putout@32.2.0
- '@putout/plugin-strict-mode': 9.0.0_putout@32.2.0
- '@putout/plugin-tape': 11.1.0_putout@32.2.0
- '@putout/plugin-try-catch': 3.0.0_putout@32.2.0
- '@putout/plugin-types': 3.0.0_putout@32.2.0
- '@putout/plugin-typescript': 5.0.3_putout@32.2.0
- '@putout/plugin-webpack': 3.0.0_putout@32.2.0
- '@putout/processor-css': 7.0.1_eccp55ufww7m6mic6rsho5pehq
- '@putout/processor-ignore': 4.0.0_putout@32.2.0
- '@putout/processor-javascript': 5.0.0_putout@32.2.0
- '@putout/processor-json': 7.0.1
- '@putout/processor-markdown': 10.1.2
- '@putout/processor-yaml': 6.0.0
- '@putout/traverse': 9.0.0
- ajv: 8.12.0
- chalk: 4.1.2
- ci-info: 3.8.0
- debug: 4.3.4
+ '@putout/cli-validate-args': 2.0.0
+ '@putout/compare': 15.0.2
+ '@putout/engine-loader': 15.0.1(putout@36.13.1(eslint@8.57.1)(typescript@5.6.3))
+ '@putout/engine-parser': 11.0.1
+ '@putout/engine-processor': 13.0.0(putout@36.13.1(eslint@8.57.1)(typescript@5.6.3))
+ '@putout/engine-reporter': 3.0.0(putout@36.13.1(eslint@8.57.1)(typescript@5.6.3))
+ '@putout/engine-runner': 22.0.4(putout@36.13.1(eslint@8.57.1)(typescript@5.6.3))
+ '@putout/eslint': 3.6.0(eslint@8.57.1)
+ '@putout/formatter-codeframe': 7.0.0(putout@36.13.1(eslint@8.57.1)(typescript@5.6.3))
+ '@putout/formatter-dump': 5.0.0(putout@36.13.1(eslint@8.57.1)(typescript@5.6.3))
+ '@putout/formatter-frame': 6.0.0(putout@36.13.1(eslint@8.57.1)(typescript@5.6.3))
+ '@putout/formatter-json': 2.0.0(putout@36.13.1(eslint@8.57.1)(typescript@5.6.3))
+ '@putout/formatter-json-lines': 3.0.0(putout@36.13.1(eslint@8.57.1)(typescript@5.6.3))
+ '@putout/formatter-memory': 4.0.1(putout@36.13.1(eslint@8.57.1)(typescript@5.6.3))
+ '@putout/formatter-progress': 5.0.0(putout@36.13.1(eslint@8.57.1)(typescript@5.6.3))
+ '@putout/formatter-progress-bar': 4.0.1(putout@36.13.1(eslint@8.57.1)(typescript@5.6.3))
+ '@putout/formatter-stream': 5.0.0(putout@36.13.1(eslint@8.57.1)(typescript@5.6.3))
+ '@putout/formatter-time': 3.0.1(putout@36.13.1(eslint@8.57.1)(typescript@5.6.3))
+ '@putout/operate': 12.14.0
+ '@putout/operator-add-args': 9.0.0(putout@36.13.1(eslint@8.57.1)(typescript@5.6.3))
+ '@putout/operator-declare': 10.0.1(putout@36.13.1(eslint@8.57.1)(typescript@5.6.3))
+ '@putout/operator-filesystem': 5.0.0(putout@36.13.1(eslint@8.57.1)(typescript@5.6.3))
+ '@putout/operator-ignore': 1.2.0
+ '@putout/operator-json': 2.2.0
+ '@putout/operator-match-files': 5.0.0(putout@36.13.1(eslint@8.57.1)(typescript@5.6.3))
+ '@putout/operator-regexp': 1.0.0(putout@36.13.1(eslint@8.57.1)(typescript@5.6.3))
+ '@putout/operator-rename-files': 2.0.0(putout@36.13.1(eslint@8.57.1)(typescript@5.6.3))
+ '@putout/plugin-apply-at': 2.0.0(putout@36.13.1(eslint@8.57.1)(typescript@5.6.3))
+ '@putout/plugin-apply-destructuring': 7.1.0(putout@36.13.1(eslint@8.57.1)(typescript@5.6.3))
+ '@putout/plugin-apply-dot-notation': 2.0.0(putout@36.13.1(eslint@8.57.1)(typescript@5.6.3))
+ '@putout/plugin-apply-early-return': 3.0.0(putout@36.13.1(eslint@8.57.1)(typescript@5.6.3))
+ '@putout/plugin-apply-flat-map': 2.0.0(putout@36.13.1(eslint@8.57.1)(typescript@5.6.3))
+ '@putout/plugin-apply-optional-chaining': 6.0.0(putout@36.13.1(eslint@8.57.1)(typescript@5.6.3))
+ '@putout/plugin-apply-overrides': 2.1.0(putout@36.13.1(eslint@8.57.1)(typescript@5.6.3))
+ '@putout/plugin-apply-starts-with': 1.1.0(putout@36.13.1(eslint@8.57.1)(typescript@5.6.3))
+ '@putout/plugin-apply-template-literals': 3.0.0(putout@36.13.1(eslint@8.57.1)(typescript@5.6.3))
+ '@putout/plugin-browserlist': 2.0.0(putout@36.13.1(eslint@8.57.1)(typescript@5.6.3))
+ '@putout/plugin-conditions': 5.0.0(putout@36.13.1(eslint@8.57.1)(typescript@5.6.3))
+ '@putout/plugin-convert-apply-to-spread': 4.0.0(putout@36.13.1(eslint@8.57.1)(typescript@5.6.3))
+ '@putout/plugin-convert-arguments-to-rest': 3.1.0(putout@36.13.1(eslint@8.57.1)(typescript@5.6.3))
+ '@putout/plugin-convert-array-copy-to-slice': 3.0.0(putout@36.13.1(eslint@8.57.1)(typescript@5.6.3))
+ '@putout/plugin-convert-assignment-to-arrow-function': 1.2.0(putout@36.13.1(eslint@8.57.1)(typescript@5.6.3))
+ '@putout/plugin-convert-assignment-to-comparison': 2.0.0(putout@36.13.1(eslint@8.57.1)(typescript@5.6.3))
+ '@putout/plugin-convert-assignment-to-declaration': 1.0.1(putout@36.13.1(eslint@8.57.1)(typescript@5.6.3))
+ '@putout/plugin-convert-concat-to-flat': 1.0.0(putout@36.13.1(eslint@8.57.1)(typescript@5.6.3))
+ '@putout/plugin-convert-const-to-let': 3.0.0(putout@36.13.1(eslint@8.57.1)(typescript@5.6.3))
+ '@putout/plugin-convert-index-of-to-includes': 2.0.1(putout@36.13.1(eslint@8.57.1)(typescript@5.6.3))
+ '@putout/plugin-convert-object-assign-to-merge-spread': 6.0.0(putout@36.13.1(eslint@8.57.1)(typescript@5.6.3))
+ '@putout/plugin-convert-object-entries-to-array-entries': 3.0.1(putout@36.13.1(eslint@8.57.1)(typescript@5.6.3))
+ '@putout/plugin-convert-optional-to-logical': 4.0.0(putout@36.13.1(eslint@8.57.1)(typescript@5.6.3))
+ '@putout/plugin-convert-quotes-to-backticks': 3.0.0(putout@36.13.1(eslint@8.57.1)(typescript@5.6.3))
+ '@putout/plugin-convert-template-to-string': 2.0.0(putout@36.13.1(eslint@8.57.1)(typescript@5.6.3))
+ '@putout/plugin-convert-to-arrow-function': 4.0.0(putout@36.13.1(eslint@8.57.1)(typescript@5.6.3))
+ '@putout/plugin-coverage': 1.0.0(putout@36.13.1(eslint@8.57.1)(typescript@5.6.3))
+ '@putout/plugin-declare': 4.0.0(putout@36.13.1(eslint@8.57.1)(typescript@5.6.3))
+ '@putout/plugin-declare-before-reference': 4.0.0(putout@36.13.1(eslint@8.57.1)(typescript@5.6.3))
+ '@putout/plugin-declare-imports-first': 2.1.0(putout@36.13.1(eslint@8.57.1)(typescript@5.6.3))
+ '@putout/plugin-eslint': 9.1.0(putout@36.13.1(eslint@8.57.1)(typescript@5.6.3))
+ '@putout/plugin-extract-object-properties': 9.0.0(putout@36.13.1(eslint@8.57.1)(typescript@5.6.3))
+ '@putout/plugin-extract-sequence-expressions': 3.5.0(putout@36.13.1(eslint@8.57.1)(typescript@5.6.3))
+ '@putout/plugin-filesystem': 6.0.0(putout@36.13.1(eslint@8.57.1)(typescript@5.6.3))
+ '@putout/plugin-for-of': 6.1.1(putout@36.13.1(eslint@8.57.1)(typescript@5.6.3))
+ '@putout/plugin-generators': 1.0.0(putout@36.13.1(eslint@8.57.1)(typescript@5.6.3))
+ '@putout/plugin-github': 13.0.0(putout@36.13.1(eslint@8.57.1)(typescript@5.6.3))
+ '@putout/plugin-gitignore': 6.0.0(putout@36.13.1(eslint@8.57.1)(typescript@5.6.3))
+ '@putout/plugin-group-imports-by-source': 2.0.0(putout@36.13.1(eslint@8.57.1)(typescript@5.6.3))
+ '@putout/plugin-labels': 1.0.0(putout@36.13.1(eslint@8.57.1)(typescript@5.6.3))
+ '@putout/plugin-logical-expressions': 6.0.0(putout@36.13.1(eslint@8.57.1)(typescript@5.6.3))
+ '@putout/plugin-madrun': 19.0.0(putout@36.13.1(eslint@8.57.1)(typescript@5.6.3))
+ '@putout/plugin-math': 2.1.0(putout@36.13.1(eslint@8.57.1)(typescript@5.6.3))
+ '@putout/plugin-maybe': 2.0.1(putout@36.13.1(eslint@8.57.1)(typescript@5.6.3))
+ '@putout/plugin-merge-destructuring-properties': 10.0.0(putout@36.13.1(eslint@8.57.1)(typescript@5.6.3))
+ '@putout/plugin-merge-duplicate-functions': 2.0.0(putout@36.13.1(eslint@8.57.1)(typescript@5.6.3))
+ '@putout/plugin-merge-duplicate-imports': 11.0.0(putout@36.13.1(eslint@8.57.1)(typescript@5.6.3))
+ '@putout/plugin-montag': 2.0.0(putout@36.13.1(eslint@8.57.1)(typescript@5.6.3))
+ '@putout/plugin-new': 3.0.1(putout@36.13.1(eslint@8.57.1)(typescript@5.6.3))
+ '@putout/plugin-nodejs': 12.0.1(putout@36.13.1(eslint@8.57.1)(typescript@5.6.3))
+ '@putout/plugin-npmignore': 5.0.0(putout@36.13.1(eslint@8.57.1)(typescript@5.6.3))
+ '@putout/plugin-package-json': 8.3.0(putout@36.13.1(eslint@8.57.1)(typescript@5.6.3))
+ '@putout/plugin-promises': 15.2.0(putout@36.13.1(eslint@8.57.1)(typescript@5.6.3))
+ '@putout/plugin-putout': 21.4.0(putout@36.13.1(eslint@8.57.1)(typescript@5.6.3))
+ '@putout/plugin-putout-config': 6.9.3(putout@36.13.1(eslint@8.57.1)(typescript@5.6.3))
+ '@putout/plugin-regexp': 9.0.0(putout@36.13.1(eslint@8.57.1)(typescript@5.6.3))
+ '@putout/plugin-remove-console': 6.0.0(putout@36.13.1(eslint@8.57.1)(typescript@5.6.3))
+ '@putout/plugin-remove-constant-conditions': 4.0.2(putout@36.13.1(eslint@8.57.1)(typescript@5.6.3))
+ '@putout/plugin-remove-debugger': 7.0.0(putout@36.13.1(eslint@8.57.1)(typescript@5.6.3))
+ '@putout/plugin-remove-duplicate-case': 3.0.0(putout@36.13.1(eslint@8.57.1)(typescript@5.6.3))
+ '@putout/plugin-remove-duplicate-keys': 6.0.0(putout@36.13.1(eslint@8.57.1)(typescript@5.6.3))
+ '@putout/plugin-remove-empty': 12.1.0(putout@36.13.1(eslint@8.57.1)(typescript@5.6.3))
+ '@putout/plugin-remove-iife': 4.1.0(putout@36.13.1(eslint@8.57.1)(typescript@5.6.3))
+ '@putout/plugin-remove-nested-blocks': 6.3.0(putout@36.13.1(eslint@8.57.1)(typescript@5.6.3))
+ '@putout/plugin-remove-quotes-from-import-assertions': 1.0.0(putout@36.13.1(eslint@8.57.1)(typescript@5.6.3))
+ '@putout/plugin-remove-unreachable-code': 1.2.0(putout@36.13.1(eslint@8.57.1)(typescript@5.6.3))
+ '@putout/plugin-remove-unreferenced-variables': 4.0.0(putout@36.13.1(eslint@8.57.1)(typescript@5.6.3))
+ '@putout/plugin-remove-unused-expressions': 9.0.0(putout@36.13.1(eslint@8.57.1)(typescript@5.6.3))
+ '@putout/plugin-remove-unused-for-of-variables': 3.0.1(putout@36.13.1(eslint@8.57.1)(typescript@5.6.3))
+ '@putout/plugin-remove-unused-labels': 1.0.2(putout@36.13.1(eslint@8.57.1)(typescript@5.6.3))
+ '@putout/plugin-remove-unused-private-fields': 2.1.0(putout@36.13.1(eslint@8.57.1)(typescript@5.6.3))
+ '@putout/plugin-remove-unused-variables': 10.1.0(putout@36.13.1(eslint@8.57.1)(typescript@5.6.3))
+ '@putout/plugin-remove-useless-arguments': 9.0.0(putout@36.13.1(eslint@8.57.1)(typescript@5.6.3))
+ '@putout/plugin-remove-useless-array': 1.1.0(putout@36.13.1(eslint@8.57.1)(typescript@5.6.3))
+ '@putout/plugin-remove-useless-array-constructor': 2.0.0(putout@36.13.1(eslint@8.57.1)(typescript@5.6.3))
+ '@putout/plugin-remove-useless-array-entries': 1.0.0(putout@36.13.1(eslint@8.57.1)(typescript@5.6.3))
+ '@putout/plugin-remove-useless-assign': 1.1.0(putout@36.13.1(eslint@8.57.1)(typescript@5.6.3))
+ '@putout/plugin-remove-useless-constructor': 2.0.0(putout@36.13.1(eslint@8.57.1)(typescript@5.6.3))
+ '@putout/plugin-remove-useless-continue': 2.0.0(putout@36.13.1(eslint@8.57.1)(typescript@5.6.3))
+ '@putout/plugin-remove-useless-delete': 1.0.4(putout@36.13.1(eslint@8.57.1)(typescript@5.6.3))
+ '@putout/plugin-remove-useless-escape': 6.0.0(putout@36.13.1(eslint@8.57.1)(typescript@5.6.3))
+ '@putout/plugin-remove-useless-functions': 3.0.0(putout@36.13.1(eslint@8.57.1)(typescript@5.6.3))
+ '@putout/plugin-remove-useless-map': 1.1.0(putout@36.13.1(eslint@8.57.1)(typescript@5.6.3))
+ '@putout/plugin-remove-useless-operand': 2.1.0(putout@36.13.1(eslint@8.57.1)(typescript@5.6.3))
+ '@putout/plugin-remove-useless-push': 1.0.3(putout@36.13.1(eslint@8.57.1)(typescript@5.6.3))
+ '@putout/plugin-remove-useless-replace': 1.0.4(putout@36.13.1(eslint@8.57.1)(typescript@5.6.3))
+ '@putout/plugin-remove-useless-return': 7.0.0(putout@36.13.1(eslint@8.57.1)(typescript@5.6.3))
+ '@putout/plugin-remove-useless-spread': 11.1.0(putout@36.13.1(eslint@8.57.1)(typescript@5.6.3))
+ '@putout/plugin-remove-useless-template-expressions': 2.0.0(putout@36.13.1(eslint@8.57.1)(typescript@5.6.3))
+ '@putout/plugin-remove-useless-variables': 12.6.1(putout@36.13.1(eslint@8.57.1)(typescript@5.6.3))
+ '@putout/plugin-reuse-duplicate-init': 6.0.0(putout@36.13.1(eslint@8.57.1)(typescript@5.6.3))
+ '@putout/plugin-simplify-assignment': 3.1.0(putout@36.13.1(eslint@8.57.1)(typescript@5.6.3))
+ '@putout/plugin-simplify-boolean-return': 2.0.0(putout@36.13.1(eslint@8.57.1)(typescript@5.6.3))
+ '@putout/plugin-simplify-ternary': 7.0.0(putout@36.13.1(eslint@8.57.1)(typescript@5.6.3))
+ '@putout/plugin-sort-imports-by-specifiers': 1.1.0(putout@36.13.1(eslint@8.57.1)(typescript@5.6.3))
+ '@putout/plugin-split-assignment-expressions': 1.2.0(putout@36.13.1(eslint@8.57.1)(typescript@5.6.3))
+ '@putout/plugin-split-nested-destructuring': 3.0.0(putout@36.13.1(eslint@8.57.1)(typescript@5.6.3))
+ '@putout/plugin-split-variable-declarations': 3.0.0(putout@36.13.1(eslint@8.57.1)(typescript@5.6.3))
+ '@putout/plugin-tape': 15.1.0(putout@36.13.1(eslint@8.57.1)(typescript@5.6.3))
+ '@putout/plugin-try-catch': 4.0.0(putout@36.13.1(eslint@8.57.1)(typescript@5.6.3))
+ '@putout/plugin-types': 5.1.0(putout@36.13.1(eslint@8.57.1)(typescript@5.6.3))
+ '@putout/plugin-typescript': 8.3.0(putout@36.13.1(eslint@8.57.1)(typescript@5.6.3))
+ '@putout/plugin-webpack': 3.0.0(putout@36.13.1(eslint@8.57.1)(typescript@5.6.3))
+ '@putout/processor-css': 9.0.0(putout@36.13.1(eslint@8.57.1)(typescript@5.6.3))(typescript@5.6.3)
+ '@putout/processor-filesystem': 5.0.0(putout@36.13.1(eslint@8.57.1)(typescript@5.6.3))
+ '@putout/processor-ignore': 6.0.1
+ '@putout/processor-javascript': 5.0.0(putout@36.13.1(eslint@8.57.1)(typescript@5.6.3))
+ '@putout/processor-json': 9.0.0
+ '@putout/processor-markdown': 12.1.0
+ '@putout/processor-yaml': 8.1.0
+ '@putout/traverse': 11.0.0
+ ajv: 8.17.1
+ chalk: 5.3.0
+ ci-info: 4.1.0
+ debug: 4.3.7(supports-color@9.4.0)
deepmerge: 4.3.1
- escalade: 3.1.1
- fast-glob: 3.3.1
- find-up: 6.3.0
+ escalade: 3.2.0
+ fast-glob: 3.3.2
+ find-up: 7.0.0
fullstore: 3.0.0
- ignore: 5.2.4
+ ignore: 6.0.2
is-relative: 1.0.0
- nano-memoize: 3.0.14
+ nano-memoize: 3.0.16
once: 1.4.0
- picomatch: 2.3.1
+ picomatch: 4.0.2
+ samadhi: 2.10.0(eslint@8.57.1)(typescript@5.6.3)
try-catch: 3.0.1
try-to-catch: 3.0.1
wraptile: 3.0.0
yargs-parser: 21.1.1
transitivePeerDependencies:
+ - eslint
- supports-color
- typescript
- dev: true
- /python-struct/1.1.3:
- resolution: {integrity: sha512-UsI/mNvk25jRpGKYI38Nfbv84z48oiIWwG67DLVvjRhy8B/0aIK+5Ju5WOHgw/o9rnEmbAS00v4rgKFQeC332Q==}
+ python-struct@1.1.3:
dependencies:
long: 4.0.0
- dev: false
- /q/1.5.1:
- resolution: {integrity: sha512-kV/CThkXo6xyFEZUugw/+pIOywXcDbFYgSct5cT3gqlbkBE1SJdwy6UQoZvodiWF/ckQLZyDE/Bu1M6gVu5lVw==}
- engines: {node: '>=0.6.0', teleport: '>=0.2.0'}
- dev: false
+ q@1.5.1: {}
- /q/2.0.3:
- resolution: {integrity: sha512-gv6vLGcmAOg96/fgo3d9tvA4dJNZL3fMyBqVRrGxQ+Q/o4k9QzbJ3NQF9cOO/71wRodoXhaPgphvMFU68qVAJQ==}
+ q@2.0.3:
dependencies:
asap: 2.0.6
pop-iterate: 1.0.1
weak-map: 1.0.8
- dev: false
- /qs/6.11.0:
- resolution: {integrity: sha512-MvjoMCJwEarSbUYk5O+nmoSzSutSsTwF85zcHPQ9OrlFoZOYIjaqBAJIqIXjptyD5vThxGq52Xu/MaJzRkIk4Q==}
- engines: {node: '>=0.6'}
+ qs@6.11.2:
dependencies:
side-channel: 1.0.6
- dev: false
- /qs/6.11.2:
- resolution: {integrity: sha512-tDNIz22aBzCDxLtVH++VnTfzxlfeK5CbqohpSqpJgj1Wg/cQbStNAz3NuqCs5vV+pjBsK4x4pN9HlVh7rcYRiA==}
- engines: {node: '>=0.6'}
+ qs@6.13.0:
dependencies:
side-channel: 1.0.6
- dev: false
- /qs/6.12.0:
- resolution: {integrity: sha512-trVZiI6RMOkO476zLGaBIzszOdFPnCCXHPG9kn0yuS1uz6xdVxPfZdB3vUig9pxPFDM9BRAgz/YUIVQ1/vuiUg==}
- engines: {node: '>=0.6'}
+ qs@6.13.1:
dependencies:
side-channel: 1.0.6
- dev: false
- /qs/6.5.3:
- resolution: {integrity: sha512-qxXIEh4pCGfHICj1mAJQ2/2XVZkjCDTcEgfoSQxc/fYivUZxTkk7L3bDBJSoNrEzXI17oUO5Dp07ktqE5KzczA==}
- engines: {node: '>=0.6'}
+ qs@6.5.3: {}
- /query-string/6.14.1:
- resolution: {integrity: sha512-XDxAeVmpfu1/6IjyT/gXHOl+S0vQ9owggJ30hhWKdHAsNPOcasn5o9BW0eejZqL2e4vMjhAxoW3jVHcD6mbcYw==}
- engines: {node: '>=6'}
+ query-string@6.14.1:
dependencies:
decode-uri-component: 0.2.2
filter-obj: 1.1.0
split-on-first: 1.1.0
strict-uri-encode: 2.0.0
- dev: false
- /query-string/7.1.3:
- resolution: {integrity: sha512-hh2WYhq4fi8+b+/2Kg9CEge4fDPvHS534aOOvOZeQ3+Vf2mCFsaFBYj0i+iXcAq6I9Vzp5fjMFBlONvayDC1qg==}
- engines: {node: '>=6'}
+ query-string@7.1.3:
dependencies:
decode-uri-component: 0.2.2
filter-obj: 1.1.0
split-on-first: 1.1.0
strict-uri-encode: 2.0.0
- dev: false
- /query-string/8.1.0:
- resolution: {integrity: sha512-BFQeWxJOZxZGix7y+SByG3F36dA0AbTy9o6pSmKFcFz7DAj0re9Frkty3saBn3nHo3D0oZJ/+rx3r8H8r8Jbpw==}
- engines: {node: '>=14.16'}
+ query-string@8.2.0:
dependencies:
decode-uri-component: 0.4.1
filter-obj: 5.1.0
split-on-first: 3.0.0
- dev: false
- /querystring/0.2.1:
- resolution: {integrity: sha512-wkvS7mL/JMugcup3/rMitHmd9ecIGd2lhFhK9N3UUQ450h66d1r3Y9nvXzQAW1Lq+wyx61k/1pfKS5KuKiyEbg==}
- engines: {node: '>=0.4.x'}
- deprecated: The querystring API is considered Legacy. new code should use the URLSearchParams API instead.
- dev: false
+ querystring@0.2.1: {}
- /querystringify/2.2.0:
- resolution: {integrity: sha512-FIqgj2EUvTa7R50u0rGsyTftzjYmv/a3hO345bZNrqabNqjtgiDMgmo4mkUjd+nzU5oF3dClKqFIPUKybUyqoQ==}
- dev: false
+ querystringify@2.2.0: {}
- /queue-microtask/1.2.3:
- resolution: {integrity: sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==}
+ queue-microtask@1.2.3: {}
- /queue-tick/1.0.1:
- resolution: {integrity: sha512-kJt5qhMxoszgU/62PLP1CJytzd2NKetjSRnyuj31fDd3Rlcz3fzlFdFLD1SItunPwyqEOkca6GbV612BWfaBag==}
+ queue-tick@1.0.1: {}
- /queue/6.0.2:
- resolution: {integrity: sha512-iHZWu+q3IdFZFX36ro/lKBkSvfkztY5Y7HMiPlOUjhupPcG2JMfst2KKEpu5XndviX/3UhFbRngUPNKtgvtZiA==}
+ queue@6.0.2:
dependencies:
inherits: 2.0.4
- dev: false
- /quick-lru/5.1.1:
- resolution: {integrity: sha512-WuyALRjWPDGtt/wzJiadO5AXY+8hZ80hVpe6MyivgraREW751X3SbhRvG3eLKOYN+8VEvqLcf3wdnt44Z4S4SA==}
- engines: {node: '>=10'}
+ quick-lru@5.1.1: {}
- /quick-lru/6.1.2:
- resolution: {integrity: sha512-AAFUA5O1d83pIHEhJwWCq/RQcRukCkn/NSm2QsTEMle5f2hP0ChI2+3Xb051PZCkLryI/Ir1MVKviT2FIloaTQ==}
- engines: {node: '>=12'}
- dev: false
+ quick-lru@6.1.2: {}
- /quotemeta/0.0.0:
- resolution: {integrity: sha512-1XGObUh7RN5b58vKuAsrlfqT+Rc4vmw8N4pP9gFCq1GFlTdV0Ex/D2Ro1Drvrqj++HPi3ig0Np17XPslELeMRA==}
- dev: false
+ quotemeta@0.0.0: {}
- /railroad-diagrams/1.0.0:
- resolution: {integrity: sha512-cz93DjNeLY0idrCNOH6PviZGRN9GJhsdm9hpn1YCS879fj4W+x5IFJhhkRZcwVgMmFF7R82UA/7Oh+R8lLZg6A==}
- dev: false
+ railroad-diagrams@1.0.0: {}
- /randexp/0.4.6:
- resolution: {integrity: sha512-80WNmd9DA0tmZrw9qQa62GPPWfuXJknrmVmLcxvq4uZBdYqb1wYoKTmnlGUchvVWe0XiLupYkBoXVOxz3C8DYQ==}
- engines: {node: '>=0.12'}
+ randexp@0.4.6:
dependencies:
discontinuous-range: 1.0.0
ret: 0.1.15
- dev: false
- /raw-body/2.5.2:
- resolution: {integrity: sha512-8zGqypfENjCIqGhgXToC8aB2r7YrBX+AQAfIPs/Mlk+BtPTztOvTS01NRW/3Eh60J+a48lt8qsCzirQ6loCVfA==}
- engines: {node: '>= 0.8'}
+ raw-body@2.5.2:
dependencies:
bytes: 3.1.2
http-errors: 2.0.0
iconv-lite: 0.4.24
unpipe: 1.0.0
- dev: false
- /react-is/16.13.1:
- resolution: {integrity: sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ==}
- dev: true
+ react-dom@18.3.1(react@18.3.1):
+ dependencies:
+ loose-envify: 1.4.0
+ react: 18.3.1
+ scheduler: 0.23.2
- /react-is/17.0.2:
- resolution: {integrity: sha512-w2GsyukL62IJnlaff/nRegPQR94C/XXamvMWmSHRJ4y7Ts/4ocGRmTHvOs8PSE6pB3dWOrD/nueuU5sduBsQ4w==}
- dev: true
+ react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106):
+ dependencies:
+ react: 19.0.0-rc-66855b96-20241106
+ scheduler: 0.25.0-rc-66855b96-20241106
- /react-is/18.3.1:
- resolution: {integrity: sha512-/LLMVyas0ljjAtoYiPqYiL8VWXzUUdThrmU5+n20DZv+a+ClRoevUzw5JxU+Ieh5/c87ytoTBV9G1FiKfNJdmg==}
- dev: true
+ react-is@16.13.1: {}
- /read-package-json-fast/2.0.3:
- resolution: {integrity: sha512-W/BKtbL+dUjTuRL2vziuYhp76s5HZ9qQhd/dKfWIZveD0O40453QNyZhC0e63lqZrAQ4jiOapVoeJ7JrszenQQ==}
- engines: {node: '>=10'}
+ react-is@17.0.2: {}
+
+ react-is@18.3.1: {}
+
+ react-markdown@9.0.1(@types/react@18.3.12)(react@18.3.1):
dependencies:
- json-parse-even-better-errors: 2.3.1
- npm-normalize-package-bin: 1.0.1
- dev: false
+ '@types/hast': 3.0.4
+ '@types/react': 18.3.12
+ devlop: 1.1.0
+ hast-util-to-jsx-runtime: 2.3.2
+ html-url-attributes: 3.0.1
+ mdast-util-to-hast: 13.2.0
+ react: 18.3.1
+ remark-parse: 11.0.0
+ remark-rehype: 11.1.1
+ unified: 11.0.5
+ unist-util-visit: 5.0.0
+ vfile: 6.0.3
+ transitivePeerDependencies:
+ - supports-color
- /read-pkg-up/8.0.0:
- resolution: {integrity: sha512-snVCqPczksT0HS2EC+SxUndvSzn6LRCwpfSvLrIfR5BKDQQZMaI6jPRC9dYvYFDRAuFEAnkwww8kBBNE/3VvzQ==}
- engines: {node: '>=12'}
+ react-markdown@9.0.1(@types/react@18.3.12)(react@19.0.0-rc-66855b96-20241106):
dependencies:
- find-up: 5.0.0
- read-pkg: 6.0.0
- type-fest: 1.4.0
- dev: true
+ '@types/hast': 3.0.4
+ '@types/react': 18.3.12
+ devlop: 1.1.0
+ hast-util-to-jsx-runtime: 2.3.2
+ html-url-attributes: 3.0.1
+ mdast-util-to-hast: 13.2.0
+ react: 19.0.0-rc-66855b96-20241106
+ remark-parse: 11.0.0
+ remark-rehype: 11.1.1
+ unified: 11.0.5
+ unist-util-visit: 5.0.0
+ vfile: 6.0.3
+ transitivePeerDependencies:
+ - supports-color
- /read-pkg/5.2.0:
- resolution: {integrity: sha512-Ug69mNOpfvKDAc2Q8DRpMjjzdtrnv9HcSMX+4VsZxD1aZ6ZzrIE7rlzXBtWTyhULSMKg076AW6WR5iZpD0JiOg==}
- engines: {node: '>=8'}
+ react-select@5.8.3(@types/react@18.3.12)(react-dom@18.3.1(react@18.3.1))(react@18.3.1):
dependencies:
- '@types/normalize-package-data': 2.4.2
- normalize-package-data: 2.5.0
- parse-json: 5.2.0
- type-fest: 0.6.0
- dev: true
+ '@babel/runtime': 7.26.0
+ '@emotion/cache': 11.13.5
+ '@emotion/react': 11.13.5(@types/react@18.3.12)(react@18.3.1)
+ '@floating-ui/dom': 1.6.12
+ '@types/react-transition-group': 4.4.11
+ memoize-one: 6.0.0
+ prop-types: 15.8.1
+ react: 18.3.1
+ react-dom: 18.3.1(react@18.3.1)
+ react-transition-group: 4.4.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ use-isomorphic-layout-effect: 1.1.2(@types/react@18.3.12)(react@18.3.1)
+ transitivePeerDependencies:
+ - '@types/react'
+ - supports-color
- /read-pkg/6.0.0:
- resolution: {integrity: sha512-X1Fu3dPuk/8ZLsMhEj5f4wFAF0DWoK7qhGJvgaijocXxBmSToKfbFtqbxMO7bVjNA1dmE5huAzjXj/ey86iw9Q==}
- engines: {node: '>=12'}
+ react-select@5.8.3(@types/react@18.3.12)(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106):
dependencies:
- '@types/normalize-package-data': 2.4.2
- normalize-package-data: 3.0.3
+ '@babel/runtime': 7.26.0
+ '@emotion/cache': 11.13.5
+ '@emotion/react': 11.13.5(@types/react@18.3.12)(react@19.0.0-rc-66855b96-20241106)
+ '@floating-ui/dom': 1.6.12
+ '@types/react-transition-group': 4.4.11
+ memoize-one: 6.0.0
+ prop-types: 15.8.1
+ react: 19.0.0-rc-66855b96-20241106
+ react-dom: 19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106)
+ react-transition-group: 4.4.5(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106)
+ use-isomorphic-layout-effect: 1.1.2(@types/react@18.3.12)(react@19.0.0-rc-66855b96-20241106)
+ transitivePeerDependencies:
+ - '@types/react'
+ - supports-color
+
+ react-transition-group@4.4.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1):
+ dependencies:
+ '@babel/runtime': 7.26.0
+ dom-helpers: 5.2.1
+ loose-envify: 1.4.0
+ prop-types: 15.8.1
+ react: 18.3.1
+ react-dom: 18.3.1(react@18.3.1)
+
+ react-transition-group@4.4.5(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106):
+ dependencies:
+ '@babel/runtime': 7.26.0
+ dom-helpers: 5.2.1
+ loose-envify: 1.4.0
+ prop-types: 15.8.1
+ react: 19.0.0-rc-66855b96-20241106
+ react-dom: 19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106)
+
+ react@18.3.1:
+ dependencies:
+ loose-envify: 1.4.0
+
+ react@19.0.0-rc-66855b96-20241106: {}
+
+ read-package-json-fast@2.0.3:
+ dependencies:
+ json-parse-even-better-errors: 2.3.1
+ npm-normalize-package-bin: 1.0.1
+
+ read-pkg@5.2.0:
+ dependencies:
+ '@types/normalize-package-data': 2.4.4
+ normalize-package-data: 2.5.0
parse-json: 5.2.0
- type-fest: 1.4.0
- dev: true
+ type-fest: 0.6.0
- /readable-stream/1.0.33:
- resolution: {integrity: sha512-72KxhcKi8bAvHP/cyyWSP+ODS5ef0DIRs0OzrhGXw31q41f19aoELCbvd42FjhpyEDxQMRiiC5rq9rfE5PzTqg==}
+ readable-stream@1.0.33:
dependencies:
core-util-is: 1.0.3
inherits: 2.0.4
isarray: 0.0.1
string_decoder: 0.10.31
- dev: false
- /readable-stream/1.1.14:
- resolution: {integrity: sha512-+MeVjFf4L44XUkhM1eYbD8fyEsxcV81pqMSR5gblfcLCHfZvbrqy4/qYHE+/R5HoBUT11WV5O08Cr1n3YXkWVQ==}
+ readable-stream@1.1.14:
dependencies:
core-util-is: 1.0.3
inherits: 2.0.4
isarray: 0.0.1
string_decoder: 0.10.31
- dev: false
- /readable-stream/2.3.8:
- resolution: {integrity: sha512-8p0AUk4XODgIewSi0l8Epjs+EVnWiK7NoDIEGU0HhE7+ZyY8D1IMY7odu5lRrFXGg71L15KG8QrPmum45RTtdA==}
+ readable-stream@2.3.8:
dependencies:
core-util-is: 1.0.3
inherits: 2.0.4
@@ -33788,464 +37747,354 @@ packages:
string_decoder: 1.1.1
util-deprecate: 1.0.2
- /readable-stream/3.6.2:
- resolution: {integrity: sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==}
- engines: {node: '>= 6'}
+ readable-stream@3.6.2:
dependencies:
inherits: 2.0.4
string_decoder: 1.3.0
util-deprecate: 1.0.2
- /readable-stream/4.5.2:
- resolution: {integrity: sha512-yjavECdqeZ3GLXNgRXgeQEdz9fvDDkNKyHnbHRFtOr7/LcfgBcmct7t/ET+HaCTqfh06OzoAxrkN/IfjJBVe+g==}
- engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
+ readable-stream@4.5.2:
dependencies:
abort-controller: 3.0.0
buffer: 6.0.3
events: 3.3.0
process: 0.11.10
string_decoder: 1.3.0
- dev: false
- /readable-web-to-node-stream/3.0.2:
- resolution: {integrity: sha512-ePeK6cc1EcKLEhJFt/AebMCLL+GgSKhuygrZ/GLaKZYEecIgIECf4UaUuaByiGtzckwR4ain9VzUh95T1exYGw==}
- engines: {node: '>=8'}
+ readable-web-to-node-stream@3.0.2:
dependencies:
readable-stream: 3.6.2
- dev: false
- /readdirp/3.6.0:
- resolution: {integrity: sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==}
- engines: {node: '>=8.10.0'}
+ readdirp@3.6.0:
dependencies:
picomatch: 2.3.1
- /readline-sync/1.4.10:
- resolution: {integrity: sha512-gNva8/6UAe8QYepIQH/jQ2qn91Qj0B9sYjMBBs3QOB8F2CXcKgLxQaJRP76sWVRQt+QU+8fAkCbCvjjMFu7Ycw==}
- engines: {node: '>= 0.8.0'}
- dev: false
-
- /recurly/3.29.0:
- resolution: {integrity: sha512-jn3+aawkAhIEpUu/bMtEZQIEWC4gpZnbPeVrrpA5AlA2MiAn5f6tCZKSXyhhmb2QwTEVpqYrWUqBP5SpZn8yKA==}
- dev: false
-
- /redent/4.0.0:
- resolution: {integrity: sha512-tYkDkVVtYkSVhuQ4zBgfvciymHaeuel+zFKXShfDnFP5SyVEP7qo70Rf1jTOTCx3vGNAbnEi/xFkcfQVMIBWag==}
- engines: {node: '>=12'}
+ recast@0.23.9:
dependencies:
- indent-string: 5.0.0
- strip-indent: 4.0.0
- dev: true
+ ast-types: 0.16.1
+ esprima: 4.0.1
+ source-map: 0.6.1
+ tiny-invariant: 1.3.3
+ tslib: 2.8.1
- /redeyed/0.4.4:
- resolution: {integrity: sha512-pnk1vsaNLu1UAAClKsImKz9HjBvg9i8cbRqTRzJbiCjGF0fZSMqpdcA5W3juO3c4etFvTrabECkq9wjC45ZyxA==}
+ recurly@3.30.0: {}
+
+ redeyed@0.4.4:
dependencies:
esprima: 1.0.4
- dev: false
- /redeyed/2.1.1:
- resolution: {integrity: sha512-FNpGGo1DycYAdnrKFxCMmKYgo/mILAqtRYbkdQD8Ep/Hk2PQ5+aEAEx+IU713RTDmuBaH0c8P5ZozurNu5ObRQ==}
+ redeyed@2.1.1:
dependencies:
esprima: 4.0.1
- dev: false
- /reduce-flatten/2.0.0:
- resolution: {integrity: sha512-EJ4UNY/U1t2P/2k6oqotuX2Cc3T6nxJwsM0N0asT7dhrtH1ltUxDn4NalSYmPE2rCkVpcf/X6R0wDwcFpzhd4w==}
- engines: {node: '>=6'}
- dev: true
+ reduce-flatten@2.0.0: {}
- /reflect-metadata/0.1.13:
- resolution: {integrity: sha512-Ts1Y/anZELhSsjMcU605fU9RE4Oi3p5ORujwbIKXfWa+0Zxs510Qrmrce5/Jowq3cHSZSJqBjypxmHarc+vEWg==}
- dev: false
+ reflect-metadata@0.1.14: {}
- /reflect.getprototypeof/1.0.6:
- resolution: {integrity: sha512-fmfw4XgoDke3kdI6h4xcUz1dG8uaiv5q9gcEwLS4Pnth2kxT+GZ7YehS1JTMGBQmtV7Y4GFGbs2re2NqhdozUg==}
- engines: {node: '>= 0.4'}
+ reflect.getprototypeof@1.0.6:
dependencies:
call-bind: 1.0.7
define-properties: 1.2.1
- es-abstract: 1.23.3
+ es-abstract: 1.23.5
es-errors: 1.3.0
get-intrinsic: 1.2.4
globalthis: 1.0.4
which-builtin-type: 1.1.4
- dev: true
- /reftools/1.1.9:
- resolution: {integrity: sha512-OVede/NQE13xBQ+ob5CKd5KyeJYU2YInb1bmV4nRoOfquZPkAkxuOXicSe1PvqIuZZ4kD13sPKBbR7UFDmli6w==}
- dev: false
+ reftools@1.1.9: {}
- /regenerate-unicode-properties/10.1.1:
- resolution: {integrity: sha512-X007RyZLsCJVVrjgEFVpLUTZwyOZk3oiL75ZcuYjlIWd6rNJtOjkBwQc5AsRrpbKVkxN6sklw/k/9m2jJYOf8Q==}
- engines: {node: '>=4'}
+ regenerate-unicode-properties@10.2.0:
dependencies:
regenerate: 1.4.2
- dev: false
- /regenerate/1.4.2:
- resolution: {integrity: sha512-zrceR/XhGYU/d/opr2EKO7aRHUeiBI8qjtfHqADTwZd6Szfy16la6kqD0MIUs5z5hx6AaKa+PixpPrR289+I0A==}
- dev: false
+ regenerate@1.4.2: {}
- /regenerator-runtime/0.14.0:
- resolution: {integrity: sha512-srw17NI0TUWHuGa5CFGGmhfNIeja30WMBfbslPNhf6JrqQlLN5gcrvig1oqPxiVaXb0oW0XRKtH6Nngs5lKCIA==}
- dev: false
+ regenerator-runtime@0.14.1: {}
- /regenerator-transform/0.15.2:
- resolution: {integrity: sha512-hfMp2BoF0qOk3uc5V20ALGDS2ddjQaLrdl7xrGXvAIow7qeWRM2VA2HuCHkUKk9slq3VwEwLNK3DFBqDfPGYtg==}
+ regenerator-transform@0.15.2:
dependencies:
- '@babel/runtime': 7.23.1
- dev: false
+ '@babel/runtime': 7.26.0
- /regexp-tree/0.1.27:
- resolution: {integrity: sha512-iETxpjK6YoRWJG5o6hXLwvjYAoW+FEZn9os0PD/b6AP6xQwsa/Y7lCVgIixBbUPMfhu+i2LtdeAqVTgGlQarfA==}
- hasBin: true
- dev: true
+ regexp-tree@0.1.27: {}
- /regexp.prototype.flags/1.5.2:
- resolution: {integrity: sha512-NcDiDkTLuPR+++OCKB0nWafEmhg/Da8aUPLPMQbK+bxKKCm1/S5he+AqYa4PlMCVBalb4/yxIRub6qkEx5yJbw==}
- engines: {node: '>= 0.4'}
+ regexp.prototype.flags@1.5.3:
dependencies:
call-bind: 1.0.7
define-properties: 1.2.1
es-errors: 1.3.0
set-function-name: 2.0.2
- /regexpp/3.2.0:
- resolution: {integrity: sha512-pq2bWo9mVD43nbts2wGv17XLiNLya+GklZ8kaDLV2Z08gDCsGpnKn9BFMepvWuHCbyVvY7J5o5+BVvoQbmlJLg==}
- engines: {node: '>=8'}
- dev: true
-
- /regexpu-core/5.3.2:
- resolution: {integrity: sha512-RAM5FlZz+Lhmo7db9L298p2vHP5ZywrVXmVXpmAD9GuL5MPH6t9ROw1iA/wfHkQ76Qe7AaPF0nGuim96/IrQMQ==}
- engines: {node: '>=4'}
+ regexpu-core@6.2.0:
dependencies:
- '@babel/regjsgen': 0.8.0
regenerate: 1.4.2
- regenerate-unicode-properties: 10.1.1
- regjsparser: 0.9.1
+ regenerate-unicode-properties: 10.2.0
+ regjsgen: 0.8.0
+ regjsparser: 0.12.0
unicode-match-property-ecmascript: 2.0.0
- unicode-match-property-value-ecmascript: 2.1.0
- dev: false
+ unicode-match-property-value-ecmascript: 2.2.0
- /regjsparser/0.9.1:
- resolution: {integrity: sha512-dQUtn90WanSNl+7mQKcXAgZxvUe7Z0SqXlgzv0za4LwiUhyzBC58yQO3liFoUgu8GiJVInAhJjkj1N0EtQ5nkQ==}
- hasBin: true
+ regjsgen@0.8.0: {}
+
+ regjsparser@0.12.0:
dependencies:
- jsesc: 0.5.0
- dev: false
+ jsesc: 3.0.2
- /remark-gfm/1.0.0:
- resolution: {integrity: sha512-KfexHJCiqvrdBZVbQ6RopMZGwaXz6wFJEfByIuEwGf0arvITHjiKKZ1dpXujjH9KZdm1//XJQwgfnJ3lmXaDPA==}
+ remark-gfm@1.0.0:
dependencies:
mdast-util-gfm: 0.1.2
micromark-extension-gfm: 0.3.3
transitivePeerDependencies:
- supports-color
- dev: false
- /remark-lint-blockquote-indentation/3.1.2:
- resolution: {integrity: sha512-5DOrFsZd5dXqA4p/VZvWSrqIWNFbBXjX7IV/FkVkxlNhNF/0FMf/4v8x1I2W3mzaZ7yDsWS/egpZnmligq1ckQ==}
+ remark-lint-blockquote-indentation@4.0.0:
+ dependencies:
+ '@types/mdast': 4.0.4
+ mdast-util-phrasing: 4.1.0
+ pluralize: 8.0.0
+ unified-lint-rule: 3.0.0
+ unist-util-position: 5.0.0
+ unist-util-visit-parents: 6.0.1
+
+ remark-lint-checkbox-character-style@5.0.0:
+ dependencies:
+ '@types/mdast': 4.0.4
+ mdast-util-phrasing: 4.1.0
+ unified-lint-rule: 3.0.0
+ unist-util-position: 5.0.0
+ unist-util-visit-parents: 6.0.1
+ vfile-message: 4.0.2
+
+ remark-lint-code-block-style@4.0.0:
+ dependencies:
+ '@types/mdast': 4.0.4
+ mdast-util-phrasing: 4.1.0
+ unified-lint-rule: 3.0.0
+ unist-util-position: 5.0.0
+ unist-util-visit-parents: 6.0.1
+ vfile-message: 4.0.2
+
+ remark-lint-emphasis-marker@4.0.0:
+ dependencies:
+ '@types/mdast': 4.0.4
+ unified-lint-rule: 3.0.0
+ unist-util-position: 5.0.0
+ unist-util-visit-parents: 6.0.1
+ vfile-message: 4.0.2
+
+ remark-lint-fenced-code-marker@4.0.0:
+ dependencies:
+ '@types/mdast': 4.0.4
+ mdast-util-phrasing: 4.1.0
+ unified-lint-rule: 3.0.0
+ unist-util-position: 5.0.0
+ unist-util-visit-parents: 6.0.1
+ vfile-message: 4.0.2
+
+ remark-lint-heading-style@4.0.0:
+ dependencies:
+ '@types/mdast': 4.0.4
+ mdast-util-heading-style: 3.0.0
+ mdast-util-phrasing: 4.1.0
+ unified-lint-rule: 3.0.0
+ unist-util-position: 5.0.0
+ unist-util-visit-parents: 6.0.1
+ vfile-message: 4.0.2
+
+ remark-lint-link-title-style@4.0.0:
+ dependencies:
+ '@types/mdast': 4.0.4
+ unified-lint-rule: 3.0.0
+ unist-util-position: 5.0.0
+ unist-util-visit-parents: 6.0.1
+ vfile-message: 4.0.2
+
+ remark-lint-list-item-content-indent@4.0.0:
+ dependencies:
+ '@types/mdast': 4.0.4
+ mdast-util-phrasing: 4.1.0
+ pluralize: 8.0.0
+ unified-lint-rule: 3.0.0
+ unist-util-position: 5.0.0
+ unist-util-visit-parents: 6.0.1
+ vfile-message: 4.0.2
+
+ remark-lint-ordered-list-marker-style@4.0.0:
+ dependencies:
+ '@types/mdast': 4.0.4
+ mdast-util-phrasing: 4.1.0
+ micromark-util-character: 2.1.1
+ unified-lint-rule: 3.0.0
+ unist-util-position: 5.0.0
+ unist-util-visit-parents: 6.0.1
+ vfile-message: 4.0.2
+
+ remark-lint-ordered-list-marker-value@4.0.0:
+ dependencies:
+ '@types/mdast': 4.0.4
+ devlop: 1.1.0
+ mdast-util-phrasing: 4.1.0
+ micromark-util-character: 2.1.1
+ unified-lint-rule: 3.0.0
+ unist-util-position: 5.0.0
+ unist-util-visit-parents: 6.0.1
+ vfile-message: 4.0.2
+
+ remark-lint-rule-style@4.0.0:
+ dependencies:
+ '@types/mdast': 4.0.4
+ mdast-util-phrasing: 4.1.0
+ unified-lint-rule: 3.0.0
+ unist-util-position: 5.0.0
+ unist-util-visit-parents: 6.0.1
+ vfile-message: 4.0.2
+
+ remark-lint-strong-marker@4.0.0:
+ dependencies:
+ '@types/mdast': 4.0.4
+ unified-lint-rule: 3.0.0
+ unist-util-position: 5.0.0
+ unist-util-visit-parents: 6.0.1
+ vfile-message: 4.0.2
+
+ remark-lint-table-cell-padding@5.0.0:
dependencies:
- '@types/mdast': 3.0.13
- pluralize: 8.0.0
- unified: 10.1.2
- unified-lint-rule: 2.1.2
- unist-util-generated: 2.0.1
- unist-util-position: 4.0.4
- unist-util-visit: 4.1.2
- dev: true
-
- /remark-lint-checkbox-character-style/4.1.2:
- resolution: {integrity: sha512-5ITz+1cCuJ3Jv/Q7rKgDEucCOnIgjWDnSHPJA1tb4TI/D316h+ALbDhZIpP8gyfAm6sBAh3Pwz9XZJN2uJB5UQ==}
- dependencies:
- '@types/mdast': 3.0.13
- unified: 10.1.2
- unified-lint-rule: 2.1.2
- unist-util-position: 4.0.4
- unist-util-visit: 4.1.2
- dev: true
-
- /remark-lint-code-block-style/3.1.2:
- resolution: {integrity: sha512-3wsWmzzdyEsB9sOzBOf46TSkwwVKXN2JpTEQb6feN0Tl6Vg75F7T9MHqMz7aqk/56bOXSxUzdpXDscGBhziLRA==}
- dependencies:
- '@types/mdast': 3.0.13
- unified: 10.1.2
- unified-lint-rule: 2.1.2
- unist-util-generated: 2.0.1
- unist-util-position: 4.0.4
- unist-util-visit: 4.1.2
- dev: true
-
- /remark-lint-emphasis-marker/3.1.2:
- resolution: {integrity: sha512-hPZ8vxZrIfxmLA5B66bA8y3PdHjcCQuaLsySIqi5PM2DkpN6a7zAP3v1znyRSaYJ1ANVWcu00/0bNzuUjflGCA==}
- dependencies:
- '@types/mdast': 3.0.13
- unified: 10.1.2
- unified-lint-rule: 2.1.2
- unist-util-position: 4.0.4
- unist-util-visit: 4.1.2
- dev: true
-
- /remark-lint-fenced-code-marker/3.1.2:
- resolution: {integrity: sha512-6XNqjOuhT+0c7Q/22aCsMz61ne9g8HRpYF79EXQPdbzYa+PcfPXMiQKStONY3PfC8OE2/3WXI2zcs8w9x+8+VQ==}
- dependencies:
- '@types/mdast': 3.0.13
- unified: 10.1.2
- unified-lint-rule: 2.1.2
- unist-util-position: 4.0.4
- unist-util-visit: 4.1.2
- dev: true
-
- /remark-lint-heading-style/3.1.2:
- resolution: {integrity: sha512-0RkcRPV/H2bPFgeInzBkK1cWUwtFTm83I+Db/Z5tDY02GzKOosHLvxtJyj/1391/opAH1LYbHtHWffir99IUgw==}
- dependencies:
- '@types/mdast': 3.0.13
- mdast-util-heading-style: 2.0.1
- unified: 10.1.2
- unified-lint-rule: 2.1.2
- unist-util-generated: 2.0.1
- unist-util-visit: 4.1.2
- dev: true
-
- /remark-lint-link-title-style/3.1.2:
- resolution: {integrity: sha512-if4MahYJVvQUWlrXDF8GSv4b9VtLSgMSDHeikQp1/hGYlihLl9uGw3nlL5Lf9DqTN0qaT6RPbXOjuuzHlk38sg==}
- dependencies:
- '@types/mdast': 3.0.13
- unified: 10.1.2
- unified-lint-rule: 2.1.2
- unist-util-position: 4.0.4
- unist-util-visit: 4.1.2
- vfile-location: 4.1.0
- dev: true
-
- /remark-lint-list-item-content-indent/3.1.2:
- resolution: {integrity: sha512-TB0pmrWiRaQW80Y/PILFQTnHDghRxXNzMwyawlP+DBF9gNom3pEBmb4ZlGQlN0aa3r8VWeIKdv1ylHrfXE0vqA==}
- dependencies:
- '@types/mdast': 3.0.13
+ '@types/mdast': 4.0.4
+ '@types/unist': 3.0.3
+ devlop: 1.1.0
+ mdast-util-phrasing: 4.1.0
pluralize: 8.0.0
- unified: 10.1.2
- unified-lint-rule: 2.1.2
- unist-util-position: 4.0.4
- unist-util-visit: 4.1.2
- dev: true
-
- /remark-lint-ordered-list-marker-style/3.1.2:
- resolution: {integrity: sha512-62iVE/YQsA0Azaqt8yAJWPplWLS47kDLjXeC2PlRIAzCqbNt9qH3HId8vZ15QTSrp8rHmJwrCMdcqV6AZUi7gQ==}
- dependencies:
- '@types/mdast': 3.0.13
- unified: 10.1.2
- unified-lint-rule: 2.1.2
- unist-util-generated: 2.0.1
- unist-util-position: 4.0.4
- unist-util-visit: 4.1.2
- dev: true
-
- /remark-lint-rule-style/3.1.2:
- resolution: {integrity: sha512-0CsX2XcX9pIhAP5N7Y8mhYXp3/Ld+NvxXY1p0LHAq0NZu17UsZLuegvx/s25uFbQs08DcmSqyKnepU9qGGqmTQ==}
- dependencies:
- '@types/mdast': 3.0.13
- unified: 10.1.2
- unified-lint-rule: 2.1.2
- unist-util-position: 4.0.4
- unist-util-visit: 4.1.2
- dev: true
-
- /remark-lint-strong-marker/3.1.2:
- resolution: {integrity: sha512-U/g4wngmiI0Q6WBRQG6pZxnDS33Wt/0QYA3+KNFBDykoi1vXsDEorIqy3dEag9z6XHwcMvFDsff6VRUhaOJWQg==}
- dependencies:
- '@types/mdast': 3.0.13
- unified: 10.1.2
- unified-lint-rule: 2.1.2
- unist-util-position: 4.0.4
- unist-util-visit: 4.1.2
- dev: true
-
- /remark-lint-table-cell-padding/4.1.3:
- resolution: {integrity: sha512-N9xtnS6MG/H3srAMjqqaF26A7socr87pIgt64dr5rxoSbDRWRPChGQ8y7wKyV8VeyRNF37e3E5KB3bQVqjSYaQ==}
- dependencies:
- '@types/mdast': 3.0.13
- '@types/unist': 2.0.8
- unified: 10.1.2
- unified-lint-rule: 2.1.2
- unist-util-position: 4.0.4
- unist-util-visit: 4.1.2
- dev: true
-
- /remark-lint/9.1.2:
- resolution: {integrity: sha512-m9e/aPlh7tsvfJfj8tPxrQzD6oEdb9Foko+Ya/6OwUP9EoGMfehv1Qtv26W1DoH58Wn8rT8CD+KuprTWscMmIA==}
- dependencies:
- '@types/mdast': 3.0.13
- remark-message-control: 7.1.1
- unified: 10.1.2
+ unified-lint-rule: 3.0.0
+ unist-util-position: 5.0.0
+ unist-util-visit-parents: 6.0.1
+ vfile-message: 4.0.2
+
+ remark-lint@10.0.0:
+ dependencies:
+ '@types/mdast': 4.0.4
+ remark-message-control: 8.0.0
+ unified: 11.0.5
transitivePeerDependencies:
- supports-color
- dev: true
- /remark-math/4.0.0:
- resolution: {integrity: sha512-lH7SoQenXtQrvL0bm+mjZbvOk//YWNuyR+MxV18Qyv8rgFmMEGNuB0TSCQDkoDaiJ40FCnG8lxErc/zhcedYbw==}
+ remark-math@4.0.0:
dependencies:
mdast-util-math: 0.1.2
micromark-extension-math: 0.1.2
transitivePeerDependencies:
- supports-color
- dev: false
- /remark-message-control/7.1.1:
- resolution: {integrity: sha512-xKRWl1NTBOKed0oEtCd8BUfH5m4s8WXxFFSoo7uUwx6GW/qdCy4zov5LfPyw7emantDmhfWn5PdIZgcbVcWMDQ==}
+ remark-message-control@8.0.0:
dependencies:
- '@types/mdast': 3.0.13
- mdast-comment-marker: 2.1.2
- unified: 10.1.2
- unified-message-control: 4.0.0
- vfile: 5.3.7
+ '@types/mdast': 4.0.4
+ mdast-comment-marker: 3.0.0
+ unified-message-control: 5.0.0
+ vfile: 6.0.3
transitivePeerDependencies:
- supports-color
- dev: true
- /remark-parse/11.0.0:
- resolution: {integrity: sha512-FCxlKLNGknS5ba/1lmpYijMUzX2esxW5xQqjWxw2eHFfS2MSdaHVINFmhjo+qN1WhZhNimq0dZATN9pH0IDrpA==}
+ remark-parse@11.0.0:
dependencies:
'@types/mdast': 4.0.4
- mdast-util-from-markdown: 2.0.1
- micromark-util-types: 2.0.0
+ mdast-util-from-markdown: 2.0.2
+ micromark-util-types: 2.0.1
unified: 11.0.5
transitivePeerDependencies:
- supports-color
- dev: true
- /remark-parse/9.0.0:
- resolution: {integrity: sha512-geKatMwSzEXKHuzBNU1z676sGcDcFoChMK38TgdHJNAYfFtsfHDQG7MoJAjs6sgYMqyLduCYWDIWZIxiPeafEw==}
+ remark-parse@9.0.0:
dependencies:
mdast-util-from-markdown: 0.8.5
transitivePeerDependencies:
- supports-color
- dev: false
-
- /remark-preset-lint-consistent/5.1.2:
- resolution: {integrity: sha512-RQrWBFmyIkKfXtp9P1Fui7UbGSfXth9nuvRJUVnO0vfevBJe02iyMZWPokXSwkDOI/cM539wj0i3vrQupz+v5A==}
- dependencies:
- '@types/mdast': 3.0.13
- remark-lint: 9.1.2
- remark-lint-blockquote-indentation: 3.1.2
- remark-lint-checkbox-character-style: 4.1.2
- remark-lint-code-block-style: 3.1.2
- remark-lint-emphasis-marker: 3.1.2
- remark-lint-fenced-code-marker: 3.1.2
- remark-lint-heading-style: 3.1.2
- remark-lint-link-title-style: 3.1.2
- remark-lint-list-item-content-indent: 3.1.2
- remark-lint-ordered-list-marker-style: 3.1.2
- remark-lint-rule-style: 3.1.2
- remark-lint-strong-marker: 3.1.2
- remark-lint-table-cell-padding: 4.1.3
- unified: 10.1.2
+
+ remark-preset-lint-consistent@6.0.0:
+ dependencies:
+ remark-lint: 10.0.0
+ remark-lint-blockquote-indentation: 4.0.0
+ remark-lint-checkbox-character-style: 5.0.0
+ remark-lint-code-block-style: 4.0.0
+ remark-lint-emphasis-marker: 4.0.0
+ remark-lint-fenced-code-marker: 4.0.0
+ remark-lint-heading-style: 4.0.0
+ remark-lint-link-title-style: 4.0.0
+ remark-lint-list-item-content-indent: 4.0.0
+ remark-lint-ordered-list-marker-style: 4.0.0
+ remark-lint-ordered-list-marker-value: 4.0.0
+ remark-lint-rule-style: 4.0.0
+ remark-lint-strong-marker: 4.0.0
+ remark-lint-table-cell-padding: 5.0.0
+ unified: 11.0.5
transitivePeerDependencies:
- supports-color
- dev: true
- /remark-stringify/11.0.0:
- resolution: {integrity: sha512-1OSmLd3awB/t8qdoEOMazZkNsfVTeY4fTsgzcQFdXNq8ToTN4ZGwrMnlda4K6smTFKD+GRV6O48i6Z4iKgPPpw==}
+ remark-rehype@11.1.1:
dependencies:
+ '@types/hast': 3.0.4
'@types/mdast': 4.0.4
- mdast-util-to-markdown: 2.1.0
+ mdast-util-to-hast: 13.2.0
unified: 11.0.5
- dev: true
+ vfile: 6.0.3
- /remeda/1.61.0:
- resolution: {integrity: sha512-caKfSz9rDeSKBQQnlJnVW3mbVdFgxgGWQKq1XlFokqjf+hQD5gxutLGTTY2A/x24UxVyJe9gH5fAkFI63ULw4A==}
- dev: false
+ remark-stringify@11.0.0:
+ dependencies:
+ '@types/mdast': 4.0.4
+ mdast-util-to-markdown: 2.1.2
+ unified: 11.0.5
- /remedial/1.0.8:
- resolution: {integrity: sha512-/62tYiOe6DzS5BqVsNpH/nkGlX45C/Sp6V+NtiN6JQNS1Viay7cWkazmRkrQrdFj2eshDe96SIQNIoMxqhzBOg==}
- dev: false
+ remedial@1.0.8: {}
- /remove-blank-lines/1.4.1:
- resolution: {integrity: sha512-NEs3uvzpaZscL9qFGIHMO7iFy45/nRQC0bBeIMys8UDJT5CX/OcgDeRpcmwXGcr9Ez+IYZka7w0xhA9pEs7Cag==}
- dev: true
+ remove-blank-lines@1.4.1: {}
- /remove-trailing-separator/1.1.0:
- resolution: {integrity: sha512-/hS+Y0u3aOfIETiaiirUFwDBDzmXPvO+jAfKTitUngIPzdKc6Z0LoFjM/CK5PL4C+eKwHohlHAb6H0VFfmmUsw==}
- dev: false
+ remove-trailing-separator@1.1.0: {}
- /remove-undefined-objects/1.1.0:
- resolution: {integrity: sha512-lZ8dJTI11nUE3M2l9lXHkXvhAxOquhLn/umJuBqu1Ea+4A10Wh0fymb36ioeze7UgCjYKIlZuSqjVZDtYa+FeQ==}
- engines: {node: ^12 || ^14 || ^16}
- dev: false
+ remove-undefined-objects@1.1.0: {}
- /renamer/4.0.0:
- resolution: {integrity: sha512-yurufcXxbJfFBVAUoByNyDVH811zTZ/MrKo6gUH8pHGeAmdK7J5egj2lSNe57HuVIvnVzSalzeVGu8pi8UHGxg==}
- engines: {node: '>=12.17'}
- hasBin: true
+ renamer@4.0.0:
dependencies:
array-back: 6.2.2
chalk: 4.1.2
command-line-args: 5.2.1
command-line-usage: 6.1.3
- current-module-paths: 1.1.1
+ current-module-paths: 1.1.2
fast-diff: 1.3.0
- file-set: 5.1.3
+ file-set: 5.2.2
global-dirs: 3.0.1
load-module: 4.2.1
printj: 1.3.1
stream-read-all: 3.0.1
- typical: 7.1.1
- dev: true
+ typical: 7.3.0
+ transitivePeerDependencies:
+ - '@75lb/nature'
- /rendy/3.1.1:
- resolution: {integrity: sha512-v1nEGlGtbH1liqEdhia7tAH5wyQm31p4tYY9dbVRem35RjAf8Syrsy0/NJ1UzrFzoDGmIBS/UNg14iOLwkdGuQ==}
- engines: {node: '>=4'}
- dev: true
+ rendy@4.1.3: {}
- /repeat-string/1.6.1:
- resolution: {integrity: sha512-PV0dzCYDNfRi1jCDbJzpW7jNNDRuCOG/jI5ctQcGKt/clZD+YcPS3yIlWuTJMmESC8aevCFmWJy5wjAFgNqN6w==}
- engines: {node: '>=0.10'}
- dev: false
+ repeat-string@1.6.1: {}
- /request-promise-any/1.0.9_request@2.88.2:
- resolution: {integrity: sha512-TCS+MYW4C0TupboWQqCcq4ua7wt/wbMxQBX0vJ39qoGCdd379TZSDOdzLvgXNfEjP1lMOd/tqtk7cyeb59Kagw==}
- engines: {node: '>=0.10.0'}
- deprecated: request-promise-any has been deprecated because it extends the now deprecated request package, see https://github.com/request/request/issues/3142
- peerDependencies:
- request: ^2.34
+ request-promise-any@1.0.9(request@2.88.2):
dependencies:
any-promise: 1.3.0
request: 2.88.2
- request-promise-core: 1.1.4_request@2.88.2
+ request-promise-core: 1.1.4(request@2.88.2)
stealthy-require: 1.1.1
tough-cookie: 2.5.0
- dev: false
- /request-promise-core/1.1.4_request@2.88.2:
- resolution: {integrity: sha512-TTbAfBBRdWD7aNNOoVOBH4pN/KigV6LyapYNNlAPA8JwbovRti1E88m3sYAwsLi5ryhPKsE9APwnjFTgdUjTpw==}
- engines: {node: '>=0.10.0'}
- peerDependencies:
- request: ^2.34
+ request-promise-core@1.1.4(request@2.88.2):
dependencies:
lodash: 4.17.21
request: 2.88.2
- dev: false
- /request-promise/4.2.6_request@2.88.2:
- resolution: {integrity: sha512-HCHI3DJJUakkOr8fNoCc73E5nU5bqITjOYFMDrKHYOXWXrgD/SBaC7LjwuPymUprRyuF06UK7hd/lMHkmUXglQ==}
- engines: {node: '>=0.10.0'}
- deprecated: request-promise has been deprecated because it extends the now deprecated request package, see https://github.com/request/request/issues/3142
- peerDependencies:
- request: ^2.34
+ request-promise@4.2.6(request@2.88.2):
dependencies:
bluebird: 3.7.2
request: 2.88.2
- request-promise-core: 1.1.4_request@2.88.2
+ request-promise-core: 1.1.4(request@2.88.2)
stealthy-require: 1.1.1
tough-cookie: 2.5.0
- dev: false
- /request/2.88.2:
- resolution: {integrity: sha512-MsvtOrfG9ZcrOwAW+Qi+F6HbD0CWXEh9ou77uOb7FM2WPhwT7smM833PzanhJLsgXjN89Ir6V2PczXNnMpwKhw==}
- engines: {node: '>= 6'}
- deprecated: request has been deprecated, see https://github.com/request/request/issues/3142
+ request@2.88.2:
dependencies:
aws-sign2: 0.7.0
- aws4: 1.12.0
+ aws4: 1.13.2
caseless: 0.12.0
combined-stream: 1.0.8
extend: 3.0.2
@@ -34265,366 +38114,256 @@ packages:
tunnel-agent: 0.6.0
uuid: 3.4.0
- /require-directory/2.1.1:
- resolution: {integrity: sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q==}
- engines: {node: '>=0.10.0'}
+ require-directory@2.1.1: {}
- /require-from-string/2.0.2:
- resolution: {integrity: sha512-Xf0nWe6RseziFMu+Ap9biiUbmplq6S9/p+7w7YXP/JBHhrUDDUhwa+vANyubuqfZWTveU//DYVGsDG7RKL/vEw==}
- engines: {node: '>=0.10.0'}
+ require-from-string@2.0.2: {}
- /require-main-filename/2.0.0:
- resolution: {integrity: sha512-NKN5kMDylKuldxYLSUfrbo5Tuzh4hd+2E8NPPX02mZtn1VuREQToYe/ZdlJy+J3uCpfaiGF05e7B8W0iXbQHmg==}
+ require-main-filename@2.0.0: {}
- /require-package-name/2.0.1:
- resolution: {integrity: sha512-uuoJ1hU/k6M0779t3VMVIYpb2VMJk05cehCaABFhXaibcbvfgR8wKiozLjVFSzJPmQMRqIcO0HMyTFqfV09V6Q==}
- dev: false
+ require-package-name@2.0.1: {}
- /requires-port/1.0.0:
- resolution: {integrity: sha512-KigOCHcocU3XODJxsu8i/j8T9tzT4adHiecwORRQ0ZZFcp7ahwXuRU1m+yuO90C5ZUyGeGfocHDI14M3L3yDAQ==}
- dev: false
+ requires-port@1.0.0: {}
- /requizzle/0.2.4:
- resolution: {integrity: sha512-JRrFk1D4OQ4SqovXOgdav+K8EAhSB/LJZqCz8tbX0KObcdeM15Ss59ozWMBWmmINMagCwmqn4ZNryUGpBsl6Jw==}
+ requizzle@0.2.4:
dependencies:
lodash: 4.17.21
- dev: false
- /resolve-alpn/1.2.1:
- resolution: {integrity: sha512-0a1F4l73/ZFZOakJnQ3FvkJ2+gSTQWz/r2KE5OdDY0TxPm5h4GkqkWWfM47T7HsbnOtcJVEF4epCVy6u7Q3K+g==}
- dev: false
+ resolve-alpn@1.2.1: {}
- /resolve-cwd/3.0.0:
- resolution: {integrity: sha512-OrZaX2Mb+rJCpH/6CpSqt9xFVpN++x01XnN2ie9g6P5/3xelLAkXWVADpdz1IHD/KFfEXyE6V0U01OQ3UO2rEg==}
- engines: {node: '>=8'}
+ resolve-cwd@3.0.0:
dependencies:
resolve-from: 5.0.0
- dev: true
-
- /resolve-from/3.0.0:
- resolution: {integrity: sha512-GnlH6vxLymXJNMBo7XP1fJIzBFbdYt49CuTwmB/6N53t+kMPRMFKz783LlQ4tv28XoQfMWinAJX6WCGf2IlaIw==}
- engines: {node: '>=4'}
- dev: true
- /resolve-from/4.0.0:
- resolution: {integrity: sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==}
- engines: {node: '>=4'}
- dev: true
+ resolve-from@3.0.0: {}
- /resolve-from/5.0.0:
- resolution: {integrity: sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw==}
- engines: {node: '>=8'}
- dev: true
+ resolve-from@4.0.0: {}
- /resolve-pkg-maps/1.0.0:
- resolution: {integrity: sha512-seS2Tj26TBVOC2NIc2rOe2y2ZO7efxITtLZcGSOnHHNOQ7CkiUBfw0Iw2ck6xkIhPwLhKNLS8BO+hEpngQlqzw==}
- dev: true
+ resolve-from@5.0.0: {}
- /resolve.exports/2.0.2:
- resolution: {integrity: sha512-X2UW6Nw3n/aMgDVy+0rSqgHlv39WZAlZrXCdnbyEiKm17DSqHX4MmQMaST3FbeWR5FTuRcUwYAziZajji0Y7mg==}
- engines: {node: '>=10'}
- dev: true
+ resolve-pkg-maps@1.0.0: {}
- /resolve/1.22.8:
- resolution: {integrity: sha512-oKWePCxqpd6FlLvGV1VU0x7bkPmmCNolxzjMf4NczoDnQcIWrAF+cPtZn5i6n+RfD2d9i0tzpKnG6Yk168yIyw==}
- hasBin: true
- dependencies:
- is-core-module: 2.15.1
- path-parse: 1.0.7
- supports-preserve-symlinks-flag: 1.0.0
+ resolve.exports@2.0.2: {}
- /resolve/2.0.0-next.4:
- resolution: {integrity: sha512-iMDbmAWtfU+MHpxt/I5iWI7cY6YVEZUQ3MBgPQ++XD1PELuJHIl82xBmObyP2KyQmkNB2dsqF7seoQQiAn5yDQ==}
- hasBin: true
+ resolve@1.22.8:
dependencies:
is-core-module: 2.15.1
path-parse: 1.0.7
supports-preserve-symlinks-flag: 1.0.0
- dev: false
- /resolve/2.0.0-next.5:
- resolution: {integrity: sha512-U7WjGVG9sH8tvjW5SmGbQuui75FiyjAX72HX15DwBBwF9dNiQZRQAg9nnPhYy+TUnE0+VcrttuvNI8oSxZcocA==}
- hasBin: true
+ resolve@2.0.0-next.5:
dependencies:
is-core-module: 2.15.1
path-parse: 1.0.7
supports-preserve-symlinks-flag: 1.0.0
- dev: true
- /responselike/2.0.1:
- resolution: {integrity: sha512-4gl03wn3hj1HP3yzgdI7d3lCkF95F21Pz4BPGvKHinyQzALR5CapwC8yIi0Rh58DEMQ/SguC03wFj2k0M/mHhw==}
+ responselike@2.0.1:
dependencies:
lowercase-keys: 2.0.0
- dev: false
- /responselike/3.0.0:
- resolution: {integrity: sha512-40yHxbNcl2+rzXvZuVkrYohathsSJlMTXKryG5y8uciHv1+xDLHQpgjG64JUO9nrEq2jGLH6IZ8BcZyw3wrweg==}
- engines: {node: '>=14.16'}
+ responselike@3.0.0:
dependencies:
lowercase-keys: 3.0.0
- dev: false
- /restore-cursor/3.1.0:
- resolution: {integrity: sha512-l+sSefzHpj5qimhFSE5a8nufZYAM3sBSVMAPtYkmC+4EH2anSGaEMXSD0izRQbu9nfyQ9y5JrVmp7E8oZrUjvA==}
- engines: {node: '>=8'}
+ restore-cursor@3.1.0:
dependencies:
onetime: 5.1.2
signal-exit: 3.0.7
- /ret/0.1.15:
- resolution: {integrity: sha512-TTlYpa+OL+vMMNG24xSlQGEJ3B/RzEfUlLct7b5G/ytav+wPrplCpVMFuwzXbkecJrb6IYo1iFb0S9v37754mg==}
- engines: {node: '>=0.12'}
- dev: false
+ ret@0.1.15: {}
- /retry-request/4.2.2:
- resolution: {integrity: sha512-xA93uxUD/rogV7BV59agW/JHPGXeREMWiZc9jhcwY4YdZ7QOtC7qbomYg0n4wyk2lJhggjvKvhNX8wln/Aldhg==}
- engines: {node: '>=8.10.0'}
+ retry-request@4.2.2:
dependencies:
- debug: 4.3.6
+ debug: 4.3.7(supports-color@9.4.0)
extend: 3.0.2
transitivePeerDependencies:
- supports-color
- dev: false
optional: true
- /retry-request/5.0.2:
- resolution: {integrity: sha512-wfI3pk7EE80lCIXprqh7ym48IHYdwmAAzESdbU8Q9l7pnRCk9LEhpbOTNKjz6FARLm/Bl5m+4F0ABxOkYUujSQ==}
- engines: {node: '>=12'}
+ retry-request@5.0.2:
dependencies:
- debug: 4.3.6
+ debug: 4.3.7(supports-color@9.4.0)
extend: 3.0.2
transitivePeerDependencies:
- supports-color
- dev: false
- /retry-request/7.0.1:
- resolution: {integrity: sha512-ZI6vJp9rfB71mrZpw+n9p/B6HCsd7QJlSEQftZ+xfJzr3cQ9EPGKw1FF0BnViJ0fYREX6FhymBD2CARpmsFciQ==}
- engines: {node: '>=14'}
+ retry-request@7.0.2:
dependencies:
- '@types/request': 2.48.11
- debug: 4.3.6
+ '@types/request': 2.48.12
extend: 3.0.2
teeny-request: 9.0.0
transitivePeerDependencies:
- encoding
- supports-color
- dev: false
- /retry/0.12.0:
- resolution: {integrity: sha512-9LkiTwjUh6rT555DtE9rTX+BKByPfrMzEAtnlEtdEwr3Nkffwiihqe2bWADg+OQRjt9gl6ICdmB/ZFDCGAtSow==}
- engines: {node: '>= 4'}
+ retry@0.12.0: {}
- /retry/0.13.1:
- resolution: {integrity: sha512-XQBQ3I8W1Cge0Seh+6gjj03LbmRFWuoszgK9ooCpwYIrhhoO80pfq4cUkU5DkknwfOfFteRwlZ56PYOGYyFWdg==}
- engines: {node: '>= 4'}
- dev: false
+ retry@0.13.1: {}
- /reusify/1.0.4:
- resolution: {integrity: sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==}
- engines: {iojs: '>=1.0.0', node: '>=0.10.0'}
+ reusify@1.0.4: {}
- /rfdc/1.3.0:
- resolution: {integrity: sha512-V2hovdzFbOi77/WajaSMXk2OLm+xNIeQdMMuB7icj7bk6zi2F8GGAxigcnDFpJHbNyNcgyJDiP+8nOrY5cZGrA==}
+ rfdc@1.4.1: {}
- /rhea-promise/2.1.0:
- resolution: {integrity: sha512-CRMwdJ/o4oO/xKcvAwAsd0AHy5fVvSlqso7AadRmaaLGzAzc9LCoW7FOFnucI8THasVmOeCnv5c/fH/n7FcNaA==}
+ rhea-promise@2.1.0:
dependencies:
debug: 3.2.7
rhea: 2.0.8
- tslib: 2.6.2
+ tslib: 2.8.1
transitivePeerDependencies:
- supports-color
- dev: false
- /rhea/2.0.8:
- resolution: {integrity: sha512-IgwlP4D2lzinBSll5f35tAWa30dGCZhG9Ujd1DiaB7MUGegIjAaLzqATCw3ha+h9oq9mXcitqayBbNIXYdvtFg==}
+ rhea@2.0.8:
dependencies:
debug: 3.2.7
transitivePeerDependencies:
- supports-color
- dev: false
- /rimraf/3.0.2:
- resolution: {integrity: sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==}
- deprecated: Rimraf versions prior to v4 are no longer supported
- hasBin: true
+ rimraf@3.0.2:
dependencies:
glob: 7.2.3
- /ripemd160/2.0.2:
- resolution: {integrity: sha512-ii4iagi25WusVoiC4B4lq7pbXfAp3D9v5CwfkY33vffw2+pkDjY1D8GaN7spsxvCSx8dkPqOZCEZyfxcmJG2IA==}
+ ripemd160@2.0.2:
dependencies:
hash-base: 3.1.0
inherits: 2.0.4
- dev: false
- /rootpath/0.1.2:
- resolution: {integrity: sha512-R3wLbuAYejpxQjL/SjXo1Cjv4wcJECnMRT/FlcCfTwCBhaji9rWaRCoVEQ1SPiTJ4kKK+yh+bZLAV7SCafoDDw==}
- dev: false
+ rollup@4.27.3:
+ dependencies:
+ '@types/estree': 1.0.6
+ optionalDependencies:
+ '@rollup/rollup-android-arm-eabi': 4.27.3
+ '@rollup/rollup-android-arm64': 4.27.3
+ '@rollup/rollup-darwin-arm64': 4.27.3
+ '@rollup/rollup-darwin-x64': 4.27.3
+ '@rollup/rollup-freebsd-arm64': 4.27.3
+ '@rollup/rollup-freebsd-x64': 4.27.3
+ '@rollup/rollup-linux-arm-gnueabihf': 4.27.3
+ '@rollup/rollup-linux-arm-musleabihf': 4.27.3
+ '@rollup/rollup-linux-arm64-gnu': 4.27.3
+ '@rollup/rollup-linux-arm64-musl': 4.27.3
+ '@rollup/rollup-linux-powerpc64le-gnu': 4.27.3
+ '@rollup/rollup-linux-riscv64-gnu': 4.27.3
+ '@rollup/rollup-linux-s390x-gnu': 4.27.3
+ '@rollup/rollup-linux-x64-gnu': 4.27.3
+ '@rollup/rollup-linux-x64-musl': 4.27.3
+ '@rollup/rollup-win32-arm64-msvc': 4.27.3
+ '@rollup/rollup-win32-ia32-msvc': 4.27.3
+ '@rollup/rollup-win32-x64-msvc': 4.27.3
+ fsevents: 2.3.3
- /rss-parser/3.13.0:
- resolution: {integrity: sha512-7jWUBV5yGN3rqMMj7CZufl/291QAhvrrGpDNE4k/02ZchL0npisiYYqULF71jCEKoIiHvK/Q2e6IkDwPziT7+w==}
+ rootpath@0.1.2: {}
+
+ rss-parser@3.13.0:
dependencies:
entities: 2.2.0
xml2js: 0.5.0
- dev: false
- /run-async/2.4.1:
- resolution: {integrity: sha512-tvVnVv01b8c1RrA6Ep7JkStj85Guv/YrMcwqYQnwjsAS2cTmmPGBBjAjpCW7RrSodNSoE2/qg9O4bceNvUuDgQ==}
- engines: {node: '>=0.12.0'}
- dev: false
+ run-async@2.4.1: {}
- /run-node/1.0.0:
- resolution: {integrity: sha512-kc120TBlQ3mih1LSzdAJXo4xn/GWS2ec0l3S+syHDXP9uRr0JAT8Qd3mdMuyjqCzeZktgP3try92cEgf9Nks8A==}
- engines: {node: '>=4'}
- hasBin: true
- dev: true
+ run-node@1.0.0: {}
- /run-parallel/1.2.0:
- resolution: {integrity: sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==}
+ run-parallel@1.2.0:
dependencies:
queue-microtask: 1.2.3
- /rxjs/7.8.1:
- resolution: {integrity: sha512-AA3TVj+0A2iuIoQkWEK/tqFjBq2j+6PO6Y0zJcvzLAFhEFIO3HL0vls9hWLncZbAAbK0mar7oZ4V079I/qPMxg==}
- dependencies:
- tslib: 2.6.3
-
- /sade/1.8.1:
- resolution: {integrity: sha512-xal3CZX1Xlo/k4ApwCFrHVACi9fBqJ7V+mwhBsuf/1IOKbBy098Fex+Wa/5QMubw09pSZ/u8EY8PWgevJsXp1A==}
- engines: {node: '>=6'}
+ rxjs@7.8.1:
dependencies:
- mri: 1.2.0
- dev: true
+ tslib: 2.8.1
- /safe-array-concat/1.1.2:
- resolution: {integrity: sha512-vj6RsCsWBCf19jIeHEfkRMw8DPiBb+DMXklQ/1SGDHOMlHdPUkZXFQ2YdplS23zESTijAcurb1aSgJA3AgMu1Q==}
- engines: {node: '>=0.4'}
+ safe-array-concat@1.1.2:
dependencies:
call-bind: 1.0.7
get-intrinsic: 1.2.4
has-symbols: 1.0.3
isarray: 2.0.5
- /safe-buffer/5.1.2:
- resolution: {integrity: sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==}
+ safe-buffer@5.1.2: {}
- /safe-buffer/5.2.1:
- resolution: {integrity: sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==}
+ safe-buffer@5.2.1: {}
- /safe-regex-test/1.0.3:
- resolution: {integrity: sha512-CdASjNJPvRa7roO6Ra/gLYBTzYzzPyyBXxIMdGW3USQLyjWEls2RgW5UBTXaQVp+OrpeCK3bLem8smtmheoRuw==}
- engines: {node: '>= 0.4'}
+ safe-regex-test@1.0.3:
dependencies:
call-bind: 1.0.7
es-errors: 1.3.0
is-regex: 1.1.4
- /safe-stable-stringify/2.4.3:
- resolution: {integrity: sha512-e2bDA2WJT0wxseVd4lsDP4+3ONX6HpMXQa1ZhFQ7SU+GjvORCmShbCMltrtIDfkYhVHrOcPtj+KhmDBdPdZD1g==}
- engines: {node: '>=10'}
- dev: false
+ safe-stable-stringify@2.5.0: {}
- /safer-buffer/2.1.2:
- resolution: {integrity: sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==}
+ safer-buffer@2.1.2: {}
- /salesforce-webhooks/1.1.11_handlebars@4.7.8:
- resolution: {integrity: sha512-gT5CkcAWowxaFKQr+5aC3o6tCz4wsnzm4PqWPZ2vQ0l/1qv9uG8S6W8pJeJDwUa9P1ICKfL7A6C4akmk3/7Aaw==}
+ salesforce-webhooks@1.1.14(handlebars@4.7.8):
dependencies:
axios: 0.21.4
bindings: 1.5.0
- handlebars-loader: 1.7.3_handlebars@4.7.8
+ handlebars-loader: 1.7.3(handlebars@4.7.8)
uuid: 8.3.2
transitivePeerDependencies:
- debug
- handlebars
- dev: false
- /sax/1.3.0:
- resolution: {integrity: sha512-0s+oAmw9zLl1V1cS9BtZN7JAd0cW5e0QH4W3LWEK6a4LaLEA2OTpGYWDY+6XasBLtz6wkm3u1xRw95mRuJ59WA==}
- dev: false
+ samadhi@2.10.0(eslint@8.57.1)(typescript@5.6.3):
+ dependencies:
+ '@putout/quick-lint': 1.4.0
+ goldstein: 5.19.0(eslint@8.57.1)(typescript@5.6.3)
+ js-tokens: 9.0.1
+ try-catch: 3.0.1
+ transitivePeerDependencies:
+ - eslint
+ - supports-color
+ - typescript
- /sb-promise-queue/2.1.0:
- resolution: {integrity: sha512-zwq4YuP1FQFkGx2Q7GIkZYZ6PqWpV+bg0nIO1sJhWOyGyhqbj0MsTvK6lCFo5TQwX5pZr6SCQ75e8PCDCuNvkg==}
- engines: {node: '>= 8'}
- dev: false
+ sax@1.4.1: {}
- /sb-scandir/3.1.0:
- resolution: {integrity: sha512-70BVm2xz9jn94zSQdpvYrEG101/UV9TVGcfWr9T5iob3QhCK4lYXeculfBqPGFv3XTeKgx4dpWyYIDeZUqo4kg==}
- engines: {node: '>= 8'}
+ sb-promise-queue@2.1.0: {}
+
+ sb-scandir@3.1.0:
dependencies:
sb-promise-queue: 2.1.0
- dev: false
- /scmp/2.1.0:
- resolution: {integrity: sha512-o/mRQGk9Rcer/jEEw/yw4mwo3EU/NvYvp577/Btqrym9Qy5/MdWGBqipbALgd2lrdWTJ5/gqDusxfnQBxOxT2Q==}
- dev: false
+ scheduler@0.23.2:
+ dependencies:
+ loose-envify: 1.4.0
- /selderee/0.11.0:
- resolution: {integrity: sha512-5TF+l7p4+OsnP8BCCvSyZiSPc4x4//p5uPwK8TCnVPJYRmU2aYKMpOXvw8zM5a5JvuuCGN1jmsMwuU2W02ukfA==}
+ scheduler@0.25.0-rc-66855b96-20241106: {}
+
+ scmp@2.1.0: {}
+
+ selderee@0.11.0:
dependencies:
parseley: 0.12.1
- dev: false
- /selderee/0.6.0:
- resolution: {integrity: sha512-ibqWGV5aChDvfVdqNYuaJP/HnVBhlRGSRrlbttmlMpHcLuTqqbMH36QkSs9GEgj5M88JDYLI8eyP94JaQ8xRlg==}
+ selderee@0.6.0:
dependencies:
parseley: 0.7.0
- dev: false
- /semver-compare/1.0.0:
- resolution: {integrity: sha512-YM3/ITh2MJ5MtzaM429anh+x2jiLVjqILF4m4oyQB18W7Ggea7BfqdH/wGMK7dDiMghv/6WG7znWMwUDzJiXow==}
- dev: true
+ semver-compare@1.0.0: {}
- /semver/5.3.0:
- resolution: {integrity: sha512-mfmm3/H9+67MCVix1h+IXTpDwL6710LyHuk7+cWC9T1mE0qz4iHhh6r4hU2wrIT9iTsAAC2XQRvfblL028cpLw==}
- hasBin: true
- dev: false
+ semver@5.3.0: {}
- /semver/5.7.2:
- resolution: {integrity: sha512-cBznnQ9KjJqU67B52RMC65CMarK2600WFnbkcaiwWq3xy/5haFJlshgnpjovMVJ+Hff49d8GEn0b87C5pDQ10g==}
- hasBin: true
+ semver@5.7.2: {}
- /semver/6.3.1:
- resolution: {integrity: sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==}
- hasBin: true
+ semver@6.3.1: {}
- /semver/7.5.4:
- resolution: {integrity: sha512-1bCSESV6Pv+i21Hvpxp3Dx+pSD8lIPt8uVjRrxAUt/nbswYc+tK6Y2btiULjd4+fnq15PX+nqQDC7Oft7WkwcA==}
- engines: {node: '>=10'}
- hasBin: true
+ semver@7.5.4:
dependencies:
lru-cache: 6.0.0
- /semver/7.6.3:
- resolution: {integrity: sha512-oVekP1cKtI+CTDvHWYFUcMtsK/00wmAEfyqKfNdARm8u1wNVhSgaX7A8d4UuIlUI5e84iEwOhs7ZPYRmzU9U6A==}
- engines: {node: '>=10'}
- hasBin: true
+ semver@7.6.3: {}
- /sendbird-platform-sdk/0.0.14_@babel+core@7.23.0:
- resolution: {integrity: sha512-nuVX2mwGBdMUys/c6MLOrjbTavfo34HDbrVjcjbL9UNeWXWK1hJ9/CUnxpnviCNzB9BCv4SEZhEQ2K6w4dZYoQ==}
+ sendbird-platform-sdk@0.0.14(@babel/core@7.26.0):
dependencies:
- '@babel/cli': 7.23.0_@babel+core@7.23.0
+ '@babel/cli': 7.25.9(@babel/core@7.26.0)
superagent: 5.3.1
transitivePeerDependencies:
- '@babel/core'
- supports-color
- dev: false
- /seq-queue/0.0.5:
- resolution: {integrity: sha512-hr3Wtp/GZIc/6DAGPDcV4/9WoZhjrkXsi5B/07QgX8tsdc6ilr7BFM6PM6rbdAX1kFSDYeZGLipIZZKyQP0O5Q==}
- dev: false
+ seq-queue@0.0.5: {}
- /server-destroy/1.0.1:
- resolution: {integrity: sha512-rb+9B5YBIEzYcD6x2VKidaa+cqYBJQKnU4oe4E3ANwRRN56yk/ua1YCJT1n21NTS8w6CcOclAKNP3PhdCXKYtQ==}
- dev: false
+ server-destroy@1.0.1: {}
- /set-blocking/2.0.0:
- resolution: {integrity: sha512-KiKBS8AnWGEyLzofFfmvKwpdPzqiy16LvQfK3yv/fVH7Bj13/wl3JSR1J+rfgRE9q7xUJK4qvgS8raSOeLUehw==}
+ set-blocking@2.0.0: {}
- /set-function-length/1.2.2:
- resolution: {integrity: sha512-pgRc4hJ4/sNjWCSS9AmnS40x3bNMDTknHgL5UaMBTMyJnU90EgWh1Rz+MC9eFu4BuN/UwZjKQuY/1v3rM7HMfg==}
- engines: {node: '>= 0.4'}
+ set-function-length@1.2.2:
dependencies:
define-data-property: 1.1.4
es-errors: 1.3.0
@@ -34633,241 +38372,178 @@ packages:
gopd: 1.0.1
has-property-descriptors: 1.0.2
- /set-function-name/2.0.2:
- resolution: {integrity: sha512-7PGFlmtwsEADb0WYyvCMa1t+yke6daIG4Wirafur5kcf+MhUnPms1UeR0CKQdTZD81yESwMHbtn+TR+dMviakQ==}
- engines: {node: '>= 0.4'}
+ set-function-name@2.0.2:
dependencies:
define-data-property: 1.1.4
es-errors: 1.3.0
functions-have-names: 1.2.3
has-property-descriptors: 1.0.2
- /setprototypeof/1.2.0:
- resolution: {integrity: sha512-E5LDX7Wrp85Kil5bhZv46j8jOeboKq5JMmYM3gVGdGH8xFpPWXUMsNrlODCrkoxMEeNi/XZIwuRvY4XNwYMJpw==}
- dev: false
+ setprototypeof@1.2.0: {}
- /sha.js/2.4.11:
- resolution: {integrity: sha512-QMEp5B7cftE7APOjk5Y6xgrbWu+WkLVQwk8JNjZ8nKRciZaByEW6MubieAiToS7+dwvrjGhH8jRXz3MVd0AYqQ==}
- hasBin: true
+ sha.js@2.4.11:
dependencies:
inherits: 2.0.4
safe-buffer: 5.2.1
- dev: false
- /shallow-clone/3.0.1:
- resolution: {integrity: sha512-/6KqX+GVUdqPuPPd2LxDDxzX6CAbjJehAAOKlNpqqUpAqPM6HeL8f+o3a+JsyGjn2lv0WY8UsTgUJjU9Ok55NA==}
- engines: {node: '>=8'}
+ shallow-clone@3.0.1:
dependencies:
kind-of: 6.0.3
- dev: false
- /shebang-command/1.2.0:
- resolution: {integrity: sha512-EV3L1+UQWGor21OmnvojK36mhg+TyIKDh3iFBKBohr5xeXIhNBcx8oWdgkTEEQ+BEFFYdLRuqMfd5L84N1V5Vg==}
- engines: {node: '>=0.10.0'}
+ sharp@0.33.5:
+ dependencies:
+ color: 4.2.3
+ detect-libc: 2.0.3
+ semver: 7.6.3
+ optionalDependencies:
+ '@img/sharp-darwin-arm64': 0.33.5
+ '@img/sharp-darwin-x64': 0.33.5
+ '@img/sharp-libvips-darwin-arm64': 1.0.4
+ '@img/sharp-libvips-darwin-x64': 1.0.4
+ '@img/sharp-libvips-linux-arm': 1.0.5
+ '@img/sharp-libvips-linux-arm64': 1.0.4
+ '@img/sharp-libvips-linux-s390x': 1.0.4
+ '@img/sharp-libvips-linux-x64': 1.0.4
+ '@img/sharp-libvips-linuxmusl-arm64': 1.0.4
+ '@img/sharp-libvips-linuxmusl-x64': 1.0.4
+ '@img/sharp-linux-arm': 0.33.5
+ '@img/sharp-linux-arm64': 0.33.5
+ '@img/sharp-linux-s390x': 0.33.5
+ '@img/sharp-linux-x64': 0.33.5
+ '@img/sharp-linuxmusl-arm64': 0.33.5
+ '@img/sharp-linuxmusl-x64': 0.33.5
+ '@img/sharp-wasm32': 0.33.5
+ '@img/sharp-win32-ia32': 0.33.5
+ '@img/sharp-win32-x64': 0.33.5
+ optional: true
+
+ shebang-command@1.2.0:
dependencies:
shebang-regex: 1.0.0
- dev: true
- /shebang-command/2.0.0:
- resolution: {integrity: sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==}
- engines: {node: '>=8'}
+ shebang-command@2.0.0:
dependencies:
shebang-regex: 3.0.0
- dev: true
- /shebang-regex/1.0.0:
- resolution: {integrity: sha512-wpoSFAxys6b2a2wHZ1XpDSgD7N9iVjg29Ph9uV/uaP9Ex/KXlkTZTeddxDPSYQpgvzKLGJke2UU0AzoGCjNIvQ==}
- engines: {node: '>=0.10.0'}
- dev: true
+ shebang-regex@1.0.0: {}
- /shebang-regex/3.0.0:
- resolution: {integrity: sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==}
- engines: {node: '>=8'}
- dev: true
+ shebang-regex@3.0.0: {}
- /shell-escape/0.2.0:
- resolution: {integrity: sha512-uRRBT2MfEOyxuECseCZd28jC1AJ8hmqqneWQ4VWUTgCAFvb3wKU1jLqj6egC4Exrr88ogg3dp+zroH4wJuaXzw==}
- dev: false
+ shell-escape@0.2.0: {}
- /shopify-api-node/3.12.6:
- resolution: {integrity: sha512-zLIbJf0X4zO5kwxVMn4sy4p3qiZN1ZWpUerehzih6+uDpJefY2v/X4T2yHIHhqRyYWtCK1PyMQOC27h6J+d0ow==}
- engines: {node: '>=10.0.0'}
+ shopify-api-node@3.14.0:
dependencies:
got: 11.8.6
lodash: 4.17.21
- qs: 6.12.0
+ qs: 6.13.1
stopcock: 1.1.0
- dev: false
- /short-unique-id/5.2.0:
- resolution: {integrity: sha512-cMGfwNyfDZ/nzJ2k2M+ClthBIh//GlZl1JEf47Uoa9XR11bz8Pa2T2wQO4bVrRdH48LrIDWJahQziKo3MjhsWg==}
- hasBin: true
- dev: false
+ short-unique-id@5.2.0: {}
- /should-equal/2.0.0:
- resolution: {integrity: sha512-ZP36TMrK9euEuWQYBig9W55WPC7uo37qzAEmbjHz4gfyuXrEUgF8cUvQVO+w+d3OMfPvSRQJ22lSm8MQJ43LTA==}
+ should-equal@2.0.0:
dependencies:
should-type: 1.4.0
- dev: false
- /should-format/3.0.3:
- resolution: {integrity: sha512-hZ58adtulAk0gKtua7QxevgUaXTTXxIi8t41L3zo9AHvjXO1/7sdLECuHeIN2SRtYXpNkmhoUP2pdeWgricQ+Q==}
+ should-format@3.0.3:
dependencies:
should-type: 1.4.0
should-type-adaptors: 1.1.0
- dev: false
- /should-proxy/1.0.4:
- resolution: {integrity: sha512-RPQhIndEIVUCjkfkQ6rs6sOR6pkxJWCNdxtfG5pP0RVgUYbK5911kLTF0TNcCC0G3YCGd492rMollFT2aTd9iQ==}
- dev: false
+ should-proxy@1.0.4: {}
- /should-type-adaptors/1.1.0:
- resolution: {integrity: sha512-JA4hdoLnN+kebEp2Vs8eBe9g7uy0zbRo+RMcU0EsNy+R+k049Ki+N5tT5Jagst2g7EAja+euFuoXFCa8vIklfA==}
+ should-type-adaptors@1.1.0:
dependencies:
should-type: 1.4.0
should-util: 1.0.1
- dev: false
- /should-type/1.4.0:
- resolution: {integrity: sha512-MdAsTu3n25yDbIe1NeN69G4n6mUnJGtSJHygX3+oN0ZbO3DTiATnf7XnYJdGT42JCXurTb1JI0qOBR65shvhPQ==}
- dev: false
+ should-type@1.4.0: {}
- /should-util/1.0.1:
- resolution: {integrity: sha512-oXF8tfxx5cDk8r2kYqlkUJzZpDBqVY/II2WhvU0n9Y3XYvAYRmeaf1PvvIvTgPnv4KJ+ES5M0PyDq5Jp+Ygy2g==}
- dev: false
+ should-util@1.0.1: {}
- /should/13.2.3:
- resolution: {integrity: sha512-ggLesLtu2xp+ZxI+ysJTmNjh2U0TsC+rQ/pfED9bUZZ4DKefP27D+7YJVVTvKsmjLpIi9jAa7itwDGkDDmt1GQ==}
+ should@13.2.3:
dependencies:
should-equal: 2.0.0
should-format: 3.0.3
should-type: 1.4.0
should-type-adaptors: 1.1.0
should-util: 1.0.1
- dev: false
- /showdown/2.1.0:
- resolution: {integrity: sha512-/6NVYu4U819R2pUIk79n67SYgJHWCce0a5xTP979WbNp0FL9MN1I1QK662IDU1b6JzKTvmhgI7T7JYIxBi3kMQ==}
- hasBin: true
+ showdown@2.1.0:
dependencies:
commander: 9.5.0
- dev: false
- /side-channel/1.0.6:
- resolution: {integrity: sha512-fDW/EZ6Q9RiO8eFG8Hj+7u/oW+XrPTIChwCOM2+th2A6OblDtYYIpve9m+KvI9Z4C9qSEXlaGR6bTEYHReuglA==}
- engines: {node: '>= 0.4'}
+ side-channel@1.0.6:
dependencies:
call-bind: 1.0.7
es-errors: 1.3.0
get-intrinsic: 1.2.4
- object-inspect: 1.13.2
+ object-inspect: 1.13.3
- /signal-exit/3.0.7:
- resolution: {integrity: sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==}
+ signal-exit@3.0.7: {}
- /signal-exit/4.1.0:
- resolution: {integrity: sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==}
- engines: {node: '>=14'}
- dev: true
+ signal-exit@4.1.0: {}
- /simple-lru-cache/0.0.2:
- resolution: {integrity: sha512-uEv/AFO0ADI7d99OHDmh1QfYzQk/izT1vCmu/riQfh7qjBVUUgRT87E5s5h7CxWCA/+YoZerykpEthzVrW3LIw==}
- dev: false
+ simple-lru-cache@0.0.2: {}
- /simple-oauth2/5.1.0:
- resolution: {integrity: sha512-gWDa38Ccm4MwlG5U7AlcJxPv3lvr80dU7ARJWrGdgvOKyzSj1gr3GBPN1rABTedAYvC/LsGYoFuFxwDBPtGEbw==}
+ simple-oauth2@5.1.0:
dependencies:
- '@hapi/hoek': 11.0.4
+ '@hapi/hoek': 11.0.7
'@hapi/wreck': 18.1.0
- debug: 4.3.6
- joi: 17.10.2
+ debug: 4.3.7(supports-color@9.4.0)
+ joi: 17.13.3
transitivePeerDependencies:
- supports-color
- dev: false
- /simple-swizzle/0.2.2:
- resolution: {integrity: sha512-JA//kQgZtbuY83m+xT+tXJkmJncGMTFT+C+g2h2R9uxkYIrE2yy9sgmcLhCnw57/WSD+Eh3J97FPEDFnbXnDUg==}
+ simple-swizzle@0.2.2:
dependencies:
is-arrayish: 0.3.2
- dev: false
- /simple-update-notifier/2.0.0:
- resolution: {integrity: sha512-a2B9Y0KlNXl9u/vsW6sTIu9vGEpfKu2wRV6l1H3XEas/0gUIzGzBoP/IouTcUQbm9JWZLH3COxyn03TYlFax6w==}
- engines: {node: '>=10'}
+ simple-update-notifier@2.0.0:
dependencies:
semver: 7.6.3
- dev: true
- /sisteransi/1.0.5:
- resolution: {integrity: sha512-bLGGlR1QxBcynn2d5YmDX4MGjlZvy2MRBDRNHLJ8VI6l6+9FUiyTFNJ0IveOSP0bcXgVDPRcfGqA0pjaqUpfVg==}
- dev: true
+ sisteransi@1.0.5: {}
- /slash/2.0.0:
- resolution: {integrity: sha512-ZYKh3Wh2z1PpEXWr0MpSBZ0V6mZHAQfYevttO11c51CaWjGTaadiKZ+wVt1PbMlDV5qhMFslpZCemhwOK7C89A==}
- engines: {node: '>=6'}
- dev: false
+ slash@2.0.0: {}
- /slash/3.0.0:
- resolution: {integrity: sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==}
- engines: {node: '>=8'}
+ slash@3.0.0: {}
- /slash/4.0.0:
- resolution: {integrity: sha512-3dOsAHXXUkQTpOYcoAxLIorMTp4gIQr5IW3iVb7A7lFIp0VHhnynm9izx6TssdrIcVIESAlVjtnO2K8bg+Coew==}
- engines: {node: '>=12'}
- dev: true
+ slash@4.0.0: {}
- /slice-ansi/3.0.0:
- resolution: {integrity: sha512-pSyv7bSTC7ig9Dcgbw9AuRNUb5k5V6oDudjZoMBSr13qpLBG7tB+zgCkARjq7xIUgdz5P1Qe8u+rSGdouOOIyQ==}
- engines: {node: '>=8'}
+ slice-ansi@3.0.0:
dependencies:
ansi-styles: 4.3.0
astral-regex: 2.0.0
is-fullwidth-code-point: 3.0.0
- dev: true
- /slice-ansi/4.0.0:
- resolution: {integrity: sha512-qMCMfhY040cVHT43K9BFygqYbUPFZKHOg7K73mtTWJRb8pyP3fzf4Ixd5SzdEJQ6MRUg/WBnOLxghZtKKurENQ==}
- engines: {node: '>=10'}
+ slice-ansi@4.0.0:
dependencies:
ansi-styles: 4.3.0
astral-regex: 2.0.0
is-fullwidth-code-point: 3.0.0
- dev: true
- /slice-ansi/5.0.0:
- resolution: {integrity: sha512-FC+lgizVPfie0kkhqUScwRu1O/lF6NOgJmlCgK+/LYxDCTk8sGelYaHDhFcDN+Sn3Cv+3VSa4Byeo+IMCzpMgQ==}
- engines: {node: '>=12'}
+ slice-ansi@5.0.0:
dependencies:
ansi-styles: 6.2.1
is-fullwidth-code-point: 4.0.0
- dev: true
- /slide/1.1.6:
- resolution: {integrity: sha512-NwrtjCg+lZoqhFU8fOwl4ay2ei8PaqCBOUV3/ektPY9trO1yQ1oXEfmHAhKArUVUr/hOHvy5f6AdP17dCM0zMw==}
- dev: true
+ slide@1.1.6: {}
- /slugify/1.6.6:
- resolution: {integrity: sha512-h+z7HKHYXj6wJU+AnS/+IH8Uh9fdcX1Lrhg1/VMdf9PwoBQXFcXiAdsy2tSK0P6gKwJLXp02r90ahUCqHk9rrw==}
- engines: {node: '>=8.0.0'}
- dev: false
+ slugify@1.6.6: {}
- /smart-buffer/4.2.0:
- resolution: {integrity: sha512-94hK0Hh8rPqQl2xXc3HsaBoOXKV20MToPkcXvwbISWLEs+64sBq5kFgn2kJDHb1Pry9yrP0dxrCI9RRci7RXKg==}
- engines: {node: '>= 6.0.0', npm: '>= 3.0.0'}
- dev: false
+ smart-buffer@4.2.0: {}
- /snowflake-sdk/1.9.0_asn1.js@5.4.1:
- resolution: {integrity: sha512-RtFRV2KC+ebQk/kOUg8WV42LnAu9puoan2wMXykgrAj1u4sGP/GgQyQhsAfLGwXWzn+J9JAwij07h3+6HYBmFw==}
+ snowflake-sdk@1.9.0(asn1.js@5.4.1):
dependencies:
- '@aws-sdk/client-s3': 3.423.0
- '@azure/storage-blob': 12.16.0
+ '@aws-sdk/client-s3': 3.698.0
+ '@azure/storage-blob': 12.26.0
'@google-cloud/storage': 6.12.0
'@techteamer/ocsp': 1.0.0
agent-base: 6.0.2
- asn1.js-rfc2560: 5.0.1_asn1.js@5.4.1
+ asn1.js-rfc2560: 5.0.1(asn1.js@5.4.1)
asn1.js-rfc5280: 3.0.0
- axios: 1.6.5_debug@3.2.7
- big-integer: 1.6.51
+ axios: 1.7.7(debug@3.2.7)
+ big-integer: 1.6.52
bignumber.js: 2.4.0
binascii: 0.0.2
bn.js: 5.2.1
@@ -34875,7 +38551,7 @@ packages:
debug: 3.2.7
expand-tilde: 2.0.2
extend: 3.0.2
- fast-xml-parser: 4.3.2
+ fast-xml-parser: 4.5.0
generic-pool: 3.9.0
glob: 7.2.3
https-proxy-agent: 5.0.1
@@ -34883,159 +38559,106 @@ packages:
mime-types: 2.1.35
mkdirp: 1.0.4
moment: 2.30.1
- moment-timezone: 0.5.45
+ moment-timezone: 0.5.46
open: 7.4.2
python-struct: 1.1.3
simple-lru-cache: 0.0.2
string-similarity: 4.0.4
- tmp: 0.2.1
+ tmp: 0.2.3
uuid: 8.3.2
- winston: 3.10.0
+ winston: 3.17.0
transitivePeerDependencies:
- asn1.js
- aws-crt
- encoding
- supports-color
- dev: false
- /socks-proxy-agent/5.0.1:
- resolution: {integrity: sha512-vZdmnjb9a2Tz6WEQVIurybSwElwPxMZaIc7PzqbJTrezcKNznv6giT7J7tZDZ1BojVaa1jvO/UiUdhDVB0ACoQ==}
- engines: {node: '>= 6'}
+ socks-proxy-agent@5.0.1:
dependencies:
agent-base: 6.0.2
- debug: 4.3.6
- socks: 2.7.1
+ debug: 4.3.7(supports-color@9.4.0)
+ socks: 2.8.3
transitivePeerDependencies:
- supports-color
- dev: false
- /socks-proxy-agent/8.0.2:
- resolution: {integrity: sha512-8zuqoLv1aP/66PHF5TqwJ7Czm3Yv32urJQHrVyhD7mmA6d61Zv8cIXQYPTWwmg6qlupnPvs/QKDmfa4P/qct2g==}
- engines: {node: '>= 14'}
+ socks-proxy-agent@8.0.4:
dependencies:
- agent-base: 7.1.0
- debug: 4.3.6
- socks: 2.7.1
+ agent-base: 7.1.1
+ debug: 4.3.4
+ socks: 2.8.3
transitivePeerDependencies:
- supports-color
- dev: false
- /socks/2.7.1:
- resolution: {integrity: sha512-7maUZy1N7uo6+WVEX6psASxtNlKaNVMlGQKkG/63nEDdLOWNbiUMoLK7X4uYoLhQstau72mLgfEWcXcwsaHbYQ==}
- engines: {node: '>= 10.13.0', npm: '>= 3.0.0'}
+ socks@2.8.3:
dependencies:
- ip: 2.0.0
+ ip-address: 9.0.5
smart-buffer: 4.2.0
- dev: false
- /source-map-js/1.2.0:
- resolution: {integrity: sha512-itJW8lvSA0TXEphiRoawsCksnlf8SyvmFzIhltqAHluXd88pkCd+cXJVHTDwdCr0IzwptSm035IHQktUu1QUMg==}
- engines: {node: '>=0.10.0'}
+ source-map-js@1.2.1: {}
- /source-map-support/0.5.13:
- resolution: {integrity: sha512-SHSKFHadjVA5oR4PPqhtAVdcBWwRYVd6g6cAXnIbRiIwc2EhPrTuKUBdSLvlEKyIP3GCf89fltvcZiP9MMFA1w==}
+ source-map-support@0.5.13:
dependencies:
buffer-from: 1.1.2
source-map: 0.6.1
- dev: true
- /source-map/0.6.1:
- resolution: {integrity: sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==}
- engines: {node: '>=0.10.0'}
+ source-map@0.5.7: {}
- /source-map/0.7.4:
- resolution: {integrity: sha512-l3BikUxvPOcn5E74dZiq5BGsTb5yEwhaTSzccU6t4sDOH8NWJCstKO5QT2CvtFoK6F0saL7p9xHAqHOlCPJygA==}
- engines: {node: '>= 8'}
- dev: false
+ source-map@0.6.1: {}
- /sparse-bitfield/3.0.3:
- resolution: {integrity: sha512-kvzhi7vqKTfkh0PZU+2D2PIllw2ymqJKujUcyPMd9Y75Nv4nPbGJZXNhxsgdQab2BmlDct1YnfQCguEvHr7VsQ==}
+ source-map@0.7.4: {}
+
+ space-separated-tokens@2.0.2: {}
+
+ sparse-bitfield@3.0.3:
dependencies:
memory-pager: 1.5.0
- dev: false
optional: true
- /spdx-correct/3.2.0:
- resolution: {integrity: sha512-kN9dJbvnySHULIluDHy32WHRUu3Og7B9sbY7tsFLctQkIqnMh3hErYgdMjTYuqmcXX+lK5T1lnUt3G7zNswmZA==}
+ spdx-correct@3.2.0:
dependencies:
spdx-expression-parse: 3.0.1
- spdx-license-ids: 3.0.15
- dev: true
+ spdx-license-ids: 3.0.20
- /spdx-exceptions/2.3.0:
- resolution: {integrity: sha512-/tTrYOC7PPI1nUAgx34hUpqXuyJG+DTHJTnIULG4rDygi4xu/tfgmq1e1cIRwRzwZgo4NLySi+ricLkZkw4i5A==}
- dev: true
+ spdx-exceptions@2.5.0: {}
- /spdx-expression-parse/3.0.1:
- resolution: {integrity: sha512-cbqHunsQWnJNE6KhVSMsMeH5H/L9EpymbzqTQ3uLwNCLZ1Q481oWaofqH7nO6V07xlXwY6PhQdQ2IedWx/ZK4Q==}
+ spdx-expression-parse@3.0.1:
dependencies:
- spdx-exceptions: 2.3.0
- spdx-license-ids: 3.0.15
- dev: true
+ spdx-exceptions: 2.5.0
+ spdx-license-ids: 3.0.20
- /spdx-license-ids/3.0.15:
- resolution: {integrity: sha512-lpT8hSQp9jAKp9mhtBU4Xjon8LPGBvLIuBiSVhMEtmLecTh2mO0tlqrAMp47tBXzMr13NJMQ2lf7RpQGLJ3HsQ==}
- dev: true
+ spdx-license-ids@3.0.20: {}
- /split-on-first/1.1.0:
- resolution: {integrity: sha512-43ZssAJaMusuKWL8sKUBQXHWOpq8d6CfN/u1p4gUzfJkM05C8rxTmYrkIPTXapZpORA6LkkzcUulJ8FqA7Uudw==}
- engines: {node: '>=6'}
- dev: false
+ split-on-first@1.1.0: {}
- /split-on-first/3.0.0:
- resolution: {integrity: sha512-qxQJTx2ryR0Dw0ITYyekNQWpz6f8dGd7vffGNflQQ3Iqj9NJ6qiZ7ELpZsJ/QBhIVAiDfXdag3+Gp8RvWa62AA==}
- engines: {node: '>=12'}
- dev: false
+ split-on-first@3.0.0: {}
- /split/0.3.3:
- resolution: {integrity: sha512-wD2AeVmxXRBoX44wAycgjVpMhvbwdI2aZjCkvfNcH1YqHQvJVa1duWc73OyVGJUc05fhFaTZeQ/PYsrmyH0JVA==}
+ split2@4.2.0: {}
+
+ split@0.3.3:
dependencies:
through: 2.3.8
- dev: true
- /split2/4.2.0:
- resolution: {integrity: sha512-UcjcJOWknrNkF6PLX83qcHM6KHgVKNkV62Y8a5uYDVv9ydGQVwAHMKqHdJje1VTWpljG0WYpCDhrCdAOYH4TWg==}
- engines: {node: '>= 10.x'}
- dev: false
-
- /sprintf-js/1.0.3:
- resolution: {integrity: sha512-D9cPgkvLlV3t3IzL0D0YLvGA9Ahk4PcvVwUbN0dSGr1aP0Nrt4AEnTUbuGvquEC0mA64Gqt1fzirlRs5ibXx8g==}
- dev: true
+ sprintf-js@1.0.3: {}
- /sprintf-js/1.1.3:
- resolution: {integrity: sha512-Oo+0REFV59/rz3gfJNKQiBlwfHaSESl1pcGyABQsnnIfWOFt6JNj5gCog2U6MLZ//IGYD+nA8nI+mTShREReaA==}
- dev: false
-
- /sqlstring/2.3.3:
- resolution: {integrity: sha512-qC9iz2FlN7DQl3+wjwn3802RTyjCx7sDvfQEXchwa6CWOx07/WVfh91gBmQ9fahw8snwGEWU3xGzOt4tFyHLxg==}
- engines: {node: '>= 0.6'}
- dev: false
+ sprintf-js@1.1.3: {}
- /ssh2-sftp-client/8.1.0:
- resolution: {integrity: sha512-00Ds+QcE7S6R6knE4cgKrvFxsOoAjSS16BSGRkv4n4RNYawyy3Iu9jlRz/nEXxpaVnojf0nn9zp0zATJssRrVw==}
- engines: {node: '>=10.24.1'}
+ sqlstring@2.3.3: {}
+
+ ssh2-sftp-client@8.1.0:
dependencies:
concat-stream: 2.0.0
promise-retry: 2.0.1
- ssh2: 1.14.0
- dev: false
+ ssh2: 1.16.0
- /ssh2/1.14.0:
- resolution: {integrity: sha512-AqzD1UCqit8tbOKoj6ztDDi1ffJZ2rV2SwlgrVVrHPkV5vWqGJOVp5pmtj18PunkPJAuKQsnInyKV+/Nb2bUnA==}
- engines: {node: '>=10.16.0'}
- requiresBuild: true
+ ssh2@1.16.0:
dependencies:
asn1: 0.2.6
bcrypt-pbkdf: 1.0.2
optionalDependencies:
- cpu-features: 0.0.9
- nan: 2.18.0
- dev: false
+ cpu-features: 0.0.10
+ nan: 2.22.0
- /sshpk/1.17.0:
- resolution: {integrity: sha512-/9HIEs1ZXGhSPE8X6Ccm7Nam1z8KcoCqPdI7ecm1N33EzAetWahvQWVqLZtaZQ+IDKX4IyA2o0gBzqIMkAagHQ==}
- engines: {node: '>=0.10.0'}
- hasBin: true
+ sshpk@1.18.0:
dependencies:
asn1: 0.2.6
assert-plus: 1.0.0
@@ -35047,577 +38670,398 @@ packages:
safer-buffer: 2.1.2
tweetnacl: 0.14.5
- /ssri/8.0.1:
- resolution: {integrity: sha512-97qShzy1AiyxvPNIkLWoGua7xoQzzPjQ0HAH4B0rWKo7SZ6USuPcrUiAFrws0UH8RrbWmgq3LMTObhPIHbbBeQ==}
- engines: {node: '>= 8'}
+ ssri@8.0.1:
dependencies:
minipass: 3.3.6
- dev: true
- /stack-trace/0.0.10:
- resolution: {integrity: sha512-KGzahc7puUKkzyMt+IqAep+TVNbKP+k2Lmwhub39m1AsTSkaDutx56aDCo+HLDzf/D26BIHTJWNiTG1KAJiQCg==}
- dev: false
+ stack-trace@0.0.10: {}
- /stack-utils/2.0.6:
- resolution: {integrity: sha512-XlkWvfIm6RmsWtNJx+uqtKLS8eqFbxUg0ZzLXqY0caEy9l7hruX8IpiDnjsLavoBgqCCR71TqWO8MaXYheJ3RQ==}
- engines: {node: '>=10'}
+ stack-utils@2.0.6:
dependencies:
escape-string-regexp: 2.0.0
- dev: true
- /starkbank-ecdsa/1.1.5:
- resolution: {integrity: sha512-5O9CJ0QF6pTrtDg6dmaHy1GC/2wA1tcXsYanWOCzg+2cZrCDylEvEl6krzI4Zy8ryar00lHErRTT2Q61w/MUVA==}
+ starkbank-ecdsa@1.1.5:
dependencies:
- big-integer: 1.6.51
+ big-integer: 1.6.52
js-sha256: 0.9.0
- dev: false
- /static-eval/2.0.2:
- resolution: {integrity: sha512-N/D219Hcr2bPjLxPiV+TQE++Tsmrady7TqAJugLy7Xk1EumfDWS/f5dtBbkRCGE7wKKXuYockQoj8Rm2/pVKyg==}
+ static-eval@2.0.2:
dependencies:
escodegen: 1.14.3
- dev: false
- /statuses/2.0.1:
- resolution: {integrity: sha512-RwNA9Z/7PrK06rYLIzFMlaF+l73iwpzsqRIFgbMLbTcLD6cOao82TaWefPXQvB2fOC4AjuYSEndS7N/mTCbkdQ==}
- engines: {node: '>= 0.8'}
- dev: false
+ statuses@2.0.1: {}
- /stealthy-require/1.1.1:
- resolution: {integrity: sha512-ZnWpYnYugiOVEY5GkcuJK1io5V8QmNYChG62gSit9pQVGErXtrKuPC55ITaVSukmMta5qpMU7vqLt2Lnni4f/g==}
- engines: {node: '>=0.10.0'}
- dev: false
+ stealthy-require@1.1.1: {}
- /stop-iteration-iterator/1.0.0:
- resolution: {integrity: sha512-iCGQj+0l0HOdZ2AEeBADlsRC+vsnDsZsbdSiH1yNSjcfKM7fdpCMfqAL/dwF5BLiw/XhRft/Wax6zQbhq2BcjQ==}
- engines: {node: '>= 0.4'}
+ stop-iteration-iterator@1.0.0:
dependencies:
internal-slot: 1.0.7
- /stopcock/1.1.0:
- resolution: {integrity: sha512-SNTAH55X9Ra5uE1JIxiPT3WwZiNMTcdCup+7qWOULNVUqiqi62qctNJ+x1R4znNudtkyu8LGc7Ok6Ldt+8N5iQ==}
- engines: {node: '>=4.0.0'}
- dev: false
+ stopcock@1.1.0: {}
- /stoppable/1.1.0:
- resolution: {integrity: sha512-KXDYZ9dszj6bzvnEMRYvxgeTHU74QBFL54XKtP3nyMuJ81CFYtABZ3bAzL2EdFUaEwJOBOgENyFj3R7oTzDyyw==}
- engines: {node: '>=4', npm: '>=6'}
- dev: false
+ stoppable@1.1.0: {}
- /stream-combiner/0.0.4:
- resolution: {integrity: sha512-rT00SPnTVyRsaSz5zgSPma/aHSOic5U1prhYdRy5HS2kTZviFpmDgzilbtsJsxiroqACmayynDN/9VzIbX5DOw==}
+ stream-combiner@0.0.4:
dependencies:
duplexer: 0.1.2
- dev: true
- /stream-events/1.0.5:
- resolution: {integrity: sha512-E1GUzBSgvct8Jsb3v2X15pjzN1tYebtbLaMg+eBOUOAxgbLoSbT2NS91ckc5lJD1KfLjId+jXJRgo0qnV5Nerg==}
+ stream-events@1.0.5:
dependencies:
stubs: 3.0.0
- dev: false
- /stream-read-all/3.0.1:
- resolution: {integrity: sha512-EWZT9XOceBPlVJRrYcykW8jyRSZYbkb/0ZK36uLEmoWVO5gxBOnntNTseNzfREsqxqdfEGQrD8SXQ3QWbBmq8A==}
- engines: {node: '>=10'}
- dev: true
+ stream-read-all@3.0.1: {}
- /stream-shift/1.0.1:
- resolution: {integrity: sha512-AiisoFqQ0vbGcZgQPY1cdP2I76glaVA/RauYR4G4thNFgkTqr90yXTo4LYX60Jl+sIlPNHHdGSwo01AvbKUSVQ==}
- dev: false
+ stream-shift@1.0.3: {}
- /stream/0.0.2:
- resolution: {integrity: sha512-gCq3NDI2P35B2n6t76YJuOp7d6cN/C7Rt0577l91wllh0sY9ZBuw9KaSGqH/b0hzn3CWWJbpbW0W0WvQ1H/Q7g==}
+ stream@0.0.2:
dependencies:
- emitter-component: 1.1.1
- dev: false
+ emitter-component: 1.1.2
- /stream/0.0.3:
- resolution: {integrity: sha512-aMsbn7VKrl4A2T7QAQQbzgN7NVc70vgF5INQrBXqn4dCXN1zy3L9HGgLO5s7PExmdrzTJ8uR/27aviW8or8/+A==}
+ stream@0.0.3:
dependencies:
component-emitter: 2.0.0
- dev: false
- /streamifier/0.1.1:
- resolution: {integrity: sha512-zDgl+muIlWzXNsXeyUfOk9dChMjlpkq0DRsxujtYPgyJ676yQ8jEm6zzaaWHFDg5BNcLuif0eD2MTyJdZqXpdg==}
- engines: {node: '>=0.10'}
- dev: false
+ streamifier@0.1.1: {}
- /streamroller/3.1.5:
- resolution: {integrity: sha512-KFxaM7XT+irxvdqSP1LGLgNWbYN7ay5owZ3r/8t77p+EtSUAfUgtl7be3xtqtOmGUl9K9YPO2ca8133RlTjvKw==}
- engines: {node: '>=8.0'}
+ streamroller@3.1.5:
dependencies:
date-format: 4.0.14
- debug: 4.3.6
+ debug: 4.3.7(supports-color@9.4.0)
fs-extra: 8.1.0
transitivePeerDependencies:
- supports-color
- dev: false
- /streamx/2.15.5:
- resolution: {integrity: sha512-9thPGMkKC2GctCzyCUjME3yR03x2xNo0GPKGkRw2UMYN+gqWa9uqpyNWhmsNCutU5zHmkUum0LsCRQTXUgUCAg==}
+ streamsearch@1.1.0: {}
+
+ streamx@2.20.2:
dependencies:
fast-fifo: 1.3.2
queue-tick: 1.0.1
+ text-decoder: 1.2.1
+ optionalDependencies:
+ bare-events: 2.5.0
- /strict-uri-encode/2.0.0:
- resolution: {integrity: sha512-QwiXZgpRcKkhTj2Scnn++4PKtWsH0kpzZ62L2R6c/LUVYv7hVnZqcg2+sMuT6R7Jusu1vviK/MFsu6kNJfWlEQ==}
- engines: {node: '>=4'}
- dev: false
+ strict-uri-encode@2.0.0: {}
- /string-argv/0.1.2:
- resolution: {integrity: sha512-mBqPGEOMNJKXRo7z0keX0wlAhbBAjilUdPW13nN0PecVryZxdHIeM7TqbsSUA7VYuS00HGC6mojP7DlQzfa9ZA==}
- engines: {node: '>=0.6.19'}
- dev: true
+ string-argv@0.1.2: {}
- /string-argv/0.3.2:
- resolution: {integrity: sha512-aqD2Q0144Z+/RqG52NeHEkZauTAUWJO8c6yTftGJKO3Tja5tUgIfmIl6kExvhtxSDP7fXB6DvzkfMpCd/F3G+Q==}
- engines: {node: '>=0.6.19'}
- dev: true
+ string-argv@0.3.2: {}
- /string-length/4.0.2:
- resolution: {integrity: sha512-+l6rNN5fYHNhZZy41RXsYptCjA2Igmq4EG7kZAYFQI1E1VTXarr6ZPXBg6eq7Y6eK4FEhY6AJlyuFIb/v/S0VQ==}
- engines: {node: '>=10'}
+ string-length@4.0.2:
dependencies:
char-regex: 1.0.2
strip-ansi: 6.0.1
- dev: true
-
- /string-length/6.0.0:
- resolution: {integrity: sha512-1U361pxZHEQ+FeSjzqRpV+cu2vTzYeWeafXFLykiFlv4Vc0n3njgU8HrMbyik5uwm77naWMuVG8fhEF+Ovb1Kg==}
- engines: {node: '>=16'}
- dependencies:
- strip-ansi: 7.1.0
- dev: false
- /string-similarity/4.0.4:
- resolution: {integrity: sha512-/q/8Q4Bl4ZKAPjj8WerIBJWALKkaPRfrvhfF8k/B23i4nzrlRj2/go1m90In7nG/3XDSbOo0+pu6RvCTM9RGMQ==}
- deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info.
- dev: false
+ string-similarity@4.0.4: {}
- /string-to-stream/3.0.1:
- resolution: {integrity: sha512-Hl092MV3USJuUCC6mfl9sPzGloA3K5VwdIeJjYIkXY/8K+mUvaeEabWJgArp+xXrsWxCajeT2pc4axbVhIZJyg==}
+ string-to-stream@3.0.1:
dependencies:
readable-stream: 3.6.2
- dev: false
- /string-width/1.0.2:
- resolution: {integrity: sha512-0XsVpQLnVCXHJfyEs8tC0zpTVIr5PKKsQtkT29IwupnPTjtPmQ3xT/4yCREF9hYkV/3M3kzcUTSAZT6a6h81tw==}
- engines: {node: '>=0.10.0'}
+ string-width@1.0.2:
dependencies:
code-point-at: 1.1.0
is-fullwidth-code-point: 1.0.0
strip-ansi: 3.0.1
- dev: true
optional: true
- /string-width/4.2.3:
- resolution: {integrity: sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==}
- engines: {node: '>=8'}
+ string-width@4.2.3:
dependencies:
emoji-regex: 8.0.0
is-fullwidth-code-point: 3.0.0
strip-ansi: 6.0.1
- /string-width/5.1.2:
- resolution: {integrity: sha512-HnLOCR3vjcY8beoNLtcjZ5/nxn2afmME6lhrDrebokqMap+XbeW8n9TXpPDOqdGK5qcI3oT0GKTW6wC7EMiVqA==}
- engines: {node: '>=12'}
+ string-width@5.1.2:
dependencies:
eastasianwidth: 0.2.0
emoji-regex: 9.2.2
strip-ansi: 7.1.0
- dev: true
- /string.prototype.includes/2.0.1:
- resolution: {integrity: sha512-o7+c9bW6zpAdJHTtujeePODAhkuicdAryFsfVKwA+wGw89wJ4GTY484WTucM9hLtDEOpOvI+aHnzqnC5lHp4Rg==}
- engines: {node: '>= 0.4'}
+ string.prototype.includes@2.0.1:
dependencies:
call-bind: 1.0.7
define-properties: 1.2.1
- es-abstract: 1.23.3
- dev: true
+ es-abstract: 1.23.5
- /string.prototype.matchall/4.0.11:
- resolution: {integrity: sha512-NUdh0aDavY2og7IbBPenWqR9exH+E26Sv8e0/eTe1tltDGZL+GtBkDAnnyBtmekfK6/Dq3MkcGtzXFEd1LQrtg==}
- engines: {node: '>= 0.4'}
+ string.prototype.matchall@4.0.11:
dependencies:
call-bind: 1.0.7
define-properties: 1.2.1
- es-abstract: 1.23.3
+ es-abstract: 1.23.5
es-errors: 1.3.0
es-object-atoms: 1.0.0
get-intrinsic: 1.2.4
gopd: 1.0.1
has-symbols: 1.0.3
internal-slot: 1.0.7
- regexp.prototype.flags: 1.5.2
+ regexp.prototype.flags: 1.5.3
set-function-name: 2.0.2
side-channel: 1.0.6
- dev: true
- /string.prototype.repeat/1.0.0:
- resolution: {integrity: sha512-0u/TldDbKD8bFCQ/4f5+mNRrXwZ8hg2w7ZR8wa16e8z9XpePWl3eGEcUD0OXpEH/VJH/2G3gjUtR3ZOiBe2S/w==}
+ string.prototype.repeat@1.0.0:
dependencies:
define-properties: 1.2.1
- es-abstract: 1.23.3
- dev: true
+ es-abstract: 1.23.5
- /string.prototype.trim/1.2.9:
- resolution: {integrity: sha512-klHuCNxiMZ8MlsOihJhJEBJAiMVqU3Z2nEXWfWnIqjN0gEFS9J9+IxKozWWtQGcgoa1WUZzLjKPTr4ZHNFTFxw==}
- engines: {node: '>= 0.4'}
+ string.prototype.trim@1.2.9:
dependencies:
call-bind: 1.0.7
define-properties: 1.2.1
- es-abstract: 1.23.3
+ es-abstract: 1.23.5
es-object-atoms: 1.0.0
- /string.prototype.trimend/1.0.8:
- resolution: {integrity: sha512-p73uL5VCHCO2BZZ6krwwQE3kCzM7NKmis8S//xEC6fQonchbum4eP6kR4DLEjQFO3Wnj3Fuo8NM0kOSjVdHjZQ==}
+ string.prototype.trimend@1.0.8:
dependencies:
call-bind: 1.0.7
define-properties: 1.2.1
es-object-atoms: 1.0.0
- /string.prototype.trimstart/1.0.8:
- resolution: {integrity: sha512-UXSH262CSZY1tfu3G3Secr6uGLCFVPMhIqHjlgCUtCCcgihYc/xKs9djMTMUOb2j1mVSeU8EU6NWc/iQKU6Gfg==}
- engines: {node: '>= 0.4'}
+ string.prototype.trimstart@1.0.8:
dependencies:
call-bind: 1.0.7
define-properties: 1.2.1
es-object-atoms: 1.0.0
- /string_decoder/0.10.31:
- resolution: {integrity: sha512-ev2QzSzWPYmy9GuqfIVildA4OdcGLeFZQrq5ys6RtiuF+RQQiZWr8TZNyAcuVXyQRYfEO+MsoB/1BuQVhOJuoQ==}
- dev: false
+ string_decoder@0.10.31: {}
- /string_decoder/1.1.1:
- resolution: {integrity: sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==}
+ string_decoder@1.1.1:
dependencies:
safe-buffer: 5.1.2
- /string_decoder/1.3.0:
- resolution: {integrity: sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA==}
+ string_decoder@1.3.0:
dependencies:
safe-buffer: 5.2.1
- /strip-ansi/3.0.1:
- resolution: {integrity: sha512-VhumSSbBqDTP8p2ZLKj40UjBCV4+v8bUSEpUb4KjRgWk9pbqGF4REFj6KEagidb2f/M6AzC0EmFyDNGaw9OCzg==}
- engines: {node: '>=0.10.0'}
+ stringify-entities@4.0.4:
+ dependencies:
+ character-entities-html4: 2.1.0
+ character-entities-legacy: 3.0.0
+
+ strip-ansi@3.0.1:
dependencies:
ansi-regex: 2.1.1
- dev: true
- /strip-ansi/6.0.1:
- resolution: {integrity: sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==}
- engines: {node: '>=8'}
+ strip-ansi@6.0.1:
dependencies:
ansi-regex: 5.0.1
- /strip-ansi/7.1.0:
- resolution: {integrity: sha512-iq6eVVI64nQQTRYq2KtEg2d2uU7LElhTJwsH4YzIHZshxlgZms/wIc4VoDQTlG/IvVIrBKG06CrZnp0qv7hkcQ==}
- engines: {node: '>=12'}
+ strip-ansi@7.1.0:
dependencies:
- ansi-regex: 6.0.1
-
- /strip-bom/3.0.0:
- resolution: {integrity: sha512-vavAMRXOgBVNF6nyEEmL3DBK19iRpDcoIwW+swQ+CbGiu7lju6t+JklA1MHweoWtadgt4ISVUsXLyDq34ddcwA==}
- engines: {node: '>=4'}
- dev: true
+ ansi-regex: 6.1.0
- /strip-bom/4.0.0:
- resolution: {integrity: sha512-3xurFv5tEgii33Zi8Jtp55wEIILR9eh34FAW00PZf+JnSsTmV/ioewSgQl97JHvgjoRGwPShsWm+IdrxB35d0w==}
- engines: {node: '>=8'}
- dev: true
+ strip-bom@3.0.0: {}
- /strip-eof/1.0.0:
- resolution: {integrity: sha512-7FCwGGmx8mD5xQd3RPUvnSpUXHM3BWuzjtpD4TXsfcZ9EL4azvVVUscFYwD9nx8Kh+uCBC00XBtAykoMHwTh8Q==}
- engines: {node: '>=0.10.0'}
- dev: true
+ strip-bom@4.0.0: {}
- /strip-final-newline/2.0.0:
- resolution: {integrity: sha512-BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA==}
- engines: {node: '>=6'}
- dev: true
+ strip-eof@1.0.0: {}
- /strip-indent/4.0.0:
- resolution: {integrity: sha512-mnVSV2l+Zv6BLpSD/8V87CW/y9EmmbYzGCIavsnsI6/nwn26DwffM/yztm30Z/I2DY9wdS3vXVCMnHDgZaVNoA==}
- engines: {node: '>=12'}
- dependencies:
- min-indent: 1.0.1
- dev: true
+ strip-final-newline@2.0.0: {}
- /strip-json-comments/2.0.1:
- resolution: {integrity: sha512-4gB8na07fecVVkOI6Rs4e7T6NOTki5EmL7TUduTs6bu3EdnSycntVJ4re8kgZA+wx9IueI2Y11bfbgwtzuE0KQ==}
- engines: {node: '>=0.10.0'}
- dev: true
+ strip-json-comments@2.0.1: {}
- /strip-json-comments/3.1.1:
- resolution: {integrity: sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==}
- engines: {node: '>=8'}
+ strip-json-comments@3.1.1: {}
- /stripe/8.222.0:
- resolution: {integrity: sha512-hrA79fjmN2Eb6K3kxkDzU4ODeVGGjXQsuVaAPSUro6I9MM3X+BvIsVqdphm3BXWfimAGFvUqWtPtHy25mICY1w==}
- engines: {node: ^8.1 || >=10.*}
+ stripe@8.222.0:
dependencies:
- '@types/node': 17.0.45
- qs: 6.11.2
- dev: false
+ '@types/node': 20.17.6
+ qs: 6.13.1
- /strnum/1.0.5:
- resolution: {integrity: sha512-J8bbNyKKXl5qYcR36TIO8W3mVGVHrmmxsd5PAItGkmyzwJvybiw2IVq5nqd0i4LSNSkB/sx9VHllbfFdr9k1JA==}
- dev: false
+ strnum@1.0.5: {}
- /strtok3/6.3.0:
- resolution: {integrity: sha512-fZtbhtvI9I48xDSywd/somNqgUHl2L2cstmXCCif0itOf96jeW18MBSyrLuNicYQVkvpOxkZtkzujiTJ9LW5Jw==}
- engines: {node: '>=10'}
+ strtok3@6.3.0:
dependencies:
'@tokenizer/token': 0.3.0
peek-readable: 4.1.0
- dev: false
- /strtok3/7.0.0:
- resolution: {integrity: sha512-pQ+V+nYQdC5H3Q7qBZAz/MO6lwGhoC2gOAjuouGf/VO0m7vQRh8QNMl2Uf6SwAtzZ9bOw3UIeBukEGNJl5dtXQ==}
- engines: {node: '>=14.16'}
+ strtok3@7.1.1:
dependencies:
'@tokenizer/token': 0.3.0
- peek-readable: 5.0.0
- dev: false
+ peek-readable: 5.3.1
- /stubs/3.0.0:
- resolution: {integrity: sha512-PdHt7hHUJKxvTCgbKX9C1V/ftOcjJQgz8BZwNfV5c4B6dcGqlpelTbJ999jBGZ2jYiPAwcX5dP6oBwVlBlUbxw==}
- dev: false
+ stubs@3.0.0: {}
- /style-search/0.1.0:
- resolution: {integrity: sha512-Dj1Okke1C3uKKwQcetra4jSuk0DqbzbYtXipzFlFMZtowbF1x7BKJwB9AayVMyFARvU8EDrZdcax4At/452cAg==}
- dev: true
+ style-to-object@1.0.8:
+ dependencies:
+ inline-style-parser: 0.2.4
- /stylelint-config-recommended/12.0.0_stylelint@15.10.3:
- resolution: {integrity: sha512-x6x8QNARrGO2sG6iURkzqL+Dp+4bJorPMMRNPScdvaUK8PsynriOcMW7AFDKqkWAS5wbue/u8fUT/4ynzcmqdQ==}
- peerDependencies:
- stylelint: ^15.5.0
+ styled-jsx@5.1.6(@babel/core@8.0.0-alpha.13)(babel-plugin-macros@3.1.0)(react@19.0.0-rc-66855b96-20241106):
+ dependencies:
+ client-only: 0.0.1
+ react: 19.0.0-rc-66855b96-20241106
+ optionalDependencies:
+ '@babel/core': 8.0.0-alpha.13
+ babel-plugin-macros: 3.1.0
+
+ stylelint-config-recommended@14.0.1(stylelint@16.10.0(typescript@5.6.3)):
dependencies:
- stylelint: 15.10.3_typescript@5.2.2
- dev: true
+ stylelint: 16.10.0(typescript@5.6.3)
- /stylelint-config-standard/33.0.0_stylelint@15.10.3:
- resolution: {integrity: sha512-eyxnLWoXImUn77+ODIuW9qXBDNM+ALN68L3wT1lN2oNspZ7D9NVGlNHb2QCUn4xDug6VZLsh0tF8NyoYzkgTzg==}
- peerDependencies:
- stylelint: ^15.5.0
+ stylelint-config-standard@36.0.1(stylelint@16.10.0(typescript@5.6.3)):
dependencies:
- stylelint: 15.10.3_typescript@5.2.2
- stylelint-config-recommended: 12.0.0_stylelint@15.10.3
- dev: true
+ stylelint: 16.10.0(typescript@5.6.3)
+ stylelint-config-recommended: 14.0.1(stylelint@16.10.0(typescript@5.6.3))
- /stylelint/15.10.3_typescript@5.2.2:
- resolution: {integrity: sha512-aBQMMxYvFzJJwkmg+BUUg3YfPyeuCuKo2f+LOw7yYbU8AZMblibwzp9OV4srHVeQldxvSFdz0/Xu8blq2AesiA==}
- engines: {node: ^14.13.1 || >=16.0.0}
- hasBin: true
+ stylelint-prettier@5.0.2(prettier@3.3.3)(stylelint@16.10.0(typescript@5.6.3)):
dependencies:
- '@csstools/css-parser-algorithms': 2.3.2_qabfbasg4cggam7o7issvon7wi
- '@csstools/css-tokenizer': 2.2.1
- '@csstools/media-query-list-parser': 2.1.5_vhcwb4dquzanhfkhxuqink5gke
- '@csstools/selector-specificity': 3.0.0_c3vcbepomgmxc74cgtawpgpkyi
+ prettier: 3.3.3
+ prettier-linter-helpers: 1.0.0
+ stylelint: 16.10.0(typescript@5.6.3)
+
+ stylelint@16.10.0(typescript@5.6.3):
+ dependencies:
+ '@csstools/css-parser-algorithms': 3.0.4(@csstools/css-tokenizer@3.0.3)
+ '@csstools/css-tokenizer': 3.0.3
+ '@csstools/media-query-list-parser': 3.0.1(@csstools/css-parser-algorithms@3.0.4(@csstools/css-tokenizer@3.0.3))(@csstools/css-tokenizer@3.0.3)
+ '@csstools/selector-specificity': 4.0.0(postcss-selector-parser@6.1.2)
+ '@dual-bundle/import-meta-resolve': 4.1.0
balanced-match: 2.0.0
colord: 2.9.3
- cosmiconfig: 8.3.6_typescript@5.2.2
- css-functions-list: 3.2.0
- css-tree: 2.3.1
- debug: 4.3.6
+ cosmiconfig: 9.0.0(typescript@5.6.3)
+ css-functions-list: 3.2.3
+ css-tree: 3.0.1
+ debug: 4.3.7(supports-color@9.4.0)
fast-glob: 3.3.2
fastest-levenshtein: 1.0.16
- file-entry-cache: 6.0.1
+ file-entry-cache: 9.1.0
global-modules: 2.0.0
globby: 11.1.0
globjoin: 0.1.4
html-tags: 3.3.1
- ignore: 5.3.1
- import-lazy: 4.0.0
+ ignore: 6.0.2
imurmurhash: 0.1.4
is-plain-object: 5.0.0
- known-css-properties: 0.28.0
+ known-css-properties: 0.34.0
mathml-tag-names: 2.1.3
- meow: 10.1.5
- micromatch: 4.0.7
+ meow: 13.2.0
+ micromatch: 4.0.8
normalize-path: 3.0.0
- picocolors: 1.0.1
- postcss: 8.4.31
- postcss-resolve-nested-selector: 0.1.1
- postcss-safe-parser: 6.0.0_postcss@8.4.31
- postcss-selector-parser: 6.0.13
+ picocolors: 1.1.1
+ postcss: 8.4.49
+ postcss-resolve-nested-selector: 0.1.6
+ postcss-safe-parser: 7.0.1(postcss@8.4.49)
+ postcss-selector-parser: 6.1.2
postcss-value-parser: 4.2.0
resolve-from: 5.0.0
string-width: 4.2.3
- strip-ansi: 6.0.1
- style-search: 0.1.0
- supports-hyperlinks: 3.0.0
+ supports-hyperlinks: 3.1.0
svg-tags: 1.0.0
- table: 6.8.1
+ table: 6.8.2
write-file-atomic: 5.0.1
transitivePeerDependencies:
- supports-color
- typescript
- dev: true
- /sugar-core/2.0.6:
- resolution: {integrity: sha512-YmLFysR3Si6RImqL1+aB6JH81EXxvXn5iXhPf2PsjfoUYEwCxFDYCQY+zC3WqviuGWzxFaSkkJvkUE05Y03L5Q==}
- engines: {node: '>= 0.8.23'}
- dev: false
+ stylis@4.2.0: {}
- /sugar/2.0.6:
- resolution: {integrity: sha512-s0P2/pjJtAD9VA44+2Gqm3NdC4v+08melA6YubOxzshu628krTbn95/M2GWMrI9rYspZMpYBIrChR46fjQ7xsQ==}
- engines: {node: '>= 0.8.23'}
+ sugar-core@2.0.6: {}
+
+ sugar@2.0.6:
dependencies:
sugar-core: 2.0.6
- dev: false
- /superagent-proxy/3.0.0_superagent@7.1.5:
- resolution: {integrity: sha512-wAlRInOeDFyd9pyonrkJspdRAxdLrcsZ6aSnS+8+nu4x1aXbz6FWSTT9M6Ibze+eG60szlL7JA8wEIV7bPWuyQ==}
- engines: {node: '>=6'}
- peerDependencies:
- superagent: '>= 0.15.4 || 1 || 2 || 3'
+ superagent-proxy@3.0.0(superagent@7.1.6):
dependencies:
- debug: 4.3.6
+ debug: 4.3.7(supports-color@9.4.0)
proxy-agent: 5.0.0
- superagent: 7.1.5
+ superagent: 7.1.6
transitivePeerDependencies:
- supports-color
- dev: false
- /superagent/3.8.1:
- resolution: {integrity: sha512-VMBFLYgFuRdfeNQSMLbxGSLfmXL/xc+OO+BZp41Za/NRDBet/BNbkRJrYzCUu0u4GU0i/ml2dtT8b9qgkw9z6Q==}
- engines: {node: '>= 4.0'}
- deprecated: Please upgrade to v7.0.2+ of superagent. We have fixed numerous issues with streams, form-data, attach(), filesystem errors not bubbling up (ENOENT on attach()), and all tests are now passing. See the releases tab for more information at .
+ superagent@3.8.1:
dependencies:
- component-emitter: 1.3.0
+ component-emitter: 1.3.1
cookiejar: 2.1.4
debug: 3.2.7
extend: 3.0.2
- form-data: 2.5.1
+ form-data: 2.5.2
formidable: 1.2.6
methods: 1.1.2
mime: 1.6.0
- qs: 6.12.0
+ qs: 6.13.1
readable-stream: 2.3.8
transitivePeerDependencies:
- supports-color
- dev: false
- /superagent/4.1.0:
- resolution: {integrity: sha512-FT3QLMasz0YyCd4uIi5HNe+3t/onxMyEho7C3PSqmti3Twgy2rXT4fmkTz6wRL6bTF4uzPcfkUCa8u4JWHw8Ag==}
- engines: {node: '>= 6.0'}
- deprecated: Please upgrade to v7.0.2+ of superagent. We have fixed numerous issues with streams, form-data, attach(), filesystem errors not bubbling up (ENOENT on attach()), and all tests are now passing. See the releases tab for more information at .
+ superagent@4.1.0:
dependencies:
- component-emitter: 1.3.0
+ component-emitter: 1.3.1
cookiejar: 2.1.4
- debug: 4.3.6
- form-data: 2.5.1
+ debug: 4.3.7(supports-color@9.4.0)
+ form-data: 2.5.2
formidable: 1.2.6
methods: 1.1.2
mime: 2.6.0
- qs: 6.12.0
+ qs: 6.13.1
readable-stream: 3.6.2
transitivePeerDependencies:
- supports-color
- dev: false
- /superagent/5.3.1:
- resolution: {integrity: sha512-wjJ/MoTid2/RuGCOFtlacyGNxN9QLMgcpYLDQlWFIhhdJ93kNscFonGvrpAHSCVjRVj++DGCglocF7Aej1KHvQ==}
- engines: {node: '>= 7.0.0'}
- deprecated: Please upgrade to v7.0.2+ of superagent. We have fixed numerous issues with streams, form-data, attach(), filesystem errors not bubbling up (ENOENT on attach()), and all tests are now passing. See the releases tab for more information at .
+ superagent@5.3.1:
dependencies:
- component-emitter: 1.3.0
+ component-emitter: 1.3.1
cookiejar: 2.1.4
- debug: 4.3.6
+ debug: 4.3.7(supports-color@9.4.0)
fast-safe-stringify: 2.1.1
- form-data: 3.0.1
+ form-data: 3.0.2
formidable: 1.2.6
methods: 1.1.2
mime: 2.6.0
- qs: 6.12.0
+ qs: 6.13.1
readable-stream: 3.6.2
semver: 7.6.3
transitivePeerDependencies:
- supports-color
- dev: false
- /superagent/7.1.5:
- resolution: {integrity: sha512-HQYyGuDRFGmZ6GNC4hq2f37KnsY9Lr0/R1marNZTgMweVDQLTLJJ6DGQ9Tj/xVVs5HEnop9EMmTbywb5P30aqw==}
- engines: {node: '>=6.4.0 <13 || >=14'}
+ superagent@7.1.6:
dependencies:
- component-emitter: 1.3.0
+ component-emitter: 1.3.1
cookiejar: 2.1.4
- debug: 4.3.6
+ debug: 4.3.7(supports-color@9.4.0)
fast-safe-stringify: 2.1.1
form-data: 4.0.1
formidable: 2.1.2
methods: 1.1.2
mime: 2.6.0
- qs: 6.12.0
+ qs: 6.13.1
readable-stream: 3.6.2
semver: 7.6.3
transitivePeerDependencies:
- supports-color
- dev: false
- /supports-color/2.0.0:
- resolution: {integrity: sha512-KKNVtd6pCYgPIKU4cp2733HWYCpplQhddZLBUryaAHou723x+FRzQ5Df824Fj+IyyuiQTRoub4SnIFfIcrp70g==}
- engines: {node: '>=0.8.0'}
- dev: true
+ supports-color@2.0.0: {}
- /supports-color/5.5.0:
- resolution: {integrity: sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==}
- engines: {node: '>=4'}
+ supports-color@5.5.0:
dependencies:
has-flag: 3.0.0
- /supports-color/7.2.0:
- resolution: {integrity: sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==}
- engines: {node: '>=8'}
+ supports-color@7.2.0:
dependencies:
has-flag: 4.0.0
- /supports-color/8.1.1:
- resolution: {integrity: sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==}
- engines: {node: '>=10'}
+ supports-color@8.1.1:
dependencies:
has-flag: 4.0.0
- dev: true
- /supports-color/9.4.0:
- resolution: {integrity: sha512-VL+lNrEoIXww1coLPOmiEmK/0sGigko5COxI09KzHc2VJXJsQ37UaQ+8quuxjDeA7+KnLGTWRyOXSLLR2Wb4jw==}
- engines: {node: '>=12'}
- dev: true
+ supports-color@9.4.0: {}
- /supports-hyperlinks/3.0.0:
- resolution: {integrity: sha512-QBDPHyPQDRTy9ku4URNGY5Lah8PAaXs6tAAwp55sL5WCsSW7GIfdf6W5ixfziW+t7wh3GVvHyHHyQ1ESsoRvaA==}
- engines: {node: '>=14.18'}
+ supports-hyperlinks@3.1.0:
dependencies:
has-flag: 4.0.0
supports-color: 7.2.0
- dev: true
- /supports-preserve-symlinks-flag/1.0.0:
- resolution: {integrity: sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==}
- engines: {node: '>= 0.4'}
+ supports-preserve-symlinks-flag@1.0.0: {}
- /svg-tags/1.0.0:
- resolution: {integrity: sha512-ovssysQTa+luh7A5Weu3Rta6FJlFBBbInjOh722LIt6klpU2/HtdUbszju/G4devcvk8PGt7FCLv5wftu3THUA==}
- dev: true
+ svg-tags@1.0.0: {}
- /swagger-inline/6.1.1:
- resolution: {integrity: sha512-ytE+mTC/xc5Apq8YM00gXtzoO4ptlNltF60LYd21pQEGWRBQVBvrliy1gtoluvNUMHQxpHiFi48njQyq6Iwccg==}
- engines: {node: '>=14'}
- hasBin: true
+ swagger-inline@6.1.1:
dependencies:
commander: 6.2.1
globby: 11.1.0
js-yaml: 4.1.0
multilang-extract-comments: 0.4.0
promise.any: 2.0.6
- dev: false
- /swagger2openapi/7.0.8:
- resolution: {integrity: sha512-upi/0ZGkYgEcLeGieoz8gT74oWHA0E7JivX7aN9mAf+Tc7BQoRBvnIGHoPDw+f9TXTW4s6kGYCZJtauP6OYp7g==}
- hasBin: true
+ swagger2openapi@7.0.8:
dependencies:
call-me-maybe: 1.0.2
node-fetch: 2.7.0
@@ -35632,72 +39076,65 @@ packages:
yargs: 17.7.2
transitivePeerDependencies:
- encoding
- dev: false
- /table-layout/1.0.2:
- resolution: {integrity: sha512-qd/R7n5rQTRFi+Zf2sk5XVVd9UQl6ZkduPFC3S7WEGJAmetDTjY3qPN50eSKzwuzEyQKy5TN2TiZdkIjos2L6A==}
- engines: {node: '>=8.0.0'}
+ synckit@0.9.2:
+ dependencies:
+ '@pkgr/core': 0.1.1
+ tslib: 2.8.1
+
+ table-layout@1.0.2:
dependencies:
array-back: 4.0.2
deep-extend: 0.6.0
typical: 5.2.0
wordwrapjs: 4.0.1
- dev: true
- /table/6.8.1:
- resolution: {integrity: sha512-Y4X9zqrCftUhMeH2EptSSERdVKt/nEdijTOacGD/97EKjhQ/Qs8RTlEGABSJNNN8lac9kheH+af7yAkEWlgneA==}
- engines: {node: '>=10.0.0'}
+ table@6.8.2:
dependencies:
ajv: 8.17.1
lodash.truncate: 4.4.2
slice-ansi: 4.0.0
string-width: 4.2.3
strip-ansi: 6.0.1
- dev: true
- /tapable/2.2.1:
- resolution: {integrity: sha512-GNzQvQTOIP6RyTfE2Qxb8ZVlNmw0n88vp1szwWRimP02mnTsx3Wtn5qRdqY9w2XduFNUgvOwhNnQsjwCp+kqaQ==}
- engines: {node: '>=6'}
- dev: true
+ tapable@2.2.1: {}
- /tar-fs/2.1.1:
- resolution: {integrity: sha512-V0r2Y9scmbDRLCNex/+hYzvp/zyYjvFbHPNgVTKfQvVrb6guiE/fxP+XblDNR011utopbkex2nM4dHNV6GDsng==}
+ tar-fs@2.1.1:
dependencies:
chownr: 1.1.4
mkdirp-classic: 0.5.3
- pump: 3.0.0
+ pump: 3.0.2
tar-stream: 2.2.0
- dev: false
- /tar-fs/3.0.4:
- resolution: {integrity: sha512-5AFQU8b9qLfZCX9zp2duONhPmZv0hGYiBPJsyUdqMjzq/mqVpy/rEUSeHk1+YitmxugaptgBh5oDGU3VsAJq4w==}
+ tar-fs@3.0.4:
dependencies:
mkdirp-classic: 0.5.3
- pump: 3.0.0
- tar-stream: 3.1.6
- dev: false
+ pump: 3.0.2
+ tar-stream: 3.1.7
- /tar-stream/2.2.0:
- resolution: {integrity: sha512-ujeqbceABgwMZxEJnk2HDY2DlnUZ+9oEcb1KzTVfYHio0UE6dG71n60d8D2I4qNvleWrrXpmjpt7vZeF1LnMZQ==}
- engines: {node: '>=6'}
+ tar-fs@3.0.6:
+ dependencies:
+ pump: 3.0.2
+ tar-stream: 3.1.7
+ optionalDependencies:
+ bare-fs: 2.3.5
+ bare-path: 2.1.3
+
+ tar-stream@2.2.0:
dependencies:
bl: 4.1.0
end-of-stream: 1.4.4
fs-constants: 1.0.0
inherits: 2.0.4
readable-stream: 3.6.2
- dev: false
- /tar-stream/3.1.6:
- resolution: {integrity: sha512-B/UyjYwPpMBv+PaFSWAmtYjwdrlEaZQEhMIBFNC5oEG8lpiW8XjcSdmEaClj28ArfKScKHs2nshz3k2le6crsg==}
+ tar-stream@3.1.7:
dependencies:
- b4a: 1.6.4
+ b4a: 1.6.7
fast-fifo: 1.3.2
- streamx: 2.15.5
+ streamx: 2.20.2
- /tar/6.2.1:
- resolution: {integrity: sha512-DZ4yORTwrbTj/7MZYq2w+/ZFdI6OZ/f9SFHR+71gIVUZhOQPHzVCLpvRnPgyaMpfWxxk/4ONva3GQSyNIKRv6A==}
- engines: {node: '>=10'}
+ tar@6.2.1:
dependencies:
chownr: 2.0.0
fs-minipass: 2.1.0
@@ -35705,36 +39142,26 @@ packages:
minizlib: 2.1.2
mkdirp: 1.0.4
yallist: 4.0.0
- dev: true
- /tarn/3.0.2:
- resolution: {integrity: sha512-51LAVKUSZSVfI05vjPESNc5vwqqZpbXCsU+/+wxlOrUjk2SnFTt97v9ZgQrD4YmxYW1Px6w2KjaDitCfkvgxMQ==}
- engines: {node: '>=8.0.0'}
- dev: false
+ tarn@3.0.2: {}
- /tedious/16.4.1:
- resolution: {integrity: sha512-WwRkGs7N5jFiHhD7uyLHnZ9rCmOfYytEHZhE/vyU56mxzFB3+xHd4WV+DssLwuc1piJqDI54vHDi6SRACOGu8g==}
- engines: {node: '>=16'}
+ tedious@16.7.1:
dependencies:
- '@azure/identity': 2.1.0
- '@azure/keyvault-keys': 4.7.2
- '@js-joda/core': 5.5.3
- bl: 6.0.7
- es-aggregate-error: 1.0.11
+ '@azure/identity': 3.4.2
+ '@azure/keyvault-keys': 4.9.0
+ '@js-joda/core': 5.6.3
+ bl: 6.0.16
+ es-aggregate-error: 1.0.13
iconv-lite: 0.6.3
js-md4: 0.3.2
jsbi: 4.3.0
native-duplexpair: 1.0.0
node-abort-controller: 3.1.1
- punycode: 2.3.0
sprintf-js: 1.1.3
transitivePeerDependencies:
- supports-color
- dev: false
- /teeny-request/7.2.0:
- resolution: {integrity: sha512-SyY0pek1zWsi0LRVAALem+avzMLc33MKW/JLLakdP4s9+D7+jHcy5x6P+h94g2QNZsAqQNfX5lsbd3WSeJXrrw==}
- engines: {node: '>=10'}
+ teeny-request@7.2.0:
dependencies:
http-proxy-agent: 5.0.0
https-proxy-agent: 5.0.1
@@ -35744,12 +39171,9 @@ packages:
transitivePeerDependencies:
- encoding
- supports-color
- dev: false
optional: true
- /teeny-request/8.0.3:
- resolution: {integrity: sha512-jJZpA5He2y52yUhA7pyAGZlgQpcB+xLjcN0eUFxr9c8hP/H7uOXbBNVo/O0C/xVfJLJs680jvkFgVJEEvk9+ww==}
- engines: {node: '>=12'}
+ teeny-request@8.0.3:
dependencies:
http-proxy-agent: 5.0.0
https-proxy-agent: 5.0.1
@@ -35759,11 +39183,8 @@ packages:
transitivePeerDependencies:
- encoding
- supports-color
- dev: false
- /teeny-request/9.0.0:
- resolution: {integrity: sha512-resvxdc6Mgb7YEThw6G6bExlXKkv6+YbuzGg9xuXxSgxJF7Ozs+o8Y9+2R3sArdWdW8nOokoQb1yrpFB0pQK2g==}
- engines: {node: '>=14'}
+ teeny-request@9.0.0:
dependencies:
http-proxy-agent: 5.0.0
https-proxy-agent: 5.0.1
@@ -35773,385 +39194,207 @@ packages:
transitivePeerDependencies:
- encoding
- supports-color
- dev: false
- /temp-dir/1.0.0:
- resolution: {integrity: sha512-xZFXEGbG7SNC3itwBzI3RYjq/cEhBkx2hJuKGIUOcEULmkQExXiHat2z/qkISYsuR+IKumhEfKKbV5qXmhICFQ==}
- engines: {node: '>=4'}
- dev: false
+ temp-dir@1.0.0: {}
- /temp-dir/2.0.0:
- resolution: {integrity: sha512-aoBAniQmmwtcKp/7BzsH8Cxzv8OL736p7v1ihGb5e9DJ9kTwGWHrQrVB5+lfVDzfGrdRzXch+ig7LHaY1JTOrg==}
- engines: {node: '>=8'}
- dev: false
+ temp-dir@2.0.0: {}
- /tempy/0.3.0:
- resolution: {integrity: sha512-WrH/pui8YCwmeiAoxV+lpRH9HpRtgBhSR2ViBPgpGb/wnYDzp21R4MN45fsCGvLROvY67o3byhJRYRONJyImVQ==}
- engines: {node: '>=8'}
+ tempy@0.3.0:
dependencies:
temp-dir: 1.0.0
type-fest: 0.3.1
unique-string: 1.0.0
- dev: false
- /test-exclude/6.0.0:
- resolution: {integrity: sha512-cAGWPIyOHU6zlmg88jwm7VRyXnMN7iV68OGAbYDk/Mh/xC/pzVPlQtY6ngoIH/5/tciuhGfvESU8GrHrcxD56w==}
- engines: {node: '>=8'}
+ test-exclude@6.0.0:
dependencies:
'@istanbuljs/schema': 0.1.3
glob: 7.2.3
minimatch: 3.1.2
- dev: true
- /text-decoding/1.0.0:
- resolution: {integrity: sha512-/0TJD42KDnVwKmDK6jj3xP7E2MG7SHAOG4tyTgyUCRPdHwvkquYNLEQltmdMa3owq3TkddCVcTsoctJI8VQNKA==}
- dev: false
+ text-decoder@1.2.1: {}
- /text-hex/1.0.0:
- resolution: {integrity: sha512-uuVGNWzgJ4yhRaNSiubPY7OjISw4sw4E5Uv0wbjp+OzcbmVU/rsT8ujgcXJhn9ypzsgr5vlzpPqP+MBBKcGvbg==}
- dev: false
+ text-decoding@1.0.0: {}
- /text-table/0.2.0:
- resolution: {integrity: sha512-N+8UisAXDGk8PFXP4HAzVR9nbfmVJ3zYLAWiTIoqC5v5isinhr+r5uaO8+7r3BMfuNIufIsA7RdpVgacC2cSpw==}
- dev: true
+ text-hex@1.0.0: {}
- /through/2.3.8:
- resolution: {integrity: sha512-w89qg7PI8wAdvX60bMDP+bFoD5Dvhm9oLheFp5O4a2QF0cSBGsBX4qZmadPMvVqlLJBBci+WqGGOAPvcDeNSVg==}
+ text-table@0.2.0: {}
- /through2-filter/3.0.0:
- resolution: {integrity: sha512-jaRjI2WxN3W1V8/FMZ9HKIBXixtiqs3SQSX4/YGIiP3gL6djW48VoZq9tDqeCWs3MT8YY5wb/zli8VW8snY1CA==}
+ through2-filter@3.0.0:
dependencies:
through2: 2.0.5
xtend: 4.0.2
- dev: false
- /through2-map/3.0.0:
- resolution: {integrity: sha512-Ms68QPbSJKjRYY7fmqZHB0VGt+vD0/tjmDHUWgxltjifCof6hZWWeQAEi27Wjbs7jyNlIIyerQw/TVj7gHkd/Q==}
+ through2-map@3.0.0:
dependencies:
through2: 2.0.5
xtend: 4.0.2
- dev: false
- /through2/2.0.5:
- resolution: {integrity: sha512-/mrRod8xqpA+IHSLyGCQ2s8SPHiCDEeQJSep1jqLYeEUClOFG2Qsh+4FU6G9VeqpZnGW/Su8LQGc4YKni5rYSQ==}
+ through2@2.0.5:
dependencies:
readable-stream: 2.3.8
xtend: 4.0.2
- dev: false
- /timed-out/4.0.1:
- resolution: {integrity: sha512-G7r3AhovYtr5YKOWQkta8RKAPb+J9IsO4uVmzjl8AZwfhs8UcUwTiD6gcJYSgOtzyjvQKrKYn41syHbUWMkafA==}
- engines: {node: '>=0.10.0'}
- dev: false
+ through@2.3.8: {}
+
+ timed-out@4.0.1: {}
+
+ timer-node@5.0.7: {}
- /timers-ext/0.1.7:
- resolution: {integrity: sha512-b85NUNzTSdodShTIbky6ZF02e8STtVVfD+fu4aXXShEELpozH+bCpJLYMPZbsABN2wDH7fJpqIoXxJpzbf0NqQ==}
+ timers-ext@0.1.8:
dependencies:
- es5-ext: 0.10.62
+ es5-ext: 0.10.64
next-tick: 1.1.0
- dev: false
- /timezones-list/3.0.2:
- resolution: {integrity: sha512-I698hm6Jp/xxkwyTSOr39pZkYKETL8LDJeSIhjxXBfPUAHM5oZNuQ4o9UK3PSkDBOkjATecSOBb3pR1IkIBUsg==}
- dev: false
+ timezones-list@3.0.3: {}
- /tiny-warning/1.0.3:
- resolution: {integrity: sha512-lBN9zLN/oAf68o3zNXYrdCt1kP8WsiGW8Oo2ka41b2IM5JL/S1CTyX1rW0mb/zSuJun0ZUrDxx4sqvYS2FWzPA==}
- dev: false
+ tiny-invariant@1.3.3: {}
- /tinyduration/3.3.0:
- resolution: {integrity: sha512-sLR0iVUnnnyGEX/a3jhTA0QMK7UvakBqQJFLiibiuEYL6U1L85W+qApTZj6DcL1uoWQntYuL0gExoe9NU5B3PA==}
- dev: false
+ tiny-warning@1.0.3: {}
- /title-case/3.0.3:
- resolution: {integrity: sha512-e1zGYRvbffpcHIrnuqT0Dh+gEJtDaxDSoG4JAIpq4oDFyooziLBIiYQv0GBT4FUAnUop5uZ1hiIAj7oAF6sOCA==}
- dependencies:
- tslib: 2.6.2
- dev: false
+ tinyduration@3.3.1: {}
- /tlds/1.240.0:
- resolution: {integrity: sha512-1OYJQenswGZSOdRw7Bql5Qu7uf75b+F3HFBXbqnG/ifHa0fev1XcG+3pJf3pA/KC6RtHQzfKgIf1vkMlMG7mtQ==}
- hasBin: true
- dev: false
+ title-case@3.0.3:
+ dependencies:
+ tslib: 2.8.1
- /tlds/1.248.0:
- resolution: {integrity: sha512-noj0KdpWTBhwsKxMOXk0rN9otg4kTgLm4WohERRHbJ9IY+kSDKr3RmjitaQ3JFzny+DyvBOQKlFZhp0G0qNSfg==}
- hasBin: true
- dev: false
+ tlds@1.252.0: {}
- /tmp-promise/3.0.3:
- resolution: {integrity: sha512-RwM7MoPojPxsOBYnyd2hy0bxtIlVrihNs9pj5SUvY8Zz1sQcQG2tG1hSr8PDxfgEB8RNKDhqbIlroIarSNDNsQ==}
+ tmp-promise@3.0.3:
dependencies:
- tmp: 0.2.1
- dev: false
+ tmp: 0.2.3
- /tmp/0.0.33:
- resolution: {integrity: sha512-jRCJlojKnZ3addtTOjdIqoRuPEKBvNXcGYqzO6zWZX8KfKEpnGY5jfggJQ3EjKuu8D4bJRr0y+cYJFmYbImXGw==}
- engines: {node: '>=0.6.0'}
+ tmp@0.0.33:
dependencies:
os-tmpdir: 1.0.2
- dev: false
-
- /tmp/0.2.1:
- resolution: {integrity: sha512-76SUhtfqR2Ijn+xllcI5P1oyannHNHByD80W1q447gU3mp9G9PSpGdWmjUOHRDPiHYacIk66W7ubDTuPF3BEtQ==}
- engines: {node: '>=8.17.0'}
- dependencies:
- rimraf: 3.0.2
- /tmpl/1.0.5:
- resolution: {integrity: sha512-3f0uOEAQwIqGuWW2MVzYg8fV/QNnc/IpuJNG837rLuczAaLVHslWHZQj4IGiEl5Hs3kkbhwL9Ab7Hrsmuj+Smw==}
- dev: true
+ tmp@0.2.3: {}
- /to-fast-properties/2.0.0:
- resolution: {integrity: sha512-/OaKK0xYrs3DmxRYqL/yDc+FxFUVYhDlXMhRmv3z915w2HF1tnN1omB354j8VUGO/hbRzyD6Y3sA7v7GS/ceog==}
- engines: {node: '>=4'}
+ tmpl@1.0.5: {}
- /to-regex-range/5.0.1:
- resolution: {integrity: sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==}
- engines: {node: '>=8.0'}
+ to-regex-range@5.0.1:
dependencies:
is-number: 7.0.0
- /toggl-api/1.0.2:
- resolution: {integrity: sha512-4r6N+KF6Av2nmCmUEUeY+zH7Fh6dXTVMi3C97Rgd8fVoZSXg/c1L96Fqz5Xu21xCo5tMmTHejANMgv0E72rSBA==}
+ toggl-api@1.0.2:
dependencies:
custom-error-generator: 7.0.0
moment: 2.30.1
object-assign: 4.1.1
request: 2.88.2
- dev: false
- /toidentifier/1.0.1:
- resolution: {integrity: sha512-o5sSPKEkg/DIQNmH43V0/uerLrpzVedkUh8tGNvaeXpfpuwjKenlSox/2O/BTlZUtEe+JG7s5YhEz608PlAHRA==}
- engines: {node: '>=0.6'}
- dev: false
+ toidentifier@1.0.1: {}
- /token-types/4.2.1:
- resolution: {integrity: sha512-6udB24Q737UD/SDsKAHI9FCRP7Bqc9D/MQUV02ORQg5iskjtLJlZJNdN4kKtcdtwCeWIwIHDGaUsTsCCAa8sFQ==}
- engines: {node: '>=10'}
+ token-types@4.2.1:
dependencies:
'@tokenizer/token': 0.3.0
ieee754: 1.2.1
- dev: false
- /token-types/5.0.1:
- resolution: {integrity: sha512-Y2fmSnZjQdDb9W4w4r1tswlMHylzWIeOKpx0aZH9BgGtACHhrk3OkT52AzwcuqTRBZtvvnTjDBh8eynMulu8Vg==}
- engines: {node: '>=14.16'}
+ token-types@5.0.1:
dependencies:
'@tokenizer/token': 0.3.0
ieee754: 1.2.1
- dev: false
- /touch/3.1.1:
- resolution: {integrity: sha512-r0eojU4bI8MnHr8c5bNo7lJDdI2qXlWWJk6a9EAFG7vbhTjElYhBVS3/miuE0uOuoLdb8Mc/rVfsmm6eo5o9GA==}
- hasBin: true
- dev: true
+ touch@3.1.1: {}
- /tough-cookie/2.5.0:
- resolution: {integrity: sha512-nlLsUzgm1kfLXSXfRZMc1KLAugd4hqJHDTvc2hDIwS3mZAfMEuMbc03SujMF+GEcpaX/qboeycw6iO8JwVv2+g==}
- engines: {node: '>=0.8'}
+ tough-cookie@2.5.0:
dependencies:
- psl: 1.9.0
+ psl: 1.13.0
punycode: 2.3.1
- /tr46/0.0.3:
- resolution: {integrity: sha512-N3WMsuqV66lT30CrXNbEjx4GEwlow3v6rr4mCcv6prnfwhS01rkgyFdjPNBYd9br7LpXV1+Emh01fHnq2Gdgrw==}
+ tr46@0.0.3: {}
- /tr46/1.0.1:
- resolution: {integrity: sha512-dTpowEjclQ7Kgx5SdBkqRzVhERQXov8/l9Ft9dVM9fmg0W0KQSVaXX9T4i6twCPNtYiZM53lpSSUAwJbFPOHxA==}
+ tr46@1.0.1:
dependencies:
punycode: 2.3.1
- dev: false
- /tr46/3.0.0:
- resolution: {integrity: sha512-l7FvfAHlcmulp8kr+flpQZmVwtu7nfRV7NZujtN0OqES8EL4O4e0qqzL0DC5gAvx/ZC/9lk6rhcUwYvkBnBnYA==}
- engines: {node: '>=12'}
+ tr46@3.0.0:
dependencies:
punycode: 2.3.1
- dev: false
- /trim-newlines/4.1.1:
- resolution: {integrity: sha512-jRKj0n0jXWo6kh62nA5TEh3+4igKDXLvzBJcPpiizP7oOolUrYIxmVBG9TOtHYFHoddUk6YvAkGeGoSVTXfQXQ==}
- engines: {node: '>=12'}
- dev: true
-
- /triple-beam/1.4.1:
- resolution: {integrity: sha512-aZbgViZrg1QNcG+LULa7nhZpJTZSLm/mXnHXnbAbjmN5aSa0y7V+wvv6+4WaBtpISJzThKy+PIPxc1Nq1EJ9mg==}
- engines: {node: '>= 14.0.0'}
- dev: false
+ trim-lines@3.0.1: {}
- /trough/1.0.5:
- resolution: {integrity: sha512-rvuRbTarPXmMb79SmzEp8aqXNKcK+y0XaB298IXueQ8I2PsrATcPBCSPyK/dDNa2iWOhKlfNnOjdAOTBU/nkFA==}
- dev: false
+ triple-beam@1.4.1: {}
- /trough/2.1.0:
- resolution: {integrity: sha512-AqTiAOLcj85xS7vQ8QkAV41hPDIJ71XJB4RCUrzo/1GM2CQwhkJGaf9Hgr7BOugMRpgGUrqRg/DrBDl4H40+8g==}
- dev: true
+ trough@1.0.5: {}
- /trough/2.2.0:
- resolution: {integrity: sha512-tmMpK00BjZiUyVyvrBK7knerNgmgvcV/KLVyuma/SC+TQN167GrMRciANTz09+k3zW8L8t60jWO1GpfkZdjTaw==}
- dev: true
+ trough@2.2.0: {}
- /try-catch/3.0.1:
- resolution: {integrity: sha512-91yfXw1rr/P6oLpHSyHDOHm0vloVvUoo9FVdw8YwY05QjJQG9OT0LUxe2VRAzmHG+0CUOmI3nhxDUMLxDN/NEQ==}
- engines: {node: '>=6'}
- dev: true
+ try-catch@3.0.1: {}
- /try-to-catch/3.0.1:
- resolution: {integrity: sha512-hOY83V84Hx/1sCzDSaJA+Xz2IIQOHRvjxzt+F0OjbQGPZ6yLPLArMA0gw/484MlfUkQbCpKYMLX3VDCAjWKfzQ==}
- engines: {node: '>=6'}
- dev: true
+ try-to-catch@3.0.1: {}
- /ts-jest/29.1.1_s6pp5jfszqvqftxetajx5tybba:
- resolution: {integrity: sha512-D6xjnnbP17cC85nliwGiL+tpoKN0StpgE0TeOjXQTU6MVCfsB4v7aW05CgQ/1OywGb0x/oy9hHFnN+sczTiRaA==}
- engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
- hasBin: true
- peerDependencies:
- '@babel/core': '>=7.0.0-beta.0 <8'
- '@jest/types': ^29.0.0
- babel-jest: ^29.0.0
- esbuild: '*'
- jest: ^29.0.0
- typescript: '>=4.3 <6'
- peerDependenciesMeta:
- '@babel/core':
- optional: true
- '@jest/types':
- optional: true
- babel-jest:
- optional: true
- esbuild:
- optional: true
+ ts-api-utils@1.4.0(typescript@5.6.3):
+ dependencies:
+ typescript: 5.6.3
+
+ ts-jest@29.2.5(@babel/core@7.26.0)(@jest/transform@29.7.0)(@jest/types@29.6.3)(babel-jest@29.7.0(@babel/core@7.26.0))(jest@29.7.0(@types/node@20.17.6)(babel-plugin-macros@3.1.0))(typescript@5.7.2):
dependencies:
- '@babel/core': 7.25.2
bs-logger: 0.2.6
+ ejs: 3.1.10
fast-json-stable-stringify: 2.1.0
- jest: 29.7.0_@types+node@20.9.2
+ jest: 29.7.0(@types/node@20.17.6)(babel-plugin-macros@3.1.0)
jest-util: 29.7.0
json5: 2.2.3
lodash.memoize: 4.1.2
make-error: 1.3.6
- semver: 7.5.4
- typescript: 5.2.2
+ semver: 7.6.3
+ typescript: 5.7.2
yargs-parser: 21.1.1
- dev: true
+ optionalDependencies:
+ '@babel/core': 7.26.0
+ '@jest/transform': 29.7.0
+ '@jest/types': 29.6.3
+ babel-jest: 29.7.0(@babel/core@7.26.0)
- /ts-jest/29.2.5_q3xqhaztsvh2r5udjscjs67zn4:
- resolution: {integrity: sha512-KD8zB2aAZrcKIdGk4OwpJggeLcH1FgrICqDSROWqlnJXGCXK4Mn6FcdK2B6670Xr73lHMG1kHw8R87A0ecZ+vA==}
- engines: {node: ^14.15.0 || ^16.10.0 || ^18.0.0 || >=20.0.0}
- hasBin: true
- peerDependencies:
- '@babel/core': '>=7.0.0-beta.0 <8'
- '@jest/transform': ^29.0.0
- '@jest/types': ^29.0.0
- babel-jest: ^29.0.0
- esbuild: '*'
- jest: ^29.0.0
- typescript: '>=4.3 <6'
- peerDependenciesMeta:
- '@babel/core':
- optional: true
- '@jest/transform':
- optional: true
- '@jest/types':
- optional: true
- babel-jest:
- optional: true
- esbuild:
- optional: true
+ ts-jest@29.2.5(@babel/core@8.0.0-alpha.13)(@jest/transform@29.7.0)(@jest/types@29.6.3)(babel-jest@29.7.0(@babel/core@8.0.0-alpha.13))(jest@29.7.0(@types/node@20.17.6)(babel-plugin-macros@3.1.0))(typescript@5.6.3):
dependencies:
- '@babel/core': 7.25.2
bs-logger: 0.2.6
ejs: 3.1.10
fast-json-stable-stringify: 2.1.0
- jest: 29.7.0_@types+node@20.17.6
+ jest: 29.7.0(@types/node@20.17.6)(babel-plugin-macros@3.1.0)
jest-util: 29.7.0
json5: 2.2.3
lodash.memoize: 4.1.2
make-error: 1.3.6
semver: 7.6.3
- typescript: 5.5.4
+ typescript: 5.6.3
yargs-parser: 21.1.1
- dev: true
-
- /ts-toolbelt/9.6.0:
- resolution: {integrity: sha512-nsZd8ZeNUzukXPlJmTBwUAuABDe/9qtVDelJeT/qW0ow3ZS3BsQJtNkan1802aM9Uf68/Y8ljw86Hu0h5IUW3w==}
- dev: false
+ optionalDependencies:
+ '@babel/core': 8.0.0-alpha.13
+ '@jest/transform': 29.7.0
+ '@jest/types': 29.6.3
+ babel-jest: 29.7.0(@babel/core@8.0.0-alpha.13)
- /tsc-esm-fix/2.20.17:
- resolution: {integrity: sha512-TC/JVuSb8G0pAVtMmDIaB3sK6vfMUIIGPQAg82CPRStDPryZwXpppW9tJn/Z5Kr8vgxNiRtIOIgxtGY9D/WNBA==}
- engines: {node: '>=16.0.0'}
- hasBin: true
+ tsc-esm-fix@2.20.27:
dependencies:
- fs-extra: 11.1.1
+ depseek: 0.4.1
+ fs-extra: 11.2.0
globby: 13.2.2
json5: 2.2.3
meow: 12.1.1
- tslib: 2.6.2
- dev: true
+ tslib: 2.8.1
- /tsc-watch/5.0.3_typescript@5.2.2:
- resolution: {integrity: sha512-Hz2UawwELMSLOf0xHvAFc7anLeMw62cMVXr1flYmhRuOhOyOljwmb1l/O60ZwRyy1k7N1iC1mrn1QYM2zITfuw==}
- engines: {node: '>=8.17.0'}
- hasBin: true
- peerDependencies:
- typescript: '*'
+ tsc-watch@5.0.3(typescript@5.6.3):
dependencies:
- cross-spawn: 7.0.3
+ cross-spawn: 7.0.6
node-cleanup: 2.1.2
ps-tree: 1.2.0
string-argv: 0.1.2
strip-ansi: 6.0.1
- typescript: 5.2.2
- dev: true
+ typescript: 5.6.3
- /tsconfig-paths/3.15.0:
- resolution: {integrity: sha512-2Ac2RgzDe/cn48GvOe3M+o82pEFewD3UPbyoUHHdKasHwJKjds4fLXWf/Ux5kATBKN20oaFGu+jbElp1pos0mg==}
+ tsconfig-paths@3.15.0:
dependencies:
'@types/json5': 0.0.29
json5: 1.0.2
minimist: 1.2.8
strip-bom: 3.0.0
- dev: true
-
- /tslib/1.14.1:
- resolution: {integrity: sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==}
- /tslib/2.6.2:
- resolution: {integrity: sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==}
+ tslib@1.14.1: {}
- /tslib/2.6.3:
- resolution: {integrity: sha512-xNvxJEOUiWPGhUuUdQgAJPKOOJfGnIyKySOc09XkKsgdUV/3E2zvwZYdejjmRgPCgcym1juLH3226yA7sEFJKQ==}
-
- /tslint/5.14.0_typescript@5.2.2:
- resolution: {integrity: sha512-IUla/ieHVnB8Le7LdQFRGlVJid2T/gaJe5VkjzRVSRR6pA2ODYrnfR1hmxi+5+au9l50jBwpbBL34txgv4NnTQ==}
- engines: {node: '>=4.8.0'}
- hasBin: true
- peerDependencies:
- typescript: '>=2.1.0 || >=2.1.0-dev || >=2.2.0-dev || >=2.3.0-dev || >=2.4.0-dev || >=2.5.0-dev || >=2.6.0-dev || >=2.7.0-dev || >=2.8.0-dev || >=2.9.0-dev || >=3.0.0-dev || >= 3.1.0-dev || >= 3.2.0-dev'
- dependencies:
- babel-code-frame: 6.26.0
- builtin-modules: 1.1.1
- chalk: 2.4.2
- commander: 2.20.3
- diff: 3.5.0
- glob: 7.2.3
- js-yaml: 3.14.1
- minimatch: 3.1.2
- mkdirp: 0.5.6
- resolve: 1.22.8
- semver: 5.7.2
- tslib: 1.14.1
- tsutils: 2.29.0_typescript@5.2.2
- typescript: 5.2.2
- dev: true
+ tslib@2.8.1: {}
- /tslint/5.14.0_typescript@5.5.4:
- resolution: {integrity: sha512-IUla/ieHVnB8Le7LdQFRGlVJid2T/gaJe5VkjzRVSRR6pA2ODYrnfR1hmxi+5+au9l50jBwpbBL34txgv4NnTQ==}
- engines: {node: '>=4.8.0'}
- hasBin: true
- peerDependencies:
- typescript: '>=2.1.0 || >=2.1.0-dev || >=2.2.0-dev || >=2.3.0-dev || >=2.4.0-dev || >=2.5.0-dev || >=2.6.0-dev || >=2.7.0-dev || >=2.8.0-dev || >=2.9.0-dev || >=3.0.0-dev || >= 3.1.0-dev || >= 3.2.0-dev'
+ tslint@5.14.0(typescript@5.7.2):
dependencies:
babel-code-frame: 6.26.0
builtin-modules: 1.1.1
@@ -36165,82 +39408,36 @@ packages:
resolve: 1.22.8
semver: 5.7.2
tslib: 1.14.1
- tsutils: 2.29.0_typescript@5.5.4
- typescript: 5.5.4
- dev: true
-
- /tsutils/2.29.0_typescript@5.2.2:
- resolution: {integrity: sha512-g5JVHCIJwzfISaXpXE1qvNalca5Jwob6FjI4AoPlqMusJ6ftFE7IkkFoMhVLRgK+4Kx3gkzb8UZK5t5yTTvEmA==}
- peerDependencies:
- typescript: '>=2.1.0 || >=2.1.0-dev || >=2.2.0-dev || >=2.3.0-dev || >=2.4.0-dev || >=2.5.0-dev || >=2.6.0-dev || >=2.7.0-dev || >=2.8.0-dev || >=2.9.0-dev || >= 3.0.0-dev || >= 3.1.0-dev'
- dependencies:
- tslib: 1.14.1
- typescript: 5.2.2
- dev: true
+ tsutils: 2.29.0(typescript@5.7.2)
+ typescript: 5.7.2
- /tsutils/2.29.0_typescript@5.5.4:
- resolution: {integrity: sha512-g5JVHCIJwzfISaXpXE1qvNalca5Jwob6FjI4AoPlqMusJ6ftFE7IkkFoMhVLRgK+4Kx3gkzb8UZK5t5yTTvEmA==}
- peerDependencies:
- typescript: '>=2.1.0 || >=2.1.0-dev || >=2.2.0-dev || >=2.3.0-dev || >=2.4.0-dev || >=2.5.0-dev || >=2.6.0-dev || >=2.7.0-dev || >=2.8.0-dev || >=2.9.0-dev || >= 3.0.0-dev || >= 3.1.0-dev'
+ tsutils@2.29.0(typescript@5.7.2):
dependencies:
tslib: 1.14.1
- typescript: 5.5.4
- dev: true
+ typescript: 5.7.2
- /tsutils/3.21.0_typescript@3.9.10:
- resolution: {integrity: sha512-mHKK3iUXL+3UF6xL5k0PEhKRUBKPBCv/+RkEOpjRWxxx27KKRBmmA60A9pgOUvMi8GKhRMPEmjBRPzs2W7O1OA==}
- engines: {node: '>= 6'}
- peerDependencies:
- typescript: '>=2.8.0 || >= 3.2.0-dev || >= 3.3.0-dev || >= 3.4.0-dev || >= 3.5.0-dev || >= 3.6.0-dev || >= 3.6.0-beta || >= 3.7.0-dev || >= 3.7.0-beta'
+ tsutils@3.21.0(typescript@3.9.10):
dependencies:
tslib: 1.14.1
typescript: 3.9.10
- dev: false
-
- /tsutils/3.21.0_typescript@4.9.5:
- resolution: {integrity: sha512-mHKK3iUXL+3UF6xL5k0PEhKRUBKPBCv/+RkEOpjRWxxx27KKRBmmA60A9pgOUvMi8GKhRMPEmjBRPzs2W7O1OA==}
- engines: {node: '>= 6'}
- peerDependencies:
- typescript: '>=2.8.0 || >= 3.2.0-dev || >= 3.3.0-dev || >= 3.4.0-dev || >= 3.5.0-dev || >= 3.6.0-dev || >= 3.6.0-beta || >= 3.7.0-dev || >= 3.7.0-beta'
- dependencies:
- tslib: 1.14.1
- typescript: 4.9.5
- dev: true
-
- /tsutils/3.21.0_typescript@5.2.2:
- resolution: {integrity: sha512-mHKK3iUXL+3UF6xL5k0PEhKRUBKPBCv/+RkEOpjRWxxx27KKRBmmA60A9pgOUvMi8GKhRMPEmjBRPzs2W7O1OA==}
- engines: {node: '>= 6'}
- peerDependencies:
- typescript: '>=2.8.0 || >= 3.2.0-dev || >= 3.3.0-dev || >= 3.4.0-dev || >= 3.5.0-dev || >= 3.6.0-dev || >= 3.6.0-beta || >= 3.7.0-dev || >= 3.7.0-beta'
- dependencies:
- tslib: 1.14.1
- typescript: 5.2.2
- dev: true
- /tunnel-agent/0.6.0:
- resolution: {integrity: sha512-McnNiV1l8RYeY8tBgEpuodCC1mLUdbSN+CYBL7kJsJNInOP8UjDDEwdk6Mw60vdLLrr5NHKZhMAOSrR2NZuQ+w==}
+ tunnel-agent@0.6.0:
dependencies:
safe-buffer: 5.2.1
- /tunnel/0.0.6:
- resolution: {integrity: sha512-1h/Lnq9yajKY2PEbBadPXj3VxsDDu844OnaAo52UVmIzIvwwtBPIuNvkjuzBlTWpfJyUbG3ez0KSBibQkj4ojg==}
- engines: {node: '>=0.6.11 <=0.7.0 || >=0.7.3'}
- dev: false
+ tunnel@0.0.6: {}
- /tweetnacl/0.14.5:
- resolution: {integrity: sha512-KXXFFdAbFXY4geFIwoyNK+f5Z1b7swfXABfL7HXCmoIWMKU3dmS26672A4EeQtDzLKy7SXmfBu51JolvEKwtGA==}
+ tweetnacl@0.14.5: {}
- /twilio/3.84.1:
- resolution: {integrity: sha512-Q/xaPoayTj+bgJdnUgpE+EiB/VoNOG+byDFdlDej0FgxiHLgXKliZfVv6boqHPWvC1k7Dt0AK96OBFZ0P55QQg==}
- engines: {node: '>=6.0'}
+ twilio@3.84.1:
dependencies:
axios: 0.26.1
- dayjs: 1.11.10
+ dayjs: 1.11.13
https-proxy-agent: 5.0.1
jsonwebtoken: 8.5.1
lodash: 4.17.21
q: 2.0.3
- qs: 6.12.0
+ qs: 6.13.1
rootpath: 0.1.2
scmp: 2.1.0
url-parse: 1.5.10
@@ -36248,90 +39445,45 @@ packages:
transitivePeerDependencies:
- debug
- supports-color
- dev: false
- /type-check/0.3.2:
- resolution: {integrity: sha512-ZCmOJdvOWDBYJlzAoFkC+Q0+bUyEOS1ltgp1MGU03fqHG+dbi9tBFU2Rd9QKiDZFAYrhPh2JUf7rZRIuHRKtOg==}
- engines: {node: '>= 0.8.0'}
+ type-check@0.3.2:
dependencies:
prelude-ls: 1.1.2
- dev: false
- /type-check/0.4.0:
- resolution: {integrity: sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==}
- engines: {node: '>= 0.8.0'}
+ type-check@0.4.0:
dependencies:
prelude-ls: 1.2.1
- dev: true
-
- /type-detect/4.0.8:
- resolution: {integrity: sha512-0fr/mIH1dlO+x7TlcMy+bIDqKPsw/70tVyeHW787goQjhmqaZe10uwLujubK9q9Lg6Fiho1KUKDYz0Z7k7g5/g==}
- engines: {node: '>=4'}
- dev: true
- /type-fest/0.20.2:
- resolution: {integrity: sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==}
- engines: {node: '>=10'}
+ type-detect@4.0.8: {}
- /type-fest/0.21.3:
- resolution: {integrity: sha512-t0rzBq87m3fVcduHDUFhKmyyX+9eo6WQjZvf51Ea/M0Q7+T374Jp1aUiyUl0GKxp8M/OETVHSDvmkyPgvX+X2w==}
- engines: {node: '>=10'}
+ type-fest@0.20.2: {}
- /type-fest/0.3.1:
- resolution: {integrity: sha512-cUGJnCdr4STbePCgqNFbpVNCepa+kAVohJs1sLhxzdH+gnEoOd8VhbYa7pD3zZYGiURWM2xzEII3fQcRizDkYQ==}
- engines: {node: '>=6'}
- dev: false
+ type-fest@0.21.3: {}
- /type-fest/0.6.0:
- resolution: {integrity: sha512-q+MB8nYR1KDLrgr4G5yemftpMC7/QLqVndBmEEdqzmNj5dcFOO4Oo8qlwZE3ULT3+Zim1F8Kq4cBnikNhlCMlg==}
- engines: {node: '>=8'}
- dev: true
+ type-fest@0.3.1: {}
- /type-fest/0.8.1:
- resolution: {integrity: sha512-4dbzIzqvjtgiM5rw1k5rEHtBANKmdudhGyBEajN01fEyhaAIhsoKNy6y7+IN93IfpFtwY9iqi7kD+xwKhQsNJA==}
- engines: {node: '>=8'}
- dev: false
+ type-fest@0.6.0: {}
- /type-fest/1.4.0:
- resolution: {integrity: sha512-yGSza74xk0UG8k+pLh5oeoYirvIiWo5t0/o3zHHAO2tRDiZcxWP7fywNlXhqb6/r6sWvwi+RsyQMWhVLe4BVuA==}
- engines: {node: '>=10'}
- dev: true
+ type-fest@0.8.1: {}
- /type-fest/4.15.0:
- resolution: {integrity: sha512-tB9lu0pQpX5KJq54g+oHOLumOx+pMep4RaM6liXh2PKmVRFF+/vAtUP0ZaJ0kOySfVNjF6doBWPHhBhISKdlIA==}
- engines: {node: '>=16'}
+ type-fest@4.27.0: {}
- /type-is/1.6.18:
- resolution: {integrity: sha512-TkRKr9sUTxEH8MdfuCSP7VizJyzRNMjj2J2do2Jr3Kym598JVdEksuzPQCnlFPW4ky9Q+iA+ma9BGm06XQBy8g==}
- engines: {node: '>= 0.6'}
+ type-is@1.6.18:
dependencies:
media-typer: 0.3.0
mime-types: 2.1.35
- dev: false
-
- /type/1.2.0:
- resolution: {integrity: sha512-+5nt5AAniqsCnu2cEQQdpzCAh33kVx8n0VoFidKpB1dVVLAN/F+bgVOqOJqOnEnrhp222clB5p3vUlD+1QAnfg==}
- dev: false
- /type/2.7.2:
- resolution: {integrity: sha512-dzlvlNlt6AXU7EBSfpAscydQ7gXB+pPGsPnfJnZpiNJBDj7IaJzQlBZYGdEi4R9HmPdBv2XmWJ6YUtoTa7lmCw==}
- dev: false
+ type@2.7.3: {}
- /typecast/0.0.1:
- resolution: {integrity: sha512-L2f5OCLKsJdCjSyN0d5O6CkNxhiC8EQ2XlXnHpWZVNfF+mj2OTaXhAVnP0/7SY/sxO1DHZpOFMpIuGlFUZEGNA==}
- dev: false
+ typecast@0.0.1: {}
- /typed-array-buffer/1.0.2:
- resolution: {integrity: sha512-gEymJYKZtKXzzBzM4jqa9w6Q1Jjm7x2d+sh19AdsD4wqnMPDYyvwpsIc2Q/835kHuo3BEQ7CjelGhfTsoBb2MQ==}
- engines: {node: '>= 0.4'}
+ typed-array-buffer@1.0.2:
dependencies:
call-bind: 1.0.7
es-errors: 1.3.0
is-typed-array: 1.1.13
- /typed-array-byte-length/1.0.1:
- resolution: {integrity: sha512-3iMJ9q0ao7WE9tWcaYKIptkNBuOIcZCCT0d4MRvuuH88fEoEH62IuQe0OtraD3ebQEoTRk8XCBoknUNc1Y67pw==}
- engines: {node: '>= 0.4'}
+ typed-array-byte-length@1.0.1:
dependencies:
call-bind: 1.0.7
for-each: 0.3.3
@@ -36339,9 +39491,7 @@ packages:
has-proto: 1.0.3
is-typed-array: 1.1.13
- /typed-array-byte-offset/1.0.2:
- resolution: {integrity: sha512-Ous0vodHa56FviZucS2E63zkgtgrACj7omjwd/8lTEMEPFFyjfixMZ1ZXenpgCFBBt4EC1J2XsyVS2gkG0eTFA==}
- engines: {node: '>= 0.4'}
+ typed-array-byte-offset@1.0.3:
dependencies:
available-typed-arrays: 1.0.7
call-bind: 1.0.7
@@ -36349,10 +39499,9 @@ packages:
gopd: 1.0.1
has-proto: 1.0.3
is-typed-array: 1.1.13
+ reflect.getprototypeof: 1.0.6
- /typed-array-length/1.0.6:
- resolution: {integrity: sha512-/OxDN6OtAk5KBpGb28T+HZc2M+ADtvRxXrKKbUwtsLgdoxgX13hyy7ek6bFRl5+aBs2yZzB0c4CnQfAtVypW/g==}
- engines: {node: '>= 0.4'}
+ typed-array-length@1.0.6:
dependencies:
call-bind: 1.0.7
for-each: 0.3.3
@@ -36361,810 +39510,485 @@ packages:
is-typed-array: 1.1.13
possible-typed-array-names: 1.0.0
- /typedarray-to-buffer/3.1.5:
- resolution: {integrity: sha512-zdu8XMNEDepKKR+XYOXAVPtWui0ly0NtohUscw+UmaHiAWT8hrV1rr//H6V+0DvJ3OQ19S979M0laLfX8rm82Q==}
+ typedarray-to-buffer@3.1.5:
dependencies:
is-typedarray: 1.0.0
- dev: false
optional: true
- /typedarray/0.0.6:
- resolution: {integrity: sha512-/aCDEGatGvZ2BIk+HmLf4ifCJFwvKFNb9/JeZPMulfgFracn9QFcAf5GO8B/mweUjSoblS5In0cWhqpfs/5PQA==}
+ typedarray@0.0.6: {}
- /typescript-json-serializer/3.4.5:
- resolution: {integrity: sha512-KWsDGa1vddY3alUIzE9oBo6AfVzVXQCCHm9ATF4oiGAoTHTTIV0IBGSRAu2uiJHrpPC/n7fxnnAagOhLQZyTcg==}
+ typescript-eslint@8.15.0(eslint@8.57.1)(typescript@5.6.3):
dependencies:
- reflect-metadata: 0.1.13
- tslib: 2.6.3
- dev: false
+ '@typescript-eslint/eslint-plugin': 8.15.0(@typescript-eslint/parser@8.15.0(eslint@8.57.1)(typescript@5.6.3))(eslint@8.57.1)(typescript@5.6.3)
+ '@typescript-eslint/parser': 8.15.0(eslint@8.57.1)(typescript@5.6.3)
+ '@typescript-eslint/utils': 8.15.0(eslint@8.57.1)(typescript@5.6.3)
+ eslint: 8.57.1
+ optionalDependencies:
+ typescript: 5.6.3
+ transitivePeerDependencies:
+ - supports-color
- /typescript/3.9.10:
- resolution: {integrity: sha512-w6fIxVE/H1PkLKcCPsFqKE7Kv7QUwhU8qQY2MueZXWx5cPZdwFupLgKK3vntcK98BtNHZtAF4LA/yl2a7k8R6Q==}
- engines: {node: '>=4.2.0'}
- hasBin: true
+ typescript-json-serializer@3.4.5:
+ dependencies:
+ reflect-metadata: 0.1.14
+ tslib: 2.8.1
- /typescript/4.9.5:
- resolution: {integrity: sha512-1FXk9E2Hm+QzZQ7z+McJiHL4NW1F2EzMu9Nq9i3zAaGqibafqYwCVU6WyWAuyQRRzOlxou8xZSyXLEN8oKj24g==}
- engines: {node: '>=4.2.0'}
- hasBin: true
+ typescript@3.9.10: {}
- /typescript/5.2.2:
- resolution: {integrity: sha512-mI4WrpHsbCIcwT9cF4FZvr80QUeKvsUsUvKDoR+X/7XHQH98xYD8YHZg7ANtz2GtZt/CBq2QJ0thkGJMHfqc1w==}
- engines: {node: '>=14.17'}
- hasBin: true
+ typescript@4.9.5: {}
- /typescript/5.3.3:
- resolution: {integrity: sha512-pXWcraxM0uxAS+tN0AG/BF2TyqmHO014Z070UsJ+pFvYuRSq8KH8DmWpnbXe0pEPDHXZV3FcAbJkijJ5oNEnWw==}
- engines: {node: '>=14.17'}
- hasBin: true
+ typescript@5.4.2: {}
- /typescript/5.5.2:
- resolution: {integrity: sha512-NcRtPEOsPFFWjobJEtfihkLCZCXZt/os3zf8nTxjVH3RvTSxjrCamJpbExGvYOF+tFHc3pA65qpdwPbzjohhew==}
- engines: {node: '>=14.17'}
- hasBin: true
- dev: true
+ typescript@5.6.3: {}
- /typescript/5.5.4:
- resolution: {integrity: sha512-Mtq29sKDAEYP7aljRgtPOpTvOfbwRWlS6dPRzwjdE+C0R4brX/GUyhHSecbHMFLNBLcJIPt9nl9yG5TZ1weH+Q==}
- engines: {node: '>=14.17'}
- hasBin: true
+ typescript@5.7.2: {}
- /typical/4.0.0:
- resolution: {integrity: sha512-VAH4IvQ7BDFYglMd7BPRDfLgxZZX4O4TFcRDA6EN5X7erNJJq+McIEp8np9aVtxrCJ6qx4GTYVfOWNjcqwZgRw==}
- engines: {node: '>=8'}
- dev: true
+ typical@4.0.0: {}
- /typical/5.2.0:
- resolution: {integrity: sha512-dvdQgNDNJo+8B2uBQoqdb11eUCE1JQXhvjC/CZtgvZseVd5TYMXnq0+vuUemXbd/Se29cTaUuPX3YIc2xgbvIg==}
- engines: {node: '>=8'}
- dev: true
+ typical@5.2.0: {}
- /typical/7.1.1:
- resolution: {integrity: sha512-T+tKVNs6Wu7IWiAce5BgMd7OZfNYUndHwc5MknN+UHOudi7sGZzuHdCadllRuqJ3fPtgFtIH9+lt9qRv6lmpfA==}
- engines: {node: '>=12.17'}
- dev: true
+ typical@7.3.0: {}
- /uc.micro/1.0.6:
- resolution: {integrity: sha512-8Y75pvTYkLJW2hWQHXxoqRgV7qb9B+9vFEtidML+7koHUFapnVJAZ6cKs+Qjz5Aw3aZWHMC6u0wJE3At+nSGwA==}
- dev: false
+ uc.micro@2.1.0: {}
- /uc.micro/2.0.0:
- resolution: {integrity: sha512-DffL94LsNOccVn4hyfRe5rdKa273swqeA5DJpMOeFmEn1wCDc7nAbbB0gXlgBCL7TNzeTv6G7XVWzan7iJtfig==}
- dev: false
+ ufo@1.5.4: {}
- /uglify-js/3.17.4:
- resolution: {integrity: sha512-T9q82TJI9e/C1TAxYvfb16xO120tMVFZrGA3f9/P4424DNu6ypK103y0GPFVa17yotwSyZW5iYXgjYHkGrJW/g==}
- engines: {node: '>=0.8.0'}
- hasBin: true
- dev: false
+ uglify-js@3.19.3: {}
- /uhyphen/0.2.0:
- resolution: {integrity: sha512-qz3o9CHXmJJPGBdqzab7qAYuW8kQGKNEuoHFYrBwV6hWIMcpAmxDLXojcHfFr9US1Pe6zUswEIJIbLI610fuqA==}
- dev: false
+ uhyphen@0.2.0: {}
- /unbox-primitive/1.0.2:
- resolution: {integrity: sha512-61pPlCD9h51VoreyJ0BReideM3MDKMKnh6+V9L08331ipq6Q8OFXZYiqP6n/tbHx4s5I9uRhcye6BrbkizkBDw==}
+ unbox-primitive@1.0.2:
dependencies:
call-bind: 1.0.7
has-bigints: 1.0.2
has-symbols: 1.0.3
which-boxed-primitive: 1.0.2
- /unbzip2-stream/1.4.3:
- resolution: {integrity: sha512-mlExGW4w71ebDJviH16lQLtZS32VKqsSfk80GCfUlwT/4/hNRFsoscrF/c++9xinkMzECL1uL9DDwXqFWkruPg==}
+ unbzip2-stream@1.4.3:
dependencies:
buffer: 5.7.1
through: 2.3.8
- dev: false
- /unc-path-regex/0.1.2:
- resolution: {integrity: sha512-eXL4nmJT7oCpkZsHZUOJo8hcX3GbsiDOa0Qu9F646fi8dT3XuSVopVqAcEiVzSKKH7UoDti23wNX3qGFxcW5Qg==}
- engines: {node: '>=0.10.0'}
- dev: true
+ unc-path-regex@0.1.2: {}
- /undefsafe/2.0.5:
- resolution: {integrity: sha512-WxONCrssBM8TSPRqN5EmsjVrsv4A8X12J4ArBiiayv3DyyG3ZlIg6yysuuSYdZsVz3TKcTg2fd//Ujd4CHV1iA==}
- dev: true
+ undefsafe@2.0.5: {}
- /underscore/1.12.1:
- resolution: {integrity: sha512-hEQt0+ZLDVUMhebKxL4x1BTtDY7bavVofhZ9KZ4aI26X9SRaE+Y3m83XUL1UP2jn8ynjndwCCpEHdUG+9pP1Tw==}
- dev: false
+ underscore@1.12.1: {}
- /underscore/1.13.6:
- resolution: {integrity: sha512-+A5Sja4HP1M08MaXya7p5LvjuM7K6q/2EaC0+iovj/wOcMsTzMvDFbasi/oSapiwOlt252IqsKqPjCl7huKS0A==}
- dev: false
+ underscore@1.13.7: {}
- /undici-types/5.26.5:
- resolution: {integrity: sha512-JlCMO+ehdEIKqlFxk6IfVoAUVmgz7cU7zD/h9XZ0qzeosSHmUJVOzSQvvYSYWXkFXC+IfLKSIffhv0sVZup6pA==}
+ undici-types@5.26.5: {}
- /undici-types/6.19.8:
- resolution: {integrity: sha512-ve2KP6f/JnbPBFyobGHuerC9g1FYGn/F8n1LWTwNxCEzd6IfqTwUQcNXgEtmmQ6DlRrC1hrSrBnCZPokRrDHjw==}
+ undici-types@6.19.8: {}
- /undici/5.28.4:
- resolution: {integrity: sha512-72RFADWFqKmUb2hmmvNODKL3p9hcB6Gt2DOQMis1SEBaV6a4MH8soBvzg+95CYhCKPFedut2JY9bMfrDl9D23g==}
- engines: {node: '>=14.0'}
+ undici@5.28.4:
dependencies:
'@fastify/busboy': 2.1.1
- dev: false
- /unfetch/4.2.0:
- resolution: {integrity: sha512-F9p7yYCn6cIW9El1zi0HI6vqpeIvBsr3dSuRO6Xuppb1u5rXpCPmMvLSyECLhybr9isec8Ohl0hPekMVrEinDA==}
- dev: false
+ unfetch@4.2.0: {}
- /unicode-canonical-property-names-ecmascript/2.0.0:
- resolution: {integrity: sha512-yY5PpDlfVIU5+y/BSCxAJRBIS1Zc2dDG3Ujq+sR0U+JjUevW2JhocOF+soROYDSaAezOzOKuyyixhD6mBknSmQ==}
- engines: {node: '>=4'}
- dev: false
+ unicode-canonical-property-names-ecmascript@2.0.1: {}
- /unicode-match-property-ecmascript/2.0.0:
- resolution: {integrity: sha512-5kaZCrbp5mmbz5ulBkDkbY0SsPOjKqVS35VpL9ulMPfSl0J0Xsm+9Evphv9CoIZFwre7aJoa94AY6seMKGVN5Q==}
- engines: {node: '>=4'}
+ unicode-match-property-ecmascript@2.0.0:
dependencies:
- unicode-canonical-property-names-ecmascript: 2.0.0
+ unicode-canonical-property-names-ecmascript: 2.0.1
unicode-property-aliases-ecmascript: 2.1.0
- dev: false
- /unicode-match-property-value-ecmascript/2.1.0:
- resolution: {integrity: sha512-qxkjQt6qjg/mYscYMC0XKRn3Rh0wFPlfxB0xkt9CfyTvpX1Ra0+rAmdX2QyAobptSEvuy4RtpPRui6XkV+8wjA==}
- engines: {node: '>=4'}
- dev: false
-
- /unicode-property-aliases-ecmascript/2.1.0:
- resolution: {integrity: sha512-6t3foTQI9qne+OZoVQB/8x8rk2k1eVy1gRXhV3oFQ5T6R1dqQ1xtin3XqSlx3+ATBkliTaR/hHyJBm+LVPNM8w==}
- engines: {node: '>=4'}
- dev: false
+ unicode-match-property-value-ecmascript@2.2.0: {}
- /unified-lint-rule/2.1.2:
- resolution: {integrity: sha512-JWudPtRN7TLFHVLEVZ+Rm8FUb6kCAtHxEXFgBGDxRSdNMnGyTU5zyYvduHSF/liExlFB3vdFvsAHnNVE/UjAwA==}
- dependencies:
- '@types/unist': 2.0.8
- trough: 2.1.0
- unified: 10.1.2
- vfile: 5.3.7
- dev: true
+ unicode-property-aliases-ecmascript@2.1.0: {}
- /unified-message-control/4.0.0:
- resolution: {integrity: sha512-1b92N+VkPHftOsvXNOtkJm4wHlr+UDmTBF2dUzepn40oy9NxanJ9xS1RwUBTjXJwqr2K0kMbEyv1Krdsho7+Iw==}
- dependencies:
- '@types/unist': 2.0.8
- unist-util-is: 5.2.1
- unist-util-visit: 3.1.0
- vfile: 5.3.7
- vfile-location: 4.1.0
- vfile-message: 3.1.4
- dev: true
+ unicorn-magic@0.1.0: {}
- /unified/10.1.2:
- resolution: {integrity: sha512-pUSWAi/RAnVy1Pif2kAoeWNBa3JVrx0MId2LASj8G+7AiHWoKZNTomq6LG326T68U7/e263X6fTdcXIy7XnF7Q==}
+ unified-lint-rule@3.0.0:
dependencies:
- '@types/unist': 2.0.10
- bail: 2.0.2
- extend: 3.0.2
- is-buffer: 2.0.5
- is-plain-obj: 4.1.0
+ '@types/unist': 3.0.3
trough: 2.2.0
- vfile: 5.3.7
- dev: true
+ unified: 11.0.5
+ vfile: 6.0.3
- /unified/11.0.3:
- resolution: {integrity: sha512-jlCV402P+YDcFcB2VcN/n8JasOddqIiaxv118wNBoZXEhOn+lYG7BR4Bfg2BwxvlK58dwbuH2w7GX2esAjL6Mg==}
+ unified-message-control@5.0.0:
dependencies:
- '@types/unist': 3.0.0
- bail: 2.0.2
+ '@types/unist': 3.0.3
devlop: 1.1.0
- extend: 3.0.2
- is-plain-obj: 4.1.0
- trough: 2.1.0
- vfile: 6.0.1
- dev: true
+ space-separated-tokens: 2.0.2
+ unist-util-is: 6.0.0
+ unist-util-visit: 5.0.0
+ vfile: 6.0.3
+ vfile-location: 5.0.3
+ vfile-message: 4.0.2
- /unified/11.0.5:
- resolution: {integrity: sha512-xKvGhPWw3k84Qjh8bI3ZeJjqnyadK+GEFtazSfZv/rKeTkTjOJho6mFqh2SM96iIcZokxiOpg78GazTSg8+KHA==}
+ unified@11.0.5:
dependencies:
- '@types/unist': 3.0.2
+ '@types/unist': 3.0.3
bail: 2.0.2
devlop: 1.1.0
extend: 3.0.2
is-plain-obj: 4.1.0
trough: 2.2.0
- vfile: 6.0.2
- dev: true
+ vfile: 6.0.3
- /unified/9.2.2:
- resolution: {integrity: sha512-Sg7j110mtefBD+qunSLO1lqOEKdrwBFBrR6Qd8f4uwkhWNlbkaqwHse6e7QvD3AP/MNoJdEDLaf8OxYyoWgorQ==}
+ unified@9.2.2:
dependencies:
- '@types/unist': 2.0.8
+ '@types/unist': 2.0.11
bail: 1.0.5
extend: 3.0.2
is-buffer: 2.0.5
is-plain-obj: 2.1.0
trough: 1.0.5
vfile: 4.2.1
- dev: false
- /uniq/1.0.1:
- resolution: {integrity: sha512-Gw+zz50YNKPDKXs+9d+aKAjVwpjNwqzvNpLigIruT4HA9lMZNdMqs9x07kKHB/L9WRzqp4+DlTU5s4wG2esdoA==}
- dev: false
+ uniq@1.0.1: {}
- /unique-string/1.0.0:
- resolution: {integrity: sha512-ODgiYu03y5g76A1I9Gt0/chLCzQjvzDy7DsZGsLOE/1MrF6wriEskSncj1+/C58Xk/kPZDppSctDybCwOSaGAg==}
- engines: {node: '>=4'}
+ unique-string@1.0.0:
dependencies:
crypto-random-string: 1.0.0
- dev: false
- /unique-string/2.0.0:
- resolution: {integrity: sha512-uNaeirEPvpZWSgzwsPGtU2zVSTrn/8L5q/IexZmH0eH6SA73CmAA5U4GwORTxQAZs95TAXLNqeLoPPNO5gZfWg==}
- engines: {node: '>=8'}
+ unique-string@2.0.0:
dependencies:
crypto-random-string: 2.0.0
- dev: false
optional: true
- /unist-util-generated/2.0.1:
- resolution: {integrity: sha512-qF72kLmPxAw0oN2fwpWIqbXAVyEqUzDHMsbtPvOudIlUzXYFIeQIuxXQCRCFh22B7cixvU0MG7m3MW8FTq/S+A==}
- dev: true
+ unist-util-is@4.1.0: {}
- /unist-util-is/4.1.0:
- resolution: {integrity: sha512-ZOQSsnce92GrxSqlnEEseX0gi7GH9zTJZ0p9dtu87WRb/37mMPO2Ilx1s/t9vBHrFhbgweUwb+t7cIn5dxPhZg==}
- dev: false
-
- /unist-util-is/5.2.1:
- resolution: {integrity: sha512-u9njyyfEh43npf1M+yGKDGVPbY/JWEemg5nH05ncKPfi+kBbKBJoTdsogMu33uhytuLlv9y0O7GH7fEdwLdLQw==}
- dependencies:
- '@types/unist': 2.0.10
- dev: true
-
- /unist-util-is/6.0.0:
- resolution: {integrity: sha512-2qCTHimwdxLfz+YzdGfkqNlH0tLi9xjTnHddPmJwtIG9MGsdbutfTc4P+haPD7l7Cjxf/WZj+we5qfVPvvxfYw==}
- dependencies:
- '@types/unist': 3.0.2
- dev: true
-
- /unist-util-position/4.0.4:
- resolution: {integrity: sha512-kUBE91efOWfIVBo8xzh/uZQ7p9ffYRtUbMRZBNFYwf0RK8koUMx6dGUfwylLOKmaT2cs4wSW96QoYUSXAyEtpg==}
+ unist-util-is@6.0.0:
dependencies:
- '@types/unist': 2.0.10
- dev: true
+ '@types/unist': 3.0.3
- /unist-util-stringify-position/2.0.3:
- resolution: {integrity: sha512-3faScn5I+hy9VleOq/qNbAd6pAx7iH5jYBMS9I1HgQVijz/4mv5Bvw5iw1sC/90CODiKo81G/ps8AJrISn687g==}
+ unist-util-position@5.0.0:
dependencies:
- '@types/unist': 2.0.8
- dev: false
+ '@types/unist': 3.0.3
- /unist-util-stringify-position/3.0.3:
- resolution: {integrity: sha512-k5GzIBZ/QatR8N5X2y+drfpWG8IDBzdnVj6OInRNWm1oXrzydiaAT2OQiA8DPRRZyAKb9b6I2a6PxYklZD0gKg==}
+ unist-util-stringify-position@2.0.3:
dependencies:
- '@types/unist': 2.0.10
- dev: true
+ '@types/unist': 2.0.11
- /unist-util-stringify-position/4.0.0:
- resolution: {integrity: sha512-0ASV06AAoKCDkS2+xw5RXJywruurpbC4JZSm7nr7MOt1ojAzvyyaO+UxZf18j8FCF6kmzCZKcAgN/yu2gm2XgQ==}
+ unist-util-stringify-position@4.0.0:
dependencies:
- '@types/unist': 3.0.2
- dev: true
+ '@types/unist': 3.0.3
- /unist-util-visit-parents/3.1.1:
- resolution: {integrity: sha512-1KROIZWo6bcMrZEwiH2UrXDyalAa0uqzWCxCJj6lPOvTve2WkfgCytoDTPaMnodXh1WrXOq0haVYHj99ynJlsg==}
+ unist-util-visit-parents@3.1.1:
dependencies:
- '@types/unist': 2.0.8
+ '@types/unist': 2.0.11
unist-util-is: 4.1.0
- dev: false
-
- /unist-util-visit-parents/4.1.1:
- resolution: {integrity: sha512-1xAFJXAKpnnJl8G7K5KgU7FY55y3GcLIXqkzUj5QF/QVP7biUm0K0O2oqVkYsdjzJKifYeWn9+o6piAK2hGSHw==}
- dependencies:
- '@types/unist': 2.0.10
- unist-util-is: 5.2.1
- dev: true
- /unist-util-visit-parents/5.1.3:
- resolution: {integrity: sha512-x6+y8g7wWMyQhL1iZfhIPhDAs7Xwbn9nRosDXl7qoPTSCy0yNxnKc+hWokFifWQIDGi154rdUqKvbCa4+1kLhg==}
+ unist-util-visit-parents@6.0.1:
dependencies:
- '@types/unist': 2.0.10
- unist-util-is: 5.2.1
- dev: true
-
- /unist-util-visit-parents/6.0.1:
- resolution: {integrity: sha512-L/PqWzfTP9lzzEa6CKs0k2nARxTdZduw3zyh8d2NVBnsyvHjSX4TWse388YrrQKbvI8w20fGjGlhgT96WwKykw==}
- dependencies:
- '@types/unist': 3.0.2
+ '@types/unist': 3.0.3
unist-util-is: 6.0.0
- dev: true
-
- /unist-util-visit/3.1.0:
- resolution: {integrity: sha512-Szoh+R/Ll68QWAyQyZZpQzZQm2UPbxibDvaY8Xc9SUtYgPsDzx5AWSk++UUt2hJuow8mvwR+rG+LQLw+KsuAKA==}
- dependencies:
- '@types/unist': 2.0.10
- unist-util-is: 5.2.1
- unist-util-visit-parents: 4.1.1
- dev: true
-
- /unist-util-visit/4.1.2:
- resolution: {integrity: sha512-MSd8OUGISqHdVvfY9TPhyK2VdUrPgxkUtWSuMHF6XAAFuL4LokseigBnZtPnJMu+FbynTkFNnFlyjxpVKujMRg==}
- dependencies:
- '@types/unist': 2.0.10
- unist-util-is: 5.2.1
- unist-util-visit-parents: 5.1.3
- dev: true
- /unist-util-visit/5.0.0:
- resolution: {integrity: sha512-MR04uvD+07cwl/yhVuVWAtw+3GOR/knlL55Nd/wAdblk27GCVt3lqpTivy/tkJcZoNPzTwS1Y+KMojlLDhoTzg==}
+ unist-util-visit@5.0.0:
dependencies:
- '@types/unist': 3.0.2
+ '@types/unist': 3.0.3
unist-util-is: 6.0.0
unist-util-visit-parents: 6.0.1
- dev: true
- /universal-url/2.0.0:
- resolution: {integrity: sha512-3DLtXdm/G1LQMCnPj+Aw7uDoleQttNHp2g5FnNQKR6cP6taNWS1b/Ehjjx4PVyvejKi3TJyu8iBraKM4q3JQPg==}
- engines: {node: '>= 6'}
+ universal-url@2.0.0:
dependencies:
hasurl: 1.0.0
whatwg-url: 7.1.0
- dev: false
- /universal-user-agent/6.0.0:
- resolution: {integrity: sha512-isyNax3wXoKaulPDZWHQqbmIx1k2tb9fb3GGDBRxCscfYV2Ch7WxPArBsFEG8s/safwXTT7H4QGhaIkTp9447w==}
+ universal-user-agent@6.0.1: {}
- /universalify/0.1.2:
- resolution: {integrity: sha512-rBJeI5CXAlmy1pV+617WB9J63U6XcazHHF2f2dbJix4XzpUF0RS3Zbj0FGIOCAva5P/d/GBOYaACQ1w+0azUkg==}
- engines: {node: '>= 4.0.0'}
+ universalify@0.1.2: {}
- /universalify/2.0.0:
- resolution: {integrity: sha512-hAZsKq7Yy11Zu1DE0OzWjw7nnLZmJZYTDZZyEFHZdUhV8FkH5MCfoU1XMaxXovpyW5nq5scPqq0ZDP9Zyl04oQ==}
- engines: {node: '>= 10.0.0'}
- dev: true
+ universalify@2.0.1: {}
- /unixify/1.0.0:
- resolution: {integrity: sha512-6bc58dPYhCMHHuwxldQxO3RRNZ4eCogZ/st++0+fcC1nr0jiGUtAdBJ2qzmLQWSxbtz42pWt4QQMiZ9HvZf5cg==}
- engines: {node: '>=0.10.0'}
+ unixify@1.0.0:
dependencies:
normalize-path: 2.1.1
- dev: false
- /unpipe/1.0.0:
- resolution: {integrity: sha512-pjy2bYhSsufwWlKwPc+l3cN7+wuJlK6uz0YdJEOlQDbl6jo/YlPi4mb8agUkVC8BF7V8NuzeyPNqRksA3hztKQ==}
- engines: {node: '>= 0.8'}
- dev: false
+ unpipe@1.0.0: {}
- /unzip-response/2.0.1:
- resolution: {integrity: sha512-N0XH6lqDtFH84JxptQoZYmloF4nzrQqqrAymNj+/gW60AO2AZgOcf4O/nUXJcYfyQkqvMo9lSupBZmmgvuVXlw==}
- engines: {node: '>=4'}
- dev: false
+ unzip-response@2.0.1: {}
- /update-browserslist-db/1.1.0_browserslist@4.23.3:
- resolution: {integrity: sha512-EdRAaAyk2cUE1wOf2DkEhzxqOQvFOoRJFNS6NeyJ01Gp2beMRpBAINjM2iDXE3KCuKhwnvHIQCJm6ThL2Z+HzQ==}
- hasBin: true
- peerDependencies:
- browserslist: '>= 4.21.0'
+ update-browserslist-db@1.1.1(browserslist@4.24.2):
dependencies:
- browserslist: 4.23.3
- escalade: 3.1.2
- picocolors: 1.0.1
+ browserslist: 4.24.2
+ escalade: 3.2.0
+ picocolors: 1.1.1
- /uri-js/4.4.1:
- resolution: {integrity: sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==}
+ uri-js@4.4.1:
dependencies:
punycode: 2.3.1
- /uri-parser/1.0.1:
- resolution: {integrity: sha512-TRjjM2M83RD9jIIYttNj7ghUQTKSov+WXZbQIMM8DxY1R1QdJEGWNKKMYCxyeOw1p9re2nQ85usM6dPTVtox1g==}
- dev: false
-
- /uri-template-lite/23.4.0:
- resolution: {integrity: sha512-JsAjquFMpSyZRWAUQguhHIRuh4jb/xDhwQyb1/7C42YLJgkc5WoBF3UkRRM1QtL6Vr9xBa9fB7q3xPzXRwvuUA==}
- dev: false
+ uri-parser@1.0.1: {}
- /url-exist/3.0.1:
- resolution: {integrity: sha512-37KEE2gj60C4hTh2mGkFeqODO2KVG9TOJWpE3sOLEeLGt/p50VxemPiJ30v4m1dcw/wDEGUpYcmBV2e8jM5/FA==}
- engines: {node: '>=14.8'}
+ url-exist@3.0.1(web-streams-polyfill@3.3.3):
dependencies:
is-url-superb: 6.1.0
ky: 0.27.0
- ky-universal: 0.10.1_ky@0.27.0
+ ky-universal: 0.10.1(ky@0.27.0)(web-streams-polyfill@3.3.3)
transitivePeerDependencies:
- web-streams-polyfill
- dev: false
- /url-join/0.0.1:
- resolution: {integrity: sha512-H6dnQ/yPAAVzMQRvEvyz01hhfQL5qRWSEt7BX8t9DqnPw9BjMb64fjIRq76Uvf1hkHp+mTZvEVJ5guXOT0Xqaw==}
- dev: false
+ url-join@0.0.1: {}
- /url-join/4.0.1:
- resolution: {integrity: sha512-jk1+QP6ZJqyOiuEI9AEWQfju/nB2Pw466kbA0LEZljHwKeMgd9WrAEgEGxjPDD2+TNbbb37rTyhEfrCXfuKXnA==}
- dev: false
+ url-join@4.0.1: {}
- /url-parse-lax/1.0.0:
- resolution: {integrity: sha512-BVA4lR5PIviy2PMseNd2jbFQ+jwSwQGdJejf5ctd1rEXt0Ypd7yanUK9+lYechVlN5VaTJGsu2U/3MDDu6KgBA==}
- engines: {node: '>=0.10.0'}
+ url-parse-lax@1.0.0:
dependencies:
prepend-http: 1.0.4
- dev: false
- /url-parse/1.5.10:
- resolution: {integrity: sha512-WypcfiRhfeUP9vvF0j6rw0J3hrWrw6iZv3+22h6iRMJ/8z1Tj6XfLP4DsUix5MhMPnXpiHDoKyoZ/bdCkwBCiQ==}
+ url-parse@1.5.10:
dependencies:
querystringify: 2.2.0
requires-port: 1.0.0
- dev: false
- /url-pattern/1.0.3:
- resolution: {integrity: sha512-uQcEj/2puA4aq1R3A2+VNVBgaWYR24FdWjl7VNW83rnWftlhyzOZ/tBjezRiC2UkIzuxC8Top3IekN3vUf1WxA==}
- engines: {node: '>=0.12.0'}
- dev: false
+ url-pattern@1.0.3: {}
- /url-template/2.0.8:
- resolution: {integrity: sha512-XdVKMF4SJ0nP/O7XIPB0JwAEuT9lDIYnNsK8yGVe43y0AWoKeJNdv3ZNWh7ksJ6KqQFjOO6ox/VEitLnaVNufw==}
- dev: false
+ url-template@2.0.8: {}
- /url/0.11.3:
- resolution: {integrity: sha512-6hxOLGfZASQK/cijlZnZJTq8OXAkt/3YGfQX45vvMYXpZoo8NdWZcY73K108Jf759lS1Bv/8wXnHDTSz17dSRw==}
+ url@0.11.4:
dependencies:
punycode: 1.4.1
- qs: 6.11.2
- dev: false
+ qs: 6.13.1
- /urlpattern-polyfill/10.0.0:
- resolution: {integrity: sha512-H/A06tKD7sS1O1X2SshBVeA5FLycRpjqiBeqGKmBwBDBy28EnRjORxTNe269KSSr5un5qyWi1iL61wLxpd+ZOg==}
- dev: false
+ urlpattern-polyfill@10.0.0: {}
- /utf7/1.0.2:
- resolution: {integrity: sha512-qQrPtYLLLl12NF4DrM9CvfkxkYI97xOb5dsnGZHE3teFr0tWiEZ9UdgMPczv24vl708cYMpe6mGXGHrotIp3Bw==}
+ use-isomorphic-layout-effect@1.1.2(@types/react@18.3.12)(react@18.3.1):
+ dependencies:
+ react: 18.3.1
+ optionalDependencies:
+ '@types/react': 18.3.12
+
+ use-isomorphic-layout-effect@1.1.2(@types/react@18.3.12)(react@19.0.0-rc-66855b96-20241106):
+ dependencies:
+ react: 19.0.0-rc-66855b96-20241106
+ optionalDependencies:
+ '@types/react': 18.3.12
+
+ utf7@1.0.2:
dependencies:
semver: 5.3.0
- dev: false
- /utf8/2.1.2:
- resolution: {integrity: sha512-QXo+O/QkLP/x1nyi54uQiG0XrODxdysuQvE5dtVqv7F5K2Qb6FsN+qbr6KhF5wQ20tfcV3VQp0/2x1e1MRSPWg==}
- dev: false
+ utf8@2.1.2: {}
- /util-deprecate/1.0.2:
- resolution: {integrity: sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==}
+ util-deprecate@1.0.2: {}
- /util/0.10.4:
- resolution: {integrity: sha512-0Pm9hTQ3se5ll1XihRic3FDIku70C+iHUdT/W926rSgHV5QgXsYbKZN8MSC3tJtSkhuROzvsQjAaFENRXr+19A==}
+ util@0.10.4:
dependencies:
inherits: 2.0.3
- dev: false
- /util/0.12.5:
- resolution: {integrity: sha512-kZf/K6hEIrWHI6XqOFUiiMa+79wE/D8Q+NCNAWclkyg3b4d2k7s0QGepNjiABc+aR3N1PAyHL7p6UcLY6LmrnA==}
+ util@0.12.5:
dependencies:
inherits: 2.0.4
is-arguments: 1.1.1
is-generator-function: 1.0.10
- is-typed-array: 1.1.12
- which-typed-array: 1.1.11
+ is-typed-array: 1.1.13
+ which-typed-array: 1.1.15
- /uue/3.1.2:
- resolution: {integrity: sha512-axKLXVqwtdI/czrjG0X8hyV1KLgeWx8F4KvSbvVCnS+RUvsQMGRjx0kfuZDXXqj0LYvVJmx3B9kWlKtEdRrJLg==}
+ uue@3.1.2:
dependencies:
escape-string-regexp: 1.0.5
extend: 3.0.2
- dev: false
- /uuid/10.0.0:
- resolution: {integrity: sha512-8XkAphELsDnEGrDxUOHB3RGvXz6TeuYSGEZBOjtTtPm2lwhGBjLgOzLHB63IUWfBpNucQjND6d3AOudO+H3RWQ==}
- hasBin: true
- dev: false
+ uuid@10.0.0: {}
- /uuid/3.3.2:
- resolution: {integrity: sha512-yXJmeNaw3DnnKAOKJE51sL/ZaYfWJRl1pK9dr19YFCu0ObS231AB1/LbqTKRAQ5kw8A90rA6fr4riOUpTZvQZA==}
- deprecated: Please upgrade to version 7 or higher. Older versions may use Math.random() in certain circumstances, which is known to be problematic. See https://v8.dev/blog/math-random for details.
- hasBin: true
- dev: false
+ uuid@11.0.3: {}
- /uuid/3.4.0:
- resolution: {integrity: sha512-HjSDRw6gZE5JMggctHBcjVak08+KEVhSIiDzFnT9S9aegmp85S/bReBVTb4QTFaRNptJ9kuYaNhnbNEOkbKb/A==}
- deprecated: Please upgrade to version 7 or higher. Older versions may use Math.random() in certain circumstances, which is known to be problematic. See https://v8.dev/blog/math-random for details.
- hasBin: true
+ uuid@3.3.2: {}
- /uuid/8.3.2:
- resolution: {integrity: sha512-+NYs2QeMWy+GWFOEm9xnn6HCDp0l7QBD7ml8zLUmJ+93Q5NF0NocErnwkTkXVFNiX3/fpC6afS8Dhb/gz7R7eg==}
- hasBin: true
- dev: false
+ uuid@3.4.0: {}
- /uuid/9.0.0:
- resolution: {integrity: sha512-MXcSTerfPa4uqyzStbRoTgt5XIe3x5+42+q1sDuy3R5MDk66URdLMOZe5aPX/SQd+kuYAh0FdP/pO28IkQyTeg==}
- hasBin: true
- dev: false
+ uuid@8.3.2: {}
- /uuid/9.0.1:
- resolution: {integrity: sha512-b+1eJOlsR9K8HJpow9Ok3fiWOWSIcIzXodvv0rQjVoOVNpWMpxf1wZNpt4y9h10odCNrqnYp1OBzRktckBe3sA==}
- hasBin: true
- dev: false
+ uuid@9.0.1: {}
- /uuidv4/6.2.13:
- resolution: {integrity: sha512-AXyzMjazYB3ovL3q051VLH06Ixj//Knx7QnUSi1T//Ie3io6CpsPu9nVMOx5MoLWh6xV0B9J0hIaxungxXUbPQ==}
+ uuidv4@6.2.13:
dependencies:
'@types/uuid': 8.3.4
uuid: 8.3.2
- dev: false
-
- /uvu/0.5.6:
- resolution: {integrity: sha512-+g8ENReyr8YsOc6fv/NVJs2vFdHBnBNdfE49rshrTzDWOlUx4Gq7KOS2GD8eqhy2j+Ejq29+SbKH8yjkAqXqoA==}
- engines: {node: '>=8'}
- hasBin: true
- dependencies:
- dequal: 2.0.3
- diff: 5.2.0
- kleur: 4.1.5
- sade: 1.8.1
- dev: true
-
- /v8-compile-cache/2.4.0:
- resolution: {integrity: sha512-ocyWc3bAHBB/guyqJQVI5o4BZkPhznPYUG2ea80Gond/BgNWpap8TOmLSeeQG7bnh2KMISxskdADG59j7zruhw==}
- dev: true
- /v8-to-istanbul/9.3.0:
- resolution: {integrity: sha512-kiGUalWN+rgBJ/1OHZsBtU4rXZOfj/7rKQxULKlIzwzQSvMJUUNgPwJEEh7gU6xEVxC0ahoOBvN2YI8GH6FNgA==}
- engines: {node: '>=10.12.0'}
+ v8-to-istanbul@9.3.0:
dependencies:
'@jridgewell/trace-mapping': 0.3.25
'@types/istanbul-lib-coverage': 2.0.6
convert-source-map: 2.0.0
- dev: true
- /valid-data-url/4.0.1:
- resolution: {integrity: sha512-t0oA6VCnlQ/MPKP/Ie9ZD3biEpB2JTxK1Hx4KC72RbhubL9HsXznoBn228UQTazL7cPvsY36bhzt3fk424TjyA==}
- engines: {node: '>=10'}
- dev: false
+ valid-data-url@4.0.1: {}
- /validate-npm-package-license/3.0.4:
- resolution: {integrity: sha512-DpKm2Ui/xN7/HQKCtpZxoRWBhZ9Z0kqtygG8XCgNQ8ZlDnxuQmWhj566j8fN4Cu3/JmbhsDo7fcAJq4s9h27Ew==}
+ validate-npm-package-license@3.0.4:
dependencies:
spdx-correct: 3.2.0
spdx-expression-parse: 3.0.1
- dev: true
- /validate-npm-package-name/3.0.0:
- resolution: {integrity: sha512-M6w37eVCMMouJ9V/sdPGnC5H4uDr73/+xdq0FBLO3TFFX1+7wiUY6Es328NN+y43tmY+doUdN9g9J21vqB7iLw==}
+ validate-npm-package-name@3.0.0:
dependencies:
builtins: 1.0.3
- dev: true
- /validate.io-array/1.0.6:
- resolution: {integrity: sha512-DeOy7CnPEziggrOO5CZhVKJw6S3Yi7e9e65R1Nl/RTN1vTQKnzjfvks0/8kQ40FP/dsjRAOd4hxmJ7uLa6vxkg==}
- dev: false
+ validate.io-array@1.0.6: {}
- /validate.io-function/1.0.2:
- resolution: {integrity: sha512-LlFybRJEriSuBnUhQyG5bwglhh50EpTL2ul23MPIuR1odjO7XaMLFV8vHGwp7AZciFxtYOeiSCT5st+XSPONiQ==}
- dev: false
+ validate.io-function@1.0.2: {}
- /validate.io-integer-array/1.0.0:
- resolution: {integrity: sha512-mTrMk/1ytQHtCY0oNO3dztafHYyGU88KL+jRxWuzfOmQb+4qqnWmI+gykvGp8usKZOM0H7keJHEbRaFiYA0VrA==}
+ validate.io-integer-array@1.0.0:
dependencies:
validate.io-array: 1.0.6
validate.io-integer: 1.0.5
- dev: false
- /validate.io-integer/1.0.5:
- resolution: {integrity: sha512-22izsYSLojN/P6bppBqhgUDjCkr5RY2jd+N2a3DCAUey8ydvrZ/OkGvFPR7qfOpwR2LC5p4Ngzxz36g5Vgr/hQ==}
+ validate.io-integer@1.0.5:
dependencies:
validate.io-number: 1.0.3
- dev: false
- /validate.io-number/1.0.3:
- resolution: {integrity: sha512-kRAyotcbNaSYoDnXvb4MHg/0a1egJdLwS6oJ38TJY7aw9n93Fl/3blIXdyYvPOp55CNxywooG/3BcrwNrBpcSg==}
- dev: false
+ validate.io-number@1.0.3: {}
- /validate.js/0.13.1:
- resolution: {integrity: sha512-PnFM3xiZ+kYmLyTiMgTYmU7ZHkjBZz2/+F0DaALc/uUtVzdCt1wAosvYJ5hFQi/hz8O4zb52FQhHZRC+uVkJ+g==}
- dev: false
+ validate.js@0.13.1: {}
- /validate/4.5.1:
- resolution: {integrity: sha512-ZdfYYgJDVrx4oxamyW0ynIoW8jIAoAeb8/pSu9XF+WCZueGogUMU7cGYHVUiWAJDc7RO3QR/EBhhkP46Wn9Hng==}
- engines: {node: '>=7.6'}
+ validate@4.5.1:
dependencies:
component-type: 1.2.1
eivindfjeldstad-dot: 0.0.1
typecast: 0.0.1
- dev: false
- /verifalia/3.2.2:
- resolution: {integrity: sha512-HqQcMK36oW2P0bHtMapRNz88z5EzrKhiSAmWw89g5zhkKnornANJPsxzQ+B98GsbXH2US2tjUxT+CW4rvX/dRg==}
- engines: {node: '>= 0.8.0'}
+ verifalia@3.2.2:
dependencies:
abort-controller: 3.0.0
- form-data: 3.0.1
+ form-data: 3.0.2
node-fetch: 2.7.0
- tslib: 2.6.2
+ tslib: 2.8.1
transitivePeerDependencies:
- encoding
- dev: false
- /verror/1.10.0:
- resolution: {integrity: sha512-ZZKSmDAEFOijERBLkmYfJ+vmk3w+7hOLYDNkRCuRuMJGEmqYNCNLyBBFwWKVMhfwaEF3WOd0Zlw86U/WC/+nYw==}
- engines: {'0': node >=0.6.0}
+ verror@1.10.0:
dependencies:
assert-plus: 1.0.0
core-util-is: 1.0.2
extsprintf: 1.3.0
- /vfile-location/4.1.0:
- resolution: {integrity: sha512-YF23YMyASIIJXpktBa4vIGLJ5Gs88UB/XePgqPmTa7cDA+JeO3yclbpheQYCHjVHBn/yePzrXuygIL+xbvRYHw==}
+ vfile-location@5.0.3:
dependencies:
- '@types/unist': 2.0.8
- vfile: 5.3.7
- dev: true
+ '@types/unist': 3.0.3
+ vfile: 6.0.3
- /vfile-message/2.0.4:
- resolution: {integrity: sha512-DjssxRGkMvifUOJre00juHoP9DPWuzjxKuMDrhNbk2TdaYYBNMStsNhEOt3idrtI12VQYM/1+iM0KOzXi4pxwQ==}
+ vfile-message@2.0.4:
dependencies:
- '@types/unist': 2.0.8
+ '@types/unist': 2.0.11
unist-util-stringify-position: 2.0.3
- dev: false
- /vfile-message/3.1.4:
- resolution: {integrity: sha512-fa0Z6P8HUrQN4BZaX05SIVXic+7kE3b05PWAtPuYP9QLHsLKYR7/AlLW3NtOrpXRLeawpDLMsVkmk5DG0NXgWw==}
+ vfile-message@4.0.2:
dependencies:
- '@types/unist': 2.0.10
- unist-util-stringify-position: 3.0.3
- dev: true
-
- /vfile-message/4.0.2:
- resolution: {integrity: sha512-jRDZ1IMLttGj41KcZvlrYAaI3CfqpLpfpf+Mfig13viT6NKvRzWZ+lXz0Y5D60w6uJIBAOGq9mSHf0gktF0duw==}
- dependencies:
- '@types/unist': 3.0.2
+ '@types/unist': 3.0.3
unist-util-stringify-position: 4.0.0
- dev: true
- /vfile/4.2.1:
- resolution: {integrity: sha512-O6AE4OskCG5S1emQ/4gl8zK586RqA3srz3nfK/Viy0UPToBc5Trp9BVFb1u0CjsKrAWwnpr4ifM/KBXPWwJbCA==}
+ vfile@4.2.1:
dependencies:
- '@types/unist': 2.0.8
+ '@types/unist': 2.0.11
is-buffer: 2.0.5
unist-util-stringify-position: 2.0.3
vfile-message: 2.0.4
- dev: false
- /vfile/5.3.7:
- resolution: {integrity: sha512-r7qlzkgErKjobAmyNIkkSpizsFPYiUPuJb5pNW1RB4JcYVZhs4lIbVqk8XPk033CV/1z8ss5pkax8SuhGpcG8g==}
+ vfile@6.0.3:
dependencies:
- '@types/unist': 2.0.10
- is-buffer: 2.0.5
- unist-util-stringify-position: 3.0.3
- vfile-message: 3.1.4
- dev: true
-
- /vfile/6.0.1:
- resolution: {integrity: sha512-1bYqc7pt6NIADBJ98UiG0Bn/CHIVOoZ/IyEkqIruLg0mE1BKzkOXY2D6CSqQIcKqgadppE5lrxgWXJmXd7zZJw==}
- dependencies:
- '@types/unist': 3.0.0
- unist-util-stringify-position: 4.0.0
- vfile-message: 4.0.2
- dev: true
-
- /vfile/6.0.2:
- resolution: {integrity: sha512-zND7NlS8rJYb/sPqkb13ZvbbUoExdbi4w3SfRrMq6R3FvnLQmmfpajJNITuuYm6AZ5uao9vy4BAos3EXBPf2rg==}
- dependencies:
- '@types/unist': 3.0.2
- unist-util-stringify-position: 4.0.0
+ '@types/unist': 3.0.3
vfile-message: 4.0.2
- dev: true
- /viesapi-client/1.2.5:
- resolution: {integrity: sha512-ZnGNEIHUBVY6xyVefPoiQnwCKlRG5MpZeTL8FusfSj1ivTe2C9qI8ARW+s3OFiuERYy5xxeuMelfRcUV+foFmg==}
+ viesapi-client@1.2.7:
dependencies:
- axios: 0.27.2
- date-fns: 2.30.0
- url: 0.11.3
+ axios: 1.6.0
+ date-fns: 4.1.0
+ url: 0.11.4
xmldom: 0.6.0
- xpath: 0.0.32
+ xpath: 0.0.34
transitivePeerDependencies:
- debug
- dev: false
- /vm2/3.9.19:
- resolution: {integrity: sha512-J637XF0DHDMV57R6JyVsTak7nIL8gy5KH4r1HiwWLf/4GBbb5MKL5y7LpmF4A8E2nR6XmzpmMFQ7V7ppPTmUQg==}
- engines: {node: '>=6.0'}
- deprecated: The library contains critical security issues and should not be used for production! The maintenance of the project has been discontinued. Consider migrating your code to isolated-vm.
- hasBin: true
+ vite-plugin-dts@4.3.0(@types/node@20.17.6)(rollup@4.27.3)(typescript@5.7.2)(vite@5.4.11(@types/node@20.17.6)):
+ dependencies:
+ '@microsoft/api-extractor': 7.47.12(@types/node@20.17.6)
+ '@rollup/pluginutils': 5.1.3(rollup@4.27.3)
+ '@volar/typescript': 2.4.10
+ '@vue/language-core': 2.1.6(typescript@5.7.2)
+ compare-versions: 6.1.1
+ debug: 4.3.7(supports-color@9.4.0)
+ kolorist: 1.8.0
+ local-pkg: 0.5.1
+ magic-string: 0.30.13
+ typescript: 5.7.2
+ optionalDependencies:
+ vite: 5.4.11(@types/node@20.17.6)
+ transitivePeerDependencies:
+ - '@types/node'
+ - rollup
+ - supports-color
+
+ vite@5.4.11(@types/node@20.17.6):
dependencies:
- acorn: 8.12.1
- acorn-walk: 8.2.0
- dev: false
+ esbuild: 0.21.5
+ postcss: 8.4.49
+ rollup: 4.27.3
+ optionalDependencies:
+ '@types/node': 20.17.6
+ fsevents: 2.3.3
- /vue/2.7.14:
- resolution: {integrity: sha512-b2qkFyOM0kwqWFuQmgd4o+uHGU7T+2z3T+WQp8UBjADfEv2n4FEMffzBmCKNP0IGzOEEfYjvtcC62xaSKeQDrQ==}
+ vm2@3.9.19:
dependencies:
- '@vue/compiler-sfc': 2.7.14
- csstype: 3.1.2
- dev: false
+ acorn: 8.14.0
+ acorn-walk: 8.3.4
- /walker/1.0.8:
- resolution: {integrity: sha512-ts/8E8l5b7kY0vlWLewOkDXMmPdLcVV4GmOQLyxuSswIJsweeFZtAsMF7k1Nszz+TYBQrlYRmzOnr398y1JemQ==}
+ vscode-uri@3.0.8: {}
+
+ vue@2.7.16:
+ dependencies:
+ '@vue/compiler-sfc': 2.7.16
+ csstype: 3.1.3
+
+ walker@1.0.8:
dependencies:
makeerror: 1.0.12
- dev: true
- /wcwidth/1.0.1:
- resolution: {integrity: sha512-XHPEwS0q6TaxcvG85+8EYkbiCux2XtWG2mkc47Ng2A77BQu9+DqIOJldST4HgPkuea7dvKSj5VgX3P1d4rW8Tg==}
+ wcwidth@1.0.1:
dependencies:
defaults: 1.0.4
- dev: false
- /weak-map/1.0.8:
- resolution: {integrity: sha512-lNR9aAefbGPpHO7AEnY0hCFjz1eTkWCXYvkTRrTHs9qv8zJp+SkVYpzfLIFXQQiG3tVvbNFQgVg2bQS8YGgxyw==}
- dev: false
+ weak-map@1.0.8: {}
- /web-streams-polyfill/3.2.1:
- resolution: {integrity: sha512-e0MO3wdXWKrLbL0DgGnUV7WHVuw9OUvL4hjgnPkIeEvESk74gAITi5G606JtZPp39cd8HA9VQzCIvA49LpPN5Q==}
- engines: {node: '>= 8'}
- dev: false
+ web-streams-polyfill@3.3.3: {}
- /webflow-api/1.3.1:
- resolution: {integrity: sha512-ij/Y7t7VqeS2doOhHaCSToKkZeItFwkgCS003mqbG6d51eUmihcJ2ri4SOiR3zTxmUYZO+sg1sF+aAqsY7tgiA==}
+ webflow-api@1.3.1:
dependencies:
- axios: 1.6.5
+ axios: 1.7.7(debug@3.2.7)
transitivePeerDependencies:
- debug
- dev: false
- /webidl-conversions/3.0.1:
- resolution: {integrity: sha512-2JAn3z8AR6rjK8Sm8orRC0h/bcl/DqL7tRPdGZ4I1CjdF+EaMLmYxBHyXuKL849eucPFhvBoxMsflfOb8kxaeQ==}
+ webidl-conversions@3.0.1: {}
- /webidl-conversions/4.0.2:
- resolution: {integrity: sha512-YQ+BmxuTgd6UXZW3+ICGfyqRyHXVlD5GtQr5+qjiNW7bF0cqrzX500HVXPBOvgXb5YnzDd+h0zqyv61KUD7+Sg==}
- dev: false
+ webidl-conversions@4.0.2: {}
- /webidl-conversions/7.0.0:
- resolution: {integrity: sha512-VwddBukDzu71offAQR975unBIGqfKZpM+8ZX6ySk8nYhVoo5CYaZyzt3YBvYtRtO+aoGlqxPg/B87NGVZ/fu6g==}
- engines: {node: '>=12'}
- dev: false
+ webidl-conversions@7.0.0: {}
- /webpack-merge/5.9.0:
- resolution: {integrity: sha512-6NbRQw4+Sy50vYNTw7EyOn41OZItPiXB8GNv3INSoe3PSFaHJEz3SHTrYVaRm2LilNGnFUzh0FAwqPEmU/CwDg==}
- engines: {node: '>=10.0.0'}
+ webpack-merge@5.10.0:
dependencies:
clone-deep: 4.0.1
+ flat: 5.0.2
wildcard: 2.0.1
- dev: false
- /websocket-driver/0.7.4:
- resolution: {integrity: sha512-b17KeDIQVjvb0ssuSDF2cYXSg2iztliJ4B9WdsuB6J952qCPKmnVq4DyW5motImXHDC1cBT/1UezrJVsKw5zjg==}
- engines: {node: '>=0.8.0'}
+ websocket-driver@0.7.4:
dependencies:
http-parser-js: 0.5.8
safe-buffer: 5.2.1
websocket-extensions: 0.1.4
- dev: false
- /websocket-extensions/0.1.4:
- resolution: {integrity: sha512-OqedPIGOfsDlo31UNwYbCFMSaO9m9G/0faIHj5/dZFDMFqPTcx6UwqyOy3COEaEOg/9VsGIpdqn62W5KhoKSpg==}
- engines: {node: '>=0.8.0'}
- dev: false
+ websocket-extensions@0.1.4: {}
- /whatwg-fetch/3.6.19:
- resolution: {integrity: sha512-d67JP4dHSbm2TrpFj8AbO8DnL1JXL5J9u0Kq2xW6d0TFDbCA3Muhdt8orXC22utleTVj7Prqt82baN6RBvnEgw==}
- dev: false
+ whatwg-fetch@3.6.20: {}
- /whatwg-url/11.0.0:
- resolution: {integrity: sha512-RKT8HExMpoYx4igMiVMY83lN6UeITKJlBQ+vR/8ZJ8OCdSiN3RwCq+9gH0+Xzj0+5IrM6i4j/6LuvzbZIQgEcQ==}
- engines: {node: '>=12'}
+ whatwg-url@11.0.0:
dependencies:
tr46: 3.0.0
webidl-conversions: 7.0.0
- dev: false
- /whatwg-url/5.0.0:
- resolution: {integrity: sha512-saE57nupxk6v3HY35+jzBwYa0rKSy0XR8JSxZPwgLr7ys0IBzhGviA1/TUGJLmSVqs8pb9AnvICXEuOHLprYTw==}
+ whatwg-url@5.0.0:
dependencies:
tr46: 0.0.3
webidl-conversions: 3.0.1
- /whatwg-url/7.1.0:
- resolution: {integrity: sha512-WUu7Rg1DroM7oQvGWfOiAK21n74Gg+T4elXEQYkOhtyLeWiJFoOGLXPKI/9gzIie9CtwVLm8wtw6YJdKyxSjeg==}
+ whatwg-url@7.1.0:
dependencies:
lodash.sortby: 4.7.0
tr46: 1.0.1
webidl-conversions: 4.0.2
- dev: false
- /which-boxed-primitive/1.0.2:
- resolution: {integrity: sha512-bwZdv0AKLpplFY2KZRX6TvyuN7ojjr7lwkg6ml0roIy9YeuSr7JS372qlNW18UQYzgYK9ziGcerWqZOmEn9VNg==}
+ which-boxed-primitive@1.0.2:
dependencies:
is-bigint: 1.0.4
is-boolean-object: 1.1.2
@@ -37172,9 +39996,7 @@ packages:
is-string: 1.0.7
is-symbol: 1.0.4
- /which-builtin-type/1.1.4:
- resolution: {integrity: sha512-bppkmBSsHFmIMSl8BO9TbsyzsvGjVoppt8xUiGzwiu/bhDCGxnpOKCxgqj6GuyHE0mINMDecBFPlOm2hzY084w==}
- engines: {node: '>= 0.4'}
+ which-builtin-type@1.1.4:
dependencies:
function.prototype.name: 1.1.6
has-tostringtag: 1.0.2
@@ -37188,34 +40010,17 @@ packages:
which-boxed-primitive: 1.0.2
which-collection: 1.0.2
which-typed-array: 1.1.15
- dev: true
- /which-collection/1.0.2:
- resolution: {integrity: sha512-K4jVyjnBdgvc86Y6BkaLZEN933SwYOuBFkdmBu9ZfkcAbdVbpITnDmjvZ/aQjRXQrv5EPkTnD1s39GiiqbngCw==}
- engines: {node: '>= 0.4'}
+ which-collection@1.0.2:
dependencies:
is-map: 2.0.3
is-set: 2.0.3
is-weakmap: 2.0.2
is-weakset: 2.0.3
- dev: true
-
- /which-module/2.0.1:
- resolution: {integrity: sha512-iBdZ57RDvnOR9AGBhML2vFZf7h8vmBjhoaZqODJBFWHVtKkDmKuHai3cx5PgVMrX5YDNp27AofYbAwctSS+vhQ==}
- /which-typed-array/1.1.11:
- resolution: {integrity: sha512-qe9UWWpkeG5yzZ0tNYxDmd7vo58HDBc39mZ0xWWpolAGADdFOzkfamWLDxkOWcvHQKVmdTyQdLD4NOfjLWTKew==}
- engines: {node: '>= 0.4'}
- dependencies:
- available-typed-arrays: 1.0.5
- call-bind: 1.0.7
- for-each: 0.3.3
- gopd: 1.0.1
- has-tostringtag: 1.0.0
+ which-module@2.0.1: {}
- /which-typed-array/1.1.15:
- resolution: {integrity: sha512-oV0jmFtUky6CXfkqehVvBP/LSWJ2sy4vWMioiENyJLePrBO/yKyV9OyJySfAKosh+RYkIl5zJCNZ8/4JncrpdA==}
- engines: {node: '>= 0.4'}
+ which-typed-array@1.1.15:
dependencies:
available-typed-arrays: 1.0.7
call-bind: 1.0.7
@@ -37223,360 +40028,192 @@ packages:
gopd: 1.0.1
has-tostringtag: 1.0.2
- /which/1.3.1:
- resolution: {integrity: sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==}
- hasBin: true
+ which@1.3.1:
dependencies:
isexe: 2.0.0
- dev: true
- /which/2.0.2:
- resolution: {integrity: sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==}
- engines: {node: '>= 8'}
- hasBin: true
+ which@2.0.2:
dependencies:
isexe: 2.0.0
- dev: true
- /which/4.0.0:
- resolution: {integrity: sha512-GlaYyEb07DPxYCKhKzplCWBJtvxZcZMrL+4UkrTSJHHPyZU4mYYTv3qaOe77H7EODLSSopAUFAc6W8U4yqvscg==}
- engines: {node: ^16.13.0 || >=18.0.0}
- hasBin: true
+ which@4.0.0:
dependencies:
isexe: 3.1.1
- dev: true
- /wide-align/1.1.5:
- resolution: {integrity: sha512-eDMORYaPNZ4sQIuuYPDHdQvf4gyCF9rEEV/yPxGfwPkRodwEgiMUUXTx/dex+Me0wxx53S+NgUHaP7y3MGlDmg==}
+ wide-align@1.1.5:
dependencies:
string-width: 4.2.3
- dev: true
optional: true
- /widest-line/3.1.0:
- resolution: {integrity: sha512-NsmoXalsWVDMGupxZ5R08ka9flZjjiLvHVAWYOKtiKM8ujtZWr9cRffak+uSE48+Ob8ObalXpwyeUiyDD6QFgg==}
- engines: {node: '>=8'}
+ widest-line@3.1.0:
dependencies:
string-width: 4.2.3
- dev: false
- /wildcard/2.0.1:
- resolution: {integrity: sha512-CC1bOL87PIWSBhDcTrdeLo6eGT7mCFtrg0uIJtqJUFyK+eJnzl8A1niH56uu7KMa5XFrtiV+AQuHO3n7DsHnLQ==}
- dev: false
+ wildcard@2.0.1: {}
- /winston-transport/4.5.0:
- resolution: {integrity: sha512-YpZzcUzBedhlTAfJg6vJDlyEai/IFMIVcaEZZyl3UXIl4gmqRpU7AE89AHLkbzLUsv0NVmw7ts+iztqKxxPW1Q==}
- engines: {node: '>= 6.4.0'}
+ winston-transport@4.9.0:
dependencies:
- logform: 2.5.1
+ logform: 2.7.0
readable-stream: 3.6.2
triple-beam: 1.4.1
- dev: false
- /winston/3.10.0:
- resolution: {integrity: sha512-nT6SIDaE9B7ZRO0u3UvdrimG0HkB7dSTAgInQnNR2SOPJ4bvq5q79+pXLftKmP52lJGW15+H5MCK0nM9D3KB/g==}
- engines: {node: '>= 12.0.0'}
+ winston@3.11.0:
dependencies:
- '@colors/colors': 1.5.0
+ '@colors/colors': 1.6.0
'@dabh/diagnostics': 2.0.3
- async: 3.2.4
+ async: 3.2.6
is-stream: 2.0.1
- logform: 2.5.1
+ logform: 2.7.0
one-time: 1.0.0
readable-stream: 3.6.2
- safe-stable-stringify: 2.4.3
+ safe-stable-stringify: 2.5.0
stack-trace: 0.0.10
triple-beam: 1.4.1
- winston-transport: 4.5.0
- dev: false
+ winston-transport: 4.9.0
- /winston/3.11.0:
- resolution: {integrity: sha512-L3yR6/MzZAOl0DsysUXHVjOwv8mKZ71TrA/41EIduGpOOV5LQVodqN+QdQ6BS6PJ/RdIshZhq84P/fStEZkk7g==}
- engines: {node: '>= 12.0.0'}
+ winston@3.17.0:
dependencies:
'@colors/colors': 1.6.0
'@dabh/diagnostics': 2.0.3
- async: 3.2.4
+ async: 3.2.6
is-stream: 2.0.1
- logform: 2.5.1
+ logform: 2.7.0
one-time: 1.0.0
readable-stream: 3.6.2
- safe-stable-stringify: 2.4.3
+ safe-stable-stringify: 2.5.0
stack-trace: 0.0.10
triple-beam: 1.4.1
- winston-transport: 4.5.0
- dev: false
+ winston-transport: 4.9.0
- /woodpecker-api/1.1.0:
- resolution: {integrity: sha512-OLKMUEb1Fla1wq5JWM5G/RS+apcpAwq8oJVMRPDpG/9p/u+dbChtNVbqOnyEU3om8+WArvjQrGtMuKzxUS2paA==}
+ woodpecker-api@1.1.0:
dependencies:
moment: 2.30.1
request: 2.88.2
- request-promise-any: 1.0.9_request@2.88.2
- dev: false
+ request-promise-any: 1.0.9(request@2.88.2)
- /word-wrap/1.2.5:
- resolution: {integrity: sha512-BN22B5eaMMI9UMtjrGd5g5eCYPpCPDUy0FJXbYsaT5zYxjFOckS53SQDE3pWkVoWpHXVb3BrYcEN4Twa55B5cA==}
- engines: {node: '>=0.10.0'}
- dev: false
+ word-wrap@1.2.5: {}
- /wordwrap/1.0.0:
- resolution: {integrity: sha512-gvVzJFlPycKc5dZN4yPkP8w7Dc37BtP1yczEneOb4uq34pXZcvrtRTmWV8W+Ume+XCxKgbjM+nevkyFPMybd4Q==}
- dev: false
+ wordwrap@1.0.0: {}
- /wordwrapjs/4.0.1:
- resolution: {integrity: sha512-kKlNACbvHrkpIw6oPeYDSmdCTu2hdMHoyXLTcUKala++lx5Y+wjJ/e474Jqv5abnVmwxw08DiTuHmw69lJGksA==}
- engines: {node: '>=8.0.0'}
+ wordwrapjs@4.0.1:
dependencies:
reduce-flatten: 2.0.0
typical: 5.2.0
- dev: true
- /wpapi/1.2.2:
- resolution: {integrity: sha512-lkgi8Gjav3SArrCkNpG61ZnmCyamXKB+SjaR8tAoHhSZbJRTeabIlsdqUUAN3JGbVY3ht8p+EGdpCFIaanI5+w==}
+ wpapi@1.2.2:
dependencies:
li: 1.3.0
parse-link-header: 1.0.1
- qs: 6.12.0
+ qs: 6.13.1
superagent: 4.1.0
transitivePeerDependencies:
- supports-color
- dev: false
- /wrap-ansi/6.2.0:
- resolution: {integrity: sha512-r6lPcBGxZXlIcymEu7InxDMhdW0KDxpLgoFLcguasxCaJ/SOIZwINatK9KY/tf+ZrlywOKU0UDj3ATXUBfxJXA==}
- engines: {node: '>=8'}
+ wrap-ansi@6.2.0:
dependencies:
ansi-styles: 4.3.0
string-width: 4.2.3
strip-ansi: 6.0.1
- /wrap-ansi/7.0.0:
- resolution: {integrity: sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==}
- engines: {node: '>=10'}
+ wrap-ansi@7.0.0:
dependencies:
ansi-styles: 4.3.0
string-width: 4.2.3
strip-ansi: 6.0.1
- /wrap-ansi/8.1.0:
- resolution: {integrity: sha512-si7QWI6zUMq56bESFvagtmzMdGOtoxfR+Sez11Mobfc7tm+VkUckk9bW2UeffTGVUbOksxmSw0AA2gs8g71NCQ==}
- engines: {node: '>=12'}
- dependencies:
- ansi-styles: 6.2.1
- string-width: 5.1.2
- strip-ansi: 7.1.0
- dev: true
-
- /wrappy/1.0.2:
- resolution: {integrity: sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==}
+ wrappy@1.0.2: {}
- /wraptile/3.0.0:
- resolution: {integrity: sha512-23LJhkIw940uTcDFyJZmNyO0z8lEINOTGCr4vR5YCG3urkdXwduRIhivBm9wKaVynLHYvxoHHYbKsDiafCLp6w==}
- dev: true
+ wraptile@3.0.0: {}
- /write-file-atomic/3.0.3:
- resolution: {integrity: sha512-AvHcyZ5JnSfq3ioSyjrBkH9yW4m7Ayk8/9My/DD9onKeu/94fwrMocemO2QAJFAlnnDN+ZDS+ZjAR5ua1/PV/Q==}
+ write-file-atomic@3.0.3:
dependencies:
imurmurhash: 0.1.4
is-typedarray: 1.0.0
signal-exit: 3.0.7
typedarray-to-buffer: 3.1.5
- dev: false
optional: true
- /write-file-atomic/4.0.2:
- resolution: {integrity: sha512-7KxauUdBmSdWnmpaGFg+ppNjKF8uNLry8LyzjauQDOVONfFLNKrKvQOxZ/VuTIcS/gge/YNahf5RIIQWTSarlg==}
- engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0}
+ write-file-atomic@4.0.2:
dependencies:
imurmurhash: 0.1.4
signal-exit: 3.0.7
- dev: true
- /write-file-atomic/5.0.1:
- resolution: {integrity: sha512-+QU2zd6OTD8XWIJCbffaiQeH9U73qIqafo1x6V1snCWYGJf6cVE0cDR4D8xRzcEnfI21IFrUPzPGtcPf8AC+Rw==}
- engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0}
+ write-file-atomic@5.0.1:
dependencies:
imurmurhash: 0.1.4
signal-exit: 4.1.0
- dev: true
- /ws/8.13.0:
- resolution: {integrity: sha512-x9vcZYTrFPC7aSIbj7sRCYo7L/Xb8Iy+pW0ng0wt2vCJv7M9HOMy0UoN3rr+IFC7hb7vXoqS+P9ktyLLLhO+LA==}
- engines: {node: '>=10.0.0'}
- peerDependencies:
- bufferutil: ^4.0.1
- utf-8-validate: '>=5.0.2'
- peerDependenciesMeta:
- bufferutil:
- optional: true
- utf-8-validate:
- optional: true
- dev: false
+ ws@8.13.0: {}
- /ws/8.16.0:
- resolution: {integrity: sha512-HS0c//TP7Ina87TfiPUz1rQzMhHrl/SG2guqRcTOIUYD2q8uhUdNHZYJUaQ8aTGPzCh+c6oawMKW35nFl1dxyQ==}
- engines: {node: '>=10.0.0'}
- peerDependencies:
- bufferutil: ^4.0.1
- utf-8-validate: '>=5.0.2'
- peerDependenciesMeta:
- bufferutil:
- optional: true
- utf-8-validate:
- optional: true
- dev: false
+ ws@8.16.0: {}
- /ws/8.18.0:
- resolution: {integrity: sha512-8VbfWfHLbbwu3+N6OKsOMpBdT4kXPDDB9cJk2bJ6mh9ucxdlnNvH1e+roYkKmN9Nxw2yjz7VzeO9oOz2zJ04Pw==}
- engines: {node: '>=10.0.0'}
- peerDependencies:
- bufferutil: ^4.0.1
- utf-8-validate: '>=5.0.2'
- peerDependenciesMeta:
- bufferutil:
- optional: true
- utf-8-validate:
- optional: true
- dev: false
+ ws@8.18.0: {}
- /ws/8.7.0:
- resolution: {integrity: sha512-c2gsP0PRwcLFzUiA8Mkr37/MI7ilIlHQxaEAtd0uNMbVMoy8puJyafRlm0bV9MbGSabUPeLrRRaqIBcFcA2Pqg==}
- engines: {node: '>=10.0.0'}
- peerDependencies:
- bufferutil: ^4.0.1
- utf-8-validate: ^5.0.2
- peerDependenciesMeta:
- bufferutil:
- optional: true
- utf-8-validate:
- optional: true
- dev: false
+ ws@8.7.0: {}
- /xdg-basedir/4.0.0:
- resolution: {integrity: sha512-PSNhEJDejZYV7h50BohL09Er9VaIefr2LMAf3OEmpCkjOi34eYyQYAXUTjEQtZJTKcF0E2UKTh+osDLsgNim9Q==}
- engines: {node: '>=8'}
- dev: false
+ xdg-basedir@4.0.0:
optional: true
- /xml-js/1.6.11:
- resolution: {integrity: sha512-7rVi2KMfwfWFl+GpPg6m80IVMWXLRjO+PxTq7V2CDhoGak0wzYzFgUY2m4XJ47OGdXd8eLE8EmwfAmdjw7lC1g==}
- hasBin: true
+ xml-js@1.6.11:
dependencies:
- sax: 1.3.0
- dev: false
+ sax: 1.4.1
- /xml2js/0.5.0:
- resolution: {integrity: sha512-drPFnkQJik/O+uPKpqSgr22mpuFHqKdbS835iAQrUC73L2F5WkboIRd63ai/2Yg6I1jzifPFKH2NTK+cfglkIA==}
- engines: {node: '>=4.0.0'}
+ xml2js@0.5.0:
dependencies:
- sax: 1.3.0
+ sax: 1.4.1
xmlbuilder: 11.0.1
- dev: false
- /xml2js/0.6.2:
- resolution: {integrity: sha512-T4rieHaC1EXcES0Kxxj4JWgaUQHDk+qwHcYOCFHfiwKz7tOVPLq7Hjq9dM1WCMhylqMEfP7hMcOIChvotiZegA==}
- engines: {node: '>=4.0.0'}
+ xml2js@0.6.2:
dependencies:
- sax: 1.3.0
+ sax: 1.4.1
xmlbuilder: 11.0.1
- dev: false
- /xml2json-light/1.0.6:
- resolution: {integrity: sha512-6CSibpteBS4B8/fzJaj6TDtWatIlonSFfVVK3TLM23mlTOxkMgVA4b2FaGeTIrrhOMdDZ8X1/dvo4mfBtsU4yw==}
- dev: false
+ xml2json-light@1.0.6: {}
- /xmlbuilder/11.0.1:
- resolution: {integrity: sha512-fDlsI/kFEx7gLvbecc0/ohLG50fugQp8ryHzMTuW9vSa1GJ0XYWKnhsUx7oie3G98+r56aTQIUB4kht42R3JvA==}
- engines: {node: '>=4.0'}
- dev: false
+ xmlbuilder@11.0.1: {}
- /xmlbuilder/13.0.2:
- resolution: {integrity: sha512-Eux0i2QdDYKbdbA6AM6xE4m6ZTZr4G4xF9kahI2ukSEMCzwce2eX9WlTI5J3s+NU7hpasFsr8hWIONae7LluAQ==}
- engines: {node: '>=6.0'}
- dev: false
+ xmlbuilder@13.0.2: {}
- /xmlbuilder/9.0.7:
- resolution: {integrity: sha512-7YXTQc3P2l9+0rjaUbLwMKRhtmwg1M1eDf6nag7urC7pIPYLD9W/jmzQ4ptRSUbodw5S0jfoGTflLemQibSpeQ==}
- engines: {node: '>=4.0'}
- dev: false
+ xmlbuilder@9.0.7: {}
- /xmlcreate/2.0.4:
- resolution: {integrity: sha512-nquOebG4sngPmGPICTS5EnxqhKbCmz5Ox5hsszI2T6U5qdrJizBc+0ilYSEjTSzU0yZcmvppztXe/5Al5fUwdg==}
- dev: false
+ xmlcreate@2.0.4: {}
- /xmldom/0.6.0:
- resolution: {integrity: sha512-iAcin401y58LckRZ0TkI4k0VSM1Qg0KGSc3i8rU+xrxe19A/BN1zHyVSJY7uoutVlaTSzYyk/v5AmkewAP7jtg==}
- engines: {node: '>=10.0.0'}
- dev: false
+ xmldom@0.6.0: {}
- /xpath/0.0.32:
- resolution: {integrity: sha512-rxMJhSIoiO8vXcWvSifKqhvV96GjiD5wYb8/QHdoRyQvraTpp4IEv944nhGausZZ3u7dhQXteZuZbaqfpB7uYw==}
- engines: {node: '>=0.6.0'}
- dev: false
+ xpath@0.0.34: {}
- /xregexp/2.0.0:
- resolution: {integrity: sha512-xl/50/Cf32VsGq/1R8jJE5ajH1yMCQkpmoS10QbFZWl2Oor4H0Me64Pu2yxvsRWK3m6soJbmGfzSR7BYmDcWAA==}
- dev: false
+ xregexp@2.0.0: {}
- /xss/1.0.14:
- resolution: {integrity: sha512-og7TEJhXvn1a7kzZGQ7ETjdQVS2UfZyTlsEdDOqvQF7GoxNfY+0YLCzBy1kPdsDDx4QuNAonQPddpsn6Xl/7sw==}
- engines: {node: '>= 0.10.0'}
- hasBin: true
+ xss@1.0.15:
dependencies:
commander: 2.20.3
cssfilter: 0.0.10
- dev: false
- /xtend/4.0.2:
- resolution: {integrity: sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ==}
- engines: {node: '>=0.4'}
- dev: false
-
- /y18n/4.0.3:
- resolution: {integrity: sha512-JKhqTOwSrqNA1NY5lSztJ1GrBiUodLMmIZuLiDaMRJ+itFd+ABVE8XBjOvIWL+rSqNDC74LCSFmlb/U4UZ4hJQ==}
+ xtend@4.0.2: {}
- /y18n/5.0.8:
- resolution: {integrity: sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA==}
- engines: {node: '>=10'}
+ y18n@4.0.3: {}
- /yallist/2.1.2:
- resolution: {integrity: sha512-ncTzHV7NvsQZkYe1DW7cbDLm0YpzHmZF5r/iyP3ZnQtMiJ+pjzisCiMNI+Sj+xQF5pXhSHxSB3uDbsBTzY/c2A==}
- dev: false
+ y18n@5.0.8: {}
- /yallist/3.1.1:
- resolution: {integrity: sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==}
+ yallist@3.1.1: {}
- /yallist/4.0.0:
- resolution: {integrity: sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==}
+ yallist@4.0.0: {}
- /yaml/1.10.2:
- resolution: {integrity: sha512-r3vXyErRCYJ7wg28yvBY5VSoAF8ZvlcW9/BwUzEtUsjvX/DKs24dIkuwjtuprwJJHsbyUbLApepYTR1BN4uHrg==}
- engines: {node: '>= 6'}
+ yaml@1.10.2: {}
- /yaml/2.3.2:
- resolution: {integrity: sha512-N/lyzTPaJasoDmfV7YTrYCI0G/3ivm/9wdG0aHuheKowWQwGTsK0Eoiw6utmzAnI6pkJa0DUVygvp3spqqEKXg==}
- engines: {node: '>= 14'}
- dev: true
+ yaml@2.6.1: {}
- /yargs-parser/18.1.3:
- resolution: {integrity: sha512-o50j0JeToy/4K6OZcaQmW6lyXXKhq7csREXcDwk2omFPJEwUNOVtJKvmDr9EI1fAJZUyZcRF7kxGBWmRXudrCQ==}
- engines: {node: '>=6'}
+ yargs-parser@18.1.3:
dependencies:
camelcase: 5.3.1
decamelize: 1.2.0
- /yargs-parser/20.2.9:
- resolution: {integrity: sha512-y11nGElTIV+CT3Zv9t7VKl+Q3hTQoT9a1Qzezhhl6Rp21gJ/IVTW7Z3y9EWXhuUBC2Shnf+DX0antecpAwSP8w==}
- engines: {node: '>=10'}
+ yargs-parser@20.2.9:
+ optional: true
- /yargs-parser/21.1.1:
- resolution: {integrity: sha512-tVpsJW7DdjecAiFpbIB1e3qxIQsE6NoPc5/eTdrbbIC4h0LVsWhnoa3g+m2HclBIujHzsxZ4VJVA+GUuc2/LBw==}
- engines: {node: '>=12'}
+ yargs-parser@21.1.1: {}
- /yargs/15.4.1:
- resolution: {integrity: sha512-aePbxDmcYW++PaqBsJ+HYUFwCdv4LVvdnhBy78E57PIor8/OVvhMrADFFEDh8DHDFRv/O9i3lPhsENjO7QX0+A==}
- engines: {node: '>=8'}
+ yargs@15.4.1:
dependencies:
cliui: 6.0.0
decamelize: 1.2.0
@@ -37590,86 +40227,62 @@ packages:
y18n: 4.0.3
yargs-parser: 18.1.3
- /yargs/16.2.0:
- resolution: {integrity: sha512-D1mvvtDG0L5ft/jGWkLpG1+m0eQxOfaBvTNELraWj22wSVUMWxZUvYgJYcKh6jGGIkJFhH4IZPQhR4TKpc8mBw==}
- engines: {node: '>=10'}
+ yargs@16.2.0:
dependencies:
cliui: 7.0.4
- escalade: 3.1.2
+ escalade: 3.2.0
get-caller-file: 2.0.5
require-directory: 2.1.1
string-width: 4.2.3
y18n: 5.0.8
yargs-parser: 20.2.9
- dev: false
optional: true
- /yargs/17.7.2:
- resolution: {integrity: sha512-7dSzzRQ++CKnNI/krKnYRV7JKKPUXMEh61soaHKg9mrWEhzFWhFnxPxGl+69cD1Ou63C13NUPCnmIcrvqCuM6w==}
- engines: {node: '>=12'}
+ yargs@17.7.1:
dependencies:
cliui: 8.0.1
- escalade: 3.1.2
+ escalade: 3.2.0
get-caller-file: 2.0.5
require-directory: 2.1.1
string-width: 4.2.3
y18n: 5.0.8
yargs-parser: 21.1.1
- /yarn/1.22.19:
- resolution: {integrity: sha512-/0V5q0WbslqnwP91tirOvldvYISzaqhClxzyUKXYxs07yUILIs5jx/k6CFe8bvKSkds5w+eiOqta39Wk3WxdcQ==}
- engines: {node: '>=4.0.0'}
- hasBin: true
- requiresBuild: true
- dev: false
+ yargs@17.7.2:
+ dependencies:
+ cliui: 8.0.1
+ escalade: 3.2.0
+ get-caller-file: 2.0.5
+ require-directory: 2.1.1
+ string-width: 4.2.3
+ y18n: 5.0.8
+ yargs-parser: 21.1.1
- /yauzl/2.10.0:
- resolution: {integrity: sha512-p4a9I6X6nu6IhoGmBqAcbJy1mlC4j27vEPZX9F4L4/vZT3Lyq1VkFHw/V/PUcB9Buo+DG3iHkT0x3Qya58zc3g==}
+ yarn@1.22.22: {}
+
+ yauzl@2.10.0:
dependencies:
buffer-crc32: 0.2.13
fd-slicer: 1.1.0
- dev: false
- /ynab/1.55.0:
- resolution: {integrity: sha512-i5MEPWpMILUiqQ9JXFBa//ljGEAtVziyx2C1s09THWoPu8b1R7k/NjDQRsM3YpYUDFTDyKRTmKOA+vxzkkK9dQ==}
- engines: {node: <=18}
+ ynab@1.55.0:
dependencies:
fetch-ponyfill: 7.1.0
transitivePeerDependencies:
- encoding
- dev: false
- /yocto-queue/0.1.0:
- resolution: {integrity: sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==}
- engines: {node: '>=10'}
+ yocto-queue@0.1.0: {}
- /yocto-queue/1.1.1:
- resolution: {integrity: sha512-b4JR1PFR10y1mKjhHY9LaGo6tmrgjit7hxVIeAmyMw3jegXR4dhYqLaQF5zMXZxY7tLpMyJeLjr1C4rLmkVe8g==}
- engines: {node: '>=12.20'}
- dev: true
+ yocto-queue@1.1.1: {}
- /zip-stream/3.0.1:
- resolution: {integrity: sha512-r+JdDipt93ttDjsOVPU5zaq5bAyY+3H19bDrThkvuVxC0xMQzU1PJcS6D+KrP3u96gH9XLomcHPb+2skoDjulQ==}
- engines: {node: '>= 8'}
+ zip-stream@3.0.1:
dependencies:
archiver-utils: 2.1.0
compress-commons: 3.0.0
readable-stream: 3.6.2
- dev: false
-
- /zlib/1.0.5:
- resolution: {integrity: sha512-40fpE2II+Cd3k8HWTWONfeKE2jL+P42iWJ1zzps5W51qcTsOUKM5Q5m2PFb0CLxlmFAaUuUdJGc3OfZy947v0w==}
- engines: {node: '>=0.2.0'}
- dev: false
- /zod/3.23.8:
- resolution: {integrity: sha512-XBx9AXhXktjUqnepgTiE5flcKIYWi/rme0Eaj+5Y0lftuGBq+jyRu/md4WnuxqgP1ubdpNCsYEYPxrzVHD8d6g==}
- dev: false
+ zlib@1.0.5: {}
- /zwitch/1.0.5:
- resolution: {integrity: sha512-V50KMwwzqJV0NpZIZFwfOD5/lyny3WlSzRiXgA0G7VUnRlqttta1L6UQIHzd6EuBY/cHGfwTIck7w1yH6Q5zUw==}
- dev: false
+ zwitch@1.0.5: {}
- /zwitch/2.0.4:
- resolution: {integrity: sha512-bXE4cR/kVZhKZX/RjPEflHaKVhUVl85noU3v6b8apfQEc1x4A+zBxjZ4lN8LqGd6WZ3dl98pY4o717VFmoPp+A==}
- dev: true
+ zwitch@2.0.4: {}
diff --git a/tsconfig.json b/tsconfig.json
index 939b68efc6dea..740ef0270296b 100644
--- a/tsconfig.json
+++ b/tsconfig.json
@@ -5,7 +5,8 @@
"composite": true,
"baseUrl": ".",
"rootDir": ".",
- "moduleResolution": "node"
+ "moduleResolution": "node",
+ "lib": ["es2020", "dom"]
},
"exclude": [
"components"
@@ -2761,4 +2762,4 @@
"path": "components/diffchecker"
}
]
-}
\ No newline at end of file
+}