@simeonradivoev/gameflow-store 0.1.3 → 0.1.4

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.
@@ -0,0 +1 @@
1
+ {"emulators":[{"name":"AZAHAR","logo":"https://azahar-emu.org/resources/images/logo/azahar-logo.svg","homepage":"https://azahar-emu.org/","os":["win32","linux","darwin","android"]},{"name":"CEMU","logo":"https://upload.wikimedia.org/wikipedia/commons/9/9e/Cemu_Emulator_Official_Logo.png","homepage":"https://cemu.info/","os":["win32","linux","darwin"]},{"name":"DOLPHIN","logo":"https://upload.wikimedia.org/wikipedia/commons/5/53/Dolphin_Emulator_Logo_Refresh.svg","homepage":"https://dolphin-emu.org/","os":["win32","linux","darwin"]},{"name":"DUCKSTATION","logo":"https://www.duckstation.org/assets/img/duck_head.svg","homepage":"https://www.duckstation.org/","os":["win32","linux","darwin"]},{"name":"PCSX2","logo":"https://upload.wikimedia.org/wikipedia/commons/2/2b/PCSX2_logo4.png","homepage":"https://pcsx2.net/","os":["darwin","linux","win32"]},{"name":"PPSSPP","logo":"https://www.ppsspp.org/static/img/platform/ppsspp-icon.png","homepage":"https://www.ppsspp.org/","os":["win32","darwin","linux"]},{"name":"RPCS3","logo":"https://upload.wikimedia.org/wikipedia/commons/c/c5/RPCS3_logo.png","homepage":"https://rpcs3.net/","os":["win32","darwin","linux"]},{"name":"RYUJINX","logo":"https://raw.githubusercontent.com/Ryubing/Assets/refs/heads/main/RyujinxApp_1024.png","homepage":"https://ryujinx.app/","os":["win32","linux","darwin"]},{"name":"UMU","logo":"https://avatars.githubusercontent.com/u/119976475","homepage":"https://github.com/Open-Wine-Components/umu-launcher","os":["linux"]},{"name":"XEMU","logo":"https://upload.wikimedia.org/wikipedia/commons/8/8e/Xemu_logo_green.svg","homepage":"https://xemu.app/","os":["win32","linux","darwin"]},{"name":"XENIA-EDGE","logo":"https://raw.githubusercontent.com/xenia-canary/xenia/master/assets/icon/256.png","homepage":"https://xenia.jp","os":["win32"]},{"name":"XENIA","logo":"https://xenia.jp/images/logo-256x256.png","homepage":"https://xenia.jp","os":["win32"]}]}
@@ -1,28 +1 @@
1
- {
2
- "genres": [
3
- "Puzzle",
4
- "Indie",
5
- "Arcade",
6
- "Shooter",
7
- "Platform"
8
- ],
9
- "keywords": [
10
- "open-source",
11
- "homebrew",
12
- "retroachievements",
13
- "quake",
14
- "jam",
15
- "brutalism",
16
- "brutalist",
17
- "qbj3"
18
- ],
19
- "player_counts": [
20
- "1"
21
- ],
22
- "companies": [
23
- "akouzoukos",
24
- "Slipseer",
25
- "HuCABBAGE"
26
- ],
27
- "game_count": 3
28
- }
1
+ {"genres":["Puzzle","Indie","Arcade","Shooter","Platform"],"keywords":["open-source","homebrew","retroachievements","quake","jam","brutalism","brutalist","qbj3"],"player_counts":["1"],"companies":["akouzoukos","Slipseer","HuCABBAGE"],"game_count":3}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@simeonradivoev/gameflow-store",
3
- "version": "0.1.3",
3
+ "version": "0.1.4",
4
4
  "author": {
5
5
  "name": "Simeon Radivoev",
6
6
  "email": "work@simeonradivoev.com",
@@ -29,6 +29,7 @@
29
29
  }
30
30
  },
31
31
  "bios": {
32
+ "description": "Is a bios needed for the emulator to run or is it optional",
32
33
  "type": "string",
33
34
  "enum": [
34
35
  "required",
@@ -52,6 +53,10 @@
52
53
  },
53
54
  "downloads": {
54
55
  "type": "object",
56
+ "description": "This is downloads based on the system and architecture the download will work on. They should be bun compatible platform and arch separated by `:`",
57
+ "examples": [
58
+ "win32:x64"
59
+ ],
55
60
  "patternProperties": {
56
61
  "^(?:(aix|darwin|freebsd|linux|openbsd|sunos|win32|android):(arm|arm64|ia32|mips|mipsel|ppc|ppc64|s390|s390x|x32|x64))*$": {
57
62
  "type": "array",
@@ -68,12 +73,19 @@
68
73
  "format": "uri"
69
74
  },
70
75
  "bin": {
76
+ "description": "The bin file for the emulator used to launch it",
71
77
  "type": "string"
72
78
  },
73
79
  "pattern": {
80
+ "description": "This is a glob supported pattern for the file to be downloaded from the github releases",
74
81
  "type": "string"
75
82
  },
76
83
  "path": {
84
+ "description": "This is the path version of the github address.",
85
+ "examples": [
86
+ "cemu-project/Cemu",
87
+ "PCSX2/pcsx2"
88
+ ],
77
89
  "type": "string"
78
90
  }
79
91
  },
@@ -147,6 +159,12 @@
147
159
  ]
148
160
  },
149
161
  "systems": {
162
+ "description": "This is the system slugs the game is for. This should be romm or es-de compatible slugs.",
163
+ "examples": [
164
+ "ps2",
165
+ "wii",
166
+ "gba"
167
+ ],
150
168
  "type": "array",
151
169
  "items": {
152
170
  "type": "string"
@@ -154,6 +172,7 @@
154
172
  },
155
173
  "os": {
156
174
  "type": "array",
175
+ "description": "A list of systems the emulator works on. Should be bun compatible platforms",
157
176
  "items": {
158
177
  "type": "string"
159
178
  }
package/schema/game.json CHANGED
@@ -28,6 +28,7 @@
28
28
  },
29
29
  "saves": {
30
30
  "type": "object",
31
+ "description": "Glob based location of save files per platform and architecture.",
31
32
  "patternProperties": {
32
33
  ".*": {
33
34
  "type": "object",
@@ -36,9 +37,11 @@
36
37
  "type": "object",
37
38
  "properties": {
38
39
  "cwd": {
40
+ "description": "Root Directory of the sames. Supports environmental variables using mustache templating. Saves will keep sub directory layout based on this root.",
39
41
  "type": "string"
40
42
  },
41
43
  "globs": {
44
+ "description": "Glob pattern for the save files",
42
45
  "type": "array",
43
46
  "items": {
44
47
  "type": "string"
@@ -51,6 +54,7 @@
51
54
  }
52
55
  },
53
56
  "downloads": {
57
+ "description": "All download locations for the game.",
54
58
  "type": "object",
55
59
  "patternProperties": {
56
60
  ".*": {
@@ -62,16 +66,24 @@
62
66
  "const": "direct"
63
67
  },
64
68
  "url": {
69
+ "description": "The download URL",
65
70
  "type": "string",
66
71
  "format": "uri"
67
72
  },
68
73
  "system": {
74
+ "description": "Platform and architecture the game download is for. Works with bun compatible platform and architecture with `:` as separator",
75
+ "examples": [
76
+ "win32:x64",
77
+ "linux:arm64"
78
+ ],
69
79
  "type": "string"
70
80
  },
71
81
  "name": {
82
+ "description": "Name for the download options as it will appear in the UI",
72
83
  "type": "string"
73
84
  },
74
85
  "main": {
86
+ "description": "Glob ofr the main executable file.",
75
87
  "type": "string"
76
88
  },
77
89
  "saves": {
@@ -139,12 +151,15 @@
139
151
  }
140
152
  },
141
153
  "system": {
154
+ "description": "Global system and architecture of the game. Uses bun compatible platform and arch separated by `:`",
142
155
  "type": "string"
143
156
  },
144
157
  "igdb_id": {
158
+ "description": "IGDB ID for the game. Will be used to fetch and update metadata",
145
159
  "type": "number"
146
160
  },
147
161
  "ra_id": {
162
+ "description": "Retro Achievements ID",
148
163
  "type": "number"
149
164
  },
150
165
  "sgdb_id": {