loredata 0.1.0 → 0.2.0

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.
Files changed (42) hide show
  1. package/README.md +33 -5
  2. package/data/breaking-bad/characters.json +36 -7
  3. package/data/breaking-bad/meta.json +3 -1
  4. package/data/fast-and-furious/characters.json +26 -7
  5. package/data/fast-and-furious/meta.json +3 -1
  6. package/data/friends/characters.json +128 -22
  7. package/data/friends/meta.json +6 -1
  8. package/data/game-of-thrones/characters.json +45 -15
  9. package/data/game-of-thrones/meta.json +3 -1
  10. package/data/harry-potter/characters.json +30 -7
  11. package/data/harry-potter/meta.json +3 -1
  12. package/data/house-md/characters.json +58 -15
  13. package/data/house-md/meta.json +6 -1
  14. package/data/lost/characters.json +120 -24
  15. package/data/lost/meta.json +6 -1
  16. package/data/matrix/characters.json +112 -24
  17. package/data/matrix/meta.json +6 -1
  18. package/data/peaky-blinders/characters.json +33 -11
  19. package/data/peaky-blinders/meta.json +6 -1
  20. package/data/sherlock/characters.json +99 -19
  21. package/data/sherlock/meta.json +6 -1
  22. package/data/the-office/characters.json +55 -15
  23. package/data/the-office/meta.json +3 -1
  24. package/dist/browser.cjs +107 -8
  25. package/dist/browser.cjs.map +1 -1
  26. package/dist/browser.d.cts +7 -3
  27. package/dist/browser.d.ts +7 -3
  28. package/dist/browser.js +103 -8
  29. package/dist/browser.js.map +1 -1
  30. package/dist/cli/cli.cjs +109 -16
  31. package/dist/cli/cli.cjs.map +1 -1
  32. package/dist/cli/cli.js +110 -17
  33. package/dist/cli/cli.js.map +1 -1
  34. package/dist/index.cjs +110 -15
  35. package/dist/index.cjs.map +1 -1
  36. package/dist/index.d.cts +14 -4
  37. package/dist/index.d.ts +14 -4
  38. package/dist/index.js +110 -16
  39. package/dist/index.js.map +1 -1
  40. package/dist/{universe-store-DJrm7bP7.d.cts → universe-store-Del1UHgn.d.cts} +11 -9
  41. package/dist/{universe-store-DJrm7bP7.d.ts → universe-store-Del1UHgn.d.ts} +11 -9
  42. package/package.json +9 -4
package/README.md CHANGED
@@ -8,11 +8,26 @@
8
8
 
9
9
  Generate fake personas using real characters from pop culture universes. Every field — name, email, address, profession, quote — comes from the same fictional world.
10
10
 
11
+ **Demo:** [loredata.orchidfiles.com](https://loredata.orchidfiles.com)
12
+
11
13
  ```ts
12
14
  import { person, group } from 'loredata';
13
15
 
14
16
  const p = person({ universe: 'breaking-bad' });
15
- // { firstName: 'Walter', lastName: 'White', email: 'heisenberg@lospollos.com', ... }
17
+ // {
18
+ // firstName: 'Walter',
19
+ // lastName: 'White',
20
+ // username: 'heisenberg',
21
+ // email: 'blue_sky_cook@lospollos.com',
22
+ // quote: "I am the one who knocks.",
23
+ // profession: 'chemistry teacher',
24
+ // interests: ['chemistry', 'cooking', 'family'],
25
+ // address: { street: '308 Negra Arroyo Lane', city: 'Albuquerque', state: 'NM' },
26
+ // symbol: '☢️',
27
+ // color: '#4c1d95',
28
+ // universe: 'breaking-bad',
29
+ // universeName: 'Breaking Bad'
30
+ // }
16
31
 
17
32
  const team = group({ universe: 'game-of-thrones', size: 3 });
18
33
  ```
@@ -34,15 +49,21 @@ import { universes } from 'loredata';
34
49
 
35
50
  universes();
36
51
  // [
37
- // { id: 'sherlock', name: 'Sherlock', characterCount: 9 },
38
- // { id: 'game-of-thrones', name: 'Game of Thrones', characterCount: 15 },
52
+ // { id: 'sherlock', name: 'Sherlock', genre: ['crime', 'drama', 'mystery'], description: '...' },
53
+ // { id: 'game-of-thrones', name: 'Game of Thrones', genre: ['fantasy', 'drama', 'action'], description: '...' },
39
54
  // ...
40
55
  // ]
41
56
  ```
42
57
 
43
58
  ## Persona fields
44
59
 
45
- Each `Person` includes: `firstName`, `lastName`, `username`, `email`, `password`, `phone`, `address`, `profession`, `interests`, `quote`, `avatar`, `universe`.
60
+ Each `Person` includes:
61
+
62
+ - `firstName`, `lastName`
63
+ - `username`, `email`, `password`, `phone`
64
+ - `address`, `profession`, `interests`
65
+ - `quote`, `symbol`, `color`
66
+ - `universe`, `universeName`
46
67
 
47
68
  ## Deterministic output
48
69
 
@@ -55,7 +76,10 @@ const p = person({ universe: 'matrix', seed: 42 });
55
76
  ## Browser
56
77
 
57
78
  ```ts
58
- import { UniverseStore } from 'loredata/browser';
79
+ import { loadUniverse, personFromData } from 'loredata/browser';
80
+
81
+ const universe = await loadUniverse('breaking-bad');
82
+ const p = personFromData(universe);
59
83
  ```
60
84
 
61
85
  No `fs` or `path` — safe for Vite, webpack, and any browser bundler.
@@ -64,6 +88,9 @@ No `fs` or `path` — safe for Vite, webpack, and any browser bundler.
64
88
 
65
89
  ```sh
66
90
  npx loredata person --universe breaking-bad
91
+ npx loredata person --universe breaking-bad --format json
92
+ npx loredata person --interests chemistry,cooking
93
+ npx loredata person --name walter
67
94
  npx loredata group --universe friends --size 5
68
95
  npx loredata universes
69
96
  ```
@@ -76,6 +103,7 @@ npx loredata universes
76
103
  - [x] Deterministic output via seed
77
104
  - [x] Browser-safe entry point
78
105
  - [x] CLI tool
106
+ - [x] Character symbol and color fields
79
107
 
80
108
  ## Development
81
109
 
@@ -15,7 +15,14 @@
15
15
  ],
16
16
  "gender": "male",
17
17
  "birthYear": 1959,
18
- "address": { "street": "308 Negra Arroyo Lane", "city": "Albuquerque", "state": "NM", "country": "US" }
18
+ "address": {
19
+ "street": "308 Negra Arroyo Lane",
20
+ "city": "Albuquerque",
21
+ "state": "NM",
22
+ "country": "US"
23
+ },
24
+ "symbol": "☢️",
25
+ "color": "#4c1d95"
19
26
  },
20
27
  {
21
28
  "id": "jesse-pinkman",
@@ -32,7 +39,9 @@
32
39
  "Maybe. But some people are just... broken."
33
40
  ],
34
41
  "gender": "male",
35
- "birthYear": 1984
42
+ "birthYear": 1984,
43
+ "symbol": "🎨",
44
+ "color": "#0c4a6e"
36
45
  },
37
46
  {
38
47
  "id": "saul-goodman",
@@ -49,7 +58,14 @@
49
58
  "I fight for you, Albuquerque!"
50
59
  ],
51
60
  "gender": "male",
52
- "address": { "street": "160 Juan Tabo Blvd NE", "city": "Albuquerque", "state": "NM", "country": "US" }
61
+ "address": {
62
+ "street": "160 Juan Tabo Blvd NE",
63
+ "city": "Albuquerque",
64
+ "state": "NM",
65
+ "country": "US"
66
+ },
67
+ "symbol": "⚖️",
68
+ "color": "#4a1942"
53
69
  },
54
70
  {
55
71
  "id": "skyler-white",
@@ -65,7 +81,9 @@
65
81
  "I don't know what to do.",
66
82
  "You've lied to me, manipulated me."
67
83
  ],
68
- "gender": "female"
84
+ "gender": "female",
85
+ "symbol": "💼",
86
+ "color": "#134e4a"
69
87
  },
70
88
  {
71
89
  "id": "hank-schrader",
@@ -81,7 +99,9 @@
81
99
  "This is my chance to catch the big one.",
82
100
  "Minerals, not rocks."
83
101
  ],
84
- "gender": "male"
102
+ "gender": "male",
103
+ "symbol": "🔍",
104
+ "color": "#3b1f0a"
85
105
  },
86
106
  {
87
107
  "id": "gustavo-fring",
@@ -99,7 +119,14 @@
99
119
  ],
100
120
  "gender": "male",
101
121
  "birthYear": 1958,
102
- "address": { "street": "4257 Isleta Blvd SW", "city": "Albuquerque", "state": "NM", "country": "US" }
122
+ "address": {
123
+ "street": "4257 Isleta Blvd SW",
124
+ "city": "Albuquerque",
125
+ "state": "NM",
126
+ "country": "US"
127
+ },
128
+ "symbol": "🍗",
129
+ "color": "#1e3a5f"
103
130
  },
104
131
  {
105
132
  "id": "mike-ehrmantraut",
@@ -115,6 +142,8 @@
115
142
  "Everyone sounds like Meryl Streep with a gun to their head.",
116
143
  "You talk too much."
117
144
  ],
118
- "gender": "male"
145
+ "gender": "male",
146
+ "symbol": "🧹",
147
+ "color": "#9333ea"
119
148
  }
120
149
  ]
@@ -1,4 +1,6 @@
1
1
  {
2
2
  "id": "breaking-bad",
3
- "name": "Breaking Bad"
3
+ "name": "Breaking Bad",
4
+ "genre": ["crime", "drama", "thriller"],
5
+ "description": "A high school chemistry teacher turned methamphetamine manufacturer navigates the criminal underworld of Albuquerque, New Mexico."
4
6
  }
@@ -14,7 +14,14 @@
14
14
  "Nobody makes me do anything I don't want to."
15
15
  ],
16
16
  "gender": "male",
17
- "address": {"street": "1327 East Adams Boulevard", "city": "Los Angeles", "state": "CA", "country": "US"}
17
+ "address": {
18
+ "street": "1327 East Adams Boulevard",
19
+ "city": "Los Angeles",
20
+ "state": "CA",
21
+ "country": "US"
22
+ },
23
+ "symbol": "🏁",
24
+ "color": "#2563eb"
18
25
  },
19
26
  {
20
27
  "id": "brian-oconner",
@@ -30,7 +37,9 @@
30
37
  "You almost had me? You never had me.",
31
38
  "See you around, Dom."
32
39
  ],
33
- "gender": "male"
40
+ "gender": "male",
41
+ "symbol": "🚓",
42
+ "color": "#7c3aed"
34
43
  },
35
44
  {
36
45
  "id": "letty-ortiz",
@@ -46,7 +55,9 @@
46
55
  "You want me? You're gonna have to catch me first.",
47
56
  "This is who I am."
48
57
  ],
49
- "gender": "female"
58
+ "gender": "female",
59
+ "symbol": "🔧",
60
+ "color": "#083344"
50
61
  },
51
62
  {
52
63
  "id": "roman-pearce",
@@ -62,7 +73,9 @@
62
73
  "You know what I say? I say we take the money, we take the car, and we go.",
63
74
  "This is crazy. This is absolutely crazy."
64
75
  ],
65
- "gender": "male"
76
+ "gender": "male",
77
+ "symbol": "💸",
78
+ "color": "#083344"
66
79
  },
67
80
  {
68
81
  "id": "tej-parker",
@@ -78,7 +91,9 @@
78
91
  "I just need to reroute the transponder through the auxiliary grid.",
79
92
  "Money ain't a thing."
80
93
  ],
81
- "gender": "male"
94
+ "gender": "male",
95
+ "symbol": "💻",
96
+ "color": "#083344"
82
97
  },
83
98
  {
84
99
  "id": "han-lue",
@@ -94,7 +109,9 @@
94
109
  "Chaos, yeah. You know what that is? It's everything. It's your life.",
95
110
  "I have to try things for myself. That's just who I am."
96
111
  ],
97
- "gender": "male"
112
+ "gender": "male",
113
+ "symbol": "🍿",
114
+ "color": "#083344"
98
115
  },
99
116
  {
100
117
  "id": "hobbs",
@@ -110,6 +127,8 @@
110
127
  "You just earned yourself a dance with the devil, boy.",
111
128
  "I will beat you like a Cherokee drum."
112
129
  ],
113
- "gender": "male"
130
+ "gender": "male",
131
+ "symbol": "💪",
132
+ "color": "#7f1d1d"
114
133
  }
115
134
  ]
@@ -1,4 +1,6 @@
1
1
  {
2
2
  "id": "fast-and-furious",
3
- "name": "Fast & Furious"
3
+ "name": "Fast & Furious",
4
+ "genre": ["action", "thriller"],
5
+ "description": "A crew of street racers and ex-convicts take on increasingly dangerous heists and missions around the world."
4
6
  }
@@ -3,7 +3,13 @@
3
3
  "id": "ross-geller",
4
4
  "firstName": "Ross",
5
5
  "lastName": "Geller",
6
- "usernames": ["we_were_on_a_break", "divorcemaster_phd", "cookie_duuude", "pivot_guy", "homo_sapiens_are_people"],
6
+ "usernames": [
7
+ "we_were_on_a_break",
8
+ "divorcemaster_phd",
9
+ "cookie_duuude",
10
+ "pivot_guy",
11
+ "homo_sapiens_are_people"
12
+ ],
7
13
  "profession": "Paleontologist",
8
14
  "interests": ["dinosaurs", "paleontology", "archaeology", "coffee", "academia", "sci-fi"],
9
15
  "quotes": [
@@ -15,13 +21,21 @@
15
21
  "I'm going to be happy this year. I'm going to make myself happy."
16
22
  ],
17
23
  "gender": "male",
18
- "address": {"city": "New York", "state": "NY", "country": "US"}
24
+ "address": { "city": "New York", "state": "NY", "country": "US" },
25
+ "symbol": "🦕",
26
+ "color": "#3b1f0a"
19
27
  },
20
28
  {
21
29
  "id": "rachel-green",
22
30
  "firstName": "Rachel",
23
31
  "lastName": "Green",
24
- "usernames": ["got_off_the_plane", "who_is_fica", "steamed_milk_life", "not_a_library_card", "green_with_style"],
32
+ "usernames": [
33
+ "got_off_the_plane",
34
+ "who_is_fica",
35
+ "steamed_milk_life",
36
+ "not_a_library_card",
37
+ "green_with_style"
38
+ ],
25
39
  "profession": "Fashion Executive",
26
40
  "interests": ["fashion", "shopping", "coffee", "relationships", "style", "fitness"],
27
41
  "quotes": [
@@ -32,13 +46,26 @@
32
46
  "It's not that common, it doesn't happen to every guy, and it is a big deal!"
33
47
  ],
34
48
  "gender": "female",
35
- "address": {"street": "90 Bedford Street", "city": "New York", "state": "NY", "country": "US"}
49
+ "address": {
50
+ "street": "90 Bedford Street",
51
+ "city": "New York",
52
+ "state": "NY",
53
+ "country": "US"
54
+ },
55
+ "symbol": "👗",
56
+ "color": "#7f1d1d"
36
57
  },
37
58
  {
38
59
  "id": "chandler-bing",
39
60
  "firstName": "Chandler",
40
61
  "lastName": "Bing",
41
- "usernames": ["jokes_when_uncomfortable", "the_nubbin", "could_i_be_more_sarcastic", "transponster", "bing_no_first_name"],
62
+ "usernames": [
63
+ "jokes_when_uncomfortable",
64
+ "the_nubbin",
65
+ "could_i_be_more_sarcastic",
66
+ "transponster",
67
+ "bing_no_first_name"
68
+ ],
42
69
  "profession": "Statistical Analysis and Data Reconfiguration",
43
70
  "interests": ["TV", "sarcasm", "foosball", "comedy", "movies", "video games"],
44
71
  "quotes": [
@@ -50,13 +77,21 @@
50
77
  "I thought this was going to be the most difficult thing I ever had to do. But when I saw you walking down that aisle, I realized how simple it was. I love you."
51
78
  ],
52
79
  "gender": "male",
53
- "address": {"city": "New York", "state": "NY", "country": "US"}
80
+ "address": { "city": "New York", "state": "NY", "country": "US" },
81
+ "symbol": "😬",
82
+ "color": "#4a1942"
54
83
  },
55
84
  {
56
85
  "id": "monica-geller",
57
86
  "firstName": "Monica",
58
87
  "lastName": "Geller",
59
- "usernames": ["big_fat_goalie", "chef_mode_on", "eleven_towel_categories", "competitive_cook", "seven_erogenous_zones"],
88
+ "usernames": [
89
+ "big_fat_goalie",
90
+ "chef_mode_on",
91
+ "eleven_towel_categories",
92
+ "competitive_cook",
93
+ "seven_erogenous_zones"
94
+ ],
60
95
  "profession": "Chef",
61
96
  "interests": ["cooking", "cleaning", "competition", "catering", "organizing", "sports"],
62
97
  "quotes": [
@@ -67,15 +102,36 @@
67
102
  "I want a marriage."
68
103
  ],
69
104
  "gender": "female",
70
- "address": {"street": "90 Bedford Street", "city": "New York", "state": "NY", "country": "US"}
105
+ "address": {
106
+ "street": "90 Bedford Street",
107
+ "city": "New York",
108
+ "state": "NY",
109
+ "country": "US"
110
+ },
111
+ "symbol": "👨‍🍳",
112
+ "color": "#312e81"
71
113
  },
72
114
  {
73
115
  "id": "joey-tribbiani",
74
116
  "firstName": "Joey",
75
117
  "lastName": "Tribbiani",
76
- "usernames": ["how_you_doin", "joey_no_share_food", "drake_ramoray_md", "baby_kangaroo", "sandwich_first"],
118
+ "usernames": [
119
+ "how_you_doin",
120
+ "joey_no_share_food",
121
+ "drake_ramoray_md",
122
+ "baby_kangaroo",
123
+ "sandwich_first"
124
+ ],
77
125
  "profession": "Actor",
78
- "interests": ["food", "acting", "women", "sandwiches", "Days of Our Lives", "foosball", "sports"],
126
+ "interests": [
127
+ "food",
128
+ "acting",
129
+ "women",
130
+ "sandwiches",
131
+ "Days of Our Lives",
132
+ "foosball",
133
+ "sports"
134
+ ],
79
135
  "quotes": [
80
136
  "JOEY DOESN'T SHARE FOOD.",
81
137
  "No, I had sex in high school.",
@@ -85,15 +141,31 @@
85
141
  "I want girls on bread!"
86
142
  ],
87
143
  "gender": "male",
88
- "address": {"city": "New York", "state": "NY", "country": "US"}
144
+ "address": { "city": "New York", "state": "NY", "country": "US" },
145
+ "symbol": "🍕",
146
+ "color": "#059669"
89
147
  },
90
148
  {
91
149
  "id": "phoebe-buffay",
92
150
  "firstName": "Phoebe",
93
151
  "lastName": "Buffay",
94
- "usernames": ["smelly_cat_official", "princess_consuela", "buried_alive_tombstone", "not_so_much_evolution", "stabbed_a_cop"],
152
+ "usernames": [
153
+ "smelly_cat_official",
154
+ "princess_consuela",
155
+ "buried_alive_tombstone",
156
+ "not_so_much_evolution",
157
+ "stabbed_a_cop"
158
+ ],
95
159
  "profession": "Masseuse / Singer-Songwriter",
96
- "interests": ["music", "massage", "spirituality", "the paranormal", "vegetarianism", "cats", "knitting"],
160
+ "interests": [
161
+ "music",
162
+ "massage",
163
+ "spirituality",
164
+ "the paranormal",
165
+ "vegetarianism",
166
+ "cats",
167
+ "knitting"
168
+ ],
97
169
  "quotes": [
98
170
  "Hello, teeny embryos. I'm Phoebe Buffay. I'm hoping to be your uterus for the next nine months.",
99
171
  "I don't believe in evolution.",
@@ -103,13 +175,21 @@
103
175
  "For 99 cents, I'd eat you."
104
176
  ],
105
177
  "gender": "female",
106
- "address": {"city": "New York", "state": "NY", "country": "US"}
178
+ "address": { "city": "New York", "state": "NY", "country": "US" },
179
+ "symbol": "🎸",
180
+ "color": "#083344"
107
181
  },
108
182
  {
109
183
  "id": "gunther",
110
184
  "firstName": "Gunther",
111
185
  "lastName": "",
112
- "usernames": ["always_staring_at_rachel", "central_perk_forever", "ill_take_it_all", "blonde_barista", "unrequited_gunther"],
186
+ "usernames": [
187
+ "always_staring_at_rachel",
188
+ "central_perk_forever",
189
+ "ill_take_it_all",
190
+ "blonde_barista",
191
+ "unrequited_gunther"
192
+ ],
113
193
  "profession": "Barista / Coffee Shop Manager",
114
194
  "interests": ["Rachel Green", "coffee", "Central Perk", "Swedish culture"],
115
195
  "quotes": [
@@ -120,13 +200,21 @@
120
200
  "You don't have to fill these silences."
121
201
  ],
122
202
  "gender": "male",
123
- "address": {"city": "New York", "state": "NY", "country": "US"}
203
+ "address": { "city": "New York", "state": "NY", "country": "US" },
204
+ "symbol": "☕",
205
+ "color": "#0c4a6e"
124
206
  },
125
207
  {
126
208
  "id": "janice-litman-goralnik",
127
209
  "firstName": "Janice",
128
210
  "lastName": "Litman-Goralnik",
129
- "usernames": ["oh_my_god_janice", "the_chandler_magnet", "janice_is_back", "never_fully_gone", "nasal_queen_nyc"],
211
+ "usernames": [
212
+ "oh_my_god_janice",
213
+ "the_chandler_magnet",
214
+ "janice_is_back",
215
+ "never_fully_gone",
216
+ "nasal_queen_nyc"
217
+ ],
130
218
  "profession": "Unknown",
131
219
  "interests": ["Chandler Bing", "shopping", "New York", "surprises"],
132
220
  "quotes": [
@@ -137,13 +225,21 @@
137
225
  "You got 'hate' from that?"
138
226
  ],
139
227
  "gender": "female",
140
- "address": {"city": "New York", "state": "NY", "country": "US"}
228
+ "address": { "city": "New York", "state": "NY", "country": "US" },
229
+ "symbol": "😱",
230
+ "color": "#1e3a5f"
141
231
  },
142
232
  {
143
233
  "id": "richard-burke",
144
234
  "firstName": "Richard",
145
235
  "lastName": "Burke",
146
- "usernames": ["the_mustache_guy", "dr_burke_ophthalmologist", "too_old_for_monica", "eye_doctor_nyc", "richard_with_mustache"],
236
+ "usernames": [
237
+ "the_mustache_guy",
238
+ "dr_burke_ophthalmologist",
239
+ "too_old_for_monica",
240
+ "eye_doctor_nyc",
241
+ "richard_with_mustache"
242
+ ],
147
243
  "profession": "Ophthalmologist",
148
244
  "interests": ["Monica Geller", "baseball", "ophthalmology", "cigars", "cooking"],
149
245
  "quotes": [
@@ -154,13 +250,21 @@
154
250
  "You're with Chandler, a guy I really like. And if you say he's straight, I'll believe you."
155
251
  ],
156
252
  "gender": "male",
157
- "address": {"city": "New York", "state": "NY", "country": "US"}
253
+ "address": { "city": "New York", "state": "NY", "country": "US" },
254
+ "symbol": "👨‍⚕️",
255
+ "color": "#2563eb"
158
256
  },
159
257
  {
160
258
  "id": "mike-hannigan",
161
259
  "firstName": "Mike",
162
260
  "lastName": "Hannigan",
163
- "usernames": ["crap_bag_hannigan", "buffay_hannigan", "piano_mike", "phoebe_plus_one", "mike_not_vtox"],
261
+ "usernames": [
262
+ "crap_bag_hannigan",
263
+ "buffay_hannigan",
264
+ "piano_mike",
265
+ "phoebe_plus_one",
266
+ "mike_not_vtox"
267
+ ],
164
268
  "profession": "Lawyer / Pianist",
165
269
  "interests": ["piano", "Phoebe Buffay", "ping pong", "law", "crosswords"],
166
270
  "quotes": [
@@ -171,6 +275,8 @@
171
275
  "It's a speedo!"
172
276
  ],
173
277
  "gender": "male",
174
- "address": {"city": "New York", "state": "NY", "country": "US"}
278
+ "address": { "city": "New York", "state": "NY", "country": "US" },
279
+ "symbol": "🎹",
280
+ "color": "#16a34a"
175
281
  }
176
282
  ]
@@ -1 +1,6 @@
1
- {"id": "friends", "name": "Friends"}
1
+ {
2
+ "id": "friends",
3
+ "name": "Friends",
4
+ "genre": ["comedy", "romance"],
5
+ "description": "Six friends navigate life, love, and careers in New York City over ten years of coffee-shop conversations and apartment mishaps."
6
+ }