cleansend
Version:
A TypeScript implementation of the OpenMsg Protocol - secure, decentralized messaging system with end-to-end encryption for cross-domain communication
73 lines (72 loc) • 1.81 kB
JSON
{
"name": "cleansend",
"version": "1.0.3",
"description": "A TypeScript implementation of the OpenMsg Protocol - secure, decentralized messaging system with end-to-end encryption for cross-domain communication",
"main": "dist/server.js",
"types": "dist/server.d.ts",
"files": [
"dist/**/*",
"README.md",
"LICENSE"
],
"keywords": [
"cleansend",
"openmsg",
"messaging",
"secure",
"protocol",
"typescript",
"encryption",
"decentralized",
"end-to-end-encryption",
"cross-domain",
"messaging-protocol",
"secure-communication",
"aes-256-gcm",
"nodejs",
"express",
"mysql"
],
"author": "Keshara1997",
"license": "ISC",
"repository": {
"type": "git",
"url": "git+https://github.com/Keshara1997/CleanSend.git"
},
"homepage": "https://github.com/Keshara1997/CleanSend#readme",
"bugs": {
"url": "https://github.com/Keshara1997/CleanSend/issues"
},
"engines": {
"node": ">=18.0.0"
},
"scripts": {
"build": "tsc",
"start": "npm run build && node dist/server.js",
"dev": "ts-node-dev --respawn --transpile-only src/server.ts",
"setup": "npm run build && node dist/setup/setup.js",
"watch": "tsc --watch",
"clean": "rimraf dist",
"typecheck": "tsc --noEmit",
"prepublishOnly": "npm run clean && npm run build"
},
"dependencies": {
"axios": "^1.6.2",
"bcrypt": "^5.1.1",
"cors": "^2.8.5",
"dotenv": "^16.3.1",
"express": "^4.21.2",
"helmet": "^7.1.0",
"mysql2": "^3.6.5"
},
"devDependencies": {
"@types/bcrypt": "^5.0.2",
"@types/cors": "^2.8.17",
"@types/express": "^4.17.23",
"@types/node": "^20.10.0",
"rimraf": "^5.0.5",
"ts-node": "^10.9.1",
"ts-node-dev": "^2.0.0",
"typescript": "^5.3.2"
}
}