merge new into master

This commit is contained in:
2026-02-05 17:31:20 +00:00
16267 changed files with 2194867 additions and 0 deletions

80
node_modules/tw-animate-css/package.json generated vendored Normal file
View File

@@ -0,0 +1,80 @@
{
"name": "tw-animate-css",
"version": "1.4.0",
"description": "TailwindCSS v4.0 compatible replacement for `tailwindcss-animate`.",
"keywords": [
"accordion",
"animate",
"animation",
"bits-ui",
"collapsible",
"css",
"fades",
"opacity",
"radix",
"reka",
"scale",
"shadcn",
"slide",
"spin",
"tailwind-animate",
"tailwind",
"tailwindcss-animate",
"tailwindcss",
"transform",
"transition",
"translate",
"zoom"
],
"homepage": "https://github.com/Wombosvideo/tw-animate-css#readme",
"bugs": "https://github.com/Wombosvideo/tw-animate-css/issues",
"repository": "Wombosvideo/tw-animate-css",
"funding": "https://github.com/sponsors/Wombosvideo",
"license": "MIT",
"author": {
"name": "Luca Bosin",
"url": "https://github.com/Wombosvideo"
},
"type": "module",
"exports": {
".": {
"style": "./dist/tw-animate.css"
},
"./prefix": {
"style": "./dist/tw-animate-prefix.css"
}
},
"main": "./dist/tw-animate.css",
"files": [
"dist"
],
"simple-git-hooks": {
"pre-commit": "pnpx lint-staged",
"commit-msg": "pnpx commitlint --edit $1"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"lint-staged": {
"*": "prettier --write --ignore-unknown",
"package.json": "sort-package-json"
},
"prettier": {
"printWidth": 100
},
"devDependencies": {
"@commitlint/cli": "^19.8.1",
"@commitlint/config-conventional": "^19.8.1",
"@types/node": "^24.5.2",
"lint-staged": "^16.2.0",
"prettier": "^3.6.2",
"simple-git-hooks": "^2.13.1",
"sort-package-json": "^3.4.0"
},
"scripts": {
"build": "pnpx @tailwindcss/cli -i ./src/tw-animate.css -o ./dist/tw-animate.css -m && node ./transform.ts ./dist/tw-animate.css ./dist/tw-animate-prefix.css",
"format": "prettier --write --ignore-unknown ."
}
}