
- 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.
72 lines
1.5 KiB
JSON
72 lines
1.5 KiB
JSON
{
|
|
"name": "jsonwebtoken",
|
|
"version": "9.0.2",
|
|
"description": "JSON Web Token implementation (symmetric and asymmetric)",
|
|
"main": "index.js",
|
|
"nyc": {
|
|
"check-coverage": true,
|
|
"lines": 95,
|
|
"statements": 95,
|
|
"functions": 100,
|
|
"branches": 95,
|
|
"exclude": [
|
|
"./test/**"
|
|
],
|
|
"reporter": [
|
|
"json",
|
|
"lcov",
|
|
"text-summary"
|
|
]
|
|
},
|
|
"scripts": {
|
|
"lint": "eslint .",
|
|
"coverage": "nyc mocha --use_strict",
|
|
"test": "npm run lint && npm run coverage && cost-of-modules"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/auth0/node-jsonwebtoken"
|
|
},
|
|
"keywords": [
|
|
"jwt"
|
|
],
|
|
"author": "auth0",
|
|
"license": "MIT",
|
|
"bugs": {
|
|
"url": "https://github.com/auth0/node-jsonwebtoken/issues"
|
|
},
|
|
"dependencies": {
|
|
"jws": "^3.2.2",
|
|
"lodash.includes": "^4.3.0",
|
|
"lodash.isboolean": "^3.0.3",
|
|
"lodash.isinteger": "^4.0.4",
|
|
"lodash.isnumber": "^3.0.3",
|
|
"lodash.isplainobject": "^4.0.6",
|
|
"lodash.isstring": "^4.0.1",
|
|
"lodash.once": "^4.0.0",
|
|
"ms": "^2.1.1",
|
|
"semver": "^7.5.4"
|
|
},
|
|
"devDependencies": {
|
|
"atob": "^2.1.2",
|
|
"chai": "^4.1.2",
|
|
"conventional-changelog": "~1.1.0",
|
|
"cost-of-modules": "^1.0.1",
|
|
"eslint": "^4.19.1",
|
|
"mocha": "^5.2.0",
|
|
"nsp": "^2.6.2",
|
|
"nyc": "^11.9.0",
|
|
"sinon": "^6.0.0"
|
|
},
|
|
"engines": {
|
|
"npm": ">=6",
|
|
"node": ">=12"
|
|
},
|
|
"files": [
|
|
"lib",
|
|
"decode.js",
|
|
"sign.js",
|
|
"verify.js"
|
|
]
|
|
}
|