UNPKG

@hiprax/crypto

Version:

High-security encryption/decryption library using AES-256-GCM and Argon2id

93 lines (92 loc) 2.33 kB
{ "name": "@hiprax/crypto", "version": "0.9.0", "description": "High-security encryption/decryption library using AES-256-GCM and Argon2id", "main": "dist/index.js", "types": "dist/index.d.ts", "type": "module", "exports": { ".": { "types": "./dist/index.d.ts", "import": "./dist/index.js", "require": "./dist/index.js" }, "./crypto-manager": { "types": "./dist/crypto-manager.d.ts", "import": "./dist/crypto-manager.js", "require": "./dist/crypto-manager.js" }, "./utils": { "types": "./dist/utils.d.ts", "import": "./dist/utils.js", "require": "./dist/utils.js" } }, "scripts": { "build": "tsc", "dev": "tsc --watch", "clean": "rimraf dist", "prebuild": "npm run clean", "test": "jest", "test:coverage": "jest --coverage", "test:watch": "jest --watch", "lint": "eslint src --ext .ts", "lint:fix": "eslint src --ext .ts --fix", "format": "prettier --write src/**/*.ts", "type-check": "tsc --noEmit", "prepublishOnly": "npm run build && npm run test", "prepare": "npm run build" }, "keywords": [ "encryption", "decryption", "security", "aes", "argon2", "crypto", "password", "file", "text", "typescript" ], "author": "Hiprax", "license": "MIT", "dependencies": { "argon2": "^0.43.0" }, "devDependencies": { "@types/jest": "^30.0.0", "@types/node": "^24.0.4", "@typescript-eslint/eslint-plugin": "^8.35.0", "@typescript-eslint/parser": "^8.35.0", "cross-env": "^7.0.3", "eslint": "^9.29.0", "eslint-config-prettier": "^10.1.5", "eslint-plugin-prettier": "^5.5.1", "jest": "^30.0.3", "prettier": "^3.6.2", "rimraf": "^6.0.1", "ts-jest": "^29.4.0", "ts-node": "^10.9.2", "typescript": "^5.8.3" }, "engines": { "node": ">=18.0.0" }, "repository": { "type": "git", "url": "https://github.com/Hiprax/crypto" }, "bugs": { "url": "https://github.com/Hiprax/crypto/issues" }, "homepage": "https://github.com/Hiprax/crypto#readme", "files": [ "dist/**/*", "README.md", "LICENSE" ], "publishConfig": { "access": "public" } }