
- 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.
59 lines
1.6 KiB
JSON
59 lines
1.6 KiB
JSON
{
|
|
"name": "proto3-json-serializer",
|
|
"version": "1.1.1",
|
|
"repository": "googleapis/proto3-json-serializer-nodejs",
|
|
"description": "Support for proto3 JSON serialiazation/deserialization for protobuf.js",
|
|
"main": "build/src/index.js",
|
|
"types": "build/src/index.d.ts",
|
|
"files": [
|
|
"build/src"
|
|
],
|
|
"license": "Apache-2.0",
|
|
"keywords": [
|
|
"protobufjs",
|
|
"protobuf.js",
|
|
"protobuf",
|
|
"proto3",
|
|
"json",
|
|
"serialization",
|
|
"deserialization"
|
|
],
|
|
"scripts": {
|
|
"test": "c8 node_modules/mocha/bin/mocha build/test/unit",
|
|
"system-test": "mocha build/test/system",
|
|
"lint": "gts lint",
|
|
"clean": "gts clean",
|
|
"compile": "tsc",
|
|
"fix": "gts fix",
|
|
"prepare": "npm run compile",
|
|
"pretest": "npm run compile",
|
|
"posttest": "npm run lint",
|
|
"compile-test-protos": "cd test-fixtures/proto && pbjs -t json test.proto > test.json",
|
|
"docs": "jsdoc -c .jsdoc.js",
|
|
"docs-test": "linkinator docs",
|
|
"predocs-test": "npm run docs",
|
|
"samples-test": "cd samples/ && npm link ../ && npm test && cd ../",
|
|
"prelint": "cd samples && npm link ../ && npm install"
|
|
},
|
|
"dependencies": {
|
|
"protobufjs": "^7.0.0"
|
|
},
|
|
"devDependencies": {
|
|
"@types/mocha": "^9.0.0",
|
|
"@types/node": "^18.0.0",
|
|
"c8": "^7.7.3",
|
|
"google-proto-files": "^3.0.0",
|
|
"gts": "^3.1.0",
|
|
"jsdoc": "^4.0.0",
|
|
"jsdoc-fresh": "^2.0.0",
|
|
"jsdoc-region-tag": "^2.0.0",
|
|
"linkinator": "^4.0.0",
|
|
"mocha": "^9.2.2",
|
|
"pack-n-play": "^1.0.0-2",
|
|
"typescript": "^4.6.4"
|
|
},
|
|
"engines": {
|
|
"node": ">=12.0.0"
|
|
}
|
|
}
|