UNPKG

crypto-es

Version:

A cryptography algorithms library compatible with ES6 and TypeScript

93 lines (92 loc) 2.04 kB
{ "name": "crypto-es", "version": "3.0.1", "description": "A cryptography algorithms library compatible with ES6 and TypeScript", "keywords": [ "typescript", "security", "crypto", "cipher", "ArrayBuffer", "TypedArray", "file", "ECMAScript", "ES6", "Hash", "MD5", "SHA1", "SHA-1", "SHA2", "SHA-2", "SHA3", "SHA-3", "SHA256", "SHA-256", "RC4", "Rabbit", "AES", "DES", "3DES", "TripleDES", "PBKDF2", "HMAC", "HEX", "Base64", "Base64url", "blowfish" ], "sideEffects": false, "type": "module", "main": "./dist/index.cjs", "module": "./dist/index.mjs", "types": "./dist/index.d.cts", "exports": { ".": { "import": "./dist/index.mjs", "require": "./dist/index.cjs" }, "./package.json": "./package.json" }, "files": [ "dist" ], "scripts": { "build": "tsdown", "build:verbose": "sh -c 'tsdown 2>&1'", "build:watch": "tsdown --watch", "typecheck": "tsc --noEmit", "typecheck:verbose": "sh -c 'tsc --noEmit 2>&1'", "clean": "rm -rf dist", "prebuild": "npm run clean", "prepublishOnly": "npm run test && npm run build", "test": "vitest run", "test:watch": "vitest watch", "test:ui": "vitest --ui", "test:coverage": "vitest run --coverage", "test:verbose": "sh -c 'vitest run 2>&1'", "dev": "npm run build:watch", "lint": "npm run typecheck", "check": "npm run typecheck && npm run test" }, "repository": { "type": "git", "url": "git+https://github.com/entronad/crypto-es.git" }, "author": "LIN Chen", "license": "MIT", "bugs": { "url": "https://github.com/entronad/crypto-es/issues" }, "homepage": "https://github.com/entronad/crypto-es#readme", "devDependencies": { "@vitest/ui": "^3.2.4", "publint": "^0.3.12", "tsdown": "^0.14.1", "typescript": "^5.9.2", "vitest": "^3.2.4" }, "engines": { "node": ">=18.0.0" }, "packageManager": "npm@10.0.0" }