cryptonism
Version:
End-to-end encryption library for browser
65 lines (64 loc) • 1.35 kB
JSON
{
"name": "cryptonism",
"version": "1.0.2",
"types": "dist/index.d.mts",
"exports": {
".": {
"import": "./dist/index.mjs",
"types": "./dist/index.d.mts"
}
},
"scripts": {
"dev": "tsx watch src/index.ts",
"run": "tsx src/index.ts",
"build": "tsup"
},
"files": [
"dist/index.mjs",
"dist/index.d.mts"
],
"keywords": [
"cryptonism",
"crypto",
"argon2-browser",
"argon2",
"encryption",
"cryptography",
"end-to-end-encryption",
"aes-gcm-encryption",
"browser-crypto",
"e2ee",
"secure-authentication",
"zero-knowledge-proof",
"zero-knowledge",
"browser-encryption",
"frontend-library",
"web-crypto",
"AES-GCM",
"password-encryption",
"authentication",
"frontend-security",
"privacy-first",
"npm",
"typescript",
"library"
],
"author": "Sabkat Ahmed Rafi",
"license": "MIT",
"description": "End-to-end encryption library for browser",
"repository": {
"type": "git",
"url": "https://github.com/sabkat-ahmed-rafi/cryptonism"
},
"homepage": "https://cryptonism.vercel.app",
"devDependencies": {
"tsup": "^8.5.0",
"tsx": "^4.20.3",
"typescript": "^5.8.3",
"vite": "^6.3.5"
},
"dependencies": {
"@scure/bip39": "^1.6.0",
"argon2-browser": "^1.18.0"
}
}