UNPKG

browserify-hybrid-crypto

Version:

TypeScript implementation Hybrid encryption and signing library built on Web Crypto (AES + RSA + HMAC).

48 lines (47 loc) 1.24 kB
{ "name": "browserify-hybrid-crypto", "version": "1.2.3", "description": "TypeScript implementation Hybrid encryption and signing library built on Web Crypto (AES + RSA + HMAC).", "author": "Vlad Kucherov <vlad@vladk.co.il>", "license": "MIT", "repository": { "type": "git", "url": "https://github.com/vladkucherov/hybrid-crypto-ts.git" }, "keywords": [ "hybrid", "encryption", "signing", "crypto", "webcrypto", "aes", "rsa", "hmac" ], "main": "dist/index.js", "types": "dist/index.d.ts", "scripts": { "build": "tsc", "lint": "eslint . --ext .ts", "lint:fix": "eslint . --ext .ts --fix", "format": "prettier --write .", "format:check": "prettier --check .", "test": "jest", "test:watch": "jest --watch", "test:coverage": "jest --coverage" }, "devDependencies": { "@eslint/eslintrc": "^3.3.1", "@eslint/js": "^9.33.0", "@types/jest": "^29.5.0", "@types/node": "^18.15.0", "@typescript-eslint/eslint-plugin": "^8.40.0", "@typescript-eslint/parser": "^8.40.0", "eslint": "^9.33.0", "globals": "^16.3.0", "jest": "^29.5.0", "prettier": "^3.6.2", "ts-jest": "^29.1.0", "typescript": "^5.0.0" } }