-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.4 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
{
"name": "@hexadog/tailwind-css-plugin-export-color-palette",
"version": "1.0.2",
"description": "This plugin generates an HTML file containing a preview of the color palette.",
"main": "src/index.js",
"scripts": {
"test": "NODE_ENV=test node ./src/index.js",
"upload": "npm publish --access public",
"patch": "npm version patch",
"minor": "npm version minor",
"major": "npm version major"
},
"author": {
"name": "Gaetan B.",
"email": "[email protected]",
"url": "https://www.hexadog.com/"
},
"homepage": "https://github.com/hexadog/tailwind-css-plugin-export-color-palette#readme",
"bugs": {
"url": "https://github.com/hexadog/tailwind-css-plugin-export-color-palette/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/hexadog/tailwind-css-plugin-export-color-palette.git"
},
"license": "MIT",
"keywords": [
"tailwindcss",
"css",
"tailwind",
"color",
"palette",
"export"
],
"dependencies": {
"change-case": "^4.1.2",
"hex-rgb": "^5.0.0",
"lodash": "^4.17.21"
},
"devDependencies": {
"autoprefixer": "^10.4.14",
"clean-css": "^5.3.2",
"fs-extra": "^11.1.0"
},
"peerDependencies": {
"tailwindcss": "^1.8.3 || ^2.0.0 || ^3.0.0"
}
}