forked from molvqingtai/WebChat
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
153 lines (153 loc) · 4.48 KB
/
Copy pathpackage.json
File metadata and controls
153 lines (153 loc) · 4.48 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
{
"name": "web-chat",
"displayName": "WebChat",
"version": "2.2.0",
"description": "Chat with anyone on any website.",
"type": "module",
"scripts": {
"dev": "wxt",
"dev:firefox": "wxt -b firefox",
"build": "cross-env NODE_ENV=production run-p build:*",
"build:chrome": "wxt build -b chrome",
"build:firefox": "wxt build -b firefox",
"pack": "cross-env NODE_ENV=production run-p pack:*",
"pack:chrome": "wxt zip -b chrome",
"pack:firefox": "wxt zip -b firefox",
"format": "oxfmt --write .",
"format:check": "oxfmt --check .",
"lint": "oxlint --fix .",
"lint:check": "oxlint .",
"clear": "rimraf .output node_modules",
"test": "vitest run",
"test:e2e:chrome": "cross-env NODE_ENV=production pnpm build:chrome && node e2e/chrome-runtime.ts",
"check": "wxt prepare && tsc --noEmit",
"prepare": "husky",
"postinstall": "wxt prepare"
},
"repository": {
"type": "git",
"url": "git+https://github.com/molvqingtai/WebChat.git"
},
"keywords": [
"WebChat",
"Chat",
"Browser",
"Browser Extension",
"Chrome",
"Chrome Extension",
"Firefox",
"Firefox Extension",
"Extension",
"WebRTC",
"P2P",
"Peer to Peer"
],
"author": "molvqingtai",
"license": "MIT",
"bugs": {
"url": "https://github.com/molvqingtai/WebChat/issues"
},
"homepage": "https://github.com/molvqingtai/WebChat",
"dependencies": {
"@hookform/resolvers": "^5.4.0",
"@number-flow/react": "^0.6.1",
"@radix-ui/react-avatar": "^1.2.2",
"@radix-ui/react-checkbox": "^1.3.7",
"@radix-ui/react-dropdown-menu": "^2.1.20",
"@radix-ui/react-hover-card": "^1.1.19",
"@radix-ui/react-icons": "^1.3.2",
"@radix-ui/react-label": "^2.1.11",
"@radix-ui/react-popover": "^1.1.19",
"@radix-ui/react-portal": "^1.1.13",
"@radix-ui/react-presence": "^1.1.7",
"@radix-ui/react-radio-group": "^1.4.3",
"@radix-ui/react-scroll-area": "^1.2.14",
"@radix-ui/react-slot": "^1.3.0",
"@radix-ui/react-switch": "^1.3.3",
"@resreq/event-hub": "^1.7.2",
"@rtco/client": "^0.3.6",
"@tailwindcss/typography": "^0.5.20",
"@webcomponents/custom-elements": "^1.6.0",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"cobe": "^2.0.1",
"comctx": "^1.7.5",
"core-js": "^3.49.0",
"danmu": "^0.20.0",
"date-fns": "^4.4.0",
"framer-motion": "^12.42.2",
"hash-it": "^7.0.3",
"idb": "^8.0.3",
"idb-keyval": "^6.3.0",
"imgcap": "^1.1.0",
"lucide-react": "^1.25.0",
"motion": "^12.42.2",
"nanoid": "^6.0.0",
"react": "^19.2.7",
"react-dom": "^19.2.7",
"react-hook-form": "^7.81.0",
"react-markdown": "^10.1.0",
"react-use": "^17.6.1",
"react-virtuoso": "^4.18.11",
"remark-breaks": "^4.0.0",
"remark-gfm": "^4.0.1",
"remesh": "^4.2.2",
"remesh-logger": "^4.1.0",
"remesh-react": "^4.1.2",
"rxjs": "^7.8.2",
"sonner": "^2.0.7",
"tailwind-merge": "^3.6.0",
"type-fest": "^5.8.0",
"unstorage": "^1.17.5",
"valibot": "1.4.2"
},
"devDependencies": {
"@commitlint/cli": "^21.2.1",
"@commitlint/config-conventional": "^21.2.0",
"@rolldown/plugin-babel": "0.2.3",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/exec": "^7.1.0",
"@semantic-release/git": "^10.0.1",
"@tailwindcss/postcss": "^4.3.3",
"@tailwindcss/vite": "^4.3.3",
"@testing-library/dom": "^10.4.1",
"@testing-library/react": "^16.3.2",
"@testing-library/user-event": "^14.6.1",
"@types/node": "^26.1.1",
"@types/react": "^19.2.17",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react": "^6.0.3",
"@vitest/browser-playwright": "^4.1.10",
"autoprefixer": "^10.5.4",
"babel-plugin-react-compiler": "19.1.0-rc.3",
"cross-env": "^10.1.0",
"fake-indexeddb": "^6.2.5",
"happy-dom": "^20.11.1",
"husky": "^9.1.7",
"lint-staged": "^17.0.8",
"npm-run-all": "^4.1.5",
"oxfmt": "^0.57.0",
"oxlint": "^1.72.0",
"playwright": "^1.62.0",
"postcss": "^8.5.19",
"postcss-rem-to-responsive-pixel": "^7.0.4",
"rimraf": "^6.1.3",
"semantic-release": "^25.0.7",
"tailwindcss": "^4.3.3",
"tw-animate-css": "^1.4.0",
"typescript": "^7.0.2",
"vite-plugin-svgr": "^5.2.0",
"vitest": "^4.1.10",
"vitest-browser-react": "^2.2.0",
"wxt": "^0.20.27"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"oxfmt --write",
"oxlint --fix"
]
},
"engines": {
"node": "^22.18.0 || >=23.6.0"
}
}