{
  "name": "@tanstack/hotkeys",
  "version": "0.8.0",
  "description": "Type-safe, framework-agnostic keyboard hotkey management for the browser",
  "author": "Tanner Linsley",
  "license": "MIT",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/TanStack/hotkeys.git",
    "directory": "packages/hotkeys"
  },
  "homepage": "https://tanstack.com/hotkeys",
  "funding": {
    "type": "github",
    "url": "https://github.com/sponsors/tannerlinsley"
  },
  "keywords": [
    "tanstack",
    "keys",
    "hotkeys",
    "keyboard",
    "shortcuts",
    "keybindings",
    "typescript"
  ],
  "type": "module",
  "main": "./dist/index.cjs",
  "module": "./dist/index.js",
  "types": "./dist/index.d.cts",
  "exports": {
    ".": {
      "import": "./dist/index.js",
      "require": "./dist/index.cjs"
    },
    "./package.json": "./package.json"
  },
  "sideEffects": false,
  "engines": {
    "node": ">=18"
  },
  "files": [
    "dist/",
    "src"
  ],
  "dependencies": {
    "@tanstack/store": "^0.11.0"
  },
  "scripts": {
    "clean": "premove ./build ./dist",
    "lint": "eslint ./src",
    "lint:fix": "eslint ./src --fix",
    "test:eslint": "eslint ./src",
    "test:lib": "vitest",
    "test:lib:dev": "pnpm test:lib --watch",
    "test:types": "tsc",
    "build": "tsdown"
  }
}