WebChat/package.json

137 lines
3.9 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",
2024-02-23 08:37:37 +00:00
"dev:server": "y-webrtc-signaling",
2023-11-04 18:18:09 +00:00
"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",
2024-09-16 05:44:16 +00:00
"lint": "eslint --fix --flag unstable_ts_config",
2023-11-04 18:18:09 +00:00
"clear": "rimraf .output",
2023-07-11 20:22:57 +00:00
"tsc:check": "tsc --noEmit",
2024-09-16 05:44:16 +00:00
"prepare": "husky",
2023-11-04 18:18:09 +00:00
"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": {
"@hookform/resolvers": "^3.9.0",
"@lottiefiles/dotlottie-react": "^0.9.0",
"@perfsee/jsonr": "^1.13.0",
"@radix-ui/react-avatar": "^1.1.0",
"@radix-ui/react-dropdown-menu": "^2.1.1",
"@radix-ui/react-hover-card": "^1.1.1",
2023-07-11 20:22:57 +00:00
"@radix-ui/react-icons": "^1.3.0",
"@radix-ui/react-label": "^2.1.0",
"@radix-ui/react-popover": "^1.1.1",
"@radix-ui/react-radio-group": "^1.2.0",
"@radix-ui/react-scroll-area": "^1.1.0",
"@radix-ui/react-slot": "^1.1.0",
"@radix-ui/react-switch": "^1.1.0",
2024-09-24 07:02:12 +00:00
"@resreq/event-hub": "^1.6.0",
2024-09-26 21:09:44 +00:00
"@resreq/timer": "^1.1.6",
2024-09-24 07:02:12 +00:00
"@rtco/client": "^0.2.17",
"@tailwindcss/typography": "^0.5.15",
2024-09-24 07:02:12 +00:00
"@webext-core/proxy-service": "^1.2.0",
2023-11-04 18:18:09 +00:00
"class-variance-authority": "^0.7.0",
"clsx": "^2.1.1",
"date-fns": "^4.1.0",
2024-09-26 21:09:44 +00:00
"framer-motion": "^11.7.0",
2023-08-06 16:24:00 +00:00
"idb-keyval": "^6.2.1",
2024-09-26 21:09:44 +00:00
"lucide-react": "^0.446.0",
"nanoid": "^5.0.7",
2024-09-18 19:41:07 +00:00
"next-themes": "^0.3.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-hook-form": "^7.53.0",
"react-markdown": "^9.0.1",
"react-use": "^17.5.1",
"react-virtuoso": "^4.10.4",
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",
2024-09-16 05:44:16 +00:00
"remesh": "^4.2.2",
2023-07-31 19:14:59 +00:00
"remesh-logger": "^4.1.0",
2024-02-23 08:37:37 +00:00
"remesh-react": "^4.1.2",
2023-07-31 19:14:59 +00:00
"rxjs": "^7.8.1",
2024-09-18 19:41:07 +00:00
"sonner": "^1.5.0",
"tailwind-merge": "^2.5.2",
2024-09-16 05:44:16 +00:00
"trystero": "^0.20.0",
"type-fest": "^4.26.1",
"unstorage": "^1.12.0",
2024-09-24 17:25:02 +00:00
"valibot": "^0.42.1",
2024-09-16 06:46:36 +00:00
"webextension-polyfill": "^0.12.0"
2023-11-04 18:18:09 +00:00
},
"devDependencies": {
"@commitlint/cli": "^19.5.0",
"@commitlint/config-conventional": "^19.5.0",
2024-09-24 17:25:02 +00:00
"@eslint-react/eslint-plugin": "^1.14.2",
"@eslint/js": "^9.11.1",
2024-09-16 05:44:16 +00:00
"@types/eslint": "^9.6.1",
2024-09-26 21:09:44 +00:00
"@types/eslint-plugin-tailwindcss": "^3.17.0",
"@types/eslint__js": "^8.42.3",
2024-09-26 21:09:44 +00:00
"@types/node": "^22.7.2",
2024-09-24 17:25:02 +00:00
"@types/react": "^18.3.9",
"@types/react-dom": "^18.3.0",
"@types/webextension-polyfill": "^0.12.1",
2024-09-24 17:25:02 +00:00
"@typescript-eslint/parser": "^8.7.0",
"@vitejs/plugin-react": "^4.3.1",
"autoprefixer": "^10.4.20",
2023-11-04 18:18:09 +00:00
"cross-env": "^7.0.3",
2024-09-24 17:25:02 +00:00
"eslint": "^9.11.1",
2023-12-04 20:02:04 +00:00
"eslint-config-prettier": "^9.1.0",
2024-09-16 05:44:16 +00:00
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-tailwindcss": "^3.17.4",
"globals": "^15.9.0",
"husky": "^9.1.6",
2024-09-26 21:09:44 +00:00
"jiti": "^2.0.0",
"lint-staged": "^15.2.10",
2023-11-04 18:18:09 +00:00
"npm-run-all": "^4.1.5",
"postcss": "^8.4.47",
"postcss-rem-to-responsive-pixel": "^6.0.2",
"prettier": "^3.3.3",
"rimraf": "^5.0.10",
2024-09-24 17:25:02 +00:00
"tailwindcss": "^3.4.13",
2023-11-04 18:18:09 +00:00
"tailwindcss-animate": "^1.0.7",
2024-09-16 05:44:16 +00:00
"typescript": "^5.6.2",
2024-09-24 17:25:02 +00:00
"typescript-eslint": "^8.7.0",
2024-09-27 05:45:29 +00:00
"vite-plugin-svgr": "^4.2.0",
2023-11-04 18:18:09 +00:00
"webext-bridge": "^6.0.1",
2024-09-24 17:25:02 +00:00
"wxt": "^0.19.10"
2023-11-04 18:18:09 +00:00
},
"lint-staged": {
2024-09-16 05:44:16 +00:00
"*.{js,jsx,ts,tsx}": "eslint --fix --flag unstable_ts_config"
2023-07-13 17:32:36 +00:00
},
"engines": {
2024-09-16 05:44:16 +00:00
"node": ">=20.0.0"
2023-07-11 20:22:57 +00:00
}
}