
- 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.
65 lines
1.9 KiB
JSON
65 lines
1.9 KiB
JSON
{
|
|
"name": "magic-string",
|
|
"version": "0.30.8",
|
|
"description": "Modify strings, generate sourcemaps",
|
|
"keywords": [
|
|
"string",
|
|
"string manipulation",
|
|
"sourcemap",
|
|
"templating",
|
|
"transpilation"
|
|
],
|
|
"repository": "https://github.com/rich-harris/magic-string",
|
|
"license": "MIT",
|
|
"author": "Rich Harris",
|
|
"main": "./dist/magic-string.cjs.js",
|
|
"module": "./dist/magic-string.es.mjs",
|
|
"jsnext:main": "./dist/magic-string.es.mjs",
|
|
"types": "./dist/magic-string.cjs.d.ts",
|
|
"exports": {
|
|
"./package.json": "./package.json",
|
|
".": {
|
|
"import": "./dist/magic-string.es.mjs",
|
|
"require": "./dist/magic-string.cjs.js"
|
|
}
|
|
},
|
|
"files": [
|
|
"dist/*",
|
|
"index.d.ts",
|
|
"README.md"
|
|
],
|
|
"scripts": {
|
|
"build": "rollup -c && cp ./src/index.d.ts ./dist/magic-string.es.d.mts && cp ./src/index.d.ts ./dist/magic-string.cjs.d.ts",
|
|
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s",
|
|
"format": "prettier --single-quote --print-width 100 --use-tabs --write src/*.js src/**/*.js",
|
|
"lint": "eslint src test && publint",
|
|
"prepare": "npm run build",
|
|
"prepublishOnly": "npm run lint && rm -rf dist && npm test",
|
|
"release": "bumpp -x \"npm run changelog\" --all --commit --tag --push && npm publish",
|
|
"pretest": "npm run build",
|
|
"test": "mocha",
|
|
"bench": "npm run build && node benchmark/index.mjs",
|
|
"watch": "rollup -cw"
|
|
},
|
|
"devDependencies": {
|
|
"@rollup/plugin-node-resolve": "^15.2.3",
|
|
"@rollup/plugin-replace": "^5.0.5",
|
|
"benchmark": "^2.1.4",
|
|
"bumpp": "^9.3.0",
|
|
"conventional-changelog-cli": "^3.0.0",
|
|
"eslint": "^8.56.0",
|
|
"mocha": "^10.2.0",
|
|
"prettier": "^3.2.4",
|
|
"publint": "^0.2.7",
|
|
"rollup": "^3.28.0",
|
|
"source-map-js": "^1.0.2",
|
|
"source-map-support": "^0.5.21"
|
|
},
|
|
"engines": {
|
|
"node": ">=12"
|
|
},
|
|
"dependencies": {
|
|
"@jridgewell/sourcemap-codec": "^1.4.15"
|
|
}
|
|
}
|