
- 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.
64 lines
1.5 KiB
JSON
64 lines
1.5 KiB
JSON
{
|
|
"name": "@humanwhocodes/config-array",
|
|
"version": "0.13.0",
|
|
"description": "Glob-based configuration matching.",
|
|
"author": "Nicholas C. Zakas",
|
|
"main": "api.js",
|
|
"files": [
|
|
"api.js",
|
|
"LICENSE",
|
|
"README.md"
|
|
],
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/humanwhocodes/config-array.git"
|
|
},
|
|
"bugs": {
|
|
"url": "https://github.com/humanwhocodes/config-array/issues"
|
|
},
|
|
"homepage": "https://github.com/humanwhocodes/config-array#readme",
|
|
"scripts": {
|
|
"build": "rollup -c",
|
|
"format": "nitpik",
|
|
"lint": "eslint *.config.js src/*.js tests/*.js",
|
|
"lint:fix": "eslint --fix *.config.js src/*.js tests/*.js",
|
|
"prepublish": "npm run build",
|
|
"test:coverage": "nyc --include src/*.js npm run test",
|
|
"test": "mocha -r esm tests/ --recursive"
|
|
},
|
|
"gitHooks": {
|
|
"pre-commit": "lint-staged"
|
|
},
|
|
"lint-staged": {
|
|
"*.js": [
|
|
"eslint --fix --ignore-pattern '!.eslintrc.js'"
|
|
]
|
|
},
|
|
"keywords": [
|
|
"configuration",
|
|
"configarray",
|
|
"config file"
|
|
],
|
|
"license": "Apache-2.0",
|
|
"engines": {
|
|
"node": ">=10.10.0"
|
|
},
|
|
"dependencies": {
|
|
"@humanwhocodes/object-schema": "^2.0.3",
|
|
"debug": "^4.3.1",
|
|
"minimatch": "^3.0.5"
|
|
},
|
|
"devDependencies": {
|
|
"@nitpik/javascript": "0.4.0",
|
|
"@nitpik/node": "0.0.5",
|
|
"chai": "4.3.10",
|
|
"eslint": "8.52.0",
|
|
"esm": "3.2.25",
|
|
"lint-staged": "15.0.2",
|
|
"mocha": "6.2.3",
|
|
"nyc": "15.1.0",
|
|
"rollup": "3.28.1",
|
|
"yorkie": "2.0.0"
|
|
}
|
|
}
|