{
  "name": "micro-key-producer",
  "version": "0.10.2",
  "description": "Produces secure passwords & keys for WebCrypto, SSH, PGP, SLIP10, OTP and many others",
  "files": [
    "*.js",
    "*.d.ts",
    "bin/gpgkp.js",
    "bin/aesscr.js",
    "src"
  ],
  "bin": {
    "gpgkp": "bin/gpgkp.js",
    "aesscr": "bin/aesscr.js"
  },
  "dependencies": {
    "@noble/ciphers": "2.4.0",
    "@noble/curves": "2.4.0",
    "@noble/hashes": "2.4.0",
    "@scure/base": "2.4.0",
    "micro-packed": "0.11.1"
  },
  "devDependencies": {
    "@paulmillr/jsbt": "0.7.1",
    "bismar": "0.1.8",
    "@types/node": "26.3.0",
    "prettier": "3.9.6",
    "typescript": "6.0.3"
  },
  "scripts": {
    "benchmark": "node benchmark/index.ts",
    "benchmark:size": "bismar -bsm",
    "build": "tsc",
    "format": "prettier --write bin 'src/**/*.{js,ts}' 'test/*.ts'",
    "test": "node --no-warnings test/index.ts",
    "test:bun": "bun test/index.ts",
    "test:deno": "deno --allow-env --allow-read test/index.ts",
    "test:integration": "node test/integration.ts"
  },
  "exports": {
    ".": "./index.js",
    "./asn1.js": "./asn1.js",
    "./convert.js": "./convert.js",
    "./ipns.js": "./ipns.js",
    "./otp.js": "./otp.js",
    "./password.js": "./password.js",
    "./pgp.js": "./pgp.js",
    "./slip10.js": "./slip10.js",
    "./ssh.js": "./ssh.js",
    "./tor.js": "./tor.js",
    "./utils.js": "./utils.js",
    "./x509.js": "./x509.js"
  },
  "keywords": [
    "ed25519",
    "PGP",
    "GPG",
    "RFC 4880",
    "RFC 6637",
    "SSH",
    "TOR",
    "onion",
    "key generation",
    "ec",
    "elliptic",
    "x509"
  ],
  "funding": "https://paulmillr.com/funding/",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/paulmillr/micro-key-producer.git"
  },
  "type": "module",
  "main": "index.js",
  "module": "index.js",
  "types": "index.d.ts",
  "sideEffects": false,
  "author": "Paul Miller (https://paulmillr.com)",
  "license": "MIT"
}
