{
    "name": "easy-ocsp",
    "version": "1.3.2",
    "description": "An easy-to-use OCSP client for Node.js",
    "main": "dist/index.js",
    "module": "dist/index.mjs",
    "types": "./dist/index.d.ts",
    "exports": {
        ".": {
            "import": "./dist/index.mjs",
            "require": "./dist/index.js"
        }
    },
    "scripts": {
        "test": "node --import tsx --test --test-concurrency 4 test/**/*.test.ts",
        "test:cov": "c8 -r lcov -r text --include src/**/*.ts node --import tsx --test --test-concurrency 4 test/**/*.test.ts",
        "lint": "oxlint --deny-warnings --type-aware",
        "format": "oxfmt --write .",
        "build": "tsup",
        "build:docs": "typedoc --skipErrorChecking",
        "check:types": "tsc --noEmit",
        "check:format": "oxfmt --check ."
    },
    "repository": {
        "type": "git",
        "url": "git+https://github.com/timokoessler/easy-ocsp.git"
    },
    "keywords": [
        "ocsp",
        "ocsp client",
        "X.509",
        "certificate"
    ],
    "engines": {
        "node": ">=18.13.0"
    },
    "author": "Timo Kössler",
    "license": "MIT",
    "bugs": {
        "url": "https://github.com/timokoessler/easy-ocsp/issues"
    },
    "homepage": "https://ocsp.tkoessler.de",
    "devDependencies": {
        "@types/node": "^24.12.4",
        "c8": "^11.0.0",
        "oxfmt": "^0.51.0",
        "oxlint": "^1.9.0",
        "oxlint-tsgolint": "^0.23.0",
        "tsup": "^8.0.1",
        "tsx": "^4.19.2",
        "typedoc": "^0.28.2",
        "typescript": "^5.9.3"
    },
    "dependencies": {
        "asn1js": "^3.0.5",
        "pkijs": "^3.2.4"
    }
}
