Files
WebChat/package.json

149 lines
4.3 KiB
JSON
Raw Normal View History

2023-07-12 04:22:57 +08:00
{
"name": "web-chat",
"displayName": "WebChat",
"version": "1.9.7",
2024-09-27 15:32:20 +08:00
"description": "Chat with anyone on any website.",
"type": "module",
2023-07-12 04:22:57 +08:00
"scripts": {
2023-11-05 02:18:09 +08:00
"dev": "wxt",
"dev:firefox": "wxt -b firefox",
"build": "cross-env NODE_ENV=production run-p build:*",
2024-10-28 10:00:47 +08:00
"build:chrome": "wxt build -b chrome",
2023-11-05 02:18:09 +08:00
"build:firefox": "wxt build -b firefox",
"pack": "cross-env NODE_ENV=production run-p pack:*",
2024-09-28 04:36:42 +08:00
"pack:chrome": "wxt zip -b chrome",
2023-11-05 02:18:09 +08:00
"pack:firefox": "wxt zip -b firefox",
2025-05-21 21:18:29 +08:00
"lint": "eslint --fix --cache",
2023-11-05 02:18:09 +08:00
"clear": "rimraf .output",
2024-10-27 09:02:56 +08:00
"check": "tsc --noEmit",
2024-09-16 13:44:16 +08:00
"prepare": "husky",
2024-09-27 16:48:46 +08:00
"postinstall": "wxt prepare"
2023-07-12 04:22:57 +08:00
},
"repository": {
"type": "git",
2024-09-27 16:59:51 +08:00
"url": "git+https://github.com/molvqingtai/WebChat.git"
2023-07-12 04:22:57 +08:00
},
"keywords": [
2023-07-14 01:32:36 +08:00
"WebChat",
2023-07-12 04:22:57 +08:00
"Chat",
2023-07-14 01:32:36 +08:00
"Browser",
"Browser Extension",
"Chrome",
"Chrome Extension",
"Firefox",
"Firefox Extension",
"Extension",
"WebRTC",
"P2P",
"Peer to Peer"
2023-07-12 04:22:57 +08:00
],
"author": "molvqingtai",
"license": "MIT",
"bugs": {
"url": "https://github.com/molvqingtai/WebChat/issues"
},
2024-09-27 13:53:50 +08:00
"homepage": "https://github.com/molvqingtai/WebChat",
2023-07-12 04:22:57 +08:00
"dependencies": {
"@hookform/resolvers": "^5.2.2",
"@number-flow/react": "^0.5.10",
2025-05-21 21:18:29 +08:00
"@perfsee/jsonr": "^1.14.2",
"@radix-ui/react-avatar": "^1.1.10",
"@radix-ui/react-checkbox": "^1.3.3",
"@radix-ui/react-dropdown-menu": "^2.1.16",
"@radix-ui/react-hover-card": "^1.1.15",
2024-11-15 09:07:13 +08:00
"@radix-ui/react-icons": "^1.3.2",
"@radix-ui/react-label": "^2.1.7",
"@radix-ui/react-popover": "^1.1.15",
"@radix-ui/react-portal": "^1.1.9",
"@radix-ui/react-presence": "^1.1.5",
"@radix-ui/react-radio-group": "^1.3.8",
"@radix-ui/react-scroll-area": "^1.2.10",
"@radix-ui/react-slot": "^1.2.3",
"@radix-ui/react-switch": "^1.2.6",
2024-09-24 15:02:12 +08:00
"@resreq/event-hub": "^1.6.0",
"@rtco/client": "^0.3.6",
"@tailwindcss/typography": "^0.5.19",
2024-11-15 08:55:02 +08:00
"@webcomponents/custom-elements": "^1.6.0",
2025-05-21 21:18:29 +08:00
"@webext-core/proxy-service": "^1.2.1",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"cobe": "^0.6.5",
"comctx": "^1.4.3",
"danmu": "^0.18.1",
"date-fns": "^4.1.0",
"dompurify": "^3.2.7",
"framer-motion": "^12.23.22",
"hash-it": "^6.0.0",
2025-05-21 21:18:29 +08:00
"idb-keyval": "^6.2.2",
"imgcap": "^1.0.2",
"lucide-react": "^0.544.0",
"motion": "^12.23.22",
"nanoid": "^5.1.6",
2025-10-02 22:12:42 +08:00
"react": "^19.2.0",
"react-dom": "^19.2.0",
"react-hook-form": "^7.63.0",
2025-05-21 21:18:29 +08:00
"react-markdown": "^10.1.0",
"react-use": "^17.6.0",
"react-virtuoso": "^4.14.1",
2023-10-14 14:02:54 +08:00
"remark-breaks": "^4.0.0",
2025-05-21 21:18:29 +08:00
"remark-gfm": "^4.0.1",
2024-09-16 13:44:16 +08:00
"remesh": "^4.2.2",
2023-08-01 03:14:59 +08:00
"remesh-logger": "^4.1.0",
2024-02-23 16:37:37 +08:00
"remesh-react": "^4.1.2",
2025-05-21 21:18:29 +08:00
"rxjs": "^7.8.2",
"sonner": "^2.0.7",
"tailwind-merge": "^3.3.1",
"type-fest": "^5.0.1",
"unstorage": "^1.17.1",
2025-05-21 21:18:29 +08:00
"valibot": "1.1.0",
"zod": "^4.1.11"
2023-11-05 02:18:09 +08:00
},
"devDependencies": {
2025-10-01 23:01:31 +08:00
"@commitlint/cli": "^20.1.0",
"@commitlint/config-conventional": "^20.0.0",
2025-10-02 22:12:42 +08:00
"@eslint-react/eslint-plugin": "^2.0.5",
"@eslint/js": "^9.36.0",
2024-09-27 16:10:51 +08:00
"@semantic-release/changelog": "^6.0.3",
2025-05-21 21:18:29 +08:00
"@semantic-release/exec": "^7.1.0",
2024-09-27 16:10:51 +08:00
"@semantic-release/git": "^10.0.1",
2025-10-02 02:25:56 +08:00
"@tailwindcss/postcss": "^4.1.14",
"@tailwindcss/vite": "^4.1.14",
2024-09-16 13:44:16 +08:00
"@types/eslint": "^9.6.1",
"@types/eslint-plugin-tailwindcss": "^3.17.0",
2025-10-02 22:12:42 +08:00
"@types/node": "^24.6.2",
"@types/react": "^19.2.0",
"@types/react-dom": "^19.2.0",
"@typescript-eslint/parser": "^8.45.0",
"@vitejs/plugin-react": "^5.0.4",
2025-05-21 21:18:29 +08:00
"autoprefixer": "^10.4.21",
"babel-plugin-react-compiler": "19.1.0-rc.3",
"cross-env": "^10.1.0",
"eslint": "^9.36.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.4",
"eslint-plugin-tailwindcss": "^3.18.2",
"globals": "^16.4.0",
2025-05-21 21:18:29 +08:00
"husky": "^9.1.7",
"lint-staged": "^16.2.3",
2023-11-05 02:18:09 +08:00
"npm-run-all": "^4.1.5",
"postcss": "^8.5.6",
"postcss-rem-to-responsive-pixel": "^6.1.0",
"prettier": "^3.6.2",
"rimraf": "^6.0.1",
"semantic-release": "^24.2.9",
2025-10-02 02:25:56 +08:00
"tailwindcss": "^4.1.14",
"tw-animate-css": "^1.4.0",
2025-10-01 23:01:31 +08:00
"typescript": "^5.9.3",
"typescript-eslint": "^8.45.0",
"vite-plugin-svgr": "^4.5.0",
2023-11-05 02:18:09 +08:00
"webext-bridge": "^6.0.1",
"wxt": "^0.20.11"
2023-11-05 02:18:09 +08:00
},
"lint-staged": {
2025-05-21 21:18:29 +08:00
"*.{js,jsx,ts,tsx}": "eslint --fix --cache"
2023-07-14 01:32:36 +08:00
},
"engines": {
2024-09-16 13:44:16 +08:00
"node": ">=20.0.0"
2023-07-12 04:22:57 +08:00
}
}