forked from vtex-apps/structured-data
-
Notifications
You must be signed in to change notification settings - Fork 0
/
manifest.json
41 lines (41 loc) · 1.02 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
{
"vendor": "vtex",
"name": "structured-data",
"version": "0.10.0",
"title": "Structured data",
"description": "Structured data",
"defaultLocale": "pt-BR",
"builders": {
"react": "3.x",
"docs": "0.x",
"messages": "1.x"
},
"mustUpdateAt": "2019-08-29",
"scripts": {
"postreleasy": "vtex publish --verbose"
},
"dependencies": {
"vtex.render-runtime": "8.x",
"vtex.apps-graphql": "3.x"
},
"settingsSchema": {
"title": "Structured data",
"type": "object",
"access": "public",
"properties": {
"decimals": {
"title": "Number of decimals",
"type": "number",
"default": 2,
"description": "Set the number of decimals you want the prices to show"
},
"pricesWithTax": {
"title": "Prices with tax",
"type": "boolean",
"default": false,
"description": "Add tax to the price shown on Google"
}
}
},
"$schema": "https://raw.githubusercontent.com/vtex/node-vtex-api/master/gen/manifest.schema"
}