animated-unocss
Version:
A configuration to use Animate.css with UnoCSS.
76 lines • 2 kB
JSON
{
"name": "animated-unocss",
"version": "0.0.6",
"description": "A configuration to use Animate.css with UnoCSS.",
"author": "Elone Hoo <hi@elonehoo.me>",
"license": "MIT",
"homepage": "https://github.com/elonehoo/animated-unocss#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/elonehoo/animated-unocss.git"
},
"bugs": {
"url": "https://github.com/elonehoo/animated-unocss/issues"
},
"keywords": [
"unocss",
"animated.css"
],
"exports": {
".": {
"types": "./dist/index.d.ts",
"require": "./dist/index.cjs",
"import": "./dist/index.mjs"
},
"./*": "./*"
},
"main": "dist/index.cjs",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"files": [
"dist",
"*.d.ts"
],
"peerDependencies": {
"animate.css": ">=4.1.1",
"unocss": ">=0.50.4"
},
"dependencies": {
"@unocss/autocomplete": "^0.51.8",
"@unocss/preset-mini": "0.51.8"
},
"devDependencies": {
"@antfu/eslint-config": "^0.38.5",
"@elonehoo/rimraf": "0.0.1",
"@types/lodash-es": "^4.17.7",
"@types/node": "18.16.0",
"@types/postcss-js": "^4.0.1",
"@vitest/coverage-c8": "^0.30.1",
"@vitest/ui": "^0.30.1",
"animate.css": "4.1.1",
"bumpp": "9.1.0",
"eslint": "8.39.0",
"lodash-es": "^4.17.21",
"pnpm": "8.3.1",
"postcss": "^8.4.23",
"postcss-js": "^4.0.1",
"typescript": "5.0.4",
"unbuild": "^1.2.1",
"unocss": "^0.51.8",
"vite": "4.3.1",
"vitest": "0.30.1"
},
"scripts": {
"build": "rimraf dist && unbuild",
"release": "bumpp package.json --commit --push --tag && pnpm -r publish --access public",
"typeCheck": "tsc --noEmit",
"test": "vitest",
"coverage": "vitest run --coverage",
"ui": "vitest --ui",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"example:vue3": "pnpm -C example/vue3 run dev",
"docs:dev": "pnpm -C docs run dev",
"docs:build": "pnpm -C docs run build"
}
}