-
Notifications
You must be signed in to change notification settings - Fork 17
/
manifest.json
39 lines (39 loc) · 910 Bytes
/
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
{
"name": "YOURAPPNAME",
"vendor": "vtex",
"version": "0.0.1",
"title": "CHANGEME",
"description": "CHANGEME",
"billingOptions": {
"termsURL": "https://compliance.vtex.com/gdpr/policies/vtex-privacy-policy",
"support": {
"url": "https://support.vtex.com/hc/requests"
},
"free": true,
"type": "free",
"availableCountries": [
"*"
]
},
"builders": {
"react": "3.x",
"store": "0.x",
"pixel": "0.x",
"docs": "0.x"
},
"dependencies": {
"vtex.pixel-interfaces": "1.x"
},
"settingsSchema": {
"title": "YOUR APP NAME",
"type": "object",
"properties": {
"gtmId": {
"title": "SAMPLE FIELD",
"description": "Enter the ID (GTM-XXXX) from your Google Tag Manager",
"type": "string"
}
}
},
"$schema": "https://raw.githubusercontent.com/vtex/node-vtex-api/master/gen/manifest.schema"
}