Skip to content

Commit 0a6b0ec

Browse files
authored
update dependencies (#5523)
1 parent 708c353 commit 0a6b0ec

File tree

17 files changed

+609
-833
lines changed

17 files changed

+609
-833
lines changed

.nvmrc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
20
1+
22

apps/dashboard/package.json

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -48,14 +48,14 @@
4848
"@radix-ui/react-tooltip": "1.1.4",
4949
"@sentry/nextjs": "8.40.0",
5050
"@shazow/whatsabi": "^0.17.0",
51-
"@tanstack/react-query": "5.61.3",
51+
"@tanstack/react-query": "5.61.4",
5252
"@tanstack/react-table": "^8.17.3",
5353
"@thirdweb-dev/service-utils": "workspace:*",
5454
"@vercel/functions": "^1.4.2",
5555
"@vercel/og": "^0.6.4",
5656
"abitype": "1.0.6",
5757
"chakra-react-select": "^4.7.6",
58-
"class-variance-authority": "^0.7.0",
58+
"class-variance-authority": "^0.7.1",
5959
"clsx": "^2.1.1",
6060
"color": "^4.2.3",
6161
"compare-versions": "^6.1.0",
@@ -66,7 +66,6 @@
6666
"input-otp": "^1.4.1",
6767
"ioredis": "^5.4.1",
6868
"ipaddr.js": "^2.2.0",
69-
"lottie-react": "^2.4.0",
7069
"lucide-react": "0.461.0",
7170
"next": "15.0.3",
7271
"next-plausible": "^3.12.4",
@@ -117,7 +116,7 @@
117116
"@storybook/react": "8.4.5",
118117
"@storybook/test": "8.4.5",
119118
"@types/color": "4.2.0",
120-
"@types/node": "20.14.9",
119+
"@types/node": "22.10.0",
121120
"@types/papaparse": "^5.3.15",
122121
"@types/pluralize": "^0.0.33",
123122
"@types/qrcode": "^1.5.5",
@@ -134,7 +133,7 @@
134133
"eslint-config-biome": "1.9.3",
135134
"eslint-plugin-react-compiler": "19.0.0-beta-df7b47d-20241124",
136135
"eslint-plugin-storybook": "^0.11.1",
137-
"knip": "5.37.2",
136+
"knip": "5.38.0",
138137
"next-sitemap": "^4.2.3",
139138
"postcss": "8.4.49",
140139
"storybook": "8.4.5",

apps/dashboard/public/assets/product-pages/connect/connect-lottie.json

Lines changed: 0 additions & 1 deletion
This file was deleted.

apps/dashboard/public/assets/product-pages/engine/lottie.json

Lines changed: 0 additions & 1 deletion
This file was deleted.

apps/dashboard/public/assets/product-pages/engine/lottie2.json

Lines changed: 0 additions & 1 deletion
This file was deleted.

apps/dashboard/src/app/team/[team_slug]/(team)/~/engine/(instance)/[engineId]/overview/components/backend-wallets-table.tsx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -371,6 +371,7 @@ const ReceiveFundsModal = ({
371371
address={backendWallet.address}
372372
shortenAddress={false}
373373
/>
374+
{/* eslint-disable-next-line @next/next/no-img-element */}
374375
<img
375376
src={qrCodeBase64Query.data}
376377
alt="QR code for receiving funds"
Lines changed: 2 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,9 @@
1-
import { Box } from "@chakra-ui/react";
21
import { ChakraNextImage } from "components/Image";
3-
import Lottie from "lottie-react";
42
import type { LandingDesktopMobileImageProps } from "./types";
53

64
export const LandingDesktopMobileImage: React.FC<
75
LandingDesktopMobileImageProps
8-
> = ({ lottie, image, mobileImage, ...props }) => {
6+
> = ({ image, mobileImage, ...props }) => {
97
return (
108
<>
119
{mobileImage && (
@@ -16,27 +14,14 @@ export const LandingDesktopMobileImage: React.FC<
1614
alt=""
1715
/>
1816
)}
19-
{!lottie && image && (
17+
{image && (
2018
<ChakraNextImage
2119
{...props}
2220
src={image}
2321
alt=""
2422
display={{ base: mobileImage ? "none" : "block", md: "block" }}
2523
/>
2624
)}
27-
{lottie && (
28-
<Box
29-
w="100%"
30-
h="100%"
31-
display={{ base: mobileImage ? "none" : "block", md: "block" }}
32-
>
33-
<Lottie
34-
animationData={lottie}
35-
style={{ height: "100%" }}
36-
loop={true}
37-
/>
38-
</Box>
39-
)}
4025
</>
4126
);
4227
};

apps/dashboard/src/components/landing-pages/hero-with-side-image.tsx

Lines changed: 2 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,6 @@ interface LandingHeroWithSideImageProps {
2020
gradient: string;
2121
image?: StaticImageData;
2222
mobileImage?: StaticImageData;
23-
// biome-ignore lint/complexity/noBannedTypes: FIXME
24-
lottie?: {};
2523
miniImage?: StaticImageData;
2624
mt?: BoxProps["mt"];
2725
contactUsBg?: TrackedLinkProps["bg"];
@@ -44,7 +42,7 @@ export const LandingHeroWithSideImage: React.FC<
4442
gradient,
4543
image,
4644
mobileImage,
47-
lottie,
45+
4846
miniImage,
4947
mt,
5048
contactUsBg,
@@ -93,11 +91,7 @@ export const LandingHeroWithSideImage: React.FC<
9391
/>
9492
</Flex>
9593
<Flex maxH="500px">
96-
<LandingDesktopMobileImage
97-
lottie={lottie}
98-
image={image}
99-
mobileImage={mobileImage}
100-
/>
94+
<LandingDesktopMobileImage image={image} mobileImage={mobileImage} />
10195
</Flex>
10296
</SimpleGrid>
10397
);

apps/dashboard/src/components/landing-pages/types.tsx

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,6 @@ import type { HeadingSizes } from "theme/typography";
55
export type LandingDesktopMobileImageProps = ChakraNextImageProps & {
66
image?: StaticImageData;
77
mobileImage?: StaticImageData;
8-
// biome-ignore lint/complexity/noBannedTypes: FIXME
9-
lottie?: {};
108
};
119

1210
export interface LandingSectionHeadingProps {

apps/dashboard/src/pages/connect.tsx

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,6 @@ import Head from "next/head";
1616
import { PageId } from "page-id";
1717
import { Heading, Text } from "tw-components";
1818
import type { ThirdwebNextPage } from "utils/types";
19-
import connectLottie from "../../public/assets/product-pages/connect/connect-lottie.json";
2019

2120
const TRACKING_CATEGORY = "connect-wallet-landing";
2221

@@ -175,7 +174,6 @@ const ConnectLanding: ThirdwebNextPage = () => {
175174
ctaLink="https://playground.thirdweb.com/connect/sign-in/button"
176175
contactUsTitle="Book Demo"
177176
gradient="linear(to-r, #4490FF, #4490FF)"
178-
lottie={connectLottie}
179177
image={require("../../public/assets/product-pages/hero/desktop-hero-connect-wallet.png")}
180178
mobileImage={require("../../public/assets/product-pages/hero/mobile-hero-connect-wallet.png")}
181179
contactUsBg="#0E0E0E"

apps/playground-web/package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -27,13 +27,13 @@
2727
"@radix-ui/react-switch": "^1.1.1",
2828
"@radix-ui/react-tabs": "^1.1.1",
2929
"@radix-ui/react-tooltip": "1.1.4",
30-
"@tanstack/react-query": "5.61.3",
31-
"class-variance-authority": "^0.7.0",
30+
"@tanstack/react-query": "5.61.4",
31+
"class-variance-authority": "^0.7.1",
3232
"clsx": "^2.1.1",
3333
"lucide-react": "0.461.0",
3434
"next": "15.0.3",
3535
"next-themes": "^0.4.3",
36-
"prettier": "^3.3.2",
36+
"prettier": "3.3.3",
3737
"react": "19.0.0-rc-69d4b800-20241021",
3838
"react-dom": "19.0.0-rc-69d4b800-20241021",
3939
"react-pick-color": "^2.0.0",
@@ -44,7 +44,7 @@
4444
"use-debounce": "^10.0.4"
4545
},
4646
"devDependencies": {
47-
"@types/node": "20.14.9",
47+
"@types/node": "22.10.0",
4848
"@types/react": "npm:types-react@19.0.0-rc.1",
4949
"@types/react-dom": "npm:types-react-dom@19.0.0-rc.1",
5050
"eslint": "8.57.0",

apps/portal/package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -24,9 +24,9 @@
2424
"@radix-ui/react-dropdown-menu": "^2.1.2",
2525
"@radix-ui/react-slot": "^1.1.0",
2626
"@radix-ui/react-tabs": "^1.1.1",
27-
"@tanstack/react-query": "5.61.3",
27+
"@tanstack/react-query": "5.61.4",
2828
"@tryghost/content-api": "^1.11.21",
29-
"class-variance-authority": "^0.7.0",
29+
"class-variance-authority": "^0.7.1",
3030
"clsx": "^2.1.1",
3131
"date-fns": "4.1.0",
3232
"escape-string-regexp": "^5.0.0",
@@ -37,7 +37,7 @@
3737
"nextjs-toploader": "^1.6.12",
3838
"node-html-parser": "^6.1.13",
3939
"posthog-js": "1.67.1",
40-
"prettier": "^3.3.2",
40+
"prettier": "3.3.3",
4141
"react": "19.0.0-rc-69d4b800-20241021",
4242
"react-dom": "19.0.0-rc-69d4b800-20241021",
4343
"react-html-parser": "2.0.2",
@@ -54,7 +54,7 @@
5454
"devDependencies": {
5555
"@types/flexsearch": "^0.7.6",
5656
"@types/mdx": "^2.0.13",
57-
"@types/node": "20.14.9",
57+
"@types/node": "22.10.0",
5858
"@types/react": "npm:types-react@19.0.0-rc.1",
5959
"@types/react-dom": "npm:types-react-dom@19.0.0-rc.1",
6060
"@types/react-html-parser": "^2.0.6",

apps/wallet-ui/package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,8 @@
1616
"@radix-ui/react-label": "^2.1.0",
1717
"@radix-ui/react-popover": "^1.1.2",
1818
"@radix-ui/react-slot": "^1.1.0",
19-
"@tanstack/react-query": "5.61.3",
20-
"class-variance-authority": "^0.7.0",
19+
"@tanstack/react-query": "5.61.4",
20+
"class-variance-authority": "^0.7.1",
2121
"clsx": "^2.1.1",
2222
"cmdk": "^1.0.4",
2323
"lucide-react": "0.461.0",
@@ -36,15 +36,15 @@
3636
},
3737
"devDependencies": {
3838
"@next/eslint-plugin-next": "15.0.3",
39-
"@types/node": "20.14.9",
39+
"@types/node": "22.10.0",
4040
"@types/react": "npm:types-react@19.0.0-rc.1",
4141
"@types/react-dom": "npm:types-react-dom@19.0.0-rc.1",
4242
"@typescript-eslint/eslint-plugin": "7.14.1",
4343
"@typescript-eslint/parser": "7.14.1",
4444
"eslint": "8.57.0",
4545
"eslint-config-biome": "1.9.3",
4646
"eslint-plugin-react-compiler": "19.0.0-beta-df7b47d-20241124",
47-
"knip": "5.37.2",
47+
"knip": "5.38.0",
4848
"postcss": "8.4.49",
4949
"postcss-load-config": "^6.0.1",
5050
"tailwindcss": "3.4.15",

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
"license": "MIT",
88
"private": true,
99
"engines": {
10-
"node": ">=18",
10+
"node": ">=20",
1111
"pnpm": ">=9"
1212
},
1313
"scripts": {
@@ -44,7 +44,7 @@
4444
"@changesets/changelog-github": "0.5.0",
4545
"@changesets/cli": "2.27.10",
4646
"@manypkg/get-packages": "2.2.2",
47-
"@types/node": "20.14.9",
47+
"@types/node": "22.10.0",
4848
"turbo": "2.3.2",
4949
"typescript": "5.7.2"
5050
},

packages/service-utils/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -50,9 +50,9 @@
5050
},
5151
"devDependencies": {
5252
"@cloudflare/workers-types": "4.20241112.0",
53-
"@types/node": "20.14.9",
53+
"@types/node": "22.10.0",
5454
"typescript": "5.7.2",
55-
"vitest": "2.1.5"
55+
"vitest": "2.1.6"
5656
},
5757
"scripts": {
5858
"format": "biome format ./src --write",

packages/thirdweb/package.json

Lines changed: 27 additions & 63 deletions
Original file line numberDiff line numberDiff line change
@@ -127,60 +127,24 @@
127127
},
128128
"typesVersions": {
129129
"*": {
130-
"adapters/*": [
131-
"./dist/types/exports/adapters/*.d.ts"
132-
],
133-
"auth": [
134-
"./dist/types/exports/auth.d.ts"
135-
],
136-
"chains": [
137-
"./dist/types/exports/chains.d.ts"
138-
],
139-
"contract": [
140-
"./dist/types/exports/contract.d.ts"
141-
],
142-
"deploys": [
143-
"./dist/types/exports/deploys.d.ts"
144-
],
145-
"event": [
146-
"./dist/types/exports/event.d.ts"
147-
],
148-
"extensions/*": [
149-
"./dist/types/exports/extensions/*.d.ts"
150-
],
151-
"pay": [
152-
"./dist/types/exports/pay.d.ts"
153-
],
154-
"react": [
155-
"./dist/types/exports/react.d.ts"
156-
],
157-
"react-native": [
158-
"./dist/types/exports/react-native.d.ts"
159-
],
160-
"rpc": [
161-
"./dist/types/exports/rpc.d.ts"
162-
],
163-
"storage": [
164-
"./dist/types/exports/storage.d.ts"
165-
],
166-
"transaction": [
167-
"./dist/types/exports/transaction.d.ts"
168-
],
169-
"utils": [
170-
"./dist/types/exports/utils.d.ts"
171-
],
172-
"wallets": [
173-
"./dist/types/exports/wallets.d.ts"
174-
],
175-
"wallets/*": [
176-
"./dist/types/exports/wallets/*.d.ts"
177-
],
178-
"modules": [
179-
"./dist/types/exports/modules.d.ts"
180-
],
181-
"social": [
182-
"./dist/types/exports/social.d.ts"
183-
]
130+
"adapters/*": ["./dist/types/exports/adapters/*.d.ts"],
131+
"auth": ["./dist/types/exports/auth.d.ts"],
132+
"chains": ["./dist/types/exports/chains.d.ts"],
133+
"contract": ["./dist/types/exports/contract.d.ts"],
134+
"deploys": ["./dist/types/exports/deploys.d.ts"],
135+
"event": ["./dist/types/exports/event.d.ts"],
136+
"extensions/*": ["./dist/types/exports/extensions/*.d.ts"],
137+
"pay": ["./dist/types/exports/pay.d.ts"],
138+
"react": ["./dist/types/exports/react.d.ts"],
139+
"react-native": ["./dist/types/exports/react-native.d.ts"],
140+
"rpc": ["./dist/types/exports/rpc.d.ts"],
141+
"storage": ["./dist/types/exports/storage.d.ts"],
142+
"transaction": ["./dist/types/exports/transaction.d.ts"],
143+
"utils": ["./dist/types/exports/utils.d.ts"],
144+
"wallets": ["./dist/types/exports/wallets.d.ts"],
145+
"wallets/*": ["./dist/types/exports/wallets/*.d.ts"],
146+
"modules": ["./dist/types/exports/modules.d.ts"],
147+
"social": ["./dist/types/exports/social.d.ts"]
184148
}
185149
},
186150
"browser": {
@@ -210,7 +174,7 @@
210174
"@radix-ui/react-focus-scope": "1.1.0",
211175
"@radix-ui/react-icons": "1.3.2",
212176
"@radix-ui/react-tooltip": "1.1.4",
213-
"@tanstack/react-query": "5.61.3",
177+
"@tanstack/react-query": "5.61.4",
214178
"@walletconnect/ethereum-provider": "2.17.2",
215179
"@walletconnect/sign-client": "2.17.2",
216180
"abitype": "1.0.6",
@@ -219,7 +183,7 @@
219183
"mipd": "0.0.7",
220184
"ox": "0.3.0",
221185
"uqr": "0.1.2",
222-
"viem": "2.21.50"
186+
"viem": "2.21.51"
223187
},
224188
"peerDependencies": {
225189
"@aws-sdk/client-lambda": "^3",
@@ -342,19 +306,19 @@
342306
"@types/cross-spawn": "^6.0.6",
343307
"@types/react": "npm:types-react@19.0.0-rc.1",
344308
"@viem/anvil": "0.0.10",
345-
"@vitejs/plugin-react": "^4.3.3",
346-
"@vitest/coverage-v8": "2.1.5",
347-
"@vitest/ui": "2.1.5",
309+
"@vitejs/plugin-react": "^4.3.4",
310+
"@vitest/coverage-v8": "2.1.6",
311+
"@vitest/ui": "2.1.6",
348312
"cross-spawn": "7.0.6",
349313
"dotenv-mono": "^1.3.14",
350314
"ethers5": "npm:ethers@5",
351315
"ethers6": "npm:ethers@6",
352316
"expo-linking": "7.0.3",
353317
"expo-web-browser": "13.0.3",
354318
"happy-dom": "15.11.6",
355-
"knip": "5.37.2",
319+
"knip": "5.38.0",
356320
"msw": "2.6.6",
357-
"prettier": "^3.3.2",
321+
"prettier": "3.3.3",
358322
"react": "19.0.0-rc-69d4b800-20241021",
359323
"react-dom": "19.0.0-rc-69d4b800-20241021",
360324
"react-native": "0.76.3",
@@ -368,7 +332,7 @@
368332
"storybook": "8.4.5",
369333
"typedoc": "0.26.11",
370334
"typescript": "5.7.2",
371-
"vite": "5.4.11",
372-
"vitest": "2.1.5"
335+
"vite": "6.0.0",
336+
"vitest": "2.1.6"
373337
}
374338
}

0 commit comments

Comments
 (0)