Skip to content

Commit 165176b

Browse files
committed
Merge branch 'develop'
2 parents 71856fe + 025166e commit 165176b

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

54 files changed

+9992
-7766
lines changed

.github/workflows/cd.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
- run: pnpm install --ignore-scripts
2222
- run: pnpm wxt prepare
2323
- run: pnpm run lint
24-
- run: pnpm run tsc
24+
- run: pnpm run check
2525

2626
release:
2727
needs: linter

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,4 +14,5 @@ web-ext.config.ts
1414
*.pem
1515
*.xpi
1616
*.zip
17+
.idea
1718

.husky/pre-commit

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11

2-
pnpm lint-staged && pnpm tsc
2+
pnpm lint-staged && pnpm check

eslint.config.ts

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,8 +34,9 @@ export default [
3434
'@typescript-eslint/no-unused-expressions': 'off',
3535
'@eslint-react/no-array-index-key': 'off',
3636
'@eslint-react/hooks-extra/no-redundant-custom-hook': 'off',
37-
'@eslint-react/dom/no-missing-button-type': 'off'
37+
'@eslint-react/dom/no-missing-button-type': 'off',
38+
'@eslint-react/hooks-extra/prefer-use-state-lazy-initialization': 'off'
3839
}
3940
}
4041
]
41-
// satisfies Linter.Config[]
42+
// satisfies Linter.Config[]

package.json

Lines changed: 23 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
"pack:firefox": "wxt zip -b firefox",
1616
"lint": "eslint --fix --flag unstable_ts_config",
1717
"clear": "rimraf .output",
18-
"tsc": "tsc --noEmit",
18+
"check": "tsc --noEmit",
1919
"prepare": "husky",
2020
"postinstall": "wxt prepare"
2121
},
@@ -45,7 +45,7 @@
4545
"homepage": "https://github.com/molvqingtai/WebChat",
4646
"dependencies": {
4747
"@hookform/resolvers": "^3.9.0",
48-
"@lottiefiles/dotlottie-react": "^0.9.1",
48+
"@lottiefiles/dotlottie-react": "^0.9.2",
4949
"@perfsee/jsonr": "^1.13.0",
5050
"@radix-ui/react-avatar": "^1.1.1",
5151
"@radix-ui/react-checkbox": "^1.1.2",
@@ -54,6 +54,8 @@
5454
"@radix-ui/react-icons": "^1.3.0",
5555
"@radix-ui/react-label": "^2.1.0",
5656
"@radix-ui/react-popover": "^1.1.2",
57+
"@radix-ui/react-portal": "^1.1.2",
58+
"@radix-ui/react-presence": "^1.1.1",
5759
"@radix-ui/react-radio-group": "^1.2.1",
5860
"@radix-ui/react-scroll-area": "^1.2.0",
5961
"@radix-ui/react-slot": "^1.1.0",
@@ -62,31 +64,30 @@
6264
"@resreq/timer": "^1.1.6",
6365
"@rtco/client": "^0.2.17",
6466
"@tailwindcss/typography": "^0.5.15",
65-
"@webext-core/messaging": "^1.4.0",
67+
"@webext-core/messaging": "^2.0.2",
6668
"@webext-core/proxy-service": "^1.2.0",
6769
"class-variance-authority": "^0.7.0",
6870
"clsx": "^2.1.1",
69-
"danmu": "^0.12.0",
71+
"danmu": "^0.14.0",
7072
"date-fns": "^4.1.0",
71-
"framer-motion": "^11.11.8",
73+
"framer-motion": "^11.11.10",
7274
"idb-keyval": "^6.2.1",
73-
"lucide-react": "^0.452.0",
75+
"lucide-react": "^0.453.0",
7476
"nanoid": "^5.0.7",
75-
"next-themes": "^0.3.0",
7677
"react": "^18.3.1",
7778
"react-dom": "^18.3.1",
78-
"react-hook-form": "^7.53.0",
79+
"react-hook-form": "^7.53.1",
7980
"react-markdown": "^9.0.1",
8081
"react-use": "^17.5.1",
81-
"react-virtuoso": "^4.10.4",
82+
"react-virtuoso": "^4.12.0",
8283
"remark-breaks": "^4.0.0",
8384
"remark-gfm": "^4.0.0",
8485
"remesh": "^4.2.2",
8586
"remesh-logger": "^4.1.0",
8687
"remesh-react": "^4.1.2",
8788
"rxjs": "^7.8.1",
8889
"sonner": "^1.5.0",
89-
"tailwind-merge": "^2.5.3",
90+
"tailwind-merge": "^2.5.4",
9091
"trystero": "^0.20.0",
9192
"type-fest": "^4.26.1",
9293
"unstorage": "1.12.0",
@@ -95,22 +96,22 @@
9596
"devDependencies": {
9697
"@commitlint/cli": "^19.5.0",
9798
"@commitlint/config-conventional": "^19.5.0",
98-
"@eslint-react/eslint-plugin": "^1.15.0",
99-
"@eslint/js": "^9.12.0",
99+
"@eslint-react/eslint-plugin": "^1.15.1",
100+
"@eslint/js": "^9.13.0",
100101
"@semantic-release/changelog": "^6.0.3",
101102
"@semantic-release/exec": "^6.0.3",
102103
"@semantic-release/git": "^10.0.1",
103104
"@types/eslint": "^9.6.1",
104-
"@types/eslint-plugin-tailwindcss": "^3.17.0",
105105
"@types/eslint__js": "^8.42.3",
106-
"@types/node": "^22.7.5",
107-
"@types/react": "^18.3.11",
106+
"@types/eslint-plugin-tailwindcss": "^3.17.0",
107+
"@types/node": "^22.8.1",
108+
"@types/react": "^18.3.12",
108109
"@types/react-dom": "^18.3.1",
109-
"@typescript-eslint/parser": "^8.8.1",
110-
"@vitejs/plugin-react": "^4.3.2",
110+
"@typescript-eslint/parser": "^8.11.0",
111+
"@vitejs/plugin-react": "^4.3.3",
111112
"autoprefixer": "^10.4.20",
112113
"cross-env": "^7.0.3",
113-
"eslint": "^9.12.0",
114+
"eslint": "^9.13.0",
114115
"eslint-config-prettier": "^9.1.0",
115116
"eslint-plugin-prettier": "^5.2.1",
116117
"eslint-plugin-tailwindcss": "^3.17.5",
@@ -123,14 +124,14 @@
123124
"postcss-rem-to-responsive-pixel": "^6.0.2",
124125
"prettier": "^3.3.3",
125126
"rimraf": "^6.0.1",
126-
"semantic-release": "^24.1.2",
127-
"tailwindcss": "^3.4.13",
127+
"semantic-release": "^24.2.0",
128+
"tailwindcss": "^3.4.14",
128129
"tailwindcss-animate": "^1.0.7",
129130
"typescript": "^5.6.3",
130-
"typescript-eslint": "^8.8.1",
131+
"typescript-eslint": "^8.11.0",
131132
"vite-plugin-svgr": "^4.2.0",
132133
"webext-bridge": "^6.0.1",
133-
"wxt": "^0.19.11"
134+
"wxt": "^0.19.13"
134135
},
135136
"lint-staged": {
136137
"*.{js,jsx,ts,tsx}": "eslint --fix --flag unstable_ts_config"

0 commit comments

Comments
 (0)