-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
128 lines (128 loc) · 3.94 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
{
"name": "twg",
"version": "6.0.2",
"description": "A utility function for grouping TailwindCSS variants.",
"author": "Nguyễn Hoàng Nhân <workwith.hnhan@gmail.com> (https://github.com/hoangnhan2ka3)",
"homepage": "https://github.com/hoangnhan2ka3/twg",
"repository": {
"type": "git",
"url": "https://github.com/hoangnhan2ka3/twg"
},
"bugs": {
"url": "https://github.com/hoangnhan2ka3/twg/issues"
},
"funding": {
"type": "github",
"url": "https://github.com/sponsors/hoangnhan2ka3"
},
"packageManager": "pnpm@9.10.0+sha256.355a8ab8dbb6ad41befbef39bc4fd6b5df85e12761d2724bd01f13e878de4b13",
"engines": {
"node": ">=6"
},
"scripts": {
"build": "tsup",
"test": "jest",
"lint": "tsc && eslint .",
"npm": "pnpm build && pnpm publish --access public",
"npm:beta": "pnpm build && pnpm publish --access public --tag beta",
"npm:remove-beta": "pnpm dist-tag rm twg beta"
},
"sideEffects": false,
"files": [
"dist/*"
],
"main": "dist/index.js",
"module": "dist/index.mjs",
"cjs": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"import": {
"types": "./dist/index.d.mts",
"default": "./dist/index.mjs"
},
"require": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
},
"./lite": {
"import": {
"types": "./dist/lite/index.d.mts",
"default": "./dist/lite/index.mjs"
},
"require": {
"types": "./dist/lite/index.d.ts",
"default": "./dist/lite/index.js"
}
},
"./extend": {
"import": {
"types": "./dist/extend/index.d.mts",
"default": "./dist/extend/index.mjs"
},
"require": {
"types": "./dist/extend/index.d.ts",
"default": "./dist/extend/index.js"
}
},
"./extend/lite": {
"import": {
"types": "./dist/extend/lite/index.d.mts",
"default": "./dist/extend/lite/index.mjs"
},
"require": {
"types": "./dist/extend/lite/index.d.ts",
"default": "./dist/extend/lite/index.js"
}
}
},
"peerDependencies": {
"@babel/generator": "^7",
"@babel/parser": "^7",
"@babel/traverse": "^7",
"@babel/types": "^7"
},
"devDependencies": {
"@babel/generator": "^7.25.6",
"@babel/parser": "^7.25.6",
"@babel/traverse": "^7.25.6",
"@babel/types": "^7.25.6",
"@eslint/compat": "^1.1.1",
"@eslint/eslintrc": "^3.1.0",
"@eslint/js": "^9.10.0",
"@stylistic/eslint-plugin": "^2.8.0",
"@types/babel__generator": "^7.6.8",
"@types/babel__traverse": "^7.20.6",
"@types/eslint": "^9.6.1",
"@types/jest": "^29.5.13",
"@types/node": "^22.5.5",
"@typescript-eslint/eslint-plugin": "^8.5.0",
"@typescript-eslint/parser": "^8.5.0",
"eslint": "^9.10.0",
"eslint-import-resolver-typescript": "^3.6.3",
"eslint-plugin-import": "^2.30.0",
"eslint-plugin-import-newlines": "^1.4.0",
"eslint-plugin-simple-import-sort": "^12.1.1",
"jest": "^29.7.0",
"terser": "^5.32.0",
"ts-jest": "^29.2.5",
"ts-node": "^10.9.2",
"tsup": "^8.2.4",
"typescript": "^5.6.2",
"typescript-eslint": "^8.5.0"
},
"keywords": [
"tailwindcss",
"tailwind",
"tailwind variants grouping",
"grouping tailwind variants",
"variants grouping",
"grouping variants",
"tvg",
"twg",
"clsx",
"classnames"
],
"license": "MIT"
}