{
  "type": "module",
  "name": "@hazae41/x509",
  "version": "1.2.14",
  "description": "Zero-copy X.509 certificates in pure modern TypeScript",
  "homepage": "https://github.com/hazae41/x509",
  "repository": "github:hazae41/x509",
  "author": "hazae41",
  "license": "MIT",
  "main": "./dist/cjs/src/index.cjs",
  "module": "./dist/esm/src/index.mjs",
  "types": "./dist/types/index.d.ts",
  "sideEffects": false,
  "files": [
    "./dist/esm",
    "./dist/cjs",
    "./dist/types"
  ],
  "scripts": {
    "build": "rimraf dist && rollup -c",
    "test": "node ./dist/test/index.test.mjs"
  },
  "dependencies": {
    "@hazae41/asn1": "^1.3.35",
    "@hazae41/base16": "^2.0.2",
    "@hazae41/base64": "^2.0.2",
    "@hazae41/binary": "^1.3.11"
  },
  "devDependencies": {
    "@hazae41/phobos": "^1.0.10",
    "@hazae41/rimraf": "^1.0.1",
    "@rollup/plugin-typescript": "^12.1.4",
    "@types/node": "^24.3.0",
    "rollup": "^4.46.2",
    "rollup-plugin-dts": "^6.2.1",
    "rollup-plugin-node-externals": "^8.0.1",
    "tslib": "^2.8.1",
    "typescript": "^5.9.2"
  },
  "exports": {
    ".": {
      "types": "./dist/types/index.d.ts",
      "import": "./dist/esm/src/index.mjs",
      "require": "./dist/cjs/src/index.cjs"
    }
  },
  "keywords": [
    "x509",
    "pem",
    "certificates",
    "encoding",
    "decoding",
    "buffer",
    "bytes",
    "packets",
    "stream",
    "encoder",
    "decoder",
    "parsing",
    "parser",
    "asn1",
    "der",
    "ber",
    "typescript",
    "esmodules",
    "tested",
    "unit-tested"
  ]
}
