forked from nextui-org/tailwind-variants
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
105 lines (105 loc) · 2.57 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
{
"name": "tailwind-variants",
"version": "0.2.0",
"description": "🦄 Tailwindcss first-class variant API",
"author": "Junior Garcia <jrgarciadev@gmail.com>",
"license": "MIT",
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "https://github.com/nextui-org/tailwind-variants"
},
"bugs": {
"url": "https://github.com/nextui-org/tailwind-variants/issues"
},
"type": "module",
"main": "dist/index.cjs",
"types": "./dist/index.d.ts",
"sideEffects": false,
"files": [
"dist",
"transformer.js",
"transformer.d.ts",
"README.md",
"LICENSE"
],
"scripts": {
"build": "tsup && node copy-types.cjs",
"typecheck": "tsc --noEmit",
"prepack": "clean-package",
"benchmark": "node benchmark.js",
"postpack": "clean-package restore",
"lint": "eslint . src/**/*.{js,ts}",
"lint:fix": "eslint --fix . src/**/*.{js,ts}",
"test": "jest --verbose",
"test:watch": "jest --watch --no-verbose"
},
"dependencies": {
"tailwind-merge": "^2.2.0"
},
"devDependencies": {
"@commitlint/cli": "^17.2.0",
"@commitlint/config-conventional": "^17.2.0",
"@jest/globals": "^29.7.0",
"@swc-node/jest": "^1.5.2",
"@swc/cli": "0.1.57",
"@swc/core": "1.2.198",
"@swc/helpers": "^0.4.14",
"@types/jest": "28.1.1",
"@types/node": "^18.11.18",
"@typescript-eslint/eslint-plugin": "^7.3.1",
"@typescript-eslint/parser": "^7.3.1",
"benchmark": "2.1.4",
"class-variance-authority": "^0.7.0",
"clean-package": "2.1.1",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-config-ts-lambdas": "^1.2.3",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jest": "^27.9.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-promise": "^6.1.1",
"expect": "^29.7.0",
"jest": "28.1.1",
"prettier": "^3.2.5",
"prettier-eslint": "^16.3.0",
"prettier-eslint-cli": "^8.0.1",
"tailwindcss": "^3.2.7",
"ts-node": "^10.9.1",
"tsup": "6.6.3",
"typescript": "5.1.3"
},
"peerDependencies": {
"tailwindcss": "*"
},
"keywords": [
"tailwindcss",
"classes",
"responsive",
"variants",
"styled",
"styles"
],
"tsup": {
"clean": true,
"minify": true,
"treeshake": true,
"entry": [
"src/*.js"
],
"target": "es2019",
"format": [
"cjs",
"esm"
]
},
"packageManager": "pnpm@8.6.8",
"engines": {
"node": ">=16.x",
"pnpm": ">=7.x"
}
}