WebChat/package.json

114 lines
3.2 KiB
JSON
Raw Normal View History

2023-07-11 20:22:57 +00:00
{
"name": "web-chat",
"displayName": "WebChat",
"version": "0.0.1",
"description": "Chatting Anonymously with People on the Same Website.",
"type": "module",
2023-07-11 20:22:57 +00:00
"scripts": {
2023-11-04 18:18:09 +00:00
"dev": "wxt",
"dev:firefox": "wxt -b firefox",
"build": "wxt build",
"build:firefox": "wxt build -b firefox",
"pack": "cross-env NODE_ENV=production run-p pack:*",
2023-11-04 18:18:09 +00:00
"pack:zip": "wxt zip",
"pack:firefox": "wxt zip -b firefox",
2023-07-23 20:10:04 +00:00
"lint": "eslint . --ext .js,.jsx,.ts,.tsx --cache --fix",
2023-11-04 18:18:09 +00:00
"clear": "rimraf .output",
2023-07-11 20:22:57 +00:00
"tsc:check": "tsc --noEmit",
2023-11-04 18:18:09 +00:00
"prepare": "husky install",
"postinstall": "wxt prepare"
2023-07-11 20:22:57 +00:00
},
"repository": {
"type": "git",
"url": "git+https://github.com/molvqingtai/WebChat.git"
},
"keywords": [
2023-07-13 17:32:36 +00:00
"WebChat",
2023-07-11 20:22:57 +00:00
"Chat",
2023-07-13 17:32:36 +00:00
"Browser",
"Browser Extension",
"Chrome",
"Chrome Extension",
"Firefox",
"Firefox Extension",
"Extension",
"WebRTC",
"P2P",
"Peer to Peer"
2023-07-11 20:22:57 +00:00
],
"author": "molvqingtai",
"license": "MIT",
"bugs": {
"url": "https://github.com/molvqingtai/WebChat/issues"
},
"homepage": "https://github.com/molvqingtai/WebChat#readme",
"dependencies": {
2023-11-04 18:18:09 +00:00
"@perfsee/jsonr": "^1.8.4",
"@radix-ui/react-avatar": "^1.0.4",
2023-11-06 19:05:26 +00:00
"@radix-ui/react-dropdown-menu": "^2.0.6",
2023-11-04 18:18:09 +00:00
"@radix-ui/react-hover-card": "^1.0.7",
2023-07-11 20:22:57 +00:00
"@radix-ui/react-icons": "^1.3.0",
2023-10-14 19:14:16 +00:00
"@radix-ui/react-popover": "^1.0.7",
2023-11-04 18:18:09 +00:00
"@radix-ui/react-scroll-area": "^1.0.5",
2023-07-14 12:04:51 +00:00
"@radix-ui/react-slot": "^1.0.2",
2023-11-04 18:18:09 +00:00
"@tailwindcss/typography": "^0.5.10",
"class-variance-authority": "^0.7.0",
"clsx": "^2.0.0",
2023-07-27 05:42:49 +00:00
"date-fns": "^2.30.0",
2023-08-06 16:24:00 +00:00
"idb-keyval": "^6.2.1",
2023-11-04 18:18:09 +00:00
"lucide-react": "^0.292.0",
2023-11-14 13:32:00 +00:00
"nanoid": "^5.0.3",
2023-11-04 18:18:09 +00:00
"peerjs": "^1.5.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-markdown": "^9.0.0",
2023-07-27 05:42:49 +00:00
"react-nice-avatar": "^1.4.1",
2023-07-23 20:10:04 +00:00
"react-use": "^17.4.0",
2023-10-14 06:02:54 +00:00
"remark-breaks": "^4.0.0",
2023-11-04 18:18:09 +00:00
"remark-gfm": "^4.0.0",
2023-07-31 19:14:59 +00:00
"remesh": "^4.2.0",
"remesh-logger": "^4.1.0",
"remesh-react": "^4.1.0",
"rxjs": "^7.8.1",
2023-11-04 18:18:09 +00:00
"tailwind-merge": "^2.0.0",
2023-11-14 13:32:00 +00:00
"type-fest": "^4.7.1"
2023-11-04 18:18:09 +00:00
},
"devDependencies": {
2023-11-14 13:32:00 +00:00
"@commitlint/cli": "^18.4.0",
"@commitlint/config-conventional": "^18.4.0",
"@types/node": "^20.9.0",
"@types/react": "^18.2.37",
"@types/react-dom": "^18.2.15",
2023-11-04 18:18:09 +00:00
"@vitejs/plugin-react": "^4.1.1",
"autoprefixer": "^10.4.16",
"cross-env": "^7.0.3",
"eslint": "^8.53.0",
"eslint-config-prettier": "^9.0.0",
"eslint-config-standard-with-typescript": "^39.1.1",
"eslint-plugin-import": "^2.29.0",
2023-11-14 13:32:00 +00:00
"eslint-plugin-n": "^16.3.1",
2023-11-04 18:18:09 +00:00
"eslint-plugin-prettier": "^5.0.1",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-tailwindcss": "^3.13.0",
"husky": "^8.0.3",
2023-11-14 13:32:00 +00:00
"lint-staged": "^15.1.0",
2023-11-04 18:18:09 +00:00
"npm-run-all": "^4.1.5",
"postcss": "^8.4.31",
"prettier": "^3.0.3",
"rimraf": "^5.0.5",
"tailwindcss": "^3.3.5",
"tailwindcss-animate": "^1.0.7",
"typescript": "^5.2.2",
"webext-bridge": "^6.0.1",
"wxt": "^0.9.0"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": "eslint --fix"
2023-07-13 17:32:36 +00:00
},
"engines": {
"node": ">=18.0.0"
2023-07-11 20:22:57 +00:00
}
}