-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.16 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.16 KB
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
{
"name": "react-tailwind-converter",
"version": "1.0.97",
"description": "This package will let developers style React components using props, instead of adding Tailwind CSS classes directly",
"scripts": {
"build": "tsup components/index.ts --format cjs,esm --dts --out-dir dist",
"dev": "tsup components/index.ts --format cjs,esm --dts --watch",
"test": "echo \"Error: no test specified\" && exit 1"
},
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"keywords": [
"React",
"Next.js",
"Tailwind CSS",
"Tailwind converter",
"Prop-based styling",
"React components",
"Utility-first CSS",
"Design systems",
"Monorepo",
"Component library",
"Safe list generation"
],
"author": "james-webdev",
"contributors": [
"kriffin"
],
"license": "MIT",
"dependencies": {
"clsx": "^2.1.1",
"react": "18.3.1",
"tailwind-merge": "^2.3.0",
"tsup": "^8.3.5"
},
"devDependencies": {
"@types/node": "20.12.12",
"@types/react": "18.3.2",
"@types/react-dom": "18.3.0",
"typescript": "^5.6.0-dev.20240819"
},
"files": [
"dist"
]
}