{
    "name": "@avidian/http",
    "version": "2.0.0",
    "description": "Just another http library.",
    "main": "./dist/cjs/index.js",
    "module": "./dist/esm/index.js",
    "unpkg": "./dist/umd/index.min.js",
    "types": "./dist/types/index.d.ts",
    "exports": {
        ".": {
            "types": "./dist/types/index.d.ts",
            "import": "./dist/esm/index.js",
            "require": "./dist/cjs/index.js"
        }
    },
    "sideEffects": false,
    "files": [
        "dist/**/*"
    ],
    "scripts": {
        "clean": "rimraf dist",
        "build:cjs": "tsc -p tsconfig.cjs.json",
        "build:esm": "tsc -p tsconfig.esm.json && node -e \"require('fs').writeFileSync('dist/esm/package.json', JSON.stringify({ type: 'module' }))\"",
        "build:umd": "rollup --config rollup.config.mjs",
        "build": "npm run clean && npm run build:cjs && npm run build:esm && npm run build:umd",
        "prepublishOnly": "npm run test && npm run build",
        "test": "jest"
    },
    "repository": {
        "type": "git",
        "url": "git+https://github.com/avidianity/http.git"
    },
    "keywords": [
        "HTTP"
    ],
    "author": "John Michael Manlupig",
    "license": "MIT",
    "bugs": {
        "url": "https://github.com/avidianity/http/issues"
    },
    "homepage": "https://github.com/avidianity/http#readme",
    "devDependencies": {
        "@rollup/plugin-node-resolve": "^16.0.1",
        "@rollup/plugin-terser": "^1.0.0",
        "@rollup/plugin-typescript": "^12.3.0",
        "@types/jest": "^30.0.0",
        "blob-polyfill": "^9.0.20240710",
        "formdata-polyfill": "^4.0.10",
        "jest": "^30.0.0",
        "jest-environment-jsdom": "^30.0.0",
        "jest-fetch-mock": "^3.0.3",
        "rimraf": "^6.0.1",
        "rollup": "^4.43.0",
        "ts-jest": "^29.4.0",
        "tslib": "^2.8.1",
        "typescript": "^5.8.3",
        "web-streams-polyfill": "^4.1.0"
    }
}
