forked from react-native-community/directory
-
Notifications
You must be signed in to change notification settings - Fork 0
/
react-native-libraries.schema.json
116 lines (116 loc) · 3.28 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
{
"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 Githuburl 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]
},
"expo": {
"$id": "#/items/properties/expo",
"type": "boolean",
"title": "The Expo 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 Npmpkg Schema",
"default": "",
"examples": ["@expo/ex-navigation"],
"pattern": "^(.*)$"
},
"unmaintained": {
"$id": "#/items/properties/unmaintained",
"type": "boolean",
"title": "The Unmaintained Schema",
"default": false,
"examples": [true]
},
"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"],
"pattern": "^(http(s?):)([/|.|+|\\w|\\s|-])*\\.(?:jp(e?)g|gif|png)$"
}
},
"nameOverride": {
"$id": "#/items/properties/nameOverride",
"type": "string",
"title": "Optional property to override the name provided by npm and GitHub",
"default": "",
"examples": ["react-navigation"],
"pattern": "^(.*)$"
},
"dev": {
"$id": "#/items/properties/dev",
"type": "boolean",
"title": "The Development Tool Schema",
"default": false,
"examples": [true]
}
}
}
}