UNPKG

unocss-preset-animations

Version:

💅 An animation preset for UnoCSS, which adapts the tailwindcss-animate plugin

106 lines • 2.96 kB
{ "name": "unocss-preset-animations", "version": "1.2.1", "description": "💅 An animation preset for UnoCSS, which adapts the tailwindcss-animate plugin", "type": "module", "author": "Aelita <https://github.com/xsjcTony>", "license": "MIT", "homepage": "https://unocss-preset-animations.aelita.me/", "repository": { "type": "git", "url": "https://github.com/xsjcTony/unocss-preset-animations" }, "bugs": { "url": "https://github.com/xsjcTony/unocss-preset-animations/issues" }, "keywords": [ "css", "unocss", "unocss-preset", "unocss-preset-animations", "tailwind-animate" ], "sideEffects": false, "exports": { ".": { "import": { "types": "./dist/index.d.mts", "default": "./dist/index.mjs" }, "require": { "types": "./dist/index.d.cts", "default": "./dist/index.cjs" } } }, "main": "dist/index.cjs", "module": "dist/index.mjs", "types": "dist/index.d.ts", "files": [ "dist" ], "simple-git-hooks": { "pre-commit": "pnpm lint-staged" }, "lint-staged": { "*": "pnpm lint" }, "devDependencies": { "@aelita-dev/eslint-config": "3.19.0", "@iconify/json": "^2.2.330", "@types/dom-view-transitions": "^1.0.6", "@types/markdown-it": "^14.1.2", "@types/node": "^20.17.30", "@unocss/core": "^66.0.0", "@unocss/eslint-plugin": "^66.0.0", "@unocss/preset-mini": "^66.0.0", "@vitest/coverage-v8": "^3.1.2", "@vitest/eslint-plugin": "^1.1.43", "@vue/language-server": "^2.2.10", "bumpp": "^10.1.0", "bundle-require": "^5.1.0", "changelogithub": "^13.13.0", "eslint": "^9.25.1", "eslint-import-resolver-typescript": "^4.3.4", "eslint-plugin-import-x": "^4.10.6", "eslint-plugin-vue": "^10.0.0", "eslint-plugin-vuejs-accessibility": "^2.4.1", "eslint-processor-vue-blocks": "^2.0.0", "lint-staged": "^15.5.1", "markdown-it": "^14.1.0", "sass-embedded": "^1.87.0", "simple-git-hooks": "^2.12.1", "typescript": "~5.8.3", "unbuild": "3.5.0", "unocss": "^66.0.0", "vite-tsconfig-paths": "^5.1.4", "vitepress": "1.6.3", "vitest": "^3.1.2", "vue": "^3.5.13", "vue-eslint-parser": "^10.1.3", "vue-tsc": "^2.2.10" }, "peerDependencies": { "@unocss/preset-wind3": ">=0.56.0 < 101", "unocss": ">=0.56.0 < 101" }, "peerDependenciesMeta": { "@unocss/preset-wind3": { "optional": true } }, "scripts": { "build": "unbuild", "release": "pnpm test:ci && bumpp", "typecheck": "vue-tsc", "lint": "eslint .", "lint:fix": "eslint --fix .", "test": "vitest", "test:coverage": "vitest run --coverage", "test:update": "vitest run -u", "test:ci": "pnpm typecheck && pnpm lint && pnpm test run && pnpm build", "docs:dev": "vitepress dev docs", "docs:build": "vitepress build docs", "docs:preview": "vitepress preview docs" } }