-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathout.json
More file actions
4358 lines (4358 loc) · 242 KB
/
Copy pathout.json
File metadata and controls
4358 lines (4358 loc) · 242 KB
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
{
"url": "https://api.github.com/user/repos?username=iamspdarsan&type=all&per_page=100",
"status": 200,
"headers": {
"access-control-allow-origin": "*",
"access-control-expose-headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset",
"cache-control": "private, max-age=60, s-maxage=60",
"content-encoding": "gzip",
"content-security-policy": "default-src 'none'",
"content-type": "application/json; charset=utf-8",
"date": "Sat, 03 Aug 2024 19:42:48 GMT",
"etag": "W/\"3f7dba3bda60d42f5c4393b3f650d05ffcb10a20eecea92816d76c9d217a96ea\"",
"referrer-policy": "origin-when-cross-origin, strict-origin-when-cross-origin",
"server": "github.com",
"strict-transport-security": "max-age=31536000; includeSubdomains; preload",
"transfer-encoding": "chunked",
"vary": "Accept, Authorization, Cookie, X-GitHub-OTP,Accept-Encoding, Accept, X-Requested-With",
"x-accepted-oauth-scopes": "",
"x-content-type-options": "nosniff",
"x-frame-options": "deny",
"x-github-api-version-selected": "2022-11-28",
"x-github-media-type": "github.v3; format=json",
"x-github-request-id": "114B:1B447B:9980B4:9F388B:66AE8837",
"x-oauth-scopes": "admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, admin:public_key, admin:repo_hook, admin:ssh_signing_key, audit_log, codespace, copilot, delete:packages, delete_repo, gist, notifications, project, repo, user, workflow, write:discussion, write:packages",
"x-ratelimit-limit": "5000",
"x-ratelimit-remaining": "4985",
"x-ratelimit-reset": "1722715018",
"x-ratelimit-resource": "core",
"x-ratelimit-used": "15",
"x-xss-protection": "0"
},
"data": [
{
"id": 804825918,
"node_id": "R_kgDOL_irPg",
"name": ".github",
"full_name": "cresteem/.github",
"private": false,
"owner": {
"login": "cresteem",
"id": 128272305,
"node_id": "O_kgDOB6VHsQ",
"avatar_url": "https://avatars.githubusercontent.com/u/128272305?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/cresteem",
"html_url": "https://github.com/cresteem",
"followers_url": "https://api.github.com/users/cresteem/followers",
"following_url": "https://api.github.com/users/cresteem/following{/other_user}",
"gists_url": "https://api.github.com/users/cresteem/gists{/gist_id}",
"starred_url": "https://api.github.com/users/cresteem/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/cresteem/subscriptions",
"organizations_url": "https://api.github.com/users/cresteem/orgs",
"repos_url": "https://api.github.com/users/cresteem/repos",
"events_url": "https://api.github.com/users/cresteem/events{/privacy}",
"received_events_url": "https://api.github.com/users/cresteem/received_events",
"type": "Organization",
"site_admin": false
},
"html_url": "https://github.com/cresteem/.github",
"description": null,
"fork": false,
"url": "https://api.github.com/repos/cresteem/.github",
"forks_url": "https://api.github.com/repos/cresteem/.github/forks",
"keys_url": "https://api.github.com/repos/cresteem/.github/keys{/key_id}",
"collaborators_url": "https://api.github.com/repos/cresteem/.github/collaborators{/collaborator}",
"teams_url": "https://api.github.com/repos/cresteem/.github/teams",
"hooks_url": "https://api.github.com/repos/cresteem/.github/hooks",
"issue_events_url": "https://api.github.com/repos/cresteem/.github/issues/events{/number}",
"events_url": "https://api.github.com/repos/cresteem/.github/events",
"assignees_url": "https://api.github.com/repos/cresteem/.github/assignees{/user}",
"branches_url": "https://api.github.com/repos/cresteem/.github/branches{/branch}",
"tags_url": "https://api.github.com/repos/cresteem/.github/tags",
"blobs_url": "https://api.github.com/repos/cresteem/.github/git/blobs{/sha}",
"git_tags_url": "https://api.github.com/repos/cresteem/.github/git/tags{/sha}",
"git_refs_url": "https://api.github.com/repos/cresteem/.github/git/refs{/sha}",
"trees_url": "https://api.github.com/repos/cresteem/.github/git/trees{/sha}",
"statuses_url": "https://api.github.com/repos/cresteem/.github/statuses/{sha}",
"languages_url": "https://api.github.com/repos/cresteem/.github/languages",
"stargazers_url": "https://api.github.com/repos/cresteem/.github/stargazers",
"contributors_url": "https://api.github.com/repos/cresteem/.github/contributors",
"subscribers_url": "https://api.github.com/repos/cresteem/.github/subscribers",
"subscription_url": "https://api.github.com/repos/cresteem/.github/subscription",
"commits_url": "https://api.github.com/repos/cresteem/.github.qkg1.topmits{/sha}",
"git_commits_url": "https://api.github.com/repos/cresteem/.github/git/commits{/sha}",
"comments_url": "https://api.github.com/repos/cresteem/.github.qkg1.topments{/number}",
"issue_comment_url": "https://api.github.com/repos/cresteem/.github/issues/comments{/number}",
"contents_url": "https://api.github.com/repos/cresteem/.github/contents/{+path}",
"compare_url": "https://api.github.com/repos/cresteem/.github.qkg1.toppare/{base}...{head}",
"merges_url": "https://api.github.com/repos/cresteem/.github/merges",
"archive_url": "https://api.github.com/repos/cresteem/.github/{archive_format}{/ref}",
"downloads_url": "https://api.github.com/repos/cresteem/.github/downloads",
"issues_url": "https://api.github.com/repos/cresteem/.github/issues{/number}",
"pulls_url": "https://api.github.com/repos/cresteem/.github/pulls{/number}",
"milestones_url": "https://api.github.com/repos/cresteem/.github/milestones{/number}",
"notifications_url": "https://api.github.com/repos/cresteem/.github/notifications{?since,all,participating}",
"labels_url": "https://api.github.com/repos/cresteem/.github/labels{/name}",
"releases_url": "https://api.github.com/repos/cresteem/.github/releases{/id}",
"deployments_url": "https://api.github.com/repos/cresteem/.github/deployments",
"created_at": "2024-05-23T10:49:42Z",
"updated_at": "2024-08-03T18:57:36Z",
"pushed_at": "2024-08-03T18:57:34Z",
"git_url": "git://github.com/cresteem/.github.git",
"ssh_url": "git@github.com:cresteem/.github.git",
"clone_url": "https://github.com/cresteem/.github.git",
"svn_url": "https://github.com/cresteem/.github",
"homepage": null,
"size": 0,
"stargazers_count": 0,
"watchers_count": 0,
"language": null,
"has_issues": true,
"has_projects": true,
"has_downloads": true,
"has_wiki": true,
"has_pages": false,
"has_discussions": false,
"forks_count": 0,
"mirror_url": null,
"archived": false,
"disabled": false,
"open_issues_count": 0,
"license": null,
"allow_forking": true,
"is_template": false,
"web_commit_signoff_required": true,
"topics": [],
"visibility": "public",
"forks": 0,
"open_issues": 0,
"watchers": 0,
"default_branch": "main",
"permissions": {
"admin": true,
"maintain": true,
"push": true,
"triage": true,
"pull": true
}
},
{
"id": 832329137,
"node_id": "R_kgDOMZxVsQ",
"name": "BONSE",
"full_name": "cresteem/BONSE",
"private": true,
"owner": {
"login": "cresteem",
"id": 128272305,
"node_id": "O_kgDOB6VHsQ",
"avatar_url": "https://avatars.githubusercontent.com/u/128272305?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/cresteem",
"html_url": "https://github.com/cresteem",
"followers_url": "https://api.github.com/users/cresteem/followers",
"following_url": "https://api.github.com/users/cresteem/following{/other_user}",
"gists_url": "https://api.github.com/users/cresteem/gists{/gist_id}",
"starred_url": "https://api.github.com/users/cresteem/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/cresteem/subscriptions",
"organizations_url": "https://api.github.com/users/cresteem/orgs",
"repos_url": "https://api.github.com/users/cresteem/repos",
"events_url": "https://api.github.com/users/cresteem/events{/privacy}",
"received_events_url": "https://api.github.com/users/cresteem/received_events",
"type": "Organization",
"site_admin": false
},
"html_url": "https://github.com/cresteem/BONSE",
"description": "Bonse (B-oost on S-earch E-ngine) is a powerful SEO optimization tool designed to enhance your website's search engine performance. It automates the generation of meta descriptions, titles, optimized URLs, and keywords to boost your site's visibility and ranking on search engines.",
"fork": false,
"url": "https://api.github.com/repos/cresteem/BONSE",
"forks_url": "https://api.github.com/repos/cresteem/BONSE/forks",
"keys_url": "https://api.github.com/repos/cresteem/BONSE/keys{/key_id}",
"collaborators_url": "https://api.github.com/repos/cresteem/BONSE/collaborators{/collaborator}",
"teams_url": "https://api.github.com/repos/cresteem/BONSE/teams",
"hooks_url": "https://api.github.com/repos/cresteem/BONSE/hooks",
"issue_events_url": "https://api.github.com/repos/cresteem/BONSE/issues/events{/number}",
"events_url": "https://api.github.com/repos/cresteem/BONSE/events",
"assignees_url": "https://api.github.com/repos/cresteem/BONSE/assignees{/user}",
"branches_url": "https://api.github.com/repos/cresteem/BONSE/branches{/branch}",
"tags_url": "https://api.github.com/repos/cresteem/BONSE/tags",
"blobs_url": "https://api.github.com/repos/cresteem/BONSE/git/blobs{/sha}",
"git_tags_url": "https://api.github.com/repos/cresteem/BONSE/git/tags{/sha}",
"git_refs_url": "https://api.github.com/repos/cresteem/BONSE/git/refs{/sha}",
"trees_url": "https://api.github.com/repos/cresteem/BONSE/git/trees{/sha}",
"statuses_url": "https://api.github.com/repos/cresteem/BONSE/statuses/{sha}",
"languages_url": "https://api.github.com/repos/cresteem/BONSE/languages",
"stargazers_url": "https://api.github.com/repos/cresteem/BONSE/stargazers",
"contributors_url": "https://api.github.com/repos/cresteem/BONSE/contributors",
"subscribers_url": "https://api.github.com/repos/cresteem/BONSE/subscribers",
"subscription_url": "https://api.github.com/repos/cresteem/BONSE/subscription",
"commits_url": "https://api.github.com/repos/cresteem/BONSE/commits{/sha}",
"git_commits_url": "https://api.github.com/repos/cresteem/BONSE/git/commits{/sha}",
"comments_url": "https://api.github.com/repos/cresteem/BONSE/comments{/number}",
"issue_comment_url": "https://api.github.com/repos/cresteem/BONSE/issues/comments{/number}",
"contents_url": "https://api.github.com/repos/cresteem/BONSE/contents/{+path}",
"compare_url": "https://api.github.com/repos/cresteem/BONSE/compare/{base}...{head}",
"merges_url": "https://api.github.com/repos/cresteem/BONSE/merges",
"archive_url": "https://api.github.com/repos/cresteem/BONSE/{archive_format}{/ref}",
"downloads_url": "https://api.github.com/repos/cresteem/BONSE/downloads",
"issues_url": "https://api.github.com/repos/cresteem/BONSE/issues{/number}",
"pulls_url": "https://api.github.com/repos/cresteem/BONSE/pulls{/number}",
"milestones_url": "https://api.github.com/repos/cresteem/BONSE/milestones{/number}",
"notifications_url": "https://api.github.com/repos/cresteem/BONSE/notifications{?since,all,participating}",
"labels_url": "https://api.github.com/repos/cresteem/BONSE/labels{/name}",
"releases_url": "https://api.github.com/repos/cresteem/BONSE/releases{/id}",
"deployments_url": "https://api.github.com/repos/cresteem/BONSE/deployments",
"created_at": "2024-07-22T19:53:59Z",
"updated_at": "2024-07-27T16:06:45Z",
"pushed_at": "2024-07-31T05:10:23Z",
"git_url": "git://github.com/cresteem/BONSE.git",
"ssh_url": "git@github.com:cresteem/BONSE.git",
"clone_url": "https://github.com/cresteem/BONSE.git",
"svn_url": "https://github.com/cresteem/BONSE",
"homepage": null,
"size": 304,
"stargazers_count": 1,
"watchers_count": 1,
"language": "TypeScript",
"has_issues": true,
"has_projects": true,
"has_downloads": true,
"has_wiki": false,
"has_pages": false,
"has_discussions": false,
"forks_count": 0,
"mirror_url": null,
"archived": false,
"disabled": false,
"open_issues_count": 0,
"license": {
"key": "other",
"name": "Other",
"spdx_id": "NOASSERTION",
"url": null,
"node_id": "MDc6TGljZW5zZTA="
},
"allow_forking": false,
"is_template": false,
"web_commit_signoff_required": true,
"topics": [],
"visibility": "private",
"forks": 0,
"open_issues": 0,
"watchers": 1,
"default_branch": "main",
"permissions": {
"admin": true,
"maintain": true,
"push": true,
"triage": true,
"pull": true
}
},
{
"id": 832344982,
"node_id": "R_kgDOMZyTlg",
"name": "BONSE-WebApp",
"full_name": "cresteem/BONSE-WebApp",
"private": false,
"owner": {
"login": "cresteem",
"id": 128272305,
"node_id": "O_kgDOB6VHsQ",
"avatar_url": "https://avatars.githubusercontent.com/u/128272305?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/cresteem",
"html_url": "https://github.com/cresteem",
"followers_url": "https://api.github.com/users/cresteem/followers",
"following_url": "https://api.github.com/users/cresteem/following{/other_user}",
"gists_url": "https://api.github.com/users/cresteem/gists{/gist_id}",
"starred_url": "https://api.github.com/users/cresteem/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/cresteem/subscriptions",
"organizations_url": "https://api.github.com/users/cresteem/orgs",
"repos_url": "https://api.github.com/users/cresteem/repos",
"events_url": "https://api.github.com/users/cresteem/events{/privacy}",
"received_events_url": "https://api.github.com/users/cresteem/received_events",
"type": "Organization",
"site_admin": false
},
"html_url": "https://github.com/cresteem/BONSE-WebApp",
"description": "BONSE (B-oost on S-earch E-ngine) is a powerful SEO optimization tool designed to enhance your website's search engine performance. It automates the generation of meta descriptions, titles, optimized URLs, and keywords to boost your site's visibility and ranking on search engines with power of AI.",
"fork": false,
"url": "https://api.github.com/repos/cresteem/BONSE-WebApp",
"forks_url": "https://api.github.com/repos/cresteem/BONSE-WebApp/forks",
"keys_url": "https://api.github.com/repos/cresteem/BONSE-WebApp/keys{/key_id}",
"collaborators_url": "https://api.github.com/repos/cresteem/BONSE-WebApp/collaborators{/collaborator}",
"teams_url": "https://api.github.com/repos/cresteem/BONSE-WebApp/teams",
"hooks_url": "https://api.github.com/repos/cresteem/BONSE-WebApp/hooks",
"issue_events_url": "https://api.github.com/repos/cresteem/BONSE-WebApp/issues/events{/number}",
"events_url": "https://api.github.com/repos/cresteem/BONSE-WebApp/events",
"assignees_url": "https://api.github.com/repos/cresteem/BONSE-WebApp/assignees{/user}",
"branches_url": "https://api.github.com/repos/cresteem/BONSE-WebApp/branches{/branch}",
"tags_url": "https://api.github.com/repos/cresteem/BONSE-WebApp/tags",
"blobs_url": "https://api.github.com/repos/cresteem/BONSE-WebApp/git/blobs{/sha}",
"git_tags_url": "https://api.github.com/repos/cresteem/BONSE-WebApp/git/tags{/sha}",
"git_refs_url": "https://api.github.com/repos/cresteem/BONSE-WebApp/git/refs{/sha}",
"trees_url": "https://api.github.com/repos/cresteem/BONSE-WebApp/git/trees{/sha}",
"statuses_url": "https://api.github.com/repos/cresteem/BONSE-WebApp/statuses/{sha}",
"languages_url": "https://api.github.com/repos/cresteem/BONSE-WebApp/languages",
"stargazers_url": "https://api.github.com/repos/cresteem/BONSE-WebApp/stargazers",
"contributors_url": "https://api.github.com/repos/cresteem/BONSE-WebApp/contributors",
"subscribers_url": "https://api.github.com/repos/cresteem/BONSE-WebApp/subscribers",
"subscription_url": "https://api.github.com/repos/cresteem/BONSE-WebApp/subscription",
"commits_url": "https://api.github.com/repos/cresteem/BONSE-WebApp/commits{/sha}",
"git_commits_url": "https://api.github.com/repos/cresteem/BONSE-WebApp/git/commits{/sha}",
"comments_url": "https://api.github.com/repos/cresteem/BONSE-WebApp/comments{/number}",
"issue_comment_url": "https://api.github.com/repos/cresteem/BONSE-WebApp/issues/comments{/number}",
"contents_url": "https://api.github.com/repos/cresteem/BONSE-WebApp/contents/{+path}",
"compare_url": "https://api.github.com/repos/cresteem/BONSE-WebApp/compare/{base}...{head}",
"merges_url": "https://api.github.com/repos/cresteem/BONSE-WebApp/merges",
"archive_url": "https://api.github.com/repos/cresteem/BONSE-WebApp/{archive_format}{/ref}",
"downloads_url": "https://api.github.com/repos/cresteem/BONSE-WebApp/downloads",
"issues_url": "https://api.github.com/repos/cresteem/BONSE-WebApp/issues{/number}",
"pulls_url": "https://api.github.com/repos/cresteem/BONSE-WebApp/pulls{/number}",
"milestones_url": "https://api.github.com/repos/cresteem/BONSE-WebApp/milestones{/number}",
"notifications_url": "https://api.github.com/repos/cresteem/BONSE-WebApp/notifications{?since,all,participating}",
"labels_url": "https://api.github.com/repos/cresteem/BONSE-WebApp/labels{/name}",
"releases_url": "https://api.github.com/repos/cresteem/BONSE-WebApp/releases{/id}",
"deployments_url": "https://api.github.com/repos/cresteem/BONSE-WebApp/deployments",
"created_at": "2024-07-22T20:45:16Z",
"updated_at": "2024-07-26T20:18:50Z",
"pushed_at": "2024-07-23T16:23:07Z",
"git_url": "git://github.com/cresteem/BONSE-WebApp.git",
"ssh_url": "git@github.com:cresteem/BONSE-WebApp.git",
"clone_url": "https://github.com/cresteem/BONSE-WebApp.git",
"svn_url": "https://github.com/cresteem/BONSE-WebApp",
"homepage": "http://bonse.cresteem.com/",
"size": 18,
"stargazers_count": 1,
"watchers_count": 1,
"language": null,
"has_issues": true,
"has_projects": true,
"has_downloads": true,
"has_wiki": true,
"has_pages": true,
"has_discussions": false,
"forks_count": 0,
"mirror_url": null,
"archived": false,
"disabled": false,
"open_issues_count": 0,
"license": null,
"allow_forking": true,
"is_template": false,
"web_commit_signoff_required": true,
"topics": [],
"visibility": "public",
"forks": 0,
"open_issues": 0,
"watchers": 1,
"default_branch": "main",
"permissions": {
"admin": true,
"maintain": true,
"push": true,
"triage": true,
"pull": true
}
},
{
"id": 835044445,
"node_id": "R_kgDOMcXEXQ",
"name": "Colibit",
"full_name": "cresteem/Colibit",
"private": true,
"owner": {
"login": "cresteem",
"id": 128272305,
"node_id": "O_kgDOB6VHsQ",
"avatar_url": "https://avatars.githubusercontent.com/u/128272305?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/cresteem",
"html_url": "https://github.com/cresteem",
"followers_url": "https://api.github.com/users/cresteem/followers",
"following_url": "https://api.github.com/users/cresteem/following{/other_user}",
"gists_url": "https://api.github.com/users/cresteem/gists{/gist_id}",
"starred_url": "https://api.github.com/users/cresteem/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/cresteem/subscriptions",
"organizations_url": "https://api.github.com/users/cresteem/orgs",
"repos_url": "https://api.github.com/users/cresteem/repos",
"events_url": "https://api.github.com/users/cresteem/events{/privacy}",
"received_events_url": "https://api.github.com/users/cresteem/received_events",
"type": "Organization",
"site_admin": false
},
"html_url": "https://github.com/cresteem/Colibit",
"description": "Colibit is a powerful tool designed to streamline the process of posting content across various social media platforms. This application ensures that your posts adhere to the unique style and requirements of each platform while maintaining a consistent brand voice.",
"fork": false,
"url": "https://api.github.com/repos/cresteem/Colibit",
"forks_url": "https://api.github.com/repos/cresteem/Colibit/forks",
"keys_url": "https://api.github.com/repos/cresteem/Colibit/keys{/key_id}",
"collaborators_url": "https://api.github.com/repos/cresteem/Colibit/collaborators{/collaborator}",
"teams_url": "https://api.github.com/repos/cresteem/Colibit/teams",
"hooks_url": "https://api.github.com/repos/cresteem/Colibit/hooks",
"issue_events_url": "https://api.github.com/repos/cresteem/Colibit/issues/events{/number}",
"events_url": "https://api.github.com/repos/cresteem/Colibit/events",
"assignees_url": "https://api.github.com/repos/cresteem/Colibit/assignees{/user}",
"branches_url": "https://api.github.com/repos/cresteem/Colibit/branches{/branch}",
"tags_url": "https://api.github.com/repos/cresteem/Colibit/tags",
"blobs_url": "https://api.github.com/repos/cresteem/Colibit/git/blobs{/sha}",
"git_tags_url": "https://api.github.com/repos/cresteem/Colibit/git/tags{/sha}",
"git_refs_url": "https://api.github.com/repos/cresteem/Colibit/git/refs{/sha}",
"trees_url": "https://api.github.com/repos/cresteem/Colibit/git/trees{/sha}",
"statuses_url": "https://api.github.com/repos/cresteem/Colibit/statuses/{sha}",
"languages_url": "https://api.github.com/repos/cresteem/Colibit/languages",
"stargazers_url": "https://api.github.com/repos/cresteem/Colibit/stargazers",
"contributors_url": "https://api.github.com/repos/cresteem/Colibit/contributors",
"subscribers_url": "https://api.github.com/repos/cresteem/Colibit/subscribers",
"subscription_url": "https://api.github.com/repos/cresteem/Colibit/subscription",
"commits_url": "https://api.github.com/repos/cresteem/Colibit/commits{/sha}",
"git_commits_url": "https://api.github.com/repos/cresteem/Colibit/git/commits{/sha}",
"comments_url": "https://api.github.com/repos/cresteem/Colibit/comments{/number}",
"issue_comment_url": "https://api.github.com/repos/cresteem/Colibit/issues/comments{/number}",
"contents_url": "https://api.github.com/repos/cresteem/Colibit/contents/{+path}",
"compare_url": "https://api.github.com/repos/cresteem/Colibit/compare/{base}...{head}",
"merges_url": "https://api.github.com/repos/cresteem/Colibit/merges",
"archive_url": "https://api.github.com/repos/cresteem/Colibit/{archive_format}{/ref}",
"downloads_url": "https://api.github.com/repos/cresteem/Colibit/downloads",
"issues_url": "https://api.github.com/repos/cresteem/Colibit/issues{/number}",
"pulls_url": "https://api.github.com/repos/cresteem/Colibit/pulls{/number}",
"milestones_url": "https://api.github.com/repos/cresteem/Colibit/milestones{/number}",
"notifications_url": "https://api.github.com/repos/cresteem/Colibit/notifications{?since,all,participating}",
"labels_url": "https://api.github.com/repos/cresteem/Colibit/labels{/name}",
"releases_url": "https://api.github.com/repos/cresteem/Colibit/releases{/id}",
"deployments_url": "https://api.github.com/repos/cresteem/Colibit/deployments",
"created_at": "2024-07-29T03:41:44Z",
"updated_at": "2024-07-29T04:23:23Z",
"pushed_at": "2024-07-29T04:23:20Z",
"git_url": "git://github.com/cresteem/Colibit.git",
"ssh_url": "git@github.com:cresteem/Colibit.git",
"clone_url": "https://github.com/cresteem/Colibit.git",
"svn_url": "https://github.com/cresteem/Colibit",
"homepage": "",
"size": 6,
"stargazers_count": 0,
"watchers_count": 0,
"language": null,
"has_issues": true,
"has_projects": true,
"has_downloads": true,
"has_wiki": false,
"has_pages": false,
"has_discussions": false,
"forks_count": 0,
"mirror_url": null,
"archived": false,
"disabled": false,
"open_issues_count": 0,
"license": {
"key": "other",
"name": "Other",
"spdx_id": "NOASSERTION",
"url": null,
"node_id": "MDc6TGljZW5zZTA="
},
"allow_forking": false,
"is_template": false,
"web_commit_signoff_required": true,
"topics": [],
"visibility": "private",
"forks": 0,
"open_issues": 0,
"watchers": 0,
"default_branch": "main",
"permissions": {
"admin": true,
"maintain": true,
"push": true,
"triage": true,
"pull": true
}
},
{
"id": 804826599,
"node_id": "R_kgDOL_it5w",
"name": "demo-repository",
"full_name": "cresteem/demo-repository",
"private": true,
"owner": {
"login": "cresteem",
"id": 128272305,
"node_id": "O_kgDOB6VHsQ",
"avatar_url": "https://avatars.githubusercontent.com/u/128272305?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/cresteem",
"html_url": "https://github.com/cresteem",
"followers_url": "https://api.github.com/users/cresteem/followers",
"following_url": "https://api.github.com/users/cresteem/following{/other_user}",
"gists_url": "https://api.github.com/users/cresteem/gists{/gist_id}",
"starred_url": "https://api.github.com/users/cresteem/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/cresteem/subscriptions",
"organizations_url": "https://api.github.com/users/cresteem/orgs",
"repos_url": "https://api.github.com/users/cresteem/repos",
"events_url": "https://api.github.com/users/cresteem/events{/privacy}",
"received_events_url": "https://api.github.com/users/cresteem/received_events",
"type": "Organization",
"site_admin": false
},
"html_url": "https://github.com/cresteem/demo-repository",
"description": "A code repository designed to show the best GitHub has to offer.",
"fork": false,
"url": "https://api.github.com/repos/cresteem/demo-repository",
"forks_url": "https://api.github.com/repos/cresteem/demo-repository/forks",
"keys_url": "https://api.github.com/repos/cresteem/demo-repository/keys{/key_id}",
"collaborators_url": "https://api.github.com/repos/cresteem/demo-repository/collaborators{/collaborator}",
"teams_url": "https://api.github.com/repos/cresteem/demo-repository/teams",
"hooks_url": "https://api.github.com/repos/cresteem/demo-repository/hooks",
"issue_events_url": "https://api.github.com/repos/cresteem/demo-repository/issues/events{/number}",
"events_url": "https://api.github.com/repos/cresteem/demo-repository/events",
"assignees_url": "https://api.github.com/repos/cresteem/demo-repository/assignees{/user}",
"branches_url": "https://api.github.com/repos/cresteem/demo-repository/branches{/branch}",
"tags_url": "https://api.github.com/repos/cresteem/demo-repository/tags",
"blobs_url": "https://api.github.com/repos/cresteem/demo-repository/git/blobs{/sha}",
"git_tags_url": "https://api.github.com/repos/cresteem/demo-repository/git/tags{/sha}",
"git_refs_url": "https://api.github.com/repos/cresteem/demo-repository/git/refs{/sha}",
"trees_url": "https://api.github.com/repos/cresteem/demo-repository/git/trees{/sha}",
"statuses_url": "https://api.github.com/repos/cresteem/demo-repository/statuses/{sha}",
"languages_url": "https://api.github.com/repos/cresteem/demo-repository/languages",
"stargazers_url": "https://api.github.com/repos/cresteem/demo-repository/stargazers",
"contributors_url": "https://api.github.com/repos/cresteem/demo-repository/contributors",
"subscribers_url": "https://api.github.com/repos/cresteem/demo-repository/subscribers",
"subscription_url": "https://api.github.com/repos/cresteem/demo-repository/subscription",
"commits_url": "https://api.github.com/repos/cresteem/demo-repository/commits{/sha}",
"git_commits_url": "https://api.github.com/repos/cresteem/demo-repository/git/commits{/sha}",
"comments_url": "https://api.github.com/repos/cresteem/demo-repository/comments{/number}",
"issue_comment_url": "https://api.github.com/repos/cresteem/demo-repository/issues/comments{/number}",
"contents_url": "https://api.github.com/repos/cresteem/demo-repository/contents/{+path}",
"compare_url": "https://api.github.com/repos/cresteem/demo-repository/compare/{base}...{head}",
"merges_url": "https://api.github.com/repos/cresteem/demo-repository/merges",
"archive_url": "https://api.github.com/repos/cresteem/demo-repository/{archive_format}{/ref}",
"downloads_url": "https://api.github.com/repos/cresteem/demo-repository/downloads",
"issues_url": "https://api.github.com/repos/cresteem/demo-repository/issues{/number}",
"pulls_url": "https://api.github.com/repos/cresteem/demo-repository/pulls{/number}",
"milestones_url": "https://api.github.com/repos/cresteem/demo-repository/milestones{/number}",
"notifications_url": "https://api.github.com/repos/cresteem/demo-repository/notifications{?since,all,participating}",
"labels_url": "https://api.github.com/repos/cresteem/demo-repository/labels{/name}",
"releases_url": "https://api.github.com/repos/cresteem/demo-repository/releases{/id}",
"deployments_url": "https://api.github.com/repos/cresteem/demo-repository/deployments",
"created_at": "2024-05-23T10:51:28Z",
"updated_at": "2024-05-23T11:00:31Z",
"pushed_at": "2024-05-23T11:00:31Z",
"git_url": "git://github.com/cresteem/demo-repository.git",
"ssh_url": "git@github.com:cresteem/demo-repository.git",
"clone_url": "https://github.com/cresteem/demo-repository.git",
"svn_url": "https://github.com/cresteem/demo-repository",
"homepage": null,
"size": 3,
"stargazers_count": 0,
"watchers_count": 0,
"language": "HTML",
"has_issues": true,
"has_projects": true,
"has_downloads": true,
"has_wiki": false,
"has_pages": false,
"has_discussions": false,
"forks_count": 0,
"mirror_url": null,
"archived": false,
"disabled": false,
"open_issues_count": 0,
"license": null,
"allow_forking": false,
"is_template": false,
"web_commit_signoff_required": true,
"topics": [],
"visibility": "private",
"forks": 0,
"open_issues": 0,
"watchers": 0,
"default_branch": "main",
"permissions": {
"admin": true,
"maintain": true,
"push": true,
"triage": true,
"pull": true
}
},
{
"id": 685808198,
"node_id": "R_kgDOKOCaRg",
"name": "first-hunt",
"full_name": "cresteem/first-hunt",
"private": true,
"owner": {
"login": "cresteem",
"id": 128272305,
"node_id": "O_kgDOB6VHsQ",
"avatar_url": "https://avatars.githubusercontent.com/u/128272305?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/cresteem",
"html_url": "https://github.com/cresteem",
"followers_url": "https://api.github.com/users/cresteem/followers",
"following_url": "https://api.github.com/users/cresteem/following{/other_user}",
"gists_url": "https://api.github.com/users/cresteem/gists{/gist_id}",
"starred_url": "https://api.github.com/users/cresteem/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/cresteem/subscriptions",
"organizations_url": "https://api.github.com/users/cresteem/orgs",
"repos_url": "https://api.github.com/users/cresteem/repos",
"events_url": "https://api.github.com/users/cresteem/events{/privacy}",
"received_events_url": "https://api.github.com/users/cresteem/received_events",
"type": "Organization",
"site_admin": false
},
"html_url": "https://github.com/cresteem/first-hunt",
"description": null,
"fork": false,
"url": "https://api.github.com/repos/cresteem/first-hunt",
"forks_url": "https://api.github.com/repos/cresteem/first-hunt/forks",
"keys_url": "https://api.github.com/repos/cresteem/first-hunt/keys{/key_id}",
"collaborators_url": "https://api.github.com/repos/cresteem/first-hunt/collaborators{/collaborator}",
"teams_url": "https://api.github.com/repos/cresteem/first-hunt/teams",
"hooks_url": "https://api.github.com/repos/cresteem/first-hunt/hooks",
"issue_events_url": "https://api.github.com/repos/cresteem/first-hunt/issues/events{/number}",
"events_url": "https://api.github.com/repos/cresteem/first-hunt/events",
"assignees_url": "https://api.github.com/repos/cresteem/first-hunt/assignees{/user}",
"branches_url": "https://api.github.com/repos/cresteem/first-hunt/branches{/branch}",
"tags_url": "https://api.github.com/repos/cresteem/first-hunt/tags",
"blobs_url": "https://api.github.com/repos/cresteem/first-hunt/git/blobs{/sha}",
"git_tags_url": "https://api.github.com/repos/cresteem/first-hunt/git/tags{/sha}",
"git_refs_url": "https://api.github.com/repos/cresteem/first-hunt/git/refs{/sha}",
"trees_url": "https://api.github.com/repos/cresteem/first-hunt/git/trees{/sha}",
"statuses_url": "https://api.github.com/repos/cresteem/first-hunt/statuses/{sha}",
"languages_url": "https://api.github.com/repos/cresteem/first-hunt/languages",
"stargazers_url": "https://api.github.com/repos/cresteem/first-hunt/stargazers",
"contributors_url": "https://api.github.com/repos/cresteem/first-hunt/contributors",
"subscribers_url": "https://api.github.com/repos/cresteem/first-hunt/subscribers",
"subscription_url": "https://api.github.com/repos/cresteem/first-hunt/subscription",
"commits_url": "https://api.github.com/repos/cresteem/first-hunt/commits{/sha}",
"git_commits_url": "https://api.github.com/repos/cresteem/first-hunt/git/commits{/sha}",
"comments_url": "https://api.github.com/repos/cresteem/first-hunt/comments{/number}",
"issue_comment_url": "https://api.github.com/repos/cresteem/first-hunt/issues/comments{/number}",
"contents_url": "https://api.github.com/repos/cresteem/first-hunt/contents/{+path}",
"compare_url": "https://api.github.com/repos/cresteem/first-hunt/compare/{base}...{head}",
"merges_url": "https://api.github.com/repos/cresteem/first-hunt/merges",
"archive_url": "https://api.github.com/repos/cresteem/first-hunt/{archive_format}{/ref}",
"downloads_url": "https://api.github.com/repos/cresteem/first-hunt/downloads",
"issues_url": "https://api.github.com/repos/cresteem/first-hunt/issues{/number}",
"pulls_url": "https://api.github.com/repos/cresteem/first-hunt/pulls{/number}",
"milestones_url": "https://api.github.com/repos/cresteem/first-hunt/milestones{/number}",
"notifications_url": "https://api.github.com/repos/cresteem/first-hunt/notifications{?since,all,participating}",
"labels_url": "https://api.github.com/repos/cresteem/first-hunt/labels{/name}",
"releases_url": "https://api.github.com/repos/cresteem/first-hunt/releases{/id}",
"deployments_url": "https://api.github.com/repos/cresteem/first-hunt/deployments",
"created_at": "2023-09-01T03:59:09Z",
"updated_at": "2024-04-24T00:20:36Z",
"pushed_at": "2024-03-11T17:56:46Z",
"git_url": "git://github.com/cresteem/first-hunt.git",
"ssh_url": "git@github.com:cresteem/first-hunt.git",
"clone_url": "https://github.com/cresteem/first-hunt.git",
"svn_url": "https://github.com/cresteem/first-hunt",
"homepage": null,
"size": 12103,
"stargazers_count": 0,
"watchers_count": 0,
"language": "HTML",
"has_issues": true,
"has_projects": true,
"has_downloads": true,
"has_wiki": false,
"has_pages": false,
"has_discussions": false,
"forks_count": 0,
"mirror_url": null,
"archived": false,
"disabled": false,
"open_issues_count": 0,
"license": null,
"allow_forking": false,
"is_template": false,
"web_commit_signoff_required": true,
"topics": [],
"visibility": "private",
"forks": 0,
"open_issues": 0,
"watchers": 0,
"default_branch": "main",
"permissions": {
"admin": true,
"maintain": true,
"push": true,
"triage": true,
"pull": true
}
},
{
"id": 814856420,
"node_id": "R_kgDOMJG45A",
"name": "Hawk-JS",
"full_name": "cresteem/Hawk-JS",
"private": false,
"owner": {
"login": "cresteem",
"id": 128272305,
"node_id": "O_kgDOB6VHsQ",
"avatar_url": "https://avatars.githubusercontent.com/u/128272305?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/cresteem",
"html_url": "https://github.com/cresteem",
"followers_url": "https://api.github.com/users/cresteem/followers",
"following_url": "https://api.github.com/users/cresteem/following{/other_user}",
"gists_url": "https://api.github.com/users/cresteem/gists{/gist_id}",
"starred_url": "https://api.github.com/users/cresteem/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/cresteem/subscriptions",
"organizations_url": "https://api.github.com/users/cresteem/orgs",
"repos_url": "https://api.github.com/users/cresteem/repos",
"events_url": "https://api.github.com/users/cresteem/events{/privacy}",
"received_events_url": "https://api.github.com/users/cresteem/received_events",
"type": "Organization",
"site_admin": false
},
"html_url": "https://github.com/cresteem/Hawk-JS",
"description": "Hawk-JS: A sitemap generator and deployer (auto submission to search engines such as Bing, Google, Yahoo,Yandex,Yep, IndexNow supported SE etc.)",
"fork": false,
"url": "https://api.github.com/repos/cresteem/Hawk-JS",
"forks_url": "https://api.github.com/repos/cresteem/Hawk-JS/forks",
"keys_url": "https://api.github.com/repos/cresteem/Hawk-JS/keys{/key_id}",
"collaborators_url": "https://api.github.com/repos/cresteem/Hawk-JS/collaborators{/collaborator}",
"teams_url": "https://api.github.com/repos/cresteem/Hawk-JS/teams",
"hooks_url": "https://api.github.com/repos/cresteem/Hawk-JS/hooks",
"issue_events_url": "https://api.github.com/repos/cresteem/Hawk-JS/issues/events{/number}",
"events_url": "https://api.github.com/repos/cresteem/Hawk-JS/events",
"assignees_url": "https://api.github.com/repos/cresteem/Hawk-JS/assignees{/user}",
"branches_url": "https://api.github.com/repos/cresteem/Hawk-JS/branches{/branch}",
"tags_url": "https://api.github.com/repos/cresteem/Hawk-JS/tags",
"blobs_url": "https://api.github.com/repos/cresteem/Hawk-JS/git/blobs{/sha}",
"git_tags_url": "https://api.github.com/repos/cresteem/Hawk-JS/git/tags{/sha}",
"git_refs_url": "https://api.github.com/repos/cresteem/Hawk-JS/git/refs{/sha}",
"trees_url": "https://api.github.com/repos/cresteem/Hawk-JS/git/trees{/sha}",
"statuses_url": "https://api.github.com/repos/cresteem/Hawk-JS/statuses/{sha}",
"languages_url": "https://api.github.com/repos/cresteem/Hawk-JS/languages",
"stargazers_url": "https://api.github.com/repos/cresteem/Hawk-JS/stargazers",
"contributors_url": "https://api.github.com/repos/cresteem/Hawk-JS/contributors",
"subscribers_url": "https://api.github.com/repos/cresteem/Hawk-JS/subscribers",
"subscription_url": "https://api.github.com/repos/cresteem/Hawk-JS/subscription",
"commits_url": "https://api.github.com/repos/cresteem/Hawk-JS/commits{/sha}",
"git_commits_url": "https://api.github.com/repos/cresteem/Hawk-JS/git/commits{/sha}",
"comments_url": "https://api.github.com/repos/cresteem/Hawk-JS/comments{/number}",
"issue_comment_url": "https://api.github.com/repos/cresteem/Hawk-JS/issues/comments{/number}",
"contents_url": "https://api.github.com/repos/cresteem/Hawk-JS/contents/{+path}",
"compare_url": "https://api.github.com/repos/cresteem/Hawk-JS/compare/{base}...{head}",
"merges_url": "https://api.github.com/repos/cresteem/Hawk-JS/merges",
"archive_url": "https://api.github.com/repos/cresteem/Hawk-JS/{archive_format}{/ref}",
"downloads_url": "https://api.github.com/repos/cresteem/Hawk-JS/downloads",
"issues_url": "https://api.github.com/repos/cresteem/Hawk-JS/issues{/number}",
"pulls_url": "https://api.github.com/repos/cresteem/Hawk-JS/pulls{/number}",
"milestones_url": "https://api.github.com/repos/cresteem/Hawk-JS/milestones{/number}",
"notifications_url": "https://api.github.com/repos/cresteem/Hawk-JS/notifications{?since,all,participating}",
"labels_url": "https://api.github.com/repos/cresteem/Hawk-JS/labels{/name}",
"releases_url": "https://api.github.com/repos/cresteem/Hawk-JS/releases{/id}",
"deployments_url": "https://api.github.com/repos/cresteem/Hawk-JS/deployments",
"created_at": "2024-06-13T21:16:47Z",
"updated_at": "2024-07-19T17:32:05Z",
"pushed_at": "2024-07-21T20:28:00Z",
"git_url": "git://github.com/cresteem/Hawk-JS.git",
"ssh_url": "git@github.com:cresteem/Hawk-JS.git",
"clone_url": "https://github.com/cresteem/Hawk-JS.git",
"svn_url": "https://github.com/cresteem/Hawk-JS",
"homepage": "https://hawkjs.cresteem.com/",
"size": 288,
"stargazers_count": 1,
"watchers_count": 1,
"language": "TypeScript",
"has_issues": true,
"has_projects": true,
"has_downloads": true,
"has_wiki": true,
"has_pages": false,
"has_discussions": false,
"forks_count": 0,
"mirror_url": null,
"archived": false,
"disabled": false,
"open_issues_count": 0,
"license": {
"key": "apache-2.0",
"name": "Apache License 2.0",
"spdx_id": "Apache-2.0",
"url": "https://api.github.com/licenses/apache-2.0",
"node_id": "MDc6TGljZW5zZTI="
},
"allow_forking": true,
"is_template": false,
"web_commit_signoff_required": true,
"topics": [
"api",
"automate",
"bing",
"console",
"feeder",
"generator",
"google",
"hinter",
"indexing",
"indexnow",
"optimization",
"seach-engine",
"seo",
"sitemap",
"submission",
"yahoo",
"yandex",
"yep"
],
"visibility": "public",
"forks": 0,
"open_issues": 0,
"watchers": 1,
"default_branch": "main",
"permissions": {
"admin": true,
"maintain": true,
"push": true,
"triage": true,
"pull": true
}
},
{
"id": 817064750,
"node_id": "R_kgDOMLNrLg",
"name": "Hawk-JS-Demo",
"full_name": "cresteem/Hawk-JS-Demo",
"private": false,
"owner": {
"login": "cresteem",
"id": 128272305,
"node_id": "O_kgDOB6VHsQ",
"avatar_url": "https://avatars.githubusercontent.com/u/128272305?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/cresteem",
"html_url": "https://github.com/cresteem",
"followers_url": "https://api.github.com/users/cresteem/followers",
"following_url": "https://api.github.com/users/cresteem/following{/other_user}",
"gists_url": "https://api.github.com/users/cresteem/gists{/gist_id}",
"starred_url": "https://api.github.com/users/cresteem/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/cresteem/subscriptions",
"organizations_url": "https://api.github.com/users/cresteem/orgs",
"repos_url": "https://api.github.com/users/cresteem/repos",
"events_url": "https://api.github.com/users/cresteem/events{/privacy}",
"received_events_url": "https://api.github.com/users/cresteem/received_events",
"type": "Organization",
"site_admin": false
},
"html_url": "https://github.com/cresteem/Hawk-JS-Demo",
"description": "This is demonstration of Hawk-JS: A sitemap generator and deployer (auto submission to search engines such as Bing, Google, Yahoo,Yandex,Yep, IndexNow supported SE etc.)",
"fork": false,
"url": "https://api.github.com/repos/cresteem/Hawk-JS-Demo",
"forks_url": "https://api.github.com/repos/cresteem/Hawk-JS-Demo/forks",
"keys_url": "https://api.github.com/repos/cresteem/Hawk-JS-Demo/keys{/key_id}",
"collaborators_url": "https://api.github.com/repos/cresteem/Hawk-JS-Demo/collaborators{/collaborator}",
"teams_url": "https://api.github.com/repos/cresteem/Hawk-JS-Demo/teams",
"hooks_url": "https://api.github.com/repos/cresteem/Hawk-JS-Demo/hooks",
"issue_events_url": "https://api.github.com/repos/cresteem/Hawk-JS-Demo/issues/events{/number}",
"events_url": "https://api.github.com/repos/cresteem/Hawk-JS-Demo/events",
"assignees_url": "https://api.github.com/repos/cresteem/Hawk-JS-Demo/assignees{/user}",
"branches_url": "https://api.github.com/repos/cresteem/Hawk-JS-Demo/branches{/branch}",
"tags_url": "https://api.github.com/repos/cresteem/Hawk-JS-Demo/tags",
"blobs_url": "https://api.github.com/repos/cresteem/Hawk-JS-Demo/git/blobs{/sha}",
"git_tags_url": "https://api.github.com/repos/cresteem/Hawk-JS-Demo/git/tags{/sha}",
"git_refs_url": "https://api.github.com/repos/cresteem/Hawk-JS-Demo/git/refs{/sha}",
"trees_url": "https://api.github.com/repos/cresteem/Hawk-JS-Demo/git/trees{/sha}",
"statuses_url": "https://api.github.com/repos/cresteem/Hawk-JS-Demo/statuses/{sha}",
"languages_url": "https://api.github.com/repos/cresteem/Hawk-JS-Demo/languages",
"stargazers_url": "https://api.github.com/repos/cresteem/Hawk-JS-Demo/stargazers",
"contributors_url": "https://api.github.com/repos/cresteem/Hawk-JS-Demo/contributors",
"subscribers_url": "https://api.github.com/repos/cresteem/Hawk-JS-Demo/subscribers",
"subscription_url": "https://api.github.com/repos/cresteem/Hawk-JS-Demo/subscription",
"commits_url": "https://api.github.com/repos/cresteem/Hawk-JS-Demo/commits{/sha}",
"git_commits_url": "https://api.github.com/repos/cresteem/Hawk-JS-Demo/git/commits{/sha}",
"comments_url": "https://api.github.com/repos/cresteem/Hawk-JS-Demo/comments{/number}",
"issue_comment_url": "https://api.github.com/repos/cresteem/Hawk-JS-Demo/issues/comments{/number}",
"contents_url": "https://api.github.com/repos/cresteem/Hawk-JS-Demo/contents/{+path}",
"compare_url": "https://api.github.com/repos/cresteem/Hawk-JS-Demo/compare/{base}...{head}",
"merges_url": "https://api.github.com/repos/cresteem/Hawk-JS-Demo/merges",
"archive_url": "https://api.github.com/repos/cresteem/Hawk-JS-Demo/{archive_format}{/ref}",
"downloads_url": "https://api.github.com/repos/cresteem/Hawk-JS-Demo/downloads",
"issues_url": "https://api.github.com/repos/cresteem/Hawk-JS-Demo/issues{/number}",
"pulls_url": "https://api.github.com/repos/cresteem/Hawk-JS-Demo/pulls{/number}",
"milestones_url": "https://api.github.com/repos/cresteem/Hawk-JS-Demo/milestones{/number}",
"notifications_url": "https://api.github.com/repos/cresteem/Hawk-JS-Demo/notifications{?since,all,participating}",
"labels_url": "https://api.github.com/repos/cresteem/Hawk-JS-Demo/labels{/name}",
"releases_url": "https://api.github.com/repos/cresteem/Hawk-JS-Demo/releases{/id}",
"deployments_url": "https://api.github.com/repos/cresteem/Hawk-JS-Demo/deployments",
"created_at": "2024-06-19T00:30:59Z",
"updated_at": "2024-06-21T13:40:51Z",
"pushed_at": "2024-06-20T15:38:07Z",
"git_url": "git://github.com/cresteem/Hawk-JS-Demo.git",
"ssh_url": "git@github.com:cresteem/Hawk-JS-Demo.git",
"clone_url": "https://github.com/cresteem/Hawk-JS-Demo.git",
"svn_url": "https://github.com/cresteem/Hawk-JS-Demo",
"homepage": "https://cresteem.com/opensource/enhancing-seo-with-hawk-js",
"size": 28,
"stargazers_count": 1,
"watchers_count": 1,
"language": "JavaScript",
"has_issues": true,
"has_projects": true,
"has_downloads": true,
"has_wiki": true,
"has_pages": false,
"has_discussions": false,
"forks_count": 0,
"mirror_url": null,
"archived": false,
"disabled": false,
"open_issues_count": 0,
"license": {
"key": "gpl-3.0",
"name": "GNU General Public License v3.0",
"spdx_id": "GPL-3.0",
"url": "https://api.github.com/licenses/gpl-3.0",
"node_id": "MDc6TGljZW5zZTk="
},
"allow_forking": true,
"is_template": false,
"web_commit_signoff_required": true,
"topics": [],
"visibility": "public",
"forks": 0,
"open_issues": 0,
"watchers": 1,
"default_branch": "main",
"permissions": {
"admin": true,
"maintain": true,
"push": true,
"triage": true,
"pull": true
}
},
{
"id": 817068557,
"node_id": "R_kgDOMLN6DQ",
"name": "Hawk-JS-DocSite",
"full_name": "cresteem/Hawk-JS-DocSite",
"private": false,
"owner": {
"login": "cresteem",
"id": 128272305,
"node_id": "O_kgDOB6VHsQ",
"avatar_url": "https://avatars.githubusercontent.com/u/128272305?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/cresteem",
"html_url": "https://github.com/cresteem",
"followers_url": "https://api.github.com/users/cresteem/followers",
"following_url": "https://api.github.com/users/cresteem/following{/other_user}",
"gists_url": "https://api.github.com/users/cresteem/gists{/gist_id}",
"starred_url": "https://api.github.com/users/cresteem/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/cresteem/subscriptions",
"organizations_url": "https://api.github.com/users/cresteem/orgs",
"repos_url": "https://api.github.com/users/cresteem/repos",
"events_url": "https://api.github.com/users/cresteem/events{/privacy}",
"received_events_url": "https://api.github.com/users/cresteem/received_events",
"type": "Organization",
"site_admin": false
},
"html_url": "https://github.com/cresteem/Hawk-JS-DocSite",
"description": "This repository is a code base of website of Hawk JS Documentations (API & CLI references)",
"fork": false,
"url": "https://api.github.com/repos/cresteem/Hawk-JS-DocSite",
"forks_url": "https://api.github.com/repos/cresteem/Hawk-JS-DocSite/forks",
"keys_url": "https://api.github.com/repos/cresteem/Hawk-JS-DocSite/keys{/key_id}",
"collaborators_url": "https://api.github.com/repos/cresteem/Hawk-JS-DocSite/collaborators{/collaborator}",
"teams_url": "https://api.github.com/repos/cresteem/Hawk-JS-DocSite/teams",
"hooks_url": "https://api.github.com/repos/cresteem/Hawk-JS-DocSite/hooks",
"issue_events_url": "https://api.github.com/repos/cresteem/Hawk-JS-DocSite/issues/events{/number}",
"events_url": "https://api.github.com/repos/cresteem/Hawk-JS-DocSite/events",
"assignees_url": "https://api.github.com/repos/cresteem/Hawk-JS-DocSite/assignees{/user}",
"branches_url": "https://api.github.com/repos/cresteem/Hawk-JS-DocSite/branches{/branch}",
"tags_url": "https://api.github.com/repos/cresteem/Hawk-JS-DocSite/tags",
"blobs_url": "https://api.github.com/repos/cresteem/Hawk-JS-DocSite/git/blobs{/sha}",
"git_tags_url": "https://api.github.com/repos/cresteem/Hawk-JS-DocSite/git/tags{/sha}",
"git_refs_url": "https://api.github.com/repos/cresteem/Hawk-JS-DocSite/git/refs{/sha}",
"trees_url": "https://api.github.com/repos/cresteem/Hawk-JS-DocSite/git/trees{/sha}",
"statuses_url": "https://api.github.com/repos/cresteem/Hawk-JS-DocSite/statuses/{sha}",
"languages_url": "https://api.github.com/repos/cresteem/Hawk-JS-DocSite/languages",
"stargazers_url": "https://api.github.com/repos/cresteem/Hawk-JS-DocSite/stargazers",
"contributors_url": "https://api.github.com/repos/cresteem/Hawk-JS-DocSite/contributors",
"subscribers_url": "https://api.github.com/repos/cresteem/Hawk-JS-DocSite/subscribers",
"subscription_url": "https://api.github.com/repos/cresteem/Hawk-JS-DocSite/subscription",
"commits_url": "https://api.github.com/repos/cresteem/Hawk-JS-DocSite/commits{/sha}",
"git_commits_url": "https://api.github.com/repos/cresteem/Hawk-JS-DocSite/git/commits{/sha}",
"comments_url": "https://api.github.com/repos/cresteem/Hawk-JS-DocSite/comments{/number}",
"issue_comment_url": "https://api.github.com/repos/cresteem/Hawk-JS-DocSite/issues/comments{/number}",
"contents_url": "https://api.github.com/repos/cresteem/Hawk-JS-DocSite/contents/{+path}",
"compare_url": "https://api.github.com/repos/cresteem/Hawk-JS-DocSite/compare/{base}...{head}",
"merges_url": "https://api.github.com/repos/cresteem/Hawk-JS-DocSite/merges",
"archive_url": "https://api.github.com/repos/cresteem/Hawk-JS-DocSite/{archive_format}{/ref}",
"downloads_url": "https://api.github.com/repos/cresteem/Hawk-JS-DocSite/downloads",
"issues_url": "https://api.github.com/repos/cresteem/Hawk-JS-DocSite/issues{/number}",
"pulls_url": "https://api.github.com/repos/cresteem/Hawk-JS-DocSite/pulls{/number}",
"milestones_url": "https://api.github.com/repos/cresteem/Hawk-JS-DocSite/milestones{/number}",
"notifications_url": "https://api.github.com/repos/cresteem/Hawk-JS-DocSite/notifications{?since,all,participating}",
"labels_url": "https://api.github.com/repos/cresteem/Hawk-JS-DocSite/labels{/name}",
"releases_url": "https://api.github.com/repos/cresteem/Hawk-JS-DocSite/releases{/id}",
"deployments_url": "https://api.github.com/repos/cresteem/Hawk-JS-DocSite/deployments",
"created_at": "2024-06-19T00:47:44Z",
"updated_at": "2024-07-19T08:24:24Z",
"pushed_at": "2024-07-19T08:24:20Z",