{
  "name": "hpke-js",
  "version": "1.8.0",
  "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"
  },
  "sideEffects": false,
  "engines": {
    "node": ">=16.0.0"
  },
  "dependencies": {
    "@hpke/chacha20poly1305": "^1.8.0",
    "@hpke/common": "^1.10.0",
    "@hpke/core": "^1.9.0",
    "@hpke/dhkem-x25519": "^1.8.0",
    "@hpke/dhkem-x448": "^1.8.0"
  },
  "devDependencies": {
    "@types/node": "^20.9.0",
    "@deno/shim-deno": "~0.18.0",
    "picocolors": "^1.0.0"
  },
  "_generatedBy": "dnt@dev"
}