{
  "name": "@winput/mouse",
  "version": "1.0.11",
  "description": "Windows mouse automation for Bun - simulate clicks, movements, and listen to mouse events",
  "type": "module",
  "main": "./dist/index.js",
  "types": "./dist/index.d.ts",
  "exports": {
    ".": {
      "bun": "./src/index.ts",
      "import": "./dist/index.js",
      "types": "./dist/index.d.ts"
    }
  },
  "files": [
    "dist",
    "src"
  ],
  "scripts": {
    "build": "bun build src/index.ts --outdir=dist --target=bun --format=esm --minify && bunx tsc --emitDeclarationOnly --outDir dist",
    "clean": "rm -rf dist"
  },
  "keywords": [
    "bun",
    "windows",
    "mouse",
    "automation",
    "input",
    "click"
  ],
  "author": "handy-z",
  "license": "MIT",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/handy-z/winput.git",
    "directory": "packages/mouse"
  },
  "engines": {
    "bun": ">=1.0.0"
  },
  "os": [
    "win32"
  ],
  "peerDependencies": {
    "typescript": "^5.0.0"
  }
}
