Automated Action 545563e776 Implement comprehensive real-time chat API with NestJS
- Complete NestJS TypeScript implementation with WebSocket support
- Direct messaging (DM) and group chat functionality
- End-to-end encryption with AES encryption and key pairs
- Media file support (images, videos, audio, documents) up to 100MB
- Push notifications with Firebase Cloud Messaging integration
- Mention alerts and real-time typing indicators
- User authentication with JWT and Passport
- SQLite database with TypeORM entities and relationships
- Comprehensive API documentation with Swagger/OpenAPI
- File upload handling with secure access control
- Online/offline status tracking and presence management
- Message editing, deletion, and reply functionality
- Notification management with automatic cleanup
- Health check endpoint for monitoring
- CORS configuration for cross-origin requests
- Environment-based configuration management
- Structured for Flutter SDK integration

Features implemented:
 Real-time messaging with Socket.IO
 User registration and authentication
 Direct messages and group chats
 Media file uploads and management
 End-to-end encryption
 Push notifications
 Mention alerts
 Typing indicators
 Message read receipts
 Online status tracking
 File access control
 Comprehensive API documentation

Ready for Flutter SDK development and production deployment.
2025-06-21 17:13:05 +00:00

45 lines
937 B
JSON

{
"name": "char-regex",
"version": "1.0.2",
"description": "A regex to match any full character, considering weird character ranges.",
"repository": "https://github.com/Richienb/char-regex.git",
"author": "Richie Bendall <richiebendall@gmail.com>",
"license": "MIT",
"main": "index.js",
"files": [
"index.js",
"index.d.ts"
],
"engines": {
"node": ">=10"
},
"scripts": {
"lint": "xo",
"test": "yarn lint && ava"
},
"keywords": [
"character",
"regex",
"match",
"split",
"length"
],
"dependencies": {},
"devDependencies": {
"@babel/core": "^7.8.4",
"@babel/plugin-proposal-unicode-property-regex": "^7.8.3",
"array-uniq": "^2.1.0",
"ava": "^3.0.0",
"emoji.json": "^12.1.1",
"eslint-config-richienb": "^0.3.0",
"unicode-chars": "^1.0.1",
"xo": "^0.25.3"
},
"resolutions": {
"eslint": "^6.8.0"
},
"xo": {
"extends": "richienb/node"
}
}