{
  "name": "vue3-lazyload",
  "version": "0.4.2",
  "description": "A Vue 3 image lazyload plugin",
  "author": "木荣 <admin@imuboy.cn>",
  "license": "MIT",
  "homepage": "https://github.com/murongg/vue3-lazyload#readme",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/murongg/vue3-lazyload.git"
  },
  "bugs": {
    "url": "https://github.com/murongg/vue3-lazyload/issues"
  },
  "sideEffects": false,
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "require": "./dist/index.cjs",
      "import": "./dist/index.mjs"
    }
  },
  "main": "./dist/index.cjs",
  "module": "./dist/index.mjs",
  "unpkg": "./dist/index.iife.js",
  "jsdelivr": "./dist/index.iife.js",
  "types": "./dist/index.d.ts",
  "files": [
    "dist"
  ],
  "peerDependencies": {
    "vue": "^3.4.0 || ^3.5.0"
  },
  "devDependencies": {
    "@murongg/eslint-config": "^0.2.1",
    "@types/node": "^25.6.0",
    "@vitejs/plugin-vue": "^6.0.5",
    "@vue/test-utils": "^2.4.6",
    "bumpp": "^11.0.1",
    "eslint": "^8.57.1",
    "happy-dom": "^20.8.9",
    "husky": "^9.1.7",
    "lint-staged": "^16.4.0",
    "prettier": "^3.8.2",
    "rimraf": "^6.1.3",
    "typescript": "^5.9.3",
    "vite": "^8.0.8",
    "vite-plugin-dts": "^4.5.4",
    "vitest": "^4.1.4",
    "vue": "^3.5.32"
  },
  "lint-staged": {
    "*": "pnpm run lint:fix"
  },
  "scripts": {
    "build": "rimraf dist && vite build --mode lib",
    "demo:build": "vite build",
    "demo:dev": "vite",
    "lint": "eslint .",
    "lint:fix": "eslint . --fix",
    "release": "bumpp --commit --push --tag && pnpm publish",
    "test": "vitest run",
    "test:watch": "vitest",
    "typecheck": "tsc --noEmit"
  }
}