{
  "name": "dpop",
  "version": "2.1.2",
  "description": "DPoP (RFC9449) for JavaScript Runtimes",
  "keywords": [
    "dpop",
    "rfc9449"
  ],
  "homepage": "https://github.com/panva/dpop",
  "repository": "panva/dpop",
  "funding": {
    "url": "https://github.com/sponsors/panva"
  },
  "license": "MIT",
  "author": "Filip Skokan <panva.ip@gmail.com>",
  "sideEffects": false,
  "type": "module",
  "exports": {
    ".": {
      "types": "./build/index.d.ts",
      "default": "./build/index.js"
    },
    "./package.json": "./package.json"
  },
  "main": "./build/index.js",
  "types": "./build/index.d.ts",
  "files": [
    "build/index.js",
    "build/index.js.map",
    "build/index.d.ts"
  ],
  "scripts": {
    "_format": "find src test -type f \\( -name '*.ts' -o -name '*.js' \\) | xargs prettier",
    "build": "rm -rf build && tsc --sourceMap && tsc --declaration true --emitDeclarationOnly true --removeComments false",
    "docs": "npx patch-package && typedoc",
    "format": "npm run _format -- --write",
    "format-check": "npm run _format -- --check",
    "test": "npm run build && node --test test/*.test.js"
  },
  "devDependencies": {
    "fast-check": "^4.9.0",
    "patch-package": "^8.0.1",
    "prettier": "^3.5.3",
    "prettier-plugin-jsdoc": "^1.3.2",
    "typedoc": "0.27.9",
    "typedoc-plugin-markdown": "4.3.1",
    "typedoc-plugin-mdn-links": "4.0.3",
    "typescript": "5.8.3"
  }
}
