-
Notifications
You must be signed in to change notification settings - Fork 494
/
react-native-libraries.schema.json
188 lines (188 loc) · 5.02 KB
/
react-native-libraries.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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
{
"definitions": {},
"$schema": "http://json-schema.org/draft-07/schema#",
"$id": "http://example.com/root.json",
"type": "array",
"title": "The Root Schema",
"items": {
"$id": "#/items",
"type": "object",
"title": "The Items Schema",
"required": [
"githubUrl"
],
"properties": {
"githubUrl": {
"$id": "#/items/properties/githubUrl",
"type": "string",
"title": "The GitHub URL Schema",
"default": "",
"examples": [
"https://github.com/joshswan/react-native-autolink"
],
"pattern": "^(.*)$"
},
"ios": {
"$id": "#/items/properties/ios",
"type": "boolean",
"title": "The iOS Schema",
"default": false,
"examples": [
true
]
},
"android": {
"$id": "#/items/properties/android",
"type": "boolean",
"title": "The Android Schema",
"default": false,
"examples": [
true
]
},
"windows": {
"$id": "#/items/properties/windows",
"type": "boolean",
"title": "The Windows Schema",
"default": false,
"examples": [
true
]
},
"macos": {
"$id": "#/items/properties/macos",
"type": "boolean",
"title": "The macOS Schema",
"default": false,
"examples": [
true
]
},
"expoGo": {
"$id": "#/items/properties/expo",
"type": "boolean",
"title": "The Expo Go Schema",
"default": false,
"examples": [
true
]
},
"examples": {
"$id": "#/items/properties/examples",
"type": "array",
"title": "The Examples Schema",
"default": null,
"items": {
"$id": "#/items/properties/examples/items",
"type": "string",
"title": "The Items Schema",
"default": "",
"examples": [
"https://snack.expo.io/SkRP2Ehrb"
],
"pattern": "^(.*)$"
}
},
"npmPkg": {
"$id": "#/items/properties/npmPkg",
"type": "string",
"title": "The NPM Package Name Schema",
"default": "",
"examples": [
"@expo/ex-navigation"
],
"pattern": "^(@[a-z0-9-~][a-z0-9-._~]*/)?[a-z0-9-~][a-z0-9-._~]*$"
},
"unmaintained": {
"$id": "#/items/properties/unmaintained",
"type": [
"boolean",
"string"
],
"title": "The Unmaintained Schema",
"default": false,
"examples": [
true,
"expo-image"
]
},
"images": {
"$id": "#/items/properties/images",
"type": "array",
"title": "The Images Schema",
"default": [
null
],
"items": {
"$id": "#/items/properties/images/items",
"type": "string",
"title": "The Image Schema",
"default": "",
"examples": [
"https://reactnative.dev/img/homepage/phones.png",
"https://github.com/mattermost/react-native-paste-input/blob/master/example/gifs/iOSPasteInput.gif?raw=true"
],
"pattern": "^(http(s?):)(\\w|\\/|\\.|:|-|%|\\+|\\*)+\\.(?:jp(e?)g|gif|png|webp|JP(E?)G|GIF|PNG|WEBP)(\\?\\S*)?$"
}
},
"dev": {
"$id": "#/items/properties/dev",
"type": "boolean",
"title": "The Development Tool Schema",
"default": false,
"examples": [
true
]
},
"template": {
"$id": "#/items/properties/template",
"type": "boolean",
"title": "The Template Schema",
"default": false,
"examples": [
true
]
},
"newArchitecture": {
"$id": "#/items/properties/newArchitecture",
"type": [
"boolean",
"string"
],
"title": "The New Architecture Support Schema",
"default": false,
"examples": [
true,
"Only iOS supported"
]
},
"newArchitectureNote": {
"$id": "#/items/properties/newArchitectureNote",
"type": "string",
"title": "Optional note about the New Architecture support",
"default": "",
"examples": [
"Refer to https://github.com/MinaSamir11/react-native-in-app-review/issues/169 for the latest status"
]
},
"alternatives": {
"$id": "#/items/properties/alternatives",
"type": "array",
"title": "Optional alternative libraries to use, if the library is not maintained anymore or does not support the New Architecture",
"default": [
null
],
"items": {
"$id": "#/items/properties/alternatives/items",
"type": "string",
"title": "Alternative library",
"default": "",
"examples": [
"expo-image"
],
"pattern": "^(@[a-z0-9-~][a-z0-9-._~]*/)?[a-z0-9-~][a-z0-9-._~]*$"
}
}
}
}
}