This repository has been archived by the owner on Jun 10, 2024. It is now read-only.
forked from berkcebi/zeplin-json-extension
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
61 lines (61 loc) · 1.62 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
{
"name": "zeplin-json-extension",
"version": "1.1.0",
"description": "Generates design tokens in JSON, for colors and text styles.",
"scripts": {
"start": "zem start",
"build": "zem build",
"clean": "zem clean",
"exec": "zem exec",
"publish": "zem publish"
},
"repository": {
"type": "git",
"url": "https://github.com/berkcebi/zeplin-json-extension.git"
},
"author": {
"name": "Berk Çebi"
},
"zeplin": {
"displayName": "JSON Design Tokens",
"platforms": [
"web",
"ios",
"android",
"osx"
],
"options": [
{
"name": "🎨 Color representation",
"type": "picker",
"id": "colorRepresentation",
"options": [
{
"name": "RGBA",
"value": "rgba"
},
{
"name": "Hex",
"value": "hex"
},
{
"name": "HSLA",
"value": "hsla"
}
],
"default": "rgba"
},
{
"name": "Include referenced styleguides",
"type": "switch",
"id": "includeReferencedStyleguides",
"default": true
}
]
},
"devDependencies": {
"@zeplin/eslint-config": "^1.2.2",
"eslint": "^4.18.2",
"zem": "^0.4.2"
}
}