forked from kiliman/shadcn-custom-theme
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
26 lines (26 loc) · 836 Bytes
/
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
{
"name": "shadcn-custom-theme",
"version": "0.1.4",
"main": "index.js",
"bin": {
"shadcn-custom-theme": "cli.js"
},
"files": [
"cli.js",
"index.js",
"theme.json",
"README.md"
],
"author": {
"name": "kiliman",
"email": "[email protected]"
},
"license": "MIT",
"description": "This tool generate a custom theme similar to the ones created by the [shadcn/ui Themes website](https://ui.shadcn.com/themes). You can specify the primary, secondary, accent, and gray colors. The color name should be one of the default Tailwind color names (e.g. red, green, blue, indigo, etc.) The `primary` color is required, the rest defaults to Tailwind `gray`.",
"dependencies": {
"hex-to-hsl": "^1.0.2",
"hsl-to-hex": "^1.0.0",
"nearest-color": "^0.4.4",
"tailwindcss": "^3.3.3"
}
}