-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
83 lines (83 loc) · 1.79 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
{
"name": "zeplin-qml-extension",
"version": "0.4.0",
"license": "GPL-3.0",
"keywords": [
"zeplin",
"zeplin-extension",
"extension",
"qml"
],
"description": "Generate QML components from layer and text.",
"scripts": {
"start": "zem start",
"build": "zem build",
"clean": "zem clean",
"exec": "zem exec",
"publish": "zem publish"
},
"author": {
"name": "braineo",
"url": "https://github.com/braineo/zeplin-qml-extension"
},
"repository": {
"type": "git",
"url": "https://github.com/braineo/zeplin-qml-extension.git"
},
"zeplin": {
"displayName": "QML",
"platforms": [
"web"
],
"options": [
{
"name": "Resize function name",
"type": "text",
"id": "resizeFunction",
"default": ""
},
{
"name": "Display resources from linked and parent styleguides",
"type": "switch",
"id": "useLinkedStyleguides",
"default": true
},
{
"name": "QML name space of style guide",
"type": "text",
"id": "styleGuideNamespace",
"default": ""
},
{
"name": "Display hex colors in ARGB format",
"type": "switch",
"id": "useAlphaRgbHex",
"default": true
},
{
"name": "Text i18n Options",
"type": "picker",
"id": "translationFunction",
"options": [
{
"name": "Disable",
"value": ""
},
{
"name": "String based",
"value": "qsTr"
},
{
"name": "Id based",
"value": "qsTrId"
}
],
"default": ""
}
]
},
"dependencies": {
"zem": "^0.4.4",
"zeplin-extension-style-kit": "^1.1.0"
}
}