{
  "name": "enlarger",
  "version": "1.9.0",
  "description": "A image enlarger library for web app.",
  "author": {
    "name": "elenh"
  },
  "license": "MIT",
  "keywords": [
    "image",
    "magnifier"
  ],
  "type": "module",
  "main": "./lib/enlarger.cjs",
  "module": "./lib/enlarger.js",
  "types": "./lib/index.d.ts",
  "exports": {
    ".": {
      "types": "./lib/index.d.ts",
      "require": "./lib/enlarger.cjs",
      "import": "./lib/enlarger.js"
    },
    "./lib/style.css": "./lib/style.css"
  },
  "files": [
    "lib"
  ],
  "repository": {
    "url": "https://github.com/vcjs-dev/enlarger"
  },
  "homepage": "https://github.com/vcjs-dev/enlarger",
  "scripts": {
    "dev": "vite",
    "build": "run-p type-check build-only",
    "preview": "vite preview",
    "test:unit": "vitest",
    "build-only": "vite build",
    "type-check": "vue-tsc --noEmit -p tsconfig.vitest.json --composite false",
    "lint": "eslint . --ext .vue,.js,.jsx,.cjs,.mjs,.ts,.tsx,.cts,.mts --fix --ignore-path .gitignore",
    "format": "prettier --write src/",
    "release:no-build": "changelogen --release && npm publish --access=public && git push --follow-tags",
    "release": "npm run build:lib && npm run build:type && npm run release:no-build",
    "build:app": "cross-env BUILD_TYPE=app vite build",
    "build:lib": "cross-env BUILD_TYPE=lib vite build",
    "build:type": "rollup -c rollup.dts.config.js"
  },
  "devDependencies": {
    "@rushstack/eslint-patch": "^1.6.1",
    "@tsconfig/node18": "^18.2.2",
    "@types/jsdom": "^21.1.6",
    "@types/node": "^20.10.6",
    "@vitejs/plugin-vue": "^5.0.2",
    "@vue/eslint-config-prettier": "^9.0.0",
    "@vue/eslint-config-typescript": "^12.0.0",
    "@vue/test-utils": "^2.4.3",
    "@vue/tsconfig": "^0.5.1",
    "changelogen": "^0.5.5",
    "cross-env": "^7.0.3",
    "cz-conventional-changelog": "^3.3.0",
    "eslint": "^8.56.0",
    "eslint-plugin-vue": "^9.19.2",
    "jsdom": "^23.0.1",
    "npm-run-all": "^4.1.5",
    "pinia": "^2.1.7",
    "prettier": "^3.1.1",
    "rollup": "^4.9.2",
    "rollup-plugin-dts": "^6.1.0",
    "sass": "^1.69.6",
    "typescript": "~5.3.3",
    "vite": "^5.0.10",
    "vitest": "^1.1.1",
    "vue": "^3.4.3",
    "vue-router": "^4.2.5",
    "vue-tsc": "^1.8.27"
  },
  "dependencies": {
    "fourdom": "^1.3.0"
  }
}