{
  "name": "vue-next-directive",
  "version": "1.0.1",
  "main": "lib/index.js",
  "module": "lib/index.js",
  "types": "lib/index.d.ts",
  "author": "lvzl <627417163@qq.com>",
  "scripts": {
    "dev": "vite",
    "build": "vue-tsc --noEmit && vite build",
    "build:dev": "vue-tsc --noEmit && vite build --mode development",
    "build:pro": "vue-tsc --noEmit && vite build --mode production",
    "preview": "vite preview",
    "lint": "eslint src --fix --ext .ts,.tsx,.vue,.js,.jsx",
    "prettier": "prettier --write ./src",
    "prepare": "husky install"
  },
  "files": [
    "/lib",
    "README.md",
    "README.en.md"
  ],
  "repository": {
    "type": "git",
    "url": "https://github.com/lv-z-l/vue-next-directives.git"
  },
  "keywords": [
    "vue3指令",
    "vue3自定义指令",
    "图片懒加载",
    "loading",
    "加载中",
    "lazy",
    "debounce",
    "input搜索防抖",
    "处理中文输入",
    "compositionstart",
    "compositionend",
    "loading directive",
    "lazy directive"
  ],
  "dependencies": {},
  "peerDependencies": {
    "vue": "^3.2.25"
  },
  "devDependencies": {
    "@types/node": "^17.0.42",
    "@types/nprogress": "^0.2.0",
    "@typescript-eslint/eslint-plugin": "^5.27.1",
    "@typescript-eslint/parser": "^5.27.1",
    "@vitejs/plugin-vue": "^2.3.3",
    "@vitejs/plugin-vue-jsx": "^1.3.10",
    "dart-sass": "^1.25.0",
    "eslint": "^8.17.0",
    "eslint-config-prettier": "^8.5.0",
    "eslint-plugin-prettier": "^4.0.0",
    "eslint-plugin-vue": "^9.1.1",
    "husky": "^8.0.1",
    "lint-staged": "^13.0.1",
    "mrm": "^4.0.0",
    "prettier": "^2.6.2",
    "sass": "^1.52.3",
    "typescript": "^4.5.4",
    "vite": "^2.9.9",
    "vite-plugin-compression": "^0.5.1",
    "vite-plugin-dts": "^1.2.0",
    "vue": "^3.2.25",
    "vue-tsc": "^0.34.7"
  },
  "husky": {
    "hooks": {
      "pre-commit": "lint-staged"
    }
  },
  "lint-staged": {
    "*.{js,jsx,vue,ts,tsx}": [
      "yarn prettier",
      "git add"
    ]
  }
}