Skip to content

Commit 1c906f1

Browse files
committed
build: rm useless package
1 parent c668caa commit 1c906f1

File tree

5 files changed

+11
-13
lines changed

5 files changed

+11
-13
lines changed

web/biome.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"$schema": "https://biomejs.dev/schemas/2.0.5/schema.json",
2+
"$schema": "https://biomejs.dev/schemas/2.0.6/schema.json",
33
"vcs": {
44
"enabled": true,
55
"clientKind": "git",

web/bun.lockb

-56 Bytes
Binary file not shown.

web/package.json

Lines changed: 8 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,8 @@
1414
"lint:fix": "bunx @biomejs/biome check ./ --write"
1515
},
1616
"devDependencies": {
17-
"@biomejs/biome": "2.0.5",
18-
"@types/node": "^24.0.4",
17+
"@biomejs/biome": "2.0.6",
18+
"@types/node": "^24.0.5",
1919
"@types/react": "^19.1.8",
2020
"@types/react-copy-to-clipboard": "^5.0.7",
2121
"@types/react-dom": "^19.1.6",
@@ -29,24 +29,22 @@
2929
},
3030
"dependencies": {
3131
"@hookform/resolvers": "^5.1.1",
32-
"@radix-ui/react-navigation-menu": "^1.2.13",
33-
"@radix-ui/react-popover": "^1.1.14",
3432
"@tailwindcss/vite": "^4.1.11",
35-
"@tanstack/react-query": "^5.81.2",
33+
"@tanstack/react-query": "^5.81.4",
3634
"class-variance-authority": "^0.7.1",
3735
"clsx": "^2.1.1",
38-
"framer-motion": "^12.19.1",
36+
"framer-motion": "^12.19.2",
3937
"i18next": "^25.2.1",
40-
"lucide-react": "^0.523.0",
41-
"motion": "^12.19.1",
38+
"lucide-react": "^0.525.0",
39+
"motion": "^12.19.2",
4240
"radix-ui": "^1.4.2",
4341
"react": "^19.1.0",
4442
"react-copy-to-clipboard": "^5.1.0",
4543
"react-dom": "^19.1.0",
4644
"react-hook-form": "^7.58.1",
4745
"react-i18next": "^15.5.3",
48-
"react-router": "^7.6.2",
49-
"react-router-dom": "^7.6.2",
46+
"react-router": "^7.6.3",
47+
"react-router-dom": "^7.6.3",
5048
"react-syntax-highlighter": "^15.6.1",
5149
"sonner": "^2.0.5",
5250
"tailwind-merge": "^3.3.1",

web/src/components/ui/navigation-menu.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
import * as NavigationMenuPrimitive from "@radix-ui/react-navigation-menu";
21
import { cva } from "class-variance-authority";
32
import { ChevronDownIcon } from "lucide-react";
3+
import { NavigationMenu as NavigationMenuPrimitive } from "radix-ui";
44
import * as React from "react";
55

66
import { cn } from "@/lib/utils";

web/src/components/ui/popover.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import * as PopoverPrimitive from "@radix-ui/react-popover";
1+
import { Popover as PopoverPrimitive } from "radix-ui";
22
import * as React from "react";
33

44
import { cn } from "@/lib/utils";

0 commit comments

Comments
 (0)