Hey is a decentralized and permissionless social media app built with Lens Protocol 🌿
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

chore: Update deps (#5869)

authored by yoginth.com and committed by

GitHub 31d0c863 74b08f41

+386 -387
+3 -3
apps/api/package.json
··· 24 24 "@hono/zod-validator": "^0.7.0", 25 25 "@lens-chain/sdk": "^1.0.3", 26 26 "@prisma/client": "^6.10.1", 27 - "dotenv": "^16.5.0", 27 + "dotenv": "^16.6.0", 28 28 "hono": "^4.8.3", 29 29 "hono-rate-limiter": "^0.4.2", 30 30 "jose": "^6.0.11", ··· 38 38 }, 39 39 "devDependencies": { 40 40 "@hey/config": "workspace:*", 41 + "@hey/types": "workspace:*", 41 42 "@types/node": "^24.0.4", 42 43 "prisma": "^6.10.1", 43 - "typescript": "^5.8.3", 44 - "@hey/types": "workspace:*" 44 + "typescript": "^5.8.3" 45 45 } 46 46 }
+5 -5
apps/web/package.json
··· 21 21 "@hookform/resolvers": "5.1.1", 22 22 "@lens-chain/storage-client": "^1.0.5", 23 23 "@lens-protocol/metadata": "^2.1.0", 24 - "@livepeer/react": "^4.3.5", 24 + "@livepeer/react": "^4.3.6", 25 25 "@radix-ui/react-hover-card": "^1.1.14", 26 26 "@radix-ui/react-slider": "^1.3.5", 27 27 "@radix-ui/react-tooltip": "^1.2.7", 28 - "@tailwindcss/vite": "^4.1.10", 28 + "@tailwindcss/vite": "^4.1.11", 29 29 "@tanstack/react-query": "^5.81.2", 30 30 "@uidotdev/usehooks": "^2.4.1", 31 31 "browser-image-compression": "^2.0.2", ··· 35 35 "family": "^0.1.3", 36 36 "hast": "^1.0.0", 37 37 "mdast-util-to-markdown": "^2.1.2", 38 - "motion": "^12.19.1", 38 + "motion": "^12.19.2", 39 39 "motion-plus-react": "^1.3.2", 40 40 "plur": "^5.1.0", 41 41 "plyr-react": "^5.3.0", ··· 58 58 "sonner": "^2.0.5", 59 59 "strip-markdown": "^6.0.0", 60 60 "tailwind-merge": "^3.3.1", 61 - "tailwindcss": "^4.1.10", 61 + "tailwindcss": "^4.1.11", 62 62 "unified": "^11.0.5", 63 63 "unist-util-visit-parents": "^6.0.1", 64 64 "viem": "^2.31.4", ··· 66 66 "vite": "^7.0.0", 67 67 "wagmi": "^2.15.6", 68 68 "zod": "^3.25.67", 69 - "zustand": "^5.0.5" 69 + "zustand": "^5.0.6" 70 70 }, 71 71 "devDependencies": { 72 72 "@hey/config": "workspace:*",
+22 -26
apps/web/src/components/Shared/Account/TipButton.tsx
··· 19 19 } 20 20 21 21 return ( 22 - <> 23 - <Menu as="div" className="relative"> 24 - <MenuButton 25 - aria-label="Tip" 26 - as={Button} 27 - onClick={stopEventPropagation} 28 - outline 22 + <Menu as="div" className="relative"> 23 + <MenuButton 24 + aria-label="Tip" 25 + as={Button} 26 + onClick={stopEventPropagation} 27 + outline 28 + > 29 + <Tooltip content="Tip" placement="top" withDelay> 30 + <TipIcon className="-mx-2 my-1 size-4 text-gray-500" /> 31 + </Tooltip> 32 + </MenuButton> 33 + <MenuTransition> 34 + <MenuItems 35 + anchor="bottom end" 36 + className="z-[5] mt-2 w-max origin-top-right rounded-xl border border-gray-200 bg-white shadow-xs focus:outline-hidden dark:border-gray-700 dark:bg-gray-900" 37 + static 29 38 > 30 - <Tooltip content="Tip" placement="top" withDelay> 31 - <TipIcon className="-mx-2 my-1 size-4 text-gray-500" /> 32 - </Tooltip> 33 - </MenuButton> 34 - <MenuTransition> 35 - <MenuItems 36 - anchor="bottom end" 37 - className="z-[5] mt-2 w-max origin-top-right rounded-xl border border-gray-200 bg-white shadow-xs focus:outline-hidden dark:border-gray-700 dark:bg-gray-900" 38 - static 39 - > 40 - <MenuItem> 41 - {({ close }) => ( 42 - <TipMenu account={account} closePopover={close} /> 43 - )} 44 - </MenuItem> 45 - </MenuItems> 46 - </MenuTransition> 47 - </Menu> 48 - </> 39 + <MenuItem> 40 + {({ close }) => <TipMenu account={account} closePopover={close} />} 41 + </MenuItem> 42 + </MenuItems> 43 + </MenuTransition> 44 + </Menu> 49 45 ); 50 46 }; 51 47
+1 -1
package.json
··· 16 16 "typecheck": "pnpm --recursive --parallel run typecheck" 17 17 }, 18 18 "devDependencies": { 19 - "@biomejs/biome": "^2.0.5", 19 + "@biomejs/biome": "^2.0.6", 20 20 "husky": "^9.1.7" 21 21 }, 22 22 "packageManager": "pnpm@10.4.1",
+355 -352
pnpm-lock.yaml
··· 9 9 .: 10 10 devDependencies: 11 11 '@biomejs/biome': 12 - specifier: ^2.0.5 13 - version: 2.0.5 12 + specifier: ^2.0.6 13 + version: 2.0.6 14 14 husky: 15 15 specifier: ^9.1.7 16 16 version: 9.1.7 ··· 45 45 specifier: ^6.10.1 46 46 version: 6.10.1(prisma@6.10.1(typescript@5.8.3))(typescript@5.8.3) 47 47 dotenv: 48 - specifier: ^16.5.0 49 - version: 16.5.0 48 + specifier: ^16.6.0 49 + version: 16.6.0 50 50 hono: 51 51 specifier: ^4.8.3 52 52 version: 4.8.3 ··· 130 130 specifier: ^2.1.0 131 131 version: 2.1.0(typescript@5.8.3)(zod@3.25.67) 132 132 '@livepeer/react': 133 - specifier: ^4.3.5 134 - version: 4.3.5(@types/react-dom@19.1.6(@types/react@19.1.8))(@types/react@19.1.8)(immer@10.1.1)(react-dom@19.1.0(react@19.1.0))(react@19.1.0) 133 + specifier: ^4.3.6 134 + version: 4.3.6(@types/react-dom@19.1.6(@types/react@19.1.8))(@types/react@19.1.8)(immer@10.1.1)(react-dom@19.1.0(react@19.1.0))(react@19.1.0) 135 135 '@radix-ui/react-hover-card': 136 136 specifier: ^1.1.14 137 137 version: 1.1.14(@types/react-dom@19.1.6(@types/react@19.1.8))(@types/react@19.1.8)(react-dom@19.1.0(react@19.1.0))(react@19.1.0) ··· 142 142 specifier: ^1.2.7 143 143 version: 1.2.7(@types/react-dom@19.1.6(@types/react@19.1.8))(@types/react@19.1.8)(react-dom@19.1.0(react@19.1.0))(react@19.1.0) 144 144 '@tailwindcss/vite': 145 - specifier: ^4.1.10 146 - version: 4.1.10(vite@7.0.0(@types/node@24.0.4)(jiti@2.4.2)(lightningcss@1.30.1)(tsx@4.20.3)(yaml@2.8.0)) 145 + specifier: ^4.1.11 146 + version: 4.1.11(vite@7.0.0(@types/node@24.0.4)(jiti@2.4.2)(lightningcss@1.30.1)(tsx@4.20.3)(yaml@2.8.0)) 147 147 '@tanstack/react-query': 148 148 specifier: ^5.81.2 149 149 version: 5.81.2(react@19.1.0) ··· 172 172 specifier: ^2.1.2 173 173 version: 2.1.2 174 174 motion: 175 - specifier: ^12.19.1 176 - version: 12.19.1(react-dom@19.1.0(react@19.1.0))(react@19.1.0) 175 + specifier: ^12.19.2 176 + version: 12.19.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0) 177 177 motion-plus-react: 178 178 specifier: ^1.3.2 179 179 version: 1.3.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0) ··· 241 241 specifier: ^3.3.1 242 242 version: 3.3.1 243 243 tailwindcss: 244 - specifier: ^4.1.10 245 - version: 4.1.10 244 + specifier: ^4.1.11 245 + version: 4.1.11 246 246 unified: 247 247 specifier: ^11.0.5 248 248 version: 11.0.5 ··· 265 265 specifier: ^3.25.67 266 266 version: 3.25.67 267 267 zustand: 268 - specifier: ^5.0.5 269 - version: 5.0.5(@types/react@19.1.8)(immer@10.1.1)(react@19.1.0)(use-sync-external-store@1.4.0(react@19.1.0)) 268 + specifier: ^5.0.6 269 + version: 5.0.6(@types/react@19.1.8)(immer@10.1.1)(react@19.1.0)(use-sync-external-store@1.4.0(react@19.1.0)) 270 270 devDependencies: 271 271 '@hey/config': 272 272 specifier: workspace:* ··· 276 276 version: link:../../packages/types 277 277 '@tailwindcss/aspect-ratio': 278 278 specifier: ^0.4.2 279 - version: 0.4.2(tailwindcss@4.1.10) 279 + version: 0.4.2(tailwindcss@4.1.11) 280 280 '@tailwindcss/forms': 281 281 specifier: ^0.5.10 282 - version: 0.5.10(tailwindcss@4.1.10) 282 + version: 0.5.10(tailwindcss@4.1.11) 283 283 '@types/hast': 284 284 specifier: ^3.0.4 285 285 version: 3.0.4 ··· 674 674 resolution: {integrity: sha512-cjQ7ZlQ0Mv3b47hABuTevyTuYN4i+loJKGeV9flcCgIK37cCXRh+L1bd3iBHlynerhQ7BhCkn2BPbQUL+rGqFg==} 675 675 engines: {node: '>=6.9.0'} 676 676 677 - '@babel/compat-data@7.27.5': 678 - resolution: {integrity: sha512-KiRAp/VoJaWkkte84TvUd9qjdbZAdiqyvMxrGl1N6vzFogKmaLgoM3L1kgtLicp2HP5fBJS8JrZKLVIZGVJAVg==} 677 + '@babel/compat-data@7.27.7': 678 + resolution: {integrity: sha512-xgu/ySj2mTiUFmdE9yCMfBxLp4DHd5DwmbbD05YAuICfodYT3VvRxbrh81LGQ/8UpSdtMdfKMn3KouYDX59DGQ==} 679 679 engines: {node: '>=6.9.0'} 680 680 681 - '@babel/core@7.27.4': 682 - resolution: {integrity: sha512-bXYxrXFubeYdvB0NhD/NBB3Qi6aZeV20GOWVI47t2dkecCEoneR4NPVcb7abpXDEvejgrUfFtG6vG/zxAKmg+g==} 681 + '@babel/core@7.27.7': 682 + resolution: {integrity: sha512-BU2f9tlKQ5CAthiMIgpzAh4eDTLWo1mqi9jqE2OxMG0E/OM199VJt2q8BztTxpnSW0i1ymdwLXRJnYzvDM5r2w==} 683 683 engines: {node: '>=6.9.0'} 684 684 685 685 '@babel/generator@7.27.5': ··· 748 748 resolution: {integrity: sha512-muE8Tt8M22638HU31A3CgfSUciwz1fhATfoVai05aPXGor//CdWDCbnlY1yvBPo07njuVOCNGCSp/GTt12lIug==} 749 749 engines: {node: '>=6.9.0'} 750 750 751 - '@babel/parser@7.27.5': 752 - resolution: {integrity: sha512-OsQd175SxWkGlzbny8J3K8TnnDD0N3lrIUtB92xwyRpzaenGZhxDvxN/JgU00U3CDZNj9tPuDJ5H0WS4Nt3vKg==} 751 + '@babel/parser@7.27.7': 752 + resolution: {integrity: sha512-qnzXzDXdr/po3bOTbTIQZ7+TxNKxpkN5IifVLXS+r7qwynkZfPyjZfE7hCXbo7IoO9TNcSyibgONsf2HauUd3Q==} 753 753 engines: {node: '>=6.0.0'} 754 754 hasBin: true 755 755 ··· 813 813 peerDependencies: 814 814 '@babel/core': ^7.0.0-0 815 815 816 - '@babel/plugin-transform-classes@7.27.1': 817 - resolution: {integrity: sha512-7iLhfFAubmpeJe/Wo2TVuDrykh/zlWXLzPNdL0Jqn/Xu8R3QQ8h9ff8FQoISZOsw74/HFqFI7NX63HN7QFIHKA==} 816 + '@babel/plugin-transform-classes@7.27.7': 817 + resolution: {integrity: sha512-CuLkokN1PEZ0Fsjtq+001aog/C2drDK9nTfK/NRK0n6rBin6cBrvM+zfQjDE+UllhR6/J4a6w8Xq9i4yi3mQrw==} 818 818 engines: {node: '>=6.9.0'} 819 819 peerDependencies: 820 820 '@babel/core': ^7.0.0-0 ··· 825 825 peerDependencies: 826 826 '@babel/core': ^7.0.0-0 827 827 828 - '@babel/plugin-transform-destructuring@7.27.3': 829 - resolution: {integrity: sha512-s4Jrok82JpiaIprtY2nHsYmrThKvvwgHwjgd7UMiYhZaN0asdXNLr0y+NjTfkA7SyQE5i2Fb7eawUOZmLvyqOA==} 828 + '@babel/plugin-transform-destructuring@7.27.7': 829 + resolution: {integrity: sha512-pg3ZLdIKWCP0CrJm0O4jYjVthyBeioVfvz9nwt6o5paUxsgJ/8GucSMAIaj6M7xA4WY+SrvtGu2LijzkdyecWQ==} 830 830 engines: {node: '>=6.9.0'} 831 831 peerDependencies: 832 832 '@babel/core': ^7.0.0-0 ··· 873 873 peerDependencies: 874 874 '@babel/core': ^7.0.0-0 875 875 876 - '@babel/plugin-transform-parameters@7.27.1': 877 - resolution: {integrity: sha512-018KRk76HWKeZ5l4oTj2zPpSh+NbGdt0st5S6x0pga6HgrjBOJb24mMDHorFopOOd6YHkLgOZ+zaCjZGPO4aKg==} 876 + '@babel/plugin-transform-parameters@7.27.7': 877 + resolution: {integrity: sha512-qBkYTYCb76RRxUM6CcZA5KRu8K4SM8ajzVeUgVdMVO9NN9uI/GaVmBg/WKJJGnNokV9SY8FxNOVWGXzqzUidBg==} 878 878 engines: {node: '>=6.9.0'} 879 879 peerDependencies: 880 880 '@babel/core': ^7.0.0-0 ··· 935 935 resolution: {integrity: sha512-LPDZ85aEJyYSd18/DkjNh4/y1ntkE5KwUHWTiqgRxruuZL2F1yuHligVHLvcHY2vMHXttKFpJn6LwfI7cw7ODw==} 936 936 engines: {node: '>=6.9.0'} 937 937 938 - '@babel/traverse@7.27.4': 939 - resolution: {integrity: sha512-oNcu2QbHqts9BtOWJosOVJapWjBDSxGCpFvikNR5TGDYDQf3JwpIoMzIKrvfoti93cLfPJEG4tH9SPVeyCGgdA==} 938 + '@babel/traverse@7.27.7': 939 + resolution: {integrity: sha512-X6ZlfR/O/s5EQ/SnUSLzr+6kGnkg8HXGMzpgsMsrJVcfDtH1vIp6ctCN4eZ1LS5c0+te5Cb6Y514fASjMRJ1nw==} 940 940 engines: {node: '>=6.9.0'} 941 941 942 - '@babel/types@7.27.6': 943 - resolution: {integrity: sha512-ETyHEk2VHHvl9b9jZP5IHPavHYk57EhanlRRuae9XCpb/j5bDCbPPMOBfCWhnl/7EDJz0jEMCi/RhccCE8r1+Q==} 942 + '@babel/types@7.27.7': 943 + resolution: {integrity: sha512-8OLQgDScAOHXnAz2cV+RfzzNMipuLVBz2biuAJFMV9bfkNf393je3VM8CLkjQodW5+iWsSJdSgSWT6rsZoXHPw==} 944 944 engines: {node: '>=6.9.0'} 945 945 946 - '@biomejs/biome@2.0.5': 947 - resolution: {integrity: sha512-MztFGhE6cVjf3QmomWu83GpTFyWY8KIcskgRf2AqVEMSH4qI4rNdBLdpAQ11TNK9pUfLGz3IIOC1ZYwgBePtig==} 946 + '@biomejs/biome@2.0.6': 947 + resolution: {integrity: sha512-RRP+9cdh5qwe2t0gORwXaa27oTOiQRQvrFf49x2PA1tnpsyU7FIHX4ZOFMtBC4QNtyWsN7Dqkf5EDbg4X+9iqA==} 948 948 engines: {node: '>=14.21.3'} 949 949 hasBin: true 950 950 951 - '@biomejs/cli-darwin-arm64@2.0.5': 952 - resolution: {integrity: sha512-VIIWQv9Rcj9XresjCf3isBFfWjFStsdGZvm8SmwJzKs/22YQj167ge7DkxuaaZbNf2kmYif0AcjAKvtNedEoEw==} 951 + '@biomejs/cli-darwin-arm64@2.0.6': 952 + resolution: {integrity: sha512-AzdiNNjNzsE6LfqWyBvcL29uWoIuZUkndu+wwlXW13EKcBHbbKjNQEZIJKYDc6IL+p7bmWGx3v9ZtcRyIoIz5A==} 953 953 engines: {node: '>=14.21.3'} 954 954 cpu: [arm64] 955 955 os: [darwin] 956 956 957 - '@biomejs/cli-darwin-x64@2.0.5': 958 - resolution: {integrity: sha512-DRpGxBgf5Z7HUFcNUB6n66UiD4VlBlMpngNf32wPraxX8vYU6N9cb3xQWOXIQVBBQ64QfsSLJnjNu79i/LNmSg==} 957 + '@biomejs/cli-darwin-x64@2.0.6': 958 + resolution: {integrity: sha512-wJjjP4E7bO4WJmiQaLnsdXMa516dbtC6542qeRkyJg0MqMXP0fvs4gdsHhZ7p9XWTAmGIjZHFKXdsjBvKGIJJQ==} 959 959 engines: {node: '>=14.21.3'} 960 960 cpu: [x64] 961 961 os: [darwin] 962 962 963 - '@biomejs/cli-linux-arm64-musl@2.0.5': 964 - resolution: {integrity: sha512-OpflTCOw/ElEs7QZqN/HFaSViPHjAsAPxFJ22LhWUWvuJgcy/Z8+hRV0/3mk/ZRWy5A6fCDKHZqAxU+xB6W4mA==} 963 + '@biomejs/cli-linux-arm64-musl@2.0.6': 964 + resolution: {integrity: sha512-CVPEMlin3bW49sBqLBg2x016Pws7eUXA27XYDFlEtponD0luYjg2zQaMJ2nOqlkKG9fqzzkamdYxHdMDc2gZFw==} 965 965 engines: {node: '>=14.21.3'} 966 966 cpu: [arm64] 967 967 os: [linux] 968 968 969 - '@biomejs/cli-linux-arm64@2.0.5': 970 - resolution: {integrity: sha512-FQTfDNMXOknf8+g9Eede2daaduRjTC2SNbfWPNFMadN9K3UKjeZ62jwiYxztPaz9zQQsZU8VbddQIaeQY5CmIA==} 969 + '@biomejs/cli-linux-arm64@2.0.6': 970 + resolution: {integrity: sha512-ZSVf6TYo5rNMUHIW1tww+rs/krol7U5A1Is/yzWyHVZguuB0lBnIodqyFuwCNqG9aJGyk7xIMS8HG0qGUPz0SA==} 971 971 engines: {node: '>=14.21.3'} 972 972 cpu: [arm64] 973 973 os: [linux] 974 974 975 - '@biomejs/cli-linux-x64-musl@2.0.5': 976 - resolution: {integrity: sha512-9lmjCnajAzpZXbav2P6D87ugkhnaDpJtDvOH5uQbY2RXeW6Rq18uOUltxgacGBP+d8GusTr+s3IFOu7SN0Ok8g==} 975 + '@biomejs/cli-linux-x64-musl@2.0.6': 976 + resolution: {integrity: sha512-mKHE/e954hR/hSnAcJSjkf4xGqZc/53Kh39HVW1EgO5iFi0JutTN07TSjEMg616julRtfSNJi0KNyxvc30Y4rQ==} 977 977 engines: {node: '>=14.21.3'} 978 978 cpu: [x64] 979 979 os: [linux] 980 980 981 - '@biomejs/cli-linux-x64@2.0.5': 982 - resolution: {integrity: sha512-znpfydUDPuDkyBTulnODrQVK2FaG/4hIOPcQSsF2GeauQOYrBAOplj0etGB0NUrr0dFsvaQ15nzDXYb60ACoiw==} 981 + '@biomejs/cli-linux-x64@2.0.6': 982 + resolution: {integrity: sha512-geM1MkHTV1Kh2Cs/Xzot9BOF3WBacihw6bkEmxkz4nSga8B9/hWy5BDiOG3gHDGIBa8WxT0nzsJs2f/hPqQIQw==} 983 983 engines: {node: '>=14.21.3'} 984 984 cpu: [x64] 985 985 os: [linux] 986 986 987 - '@biomejs/cli-win32-arm64@2.0.5': 988 - resolution: {integrity: sha512-CP2wKQB+gh8HdJTFKYRFETqReAjxlcN9AlYDEoye8v2eQp+L9v+PUeDql/wsbaUhSsLR0sjj3PtbBtt+02AN3A==} 987 + '@biomejs/cli-win32-arm64@2.0.6': 988 + resolution: {integrity: sha512-290V4oSFoKaprKE1zkYVsDfAdn0An5DowZ+GIABgjoq1ndhvNxkJcpxPsiYtT7slbVe3xmlT0ncdfOsN7KruzA==} 989 989 engines: {node: '>=14.21.3'} 990 990 cpu: [arm64] 991 991 os: [win32] 992 992 993 - '@biomejs/cli-win32-x64@2.0.5': 994 - resolution: {integrity: sha512-Sw3rz2m6bBADeQpr3+MD7Ch4E1l15DTt/+dfqKnwkm3cn4BrYwnArmvKeZdVsFRDjMyjlKIP88bw1r7o+9aqzw==} 993 + '@biomejs/cli-win32-x64@2.0.6': 994 + resolution: {integrity: sha512-bfM1Bce0d69Ao7pjTjUS+AWSZ02+5UHdiAP85Th8e9yV5xzw6JrHXbL5YWlcEKQ84FIZMdDc7ncuti1wd2sdbw==} 995 995 engines: {node: '>=14.21.3'} 996 996 cpu: [x64] 997 997 os: [win32] ··· 1330 1330 peerDependencies: 1331 1331 graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 1332 1332 1333 - '@graphql-tools/delegate@10.2.19': 1334 - resolution: {integrity: sha512-aaCGAALTQmKctHwumbtz0c5XehGjYLSfoDx1IB2vdPt76Q0MKz2AiEDlENgzTVr4JHH7fd9YNrd+IO3D8tFlIg==} 1333 + '@graphql-tools/delegate@10.2.20': 1334 + resolution: {integrity: sha512-vURrChtc3zPyD4XZv7eZj43mIkvuJH8IDDYy7q/AL10N4AJN0dKplWOUA9HSNPSPe3+5dnIUeTno8PX0tV99QA==} 1335 1335 engines: {node: '>=18.0.0'} 1336 1336 peerDependencies: 1337 1337 graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 ··· 1471 1471 peerDependencies: 1472 1472 graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 1473 1473 1474 - '@graphql-tools/wrap@10.1.0': 1475 - resolution: {integrity: sha512-M7QolM/cJwM2PNAJS1vphT2/PDVSKtmg5m+fxHrFfKpp2RRosJSvYPzUD/PVPqF2rXTtnCwkgh1s5KIsOPCz+w==} 1474 + '@graphql-tools/wrap@10.1.1': 1475 + resolution: {integrity: sha512-vNtnot0QMGSpCZeSvmd2pmpnMjpPHhUMD2d7sVy6vIzRx6lPV/zc9TKMeWGLlHgVx3oKg3RefB9dv19/QAPbog==} 1476 1476 engines: {node: '>=18.0.0'} 1477 1477 peerDependencies: 1478 1478 graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 ··· 1577 1577 peerDependencies: 1578 1578 react: '>=17.0.0' 1579 1579 1580 - '@livepeer/core-web@5.2.5': 1581 - resolution: {integrity: sha512-GFM+3uE5n4G3DSUpWJv60xfam0w+o6w4xtZoz5nzqZMbYdjkDguiRzQeIiC2y0GN45gRJqIOinJP5yKCoqNWZA==} 1580 + '@livepeer/core-web@5.2.6': 1581 + resolution: {integrity: sha512-MXwnVDE7/cyQxnvDyLOy9hNQiS4lGlTQgtffX202VuLAf+HvZzborIxHRxqotvFAtub7DlHu9D5968WlZq5kxQ==} 1582 1582 1583 1583 '@livepeer/core@3.3.1': 1584 1584 resolution: {integrity: sha512-hFLG92GjiwDGw48Ou0hhYkX25GcbNRCTAySHm1e4fQ+55eorq0nCN4fknH/J3MjP3JVlYZvIlI/gvpn/2IRi3g==} 1585 1585 1586 - '@livepeer/react@4.3.5': 1587 - resolution: {integrity: sha512-OXx4jACNOUDUPbwQmdXtRzIOcTYDgXKqr0+5LZ93q2Oa8p1Dww+Zb5OTe85fT5WKHv8IH502do7WNWRr9xoJJA==} 1586 + '@livepeer/react@4.3.6': 1587 + resolution: {integrity: sha512-dHcLbXp7WQKfZ7iCn3e2MiXJQ//STaqNFzUcmhm2bzhQQBPFYOyHeqGZLSr77S+FYjmMlGJWyA/DmVO0Wmhv5A==} 1588 1588 peerDependencies: 1589 1589 react: '>=17.0.0' 1590 1590 react-dom: '>=17.0.0' ··· 2717 2717 peerDependencies: 2718 2718 tailwindcss: '>=3.0.0 || >= 3.0.0-alpha.1 || >= 4.0.0-alpha.20 || >= 4.0.0-beta.1' 2719 2719 2720 - '@tailwindcss/node@4.1.10': 2721 - resolution: {integrity: sha512-2ACf1znY5fpRBwRhMgj9ZXvb2XZW8qs+oTfotJ2C5xR0/WNL7UHZ7zXl6s+rUqedL1mNi+0O+WQr5awGowS3PQ==} 2720 + '@tailwindcss/node@4.1.11': 2721 + resolution: {integrity: sha512-yzhzuGRmv5QyU9qLNg4GTlYI6STedBWRE7NjxP45CsFYYq9taI0zJXZBMqIC/c8fViNLhmrbpSFS57EoxUmD6Q==} 2722 2722 2723 - '@tailwindcss/oxide-android-arm64@4.1.10': 2724 - resolution: {integrity: sha512-VGLazCoRQ7rtsCzThaI1UyDu/XRYVyH4/EWiaSX6tFglE+xZB5cvtC5Omt0OQ+FfiIVP98su16jDVHDEIuH4iQ==} 2723 + '@tailwindcss/oxide-android-arm64@4.1.11': 2724 + resolution: {integrity: sha512-3IfFuATVRUMZZprEIx9OGDjG3Ou3jG4xQzNTvjDoKmU9JdmoCohQJ83MYd0GPnQIu89YoJqvMM0G3uqLRFtetg==} 2725 2725 engines: {node: '>= 10'} 2726 2726 cpu: [arm64] 2727 2727 os: [android] 2728 2728 2729 - '@tailwindcss/oxide-darwin-arm64@4.1.10': 2730 - resolution: {integrity: sha512-ZIFqvR1irX2yNjWJzKCqTCcHZbgkSkSkZKbRM3BPzhDL/18idA8uWCoopYA2CSDdSGFlDAxYdU2yBHwAwx8euQ==} 2729 + '@tailwindcss/oxide-darwin-arm64@4.1.11': 2730 + resolution: {integrity: sha512-ESgStEOEsyg8J5YcMb1xl8WFOXfeBmrhAwGsFxxB2CxY9evy63+AtpbDLAyRkJnxLy2WsD1qF13E97uQyP1lfQ==} 2731 2731 engines: {node: '>= 10'} 2732 2732 cpu: [arm64] 2733 2733 os: [darwin] 2734 2734 2735 - '@tailwindcss/oxide-darwin-x64@4.1.10': 2736 - resolution: {integrity: sha512-eCA4zbIhWUFDXoamNztmS0MjXHSEJYlvATzWnRiTqJkcUteSjO94PoRHJy1Xbwp9bptjeIxxBHh+zBWFhttbrQ==} 2735 + '@tailwindcss/oxide-darwin-x64@4.1.11': 2736 + resolution: {integrity: sha512-EgnK8kRchgmgzG6jE10UQNaH9Mwi2n+yw1jWmof9Vyg2lpKNX2ioe7CJdf9M5f8V9uaQxInenZkOxnTVL3fhAw==} 2737 2737 engines: {node: '>= 10'} 2738 2738 cpu: [x64] 2739 2739 os: [darwin] 2740 2740 2741 - '@tailwindcss/oxide-freebsd-x64@4.1.10': 2742 - resolution: {integrity: sha512-8/392Xu12R0cc93DpiJvNpJ4wYVSiciUlkiOHOSOQNH3adq9Gi/dtySK7dVQjXIOzlpSHjeCL89RUUI8/GTI6g==} 2741 + '@tailwindcss/oxide-freebsd-x64@4.1.11': 2742 + resolution: {integrity: sha512-xdqKtbpHs7pQhIKmqVpxStnY1skuNh4CtbcyOHeX1YBE0hArj2romsFGb6yUmzkq/6M24nkxDqU8GYrKrz+UcA==} 2743 2743 engines: {node: '>= 10'} 2744 2744 cpu: [x64] 2745 2745 os: [freebsd] 2746 2746 2747 - '@tailwindcss/oxide-linux-arm-gnueabihf@4.1.10': 2748 - resolution: {integrity: sha512-t9rhmLT6EqeuPT+MXhWhlRYIMSfh5LZ6kBrC4FS6/+M1yXwfCtp24UumgCWOAJVyjQwG+lYva6wWZxrfvB+NhQ==} 2747 + '@tailwindcss/oxide-linux-arm-gnueabihf@4.1.11': 2748 + resolution: {integrity: sha512-ryHQK2eyDYYMwB5wZL46uoxz2zzDZsFBwfjssgB7pzytAeCCa6glsiJGjhTEddq/4OsIjsLNMAiMlHNYnkEEeg==} 2749 2749 engines: {node: '>= 10'} 2750 2750 cpu: [arm] 2751 2751 os: [linux] 2752 2752 2753 - '@tailwindcss/oxide-linux-arm64-gnu@4.1.10': 2754 - resolution: {integrity: sha512-3oWrlNlxLRxXejQ8zImzrVLuZ/9Z2SeKoLhtCu0hpo38hTO2iL86eFOu4sVR8cZc6n3z7eRXXqtHJECa6mFOvA==} 2753 + '@tailwindcss/oxide-linux-arm64-gnu@4.1.11': 2754 + resolution: {integrity: sha512-mYwqheq4BXF83j/w75ewkPJmPZIqqP1nhoghS9D57CLjsh3Nfq0m4ftTotRYtGnZd3eCztgbSPJ9QhfC91gDZQ==} 2755 2755 engines: {node: '>= 10'} 2756 2756 cpu: [arm64] 2757 2757 os: [linux] 2758 2758 2759 - '@tailwindcss/oxide-linux-arm64-musl@4.1.10': 2760 - resolution: {integrity: sha512-saScU0cmWvg/Ez4gUmQWr9pvY9Kssxt+Xenfx1LG7LmqjcrvBnw4r9VjkFcqmbBb7GCBwYNcZi9X3/oMda9sqQ==} 2759 + '@tailwindcss/oxide-linux-arm64-musl@4.1.11': 2760 + resolution: {integrity: sha512-m/NVRFNGlEHJrNVk3O6I9ggVuNjXHIPoD6bqay/pubtYC9QIdAMpS+cswZQPBLvVvEF6GtSNONbDkZrjWZXYNQ==} 2761 2761 engines: {node: '>= 10'} 2762 2762 cpu: [arm64] 2763 2763 os: [linux] 2764 2764 2765 - '@tailwindcss/oxide-linux-x64-gnu@4.1.10': 2766 - resolution: {integrity: sha512-/G3ao/ybV9YEEgAXeEg28dyH6gs1QG8tvdN9c2MNZdUXYBaIY/Gx0N6RlJzfLy/7Nkdok4kaxKPHKJUlAaoTdA==} 2765 + '@tailwindcss/oxide-linux-x64-gnu@4.1.11': 2766 + resolution: {integrity: sha512-YW6sblI7xukSD2TdbbaeQVDysIm/UPJtObHJHKxDEcW2exAtY47j52f8jZXkqE1krdnkhCMGqP3dbniu1Te2Fg==} 2767 2767 engines: {node: '>= 10'} 2768 2768 cpu: [x64] 2769 2769 os: [linux] 2770 2770 2771 - '@tailwindcss/oxide-linux-x64-musl@4.1.10': 2772 - resolution: {integrity: sha512-LNr7X8fTiKGRtQGOerSayc2pWJp/9ptRYAa4G+U+cjw9kJZvkopav1AQc5HHD+U364f71tZv6XamaHKgrIoVzA==} 2771 + '@tailwindcss/oxide-linux-x64-musl@4.1.11': 2772 + resolution: {integrity: sha512-e3C/RRhGunWYNC3aSF7exsQkdXzQ/M+aYuZHKnw4U7KQwTJotnWsGOIVih0s2qQzmEzOFIJ3+xt7iq67K/p56Q==} 2773 2773 engines: {node: '>= 10'} 2774 2774 cpu: [x64] 2775 2775 os: [linux] 2776 2776 2777 - '@tailwindcss/oxide-wasm32-wasi@4.1.10': 2778 - resolution: {integrity: sha512-d6ekQpopFQJAcIK2i7ZzWOYGZ+A6NzzvQ3ozBvWFdeyqfOZdYHU66g5yr+/HC4ipP1ZgWsqa80+ISNILk+ae/Q==} 2777 + '@tailwindcss/oxide-wasm32-wasi@4.1.11': 2778 + resolution: {integrity: sha512-Xo1+/GU0JEN/C/dvcammKHzeM6NqKovG+6921MR6oadee5XPBaKOumrJCXvopJ/Qb5TH7LX/UAywbqrP4lax0g==} 2779 2779 engines: {node: '>=14.0.0'} 2780 2780 cpu: [wasm32] 2781 2781 bundledDependencies: ··· 2786 2786 - '@emnapi/wasi-threads' 2787 2787 - tslib 2788 2788 2789 - '@tailwindcss/oxide-win32-arm64-msvc@4.1.10': 2790 - resolution: {integrity: sha512-i1Iwg9gRbwNVOCYmnigWCCgow8nDWSFmeTUU5nbNx3rqbe4p0kRbEqLwLJbYZKmSSp23g4N6rCDmm7OuPBXhDA==} 2789 + '@tailwindcss/oxide-win32-arm64-msvc@4.1.11': 2790 + resolution: {integrity: sha512-UgKYx5PwEKrac3GPNPf6HVMNhUIGuUh4wlDFR2jYYdkX6pL/rn73zTq/4pzUm8fOjAn5L8zDeHp9iXmUGOXZ+w==} 2791 2791 engines: {node: '>= 10'} 2792 2792 cpu: [arm64] 2793 2793 os: [win32] 2794 2794 2795 - '@tailwindcss/oxide-win32-x64-msvc@4.1.10': 2796 - resolution: {integrity: sha512-sGiJTjcBSfGq2DVRtaSljq5ZgZS2SDHSIfhOylkBvHVjwOsodBhnb3HdmiKkVuUGKD0I7G63abMOVaskj1KpOA==} 2795 + '@tailwindcss/oxide-win32-x64-msvc@4.1.11': 2796 + resolution: {integrity: sha512-YfHoggn1j0LK7wR82TOucWc5LDCguHnoS879idHekmmiR7g9HUtMw9MI0NHatS28u/Xlkfi9w5RJWgz2Dl+5Qg==} 2797 2797 engines: {node: '>= 10'} 2798 2798 cpu: [x64] 2799 2799 os: [win32] 2800 2800 2801 - '@tailwindcss/oxide@4.1.10': 2802 - resolution: {integrity: sha512-v0C43s7Pjw+B9w21htrQwuFObSkio2aV/qPx/mhrRldbqxbWJK6KizM+q7BF1/1CmuLqZqX3CeYF7s7P9fbA8Q==} 2801 + '@tailwindcss/oxide@4.1.11': 2802 + resolution: {integrity: sha512-Q69XzrtAhuyfHo+5/HMgr1lAiPP/G40OMFAnws7xcFEYqcypZmdW8eGXaOUIeOl1dzPJBPENXgbjsOyhg2nkrg==} 2803 2803 engines: {node: '>= 10'} 2804 2804 2805 - '@tailwindcss/vite@4.1.10': 2806 - resolution: {integrity: sha512-QWnD5HDY2IADv+vYR82lOhqOlS1jSCUUAmfem52cXAhRTKxpDh3ARX8TTXJTCCO7Rv7cD2Nlekabv02bwP3a2A==} 2805 + '@tailwindcss/vite@4.1.11': 2806 + resolution: {integrity: sha512-RHYhrR3hku0MJFRV+fN2gNbDNEh3dwKvY8XJvTxCSXeMOsCRSr+uKvDWQcbizrHgjML6ZmTE5OwMrl5wKcujCw==} 2807 2807 peerDependencies: 2808 - vite: ^5.2.0 || ^6 2808 + vite: ^5.2.0 || ^6 || ^7 2809 2809 2810 2810 '@tanstack/query-core@5.81.2': 2811 2811 resolution: {integrity: sha512-QLYkPdrudoMATDFa3MiLEwRhNnAlzHWDf0LKaXUqJd0/+QxN8uTPi7bahRlxoAyH0UbLMBdeDbYzWALj7THOtw==} ··· 3044 3044 resolution: {integrity: sha512-FNoYzHawTMk/6KMQoEG5O4PuioX19UbwdQKF44yw0nLfOypfQdjtfZzo/UIJWAJ23sNIFbD1Ug9lbaDGMwbqQA==} 3045 3045 engines: {node: '>=8'} 3046 3046 3047 - '@zag-js/dismissable@1.17.1': 3048 - resolution: {integrity: sha512-pgCKNwqMBUbJXWZtIFdCb3e3vHE8n/Uwgz0RfCBlouYJ9K9Z9KMikZSKvC/FRb7MJOrVarfssE5GEF7MtkY8qg==} 3047 + '@zag-js/dismissable@1.17.3': 3048 + resolution: {integrity: sha512-fRONGICChTaTyET5zZRFcuZnaXyUnBUaCwFtk46oHkKNuzf5JhuHO/jGNTeVNeGX6LiG+3bz+U6V7ITahjXfEw==} 3049 3049 3050 - '@zag-js/dom-query@1.17.1': 3051 - resolution: {integrity: sha512-fwwzEKLPq3kAZVkkPBdskL4Ge4aHRAGqBLfAHCKioQNgvKYGRTzqmGA6ijls9ESULUWf0M2ogKstuUtY19PopA==} 3050 + '@zag-js/dom-query@1.17.3': 3051 + resolution: {integrity: sha512-gy1l9CYmQXU/ewQD6h1FGxb3Aj8MVaAKV/efcLr6FqhNUyW0vc7aZW2OOYcBJGxFvw/G73Pex52uDfc+qq00Rw==} 3052 3052 3053 - '@zag-js/interact-outside@1.17.1': 3054 - resolution: {integrity: sha512-r7qA/9d5PpNaN6MtPfpEdYimaDmst+Id2JXP1+Atj/wAUgkTO1d8rNd23cFVcQbq6gMCIgnqa01XVKSQbQIVjw==} 3053 + '@zag-js/interact-outside@1.17.3': 3054 + resolution: {integrity: sha512-hCeE5yXk7aJgrA7iBSVm8gySylKZhAU/LjLuLw09AueGed2uN8Ut0lCFBhy9805kw45lDTEXh1wyum2H/ropaw==} 3055 3055 3056 - '@zag-js/types@1.17.1': 3057 - resolution: {integrity: sha512-KEPko1DK19hEMfM5IPKTZQtpf4HC3X56qwckezRX1yk+/vGotVUxdjRIrv+pcITjlFAoQQO9TiiZv2UiiVrFGA==} 3056 + '@zag-js/types@1.17.3': 3057 + resolution: {integrity: sha512-qTSIU4wd7qBWQZmyFKvDylBaNPwknIIRHWCkxpPAYEK0MTkknB80QQ4QD6fwzx0HldXbKKM1WuJjFz0hf6rNLQ==} 3058 3058 3059 - '@zag-js/utils@1.17.1': 3060 - resolution: {integrity: sha512-+w/Kx7uZufg3cD6I5bQ8iSoeY3qSarPpUwrxz6FCOxJ86IAmf3ActqFC2pJ6DQCdHdkWINaKKchb4GNt8ld7KQ==} 3059 + '@zag-js/utils@1.17.3': 3060 + resolution: {integrity: sha512-ZGfRxFw35giCHu17rt3Wz42iIr079cOR2V75aHZEJTw4caKntRcszg6inOeOHNmgyiq3PbA5k1+l6Mu4B/syyg==} 3061 3061 3062 3062 abitype@1.0.8: 3063 3063 resolution: {integrity: sha512-ZeiI6h3GnW06uYDLx0etQtX/p8E24UaHHBj57RSjK7YBFe7iuVn07EDpOeP451D06sF27VOz9JJPlIKJmXgkEg==} ··· 3517 3517 dot-case@3.0.4: 3518 3518 resolution: {integrity: sha512-Kv5nKlh6yRrdrGvxeJ2e5y2eRUpkUosIW4A2AS38zwSz27zu7ufDwQPi5Jhs3XAlGNetl3bmnGhQsMtkKJnj3w==} 3519 3519 3520 - dotenv@16.5.0: 3521 - resolution: {integrity: sha512-m/C+AwOAr9/W1UOIZUo232ejMNnJAJtYQjUbHoNTBNTJSvqzzDh7vnrei3o3r3m9blf6ZoDkvcw0VmozNRFJxg==} 3520 + dotenv@16.6.0: 3521 + resolution: {integrity: sha512-Omf1L8paOy2VJhILjyhrhqwLIdstqm1BvcDPKg4NGAlkwEu9ODyrFbvk8UymUOMCT+HXo31jg1lArIrVAAhuGA==} 3522 3522 engines: {node: '>=12'} 3523 3523 3524 3524 dset@3.1.4: ··· 3536 3536 resolution: {integrity: sha512-r6kEJXDKecVOCj2nLMuXK/FCPeurW33+3JRpfXVbjLja3XUYFfD9I/JBreH6sUyzcm3G/YQboBjMla6poKeSdA==} 3537 3537 engines: {bun: '>=1', deno: '>=2', node: '>=16'} 3538 3538 3539 - electron-to-chromium@1.5.175: 3540 - resolution: {integrity: sha512-Nqpef9mOVo7pZfl9NIUhj7tgtRTsMzCzRTJDP1ccim4Wb4YHOz3Le87uxeZq68OCNwau2iQ/X7UwdAZ3ReOkmg==} 3539 + electron-to-chromium@1.5.177: 3540 + resolution: {integrity: sha512-7EH2G59nLsEMj97fpDuvVcYi6lwTcM1xuWw3PssD8xzboAW7zj7iB3COEEEATUfjLHrs5uKBLQT03V/8URx06g==} 3541 3541 3542 3542 emoji-regex@8.0.0: 3543 3543 resolution: {integrity: sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==} ··· 3736 3736 resolution: {integrity: sha512-buewHzMvYL29jdeQTVILecSaZKnt/RJWjoZCF5OW60Z67/GmSLBkOFM7qh1PI3zFNtJbaZL5eQu1vLfazOwj4g==} 3737 3737 engines: {node: '>=12.20.0'} 3738 3738 3739 - framer-motion@12.19.1: 3740 - resolution: {integrity: sha512-nq9hwWAEKf4gzprbOZzKugLV5OVKF7zrNDY6UOVu+4D3ZgIkg8L9Jy6AMrpBM06fhbKJ6LEG6UY5+t7Eq6wNlg==} 3739 + framer-motion@12.19.2: 3740 + resolution: {integrity: sha512-0cWMLkYr+i0emeXC4hkLF+5aYpzo32nRdQ0D/5DI460B3O7biQ3l2BpDzIGsAHYuZ0fpBP0DC8XBkVf6RPAlZw==} 3741 3741 peerDependencies: 3742 3742 '@emotion/is-prop-valid': '*' 3743 3743 react: ^18.0.0 || ^19.0.0 ··· 4518 4518 motion-utils@12.19.0: 4519 4519 resolution: {integrity: sha512-BuFTHINYmV07pdWs6lj6aI63vr2N4dg0vR+td0rtrdpWOhBzIkEklZyLcvKBoEtwSqx8Jg06vUB5RS0xDiUybw==} 4520 4520 4521 - motion@12.19.1: 4522 - resolution: {integrity: sha512-OhoHWrht+zwDPccr2wGltJdwgz2elFBBt/sLei2g0hwICvy2hOBFUkA4Ylup3VnDgz+vUtecf694EV7bJK4XjA==} 4521 + motion@12.19.2: 4522 + resolution: {integrity: sha512-Yb69HXE4ryhVd1xwpgWMMQAQgqEGMSGWG+NOumans2fvSCtT8gsj8JK7jhcGnc410CLT3BFPgquP67zmjbA5Jw==} 4523 4523 peerDependencies: 4524 4524 '@emotion/is-prop-valid': '*' 4525 4525 react: ^18.0.0 || ^19.0.0 ··· 5472 5472 tailwind-merge@3.3.1: 5473 5473 resolution: {integrity: sha512-gBXpgUm/3rp1lMZZrM/w7D8GKqshif0zAymAhbCyIt8KMe+0v9DQ7cdYLR4FHH/cKpdTXb+A/tKKU3eolfsI+g==} 5474 5474 5475 - tailwindcss@4.1.10: 5476 - resolution: {integrity: sha512-P3nr6WkvKV/ONsTzj6Gb57sWPMX29EPNPopo7+FcpkQaNsrNpZ1pv8QmrYI2RqEKD7mlGqLnGovlcYnBK0IqUA==} 5475 + tailwindcss@4.1.11: 5476 + resolution: {integrity: sha512-2E9TBm6MDD/xKYe+dvJZAmg3yxIEDNRc0jwlNyDg/4Fil2QcSLjFKGVff0lAf1jjeaArlG/M75Ey/EYr/OJtBA==} 5477 5477 5478 5478 tapable@2.2.2: 5479 5479 resolution: {integrity: sha512-Re10+NauLTMCudc7T5WLFLAwDhQ0JWdrMK+9B2M8zR5hRExKmsRDCBA7/aV/pNJFltmBFO5BAMlQFi/vq3nKOg==} ··· 6085 6085 use-sync-external-store: 6086 6086 optional: true 6087 6087 6088 - zustand@5.0.5: 6089 - resolution: {integrity: sha512-mILtRfKW9xM47hqxGIxCv12gXusoY/xTSHBYApXozR0HmQv299whhBeeAcRy+KrPPybzosvJBCOmVjq6x12fCg==} 6088 + zustand@5.0.6: 6089 + resolution: {integrity: sha512-ihAqNeUVhe0MAD+X8M5UzqyZ9k3FFZLBTtqo6JLPwV53cbRB/mJwBI0PxcIgqhBBHlEs8G45OTDTMq3gNcLq3A==} 6090 6090 engines: {node: '>=12.20.0'} 6091 6091 peerDependencies: 6092 6092 '@types/react': '>=18.0.0' ··· 6165 6165 6166 6166 '@ardatan/relay-compiler@12.0.0(graphql@16.11.0)': 6167 6167 dependencies: 6168 - '@babel/core': 7.27.4 6168 + '@babel/core': 7.27.7 6169 6169 '@babel/generator': 7.27.5 6170 - '@babel/parser': 7.27.5 6170 + '@babel/parser': 7.27.7 6171 6171 '@babel/runtime': 7.27.6 6172 - '@babel/traverse': 7.27.4 6173 - '@babel/types': 7.27.6 6174 - babel-preset-fbjs: 3.4.0(@babel/core@7.27.4) 6172 + '@babel/traverse': 7.27.7 6173 + '@babel/types': 7.27.7 6174 + babel-preset-fbjs: 3.4.0(@babel/core@7.27.7) 6175 6175 chalk: 4.1.2 6176 6176 fb-watchman: 2.0.2 6177 6177 fbjs: 3.0.5 ··· 6190 6190 '@ardatan/relay-compiler@12.0.3(graphql@16.11.0)': 6191 6191 dependencies: 6192 6192 '@babel/generator': 7.27.5 6193 - '@babel/parser': 7.27.5 6193 + '@babel/parser': 7.27.7 6194 6194 '@babel/runtime': 7.27.6 6195 6195 chalk: 4.1.2 6196 6196 fb-watchman: 2.0.2 ··· 6210 6210 '@ariatype/aria-attributes': 1.0.1 6211 6211 '@ariatype/aria-roles': 1.0.1 6212 6212 '@preact/signals-core': 1.10.0 6213 - '@zag-js/dom-query': 1.17.1 6213 + '@zag-js/dom-query': 1.17.3 6214 6214 just-kebab-case: 4.2.0 6215 6215 just-map-values: 3.2.0 6216 6216 server-dom-shim: 1.0.2 ··· 6236 6236 '@aria-ui/core': 0.0.21 6237 6237 '@floating-ui/dom': 1.7.1 6238 6238 '@floating-ui/utils': 0.2.9 6239 - '@zag-js/dom-query': 1.17.1 6239 + '@zag-js/dom-query': 1.17.3 6240 6240 6241 6241 '@aria-ui/popover@0.0.27': 6242 6242 dependencies: 6243 6243 '@aria-ui/core': 0.0.21 6244 6244 '@aria-ui/overlay': 0.0.24 6245 6245 '@aria-ui/presence': 0.0.19 6246 - '@zag-js/dismissable': 1.17.1 6247 - '@zag-js/dom-query': 1.17.1 6246 + '@zag-js/dismissable': 1.17.3 6247 + '@zag-js/dom-query': 1.17.3 6248 6248 6249 6249 '@aria-ui/presence@0.0.19': 6250 6250 dependencies: 6251 6251 '@aria-ui/core': 0.0.21 6252 - '@zag-js/dom-query': 1.17.1 6252 + '@zag-js/dom-query': 1.17.3 6253 6253 6254 6254 '@aria-ui/tooltip@0.0.29': 6255 6255 dependencies: ··· 6838 6838 js-tokens: 4.0.0 6839 6839 picocolors: 1.1.1 6840 6840 6841 - '@babel/compat-data@7.27.5': {} 6841 + '@babel/compat-data@7.27.7': {} 6842 6842 6843 - '@babel/core@7.27.4': 6843 + '@babel/core@7.27.7': 6844 6844 dependencies: 6845 6845 '@ampproject/remapping': 2.3.0 6846 6846 '@babel/code-frame': 7.27.1 6847 6847 '@babel/generator': 7.27.5 6848 6848 '@babel/helper-compilation-targets': 7.27.2 6849 - '@babel/helper-module-transforms': 7.27.3(@babel/core@7.27.4) 6849 + '@babel/helper-module-transforms': 7.27.3(@babel/core@7.27.7) 6850 6850 '@babel/helpers': 7.27.6 6851 - '@babel/parser': 7.27.5 6851 + '@babel/parser': 7.27.7 6852 6852 '@babel/template': 7.27.2 6853 - '@babel/traverse': 7.27.4 6854 - '@babel/types': 7.27.6 6853 + '@babel/traverse': 7.27.7 6854 + '@babel/types': 7.27.7 6855 6855 convert-source-map: 2.0.0 6856 6856 debug: 4.4.1 6857 6857 gensync: 1.0.0-beta.2 ··· 6862 6862 6863 6863 '@babel/generator@7.27.5': 6864 6864 dependencies: 6865 - '@babel/parser': 7.27.5 6866 - '@babel/types': 7.27.6 6865 + '@babel/parser': 7.27.7 6866 + '@babel/types': 7.27.7 6867 6867 '@jridgewell/gen-mapping': 0.3.8 6868 6868 '@jridgewell/trace-mapping': 0.3.25 6869 6869 jsesc: 3.1.0 6870 6870 6871 6871 '@babel/helper-annotate-as-pure@7.27.3': 6872 6872 dependencies: 6873 - '@babel/types': 7.27.6 6873 + '@babel/types': 7.27.7 6874 6874 6875 6875 '@babel/helper-compilation-targets@7.27.2': 6876 6876 dependencies: 6877 - '@babel/compat-data': 7.27.5 6877 + '@babel/compat-data': 7.27.7 6878 6878 '@babel/helper-validator-option': 7.27.1 6879 6879 browserslist: 4.25.1 6880 6880 lru-cache: 5.1.1 6881 6881 semver: 6.3.1 6882 6882 6883 - '@babel/helper-create-class-features-plugin@7.27.1(@babel/core@7.27.4)': 6883 + '@babel/helper-create-class-features-plugin@7.27.1(@babel/core@7.27.7)': 6884 6884 dependencies: 6885 - '@babel/core': 7.27.4 6885 + '@babel/core': 7.27.7 6886 6886 '@babel/helper-annotate-as-pure': 7.27.3 6887 6887 '@babel/helper-member-expression-to-functions': 7.27.1 6888 6888 '@babel/helper-optimise-call-expression': 7.27.1 6889 - '@babel/helper-replace-supers': 7.27.1(@babel/core@7.27.4) 6889 + '@babel/helper-replace-supers': 7.27.1(@babel/core@7.27.7) 6890 6890 '@babel/helper-skip-transparent-expression-wrappers': 7.27.1 6891 - '@babel/traverse': 7.27.4 6891 + '@babel/traverse': 7.27.7 6892 6892 semver: 6.3.1 6893 6893 transitivePeerDependencies: 6894 6894 - supports-color 6895 6895 6896 6896 '@babel/helper-member-expression-to-functions@7.27.1': 6897 6897 dependencies: 6898 - '@babel/traverse': 7.27.4 6899 - '@babel/types': 7.27.6 6898 + '@babel/traverse': 7.27.7 6899 + '@babel/types': 7.27.7 6900 6900 transitivePeerDependencies: 6901 6901 - supports-color 6902 6902 6903 6903 '@babel/helper-module-imports@7.27.1': 6904 6904 dependencies: 6905 - '@babel/traverse': 7.27.4 6906 - '@babel/types': 7.27.6 6905 + '@babel/traverse': 7.27.7 6906 + '@babel/types': 7.27.7 6907 6907 transitivePeerDependencies: 6908 6908 - supports-color 6909 6909 6910 - '@babel/helper-module-transforms@7.27.3(@babel/core@7.27.4)': 6910 + '@babel/helper-module-transforms@7.27.3(@babel/core@7.27.7)': 6911 6911 dependencies: 6912 - '@babel/core': 7.27.4 6912 + '@babel/core': 7.27.7 6913 6913 '@babel/helper-module-imports': 7.27.1 6914 6914 '@babel/helper-validator-identifier': 7.27.1 6915 - '@babel/traverse': 7.27.4 6915 + '@babel/traverse': 7.27.7 6916 6916 transitivePeerDependencies: 6917 6917 - supports-color 6918 6918 6919 6919 '@babel/helper-optimise-call-expression@7.27.1': 6920 6920 dependencies: 6921 - '@babel/types': 7.27.6 6921 + '@babel/types': 7.27.7 6922 6922 6923 6923 '@babel/helper-plugin-utils@7.27.1': {} 6924 6924 6925 - '@babel/helper-replace-supers@7.27.1(@babel/core@7.27.4)': 6925 + '@babel/helper-replace-supers@7.27.1(@babel/core@7.27.7)': 6926 6926 dependencies: 6927 - '@babel/core': 7.27.4 6927 + '@babel/core': 7.27.7 6928 6928 '@babel/helper-member-expression-to-functions': 7.27.1 6929 6929 '@babel/helper-optimise-call-expression': 7.27.1 6930 - '@babel/traverse': 7.27.4 6930 + '@babel/traverse': 7.27.7 6931 6931 transitivePeerDependencies: 6932 6932 - supports-color 6933 6933 6934 6934 '@babel/helper-skip-transparent-expression-wrappers@7.27.1': 6935 6935 dependencies: 6936 - '@babel/traverse': 7.27.4 6937 - '@babel/types': 7.27.6 6936 + '@babel/traverse': 7.27.7 6937 + '@babel/types': 7.27.7 6938 6938 transitivePeerDependencies: 6939 6939 - supports-color 6940 6940 ··· 6947 6947 '@babel/helpers@7.27.6': 6948 6948 dependencies: 6949 6949 '@babel/template': 7.27.2 6950 - '@babel/types': 7.27.6 6950 + '@babel/types': 7.27.7 6951 6951 6952 - '@babel/parser@7.27.5': 6952 + '@babel/parser@7.27.7': 6953 6953 dependencies: 6954 - '@babel/types': 7.27.6 6954 + '@babel/types': 7.27.7 6955 6955 6956 - '@babel/plugin-proposal-class-properties@7.18.6(@babel/core@7.27.4)': 6956 + '@babel/plugin-proposal-class-properties@7.18.6(@babel/core@7.27.7)': 6957 6957 dependencies: 6958 - '@babel/core': 7.27.4 6959 - '@babel/helper-create-class-features-plugin': 7.27.1(@babel/core@7.27.4) 6958 + '@babel/core': 7.27.7 6959 + '@babel/helper-create-class-features-plugin': 7.27.1(@babel/core@7.27.7) 6960 6960 '@babel/helper-plugin-utils': 7.27.1 6961 6961 transitivePeerDependencies: 6962 6962 - supports-color 6963 6963 6964 - '@babel/plugin-proposal-object-rest-spread@7.20.7(@babel/core@7.27.4)': 6964 + '@babel/plugin-proposal-object-rest-spread@7.20.7(@babel/core@7.27.7)': 6965 6965 dependencies: 6966 - '@babel/compat-data': 7.27.5 6967 - '@babel/core': 7.27.4 6966 + '@babel/compat-data': 7.27.7 6967 + '@babel/core': 7.27.7 6968 6968 '@babel/helper-compilation-targets': 7.27.2 6969 6969 '@babel/helper-plugin-utils': 7.27.1 6970 - '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.27.4) 6971 - '@babel/plugin-transform-parameters': 7.27.1(@babel/core@7.27.4) 6970 + '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.27.7) 6971 + '@babel/plugin-transform-parameters': 7.27.7(@babel/core@7.27.7) 6972 6972 6973 - '@babel/plugin-syntax-class-properties@7.12.13(@babel/core@7.27.4)': 6973 + '@babel/plugin-syntax-class-properties@7.12.13(@babel/core@7.27.7)': 6974 6974 dependencies: 6975 - '@babel/core': 7.27.4 6975 + '@babel/core': 7.27.7 6976 6976 '@babel/helper-plugin-utils': 7.27.1 6977 6977 6978 - '@babel/plugin-syntax-flow@7.27.1(@babel/core@7.27.4)': 6978 + '@babel/plugin-syntax-flow@7.27.1(@babel/core@7.27.7)': 6979 6979 dependencies: 6980 - '@babel/core': 7.27.4 6980 + '@babel/core': 7.27.7 6981 6981 '@babel/helper-plugin-utils': 7.27.1 6982 6982 6983 - '@babel/plugin-syntax-import-assertions@7.27.1(@babel/core@7.27.4)': 6983 + '@babel/plugin-syntax-import-assertions@7.27.1(@babel/core@7.27.7)': 6984 6984 dependencies: 6985 - '@babel/core': 7.27.4 6985 + '@babel/core': 7.27.7 6986 6986 '@babel/helper-plugin-utils': 7.27.1 6987 6987 6988 - '@babel/plugin-syntax-jsx@7.27.1(@babel/core@7.27.4)': 6988 + '@babel/plugin-syntax-jsx@7.27.1(@babel/core@7.27.7)': 6989 6989 dependencies: 6990 - '@babel/core': 7.27.4 6990 + '@babel/core': 7.27.7 6991 6991 '@babel/helper-plugin-utils': 7.27.1 6992 6992 6993 - '@babel/plugin-syntax-object-rest-spread@7.8.3(@babel/core@7.27.4)': 6993 + '@babel/plugin-syntax-object-rest-spread@7.8.3(@babel/core@7.27.7)': 6994 6994 dependencies: 6995 - '@babel/core': 7.27.4 6995 + '@babel/core': 7.27.7 6996 6996 '@babel/helper-plugin-utils': 7.27.1 6997 6997 6998 - '@babel/plugin-transform-arrow-functions@7.27.1(@babel/core@7.27.4)': 6998 + '@babel/plugin-transform-arrow-functions@7.27.1(@babel/core@7.27.7)': 6999 6999 dependencies: 7000 - '@babel/core': 7.27.4 7000 + '@babel/core': 7.27.7 7001 7001 '@babel/helper-plugin-utils': 7.27.1 7002 7002 7003 - '@babel/plugin-transform-block-scoped-functions@7.27.1(@babel/core@7.27.4)': 7003 + '@babel/plugin-transform-block-scoped-functions@7.27.1(@babel/core@7.27.7)': 7004 7004 dependencies: 7005 - '@babel/core': 7.27.4 7005 + '@babel/core': 7.27.7 7006 7006 '@babel/helper-plugin-utils': 7.27.1 7007 7007 7008 - '@babel/plugin-transform-block-scoping@7.27.5(@babel/core@7.27.4)': 7008 + '@babel/plugin-transform-block-scoping@7.27.5(@babel/core@7.27.7)': 7009 7009 dependencies: 7010 - '@babel/core': 7.27.4 7010 + '@babel/core': 7.27.7 7011 7011 '@babel/helper-plugin-utils': 7.27.1 7012 7012 7013 - '@babel/plugin-transform-classes@7.27.1(@babel/core@7.27.4)': 7013 + '@babel/plugin-transform-classes@7.27.7(@babel/core@7.27.7)': 7014 7014 dependencies: 7015 - '@babel/core': 7.27.4 7015 + '@babel/core': 7.27.7 7016 7016 '@babel/helper-annotate-as-pure': 7.27.3 7017 7017 '@babel/helper-compilation-targets': 7.27.2 7018 7018 '@babel/helper-plugin-utils': 7.27.1 7019 - '@babel/helper-replace-supers': 7.27.1(@babel/core@7.27.4) 7020 - '@babel/traverse': 7.27.4 7019 + '@babel/helper-replace-supers': 7.27.1(@babel/core@7.27.7) 7020 + '@babel/traverse': 7.27.7 7021 7021 globals: 11.12.0 7022 7022 transitivePeerDependencies: 7023 7023 - supports-color 7024 7024 7025 - '@babel/plugin-transform-computed-properties@7.27.1(@babel/core@7.27.4)': 7025 + '@babel/plugin-transform-computed-properties@7.27.1(@babel/core@7.27.7)': 7026 7026 dependencies: 7027 - '@babel/core': 7.27.4 7027 + '@babel/core': 7.27.7 7028 7028 '@babel/helper-plugin-utils': 7.27.1 7029 7029 '@babel/template': 7.27.2 7030 7030 7031 - '@babel/plugin-transform-destructuring@7.27.3(@babel/core@7.27.4)': 7031 + '@babel/plugin-transform-destructuring@7.27.7(@babel/core@7.27.7)': 7032 7032 dependencies: 7033 - '@babel/core': 7.27.4 7033 + '@babel/core': 7.27.7 7034 7034 '@babel/helper-plugin-utils': 7.27.1 7035 + '@babel/traverse': 7.27.7 7036 + transitivePeerDependencies: 7037 + - supports-color 7035 7038 7036 - '@babel/plugin-transform-flow-strip-types@7.27.1(@babel/core@7.27.4)': 7039 + '@babel/plugin-transform-flow-strip-types@7.27.1(@babel/core@7.27.7)': 7037 7040 dependencies: 7038 - '@babel/core': 7.27.4 7041 + '@babel/core': 7.27.7 7039 7042 '@babel/helper-plugin-utils': 7.27.1 7040 - '@babel/plugin-syntax-flow': 7.27.1(@babel/core@7.27.4) 7043 + '@babel/plugin-syntax-flow': 7.27.1(@babel/core@7.27.7) 7041 7044 7042 - '@babel/plugin-transform-for-of@7.27.1(@babel/core@7.27.4)': 7045 + '@babel/plugin-transform-for-of@7.27.1(@babel/core@7.27.7)': 7043 7046 dependencies: 7044 - '@babel/core': 7.27.4 7047 + '@babel/core': 7.27.7 7045 7048 '@babel/helper-plugin-utils': 7.27.1 7046 7049 '@babel/helper-skip-transparent-expression-wrappers': 7.27.1 7047 7050 transitivePeerDependencies: 7048 7051 - supports-color 7049 7052 7050 - '@babel/plugin-transform-function-name@7.27.1(@babel/core@7.27.4)': 7053 + '@babel/plugin-transform-function-name@7.27.1(@babel/core@7.27.7)': 7051 7054 dependencies: 7052 - '@babel/core': 7.27.4 7055 + '@babel/core': 7.27.7 7053 7056 '@babel/helper-compilation-targets': 7.27.2 7054 7057 '@babel/helper-plugin-utils': 7.27.1 7055 - '@babel/traverse': 7.27.4 7058 + '@babel/traverse': 7.27.7 7056 7059 transitivePeerDependencies: 7057 7060 - supports-color 7058 7061 7059 - '@babel/plugin-transform-literals@7.27.1(@babel/core@7.27.4)': 7062 + '@babel/plugin-transform-literals@7.27.1(@babel/core@7.27.7)': 7060 7063 dependencies: 7061 - '@babel/core': 7.27.4 7064 + '@babel/core': 7.27.7 7062 7065 '@babel/helper-plugin-utils': 7.27.1 7063 7066 7064 - '@babel/plugin-transform-member-expression-literals@7.27.1(@babel/core@7.27.4)': 7067 + '@babel/plugin-transform-member-expression-literals@7.27.1(@babel/core@7.27.7)': 7065 7068 dependencies: 7066 - '@babel/core': 7.27.4 7069 + '@babel/core': 7.27.7 7067 7070 '@babel/helper-plugin-utils': 7.27.1 7068 7071 7069 - '@babel/plugin-transform-modules-commonjs@7.27.1(@babel/core@7.27.4)': 7072 + '@babel/plugin-transform-modules-commonjs@7.27.1(@babel/core@7.27.7)': 7070 7073 dependencies: 7071 - '@babel/core': 7.27.4 7072 - '@babel/helper-module-transforms': 7.27.3(@babel/core@7.27.4) 7074 + '@babel/core': 7.27.7 7075 + '@babel/helper-module-transforms': 7.27.3(@babel/core@7.27.7) 7073 7076 '@babel/helper-plugin-utils': 7.27.1 7074 7077 transitivePeerDependencies: 7075 7078 - supports-color 7076 7079 7077 - '@babel/plugin-transform-object-super@7.27.1(@babel/core@7.27.4)': 7080 + '@babel/plugin-transform-object-super@7.27.1(@babel/core@7.27.7)': 7078 7081 dependencies: 7079 - '@babel/core': 7.27.4 7082 + '@babel/core': 7.27.7 7080 7083 '@babel/helper-plugin-utils': 7.27.1 7081 - '@babel/helper-replace-supers': 7.27.1(@babel/core@7.27.4) 7084 + '@babel/helper-replace-supers': 7.27.1(@babel/core@7.27.7) 7082 7085 transitivePeerDependencies: 7083 7086 - supports-color 7084 7087 7085 - '@babel/plugin-transform-parameters@7.27.1(@babel/core@7.27.4)': 7088 + '@babel/plugin-transform-parameters@7.27.7(@babel/core@7.27.7)': 7086 7089 dependencies: 7087 - '@babel/core': 7.27.4 7090 + '@babel/core': 7.27.7 7088 7091 '@babel/helper-plugin-utils': 7.27.1 7089 7092 7090 - '@babel/plugin-transform-property-literals@7.27.1(@babel/core@7.27.4)': 7093 + '@babel/plugin-transform-property-literals@7.27.1(@babel/core@7.27.7)': 7091 7094 dependencies: 7092 - '@babel/core': 7.27.4 7095 + '@babel/core': 7.27.7 7093 7096 '@babel/helper-plugin-utils': 7.27.1 7094 7097 7095 - '@babel/plugin-transform-react-display-name@7.27.1(@babel/core@7.27.4)': 7098 + '@babel/plugin-transform-react-display-name@7.27.1(@babel/core@7.27.7)': 7096 7099 dependencies: 7097 - '@babel/core': 7.27.4 7100 + '@babel/core': 7.27.7 7098 7101 '@babel/helper-plugin-utils': 7.27.1 7099 7102 7100 - '@babel/plugin-transform-react-jsx-self@7.27.1(@babel/core@7.27.4)': 7103 + '@babel/plugin-transform-react-jsx-self@7.27.1(@babel/core@7.27.7)': 7101 7104 dependencies: 7102 - '@babel/core': 7.27.4 7105 + '@babel/core': 7.27.7 7103 7106 '@babel/helper-plugin-utils': 7.27.1 7104 7107 7105 - '@babel/plugin-transform-react-jsx-source@7.27.1(@babel/core@7.27.4)': 7108 + '@babel/plugin-transform-react-jsx-source@7.27.1(@babel/core@7.27.7)': 7106 7109 dependencies: 7107 - '@babel/core': 7.27.4 7110 + '@babel/core': 7.27.7 7108 7111 '@babel/helper-plugin-utils': 7.27.1 7109 7112 7110 - '@babel/plugin-transform-react-jsx@7.27.1(@babel/core@7.27.4)': 7113 + '@babel/plugin-transform-react-jsx@7.27.1(@babel/core@7.27.7)': 7111 7114 dependencies: 7112 - '@babel/core': 7.27.4 7115 + '@babel/core': 7.27.7 7113 7116 '@babel/helper-annotate-as-pure': 7.27.3 7114 7117 '@babel/helper-module-imports': 7.27.1 7115 7118 '@babel/helper-plugin-utils': 7.27.1 7116 - '@babel/plugin-syntax-jsx': 7.27.1(@babel/core@7.27.4) 7117 - '@babel/types': 7.27.6 7119 + '@babel/plugin-syntax-jsx': 7.27.1(@babel/core@7.27.7) 7120 + '@babel/types': 7.27.7 7118 7121 transitivePeerDependencies: 7119 7122 - supports-color 7120 7123 7121 - '@babel/plugin-transform-shorthand-properties@7.27.1(@babel/core@7.27.4)': 7124 + '@babel/plugin-transform-shorthand-properties@7.27.1(@babel/core@7.27.7)': 7122 7125 dependencies: 7123 - '@babel/core': 7.27.4 7126 + '@babel/core': 7.27.7 7124 7127 '@babel/helper-plugin-utils': 7.27.1 7125 7128 7126 - '@babel/plugin-transform-spread@7.27.1(@babel/core@7.27.4)': 7129 + '@babel/plugin-transform-spread@7.27.1(@babel/core@7.27.7)': 7127 7130 dependencies: 7128 - '@babel/core': 7.27.4 7131 + '@babel/core': 7.27.7 7129 7132 '@babel/helper-plugin-utils': 7.27.1 7130 7133 '@babel/helper-skip-transparent-expression-wrappers': 7.27.1 7131 7134 transitivePeerDependencies: 7132 7135 - supports-color 7133 7136 7134 - '@babel/plugin-transform-template-literals@7.27.1(@babel/core@7.27.4)': 7137 + '@babel/plugin-transform-template-literals@7.27.1(@babel/core@7.27.7)': 7135 7138 dependencies: 7136 - '@babel/core': 7.27.4 7139 + '@babel/core': 7.27.7 7137 7140 '@babel/helper-plugin-utils': 7.27.1 7138 7141 7139 7142 '@babel/runtime@7.27.6': {} ··· 7141 7144 '@babel/template@7.27.2': 7142 7145 dependencies: 7143 7146 '@babel/code-frame': 7.27.1 7144 - '@babel/parser': 7.27.5 7145 - '@babel/types': 7.27.6 7147 + '@babel/parser': 7.27.7 7148 + '@babel/types': 7.27.7 7146 7149 7147 - '@babel/traverse@7.27.4': 7150 + '@babel/traverse@7.27.7': 7148 7151 dependencies: 7149 7152 '@babel/code-frame': 7.27.1 7150 7153 '@babel/generator': 7.27.5 7151 - '@babel/parser': 7.27.5 7154 + '@babel/parser': 7.27.7 7152 7155 '@babel/template': 7.27.2 7153 - '@babel/types': 7.27.6 7156 + '@babel/types': 7.27.7 7154 7157 debug: 4.4.1 7155 7158 globals: 11.12.0 7156 7159 transitivePeerDependencies: 7157 7160 - supports-color 7158 7161 7159 - '@babel/types@7.27.6': 7162 + '@babel/types@7.27.7': 7160 7163 dependencies: 7161 7164 '@babel/helper-string-parser': 7.27.1 7162 7165 '@babel/helper-validator-identifier': 7.27.1 7163 7166 7164 - '@biomejs/biome@2.0.5': 7167 + '@biomejs/biome@2.0.6': 7165 7168 optionalDependencies: 7166 - '@biomejs/cli-darwin-arm64': 2.0.5 7167 - '@biomejs/cli-darwin-x64': 2.0.5 7168 - '@biomejs/cli-linux-arm64': 2.0.5 7169 - '@biomejs/cli-linux-arm64-musl': 2.0.5 7170 - '@biomejs/cli-linux-x64': 2.0.5 7171 - '@biomejs/cli-linux-x64-musl': 2.0.5 7172 - '@biomejs/cli-win32-arm64': 2.0.5 7173 - '@biomejs/cli-win32-x64': 2.0.5 7169 + '@biomejs/cli-darwin-arm64': 2.0.6 7170 + '@biomejs/cli-darwin-x64': 2.0.6 7171 + '@biomejs/cli-linux-arm64': 2.0.6 7172 + '@biomejs/cli-linux-arm64-musl': 2.0.6 7173 + '@biomejs/cli-linux-x64': 2.0.6 7174 + '@biomejs/cli-linux-x64-musl': 2.0.6 7175 + '@biomejs/cli-win32-arm64': 2.0.6 7176 + '@biomejs/cli-win32-x64': 2.0.6 7174 7177 7175 - '@biomejs/cli-darwin-arm64@2.0.5': 7178 + '@biomejs/cli-darwin-arm64@2.0.6': 7176 7179 optional: true 7177 7180 7178 - '@biomejs/cli-darwin-x64@2.0.5': 7181 + '@biomejs/cli-darwin-x64@2.0.6': 7179 7182 optional: true 7180 7183 7181 - '@biomejs/cli-linux-arm64-musl@2.0.5': 7184 + '@biomejs/cli-linux-arm64-musl@2.0.6': 7182 7185 optional: true 7183 7186 7184 - '@biomejs/cli-linux-arm64@2.0.5': 7187 + '@biomejs/cli-linux-arm64@2.0.6': 7185 7188 optional: true 7186 7189 7187 - '@biomejs/cli-linux-x64-musl@2.0.5': 7190 + '@biomejs/cli-linux-x64-musl@2.0.6': 7188 7191 optional: true 7189 7192 7190 - '@biomejs/cli-linux-x64@2.0.5': 7193 + '@biomejs/cli-linux-x64@2.0.6': 7191 7194 optional: true 7192 7195 7193 - '@biomejs/cli-win32-arm64@2.0.5': 7196 + '@biomejs/cli-win32-arm64@2.0.6': 7194 7197 optional: true 7195 7198 7196 - '@biomejs/cli-win32-x64@2.0.5': 7199 + '@biomejs/cli-win32-x64@2.0.6': 7197 7200 optional: true 7198 7201 7199 7202 '@coinbase/wallet-sdk@3.9.3': ··· 7370 7373 dependencies: 7371 7374 '@babel/generator': 7.27.5 7372 7375 '@babel/template': 7.27.2 7373 - '@babel/types': 7.27.6 7376 + '@babel/types': 7.27.7 7374 7377 '@graphql-codegen/client-preset': 4.8.3(graphql@16.11.0) 7375 7378 '@graphql-codegen/core': 4.0.2(graphql@16.11.0) 7376 7379 '@graphql-codegen/plugin-helpers': 5.1.1(graphql@16.11.0) ··· 7596 7599 transitivePeerDependencies: 7597 7600 - supports-color 7598 7601 7599 - '@graphql-tools/delegate@10.2.19(graphql@16.11.0)': 7602 + '@graphql-tools/delegate@10.2.20(graphql@16.11.0)': 7600 7603 dependencies: 7601 7604 '@graphql-tools/batch-execute': 9.0.17(graphql@16.11.0) 7602 7605 '@graphql-tools/executor': 1.4.7(graphql@16.11.0) ··· 7712 7715 7713 7716 '@graphql-tools/graphql-tag-pluck@8.3.19(graphql@16.11.0)': 7714 7717 dependencies: 7715 - '@babel/core': 7.27.4 7716 - '@babel/parser': 7.27.5 7717 - '@babel/plugin-syntax-import-assertions': 7.27.1(@babel/core@7.27.4) 7718 - '@babel/traverse': 7.27.4 7719 - '@babel/types': 7.27.6 7718 + '@babel/core': 7.27.7 7719 + '@babel/parser': 7.27.7 7720 + '@babel/plugin-syntax-import-assertions': 7.27.1(@babel/core@7.27.7) 7721 + '@babel/traverse': 7.27.7 7722 + '@babel/types': 7.27.7 7720 7723 '@graphql-tools/utils': 10.8.6(graphql@16.11.0) 7721 7724 graphql: 16.11.0 7722 7725 tslib: 2.8.1 ··· 7770 7773 '@whatwg-node/fetch': 0.10.8 7771 7774 chalk: 4.1.2 7772 7775 debug: 4.4.1 7773 - dotenv: 16.5.0 7776 + dotenv: 16.6.0 7774 7777 graphql: 16.11.0 7775 7778 graphql-request: 6.1.0(graphql@16.11.0) 7776 7779 http-proxy-agent: 7.0.2 ··· 7823 7826 '@graphql-tools/executor-http': 1.3.3(@types/node@24.0.4)(graphql@16.11.0) 7824 7827 '@graphql-tools/executor-legacy-ws': 1.1.17(bufferutil@4.0.9)(graphql@16.11.0)(utf-8-validate@5.0.10) 7825 7828 '@graphql-tools/utils': 10.8.6(graphql@16.11.0) 7826 - '@graphql-tools/wrap': 10.1.0(graphql@16.11.0) 7829 + '@graphql-tools/wrap': 10.1.1(graphql@16.11.0) 7827 7830 '@types/ws': 8.18.1 7828 7831 '@whatwg-node/fetch': 0.10.8 7829 7832 '@whatwg-node/promise-helpers': 1.3.2 ··· 7855 7858 graphql: 16.11.0 7856 7859 tslib: 2.8.1 7857 7860 7858 - '@graphql-tools/wrap@10.1.0(graphql@16.11.0)': 7861 + '@graphql-tools/wrap@10.1.1(graphql@16.11.0)': 7859 7862 dependencies: 7860 - '@graphql-tools/delegate': 10.2.19(graphql@16.11.0) 7863 + '@graphql-tools/delegate': 10.2.20(graphql@16.11.0) 7861 7864 '@graphql-tools/schema': 10.0.23(graphql@16.11.0) 7862 7865 '@graphql-tools/utils': 10.8.6(graphql@16.11.0) 7863 7866 '@whatwg-node/promise-helpers': 1.3.2 ··· 7962 7965 - '@types/react' 7963 7966 - immer 7964 7967 7965 - '@livepeer/core-web@5.2.5(@types/react@19.1.8)(immer@10.1.1)(react@19.1.0)': 7968 + '@livepeer/core-web@5.2.6(@types/react@19.1.8)(immer@10.1.1)(react@19.1.0)': 7966 7969 dependencies: 7967 7970 '@livepeer/core': 3.3.1(@types/react@19.1.8)(immer@10.1.1)(react@19.1.0) 7968 7971 hls.js: 1.6.5 ··· 7982 7985 - immer 7983 7986 - react 7984 7987 7985 - '@livepeer/react@4.3.5(@types/react-dom@19.1.6(@types/react@19.1.8))(@types/react@19.1.8)(immer@10.1.1)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)': 7988 + '@livepeer/react@4.3.6(@types/react-dom@19.1.6(@types/react@19.1.8))(@types/react@19.1.8)(immer@10.1.1)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)': 7986 7989 dependencies: 7987 7990 '@livepeer/core': 3.3.1(@types/react@19.1.8)(immer@10.1.1)(react@19.1.0) 7988 7991 '@livepeer/core-react': 3.2.10(@types/react@19.1.8)(immer@10.1.1)(react@19.1.0) 7989 - '@livepeer/core-web': 5.2.5(@types/react@19.1.8)(immer@10.1.1)(react@19.1.0) 7992 + '@livepeer/core-web': 5.2.6(@types/react@19.1.8)(immer@10.1.1)(react@19.1.0) 7990 7993 '@radix-ui/primitive': 1.1.2 7991 7994 '@radix-ui/react-aspect-ratio': 1.1.7(@types/react-dom@19.1.6(@types/react@19.1.8))(@types/react@19.1.8)(react-dom@19.1.0(react@19.1.0))(react@19.1.0) 7992 7995 '@radix-ui/react-compose-refs': 1.1.2(@types/react@19.1.8)(react@19.1.0) ··· 9696 9699 dependencies: 9697 9700 tslib: 2.8.1 9698 9701 9699 - '@tailwindcss/aspect-ratio@0.4.2(tailwindcss@4.1.10)': 9702 + '@tailwindcss/aspect-ratio@0.4.2(tailwindcss@4.1.11)': 9700 9703 dependencies: 9701 - tailwindcss: 4.1.10 9704 + tailwindcss: 4.1.11 9702 9705 9703 - '@tailwindcss/forms@0.5.10(tailwindcss@4.1.10)': 9706 + '@tailwindcss/forms@0.5.10(tailwindcss@4.1.11)': 9704 9707 dependencies: 9705 9708 mini-svg-data-uri: 1.4.4 9706 - tailwindcss: 4.1.10 9709 + tailwindcss: 4.1.11 9707 9710 9708 - '@tailwindcss/node@4.1.10': 9711 + '@tailwindcss/node@4.1.11': 9709 9712 dependencies: 9710 9713 '@ampproject/remapping': 2.3.0 9711 9714 enhanced-resolve: 5.18.2 ··· 9713 9716 lightningcss: 1.30.1 9714 9717 magic-string: 0.30.17 9715 9718 source-map-js: 1.2.1 9716 - tailwindcss: 4.1.10 9719 + tailwindcss: 4.1.11 9717 9720 9718 - '@tailwindcss/oxide-android-arm64@4.1.10': 9721 + '@tailwindcss/oxide-android-arm64@4.1.11': 9719 9722 optional: true 9720 9723 9721 - '@tailwindcss/oxide-darwin-arm64@4.1.10': 9724 + '@tailwindcss/oxide-darwin-arm64@4.1.11': 9722 9725 optional: true 9723 9726 9724 - '@tailwindcss/oxide-darwin-x64@4.1.10': 9727 + '@tailwindcss/oxide-darwin-x64@4.1.11': 9725 9728 optional: true 9726 9729 9727 - '@tailwindcss/oxide-freebsd-x64@4.1.10': 9730 + '@tailwindcss/oxide-freebsd-x64@4.1.11': 9728 9731 optional: true 9729 9732 9730 - '@tailwindcss/oxide-linux-arm-gnueabihf@4.1.10': 9733 + '@tailwindcss/oxide-linux-arm-gnueabihf@4.1.11': 9731 9734 optional: true 9732 9735 9733 - '@tailwindcss/oxide-linux-arm64-gnu@4.1.10': 9736 + '@tailwindcss/oxide-linux-arm64-gnu@4.1.11': 9734 9737 optional: true 9735 9738 9736 - '@tailwindcss/oxide-linux-arm64-musl@4.1.10': 9739 + '@tailwindcss/oxide-linux-arm64-musl@4.1.11': 9737 9740 optional: true 9738 9741 9739 - '@tailwindcss/oxide-linux-x64-gnu@4.1.10': 9742 + '@tailwindcss/oxide-linux-x64-gnu@4.1.11': 9740 9743 optional: true 9741 9744 9742 - '@tailwindcss/oxide-linux-x64-musl@4.1.10': 9745 + '@tailwindcss/oxide-linux-x64-musl@4.1.11': 9743 9746 optional: true 9744 9747 9745 - '@tailwindcss/oxide-wasm32-wasi@4.1.10': 9748 + '@tailwindcss/oxide-wasm32-wasi@4.1.11': 9746 9749 optional: true 9747 9750 9748 - '@tailwindcss/oxide-win32-arm64-msvc@4.1.10': 9751 + '@tailwindcss/oxide-win32-arm64-msvc@4.1.11': 9749 9752 optional: true 9750 9753 9751 - '@tailwindcss/oxide-win32-x64-msvc@4.1.10': 9754 + '@tailwindcss/oxide-win32-x64-msvc@4.1.11': 9752 9755 optional: true 9753 9756 9754 - '@tailwindcss/oxide@4.1.10': 9757 + '@tailwindcss/oxide@4.1.11': 9755 9758 dependencies: 9756 9759 detect-libc: 2.0.4 9757 9760 tar: 7.4.3 9758 9761 optionalDependencies: 9759 - '@tailwindcss/oxide-android-arm64': 4.1.10 9760 - '@tailwindcss/oxide-darwin-arm64': 4.1.10 9761 - '@tailwindcss/oxide-darwin-x64': 4.1.10 9762 - '@tailwindcss/oxide-freebsd-x64': 4.1.10 9763 - '@tailwindcss/oxide-linux-arm-gnueabihf': 4.1.10 9764 - '@tailwindcss/oxide-linux-arm64-gnu': 4.1.10 9765 - '@tailwindcss/oxide-linux-arm64-musl': 4.1.10 9766 - '@tailwindcss/oxide-linux-x64-gnu': 4.1.10 9767 - '@tailwindcss/oxide-linux-x64-musl': 4.1.10 9768 - '@tailwindcss/oxide-wasm32-wasi': 4.1.10 9769 - '@tailwindcss/oxide-win32-arm64-msvc': 4.1.10 9770 - '@tailwindcss/oxide-win32-x64-msvc': 4.1.10 9762 + '@tailwindcss/oxide-android-arm64': 4.1.11 9763 + '@tailwindcss/oxide-darwin-arm64': 4.1.11 9764 + '@tailwindcss/oxide-darwin-x64': 4.1.11 9765 + '@tailwindcss/oxide-freebsd-x64': 4.1.11 9766 + '@tailwindcss/oxide-linux-arm-gnueabihf': 4.1.11 9767 + '@tailwindcss/oxide-linux-arm64-gnu': 4.1.11 9768 + '@tailwindcss/oxide-linux-arm64-musl': 4.1.11 9769 + '@tailwindcss/oxide-linux-x64-gnu': 4.1.11 9770 + '@tailwindcss/oxide-linux-x64-musl': 4.1.11 9771 + '@tailwindcss/oxide-wasm32-wasi': 4.1.11 9772 + '@tailwindcss/oxide-win32-arm64-msvc': 4.1.11 9773 + '@tailwindcss/oxide-win32-x64-msvc': 4.1.11 9771 9774 9772 - '@tailwindcss/vite@4.1.10(vite@7.0.0(@types/node@24.0.4)(jiti@2.4.2)(lightningcss@1.30.1)(tsx@4.20.3)(yaml@2.8.0))': 9775 + '@tailwindcss/vite@4.1.11(vite@7.0.0(@types/node@24.0.4)(jiti@2.4.2)(lightningcss@1.30.1)(tsx@4.20.3)(yaml@2.8.0))': 9773 9776 dependencies: 9774 - '@tailwindcss/node': 4.1.10 9775 - '@tailwindcss/oxide': 4.1.10 9776 - tailwindcss: 4.1.10 9777 + '@tailwindcss/node': 4.1.11 9778 + '@tailwindcss/oxide': 4.1.11 9779 + tailwindcss: 4.1.11 9777 9780 vite: 7.0.0(@types/node@24.0.4)(jiti@2.4.2)(lightningcss@1.30.1)(tsx@4.20.3)(yaml@2.8.0) 9778 9781 9779 9782 '@tanstack/query-core@5.81.2': {} ··· 9793 9796 9794 9797 '@types/babel__core@7.20.5': 9795 9798 dependencies: 9796 - '@babel/parser': 7.27.5 9797 - '@babel/types': 7.27.6 9799 + '@babel/parser': 7.27.7 9800 + '@babel/types': 7.27.7 9798 9801 '@types/babel__generator': 7.27.0 9799 9802 '@types/babel__template': 7.4.4 9800 9803 '@types/babel__traverse': 7.20.7 9801 9804 9802 9805 '@types/babel__generator@7.27.0': 9803 9806 dependencies: 9804 - '@babel/types': 7.27.6 9807 + '@babel/types': 7.27.7 9805 9808 9806 9809 '@types/babel__template@7.4.4': 9807 9810 dependencies: 9808 - '@babel/parser': 7.27.5 9809 - '@babel/types': 7.27.6 9811 + '@babel/parser': 7.27.7 9812 + '@babel/types': 7.27.7 9810 9813 9811 9814 '@types/babel__traverse@7.20.7': 9812 9815 dependencies: 9813 - '@babel/types': 7.27.6 9816 + '@babel/types': 7.27.7 9814 9817 9815 9818 '@types/debug@4.1.12': 9816 9819 dependencies: ··· 9871 9874 9872 9875 '@vitejs/plugin-react@4.6.0(vite@7.0.0(@types/node@24.0.4)(jiti@2.4.2)(lightningcss@1.30.1)(tsx@4.20.3)(yaml@2.8.0))': 9873 9876 dependencies: 9874 - '@babel/core': 7.27.4 9875 - '@babel/plugin-transform-react-jsx-self': 7.27.1(@babel/core@7.27.4) 9876 - '@babel/plugin-transform-react-jsx-source': 7.27.1(@babel/core@7.27.4) 9877 + '@babel/core': 7.27.7 9878 + '@babel/plugin-transform-react-jsx-self': 7.27.1(@babel/core@7.27.7) 9879 + '@babel/plugin-transform-react-jsx-source': 7.27.1(@babel/core@7.27.7) 9877 9880 '@rolldown/pluginutils': 1.0.0-beta.19 9878 9881 '@types/babel__core': 7.20.5 9879 9882 react-refresh: 0.17.0 ··· 10497 10500 dependencies: 10498 10501 tslib: 2.8.1 10499 10502 10500 - '@zag-js/dismissable@1.17.1': 10503 + '@zag-js/dismissable@1.17.3': 10501 10504 dependencies: 10502 - '@zag-js/dom-query': 1.17.1 10503 - '@zag-js/interact-outside': 1.17.1 10504 - '@zag-js/utils': 1.17.1 10505 + '@zag-js/dom-query': 1.17.3 10506 + '@zag-js/interact-outside': 1.17.3 10507 + '@zag-js/utils': 1.17.3 10505 10508 10506 - '@zag-js/dom-query@1.17.1': 10509 + '@zag-js/dom-query@1.17.3': 10507 10510 dependencies: 10508 - '@zag-js/types': 1.17.1 10511 + '@zag-js/types': 1.17.3 10509 10512 10510 - '@zag-js/interact-outside@1.17.1': 10513 + '@zag-js/interact-outside@1.17.3': 10511 10514 dependencies: 10512 - '@zag-js/dom-query': 1.17.1 10513 - '@zag-js/utils': 1.17.1 10515 + '@zag-js/dom-query': 1.17.3 10516 + '@zag-js/utils': 1.17.3 10514 10517 10515 - '@zag-js/types@1.17.1': 10518 + '@zag-js/types@1.17.3': 10516 10519 dependencies: 10517 10520 csstype: 3.1.3 10518 10521 10519 - '@zag-js/utils@1.17.1': {} 10522 + '@zag-js/utils@1.17.3': {} 10520 10523 10521 10524 abitype@1.0.8(typescript@5.8.3)(zod@3.22.4): 10522 10525 optionalDependencies: ··· 10584 10587 10585 10588 babel-plugin-syntax-trailing-function-commas@7.0.0-beta.0: {} 10586 10589 10587 - babel-preset-fbjs@3.4.0(@babel/core@7.27.4): 10590 + babel-preset-fbjs@3.4.0(@babel/core@7.27.7): 10588 10591 dependencies: 10589 - '@babel/core': 7.27.4 10590 - '@babel/plugin-proposal-class-properties': 7.18.6(@babel/core@7.27.4) 10591 - '@babel/plugin-proposal-object-rest-spread': 7.20.7(@babel/core@7.27.4) 10592 - '@babel/plugin-syntax-class-properties': 7.12.13(@babel/core@7.27.4) 10593 - '@babel/plugin-syntax-flow': 7.27.1(@babel/core@7.27.4) 10594 - '@babel/plugin-syntax-jsx': 7.27.1(@babel/core@7.27.4) 10595 - '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.27.4) 10596 - '@babel/plugin-transform-arrow-functions': 7.27.1(@babel/core@7.27.4) 10597 - '@babel/plugin-transform-block-scoped-functions': 7.27.1(@babel/core@7.27.4) 10598 - '@babel/plugin-transform-block-scoping': 7.27.5(@babel/core@7.27.4) 10599 - '@babel/plugin-transform-classes': 7.27.1(@babel/core@7.27.4) 10600 - '@babel/plugin-transform-computed-properties': 7.27.1(@babel/core@7.27.4) 10601 - '@babel/plugin-transform-destructuring': 7.27.3(@babel/core@7.27.4) 10602 - '@babel/plugin-transform-flow-strip-types': 7.27.1(@babel/core@7.27.4) 10603 - '@babel/plugin-transform-for-of': 7.27.1(@babel/core@7.27.4) 10604 - '@babel/plugin-transform-function-name': 7.27.1(@babel/core@7.27.4) 10605 - '@babel/plugin-transform-literals': 7.27.1(@babel/core@7.27.4) 10606 - '@babel/plugin-transform-member-expression-literals': 7.27.1(@babel/core@7.27.4) 10607 - '@babel/plugin-transform-modules-commonjs': 7.27.1(@babel/core@7.27.4) 10608 - '@babel/plugin-transform-object-super': 7.27.1(@babel/core@7.27.4) 10609 - '@babel/plugin-transform-parameters': 7.27.1(@babel/core@7.27.4) 10610 - '@babel/plugin-transform-property-literals': 7.27.1(@babel/core@7.27.4) 10611 - '@babel/plugin-transform-react-display-name': 7.27.1(@babel/core@7.27.4) 10612 - '@babel/plugin-transform-react-jsx': 7.27.1(@babel/core@7.27.4) 10613 - '@babel/plugin-transform-shorthand-properties': 7.27.1(@babel/core@7.27.4) 10614 - '@babel/plugin-transform-spread': 7.27.1(@babel/core@7.27.4) 10615 - '@babel/plugin-transform-template-literals': 7.27.1(@babel/core@7.27.4) 10592 + '@babel/core': 7.27.7 10593 + '@babel/plugin-proposal-class-properties': 7.18.6(@babel/core@7.27.7) 10594 + '@babel/plugin-proposal-object-rest-spread': 7.20.7(@babel/core@7.27.7) 10595 + '@babel/plugin-syntax-class-properties': 7.12.13(@babel/core@7.27.7) 10596 + '@babel/plugin-syntax-flow': 7.27.1(@babel/core@7.27.7) 10597 + '@babel/plugin-syntax-jsx': 7.27.1(@babel/core@7.27.7) 10598 + '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.27.7) 10599 + '@babel/plugin-transform-arrow-functions': 7.27.1(@babel/core@7.27.7) 10600 + '@babel/plugin-transform-block-scoped-functions': 7.27.1(@babel/core@7.27.7) 10601 + '@babel/plugin-transform-block-scoping': 7.27.5(@babel/core@7.27.7) 10602 + '@babel/plugin-transform-classes': 7.27.7(@babel/core@7.27.7) 10603 + '@babel/plugin-transform-computed-properties': 7.27.1(@babel/core@7.27.7) 10604 + '@babel/plugin-transform-destructuring': 7.27.7(@babel/core@7.27.7) 10605 + '@babel/plugin-transform-flow-strip-types': 7.27.1(@babel/core@7.27.7) 10606 + '@babel/plugin-transform-for-of': 7.27.1(@babel/core@7.27.7) 10607 + '@babel/plugin-transform-function-name': 7.27.1(@babel/core@7.27.7) 10608 + '@babel/plugin-transform-literals': 7.27.1(@babel/core@7.27.7) 10609 + '@babel/plugin-transform-member-expression-literals': 7.27.1(@babel/core@7.27.7) 10610 + '@babel/plugin-transform-modules-commonjs': 7.27.1(@babel/core@7.27.7) 10611 + '@babel/plugin-transform-object-super': 7.27.1(@babel/core@7.27.7) 10612 + '@babel/plugin-transform-parameters': 7.27.7(@babel/core@7.27.7) 10613 + '@babel/plugin-transform-property-literals': 7.27.1(@babel/core@7.27.7) 10614 + '@babel/plugin-transform-react-display-name': 7.27.1(@babel/core@7.27.7) 10615 + '@babel/plugin-transform-react-jsx': 7.27.1(@babel/core@7.27.7) 10616 + '@babel/plugin-transform-shorthand-properties': 7.27.1(@babel/core@7.27.7) 10617 + '@babel/plugin-transform-spread': 7.27.1(@babel/core@7.27.7) 10618 + '@babel/plugin-transform-template-literals': 7.27.1(@babel/core@7.27.7) 10616 10619 babel-plugin-syntax-trailing-function-commas: 7.0.0-beta.0 10617 10620 transitivePeerDependencies: 10618 10621 - supports-color ··· 10659 10662 browserslist@4.25.1: 10660 10663 dependencies: 10661 10664 caniuse-lite: 1.0.30001726 10662 - electron-to-chromium: 1.5.175 10665 + electron-to-chromium: 1.5.177 10663 10666 node-releases: 2.0.19 10664 10667 update-browserslist-db: 1.1.3(browserslist@4.25.1) 10665 10668 ··· 10984 10987 no-case: 3.0.4 10985 10988 tslib: 2.8.1 10986 10989 10987 - dotenv@16.5.0: {} 10990 + dotenv@16.6.0: {} 10988 10991 10989 10992 dset@3.1.4: {} 10990 10993 ··· 11008 11011 '@noble/curves': 1.9.2 11009 11012 '@noble/hashes': 1.8.0 11010 11013 11011 - electron-to-chromium@1.5.175: {} 11014 + electron-to-chromium@1.5.177: {} 11012 11015 11013 11016 emoji-regex@8.0.0: {} 11014 11017 ··· 11238 11241 dependencies: 11239 11242 fetch-blob: 3.2.0 11240 11243 11241 - framer-motion@12.19.1(react-dom@19.1.0(react@19.1.0))(react@19.1.0): 11244 + framer-motion@12.19.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0): 11242 11245 dependencies: 11243 11246 motion-dom: 12.19.0 11244 11247 motion-utils: 12.19.0 ··· 12197 12200 12198 12201 motion-plus-dom@1.3.1(react-dom@19.1.0(react@19.1.0))(react@19.1.0): 12199 12202 dependencies: 12200 - motion: 12.19.1(react-dom@19.1.0(react@19.1.0))(react@19.1.0) 12203 + motion: 12.19.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0) 12201 12204 motion-dom: 12.19.0 12202 12205 motion-utils: 12.19.0 12203 12206 transitivePeerDependencies: ··· 12207 12210 12208 12211 motion-plus-react@1.3.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0): 12209 12212 dependencies: 12210 - motion: 12.19.1(react-dom@19.1.0(react@19.1.0))(react@19.1.0) 12213 + motion: 12.19.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0) 12211 12214 motion-dom: 12.19.0 12212 12215 motion-plus-dom: 1.3.1(react-dom@19.1.0(react@19.1.0))(react@19.1.0) 12213 12216 motion-utils: 12.19.0 ··· 12219 12222 12220 12223 motion-utils@12.19.0: {} 12221 12224 12222 - motion@12.19.1(react-dom@19.1.0(react@19.1.0))(react@19.1.0): 12225 + motion@12.19.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0): 12223 12226 dependencies: 12224 - framer-motion: 12.19.1(react-dom@19.1.0(react@19.1.0))(react@19.1.0) 12227 + framer-motion: 12.19.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0) 12225 12228 tslib: 2.8.1 12226 12229 optionalDependencies: 12227 12230 react: 19.1.0 ··· 13248 13251 13249 13252 tailwind-merge@3.3.1: {} 13250 13253 13251 - tailwindcss@4.1.10: {} 13254 + tailwindcss@4.1.11: {} 13252 13255 13253 13256 tapable@2.2.2: {} 13254 13257 ··· 13777 13780 react: 19.1.0 13778 13781 use-sync-external-store: 1.4.0(react@19.1.0) 13779 13782 13780 - zustand@5.0.5(@types/react@19.1.8)(immer@10.1.1)(react@19.1.0)(use-sync-external-store@1.4.0(react@19.1.0)): 13783 + zustand@5.0.6(@types/react@19.1.8)(immer@10.1.1)(react@19.1.0)(use-sync-external-store@1.4.0(react@19.1.0)): 13781 13784 optionalDependencies: 13782 13785 '@types/react': 19.1.8 13783 13786 immer: 10.1.1