forked from vtex-apps/google-tag-manager
-
Notifications
You must be signed in to change notification settings - Fork 0
/
manifest.json
52 lines (52 loc) · 1.22 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
{
"name": "google-tag-manager",
"vendor": "vtex",
"version": "3.3.1",
"title": "Google Tag Manager",
"description": "Google Tag Manager",
"mustUpdateAt": "2019-04-03",
"scripts": {
"postreleasy": "vtex publish --verbose"
},
"billingOptions": {
"type": "free",
"support": {
"url": "https://support.vtex.com/hc/requests"
},
"availableCountries": [
"*"
]
},
"builders": {
"react": "3.x",
"store": "0.x",
"pixel": "0.x",
"docs": "0.x"
},
"dependencies": {
"vtex.pixel-interfaces": "1.x"
},
"policies": [
{
"name": "pixel"
}
],
"settingsSchema": {
"title": "Google Tag Manager",
"type": "object",
"bindingBounded": true,
"properties": {
"gtmId": {
"title": "Google Tag Manager",
"description": "Enter the ID (GTM-XXXX) from your Google Tag Manager",
"type": "string"
},
"allowCustomHtmlTags": {
"title": "Allow Custom HTML tags",
"description": "Beware that using Custom HTML tags can drastically impact the store's performance",
"type": "boolean"
}
}
},
"$schema": "https://raw.githubusercontent.com/vtex/node-vtex-api/master/gen/manifest.schema"
}