@nekzus/mcp-server 1.4.2 → 1.5.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 +212 -166
- package/dist/.tsbuildinfo +1 -1
- package/dist/index.d.ts +455 -22
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +1380 -288
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -1,5 +1,18 @@
|
|
|
1
1
|
#!/usr/bin/env node
|
|
2
2
|
import { z } from 'zod';
|
|
3
|
+
export declare const NpmMaintainerSchema: z.ZodObject<{
|
|
4
|
+
name: z.ZodString;
|
|
5
|
+
email: z.ZodOptional<z.ZodString>;
|
|
6
|
+
url: z.ZodOptional<z.ZodString>;
|
|
7
|
+
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
8
|
+
name: z.ZodString;
|
|
9
|
+
email: z.ZodOptional<z.ZodString>;
|
|
10
|
+
url: z.ZodOptional<z.ZodString>;
|
|
11
|
+
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
12
|
+
name: z.ZodString;
|
|
13
|
+
email: z.ZodOptional<z.ZodString>;
|
|
14
|
+
url: z.ZodOptional<z.ZodString>;
|
|
15
|
+
}, z.ZodTypeAny, "passthrough">>;
|
|
3
16
|
export declare const NpmPackageVersionSchema: z.ZodObject<{
|
|
4
17
|
name: z.ZodString;
|
|
5
18
|
version: z.ZodString;
|
|
@@ -168,6 +181,19 @@ export declare const NpmPackageInfoSchema: z.ZodObject<{
|
|
|
168
181
|
url: z.ZodOptional<z.ZodString>;
|
|
169
182
|
}, z.ZodTypeAny, "passthrough">>>;
|
|
170
183
|
homepage: z.ZodOptional<z.ZodString>;
|
|
184
|
+
maintainers: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
185
|
+
name: z.ZodString;
|
|
186
|
+
email: z.ZodOptional<z.ZodString>;
|
|
187
|
+
url: z.ZodOptional<z.ZodString>;
|
|
188
|
+
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
189
|
+
name: z.ZodString;
|
|
190
|
+
email: z.ZodOptional<z.ZodString>;
|
|
191
|
+
url: z.ZodOptional<z.ZodString>;
|
|
192
|
+
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
193
|
+
name: z.ZodString;
|
|
194
|
+
email: z.ZodOptional<z.ZodString>;
|
|
195
|
+
url: z.ZodOptional<z.ZodString>;
|
|
196
|
+
}, z.ZodTypeAny, "passthrough">>, "many">>;
|
|
171
197
|
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
172
198
|
name: z.ZodString;
|
|
173
199
|
'dist-tags': z.ZodRecord<z.ZodString, z.ZodString>;
|
|
@@ -263,6 +289,19 @@ export declare const NpmPackageInfoSchema: z.ZodObject<{
|
|
|
263
289
|
url: z.ZodOptional<z.ZodString>;
|
|
264
290
|
}, z.ZodTypeAny, "passthrough">>>;
|
|
265
291
|
homepage: z.ZodOptional<z.ZodString>;
|
|
292
|
+
maintainers: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
293
|
+
name: z.ZodString;
|
|
294
|
+
email: z.ZodOptional<z.ZodString>;
|
|
295
|
+
url: z.ZodOptional<z.ZodString>;
|
|
296
|
+
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
297
|
+
name: z.ZodString;
|
|
298
|
+
email: z.ZodOptional<z.ZodString>;
|
|
299
|
+
url: z.ZodOptional<z.ZodString>;
|
|
300
|
+
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
301
|
+
name: z.ZodString;
|
|
302
|
+
email: z.ZodOptional<z.ZodString>;
|
|
303
|
+
url: z.ZodOptional<z.ZodString>;
|
|
304
|
+
}, z.ZodTypeAny, "passthrough">>, "many">>;
|
|
266
305
|
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
267
306
|
name: z.ZodString;
|
|
268
307
|
'dist-tags': z.ZodRecord<z.ZodString, z.ZodString>;
|
|
@@ -358,6 +397,19 @@ export declare const NpmPackageInfoSchema: z.ZodObject<{
|
|
|
358
397
|
url: z.ZodOptional<z.ZodString>;
|
|
359
398
|
}, z.ZodTypeAny, "passthrough">>>;
|
|
360
399
|
homepage: z.ZodOptional<z.ZodString>;
|
|
400
|
+
maintainers: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
401
|
+
name: z.ZodString;
|
|
402
|
+
email: z.ZodOptional<z.ZodString>;
|
|
403
|
+
url: z.ZodOptional<z.ZodString>;
|
|
404
|
+
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
405
|
+
name: z.ZodString;
|
|
406
|
+
email: z.ZodOptional<z.ZodString>;
|
|
407
|
+
url: z.ZodOptional<z.ZodString>;
|
|
408
|
+
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
409
|
+
name: z.ZodString;
|
|
410
|
+
email: z.ZodOptional<z.ZodString>;
|
|
411
|
+
url: z.ZodOptional<z.ZodString>;
|
|
412
|
+
}, z.ZodTypeAny, "passthrough">>, "many">>;
|
|
361
413
|
}, z.ZodTypeAny, "passthrough">>;
|
|
362
414
|
export declare const NpmPackageDataSchema: z.ZodObject<{
|
|
363
415
|
name: z.ZodString;
|
|
@@ -476,31 +528,412 @@ export declare const NpmPopularitySchema: z.ZodObject<{
|
|
|
476
528
|
dependents: number;
|
|
477
529
|
communityInterest: number;
|
|
478
530
|
}>;
|
|
479
|
-
export
|
|
480
|
-
|
|
481
|
-
|
|
482
|
-
|
|
483
|
-
|
|
484
|
-
|
|
485
|
-
|
|
486
|
-
|
|
531
|
+
export declare const NpmSearchResultSchema: z.ZodObject<{
|
|
532
|
+
objects: z.ZodArray<z.ZodObject<{
|
|
533
|
+
package: z.ZodObject<{
|
|
534
|
+
name: z.ZodString;
|
|
535
|
+
version: z.ZodString;
|
|
536
|
+
description: z.ZodOptional<z.ZodString>;
|
|
537
|
+
keywords: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
538
|
+
publisher: z.ZodOptional<z.ZodObject<{
|
|
539
|
+
username: z.ZodString;
|
|
540
|
+
}, "strip", z.ZodTypeAny, {
|
|
541
|
+
username: string;
|
|
542
|
+
}, {
|
|
543
|
+
username: string;
|
|
544
|
+
}>>;
|
|
545
|
+
links: z.ZodOptional<z.ZodObject<{
|
|
546
|
+
npm: z.ZodOptional<z.ZodString>;
|
|
547
|
+
homepage: z.ZodOptional<z.ZodString>;
|
|
548
|
+
repository: z.ZodOptional<z.ZodString>;
|
|
549
|
+
}, "strip", z.ZodTypeAny, {
|
|
550
|
+
repository?: string | undefined;
|
|
551
|
+
homepage?: string | undefined;
|
|
552
|
+
npm?: string | undefined;
|
|
553
|
+
}, {
|
|
554
|
+
repository?: string | undefined;
|
|
555
|
+
homepage?: string | undefined;
|
|
556
|
+
npm?: string | undefined;
|
|
557
|
+
}>>;
|
|
558
|
+
}, "strip", z.ZodTypeAny, {
|
|
559
|
+
name: string;
|
|
560
|
+
version: string;
|
|
561
|
+
description?: string | undefined;
|
|
562
|
+
keywords?: string[] | undefined;
|
|
563
|
+
publisher?: {
|
|
564
|
+
username: string;
|
|
565
|
+
} | undefined;
|
|
566
|
+
links?: {
|
|
567
|
+
repository?: string | undefined;
|
|
568
|
+
homepage?: string | undefined;
|
|
569
|
+
npm?: string | undefined;
|
|
570
|
+
} | undefined;
|
|
571
|
+
}, {
|
|
572
|
+
name: string;
|
|
573
|
+
version: string;
|
|
574
|
+
description?: string | undefined;
|
|
575
|
+
keywords?: string[] | undefined;
|
|
576
|
+
publisher?: {
|
|
577
|
+
username: string;
|
|
578
|
+
} | undefined;
|
|
579
|
+
links?: {
|
|
580
|
+
repository?: string | undefined;
|
|
581
|
+
homepage?: string | undefined;
|
|
582
|
+
npm?: string | undefined;
|
|
583
|
+
} | undefined;
|
|
584
|
+
}>;
|
|
585
|
+
score: z.ZodObject<{
|
|
586
|
+
final: z.ZodNumber;
|
|
587
|
+
detail: z.ZodObject<{
|
|
588
|
+
quality: z.ZodNumber;
|
|
589
|
+
popularity: z.ZodNumber;
|
|
590
|
+
maintenance: z.ZodNumber;
|
|
591
|
+
}, "strip", z.ZodTypeAny, {
|
|
592
|
+
quality: number;
|
|
593
|
+
popularity: number;
|
|
594
|
+
maintenance: number;
|
|
595
|
+
}, {
|
|
596
|
+
quality: number;
|
|
597
|
+
popularity: number;
|
|
598
|
+
maintenance: number;
|
|
599
|
+
}>;
|
|
600
|
+
}, "strip", z.ZodTypeAny, {
|
|
601
|
+
final: number;
|
|
602
|
+
detail: {
|
|
603
|
+
quality: number;
|
|
604
|
+
popularity: number;
|
|
605
|
+
maintenance: number;
|
|
606
|
+
};
|
|
607
|
+
}, {
|
|
608
|
+
final: number;
|
|
609
|
+
detail: {
|
|
610
|
+
quality: number;
|
|
611
|
+
popularity: number;
|
|
612
|
+
maintenance: number;
|
|
613
|
+
};
|
|
614
|
+
}>;
|
|
615
|
+
searchScore: z.ZodNumber;
|
|
616
|
+
}, "strip", z.ZodTypeAny, {
|
|
617
|
+
package: {
|
|
618
|
+
name: string;
|
|
619
|
+
version: string;
|
|
620
|
+
description?: string | undefined;
|
|
621
|
+
keywords?: string[] | undefined;
|
|
622
|
+
publisher?: {
|
|
623
|
+
username: string;
|
|
624
|
+
} | undefined;
|
|
625
|
+
links?: {
|
|
626
|
+
repository?: string | undefined;
|
|
627
|
+
homepage?: string | undefined;
|
|
628
|
+
npm?: string | undefined;
|
|
629
|
+
} | undefined;
|
|
487
630
|
};
|
|
488
|
-
|
|
489
|
-
|
|
490
|
-
|
|
491
|
-
|
|
492
|
-
|
|
493
|
-
|
|
631
|
+
score: {
|
|
632
|
+
final: number;
|
|
633
|
+
detail: {
|
|
634
|
+
quality: number;
|
|
635
|
+
popularity: number;
|
|
636
|
+
maintenance: number;
|
|
637
|
+
};
|
|
494
638
|
};
|
|
495
|
-
|
|
496
|
-
|
|
497
|
-
|
|
498
|
-
|
|
499
|
-
|
|
500
|
-
|
|
639
|
+
searchScore: number;
|
|
640
|
+
}, {
|
|
641
|
+
package: {
|
|
642
|
+
name: string;
|
|
643
|
+
version: string;
|
|
644
|
+
description?: string | undefined;
|
|
645
|
+
keywords?: string[] | undefined;
|
|
646
|
+
publisher?: {
|
|
647
|
+
username: string;
|
|
648
|
+
} | undefined;
|
|
649
|
+
links?: {
|
|
650
|
+
repository?: string | undefined;
|
|
651
|
+
homepage?: string | undefined;
|
|
652
|
+
npm?: string | undefined;
|
|
653
|
+
} | undefined;
|
|
501
654
|
};
|
|
502
|
-
|
|
503
|
-
|
|
655
|
+
score: {
|
|
656
|
+
final: number;
|
|
657
|
+
detail: {
|
|
658
|
+
quality: number;
|
|
659
|
+
popularity: number;
|
|
660
|
+
maintenance: number;
|
|
661
|
+
};
|
|
662
|
+
};
|
|
663
|
+
searchScore: number;
|
|
664
|
+
}>, "many">;
|
|
665
|
+
total: z.ZodNumber;
|
|
666
|
+
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
667
|
+
objects: z.ZodArray<z.ZodObject<{
|
|
668
|
+
package: z.ZodObject<{
|
|
669
|
+
name: z.ZodString;
|
|
670
|
+
version: z.ZodString;
|
|
671
|
+
description: z.ZodOptional<z.ZodString>;
|
|
672
|
+
keywords: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
673
|
+
publisher: z.ZodOptional<z.ZodObject<{
|
|
674
|
+
username: z.ZodString;
|
|
675
|
+
}, "strip", z.ZodTypeAny, {
|
|
676
|
+
username: string;
|
|
677
|
+
}, {
|
|
678
|
+
username: string;
|
|
679
|
+
}>>;
|
|
680
|
+
links: z.ZodOptional<z.ZodObject<{
|
|
681
|
+
npm: z.ZodOptional<z.ZodString>;
|
|
682
|
+
homepage: z.ZodOptional<z.ZodString>;
|
|
683
|
+
repository: z.ZodOptional<z.ZodString>;
|
|
684
|
+
}, "strip", z.ZodTypeAny, {
|
|
685
|
+
repository?: string | undefined;
|
|
686
|
+
homepage?: string | undefined;
|
|
687
|
+
npm?: string | undefined;
|
|
688
|
+
}, {
|
|
689
|
+
repository?: string | undefined;
|
|
690
|
+
homepage?: string | undefined;
|
|
691
|
+
npm?: string | undefined;
|
|
692
|
+
}>>;
|
|
693
|
+
}, "strip", z.ZodTypeAny, {
|
|
694
|
+
name: string;
|
|
695
|
+
version: string;
|
|
696
|
+
description?: string | undefined;
|
|
697
|
+
keywords?: string[] | undefined;
|
|
698
|
+
publisher?: {
|
|
699
|
+
username: string;
|
|
700
|
+
} | undefined;
|
|
701
|
+
links?: {
|
|
702
|
+
repository?: string | undefined;
|
|
703
|
+
homepage?: string | undefined;
|
|
704
|
+
npm?: string | undefined;
|
|
705
|
+
} | undefined;
|
|
706
|
+
}, {
|
|
707
|
+
name: string;
|
|
708
|
+
version: string;
|
|
709
|
+
description?: string | undefined;
|
|
710
|
+
keywords?: string[] | undefined;
|
|
711
|
+
publisher?: {
|
|
712
|
+
username: string;
|
|
713
|
+
} | undefined;
|
|
714
|
+
links?: {
|
|
715
|
+
repository?: string | undefined;
|
|
716
|
+
homepage?: string | undefined;
|
|
717
|
+
npm?: string | undefined;
|
|
718
|
+
} | undefined;
|
|
719
|
+
}>;
|
|
720
|
+
score: z.ZodObject<{
|
|
721
|
+
final: z.ZodNumber;
|
|
722
|
+
detail: z.ZodObject<{
|
|
723
|
+
quality: z.ZodNumber;
|
|
724
|
+
popularity: z.ZodNumber;
|
|
725
|
+
maintenance: z.ZodNumber;
|
|
726
|
+
}, "strip", z.ZodTypeAny, {
|
|
727
|
+
quality: number;
|
|
728
|
+
popularity: number;
|
|
729
|
+
maintenance: number;
|
|
730
|
+
}, {
|
|
731
|
+
quality: number;
|
|
732
|
+
popularity: number;
|
|
733
|
+
maintenance: number;
|
|
734
|
+
}>;
|
|
735
|
+
}, "strip", z.ZodTypeAny, {
|
|
736
|
+
final: number;
|
|
737
|
+
detail: {
|
|
738
|
+
quality: number;
|
|
739
|
+
popularity: number;
|
|
740
|
+
maintenance: number;
|
|
741
|
+
};
|
|
742
|
+
}, {
|
|
743
|
+
final: number;
|
|
744
|
+
detail: {
|
|
745
|
+
quality: number;
|
|
746
|
+
popularity: number;
|
|
747
|
+
maintenance: number;
|
|
748
|
+
};
|
|
749
|
+
}>;
|
|
750
|
+
searchScore: z.ZodNumber;
|
|
751
|
+
}, "strip", z.ZodTypeAny, {
|
|
752
|
+
package: {
|
|
753
|
+
name: string;
|
|
754
|
+
version: string;
|
|
755
|
+
description?: string | undefined;
|
|
756
|
+
keywords?: string[] | undefined;
|
|
757
|
+
publisher?: {
|
|
758
|
+
username: string;
|
|
759
|
+
} | undefined;
|
|
760
|
+
links?: {
|
|
761
|
+
repository?: string | undefined;
|
|
762
|
+
homepage?: string | undefined;
|
|
763
|
+
npm?: string | undefined;
|
|
764
|
+
} | undefined;
|
|
765
|
+
};
|
|
766
|
+
score: {
|
|
767
|
+
final: number;
|
|
768
|
+
detail: {
|
|
769
|
+
quality: number;
|
|
770
|
+
popularity: number;
|
|
771
|
+
maintenance: number;
|
|
772
|
+
};
|
|
773
|
+
};
|
|
774
|
+
searchScore: number;
|
|
775
|
+
}, {
|
|
776
|
+
package: {
|
|
777
|
+
name: string;
|
|
778
|
+
version: string;
|
|
779
|
+
description?: string | undefined;
|
|
780
|
+
keywords?: string[] | undefined;
|
|
781
|
+
publisher?: {
|
|
782
|
+
username: string;
|
|
783
|
+
} | undefined;
|
|
784
|
+
links?: {
|
|
785
|
+
repository?: string | undefined;
|
|
786
|
+
homepage?: string | undefined;
|
|
787
|
+
npm?: string | undefined;
|
|
788
|
+
} | undefined;
|
|
789
|
+
};
|
|
790
|
+
score: {
|
|
791
|
+
final: number;
|
|
792
|
+
detail: {
|
|
793
|
+
quality: number;
|
|
794
|
+
popularity: number;
|
|
795
|
+
maintenance: number;
|
|
796
|
+
};
|
|
797
|
+
};
|
|
798
|
+
searchScore: number;
|
|
799
|
+
}>, "many">;
|
|
800
|
+
total: z.ZodNumber;
|
|
801
|
+
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
802
|
+
objects: z.ZodArray<z.ZodObject<{
|
|
803
|
+
package: z.ZodObject<{
|
|
804
|
+
name: z.ZodString;
|
|
805
|
+
version: z.ZodString;
|
|
806
|
+
description: z.ZodOptional<z.ZodString>;
|
|
807
|
+
keywords: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
808
|
+
publisher: z.ZodOptional<z.ZodObject<{
|
|
809
|
+
username: z.ZodString;
|
|
810
|
+
}, "strip", z.ZodTypeAny, {
|
|
811
|
+
username: string;
|
|
812
|
+
}, {
|
|
813
|
+
username: string;
|
|
814
|
+
}>>;
|
|
815
|
+
links: z.ZodOptional<z.ZodObject<{
|
|
816
|
+
npm: z.ZodOptional<z.ZodString>;
|
|
817
|
+
homepage: z.ZodOptional<z.ZodString>;
|
|
818
|
+
repository: z.ZodOptional<z.ZodString>;
|
|
819
|
+
}, "strip", z.ZodTypeAny, {
|
|
820
|
+
repository?: string | undefined;
|
|
821
|
+
homepage?: string | undefined;
|
|
822
|
+
npm?: string | undefined;
|
|
823
|
+
}, {
|
|
824
|
+
repository?: string | undefined;
|
|
825
|
+
homepage?: string | undefined;
|
|
826
|
+
npm?: string | undefined;
|
|
827
|
+
}>>;
|
|
828
|
+
}, "strip", z.ZodTypeAny, {
|
|
829
|
+
name: string;
|
|
830
|
+
version: string;
|
|
831
|
+
description?: string | undefined;
|
|
832
|
+
keywords?: string[] | undefined;
|
|
833
|
+
publisher?: {
|
|
834
|
+
username: string;
|
|
835
|
+
} | undefined;
|
|
836
|
+
links?: {
|
|
837
|
+
repository?: string | undefined;
|
|
838
|
+
homepage?: string | undefined;
|
|
839
|
+
npm?: string | undefined;
|
|
840
|
+
} | undefined;
|
|
841
|
+
}, {
|
|
842
|
+
name: string;
|
|
843
|
+
version: string;
|
|
844
|
+
description?: string | undefined;
|
|
845
|
+
keywords?: string[] | undefined;
|
|
846
|
+
publisher?: {
|
|
847
|
+
username: string;
|
|
848
|
+
} | undefined;
|
|
849
|
+
links?: {
|
|
850
|
+
repository?: string | undefined;
|
|
851
|
+
homepage?: string | undefined;
|
|
852
|
+
npm?: string | undefined;
|
|
853
|
+
} | undefined;
|
|
854
|
+
}>;
|
|
855
|
+
score: z.ZodObject<{
|
|
856
|
+
final: z.ZodNumber;
|
|
857
|
+
detail: z.ZodObject<{
|
|
858
|
+
quality: z.ZodNumber;
|
|
859
|
+
popularity: z.ZodNumber;
|
|
860
|
+
maintenance: z.ZodNumber;
|
|
861
|
+
}, "strip", z.ZodTypeAny, {
|
|
862
|
+
quality: number;
|
|
863
|
+
popularity: number;
|
|
864
|
+
maintenance: number;
|
|
865
|
+
}, {
|
|
866
|
+
quality: number;
|
|
867
|
+
popularity: number;
|
|
868
|
+
maintenance: number;
|
|
869
|
+
}>;
|
|
870
|
+
}, "strip", z.ZodTypeAny, {
|
|
871
|
+
final: number;
|
|
872
|
+
detail: {
|
|
873
|
+
quality: number;
|
|
874
|
+
popularity: number;
|
|
875
|
+
maintenance: number;
|
|
876
|
+
};
|
|
877
|
+
}, {
|
|
878
|
+
final: number;
|
|
879
|
+
detail: {
|
|
880
|
+
quality: number;
|
|
881
|
+
popularity: number;
|
|
882
|
+
maintenance: number;
|
|
883
|
+
};
|
|
884
|
+
}>;
|
|
885
|
+
searchScore: z.ZodNumber;
|
|
886
|
+
}, "strip", z.ZodTypeAny, {
|
|
887
|
+
package: {
|
|
888
|
+
name: string;
|
|
889
|
+
version: string;
|
|
890
|
+
description?: string | undefined;
|
|
891
|
+
keywords?: string[] | undefined;
|
|
892
|
+
publisher?: {
|
|
893
|
+
username: string;
|
|
894
|
+
} | undefined;
|
|
895
|
+
links?: {
|
|
896
|
+
repository?: string | undefined;
|
|
897
|
+
homepage?: string | undefined;
|
|
898
|
+
npm?: string | undefined;
|
|
899
|
+
} | undefined;
|
|
900
|
+
};
|
|
901
|
+
score: {
|
|
902
|
+
final: number;
|
|
903
|
+
detail: {
|
|
904
|
+
quality: number;
|
|
905
|
+
popularity: number;
|
|
906
|
+
maintenance: number;
|
|
907
|
+
};
|
|
908
|
+
};
|
|
909
|
+
searchScore: number;
|
|
910
|
+
}, {
|
|
911
|
+
package: {
|
|
912
|
+
name: string;
|
|
913
|
+
version: string;
|
|
914
|
+
description?: string | undefined;
|
|
915
|
+
keywords?: string[] | undefined;
|
|
916
|
+
publisher?: {
|
|
917
|
+
username: string;
|
|
918
|
+
} | undefined;
|
|
919
|
+
links?: {
|
|
920
|
+
repository?: string | undefined;
|
|
921
|
+
homepage?: string | undefined;
|
|
922
|
+
npm?: string | undefined;
|
|
923
|
+
} | undefined;
|
|
924
|
+
};
|
|
925
|
+
score: {
|
|
926
|
+
final: number;
|
|
927
|
+
detail: {
|
|
928
|
+
quality: number;
|
|
929
|
+
popularity: number;
|
|
930
|
+
maintenance: number;
|
|
931
|
+
};
|
|
932
|
+
};
|
|
933
|
+
searchScore: number;
|
|
934
|
+
}>, "many">;
|
|
935
|
+
total: z.ZodNumber;
|
|
936
|
+
}, z.ZodTypeAny, "passthrough">>;
|
|
504
937
|
export type NpmPackageInfo = z.infer<typeof NpmPackageInfoSchema>;
|
|
505
938
|
export type NpmPackageData = z.infer<typeof NpmPackageDataSchema>;
|
|
506
939
|
export type BundlephobiaData = z.infer<typeof BundlephobiaDataSchema>;
|
package/dist/index.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../index.ts"],"names":[],"mappings":";AAMA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAGxB,eAAO,MAAM,uBAAuB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;gCAsBrB,CAAC;AAEhB,eAAO,MAAM,oBAAoB
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../index.ts"],"names":[],"mappings":";AAMA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAGxB,eAAO,MAAM,mBAAmB;;;;;;;;;;;;gCAMjB,CAAC;AAEhB,eAAO,MAAM,uBAAuB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;gCAsBrB,CAAC;AAEhB,eAAO,MAAM,oBAAoB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;gCAsBlB,CAAC;AAEhB,eAAO,MAAM,oBAAoB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAU/B,CAAC;AAEH,eAAO,MAAM,sBAAsB;;;;;;;;;;;;EAIjC,CAAC;AAEH,eAAO,MAAM,sBAAsB;;;;;;;;;;;;;;;EAKjC,CAAC;AAGH,eAAO,MAAM,gBAAgB;;;;;;;;;;;;;;;;;;EAM3B,CAAC;AAEH,eAAO,MAAM,oBAAoB;;;;;;;;;;;;;;;;;;EAM/B,CAAC;AAEH,eAAO,MAAM,mBAAmB;;;;;;;;;;;;;;;;;;EAM9B,CAAC;AAmHH,eAAO,MAAM,qBAAqB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;gCAmCnB,CAAC;AAGhB,MAAM,MAAM,cAAc,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,oBAAoB,CAAC,CAAC;AAClE,MAAM,MAAM,cAAc,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,oBAAoB,CAAC,CAAC;AAClE,MAAM,MAAM,gBAAgB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,sBAAsB,CAAC,CAAC;AACtE,MAAM,MAAM,gBAAgB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,sBAAsB,CAAC,CAAC"}
|