-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 902 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
{
"name": "@oviirup/tailwindcss-animate",
"version": "1.0.10",
"description": "A Tailwind CSS plugin for creating beautiful animations",
"repository": {
"type": "git",
"url": "https://github.com/oviirup/tailwindcss-animate"
},
"author": "Avirup Ghosh (https://github.com/oviirup)",
"license": "MIT",
"private": false,
"main": "index.js",
"types": "index.d.ts",
"keywords": [
"tailwind",
"tailwindcss",
"css",
"postcss",
"plugin",
"animation",
"animate",
"animated"
],
"scripts": {
"format": "prettier --write .",
"prepare": "husky"
},
"peerDependencies": {
"tailwindcss": ">=3.0.0 || insiders"
},
"devDependencies": {
"husky": "^9",
"lint-staged": "^15",
"prettier": "^3",
"prettier-plugin-pkg": "^0.18",
"tailwindcss": "^3"
},
"lint-staged": {
"*.{js,md,json}": "prettier --write"
}
}