{
  "name": "@nextui-org/use-aria-link",
  "version": "2.2.5",
  "description": "Internal hook to handle link a11y and events, this is based on react-aria link hook but without the onClick warning",
  "keywords": [
    "use-aria-link"
  ],
  "author": "Junior Garcia <jrgarciadev@gmail.com>",
  "homepage": "https://nextui.org",
  "license": "MIT",
  "main": "dist/index.js",
  "sideEffects": false,
  "files": [
    "dist"
  ],
  "publishConfig": {
    "access": "public"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/nextui-org/nextui.git",
    "directory": "packages/hooks/use-aria-link"
  },
  "bugs": {
    "url": "https://github.com/nextui-org/nextui/issues"
  },
  "peerDependencies": {
    "react": ">=18 || >=19.0.0-rc.0"
  },
  "dependencies": {
    "@react-aria/focus": "3.19.0",
    "@react-aria/interactions": "3.22.5",
    "@react-aria/utils": "3.26.0",
    "@react-types/link": "3.5.9",
    "@react-types/shared": "3.26.0",
    "@nextui-org/shared-utils": "2.1.2"
  },
  "clean-package": "../../../clean-package.config.json",
  "tsup": {
    "clean": true,
    "target": "es2019",
    "format": [
      "cjs",
      "esm"
    ]
  },
  "module": "dist/index.mjs",
  "types": "dist/index.d.ts",
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "import": "./dist/index.mjs",
      "require": "./dist/index.js"
    },
    "./package.json": "./package.json"
  },
  "scripts": {
    "build": "tsup src --dts",
    "build:fast": "tsup src",
    "dev": "pnpm build:fast --watch",
    "clean": "rimraf dist .turbo",
    "typecheck": "tsc --noEmit"
  }
}