UNPKG

emotionctl

Version:

A secure terminal-based journaling system designed as a safe space for developers going through heartbreak, breakups, or betrayal

79 lines (78 loc) 2.4 kB
{ "name": "emotionctl", "version": "1.0.0", "description": "A secure terminal-based journaling system designed as a safe space for developers going through heartbreak, breakups, or betrayal", "main": "dist/index.js", "types": "dist/index.d.ts", "files": [ "dist" ], "engines": { "node": ">=14.0.0" }, "scripts": { "build": "tsc", "postbuild": "node -e \"const fs = require('fs'); const path = './dist/index.js'; if (fs.existsSync(path)) { const stats = fs.statSync(path); fs.chmodSync(path, stats.mode | parseInt('755', 8)); }\"", "start": "node dist/index.js", "dev": "ts-node src/index.ts", "watch": "tsc --watch", "clean": "rimraf dist", "test": "jest", "lint": "eslint src/**/*.ts", "format": "prettier --write src/**/*.ts", "prepublishOnly": "yarn clean && yarn build" }, "keywords": [ "journal", "encryption", "terminal", "cli", "diary", "mental-health", "healing", "breakup", "heartbreak", "emotional-support", "developers", "safe-space" ], "author": "Yasoga Nanayakkarawasam <contact@yasogan.dev>", "license": "MIT", "repository": { "type": "git", "url": "git+https://github.com/YasogaN/emotionctl.git" }, "bugs": { "url": "https://github.com/YasogaN/emotionctl/issues" }, "homepage": "https://github.com/YasogaN/emotionctl#readme", "bin": "./dist/index.js", "dependencies": { "blessed": "^0.1.81", "blessed-contrib": "^4.11.0", "chalk": "^5.3.0", "commander": "^11.1.0", "crypto-js": "^4.2.0", "date-fns": "^4.1.0", "fs-extra": "^11.2.0", "inquirer": "^9.2.12" }, "devDependencies": { "@types/blessed": "^0.1.25", "@types/crypto-js": "^4.2.1", "@types/fs-extra": "^11.0.4", "@types/inquirer": "^9.0.7", "@types/jest": "^29.5.8", "@types/node": "^20.9.0", "@typescript-eslint/eslint-plugin": "^6.12.0", "@typescript-eslint/parser": "^6.12.0", "eslint": "^8.54.0", "jest": "^29.7.0", "prettier": "^3.1.0", "rimraf": "^5.0.5", "ts-jest": "^29.1.1", "ts-node": "^10.9.1", "typescript": "^5.3.2" }, "packageManager": "yarn@4.9.1+sha512.f95ce356460e05be48d66401c1ae64ef84d163dd689964962c6888a9810865e39097a5e9de748876c2e0bf89b232d583c33982773e9903ae7a76257270986538" }