-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
54 lines (54 loc) · 1.75 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
{
"name": "@markusantonwolf/tailwind-css-plugin-custom-color-palette",
"version": "1.4.0",
"description": "This Plugin generates a color palette and all utilities based on your custom colors. New utilities like text-yourColor-100 or bg-yourColor-600 will be rendered for your custom colors.",
"main": "src/index.js",
"scripts": {
"test": "NODE_ENV=test node ./src/index.js",
"prebuild": "node ./src/export.js",
"build": "node ./scripts/build.js",
"upload": "npm publish --access public",
"patch": "npm version patch",
"minor": "npm version minor",
"major": "npm version major"
},
"author": {
"name": "Markus A. Wolf",
"email": "hello@markusantonwolf.com",
"url": "https://www.markusantonwolf.com/en/"
},
"homepage": "https://github.com/markusantonwolf/tailwind-css-plugin-custom-color-palette#readme",
"bugs": {
"url": "https://github.com/markusantonwolf/tailwind-css-plugin-custom-color-palette/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/markusantonwolf/tailwind-css-plugin-custom-color-palette.git"
},
"license": "MIT",
"keywords": [
"tailwindcss",
"css",
"tailwind",
"color",
"background-color",
"placeholder-color",
"border-color",
"palette",
"customizing",
"dynamic"
],
"dependencies": {
"change-case": "^4.1.2",
"hex-rgb": "^4.3.0",
"lodash": "^4.17.21"
},
"devDependencies": {
"autoprefixer": "^9.8.8",
"clean-css": "^4.2.4",
"tailwindcss": "^1.9.6"
},
"peerDependencies": {
"tailwindcss": "^1.8.3 || ^2.0.0 || ^3.0.0"
}
}