{
  "name": "@yeger/debounce",
  "type": "module",
  "version": "2.0.17",
  "description": "A tiny TypeScript library for debouncing functions.",
  "author": {
    "name": "Jan Müller",
    "url": "https://github.com/DerYeger"
  },
  "license": "MIT",
  "homepage": "https://github.com/DerYeger/yeger/tree/main/packages/debounce",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/DerYeger/yeger.git",
    "directory": "packages/debounce"
  },
  "bugs": {
    "url": "https://github.com/DerYeger/yeger/issues"
  },
  "keywords": [
    "debounce",
    "typescript",
    "library"
  ],
  "sideEffects": false,
  "exports": {
    ".": {
      "import": {
        "types": "./dist/index.d.mts",
        "default": "./dist/index.mjs"
      }
    }
  },
  "types": "dist/index.d.mts",
  "files": [
    "default.css",
    "dist"
  ],
  "devDependencies": {
    "@vitest/coverage-v8": "4.0.8",
    "@vitest/ui": "4.0.8",
    "publint": "0.3.15",
    "tsdown": "0.16.1",
    "typescript": "5.9.3",
    "vitest": "4.0.8",
    "@yeger/tsconfig": "2.1.2",
    "@yeger/vitest-utils": "1.1.0"
  },
  "publishConfig": {
    "access": "public"
  },
  "scripts": {
    "build": "tsdown",
    "check:publish": "publint run --strict",
    "check:tsc": "tsc",
    "dev": "tsdown --watch",
    "lint": "yeger-lint",
    "test": "vitest"
  }
}