Skip to content

Commit 2bc6f7b

Browse files
committed
core: dep update
1 parent 8a62270 commit 2bc6f7b

4 files changed

Lines changed: 623 additions & 549 deletions

File tree

.vscode/settings.json

Lines changed: 0 additions & 22 deletions
This file was deleted.

biome.json

Lines changed: 29 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,5 @@
11
{
2-
"$schema": "https://biomejs.dev/schemas/2.1.2/schema.json",
3-
"vcs": {
4-
"clientKind": "git",
5-
"enabled": true,
6-
"defaultBranch": "master",
7-
"useIgnoreFile": true
8-
},
2+
"$schema": "https://biomejs.dev/schemas/2.3.7/schema.json",
93
"formatter": {
104
"enabled": true,
115
"formatWithErrors": false,
@@ -27,9 +21,15 @@
2721
"!**/dist"
2822
]
2923
},
24+
"vcs": {
25+
"clientKind": "git",
26+
"enabled": true,
27+
"defaultBranch": "master",
28+
"useIgnoreFile": true
29+
},
3030
"assist": {
3131
"actions": { "source": { "organizeImports": "on" } },
32-
"includes": ["**/*.{js,jsx,ts,tsx}"],
32+
"includes": ["**/*.tsx", "**/*.ts"],
3333
"enabled": true
3434
},
3535
"linter": {
@@ -48,8 +48,11 @@
4848
},
4949
"correctness": {
5050
"recommended": true,
51+
"useUniqueElementIds": "off",
5152
"noUnusedVariables": "warn",
52-
"noUnusedImports": "warn"
53+
"noUnusedImports": "warn",
54+
"noInvalidPositionAtImportRule": "off",
55+
"useExhaustiveDependencies": "off"
5356
},
5457
"style": {
5558
"recommended": true,
@@ -62,7 +65,8 @@
6265
"noUnusedTemplateLiteral": "error",
6366
"useNumberNamespace": "error",
6467
"noInferrableTypes": "error",
65-
"noUselessElse": "error"
68+
"noUselessElse": "error",
69+
"noNonNullAssertion": "off"
6670
},
6771
"complexity": {
6872
"recommended": true
@@ -71,14 +75,23 @@
7175
"recommended": true
7276
},
7377
"suspicious": {
78+
"noUnknownAtRules": "off",
7479
"recommended": true,
75-
"noArrayIndexKey": "off"
80+
"noArrayIndexKey": "off",
81+
"noDocumentCookie": "off",
82+
"noExplicitAny": "off"
7683
},
7784
"a11y": {
78-
"recommended": true
85+
"recommended": true,
86+
"useKeyWithClickEvents": "off",
87+
88+
"noStaticElementInteractions": "off",
89+
"useMediaCaption": "off",
90+
"useAriaPropsSupportedByRole": "off"
7991
},
8092
"security": {
81-
"recommended": true
93+
"recommended": true,
94+
"noDangerouslySetInnerHtml": "off"
8295
}
8396
},
8497
"includes": [
@@ -116,6 +129,9 @@
116129
"lineWidth": 80,
117130
"lineEnding": "lf",
118131
"quoteStyle": "double"
132+
},
133+
"parser": {
134+
"tailwindDirectives": true
119135
}
120136
},
121137
"json": {

package.json

Lines changed: 25 additions & 25 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "react-essential",
33
"private": true,
4-
"version": "0.0.0",
4+
"version": "1.0.0",
55
"type": "module",
66
"scripts": {
77
"dev": "vite",
@@ -14,36 +14,36 @@
1414
"build:prepare": "pnpm run typecheck && pnpm run lint && pnpm run format && pnpm run check && pnpm run build"
1515
},
1616
"dependencies": {
17-
"@radix-ui/react-label": "^2.1.7",
18-
"@radix-ui/react-slot": "^1.2.3",
19-
"@tailwindcss/vite": "^4.1.11",
20-
"@tanstack/react-router": "^1.128.6",
21-
"@unhead/addons": "^2.0.12",
22-
"@unhead/react": "^2.0.12",
17+
"@radix-ui/react-label": "^2.1.8",
18+
"@radix-ui/react-slot": "^1.2.4",
19+
"@tailwindcss/vite": "^4.1.17",
20+
"@tanstack/react-router": "^1.139.1",
21+
"@unhead/addons": "^2.0.19",
22+
"@unhead/react": "^2.0.19",
2323
"class-variance-authority": "^0.7.1",
2424
"clsx": "^2.1.1",
25-
"lucide-react": "^0.525.0",
25+
"lucide-react": "^0.554.0",
2626
"next-themes": "^0.4.6",
27-
"react": "^19.1.0",
28-
"react-dom": "^19.1.0",
29-
"tailwind-merge": "^3.3.1",
30-
"unhead": "^2.0.12"
27+
"react": "^19.2.0",
28+
"react-dom": "^19.2.0",
29+
"tailwind-merge": "^3.4.0",
30+
"unhead": "^2.0.19"
3131
},
3232
"devDependencies": {
33-
"@biomejs/biome": "^2.1.2",
34-
"@tailwindcss/postcss": "^4.1.11",
35-
"@tanstack/router-plugin": "^1.128.6",
36-
"@tanstack/router-vite-plugin": "^1.128.6",
37-
"@types/node": "^24.0.15",
38-
"@types/react": "^19.1.8",
39-
"@types/react-dom": "^19.1.6",
40-
"@vitejs/plugin-react": "^4.7.0",
33+
"@biomejs/biome": "^2.3.7",
34+
"@tailwindcss/postcss": "^4.1.17",
35+
"@tanstack/router-plugin": "^1.139.1",
36+
"@tanstack/router-vite-plugin": "^1.139.1",
37+
"@types/node": "^24.10.1",
38+
"@types/react": "^19.2.6",
39+
"@types/react-dom": "^19.2.3",
40+
"@vitejs/plugin-react": "^5.1.1",
4141
"husky": "^9.1.7",
4242
"postcss": "^8.5.6",
43-
"tailwindcss": "^4.1.11",
44-
"tw-animate-css": "^1.3.5",
45-
"typescript": "^5.8.3",
46-
"vite": "^7.0.5"
43+
"tailwindcss": "^4.1.17",
44+
"tw-animate-css": "^1.4.0",
45+
"typescript": "^5.9.3",
46+
"vite": "^7.2.4"
4747
},
48-
"packageManager": "pnpm@10.13.1"
48+
"packageManager": "pnpm@10.22.0"
4949
}

0 commit comments

Comments
 (0)