{
  "name": "@adamdehaven/vue-custom-tooltip",
  "version": "1.4.4",
  "description": "A customizable, reusable, and reactive tooltip component for Vue (and VuePress) projects.",
  "keywords": [
    "Vue",
    "tooltip",
    "component",
    "VuePress"
  ],
  "repository": {
    "type": "git",
    "url": "https://github.com/adamdehaven/vue-custom-tooltip.git"
  },
  "author": "Adam DeHaven <adam@dehaven.org> (https://www.adamdehaven.com/)",
  "license": "MIT",
  "bugs": {
    "url": "https://github.com/adamdehaven/vue-custom-tooltip/issues"
  },
  "scripts": {
    "build": "npm run prettier:fix && npm run delete:dist && npm run build:ssr & npm run build:es & npm run build:unpkg",
    "build:ssr": "rollup --config rollup.config.js --format cjs --file dist/vue-custom-tooltip.ssr.js",
    "build:es": "rollup --config rollup.config.js --format es --file dist/vue-custom-tooltip.esm.js",
    "build:unpkg": "rollup --config rollup.config.js --format iife --file dist/vue-custom-tooltip.min.js",
    "delete:dist": "del-cli ./dist/*",
    "version": "npm run build && git add -A",
    "postversion": "git push && git push --tags",
    "prettier": "prettier --check .",
    "prettier:fix": "prettier --write ."
  },
  "husky": {
    "hooks": {
      "pre-commit": "pretty-quick --staged"
    }
  },
  "main": "dist/vue-custom-tooltip.ssr.js",
  "browser": "dist/vue-custom-tooltip.esm.js",
  "module": "dist/vue-custom-tooltip.esm.js",
  "unpkg": "dist/vue-custom-tooltip.min.js",
  "files": [
    "dist/*",
    "src/**/*.vue"
  ],
  "dependencies": {
    "core-js": "^3.8.3",
    "vue": "^2.6.12"
  },
  "devDependencies": {
    "@vue/cli-plugin-babel": "^4.5.11",
    "@vue/cli-service": "^4.5.11",
    "del-cli": "^3.0.1",
    "husky": "4",
    "prettier": "^2.2.1",
    "pretty-quick": "^3.1.0",
    "rollup": "^2.38.5",
    "rollup-plugin-buble": "^0.19.8",
    "rollup-plugin-commonjs": "^10.1.0",
    "rollup-plugin-vue": "^6.0.0",
    "stylus": "^0.54.8",
    "stylus-loader": "^5.0.0",
    "vue-template-compiler": "^2.6.12"
  }
}
