
- 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.
95 lines
3.2 KiB
JSON
95 lines
3.2 KiB
JSON
{
|
|
"name": "cron",
|
|
"description": "Cron jobs for your node",
|
|
"version": "3.2.1",
|
|
"author": "Nick Campbell <nicholas.j.campbell@gmail.com> (https://github.com/ncb000gt)",
|
|
"bugs": {
|
|
"url": "https://github.com/kelektiv/node-cron/issues"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/kelektiv/node-cron.git"
|
|
},
|
|
"main": "dist/index.js",
|
|
"types": "dist/index.d.ts",
|
|
"scripts": {
|
|
"build": "tsc -b tsconfig.build.json",
|
|
"lint:eslint": "eslint src/ tests/",
|
|
"lint:prettier": "prettier ./**/*.{json,md,yml} --check",
|
|
"lint": "npm run lint:eslint && npm run lint:prettier",
|
|
"lint:fix": "npm run lint:eslint -- --fix && npm run lint:prettier -- --write",
|
|
"test": "jest --coverage",
|
|
"test:watch": "jest --watch --coverage",
|
|
"test:fuzz": "jest --testMatch='**/*.fuzz.ts' --coverage=false --testTimeout=120000",
|
|
"prepare": "husky"
|
|
},
|
|
"dependencies": {
|
|
"@types/luxon": "~3.4.0",
|
|
"luxon": "~3.5.0"
|
|
},
|
|
"devDependencies": {
|
|
"@commitlint/cli": "19.5.0",
|
|
"@eslint/js": "^9.14.0",
|
|
"@fast-check/jest": "2.0.3",
|
|
"@insurgent/commitlint-config": "20.0.0",
|
|
"@insurgent/conventional-changelog-preset": "10.0.0",
|
|
"@semantic-release/changelog": "6.0.3",
|
|
"@semantic-release/commit-analyzer": "13.0.0",
|
|
"@semantic-release/git": "10.0.1",
|
|
"@semantic-release/github": "11.0.1",
|
|
"@semantic-release/npm": "12.0.1",
|
|
"@semantic-release/release-notes-generator": "14.0.1",
|
|
"@types/jest": "29.5.14",
|
|
"@types/node": "20.17.6",
|
|
"@types/sinon": "17.0.3",
|
|
"chai": "4.5.0",
|
|
"eslint": "8.57.1",
|
|
"eslint-config-prettier": "9.1.0",
|
|
"eslint-plugin-jest": "27.9.0",
|
|
"eslint-plugin-prettier": "5.2.1",
|
|
"husky": "9.1.6",
|
|
"jest": "29.7.0",
|
|
"prettier": "3.3.3",
|
|
"semantic-release": "24.2.0",
|
|
"sinon": "17.0.2",
|
|
"ts-jest": "29.2.5",
|
|
"typescript": "5.6.3",
|
|
"typescript-eslint": "^7.2.0"
|
|
},
|
|
"keywords": [
|
|
"cron",
|
|
"node cron",
|
|
"node-cron",
|
|
"schedule",
|
|
"scheduler",
|
|
"cronjob",
|
|
"cron job"
|
|
],
|
|
"license": "MIT",
|
|
"contributors": [
|
|
"Brandon der Blätter <https://interlucid.com/contact/> (https://github.com/intcreator)",
|
|
"Pierre Cavin <me@sherlox.io> (https://github.com/sheerlox)",
|
|
"Romain Beauxis <toots@rastageeks.org> (https://github.com/toots)",
|
|
"James Padolsey <> (https://github.com/jamespadolsey)",
|
|
"Finn Herpich <fh@three-heads.de> (https://github.com/ErrorProne)",
|
|
"Clifton Cunningham <clifton.cunningham@gmail.com> (https://github.com/cliftonc)",
|
|
"Eric Abouaf <eric.abouaf@gmail.com> (https://github.com/neyric)",
|
|
"humanchimp <morphcham@gmail.com> (https://github.com/humanchimp)",
|
|
"Craig Condon <craig@spiceapps.com> (https://github.com/spiceapps)",
|
|
"Dan Bear <daniel@hulu.com> (https://github.com/danhbear)",
|
|
"Vadim Baryshev <vadimbaryshev@gmail.com> (https://github.com/baryshev)",
|
|
"Leandro Ferrari <lfthomaz@gmail.com> (https://github.com/lfthomaz)",
|
|
"Gregg Zigler <greggzigler@gmail.com> (https://github.com/greggzigler)",
|
|
"Jordan Abderrachid <jabderrachid@gmail.com> (https://github.com/jordanabderrachid)",
|
|
"Masakazu Matsushita <matsukaz@gmail.com> (matsukaz)",
|
|
"Christopher Lunt <me@kirisu.co.uk> (https://github.com/kirisu)"
|
|
],
|
|
"files": [
|
|
"dist/**/*.js",
|
|
"dist/**/*.d.ts",
|
|
"CHANGELOG.md",
|
|
"LICENSE",
|
|
"README.md"
|
|
]
|
|
}
|