sipher/package.json
Nixyan 096d6ab16c Enhance user interaction with friend management and participant details
- Added `getParticipantDetails` query to fetch details of multiple participants in a direct message channel.
- Introduced `dexie-react-hooks` for improved state management with Dexie.
- Refactored user validation logic to support optional user authentication.
- Created new UI components for friend actions and friend list display.
- Implemented a layout structure for the application, including a sidebar and main content area.
- Updated socket management to handle connection states more effectively.
- Removed deprecated `page.tsx` file and organized routing structure for better maintainability.
2025-12-28 04:46:41 -03:00

71 lines
No EOL
2 KiB
JSON

{
"name": "sipher",
"version": "0.1.0",
"private": true,
"scripts": {
"postinstall": "bun src/lib/scripts/copy-olm.ts",
"dev": "next dev",
"build": "bun src/lib/scripts/copy-olm.ts && next build",
"start": "next start",
"start:server": "NODE_ENV=development tsx src/server.ts"
},
"dependencies": {
"@better-fetch/fetch": "^1.1.21",
"@convex-dev/better-auth": "^0.10.4",
"@marsidev/react-turnstile": "^1.4.0",
"@matrix-org/olm": "^3.2.15",
"@nanostores/react": "^1.0.0",
"@phosphor-icons/react": "^2.1.10",
"@radix-ui/react-avatar": "^1.1.11",
"@radix-ui/react-checkbox": "^1.3.3",
"@radix-ui/react-context-menu": "^2.2.16",
"@radix-ui/react-dialog": "^1.1.15",
"@radix-ui/react-hover-card": "^1.1.15",
"@radix-ui/react-label": "^2.1.8",
"@radix-ui/react-menubar": "^1.1.16",
"@radix-ui/react-popover": "^1.1.15",
"@radix-ui/react-progress": "^1.1.8",
"@radix-ui/react-scroll-area": "^1.2.10",
"@radix-ui/react-separator": "^1.1.8",
"@radix-ui/react-slot": "^1.2.4",
"@radix-ui/react-tooltip": "^1.2.8",
"@types/libsodium-wrappers": "^0.7.14",
"better-auth": "1.4.7",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"cmdk": "^1.1.1",
"convex": "^1.31.1",
"cross-env": "^10.1.0",
"date-fns": "^4.1.0",
"dexie": "^4.2.1",
"dexie-react-hooks": "^4.2.0",
"framer-motion": "^12.23.26",
"libsodium-wrappers": "^0.7.15",
"lucide-react": "^0.561.0",
"nanostores": "^1.1.0",
"next": "16.0.10",
"next-themes": "^0.4.6",
"react": "19.2.3",
"react-day-picker": "^9.12.0",
"react-dom": "19.2.3",
"socket.io": "^4.8.1",
"socket.io-client": "^4.8.1",
"sonner": "^2.0.7",
"tailwind-merge": "^3.4.0",
"ws": "^8.18.3",
"zod": "^4.2.1"
},
"devDependencies": {
"@tailwindcss/postcss": "^4.1.18",
"@types/bun": "^1.3.4",
"@types/node": "^25.0.3",
"@types/react": "^19.2.7",
"@types/react-dom": "^19.2.3",
"@types/ws": "^8.18.1",
"babel-plugin-react-compiler": "1.0.0",
"tailwindcss": "^4.1.18",
"tsx": "^4.21.0",
"tw-animate-css": "^1.4.0",
"typescript": "^5.9.3"
}
}