
- 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.
93 lines
2.1 KiB
JSON
93 lines
2.1 KiB
JSON
{
|
|
"name": "@fastify/busboy",
|
|
"version": "1.2.1",
|
|
"private": false,
|
|
"author": "Brian White <mscdex@mscdex.net>",
|
|
"contributors": [
|
|
{
|
|
"name": "Igor Savin",
|
|
"email": "kibertoad@gmail.com",
|
|
"url": "https://github.com/kibertoad"
|
|
},
|
|
{
|
|
"name": "Aras Abbasi",
|
|
"email": "aras.abbasi@gmail.com",
|
|
"url": "https://github.com/uzlopak"
|
|
}
|
|
],
|
|
"description": "A streaming parser for HTML form data for node.js",
|
|
"main": "lib/main",
|
|
"types": "lib/main.d.ts",
|
|
"scripts": {
|
|
"bench:busboy": "cd benchmarks && npm install && npm run benchmark-fastify",
|
|
"bench:dicer": "node bench/dicer/dicer-bench-multipart-parser.js",
|
|
"coveralls": "nyc report --reporter=lcov",
|
|
"lint": "npm run lint:standard",
|
|
"lint:everything": "npm run lint && npm run test:types",
|
|
"lint:fix": "standard --fix",
|
|
"lint:standard": "standard --verbose | snazzy",
|
|
"test:mocha": "mocha test",
|
|
"test:types": "tsd",
|
|
"test:coverage": "nyc npm run test",
|
|
"test": "npm run test:mocha"
|
|
},
|
|
"engines": {
|
|
"node": ">=14"
|
|
},
|
|
"dependencies": {
|
|
"text-decoding": "^1.0.0"
|
|
},
|
|
"devDependencies": {
|
|
"@types/node": "^18.0.0",
|
|
"busboy": "^1.0.0",
|
|
"chai": "^4.3.6",
|
|
"eslint": "^8.23.0",
|
|
"eslint-config-standard": "^17.0.0",
|
|
"eslint-plugin-n": "^15.2.5",
|
|
"mocha": "^10.0.0",
|
|
"nyc": "^15.1.0",
|
|
"photofinish": "^1.8.0",
|
|
"snazzy": "^9.0.0",
|
|
"standard": "^17.0.0",
|
|
"tsd": "^0.25.0",
|
|
"typescript": "^4.5.2"
|
|
},
|
|
"keywords": [
|
|
"uploads",
|
|
"forms",
|
|
"multipart",
|
|
"form-data"
|
|
],
|
|
"license": "MIT",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/fastify/busboy.git"
|
|
},
|
|
"tsd": {
|
|
"directory": "test/types",
|
|
"compilerOptions": {
|
|
"esModuleInterop": false,
|
|
"module": "commonjs",
|
|
"target": "ES2017"
|
|
}
|
|
},
|
|
"standard": {
|
|
"globals": [
|
|
"describe",
|
|
"it"
|
|
],
|
|
"ignore": [
|
|
"bench"
|
|
]
|
|
},
|
|
"files": [
|
|
"README.md",
|
|
"LICENSE",
|
|
"lib/*",
|
|
"deps/encoding/*",
|
|
"deps/dicer/lib",
|
|
"deps/streamsearch/",
|
|
"deps/dicer/LICENSE"
|
|
]
|
|
}
|