{
  "name": "vue-debounce",
  "version": "5.0.1",
  "description": "A simple vue directive for debounce",
  "module": "src/index.js",
  "main": "src/index.js",
  "types": "types/index.d.ts",
  "type": "module",
  "unpkg": "dist/vueDebounce.min.js",
  "jsdelivr": "dist/vueDebounce.min.js",
  "scripts": {
    "test": "tape tests/test.js | tap-on",
    "prepack": "npm run lint && npm run build",
    "build": "rollup -c",
    "watch": "rollup -c -w",
    "lint": "standard src/*.js",
    "lint:fix": "standard --fix src/*.js"
  },
  "standard": {
    "ignore": [
      "dist/*",
      "types/*"
    ]
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/dhershman1/vue-debounce.git"
  },
  "keywords": [
    "vue",
    "vue3",
    "debounce",
    "directive",
    "simple",
    "v-debounce",
    "events"
  ],
  "author": "Dustin Hershman <dustinh17@gmail.com>",
  "contributors": [
    "Tommy May III <tommymay37@gmail.com>"
  ],
  "license": "MIT",
  "bugs": {
    "url": "https://github.com/dhershman1/vue-debounce/issues"
  },
  "homepage": "https://github.com/dhershman1/vue-debounce#readme",
  "devDependencies": {
    "@babel/core": "7.23.5",
    "@babel/preset-env": "7.23.5",
    "@rollup/plugin-babel": "6.0.4",
    "@rollup/plugin-terser": "0.4.4",
    "rollup": "^4.6.1",
    "rollup-plugin-filesize": "9.1.2",
    "standard": "^17.1.0",
    "tap-on": "0.3.1",
    "tape": "^5.7.2"
  },
  "peerDependencies": {
    "vue": ">= 3.0.0"
  }
}
