{
  "name": "@httpc/client",
  "description": "httpc client for building function-based API with minimal code and end-to-end type safety",
  "version": "0.1.0",
  "author": {
    "name": "Giuseppe La Torre",
    "url": "https://github.com/giuseppelt"
  },
  "license": "MIT",
  "module": "./dist/esm/index.js",
  "main": "./dist/cjs/index.js",
  "sideEffects": false,
  "files": [
    "dist",
    "README.md",
    "package.json"
  ],
  "homepage": "https://httpc.dev",
  "repository": {
    "type": "git",
    "url": "https://github.com/giuseppelt/httpc.git",
    "directory": "packages/client"
  },
  "bugs": "https://github.com/giuseppelt/httpc/issues",
  "keywords": [
    "httpc",
    "api",
    "rpc",
    "rpc-api",
    "json",
    "json-api",
    "typescript",
    "javascript",
    "client-generation"
  ],
  "devDependencies": {
    "@types/node": "^16.18.11",
    "@types/node-fetch": "^2.6.2",
    "rimraf": "^3.0.2",
    "typescript": "^4.9.4"
  },
  "scripts": {
    "build": "rimraf dist && tsc -p tsconfig.build.json --module commonjs --outDir ./dist/cjs && tsc -p tsconfig.build.json --module es2020 --outDir ./dist/esm"
  }
}