-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathrepos.json
13458 lines (13458 loc) · 445 KB
/
repos.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
[
{
"name": "vscode-gitlens",
"full_name": "gitkraken/vscode-gitlens",
"url": "https://github.com/gitkraken/vscode-gitlens",
"stars": 9263,
"updated_at": "2025-02-25T17:32:22Z",
"description": "Supercharge Git inside VS Code and unlock untapped knowledge within each repository \u2014 Visualize code authorship at a glance via Git blame annotations and CodeLens, seamlessly navigate and explore Git repositories, gain valuable insights via rich visualizations and powerful comparison commands, and so much more",
"size_kb": 147202,
"languages": {
"TypeScript": 5387790,
"HTML": 214418,
"SCSS": 131795,
"JavaScript": 75427,
"Handlebars": 2072,
"Dockerfile": 1282,
"Shell": 920
}
},
{
"name": "vscode-drawio",
"full_name": "hediet/vscode-drawio",
"url": "https://github.com/hediet/vscode-drawio",
"stars": 9219,
"updated_at": "2025-02-25T04:47:45Z",
"description": "This unofficial extension integrates Draw.io (also known as diagrams.net) into VS Code.",
"size_kb": 11283,
"languages": {
"TypeScript": 139666,
"HTML": 14416,
"JavaScript": 196,
"CSS": 23
}
},
{
"name": "vscode-leetcode",
"full_name": "LeetCode-OpenSource/vscode-leetcode",
"url": "https://github.com/LeetCode-OpenSource/vscode-leetcode",
"stars": 8273,
"updated_at": "2025-02-25T17:49:01Z",
"description": "Solve LeetCode problems in VS Code",
"size_kb": 11829,
"languages": {
"TypeScript": 134647
}
},
{
"name": "vscode-debug-visualizer",
"full_name": "hediet/vscode-debug-visualizer",
"url": "https://github.com/hediet/vscode-debug-visualizer",
"stars": 8036,
"updated_at": "2025-02-25T07:49:24Z",
"description": "An extension for VS Code that visualizes data during debugging.",
"size_kb": 59350,
"languages": {
"TypeScript": 160246,
"SCSS": 34145,
"JavaScript": 208
}
},
{
"name": "vscode-neovim",
"full_name": "vscode-neovim/vscode-neovim",
"url": "https://github.com/vscode-neovim/vscode-neovim",
"stars": 6665,
"updated_at": "2025-02-25T17:52:07Z",
"description": "Vim mode for VSCode, powered by Neovim",
"size_kb": 4228,
"languages": {
"TypeScript": 449051,
"Lua": 65059,
"Vim Script": 24887,
"JavaScript": 23071,
"Jupyter Notebook": 404
}
},
{
"name": "vscode-live-server",
"full_name": "ritwickdey/vscode-live-server",
"url": "https://github.com/ritwickdey/vscode-live-server",
"stars": 5979,
"updated_at": "2025-02-25T09:42:25Z",
"description": "Launch a development local Server with live reload feature for static & dynamic pages.",
"size_kb": 5504,
"languages": {
"TypeScript": 50440,
"JavaScript": 13198,
"HTML": 1493
}
},
{
"name": "vscode-cpptools",
"full_name": "microsoft/vscode-cpptools",
"url": "https://github.com/microsoft/vscode-cpptools",
"stars": 5670,
"updated_at": "2025-02-25T18:04:06Z",
"description": "Official repository for the Microsoft C/C++ extension for VS Code.",
"size_kb": 57391,
"languages": {
"TypeScript": 1644325,
"C++": 97950,
"JavaScript": 36480,
"HTML": 33699,
"C": 336,
"Batchfile": 64
}
},
{
"name": "vscode-restclient",
"full_name": "Huachao/vscode-restclient",
"url": "https://github.com/Huachao/vscode-restclient",
"stars": 5455,
"updated_at": "2025-02-24T17:36:52Z",
"description": "REST Client Extension for Visual Studio Code",
"size_kb": 9721,
"languages": {
"TypeScript": 314722,
"CSS": 7794,
"JavaScript": 3927
}
},
{
"name": "synthwave-vscode",
"full_name": "robb0wen/synthwave-vscode",
"url": "https://github.com/robb0wen/synthwave-vscode",
"stars": 5221,
"updated_at": "2025-02-20T16:04:54Z",
"description": "Synthwave inspired colour theme for VS Code \ud83c\udf05\ud83d\udd76 ",
"size_kb": 1644,
"languages": {
"CSS": 21843,
"JavaScript": 11376
}
},
{
"name": "prettier-vscode",
"full_name": "prettier/prettier-vscode",
"url": "https://github.com/prettier/prettier-vscode",
"stars": 5216,
"updated_at": "2025-02-25T10:10:32Z",
"description": "Visual Studio Code extension for Prettier",
"size_kb": 105733,
"languages": {
"TypeScript": 87750,
"JavaScript": 10307,
"Dockerfile": 945,
"PHP": 904,
"HTML": 432,
"SCSS": 237,
"Handlebars": 221,
"Vue": 70,
"CSS": 59
}
},
{
"name": "vscode-blade-formatter",
"full_name": "shufo/vscode-blade-formatter",
"url": "https://github.com/shufo/vscode-blade-formatter",
"stars": 4657,
"updated_at": "2025-02-25T15:44:21Z",
"description": "An opinionated Blade file formatter for VSCode",
"size_kb": 8897,
"languages": {
"TypeScript": 38407,
"JavaScript": 2203
}
},
{
"name": "vscode-icons",
"full_name": "vscode-icons/vscode-icons",
"url": "https://github.com/vscode-icons/vscode-icons",
"stars": 4587,
"updated_at": "2025-02-25T13:54:59Z",
"description": "Icons for Visual Studio Code",
"size_kb": 22543,
"languages": {
"TypeScript": 865616
}
},
{
"name": "vscode-go",
"full_name": "golang/vscode-go",
"url": "https://github.com/golang/vscode-go",
"stars": 3980,
"updated_at": "2025-02-25T16:08:21Z",
"description": "Go extension for Visual Studio Code",
"size_kb": 134650,
"languages": {
"TypeScript": 985053,
"Go": 97516,
"CSS": 29687,
"Shell": 2525,
"Dockerfile": 1757,
"JavaScript": 764
}
},
{
"name": "vscode-remote-release",
"full_name": "microsoft/vscode-remote-release",
"url": "https://github.com/microsoft/vscode-remote-release",
"stars": 3773,
"updated_at": "2025-02-25T13:11:00Z",
"description": "Visual Studio Code Remote Development: Open any folder in WSL, in a Docker container, or on a remote machine using SSH and take advantage of VS Code's full feature set.",
"size_kb": 102708,
"languages": {
"Dockerfile": 807
}
},
{
"name": "vscode-laravel-extra-intellisense",
"full_name": "amir9480/vscode-laravel-extra-intellisense",
"url": "https://github.com/amir9480/vscode-laravel-extra-intellisense",
"stars": 3749,
"updated_at": "2025-02-25T14:31:43Z",
"description": "This extension adds extra autocompletion for laravel projects to VSCode.",
"size_kb": 3215,
"languages": {
"TypeScript": 96029,
"JavaScript": 1686
}
},
{
"name": "vscode-pets",
"full_name": "tonybaloney/vscode-pets",
"url": "https://github.com/tonybaloney/vscode-pets",
"stars": 3412,
"updated_at": "2025-02-25T07:29:57Z",
"description": "Adds playful pets \ud83e\udd80\ud83d\udc31\ud83d\udc36 in your VS Code window",
"size_kb": 37002,
"languages": {
"TypeScript": 182402,
"JavaScript": 4637,
"CSS": 4274,
"Python": 863
}
},
{
"name": "vscode-file-nesting-config",
"full_name": "antfu/vscode-file-nesting-config",
"url": "https://github.com/antfu/vscode-file-nesting-config",
"stars": 3224,
"updated_at": "2025-02-25T02:53:54Z",
"description": "Config of File Nesting for VS Code",
"size_kb": 423,
"languages": {
"JavaScript": 14746,
"TypeScript": 3496
}
},
{
"name": "vscode-markdown",
"full_name": "yzhang-gh/vscode-markdown",
"url": "https://github.com/yzhang-gh/vscode-markdown",
"stars": 2971,
"updated_at": "2025-02-22T17:15:04Z",
"description": "Markdown All in One",
"size_kb": 8075,
"languages": {
"TypeScript": 310263,
"JavaScript": 12135,
"Rust": 862,
"CSS": 154
}
},
{
"name": "vscode-csharp",
"full_name": "dotnet/vscode-csharp",
"url": "https://github.com/dotnet/vscode-csharp",
"stars": 2909,
"updated_at": "2025-02-25T09:32:47Z",
"description": "Official C# support for Visual Studio Code",
"size_kb": 41784,
"languages": {
"TypeScript": 2043860,
"C#": 28794,
"HTML": 8041,
"JavaScript": 4770,
"CSS": 2370,
"Shell": 2021,
"PowerShell": 1500,
"Dockerfile": 461
}
},
{
"name": "vscode-jest",
"full_name": "jest-community/vscode-jest",
"url": "https://github.com/jest-community/vscode-jest",
"stars": 2858,
"updated_at": "2025-02-19T14:22:37Z",
"description": "The optimal flow for Jest based testing in VS Code",
"size_kb": 43193,
"languages": {
"TypeScript": 1197513,
"JavaScript": 8903,
"Shell": 2545
}
},
{
"name": "night-owl-vscode-theme",
"full_name": "sdras/night-owl-vscode-theme",
"url": "https://github.com/sdras/night-owl-vscode-theme",
"stars": 2856,
"updated_at": "2025-02-22T18:03:19Z",
"description": "\ud83c\udf0c NIGHT OWL: A VS Code dark theme for contrast for nighttime coding, \ud83e\udd89 LIGHT OWL: a daytime light theme",
"size_kb": 3546,
"languages": {}
},
{
"name": "vscode-react-native",
"full_name": "microsoft/vscode-react-native",
"url": "https://github.com/microsoft/vscode-react-native",
"stars": 2655,
"updated_at": "2025-02-25T02:47:09Z",
"description": "VSCode extension for React Native - supports debugging and editor integration",
"size_kb": 26827,
"languages": {
"TypeScript": 1598177,
"JavaScript": 67946,
"Ruby": 2204,
"Shell": 56,
"Batchfile": 30
}
},
{
"name": "vscode-database-client",
"full_name": "cweijan/vscode-database-client",
"url": "https://github.com/cweijan/vscode-database-client",
"stars": 2574,
"updated_at": "2025-02-25T12:48:15Z",
"description": "Database Client For Visual Studio Code",
"size_kb": 9730,
"languages": {
"TypeScript": 601070,
"CSS": 307095,
"Vue": 139118,
"JavaScript": 113348,
"HTML": 134
}
},
{
"name": "vscode-pull-request-github",
"full_name": "microsoft/vscode-pull-request-github",
"url": "https://github.com/microsoft/vscode-pull-request-github",
"stars": 2346,
"updated_at": "2025-02-24T10:33:46Z",
"description": "GitHub Pull Requests for Visual Studio Code",
"size_kb": 85449,
"languages": {
"TypeScript": 1693011,
"CSS": 39327,
"JavaScript": 27082,
"Shell": 69
}
},
{
"name": "vscode-code-runner",
"full_name": "formulahendry/vscode-code-runner",
"url": "https://github.com/formulahendry/vscode-code-runner",
"stars": 2259,
"updated_at": "2025-02-25T12:22:02Z",
"description": "Code Runner for Visual Studio Code",
"size_kb": 1247,
"languages": {
"TypeScript": 26029
}
},
{
"name": "vscode-material-icon-theme",
"full_name": "material-extensions/vscode-material-icon-theme",
"url": "https://github.com/material-extensions/vscode-material-icon-theme",
"stars": 2223,
"updated_at": "2025-02-24T14:46:28Z",
"description": "Material Design icons for VS Code",
"size_kb": 119921,
"languages": {
"TypeScript": 394897,
"CSS": 912,
"JavaScript": 744
}
},
{
"name": "vscode-front-matter",
"full_name": "estruyf/vscode-front-matter",
"url": "https://github.com/estruyf/vscode-front-matter",
"stars": 2126,
"updated_at": "2025-02-25T16:17:46Z",
"description": "Front Matter is a CMS running straight in Visual Studio Code. Can be used with static site generators like Hugo, Jekyll, Hexo, NextJs, Gatsby, and many more...",
"size_kb": 44044,
"languages": {
"TypeScript": 1531661,
"CSS": 80262,
"JavaScript": 29128
}
},
{
"name": "vscode-java",
"full_name": "redhat-developer/vscode-java",
"url": "https://github.com/redhat-developer/vscode-java",
"stars": 2114,
"updated_at": "2025-02-23T12:20:45Z",
"description": "Java Language Support for Visual Studio Code",
"size_kb": 9049,
"languages": {
"TypeScript": 454368,
"JavaScript": 12070,
"CSS": 11329,
"Java": 4123
}
},
{
"name": "pythonVSCode",
"full_name": "DonJayamanne/pythonVSCode",
"url": "https://github.com/DonJayamanne/pythonVSCode",
"stars": 2091,
"updated_at": "2025-02-23T12:10:27Z",
"description": "This extension is now maintained in the Microsoft fork.",
"size_kb": 162013,
"languages": {
"TypeScript": 5503254,
"Python": 667829,
"JavaScript": 27348,
"Jupyter Notebook": 10520,
"Shell": 1144,
"Dockerfile": 624,
"HTML": 569,
"PowerShell": 403,
"Roff": 108
}
},
{
"name": "vscode-settings",
"full_name": "antfu/vscode-settings",
"url": "https://github.com/antfu/vscode-settings",
"stars": 2026,
"updated_at": "2025-02-25T08:17:17Z",
"description": "My VS Code settings and extensions ",
"size_kb": 13,
"languages": {}
},
{
"name": "vscode-project-manager",
"full_name": "alefragnani/vscode-project-manager",
"url": "https://github.com/alefragnani/vscode-project-manager",
"stars": 2013,
"updated_at": "2025-02-25T14:48:53Z",
"description": "Project Manager Extension for Visual Studio Code",
"size_kb": 7383,
"languages": {
"TypeScript": 61824,
"JavaScript": 2180
}
},
{
"name": "tokyo-night-vscode-theme",
"full_name": "tokyo-night/tokyo-night-vscode-theme",
"url": "https://github.com/tokyo-night/tokyo-night-vscode-theme",
"stars": 1938,
"updated_at": "2025-02-25T05:16:27Z",
"description": "A clean, dark Visual Studio Code theme that celebrates the lights of Downtown Tokyo at night.",
"size_kb": 1010,
"languages": {}
},
{
"name": "github-vscode-theme",
"full_name": "primer/github-vscode-theme",
"url": "https://github.com/primer/github-vscode-theme",
"stars": 1921,
"updated_at": "2025-02-24T17:04:38Z",
"description": "GitHub's VS Code themes",
"size_kb": 790,
"languages": {
"JavaScript": 55516
}
},
{
"name": "vscode-infracost",
"full_name": "infracost/vscode-infracost",
"url": "https://github.com/infracost/vscode-infracost",
"stars": 1813,
"updated_at": "2025-02-24T08:18:16Z",
"description": "See cost estimates for Terraform right in your editor\ud83d\udcb0\ud83d\udcc9",
"size_kb": 4155,
"languages": {
"TypeScript": 36136,
"Handlebars": 4794,
"JavaScript": 1715,
"Shell": 1425
}
},
{
"name": "vscode-eslint",
"full_name": "microsoft/vscode-eslint",
"url": "https://github.com/microsoft/vscode-eslint",
"stars": 1795,
"updated_at": "2025-02-25T08:59:25Z",
"description": "VSCode extension to integrate eslint into VSCode",
"size_kb": 6774,
"languages": {
"TypeScript": 229354,
"Jupyter Notebook": 115246,
"JavaScript": 21463,
"Vue": 1174,
"HTML": 186,
"Shell": 114
}
},
{
"name": "vscode-bookmarks",
"full_name": "alefragnani/vscode-bookmarks",
"url": "https://github.com/alefragnani/vscode-bookmarks",
"stars": 1768,
"updated_at": "2025-02-23T18:12:31Z",
"description": "Bookmarks Extension for Visual Studio Code",
"size_kb": 12287,
"languages": {
"TypeScript": 53199,
"JavaScript": 1956
}
},
{
"name": "vscode-react-javascript-snippets",
"full_name": "r5n-labs/vscode-react-javascript-snippets",
"url": "https://github.com/r5n-labs/vscode-react-javascript-snippets",
"stars": 1767,
"updated_at": "2025-02-24T15:23:04Z",
"description": "Extension for React/Javascript snippets with search supporting ES7+ and babel features",
"size_kb": 439,
"languages": {
"TypeScript": 72632,
"JavaScript": 8557
}
},
{
"name": "vscode-powershell",
"full_name": "PowerShell/vscode-powershell",
"url": "https://github.com/PowerShell/vscode-powershell",
"stars": 1764,
"updated_at": "2025-02-24T21:03:14Z",
"description": "Provides PowerShell language and debugging support for Visual Studio Code",
"size_kb": 9986,
"languages": {
"TypeScript": 339683,
"PowerShell": 30819,
"C#": 1579
}
},
{
"name": "vscode-js-debug",
"full_name": "microsoft/vscode-js-debug",
"url": "https://github.com/microsoft/vscode-js-debug",
"stars": 1732,
"updated_at": "2025-02-25T00:21:35Z",
"description": "A DAP-compatible JavaScript debugger. Used in VS Code, VS, + more",
"size_kb": 23895,
"languages": {
"TypeScript": 2138101,
"JavaScript": 552051,
"HTML": 209485,
"CSS": 3024,
"Python": 1795,
"C": 629,
"Makefile": 426,
"Shell": 290,
"Go": 86,
"PowerShell": 82
}
},
{
"name": "vscode-org-mode",
"full_name": "vscode-org-mode/vscode-org-mode",
"url": "https://github.com/vscode-org-mode/vscode-org-mode",
"stars": 1680,
"updated_at": "2025-02-19T03:50:10Z",
"description": "Emacs Org Mode for Visual Studio Code",
"size_kb": 58004,
"languages": {
"TypeScript": 44816,
"JavaScript": 5443
}
},
{
"name": "vscode-intelephense",
"full_name": "bmewburn/vscode-intelephense",
"url": "https://github.com/bmewburn/vscode-intelephense",
"stars": 1674,
"updated_at": "2025-02-25T00:32:48Z",
"description": "PHP intellisense for Visual Studio Code",
"size_kb": 2045,
"languages": {
"TypeScript": 19899,
"JavaScript": 932
}
},
{
"name": "godot-vscode-plugin",
"full_name": "godotengine/godot-vscode-plugin",
"url": "https://github.com/godotengine/godot-vscode-plugin",
"stars": 1649,
"updated_at": "2025-02-25T08:13:22Z",
"description": "Godot development tools for VSCode",
"size_kb": 3924,
"languages": {
"TypeScript": 324216,
"GDScript": 26774,
"JavaScript": 10786,
"CSS": 2651
}
},
{
"name": "marp-vscode",
"full_name": "marp-team/marp-vscode",
"url": "https://github.com/marp-team/marp-vscode",
"stars": 1638,
"updated_at": "2025-02-24T05:20:18Z",
"description": "Marp for VS Code: Create slide deck written in Marp Markdown on VS Code",
"size_kb": 13344,
"languages": {
"TypeScript": 250736,
"JavaScript": 7631,
"CSS": 1427
}
},
{
"name": "vscode-mssql",
"full_name": "microsoft/vscode-mssql",
"url": "https://github.com/microsoft/vscode-mssql",
"stars": 1605,
"updated_at": "2025-02-25T10:16:53Z",
"description": "Visual Studio Code SQL Server extension.",
"size_kb": 29991,
"languages": {
"TypeScript": 2496395,
"CSS": 73317,
"JavaScript": 30838,
"Shell": 2667,
"EJS": 2437,
"HTML": 1848,
"TSQL": 113
}
},
{
"name": "aws-toolkit-vscode",
"full_name": "aws/aws-toolkit-vscode",
"url": "https://github.com/aws/aws-toolkit-vscode",
"stars": 1587,
"updated_at": "2025-02-25T17:07:13Z",
"description": "Amazon Q, CodeCatalyst, Local Lambda debug, SAM/CFN syntax, ECS Terminal, AWS resources",
"size_kb": 139263,
"languages": {
"TypeScript": 9595626,
"Vue": 193259,
"JavaScript": 58912,
"CSS": 41117,
"Java": 12587,
"Shell": 9934,
"Python": 7526,
"HTML": 6125,
"Go": 5585,
"PowerShell": 3716,
"Dockerfile": 3398,
"C#": 3148,
"HCL": 754,
"Ruby": 183,
"Makefile": 33
}
},
{
"name": "vscode",
"full_name": "catppuccin/vscode",
"url": "https://github.com/catppuccin/vscode",
"stars": 1582,
"updated_at": "2025-02-25T13:55:44Z",
"description": "\ud83e\udd8c Soothing pastel theme for VSCode & Azure Data Studio",
"size_kb": 10615,
"languages": {
"TypeScript": 118917,
"Nix": 9515,
"JavaScript": 4323,
"CSS": 924
}
},
{
"name": "vscode-sqltools",
"full_name": "mtxr/vscode-sqltools",
"url": "https://github.com/mtxr/vscode-sqltools",
"stars": 1553,
"updated_at": "2025-02-23T23:40:04Z",
"description": "Database management for VSCode",
"size_kb": 14407,
"languages": {
"TypeScript": 530166,
"JavaScript": 22808,
"SCSS": 15170,
"Shell": 1228,
"PLpgSQL": 519,
"TSQL": 102
}
},
{
"name": "vscode-markdown-preview-enhanced",
"full_name": "shd101wyy/vscode-markdown-preview-enhanced",
"url": "https://github.com/shd101wyy/vscode-markdown-preview-enhanced",
"stars": 1542,
"updated_at": "2025-02-25T11:56:29Z",
"description": "One of the \"BEST\" markdown preview extensions for Visual Studio Code",
"size_kb": 12826,
"languages": {
"TypeScript": 103403,
"JavaScript": 6520,
"Nix": 569,
"Shell": 79
}
},
{
"name": "vscode-languageserver-node",
"full_name": "microsoft/vscode-languageserver-node",
"url": "https://github.com/microsoft/vscode-languageserver-node",
"stars": 1531,
"updated_at": "2025-02-24T10:34:49Z",
"description": "Language server protocol implementation for VSCode. This allows implementing language services in JS/TS running on node.js",
"size_kb": 7772,
"languages": {
"TypeScript": 1790255,
"JavaScript": 37077,
"Batchfile": 5852,
"HTML": 4957,
"Jupyter Notebook": 3018,
"Shell": 1579
}
},
{
"name": "vscode-cmake-tools",
"full_name": "microsoft/vscode-cmake-tools",
"url": "https://github.com/microsoft/vscode-cmake-tools",
"stars": 1522,
"updated_at": "2025-02-25T14:22:52Z",
"description": "CMake integration in Visual Studio Code",
"size_kb": 18575,
"languages": {
"TypeScript": 1853377,
"JavaScript": 40603,
"CMake": 12389,
"C++": 7872,
"Dockerfile": 1236,
"C": 130,
"Shell": 25,
"Batchfile": 8
}
},
{
"name": "vscode_deno",
"full_name": "denoland/vscode_deno",
"url": "https://github.com/denoland/vscode_deno",
"stars": 1508,
"updated_at": "2025-02-25T14:52:39Z",
"description": "Visual Studio Code plugin for Deno",
"size_kb": 25545,
"languages": {
"TypeScript": 122277,
"CSS": 1174,
"JavaScript": 379
}
},
{
"name": "vscode-spell-checker",
"full_name": "streetsidesoftware/vscode-spell-checker",
"url": "https://github.com/streetsidesoftware/vscode-spell-checker",
"stars": 1480,
"updated_at": "2025-02-25T09:55:27Z",
"description": "A simple source code spell checker for code",
"size_kb": 31069,
"languages": {
"TypeScript": 1392375,
"JavaScript": 34783,
"Svelte": 32211,
"CSS": 32037,
"Haskell": 7378,
"Jupyter Notebook": 2105,
"MDX": 2008,
"C": 770,
"Python": 445,
"HTML": 407
}
},
{
"name": "vscode-background",
"full_name": "shalldie/vscode-background",
"url": "https://github.com/shalldie/vscode-background",
"stars": 1448,
"updated_at": "2025-02-25T09:48:19Z",
"description": "Bring background images to your vscode. vscode background \u80cc\u666f\u6269\u5c55\u63d2\u4ef6\u3002",
"size_kb": 3493,
"languages": {
"TypeScript": 45885,
"JavaScript": 1715
}
},
{
"name": "tabnine-vscode",
"full_name": "codota/tabnine-vscode",
"url": "https://github.com/codota/tabnine-vscode",
"stars": 1399,
"updated_at": "2025-02-25T03:44:53Z",
"description": "Visual Studio Code client for Tabnine. https://marketplace.visualstudio.com/items?itemName=TabNine.tabnine-vscode",
"size_kb": 1499845,
"languages": {
"TypeScript": 431987,
"JavaScript": 5015
}
},
{
"name": "vscode-generator-code",
"full_name": "microsoft/vscode-generator-code",
"url": "https://github.com/microsoft/vscode-generator-code",
"stars": 1364,
"updated_at": "2025-02-25T07:23:43Z",
"description": "Visual Studio Code extension generator",
"size_kb": 2765,
"languages": {
"JavaScript": 150805,
"TypeScript": 8401,
"Jupyter Notebook": 1083,
"Dockerfile": 408,
"CSS": 80
}
},
{
"name": "vscode-ai-toolkit",
"full_name": "microsoft/vscode-ai-toolkit",
"url": "https://github.com/microsoft/vscode-ai-toolkit",
"stars": 1363,
"updated_at": "2025-02-25T16:29:49Z",
"description": null,
"size_kb": 33924,
"languages": {}
},
{
"name": "vue-vscode-snippets",
"full_name": "sdras/vue-vscode-snippets",
"url": "https://github.com/sdras/vue-vscode-snippets",
"stars": 1335,
"updated_at": "2025-02-24T03:32:33Z",
"description": "These snippets were built to supercharge my workflow in the most seamless manner possible.",
"size_kb": 1680,
"languages": {
"JavaScript": 1309
}
},
{
"name": "vscode-jupyter",
"full_name": "microsoft/vscode-jupyter",
"url": "https://github.com/microsoft/vscode-jupyter",
"stars": 1334,
"updated_at": "2025-02-25T13:22:45Z",
"description": "VS Code Jupyter extension",
"size_kb": 208019,
"languages": {
"TypeScript": 7245749,
"Python": 2314576,
"Jupyter Notebook": 668431,
"JavaScript": 134114,
"Shell": 103064,
"CSS": 52234,
"HTML": 47632,
"Less": 13758,
"Dockerfile": 10306,
"Batchfile": 854,
"Roff": 108
}
},
{
"name": "copilot-codespaces-vscode",
"full_name": "skills/copilot-codespaces-vscode",
"url": "https://github.com/skills/copilot-codespaces-vscode",
"stars": 1332,
"updated_at": "2025-02-25T18:00:50Z",
"description": "Develop with AI-powered code suggestions using GitHub Copilot and VS Code",
"size_kb": 51,
"languages": {}
},
{
"name": "vscode-wakatime",
"full_name": "wakatime/vscode-wakatime",
"url": "https://github.com/wakatime/vscode-wakatime",
"stars": 1312,
"updated_at": "2025-02-24T14:45:07Z",
"description": "Visual Studio Code plugin for automatic time tracking and metrics generated from your programming activity.",
"size_kb": 1430,
"languages": {
"TypeScript": 99085,
"JavaScript": 2287
}
},
{
"name": "julia-vscode",
"full_name": "julia-vscode/julia-vscode",
"url": "https://github.com/julia-vscode/julia-vscode",
"stars": 1292,
"updated_at": "2025-02-21T06:53:12Z",
"description": "Julia extension for Visual Studio Code",
"size_kb": 17277,
"languages": {
"TypeScript": 365437,
"Julia": 129662,
"JavaScript": 10507,
"Smarty": 1222
}
},
{
"name": "llm-vscode",
"full_name": "huggingface/llm-vscode",
"url": "https://github.com/huggingface/llm-vscode",
"stars": 1274,
"updated_at": "2025-02-24T09:00:38Z",
"description": "LLM powered development for VSCode",
"size_kb": 286,
"languages": {
"TypeScript": 16929,
"JavaScript": 1519
}
},
{
"name": "editorconfig-vscode",
"full_name": "editorconfig/editorconfig-vscode",
"url": "https://github.com/editorconfig/editorconfig-vscode",
"stars": 1269,
"updated_at": "2025-02-24T12:36:45Z",
"description": "EditorConfig extension for Visual Studio Code",
"size_kb": 699,
"languages": {
"TypeScript": 42004
}
},
{
"name": "platformio-vscode-ide",
"full_name": "platformio/platformio-vscode-ide",
"url": "https://github.com/platformio/platformio-vscode-ide",
"stars": 1264,
"updated_at": "2025-02-24T12:46:49Z",
"description": "PlatformIO IDE for VSCode: The next generation integrated development environment for IoT",
"size_kb": 2059,
"languages": {
"JavaScript": 87799,
"Python": 2878
}
},
{
"name": "ruff-vscode",
"full_name": "astral-sh/ruff-vscode",
"url": "https://github.com/astral-sh/ruff-vscode",
"stars": 1261,
"updated_at": "2025-02-25T11:04:56Z",
"description": "A Visual Studio Code extension with support for the Ruff linter.",
"size_kb": 1447,
"languages": {
"TypeScript": 62239,
"Python": 43008,
"JavaScript": 1845,
"Just": 1312
}
},
{
"name": "chatgpt-vscode",
"full_name": "ai-genie/chatgpt-vscode",
"url": "https://github.com/ai-genie/chatgpt-vscode",
"stars": 1245,
"updated_at": "2025-02-24T11:05:28Z",
"description": "Your best AI pair programmer in VS Code",
"size_kb": 5253,
"languages": {
"HTML": 477
}
},
{
"name": "vscode-docker",
"full_name": "microsoft/vscode-docker",
"url": "https://github.com/microsoft/vscode-docker",
"stars": 1238,
"updated_at": "2025-02-15T21:49:47Z",
"description": "Docker Extension for Visual Studio Code",
"size_kb": 45675,
"languages": {
"TypeScript": 892013,
"JavaScript": 7120,
"Shell": 1033,
"Python": 877
}
},
{
"name": "discord-vscode",
"full_name": "iCrawl/discord-vscode",
"url": "https://github.com/iCrawl/discord-vscode",
"stars": 1200,
"updated_at": "2025-02-23T16:54:08Z",
"description": "\ud83d\udd8b\ufe0f Update your discord status with a rich presence",
"size_kb": 3785,
"languages": {
"TypeScript": 18916,
"JavaScript": 1037
}