Skip to content

Commit da90fc5

Browse files
author
Adam Plesnik
committed
Initial commit:
* README.md * package.json, .gitignore
0 parents  commit da90fc5

File tree

3 files changed

+25
-0
lines changed

3 files changed

+25
-0
lines changed

.gitignore

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
.idea
2+
node_modules
3+
dist
4+
yarn.lock
5+
package-lock.json

README.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
# Scrol-driven Animations in Tailwind CSS
2+
`experimental` `unofficial`
3+
4+
A plugin for Tailwind CSS v3.2+ that provides utilities for scroll-driven-animations.

package.json

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
{
2+
"prettier": {
3+
"printWidth": 100,
4+
"semi": false,
5+
"singleQuote": true,
6+
"trailingComma": "es5"
7+
},
8+
"peerDependencies": {
9+
"tailwindcss": ">=3.2.0"
10+
},
11+
"devDependencies": {
12+
"prettier": "^3.2.5",
13+
"typescript": "^5.4.3",
14+
"tailwindcss": "^0.0.0-insiders.3ba51d1"
15+
}
16+
}

0 commit comments

Comments
 (0)