{
  "name": "vue-picture-cropper",
  "version": "1.0.0",
  "description": "A simple and easy-to-use picture cropping component for Vue 3.",
  "author": "chengpeiquan <chengpeiquan@chengpeiquan.com>",
  "homepage": "https://cropper.chengpeiquan.com",
  "license": "MIT",
  "type": "module",
  "files": [
    "dist"
  ],
  "types": "./dist/index.d.mts",
  "exports": {
    ".": "./dist/index.mjs",
    "./package.json": "./package.json",
    "./style.css": "./dist/style.css"
  },
  "scripts": {
    "dev": "pnpm -F docs dev",
    "build": "run-s build:*",
    "build:lib": "tsdown",
    "build:docs": "pnpm -F docs build",
    "preview": "pnpm -F docs preview",
    "lint": "eslint src",
    "lint:docs": "eslint docs",
    "lint:inspector": "npx @eslint/config-inspector",
    "format": "prettier --write src",
    "prepare": "husky install"
  },
  "repository": {
    "type": "git",
    "url": "https://github.com/chengpeiquan/vue-picture-cropper"
  },
  "publishConfig": {
    "access": "public",
    "registry": "https://registry.npmjs.org/"
  },
  "keywords": [
    "picture cropper",
    "image cropper",
    "photo cropper",
    "vue3 cropper",
    "vue3 cropperjs"
  ],
  "devDependencies": {
    "@bassist/build-config": "^0.1.0",
    "@bassist/eslint-config": "^0.3.0",
    "@bassist/tsconfig": "^0.1.1",
    "@commitlint/cli": "^20.4.1",
    "@commitlint/config-conventional": "^20.4.1",
    "@types/node": "^25.2.3",
    "cropperjs": "^1.6.2",
    "eslint": "^9.39.2",
    "husky": "^9.1.7",
    "less": "^4.2.0",
    "lint-staged": "^16.2.7",
    "npm-run-all2": "^8.0.4",
    "prettier": "^3.8.1",
    "tsdown": "^0.20.3",
    "tsx": "^4.21.0",
    "typescript": "^5.9.3",
    "unplugin-vue": "^7.1.1",
    "vue": "catalog:",
    "vue-tsc": "^3.2.4"
  },
  "peerDependencies": {
    "cropperjs": "^1",
    "vue": ">=3.2.13"
  },
  "lint-staged": {
    "*.{js,jsx,vue,ts,tsx}": [
      "prettier --write src",
      "eslint --fix src"
    ]
  }
}