Overview
The@midudev/tailwind-animations package has been renamed to tailwind-animations. The scoped package is now deprecated and maintained only as a backward compatibility shim.
Why the Change?
The package was renamed as part of the v1.0 release to:- Simplify package naming and discovery
- Align with Tailwind CSS v4’s architecture
- Establish the package as the official animations solution
- Remove organizational scoping for broader community adoption
Version Compatibility
For Tailwind CSS v3
Use
@midudev/[email protected]This is the last version supporting Tailwind CSS v3.For Tailwind CSS v4
Use
tailwind-animations@latestRequired for Tailwind CSS v4 support.Migration Steps
For Tailwind CSS v4 Projects
If you’re already using Tailwind CSS v4:Update package.json References
If you have any scripts or tooling that references the old package name, update them:
package.json
For Tailwind CSS v3 Projects
If you’re still using Tailwind CSS v3:Plan Your Upgrade
When you’re ready to upgrade to Tailwind CSS v4, follow the complete migration guide.
What Stays the Same
All Class Names
No changes to any animation class names:All Animation Types
Every animation remains available:- Fade animations
- Slide animations
- Zoom animations
- Rotate animations
- Bounce animations
- All other animation utilities
All Modifiers
All timing and behavior modifiers work identically:animate-delay-*animate-duration-*animate-iteration-count-*animate-fill-mode-*animate-bezier-*- Timeline utilities
Side-by-Side Comparison
Automated Migration
You can use a simple find-and-replace in your project:- Search for:
@midudev/tailwind-animations - Replace with:
tailwind-animations - Update package version to v1.0+
Deprecation Timeline
- January 2026:
tailwind-animationsv1.0 released - Current:
@midudev/tailwind-animationsavailable as compatibility shim - Future: Scoped package will continue to work but won’t receive updates
The scoped package will remain on npm indefinitely for backward compatibility, but all new features and updates will only be added to
tailwind-animations.Frequently Asked Questions
Will @midudev/tailwind-animations be removed from npm?
Will @midudev/tailwind-animations be removed from npm?
No, it will remain available for backward compatibility, but it won’t receive updates beyond v0.2.0.
Do I need to change my HTML class names?
Do I need to change my HTML class names?
No, all class names remain exactly the same. Only the package name and installation method change.
Can I use both packages in a monorepo?
Can I use both packages in a monorepo?
Yes, if you have projects on different Tailwind versions:
- Use
@midudev/[email protected]for Tailwind v3 - Use
tailwind-animations@latestfor Tailwind v4
What if I find a bug in the old package?
What if I find a bug in the old package?
Please upgrade to
tailwind-animations v1.0+ and Tailwind CSS v4. Bug fixes will only be applied to the new package.Need Help?
If you encounter any issues during migration:- Check the GitHub repository
- Open an issue if you find a problem
- Review the Tailwind CSS v4 upgrade guide