{
  "name": "@nex-ui/hooks",
  "version": "0.0.9",
  "private": false,
  "description": "A collection of React Hooks for Nex UI components.",
  "author": "X1ng Yu",
  "keywords": [
    "react",
    "react-component",
    "nui",
    "nex-ui",
    "hooks"
  ],
  "files": [
    "dist"
  ],
  "repository": {
    "type": "git",
    "url": "https://github.com/rxy001/nex-ui.git",
    "directory": "packages/hooks"
  },
  "license": "MIT",
  "type": "module",
  "main": "dist/cjs/index.cjs",
  "module": "dist/esm/index.mjs",
  "types": "dist/types/index.d.ts",
  "exports": {
    ".": {
      "source": "./src/index.ts",
      "import": {
        "types": "./dist/types/index.d.ts",
        "default": "./dist/esm/index.mjs"
      },
      "require": {
        "types": "./dist/types/index.d.ts",
        "default": "./dist/cjs/index.cjs"
      }
    },
    "./package.json": "./package.json"
  },
  "dependencies": {
    "@nex-ui/utils": "0.0.9"
  },
  "peerDependencies": {
    "react": ">=19",
    "react-dom": ">=19"
  },
  "sideEffects": false,
  "scripts": {
    "build": "tsx ../../scripts/build.ts --dts",
    "build:fast": "tsx ../../scripts/build.ts",
    "typecheck": "tsc --noEmit"
  }
}