{
  "name": "@yeger/debounce",
  "type": "module",
  "version": "2.0.11",
  "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",
  "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/types/index.d.mts",
        "default": "./dist/index.mjs"
      }
    }
  },
  "types": "dist/types/index.d.mts",
  "files": [
    "default.css",
    "dist"
  ],
  "devDependencies": {
    "typescript": "5.7.3",
    "vite": "6.0.7",
    "@yeger/tsconfig": "2.0.9",
    "vite-plugin-lib": "2.1.4"
  },
  "publishConfig": {
    "access": "public"
  },
  "scripts": {
    "build": "vite build",
    "check:publish": "publint run --strict",
    "check:tsc": "tsc",
    "dev": "vite build --watch",
    "lint": "yeger-lint",
    "test": "vitest"
  }
}