-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmanifest.json
executable file
·66 lines (66 loc) · 1.78 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
{
"vendor": "ssesandbox04",
"name": "threekit-app",
"version": "0.0.2",
"title": "ThreeKit App",
"description": "ThreeKit App (POC), using https://www.threekit.com",
"builders": {
"react": "3.x",
"messages": "1.x",
"docs": "0.x",
"store": "0.x"
},
"dependencies": {
"vtex.apps-graphql": "3.x",
"vtex.product-context": "0.x",
"vtex.formatted-price": "0.x",
"vtex.styleguide": "9.x",
"vtex.order-manager": "0.x",
"vtex.order-items": "0.x"
},
"registries": ["smartcheckout"],
"policies": [],
"settingsSchema": {
"title": "Threekit",
"type": "object",
"properties": {
"mode": {
"title": "Preview or Production mode?",
"type": "string",
"default": "preview",
"enum": ["preview", "production"],
"enumNames": ["Preview", "Production"]
},
"productionEnv": {
"title": "What is your environment domain?",
"description": "If you are going to use the preview environment, keep this input empty. Otherwise, enter your environment domain.",
"type": "string"
},
"orgId": {
"title": "Organization ID",
"description": "Enter the ORG ID",
"type": "string"
},
"assetId": {
"title": "Asset ID",
"description": "Enter the Asset ID",
"type": "string"
},
"stageId": {
"title": "Stage ID",
"description": "Enter the Stage ID",
"type": "string"
},
"publicToken": {
"title": "Public Token",
"description": "Enter the Public Token",
"type": "string"
}
}
},
"billingOptions": {
"type": "free",
"availableCountries": ["*"]
},
"$schema": "https://raw.githubusercontent.com/vtex/node-vtex-api/master/gen/manifest.schema"
}