UNPKG

@vue-material/core

Version:

Yet another 'Material Design Components' library for Vue3.

75 lines (74 loc) 2.25 kB
{ "name": "@vue-material/core", "description": "Yet another 'Material Design Components' library for Vue3.", "version": "1.0.0-alpha.28", "private": false, "type": "module", "license": "MIT", "keywords": [ "vue", "vue3", "components", "material", "material-design", "ui-library", "ssr", "ui" ], "bugs": { "url": "https://github.com/obillekyle/components/issues" }, "homepage": "https://github.com/obillekyle/components#readme", "publishConfig": { "access": "public" }, "module": "./dist/index.js", "types": "./dist/index.d.ts", "exports": { ".": "./dist/index.js", "./*": "./dist/components/*/index.js", "./*.vue": "./dist/components/*.vue.js", "./*.js": "./dist/components/*.js", "./ref": "./dist/ref/index.js", "./ref/*": "./dist/ref/*.js", "./utils": "./dist/utils/index.js", "./utils/*": "./dist/utils/*/index.js", "./utils/*.js": "./dist/utils/*.js" }, "files": [ "dist" ], "scripts": { "dev": "vite", "test": "vitest", "check:types": "vue-tsc --build --force", "check:format": "prettier --check . --ignore-path .gitignore", "check:stylelint": "stylelint src/**/*.{vue,css,scss}", "check:eslint": "eslint . --ext .vue,.js,.jsx,.cjs,.mjs,.ts,.tsx,.cts,.mts --ignore-path .gitignore", "check": "run-s check:format check:stylelint check:eslint", "format:prettier": "prettier --write . --ignore-path .gitignore", "format:eslint": "eslint . --ext .vue,.js,.jsx,.cjs,.mjs,.ts,.tsx,.cts,.mts --fix --ignore-path .gitignore", "format:stylelint": "stylelint src/**/*.{vue,css,scss} --fix", "format": "run-s format:prettier format:eslint format:stylelint", "build-only": "vite build", "build": "run-s check:types build-only", "build:preview": "vite build -c vite.preview.ts", "preview": "vite preview -c vite.preview.ts" }, "dependencies": { "bezier-easing": "^2.1.0", "color2k": "^2.0.3" }, "sideEffects": [ "./dist/attach-styles.js", "./dist/assets/*.css.js" ], "devDependencies": { "vite-plugin-dts": "^3.9.1", "vite-plugin-vue-devtools": "^7.0.25" }, "peerDependencies": { "vue": "^3.5.4", "@iconify/vue": "^4.1.2" } }