@simeonradivoev/gameflow-store 0.0.2 → 0.0.5

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,143 +1,150 @@
1
- {
2
- "$schema": "http://json-schema.org/draft-07/schema#",
3
- "type": "object",
4
- "properties": {
5
- "name": {
6
- "type": "string"
7
- },
8
- "description": {
9
- "type": "string"
10
- },
11
- "homepage": {
12
- "type": "string",
13
- "format": "uri"
14
- },
15
- "logo": {
16
- "type": "string",
17
- "format": "uri"
18
- },
19
- "license": {
20
- "type": "object",
21
- "properties": {
22
- "identifier": {
23
- "type": "string"
24
- },
25
- "url": {
26
- "type": "string",
27
- "format": "uri"
28
- }
29
- }
30
- },
31
- "repository": {
32
- "type": "object",
33
- "properties": {
34
- "type": {
35
- "type": "string",
36
- "enum": [
37
- "git"
38
- ]
39
- },
40
- "url": {
41
- "type": "string",
42
- "format": "uri"
43
- }
44
- }
45
- },
46
- "downloads": {
47
- "type": "object",
48
- "patternProperties": {
49
- "^(?:(aix|darwin|freebsd|linux|openbsd|sunos|win32|android):(arm|arm64|ia32|mips|mipsel|ppc|ppc64|s390|s390x|x32|x64))*$": {
50
- "type": "array",
51
- "items": {
52
- "type": "object",
53
- "properties": {
54
- "type": {
55
- "type": "string",
56
- "enum": [
57
- "github",
58
- "gitlab"
59
- ]
60
- },
61
- "url": {
62
- "type": "string",
63
- "format": "uri"
64
- },
65
- "path": {
66
- "type": "string"
67
- },
68
- "bin": {
69
- "type": "string"
70
- },
71
- "pattern": {
72
- "type": "string"
73
- }
74
- },
75
- "additionalProperties": false,
76
- "required": [
77
- "type",
78
- "pattern"
79
- ]
80
- }
81
- }
82
- },
83
- "additionalProperties": false
84
- },
85
- "aliases": {
86
- "type": "object",
87
- "properties": {
88
- "winget": {
89
- "type": "string"
90
- },
91
- "scoop": {
92
- "type": "string"
93
- },
94
- "flatpak": {
95
- "type": "string"
96
- }
97
- },
98
- "additionalProperties": false
99
- },
100
- "type": {
101
- "type": "string",
102
- "enum": [
103
- "emulator"
104
- ]
105
- },
106
- "systems": {
107
- "type": "array",
108
- "items": {
109
- "type": "string"
110
- }
111
- },
112
- "os": {
113
- "type": "array",
114
- "items": {
115
- "type": "string"
116
- }
117
- },
118
- "keywords": {
119
- "type": "array",
120
- "items": {
121
- "type": "string"
122
- }
123
- },
124
- "funding": {
125
- "type": "string",
126
- "format": "uri"
127
- },
128
- "notes": {
129
- "type": "array",
130
- "items": {
131
- "type": "string"
132
- }
133
- }
134
- },
135
- "required": [
136
- "name",
137
- "description",
138
- "logo",
139
- "license",
140
- "type"
141
- ],
142
- "additionalProperties": false
1
+ {
2
+ "$schema": "http://json-schema.org/draft-07/schema#",
3
+ "type": "object",
4
+ "properties": {
5
+ "name": {
6
+ "type": "string"
7
+ },
8
+ "description": {
9
+ "type": "string"
10
+ },
11
+ "homepage": {
12
+ "type": "string",
13
+ "format": "uri"
14
+ },
15
+ "logo": {
16
+ "type": "string",
17
+ "format": "uri"
18
+ },
19
+ "license": {
20
+ "type": "object",
21
+ "properties": {
22
+ "identifier": {
23
+ "type": "string"
24
+ },
25
+ "url": {
26
+ "type": "string",
27
+ "format": "uri"
28
+ }
29
+ }
30
+ },
31
+ "bios": {
32
+ "type": "string",
33
+ "enum": [
34
+ "required",
35
+ "optional"
36
+ ]
37
+ },
38
+ "repository": {
39
+ "type": "object",
40
+ "properties": {
41
+ "type": {
42
+ "type": "string",
43
+ "enum": [
44
+ "git"
45
+ ]
46
+ },
47
+ "url": {
48
+ "type": "string",
49
+ "format": "uri"
50
+ }
51
+ }
52
+ },
53
+ "downloads": {
54
+ "type": "object",
55
+ "patternProperties": {
56
+ "^(?:(aix|darwin|freebsd|linux|openbsd|sunos|win32|android):(arm|arm64|ia32|mips|mipsel|ppc|ppc64|s390|s390x|x32|x64))*$": {
57
+ "type": "array",
58
+ "items": {
59
+ "type": "object",
60
+ "properties": {
61
+ "type": {
62
+ "type": "string",
63
+ "enum": [
64
+ "github",
65
+ "gitlab"
66
+ ]
67
+ },
68
+ "url": {
69
+ "type": "string",
70
+ "format": "uri"
71
+ },
72
+ "path": {
73
+ "type": "string"
74
+ },
75
+ "bin": {
76
+ "type": "string"
77
+ },
78
+ "pattern": {
79
+ "type": "string"
80
+ }
81
+ },
82
+ "additionalProperties": false,
83
+ "required": [
84
+ "type",
85
+ "pattern"
86
+ ]
87
+ }
88
+ }
89
+ },
90
+ "additionalProperties": false
91
+ },
92
+ "aliases": {
93
+ "type": "object",
94
+ "properties": {
95
+ "winget": {
96
+ "type": "string"
97
+ },
98
+ "scoop": {
99
+ "type": "string"
100
+ },
101
+ "flatpak": {
102
+ "type": "string"
103
+ }
104
+ },
105
+ "additionalProperties": false
106
+ },
107
+ "type": {
108
+ "type": "string",
109
+ "enum": [
110
+ "emulator"
111
+ ]
112
+ },
113
+ "systems": {
114
+ "type": "array",
115
+ "items": {
116
+ "type": "string"
117
+ }
118
+ },
119
+ "os": {
120
+ "type": "array",
121
+ "items": {
122
+ "type": "string"
123
+ }
124
+ },
125
+ "keywords": {
126
+ "type": "array",
127
+ "items": {
128
+ "type": "string"
129
+ }
130
+ },
131
+ "funding": {
132
+ "type": "string",
133
+ "format": "uri"
134
+ },
135
+ "notes": {
136
+ "type": "array",
137
+ "items": {
138
+ "type": "string"
139
+ }
140
+ }
141
+ },
142
+ "required": [
143
+ "name",
144
+ "description",
145
+ "logo",
146
+ "license",
147
+ "type"
148
+ ],
149
+ "additionalProperties": false
143
150
  }