secure-encryption-lib
Version:
A TypeScript library for secure encryption using AES & RSA with automatic key rotation.
83 lines (82 loc) • 2.39 kB
JSON
{
"name": "secure-encryption-lib",
"version": "1.0.7",
"description": "A TypeScript library for secure encryption using AES & RSA with automatic key rotation.",
"main": "dist/index.js",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "tsc",
"build:clean": "rm -rf ./dist",
"compile": "tsc",
"dev": "ts-node src/index.ts",
"start": "node dist/index.js",
"test": "jest",
"lint": "eslint . || echo 'Run \"npm run lint:fix\" to automatically fix issues.'",
"lint:fix": "eslint --fix .",
"generate:docs": "npx compodoc -p tsconfig.json",
"prepare": "husky",
"postversion": "git push && git push --tags && npm run publish:pkg",
"publish:pkg": "npm publish",
"version:update:patch": "npm version patch --no-git-tag-version",
"version:update:minor": "npm version minor --no-git-tag-version",
"version:update:major": "npm version major --no-git-tag-version"
},
"repository": {
"type": "git",
"url": "https://github.com/vasanthkumar10/secure-encryption-lib"
},
"homepage": "https://github.com/vasanthkumar10/secure-encryption-lib#readme",
"bugs": {
"url": "https://github.com/vasanthkumar10/secure-encryption-lib/issues"
},
"keywords": [
"encryption",
"security",
"typescript",
"rsa",
"aes",
"key-rotation"
],
"author": "Vasanthkumar",
"contributors": [
{
"name": "Vasanthkumar",
"email": "vasizebron10@gmail.com",
"url": "https://github.com/vasanthkumar10"
}
],
"license": "MIT",
"dependencies": {
"@am92/redis": "^2.0.5",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"lodash": "^4.17.21"
},
"devDependencies": {
"@compodoc/compodoc": "^1.1.26",
"@types/express": "^4.17.14",
"@types/jest": "^29.0.0",
"@types/lodash": "^4.17.16",
"@types/node": "^18.0.6",
"eslint": "^8.57.1",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-jsonc": "^2.19.1",
"eslint-plugin-n": "^16.6.2",
"eslint-plugin-prettier": "^5.2.3",
"eslint-plugin-simple-import-sort": "^10.0.0",
"eslint-plugin-unused-imports": "^3.2.0",
"husky": "^9.1.7",
"jest": "^29.0.0",
"prettier": "^3.5.2",
"ts-jest": "^29.0.0",
"typescript": "^5.2.2"
},
"engines": {
"node": ">=18.16.0"
}
}