@codefast/tailwind-variants 0.3.7-canary.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +3 -0
- package/LICENSE +21 -0
- package/README.md +963 -0
- package/dist/core/config.cjs +1 -0
- package/dist/core/config.d.ts +31 -0
- package/dist/core/config.js +1 -0
- package/dist/core/tv.cjs +1 -0
- package/dist/core/tv.d.ts +65 -0
- package/dist/core/tv.js +1 -0
- package/dist/index.cjs +1 -0
- package/dist/index.d.ts +28 -0
- package/dist/index.js +1 -0
- package/dist/processing/compound.cjs +1 -0
- package/dist/processing/compound.d.ts +34 -0
- package/dist/processing/compound.js +1 -0
- package/dist/processing/slots.cjs +1 -0
- package/dist/processing/slots.d.ts +46 -0
- package/dist/processing/slots.js +1 -0
- package/dist/types/types.cjs +1 -0
- package/dist/types/types.d.ts +244 -0
- package/dist/types/types.js +0 -0
- package/dist/utilities/utils.cjs +1 -0
- package/dist/utilities/utils.d.ts +90 -0
- package/dist/utilities/utils.js +1 -0
- package/package.json +79 -0
package/package.json
ADDED
|
@@ -0,0 +1,79 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@codefast/tailwind-variants",
|
|
3
|
+
"version": "0.3.7-canary.1",
|
|
4
|
+
"description": "Tailwind CSS variants utilities with enhanced functionality and advanced type safety",
|
|
5
|
+
"keywords": [
|
|
6
|
+
"tailwind",
|
|
7
|
+
"tailwindcss",
|
|
8
|
+
"variants",
|
|
9
|
+
"css",
|
|
10
|
+
"utilities",
|
|
11
|
+
"typescript",
|
|
12
|
+
"monorepo",
|
|
13
|
+
"styling",
|
|
14
|
+
"type-safe",
|
|
15
|
+
"composition"
|
|
16
|
+
],
|
|
17
|
+
"homepage": "https://github.com/codefastlabs/codefast/tree/main/packages/tailwind-variants#readme",
|
|
18
|
+
"bugs": {
|
|
19
|
+
"url": "https://github.com/codefastlabs/codefast/issues"
|
|
20
|
+
},
|
|
21
|
+
"repository": {
|
|
22
|
+
"type": "git",
|
|
23
|
+
"url": "git+https://github.com/codefastlabs/codefast.git",
|
|
24
|
+
"directory": "packages/tailwind-variants"
|
|
25
|
+
},
|
|
26
|
+
"license": "MIT",
|
|
27
|
+
"author": "Vuong Phan <mr.thevuong@gmail.com>",
|
|
28
|
+
"type": "module",
|
|
29
|
+
"exports": {
|
|
30
|
+
".": {
|
|
31
|
+
"import": "./dist/index.js",
|
|
32
|
+
"require": "./dist/index.cjs",
|
|
33
|
+
"types": "./dist/index.d.ts"
|
|
34
|
+
}
|
|
35
|
+
},
|
|
36
|
+
"main": "./dist/index.cjs",
|
|
37
|
+
"module": "./dist/index.js",
|
|
38
|
+
"types": "./dist/index.d.ts",
|
|
39
|
+
"files": [
|
|
40
|
+
"dist",
|
|
41
|
+
"CHANGELOG.md",
|
|
42
|
+
"README.md",
|
|
43
|
+
"LICENSE"
|
|
44
|
+
],
|
|
45
|
+
"dependencies": {
|
|
46
|
+
"clsx": "^2.1.1",
|
|
47
|
+
"tailwind-merge": "^3.3.1"
|
|
48
|
+
},
|
|
49
|
+
"devDependencies": {
|
|
50
|
+
"@rslib/core": "^0.13.3",
|
|
51
|
+
"@swc/core": "^1.13.5",
|
|
52
|
+
"@swc/jest": "^0.2.39",
|
|
53
|
+
"@types/jest": "^30.0.0",
|
|
54
|
+
"@types/node": "^24.5.2",
|
|
55
|
+
"eslint": "^9.36.0",
|
|
56
|
+
"expect-type": "^1.2.2",
|
|
57
|
+
"jest": "^30.1.3",
|
|
58
|
+
"jest-environment-jsdom": "^30.1.2",
|
|
59
|
+
"ts-node": "^10.9.2",
|
|
60
|
+
"typescript": "^5.9.2",
|
|
61
|
+
"@codefast/eslint-config": "0.3.7-canary.1",
|
|
62
|
+
"@codefast/typescript-config": "0.3.7-canary.1"
|
|
63
|
+
},
|
|
64
|
+
"publishConfig": {
|
|
65
|
+
"access": "public"
|
|
66
|
+
},
|
|
67
|
+
"scripts": {
|
|
68
|
+
"build": "rslib build",
|
|
69
|
+
"check-types": "tsc --noEmit",
|
|
70
|
+
"clean": "rm -rf dist",
|
|
71
|
+
"dev": "rslib build --watch",
|
|
72
|
+
"lint": "TIMING=1 eslint . --max-warnings 0",
|
|
73
|
+
"lint:fix": "TIMING=1 eslint --max-warnings 0 --fix .",
|
|
74
|
+
"test": "jest",
|
|
75
|
+
"test:coverage": "jest --coverage",
|
|
76
|
+
"test:coverage:ci": "jest --coverage --ci",
|
|
77
|
+
"test:watch": "jest --watch"
|
|
78
|
+
}
|
|
79
|
+
}
|