{
    "name": "@ebec/http",
    "version": "4.2.0",
    "type": "module",
    "description": "43 pre-built HTTP error classes (4xx/5xx) with status codes, status messages, and duck-typed type guards.",
    "files": [
        "dist/"
    ],
    "author": {
        "name": "Peter Placzek",
        "email": "contact@tada5hi.net",
        "url": "https://github.com/tada5hi"
    },
    "license": "MIT",
    "keywords": [
        "error",
        "typescript",
        "error-handling",
        "http",
        "http-error",
        "status-code",
        "type-guard",
        "exception",
        "4xx",
        "5xx"
    ],
    "repository": {
        "type": "git",
        "url": "git+https://github.com/Tada5hi/ebec.git"
    },
    "bugs": {
        "url": "https://github.com/Tada5hi/ebec/issues"
    },
    "homepage": "https://github.com/Tada5hi/ebec#readme",
    "exports": {
        "./package.json": "./package.json",
        ".": {
            "types": "./dist/index.d.mts",
            "import": "./dist/index.mjs",
            "require": "./dist/index.cjs"
        },
        "./core": {
            "types": "./dist/core/index.d.mts",
            "import": "./dist/core/index.mjs",
            "require": "./dist/core/index.cjs"
        }
    },
    "main": "./dist/index.cjs",
    "module": "./dist/index.mjs",
    "types": "./dist/index.d.mts",
    "scripts": {
        "build:classes": "node ./build/index.mjs generate",
        "build": "npm run build:classes && npm run build:js && npm run build:types",
        "build:js": "tsdown",
        "build:types": "tsc -p tsconfig.build.json",
        "test": "vitest run --config ./test/vitest.config.ts",
        "test:coverage": "vitest run --config ./test/vitest.config.ts --coverage"
    },
    "devDependencies": {
        "@types/mustache": "^4.2.6",
        "mustache": "^4.2.0"
    },
    "dependencies": {
        "@ebec/core": "^1.2.0"
    },
    "publishConfig": {
        "access": "public"
    }
}
