vue-directional-carousel
Version:
This is a Vue 3 component that allows you to set the direction of image movement not only vertically and horizontally but also in different directions (left, right, up, down).
72 lines (71 loc) • 2 kB
JSON
{
"peerDependencies": {
"vue": "^3.3.4"
},
"private": false,
"name": "vue-directional-carousel",
"version": "0.2.0",
"description": "This is a Vue 3 component that allows you to set the direction of image movement not only vertically and horizontally but also in different directions (left, right, up, down).",
"keywords": [
"vue",
"carousel",
"vertical",
"vertically",
"horizontally",
"directional",
"slide",
"vue3"
],
"bugs": {
"email": "codemakim@gmail.com"
},
"type": "module",
"exports": {
".": {
"import": "./dist/vue-directional-carousel.js",
"require": "./dist/vue-directional-carousel.umd.js",
"types": "./dist/index.d.ts"
}
},
"license": "MIT",
"author": {
"name": "jhkim"
},
"dependencies": {
"vue": "^3.5.11"
},
"devDependencies": {
"@babel/types": "^7.25.7",
"@rushstack/eslint-patch": "^1.10.4",
"@tsconfig/node18": "^18.2.4",
"@types/node": "^18.19.54",
"@vitejs/plugin-vue": "^5.1.4",
"@vue/eslint-config-prettier": "^8.0.0",
"@vue/eslint-config-typescript": "^11.0.3",
"@vue/test-utils": "^2.4.6",
"@vue/tsconfig": "^0.5.1",
"eslint": "^8.57.1",
"eslint-plugin-vue": "^9.28.0",
"jsdom": "^25.0.1",
"npm-run-all": "^4.1.5",
"prettier": "^3.3.3",
"typescript": "^5.6.2",
"vite": "^5.4.8",
"vite-plugin-dts": "^4.2.3",
"vite-plugin-vue-images": "^0.6.1",
"vitest": "^2.1.2",
"vue-tsc": "^2.1.6"
},
"scripts": {
"build": "vite build && vue-tsc --emitDeclarationOnly",
"build-only": "vite build",
"dev": "vite",
"format": "prettier --write src/",
"lint": "eslint . --ext .vue,.js,.jsx,.cjs,.mjs,.ts,.tsx,.cts,.mts --fix --ignore-path .gitignore",
"preview": "vite preview",
"type-check": "vue-tsc --noEmit -p tsconfig.app.json --composite false",
"prepack": "cp package.json dist/package.json",
"pack": "npm run prepack && npm pack",
"test": "vitest"
}
}