
- 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.8 KiB
JSON
64 lines
1.8 KiB
JSON
{
|
|
"name": "eslint-scope",
|
|
"description": "ECMAScript scope analyzer for ESLint",
|
|
"homepage": "http://github.com/eslint/eslint-scope",
|
|
"main": "./dist/eslint-scope.cjs",
|
|
"type": "module",
|
|
"exports": {
|
|
".": {
|
|
"import": "./lib/index.js",
|
|
"require": "./dist/eslint-scope.cjs"
|
|
},
|
|
"./package.json": "./package.json"
|
|
},
|
|
"version": "7.2.2",
|
|
"engines": {
|
|
"node": "^12.22.0 || ^14.17.0 || >=16.0.0"
|
|
},
|
|
"repository": "eslint/eslint-scope",
|
|
"funding": "https://opencollective.com/eslint",
|
|
"bugs": {
|
|
"url": "https://github.com/eslint/eslint-scope/issues"
|
|
},
|
|
"license": "BSD-2-Clause",
|
|
"scripts": {
|
|
"build": "rollup -c",
|
|
"lint": "npm run build && node Makefile.js lint",
|
|
"update-version": "node tools/update-version.js",
|
|
"test": "npm run build && node Makefile.js test",
|
|
"prepublishOnly": "npm run update-version && npm run build",
|
|
"generate-release": "eslint-generate-release",
|
|
"generate-alpharelease": "eslint-generate-prerelease alpha",
|
|
"generate-betarelease": "eslint-generate-prerelease beta",
|
|
"generate-rcrelease": "eslint-generate-prerelease rc",
|
|
"publish-release": "eslint-publish-release"
|
|
},
|
|
"files": [
|
|
"LICENSE",
|
|
"README.md",
|
|
"lib",
|
|
"dist/eslint-scope.cjs"
|
|
],
|
|
"dependencies": {
|
|
"esrecurse": "^4.3.0",
|
|
"estraverse": "^5.2.0"
|
|
},
|
|
"devDependencies": {
|
|
"@typescript-eslint/parser": "^4.28.1",
|
|
"c8": "^7.7.3",
|
|
"chai": "^4.3.4",
|
|
"eslint": "^7.29.0",
|
|
"eslint-config-eslint": "^7.0.0",
|
|
"eslint-plugin-jsdoc": "^35.4.1",
|
|
"eslint-plugin-node": "^11.1.0",
|
|
"eslint-release": "^3.2.0",
|
|
"eslint-visitor-keys": "^3.3.0",
|
|
"espree": "^9.3.1",
|
|
"mocha": "^9.0.1",
|
|
"npm-license": "^0.3.3",
|
|
"rollup": "^2.52.7",
|
|
"shelljs": "^0.8.4",
|
|
"typescript": "^4.3.5"
|
|
}
|
|
}
|