k4li-chat-cli
Version:
A secure end-to-end encrypted chat CLI built on ntfy.sh with ECDH key exchange and AES encryption.
56 lines (55 loc) • 1.32 kB
JSON
{
"name": "k4li-chat-cli",
"version": "1.0.4",
"description": "A secure end-to-end encrypted chat CLI built on ntfy.sh with ECDH key exchange and AES encryption.",
"main": "index.js",
"bin": {
"k4li-chat": "./index.js"
},
"scripts": {
"start": "node index.js",
"lint": "eslint . --ext .js",
"format": "prettier --write .",
"test": "echo \"No test specified yet\" && exit 1"
},
"keywords": [
"ntfy",
"chat",
"e2ee",
"cli",
"encryption",
"messaging",
"secure-chat"
],
"author": "Carlostkd",
"license": "MIT",
"type": "module",
"engines": {
"node": ">=16.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/yourusername/k4li-chat-cli.git"
},
"bugs": {
"url": "https://github.com/carlostkd/k4li-chat-cli/issues"
},
"homepage": "https://github.com/carlostkd/k4li-chat-cli#readme",
"dependencies": {
"axios": "^1.10.0",
"chalk": "^5.4.1",
"commander": "^11.1.0",
"crypto-js": "^4.2.0",
"eventsource": "^4.0.0",
"eventsource-parser": "^3.0.2",
"inquirer": "^9.3.7",
"node-emoji": "^2.2.0",
"undici": "^7.10.0"
},
"devDependencies": {
"eslint": "^9.29.0",
"eslint-config-prettier": "^10.1.5",
"eslint-plugin-import": "^2.31.0",
"prettier": "^3.5.3"
}
}