-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.34 KB
/
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
51
52
53
54
55
56
{
"name": "tailwindcss-addons",
"description": "A set of Tailwind CSS plugins that add extra defaults, utilities, variants, and more.",
"version": "3.0.0",
"license": "MIT",
"main": "./dist/index.js",
"repository": "github:babakfp/tailwindcss-addons",
"homepage": "https://babakfp.ir/docs/tailwindcss-addons",
"scripts": {
"dev": "rimraf dist && tsc -w",
"build": "rimraf dist && tsc",
"prepublishOnly": "rimraf dist && tsc",
"format": "prettier -w ."
},
"peerDependencies": {
"tailwindcss": ">= 3.4.1 < 4"
},
"devDependencies": {
"prettier": "3.3.3",
"rimraf": "6.0.1",
"tailwindcss": "3.4.10",
"typescript": "5.5.4"
},
"files": [
"/dist/"
],
"exports": {
".": "./dist/index.js"
},
"keywords": [
"ui",
"css",
"tailwind",
"tailwindcss",
"bg-grid",
"bg-radial",
"dir",
"drag",
"extra-defaults",
"flex-grid",
"flip",
"font-regular",
"hide-show",
"hocus",
"inset-center",
"not",
"overflow-unset",
"reset-number-input",
"reset-search-input",
"supports-focus",
"supports-hocus",
"supports-hover",
"tap"
],
"type": "module"
}