{
  "name": "react-use-clipboard",
  "description": "React hook that provides copy to clipboard functionality.",
  "version": "1.0.9",
  "author": "Daniel O'Connor <daniel@danoc.me>",
  "license": "MIT",
  "source": "./src/index.tsx",
  "main": "./dist/react-use-clipboard.js",
  "module": "./dist/react-use-clipboard.module.js",
  "unpkg": "./dist/react-use-clipboard.umd.js",
  "types": "./dist/index.d.ts",
  "files": [
    "dist"
  ],
  "scripts": {
    "test": "yarn test:tslint && yarn test:jest && yarn test:prettier",
    "test:tslint": "tslint -c tslint.json --project tsconfig.json '**/*.{ts,tsx,js,jsx}'",
    "test:jest": "jest --coverage",
    "test:prettier": "prettier \"**/*.{ts,tsx,js,jsx,css,scss,json,md,mdx,html}\" --list-different",
    "format": "prettier \"**/*.{ts,tsx,js,jsx,css,scss,json,md,mdx,html}\" --write",
    "build": "yarn microbundle",
    "release": "rm -rf dist && yarn install --frozen-lockfile && yarn test && yarn build && yarn changeset publish"
  },
  "dependencies": {
    "copy-to-clipboard": "^3.3.1"
  },
  "devDependencies": {
    "@babel/preset-typescript": "^7.12.7",
    "@changesets/cli": "^2.12.0",
    "@testing-library/react": "^11.1.0",
    "@types/jest": "^26.0.15",
    "@types/react": "^16.9.55",
    "@types/react-dom": "^16.9.9",
    "jest": "^26.6.1",
    "microbundle": "0.12.4",
    "prettier": "^2.2.1",
    "react": "^17.0.1",
    "react-dom": "^17.0.1",
    "tslint": "^6.1.3",
    "tslint-config-prettier": "^1.18.0",
    "tslint-react": "^5.0.0",
    "tslint-react-hooks": "^2.2.2"
  },
  "peerDependencies": {
    "react": "^16.8.0 || ^17 || ^18",
    "react-dom": "^16.8.0 || ^17 || ^18"
  },
  "publishConfig": {
    "access": "public"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/danoc/react-use-clipboard.git"
  },
  "bugs": {
    "url": "https://github.com/danoc/react-use-clipboard/issues"
  },
  "keywords": [
    "react",
    "component",
    "clipboard",
    "hooks"
  ],
  "homepage": "https://github.com/danoc/react-use-clipboard#readme"
}
