vuetify-swatches
Version:
Color Swatch component for Vuetify3.
160 lines (159 loc) • 4.56 kB
JSON
{
"$schema": "https://schemastore.org/package.json",
"name": "vuetify-swatches",
"version": "2.1.0",
"description": "Color Swatch component for Vuetify3.",
"keywords": [
"vue",
"vue3",
"vue-components",
"color-picker",
"color-palette",
"swatches",
"vue-plugin",
"vuetify",
"vuetify3"
],
"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": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.es.js",
"require": "./dist/index.cjs.js"
},
"./presets": {
"types": "./dist/presets/index.d.ts",
"import": "./dist/presets/index.js"
},
"./presets/basic": {
"types": "./dist/presets/basic.d.ts",
"import": "./dist/presets/basic.js"
},
"./presets/advanced": {
"types": "./dist/presets/advanced.d.ts",
"import": "./dist/presets/advanced.js"
},
"./umd": "./dist/index.umd.js",
"./iife": "./dist/index.iife.js",
"./dist/style.css": "./dist/vuetify-swatches.css",
"./package.json": "./package.json"
},
"files": [
"dist",
"src/components/VSwatches.vue"
],
"engines": {
"node": ">=24.11.1"
},
"packageManager": "pnpm@10.30.3",
"sideEffects": false,
"scripts": {
"dev": "vite",
"clean": "rimraf node_modules/.vite",
"type-check": "vue-tsc --build --force",
"build": "run-s type-check build-only build:presets",
"build:analyze": "vite build --mode=analyze",
"build:clean": "rimraf dist docs",
"build:docs": "vite build --mode=docs",
"build-only": "vite build",
"build:presets": "vite build --config vite.config.presets.ts",
"lint": "run-s lint:*",
"lint:oxlint": "oxlint . --fix",
"lint:eslint": "eslint . --fix --cache --cache-location ./node_modules/.vite/eslint-cache",
"lint:prettier": "prettier \"./**/*.{js,ts,json,css,sass,scss,htm,html,vue,md}\" -w -u",
"preview": "vite preview --mode=docs",
"test": "vitest",
"test:run": "vitest run",
"test:coverage": "vitest run --coverage",
"test:ui": "vitest --ui",
"prepare": "husky",
"version": "auto-changelog -p && git add CHANGELOG.md"
},
"peerDependencies": {
"vue": ">=3.5.29",
"vuetify": ">=4.0.1"
},
"dependencies": {
"es-toolkit": "^1.45.1"
},
"devDependencies": {
"@codemirror/lang-vue": "0.1.3",
"@tsconfig/node-lts": "^24.0.0",
"@types/jsdom": "^28.0.0",
"@types/node": "^25.3.5",
"@vitejs/plugin-vue": "^6.0.4",
"@vitest/coverage-v8": "^4.0.18",
"@vitest/eslint-plugin": "^1.6.9",
"@vue/eslint-config-prettier": "^10.2.0",
"@vue/eslint-config-typescript": "^14.7.0",
"@vue/test-utils": "^2.4.6",
"@vue/tsconfig": "^0.9.0",
"eslint": "^10.0.2",
"eslint-import-resolver-custom-alias": "^1.3.2",
"eslint-import-resolver-typescript": "^4.4.4",
"eslint-plugin-import-x": "^4.16.1",
"eslint-plugin-oxlint": "^1.51.0",
"eslint-plugin-security": "^4.0.0",
"eslint-plugin-vue": "^10.8.0",
"eslint-plugin-vuejs-accessibility": "^2.5.0",
"eslint-plugin-vuetify": "^2.7.0",
"husky": "^9.1.7",
"jiti": "^2.6.1",
"jsdom": "^28.1.0",
"lint-staged": "^16.3.2",
"npm-run-all2": "^8.0.4",
"oxlint": "^1.51.0",
"prettier": "^3.8.1",
"rimraf": "^6.1.3",
"rollup-plugin-visualizer": "^7.0.1",
"sass-embedded": "^1.97.3",
"typescript": "^5.9.3",
"typescript-eslint": "^8.56.1",
"vite": "^7.3.1",
"vite-plugin-banner": "^0.8.1",
"vite-plugin-checker": "^0.12.0",
"vite-plugin-dts": "^4.5.4",
"vite-plugin-vuetify": "^2.1.3",
"vitest": "^4.0.18",
"vue": "^3.5.29",
"vue-codemirror6": "^1.4.3",
"vue-eslint-parser": "^10.4.0",
"vue-tsc": "^3.2.5"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*": "run-s lint:*"
},
"resolutions": {
"json5": ">=2.2.3",
"minimatch": ">=10.2.3",
"yaml": ">=2.3.2"
}
}