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

98 lines
2.1 KiB
JSON

{
"name": "iterare",
"version": "1.2.1",
"description": "Array methods for ES6 Iterators",
"main": "lib/index.js",
"typings": "lib/index.d.ts",
"engines": {
"node": ">=6"
},
"scripts": {
"tslint": "tslint -c tslint.json -p tsconfig.json 'src/**/*.ts'",
"prettier": "prettier --write --list-different '**/*.{ts,json,js,md,yml}'",
"test": "nyc mocha",
"build": "tsc",
"watch": "tsc -w",
"typedoc": "typedoc --out typedoc --tsconfig tsconfig.json --ignoreCompilerErrors --mode file --excludeExternals src",
"semantic-release": "semantic-release"
},
"nyc": {
"all": true,
"extension": [
".ts"
],
"include": [
"src/**/*.ts"
],
"exclude": [
"src/**/*.test.ts"
],
"reporter": [
"text",
"json"
]
},
"mocha": {
"spec": "src/**/*.test.ts",
"require": "ts-node/register"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -e $HUSKY_GIT_PARAMS"
}
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"keywords": [
"iterator",
"iteration",
"functional",
"es6",
"collection",
"array",
"map",
"set",
"filter",
"reduce",
"flatten",
"concat",
"every",
"some"
],
"author": "Felix Becker <felix.b@outlook.com>",
"repository": {
"type": "git",
"url": "https://github.com/felixfbecker/iterare"
},
"bugs": {
"url": "https://github.com/felixfbecker/iterare/issues"
},
"license": "ISC",
"devDependencies": {
"@commitlint/cli": "^8.0.0",
"@commitlint/config-conventional": "^8.0.0",
"@reactivex/ix-es2015-cjs": "^2.5.3",
"@types/benchmark": "^1.0.31",
"@types/lodash": "^4.14.134",
"@types/mocha": "^5.2.7",
"@types/node": "^7.10.6",
"benchmark": "^2.1.4",
"husky": "^2.4.0",
"ix": "^2.5.3",
"lodash": "^4.17.11",
"mocha": "^6.1.4",
"nyc": "^14.1.1",
"prettier": "^1.18.1",
"rxjs": "^6.5.2",
"semantic-release": "^15.13.12",
"ts-node": "^8.2.0",
"tslint": "^5.17.0",
"tslint-config-prettier": "^1.18.0",
"typedoc": "^0.14.2",
"typescript": "~3.5.1"
}
}