-
Notifications
You must be signed in to change notification settings - Fork 1.8k
/
manifest.json
81 lines (81 loc) · 1.95 KB
/
manifest.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
{
"identifier": "com.ibm.carbon.elements",
"compatibleVersion": "3",
"bundleVersion": 1,
"name": "Carbon Elements 🎨",
"commands": [
{
"name": "Sync shared layer styles",
"identifier": "carbon.elements.colors.sync",
"script": "commands/index.js",
"handler": "syncColors"
},
{
"name": "Generate color page",
"identifier": "carbon.elements.colors.generate",
"script": "commands/index.js",
"handler": "generateColors"
},
{
"name": "Sync shared layer styles",
"identifier": "carbon.elements.themes.sync",
"script": "commands/index.js",
"handler": "syncThemes"
},
{
"name": "Generate themes page",
"identifier": "carbon.elements.themes.generate",
"script": "commands/index.js",
"handler": "generateThemes"
},
{
"name": "Sync shared layer styles",
"identifier": "carbon.elements.type.sync",
"script": "commands/index.js",
"handler": "syncType"
},
{
"name": "Generate type page",
"identifier": "carbon.elements.type.generate",
"script": "commands/index.js",
"handler": "generateType"
},
{
"name": "Generate icon page and symbols",
"identifier": "carbon.elements.icons.generate",
"script": "commands/index.js",
"handler": "generateIcons"
}
],
"menu": {
"items": [
{
"title": "Colors",
"items": [
"carbon.elements.colors.sync",
"carbon.elements.colors.generate"
]
},
{
"title": "Themes",
"items": [
"carbon.elements.themes.sync",
"carbon.elements.themes.generate"
]
},
{
"title": "Icons",
"items": [
"carbon.elements.icons.generate"
]
},
{
"title": "Type",
"items": [
"carbon.elements.type.sync",
"carbon.elements.type.generate"
]
}
]
}
}