Skip to content

Commit 9fecc8f

Browse files
committed
first commit
0 parents  commit 9fecc8f

28 files changed

+6669
-0
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
/node_modules

.npmignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
tests/*
2+
web/*
3+
web/README.md

README.md

Whitespace-only changes.

package.json

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
{
2+
"name": "tailwindcss-spring",
3+
"version": "1.0.0",
4+
"description": "A plugin for Tailwind CSS that adds spring animations using linear(), define just two parameters and let the plugin do the rest.",
5+
"license": "MIT",
6+
"main": "./src/index.js",
7+
"type": "module",
8+
"homepage": "TODO",
9+
"scripts": {
10+
"test": "vitest"
11+
},
12+
"keywords": [
13+
"tailwindcss",
14+
"tailwind",
15+
"spring",
16+
"animation",
17+
"transition",
18+
"plugin",
19+
"linear()",
20+
"bounce"
21+
],
22+
"author": "Kevin Grajeda <me@kvin.me>",
23+
"devDependencies": {
24+
"@csstools/postcss-minify": "^1.1.5",
25+
"postcss": "^8.4.40",
26+
"tailwindcss": "3.4.7",
27+
"vitest": "^2.0.5"
28+
},
29+
"peerDependencies": {
30+
"tailwindcss": ">=3.0.0 || insiders"
31+
}
32+
}

0 commit comments

Comments
 (0)