forked from morrislaptop/tailwind-zeplin-extension
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
62 lines (62 loc) · 1.38 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
55
56
57
58
59
60
61
62
{
"name": "tailwind-zeplin-extension",
"version": "0.0.0-development",
"license": "MIT",
"description": "Utilities to generate Tailwind Config and classes for your components.",
"repository": "https://github.com/morrislaptop/tailwind-zeplin-extension.git",
"bin": "./cli.js",
"scripts": {
"start": "zem start",
"build": "zem build",
"clean": "zem clean",
"exec": "zem exec",
"test": "jest",
"prepublishOnly": "yarn build"
},
"zeplin": {
"displayName": "Tailwind CSS",
"projectTypes": [
"web"
],
"options": [
{
"name": "Tailwind Config",
"type": "text",
"id": "tailwind",
"default": ""
},
{
"name": "Default Font",
"type": "text",
"id": "font",
"default": ""
},
{
"name": "Default Color",
"type": "text",
"id": "color",
"default": ""
},
{
"name": "Max Color Distance",
"type": "text",
"id": "maxColorDistance",
"default": "50"
}
]
},
"dependencies": {
"css": "^2.2.1",
"css-shorthand-expand": "^1.2.0",
"lodash": "^4.17.5",
"nearest-color": "^0.4.2",
"rgb-hex": "^2.1.0",
"string": "^3.3.3",
"zem": "^0.1.2"
},
"devDependencies": {
"@zeplin/extension-model": "^1.2.0",
"jest": "^22.4.3",
"semantic-release": "^15.1.7"
}
}