- Updated user status handling to include optional user-set status, improving user experience during reconnections. - Added new queries and mutations for managing nests, including fetching non-offline user IDs and forcing users offline. - Introduced new database schema for nests, roles, and channels, enhancing the application's organizational structure. - Updated dependencies in package.json and bun.lock for improved stability and compatibility. - Refactored related components and API to support the new nests functionality.
70 lines
No EOL
2.2 KiB
JSON
70 lines
No EOL
2.2 KiB
JSON
{
|
|
"name": "sipher",
|
|
"version": "0.1.0",
|
|
"private": true,
|
|
"scripts": {
|
|
"postinstall": "bun src/lib/scripts/copy-olm.ts",
|
|
"dev": "cross-env NODE_ENV=development PORT=3000 tsx src/server.ts",
|
|
"build": "bun src/lib/scripts/copy-olm.ts && convex deploy --cmd \"next build\"",
|
|
"build:local": "bun src/lib/scripts/copy-olm.ts && next build",
|
|
"start": "cross-env NODE_ENV=production PORT=8081 tsx src/server.ts",
|
|
"start:dev": "cross-env NODE_ENV=development PORT=3000 tsx src/server.ts"
|
|
},
|
|
"dependencies": {
|
|
"@convex-dev/better-auth": "^0.10.10",
|
|
"@marsidev/react-turnstile": "^1.4.2",
|
|
"@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/bun": "^1.3.9",
|
|
"@types/libsodium-wrappers": "^0.7.14",
|
|
"better-auth": "1.4.12",
|
|
"class-variance-authority": "^0.7.1",
|
|
"clsx": "^2.1.1",
|
|
"cmdk": "^1.1.1",
|
|
"convex": "^1.31.7",
|
|
"cross-env": "^10.1.0",
|
|
"date-fns": "^4.1.0",
|
|
"dexie": "^4.3.0",
|
|
"dexie-react-hooks": "^4.2.0",
|
|
"dotenv": "^17.3.1",
|
|
"framer-motion": "^12.34.0",
|
|
"lucide-react": "^0.562.0",
|
|
"moment": "^2.30.1",
|
|
"nanostores": "^1.1.0",
|
|
"next": "16.1.1",
|
|
"next-themes": "^0.4.6",
|
|
"react": "19.2.3",
|
|
"react-day-picker": "^9.13.1",
|
|
"react-dom": "19.2.3",
|
|
"socket.io": "^4.8.3",
|
|
"socket.io-client": "^4.8.3",
|
|
"sonner": "^2.0.7",
|
|
"tailwind-merge": "^3.4.0",
|
|
"zod": "^4.3.6"
|
|
},
|
|
"devDependencies": {
|
|
"@tailwindcss/postcss": "^4.1.18",
|
|
"@types/node": "^25.2.2",
|
|
"@types/react": "^19.2.13",
|
|
"@types/react-dom": "^19.2.3",
|
|
"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"
|
|
}
|
|
} |