vue-clipboard-package
Version:
A powerful Vue 3 package providing a directive, composable, and component for copying text to the clipboard. This package offers flexible solutions with modern clipboard APIs and fallback mechanisms for legacy browsers.
66 lines • 1.62 kB
JSON
{
"name": "vue-clipboard-package",
"version": "1.0.0",
"type": "module",
"keywords": [
"vue",
"clipboard",
"copy",
"vue-directive",
"copy-to-clipboard",
"web-clipboard",
"clipboard-utility",
"vue-clipboard",
"copy-paste",
"vue-plugin"
],
"repository": {
"type": "git",
"url": "git+https://github.com/RahulRawat1994/vue-clipboard-package.git"
},
"bugs": {
"url": "https://github.com/RahulRawat1994/vue-clipboard-package/issues"
},
"homepage": "https://github.com/RahulRawat1994/vue-clipboard-package#readme",
"author": "Rahul Rawat <rr904196@gmail.com>",
"license": "MIT",
"main": "src/index.js",
"module": "src/index.js",
"scripts": {
"dev": "vite",
"build": "run-p type-check \"build-only {@}\" --",
"preview": "vite preview",
"build-only": "vite build",
"type-check": "vue-tsc --build --force",
"lint": "eslint . --fix",
"format": "prettier --write src/"
},
"devDependencies": {
"@tsconfig/node20": "^20.1.4",
"@types/node": "^20.16.11",
"@vitejs/plugin-vue": "^5.2.1",
"@vue/eslint-config-prettier": "^10.0.0",
"@vue/eslint-config-typescript": "^14.0.1",
"@vue/tsconfig": "^0.5.1",
"eslint": "^9.12.0",
"eslint-plugin-vue": "^9.29.0",
"npm-run-all2": "^6.2.3",
"prettier": "^3.3.3",
"typescript": "~5.5.4",
"vite": "^5.4.8",
"vue": "^3.5.13",
"vue-tsc": "^2.1.10"
},
"peerDependencies": {
"vue": "^3.0.0"
},
"dependencies": {},
"engines": {
"node": ">=16.0.0",
"npm": ">=8.0.0"
},
"files": [
"dist/*",
"src/*"
]
}