{
  "name": "vue3-lazy-hydration",
  "version": "1.2.1",
  "description": "Lazy Hydration for Vue 3 SSR",
  "keywords": [
    "vue",
    "vue3",
    "lazy",
    "hydration",
    "ssr"
  ],
  "author": "freddy38510 <freddyescobar@hotmail.fr>",
  "homepage": "https://github.com/freddy38510/vue3-lazy-hydration",
  "repository": {
    "type": "git",
    "url": "https://github.com/freddy38510/vue3-lazy-hydration"
  },
  "bugs": {
    "url": "https://github.com/freddy38510/vue3-lazy-hydration/issues"
  },
  "license": "MIT",
  "files": [
    "dist"
  ],
  "type": "module",
  "main": "./dist/vue3-lazy-hydration.cjs",
  "module": "./dist/esm/vue3-lazy-hydration.mjs",
  "exports": {
    ".": {
      "types": "./dist/vue3-lazy-hydration.d.ts",
      "import": "./dist/esm/vue3-lazy-hydration.mjs",
      "require": "./dist/vue3-lazy-hydration.cjs"
    }
  },
  "types": "./dist/vue3-lazy-hydration.d.ts",
  "engines": {
    "node": ">=14.6"
  },
  "sideEffects": false,
  "config": {
    "commitizen": {
      "path": "cz-conventional-changelog"
    }
  },
  "peerDependencies": {
    "vue": ">=3.0.0"
  },
  "devDependencies": {
    "@commitlint/cli": "17.1.2",
    "@commitlint/config-conventional": "17.1.0",
    "@microsoft/api-extractor": "7.31.2",
    "@rushstack/eslint-patch": "1.2.0",
    "@types/node": "18.7.18",
    "@vitejs/plugin-vue": "3.1.0",
    "@vitest/coverage-c8": "^0.23.4",
    "@vitest/ui": "0.23.4",
    "@vue/eslint-config-airbnb-with-typescript": "7.0.0",
    "@vue/server-renderer": "3.2.39",
    "@vue/test-utils": "2.0.2",
    "@vue/tsconfig": "0.1.3",
    "commitizen": "4.2.5",
    "cz-conventional-changelog": "3.3.0",
    "eslint": "8.23.1",
    "eslint-config-prettier": "8.5.0",
    "eslint-define-config": "1.7.0",
    "eslint-plugin-import": "2.26.0",
    "eslint-plugin-vitest-globals": "1.2.0",
    "eslint-plugin-vue": "9.5.1",
    "happy-dom": "6.0.4",
    "lint-staged": "13.0.3",
    "pnpm": "7.12.2",
    "prettier": "2.7.1",
    "rimraf": "3.0.2",
    "sass": "1.55.0",
    "simple-git-hooks": "2.8.0",
    "typescript": "4.8.3",
    "vite": "3.1.3",
    "vitest": "0.23.4",
    "vue": "3.2.39",
    "vue-router": "4.1.5"
  },
  "simple-git-hooks": {
    "pre-commit": "pnpm lint-staged --concurrent false",
    "prepare-commit-msg": "cat $1 | npx commitlint -q || (exec < /dev/tty && node_modules/.bin/cz --hook || true)",
    "commit-msg": "npx --no -- commitlint --edit $1"
  },
  "lint-staged": {
    "*": [
      "prettier --write --cache --ignore-unknown"
    ],
    "src/**/*.ts": [
      "eslint --cache --fix"
    ]
  },
  "packageManager": "pnpm@7.12.2",
  "scripts": {
    "build": "rimraf dist && vite build && pnpm build-temp-types ",
    "build-temp-types": "tsc --emitDeclarationOnly -p ./tsconfig.types.json && api-extractor run && rimraf temp",
    "dev": "rimraf dist && vite",
    "test:unit": "vitest",
    "coverage": "vitest run --coverage",
    "format": "prettier --write --cache .",
    "lint": "eslint --cache ."
  }
}