{
  "name": "@availity/link",
  "version": "3.0.1",
  "description": "React component that renders an a tag with the `href` formatted to leverage loadApp",
  "keywords": [
    "react",
    "availity",
    "link"
  ],
  "homepage": "https://availity.github.io/availity-react/components/link",
  "bugs": {
    "url": "https://github.com/Availity/availity-react/issues"
  },
  "repository": {
    "type": "git",
    "url": "https://github.com/Availity/availity-react.git",
    "directory": "packages/link"
  },
  "license": "MIT",
  "type": "module",
  "author": "Tyson Warner <tyson.warner@availity.com>",
  "scripts": {
    "build": "tsup index.js --format esm --clean --dts",
    "dev": "tsup index.js --format esm --watch --dts",
    "clean": "rm -rf dist",
    "publish": "yarn npm publish --tolerate-republish --access public",
    "publish:canary": "yarn npm publish --access public --tag canary"
  },
  "dependencies": {
    "@availity/resolve-url": "^5.2.0",
    "classnames": "^2.5.1",
    "prop-types": "^15.8.1"
  },
  "devDependencies": {
    "react": "^18.3.1",
    "react-dom": "^18.3.1",
    "tsup": "^8.5.1"
  },
  "peerDependencies": {
    "react": "^18.0.0"
  },
  "publishConfig": {
    "access": "public"
  },
  "main": "./dist/index.js",
  "exports": {
    ".": {
      "source": "./index.js",
      "types": "./index.d.ts",
      "import": "./dist/index.js"
    },
    "./package.json": "./package.json"
  }
}