UNPKG

vuetify-swatches

Version:
125 lines 3.57 kB
{ "$schema": "https://json.schemastore.org/package.json", "name": "vuetify-swatches", "version": "1.7.6", "description": "Color Swatch component for Vuetify3.", "keywords": [ "vuejs", "vue", "vue-components", "color-picker", "color-palette", "swatches", "vue3", "vue-plugin", "vue-resource", "vuetify", "vuetify3", "vuetify-components" ], "license": "MIT", "type": "module", "author": { "name": "Logue", "email": "logue@hotmail.co.jp", "url": "https://logue.dev/" }, "homepage": "https://github.com/logue/vuetify-swatches", "repository": { "type": "git", "url": "git@github.com:logue/vuetify-swatches.git" }, "bugs": { "url": "https://github.com/logue/vuetify-swatches/issues" }, "main": "dist/index.umd.js", "module": "dist/index.es.js", "jsdelivr": "dist/index.iife.js", "unpkg": "dist/index.iife.js", "types": "dist/index.d.ts", "style": "dist/vuetify-swatches.css", "browser": { "./sfc": "./src/components/VSwatches.vue" }, "exports": { ".": { "import": "./dist/index.es.js", "types": "./dist/index.d.ts" }, "./dist/style.css": { "import": "./dist/vuetify-swatches.css" } }, "files": [ "dist", "src/components/VSwatches.vue" ], "engines": { "pnpm": ">=10.3.0" }, "sideEffects": false, "peerDependencies": { "vuetify": "^3.7.19" }, "devDependencies": { "@codemirror/lang-vue": "0.1.3", "@tsconfig/node-lts": "^22.0.1", "@types/node": "^22.13.14", "@vitejs/plugin-vue": "^5.2.3", "@vue/eslint-config-prettier": "^10.2.0", "@vue/eslint-config-typescript": "^14.5.0", "@vue/tsconfig": "^0.7.0", "eslint": "^9.23.0", "eslint-import-resolver-custom-alias": "^1.3.2", "eslint-import-resolver-typescript": "^4.2.5", "eslint-plugin-import": "^2.31.0", "eslint-plugin-vue": "^10.0.0", "eslint-plugin-vuejs-accessibility": "^2.4.1", "eslint-plugin-vuetify": "^2.5.2", "husky": "^9.1.7", "lint-staged": "^15.5.0", "npm-run-all2": "^7.0.2", "prettier": "^3.5.3", "rimraf": "^6.0.1", "rollup-plugin-visualizer": "^5.14.0", "sass": "^1.86.0", "typescript": "^5.8.2", "typescript-eslint": "^8.28.0", "vite": "^6.2.3", "vite-plugin-banner": "^0.8.0", "vite-plugin-checker": "^0.9.1", "vite-plugin-dts": "^4.5.3", "vite-plugin-vuetify": "^2.1.0", "vue": "^3.5.13", "vue-codemirror6": "^1.3.12", "vue-eslint-parser": "^10.1.1", "vue-tsc": "^2.2.8" }, "husky": { "hooks": { "pre-commit": "lint-staged" } }, "lint-staged": { "*.{js,ts,json,yml,yaml,vue,htm,html}": "eslint --fix --cache --cache-location ./node_modules/.vite/vite-plugin-eslint", "*.{css,sass,scss,vue,htm,html}": "stylelint --fix --cache --cache-location ./node_modules/.vite/vite-plugin-stylelint", "*": "prettier -w -u" }, "resolutions": { "json5": ">=2.2.3", "yaml": ">=2.3.2" }, "scripts": { "dev": "vite", "clean": "rimraf node_modules/.vite", "type-check": "vue-tsc --build --force", "build": "run-p type-check \"build-only {@}\" --", "build:analyze": "vite build --mode=analyze", "build:clean": "rimraf dist docs", "build:docs": "vite build --mode=docs", "build-only": "vite build", "lint": "eslint . --fix --cache --cache-location ./node_modules/.vite/vite-plugin-eslint && prettier . --write", "preview": "vite preview --mode=docs", "version": "auto-changelog -p && git add CHANGELOG.md" } }