{
  "name": "v-slick-carousel",
  "version": "0.7.1",
  "description": "Vue Slick Carousel for Vue 3",
  "main": "dist/index.cjs.js",
  "module": "dist/index.es.mjs",
  "umd:main": "dist/index.umd.js",
  "unpkg": "dist/index.umd.js",
  "jsdelivr": "dist/index.umd.js",
  "jsnext:main": "dist/index.es.mjs",
  "source": "lib/index.ts",
  "types": "dist/index.d.ts",
  "files": [
    "dist"
  ],
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "import": "./dist/index.es.mjs",
      "require": "./dist/index.cjs.js"
    },
    "./style.css": {
      "import": "./dist/style.css",
      "require": "./dist/style.css"
    }
  },
  "lint-staged": {
    "*.{js,ts,vue}": [
      "eslint --quiet --cache --fix"
    ],
    "*.{json,js,ts,vue,html}": [
      "prettier --write"
    ]
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/ctfdavis/v-slick-carousel.git"
  },
  "keywords": [
    "vue",
    "vue-3",
    "slick",
    "carousel",
    "slider",
    "nuxt",
    "typescript"
  ],
  "author": "Davis Chan <davis.chan@aol.com> (https://github.com/ctfdavis)",
  "license": "MIT",
  "bugs": {
    "url": "https://github.com/ctfdavis/v-slick-carousel/issues"
  },
  "homepage": "https://github.com/ctfdavis/v-slick-carousel#readme",
  "peerDependencies": {
    "vue": "^3"
  },
  "devDependencies": {
    "@types/enquire.js": "^2.1.5",
    "@types/jest": "^29.5.12",
    "@types/json2mq": "^0.2.2",
    "@types/lodash.debounce": "^4.0.9",
    "@types/node": "^20.14.2",
    "@typescript-eslint/parser": "^7.13.0",
    "@vitejs/plugin-vue": "^5.0.5",
    "@vue/test-utils": "^2.4.6",
    "eslint": "^8.57.0",
    "eslint-config-prettier": "^9.1.0",
    "eslint-plugin-vue": "^9.26.0",
    "jest": "^29.7.0",
    "jsdom": "^24.1.1",
    "lint-staged": "^15.2.5",
    "rimraf": "^5.0.7",
    "sass": "^1.77.4",
    "ts-jest": "^29.1.4",
    "typescript": "^5.4.5",
    "vite": "^5.2.0",
    "vite-plugin-dts": "^3.9.1",
    "vite-plugin-eslint": "^1.8.1",
    "vitest": "^2.0.5",
    "vue": "3.5.12",
    "vue-tsc": "^2.0.6",
    "vue-v3.0": "npm:vue@3.0",
    "vue-v3.1": "npm:vue@3.1"
  },
  "scripts": {
    "dev": "vite",
    "build": "pnpm typecheck && vite build",
    "build:watch": "concurrently \"pnpm typecheck --watch\" \"vite build --watch\"",
    "clean": "rimraf dist",
    "typecheck": "vue-tsc --p ./tsconfig.build.json ",
    "prepublish": "npm run build",
    "lint": "eslint \"**/*.{js,ts,vue}\"",
    "lint:fix": "pnpm lint --fix",
    "lint-staged": "lint-staged",
    "format": "prettier --write \"**/*.{json,js,ts,vue,html,css,scss}\"",
    "test": "vitest"
  }
}