{
  "name": "@jscrypto/hkdf",
  "version": "0.2.0",
  "description": "RFC 5869 HKDF key derivation components for @jscrypto.",
  "main": "./dist/index.cjs",
  "module": "./dist/index.mjs",
  "types": "./dist/index.d.ts",
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "import": "./dist/index.mjs",
      "require": "./dist/index.cjs"
    },
    "./browser": "./dist/jscrypto-hkdf.iife.min.js",
    "./umd": "./dist/jscrypto-hkdf.umd.min.js"
  },
  "files": [
    "dist",
    "CHANGELOG.md",
    "README.md",
    "LICENSE"
  ],
  "scripts": {
    "build": "node scripts/build.mjs",
    "test": "npm run build && npm run test:dist",
    "test:dist": "node --test tests/*.test.mjs",
    "coverage": "npm run build && npm run coverage:dist",
    "coverage:dist": "c8 --check-coverage --statements 100 --branches 100 --functions 100 --lines 100 --reporter=text --reporter=html --reporter=lcov --include=dist/index.mjs node --test tests/*.test.mjs",
    "typecheck": "tsc -b --pretty false",
    "prepack": "npm run build"
  },
  "peerDependencies": {
    "@jscrypto/core": ">=0.7.0 <1"
  },
  "devDependencies": {
    "@jscrypto/classic": "^0.7.0",
    "@jscrypto/core": "^0.7.0",
    "@rollup/plugin-commonjs": "^29.0.3",
    "@rollup/plugin-node-resolve": "^16.0.3",
    "@rollup/plugin-terser": "^1.0.0",
    "c8": "^11.0.0",
    "rollup": "^4.62.2",
    "typescript": "^5.8.3"
  },
  "keywords": [
    "hkdf",
    "kdf",
    "rfc5869",
    "key-derivation",
    "cryptography",
    "jscrypto"
  ],
  "repository": {
    "type": "git",
    "url": "git+https://github.com/emn178/jscrypto-hkdf.git"
  },
  "bugs": {
    "url": "https://github.com/emn178/jscrypto-hkdf/issues"
  },
  "homepage": "https://github.com/emn178/jscrypto-hkdf#readme",
  "author": "Chen, Yi-Cyuan <emn178@gmail.com>",
  "publishConfig": {
    "access": "public"
  },
  "sideEffects": false,
  "license": "MIT"
}
