-
Notifications
You must be signed in to change notification settings - Fork 807
Expand file tree
/
Copy pathreact-native-libraries.schema.json
More file actions
195 lines (195 loc) · 6.99 KB
/
react-native-libraries.schema.json
File metadata and controls
195 lines (195 loc) · 6.99 KB
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
189
190
191
192
193
194
195
{
"$schema": "http://json-schema.org/draft-07/schema#",
"$id": "https://github.com/react-native-community/directory/blob/main/react-native-libraries.schema.json",
"type": "array",
"title": "React Native Directory entries list",
"items": {
"$id": "#/items",
"type": "object",
"title": "React Native Directory package entry",
"required": ["githubUrl"],
"additionalProperties": false,
"properties": {
"githubUrl": {
"$id": "#/items/properties/githubUrl",
"type": "string",
"title": "Package GitHub repository URL",
"default": "",
"pattern": "^(https?://)?(www\\.)?github\\.com/[A-Za-z0-9_.-]+/[A-Za-z0-9_.-]+(/tree/[A-Za-z0-9_.@%\\-/]+)?/?$",
"examples": [
"https://github.com/joshswan/react-native-autolink",
"https://github.com/GetStream/stream-chat-react-native/tree/develop/package/expo-package"
]
},
"ios": {
"$id": "#/items/properties/ios",
"type": "boolean",
"title": "Package supports iOS",
"default": false
},
"android": {
"$id": "#/items/properties/android",
"type": "boolean",
"title": "Package supports Android",
"default": false
},
"web": {
"$id": "#/items/properties/web",
"type": "boolean",
"title": "Package supports Web (react-native-web)",
"default": false
},
"windows": {
"$id": "#/items/properties/windows",
"type": "boolean",
"title": "Package supports Windows (react-native-windows)",
"default": false
},
"macos": {
"$id": "#/items/properties/macos",
"type": "boolean",
"title": "Package supports macOS (react-native-macos)",
"default": false
},
"tvos": {
"$id": "#/items/properties/tvos",
"type": "boolean",
"title": "Package supports tvOS (react-native-tvos)",
"default": false
},
"visionos": {
"$id": "#/items/properties/visionos",
"type": "boolean",
"title": "Package supports visionOS (react-native-visionos)",
"default": false
},
"fireos": {
"$id": "#/items/properties/fireos",
"type": "boolean",
"title": "Package is compatible with Amazon Fire OS",
"default": false
},
"horizon": {
"$id": "#/items/properties/horizon",
"type": "boolean",
"title": "Package is compatible with Meta Horizon OS",
"default": false
},
"vegaos": {
"$id": "#/items/properties/vegaos",
"type": ["boolean", "string"],
"title": "Package is compatible with Amazon Vega OS. Can be a boolean, or string containing the dedicated package package name from npm registry.",
"default": false,
"examples": [true, "@amazon-devices/react-native-async-storage__async-storage"]
},
"expoGo": {
"$id": "#/items/properties/expo",
"type": "boolean",
"title": "Package is compatible with Expo Go",
"default": false
},
"examples": {
"$id": "#/items/properties/examples",
"type": "array",
"title": "List of example projects or Snacks URLs",
"default": null,
"items": {
"$id": "#/items/properties/examples/items",
"type": "string",
"title": "Example entry URL",
"default": "",
"examples": [
"https://github.com/expo/examples/tree/master/with-video-background",
"https://snack.expo.io/SkRP2Ehrb"
],
"pattern": "^(.*)$"
}
},
"images": {
"$id": "#/items/properties/images",
"type": "array",
"title": "List of image URLs demonstrating package functionality",
"default": [null],
"items": {
"$id": "#/items/properties/images/items",
"type": "string",
"title": "Image entry URL",
"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*)?$"
}
},
"npmPkg": {
"$id": "#/items/properties/npmPkg",
"type": "string",
"title": "npm package name in the registry (mostly for scoped packages)",
"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",
"title": "Package is unmaintained or archived",
"default": false
},
"dev": {
"$id": "#/items/properties/dev",
"type": "boolean",
"title": "Package is a Development Tool (should be installed as `devDependency` or used via `npx/bunx`)",
"default": false
},
"template": {
"$id": "#/items/properties/template",
"type": "boolean",
"title": "Entry is a project template",
"default": false
},
"newArchitecture": {
"$id": "#/items/properties/newArchitecture",
"type": ["boolean", "string"],
"enum": [true, false, "new-arch-only"],
"title": "Package supports New Architecture. Can be a boolean, or 'new-arch-only' string, if package only supports New Architecture.",
"default": false,
"examples": [true, "new-arch-only"]
},
"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",
"Only iOS supported"
]
},
"configPlugin": {
"$id": "#/items/properties/configPlugin",
"type": ["boolean", "string"],
"title": "Package includes Expo config plugin or confing plugin is available via separate package. Can be a boolean, or URL pointing to GitHub repository of config plugin package.",
"default": false,
"examples": [
true,
"https://github.com/expo/config-plugins/tree/main/packages/react-native-pdf"
]
},
"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 npm package name",
"default": "",
"examples": ["expo-image"],
"pattern": "^(@[a-z0-9-~][a-z0-9-._~]*/)?[a-z0-9-~][a-z0-9-._~]*$"
}
}
}
}
}