@apicity/thesportsdb 0.6.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.
@@ -0,0 +1,551 @@
1
+ import { z } from "zod";
2
+ export const TheSportsDBOptionsSchema = z.object({
3
+ apiKey: z.string().optional(),
4
+ baseURL: z.string().optional(),
5
+ v2BaseURL: z.string().optional(),
6
+ timeout: z.number().optional(),
7
+ fetch: z.custom().optional(),
8
+ });
9
+ const idSchema = z.union([z.string().min(1), z.number().int()]);
10
+ const eventIdSchema = z.union([
11
+ z.string().min(1),
12
+ z.number().int().nonnegative(),
13
+ ]);
14
+ const nonEmptyQueryString = z.string().min(1);
15
+ const stringPathParamSchema = z.string().min(1);
16
+ const datePathParamSchema = z
17
+ .string()
18
+ .regex(/^\d{4}-\d{2}-\d{2}$/, "Expected YYYY-MM-DD date string");
19
+ const nullableString = z.string().nullable().optional();
20
+ const optionalNullableString = nullableString;
21
+ const dateSchema = z.string().regex(/^\d{4}-\d{2}-\d{2}$/);
22
+ const flagSchema = z
23
+ .union([z.boolean(), z.literal(0), z.literal(1)])
24
+ .optional();
25
+ const integerPathIdSchema = z.union([
26
+ z.string().regex(/^\d+$/),
27
+ z.number().int(),
28
+ ]);
29
+ export const TheSportsDBLeagueLookupRequestSchema = z.object({
30
+ idLeague: idSchema,
31
+ });
32
+ export const TheSportsDBTableLookupRequestSchema = z.object({
33
+ idLeague: idSchema,
34
+ season: z.string().min(1).optional(),
35
+ });
36
+ export const TheSportsDBTeamLookupRequestSchema = z.object({
37
+ idTeam: idSchema,
38
+ });
39
+ export const TheSportsDBEquipmentLookupRequestSchema = z.object({
40
+ idTeam: idSchema,
41
+ });
42
+ export const TheSportsDBVenueLookupRequestSchema = z.object({
43
+ idVenue: idSchema,
44
+ });
45
+ export const TheSportsDBSearchLeagueRequestSchema = z.object({
46
+ leagueName: stringPathParamSchema,
47
+ });
48
+ export const TheSportsDBSearchTeamRequestSchema = z.object({
49
+ teamName: stringPathParamSchema,
50
+ });
51
+ export const TheSportsDBSearchPlayerRequestSchema = z.object({
52
+ playerName: stringPathParamSchema,
53
+ });
54
+ export const TheSportsDBSearchEventRequestSchema = z.object({
55
+ eventName: stringPathParamSchema,
56
+ });
57
+ export const TheSportsDBSearchVenueRequestSchema = z.object({
58
+ venueName: stringPathParamSchema,
59
+ });
60
+ export const TheSportsDBLeagueIdRequestSchema = z.object({
61
+ idLeague: idSchema,
62
+ });
63
+ export const TheSportsDBTeamIdRequestSchema = z.object({
64
+ idTeam: idSchema,
65
+ });
66
+ export const TheSportsDBFilterTvDayRequestSchema = z.object({
67
+ date: datePathParamSchema,
68
+ });
69
+ export const TheSportsDBFilterTvCountryRequestSchema = z.object({
70
+ country: stringPathParamSchema,
71
+ });
72
+ export const TheSportsDBFilterTvSportRequestSchema = z.object({
73
+ sport: stringPathParamSchema,
74
+ });
75
+ export const TheSportsDBFilterTvChannelRequestSchema = z.object({
76
+ channel: stringPathParamSchema,
77
+ });
78
+ export const TheSportsDBFilterTvChannelIdRequestSchema = z.object({
79
+ idChannel: idSchema,
80
+ });
81
+ export const TheSportsDBSearchTeamsRequestSchema = z.object({
82
+ team: nonEmptyQueryString,
83
+ });
84
+ export const TheSportsDBSearchEventsRequestSchema = z.object({
85
+ event: nonEmptyQueryString,
86
+ season: nonEmptyQueryString.optional(),
87
+ date: nonEmptyQueryString.optional(),
88
+ filename: nonEmptyQueryString.optional(),
89
+ });
90
+ export const TheSportsDBSearchFilenameRequestSchema = z.object({
91
+ filename: nonEmptyQueryString,
92
+ season: nonEmptyQueryString.optional(),
93
+ });
94
+ export const TheSportsDBSearchPlayersRequestSchema = z.object({
95
+ player: nonEmptyQueryString,
96
+ });
97
+ export const TheSportsDBSearchVenuesRequestSchema = z.object({
98
+ venue: nonEmptyQueryString,
99
+ });
100
+ export const TheSportsDBSearchAllLeaguesRequestSchema = z.object({
101
+ country: nonEmptyQueryString,
102
+ sport: nonEmptyQueryString,
103
+ });
104
+ export const TheSportsDBSearchAllSeasonsRequestSchema = z.object({
105
+ idLeague: idSchema,
106
+ poster: flagSchema,
107
+ badge: flagSchema,
108
+ description: flagSchema,
109
+ });
110
+ export const TheSportsDBSearchAllTeamsRequestSchema = z
111
+ .object({
112
+ league: nonEmptyQueryString.optional(),
113
+ sport: nonEmptyQueryString.optional(),
114
+ country: nonEmptyQueryString.optional(),
115
+ })
116
+ .refine((req) => req.league || req.sport || req.country, {
117
+ message: "At least one of league, sport, or country is required",
118
+ });
119
+ export const TheSportsDBLookupAllPlayersRequestSchema = z.object({
120
+ idTeam: idSchema,
121
+ });
122
+ export const TheSportsDBTeamEventsRequestSchema = z.object({
123
+ idTeam: idSchema,
124
+ });
125
+ export const TheSportsDBLeagueEventsRequestSchema = z.object({
126
+ idLeague: idSchema,
127
+ });
128
+ export const TheSportsDBEventsDayRequestSchema = z.object({
129
+ date: dateSchema,
130
+ sport: nonEmptyQueryString.optional(),
131
+ league: idSchema.optional(),
132
+ });
133
+ export const TheSportsDBEventsSeasonRequestSchema = z.object({
134
+ idLeague: idSchema,
135
+ season: z.string().min(1),
136
+ });
137
+ export const TheSportsDBEventsTVRequestSchema = z
138
+ .object({
139
+ date: dateSchema.optional(),
140
+ country: nonEmptyQueryString.optional(),
141
+ sport: nonEmptyQueryString.optional(),
142
+ channel: nonEmptyQueryString.optional(),
143
+ idChannel: idSchema.optional(),
144
+ })
145
+ .refine((req) => req.date ||
146
+ req.country ||
147
+ req.sport ||
148
+ req.channel ||
149
+ req.idChannel !== undefined, {
150
+ message: "At least one of date, country, sport, channel, or idChannel is required",
151
+ });
152
+ export const TheSportsDBEventsHighlightsRequestSchema = z.object({
153
+ date: dateSchema,
154
+ idLeague: idSchema.optional(),
155
+ sport: nonEmptyQueryString.optional(),
156
+ });
157
+ export const TheSportsDBPlayerIdRequestSchema = z.object({
158
+ idPlayer: z.number().int(),
159
+ });
160
+ export const TheSportsDBPlayerSchema = z
161
+ .object({
162
+ idPlayer: nullableString,
163
+ idTeam: nullableString,
164
+ idTeam2: nullableString,
165
+ idTeamNational: nullableString,
166
+ idAPIfootball: nullableString,
167
+ idPlayerManager: nullableString,
168
+ idWikidata: nullableString,
169
+ idTransferMkt: nullableString,
170
+ idESPN: nullableString,
171
+ intSoccerXMLTeamID: nullableString,
172
+ intLoved: nullableString,
173
+ strNationality: nullableString,
174
+ strPlayer: nullableString,
175
+ strPlayerAlternate: nullableString,
176
+ strTeam: nullableString,
177
+ strTeam2: nullableString,
178
+ strSport: nullableString,
179
+ dateBorn: nullableString,
180
+ dateDied: nullableString,
181
+ dateSigned: nullableString,
182
+ strNumber: nullableString,
183
+ strSigning: nullableString,
184
+ strWage: nullableString,
185
+ strOutfitter: nullableString,
186
+ strKit: nullableString,
187
+ strAgent: nullableString,
188
+ strBirthLocation: nullableString,
189
+ strDeathLocation: nullableString,
190
+ strEthnicity: nullableString,
191
+ strStatus: nullableString,
192
+ strDescriptionEN: nullableString,
193
+ strDescriptionDE: nullableString,
194
+ strDescriptionFR: nullableString,
195
+ strDescriptionCN: nullableString,
196
+ strDescriptionIT: nullableString,
197
+ strDescriptionJP: nullableString,
198
+ strDescriptionRU: nullableString,
199
+ strDescriptionES: nullableString,
200
+ strDescriptionPT: nullableString,
201
+ strDescriptionSE: nullableString,
202
+ strDescriptionNL: nullableString,
203
+ strDescriptionHU: nullableString,
204
+ strDescriptionNO: nullableString,
205
+ strDescriptionIL: nullableString,
206
+ strDescriptionPL: nullableString,
207
+ strGender: nullableString,
208
+ strSide: nullableString,
209
+ strPosition: nullableString,
210
+ strCollege: nullableString,
211
+ strFacebook: nullableString,
212
+ strWebsite: nullableString,
213
+ strTwitter: nullableString,
214
+ strInstagram: nullableString,
215
+ strYoutube: nullableString,
216
+ strHeight: nullableString,
217
+ strWeight: nullableString,
218
+ strThumb: nullableString,
219
+ strPoster: nullableString,
220
+ strCutout: nullableString,
221
+ strRender: nullableString,
222
+ strBanner: nullableString,
223
+ strFanart1: nullableString,
224
+ strFanart2: nullableString,
225
+ strFanart3: nullableString,
226
+ strFanart4: nullableString,
227
+ strCreativeCommons: nullableString,
228
+ strLocked: nullableString,
229
+ relevance: nullableString,
230
+ })
231
+ .passthrough();
232
+ export const TheSportsDBHonourSchema = z
233
+ .object({
234
+ id: nullableString,
235
+ idPlayer: nullableString,
236
+ idTeam: nullableString,
237
+ idLeague: nullableString,
238
+ idHonour: nullableString,
239
+ strSport: nullableString,
240
+ strPlayer: nullableString,
241
+ strTeam: nullableString,
242
+ strTeamBadge: nullableString,
243
+ strHonour: nullableString,
244
+ strHonourLogo: nullableString,
245
+ strHonourTrophy: nullableString,
246
+ strSeason: nullableString,
247
+ })
248
+ .passthrough();
249
+ export const TheSportsDBFormerTeamSchema = z
250
+ .object({
251
+ id: nullableString,
252
+ idPlayer: nullableString,
253
+ idFormerTeam: nullableString,
254
+ strSport: nullableString,
255
+ strPlayer: nullableString,
256
+ strFormerTeam: nullableString,
257
+ strMoveType: nullableString,
258
+ strBadge: nullableString,
259
+ strJoined: nullableString,
260
+ strDeparted: nullableString,
261
+ })
262
+ .passthrough();
263
+ export const TheSportsDBMilestoneSchema = z
264
+ .object({
265
+ id: nullableString,
266
+ idPlayer: nullableString,
267
+ strPlayer: nullableString,
268
+ idTeam: nullableString,
269
+ idMilestone: nullableString,
270
+ strTeam: nullableString,
271
+ strSport: nullableString,
272
+ strMilestone: nullableString,
273
+ strMilestoneLogo: nullableString,
274
+ dateMilestone: nullableString,
275
+ })
276
+ .passthrough();
277
+ export const TheSportsDBContractSchema = z
278
+ .object({
279
+ id: nullableString,
280
+ idPlayer: nullableString,
281
+ idTeam: nullableString,
282
+ strSport: nullableString,
283
+ strPlayer: nullableString,
284
+ strTeam: nullableString,
285
+ strBadge: nullableString,
286
+ strYearStart: nullableString,
287
+ strYearEnd: nullableString,
288
+ strWage: nullableString,
289
+ })
290
+ .passthrough();
291
+ export const TheSportsDBPlayerResultSchema = z
292
+ .object({
293
+ idResult: nullableString,
294
+ idPlayer: nullableString,
295
+ strPlayer: nullableString,
296
+ idTeam: nullableString,
297
+ idEvent: nullableString,
298
+ strEvent: nullableString,
299
+ strResult: nullableString,
300
+ intPosition: nullableString,
301
+ intPoints: nullableString,
302
+ strDetail: nullableString,
303
+ dateEvent: nullableString,
304
+ strSeason: nullableString,
305
+ strCountry: nullableString,
306
+ strSport: nullableString,
307
+ })
308
+ .passthrough();
309
+ export const TheSportsDBPlayerStatSchema = z
310
+ .object({
311
+ id: nullableString,
312
+ idPlayer: nullableString,
313
+ idTeam: nullableString,
314
+ idLeague: nullableString,
315
+ strSport: nullableString,
316
+ strPlayer: nullableString,
317
+ strTeam: nullableString,
318
+ strTeamBadge: nullableString,
319
+ strLeague: nullableString,
320
+ strLeagueBadge: nullableString,
321
+ strStatistic: nullableString,
322
+ strValue: nullableString,
323
+ strSeason: nullableString,
324
+ })
325
+ .passthrough();
326
+ export const TheSportsDBLookupPlayerResponseSchema = z
327
+ .object({
328
+ players: z.array(TheSportsDBPlayerSchema).nullable(),
329
+ })
330
+ .passthrough();
331
+ export const TheSportsDBLookupHonoursResponseSchema = z
332
+ .object({
333
+ honours: z.array(TheSportsDBHonourSchema).nullable(),
334
+ })
335
+ .passthrough();
336
+ export const TheSportsDBLookupFormerTeamsResponseSchema = z
337
+ .object({
338
+ formerteams: z.array(TheSportsDBFormerTeamSchema).nullable(),
339
+ })
340
+ .passthrough();
341
+ export const TheSportsDBLookupMilestonesResponseSchema = z
342
+ .object({
343
+ milestones: z.array(TheSportsDBMilestoneSchema).nullable(),
344
+ })
345
+ .passthrough();
346
+ export const TheSportsDBLookupContractsResponseSchema = z
347
+ .object({
348
+ contracts: z.array(TheSportsDBContractSchema).nullable(),
349
+ })
350
+ .passthrough();
351
+ export const TheSportsDBPlayerResultsResponseSchema = z
352
+ .object({
353
+ results: z.array(TheSportsDBPlayerResultSchema).nullable(),
354
+ })
355
+ .passthrough();
356
+ export const TheSportsDBLookupPlayerStatsResponseSchema = z
357
+ .object({
358
+ playerstats: z.array(TheSportsDBPlayerStatSchema).nullable(),
359
+ })
360
+ .passthrough();
361
+ export const TheSportsDBEventLookupRequestSchema = z.object({
362
+ idEvent: eventIdSchema,
363
+ });
364
+ export const TheSportsDBEventSchema = z
365
+ .object({
366
+ idEvent: optionalNullableString,
367
+ strEvent: optionalNullableString,
368
+ strEventAlternate: optionalNullableString,
369
+ strFilename: optionalNullableString,
370
+ strSport: optionalNullableString,
371
+ idLeague: optionalNullableString,
372
+ strLeague: optionalNullableString,
373
+ strSeason: optionalNullableString,
374
+ strDescriptionEN: optionalNullableString,
375
+ strHomeTeam: optionalNullableString,
376
+ strAwayTeam: optionalNullableString,
377
+ intHomeScore: optionalNullableString,
378
+ intAwayScore: optionalNullableString,
379
+ dateEvent: optionalNullableString,
380
+ dateEventLocal: optionalNullableString,
381
+ strTime: optionalNullableString,
382
+ strTimeLocal: optionalNullableString,
383
+ idHomeTeam: optionalNullableString,
384
+ idAwayTeam: optionalNullableString,
385
+ idVenue: optionalNullableString,
386
+ strVenue: optionalNullableString,
387
+ strCountry: optionalNullableString,
388
+ strCity: optionalNullableString,
389
+ strPoster: optionalNullableString,
390
+ strSquare: optionalNullableString,
391
+ strFanart: optionalNullableString,
392
+ strThumb: optionalNullableString,
393
+ strBanner: optionalNullableString,
394
+ strMap: optionalNullableString,
395
+ strVideo: optionalNullableString,
396
+ strStatus: optionalNullableString,
397
+ })
398
+ .catchall(z.unknown());
399
+ export const TheSportsDBEventResponseSchema = z
400
+ .object({
401
+ events: z.array(TheSportsDBEventSchema).nullable(),
402
+ })
403
+ .catchall(z.unknown());
404
+ export const TheSportsDBEventResultSchema = z
405
+ .object({
406
+ idResult: optionalNullableString,
407
+ idPlayer: optionalNullableString,
408
+ strPlayer: optionalNullableString,
409
+ idTeam: optionalNullableString,
410
+ idEvent: optionalNullableString,
411
+ strEvent: optionalNullableString,
412
+ strResult: optionalNullableString,
413
+ intPosition: optionalNullableString,
414
+ intPoints: optionalNullableString,
415
+ strDetail: optionalNullableString,
416
+ dateEvent: optionalNullableString,
417
+ strSeason: optionalNullableString,
418
+ strCountry: optionalNullableString,
419
+ strSport: optionalNullableString,
420
+ })
421
+ .catchall(z.unknown());
422
+ export const TheSportsDBEventResultsResponseSchema = z
423
+ .object({
424
+ results: z.array(TheSportsDBEventResultSchema).nullable(),
425
+ })
426
+ .catchall(z.unknown());
427
+ export const TheSportsDBLineupSchema = z
428
+ .object({
429
+ idLineup: optionalNullableString,
430
+ idEvent: optionalNullableString,
431
+ strPosition: optionalNullableString,
432
+ strHome: optionalNullableString,
433
+ strSubstitute: optionalNullableString,
434
+ intSquadNumber: optionalNullableString,
435
+ idPlayer: optionalNullableString,
436
+ strPlayer: optionalNullableString,
437
+ idTeam: optionalNullableString,
438
+ strTeam: optionalNullableString,
439
+ strCutout: optionalNullableString,
440
+ strThumb: optionalNullableString,
441
+ strRender: optionalNullableString,
442
+ })
443
+ .catchall(z.unknown());
444
+ export const TheSportsDBLineupResponseSchema = z
445
+ .object({
446
+ lineup: z.array(TheSportsDBLineupSchema).nullable(),
447
+ })
448
+ .catchall(z.unknown());
449
+ export const TheSportsDBTimelineSchema = z
450
+ .object({
451
+ idTimeline: optionalNullableString,
452
+ idEvent: optionalNullableString,
453
+ strTimeline: optionalNullableString,
454
+ strTimelineDetail: optionalNullableString,
455
+ strHome: optionalNullableString,
456
+ strEvent: optionalNullableString,
457
+ idPlayer: optionalNullableString,
458
+ strPlayer: optionalNullableString,
459
+ idAssist: optionalNullableString,
460
+ strAssist: optionalNullableString,
461
+ intTime: optionalNullableString,
462
+ strPeriod: optionalNullableString,
463
+ idTeam: optionalNullableString,
464
+ strTeam: optionalNullableString,
465
+ strComment: optionalNullableString,
466
+ dateEvent: optionalNullableString,
467
+ strSeason: optionalNullableString,
468
+ })
469
+ .catchall(z.unknown());
470
+ export const TheSportsDBTimelineResponseSchema = z
471
+ .object({
472
+ timeline: z.array(TheSportsDBTimelineSchema).nullable(),
473
+ })
474
+ .catchall(z.unknown());
475
+ export const TheSportsDBEventStatSchema = z
476
+ .object({
477
+ idStatistic: optionalNullableString,
478
+ idEvent: optionalNullableString,
479
+ idApiFootball: optionalNullableString,
480
+ strEvent: optionalNullableString,
481
+ strStat: optionalNullableString,
482
+ intHome: optionalNullableString,
483
+ intAway: optionalNullableString,
484
+ })
485
+ .catchall(z.unknown());
486
+ export const TheSportsDBEventStatsResponseSchema = z
487
+ .object({
488
+ eventstats: z.array(TheSportsDBEventStatSchema).nullable(),
489
+ })
490
+ .catchall(z.unknown());
491
+ export const TheSportsDBTvEventSchema = z
492
+ .object({
493
+ id: optionalNullableString,
494
+ idEvent: optionalNullableString,
495
+ strSport: optionalNullableString,
496
+ strEvent: optionalNullableString,
497
+ strEventThumb: optionalNullableString,
498
+ strEventPoster: optionalNullableString,
499
+ strEventBanner: optionalNullableString,
500
+ strEventSquare: optionalNullableString,
501
+ idChannel: optionalNullableString,
502
+ strCountry: optionalNullableString,
503
+ strEventCountry: optionalNullableString,
504
+ strLogo: optionalNullableString,
505
+ strChannel: optionalNullableString,
506
+ strSeason: optionalNullableString,
507
+ strTime: optionalNullableString,
508
+ dateEvent: optionalNullableString,
509
+ strTimeStamp: optionalNullableString,
510
+ })
511
+ .catchall(z.unknown());
512
+ export const TheSportsDBTvEventResponseSchema = z
513
+ .object({
514
+ tvevent: z.array(TheSportsDBTvEventSchema).nullable(),
515
+ })
516
+ .catchall(z.unknown());
517
+ export const TheSportsDBLeagueScheduleRequestSchema = z.object({
518
+ idLeague: idSchema,
519
+ });
520
+ export const TheSportsDBTeamScheduleRequestSchema = z.object({
521
+ idTeam: idSchema,
522
+ });
523
+ export const TheSportsDBVenueScheduleRequestSchema = z.object({
524
+ idVenue: idSchema,
525
+ });
526
+ export const TheSportsDBLeagueSeasonScheduleRequestSchema = z.object({
527
+ idLeague: idSchema,
528
+ season: nonEmptyQueryString,
529
+ });
530
+ export const TheSportsDBLiveScoreSportRequestSchema = z.object({
531
+ sport: nonEmptyQueryString,
532
+ });
533
+ export const TheSportsDBLiveScoreLeagueRequestSchema = z.object({
534
+ leagueId: idSchema,
535
+ });
536
+ export const TheSportsDBV2LeagueLookupRequestSchema = z.object({
537
+ idLeague: integerPathIdSchema,
538
+ });
539
+ export const TheSportsDBV2TeamLookupRequestSchema = z.object({
540
+ idTeam: integerPathIdSchema,
541
+ });
542
+ export const TheSportsDBV2PlayerLookupRequestSchema = z.object({
543
+ idPlayer: integerPathIdSchema,
544
+ });
545
+ export const TheSportsDBV2EventLookupRequestSchema = z.object({
546
+ idEvent: integerPathIdSchema,
547
+ });
548
+ export const TheSportsDBV2VenueLookupRequestSchema = z.object({
549
+ idVenue: integerPathIdSchema,
550
+ });
551
+ //# sourceMappingURL=zod.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"zod.js","sourceRoot":"","sources":["../../src/zod.ts"],"names":[],"mappings":"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"}
package/package.json ADDED
@@ -0,0 +1,56 @@
1
+ {
2
+ "name": "@apicity/thesportsdb",
3
+ "version": "0.6.0",
4
+ "description": "TheSportsDB V1 and V2 sports data API provider.",
5
+ "license": "MIT",
6
+ "repository": {
7
+ "type": "git",
8
+ "url": "git+https://github.com/justintanner/apicity.git",
9
+ "directory": "provider/thesportsdb"
10
+ },
11
+ "publishConfig": {
12
+ "access": "public"
13
+ },
14
+ "type": "module",
15
+ "main": "dist/src/index.js",
16
+ "types": "dist/src/index.d.ts",
17
+ "exports": {
18
+ ".": {
19
+ "import": "./dist/src/index.js",
20
+ "types": "./dist/src/index.d.ts"
21
+ },
22
+ "./zod": {
23
+ "import": "./dist/src/zod.js",
24
+ "types": "./dist/src/zod.d.ts"
25
+ }
26
+ },
27
+ "dependencies": {
28
+ "zod": "^3.24.0"
29
+ },
30
+ "files": [
31
+ "dist",
32
+ "README.md",
33
+ "LICENSE"
34
+ ],
35
+ "sideEffects": false,
36
+ "keywords": [
37
+ "thesportsdb",
38
+ "sports",
39
+ "scores",
40
+ "leagues",
41
+ "api",
42
+ "sports-data",
43
+ "apicity"
44
+ ],
45
+ "author": "Justin Tanner",
46
+ "engines": {
47
+ "node": ">=18.0.0"
48
+ },
49
+ "homepage": "https://github.com/justintanner/apicity#readme",
50
+ "bugs": {
51
+ "url": "https://github.com/justintanner/apicity/issues"
52
+ },
53
+ "scripts": {
54
+ "build": "tsc -p tsconfig.json && node scripts/dist.mjs"
55
+ }
56
+ }