hpke-js
Version:
A Hybrid Public Key Encryption (HPKE) module for various JavaScript runtimes
60 lines • 1.34 kB
JSON
{
"name": "hpke-js",
"version": "1.6.2",
"description": "A Hybrid Public Key Encryption (HPKE) module for various JavaScript runtimes",
"keywords": [
"hpke",
"public-key-encryption",
"rfc9180",
"e2ee",
"kem",
"kdf",
"kyber",
"aead",
"post-quantum",
"pqc",
"security",
"encryption"
],
"author": "Ajitomi Daisuke",
"homepage": "https://github.com/dajiaji/hpke-js#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/dajiaji/hpke-js.git"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/dajiaji/hpke-js/issues"
},
"main": "./script/mod.js",
"module": "./esm/mod.js",
"types": "./esm/mod.d.ts",
"exports": {
".": {
"import": "./esm/mod.js",
"require": "./script/mod.js"
},
"./package.json": "./package.json"
},
"scripts": {
"test": "node test_runner.js"
},
"sideEffects": false,
"engines": {
"node": ">=16.0.0"
},
"dependencies": {
"@hpke/chacha20poly1305": "^1.6.2",
"@hpke/common": "^1.7.2",
"@hpke/core": "^1.7.2",
"@hpke/dhkem-x25519": "^1.6.2",
"@hpke/dhkem-x448": "^1.6.2",
"@noble/hashes": "^1.7.1"
},
"devDependencies": {
"@types/node": "^20.9.0",
"picocolors": "^1.0.0",
"@deno/shim-deno": "~0.18.0"
},
"_generatedBy": "dnt@dev"
}