WebChat/package.json
2024-02-23 16:37:37 +08:00

123 lines
3.5 KiB
JSON

{
"name": "web-chat",
"displayName": "WebChat",
"version": "0.0.1",
"description": "Chatting Anonymously with People on the Same Website.",
"type": "module",
"scripts": {
"dev": "wxt",
"dev:server": "y-webrtc-signaling",
"dev:firefox": "wxt -b firefox",
"build": "wxt build",
"build:firefox": "wxt build -b firefox",
"pack": "cross-env NODE_ENV=production run-p pack:*",
"pack:zip": "wxt zip",
"pack:firefox": "wxt zip -b firefox",
"lint": "eslint . --ext .js,.jsx,.ts,.tsx --cache --fix",
"clear": "rimraf .output",
"tsc:check": "tsc --noEmit",
"prepare": "husky install",
"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#readme",
"dependencies": {
"@hookform/resolvers": "^3.3.4",
"@perfsee/jsonr": "^1.12.2",
"@radix-ui/react-avatar": "^1.0.4",
"@radix-ui/react-dropdown-menu": "^2.0.6",
"@radix-ui/react-hover-card": "^1.0.7",
"@radix-ui/react-icons": "^1.3.0",
"@radix-ui/react-label": "^2.0.2",
"@radix-ui/react-popover": "^1.0.7",
"@radix-ui/react-radio-group": "^1.1.3",
"@radix-ui/react-scroll-area": "^1.0.5",
"@radix-ui/react-slot": "^1.0.2",
"@radix-ui/react-switch": "^1.0.3",
"@tailwindcss/typography": "^0.5.10",
"class-variance-authority": "^0.7.0",
"clsx": "^2.1.0",
"date-fns": "^3.3.1",
"idb-keyval": "^6.2.1",
"lucide-react": "^0.336.0",
"nanoid": "^5.0.6",
"peerjs": "^1.5.2",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-hook-form": "^7.50.1",
"react-markdown": "^9.0.1",
"react-nice-avatar": "^1.5.0",
"react-use": "^17.5.0",
"remark-breaks": "^4.0.0",
"remark-gfm": "^4.0.0",
"remesh": "^4.2.1",
"remesh-logger": "^4.1.0",
"remesh-react": "^4.1.2",
"rxjs": "^7.8.1",
"sonner": "^1.4.0",
"tailwind-merge": "^2.2.1",
"type-fest": "^4.10.3",
"unstorage": "^1.10.1",
"valibot": "^0.29.0"
},
"devDependencies": {
"@commitlint/cli": "^18.6.1",
"@commitlint/config-conventional": "^18.6.2",
"@types/node": "^20.11.20",
"@types/react": "^18.2.57",
"@types/react-dom": "^18.2.19",
"@types/webextension-polyfill": "^0.10.7",
"@vitejs/plugin-react": "^4.2.1",
"autoprefixer": "^10.4.17",
"cross-env": "^7.0.3",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-config-standard-with-typescript": "^43.0.1",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-n": "^16.6.2",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-tailwindcss": "^3.14.3",
"husky": "^9.0.11",
"lint-staged": "^15.2.2",
"npm-run-all": "^4.1.5",
"postcss": "^8.4.35",
"prettier": "^3.2.5",
"rimraf": "^5.0.5",
"tailwindcss": "^3.4.1",
"tailwindcss-animate": "^1.0.7",
"typescript": "^5.3.3",
"webext-bridge": "^6.0.1",
"wxt": "^0.17.0"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": "eslint --fix"
},
"engines": {
"node": ">=18.0.0"
}
}