-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
108 lines (108 loc) · 2.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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
{
"name": "zeplin-roku",
"version": "1.0.0",
"author": {
"name": "Sam Heavner",
"email": "[email protected]",
"url": "https://github.com/slheavner"
},
"repository": {
"type": "git",
"url": "https://github.com/slheavner/zeplin-roku"
},
"description": "",
"scripts": {
"start": "zem start",
"build": "zem build",
"clean": "zem clean",
"exec": "zem exec",
"test": "zem test",
"publish": "zem publish"
},
"zeplin": {
"displayName": "Roku SceneGraph",
"platforms": [
"web",
"android",
"ios",
"osx"
],
"options": [
{
"name": "Use Real X, Y coordinates",
"type": "switch",
"id": "useRealXY",
"default": true
},
{
"name": "Hex Color Prefix (0xFFF)",
"type": "switch",
"id": "colorFormat",
"default": true
},
{
"name": "Add ID field to XML elements",
"type": "switch",
"id": "addId",
"default": true
},
{
"name": "Self Closing XML Tags",
"type": "switch",
"id": "selfClosingTags",
"default": true
},
{
"name": "Package Font Path",
"type": "text",
"id": "fontPath",
"default": "pkg:/fonts/"
},
{
"name": "Poster URI Placeholder",
"type": "text",
"id": "imageUriPlaceholder",
"default": "pkg:/locale/images/REPLACE_ME"
},
{
"name": "Use 9patch Poster for Rounded Rectangles",
"type": "switch",
"id": "use9PatchForRadius",
"default": true
},
{
"name": "9 Patch URI (formats to `${uri}${radius}px.9.png` ",
"type": "text",
"id": "roundedRectPath",
"default": "pkg:/locale/images/rounded-rect-"
},
{
"name": "Label Element Name",
"type": "text",
"id": "labelName",
"default": "Label"
},
{
"name": "Rectangle Element Name",
"type": "text",
"id": "rectangleName",
"default": "Rectangle"
},
{
"name": "Poster Element Name",
"type": "text",
"id": "posterName",
"default": "Poster"
},
{
"name": "Font Element Name",
"type": "text",
"id": "fontName",
"default": "Font"
}
]
},
"dependencies": {
"zem": "^1.0.3"
}
}