vue-tag-maker
Version:
A customizable tag input component for Vue 3
86 lines (85 loc) • 2.29 kB
JSON
{
"name": "vue-tag-maker",
"version": "1.2.1",
"private": false,
"files": [
"dist/",
"LICENSE",
"package.json",
"README.md",
"CODE_OF_CONDUCT.md",
"CONTRIBUTING.md",
"CHANGELOG.md"
],
"repository": {
"type": "git",
"url": "git+https://github.com/gloomystore/vue-tag-maker.git"
},
"homepage": "https://www.gloomy-store.com",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"module": "dist/index.js",
"license": "GPL-3.0",
"keywords": [
"vue-tag",
"vue-tag-maker",
"tag-maker",
"tag-edit",
"tag-editor",
"vue-tag-editor",
"vue-tag-edit",
"tags",
"vue",
"input",
"component",
"vue3"
],
"copyright": "Copyright © 2024 gloomystore",
"description": "A customizable tag input component for Vue 3",
"dependencies": {
"vue": "^3.0.0 <4.0.0"
},
"devDependencies": {
"@babel/cli": "^7.24.8",
"@babel/core": "^7.25.2",
"@babel/plugin-transform-runtime": "^7.24.7",
"@babel/preset-env": "^7.25.3",
"@babel/preset-typescript": "^7.24.7",
"@rushstack/eslint-patch": "^1.8.0",
"@tsconfig/node20": "^20.1.4",
"@types/node": "^20.14.5",
"@vitejs/plugin-vue": "^5.0.5",
"@vue/babel-plugin-jsx": "^1.2.2",
"@vue/babel-preset-jsx": "^1.4.0",
"@vue/eslint-config-prettier": "^9.0.0",
"@vue/eslint-config-typescript": "^13.0.0",
"@vue/tsconfig": "^0.5.1",
"eslint": "^8.57.0",
"eslint-plugin-vue": "^9.23.0",
"npm-run-all2": "^6.2.0",
"prettier": "^3.2.5",
"typescript": "~5.4.0",
"vite": "^6.3.5",
"vite-plugin-vue-devtools": "^7.3.1",
"vue-tsc": "^2.0.21"
},
"peerDependencies": {
"vue": "^3.0.0 <4.0.0"
},
"scripts": {
"dev": "vite",
"build": "run-p type-check \"build-only {@}\" --",
"preview": "vite preview",
"clean": "rimraf dist",
"build-only": "npm run clean && tsc && babel src/libs --out-dir dist --copy-files --extensions \".ts,.tsx\"",
"type-check": "vue-tsc --build --force",
"lint": "eslint . --ext .vue,.js,.jsx,.cjs,.mjs,.ts,.tsx,.cts,.mts --fix --ignore-path .gitignore",
"format": "prettier --write src/"
},
"eslintConfig": {
"extends": [
"@vue/eslint-config-typescript",
"@vue/eslint-config-prettier"
]
}
}