diff --git a/packages/app-client/src/components/biz/PageList.tsx b/packages/app-client/src/components/biz/PageList.tsx index 3db4ce4..d5a1292 100644 --- a/packages/app-client/src/components/biz/PageList.tsx +++ b/packages/app-client/src/components/biz/PageList.tsx @@ -248,7 +248,7 @@ export default ( list={data} itemRender={(item, index) => (toolbar?.selectRow && ( - + ( (item, index) => (toolbar?.selectRow && ( ( setSelectAll("1"); data?.forEach((item) => { if ( - selectRows.some( - (item1) => item1[rowId] !== item[rowId], + !selectRows.some( + (item1) => item1[rowId] === item[rowId], ) ) { setSelectRows((prev) => { @@ -387,6 +389,7 @@ export default ( 默认值: (市场报价 - 税费补贴) ×{" "} - {dealerVO.accrualTaxRatio || "未设置"}% + {orderDealer.accrualTaxRatio || "未设置"}% diff --git a/packages/app-client/src/components/purchase/section/TaxSubsidySection.tsx b/packages/app-client/src/components/purchase/section/TaxSubsidySection.tsx index 7069f4d..916f5b0 100644 --- a/packages/app-client/src/components/purchase/section/TaxSubsidySection.tsx +++ b/packages/app-client/src/components/purchase/section/TaxSubsidySection.tsx @@ -5,30 +5,29 @@ import { validatePrice } from "@/utils/format"; import { PurchaseOrderCalculator } from "@/utils/PurchaseOrderCalculator"; export default function TaxSubsidySection(props: { - dealerVO: BusinessAPI.DealerVO; purchaseOrderVO: BusinessAPI.PurchaseOrderVO; onChange?: (purchaseOrderVO: BusinessAPI.PurchaseOrderVO) => void; readOnly?: boolean; }) { - const { purchaseOrderVO, onChange, readOnly, dealerVO } = props; + const { purchaseOrderVO, onChange, readOnly } = props; + const orderDealer = purchaseOrderVO.orderDealer; const calculator = new PurchaseOrderCalculator(purchaseOrderVO); const [visible, setVisible] = useState(false); const [taxSubsidy, setTaxSubsidy] = useState( - purchaseOrderVO.orderDealer?.taxSubsidy || 0, + orderDealer?.taxSubsidy || 0, ); - // 当dealerVO变化时,自动计算税费补贴 useEffect(() => { - if (!purchaseOrderVO.orderDealer?.taxSubsidy) { + if (!orderDealer?.taxSubsidy) { const defaultValue = calculator.getDefaultTaxSubsidy(); setTaxSubsidy(defaultValue); // 更新父组件的状态 onChange?.({ ...purchaseOrderVO, orderDealer: { - ...purchaseOrderVO.orderDealer, + ...orderDealer, taxSubsidy: defaultValue, }, }); @@ -46,7 +45,7 @@ export default function TaxSubsidySection(props: { onChange?.({ ...purchaseOrderVO, orderDealer: { - ...purchaseOrderVO.orderDealer, + ...orderDealer, taxSubsidy, }, }); @@ -95,8 +94,8 @@ export default function TaxSubsidySection(props: { 返点百分比 - {dealerVO.companyRebateRatio - ? dealerVO.companyRebateRatio + "%" + {orderDealer.companyRebateRatio + ? orderDealer.companyRebateRatio + "%" : "未设置"} @@ -148,7 +147,7 @@ export default function TaxSubsidySection(props: { 按公式填入默认值 - 默认值: 市场报价 × {dealerVO.companyRebateRatio || "未设置"}% + 默认值: 市场报价 × {orderDealer.companyRebateRatio || "未设置"}% diff --git a/packages/app-client/src/constant/app.ts b/packages/app-client/src/constant/app.ts index 1640095..8fefce2 100644 --- a/packages/app-client/src/constant/app.ts +++ b/packages/app-client/src/constant/app.ts @@ -1,2 +1,2 @@ // App 相关常量 -export const APP_VERSION = "v0.0.12"; +export const APP_VERSION = "v0.0.19"; diff --git a/packages/app-client/src/pages/main/center/index.tsx b/packages/app-client/src/pages/main/center/index.tsx index dbc9457..33e6ccc 100644 --- a/packages/app-client/src/pages/main/center/index.tsx +++ b/packages/app-client/src/pages/main/center/index.tsx @@ -170,7 +170,7 @@ export default hocAuth(function Page(props: CommonComponent) { ) : ( diff --git a/packages/app-client/src/pages/purchase/reviewer/audit.tsx b/packages/app-client/src/pages/purchase/reviewer/audit.tsx index 9ab3461..56e4000 100644 --- a/packages/app-client/src/pages/purchase/reviewer/audit.tsx +++ b/packages/app-client/src/pages/purchase/reviewer/audit.tsx @@ -5,7 +5,16 @@ import { business } from "@/services"; import { useEffect, useState } from "react"; import { View } from "@tarojs/components"; import purchaseOrder from "@/constant/purchaseOrder"; -import { ActionSheet, Button, Dialog, Input, Popup, SafeArea, TextArea, Toast } from "@nutui/nutui-react-taro"; +import { + ActionSheet, + Button, + Dialog, + Input, + Popup, + SafeArea, + TextArea, + Toast, +} from "@nutui/nutui-react-taro"; import { BasicInfoSection, CompanyInfoSection, @@ -22,7 +31,7 @@ import { State, TaxProvisionSection, TaxSubsidySection, - WorkerAdvanceSection + WorkerAdvanceSection, } from "@/components"; import buildUrl from "@/utils/buildUrl"; import { PurchaseOrderCalculator } from "@/utils/PurchaseOrderCalculator"; @@ -116,7 +125,7 @@ const sections = { }; export default hocAuth(function Page(props: CommonComponent) { - const { router, isInitialized, setIsInitialized, role } = props; + const { router, isInitialized, setIsInitialized, role, setLoading } = props; const orderId = router.params .orderId as BusinessAPI.PurchaseOrderVO["orderId"]; @@ -216,17 +225,20 @@ export default hocAuth(function Page(props: CommonComponent) { // 控制更多操作的ActionSheet显示状态 const [moreActionVisible, setMoreActionVisible] = useState(false); - const [dealerVO, setDealerVO] = useState(); + const [dealerRebateCustomerVOList, setDealerRebateCustomerVOList] = + useState(); const initDealer = async (dealerId: BusinessAPI.DealerVO["dealerId"]) => { - const { data } = await business.dealer.showDealer({ - dealerShowQry: { + const { + data: { data: dealerRebateCustomerVOList }, + } = await business.dealerRebateCustomer.listDealerRebateCustomer({ + dealerRebateCustomerListQry: { dealerId: dealerId, status: true, }, }); - setDealerVO(data.data); + setDealerRebateCustomerVOList(dealerRebateCustomerVOList); }; // 暂存操作 @@ -357,8 +369,10 @@ export default hocAuth(function Page(props: CommonComponent) { useEffect(() => { if (orderId && !isInitialized) { + setLoading(true); init(orderId).then(() => { setIsInitialized(true); + setLoading(false); }); } }, []); @@ -369,7 +383,7 @@ export default hocAuth(function Page(props: CommonComponent) { } }); - if (!purchaseOrderVO) { + if (!purchaseOrderVO || !dealerRebateCustomerVOList) { return; } @@ -436,16 +450,32 @@ export default hocAuth(function Page(props: CommonComponent) { {/* 循环渲染各部分内容 */} {Object.keys(sections).map((sectionKey) => { const section = sections[sectionKey]; + const orderDealer = purchaseOrderVO.orderDealer; - if (!dealerVO?.enableCompanyRebate && sectionKey === "taxSubsidy") { + if ( + !orderDealer?.enableCompanyRebate && + sectionKey === "taxSubsidy" + ) { return null; } - if (!dealerVO?.enableAccrualTax && sectionKey === "taxProvision") { + if ( + !orderDealer?.enableAccrualTax && + sectionKey === "taxProvision" + ) { return null; } - if (!dealerVO?.enableShare && sectionKey === "costDifference") { + if (!orderDealer?.enableShare && sectionKey === "costDifference") { + return null; + } + + // 如果没有返点人这个模块,则不渲染 + if ( + (!dealerRebateCustomerVOList || + dealerRebateCustomerVOList.length === 0) && + sectionKey === "rebateCalc" + ) { return null; } @@ -456,7 +486,6 @@ export default hocAuth(function Page(props: CommonComponent) { className={`overflow-x-auto rounded-md rounded-b-lg bg-white p-2.5 shadow-sm`} > (); + const [popupVisible, setPopupVisible] = useState(false); + const [selectedOrders, setSelectedOrders] = useState< + BusinessAPI.OrderSupplierVO[] + >([]); + const [contractFiles, setContractFiles] = useState([]); + const [invoiceFiles, setInvoiceFiles] = useState([]); + + // 发票照片 + const [invoiceImgList, setInvoiceImgList] = useState([]); + // 合同照片 + const [contractImgList, setContractImgList] = useState( + [], + ); + + // 发票照片变更处理函数 + const handleInvoiceImgChange = (files: UploaderFileItem[]) => { + setInvoiceImgList(files); + + // 如果有文件且上传成功,保存URL到supplierVO + if (files.length > 0 && files[0].url) { + setSupplierVO((prev) => ({ + ...prev!, + invoiceImg: [files[0].url!], + invoiceUpload: true, + })); + } else { + // 如果没有文件,清空URL + setSupplierVO((prev) => ({ + ...prev!, + invoiceImg: undefined, + invoiceUpload: false, + })); + } + }; + + // 合同照片变更处理函数 + const handleContractImgChange = (files: UploaderFileItem[]) => { + setContractImgList(files); + + // 保存所有文件URL到supplierVO + const urls = files.map((file) => file.url).filter((url) => url) as string[]; + setSupplierVO((prev) => ({ + ...prev!, + contractImg: urls, + contractUpload: urls.length > 0, + })); + }; const actionRef = useRef(); const toolbar: ToolBar = { selectRow: { onClick: async (orderSupplierVOList: BusinessAPI.OrderSupplierVO[]) => { console.log("orderSupplierVOList", orderSupplierVOList); + // 点击弹出popup + setSelectedOrders(orderSupplierVOList); + setPopupVisible(true); }, }, search: { @@ -43,6 +89,116 @@ export default hocAuth(function Page(props: CommonComponent) { }, render: () => ( <> + {/* Popup 弹窗 */} + setPopupVisible(false)} + onOverlayClick={() => setPopupVisible(false)} + lockScroll + round + > + + {/* 统计信息 */} + + + 已选{" "} + + {selectedOrders.length} + {" "} + 车次 + + + 总重量: + {totalWeight} 斤 + + + 总金额:{" "} + + {totalAmount.toFixed(2)} + + + + + {/* 上传发票 */} + + + } + uploadLabel={ + + 拍照上传发票 + + 仅支持单张照片 + + + } + maxCount={1} + //@ts-ignore + upload={uploadFile} + multiple + /> + + + + {/* 上传合同 */} + + + } + uploadLabel={ + + 拍照上传合同 + + 支持多张照片 + + + } + maxCount={9} + //@ts-ignore + upload={uploadFile} + multiple + /> + + + + + + + + {/* 提交按钮 */} + + + + + + + { @@ -87,79 +243,105 @@ export default hocAuth(function Page(props: CommonComponent) { return {}; }); + // 计算选中车次的总重量和总金额 + const calculateTotals = () => { + return selectedOrders.reduce( + (totals, order) => { + totals.totalWeight += order.netWeight || 0; + totals.totalAmount += order.invoiceAmount || 0; + return totals; + }, + { totalWeight: 0, totalAmount: 0 }, + ); + }; + + const { totalWeight, totalAmount } = calculateTotals(); + + // 提交申请 + const handleSubmit = async () => { + // 这里添加提交申请的逻辑 + Toast.show("提交申请成功", { duration: 1500 }); + setPopupVisible(false); + // 重置状态 + setContractFiles([]); + setInvoiceFiles([]); + }; + return ( - - rowId={"orderSupplierId"} - itemHeight={182} - type={"infinite"} - actionRef={actionRef} - render={(orderSupplierVO: BusinessAPI.OrderSupplierVO, index) => ( - - - - - - - {orderSupplierVO.name} ( - {orderSupplierVO.orderVehicle?.origin}- - {orderSupplierVO.orderVehicle?.destination}) + <> + + rowId={"orderSupplierId"} + itemHeight={182} + type={"infinite"} + actionRef={actionRef} + render={(orderSupplierVO: BusinessAPI.OrderSupplierVO, index) => ( + + + + + + + {orderSupplierVO.name} ( + {orderSupplierVO.orderVehicle?.origin}- + {orderSupplierVO.orderVehicle?.destination}) + + {/**/} + {/* 草稿*/} + {/**/} - {/**/} - {/* 草稿*/} - {/**/} - - - - {orderSupplierVO.orderVehicle?.vehicleNo - ? "第" + orderSupplierVO.orderVehicle?.vehicleNo + "车" - : "暂未生成车次"} + + + {orderSupplierVO.orderVehicle?.vehicleNo + ? "第" + orderSupplierVO.orderVehicle?.vehicleNo + "车" + : "暂未生成车次"} + + + {dayjs(orderSupplierVO.orderVehicle?.deliveryTime).format( + "MM-DD", + )} + + | + {orderSupplierVO.netWeight}斤 + | + ¥{orderSupplierVO.invoiceAmount} - - {dayjs(orderSupplierVO.orderVehicle?.deliveryTime).format( - "MM-DD", - )} + + {`${orderSupplierVO.productName} | 品种:`} - | - {orderSupplierVO.netWeight}斤 - | - ¥{orderSupplierVO.invoiceAmount} - - - {`${orderSupplierVO.productName} | 品种:`} - - )} - toolbar={toolbar} - request={async (params) => { - const { - data: { data, success, notEmpty }, - } = await business.orderSupplier.pageOrderSupplier({ - orderSupplierPageQry: { - ...params, - ...(supplierVO - ? { - supplierId: supplierVO.supplierId, - } - : {}), - }, - }); + )} + toolbar={toolbar} + request={async (params) => { + const { + data: { data, success, notEmpty }, + } = await business.orderSupplier.pageOrderSupplier({ + orderSupplierPageQry: { + ...params, + ...(supplierVO + ? { + supplierId: supplierVO.supplierId, + } + : {}), + }, + }); - return { - data, - success, - hasMore: notEmpty, - }; - }} - pagination={{ - pageSize: 10, - }} - /> + return { + data, + success, + hasMore: notEmpty, + }; + }} + pagination={{ + pageSize: 10, + }} + /> + ); }); diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 4c7fd2e..6ca4e8f 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -25,7 +25,7 @@ importers: version: 3.0.18(react-dom@18.3.1)(react@18.3.1) '@nutui/replace-icons': specifier: ^1.0.3 - version: 1.0.3(@types/node@18.19.70)(less@4.2.0)(stylus@0.55.0) + version: 1.0.3(@types/node@18.19.70)(less@4.4.2)(stylus@0.64.0) '@tarojs/binding-win32-x64-msvc': specifier: 4.1.7 version: 4.1.7 @@ -52,7 +52,7 @@ importers: version: 4.1.7(@tarojs/service@4.1.7)(@tarojs/shared@4.1.7) '@tarojs/plugin-platform-h5': specifier: 4.1.7 - version: 4.1.7(@tarojs/taro@4.1.7)(@types/react@18.3.11)(postcss@8.4.49)(react@18.3.1)(solid-js@1.9.5)(vue@3.5.22)(webpack@5.94.0) + version: 4.1.7(@tarojs/taro@4.1.7)(@types/react@18.3.11)(postcss@8.4.49)(react@18.3.1)(solid-js@1.9.10)(vue@3.5.22)(webpack@5.94.0) '@tarojs/plugin-platform-jd': specifier: 4.1.7 version: 4.1.7(@tarojs/service@4.1.7)(@tarojs/shared@4.1.7) @@ -170,7 +170,7 @@ importers: version: 4.1.7(webpack@5.94.0) '@tarojs/webpack5-runner': specifier: 4.1.7 - version: 4.1.7(@babel/core@7.25.2)(@swc/core@1.3.96)(@tarojs/runtime@4.1.7)(less@4.2.0)(postcss@8.4.49)(stylus@0.55.0)(typescript@5.1.6)(webpack@5.94.0) + version: 4.1.7(@babel/core@7.25.2)(@swc/core@1.3.96)(@tarojs/runtime@4.1.7)(less@4.4.2)(postcss@8.4.49)(stylus@0.64.0)(typescript@5.1.6)(webpack@5.94.0) '@types/jest': specifier: ^29.3.1 version: 29.5.14 @@ -295,6 +295,9 @@ packages: engines: {node: '>=0.10.0'} dev: true + /@adobe/css-tools@4.3.3: + resolution: {integrity: sha512-rE0Pygv0sEZ4vBWHlAgJLGDU7Pm8xoO6p3wsEceb7GYAjScrOHpEo8KK/eVkAcnSM+slAEtXjA2JpdjLp4fJQQ==} + /@alloc/quick-lru@5.2.0: resolution: {integrity: sha512-UrcABB+4bUrFABwbluTIBErXwvbsU/V7TZWfmbgJfbkwiBuziS9gxdODUyuiecfdGQ85jglMW6juS3+z5TsKLw==} engines: {node: '>=10'} @@ -307,6 +310,14 @@ packages: '@jridgewell/gen-mapping': 0.3.5 '@jridgewell/trace-mapping': 0.3.25 + /@ampproject/remapping@2.3.0: + resolution: {integrity: sha512-30iZtAPgz+LTIYoeivqYo853f02jBYSd5uGnGpkFV0M3xOt9aN73erkgYAmZU43x4VfqcnLxW9Kpg3R5LC4YYw==} + engines: {node: '>=6.0.0'} + dependencies: + '@jridgewell/gen-mapping': 0.3.13 + '@jridgewell/trace-mapping': 0.3.31 + dev: true + /@asamuzakjp/css-color@3.1.4: resolution: {integrity: sha512-SeuBV4rnjpFNjI8HSgKUwteuFdkHwkboq31HWzznuqgySQir+jSTczoWVVL4jvOjKjuH80fMDG0Fvg1Sb+OJsA==} dependencies: @@ -345,7 +356,7 @@ packages: resolution: {integrity: sha512-/KKIMG4UEL35WmI9OlvMhurwtytjvXoFcGNrOvyG9zIzA8YmPjVtIZUf7b05+TPO7G7/GEmLHDaoCgACHl9hhA==} engines: {node: '>=6.9.0'} dependencies: - '@babel/highlight': 7.24.7 + '@babel/highlight': 7.22.10 chalk: 2.4.2 dev: true @@ -379,16 +390,16 @@ packages: resolution: {integrity: sha512-qt/YV149Jman/6AfmlxJ04LMIu8bMoyl3RB91yTFrxQmgbrSvQMy7cI8Q62FHx1t8wJ8B5fu0UDoLwHAhUo1QA==} engines: {node: '>=6.9.0'} dependencies: - '@ampproject/remapping': 2.2.1 - '@babel/code-frame': 7.27.1 - '@babel/generator': 7.28.3 - '@babel/helper-compilation-targets': 7.25.9 - '@babel/helper-module-transforms': 7.26.0(@babel/core@7.21.4) - '@babel/helpers': 7.25.6 - '@babel/parser': 7.28.4 - '@babel/template': 7.27.2 - '@babel/traverse': 7.28.4 - '@babel/types': 7.28.4 + '@ampproject/remapping': 2.3.0 + '@babel/code-frame': 7.22.10 + '@babel/generator': 7.21.4 + '@babel/helper-compilation-targets': 7.22.10 + '@babel/helper-module-transforms': 7.22.9(@babel/core@7.21.4) + '@babel/helpers': 7.21.0 + '@babel/parser': 7.21.4 + '@babel/template': 7.20.7 + '@babel/traverse': 7.21.4 + '@babel/types': 7.24.6 convert-source-map: 1.9.0 debug: 4.4.3 gensync: 1.0.0-beta.2 @@ -452,7 +463,7 @@ packages: resolution: {integrity: sha512-NieM3pVIYW2SwGzKoqfPrQsf4xGs9M9AIG3ThppsSRmO+m7eQhmI6amajKMUeIO37wFfsvnvcxQFx6x6iqxDnA==} engines: {node: '>=6.9.0'} dependencies: - '@babel/types': 7.28.4 + '@babel/types': 7.24.6 '@jridgewell/gen-mapping': 0.3.13 '@jridgewell/trace-mapping': 0.3.31 jsesc: 2.5.2 @@ -479,11 +490,22 @@ packages: jsesc: 3.1.0 dev: true + /@babel/generator@7.28.5: + resolution: {integrity: sha512-3EwLFhZ38J4VyIP6WNtt2kUdW9dokXA9Cr4IVIFHuCpZ3H8/YFOl5JjZHisrn1fATPBmKKqXzDFvh9fUwHz6CQ==} + engines: {node: '>=6.9.0'} + dependencies: + '@babel/parser': 7.28.5 + '@babel/types': 7.28.5 + '@jridgewell/gen-mapping': 0.3.13 + '@jridgewell/trace-mapping': 0.3.31 + jsesc: 3.1.0 + dev: true + /@babel/helper-annotate-as-pure@7.22.5: resolution: {integrity: sha512-LvBTxu8bQSQkcyKOU+a1btnNFQ1dMAd0R6PyW3arXes06F6QLWLIrd681bxRPIXlrMGR3XYnW9JyML7dP3qgxg==} engines: {node: '>=6.9.0'} dependencies: - '@babel/types': 7.28.4 + '@babel/types': 7.24.6 dev: true /@babel/helper-annotate-as-pure@7.25.9: @@ -496,16 +518,16 @@ packages: resolution: {integrity: sha512-Av0qubwDQxC56DoUReVDeLfMEjYYSN1nZrTUrWkXd7hpU73ymRANkbuDm3yni9npkn+RXy9nNbEJZEzXr7xrfQ==} engines: {node: '>=6.9.0'} dependencies: - '@babel/types': 7.28.4 + '@babel/types': 7.24.6 dev: true /@babel/helper-compilation-targets@7.22.10: resolution: {integrity: sha512-JMSwHD4J7SLod0idLq5PKgI+6g/hLD/iuWBq08ZX49xE14VpVEojJ5rHWptpirV2j020MvypRLAXAO50igCJ5Q==} engines: {node: '>=6.9.0'} dependencies: - '@babel/compat-data': 7.26.3 - '@babel/helper-validator-option': 7.25.9 - browserslist: 4.26.3 + '@babel/compat-data': 7.22.9 + '@babel/helper-validator-option': 7.22.5 + browserslist: 4.28.0 lru-cache: 5.1.1 semver: 6.3.1 dev: true @@ -527,35 +549,15 @@ packages: '@babel/core': ^7.0.0 dependencies: '@babel/core': 7.21.4 - '@babel/helper-annotate-as-pure': 7.25.9 - '@babel/helper-environment-visitor': 7.22.20 - '@babel/helper-function-name': 7.23.0 - '@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.21.4) - '@babel/helper-skip-transparent-expression-wrappers': 7.25.9 + '@babel/helper-annotate-as-pure': 7.22.5 + '@babel/helper-environment-visitor': 7.22.5 + '@babel/helper-function-name': 7.22.5 + '@babel/helper-member-expression-to-functions': 7.22.5 + '@babel/helper-optimise-call-expression': 7.22.5 + '@babel/helper-replace-supers': 7.22.9(@babel/core@7.21.4) + '@babel/helper-skip-transparent-expression-wrappers': 7.24.6 '@babel/helper-split-export-declaration': 7.22.6 semver: 6.3.1 - transitivePeerDependencies: - - supports-color - dev: true - - /@babel/helper-create-class-features-plugin@7.25.9(@babel/core@7.21.4): - resolution: {integrity: sha512-UTZQMvt0d/rSz6KI+qdu7GQze5TIajwTS++GUozlw8VBJDEOAqSXwm1WvmYEZwqdqSGQshRocPDqrt4HBZB3fQ==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0 - dependencies: - '@babel/core': 7.21.4 - '@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.21.4) - '@babel/helper-skip-transparent-expression-wrappers': 7.25.9 - '@babel/traverse': 7.26.4 - semver: 6.3.1 - transitivePeerDependencies: - - supports-color dev: true /@babel/helper-create-class-features-plugin@7.25.9(@babel/core@7.25.2): @@ -582,23 +584,11 @@ packages: '@babel/core': ^7.0.0 dependencies: '@babel/core': 7.21.4 - '@babel/helper-annotate-as-pure': 7.25.9 + '@babel/helper-annotate-as-pure': 7.22.5 regexpu-core: 5.3.2 semver: 6.3.1 dev: true - /@babel/helper-create-regexp-features-plugin@7.26.3(@babel/core@7.21.4): - resolution: {integrity: sha512-G7ZRb40uUgdKOQqPLjfD12ZmGA54PzqDFUv2BKImnC9QIfGhIHKvVML0oN8IUiDq4iRqpq74ABpvOaerfWdong==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0 - dependencies: - '@babel/core': 7.21.4 - '@babel/helper-annotate-as-pure': 7.25.9 - regexpu-core: 6.2.0 - semver: 6.3.1 - dev: true - /@babel/helper-create-regexp-features-plugin@7.26.3(@babel/core@7.25.2): resolution: {integrity: sha512-G7ZRb40uUgdKOQqPLjfD12ZmGA54PzqDFUv2BKImnC9QIfGhIHKvVML0oN8IUiDq4iRqpq74ABpvOaerfWdong==} engines: {node: '>=6.9.0'} @@ -616,11 +606,11 @@ packages: '@babel/core': ^7.4.0-0 dependencies: '@babel/core': 7.21.4 - '@babel/helper-compilation-targets': 7.25.9 - '@babel/helper-plugin-utils': 7.25.9 + '@babel/helper-compilation-targets': 7.22.10 + '@babel/helper-plugin-utils': 7.24.6 debug: 4.4.3 lodash.debounce: 4.0.8 - resolve: 1.22.8 + resolve: 1.22.11 semver: 6.3.1 transitivePeerDependencies: - supports-color @@ -640,11 +630,6 @@ packages: transitivePeerDependencies: - supports-color - /@babel/helper-environment-visitor@7.22.20: - resolution: {integrity: sha512-zfedSIzFhat/gFhWfHtgWvlec0nqB9YEIVrpuwjruLlXfUSnA8cJB0miHKwqDnQ7d32aKo2xt88/xZptwxbfhA==} - engines: {node: '>=6.9.0'} - dev: true - /@babel/helper-environment-visitor@7.22.5: resolution: {integrity: sha512-XGmhECfVA/5sAt+H+xpSg0mfrHq6FzNr9Oxh7PSEBBRUb/mL7Kz3NICXb194rCqAEdxkhPT1a88teizAFyvk8Q==} engines: {node: '>=6.9.0'} @@ -655,15 +640,7 @@ packages: engines: {node: '>=6.9.0'} dependencies: '@babel/template': 7.27.2 - '@babel/types': 7.28.4 - dev: true - - /@babel/helper-function-name@7.23.0: - resolution: {integrity: sha512-OErEqsrxjZTJciZ4Oo+eoZqeW9UIiOcuYKRJA4ZAgV9myA+pOXhhmpfNCKjEH/auVfEYVFJ6y1Tc4r0eIApqiw==} - engines: {node: '>=6.9.0'} - dependencies: - '@babel/template': 7.27.2 - '@babel/types': 7.28.4 + '@babel/types': 7.24.6 dev: true /@babel/helper-globals@7.28.0: @@ -675,14 +652,14 @@ packages: resolution: {integrity: sha512-wGjk9QZVzvknA6yKIUURb8zY3grXCcOZt+/7Wcy8O2uctxhplmUPkOdlgoNhmdVee2c92JXbf1xpMtVNbfoxRw==} engines: {node: '>=6.9.0'} dependencies: - '@babel/types': 7.28.4 + '@babel/types': 7.24.6 dev: true /@babel/helper-member-expression-to-functions@7.22.5: resolution: {integrity: sha512-aBiH1NKMG0H2cGZqspNvsaBe6wNGjbJjuLy29aU+eDZjSbbN53BaxlpB02xm9v34pLTZ1nIQPFYn2qMZoa5BQQ==} engines: {node: '>=6.9.0'} dependencies: - '@babel/types': 7.28.4 + '@babel/types': 7.24.6 dev: true /@babel/helper-member-expression-to-functions@7.25.9: @@ -705,7 +682,7 @@ packages: resolution: {integrity: sha512-orajc5T2PsRYUN3ZryCEFeMDYwyw09c/pZeaQEZPH0MpKzSvn3e0uXsDBu3k03VI+9DBiRo+l22BfKTpKwa/Wg==} engines: {node: '>=6.9.0'} dependencies: - '@babel/types': 7.28.4 + '@babel/types': 7.24.6 dev: true /@babel/helper-module-imports@7.25.9: @@ -717,6 +694,16 @@ packages: transitivePeerDependencies: - supports-color + /@babel/helper-module-imports@7.27.1: + resolution: {integrity: sha512-0gSFWUPNXNopqtIPQvlD5WgXYI5GY2kP2cCvoT8kczjbfcfuIljTbcWrulD1CIPIX2gt1wghbDy08yE1p+/r3w==} + engines: {node: '>=6.9.0'} + dependencies: + '@babel/traverse': 7.28.5 + '@babel/types': 7.28.5 + transitivePeerDependencies: + - supports-color + dev: true + /@babel/helper-module-transforms@7.22.9(@babel/core@7.21.4): resolution: {integrity: sha512-t+WA2Xn5K+rTeGtC8jCsdAH52bjggG5TKRuRrAGNM/mjIbO4GxvlLMFOEz9wXY5I2XQ60PMFsAG2WIcG82dQMQ==} engines: {node: '>=6.9.0'} @@ -724,25 +711,11 @@ packages: '@babel/core': ^7.0.0 dependencies: '@babel/core': 7.21.4 - '@babel/helper-environment-visitor': 7.22.20 - '@babel/helper-module-imports': 7.25.9 - '@babel/helper-simple-access': 7.24.7 + '@babel/helper-environment-visitor': 7.22.5 + '@babel/helper-module-imports': 7.27.1 + '@babel/helper-simple-access': 7.22.5 '@babel/helper-split-export-declaration': 7.22.6 - '@babel/helper-validator-identifier': 7.27.1 - transitivePeerDependencies: - - supports-color - dev: true - - /@babel/helper-module-transforms@7.26.0(@babel/core@7.21.4): - resolution: {integrity: sha512-xO+xu6B5K2czEnQye6BHA7DolFFmS3LB7stHZFaOLb1pAwO1HWLS8fXA+eh0A2yIvltPVmx3eNNDBJA2SLHXFw==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0 - dependencies: - '@babel/core': 7.21.4 - '@babel/helper-module-imports': 7.25.9 - '@babel/helper-validator-identifier': 7.25.9 - '@babel/traverse': 7.26.4 + '@babel/helper-validator-identifier': 7.24.6 transitivePeerDependencies: - supports-color dev: true @@ -764,7 +737,7 @@ packages: resolution: {integrity: sha512-HBwaojN0xFRx4yIvpwGqxiV2tUfl7401jlok564NgB9EHS1y6QT17FmKWm4ztqjeVdXLuC4fSvHc5ePpQjoTbw==} engines: {node: '>=6.9.0'} dependencies: - '@babel/types': 7.28.4 + '@babel/types': 7.24.6 dev: true /@babel/helper-optimise-call-expression@7.25.9: @@ -789,25 +762,9 @@ packages: '@babel/core': ^7.0.0 dependencies: '@babel/core': 7.21.4 - '@babel/helper-annotate-as-pure': 7.25.9 - '@babel/helper-environment-visitor': 7.22.20 - '@babel/helper-wrap-function': 7.25.9 - transitivePeerDependencies: - - supports-color - dev: true - - /@babel/helper-remap-async-to-generator@7.25.9(@babel/core@7.21.4): - resolution: {integrity: sha512-IZtukuUeBbhgOcaW2s06OXTzVNJR0ybm4W5xC1opWFFJMZbwRj5LCk+ByYH7WdZPZTt8KnFwA8pvjN2yqcPlgw==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0 - dependencies: - '@babel/core': 7.21.4 - '@babel/helper-annotate-as-pure': 7.25.9 - '@babel/helper-wrap-function': 7.25.9 - '@babel/traverse': 7.26.4 - transitivePeerDependencies: - - supports-color + '@babel/helper-annotate-as-pure': 7.22.5 + '@babel/helper-environment-visitor': 7.22.5 + '@babel/helper-wrap-function': 7.22.10 dev: true /@babel/helper-remap-async-to-generator@7.25.9(@babel/core@7.25.2): @@ -830,25 +787,9 @@ packages: '@babel/core': ^7.0.0 dependencies: '@babel/core': 7.21.4 - '@babel/helper-environment-visitor': 7.22.20 - '@babel/helper-member-expression-to-functions': 7.25.9 - '@babel/helper-optimise-call-expression': 7.25.9 - transitivePeerDependencies: - - supports-color - dev: true - - /@babel/helper-replace-supers@7.25.9(@babel/core@7.21.4): - resolution: {integrity: sha512-IiDqTOTBQy0sWyeXyGSC5TBJpGFXBkRynjBeXsvbhQFKj2viwJC76Epz35YLU1fpe/Am6Vppb7W7zM4fPQzLsQ==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0 - dependencies: - '@babel/core': 7.21.4 - '@babel/helper-member-expression-to-functions': 7.25.9 - '@babel/helper-optimise-call-expression': 7.25.9 - '@babel/traverse': 7.26.4 - transitivePeerDependencies: - - supports-color + '@babel/helper-environment-visitor': 7.22.5 + '@babel/helper-member-expression-to-functions': 7.22.5 + '@babel/helper-optimise-call-expression': 7.22.5 dev: true /@babel/helper-replace-supers@7.25.9(@babel/core@7.25.2): @@ -868,24 +809,14 @@ packages: resolution: {integrity: sha512-n0H99E/K+Bika3++WNL17POvo4rKWZ7lZEp1Q+fStVbUi8nxPQEBOlTmCOxW/0JsS56SKKQ+ojAe2pHKJHN35w==} engines: {node: '>=6.9.0'} dependencies: - '@babel/types': 7.28.4 - dev: true - - /@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.28.4 - '@babel/types': 7.28.4 - transitivePeerDependencies: - - supports-color + '@babel/types': 7.24.6 dev: true /@babel/helper-skip-transparent-expression-wrappers@7.24.6: resolution: {integrity: sha512-jhbbkK3IUKc4T43WadP96a27oYti9gEf1LdyGSP2rHGH77kwLwfhO7TgwnWvxxQVmke0ImmCSS47vcuxEMGD3Q==} engines: {node: '>=6.9.0'} dependencies: - '@babel/types': 7.28.4 + '@babel/types': 7.24.6 dev: true /@babel/helper-skip-transparent-expression-wrappers@7.25.9: @@ -901,7 +832,7 @@ packages: resolution: {integrity: sha512-AsUnxuLhRYsisFiaJwvp1QF+I3KjD5FOxut14q/GzovUe6orHLesW2C7d754kRm53h5gqrz6sFl6sxc4BVtE/g==} engines: {node: '>=6.9.0'} dependencies: - '@babel/types': 7.28.4 + '@babel/types': 7.24.6 dev: true /@babel/helper-string-parser@7.24.6: @@ -930,6 +861,11 @@ packages: resolution: {integrity: sha512-D2hP9eA+Sqx1kBZgzxZh0y1trbuU+JoDkiEwqhQ36nodYqJwyEIhPSdMNd7lOm/4io72luTPWH20Yda0xOuUow==} engines: {node: '>=6.9.0'} + /@babel/helper-validator-identifier@7.28.5: + resolution: {integrity: sha512-qSs4ifwzKJSV39ucNjsvc6WVHs6b7S03sOh2OcHF9UHfVPqWWALUsNUVzhSBiItjRZoLHx7nIarVjqKVusUZ1Q==} + engines: {node: '>=6.9.0'} + dev: true + /@babel/helper-validator-option@7.22.5: resolution: {integrity: sha512-R3oB6xlIVKUnxNUxbmgq7pKjxpru24zlimpE8WK47fACIlM0II/Hm1RS8IaOI7NgCr6LNS+jl5l75m20npAziw==} engines: {node: '>=6.9.0'} @@ -943,9 +879,9 @@ packages: resolution: {integrity: sha512-OnMhjWjuGYtdoO3FmsEFWvBStBAe2QOgwOLsLNDjN+aaiMD8InJk1/O3HSD8lkqTjCgg5YI34Tz15KNNA3p+nQ==} engines: {node: '>=6.9.0'} dependencies: - '@babel/helper-function-name': 7.23.0 + '@babel/helper-function-name': 7.22.5 '@babel/template': 7.27.2 - '@babel/types': 7.28.4 + '@babel/types': 7.24.6 dev: true /@babel/helper-wrap-function@7.25.9: @@ -962,9 +898,9 @@ packages: resolution: {integrity: sha512-XXve0CBtOW0pd7MRzzmoyuSj0e3SEzj8pgyFxnTT1NJZL38BD1MK7yYrm8yefRPIDvNNe14xR4FdbHwpInD4rA==} engines: {node: '>=6.9.0'} dependencies: - '@babel/template': 7.27.2 - '@babel/traverse': 7.28.4 - '@babel/types': 7.28.4 + '@babel/template': 7.20.7 + '@babel/traverse': 7.21.4 + '@babel/types': 7.24.6 transitivePeerDependencies: - supports-color dev: true @@ -980,27 +916,17 @@ packages: resolution: {integrity: sha512-78aUtVcT7MUscr0K5mIEnkwxPE0MaxkR5RxRwuHaQ+JuU5AmTPhY+do2mdzVTnIJJpyBglql2pehuBIWHug+WQ==} engines: {node: '>=6.9.0'} dependencies: - '@babel/helper-validator-identifier': 7.27.1 + '@babel/helper-validator-identifier': 7.24.6 chalk: 2.4.2 js-tokens: 4.0.0 dev: true - /@babel/highlight@7.24.7: - resolution: {integrity: sha512-EStJpq4OuY8xYfhGVXngigBJRWxftKX9ksiGDnmlY3o7B/V7KIAc9X4oiK87uPJSc/vs5L869bem5fhZa8caZw==} - engines: {node: '>=6.9.0'} - dependencies: - '@babel/helper-validator-identifier': 7.27.1 - chalk: 2.4.2 - js-tokens: 4.0.0 - picocolors: 1.1.1 - dev: true - /@babel/parser@7.21.4: resolution: {integrity: sha512-alVJj7k7zIxqBZ7BTRhz0IqJFxW1VJbm6N8JbcYhQ186df9ZBPbZBmWSqAMXwHGsCJdYks7z/voa3ibiS5bCIw==} engines: {node: '>=6.0.0'} hasBin: true dependencies: - '@babel/types': 7.28.4 + '@babel/types': 7.24.6 dev: true /@babel/parser@7.26.3: @@ -1017,6 +943,14 @@ packages: dependencies: '@babel/types': 7.28.4 + /@babel/parser@7.28.5: + resolution: {integrity: sha512-KKBU1VGYR7ORr3At5HAtUQ+TV3SzRCXmA/8OdDZiLDBIZxVyzXuztPjfLd3BV1PRAQGCMWWSHYhL0F8d5uHBDQ==} + engines: {node: '>=6.0.0'} + hasBin: true + dependencies: + '@babel/types': 7.28.5 + dev: true + /@babel/plugin-bugfix-firefox-class-in-computed-class-key@7.25.9(@babel/core@7.25.2): resolution: {integrity: sha512-ZkRyVkThtxQ/J6nv3JFYv1RYY+JT5BvU0y3k5bWrmuG4woXypRa4PXmm9RhOwodRkYFWqC0C0cqcJ4OqR7kW+g==} engines: {node: '>=6.9.0'} @@ -1045,17 +979,7 @@ packages: '@babel/core': ^7.0.0 dependencies: '@babel/core': 7.21.4 - '@babel/helper-plugin-utils': 7.25.9 - dev: true - - /@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@7.25.9(@babel/core@7.21.4): - resolution: {integrity: sha512-2qUwwfAFpJLZqxd02YW9btUCZHl+RFvdDkNfZwaIJrvB8Tesjsk8pEQkTvGwZXLqXUx/2oyY3ySRhm6HOXuCug==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0 - dependencies: - '@babel/core': 7.21.4 - '@babel/helper-plugin-utils': 7.25.9 + '@babel/helper-plugin-utils': 7.24.6 dev: true /@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@7.25.9(@babel/core@7.25.2): @@ -1074,25 +998,9 @@ packages: '@babel/core': ^7.13.0 dependencies: '@babel/core': 7.21.4 - '@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.21.4) - transitivePeerDependencies: - - supports-color - dev: true - - /@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@7.25.9(@babel/core@7.21.4): - resolution: {integrity: sha512-6xWgLZTJXwilVjlnV7ospI3xi+sl8lN8rXXbBD6vYn3UYDlGsag8wrZkKcSI8G6KgqKP7vNFaDgeDnfAABq61g==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.13.0 - dependencies: - '@babel/core': 7.21.4 - '@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.21.4) - transitivePeerDependencies: - - supports-color + '@babel/helper-plugin-utils': 7.24.6 + '@babel/helper-skip-transparent-expression-wrappers': 7.24.6 + '@babel/plugin-transform-optional-chaining': 7.24.6(@babel/core@7.21.4) dev: true /@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@7.25.9(@babel/core@7.25.2): @@ -1128,12 +1036,10 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.21.4 - '@babel/helper-environment-visitor': 7.22.20 - '@babel/helper-plugin-utils': 7.25.9 - '@babel/helper-remap-async-to-generator': 7.25.9(@babel/core@7.21.4) + '@babel/helper-environment-visitor': 7.22.5 + '@babel/helper-plugin-utils': 7.24.6 + '@babel/helper-remap-async-to-generator': 7.22.9(@babel/core@7.21.4) '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.21.4) - transitivePeerDependencies: - - supports-color dev: true /@babel/plugin-proposal-class-properties@7.14.5(@babel/core@7.25.2): @@ -1158,10 +1064,8 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.21.4 - '@babel/helper-create-class-features-plugin': 7.25.9(@babel/core@7.21.4) - '@babel/helper-plugin-utils': 7.25.9 - transitivePeerDependencies: - - supports-color + '@babel/helper-create-class-features-plugin': 7.22.10(@babel/core@7.21.4) + '@babel/helper-plugin-utils': 7.24.6 dev: true /@babel/plugin-proposal-class-static-block@7.21.0(@babel/core@7.21.4): @@ -1172,11 +1076,9 @@ packages: '@babel/core': ^7.12.0 dependencies: '@babel/core': 7.21.4 - '@babel/helper-create-class-features-plugin': 7.25.9(@babel/core@7.21.4) - '@babel/helper-plugin-utils': 7.25.9 + '@babel/helper-create-class-features-plugin': 7.22.10(@babel/core@7.21.4) + '@babel/helper-plugin-utils': 7.24.6 '@babel/plugin-syntax-class-static-block': 7.14.5(@babel/core@7.21.4) - transitivePeerDependencies: - - supports-color dev: true /@babel/plugin-proposal-decorators@7.21.0(@babel/core@7.21.4): @@ -1186,13 +1088,11 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.21.4 - '@babel/helper-create-class-features-plugin': 7.25.9(@babel/core@7.21.4) - '@babel/helper-plugin-utils': 7.25.9 - '@babel/helper-replace-supers': 7.25.9(@babel/core@7.21.4) + '@babel/helper-create-class-features-plugin': 7.22.10(@babel/core@7.21.4) + '@babel/helper-plugin-utils': 7.24.6 + '@babel/helper-replace-supers': 7.22.9(@babel/core@7.21.4) '@babel/helper-split-export-declaration': 7.22.6 - '@babel/plugin-syntax-decorators': 7.25.9(@babel/core@7.21.4) - transitivePeerDependencies: - - supports-color + '@babel/plugin-syntax-decorators': 7.22.10(@babel/core@7.21.4) dev: true /@babel/plugin-proposal-decorators@7.25.9(@babel/core@7.25.2): @@ -1216,7 +1116,7 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.21.4 - '@babel/helper-plugin-utils': 7.25.9 + '@babel/helper-plugin-utils': 7.24.6 '@babel/plugin-syntax-do-expressions': 7.22.5(@babel/core@7.21.4) dev: true @@ -1228,7 +1128,7 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.21.4 - '@babel/helper-plugin-utils': 7.25.9 + '@babel/helper-plugin-utils': 7.24.6 '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.21.4) dev: true @@ -1239,8 +1139,8 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.21.4 - '@babel/helper-plugin-utils': 7.25.9 - '@babel/plugin-syntax-export-default-from': 7.25.9(@babel/core@7.21.4) + '@babel/helper-plugin-utils': 7.24.6 + '@babel/plugin-syntax-export-default-from': 7.22.5(@babel/core@7.21.4) dev: true /@babel/plugin-proposal-export-namespace-from@7.18.9(@babel/core@7.21.4): @@ -1251,7 +1151,7 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.21.4 - '@babel/helper-plugin-utils': 7.25.9 + '@babel/helper-plugin-utils': 7.24.6 '@babel/plugin-syntax-export-namespace-from': 7.8.3(@babel/core@7.21.4) dev: true @@ -1262,7 +1162,7 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.21.4 - '@babel/helper-plugin-utils': 7.25.9 + '@babel/helper-plugin-utils': 7.24.6 '@babel/plugin-syntax-function-bind': 7.22.5(@babel/core@7.21.4) dev: true @@ -1273,11 +1173,9 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.21.4 - '@babel/helper-plugin-utils': 7.25.9 - '@babel/helper-wrap-function': 7.25.9 + '@babel/helper-plugin-utils': 7.24.6 + '@babel/helper-wrap-function': 7.22.10 '@babel/plugin-syntax-function-sent': 7.22.5(@babel/core@7.21.4) - transitivePeerDependencies: - - supports-color dev: true /@babel/plugin-proposal-json-strings@7.18.6(@babel/core@7.21.4): @@ -1288,7 +1186,7 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.21.4 - '@babel/helper-plugin-utils': 7.25.9 + '@babel/helper-plugin-utils': 7.24.6 '@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.21.4) dev: true @@ -1300,7 +1198,7 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.21.4 - '@babel/helper-plugin-utils': 7.25.9 + '@babel/helper-plugin-utils': 7.24.6 '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.21.4) dev: true @@ -1312,7 +1210,7 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.21.4 - '@babel/helper-plugin-utils': 7.25.9 + '@babel/helper-plugin-utils': 7.24.6 '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.21.4) dev: true @@ -1324,7 +1222,7 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.21.4 - '@babel/helper-plugin-utils': 7.25.9 + '@babel/helper-plugin-utils': 7.24.6 '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.21.4) dev: true @@ -1335,12 +1233,12 @@ packages: peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/compat-data': 7.26.3 + '@babel/compat-data': 7.22.9 '@babel/core': 7.21.4 - '@babel/helper-compilation-targets': 7.25.9 - '@babel/helper-plugin-utils': 7.25.9 + '@babel/helper-compilation-targets': 7.22.10 + '@babel/helper-plugin-utils': 7.24.6 '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.21.4) - '@babel/plugin-transform-parameters': 7.25.9(@babel/core@7.21.4) + '@babel/plugin-transform-parameters': 7.22.5(@babel/core@7.21.4) dev: true /@babel/plugin-proposal-optional-catch-binding@7.18.6(@babel/core@7.21.4): @@ -1351,7 +1249,7 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.21.4 - '@babel/helper-plugin-utils': 7.25.9 + '@babel/helper-plugin-utils': 7.24.6 '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.21.4) dev: true @@ -1363,11 +1261,9 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.21.4 - '@babel/helper-plugin-utils': 7.25.9 - '@babel/helper-skip-transparent-expression-wrappers': 7.25.9 + '@babel/helper-plugin-utils': 7.24.6 + '@babel/helper-skip-transparent-expression-wrappers': 7.24.6 '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.21.4) - transitivePeerDependencies: - - supports-color dev: true /@babel/plugin-proposal-pipeline-operator@7.18.9(@babel/core@7.21.4): @@ -1377,7 +1273,7 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.21.4 - '@babel/helper-plugin-utils': 7.25.9 + '@babel/helper-plugin-utils': 7.24.6 '@babel/plugin-syntax-pipeline-operator': 7.22.5(@babel/core@7.21.4) dev: true @@ -1389,10 +1285,8 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.21.4 - '@babel/helper-create-class-features-plugin': 7.25.9(@babel/core@7.21.4) - '@babel/helper-plugin-utils': 7.25.9 - transitivePeerDependencies: - - supports-color + '@babel/helper-create-class-features-plugin': 7.22.10(@babel/core@7.21.4) + '@babel/helper-plugin-utils': 7.24.6 dev: true /@babel/plugin-proposal-private-property-in-object@7.21.0(@babel/core@7.21.4): @@ -1403,12 +1297,10 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.21.4 - '@babel/helper-annotate-as-pure': 7.25.9 - '@babel/helper-create-class-features-plugin': 7.25.9(@babel/core@7.21.4) - '@babel/helper-plugin-utils': 7.25.9 + '@babel/helper-annotate-as-pure': 7.22.5 + '@babel/helper-create-class-features-plugin': 7.22.10(@babel/core@7.21.4) + '@babel/helper-plugin-utils': 7.24.6 '@babel/plugin-syntax-private-property-in-object': 7.14.5(@babel/core@7.21.4) - transitivePeerDependencies: - - supports-color dev: true /@babel/plugin-proposal-private-property-in-object@7.21.0-placeholder-for-preset-env.2(@babel/core@7.25.2): @@ -1426,7 +1318,7 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.21.4 - '@babel/helper-plugin-utils': 7.25.9 + '@babel/helper-plugin-utils': 7.24.6 '@babel/plugin-syntax-throw-expressions': 7.22.5(@babel/core@7.21.4) dev: true @@ -1438,8 +1330,8 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.21.4 - '@babel/helper-create-regexp-features-plugin': 7.26.3(@babel/core@7.21.4) - '@babel/helper-plugin-utils': 7.25.9 + '@babel/helper-create-regexp-features-plugin': 7.22.9(@babel/core@7.21.4) + '@babel/helper-plugin-utils': 7.24.6 dev: true /@babel/plugin-syntax-async-generators@7.8.4(@babel/core@7.21.4): @@ -1503,7 +1395,7 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.21.4 - '@babel/helper-plugin-utils': 7.25.9 + '@babel/helper-plugin-utils': 7.24.6 dev: true /@babel/plugin-syntax-decorators@7.22.10(@babel/core@7.21.4): @@ -1513,17 +1405,7 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.21.4 - '@babel/helper-plugin-utils': 7.25.9 - dev: true - - /@babel/plugin-syntax-decorators@7.25.9(@babel/core@7.21.4): - resolution: {integrity: sha512-ryzI0McXUPJnRCvMo4lumIKZUzhYUO/ScI+Mz4YVaTLt04DHNSjEUjKVvbzQjZFLuod/cYEc07mJWhzl6v4DPg==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.21.4 - '@babel/helper-plugin-utils': 7.25.9 + '@babel/helper-plugin-utils': 7.24.6 dev: true /@babel/plugin-syntax-decorators@7.25.9(@babel/core@7.25.2): @@ -1543,7 +1425,7 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.21.4 - '@babel/helper-plugin-utils': 7.25.9 + '@babel/helper-plugin-utils': 7.24.6 dev: true /@babel/plugin-syntax-dynamic-import@7.8.3(@babel/core@7.21.4): @@ -1552,7 +1434,7 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.21.4 - '@babel/helper-plugin-utils': 7.25.9 + '@babel/helper-plugin-utils': 7.24.6 dev: true /@babel/plugin-syntax-export-default-from@7.22.5(@babel/core@7.21.4): @@ -1562,17 +1444,7 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.21.4 - '@babel/helper-plugin-utils': 7.25.9 - dev: true - - /@babel/plugin-syntax-export-default-from@7.25.9(@babel/core@7.21.4): - resolution: {integrity: sha512-9MhJ/SMTsVqsd69GyQg89lYR4o9T+oDGv5F6IsigxxqFVOyR/IflDLYP8WDI1l8fkhNGGktqkvL5qwNCtGEpgQ==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.21.4 - '@babel/helper-plugin-utils': 7.25.9 + '@babel/helper-plugin-utils': 7.24.6 dev: true /@babel/plugin-syntax-export-namespace-from@7.8.3(@babel/core@7.21.4): @@ -1581,7 +1453,7 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.21.4 - '@babel/helper-plugin-utils': 7.25.9 + '@babel/helper-plugin-utils': 7.24.6 dev: true /@babel/plugin-syntax-function-bind@7.22.5(@babel/core@7.21.4): @@ -1591,7 +1463,7 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.21.4 - '@babel/helper-plugin-utils': 7.25.9 + '@babel/helper-plugin-utils': 7.24.6 dev: true /@babel/plugin-syntax-function-sent@7.22.5(@babel/core@7.21.4): @@ -1601,7 +1473,7 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.21.4 - '@babel/helper-plugin-utils': 7.25.9 + '@babel/helper-plugin-utils': 7.24.6 dev: true /@babel/plugin-syntax-import-assertions@7.24.6(@babel/core@7.21.4): @@ -1611,17 +1483,7 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.21.4 - '@babel/helper-plugin-utils': 7.25.9 - dev: true - - /@babel/plugin-syntax-import-assertions@7.26.0(@babel/core@7.21.4): - resolution: {integrity: sha512-QCWT5Hh830hK5EQa7XzuqIkQU9tT/whqbDz7kuaZMHFl1inRRg7JnuAEOQ0Ur0QUl0NufCk1msK2BeY79Aj/eg==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.21.4 - '@babel/helper-plugin-utils': 7.25.9 + '@babel/helper-plugin-utils': 7.24.6 dev: true /@babel/plugin-syntax-import-assertions@7.26.0(@babel/core@7.25.2): @@ -1802,7 +1664,7 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.21.4 - '@babel/helper-plugin-utils': 7.25.9 + '@babel/helper-plugin-utils': 7.24.6 dev: true /@babel/plugin-syntax-private-property-in-object@7.14.5(@babel/core@7.21.4): @@ -1812,7 +1674,7 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.21.4 - '@babel/helper-plugin-utils': 7.25.9 + '@babel/helper-plugin-utils': 7.24.6 dev: true /@babel/plugin-syntax-throw-expressions@7.22.5(@babel/core@7.21.4): @@ -1822,7 +1684,7 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.21.4 - '@babel/helper-plugin-utils': 7.25.9 + '@babel/helper-plugin-utils': 7.24.6 dev: true /@babel/plugin-syntax-top-level-await@7.14.5(@babel/core@7.21.4): @@ -1852,17 +1714,7 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.21.4 - '@babel/helper-plugin-utils': 7.25.9 - dev: true - - /@babel/plugin-syntax-typescript@7.25.9(@babel/core@7.21.4): - resolution: {integrity: sha512-hjMgRy5hb8uJJjUcdWunWVcoi9bGpJp8p5Ol1229PoN6aytsLwNMgmdftO23wnCLMfVmTwZDWMPNq/D1SY60JQ==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.21.4 - '@babel/helper-plugin-utils': 7.25.9 + '@babel/helper-plugin-utils': 7.24.6 dev: true /@babel/plugin-syntax-typescript@7.25.9(@babel/core@7.25.2): @@ -1892,17 +1744,7 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.21.4 - '@babel/helper-plugin-utils': 7.25.9 - dev: true - - /@babel/plugin-transform-arrow-functions@7.25.9(@babel/core@7.21.4): - resolution: {integrity: sha512-6jmooXYIwn9ca5/RylZADJ+EnSxVUS5sjeJ9UPk6RWRzXCmOJCy6dqItPJFpw2cuCangPK4OYr5uhGKcmrm5Qg==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.21.4 - '@babel/helper-plugin-utils': 7.25.9 + '@babel/helper-plugin-utils': 7.24.6 dev: true /@babel/plugin-transform-arrow-functions@7.25.9(@babel/core@7.25.2): @@ -1934,23 +1776,9 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.21.4 - '@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.21.4) - transitivePeerDependencies: - - supports-color - dev: true - - /@babel/plugin-transform-async-to-generator@7.25.9(@babel/core@7.21.4): - resolution: {integrity: sha512-NT7Ejn7Z/LjUH0Gv5KsBCxh7BH3fbLTV0ptHvpeMvrt3cPThHfJfst9Wrb7S8EvJ7vRTFI7z+VAvFVEQn/m5zQ==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.21.4 - '@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.21.4) + '@babel/helper-module-imports': 7.27.1 + '@babel/helper-plugin-utils': 7.24.6 + '@babel/helper-remap-async-to-generator': 7.22.9(@babel/core@7.21.4) transitivePeerDependencies: - supports-color dev: true @@ -1975,17 +1803,7 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.21.4 - '@babel/helper-plugin-utils': 7.25.9 - dev: true - - /@babel/plugin-transform-block-scoped-functions@7.25.9(@babel/core@7.21.4): - resolution: {integrity: sha512-toHc9fzab0ZfenFpsyYinOX0J/5dgJVA2fm64xPewu7CoYHWEivIWKxkK2rMi4r3yQqLnVmheMXRdG+k239CgA==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.21.4 - '@babel/helper-plugin-utils': 7.25.9 + '@babel/helper-plugin-utils': 7.24.6 dev: true /@babel/plugin-transform-block-scoped-functions@7.25.9(@babel/core@7.25.2): @@ -2004,17 +1822,7 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.21.4 - '@babel/helper-plugin-utils': 7.25.9 - dev: true - - /@babel/plugin-transform-block-scoping@7.25.9(@babel/core@7.21.4): - resolution: {integrity: sha512-1F05O7AYjymAtqbsFETboN1NvBdcnzMerO+zlMyJBEz6WkMdejvGWw9p05iTSjC85RLlBseHHQpYaM4gzJkBGg==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.21.4 - '@babel/helper-plugin-utils': 7.25.9 + '@babel/helper-plugin-utils': 7.24.6 dev: true /@babel/plugin-transform-block-scoping@7.25.9(@babel/core@7.25.2): @@ -2057,34 +1865,15 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.21.4 - '@babel/helper-annotate-as-pure': 7.25.9 - '@babel/helper-compilation-targets': 7.25.9 - '@babel/helper-environment-visitor': 7.22.20 - '@babel/helper-function-name': 7.23.0 - '@babel/helper-optimise-call-expression': 7.25.9 - '@babel/helper-plugin-utils': 7.25.9 - '@babel/helper-replace-supers': 7.25.9(@babel/core@7.21.4) + '@babel/helper-annotate-as-pure': 7.22.5 + '@babel/helper-compilation-targets': 7.22.10 + '@babel/helper-environment-visitor': 7.22.5 + '@babel/helper-function-name': 7.22.5 + '@babel/helper-optimise-call-expression': 7.22.5 + '@babel/helper-plugin-utils': 7.24.6 + '@babel/helper-replace-supers': 7.22.9(@babel/core@7.21.4) '@babel/helper-split-export-declaration': 7.22.6 globals: 11.12.0 - transitivePeerDependencies: - - supports-color - dev: true - - /@babel/plugin-transform-classes@7.25.9(@babel/core@7.21.4): - resolution: {integrity: sha512-mD8APIXmseE7oZvZgGABDyM34GUmK45Um2TXiBUt7PnuAxrgoSVf123qUzPxEr/+/BHrRn5NMZCdE2m/1F8DGg==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.21.4 - '@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.21.4) - '@babel/traverse': 7.26.4 - globals: 11.12.0 - transitivePeerDependencies: - - supports-color dev: true /@babel/plugin-transform-classes@7.25.9(@babel/core@7.25.2): @@ -2110,21 +1899,10 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.21.4 - '@babel/helper-plugin-utils': 7.25.9 + '@babel/helper-plugin-utils': 7.24.6 '@babel/template': 7.27.2 dev: true - /@babel/plugin-transform-computed-properties@7.25.9(@babel/core@7.21.4): - resolution: {integrity: sha512-HnBegGqXZR12xbcTHlJ9HGxw1OniltT26J5YpfruGqtUHlz/xKf/G2ak9e+t0rVqrjXa9WOhvYPz1ERfMj23AA==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.21.4 - '@babel/helper-plugin-utils': 7.25.9 - '@babel/template': 7.25.9 - dev: true - /@babel/plugin-transform-computed-properties@7.25.9(@babel/core@7.25.2): resolution: {integrity: sha512-HnBegGqXZR12xbcTHlJ9HGxw1OniltT26J5YpfruGqtUHlz/xKf/G2ak9e+t0rVqrjXa9WOhvYPz1ERfMj23AA==} engines: {node: '>=6.9.0'} @@ -2142,17 +1920,7 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.21.4 - '@babel/helper-plugin-utils': 7.25.9 - dev: true - - /@babel/plugin-transform-destructuring@7.25.9(@babel/core@7.21.4): - resolution: {integrity: sha512-WkCGb/3ZxXepmMiX101nnGiU+1CAdut8oHyEOHxkKuS1qKpU2SMXE2uSvfz8PBuLd49V6LEsbtyPhWC7fnkgvQ==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.21.4 - '@babel/helper-plugin-utils': 7.25.9 + '@babel/helper-plugin-utils': 7.24.6 dev: true /@babel/plugin-transform-destructuring@7.25.9(@babel/core@7.25.2): @@ -2171,19 +1939,8 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.21.4 - '@babel/helper-create-regexp-features-plugin': 7.26.3(@babel/core@7.21.4) - '@babel/helper-plugin-utils': 7.25.9 - dev: true - - /@babel/plugin-transform-dotall-regex@7.25.9(@babel/core@7.21.4): - resolution: {integrity: sha512-t7ZQ7g5trIgSRYhI9pIJtRl64KHotutUJsh4Eze5l7olJv+mRSg4/MmbZ0tv1eeqRbdvo/+trvJD/Oc5DmW2cA==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.21.4 - '@babel/helper-create-regexp-features-plugin': 7.26.3(@babel/core@7.21.4) - '@babel/helper-plugin-utils': 7.25.9 + '@babel/helper-create-regexp-features-plugin': 7.22.9(@babel/core@7.21.4) + '@babel/helper-plugin-utils': 7.24.6 dev: true /@babel/plugin-transform-dotall-regex@7.25.9(@babel/core@7.25.2): @@ -2203,17 +1960,7 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.21.4 - '@babel/helper-plugin-utils': 7.25.9 - dev: true - - /@babel/plugin-transform-duplicate-keys@7.25.9(@babel/core@7.21.4): - resolution: {integrity: sha512-LZxhJ6dvBb/f3x8xwWIuyiAHy56nrRG3PeYTpBkkzkYRRQ6tJLu68lEF5VIqMUZiAV7a8+Tb78nEoMCMcqjXBw==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.21.4 - '@babel/helper-plugin-utils': 7.25.9 + '@babel/helper-plugin-utils': 7.24.6 dev: true /@babel/plugin-transform-duplicate-keys@7.25.9(@babel/core@7.25.2): @@ -2252,17 +1999,7 @@ packages: dependencies: '@babel/core': 7.21.4 '@babel/helper-builder-binary-assignment-operator-visitor': 7.22.10 - '@babel/helper-plugin-utils': 7.25.9 - dev: true - - /@babel/plugin-transform-exponentiation-operator@7.26.3(@babel/core@7.21.4): - resolution: {integrity: sha512-7CAHcQ58z2chuXPWblnn1K6rLDnDWieghSOEmqQsrBenH0P9InCUtOJYD89pvngljmZlJcz3fcmgYsXFNGa1ZQ==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.21.4 - '@babel/helper-plugin-utils': 7.25.9 + '@babel/helper-plugin-utils': 7.24.6 dev: true /@babel/plugin-transform-exponentiation-operator@7.26.3(@babel/core@7.25.2): @@ -2290,20 +2027,7 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.21.4 - '@babel/helper-plugin-utils': 7.25.9 - dev: true - - /@babel/plugin-transform-for-of@7.25.9(@babel/core@7.21.4): - resolution: {integrity: sha512-LqHxduHoaGELJl2uhImHwRQudhCM50pT46rIBNvtT/Oql3nqiS3wOwP+5ten7NpYSXrrVLgtZU3DZmPtWZo16A==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.21.4 - '@babel/helper-plugin-utils': 7.25.9 - '@babel/helper-skip-transparent-expression-wrappers': 7.25.9 - transitivePeerDependencies: - - supports-color + '@babel/helper-plugin-utils': 7.24.6 dev: true /@babel/plugin-transform-for-of@7.25.9(@babel/core@7.25.2): @@ -2325,23 +2049,9 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.21.4 - '@babel/helper-compilation-targets': 7.25.9 - '@babel/helper-function-name': 7.23.0 - '@babel/helper-plugin-utils': 7.25.9 - dev: true - - /@babel/plugin-transform-function-name@7.25.9(@babel/core@7.21.4): - resolution: {integrity: sha512-8lP+Yxjv14Vc5MuWBpJsoUCd3hD6V9DgBon2FVYL4jJgbnVQ9fTgYmonchzZJOVNgzEgbxp4OwAf6xz6M/14XA==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.21.4 - '@babel/helper-compilation-targets': 7.25.9 - '@babel/helper-plugin-utils': 7.25.9 - '@babel/traverse': 7.26.4 - transitivePeerDependencies: - - supports-color + '@babel/helper-compilation-targets': 7.22.10 + '@babel/helper-function-name': 7.22.5 + '@babel/helper-plugin-utils': 7.24.6 dev: true /@babel/plugin-transform-function-name@7.25.9(@babel/core@7.25.2): @@ -2373,17 +2083,7 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.21.4 - '@babel/helper-plugin-utils': 7.25.9 - dev: true - - /@babel/plugin-transform-literals@7.25.9(@babel/core@7.21.4): - resolution: {integrity: sha512-9N7+2lFziW8W9pBl2TzaNht3+pgMIRP74zizeCSrtnSKVdUl8mAjjOP2OOVQAfZ881P2cNjDj1uAMEdeD50nuQ==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.21.4 - '@babel/helper-plugin-utils': 7.25.9 + '@babel/helper-plugin-utils': 7.24.6 dev: true /@babel/plugin-transform-literals@7.25.9(@babel/core@7.25.2): @@ -2411,17 +2111,7 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.21.4 - '@babel/helper-plugin-utils': 7.25.9 - dev: true - - /@babel/plugin-transform-member-expression-literals@7.25.9(@babel/core@7.21.4): - resolution: {integrity: sha512-PYazBVfofCQkkMzh2P6IdIUaCEWni3iYEerAsRWuVd8+jlM1S9S9cz1dF9hIzyoZ8IA3+OwVYIp9v9e+GbgZhA==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.21.4 - '@babel/helper-plugin-utils': 7.25.9 + '@babel/helper-plugin-utils': 7.24.6 dev: true /@babel/plugin-transform-member-expression-literals@7.25.9(@babel/core@7.25.2): @@ -2440,21 +2130,8 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.21.4 - '@babel/helper-module-transforms': 7.26.0(@babel/core@7.21.4) - '@babel/helper-plugin-utils': 7.25.9 - transitivePeerDependencies: - - supports-color - dev: true - - /@babel/plugin-transform-modules-amd@7.25.9(@babel/core@7.21.4): - resolution: {integrity: sha512-g5T11tnI36jVClQlMlt4qKDLlWnG5pP9CSM4GhdRciTNMRgkfpo5cR6b4rGIOYPgRRuFAvwjPQ/Yk+ql4dyhbw==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.21.4 - '@babel/helper-module-transforms': 7.26.0(@babel/core@7.21.4) - '@babel/helper-plugin-utils': 7.25.9 + '@babel/helper-module-transforms': 7.22.9(@babel/core@7.21.4) + '@babel/helper-plugin-utils': 7.24.6 transitivePeerDependencies: - supports-color dev: true @@ -2478,22 +2155,9 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.21.4 - '@babel/helper-module-transforms': 7.26.0(@babel/core@7.21.4) - '@babel/helper-plugin-utils': 7.25.9 - '@babel/helper-simple-access': 7.24.7 - transitivePeerDependencies: - - supports-color - dev: true - - /@babel/plugin-transform-modules-commonjs@7.26.3(@babel/core@7.21.4): - resolution: {integrity: sha512-MgR55l4q9KddUDITEzEFYn5ZsGDXMSsU9E+kh7fjRXTIC3RHqfCo8RPRbyReYJh44HQ/yomFkqbOFohXvDCiIQ==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.21.4 - '@babel/helper-module-transforms': 7.26.0(@babel/core@7.21.4) - '@babel/helper-plugin-utils': 7.25.9 + '@babel/helper-module-transforms': 7.22.9(@babel/core@7.21.4) + '@babel/helper-plugin-utils': 7.24.6 + '@babel/helper-simple-access': 7.22.5 transitivePeerDependencies: - supports-color dev: true @@ -2518,24 +2182,9 @@ packages: dependencies: '@babel/core': 7.21.4 '@babel/helper-hoist-variables': 7.22.5 - '@babel/helper-module-transforms': 7.26.0(@babel/core@7.21.4) - '@babel/helper-plugin-utils': 7.25.9 - '@babel/helper-validator-identifier': 7.27.1 - transitivePeerDependencies: - - supports-color - dev: true - - /@babel/plugin-transform-modules-systemjs@7.25.9(@babel/core@7.21.4): - 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.21.4 - '@babel/helper-module-transforms': 7.26.0(@babel/core@7.21.4) - '@babel/helper-plugin-utils': 7.25.9 - '@babel/helper-validator-identifier': 7.25.9 - '@babel/traverse': 7.26.4 + '@babel/helper-module-transforms': 7.22.9(@babel/core@7.21.4) + '@babel/helper-plugin-utils': 7.24.6 + '@babel/helper-validator-identifier': 7.24.6 transitivePeerDependencies: - supports-color dev: true @@ -2561,21 +2210,8 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.21.4 - '@babel/helper-module-transforms': 7.26.0(@babel/core@7.21.4) - '@babel/helper-plugin-utils': 7.25.9 - transitivePeerDependencies: - - supports-color - dev: true - - /@babel/plugin-transform-modules-umd@7.25.9(@babel/core@7.21.4): - resolution: {integrity: sha512-bS9MVObUgE7ww36HEfwe6g9WakQ0KF07mQF74uuXdkoziUPfKyu/nIm663kz//e5O1nPInPFx36z7WJmJ4yNEw==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.21.4 - '@babel/helper-module-transforms': 7.26.0(@babel/core@7.21.4) - '@babel/helper-plugin-utils': 7.25.9 + '@babel/helper-module-transforms': 7.22.9(@babel/core@7.21.4) + '@babel/helper-plugin-utils': 7.24.6 transitivePeerDependencies: - supports-color dev: true @@ -2599,19 +2235,8 @@ packages: '@babel/core': ^7.0.0 dependencies: '@babel/core': 7.21.4 - '@babel/helper-create-regexp-features-plugin': 7.26.3(@babel/core@7.21.4) - '@babel/helper-plugin-utils': 7.25.9 - dev: true - - /@babel/plugin-transform-named-capturing-groups-regex@7.25.9(@babel/core@7.21.4): - resolution: {integrity: sha512-oqB6WHdKTGl3q/ItQhpLSnWWOpjUJLsOCLVyeFgeTktkBSCiurvPOsyt93gibI9CmuKvTUEtWmG5VhZD+5T/KA==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0 - dependencies: - '@babel/core': 7.21.4 - '@babel/helper-create-regexp-features-plugin': 7.26.3(@babel/core@7.21.4) - '@babel/helper-plugin-utils': 7.25.9 + '@babel/helper-create-regexp-features-plugin': 7.22.9(@babel/core@7.21.4) + '@babel/helper-plugin-utils': 7.24.6 dev: true /@babel/plugin-transform-named-capturing-groups-regex@7.25.9(@babel/core@7.25.2): @@ -2631,17 +2256,7 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.21.4 - '@babel/helper-plugin-utils': 7.25.9 - dev: true - - /@babel/plugin-transform-new-target@7.25.9(@babel/core@7.21.4): - resolution: {integrity: sha512-U/3p8X1yCSoKyUj2eOBIx3FOn6pElFOKvAAGf8HTtItuPyB+ZeOqfn+mvTtg9ZlOAjsPdK3ayQEjqHjU/yLeVQ==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.21.4 - '@babel/helper-plugin-utils': 7.25.9 + '@babel/helper-plugin-utils': 7.24.6 dev: true /@babel/plugin-transform-new-target@7.25.9(@babel/core@7.25.2): @@ -2689,23 +2304,8 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.21.4 - '@babel/helper-plugin-utils': 7.25.9 - '@babel/helper-replace-supers': 7.25.9(@babel/core@7.21.4) - transitivePeerDependencies: - - supports-color - dev: true - - /@babel/plugin-transform-object-super@7.25.9(@babel/core@7.21.4): - resolution: {integrity: sha512-Kj/Gh+Rw2RNLbCK1VAWj2U48yxxqL2x0k10nPtSdRa0O2xnHXalD0s+o1A6a0W43gJ00ANo38jxkQreckOzv5A==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.21.4 - '@babel/helper-plugin-utils': 7.25.9 - '@babel/helper-replace-supers': 7.25.9(@babel/core@7.21.4) - transitivePeerDependencies: - - supports-color + '@babel/helper-plugin-utils': 7.24.6 + '@babel/helper-replace-supers': 7.22.9(@babel/core@7.21.4) dev: true /@babel/plugin-transform-object-super@7.25.9(@babel/core@7.25.2): @@ -2736,24 +2336,9 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.21.4 - '@babel/helper-plugin-utils': 7.25.9 - '@babel/helper-skip-transparent-expression-wrappers': 7.25.9 + '@babel/helper-plugin-utils': 7.24.6 + '@babel/helper-skip-transparent-expression-wrappers': 7.24.6 '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.21.4) - transitivePeerDependencies: - - supports-color - dev: true - - /@babel/plugin-transform-optional-chaining@7.25.9(@babel/core@7.21.4): - resolution: {integrity: sha512-6AvV0FsLULbpnXeBjrY4dmWF8F7gf8QnvTEoO/wX/5xm/xE1Xo8oPuD3MPS+KS9f9XBEAWN7X1aWr4z9HdOr7A==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.21.4 - '@babel/helper-plugin-utils': 7.25.9 - '@babel/helper-skip-transparent-expression-wrappers': 7.25.9 - transitivePeerDependencies: - - supports-color dev: true /@babel/plugin-transform-optional-chaining@7.25.9(@babel/core@7.25.2): @@ -2775,17 +2360,7 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.21.4 - '@babel/helper-plugin-utils': 7.25.9 - dev: true - - /@babel/plugin-transform-parameters@7.25.9(@babel/core@7.21.4): - resolution: {integrity: sha512-wzz6MKwpnshBAiRmn4jR8LYz/g8Ksg0o80XmwZDlordjwEk9SxBzTWC7F5ef1jhbrbOW2DJ5J6ayRukrJmnr0g==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.21.4 - '@babel/helper-plugin-utils': 7.25.9 + '@babel/helper-plugin-utils': 7.24.6 dev: true /@babel/plugin-transform-parameters@7.25.9(@babel/core@7.25.2): @@ -2829,17 +2404,7 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.21.4 - '@babel/helper-plugin-utils': 7.25.9 - dev: true - - /@babel/plugin-transform-property-literals@7.25.9(@babel/core@7.21.4): - 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.21.4 - '@babel/helper-plugin-utils': 7.25.9 + '@babel/helper-plugin-utils': 7.24.6 dev: true /@babel/plugin-transform-property-literals@7.25.9(@babel/core@7.25.2): @@ -2903,18 +2468,7 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.21.4 - '@babel/helper-plugin-utils': 7.25.9 - regenerator-transform: 0.15.2 - dev: true - - /@babel/plugin-transform-regenerator@7.25.9(@babel/core@7.21.4): - resolution: {integrity: sha512-vwDcDNsgMPDGP0nMqzahDWE5/MLcX8sv96+wfX7as7LoF/kr97Bo/7fI00lXY4wUXYfVmwIIyG80fGZ1uvt2qg==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.21.4 - '@babel/helper-plugin-utils': 7.25.9 + '@babel/helper-plugin-utils': 7.24.6 regenerator-transform: 0.15.2 dev: true @@ -2945,17 +2499,7 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.21.4 - '@babel/helper-plugin-utils': 7.25.9 - dev: true - - /@babel/plugin-transform-reserved-words@7.25.9(@babel/core@7.21.4): - resolution: {integrity: sha512-7DL7DKYjn5Su++4RXu8puKZm2XBPHyjWLUidaPEkCUBbE7IPcsrkRHggAOOKydH1dASWdcUBxrkOGNxUv5P3Jg==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.21.4 - '@babel/helper-plugin-utils': 7.25.9 + '@babel/helper-plugin-utils': 7.24.6 dev: true /@babel/plugin-transform-reserved-words@7.25.9(@babel/core@7.25.2): @@ -2974,8 +2518,8 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.21.4 - '@babel/helper-module-imports': 7.25.9 - '@babel/helper-plugin-utils': 7.25.9 + '@babel/helper-module-imports': 7.21.4 + '@babel/helper-plugin-utils': 7.24.6 babel-plugin-polyfill-corejs2: 0.3.3(@babel/core@7.21.4) babel-plugin-polyfill-corejs3: 0.6.0(@babel/core@7.21.4) babel-plugin-polyfill-regenerator: 0.4.1(@babel/core@7.21.4) @@ -3008,17 +2552,7 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.21.4 - '@babel/helper-plugin-utils': 7.25.9 - dev: true - - /@babel/plugin-transform-shorthand-properties@7.25.9(@babel/core@7.21.4): - resolution: {integrity: sha512-MUv6t0FhO5qHnS/W8XCbHmiRWOphNufpE1IVxhK5kuN3Td9FT1x4rx4K42s3RYdMXCXpfWkGSbCSd0Z64xA7Ng==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.21.4 - '@babel/helper-plugin-utils': 7.25.9 + '@babel/helper-plugin-utils': 7.24.6 dev: true /@babel/plugin-transform-shorthand-properties@7.25.9(@babel/core@7.25.2): @@ -3037,23 +2571,8 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.21.4 - '@babel/helper-plugin-utils': 7.25.9 - '@babel/helper-skip-transparent-expression-wrappers': 7.25.9 - transitivePeerDependencies: - - supports-color - dev: true - - /@babel/plugin-transform-spread@7.25.9(@babel/core@7.21.4): - resolution: {integrity: sha512-oNknIB0TbURU5pqJFVbOOFspVlrpVwo2H1+HUIsVDvp5VauGGDP1ZEvO8Nn5xyMEs3dakajOxlmkNW7kNgSm6A==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.21.4 - '@babel/helper-plugin-utils': 7.25.9 - '@babel/helper-skip-transparent-expression-wrappers': 7.25.9 - transitivePeerDependencies: - - supports-color + '@babel/helper-plugin-utils': 7.24.6 + '@babel/helper-skip-transparent-expression-wrappers': 7.24.6 dev: true /@babel/plugin-transform-spread@7.25.9(@babel/core@7.25.2): @@ -3075,17 +2594,7 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.21.4 - '@babel/helper-plugin-utils': 7.25.9 - dev: true - - /@babel/plugin-transform-sticky-regex@7.25.9(@babel/core@7.21.4): - resolution: {integrity: sha512-WqBUSgeVwucYDP9U/xNRQam7xV8W5Zf+6Eo7T2SRVUFlhRiMNFdFz58u0KZmCVVqs2i7SHgpRnAhzRNmKfi2uA==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.21.4 - '@babel/helper-plugin-utils': 7.25.9 + '@babel/helper-plugin-utils': 7.24.6 dev: true /@babel/plugin-transform-sticky-regex@7.25.9(@babel/core@7.25.2): @@ -3104,17 +2613,7 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.21.4 - '@babel/helper-plugin-utils': 7.25.9 - dev: true - - /@babel/plugin-transform-template-literals@7.25.9(@babel/core@7.21.4): - resolution: {integrity: sha512-o97AE4syN71M/lxrCtQByzphAdlYluKPDBzDVzMmfCobUjjhAryZV0AIpRPrxN0eAkxXO6ZLEScmt+PNhj2OTw==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.21.4 - '@babel/helper-plugin-utils': 7.25.9 + '@babel/helper-plugin-utils': 7.24.6 dev: true /@babel/plugin-transform-template-literals@7.25.9(@babel/core@7.25.2): @@ -3133,17 +2632,7 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.21.4 - '@babel/helper-plugin-utils': 7.25.9 - dev: true - - /@babel/plugin-transform-typeof-symbol@7.25.9(@babel/core@7.21.4): - resolution: {integrity: sha512-v61XqUMiueJROUv66BVIOi0Fv/CUuZuZMl5NkRoCVxLAnMexZ0A3kMe7vvZ0nulxMuMp0Mk6S5hNh48yki08ZA==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.21.4 - '@babel/helper-plugin-utils': 7.25.9 + '@babel/helper-plugin-utils': 7.24.6 dev: true /@babel/plugin-transform-typeof-symbol@7.25.9(@babel/core@7.25.2): @@ -3162,12 +2651,10 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.21.4 - '@babel/helper-annotate-as-pure': 7.25.9 - '@babel/helper-create-class-features-plugin': 7.25.9(@babel/core@7.21.4) - '@babel/helper-plugin-utils': 7.25.9 - '@babel/plugin-syntax-typescript': 7.25.9(@babel/core@7.21.4) - transitivePeerDependencies: - - supports-color + '@babel/helper-annotate-as-pure': 7.22.5 + '@babel/helper-create-class-features-plugin': 7.22.10(@babel/core@7.21.4) + '@babel/helper-plugin-utils': 7.24.6 + '@babel/plugin-syntax-typescript': 7.22.5(@babel/core@7.21.4) dev: true /@babel/plugin-transform-typescript@7.26.3(@babel/core@7.25.2): @@ -3193,17 +2680,7 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.21.4 - '@babel/helper-plugin-utils': 7.25.9 - dev: true - - /@babel/plugin-transform-unicode-escapes@7.25.9(@babel/core@7.21.4): - resolution: {integrity: sha512-s5EDrE6bW97LtxOcGj1Khcx5AaXwiMmi4toFWRDP9/y0Woo6pXC+iyPu/KuhKtfSrNFd7jJB+/fkOtZy6aIC6Q==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.21.4 - '@babel/helper-plugin-utils': 7.25.9 + '@babel/helper-plugin-utils': 7.24.6 dev: true /@babel/plugin-transform-unicode-escapes@7.25.9(@babel/core@7.25.2): @@ -3232,19 +2709,8 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.21.4 - '@babel/helper-create-regexp-features-plugin': 7.26.3(@babel/core@7.21.4) - '@babel/helper-plugin-utils': 7.25.9 - dev: true - - /@babel/plugin-transform-unicode-regex@7.25.9(@babel/core@7.21.4): - resolution: {integrity: sha512-yoxstj7Rg9dlNn9UQxzk4fcNivwv4nUYz7fYXBaKxvw/lnmPuOm/ikoELygbYq68Bls3D/D+NBPHiLwZdZZ4HA==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.21.4 - '@babel/helper-create-regexp-features-plugin': 7.26.3(@babel/core@7.21.4) - '@babel/helper-plugin-utils': 7.25.9 + '@babel/helper-create-regexp-features-plugin': 7.22.9(@babel/core@7.21.4) + '@babel/helper-plugin-utils': 7.24.6 dev: true /@babel/plugin-transform-unicode-regex@7.25.9(@babel/core@7.25.2): @@ -3273,13 +2739,13 @@ packages: peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/compat-data': 7.26.3 + '@babel/compat-data': 7.22.9 '@babel/core': 7.21.4 - '@babel/helper-compilation-targets': 7.25.9 - '@babel/helper-plugin-utils': 7.25.9 - '@babel/helper-validator-option': 7.25.9 - '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression': 7.25.9(@babel/core@7.21.4) - '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining': 7.25.9(@babel/core@7.21.4) + '@babel/helper-compilation-targets': 7.22.10 + '@babel/helper-plugin-utils': 7.24.6 + '@babel/helper-validator-option': 7.22.5 + '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression': 7.24.6(@babel/core@7.21.4) + '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining': 7.24.6(@babel/core@7.21.4) '@babel/plugin-proposal-async-generator-functions': 7.20.7(@babel/core@7.21.4) '@babel/plugin-proposal-class-properties': 7.18.6(@babel/core@7.21.4) '@babel/plugin-proposal-class-static-block': 7.21.0(@babel/core@7.21.4) @@ -3300,7 +2766,7 @@ packages: '@babel/plugin-syntax-class-static-block': 7.14.5(@babel/core@7.21.4) '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.21.4) '@babel/plugin-syntax-export-namespace-from': 7.8.3(@babel/core@7.21.4) - '@babel/plugin-syntax-import-assertions': 7.26.0(@babel/core@7.21.4) + '@babel/plugin-syntax-import-assertions': 7.24.6(@babel/core@7.21.4) '@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.21.4) '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.21.4) '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.21.4) @@ -3310,44 +2776,44 @@ packages: '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.21.4) '@babel/plugin-syntax-private-property-in-object': 7.14.5(@babel/core@7.21.4) '@babel/plugin-syntax-top-level-await': 7.14.5(@babel/core@7.21.4) - '@babel/plugin-transform-arrow-functions': 7.25.9(@babel/core@7.21.4) - '@babel/plugin-transform-async-to-generator': 7.25.9(@babel/core@7.21.4) - '@babel/plugin-transform-block-scoped-functions': 7.25.9(@babel/core@7.21.4) - '@babel/plugin-transform-block-scoping': 7.25.9(@babel/core@7.21.4) - '@babel/plugin-transform-classes': 7.25.9(@babel/core@7.21.4) - '@babel/plugin-transform-computed-properties': 7.25.9(@babel/core@7.21.4) - '@babel/plugin-transform-destructuring': 7.25.9(@babel/core@7.21.4) - '@babel/plugin-transform-dotall-regex': 7.25.9(@babel/core@7.21.4) - '@babel/plugin-transform-duplicate-keys': 7.25.9(@babel/core@7.21.4) - '@babel/plugin-transform-exponentiation-operator': 7.26.3(@babel/core@7.21.4) - '@babel/plugin-transform-for-of': 7.25.9(@babel/core@7.21.4) - '@babel/plugin-transform-function-name': 7.25.9(@babel/core@7.21.4) - '@babel/plugin-transform-literals': 7.25.9(@babel/core@7.21.4) - '@babel/plugin-transform-member-expression-literals': 7.25.9(@babel/core@7.21.4) - '@babel/plugin-transform-modules-amd': 7.25.9(@babel/core@7.21.4) - '@babel/plugin-transform-modules-commonjs': 7.26.3(@babel/core@7.21.4) - '@babel/plugin-transform-modules-systemjs': 7.25.9(@babel/core@7.21.4) - '@babel/plugin-transform-modules-umd': 7.25.9(@babel/core@7.21.4) - '@babel/plugin-transform-named-capturing-groups-regex': 7.25.9(@babel/core@7.21.4) - '@babel/plugin-transform-new-target': 7.25.9(@babel/core@7.21.4) - '@babel/plugin-transform-object-super': 7.25.9(@babel/core@7.21.4) - '@babel/plugin-transform-parameters': 7.25.9(@babel/core@7.21.4) - '@babel/plugin-transform-property-literals': 7.25.9(@babel/core@7.21.4) - '@babel/plugin-transform-regenerator': 7.25.9(@babel/core@7.21.4) - '@babel/plugin-transform-reserved-words': 7.25.9(@babel/core@7.21.4) - '@babel/plugin-transform-shorthand-properties': 7.25.9(@babel/core@7.21.4) - '@babel/plugin-transform-spread': 7.25.9(@babel/core@7.21.4) - '@babel/plugin-transform-sticky-regex': 7.25.9(@babel/core@7.21.4) - '@babel/plugin-transform-template-literals': 7.25.9(@babel/core@7.21.4) - '@babel/plugin-transform-typeof-symbol': 7.25.9(@babel/core@7.21.4) - '@babel/plugin-transform-unicode-escapes': 7.25.9(@babel/core@7.21.4) - '@babel/plugin-transform-unicode-regex': 7.25.9(@babel/core@7.21.4) + '@babel/plugin-transform-arrow-functions': 7.22.5(@babel/core@7.21.4) + '@babel/plugin-transform-async-to-generator': 7.22.5(@babel/core@7.21.4) + '@babel/plugin-transform-block-scoped-functions': 7.22.5(@babel/core@7.21.4) + '@babel/plugin-transform-block-scoping': 7.22.10(@babel/core@7.21.4) + '@babel/plugin-transform-classes': 7.22.6(@babel/core@7.21.4) + '@babel/plugin-transform-computed-properties': 7.22.5(@babel/core@7.21.4) + '@babel/plugin-transform-destructuring': 7.22.10(@babel/core@7.21.4) + '@babel/plugin-transform-dotall-regex': 7.22.5(@babel/core@7.21.4) + '@babel/plugin-transform-duplicate-keys': 7.22.5(@babel/core@7.21.4) + '@babel/plugin-transform-exponentiation-operator': 7.22.5(@babel/core@7.21.4) + '@babel/plugin-transform-for-of': 7.22.5(@babel/core@7.21.4) + '@babel/plugin-transform-function-name': 7.22.5(@babel/core@7.21.4) + '@babel/plugin-transform-literals': 7.22.5(@babel/core@7.21.4) + '@babel/plugin-transform-member-expression-literals': 7.22.5(@babel/core@7.21.4) + '@babel/plugin-transform-modules-amd': 7.22.5(@babel/core@7.21.4) + '@babel/plugin-transform-modules-commonjs': 7.21.2(@babel/core@7.21.4) + '@babel/plugin-transform-modules-systemjs': 7.22.5(@babel/core@7.21.4) + '@babel/plugin-transform-modules-umd': 7.22.5(@babel/core@7.21.4) + '@babel/plugin-transform-named-capturing-groups-regex': 7.22.5(@babel/core@7.21.4) + '@babel/plugin-transform-new-target': 7.22.5(@babel/core@7.21.4) + '@babel/plugin-transform-object-super': 7.22.5(@babel/core@7.21.4) + '@babel/plugin-transform-parameters': 7.22.5(@babel/core@7.21.4) + '@babel/plugin-transform-property-literals': 7.22.5(@babel/core@7.21.4) + '@babel/plugin-transform-regenerator': 7.22.10(@babel/core@7.21.4) + '@babel/plugin-transform-reserved-words': 7.22.5(@babel/core@7.21.4) + '@babel/plugin-transform-shorthand-properties': 7.22.5(@babel/core@7.21.4) + '@babel/plugin-transform-spread': 7.22.5(@babel/core@7.21.4) + '@babel/plugin-transform-sticky-regex': 7.22.5(@babel/core@7.21.4) + '@babel/plugin-transform-template-literals': 7.22.5(@babel/core@7.21.4) + '@babel/plugin-transform-typeof-symbol': 7.22.5(@babel/core@7.21.4) + '@babel/plugin-transform-unicode-escapes': 7.22.10(@babel/core@7.21.4) + '@babel/plugin-transform-unicode-regex': 7.22.5(@babel/core@7.21.4) '@babel/preset-modules': 0.1.6(@babel/core@7.21.4) - '@babel/types': 7.28.4 + '@babel/types': 7.24.6 babel-plugin-polyfill-corejs2: 0.3.3(@babel/core@7.21.4) babel-plugin-polyfill-corejs3: 0.6.0(@babel/core@7.21.4) babel-plugin-polyfill-regenerator: 0.4.1(@babel/core@7.21.4) - core-js-compat: 3.39.0 + core-js-compat: 3.47.0 semver: 6.3.1 transitivePeerDependencies: - supports-color @@ -3438,10 +2904,10 @@ packages: '@babel/core': ^7.0.0-0 || ^8.0.0-0 <8.0.0 dependencies: '@babel/core': 7.21.4 - '@babel/helper-plugin-utils': 7.25.9 + '@babel/helper-plugin-utils': 7.24.6 '@babel/plugin-proposal-unicode-property-regex': 7.18.6(@babel/core@7.21.4) - '@babel/plugin-transform-dotall-regex': 7.25.9(@babel/core@7.21.4) - '@babel/types': 7.28.4 + '@babel/plugin-transform-dotall-regex': 7.22.5(@babel/core@7.21.4) + '@babel/types': 7.24.6 esutils: 2.0.3 dev: true @@ -3519,13 +2985,18 @@ packages: dependencies: regenerator-runtime: 0.14.0 + /@babel/runtime@7.28.4: + resolution: {integrity: sha512-Q/N6JNWvIvPnLDvjlE1OUBLPQHH6l3CltCEsHIujp45zQUSSh8K+gHnaEX45yAT1nyngnINhvWtzN+Nb9D8RAQ==} + engines: {node: '>=6.9.0'} + dev: true + /@babel/template@7.20.7: resolution: {integrity: sha512-8SegXApWe6VoNw0r9JHpSteLKTpTiLZ4rMlGIm9JQ18KiCtyQiAMEazujAHrUS5flrcqYZa75ukev3P6QmUwUw==} engines: {node: '>=6.9.0'} dependencies: - '@babel/code-frame': 7.27.1 - '@babel/parser': 7.28.4 - '@babel/types': 7.28.4 + '@babel/code-frame': 7.22.10 + '@babel/parser': 7.21.4 + '@babel/types': 7.24.6 dev: true /@babel/template@7.25.9: @@ -3549,14 +3020,14 @@ packages: resolution: {integrity: sha512-eyKrRHKdyZxqDm+fV1iqL9UAHMoIg0nDaGqfIOd8rKH17m5snv7Gn4qgjBoFfLz9APvjFU/ICT00NVCv1Epp8Q==} engines: {node: '>=6.9.0'} dependencies: - '@babel/code-frame': 7.27.1 - '@babel/generator': 7.28.3 - '@babel/helper-environment-visitor': 7.22.20 - '@babel/helper-function-name': 7.23.0 + '@babel/code-frame': 7.22.10 + '@babel/generator': 7.21.4 + '@babel/helper-environment-visitor': 7.22.5 + '@babel/helper-function-name': 7.22.5 '@babel/helper-hoist-variables': 7.22.5 '@babel/helper-split-export-declaration': 7.22.6 - '@babel/parser': 7.28.4 - '@babel/types': 7.28.4 + '@babel/parser': 7.21.4 + '@babel/types': 7.24.6 debug: 4.4.3 globals: 11.12.0 transitivePeerDependencies: @@ -3592,12 +3063,27 @@ packages: - supports-color dev: true + /@babel/traverse@7.28.5: + resolution: {integrity: sha512-TCCj4t55U90khlYkVV/0TfkJkAkUg3jZFA3Neb7unZT8CPok7iiRfaX0F+WnqWqt7OxhOn0uBKXCw4lbL8W0aQ==} + engines: {node: '>=6.9.0'} + dependencies: + '@babel/code-frame': 7.27.1 + '@babel/generator': 7.28.5 + '@babel/helper-globals': 7.28.0 + '@babel/parser': 7.28.5 + '@babel/template': 7.27.2 + '@babel/types': 7.28.5 + debug: 4.4.3 + transitivePeerDependencies: + - supports-color + dev: true + /@babel/types@7.24.6: resolution: {integrity: sha512-WaMsgi6Q8zMgMth93GvWPXkhAIEobfsIkLTacoVZoK1J0CevIPGYY2Vo5YvJGqyHqXM6P4ppOYGsIRU8MM9pFQ==} engines: {node: '>=6.9.0'} dependencies: - '@babel/helper-string-parser': 7.27.1 - '@babel/helper-validator-identifier': 7.27.1 + '@babel/helper-string-parser': 7.24.6 + '@babel/helper-validator-identifier': 7.24.6 to-fast-properties: 2.0.0 dev: true @@ -3615,6 +3101,14 @@ packages: '@babel/helper-string-parser': 7.27.1 '@babel/helper-validator-identifier': 7.27.1 + /@babel/types@7.28.5: + resolution: {integrity: sha512-qQ5m48eI/MFLQ5PxQj4PFaprjyCTLI37ElWMmNs0K8Lk3dVeOdNpB3ks8jc7yM5CDmVC73eMVk/trk3fgmrUpA==} + engines: {node: '>=6.9.0'} + dependencies: + '@babel/helper-string-parser': 7.27.1 + '@babel/helper-validator-identifier': 7.28.5 + dev: true + /@bcoe/v8-coverage@0.2.3: resolution: {integrity: sha512-0hYQ8SB4Db5zvZB4axdMHGwEaQjkZzFjQiN9LVYvIFB2nSUHW9tYpxWriPrWDASIxiaXax83REcLxuSdnGPZtw==} dev: true @@ -4831,7 +4325,6 @@ packages: strip-ansi-cjs: /strip-ansi@6.0.1 wrap-ansi: 8.1.0 wrap-ansi-cjs: /wrap-ansi@7.0.0 - dev: true /@isaacs/fs-minipass@4.0.1: resolution: {integrity: sha512-wgm9Ehl2jpeqP3zw/7mo3kRHFp5MEDhqAdwy1fTGkHAwnkGOVsgpvQhL8B5n1qlb01jV3n/bI0ZfZp5lWA1k4w==} @@ -5095,11 +4588,11 @@ packages: peerDependencies: '@jimp/custom': '>=0.3.5' dependencies: - '@babel/runtime': 7.26.0 + '@babel/runtime': 7.28.4 '@jimp/custom': 0.9.8 '@jimp/utils': 0.9.8 bmp-js: 0.1.0 - core-js: 3.41.0 + core-js: 3.47.0 dev: true /@jimp/core@0.22.12: @@ -5120,11 +4613,11 @@ packages: /@jimp/core@0.9.8: resolution: {integrity: sha512-N4GCjcXb0QwR5GBABDK2xQ3cKyaF7LlCYeJEG9mV7G/ynBoRqJe4JA6YKU9Ww9imGkci/4A594nQo8tUIqdcBw==} dependencies: - '@babel/runtime': 7.26.0 + '@babel/runtime': 7.28.4 '@jimp/utils': 0.9.8 any-base: 1.1.0 buffer: 5.7.1 - core-js: 3.41.0 + core-js: 3.47.0 exif-parser: 0.1.12 file-type: 9.0.0 load-bmfont: 1.4.2 @@ -5147,9 +4640,9 @@ packages: /@jimp/custom@0.9.8: resolution: {integrity: sha512-1UpJjI7fhX02BWLJ/KEqPwkHH60eNkCNeD6hEd+IZdTwLXfZCfFiM5BVlpgiZYZJSsVoRiAL4ne2Q5mCiKPKyw==} dependencies: - '@babel/runtime': 7.26.0 + '@babel/runtime': 7.28.4 '@jimp/core': 0.9.8 - core-js: 3.41.0 + core-js: 3.47.0 transitivePeerDependencies: - debug dev: true @@ -5170,10 +4663,10 @@ packages: peerDependencies: '@jimp/custom': '>=0.3.5' dependencies: - '@babel/runtime': 7.26.0 + '@babel/runtime': 7.28.4 '@jimp/custom': 0.9.8 '@jimp/utils': 0.9.8 - core-js: 3.41.0 + core-js: 3.47.0 omggif: 1.0.10 dev: true @@ -5192,10 +4685,10 @@ packages: peerDependencies: '@jimp/custom': '>=0.3.5' dependencies: - '@babel/runtime': 7.26.0 + '@babel/runtime': 7.28.4 '@jimp/custom': 0.9.8 '@jimp/utils': 0.9.8 - core-js: 3.41.0 + core-js: 3.47.0 jpeg-js: 0.3.7 dev: true @@ -5213,10 +4706,10 @@ packages: peerDependencies: '@jimp/custom': '>=0.3.5' dependencies: - '@babel/runtime': 7.26.0 + '@babel/runtime': 7.28.4 '@jimp/custom': 0.9.8 '@jimp/utils': 0.9.8 - core-js: 3.41.0 + core-js: 3.47.0 dev: true /@jimp/plugin-blur@0.22.12(@jimp/custom@0.22.12): @@ -5233,10 +4726,10 @@ packages: peerDependencies: '@jimp/custom': '>=0.3.5' dependencies: - '@babel/runtime': 7.26.0 + '@babel/runtime': 7.28.4 '@jimp/custom': 0.9.8 '@jimp/utils': 0.9.8 - core-js: 3.41.0 + core-js: 3.47.0 dev: true /@jimp/plugin-circle@0.22.12(@jimp/custom@0.22.12): @@ -5253,10 +4746,10 @@ packages: peerDependencies: '@jimp/custom': '>=0.3.5' dependencies: - '@babel/runtime': 7.26.0 + '@babel/runtime': 7.28.4 '@jimp/custom': 0.9.8 '@jimp/utils': 0.9.8 - core-js: 3.41.0 + core-js: 3.47.0 dev: true /@jimp/plugin-color@0.22.12(@jimp/custom@0.22.12): @@ -5274,10 +4767,10 @@ packages: peerDependencies: '@jimp/custom': '>=0.3.5' dependencies: - '@babel/runtime': 7.26.0 + '@babel/runtime': 7.28.4 '@jimp/custom': 0.9.8 '@jimp/utils': 0.9.8 - core-js: 3.41.0 + core-js: 3.47.0 tinycolor2: 1.6.0 dev: true @@ -5304,13 +4797,13 @@ packages: '@jimp/plugin-resize': '>=0.3.5' '@jimp/plugin-scale': '>=0.3.5' dependencies: - '@babel/runtime': 7.26.0 + '@babel/runtime': 7.28.4 '@jimp/custom': 0.9.8 '@jimp/plugin-blit': 0.9.8(@jimp/custom@0.9.8) '@jimp/plugin-resize': 0.9.8(@jimp/custom@0.9.8) '@jimp/plugin-scale': 0.9.8(@jimp/custom@0.9.8)(@jimp/plugin-resize@0.9.8) '@jimp/utils': 0.9.8 - core-js: 3.41.0 + core-js: 3.47.0 dev: true /@jimp/plugin-cover@0.22.12(@jimp/custom@0.22.12)(@jimp/plugin-crop@0.22.12)(@jimp/plugin-resize@0.22.12)(@jimp/plugin-scale@0.22.12): @@ -5336,13 +4829,13 @@ packages: '@jimp/plugin-resize': '>=0.3.5' '@jimp/plugin-scale': '>=0.3.5' dependencies: - '@babel/runtime': 7.26.0 + '@babel/runtime': 7.28.4 '@jimp/custom': 0.9.8 '@jimp/plugin-crop': 0.9.8(@jimp/custom@0.9.8) '@jimp/plugin-resize': 0.9.8(@jimp/custom@0.9.8) '@jimp/plugin-scale': 0.9.8(@jimp/custom@0.9.8)(@jimp/plugin-resize@0.9.8) '@jimp/utils': 0.9.8 - core-js: 3.41.0 + core-js: 3.47.0 dev: true /@jimp/plugin-crop@0.22.12(@jimp/custom@0.22.12): @@ -5359,10 +4852,10 @@ packages: peerDependencies: '@jimp/custom': '>=0.3.5' dependencies: - '@babel/runtime': 7.26.0 + '@babel/runtime': 7.28.4 '@jimp/custom': 0.9.8 '@jimp/utils': 0.9.8 - core-js: 3.41.0 + core-js: 3.47.0 dev: true /@jimp/plugin-displace@0.22.12(@jimp/custom@0.22.12): @@ -5379,10 +4872,10 @@ packages: peerDependencies: '@jimp/custom': '>=0.3.5' dependencies: - '@babel/runtime': 7.26.0 + '@babel/runtime': 7.28.4 '@jimp/custom': 0.9.8 '@jimp/utils': 0.9.8 - core-js: 3.41.0 + core-js: 3.47.0 dev: true /@jimp/plugin-dither@0.22.12(@jimp/custom@0.22.12): @@ -5399,10 +4892,10 @@ packages: peerDependencies: '@jimp/custom': '>=0.3.5' dependencies: - '@babel/runtime': 7.26.0 + '@babel/runtime': 7.28.4 '@jimp/custom': 0.9.8 '@jimp/utils': 0.9.8 - core-js: 3.41.0 + core-js: 3.47.0 dev: true /@jimp/plugin-fisheye@0.22.12(@jimp/custom@0.22.12): @@ -5419,10 +4912,10 @@ packages: peerDependencies: '@jimp/custom': '>=0.3.5' dependencies: - '@babel/runtime': 7.26.0 + '@babel/runtime': 7.28.4 '@jimp/custom': 0.9.8 '@jimp/utils': 0.9.8 - core-js: 3.41.0 + core-js: 3.47.0 dev: true /@jimp/plugin-flip@0.22.12(@jimp/custom@0.22.12)(@jimp/plugin-rotate@0.22.12): @@ -5442,11 +4935,11 @@ packages: '@jimp/custom': '>=0.3.5' '@jimp/plugin-rotate': '>=0.3.5' dependencies: - '@babel/runtime': 7.26.0 + '@babel/runtime': 7.28.4 '@jimp/custom': 0.9.8 '@jimp/plugin-rotate': 0.9.8(@jimp/custom@0.9.8)(@jimp/plugin-blit@0.9.8)(@jimp/plugin-crop@0.9.8)(@jimp/plugin-resize@0.9.8) '@jimp/utils': 0.9.8 - core-js: 3.41.0 + core-js: 3.47.0 dev: true /@jimp/plugin-gaussian@0.22.12(@jimp/custom@0.22.12): @@ -5463,10 +4956,10 @@ packages: peerDependencies: '@jimp/custom': '>=0.3.5' dependencies: - '@babel/runtime': 7.26.0 + '@babel/runtime': 7.28.4 '@jimp/custom': 0.9.8 '@jimp/utils': 0.9.8 - core-js: 3.41.0 + core-js: 3.47.0 dev: true /@jimp/plugin-invert@0.22.12(@jimp/custom@0.22.12): @@ -5483,10 +4976,10 @@ packages: peerDependencies: '@jimp/custom': '>=0.3.5' dependencies: - '@babel/runtime': 7.26.0 + '@babel/runtime': 7.28.4 '@jimp/custom': 0.9.8 '@jimp/utils': 0.9.8 - core-js: 3.41.0 + core-js: 3.47.0 dev: true /@jimp/plugin-mask@0.22.12(@jimp/custom@0.22.12): @@ -5503,10 +4996,10 @@ packages: peerDependencies: '@jimp/custom': '>=0.3.5' dependencies: - '@babel/runtime': 7.26.0 + '@babel/runtime': 7.28.4 '@jimp/custom': 0.9.8 '@jimp/utils': 0.9.8 - core-js: 3.41.0 + core-js: 3.47.0 dev: true /@jimp/plugin-normalize@0.22.12(@jimp/custom@0.22.12): @@ -5523,10 +5016,10 @@ packages: peerDependencies: '@jimp/custom': '>=0.3.5' dependencies: - '@babel/runtime': 7.26.0 + '@babel/runtime': 7.28.4 '@jimp/custom': 0.9.8 '@jimp/utils': 0.9.8 - core-js: 3.41.0 + core-js: 3.47.0 dev: true /@jimp/plugin-print@0.22.12(@jimp/custom@0.22.12)(@jimp/plugin-blit@0.22.12): @@ -5549,11 +5042,11 @@ packages: '@jimp/custom': '>=0.3.5' '@jimp/plugin-blit': '>=0.3.5' dependencies: - '@babel/runtime': 7.26.0 + '@babel/runtime': 7.28.4 '@jimp/custom': 0.9.8 '@jimp/plugin-blit': 0.9.8(@jimp/custom@0.9.8) '@jimp/utils': 0.9.8 - core-js: 3.41.0 + core-js: 3.47.0 load-bmfont: 1.4.2 transitivePeerDependencies: - debug @@ -5573,10 +5066,10 @@ packages: peerDependencies: '@jimp/custom': '>=0.3.5' dependencies: - '@babel/runtime': 7.26.0 + '@babel/runtime': 7.28.4 '@jimp/custom': 0.9.8 '@jimp/utils': 0.9.8 - core-js: 3.41.0 + core-js: 3.47.0 dev: true /@jimp/plugin-rotate@0.22.12(@jimp/custom@0.22.12)(@jimp/plugin-blit@0.22.12)(@jimp/plugin-crop@0.22.12)(@jimp/plugin-resize@0.22.12): @@ -5602,13 +5095,13 @@ packages: '@jimp/plugin-crop': '>=0.3.5' '@jimp/plugin-resize': '>=0.3.5' dependencies: - '@babel/runtime': 7.26.0 + '@babel/runtime': 7.28.4 '@jimp/custom': 0.9.8 '@jimp/plugin-blit': 0.9.8(@jimp/custom@0.9.8) '@jimp/plugin-crop': 0.9.8(@jimp/custom@0.9.8) '@jimp/plugin-resize': 0.9.8(@jimp/custom@0.9.8) '@jimp/utils': 0.9.8 - core-js: 3.41.0 + core-js: 3.47.0 dev: true /@jimp/plugin-scale@0.22.12(@jimp/custom@0.22.12)(@jimp/plugin-resize@0.22.12): @@ -5628,11 +5121,11 @@ packages: '@jimp/custom': '>=0.3.5' '@jimp/plugin-resize': '>=0.3.5' dependencies: - '@babel/runtime': 7.26.0 + '@babel/runtime': 7.28.4 '@jimp/custom': 0.9.8 '@jimp/plugin-resize': 0.9.8(@jimp/custom@0.9.8) '@jimp/utils': 0.9.8 - core-js: 3.41.0 + core-js: 3.47.0 dev: true /@jimp/plugin-shadow@0.22.12(@jimp/custom@0.22.12)(@jimp/plugin-blur@0.22.12)(@jimp/plugin-resize@0.22.12): @@ -5655,12 +5148,12 @@ packages: '@jimp/plugin-blur': '>=0.3.5' '@jimp/plugin-resize': '>=0.3.5' dependencies: - '@babel/runtime': 7.26.0 + '@babel/runtime': 7.28.4 '@jimp/custom': 0.9.8 '@jimp/plugin-blur': 0.9.8(@jimp/custom@0.9.8) '@jimp/plugin-resize': 0.9.8(@jimp/custom@0.9.8) '@jimp/utils': 0.9.8 - core-js: 3.41.0 + core-js: 3.47.0 dev: true /@jimp/plugin-threshold@0.22.12(@jimp/custom@0.22.12)(@jimp/plugin-color@0.22.12)(@jimp/plugin-resize@0.22.12): @@ -5683,12 +5176,12 @@ packages: '@jimp/plugin-color': '>=0.8.0' '@jimp/plugin-resize': '>=0.8.0' dependencies: - '@babel/runtime': 7.26.0 + '@babel/runtime': 7.28.4 '@jimp/custom': 0.9.8 '@jimp/plugin-color': 0.9.8(@jimp/custom@0.9.8) '@jimp/plugin-resize': 0.9.8(@jimp/custom@0.9.8) '@jimp/utils': 0.9.8 - core-js: 3.41.0 + core-js: 3.47.0 dev: true /@jimp/plugins@0.22.12(@jimp/custom@0.22.12): @@ -5728,7 +5221,7 @@ packages: peerDependencies: '@jimp/custom': '>=0.3.5' dependencies: - '@babel/runtime': 7.26.0 + '@babel/runtime': 7.28.4 '@jimp/custom': 0.9.8 '@jimp/plugin-blit': 0.9.8(@jimp/custom@0.9.8) '@jimp/plugin-blur': 0.9.8(@jimp/custom@0.9.8) @@ -5751,7 +5244,7 @@ packages: '@jimp/plugin-scale': 0.9.8(@jimp/custom@0.9.8)(@jimp/plugin-resize@0.9.8) '@jimp/plugin-shadow': 0.9.8(@jimp/custom@0.9.8)(@jimp/plugin-blur@0.9.8)(@jimp/plugin-resize@0.9.8) '@jimp/plugin-threshold': 0.9.8(@jimp/custom@0.9.8)(@jimp/plugin-color@0.9.8)(@jimp/plugin-resize@0.9.8) - core-js: 3.41.0 + core-js: 3.47.0 timm: 1.7.1 transitivePeerDependencies: - debug @@ -5772,10 +5265,10 @@ packages: peerDependencies: '@jimp/custom': '>=0.3.5' dependencies: - '@babel/runtime': 7.26.0 + '@babel/runtime': 7.28.4 '@jimp/custom': 0.9.8 '@jimp/utils': 0.9.8 - core-js: 3.41.0 + core-js: 3.47.0 pngjs: 3.4.0 dev: true @@ -5793,9 +5286,9 @@ packages: peerDependencies: '@jimp/custom': '>=0.3.5' dependencies: - '@babel/runtime': 7.26.0 + '@babel/runtime': 7.28.4 '@jimp/custom': 0.9.8 - core-js: 3.41.0 + core-js: 3.47.0 utif: 2.0.1 dev: true @@ -5818,14 +5311,14 @@ packages: peerDependencies: '@jimp/custom': '>=0.3.5' dependencies: - '@babel/runtime': 7.26.0 + '@babel/runtime': 7.28.4 '@jimp/bmp': 0.9.8(@jimp/custom@0.9.8) '@jimp/custom': 0.9.8 '@jimp/gif': 0.9.8(@jimp/custom@0.9.8) '@jimp/jpeg': 0.9.8(@jimp/custom@0.9.8) '@jimp/png': 0.9.8(@jimp/custom@0.9.8) '@jimp/tiff': 0.9.8(@jimp/custom@0.9.8) - core-js: 3.41.0 + core-js: 3.47.0 timm: 1.7.1 dev: true @@ -5838,8 +5331,8 @@ packages: /@jimp/utils@0.9.8: resolution: {integrity: sha512-UK0Fu0eevQlpRXq5ff4o/71HJlpX9wJMddJjMYg9vUqCCl8ZnumRAljfShHFhGyO+Vc9IzN6dd8Y5JZZTp1KOw==} dependencies: - '@babel/runtime': 7.26.0 - core-js: 3.41.0 + '@babel/runtime': 7.28.4 + core-js: 3.47.0 dev: true /@jridgewell/gen-mapping@0.3.13: @@ -6079,7 +5572,7 @@ packages: - supports-color dev: false - /@nutui/replace-icons@1.0.3(@types/node@18.19.70)(less@4.2.0)(stylus@0.55.0): + /@nutui/replace-icons@1.0.3(@types/node@18.19.70)(less@4.4.2)(stylus@0.64.0): resolution: {integrity: sha512-O9QkoNSKrBNGus3SH30Sd5qM/RVXG/jg7gAtf8RRT2MkorxrKpcQYTJbR3LWhKABprXLk+AE6r+fVQNs+xqUFA==} dependencies: '@babel/cli': 7.26.4(@babel/core@7.25.2) @@ -6089,7 +5582,7 @@ packages: '@babel/preset-react': 7.26.3(@babel/core@7.25.2) '@types/babel__core': 7.20.5 '@types/babel__generator': 7.6.8 - vitest: 1.6.0(@types/node@18.19.70)(less@4.2.0)(stylus@0.55.0) + vitest: 1.6.0(@types/node@18.19.70)(less@4.4.2)(stylus@0.64.0) transitivePeerDependencies: - '@edge-runtime/vm' - '@types/node' @@ -6158,40 +5651,40 @@ packages: - supports-color dev: true - /@parcel/watcher-android-arm64@2.5.0: - resolution: {integrity: sha512-qlX4eS28bUcQCdribHkg/herLe+0A9RyYC+mm2PXpncit8z5b3nSqGVzMNR3CmtAOgRutiZ02eIJJgP/b1iEFQ==} + /@parcel/watcher-android-arm64@2.5.1: + resolution: {integrity: sha512-KF8+j9nNbUN8vzOFDpRMsaKBHZ/mcjEjMToVMJOhTozkDonQFFrRcfdLWn6yWKCmJKmdVxSgHiYvTCef4/qcBA==} engines: {node: '>= 10.0.0'} cpu: [arm64] os: [android] requiresBuild: true optional: true - /@parcel/watcher-darwin-arm64@2.5.0: - resolution: {integrity: sha512-hyZ3TANnzGfLpRA2s/4U1kbw2ZI4qGxaRJbBH2DCSREFfubMswheh8TeiC1sGZ3z2jUf3s37P0BBlrD3sjVTUw==} + /@parcel/watcher-darwin-arm64@2.5.1: + resolution: {integrity: sha512-eAzPv5osDmZyBhou8PoF4i6RQXAfeKL9tjb3QzYuccXFMQU0ruIc/POh30ePnaOyD1UXdlKguHBmsTs53tVoPw==} engines: {node: '>= 10.0.0'} cpu: [arm64] os: [darwin] requiresBuild: true optional: true - /@parcel/watcher-darwin-x64@2.5.0: - resolution: {integrity: sha512-9rhlwd78saKf18fT869/poydQK8YqlU26TMiNg7AIu7eBp9adqbJZqmdFOsbZ5cnLp5XvRo9wcFmNHgHdWaGYA==} + /@parcel/watcher-darwin-x64@2.5.1: + resolution: {integrity: sha512-1ZXDthrnNmwv10A0/3AJNZ9JGlzrF82i3gNQcWOzd7nJ8aj+ILyW1MTxVk35Db0u91oD5Nlk9MBiujMlwmeXZg==} engines: {node: '>= 10.0.0'} cpu: [x64] os: [darwin] requiresBuild: true optional: true - /@parcel/watcher-freebsd-x64@2.5.0: - resolution: {integrity: sha512-syvfhZzyM8kErg3VF0xpV8dixJ+RzbUaaGaeb7uDuz0D3FK97/mZ5AJQ3XNnDsXX7KkFNtyQyFrXZzQIcN49Tw==} + /@parcel/watcher-freebsd-x64@2.5.1: + resolution: {integrity: sha512-SI4eljM7Flp9yPuKi8W0ird8TI/JK6CSxju3NojVI6BjHsTyK7zxA9urjVjEKJ5MBYC+bLmMcbAWlZ+rFkLpJQ==} engines: {node: '>= 10.0.0'} cpu: [x64] os: [freebsd] requiresBuild: true optional: true - /@parcel/watcher-linux-arm-glibc@2.5.0: - resolution: {integrity: sha512-0VQY1K35DQET3dVYWpOaPFecqOT9dbuCfzjxoQyif1Wc574t3kOSkKevULddcR9znz1TcklCE7Ht6NIxjvTqLA==} + /@parcel/watcher-linux-arm-glibc@2.5.1: + resolution: {integrity: sha512-RCdZlEyTs8geyBkkcnPWvtXLY44BCeZKmGYRtSgtwwnHR4dxfHRG3gR99XdMEdQ7KeiDdasJwwvNSF5jKtDwdA==} engines: {node: '>= 10.0.0'} cpu: [arm] os: [linux] @@ -6199,8 +5692,8 @@ packages: requiresBuild: true optional: true - /@parcel/watcher-linux-arm-musl@2.5.0: - resolution: {integrity: sha512-6uHywSIzz8+vi2lAzFeltnYbdHsDm3iIB57d4g5oaB9vKwjb6N6dRIgZMujw4nm5r6v9/BQH0noq6DzHrqr2pA==} + /@parcel/watcher-linux-arm-musl@2.5.1: + resolution: {integrity: sha512-6E+m/Mm1t1yhB8X412stiKFG3XykmgdIOqhjWj+VL8oHkKABfu/gjFj8DvLrYVHSBNC+/u5PeNrujiSQ1zwd1Q==} engines: {node: '>= 10.0.0'} cpu: [arm] os: [linux] @@ -6208,8 +5701,8 @@ packages: requiresBuild: true optional: true - /@parcel/watcher-linux-arm64-glibc@2.5.0: - resolution: {integrity: sha512-BfNjXwZKxBy4WibDb/LDCriWSKLz+jJRL3cM/DllnHH5QUyoiUNEp3GmL80ZqxeumoADfCCP19+qiYiC8gUBjA==} + /@parcel/watcher-linux-arm64-glibc@2.5.1: + resolution: {integrity: sha512-LrGp+f02yU3BN9A+DGuY3v3bmnFUggAITBGriZHUREfNEzZh/GO06FF5u2kx8x+GBEUYfyTGamol4j3m9ANe8w==} engines: {node: '>= 10.0.0'} cpu: [arm64] os: [linux] @@ -6217,8 +5710,8 @@ packages: requiresBuild: true optional: true - /@parcel/watcher-linux-arm64-musl@2.5.0: - resolution: {integrity: sha512-S1qARKOphxfiBEkwLUbHjCY9BWPdWnW9j7f7Hb2jPplu8UZ3nes7zpPOW9bkLbHRvWM0WDTsjdOTUgW0xLBN1Q==} + /@parcel/watcher-linux-arm64-musl@2.5.1: + resolution: {integrity: sha512-cFOjABi92pMYRXS7AcQv9/M1YuKRw8SZniCDw0ssQb/noPkRzA+HBDkwmyOJYp5wXcsTrhxO0zq1U11cK9jsFg==} engines: {node: '>= 10.0.0'} cpu: [arm64] os: [linux] @@ -6226,8 +5719,8 @@ packages: requiresBuild: true optional: true - /@parcel/watcher-linux-x64-glibc@2.5.0: - resolution: {integrity: sha512-d9AOkusyXARkFD66S6zlGXyzx5RvY+chTP9Jp0ypSTC9d4lzyRs9ovGf/80VCxjKddcUvnsGwCHWuF2EoPgWjw==} + /@parcel/watcher-linux-x64-glibc@2.5.1: + resolution: {integrity: sha512-GcESn8NZySmfwlTsIur+49yDqSny2IhPeZfXunQi48DMugKeZ7uy1FX83pO0X22sHntJ4Ub+9k34XQCX+oHt2A==} engines: {node: '>= 10.0.0'} cpu: [x64] os: [linux] @@ -6235,8 +5728,8 @@ packages: requiresBuild: true optional: true - /@parcel/watcher-linux-x64-musl@2.5.0: - resolution: {integrity: sha512-iqOC+GoTDoFyk/VYSFHwjHhYrk8bljW6zOhPuhi5t9ulqiYq1togGJB5e3PwYVFFfeVgc6pbz3JdQyDoBszVaA==} + /@parcel/watcher-linux-x64-musl@2.5.1: + resolution: {integrity: sha512-n0E2EQbatQ3bXhcH2D1XIAANAcTZkQICBPVaxMeaCVBtOpBZpWJuf7LwyWPSBDITb7In8mqQgJ7gH8CILCURXg==} engines: {node: '>= 10.0.0'} cpu: [x64] os: [linux] @@ -6244,32 +5737,32 @@ packages: requiresBuild: true optional: true - /@parcel/watcher-win32-arm64@2.5.0: - resolution: {integrity: sha512-twtft1d+JRNkM5YbmexfcH/N4znDtjgysFaV9zvZmmJezQsKpkfLYJ+JFV3uygugK6AtIM2oADPkB2AdhBrNig==} + /@parcel/watcher-win32-arm64@2.5.1: + resolution: {integrity: sha512-RFzklRvmc3PkjKjry3hLF9wD7ppR4AKcWNzH7kXR7GUe0Igb3Nz8fyPwtZCSquGrhU5HhUNDr/mKBqj7tqA2Vw==} engines: {node: '>= 10.0.0'} cpu: [arm64] os: [win32] requiresBuild: true optional: true - /@parcel/watcher-win32-ia32@2.5.0: - resolution: {integrity: sha512-+rgpsNRKwo8A53elqbbHXdOMtY/tAtTzManTWShB5Kk54N8Q9mzNWV7tV+IbGueCbcj826MfWGU3mprWtuf1TA==} + /@parcel/watcher-win32-ia32@2.5.1: + resolution: {integrity: sha512-c2KkcVN+NJmuA7CGlaGD1qJh1cLfDnQsHjE89E60vUEMlqduHGCdCLJCID5geFVM0dOtA3ZiIO8BoEQmzQVfpQ==} engines: {node: '>= 10.0.0'} cpu: [ia32] os: [win32] requiresBuild: true optional: true - /@parcel/watcher-win32-x64@2.5.0: - resolution: {integrity: sha512-lPrxve92zEHdgeff3aiu4gDOIt4u7sJYha6wbdEZDCDUhtjTsOMiaJzG5lMY4GkWH8p0fMmO2Ppq5G5XXG+DQw==} + /@parcel/watcher-win32-x64@2.5.1: + resolution: {integrity: sha512-9lHBdJITeNR++EvSQVUcaZoWupyHfXe1jZvGZ06O/5MflPcuPLtEphScIBL+AiCWBO46tDSHzWyD0uDmmZqsgA==} engines: {node: '>= 10.0.0'} cpu: [x64] os: [win32] requiresBuild: true optional: true - /@parcel/watcher@2.5.0: - resolution: {integrity: sha512-i0GV1yJnm2n3Yq1qw6QrUrd/LI9bE8WEBOTtOkpCXHHdyN3TAGgqAK/DAT05z4fq2x04cARXt2pDmjWjL92iTQ==} + /@parcel/watcher@2.5.1: + resolution: {integrity: sha512-dfUnCxiN9H4ap84DvD2ubjw+3vUNpstxa0TneY/Paat8a3R4uQZDLSvWjmznAY/DoahqTHl9V46HF/Zs3F29pg==} engines: {node: '>= 10.0.0'} requiresBuild: true dependencies: @@ -6278,26 +5771,25 @@ packages: micromatch: 4.0.8 node-addon-api: 7.1.1 optionalDependencies: - '@parcel/watcher-android-arm64': 2.5.0 - '@parcel/watcher-darwin-arm64': 2.5.0 - '@parcel/watcher-darwin-x64': 2.5.0 - '@parcel/watcher-freebsd-x64': 2.5.0 - '@parcel/watcher-linux-arm-glibc': 2.5.0 - '@parcel/watcher-linux-arm-musl': 2.5.0 - '@parcel/watcher-linux-arm64-glibc': 2.5.0 - '@parcel/watcher-linux-arm64-musl': 2.5.0 - '@parcel/watcher-linux-x64-glibc': 2.5.0 - '@parcel/watcher-linux-x64-musl': 2.5.0 - '@parcel/watcher-win32-arm64': 2.5.0 - '@parcel/watcher-win32-ia32': 2.5.0 - '@parcel/watcher-win32-x64': 2.5.0 + '@parcel/watcher-android-arm64': 2.5.1 + '@parcel/watcher-darwin-arm64': 2.5.1 + '@parcel/watcher-darwin-x64': 2.5.1 + '@parcel/watcher-freebsd-x64': 2.5.1 + '@parcel/watcher-linux-arm-glibc': 2.5.1 + '@parcel/watcher-linux-arm-musl': 2.5.1 + '@parcel/watcher-linux-arm64-glibc': 2.5.1 + '@parcel/watcher-linux-arm64-musl': 2.5.1 + '@parcel/watcher-linux-x64-glibc': 2.5.1 + '@parcel/watcher-linux-x64-musl': 2.5.1 + '@parcel/watcher-win32-arm64': 2.5.1 + '@parcel/watcher-win32-ia32': 2.5.1 + '@parcel/watcher-win32-x64': 2.5.1 optional: true /@pkgjs/parseargs@0.11.0: resolution: {integrity: sha512-+1VkjdD0QBLPodGrJUeqarH8VAIvQODIbwh9XpP5Syisf7YoQgsJKPNFoqqLQlu+VQ/tVSshMR6loPMn8U+dPg==} engines: {node: '>=14'} requiresBuild: true - dev: true optional: true /@pmmmwh/react-refresh-webpack-plugin@0.5.15(react-refresh@0.11.0)(webpack@5.94.0): @@ -7034,7 +6526,7 @@ packages: - supports-color dev: true - /@tarojs/components-react@4.1.7(@tarojs/helper@4.1.7)(@types/react@18.3.11)(postcss@8.4.49)(react@18.3.1)(solid-js@1.9.5)(vue@3.5.22)(webpack@5.94.0): + /@tarojs/components-react@4.1.7(@tarojs/helper@4.1.7)(@types/react@18.3.11)(postcss@8.4.49)(react@18.3.1)(solid-js@1.9.10)(vue@3.5.22)(webpack@5.94.0): resolution: {integrity: sha512-FFA7LOEcYTyz/lT/zliSOFisHReNYlKxN3gD26DWUwpXRmVE/drDsccomLx911BMZ0LnlKTaLfKI99TJ2YgfZw==} peerDependencies: react: '*' @@ -7047,7 +6539,7 @@ packages: classnames: 2.5.1 identity-obj-proxy: 3.0.0 react: 18.3.1 - solid-js: 1.9.5 + solid-js: 1.9.10 swiper: 11.1.15 tslib: 2.8.1 transitivePeerDependencies: @@ -7364,12 +6856,12 @@ packages: '@tarojs/shared': 4.1.7 dev: false - /@tarojs/plugin-platform-h5@4.1.7(@tarojs/taro@4.1.7)(@types/react@18.3.11)(postcss@8.4.49)(react@18.3.1)(solid-js@1.9.5)(vue@3.5.22)(webpack@5.94.0): + /@tarojs/plugin-platform-h5@4.1.7(@tarojs/taro@4.1.7)(@types/react@18.3.11)(postcss@8.4.49)(react@18.3.1)(solid-js@1.9.10)(vue@3.5.22)(webpack@5.94.0): resolution: {integrity: sha512-CpdsT28LawrPHVGDk7Zdv/koiAczqQS7FMShzyJp2xvZ9Iu+s6fpkhOESJJzz5xITdrFAtyYRioO4YApy7ilNg==} dependencies: '@babel/core': 7.25.2 '@tarojs/components': 4.1.7(@tarojs/helper@4.1.7)(@types/react@18.3.11)(postcss@8.4.49)(vue@3.5.22)(webpack@5.94.0) - '@tarojs/components-react': 4.1.7(@tarojs/helper@4.1.7)(@types/react@18.3.11)(postcss@8.4.49)(react@18.3.1)(solid-js@1.9.5)(vue@3.5.22)(webpack@5.94.0) + '@tarojs/components-react': 4.1.7(@tarojs/helper@4.1.7)(@types/react@18.3.11)(postcss@8.4.49)(react@18.3.1)(solid-js@1.9.10)(vue@3.5.22)(webpack@5.94.0) '@tarojs/helper': 4.1.7 '@tarojs/runtime': 4.1.7 '@tarojs/service': 4.1.7 @@ -7620,7 +7112,7 @@ packages: - supports-color dev: true - /@tarojs/webpack5-runner@4.1.7(@babel/core@7.25.2)(@swc/core@1.3.96)(@tarojs/runtime@4.1.7)(less@4.2.0)(postcss@8.4.49)(stylus@0.55.0)(typescript@5.1.6)(webpack@5.94.0): + /@tarojs/webpack5-runner@4.1.7(@babel/core@7.25.2)(@swc/core@1.3.96)(@tarojs/runtime@4.1.7)(less@4.4.2)(postcss@8.4.49)(stylus@0.64.0)(typescript@5.1.6)(webpack@5.94.0): resolution: {integrity: sha512-R0DOnb46MSUv4mJG6erkOvG4pSLogqq1Ibo1Q+rx6HcvncQlguE21gCCD5hkBOk87dXOTEQ0PSwj90G54zICdQ==} engines: {node: '>= 18'} peerDependencies: @@ -7659,8 +7151,8 @@ packages: html-minifier: 4.0.0 html-webpack-plugin: 5.6.3(webpack@5.94.0) jsdom: 24.1.3 - less: 4.2.0 - less-loader: 12.2.0(less@4.2.0)(webpack@5.94.0) + less: 4.4.2 + less-loader: 12.2.0(less@4.4.2)(webpack@5.94.0) lightningcss: 1.29.3 loader-utils: 3.3.1 lodash: 4.17.21 @@ -7681,8 +7173,8 @@ packages: sass-loader: 14.2.1(webpack@5.94.0) sax: 1.2.4 style-loader: 3.3.4(webpack@5.94.0) - stylus: 0.55.0 - stylus-loader: 8.1.1(stylus@0.55.0)(webpack@5.94.0) + stylus: 0.64.0 + stylus-loader: 8.1.1(stylus@0.64.0)(webpack@5.94.0) terser-webpack-plugin: 5.3.11(@swc/core@1.3.96)(esbuild@0.21.5)(webpack@5.94.0) vm2: 3.9.19 webpack: 5.94.0(@swc/core@1.3.96) @@ -8769,7 +8261,6 @@ packages: /ansi-regex@6.0.1: resolution: {integrity: sha512-n5M855fKb2SsfMIiFFoVrABHJC8QtHwVx+mHWP3QcEqBHYienj5dHSgjbxtC0WEZXYt4wcD6zrQElDPhFuZgfA==} engines: {node: '>=12'} - dev: true /ansi-styles@2.2.1: resolution: {integrity: sha512-kmCevFghRiWM7HB5zTPULl4r9bVFSWjz62MhqizDGUrq2NWuNMQyuv4tHHoKJHs69M/MF64lEcHdYIocrdWQYA==} @@ -8795,7 +8286,6 @@ packages: /ansi-styles@6.2.1: resolution: {integrity: sha512-bN798gFfQX+viw3R7yrGWRqnrN2oRkEkUjjl4JNn4E8GxxbjtG3FbrEIIY3l8/hrwUwIeCZvi4QuOTP4MErVug==} engines: {node: '>=12'} - dev: true /any-base@1.1.0: resolution: {integrity: sha512-uMgjozySS8adZZYePpaWs8cxB9/kdzmpX6SgJZ+wbz1K5eYk5QMYDVJaZKhxyIHUdnnJkfR7SVgStgH7LkGUyg==} @@ -8973,11 +8463,6 @@ packages: /asynckit@0.4.0: resolution: {integrity: sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q==} - /atob@2.1.2: - resolution: {integrity: sha512-Wm6ukoaOGJi/73p/cl2GvLjTI5JM1k/O14isD73YML8StrH/7/lRFgmg8nICZgD3bZZvjwCGxtMOD3wWNAu8cg==} - engines: {node: '>= 4.5.0'} - hasBin: true - /atomically@1.7.0: resolution: {integrity: sha512-Xcz9l0z7y9yQ9rdDaxlmaI4uJHf/T8g9hOEzJcsEqX2SjCj4J20uK7+ldkDHMbpJDK76wF7xEIgxc/vSlsfw5w==} engines: {node: '>=10.12.0'} @@ -8991,7 +8476,7 @@ packages: postcss: ^8.1.0 dependencies: browserslist: 4.24.3 - caniuse-lite: 1.0.30001690 + caniuse-lite: 1.0.30001755 fraction.js: 4.2.1 normalize-range: 0.1.2 picocolors: 1.1.1 @@ -9007,7 +8492,7 @@ packages: postcss: ^8.1.0 dependencies: browserslist: 4.24.4 - caniuse-lite: 1.0.30001715 + caniuse-lite: 1.0.30001755 fraction.js: 4.3.7 normalize-range: 0.1.2 picocolors: 1.1.1 @@ -9023,7 +8508,7 @@ packages: postcss: ^8.1.0 dependencies: browserslist: 4.24.4 - caniuse-lite: 1.0.30001715 + caniuse-lite: 1.0.30001755 fraction.js: 4.3.7 normalize-range: 0.1.2 picocolors: 1.1.1 @@ -9031,6 +8516,22 @@ packages: postcss-value-parser: 4.2.0 dev: true + /autoprefixer@10.4.22(postcss@8.5.6): + resolution: {integrity: sha512-ARe0v/t9gO28Bznv6GgqARmVqcWOV3mfgUPn9becPHMiD3o9BwlRgaeccZnwTpZ7Zwqrm+c1sUSsMxIzQzc8Xg==} + engines: {node: ^10 || ^12 || >=14} + hasBin: true + peerDependencies: + postcss: ^8.1.0 + dependencies: + browserslist: 4.28.0 + caniuse-lite: 1.0.30001755 + fraction.js: 5.3.4 + normalize-range: 0.1.2 + picocolors: 1.1.1 + postcss: 8.5.6 + postcss-value-parser: 4.2.0 + dev: true + /available-typed-arrays@1.0.7: resolution: {integrity: sha512-wvUjBtSGN7+7SjNpq/9M2Tg350UZD3q62IFZLbRAR1bSMlCo1ZaeW+BJ+D090e4hIIZLBcTDWe4Mh4jvUDajzQ==} engines: {node: '>= 0.4'} @@ -9100,7 +8601,7 @@ packages: debug: 2.6.9 json5: 0.5.1 lodash: 4.17.21 - minimatch: 3.1.2 + minimatch: 3.0.4 path-is-absolute: 1.0.1 private: 0.1.8 slash: 1.0.0 @@ -9361,7 +8862,7 @@ packages: peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/compat-data': 7.26.3 + '@babel/compat-data': 7.22.9 '@babel/core': 7.21.4 '@babel/helper-define-polyfill-provider': 0.3.3(@babel/core@7.21.4) semver: 6.3.1 @@ -9399,7 +8900,7 @@ packages: dependencies: '@babel/core': 7.21.4 '@babel/helper-define-polyfill-provider': 0.3.3(@babel/core@7.21.4) - core-js-compat: 3.39.0 + core-js-compat: 3.47.0 transitivePeerDependencies: - supports-color dev: true @@ -10026,6 +9527,11 @@ packages: hasBin: true dev: true + /baseline-browser-mapping@2.8.29: + resolution: {integrity: sha512-sXdt2elaVnhpDNRDz+1BDx1JQoJRuNk7oVlAlbGiFkLikHCAQiccexF/9e91zVi6RCgqspl04aP+6Cnl9zRLrA==} + hasBin: true + dev: true + /basic-ftp@5.0.5: resolution: {integrity: sha512-4Bcg1P8xhUuqcii/S0Z9wiHIrQVPMermM1any+MX5GeGD7faD3/msQUDGLol9wOcz4/jbg/WJnGqoJF6LiBdtg==} engines: {node: '>=10.0.0'} @@ -10124,11 +9630,17 @@ packages: balanced-match: 1.0.2 concat-map: 0.0.1 + /brace-expansion@1.1.12: + resolution: {integrity: sha512-9T9UjW3r0UW5c1Q7GTwllptXwhvYmEzFhzMfZ9H7FQWt+uZePjZPjBP/W1ZEyZ1twGWom5/56TF4lPcqjnDHcg==} + dependencies: + balanced-match: 1.0.2 + concat-map: 0.0.1 + dev: true + /brace-expansion@2.0.1: resolution: {integrity: sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==} dependencies: balanced-match: 1.0.2 - dev: true /braces@3.0.3: resolution: {integrity: sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA==} @@ -10141,7 +9653,7 @@ packages: engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7} hasBin: true dependencies: - caniuse-lite: 1.0.30001690 + caniuse-lite: 1.0.30001755 electron-to-chromium: 1.5.76 node-releases: 2.0.19 update-browserslist-db: 1.1.1(browserslist@4.24.3) @@ -10151,7 +9663,7 @@ packages: engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7} hasBin: true dependencies: - caniuse-lite: 1.0.30001715 + caniuse-lite: 1.0.30001755 electron-to-chromium: 1.5.76 node-releases: 2.0.19 update-browserslist-db: 1.1.1(browserslist@4.24.4) @@ -10162,12 +9674,24 @@ packages: hasBin: true dependencies: baseline-browser-mapping: 2.8.16 - caniuse-lite: 1.0.30001750 + caniuse-lite: 1.0.30001755 electron-to-chromium: 1.5.234 node-releases: 2.0.23 update-browserslist-db: 1.1.3(browserslist@4.26.3) dev: true + /browserslist@4.28.0: + resolution: {integrity: sha512-tbydkR/CxfMwelN0vwdP/pLkDwyAASZ+VfWm4EOwlB6SWhx1sYnWLqo8N5j0rAzPfzfRaxt0mM/4wPU/Su84RQ==} + engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7} + hasBin: true + dependencies: + baseline-browser-mapping: 2.8.29 + caniuse-lite: 1.0.30001755 + electron-to-chromium: 1.5.255 + node-releases: 2.0.27 + update-browserslist-db: 1.1.4(browserslist@4.28.0) + dev: true + /bser@2.1.1: resolution: {integrity: sha512-gQxTNE/GAfIIrmHLUE3oJyp5FO6HRBfhjnw4/wMmA63ZGDJnWBmgY/lyQBpnDUkGmAhbSe39tx2d/iTOAfglwQ==} dependencies: @@ -10272,7 +9796,7 @@ packages: dependencies: '@npmcli/fs': 4.0.0 fs-minipass: 3.0.3 - glob: 10.4.5 + glob: 10.5.0 lru-cache: 10.4.3 minipass: 7.1.2 minipass-collect: 2.0.1 @@ -10418,20 +9942,13 @@ packages: resolution: {integrity: sha512-bsTwuIg/BZZK/vreVTYYbSWoe2F+71P7K5QGEX+pT250DZbfU1MQ5prOKpPR+LL6uWKK3KMwMCAS74QB3Um1uw==} dependencies: browserslist: 4.24.4 - caniuse-lite: 1.0.30001715 + caniuse-lite: 1.0.30001755 lodash.memoize: 4.1.2 lodash.uniq: 4.5.0 dev: true - /caniuse-lite@1.0.30001690: - resolution: {integrity: sha512-5ExiE3qQN6oF8Clf8ifIDcMRCRE/dMGcETG/XGMD8/XiXm6HXQgQTh1yZYLXXpSOsEUlJm1Xr7kGULZTuGtP/w==} - - /caniuse-lite@1.0.30001715: - resolution: {integrity: sha512-7ptkFGMm2OAOgvZpwgA4yjQ5SQbrNVGdRjzH0pBdy1Fasvcr+KAeECmbCAECzTuDuoX0FCY8KzUxjf9+9kfZEw==} - - /caniuse-lite@1.0.30001750: - resolution: {integrity: sha512-cuom0g5sdX6rw00qOoLNSFCJ9/mYIsuSOA+yzpDw8eopiFqcVwQvZHqov0vmEighRxX++cfC0Vg1G+1Iy/mSpQ==} - dev: true + /caniuse-lite@1.0.30001755: + resolution: {integrity: sha512-44V+Jm6ctPj7R52Na4TLi3Zri4dWUljJd+RDm+j8LtNCc/ihLCT+X1TzoOAkRETEWqjuLnh9581Tl80FvK7jVA==} /capital-case@1.0.4: resolution: {integrity: sha512-ds37W8CytHgwnhGGTi88pcPyR15qoNkOpYwmMMfnWqqWgESapLqvDx6huFjQ5vqWSn2Z06173XNA7LtMOeUh1A==} @@ -11083,6 +10600,12 @@ packages: dependencies: browserslist: 4.24.4 + /core-js-compat@3.47.0: + resolution: {integrity: sha512-IGfuznZ/n7Kp9+nypamBhvwdwLsW6KC8IOaURw2doAK5e98AG3acVLdh0woOnEqCfUtS+Vu882JE4k/DAm3ItQ==} + dependencies: + browserslist: 4.28.0 + dev: true + /core-js-pure@3.32.1: resolution: {integrity: sha512-f52QZwkFVDPf7UEQZGHKx6NYxsxmVGJe5DIvbzOdRMJlmT6yv0KDjR8rmy3ngr/t5wU54c7Sp/qIJH0ppbhVpQ==} requiresBuild: true @@ -11103,6 +10626,11 @@ packages: requiresBuild: true dev: true + /core-js@3.47.0: + resolution: {integrity: sha512-c3Q2VVkGAUyupsjRnaNX6u8Dq2vAdzm9iuPj5FW0fRxzlxgq9Q39MDq10IvmQSpLgHQNyQzQmOo6bgGHmH3NNg==} + requiresBuild: true + dev: true + /core-util-is@1.0.2: resolution: {integrity: sha512-3lqz5YjWTYnW6dlDa5TLaTCcShfar1e40rmcJVwCBJC6mWlFuj0eCHIElmG1g5kyuJ/GD+8Wn4FFCcz4gJPfaQ==} dev: true @@ -11110,8 +10638,8 @@ packages: /core-util-is@1.0.3: resolution: {integrity: sha512-ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ==} - /cos-nodejs-sdk-v5@2.14.6: - resolution: {integrity: sha512-b5PIJ0fqzIPCC1tq0GOBlJU0wlo4F0HQgTAqvdk73jYlxrNiMd1RTU9GsLwwX2fGOA2J+TOlcy76FebjlO0Smg==} + /cos-nodejs-sdk-v5@2.15.4: + resolution: {integrity: sha512-TP/iYTvKKKhRK89on9SRfSMGEw/9SFAAU8EC1kdT5Fmpx7dAwaCNM2+R2H1TSYoQt+03rwOs8QEfNkX8GOHjHQ==} engines: {node: '>= 6'} dependencies: conf: 9.0.2 @@ -11376,13 +10904,6 @@ packages: engines: {node: '>= 6'} dev: true - /css@3.0.0: - resolution: {integrity: sha512-DG9pFfwOrzc+hawpmqX/dHYHJG+Bsdb0klhyi1sDneOgGOXy9wQIC8hzyVp1e4NRYDBdxcylvywPkkXCHAzTyQ==} - dependencies: - inherits: 2.0.4 - source-map: 0.6.1 - source-map-resolve: 0.6.0 - /cssdb@8.4.2: resolution: {integrity: sha512-PzjkRkRUS+IHDJohtxkIczlxPPZqRo0nXplsYXOMBRPjcVRjj1W4DfvRgshUYTVuUigU7ptVYkFJQ7abUB0nyg==} dev: true @@ -11558,6 +11079,10 @@ packages: /csstype@3.1.3: resolution: {integrity: sha512-M1uQkMl8rQK/szD0LNhtqxIPLpimGm8sOBwU7lLnCpSbTyY3yeU1Vc7l4KT5zT4s/yOxHH5O7tIuuLOCnLADRw==} + /csstype@3.2.3: + resolution: {integrity: sha512-z1HGKcYy2xA8AGQfwrn0PAy+PB7X/GSj3UVJW9qKyn43xWa+gl5nXmU4qqLMRzWVLFC8KusUX8T/0kCiOYpAIQ==} + dev: false + /cuint@0.2.2: resolution: {integrity: sha512-d4ZVpCW31eWwCMe1YT3ur7mUDnTXbgwyzaL320DrcRT45rfjYxkt5QWLrmOJ+/UEAI2+fQgKe/fCjR8l4TpRgw==} dev: true @@ -11683,6 +11208,7 @@ packages: optional: true dependencies: ms: 2.0.0 + dev: false /debug@3.2.7: resolution: {integrity: sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==} @@ -11741,6 +11267,7 @@ packages: /decode-uri-component@0.2.2: resolution: {integrity: sha512-FqUYQ+8o158GyGTrMFJms9qh3CqTKvAqgqsTnkLI8sKu0028orqBhxNMFkFen0zGyg6epACD32pjVk58ngIErQ==} engines: {node: '>=0.10'} + dev: true /decode-uri-component@0.4.1: resolution: {integrity: sha512-+8VxcR21HhTy8nOt6jf20w0c9CADrw1O8d+VZ/YzzCt4bJ3uBjw+D1q2osAB8RnpwwaeYBxy0HyKQxD5JBMuuQ==} @@ -12175,7 +11702,6 @@ packages: /eastasianwidth@0.2.0: resolution: {integrity: sha512-I88TYZWc9XiYHRQ4/3c5rjjfgkjhLyW2luGIheGERbNQ6OY7yTybanSpDXZa8y7VUP9YmDcYa+eyq4ca7iLqWA==} - dev: true /easy-table@1.1.0: resolution: {integrity: sha512-oq33hWOSSnl2Hoh00tZWaIPi1ievrD9aFG82/IgjlycAnW9hHx5PkJiXpxPsgEE+H7BsbVQXFVFST8TEXS6/pA==} @@ -12206,6 +11732,10 @@ packages: resolution: {integrity: sha512-RXfEp2x+VRYn8jbKfQlRImzoJU01kyDvVPBmG39eU2iuRVhuS6vQNocB8J0/8GrIMLnPzgz4eW6WiRnJkTuNWg==} dev: true + /electron-to-chromium@1.5.255: + resolution: {integrity: sha512-Z9oIp4HrFF/cZkDPMpz2XSuVpc1THDpT4dlmATFlJUIBVCy9Vap5/rIXsASP1CscBacBqhabwh8vLctqBwEerQ==} + dev: true + /electron-to-chromium@1.5.76: resolution: {integrity: sha512-CjVQyG7n7Sr+eBXE86HIulnL5N8xZY1sgmOPGuq/F0Rr0FJq63lg0kEtOIDfZBk44FnDLf6FUJ+dsJcuiUDdDQ==} @@ -12220,11 +11750,9 @@ packages: /emoji-regex@8.0.0: resolution: {integrity: sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==} - dev: true /emoji-regex@9.2.2: resolution: {integrity: sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==} - dev: true /emojis-list@3.0.0: resolution: {integrity: sha512-/kyM18EfinwXZbno9FyUGeFh87KC8HRQBQGildHZbEuRyWFOmv1U10o9BBp8XVZDVNNuQKyIGIu5ZYAAXJ0V2Q==} @@ -13179,7 +12707,7 @@ packages: resolution: {integrity: sha512-B9/wizE4WngqQftFPmdaMYlXoJlJOYxGQOanC77fq9k8+Z0v5dDSVh+3glErdIROP//s/jgb7ZuxKfB8nVyo0g==} hasBin: true dependencies: - strnum: 1.0.5 + strnum: 1.1.2 dev: true /fastest-levenshtein@1.0.16: @@ -13440,7 +12968,6 @@ packages: dependencies: cross-spawn: 7.0.3 signal-exit: 4.1.0 - dev: true /forever-agent@0.6.1: resolution: {integrity: sha512-j0KLYPhm6zeac4lz3oJ3o65qvgQCcPubiyotZrXqEaG4hNagNYO8qdlUrX5vwqv9ohqeT/Z3j6+yW067yWWdUw==} @@ -13476,6 +13003,10 @@ packages: resolution: {integrity: sha512-ZsDfxO51wGAXREY55a7la9LScWpwv9RxIrYABrlvOFBlH/ShPnrtsXeuUIfXKKOVicNxQ+o8JTbJvjS4M89yew==} dev: true + /fraction.js@5.3.4: + resolution: {integrity: sha512-1X1NTtiJphryn/uLQz3whtY6jK3fTqoE3ohKs0tT+Ujr1W59oopxmoEh7Lu5p6vBaPbgoM0bzveAW4Qi5RyWDQ==} + dev: true + /fresh@0.5.2: resolution: {integrity: sha512-zJ2mQYM18rEFOudeV4GShTGIQ7RbzA7ozbU9I/XBpm7kqgMywgmylMwXHxZJmkVoYkna9d2pVXVXPdYTP9ej8Q==} engines: {node: '>= 0.6'} @@ -13831,8 +13362,8 @@ packages: path-scurry: 1.11.1 dev: true - /glob@10.4.5: - resolution: {integrity: sha512-7Bv8RF0k6xjo7d4A/PxYLbUCfb6c+Vpd2/mB2yRDlew7Jb5hEXiCD9ibfO7wpk8i4sevK6DFny9h7EYbM3/sHg==} + /glob@10.5.0: + resolution: {integrity: sha512-DfXN8DfhJ7NH3Oe7cFmu3NCu1wKbkReJ8TorzSAFbSKrlNaQSKfIzqYqVY8zlbs2NLBbWpRiU52GX2PbaBVNkg==} hasBin: true dependencies: foreground-child: 3.3.0 @@ -13841,7 +13372,6 @@ packages: minipass: 7.1.2 package-json-from-dist: 1.0.1 path-scurry: 1.11.1 - dev: true /glob@7.1.2: resolution: {integrity: sha512-MJTUg1kjuLeQCJ+ccE4Vpa6kKVXkPYJ2mOCQyUuKLcLQsdrMCpBPUi8qVE6+YuaJkozeA9NusTAw3hLr8Xe5EQ==} @@ -13850,7 +13380,7 @@ packages: fs.realpath: 1.0.0 inflight: 1.0.6 inherits: 2.0.4 - minimatch: 3.1.2 + minimatch: 3.0.4 once: 1.4.0 path-is-absolute: 1.0.1 dev: true @@ -14597,6 +14127,10 @@ packages: /immutable@5.0.3: resolution: {integrity: sha512-P8IdPQHq3lA1xVeBRi5VPqUm5HDgKnx0Ru51wZz5mjxHr5n3RWhjIpOFU7ybkUxfB+5IToy+OLaHYDBIWsv+uw==} + /immutable@5.1.4: + resolution: {integrity: sha512-p6u1bG3YSnINT5RQmx/yRZBpenIl30kVxkTLDyHLIMk0gict704Q9n+thfDI7lTRm9vXdDYutVzXhzcThxTnXA==} + dev: true + /import-fresh@3.3.0: resolution: {integrity: sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==} engines: {node: '>=6'} @@ -14868,7 +14402,6 @@ packages: /is-fullwidth-code-point@3.0.0: resolution: {integrity: sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==} engines: {node: '>=8'} - dev: true /is-fullwidth-code-point@4.0.0: resolution: {integrity: sha512-O4L094N2/dZ7xqVdrXhh9r1KODPJpFms8B5sGdJLPy664AgvXsreZUyCQQNItZRDlYug4xStLjNp/sz3HvBowQ==} @@ -15268,7 +14801,6 @@ packages: '@isaacs/cliui': 8.0.2 optionalDependencies: '@pkgjs/parseargs': 0.11.0 - dev: true /javascript-stringify@2.1.0: resolution: {integrity: sha512-JVAfqNPTvNq3sB/VHQJAFxN/sPgKnsKrCwyRt15zwNCdrMMJDdcEOdubuy+DuJYYdm0ox1J4uzEuYKkN+9yhVg==} @@ -15731,11 +15263,11 @@ packages: /jimp@0.9.8: resolution: {integrity: sha512-DHN4apKMwLIvD/TKO9tFfPuankNuVK98vCwHm/Jv9z5cJnrd38xhi+4I7IAGmDU3jIDlrEVhzTkFH1Ymv5yTQQ==} dependencies: - '@babel/runtime': 7.26.0 + '@babel/runtime': 7.28.4 '@jimp/custom': 0.9.8 '@jimp/plugins': 0.9.8(@jimp/custom@0.9.8) '@jimp/types': 0.9.8(@jimp/custom@0.9.8) - core-js: 3.41.0 + core-js: 3.47.0 regenerator-runtime: 0.13.11 transitivePeerDependencies: - debug @@ -15983,8 +15515,8 @@ packages: engines: {'0': node >= 0.2.0} dev: true - /jsonschema@1.4.1: - resolution: {integrity: sha512-S6cATIPVv1z0IlxdN+zUk5EPjkGCdnhN4wVSBlvoUO1tOLJootbo9CquNJmbIh4yikWHiUedhRYrNPn1arpEmQ==} + /jsonschema@1.5.0: + resolution: {integrity: sha512-K+A9hhqbn0f3pJX17Q/7H6yQfD/5OXgdrR5UE12gMXCiN9D5Xq2o5mddV2QEcX/bjla99ASsAAQUyMCCRWAEhw==} dev: true /jsprim@1.4.2: @@ -16080,7 +15612,7 @@ packages: engines: {node: '>=0.10.0'} dev: false - /less-loader@12.2.0(less@4.2.0)(webpack@5.94.0): + /less-loader@12.2.0(less@4.4.2)(webpack@5.94.0): resolution: {integrity: sha512-MYUxjSQSBUQmowc0l5nPieOYwMzGPUaTzB6inNW/bdPEG9zOL3eAAD1Qw5ZxSPk7we5dMojHwNODYMV1hq4EVg==} engines: {node: '>= 18.12.0'} peerDependencies: @@ -16093,7 +15625,7 @@ packages: webpack: optional: true dependencies: - less: 4.2.0 + less: 4.4.2 webpack: 5.94.0(@swc/core@1.3.96) dev: true @@ -16114,9 +15646,9 @@ packages: source-map: 0.6.1 dev: true - /less@4.2.0: - resolution: {integrity: sha512-P3b3HJDBtSzsXUl0im2L7gTO5Ubg8mEN6G8qoTS77iXxXX4Hvu4Qj540PZDvQ8V6DmX6iXo98k7Md0Cm1PrLaA==} - engines: {node: '>=6'} + /less@4.4.2: + resolution: {integrity: sha512-j1n1IuTX1VQjIy3tT7cyGbX7nvQOsFLoIqobZv4ttI5axP923gA44zUj6miiA6R5Aoms4sEGVIIcucXUbRI14g==} + engines: {node: '>=14'} hasBin: true dependencies: copy-anything: 2.0.6 @@ -16128,10 +15660,8 @@ packages: image-size: 0.5.5 make-dir: 2.1.0 mime: 1.6.0 - needle: 3.2.0 + needle: 3.3.1 source-map: 0.6.1 - transitivePeerDependencies: - - supports-color /leven@3.1.0: resolution: {integrity: sha512-qsda+H8jTaUaN/x5vzW2rzc+8Rw4TAQ/4KjB46IwK5VH+IlVeeeje/EoZRpiXvIqjFgK84QffqPztGI3VBLG1A==} @@ -16150,8 +15680,8 @@ packages: resolution: {integrity: sha512-Nps8HPeVVcsmJxUvFLKVJcCgcz+1ajPTXDVAVPs6+giOQP4AHV31uZFFkh+CKow/bkB7GbZWKmwmit7myaqDSw==} dev: false - /licia@1.46.0: - resolution: {integrity: sha512-Zms2AjJB+KdqUKFF87J5J/w9DwXnGN/lKlbjpRgvaPf0BIQ0mOZ/2lX4E79zwNafHGMUq5RtN54FN6Af5G92cA==} + /licia@1.48.0: + resolution: {integrity: sha512-bBWiT5CSdEtwuAHiYTJ74yItCjIFdHi4xiFk6BRDfKa+sdCpkUHp69YKb5udNOJlHDzFjNjcMgNZ/+wQIHrB8A==} dev: true /lie@3.3.0: @@ -16647,7 +16177,6 @@ packages: /lru-cache@10.4.3: resolution: {integrity: sha512-JNAzZcXrCt42VGLuYz0zfAzDfAvJWW6AfYlDBQyDV5DClI2m5sAmK+OIO7s59XfsRsWHp02jAJrRadPRGTt6SQ==} - dev: true /lru-cache@4.1.5: resolution: {integrity: sha512-sWZlbEP2OsHNkXrMl5GYk/jKk70MBng6UU4YI/qGDYbgf6YbP4EvmqISbXCoJiRKs+1bSpFHVgQxvJ17F2li5g==} @@ -16978,7 +16507,7 @@ packages: /minimatch@3.0.4: resolution: {integrity: sha512-yJHVQEhyqPLUTgt9B83PXu6W3rx4MvvHvSUvToogpwoGDOUQ+yDrR0HRot+yOCdCO7u4hX3pWft6kWBBcqh0UA==} dependencies: - brace-expansion: 1.1.11 + brace-expansion: 1.1.12 dev: true /minimatch@3.0.8: @@ -17011,7 +16540,6 @@ packages: engines: {node: '>=16 || 14 >=14.17'} dependencies: brace-expansion: 2.0.1 - dev: true /minimist-options@4.1.0: resolution: {integrity: sha512-Q4r8ghd80yhO/0j1O3B2BjweX3fiHg9cdOwjJd2J76Q135c+NDxGCqdYKQ1SKBuFfgWbAUzBfvYjPUEeNgqN1A==} @@ -17089,7 +16617,6 @@ packages: /minipass@7.1.2: resolution: {integrity: sha512-qOOzS1cBTWYF4BH8fVePDBOO9iptMnGUEZwNc/cMWnTV2nVLZ7VoNWEPHkYczZA0pdoA7dl6e7FL659nX9S2aw==} engines: {node: '>=16 || 14 >=14.17'} - dev: true /miniprogram-api-typings@3.12.3: resolution: {integrity: sha512-o7bOfrU28MEMCBWo83nXv0ROQSBFxJcfCl4f2wTYqah64ipC5RGqLJfvWJTWhlQt2ECVwspSzM8LgvnfMo7TEQ==} @@ -17223,13 +16750,13 @@ packages: '@babel/types': 7.24.6 '@vue/reactivity': 3.0.5 acorn: 6.4.2 - autoprefixer: 10.4.21(postcss@8.5.6) + autoprefixer: 10.4.22(postcss@8.5.6) babel-code-frame: 6.26.0 babel-core: 6.26.0 babel-preset-es2015: 6.24.1 babel-preset-stage-0: 6.24.1 chokidar: 3.6.0 - cos-nodejs-sdk-v5: 2.14.6 + cos-nodejs-sdk-v5: 2.15.4 cssnano: 5.1.15(postcss@8.5.6) eventemitter3: 4.0.7 fs-extra: 8.1.0 @@ -17237,21 +16764,21 @@ packages: glob: 7.1.2 html-minifier: 4.0.0 jimp: 0.9.8 - jsonschema: 1.4.1 + jsonschema: 1.5.0 jszip: 3.10.1 - less: 4.2.0 - licia: 1.46.0 + less: 4.4.2 + licia: 1.48.0 lodash: 4.17.21 memory-fs: 0.5.0 minimatch: 3.0.4 - moment-timezone: 0.5.46 + moment-timezone: 0.5.48 postcss: 8.5.6 qrcode-reader: 1.0.4 qrcode-terminal: 0.12.0 read-package-tree: 5.2.1 request: 2.88.2 rimraf: 3.0.2 - sass: 1.83.1 + sass: 1.94.1 source-map: 0.6.1 string-hash-64: 1.0.3 terser: 4.8.0 @@ -17351,6 +16878,7 @@ packages: resolution: {integrity: sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw==} engines: {node: '>=10'} hasBin: true + dev: true /mkdirp@3.0.1: resolution: {integrity: sha512-+NsyUUAZDmo6YVHzL/stxSu3t9YS1iljliy3BSDrXJ/dkn1KYdmtZODGGjLcc9XLgVVpH4KshHB8XmZgMhaBXg==} @@ -17391,8 +16919,8 @@ packages: commander: 12.1.0 dev: true - /moment-timezone@0.5.46: - resolution: {integrity: sha512-ZXm9b36esbe7OmdABqIWJuBBiLLwAjrN7CE+7sYdCCx82Nabt1wHDj8TVseS59QIlfFPbOoiBPm6ca9BioG4hw==} + /moment-timezone@0.5.48: + resolution: {integrity: sha512-f22b8LV1gbTO2ms2j2z13MuPogNoh5UzxL3nzNAYKGraILnbGc9NEE6dyiiiLv46DGRb8A4kg8UKWLjPthxBHw==} dependencies: moment: 2.30.1 dev: true @@ -17470,17 +16998,14 @@ packages: resolution: {integrity: sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==} dev: true - /needle@3.2.0: - resolution: {integrity: sha512-oUvzXnyLiVyVGoianLijF9O/RecZUf7TkBfimjGrLM4eQhXyeJwM6GeAWccwfQ9aa4gMCZKqhAOuLaMIcQxajQ==} + /needle@3.3.1: + resolution: {integrity: sha512-6k0YULvhpw+RoLNiQCRKOl09Rv1dPLr8hHnVjHqdolKwDrdNyk+Hmrthi4lIGPPz3r39dLx0hsF5s40sZ3Us4Q==} engines: {node: '>= 4.4.x'} hasBin: true requiresBuild: true dependencies: - debug: 3.2.7 iconv-lite: 0.6.3 - sax: 1.2.4 - transitivePeerDependencies: - - supports-color + sax: 1.4.3 optional: true /negotiator@0.6.3: @@ -17577,6 +17102,10 @@ packages: resolution: {integrity: sha512-cCmFDMSm26S6tQSDpBCg/NR8NENrVPhAJSf+XbxBG4rPFaaonlEoE9wHQmun+cls499TQGSb7ZyPBRlzgKfpeg==} dev: true + /node-releases@2.0.27: + resolution: {integrity: sha512-nmh3lCkYZ3grZvqcCH+fjmQ7X+H0OeZgP40OierEaAptX4XofMh5kwNbWh7lBduUzCcV/8kZ+NDLCwm2iorIlA==} + dev: true + /normalize-package-data@2.5.0: resolution: {integrity: sha512-/5CMN3T0R4XTj4DcGaexo+roZSdSFW/0AOOTROrjxzCG1wrWXEsGbRKevjlIL+ZDE4sZlJr5ED4YW0yqmkK+eA==} dependencies: @@ -18113,7 +17642,6 @@ packages: /package-json-from-dist@1.0.1: resolution: {integrity: sha512-UEZIS3/by4OC8vL3P2dTXRETpebLI2NiI5vIrjaD/5UtrkFX/tNbwjTSRAGC/+7CAo2pIcBaRgWmcBBHcsaCIw==} - dev: true /package-json@4.0.1: resolution: {integrity: sha512-q/R5GrMek0vzgoomq6rm9OX+3PQve8sLwTirmK30YB3Cu0Bbt9OX9M/SIUnroN5BGJkzwGsFwDaRGD9EwBOlCA==} @@ -18327,7 +17855,6 @@ packages: dependencies: lru-cache: 10.4.3 minipass: 7.1.2 - dev: true /path-to-regexp@0.1.10: resolution: {integrity: sha512-7lf7qcQidTku0Gu3YDPc8DJ1q7OOucfa/BSsIwjuh56VU7katFvuM8hULfkwB3Fns/rsVF7PwPKVw1sl5KQS9w==} @@ -18611,7 +18138,7 @@ packages: peerDependencies: postcss: ^8.2.15 dependencies: - browserslist: 4.26.3 + browserslist: 4.28.0 caniuse-api: 3.0.0 colord: 2.9.3 postcss: 8.5.6 @@ -18637,7 +18164,7 @@ packages: peerDependencies: postcss: ^8.2.15 dependencies: - browserslist: 4.26.3 + browserslist: 4.28.0 postcss: 8.5.6 postcss-value-parser: 4.2.0 dev: true @@ -18934,7 +18461,7 @@ packages: peerDependencies: postcss: ^8.2.15 dependencies: - browserslist: 4.26.3 + browserslist: 4.28.0 caniuse-api: 3.0.0 cssnano-utils: 3.1.0(postcss@8.5.6) postcss: 8.5.6 @@ -19004,7 +18531,7 @@ packages: peerDependencies: postcss: ^8.2.15 dependencies: - browserslist: 4.26.3 + browserslist: 4.28.0 cssnano-utils: 3.1.0(postcss@8.5.6) postcss: 8.5.6 postcss-value-parser: 4.2.0 @@ -19219,7 +18746,7 @@ packages: peerDependencies: postcss: ^8.2.15 dependencies: - browserslist: 4.26.3 + browserslist: 4.28.0 postcss: 8.5.6 postcss-value-parser: 4.2.0 dev: true @@ -19454,7 +18981,7 @@ packages: peerDependencies: postcss: ^8.2.15 dependencies: - browserslist: 4.26.3 + browserslist: 4.28.0 caniuse-api: 3.0.0 postcss: 8.5.6 dev: true @@ -20125,7 +19652,7 @@ packages: resolution: {integrity: sha512-D1KmuLQr6ZSJS0tW8hf3WGpRlwszJOXZ3E8Yd/DNRaM5d+1wVRZdHlpGBLAuovjr28LbWvjpWkBHMxpRGGjzNA==} deprecated: This package is no longer supported. Please use @npmcli/package-json instead. dependencies: - glob: 7.2.3 + glob: 7.1.2 json-parse-even-better-errors: 2.3.1 normalize-package-data: 2.5.0 npm-normalize-package-bin: 1.0.1 @@ -20250,6 +19777,13 @@ packages: dependencies: regenerate: 1.4.2 + /regenerate-unicode-properties@10.2.2: + resolution: {integrity: sha512-m03P+zhBeQd1RGnYxrGyDAPpWX/epKirLrp8e3qevZdVkKtnCrjjWczIbYc8+xd6vcTStVlqfycTx1KR4LOr0g==} + engines: {node: '>=4'} + dependencies: + regenerate: 1.4.2 + dev: true + /regenerate@1.4.2: resolution: {integrity: sha512-zrceR/XhGYU/d/opr2EKO7aRHUeiBI8qjtfHqADTwZd6Szfy16la6kqD0MIUs5z5hx6AaKa+PixpPrR289+I0A==} @@ -20307,10 +19841,10 @@ packages: dependencies: '@babel/regjsgen': 0.8.0 regenerate: 1.4.2 - regenerate-unicode-properties: 10.2.0 + regenerate-unicode-properties: 10.2.2 regjsparser: 0.9.1 unicode-match-property-ecmascript: 2.0.0 - unicode-match-property-value-ecmascript: 2.1.0 + unicode-match-property-value-ecmascript: 2.2.1 dev: true /regexpu-core@6.2.0: @@ -20522,6 +20056,16 @@ packages: engines: {node: '>=10'} dev: true + /resolve@1.22.11: + resolution: {integrity: sha512-RfqAvLnMl313r7c9oclB1HhUEAezcpLjz95wFH4LVuhk9JF/r22qmVP9AMmOU4vMX7Q8pN8jwNg/CSpdFnMjTQ==} + engines: {node: '>= 0.4'} + hasBin: true + dependencies: + is-core-module: 2.16.1 + path-parse: 1.0.7 + supports-preserve-symlinks-flag: 1.0.0 + dev: true + /resolve@1.22.8: resolution: {integrity: sha512-oKWePCxqpd6FlLvGV1VU0x7bkPmmCNolxzjMf4NczoDnQcIWrAF+cPtZn5i6n+RfD2d9i0tzpKnG6Yk168yIyw==} hasBin: true @@ -20611,7 +20155,7 @@ packages: resolution: {integrity: sha512-l0OE8wL34P4nJH/H2ffoaniAokM2qSmrtXHmlpvYr5AVVX8msAyW0l8NVJFDxlSK4u3Uh/f41cQheDVdnYijwQ==} hasBin: true dependencies: - glob: 10.4.5 + glob: 10.5.0 dev: true /rollup@3.29.5: @@ -20761,10 +20305,26 @@ packages: immutable: 5.0.3 source-map-js: 1.2.1 optionalDependencies: - '@parcel/watcher': 2.5.0 + '@parcel/watcher': 2.5.1 + + /sass@1.94.1: + resolution: {integrity: sha512-/YVm5FRQaRlr3oNh2LLFYne1PdPlRZGyKnHh1sLleOqLcohTR4eUUvBjBIqkl1fEXd1MGOHgzJGJh+LgTtV4KQ==} + engines: {node: '>=14.0.0'} + hasBin: true + dependencies: + chokidar: 4.0.3 + immutable: 5.1.4 + source-map-js: 1.2.1 + optionalDependencies: + '@parcel/watcher': 2.5.1 + dev: true /sax@1.2.4: resolution: {integrity: sha512-NqVDv9TpANUjFm0N8uM5GxL36UgKi9/atZw+x7YFnQ8ckwFGKrl4xX4yWtrey3UJm5nP1kUbnYgLopqWNSRhWw==} + dev: true + + /sax@1.4.3: + resolution: {integrity: sha512-yqYn1JhPczigF94DMS+shiDMjDowYO6y9+wB/4WgO0Y19jWYk0lQ4tuG5KI7kj4FTp1wxPj5IFfcrz/s1c3jjQ==} /saxes@6.0.0: resolution: {integrity: sha512-xAg7SOnEhrm5zI3puOOKyy1OMcMlIJZYNJY7xLBwSze0UjhPLnWfj2GF2EpT0jmzaJKIWKHLsaSSajf35bcYnA==} @@ -20908,17 +20468,17 @@ packages: dependencies: randombytes: 2.1.0 - /seroval-plugins@1.2.1(seroval@1.2.1): - resolution: {integrity: sha512-H5vs53+39+x4Udwp4J5rNZfgFuA+Lt+uU+09w1gYBVWomtAl98B+E9w7yC05Xc81/HgLvJdlyqJbU0fJCKCmdw==} + /seroval-plugins@1.3.3(seroval@1.3.2): + resolution: {integrity: sha512-16OL3NnUBw8JG1jBLUoZJsLnQq0n5Ua6aHalhJK4fMQkz1lqR7Osz1sA30trBtd9VUDc2NgkuRCn8+/pBwqZ+w==} engines: {node: '>=10'} peerDependencies: seroval: ^1.0 dependencies: - seroval: 1.2.1 + seroval: 1.3.2 dev: false - /seroval@1.2.1: - resolution: {integrity: sha512-yBxFFs3zmkvKNmR0pFSU//rIsYjuX418TnlDmc2weaq5XFDqDIV/NOMPBoLrbxjLH42p4UzRuXHryXh9dYcKcw==} + /seroval@1.3.2: + resolution: {integrity: sha512-RbcPH1n5cfwKrru7v7+zrZvjLurgHhGyso3HTyGtRivGWgYjbOmGuivCQaORNELjNONoK35nj28EoWul9sb1zQ==} engines: {node: '>=10'} dev: false @@ -21250,12 +20810,12 @@ packages: smart-buffer: 4.2.0 dev: true - /solid-js@1.9.5: - resolution: {integrity: sha512-ogI3DaFcyn6UhYhrgcyRAMbu/buBJitYQASZz5WzfQVPP10RD2AbCoRZ517psnezrasyCbWzIxZ6kVqet768xw==} + /solid-js@1.9.10: + resolution: {integrity: sha512-Coz956cos/EPDlhs6+jsdTxKuJDPT7B5SVIWgABwROyxjY7Xbr8wkzD68Et+NxnV7DLJ3nJdAC2r9InuV/4Jew==} dependencies: - csstype: 3.1.3 - seroval: 1.2.1 - seroval-plugins: 1.2.1(seroval@1.2.1) + csstype: 3.2.3 + seroval: 1.3.2 + seroval-plugins: 1.3.3(seroval@1.3.2) dev: false /sort-keys-length@1.0.1: @@ -21287,13 +20847,6 @@ packages: resolution: {integrity: sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA==} engines: {node: '>=0.10.0'} - /source-map-resolve@0.6.0: - resolution: {integrity: sha512-KXBr9d/fO/bWo97NXsPIAW1bFSBOuCnjbNTBMO7N59hsv5i9yzRDfcYwwt0l04+VqnKC+EwzvJZIP/qkuMgR/w==} - deprecated: See https://github.com/lydell/source-map-resolve#deprecated - dependencies: - atob: 2.1.2 - decode-uri-component: 0.2.2 - /source-map-support@0.4.18: resolution: {integrity: sha512-try0/JqxPLF9nOjvSta7tVondkP5dwgyLDjVoyMDlmjugT2lRZ1OfsrYTkCd2hkDnJTKRbO/Rl3orm8vlsUzbA==} dependencies: @@ -21326,6 +20879,10 @@ packages: resolution: {integrity: sha512-l3BikUxvPOcn5E74dZiq5BGsTb5yEwhaTSzccU6t4sDOH8NWJCstKO5QT2CvtFoK6F0saL7p9xHAqHOlCPJygA==} engines: {node: '>= 8'} + /source-map@0.7.6: + resolution: {integrity: sha512-i5uvt8C3ikiWeNZSVZNWcfZPItFQOsYTUAOkcUPGd8DqDy1uOUikjt5dG+uRlwyvR108Fb9DOd4GvXfT0N2/uQ==} + engines: {node: '>= 12'} + /spawn-command@0.0.2: resolution: {integrity: sha512-zC8zGoGkmc8J9ndvml8Xksr1Amk9qBujgbF0JAIWO7kXr43w0h/0GJNM/Vustixu+YE8N/MTrQ7N31FvHUACxQ==} dev: true @@ -21507,7 +21064,6 @@ packages: emoji-regex: 8.0.0 is-fullwidth-code-point: 3.0.0 strip-ansi: 6.0.1 - dev: true /string-width@5.1.2: resolution: {integrity: sha512-HnLOCR3vjcY8beoNLtcjZ5/nxn2afmME6lhrDrebokqMap+XbeW8n9TXpPDOqdGK5qcI3oT0GKTW6wC7EMiVqA==} @@ -21516,7 +21072,6 @@ packages: eastasianwidth: 0.2.0 emoji-regex: 9.2.2 strip-ansi: 7.1.0 - dev: true /string-width@7.2.0: resolution: {integrity: sha512-tsaTIkKW9b4N+AEj+SVA+WhJzV7/zMhcSu78mLKWSk7cXMOSHsBKFWUs0fWwq8QyK3MgJBQRX6Gbi4kYbdvGkQ==} @@ -21618,7 +21173,6 @@ packages: engines: {node: '>=12'} dependencies: ansi-regex: 6.0.1 - dev: true /strip-bom@3.0.0: resolution: {integrity: sha512-vavAMRXOgBVNF6nyEEmL3DBK19iRpDcoIwW+swQ+CbGiu7lju6t+JklA1MHweoWtadgt4ISVUsXLyDq34ddcwA==} @@ -21679,8 +21233,8 @@ packages: escape-string-regexp: 1.0.5 dev: true - /strnum@1.0.5: - resolution: {integrity: sha512-J8bbNyKKXl5qYcR36TIO8W3mVGVHrmmxsd5PAItGkmyzwJvybiw2IVq5nqd0i4LSNSkB/sx9VHllbfFdr9k1JA==} + /strnum@1.1.2: + resolution: {integrity: sha512-vrN+B7DBIoTTZjnPNewwhx6cBA/H+IS7rfW68n7XxC1y7uoiGQBxaKzqucGUgavX15dJgiGztLJ8vxuEzwqBdA==} dev: true /strtok3@6.3.0: @@ -21710,7 +21264,7 @@ packages: peerDependencies: postcss: ^8.2.15 dependencies: - browserslist: 4.26.3 + browserslist: 4.28.0 postcss: 8.5.6 postcss-selector-parser: 6.1.2 dev: true @@ -21776,7 +21330,7 @@ packages: - supports-color dev: true - /stylus-loader@8.1.1(stylus@0.55.0)(webpack@5.94.0): + /stylus-loader@8.1.1(stylus@0.64.0)(webpack@5.94.0): resolution: {integrity: sha512-Ohe29p3gwJiu1kxq16P80g1qq0FxGtwQevKctLE4su8KUq+Ea06Q6lp7SpcJjaKNrWIuEZQGvESUPt8JpukKVw==} engines: {node: '>= 18.12.0'} peerDependencies: @@ -21791,22 +21345,20 @@ packages: dependencies: fast-glob: 3.3.3 normalize-path: 3.0.0 - stylus: 0.55.0 + stylus: 0.64.0 webpack: 5.94.0(@swc/core@1.3.96) dev: true - /stylus@0.55.0: - resolution: {integrity: sha512-MuzIIVRSbc8XxHH7FjkvWqkIcr1BvoMZoR/oFuAJDlh7VSaNJzrB4uJ38GRQa+mWjLXODAMzeDe0xi9GYbGwnw==} + /stylus@0.64.0: + resolution: {integrity: sha512-ZIdT8eUv8tegmqy1tTIdJv9We2DumkNZFdCF5mz/Kpq3OcTaxSuCAYZge6HKK2CmNC02G1eJig2RV7XTw5hQrA==} + engines: {node: '>=16'} hasBin: true dependencies: - css: 3.0.0 - debug: 3.1.0 - glob: 7.2.3 - mkdirp: 1.0.4 - safer-buffer: 2.1.2 - sax: 1.2.4 - semver: 6.3.1 - source-map: 0.7.4 + '@adobe/css-tools': 4.3.3 + debug: 4.4.3 + glob: 10.5.0 + sax: 1.4.3 + source-map: 0.7.6 transitivePeerDependencies: - supports-color @@ -22595,6 +22147,11 @@ packages: resolution: {integrity: sha512-qxkjQt6qjg/mYscYMC0XKRn3Rh0wFPlfxB0xkt9CfyTvpX1Ra0+rAmdX2QyAobptSEvuy4RtpPRui6XkV+8wjA==} engines: {node: '>=4'} + /unicode-match-property-value-ecmascript@2.2.1: + resolution: {integrity: sha512-JQ84qTuMg4nVkx8ga4A16a1epI9H6uTXAknqxkGF/aFfRLw1xC/Bp24HNLaZhHSkWd3+84t8iXnp1J0kYcZHhg==} + engines: {node: '>=4'} + dev: true + /unicode-property-aliases-ecmascript@2.1.0: resolution: {integrity: sha512-6t3foTQI9qne+OZoVQB/8x8rk2k1eVy1gRXhV3oFQ5T6R1dqQ1xtin3XqSlx3+ATBkliTaR/hHyJBm+LVPNM8w==} engines: {node: '>=4'} @@ -22731,6 +22288,17 @@ packages: picocolors: 1.1.1 dev: true + /update-browserslist-db@1.1.4(browserslist@4.28.0): + resolution: {integrity: sha512-q0SPT4xyU84saUX+tomz1WLkxUbuaJnR1xWt17M7fJtEJigJeWUNGUqrauFXsHnqev9y9JTRGwk13tFBuKby4A==} + hasBin: true + peerDependencies: + browserslist: '>= 4.21.0' + dependencies: + browserslist: 4.28.0 + escalade: 3.2.0 + picocolors: 1.1.1 + dev: true + /update-notifier@2.5.0: resolution: {integrity: sha512-gwMdhgJHGuj/+wHJJs9e6PcCszpxR1b236igrOkUofGhqJuG+amlIKwApH1IW1WWl7ovZxsX49lMBWLxSdm5Dw==} engines: {node: '>=4'} @@ -22922,7 +22490,7 @@ packages: vfile-message: 4.0.2 dev: false - /vite-node@1.6.0(@types/node@18.19.70)(less@4.2.0)(stylus@0.55.0): + /vite-node@1.6.0(@types/node@18.19.70)(less@4.4.2)(stylus@0.64.0): resolution: {integrity: sha512-de6HJgzC+TFzOu0NTC4RAIsyf/DY/ibWDYQUcuEA84EMHhcefTUGkjFHKKEJhQN4A+6I0u++kr3l36ZF2d7XRw==} engines: {node: ^18.0.0 || >=20.0.0} hasBin: true @@ -22931,7 +22499,7 @@ packages: debug: 4.4.3 pathe: 1.1.2 picocolors: 1.1.1 - vite: 5.4.11(@types/node@18.19.70)(less@4.2.0)(stylus@0.55.0) + vite: 5.4.11(@types/node@18.19.70)(less@4.4.2)(stylus@0.64.0) transitivePeerDependencies: - '@types/node' - less @@ -22944,7 +22512,7 @@ packages: - terser dev: false - /vite@5.4.11(@types/node@18.19.70)(less@4.2.0)(stylus@0.55.0): + /vite@5.4.11(@types/node@18.19.70)(less@4.4.2)(stylus@0.64.0): resolution: {integrity: sha512-c7jFQRklXua0mTzneGW9QVyxFjUgwcihC4bXEtujIo2ouWCe1Ajt/amn2PCxYnhYfd5k09JX3SB7OYWFKYqj8Q==} engines: {node: ^18.0.0 || >=20.0.0} hasBin: true @@ -22977,15 +22545,15 @@ packages: dependencies: '@types/node': 18.19.70 esbuild: 0.21.5 - less: 4.2.0 + less: 4.4.2 postcss: 8.5.6 rollup: 4.30.1 - stylus: 0.55.0 + stylus: 0.64.0 optionalDependencies: fsevents: 2.3.3 dev: false - /vitest@1.6.0(@types/node@18.19.70)(less@4.2.0)(stylus@0.55.0): + /vitest@1.6.0(@types/node@18.19.70)(less@4.4.2)(stylus@0.64.0): resolution: {integrity: sha512-H5r/dN06swuFnzNFhq/dnz37bPXnq8xB2xB5JOVk8K09rUtoeNN+LHWkoQ0A/i3hvbUKKcCei9KpbxqHMLhLLA==} engines: {node: ^18.0.0 || >=20.0.0} hasBin: true @@ -23028,8 +22596,8 @@ packages: strip-literal: 2.1.1 tinybench: 2.9.0 tinypool: 0.8.4 - vite: 5.4.11(@types/node@18.19.70)(less@4.2.0)(stylus@0.55.0) - vite-node: 1.6.0(@types/node@18.19.70)(less@4.2.0)(stylus@0.55.0) + vite: 5.4.11(@types/node@18.19.70)(less@4.4.2)(stylus@0.64.0) + vite-node: 1.6.0(@types/node@18.19.70)(less@4.4.2)(stylus@0.64.0) why-is-node-running: 2.3.0 transitivePeerDependencies: - less @@ -23481,7 +23049,6 @@ packages: ansi-styles: 4.3.0 string-width: 4.2.3 strip-ansi: 6.0.1 - dev: true /wrap-ansi@8.1.0: resolution: {integrity: sha512-si7QWI6zUMq56bESFvagtmzMdGOtoxfR+Sez11Mobfc7tm+VkUckk9bW2UeffTGVUbOksxmSw0AA2gs8g71NCQ==} @@ -23490,7 +23057,6 @@ packages: ansi-styles: 6.2.1 string-width: 5.1.2 strip-ansi: 7.1.0 - dev: true /wrap-ansi@9.0.0: resolution: {integrity: sha512-G8ura3S+3Z2G+mkgNRq8dqaFZAuxfsxpBB8OCTGRTCtp+l/v9nbFNmCUP1BZMts3G1142MsZfn6eeUKrr4PD1Q==}