vue-draggable-next
Version:
Vue 3 drag-and-drop component based on Sortable.js - Touch-friendly, lightweight, and TypeScript ready
126 lines (125 loc) • 3.55 kB
JSON
{
"name": "vue-draggable-next",
"version": "2.3.0",
"description": "Vue 3 drag-and-drop component based on Sortable.js - Touch-friendly, lightweight, and TypeScript ready",
"main": "dist/vue-draggable-next.cjs.js",
"unpkg": "dist/vue-draggable-next.global.js",
"jsdelivr": "dist/vue-draggable-next.global.js",
"module": "dist/vue-draggable-next.esm-bundler.js",
"types": "dist/vue-draggable-next.d.ts",
"sideEffects": false,
"author": {
"name": "Anish George",
"email": "anishgeorge2690@gmail.com"
},
"scripts": {
"build": "rollup -c rollup.config.js",
"build:dts": "api-extractor run --local --verbose",
"release": "bash scripts/release.sh",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s -r 1",
"size": "size-limit",
"lint": "prettier -c --parser typescript \"{src,__tests__,e2e}/**/*.[jt]s?(x)\"",
"lint:fix": "yarn run lint --write",
"test:types": "tsc --noEmit --skipLibCheck src/**/*.ts",
"test:unit": "jest --coverage",
"test": "yarn run test:unit && yarn run build && yarn run build:dts",
"playground:dev": "vite serve",
"playground:start": "vite serve --mode production",
"playground:build": "cross-env NODE_ENV=production vite build"
},
"files": [
"dist/*.js",
"dist/vue-draggable-next.d.ts",
"LICENSE",
"README.md"
],
"keywords": [
"vue",
"vue3",
"vue-next",
"draggable",
"drag-and-drop",
"sortable",
"sortablejs",
"vue-draggable",
"vue-draggable-next",
"dnd",
"reorder",
"kanban",
"typescript",
"composition-api",
"touch",
"mobile",
"javascript",
"component",
"ui"
],
"license": "MIT",
"devDependencies": {
"@microsoft/api-extractor": "7.18.4",
"@rollup/plugin-alias": "^3.1.5",
"@rollup/plugin-commonjs": "^20.0.0",
"@rollup/plugin-node-resolve": "^13.0.4",
"@rollup/plugin-replace": "^2.3.4",
"@size-limit/preset-small-lib": "^4.7.0",
"@tailwindcss/ui": "^0.7.2",
"@types/jest": "^26.0.15",
"@types/jsdom": "^16.2.5",
"@types/sortablejs": "^1.10.7",
"@vitejs/plugin-vue": "^1.4.0",
"@vue/compiler-sfc": "^3.5.17",
"@vue/test-utils": "^2.0.0-beta.8",
"@vue/vue3-jest": "^29.2.6",
"codecov": "^3.8.1",
"conventional-changelog-cli": "^2.1.1",
"cross-env": "^7.0.2",
"jest": "^29.7.0",
"jest-environment-jsdom": "^30.0.5",
"jsdom": "^26.1.0",
"lint-staged": "^10.5.1",
"pascalcase": "^1.0.0",
"prettier": "^2.1.2",
"rollup": "^2.56.2",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-typescript2": "^0.29.0",
"size-limit": "^4.7.0",
"sortablejs": "^1.14.0",
"tailwindcss": "^1.9.6",
"ts-jest": "^29.4.1",
"typescript": "^5.0.0",
"vite": "^2.4.1",
"vue": "^3.5.17",
"vue-router": "4",
"vuex": "^4.0.2",
"yorkie": "^2.0.0"
},
"gitHooks": {
"pre-commit": "lint-staged",
"commit-msg": "node scripts/verifyCommit.js"
},
"lint-staged": {
"*.js": [
"prettier --write"
],
"*.ts?(x)": [
"prettier --parser=typescript --write"
]
},
"size-limit": [
{
"path": "size-checks/basic.js"
}
],
"peerDependencies": {
"sortablejs": "^1.14.0",
"vue": "^3.5.17"
},
"repository": {
"type": "git",
"url": "git+https://github.com/anish2690/vue-draggable-next.git"
},
"bugs": {
"url": "https://github.com/anish2690/vue-draggable-next/issues"
},
"homepage": "https://github.com/anish2690/vue-draggable-next#readme"
}