-
-
Notifications
You must be signed in to change notification settings - Fork 14
/
Bundler.schema.json
67 lines (67 loc) · 2.09 KB
/
Bundler.schema.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
{
"$schema" : "https:\/\/json-schema.org\/draft\/2020-12\/schema",
"description" : "A Swift Bundler configuration file",
"properties" : {
"apps" : {
"description" : "The configuration for each app in the package (packages can contain multiple apps). Maps app name to app configuration.",
"patternProperties" : {
"^.*$" : {
"properties" : {
"category" : {
"description" : "The app's category. See [Apple's documentation](https:\/\/developer.apple.com\/documentation\/bundleresources\/information_property_list\/lsapplicationcategorytype) for more details.",
"type" : "string"
},
"icon" : {
"description" : "The path to the app's icon.",
"type" : "string"
},
"identifier" : {
"description" : "The app's identifier (e.g. `com.example.ExampleApp`).",
"type" : "string"
},
"plist" : {
"description" : "A dictionary containing extra entries to add to the app's `Info.plist` file.",
"patternProperties" : {
"^.*$" : {
"type" : [
"number",
"string",
"object",
"array",
"boolean"
]
}
},
"type" : "object"
},
"product" : {
"description" : "The name of the executable product.",
"type" : "string"
},
"version" : {
"description" : "The app's current version.",
"type" : "string"
}
},
"required" : [
"identifier",
"product",
"version"
],
"type" : "object"
}
},
"type" : "object"
},
"format_version" : {
"description" : "The configuration format version.",
"type" : "integer"
}
},
"required" : [
"format_version",
"apps"
],
"title" : "Bundler.toml",
"type" : "object"
}