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.
- package/README.md +33 -5
- package/data/breaking-bad/characters.json +36 -7
- package/data/breaking-bad/meta.json +3 -1
- package/data/fast-and-furious/characters.json +26 -7
- package/data/fast-and-furious/meta.json +3 -1
- package/data/friends/characters.json +128 -22
- package/data/friends/meta.json +6 -1
- package/data/game-of-thrones/characters.json +45 -15
- package/data/game-of-thrones/meta.json +3 -1
- package/data/harry-potter/characters.json +30 -7
- package/data/harry-potter/meta.json +3 -1
- package/data/house-md/characters.json +58 -15
- package/data/house-md/meta.json +6 -1
- package/data/lost/characters.json +120 -24
- package/data/lost/meta.json +6 -1
- package/data/matrix/characters.json +112 -24
- package/data/matrix/meta.json +6 -1
- package/data/peaky-blinders/characters.json +33 -11
- package/data/peaky-blinders/meta.json +6 -1
- package/data/sherlock/characters.json +99 -19
- package/data/sherlock/meta.json +6 -1
- package/data/the-office/characters.json +55 -15
- package/data/the-office/meta.json +3 -1
- package/dist/browser.cjs +107 -8
- package/dist/browser.cjs.map +1 -1
- package/dist/browser.d.cts +7 -3
- package/dist/browser.d.ts +7 -3
- package/dist/browser.js +103 -8
- package/dist/browser.js.map +1 -1
- package/dist/cli/cli.cjs +109 -16
- package/dist/cli/cli.cjs.map +1 -1
- package/dist/cli/cli.js +110 -17
- package/dist/cli/cli.js.map +1 -1
- package/dist/index.cjs +110 -15
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +14 -4
- package/dist/index.d.ts +14 -4
- package/dist/index.js +110 -16
- package/dist/index.js.map +1 -1
- package/dist/{universe-store-DJrm7bP7.d.cts → universe-store-Del1UHgn.d.cts} +11 -9
- package/dist/{universe-store-DJrm7bP7.d.ts → universe-store-Del1UHgn.d.ts} +11 -9
- package/package.json +9 -4
|
@@ -15,7 +15,9 @@
|
|
|
15
15
|
],
|
|
16
16
|
"gender": "male",
|
|
17
17
|
"birthYear": 281,
|
|
18
|
-
"address": {"city": "Castle Black"}
|
|
18
|
+
"address": { "city": "Castle Black" },
|
|
19
|
+
"symbol": "❄️",
|
|
20
|
+
"color": "#7c2d12"
|
|
19
21
|
},
|
|
20
22
|
{
|
|
21
23
|
"id": "daenerys-targaryen",
|
|
@@ -33,7 +35,9 @@
|
|
|
33
35
|
],
|
|
34
36
|
"gender": "female",
|
|
35
37
|
"birthYear": 284,
|
|
36
|
-
"address": {"city": "Dragonstone"}
|
|
38
|
+
"address": { "city": "Dragonstone" },
|
|
39
|
+
"symbol": "🐉",
|
|
40
|
+
"color": "#475569"
|
|
37
41
|
},
|
|
38
42
|
{
|
|
39
43
|
"id": "tyrion-lannister",
|
|
@@ -51,7 +55,9 @@
|
|
|
51
55
|
],
|
|
52
56
|
"gender": "male",
|
|
53
57
|
"birthYear": 273,
|
|
54
|
-
"address": {"city": "King's Landing"}
|
|
58
|
+
"address": { "city": "King's Landing" },
|
|
59
|
+
"symbol": "🍷",
|
|
60
|
+
"color": "#ca8a04"
|
|
55
61
|
},
|
|
56
62
|
{
|
|
57
63
|
"id": "cersei-lannister",
|
|
@@ -69,7 +75,9 @@
|
|
|
69
75
|
],
|
|
70
76
|
"gender": "female",
|
|
71
77
|
"birthYear": 267,
|
|
72
|
-
"address": {"street": "The Red Keep", "city": "King's Landing"}
|
|
78
|
+
"address": { "street": "The Red Keep", "city": "King's Landing" },
|
|
79
|
+
"symbol": "👑",
|
|
80
|
+
"color": "#3b1f0a"
|
|
73
81
|
},
|
|
74
82
|
{
|
|
75
83
|
"id": "arya-stark",
|
|
@@ -87,7 +95,9 @@
|
|
|
87
95
|
],
|
|
88
96
|
"gender": "female",
|
|
89
97
|
"birthYear": 289,
|
|
90
|
-
"address": {"city": "Winterfell"}
|
|
98
|
+
"address": { "city": "Winterfell" },
|
|
99
|
+
"symbol": "⚔️",
|
|
100
|
+
"color": "#0c4a6e"
|
|
91
101
|
},
|
|
92
102
|
{
|
|
93
103
|
"id": "ned-stark",
|
|
@@ -105,7 +115,9 @@
|
|
|
105
115
|
],
|
|
106
116
|
"gender": "male",
|
|
107
117
|
"birthYear": 263,
|
|
108
|
-
"address": {"city": "Winterfell"}
|
|
118
|
+
"address": { "city": "Winterfell" },
|
|
119
|
+
"symbol": "🐺",
|
|
120
|
+
"color": "#166534"
|
|
109
121
|
},
|
|
110
122
|
{
|
|
111
123
|
"id": "sansa-stark",
|
|
@@ -123,7 +135,9 @@
|
|
|
123
135
|
],
|
|
124
136
|
"gender": "female",
|
|
125
137
|
"birthYear": 286,
|
|
126
|
-
"address": {"city": "Winterfell"}
|
|
138
|
+
"address": { "city": "Winterfell" },
|
|
139
|
+
"symbol": "🌹",
|
|
140
|
+
"color": "#059669"
|
|
127
141
|
},
|
|
128
142
|
{
|
|
129
143
|
"id": "ygritte",
|
|
@@ -140,7 +154,9 @@
|
|
|
140
154
|
"Free folk don't kneel."
|
|
141
155
|
],
|
|
142
156
|
"gender": "female",
|
|
143
|
-
"birthYear": 283
|
|
157
|
+
"birthYear": 283,
|
|
158
|
+
"symbol": "🏹",
|
|
159
|
+
"color": "#134e4a"
|
|
144
160
|
},
|
|
145
161
|
{
|
|
146
162
|
"id": "jaime-lannister",
|
|
@@ -158,7 +174,9 @@
|
|
|
158
174
|
],
|
|
159
175
|
"gender": "male",
|
|
160
176
|
"birthYear": 266,
|
|
161
|
-
"address": {"city": "Casterly Rock"}
|
|
177
|
+
"address": { "city": "Casterly Rock" },
|
|
178
|
+
"symbol": "🦁",
|
|
179
|
+
"color": "#0284c7"
|
|
162
180
|
},
|
|
163
181
|
{
|
|
164
182
|
"id": "bran-stark",
|
|
@@ -176,7 +194,9 @@
|
|
|
176
194
|
],
|
|
177
195
|
"gender": "male",
|
|
178
196
|
"birthYear": 290,
|
|
179
|
-
"address": {"city": "Winterfell"}
|
|
197
|
+
"address": { "city": "Winterfell" },
|
|
198
|
+
"symbol": "🦅",
|
|
199
|
+
"color": "#9333ea"
|
|
180
200
|
},
|
|
181
201
|
{
|
|
182
202
|
"id": "joffrey-baratheon",
|
|
@@ -194,7 +214,9 @@
|
|
|
194
214
|
],
|
|
195
215
|
"gender": "male",
|
|
196
216
|
"birthYear": 286,
|
|
197
|
-
"address": {"street": "The Red Keep", "city": "King's Landing"}
|
|
217
|
+
"address": { "street": "The Red Keep", "city": "King's Landing" },
|
|
218
|
+
"symbol": "💀",
|
|
219
|
+
"color": "#dc2626"
|
|
198
220
|
},
|
|
199
221
|
{
|
|
200
222
|
"id": "petyr-baelish",
|
|
@@ -212,7 +234,9 @@
|
|
|
212
234
|
],
|
|
213
235
|
"gender": "male",
|
|
214
236
|
"birthYear": 268,
|
|
215
|
-
"address": {"city": "King's Landing"}
|
|
237
|
+
"address": { "city": "King's Landing" },
|
|
238
|
+
"symbol": "🗡️",
|
|
239
|
+
"color": "#0c4a6e"
|
|
216
240
|
},
|
|
217
241
|
{
|
|
218
242
|
"id": "stannis-baratheon",
|
|
@@ -230,7 +254,9 @@
|
|
|
230
254
|
],
|
|
231
255
|
"gender": "male",
|
|
232
256
|
"birthYear": 264,
|
|
233
|
-
"address": {"city": "Dragonstone"}
|
|
257
|
+
"address": { "city": "Dragonstone" },
|
|
258
|
+
"symbol": "⚓",
|
|
259
|
+
"color": "#166534"
|
|
234
260
|
},
|
|
235
261
|
{
|
|
236
262
|
"id": "melisandre",
|
|
@@ -247,7 +273,9 @@
|
|
|
247
273
|
"For the night is dark and full of terrors, and only the Lord of Light can protect us."
|
|
248
274
|
],
|
|
249
275
|
"gender": "female",
|
|
250
|
-
"birthYear": 240
|
|
276
|
+
"birthYear": 240,
|
|
277
|
+
"symbol": "🔥",
|
|
278
|
+
"color": "#4c1d95"
|
|
251
279
|
},
|
|
252
280
|
{
|
|
253
281
|
"id": "theon-greyjoy",
|
|
@@ -265,6 +293,8 @@
|
|
|
265
293
|
],
|
|
266
294
|
"gender": "male",
|
|
267
295
|
"birthYear": 278,
|
|
268
|
-
"address": {"city": "Pyke"}
|
|
296
|
+
"address": { "city": "Pyke" },
|
|
297
|
+
"symbol": "🦑",
|
|
298
|
+
"color": "#1e3a5f"
|
|
269
299
|
}
|
|
270
300
|
]
|
|
@@ -15,7 +15,14 @@
|
|
|
15
15
|
],
|
|
16
16
|
"gender": "male",
|
|
17
17
|
"birthYear": 1980,
|
|
18
|
-
"address": {
|
|
18
|
+
"address": {
|
|
19
|
+
"street": "4 Privet Drive",
|
|
20
|
+
"city": "Little Whinging",
|
|
21
|
+
"state": "Surrey",
|
|
22
|
+
"country": "GB"
|
|
23
|
+
},
|
|
24
|
+
"symbol": "⚡",
|
|
25
|
+
"color": "#1d4ed8"
|
|
19
26
|
},
|
|
20
27
|
{
|
|
21
28
|
"id": "hermione-granger",
|
|
@@ -32,7 +39,9 @@
|
|
|
32
39
|
"Fear of a name only increases fear of the thing itself."
|
|
33
40
|
],
|
|
34
41
|
"gender": "female",
|
|
35
|
-
"birthYear": 1979
|
|
42
|
+
"birthYear": 1979,
|
|
43
|
+
"symbol": "📚",
|
|
44
|
+
"color": "#134e4a"
|
|
36
45
|
},
|
|
37
46
|
{
|
|
38
47
|
"id": "ron-weasley",
|
|
@@ -49,7 +58,9 @@
|
|
|
49
58
|
"One person can't feel all that at once, they'd explode."
|
|
50
59
|
],
|
|
51
60
|
"gender": "male",
|
|
52
|
-
"birthYear": 1980
|
|
61
|
+
"birthYear": 1980,
|
|
62
|
+
"symbol": "♟️",
|
|
63
|
+
"color": "#dc2626"
|
|
53
64
|
},
|
|
54
65
|
{
|
|
55
66
|
"id": "albus-dumbledore",
|
|
@@ -67,7 +78,13 @@
|
|
|
67
78
|
],
|
|
68
79
|
"gender": "male",
|
|
69
80
|
"birthYear": 1881,
|
|
70
|
-
"address": {
|
|
81
|
+
"address": {
|
|
82
|
+
"street": "Hogwarts School of Witchcraft and Wizardry",
|
|
83
|
+
"city": "Scottish Highlands",
|
|
84
|
+
"country": "GB"
|
|
85
|
+
},
|
|
86
|
+
"symbol": "🌟",
|
|
87
|
+
"color": "#7f1d1d"
|
|
71
88
|
},
|
|
72
89
|
{
|
|
73
90
|
"id": "severus-snape",
|
|
@@ -85,7 +102,9 @@
|
|
|
85
102
|
],
|
|
86
103
|
"gender": "male",
|
|
87
104
|
"birthYear": 1960,
|
|
88
|
-
"address": {"street": "Spinner's End", "city": "Cokeworth", "country": "GB"}
|
|
105
|
+
"address": { "street": "Spinner's End", "city": "Cokeworth", "country": "GB" },
|
|
106
|
+
"symbol": "🖤",
|
|
107
|
+
"color": "#ca8a04"
|
|
89
108
|
},
|
|
90
109
|
{
|
|
91
110
|
"id": "draco-malfoy",
|
|
@@ -103,7 +122,9 @@
|
|
|
103
122
|
],
|
|
104
123
|
"gender": "male",
|
|
105
124
|
"birthYear": 1980,
|
|
106
|
-
"address": {"street": "Malfoy Manor", "city": "Wiltshire", "country": "GB"}
|
|
125
|
+
"address": { "street": "Malfoy Manor", "city": "Wiltshire", "country": "GB" },
|
|
126
|
+
"symbol": "🐍",
|
|
127
|
+
"color": "#16a34a"
|
|
107
128
|
},
|
|
108
129
|
{
|
|
109
130
|
"id": "luna-lovegood",
|
|
@@ -120,6 +141,8 @@
|
|
|
120
141
|
"The most important thing about Nargles is that they're quite hard to see."
|
|
121
142
|
],
|
|
122
143
|
"gender": "female",
|
|
123
|
-
"birthYear": 1981
|
|
144
|
+
"birthYear": 1981,
|
|
145
|
+
"symbol": "🌙",
|
|
146
|
+
"color": "#083344"
|
|
124
147
|
}
|
|
125
148
|
]
|
|
@@ -3,7 +3,13 @@
|
|
|
3
3
|
"id": "gregory-house",
|
|
4
4
|
"firstName": "Gregory",
|
|
5
5
|
"lastName": "House",
|
|
6
|
-
"usernames": [
|
|
6
|
+
"usernames": [
|
|
7
|
+
"everybody_lies",
|
|
8
|
+
"vicodin_md",
|
|
9
|
+
"cane_and_able",
|
|
10
|
+
"diagnostics_genius",
|
|
11
|
+
"not_lupus"
|
|
12
|
+
],
|
|
7
13
|
"profession": "diagnostician",
|
|
8
14
|
"interests": ["medicine", "piano", "motorcycle", "puzzles", "vicodin"],
|
|
9
15
|
"quotes": [
|
|
@@ -18,13 +24,20 @@
|
|
|
18
24
|
"Solving puzzles. Saving lives is just collateral damage.",
|
|
19
25
|
"If the wonder's gone when the truth is known, there never was any wonder."
|
|
20
26
|
],
|
|
21
|
-
"gender": "male"
|
|
27
|
+
"gender": "male",
|
|
28
|
+
"symbol": "🦯",
|
|
29
|
+
"color": "#134e4a"
|
|
22
30
|
},
|
|
23
31
|
{
|
|
24
32
|
"id": "james-wilson",
|
|
25
33
|
"firstName": "James",
|
|
26
34
|
"lastName": "Wilson",
|
|
27
|
-
"usernames": [
|
|
35
|
+
"usernames": [
|
|
36
|
+
"best_friend_of_house",
|
|
37
|
+
"oncology_wilson",
|
|
38
|
+
"enabler_in_chief",
|
|
39
|
+
"three_divorces_wilson"
|
|
40
|
+
],
|
|
28
41
|
"profession": "oncologist",
|
|
29
42
|
"interests": ["oncology", "friendship", "cooking", "relationships"],
|
|
30
43
|
"quotes": [
|
|
@@ -38,7 +51,9 @@
|
|
|
38
51
|
"Dying's easy. Living's hard!",
|
|
39
52
|
"Because you're not ordinary, House. You're way out there on the fringe somewhere. I'm your best friend, and half the time I don't understand you. You're alone. Been alone your whole life."
|
|
40
53
|
],
|
|
41
|
-
"gender": "male"
|
|
54
|
+
"gender": "male",
|
|
55
|
+
"symbol": "🎗️",
|
|
56
|
+
"color": "#166534"
|
|
42
57
|
},
|
|
43
58
|
{
|
|
44
59
|
"id": "lisa-cuddy",
|
|
@@ -57,7 +72,9 @@
|
|
|
57
72
|
"An egomaniacal, narcissistic pain in the ass — same as before you left.",
|
|
58
73
|
"You are waking her up so that you could both say goodbye to each other. She would want it."
|
|
59
74
|
],
|
|
60
|
-
"gender": "female"
|
|
75
|
+
"gender": "female",
|
|
76
|
+
"symbol": "🏥",
|
|
77
|
+
"color": "#3b1f0a"
|
|
61
78
|
},
|
|
62
79
|
{
|
|
63
80
|
"id": "eric-foreman",
|
|
@@ -76,7 +93,9 @@
|
|
|
76
93
|
"Every slavemaster thought they were doing the black man a favour.",
|
|
77
94
|
"I think you got her in because of your usual messiah complex. I think you messed with the appointment schedule because of your I-like-to-have-sex complex."
|
|
78
95
|
],
|
|
79
|
-
"gender": "male"
|
|
96
|
+
"gender": "male",
|
|
97
|
+
"symbol": "🧠",
|
|
98
|
+
"color": "#083344"
|
|
80
99
|
},
|
|
81
100
|
{
|
|
82
101
|
"id": "robert-chase",
|
|
@@ -95,13 +114,20 @@
|
|
|
95
114
|
"If people told nothing but the truth, the world would probably burn down overnight.",
|
|
96
115
|
"This is why we left House's team. To avoid this constant flood of pure craziness."
|
|
97
116
|
],
|
|
98
|
-
"gender": "male"
|
|
117
|
+
"gender": "male",
|
|
118
|
+
"symbol": "🏄",
|
|
119
|
+
"color": "#4c1d95"
|
|
99
120
|
},
|
|
100
121
|
{
|
|
101
122
|
"id": "allison-cameron",
|
|
102
123
|
"firstName": "Allison",
|
|
103
124
|
"lastName": "Cameron",
|
|
104
|
-
"usernames": [
|
|
125
|
+
"usernames": [
|
|
126
|
+
"dr_cameron_er",
|
|
127
|
+
"always_caring_cameron",
|
|
128
|
+
"cameron_immunology",
|
|
129
|
+
"mercy_and_reason"
|
|
130
|
+
],
|
|
105
131
|
"profession": "emergency medicine physician",
|
|
106
132
|
"interests": ["medicine", "ethics", "immunology", "human rights"],
|
|
107
133
|
"quotes": [
|
|
@@ -114,7 +140,9 @@
|
|
|
114
140
|
"It's why I left House. You got fired.",
|
|
115
141
|
"In ER we like to actually resuscitate dying people, not just let them flop around."
|
|
116
142
|
],
|
|
117
|
-
"gender": "female"
|
|
143
|
+
"gender": "female",
|
|
144
|
+
"symbol": "❤️",
|
|
145
|
+
"color": "#4a1942"
|
|
118
146
|
},
|
|
119
147
|
{
|
|
120
148
|
"id": "chris-taub",
|
|
@@ -133,7 +161,9 @@
|
|
|
133
161
|
"I'll bring it up at the next world domination subcommittee meeting.",
|
|
134
162
|
"Why me?"
|
|
135
163
|
],
|
|
136
|
-
"gender": "male"
|
|
164
|
+
"gender": "male",
|
|
165
|
+
"symbol": "👃",
|
|
166
|
+
"color": "#dc2626"
|
|
137
167
|
},
|
|
138
168
|
{
|
|
139
169
|
"id": "remy-hadley",
|
|
@@ -152,7 +182,9 @@
|
|
|
152
182
|
"Patient has spinal muscular atrophy. It's genetic, incurable. This is not a diagnostic mystery.",
|
|
153
183
|
"We could save this patient but all you care about is getting your answer!"
|
|
154
184
|
],
|
|
155
|
-
"gender": "female"
|
|
185
|
+
"gender": "female",
|
|
186
|
+
"symbol": "🎲",
|
|
187
|
+
"color": "#4c1d95"
|
|
156
188
|
},
|
|
157
189
|
{
|
|
158
190
|
"id": "lawrence-kutner",
|
|
@@ -171,13 +203,20 @@
|
|
|
171
203
|
"You slept with Foreman? Sorry, you were busy.",
|
|
172
204
|
"Yeah he'd never do that. Oh wait — he already did last year!"
|
|
173
205
|
],
|
|
174
|
-
"gender": "male"
|
|
206
|
+
"gender": "male",
|
|
207
|
+
"symbol": "🏃",
|
|
208
|
+
"color": "#4a1942"
|
|
175
209
|
},
|
|
176
210
|
{
|
|
177
211
|
"id": "jessica-adams",
|
|
178
212
|
"firstName": "Jessica",
|
|
179
213
|
"lastName": "Adams",
|
|
180
|
-
"usernames": [
|
|
214
|
+
"usernames": [
|
|
215
|
+
"dr_adams_ppth",
|
|
216
|
+
"formerly_incarcerated_md",
|
|
217
|
+
"adams_diagnostics",
|
|
218
|
+
"jail_doc_adams"
|
|
219
|
+
],
|
|
181
220
|
"profession": "diagnostician",
|
|
182
221
|
"interests": ["medicine", "ethics", "charity work", "volunteering"],
|
|
183
222
|
"quotes": [
|
|
@@ -190,7 +229,9 @@
|
|
|
190
229
|
"Thad Barton? We only help rich white guys?",
|
|
191
230
|
"I could do $5,000. If you double your clinic hours."
|
|
192
231
|
],
|
|
193
|
-
"gender": "female"
|
|
232
|
+
"gender": "female",
|
|
233
|
+
"symbol": "⚕️",
|
|
234
|
+
"color": "#4a1942"
|
|
194
235
|
},
|
|
195
236
|
{
|
|
196
237
|
"id": "chi-park",
|
|
@@ -208,6 +249,8 @@
|
|
|
208
249
|
"If you were me, what would you do?",
|
|
209
250
|
"Would it hurt to do both?"
|
|
210
251
|
],
|
|
211
|
-
"gender": "female"
|
|
252
|
+
"gender": "female",
|
|
253
|
+
"symbol": "👊",
|
|
254
|
+
"color": "#083344"
|
|
212
255
|
}
|
|
213
256
|
]
|
package/data/house-md/meta.json
CHANGED