UNPKG

mima-kit

Version:

mima-kit is a cryptographic suite implemented in TypeScript. The goal is to provide an easy-to-use cryptographic library. mima-kit 是一个使用 TypeScript 实现的密码学套件。目标是提供一个简单易用的密码学库。

122 lines (121 loc) 2.67 kB
{ "name": "mima-kit", "type": "module", "version": "0.0.16", "packageManager": "pnpm@9.9.0", "description": "mima-kit is a cryptographic suite implemented in TypeScript. The goal is to provide an easy-to-use cryptographic library. mima-kit 是一个使用 TypeScript 实现的密码学套件。目标是提供一个简单易用的密码学库。", "author": "RSoraM", "license": "MIT", "homepage": "https://github.com/RSoraM/mima-kit#readme", "repository": { "type": "git", "url": "git+https://github.com/RSoraM/mima-kit.git" }, "bugs": "https://github.com/RSoraM/mima-kit/issues", "keywords": [ "cryptography", "hash", "sm3", "md5", "sha1", "sha2", "sha3", "shake", "cShake", "tupleHash", "parallelHash", "TurboHash", "KangarooTwelve", "hmac", "kmac", "blockCipher", "sm4", "aes", "des", "aria", "camellia", "arc5", "blowfish", "twofish", "tea", "xtea", "xxtea", "streamCipher", "zuc", "rc4", "rabbit", "salsa20", "rsa", "sm2", "ecdh", "ecmqv", "ecdsa", "ecies", "X9.63 KDF", "HKDF", "PBKDF2" ], "sideEffects": false, "exports": { ".": { "types": "./dist/index.d.ts", "import": "./dist/index.mjs", "require": "./dist/index.cjs" } }, "main": "./dist/index.js", "module": "./dist/index.mjs", "types": "./dist/index.d.ts", "typesVersions": { "*": { "*": [ "./dist/*", "./dist/index.d.ts" ] } }, "files": [ "dist" ], "scripts": { "build": "unbuild", "postbuild": "tsc", "dev": "unbuild --stub", "lint": "eslint .", "prepublishOnly": "nr build", "release": "bumpp && npm publish", "start": "esno src/index.ts", "test": "vitest", "typecheck": "tsc --noEmit", "prepare": "simple-git-hooks", "test:browser": "vitest" }, "devDependencies": { "@antfu/eslint-config": "^2.27.3", "@antfu/ni": "^0.21.12", "@testing-library/dom": "^10.4.0", "@testing-library/vue": "^8.1.0", "@types/node": "^20.17.10", "@vitejs/plugin-vue": "^5.2.1", "@vitest/browser": "^2.1.8", "bumpp": "^9.9.1", "eslint": "^8.57.1", "esno": "^4.8.0", "lint-staged": "^15.2.11", "playwright": "^1.49.1", "pnpm": "^9.15.0", "rimraf": "^5.0.10", "simple-git-hooks": "^2.11.1", "typescript": "^5.7.2", "unbuild": "^2.0.0", "vite": "^5.4.11", "vitest": "^2.1.8", "webdriverio": "^9.4.2" }, "simple-git-hooks": { "pre-commit": "pnpm lint-staged" }, "lint-staged": { "*": "eslint --fix" } }