@thant-dev/ciphersuite
Version:
A suite of cryptographic utilities, including signal protocol, AES, and public key encryption for secure messaging.
49 lines (48 loc) • 1.16 kB
JSON
{
"name": "@thant-dev/ciphersuite",
"version": "1.0.3",
"type": "module",
"description": "A suite of cryptographic utilities, including signal protocol, AES, and public key encryption for secure messaging.",
"main": "./dist/index.js",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist/**/*"
],
"scripts": {
"build": "tsc",
"prepublishOnly": "npm run build",
"test": "npm run build && node --experimental-vm-modules node_modules/mocha/bin/mocha 'test/*.js'"
},
"repository": {
"type": "git",
"url": "https://github.com/thantsintoe/ciphersuite.git"
},
"publishConfig": {
"access": "public"
},
"keywords": [
"cryptography",
"cipher",
"encryption",
"secure-messaging",
"secp256k1",
"AES",
"Salsa20"
],
"author": "Thant Sin",
"license": "MIT",
"dependencies": {
"@noble/secp256k1": "^1.0.0",
"@types/node": "^22.9.3"
},
"devDependencies": {
"@types/chai": "^5.0.1",
"@types/mocha": "^10.0.10",
"chai": "^5.1.2",
"jest": "^29.7.0",
"mocha": "^10.8.2",
"ts-node": "^10.9.2",
"typescript": "^5.7.2"
}
}