{
  "name": "fetchdts",
  "type": "module",
  "version": "0.1.7",
  "description": "A suite of type utilities for building strongly-typed APIs",
  "author": {
    "name": "Daniel Roe",
    "email": "daniel@roe.dev",
    "url": "https://roe.dev"
  },
  "license": "MIT",
  "repository": "unjs/fetchdts",
  "sideEffects": false,
  "exports": {
    ".": "./dist/index.mjs"
  },
  "main": "./dist/index.mjs",
  "module": "./dist/index.mjs",
  "types": "./dist/index.d.mts",
  "files": [
    "dist"
  ],
  "devDependencies": {
    "@antfu/eslint-config": "5.2.1",
    "@types/node": "latest",
    "@vitest/coverage-v8": "3.2.4",
    "bumpp": "10.2.3",
    "changelogithub": "13.16.0",
    "eslint": "9.34.0",
    "installed-check": "9.3.0",
    "knip": "5.63.0",
    "lint-staged": "16.1.6",
    "simple-git-hooks": "2.13.1",
    "typescript": "5.9.2",
    "unbuild": "3.6.1",
    "vitest": "3.2.4"
  },
  "resolutions": {
    "fetchdts": "link:."
  },
  "simple-git-hooks": {
    "pre-commit": "npx lint-staged"
  },
  "lint-staged": {
    "*.{js,ts,mjs,cjs,json,.*rc}": [
      "npx eslint --fix"
    ]
  },
  "scripts": {
    "build": "unbuild",
    "dev": "vitest dev",
    "lint": "eslint .",
    "release": "bumpp && pnpm publish",
    "test": "pnpm test:unit && pnpm test:types",
    "test:unit": "vitest --typecheck",
    "test:knip": "knip",
    "test:versions": "installed-check -d --no-workspaces",
    "test:types": "tsc --noEmit"
  }
}