{
  "name": "@tuentyfaiv/http",
  "description": "Library for http requests based on fetch",
  "version": "0.1.15",
  "type": "module",
  "main": "./dist/index.js",
  "types": "./dist/index.d.ts",
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "default": "./dist/index.js"
    }
  },
  "author": "Tonalli López <contact@tuentyfaiv.com>",
  "license": "MIT",
  "files": [
    "dist",
    "LICENSE",
    "README.md"
  ],
  "devDependencies": {
    "@rollup/plugin-commonjs": "^28.0.3",
    "@rollup/plugin-node-resolve": "^16.0.0",
    "@rollup/plugin-terser": "^0.4.4",
    "@rollup/plugin-typescript": "^12.1.2",
    "oxlint": "^0.15.14",
    "rimraf": "^6.0.1",
    "rollup": "^4.0.2",
    "rollup-plugin-visualizer": "^5.9.2",
    "tslib": "^2.6.2",
    "typescript": "^5.2.2",
    "vite": "^6.2.1"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/TuentyFaiv/http.git"
  },
  "keywords": [
    "Http",
    "Library",
    "TypeScript"
  ],
  "bugs": {
    "url": "https://github.com/TuentyFaiv/http/issues"
  },
  "homepage": "https://github.com/TuentyFaiv/http#readme",
  "scripts": {
    "clean": "rimraf ./dist",
    "visualizer": "pnpm clean && rollup --config rollup.config.visualizer.js --environment NODE_ENV:production",
    "build": "pnpm clean && rollup -c --environment NODE_ENV:production",
    "dev": "pnpm clean && rollup -c -w",
    "preview": "vite dev",
    "lint:help": "oxlint -c ./oxlintrc.json --help",
    "lint:rules": "oxlint -c ./oxlintrc.json --rules",
    "lint:fix": "oxlint -c ./oxlintrc.json --fix",
    "lint": "oxlint -c ./oxlintrc.json"
  }
}