WebChat/package.json

116 lines
3.4 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-07-23 20:10:04 +00:00
"dev": "vite --force",
"dev:web": "vite -c vite.config.web.ts --force",
"build": "vite build",
"pack": "cross-env NODE_ENV=production run-p pack:*",
"pack:zip": "rimraf dist.zip && jszip-cli add dist/* -o ./dist.zip",
"pack:crx": "crx pack dist -o ./dist.crx",
"pack:xpi": "cross-env WEB_EXT_ARTIFACTS_DIR=./ web-ext build --source-dir ./dist --filename dist.xpi --overwrite-dest",
2023-07-23 20:10:04 +00:00
"lint": "eslint . --ext .js,.jsx,.ts,.tsx --cache --fix",
"clear": "rimraf dist dist.*",
2023-07-11 20:22:57 +00:00
"tsc:check": "tsc --noEmit",
"prepare": "husky install"
},
"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",
"devDependencies": {
"@commitlint/cli": "^17.6.6",
"@commitlint/config-conventional": "^17.6.6",
"@crxjs/vite-plugin": "2.0.0-beta.18",
"@ffflorian/jszip-cli": "^3.4.1",
2023-07-13 14:27:59 +00:00
"@types/node": "^20.4.2",
2023-07-11 20:22:57 +00:00
"@types/react": "^18.2.14",
2023-07-13 14:27:59 +00:00
"@types/react-dom": "^18.2.7",
2023-07-11 20:22:57 +00:00
"@types/webextension-polyfill": "^0.10.1",
"@vitejs/plugin-react": "^4.0.3",
"autoprefixer": "^10.4.14",
"cross-env": "^7.0.3",
"crx": "^5.0.1",
2023-07-11 20:22:57 +00:00
"eslint": "^8.44.0",
"eslint-config-prettier": "^8.8.0",
"eslint-config-standard-with-typescript": "^36.0.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-n": "^16.0.1",
"eslint-plugin-prettier": "^5.0.0",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-tailwindcss": "^3.13.0",
2023-07-11 20:22:57 +00:00
"husky": "^8.0.3",
"lint-staged": "^13.2.3",
"npm-run-all": "^4.1.5",
2023-07-11 20:22:57 +00:00
"postcss": "^8.4.25",
"prettier": "^3.0.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"rimraf": "^5.0.1",
2023-07-11 20:22:57 +00:00
"tailwindcss": "^3.3.2",
"typescript": "^5.1.6",
2023-07-13 14:27:59 +00:00
"unplugin-icons": "^0.16.5",
2023-07-11 20:22:57 +00:00
"vite": "^4.4.3",
"web-ext": "^7.6.2",
2023-07-11 20:22:57 +00:00
"webext-bridge": "^6.0.1",
"webextension-polyfill": "^0.10.0"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": "eslint --fix"
},
"dependencies": {
2023-07-27 05:42:49 +00:00
"@perfsee/jsonr": "^1.8.2",
2023-07-23 20:10:04 +00:00
"@radix-ui/react-avatar": "^1.0.3",
"@radix-ui/react-hover-card": "^1.0.6",
2023-07-11 20:22:57 +00:00
"@radix-ui/react-icons": "^1.3.0",
2023-07-30 16:32:00 +00:00
"@radix-ui/react-scroll-area": "^1.0.4",
2023-07-14 12:04:51 +00:00
"@radix-ui/react-slot": "^1.0.2",
2023-07-30 16:32:00 +00:00
"@tailwindcss/typography": "^0.5.9",
2023-07-11 20:22:57 +00:00
"class-variance-authority": "^0.6.1",
"clsx": "^1.2.1",
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-07-23 20:10:04 +00:00
"lucide-react": "^0.263.0",
2023-08-02 20:28:15 +00:00
"nanoid": "^4.0.2",
2023-07-14 12:04:51 +00:00
"peerjs": "^1.4.7",
"react-markdown": "^8.0.7",
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",
"remark-gfm": "^3.0.1",
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-07-11 20:22:57 +00:00
"tailwind-merge": "^1.13.2",
"type-fest": "^3.13.0"
2023-07-13 17:32:36 +00:00
},
"engines": {
"node": ">=18.0.0"
2023-07-11 20:22:57 +00:00
}
}