{
  "name": "@pikku/fetch",
  "version": "0.12.12",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/pikkujs/pikku.git",
    "directory": "packages/client-fetch"
  },
  "description": "Type-safe fetch client for Pikku, generated from your HTTP wirings",
  "author": "yasser.fadl@gmail.com",
  "license": "MIT",
  "type": "module",
  "main": "dist/cjs/index.js",
  "module": "dist/esm/index.js",
  "exports": {
    ".": {
      "import": "./dist/esm/index.js",
      "require": "./dist/cjs/index.js"
    }
  },
  "scripts": {
    "tsc": "tsc",
    "build:esm": "tsc -b && echo '{\"type\": \"module\"}' > dist/esm/package.json",
    "build:cjs": "tsc6 -b tsconfig.cjs.json && echo '{\"type\": \"commonjs\"}' > dist/cjs/package.json",
    "build": "bun run build:esm && bun run build:cjs",
    "ncu": "npx npm-check-updates -x '/.*glob.*/'",
    "release": "bun run build && npm test",
    "test": "bash run-tests.sh",
    "test:watch": "bash run-tests.sh --watch",
    "test:coverage": "bash run-tests.sh --coverage",
    "prepublishOnly": "bun run build"
  },
  "engines": {
    "node": ">=24"
  }
}
