-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.17 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
{
"name": "twsx",
"version": "0.1.0",
"description": "A combination of Tailwind-Merge and CLSX",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"prettier": "@kienleholdings/prettierrc",
"scripts": {
"build": "tsup",
"lint": "eslint src/**",
"test": "vitest --coverage"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jrkienle/twsx.git"
},
"keywords": [
"classes",
"classname",
"classnames",
"clsx",
"conflict",
"merge",
"override",
"tailwindcss"
],
"author": "James Kienle (https://www.jameskienle.com)",
"license": "MIT",
"bugs": {
"url": "https://github.com/jrkienle/twsx/issues"
},
"homepage": "https://github.com/jrkienle/twsx#readme",
"dependencies": {
"clsx": "^1.2.1",
"tailwind-merge": "^1.6.0"
},
"devDependencies": {
"@kienleholdings/eslint-config-base": "^0.1.12",
"@kienleholdings/prettierrc": "^0.1.5",
"@kienleholdings/tsconfigs": "^0.3.1",
"@vitest/coverage-c8": "^0.22.1",
"eslint": "^8.22.0",
"prettier": "2.6.2",
"tsup": "^6.2.2",
"typescript": "^4.7.4",
"vitest": "^0.22.1"
}
}