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 实现的密码学套件。目标是提供一个简单易用的密码学库。
128 lines (127 loc) • 3.1 kB
JSON
{
"name": "mima-kit",
"type": "module",
"version": "0.1.2",
"packageManager": "pnpm@10.33.0+sha512.10568bb4a6afb58c9eb3630da90cc9516417abebd3fabbe6739f0ae795728da1491e9db5a544c76ad8eb7570f5c4bb3d6c637b2cb41bfdcdb47fa823c8649319",
"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",
"totp",
"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",
"scrypt"
],
"sideEffects": false,
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.cjs"
},
"./min": {
"types": "./dist/index.d.ts",
"import": "./dist/min/index.mjs",
"require": "./dist/min/index.cjs"
}
},
"main": "./dist/index.cjs",
"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": "biome lint --write",
"prepublishOnly": "nr build",
"release": "bumpp && npm publish",
"start": "esno src/index.ts",
"test": "vitest",
"typecheck": "tsc --noEmit",
"prepare": "simple-git-hooks"
},
"devDependencies": {
"@antfu/ni": "^28.2.0",
"@biomejs/biome": "2.3.14",
"@testing-library/dom": "^10.4.1",
"@testing-library/vue": "^8.1.0",
"@types/node": "^25.2.0",
"@vitejs/plugin-vue": "^6.0.4",
"@vitest/browser": "^4.0.18",
"@vitest/browser-preview": "^4.0.18",
"@vitest/ui": "^4.0.18",
"bumpp": "^10.4.1",
"esno": "^4.8.0",
"lint-staged": "^16.2.7",
"playwright": "^1.58.1",
"pnpm": "^10.28.2",
"rimraf": "^6.1.2",
"simple-git-hooks": "^2.13.1",
"typescript": "^5.9.3",
"unbuild": "^3.6.1",
"vite": "^7.3.1",
"vitest": "^4.0.18"
},
"simple-git-hooks": {
"pre-commit": "pnpm lint-staged"
},
"lint-staged": {
"*": "biome lint --write"
}
}