-
Notifications
You must be signed in to change notification settings - Fork 52
/
package.json
50 lines (50 loc) · 903 Bytes
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
{
"name": "tailwindcss-animate",
"version": "1.0.7",
"description": "A Tailwind CSS plugin for creating beautiful animations.",
"main": "index.js",
"files": [
"index.js",
"index.d.ts"
],
"scripts": {
"format": "prettier --write '**'",
"format:check": "prettier --check '**'",
"prepare": "husky install"
},
"keywords": [
"tailwind",
"tailwindcss",
"css",
"postcss",
"plugin",
"animation",
"transition",
"animate",
"animated",
"animatecss",
"animate.css",
"fade",
"slide",
"zoom",
"spin",
"opacity",
"transform",
"translate",
"scale"
],
"author": "Jamie Kyle <me@thejameskyle.com>",
"license": "MIT",
"peerDependencies": {
"tailwindcss": ">=3.0.0 || insiders"
},
"devDependencies": {
"husky": "^7.0.4",
"lint-staged": "^12.3.4",
"prettier": "^2.5.1",
"tailwindcss": "^3.0.22"
},
"lint-staged": {
"*.**": "prettier --write"
}
}