{
  "name": "react-ripples",
  "version": "2.2.1",
  "description": "The ripple effect. Ripples everywhere",
  "main": "cjs",
  "module": "esm",
  "typings": "cjs/index.d.ts",
  "keywords": [
    "react",
    "ripple",
    "ripples",
    "effect",
    "button",
    "material"
  ],
  "author": "Rocky Wu <rwu823@gmail.com>",
  "license": "MIT",
  "devDependencies": {
    "@mdx-js/react": "^1.3.1",
    "@next/mdx": "^9.0.4",
    "@ts-mono/base": "rwu823/ts-mono#base/latest",
    "@ts-mono/dev-react": "rwu823/ts-mono#dev-react",
    "next": "^9.0.4",
    "npm-run-all": "^4.1.5",
    "prop-types": "^15.7.2",
    "react": "^16.9.0",
    "styled-components": "^4.3.2"
  },
  "repository": "https://github.com/rwu823/react-ripples.git",
  "husky": {
    "hooks": {
      "pre-commit": "lint-staged"
    }
  },
  "scripts": {
    "transcrypt": "curl -s https://raw.githubusercontent.com/elasticdog/transcrypt/master/transcrypt | bash -s --",
    "dev": "next",
    "preview": "open gh-pages/index.html",
    "build:page": "rm -rf .next gh-pages && next build && next export -o gh-pages",
    "build:cjs": "tsc -b tsconfig.cjs.json",
    "build:esm": "tsc -b tsconfig.esm.json",
    "build": "rm -rf out && run-p build:* && node scripts/cp",
    "test": "jest --coverage",
    "precommit": "lint-staged"
  },
  "lint-staged": {
    "*.{ts,tsx,js}": [
      "eslint --fix"
    ]
  }
}