forked from rapticore/OreNPMGuard
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathupdate.log
More file actions
1084 lines (1079 loc) · 57.9 KB
/
Copy pathupdate.log
File metadata and controls
1084 lines (1079 loc) · 57.9 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
=======================================
YAML file: ./affected_packages.yaml
Text file: ./affected_packages.txt
Output file: updated_affected_packages.yaml
Parsing YAML file...
Found 200 packages in YAML
Parsing text file...
Found 727 packages in text file
Comparing packages...
============================================================
PACKAGE COMPARISON SUMMARY
============================================================
Packages in original YAML: 200
Packages in text file: 727
Completely missing packages: 527
Packages with missing versions: 0
Total versions in YAML: 557
Total versions in text: 1289
Missing versions to add: 0
New package versions to add: 738
Completely missing packages (527):
- 02-echo: ['0.0.7']
- @accordproject/concerto-analysis: ['3.24.1']
- @accordproject/concerto-linter: ['3.24.1']
- @accordproject/concerto-linter-default-ruleset: ['3.24.1']
- @accordproject/concerto-metamodel: ['3.12.5']
- @accordproject/concerto-types: ['3.24.1']
- @accordproject/markdown-it-cicero: ['0.16.26']
- @accordproject/template-engine: ['2.7.2']
- @actbase/css-to-react-native-transform: ['1.0.3']
- @actbase/native: ['0.1.32']
- @actbase/node-server: ['1.1.19']
- @actbase/react-absolute: ['0.8.3']
- @actbase/react-daum-postcode: ['1.0.5']
- @actbase/react-kakaosdk: ['0.9.27']
- @actbase/react-native-actionsheet: ['1.0.3']
- @actbase/react-native-devtools: ['0.1.3']
- @actbase/react-native-fast-image: ['8.5.13']
- @actbase/react-native-kakao-channel: ['1.0.2']
- @actbase/react-native-kakao-navi: ['2.0.4']
- @actbase/react-native-less-transformer: ['1.0.6']
- @actbase/react-native-naver-login: ['1.0.1']
- @actbase/react-native-simple-video: ['1.0.13']
- @actbase/react-native-tiktok: ['1.1.3']
- @alexcolls/nuxt-socket.io: ['0.0.7', '0.0.8']
- @alexcolls/nuxt-ux: ['0.6.1', '0.6.2']
- @antstackio/eslint-config-antstack: ['0.0.3']
- @antstackio/express-graphql-proxy: ['0.2.8']
- @antstackio/graphql-body-parser: ['0.1.1']
- @antstackio/json-to-graphql: ['1.0.3']
- @antstackio/shelbysam: ['1.1.7']
- @aryanhussain/my-angular-lib: ['0.0.23']
- @asyncapi/dotnet-rabbitmq-template: ['1.0.1', '1.0.2']
- @asyncapi/edavisualiser: ['1.2.1', '1.2.2']
- @asyncapi/go-watermill-template: ['0.2.76', '0.2.77']
- @asyncapi/java-template: ['0.3.5', '0.3.6']
- @asyncapi/keeper: ['0.0.2', '0.0.3']
- @asyncapi/php-template: ['0.1.1', '0.1.2']
- @asyncapi/python-paho-template: ['0.2.14', '0.2.15']
- @asyncapi/server-api: ['0.16.24', '0.16.25']
- @asyncapi/studio: ['1.0.2', '1.0.3']
- @asyncapi/web-component: ['2.6.6', '2.6.7']
- @browserbasehq/bb9: ['1.2.21']
- @browserbasehq/director-ai: ['1.0.3']
- @browserbasehq/mcp: ['2.1.1']
- @browserbasehq/mcp-server-browserbase: ['2.4.2']
- @browserbasehq/sdk-functions: ['0.0.4']
- @browserbasehq/stagehand: ['3.0.4']
- @browserbasehq/stagehand-docs: ['1.0.1']
- @caretive/caret-cli: ['0.0.2']
- @clausehq/flows-step-httprequest: ['0.1.14']
- @clausehq/flows-step-jsontoxml: ['0.1.14']
- @clausehq/flows-step-mqtt: ['0.1.14']
- @clausehq/flows-step-sendgridemail: ['0.1.14']
- @clausehq/flows-step-taskscreateurl: ['0.1.14']
- @commute/bloom: ['1.0.3']
- @commute/market-data: ['1.0.2']
- @commute/market-data-chartjs: ['2.3.1']
- @dev-blinq/ai-qa-logic: ['1.0.19']
- @dev-blinq/cucumber-js: ['1.0.131']
- @dev-blinq/cucumber_client: ['1.0.738']
- @dev-blinq/ui-systems: ['1.0.93']
- @ensdomains/address-encoder: ['1.1.5']
- @ensdomains/blacklist: ['1.0.1']
- @ensdomains/buffer: ['0.1.2']
- @ensdomains/ccip-read-cf-worker: ['0.0.4']
- @ensdomains/ccip-read-dns-gateway: ['0.1.1']
- @ensdomains/ccip-read-router: ['0.0.7']
- @ensdomains/ccip-read-worker-viem: ['0.0.4']
- @ensdomains/content-hash: ['3.0.1']
- @ensdomains/curvearithmetics: ['1.0.1']
- @ensdomains/cypress-metamask: ['1.2.1']
- @ensdomains/dnsprovejs: ['0.5.3']
- @ensdomains/dnssec-oracle-anchors: ['0.0.2']
- @ensdomains/dnssecoraclejs: ['0.2.9']
- @ensdomains/durin: ['0.1.2']
- @ensdomains/durin-middleware: ['0.0.2']
- @ensdomains/ens-archived-contracts: ['0.0.3']
- @ensdomains/ens-avatar: ['1.0.4']
- @ensdomains/ens-contracts: ['1.6.1']
- @ensdomains/ens-test-env: ['1.0.2']
- @ensdomains/ens-validation: ['0.1.1']
- @ensdomains/ensjs: ['4.0.3']
- @ensdomains/ensjs-react: ['0.0.5']
- @ensdomains/eth-ens-namehash: ['2.0.16']
- @ensdomains/hackathon-registrar: ['1.0.5']
- @ensdomains/hardhat-chai-matchers-viem: ['0.1.15']
- @ensdomains/hardhat-toolbox-viem-extended: ['0.0.6']
- @ensdomains/mock: ['2.1.52']
- @ensdomains/name-wrapper: ['1.0.1']
- @ensdomains/offchain-resolver-contracts: ['0.2.2']
- @ensdomains/op-resolver-contracts: ['0.0.2']
- @ensdomains/react-ens-address: ['0.0.32']
- @ensdomains/renewal: ['0.0.13']
- @ensdomains/renewal-widget: ['0.1.10']
- @ensdomains/reverse-records: ['1.0.1']
- @ensdomains/server-analytics: ['0.0.2']
- @ensdomains/solsha1: ['0.0.4']
- @ensdomains/subdomain-registrar: ['0.2.4']
- @ensdomains/test-utils: ['1.3.1']
- @ensdomains/thorin: ['0.6.51']
- @ensdomains/ui: ['3.4.6']
- @ensdomains/unicode-confusables: ['0.1.1']
- @ensdomains/unruggable-gateways: ['0.0.3']
- @ensdomains/vite-plugin-i18next-loader: ['4.0.4']
- @ensdomains/web3modal: ['1.10.2']
- @everreal/react-charts: ['2.0.1', '2.0.2']
- @everreal/validate-esmoduleinterop-imports: ['1.4.4', '1.4.5']
- @everreal/web-analytics: ['0.0.1', '0.0.2']
- @faq-component/core: ['0.0.4']
- @faq-component/react: ['1.0.1']
- @fishingbooker/browser-sync-plugin: ['1.0.5']
- @fishingbooker/react-loader: ['1.0.7']
- @fishingbooker/react-pagination: ['2.0.6']
- @fishingbooker/react-raty: ['2.0.1']
- @fishingbooker/react-swiper: ['0.1.5']
- @hapheus/n8n-nodes-pgp: ['1.5.1']
- @hover-design/core: ['0.0.1']
- @hover-design/react: ['0.2.1']
- @ifelsedeveloper/protocol-contracts-svm-idl: ['0.1.2']
- @ifings/design-system: ['4.9.2']
- @ifings/metatron3: ['0.1.5']
- @kvytech/cli: ['0.0.7']
- @kvytech/components: ['0.0.2']
- @kvytech/habbit-e2e-test: ['0.0.2']
- @kvytech/medusa-plugin-announcement: ['0.0.8']
- @kvytech/medusa-plugin-management: ['0.0.5']
- @kvytech/medusa-plugin-newsletter: ['0.0.5']
- @kvytech/medusa-plugin-product-reviews: ['0.0.9']
- @kvytech/medusa-plugin-promotion: ['0.0.2']
- @kvytech/web: ['0.0.2']
- @lessondesk/api-client: ['9.12.2', '9.12.3']
- @lessondesk/babel-preset: ['1.0.1']
- @lessondesk/electron-group-api-client: ['1.0.3']
- @lessondesk/eslint-config: ['1.4.2']
- @lessondesk/material-icons: ['1.0.3']
- @lessondesk/react-table-context: ['2.0.4']
- @lessondesk/schoolbus: ['5.2.2', '5.2.3']
- @livecms/live-edit: ['0.0.32']
- @livecms/nuxt-live-edit: ['1.9.2']
- @louisle2/core: ['1.0.1']
- @louisle2/cortex-js: ['0.1.6']
- @lpdjs/firestore-repo-service: ['1.0.1']
- @markvivanco/app-version-checker: ['1.0.1', '1.0.2']
- @ntnx/passport-wso2: ['0.0.3']
- @ntnx/t: ['0.0.101']
- @orbitgtbelgium/mapbox-gl-draw-cut-polygon-mode: ['2.0.5']
- @orbitgtbelgium/mapbox-gl-draw-scale-rotate-mode: ['1.1.1']
- @orbitgtbelgium/orbit-components: ['1.2.9']
- @orbitgtbelgium/time-slider: ['1.0.187']
- @osmanekrem/bmad: ['1.0.6']
- @osmanekrem/error-handler: ['1.2.2']
- @posthog/agent: ['1.24.1']
- @posthog/ai: ['7.1.2']
- @posthog/cli: ['0.5.15']
- @posthog/clickhouse: ['1.7.1']
- @posthog/core: ['1.5.6']
- @posthog/hedgehog-mode: ['0.0.42']
- @posthog/icons: ['0.36.1']
- @posthog/lemon-ui: ['0.0.1']
- @posthog/nextjs-config: ['1.5.1']
- @posthog/nuxt: ['1.2.9']
- @posthog/piscina: ['3.2.1']
- @posthog/plugin-contrib: ['0.0.6']
- @posthog/react-rrweb-player: ['1.1.4']
- @posthog/rrdom: ['0.0.31']
- @posthog/rrweb: ['0.0.31']
- @posthog/rrweb-player: ['0.0.31']
- @posthog/rrweb-record: ['0.0.31']
- @posthog/rrweb-replay: ['0.0.19']
- @posthog/rrweb-snapshot: ['0.0.31']
- @posthog/rrweb-utils: ['0.0.31']
- @posthog/siphash: ['1.1.2']
- @posthog/wizard: ['1.18.1']
- @postman/aether-icons: ['2.23.2', '2.23.3', '2.23.4']
- @postman/csv-parse: ['4.0.3', '4.0.4', '4.0.5']
- @postman/node-keytar: ['7.9.4', '7.9.5', '7.9.6']
- @postman/tunnel-agent: ['0.6.5', '0.6.6', '0.6.7']
- @pradhumngautam/common-app: ['1.0.2']
- @pruthvi21/use-debounce: ['1.0.3']
- @quick-start-soft/quick-document-translator: ['1.4.2511142126']
- @quick-start-soft/quick-git-clean-markdown: ['1.4.2511142126']
- @quick-start-soft/quick-markdown: ['1.4.2511142126']
- @quick-start-soft/quick-markdown-compose: ['1.4.2506300029']
- @quick-start-soft/quick-markdown-image: ['1.4.2511142126']
- @quick-start-soft/quick-markdown-print: ['1.4.2511142126']
- @quick-start-soft/quick-markdown-translator: ['1.4.2509202331']
- @quick-start-soft/quick-remove-image-background: ['1.4.2511142126']
- @quick-start-soft/quick-task-refine: ['1.4.2511142126']
- @relyt/claude-context-core: ['0.1.1']
- @seezo/sdr-mcp-server: ['0.0.5']
- @seung-ju/next: ['0.0.2']
- @seung-ju/openapi-generator: ['0.0.4']
- @seung-ju/react-hooks: ['0.0.2']
- @seung-ju/react-native-action-sheet: ['0.2.1']
- @sme-ui/aoma-vevasound-metadata-lib: ['0.1.3']
- @strapbuild/react-native-date-time-picker: ['2.0.4']
- @strapbuild/react-native-perspective-image-cropper: ['0.4.15']
- @strapbuild/react-native-perspective-image-cropper-2: ['0.4.7']
- @strapbuild/react-native-perspective-image-cropper-poojan31: ['0.4.6']
- @suraj_h/medium-common: ['1.0.5']
- @thedelta/eslint-config: ['1.0.2']
- @tiaanduplessis/json: ['2.0.2', '2.0.3']
- @tiaanduplessis/react-progressbar: ['1.0.1', '1.0.2']
- @trefox/sleekshop-js: ['0.1.6']
- @trigo/atrix: ['7.0.1']
- @trigo/atrix-elasticsearch: ['2.0.1']
- @trigo/atrix-postgres: ['1.0.3']
- @trigo/atrix-pubsub: ['4.0.3']
- @trigo/atrix-soap: ['1.0.2']
- @trigo/atrix-swagger: ['3.0.1']
- @trigo/bool-expressions: ['4.1.3']
- @trigo/eslint-config-trigo: ['3.3.1']
- @trigo/fsm: ['3.4.2']
- @trigo/hapi-auth-signedlink: ['1.3.1']
- @trigo/pathfinder-ui-css: ['0.1.1']
- @trigo/trigo-hapijs: ['5.0.1']
- @trpc-rate-limiter/cloudflare: ['0.1.4']
- @trpc-rate-limiter/hono: ['0.1.4']
- @varsityvibe/api-client: ['1.3.36', '1.3.37']
- @varsityvibe/utils: ['5.0.6']
- @varsityvibe/validation-schemas: ['0.6.7', '0.6.8']
- @vishadtyagi/full-year-calendar: ['0.1.11']
- @voiceflow/alexa-types: ['2.15.60', '2.15.61']
- @voiceflow/anthropic: ['0.4.4', '0.4.5']
- @voiceflow/api-sdk: ['3.28.58', '3.28.59']
- @voiceflow/backend-utils: ['5.0.1', '5.0.2']
- @voiceflow/base-types: ['2.136.2', '2.136.3']
- @voiceflow/body-parser: ['1.21.2', '1.21.3']
- @voiceflow/chat-types: ['2.14.58', '2.14.59']
- @voiceflow/circleci-config-sdk-orb-import: ['0.2.1', '0.2.2']
- @voiceflow/commitlint-config: ['2.6.1', '2.6.2']
- @voiceflow/common: ['8.9.1', '8.9.2']
- @voiceflow/default-prompt-wrappers: ['1.7.3', '1.7.4']
- @voiceflow/dependency-cruiser-config: ['1.8.11', '1.8.12']
- @voiceflow/dtos-interact: ['1.40.1', '1.40.2']
- @voiceflow/encryption: ['0.3.2', '0.3.3']
- @voiceflow/eslint-config: ['7.16.4', '7.16.5']
- @voiceflow/eslint-plugin: ['1.6.1', '1.6.2']
- @voiceflow/exception: ['1.10.1', '1.10.2']
- @voiceflow/fetch: ['1.11.1', '1.11.2']
- @voiceflow/general-types: ['3.2.22', '3.2.23']
- @voiceflow/git-branch-check: ['1.4.3', '1.4.4']
- @voiceflow/google-dfes-types: ['2.17.12', '2.17.13']
- @voiceflow/google-types: ['2.21.12', '2.21.13']
- @voiceflow/husky-config: ['1.3.1', '1.3.2']
- @voiceflow/logger: ['2.4.2', '2.4.3']
- @voiceflow/metrics: ['1.5.1', '1.5.2']
- @voiceflow/natural-language-commander: ['0.5.2', '0.5.3']
- @voiceflow/nestjs-common: ['2.75.2', '2.75.3']
- @voiceflow/nestjs-mongodb: ['1.3.1', '1.3.2']
- @voiceflow/nestjs-rate-limit: ['1.3.2', '1.3.3']
- @voiceflow/nestjs-redis: ['1.3.1', '1.3.2']
- @voiceflow/nestjs-timeout: ['1.3.1', '1.3.2']
- @voiceflow/npm-package-json-lint-config: ['1.1.1', '1.1.2']
- @voiceflow/openai: ['3.2.2', '3.2.3']
- @voiceflow/pino: ['6.11.3', '6.11.4']
- @voiceflow/pino-pretty: ['4.4.1', '4.4.2']
- @voiceflow/prettier-config: ['1.10.1', '1.10.2']
- @voiceflow/react-chat: ['1.65.3', '1.65.4']
- @voiceflow/runtime: ['1.29.1', '1.29.2']
- @voiceflow/runtime-client-js: ['1.17.2', '1.17.3']
- @voiceflow/sdk-runtime: ['1.43.1', '1.43.2']
- @voiceflow/secrets-provider: ['1.9.2', '1.9.3']
- @voiceflow/semantic-release-config: ['1.4.1', '1.4.2']
- @voiceflow/serverless-plugin-typescript: ['2.1.7', '2.1.8']
- @voiceflow/slate-serializer: ['1.7.3', '1.7.4']
- @voiceflow/stitches-react: ['2.3.2', '2.3.3']
- @voiceflow/storybook-config: ['1.2.2', '1.2.3']
- @voiceflow/stylelint-config: ['1.1.1', '1.1.2']
- @voiceflow/test-common: ['2.1.1', '2.1.2']
- @voiceflow/tsconfig: ['1.12.1', '1.12.2']
- @voiceflow/tsconfig-paths: ['1.1.4', '1.1.5']
- @voiceflow/utils-designer: ['1.74.19', '1.74.20']
- @voiceflow/verror: ['1.1.4', '1.1.5']
- @voiceflow/vite-config: ['2.6.2', '2.6.3']
- @voiceflow/vitest-config: ['1.10.2', '1.10.3']
- @voiceflow/voice-types: ['2.10.58', '2.10.59']
- @voiceflow/voiceflow-types: ['3.32.45', '3.32.46']
- @voiceflow/widget: ['1.7.18', '1.7.19']
- @zapier/ai-actions: ['0.1.18', '0.1.19', '0.1.20']
- @zapier/babel-preset-zapier: ['6.4.1', '6.4.2', '6.4.3']
- @zapier/browserslist-config-zapier: ['1.0.3', '1.0.4', '1.0.5']
- @zapier/secret-scrubber: ['1.1.3', '1.1.4', '1.1.5']
- ai-crowl-shield: ['1.0.7']
- arc-cli-fc: ['1.0.1']
- asyncapi-preview: ['1.0.1', '1.0.2']
- atrix: ['1.0.1']
- automation_model: ['1.0.491']
- axios-builder: ['1.2.1']
- axios-cancelable: ['1.0.1', '1.0.2']
- axios-timed: ['1.0.1', '1.0.2']
- barebones-css: ['1.1.3', '1.1.4']
- benmostyn-frame-print: ['1.0.1']
- bestgpiocontroller: ['1.0.10']
- bidirectional-adapter: ['1.2.2', '1.2.3', '1.2.4', '1.2.5']
- blinqio-executions-cli: ['1.0.41']
- blob-to-base64: ['1.0.3']
- bun-plugin-httpfile: ['0.1.1']
- bytecode-checker-cli: ['1.0.10', '1.0.11', '1.0.8', '1.0.9']
- bytes-to-x: ['1.0.1']
- calc-loan-interest: ['1.0.4']
- capacitor-plugin-apptrackingios: ['0.0.21']
- capacitor-plugin-purchase: ['0.1.1']
- capacitor-plugin-scgssigninwithgoogle: ['0.0.5']
- capacitor-purchase-history: ['0.0.10']
- capacitor-voice-recorder-wav: ['6.0.3']
- chrome-extension-downloads: ['0.0.3', '0.0.4']
- claude-token-updater: ['1.0.3']
- coinmarketcap-api: ['3.1.2', '3.1.3']
- colors-regex: ['2.0.1']
- command-irail: ['0.5.4']
- compare-obj: ['1.1.1', '1.1.2']
- composite-reducer: ['1.0.2', '1.0.3', '1.0.4', '1.0.5']
- count-it-down: ['1.0.1', '1.0.2']
- cpu-instructions: ['0.0.14']
- create-director-app: ['0.1.1']
- create-glee-app: ['0.2.2', '0.2.3']
- create-hardhat3-app: ['1.1.1', '1.1.2', '1.1.3', '1.1.4']
- crypto-addr-codec: ['0.1.9']
- css-dedoupe: ['0.1.2']
- dashboard-empty-state: ['1.0.3']
- designstudiouiux: ['1.0.1']
- devstart-cli: ['1.0.6']
- dialogflow-es: ['1.1.1', '1.1.2', '1.1.3', '1.1.4']
- discord-bot-server: ['0.1.2']
- docusaurus-plugin-vanilla-extract: ['1.0.3']
- dont-go: ['1.1.2']
- dotnet-template: ['0.0.3', '0.0.4']
- drop-events-on-property-plugin: ['0.0.2']
- email-deliverability-tester: ['1.1.1']
- enforce-branch-name: ['1.1.3']
- esbuild-plugin-brotli: ['0.2.1']
- esbuild-plugin-eta: ['0.1.1']
- esbuild-plugin-httpfile: ['0.4.1']
- eslint-config-nitpicky: ['4.0.1']
- eslint-config-trigo: ['22.0.2']
- eslint-config-zeallat-base: ['1.0.4']
- ethereum-ens: ['0.8.1']
- evm-checkcode-cli: ['1.0.12', '1.0.13', '1.0.14', '1.0.15']
- exact-ticker: ['0.3.5']
- expo-audio-session: ['0.2.1']
- expressos: ['1.1.3']
- fat-fingered: ['1.0.1', '1.0.2']
- feature-flip: ['1.0.1', '1.0.2']
- firestore-search-engine: ['1.2.3']
- fittxt: ['1.0.2', '1.0.3']
- flapstacks: ['1.0.1', '1.0.2']
- flatten-unflatten: ['1.0.1', '1.0.2']
- formik-error-focus: ['2.0.1']
- formik-store: ['1.0.1']
- fuzzy-finder: ['1.0.5', '1.0.6']
- gate-evm-check-code2: ['2.0.3', '2.0.4', '2.0.5', '2.0.6']
- gate-evm-tools-test: ['1.0.5', '1.0.6', '1.0.7', '1.0.8']
- gatsby-plugin-cname: ['1.0.1', '1.0.2']
- generator-meteor-stock: ['0.1.6']
- generator-ng-itobuz: ['0.0.15']
- get-them-args: ['1.3.3']
- github-action-for-generator: ['2.1.27', '2.1.28']
- gitsafe: ['1.0.5']
- go-template: ['0.1.8', '0.1.9']
- gulp-inject-envs: ['1.2.1', '1.2.2']
- haufe-axera-api-client: ['0.0.1', '0.0.2']
- hope-mapboxdraw: ['0.1.1']
- hopedraw: ['1.0.3']
- hover-design-prototype: ['0.0.5']
- httpness: ['1.0.2', '1.0.3']
- hyper-fullfacing: ['1.0.3']
- hyperterm-hipster: ['1.0.7']
- ids-css: ['1.5.1']
- ids-enterprise-mcp-server: ['0.0.2']
- ids-enterprise-ng: ['20.1.6']
- ids-enterprise-typings: ['20.1.6']
- image-to-uri: ['1.0.1', '1.0.2']
- insomnia-plugin-random-pick: ['1.0.4']
- invo: ['0.2.2']
- iron-shield-miniapp: ['0.0.2']
- ito-button: ['8.0.3']
- itobuz-angular: ['0.0.1']
- itobuz-angular-auth: ['8.0.11']
- itobuz-angular-button: ['8.0.11']
- jacob-zuma: ['1.0.1', '1.0.2']
- jaetut-varit-test: ['1.0.2']
- jan-browser: ['0.13.1']
- jquery-bindings: ['1.1.2', '1.1.3']
- jsonsurge: ['1.0.7']
- just-toasty: ['1.7.1']
- kill-port: ['2.0.2', '2.0.3']
- korea-administrative-area-geo-json-util: ['1.0.7']
- kwami: ['1.5.10', '1.5.9']
- lang-codes: ['1.0.1', '1.0.2']
- license-o-matic: ['1.2.1', '1.2.2']
- lint-staged-imagemin: ['1.3.1', '1.3.2']
- lite-serper-mcp-server: ['0.2.2']
- luno-api: ['1.2.3']
- manual-billing-system-miniapp-api: ['1.3.1']
- medusa-plugin-announcement: ['0.0.3']
- medusa-plugin-logs: ['0.0.17']
- medusa-plugin-momo: ['0.0.68']
- medusa-plugin-product-reviews-kvy: ['0.0.4']
- medusa-plugin-zalopay: ['0.0.40']
- mod10-check-digit: ['1.0.1']
- mon-package-react-typescript: ['1.0.1']
- my-saeed-lib: ['0.1.1']
- n8n-nodes-tmdb: ['0.5.1']
- n8n-nodes-vercel-ai-sdk: ['0.1.7']
- n8n-nodes-viral-app: ['0.2.5']
- nanoreset: ['7.0.1', '7.0.2']
- next-circular-dependency: ['1.0.2', '1.0.3']
- next-simple-google-analytics: ['1.1.1', '1.1.2']
- next-styled-nprogress: ['1.0.4', '1.0.5']
- ngx-useful-swiper-prosenjit: ['9.0.2']
- ngx-wooapi: ['12.0.1']
- normal-store: ['1.3.1', '1.3.2', '1.3.3', '1.3.4']
- obj-to-css: ['1.0.2', '1.0.3']
- okta-react-router-6: ['5.0.1']
- open2internet: ['0.1.1']
- orbit-boxicons: ['2.1.3']
- orbit-nebula-draw-tools: ['1.0.10']
- orbit-nebula-editor: ['1.0.2']
- orbit-soap: ['0.43.13']
- orchestrix: ['12.1.2']
- package-tester: ['1.0.1']
- parcel-plugin-asset-copier: ['1.1.2', '1.1.3']
- pdf-annotation: ['0.0.2']
- piclite: ['1.0.1']
- pico-uid: ['1.0.3', '1.0.4']
- pkg-readme: ['1.1.1']
- poper-react-sdk: ['0.1.2']
- posthog-docusaurus: ['2.0.6']
- posthog-js: ['1.297.3']
- posthog-node: ['4.18.1', '5.11.3', '5.13.3']
- posthog-plugin-hello-world: ['1.0.1']
- posthog-react-native: ['4.11.1', '4.12.5']
- posthog-react-native-session-replay: ['1.2.2']
- prime-one-table: ['0.0.19']
- prompt-eng: ['1.0.50']
- puny-req: ['1.0.3']
- ra-auth-firebase: ['1.0.3']
- ra-data-firebase: ['1.0.7', '1.0.8']
- react-component-taggers: ['0.1.9']
- react-data-to-export: ['1.0.1']
- react-element-prompt-inspector: ['0.1.18']
- react-favic: ['1.0.2']
- react-hook-form-persist: ['3.0.1', '3.0.2']
- react-jam-icons: ['1.0.1', '1.0.2']
- react-keycloak-context: ['1.0.8', '1.0.9']
- react-library-setup: ['0.0.6']
- react-linear-loader: ['1.0.2']
- react-micromodal.js: ['1.0.1', '1.0.2']
- react-native-datepicker-modal: ['1.3.1', '1.3.2']
- react-native-email: ['2.1.1', '2.1.2']
- react-native-fetch: ['2.0.1', '2.0.2']
- react-native-get-pixel-dimensions: ['1.0.1', '1.0.2']
- react-native-google-maps-directions: ['2.1.2']
- react-native-jam-icons: ['1.0.1', '1.0.2']
- react-native-log-level: ['1.2.1', '1.2.2']
- react-native-modest-checkbox: ['3.3.1']
- react-native-modest-storage: ['2.1.1']
- react-native-phone-call: ['1.2.1', '1.2.2']
- react-native-retriable-fetch: ['2.0.1', '2.0.2']
- react-native-use-modal: ['1.0.3']
- react-native-view-finder: ['1.2.1', '1.2.2']
- react-native-websocket: ['1.0.3', '1.0.4']
- react-native-worklet-functions: ['3.3.3']
- react-qr-image: ['1.1.1']
- rediff: ['1.0.5']
- rediff-viewer: ['0.0.7']
- redux-router-kit: ['1.2.2', '1.2.3', '1.2.4']
- rollup-plugin-httpfile: ['0.2.1']
- sa-company-registration-number-regex: ['1.0.1', '1.0.2']
- sa-id-gen: ['1.0.4', '1.0.5']
- samesame: ['1.0.3']
- scgs-capacitor-subscribe: ['1.0.11']
- scgsffcreator: ['1.0.5']
- set-nested-prop: ['2.0.1', '2.0.2']
- shelf-jwt-sessions: ['0.1.2']
- shell-exec: ['1.1.3', '1.1.4']
- shinhan-limit-scrap: ['1.0.3']
- skills-use: ['0.1.1', '0.1.2']
- solomon-api-stories: ['1.0.2']
- solomon-v3-stories: ['1.15.6']
- solomon-v3-ui-wrapper: ['1.6.1']
- sort-by-distance: ['2.0.1']
- south-african-id-info: ['1.0.2']
- stat-fns: ['1.0.1']
- stoor: ['2.3.2']
- super-commit: ['1.0.1']
- svelte-autocomplete-select: ['1.1.1']
- svelte-toasty: ['1.1.2', '1.1.3']
- tanstack-shadcn-table: ['1.1.5']
- tcsp: ['2.0.2']
- tcsp-draw-test: ['1.0.5']
- tcsp-test-vd: ['2.4.4']
- template-lib: ['1.1.3', '1.1.4']
- template-micro-service: ['1.0.2', '1.0.3']
- tenacious-fetch: ['2.3.2', '2.3.3']
- test-foundry-app: ['1.0.1', '1.0.2', '1.0.3', '1.0.4']
- test-hardhat-app: ['1.0.1', '1.0.2', '1.0.3', '1.0.4']
- test23112222-api: ['1.0.1']
- tiaan: ['1.0.2']
- token.js-fork: ['0.7.32']
- trigo-react-app: ['4.1.2']
- typefence: ['1.2.2', '1.2.3']
- typeorm-orbit: ['0.2.27']
- undefsafe-typed: ['1.0.3', '1.0.4']
- uplandui: ['0.5.4']
- upload-to-play-store: ['1.0.1', '1.0.2']
- url-encode-decode: ['1.0.1', '1.0.2']
- use-unsaved-changes: ['1.0.9']
- valid-south-african-id: ['1.0.3']
- vf-oss-template: ['1.0.1', '1.0.2', '1.0.3', '1.0.4']
- vite-plugin-httpfile: ['0.2.1']
- vue-browserupdate-nuxt: ['1.0.5']
- web-scraper-mcp: ['1.1.4']
- web-types-htmx: ['0.1.1']
- web-types-lit: ['0.1.1']
- webpack-loader-httpfile: ['0.2.1']
- wellness-expert-ng-gallery: ['5.1.1']
- wenk: ['1.0.10', '1.0.9']
- zapier-async-storage: ['1.0.1', '1.0.2', '1.0.3']
- zapier-platform-cli: ['18.0.2', '18.0.3', '18.0.4']
- zapier-platform-core: ['18.0.2', '18.0.3', '18.0.4']
- zapier-platform-schema: ['18.0.2', '18.0.3', '18.0.4']
- zapier-scripts: ['7.8.3', '7.8.4']
- zuper-cli: ['1.0.1']
- zuper-sdk: ['1.0.57']
- zuper-stream: ['2.0.9']
============================================================
Updating YAML file...
Added new package 02-echo with versions ['0.0.7']
Added new package @accordproject/concerto-analysis with versions ['3.24.1']
Added new package @accordproject/concerto-linter with versions ['3.24.1']
Added new package @accordproject/concerto-linter-default-ruleset with versions ['3.24.1']
Added new package @accordproject/concerto-metamodel with versions ['3.12.5']
Added new package @accordproject/concerto-types with versions ['3.24.1']
Added new package @accordproject/markdown-it-cicero with versions ['0.16.26']
Added new package @accordproject/template-engine with versions ['2.7.2']
Added new package @actbase/css-to-react-native-transform with versions ['1.0.3']
Added new package @actbase/native with versions ['0.1.32']
Added new package @actbase/node-server with versions ['1.1.19']
Added new package @actbase/react-absolute with versions ['0.8.3']
Added new package @actbase/react-daum-postcode with versions ['1.0.5']
Added new package @actbase/react-kakaosdk with versions ['0.9.27']
Added new package @actbase/react-native-actionsheet with versions ['1.0.3']
Added new package @actbase/react-native-devtools with versions ['0.1.3']
Added new package @actbase/react-native-fast-image with versions ['8.5.13']
Added new package @actbase/react-native-kakao-channel with versions ['1.0.2']
Added new package @actbase/react-native-kakao-navi with versions ['2.0.4']
Added new package @actbase/react-native-less-transformer with versions ['1.0.6']
Added new package @actbase/react-native-naver-login with versions ['1.0.1']
Added new package @actbase/react-native-simple-video with versions ['1.0.13']
Added new package @actbase/react-native-tiktok with versions ['1.1.3']
Added new package @alexcolls/nuxt-socket.io with versions ['0.0.7', '0.0.8']
Added new package @alexcolls/nuxt-ux with versions ['0.6.1', '0.6.2']
Added new package @antstackio/eslint-config-antstack with versions ['0.0.3']
Added new package @antstackio/express-graphql-proxy with versions ['0.2.8']
Added new package @antstackio/graphql-body-parser with versions ['0.1.1']
Added new package @antstackio/json-to-graphql with versions ['1.0.3']
Added new package @antstackio/shelbysam with versions ['1.1.7']
Added new package @aryanhussain/my-angular-lib with versions ['0.0.23']
Added new package @asyncapi/dotnet-rabbitmq-template with versions ['1.0.1', '1.0.2']
Added new package @asyncapi/edavisualiser with versions ['1.2.1', '1.2.2']
Added new package @asyncapi/go-watermill-template with versions ['0.2.76', '0.2.77']
Added new package @asyncapi/java-template with versions ['0.3.5', '0.3.6']
Added new package @asyncapi/keeper with versions ['0.0.2', '0.0.3']
Added new package @asyncapi/php-template with versions ['0.1.1', '0.1.2']
Added new package @asyncapi/python-paho-template with versions ['0.2.14', '0.2.15']
Added new package @asyncapi/server-api with versions ['0.16.24', '0.16.25']
Added new package @asyncapi/studio with versions ['1.0.2', '1.0.3']
Added new package @asyncapi/web-component with versions ['2.6.6', '2.6.7']
Added new package @browserbasehq/bb9 with versions ['1.2.21']
Added new package @browserbasehq/director-ai with versions ['1.0.3']
Added new package @browserbasehq/mcp with versions ['2.1.1']
Added new package @browserbasehq/mcp-server-browserbase with versions ['2.4.2']
Added new package @browserbasehq/sdk-functions with versions ['0.0.4']
Added new package @browserbasehq/stagehand with versions ['3.0.4']
Added new package @browserbasehq/stagehand-docs with versions ['1.0.1']
Added new package @caretive/caret-cli with versions ['0.0.2']
Added new package @clausehq/flows-step-httprequest with versions ['0.1.14']
Added new package @clausehq/flows-step-jsontoxml with versions ['0.1.14']
Added new package @clausehq/flows-step-mqtt with versions ['0.1.14']
Added new package @clausehq/flows-step-sendgridemail with versions ['0.1.14']
Added new package @clausehq/flows-step-taskscreateurl with versions ['0.1.14']
Added new package @commute/bloom with versions ['1.0.3']
Added new package @commute/market-data with versions ['1.0.2']
Added new package @commute/market-data-chartjs with versions ['2.3.1']
Added new package @dev-blinq/ai-qa-logic with versions ['1.0.19']
Added new package @dev-blinq/cucumber-js with versions ['1.0.131']
Added new package @dev-blinq/cucumber_client with versions ['1.0.738']
Added new package @dev-blinq/ui-systems with versions ['1.0.93']
Added new package @ensdomains/address-encoder with versions ['1.1.5']
Added new package @ensdomains/blacklist with versions ['1.0.1']
Added new package @ensdomains/buffer with versions ['0.1.2']
Added new package @ensdomains/ccip-read-cf-worker with versions ['0.0.4']
Added new package @ensdomains/ccip-read-dns-gateway with versions ['0.1.1']
Added new package @ensdomains/ccip-read-router with versions ['0.0.7']
Added new package @ensdomains/ccip-read-worker-viem with versions ['0.0.4']
Added new package @ensdomains/content-hash with versions ['3.0.1']
Added new package @ensdomains/curvearithmetics with versions ['1.0.1']
Added new package @ensdomains/cypress-metamask with versions ['1.2.1']
Added new package @ensdomains/dnsprovejs with versions ['0.5.3']
Added new package @ensdomains/dnssec-oracle-anchors with versions ['0.0.2']
Added new package @ensdomains/dnssecoraclejs with versions ['0.2.9']
Added new package @ensdomains/durin with versions ['0.1.2']
Added new package @ensdomains/durin-middleware with versions ['0.0.2']
Added new package @ensdomains/ens-archived-contracts with versions ['0.0.3']
Added new package @ensdomains/ens-avatar with versions ['1.0.4']
Added new package @ensdomains/ens-contracts with versions ['1.6.1']
Added new package @ensdomains/ens-test-env with versions ['1.0.2']
Added new package @ensdomains/ens-validation with versions ['0.1.1']
Added new package @ensdomains/ensjs with versions ['4.0.3']
Added new package @ensdomains/ensjs-react with versions ['0.0.5']
Added new package @ensdomains/eth-ens-namehash with versions ['2.0.16']
Added new package @ensdomains/hackathon-registrar with versions ['1.0.5']
Added new package @ensdomains/hardhat-chai-matchers-viem with versions ['0.1.15']
Added new package @ensdomains/hardhat-toolbox-viem-extended with versions ['0.0.6']
Added new package @ensdomains/mock with versions ['2.1.52']
Added new package @ensdomains/name-wrapper with versions ['1.0.1']
Added new package @ensdomains/offchain-resolver-contracts with versions ['0.2.2']
Added new package @ensdomains/op-resolver-contracts with versions ['0.0.2']
Added new package @ensdomains/react-ens-address with versions ['0.0.32']
Added new package @ensdomains/renewal with versions ['0.0.13']
Added new package @ensdomains/renewal-widget with versions ['0.1.10']
Added new package @ensdomains/reverse-records with versions ['1.0.1']
Added new package @ensdomains/server-analytics with versions ['0.0.2']
Added new package @ensdomains/solsha1 with versions ['0.0.4']
Added new package @ensdomains/subdomain-registrar with versions ['0.2.4']
Added new package @ensdomains/test-utils with versions ['1.3.1']
Added new package @ensdomains/thorin with versions ['0.6.51']
Added new package @ensdomains/ui with versions ['3.4.6']
Added new package @ensdomains/unicode-confusables with versions ['0.1.1']
Added new package @ensdomains/unruggable-gateways with versions ['0.0.3']
Added new package @ensdomains/vite-plugin-i18next-loader with versions ['4.0.4']
Added new package @ensdomains/web3modal with versions ['1.10.2']
Added new package @everreal/react-charts with versions ['2.0.1', '2.0.2']
Added new package @everreal/validate-esmoduleinterop-imports with versions ['1.4.4', '1.4.5']
Added new package @everreal/web-analytics with versions ['0.0.1', '0.0.2']
Added new package @faq-component/core with versions ['0.0.4']
Added new package @faq-component/react with versions ['1.0.1']
Added new package @fishingbooker/browser-sync-plugin with versions ['1.0.5']
Added new package @fishingbooker/react-loader with versions ['1.0.7']
Added new package @fishingbooker/react-pagination with versions ['2.0.6']
Added new package @fishingbooker/react-raty with versions ['2.0.1']
Added new package @fishingbooker/react-swiper with versions ['0.1.5']
Added new package @hapheus/n8n-nodes-pgp with versions ['1.5.1']
Added new package @hover-design/core with versions ['0.0.1']
Added new package @hover-design/react with versions ['0.2.1']
Added new package @ifelsedeveloper/protocol-contracts-svm-idl with versions ['0.1.2']
Added new package @ifings/design-system with versions ['4.9.2']
Added new package @ifings/metatron3 with versions ['0.1.5']
Added new package @kvytech/cli with versions ['0.0.7']
Added new package @kvytech/components with versions ['0.0.2']
Added new package @kvytech/habbit-e2e-test with versions ['0.0.2']
Added new package @kvytech/medusa-plugin-announcement with versions ['0.0.8']
Added new package @kvytech/medusa-plugin-management with versions ['0.0.5']
Added new package @kvytech/medusa-plugin-newsletter with versions ['0.0.5']
Added new package @kvytech/medusa-plugin-product-reviews with versions ['0.0.9']
Added new package @kvytech/medusa-plugin-promotion with versions ['0.0.2']
Added new package @kvytech/web with versions ['0.0.2']
Added new package @lessondesk/api-client with versions ['9.12.2', '9.12.3']
Added new package @lessondesk/babel-preset with versions ['1.0.1']
Added new package @lessondesk/electron-group-api-client with versions ['1.0.3']
Added new package @lessondesk/eslint-config with versions ['1.4.2']
Added new package @lessondesk/material-icons with versions ['1.0.3']
Added new package @lessondesk/react-table-context with versions ['2.0.4']
Added new package @lessondesk/schoolbus with versions ['5.2.2', '5.2.3']
Added new package @livecms/live-edit with versions ['0.0.32']
Added new package @livecms/nuxt-live-edit with versions ['1.9.2']
Added new package @louisle2/core with versions ['1.0.1']
Added new package @louisle2/cortex-js with versions ['0.1.6']
Added new package @lpdjs/firestore-repo-service with versions ['1.0.1']
Added new package @markvivanco/app-version-checker with versions ['1.0.1', '1.0.2']
Added new package @ntnx/passport-wso2 with versions ['0.0.3']
Added new package @ntnx/t with versions ['0.0.101']
Added new package @orbitgtbelgium/mapbox-gl-draw-cut-polygon-mode with versions ['2.0.5']
Added new package @orbitgtbelgium/mapbox-gl-draw-scale-rotate-mode with versions ['1.1.1']
Added new package @orbitgtbelgium/orbit-components with versions ['1.2.9']
Added new package @orbitgtbelgium/time-slider with versions ['1.0.187']
Added new package @osmanekrem/bmad with versions ['1.0.6']
Added new package @osmanekrem/error-handler with versions ['1.2.2']
Added new package @posthog/agent with versions ['1.24.1']
Added new package @posthog/ai with versions ['7.1.2']
Added new package @posthog/cli with versions ['0.5.15']
Added new package @posthog/clickhouse with versions ['1.7.1']
Added new package @posthog/core with versions ['1.5.6']
Added new package @posthog/hedgehog-mode with versions ['0.0.42']
Added new package @posthog/icons with versions ['0.36.1']
Added new package @posthog/lemon-ui with versions ['0.0.1']
Added new package @posthog/nextjs-config with versions ['1.5.1']
Added new package @posthog/nuxt with versions ['1.2.9']
Added new package @posthog/piscina with versions ['3.2.1']
Added new package @posthog/plugin-contrib with versions ['0.0.6']
Added new package @posthog/react-rrweb-player with versions ['1.1.4']
Added new package @posthog/rrdom with versions ['0.0.31']
Added new package @posthog/rrweb with versions ['0.0.31']
Added new package @posthog/rrweb-player with versions ['0.0.31']
Added new package @posthog/rrweb-record with versions ['0.0.31']
Added new package @posthog/rrweb-replay with versions ['0.0.19']
Added new package @posthog/rrweb-snapshot with versions ['0.0.31']
Added new package @posthog/rrweb-utils with versions ['0.0.31']
Added new package @posthog/siphash with versions ['1.1.2']
Added new package @posthog/wizard with versions ['1.18.1']
Added new package @postman/aether-icons with versions ['2.23.2', '2.23.3', '2.23.4']
Added new package @postman/csv-parse with versions ['4.0.3', '4.0.4', '4.0.5']
Added new package @postman/node-keytar with versions ['7.9.4', '7.9.5', '7.9.6']
Added new package @postman/tunnel-agent with versions ['0.6.5', '0.6.6', '0.6.7']
Added new package @pradhumngautam/common-app with versions ['1.0.2']
Added new package @pruthvi21/use-debounce with versions ['1.0.3']
Added new package @quick-start-soft/quick-document-translator with versions ['1.4.2511142126']
Added new package @quick-start-soft/quick-git-clean-markdown with versions ['1.4.2511142126']
Added new package @quick-start-soft/quick-markdown with versions ['1.4.2511142126']
Added new package @quick-start-soft/quick-markdown-compose with versions ['1.4.2506300029']
Added new package @quick-start-soft/quick-markdown-image with versions ['1.4.2511142126']
Added new package @quick-start-soft/quick-markdown-print with versions ['1.4.2511142126']
Added new package @quick-start-soft/quick-markdown-translator with versions ['1.4.2509202331']
Added new package @quick-start-soft/quick-remove-image-background with versions ['1.4.2511142126']
Added new package @quick-start-soft/quick-task-refine with versions ['1.4.2511142126']
Added new package @relyt/claude-context-core with versions ['0.1.1']
Added new package @seezo/sdr-mcp-server with versions ['0.0.5']
Added new package @seung-ju/next with versions ['0.0.2']
Added new package @seung-ju/openapi-generator with versions ['0.0.4']
Added new package @seung-ju/react-hooks with versions ['0.0.2']
Added new package @seung-ju/react-native-action-sheet with versions ['0.2.1']
Added new package @sme-ui/aoma-vevasound-metadata-lib with versions ['0.1.3']
Added new package @strapbuild/react-native-date-time-picker with versions ['2.0.4']
Added new package @strapbuild/react-native-perspective-image-cropper with versions ['0.4.15']
Added new package @strapbuild/react-native-perspective-image-cropper-2 with versions ['0.4.7']
Added new package @strapbuild/react-native-perspective-image-cropper-poojan31 with versions ['0.4.6']
Added new package @suraj_h/medium-common with versions ['1.0.5']
Added new package @thedelta/eslint-config with versions ['1.0.2']
Added new package @tiaanduplessis/json with versions ['2.0.2', '2.0.3']
Added new package @tiaanduplessis/react-progressbar with versions ['1.0.1', '1.0.2']
Added new package @trefox/sleekshop-js with versions ['0.1.6']
Added new package @trigo/atrix with versions ['7.0.1']
Added new package @trigo/atrix-elasticsearch with versions ['2.0.1']
Added new package @trigo/atrix-postgres with versions ['1.0.3']
Added new package @trigo/atrix-pubsub with versions ['4.0.3']
Added new package @trigo/atrix-soap with versions ['1.0.2']
Added new package @trigo/atrix-swagger with versions ['3.0.1']
Added new package @trigo/bool-expressions with versions ['4.1.3']
Added new package @trigo/eslint-config-trigo with versions ['3.3.1']
Added new package @trigo/fsm with versions ['3.4.2']
Added new package @trigo/hapi-auth-signedlink with versions ['1.3.1']
Added new package @trigo/pathfinder-ui-css with versions ['0.1.1']
Added new package @trigo/trigo-hapijs with versions ['5.0.1']
Added new package @trpc-rate-limiter/cloudflare with versions ['0.1.4']
Added new package @trpc-rate-limiter/hono with versions ['0.1.4']
Added new package @varsityvibe/api-client with versions ['1.3.36', '1.3.37']
Added new package @varsityvibe/utils with versions ['5.0.6']
Added new package @varsityvibe/validation-schemas with versions ['0.6.7', '0.6.8']
Added new package @vishadtyagi/full-year-calendar with versions ['0.1.11']
Added new package @voiceflow/alexa-types with versions ['2.15.60', '2.15.61']
Added new package @voiceflow/anthropic with versions ['0.4.4', '0.4.5']
Added new package @voiceflow/api-sdk with versions ['3.28.58', '3.28.59']
Added new package @voiceflow/backend-utils with versions ['5.0.1', '5.0.2']
Added new package @voiceflow/base-types with versions ['2.136.2', '2.136.3']
Added new package @voiceflow/body-parser with versions ['1.21.2', '1.21.3']
Added new package @voiceflow/chat-types with versions ['2.14.58', '2.14.59']
Added new package @voiceflow/circleci-config-sdk-orb-import with versions ['0.2.1', '0.2.2']
Added new package @voiceflow/commitlint-config with versions ['2.6.1', '2.6.2']
Added new package @voiceflow/common with versions ['8.9.1', '8.9.2']
Added new package @voiceflow/default-prompt-wrappers with versions ['1.7.3', '1.7.4']
Added new package @voiceflow/dependency-cruiser-config with versions ['1.8.11', '1.8.12']
Added new package @voiceflow/dtos-interact with versions ['1.40.1', '1.40.2']
Added new package @voiceflow/encryption with versions ['0.3.2', '0.3.3']
Added new package @voiceflow/eslint-config with versions ['7.16.4', '7.16.5']
Added new package @voiceflow/eslint-plugin with versions ['1.6.1', '1.6.2']
Added new package @voiceflow/exception with versions ['1.10.1', '1.10.2']
Added new package @voiceflow/fetch with versions ['1.11.1', '1.11.2']
Added new package @voiceflow/general-types with versions ['3.2.22', '3.2.23']
Added new package @voiceflow/git-branch-check with versions ['1.4.3', '1.4.4']
Added new package @voiceflow/google-dfes-types with versions ['2.17.12', '2.17.13']
Added new package @voiceflow/google-types with versions ['2.21.12', '2.21.13']
Added new package @voiceflow/husky-config with versions ['1.3.1', '1.3.2']
Added new package @voiceflow/logger with versions ['2.4.2', '2.4.3']
Added new package @voiceflow/metrics with versions ['1.5.1', '1.5.2']
Added new package @voiceflow/natural-language-commander with versions ['0.5.2', '0.5.3']
Added new package @voiceflow/nestjs-common with versions ['2.75.2', '2.75.3']
Added new package @voiceflow/nestjs-mongodb with versions ['1.3.1', '1.3.2']
Added new package @voiceflow/nestjs-rate-limit with versions ['1.3.2', '1.3.3']
Added new package @voiceflow/nestjs-redis with versions ['1.3.1', '1.3.2']
Added new package @voiceflow/nestjs-timeout with versions ['1.3.1', '1.3.2']
Added new package @voiceflow/npm-package-json-lint-config with versions ['1.1.1', '1.1.2']
Added new package @voiceflow/openai with versions ['3.2.2', '3.2.3']
Added new package @voiceflow/pino with versions ['6.11.3', '6.11.4']
Added new package @voiceflow/pino-pretty with versions ['4.4.1', '4.4.2']
Added new package @voiceflow/prettier-config with versions ['1.10.1', '1.10.2']
Added new package @voiceflow/react-chat with versions ['1.65.3', '1.65.4']
Added new package @voiceflow/runtime with versions ['1.29.1', '1.29.2']
Added new package @voiceflow/runtime-client-js with versions ['1.17.2', '1.17.3']
Added new package @voiceflow/sdk-runtime with versions ['1.43.1', '1.43.2']
Added new package @voiceflow/secrets-provider with versions ['1.9.2', '1.9.3']
Added new package @voiceflow/semantic-release-config with versions ['1.4.1', '1.4.2']
Added new package @voiceflow/serverless-plugin-typescript with versions ['2.1.7', '2.1.8']
Added new package @voiceflow/slate-serializer with versions ['1.7.3', '1.7.4']
Added new package @voiceflow/stitches-react with versions ['2.3.2', '2.3.3']
Added new package @voiceflow/storybook-config with versions ['1.2.2', '1.2.3']
Added new package @voiceflow/stylelint-config with versions ['1.1.1', '1.1.2']
Added new package @voiceflow/test-common with versions ['2.1.1', '2.1.2']
Added new package @voiceflow/tsconfig with versions ['1.12.1', '1.12.2']
Added new package @voiceflow/tsconfig-paths with versions ['1.1.4', '1.1.5']
Added new package @voiceflow/utils-designer with versions ['1.74.19', '1.74.20']
Added new package @voiceflow/verror with versions ['1.1.4', '1.1.5']
Added new package @voiceflow/vite-config with versions ['2.6.2', '2.6.3']
Added new package @voiceflow/vitest-config with versions ['1.10.2', '1.10.3']
Added new package @voiceflow/voice-types with versions ['2.10.58', '2.10.59']
Added new package @voiceflow/voiceflow-types with versions ['3.32.45', '3.32.46']
Added new package @voiceflow/widget with versions ['1.7.18', '1.7.19']
Added new package @zapier/ai-actions with versions ['0.1.18', '0.1.19', '0.1.20']
Added new package @zapier/babel-preset-zapier with versions ['6.4.1', '6.4.2', '6.4.3']
Added new package @zapier/browserslist-config-zapier with versions ['1.0.3', '1.0.4', '1.0.5']
Added new package @zapier/secret-scrubber with versions ['1.1.3', '1.1.4', '1.1.5']
Added new package ai-crowl-shield with versions ['1.0.7']
Added new package arc-cli-fc with versions ['1.0.1']
Added new package asyncapi-preview with versions ['1.0.1', '1.0.2']
Added new package atrix with versions ['1.0.1']
Added new package automation_model with versions ['1.0.491']
Added new package axios-builder with versions ['1.2.1']
Added new package axios-cancelable with versions ['1.0.1', '1.0.2']
Added new package axios-timed with versions ['1.0.1', '1.0.2']
Added new package barebones-css with versions ['1.1.3', '1.1.4']
Added new package benmostyn-frame-print with versions ['1.0.1']
Added new package bestgpiocontroller with versions ['1.0.10']
Added new package bidirectional-adapter with versions ['1.2.2', '1.2.3', '1.2.4', '1.2.5']
Added new package blinqio-executions-cli with versions ['1.0.41']
Added new package blob-to-base64 with versions ['1.0.3']
Added new package bun-plugin-httpfile with versions ['0.1.1']
Added new package bytecode-checker-cli with versions ['1.0.10', '1.0.11', '1.0.8', '1.0.9']
Added new package bytes-to-x with versions ['1.0.1']
Added new package calc-loan-interest with versions ['1.0.4']
Added new package capacitor-plugin-apptrackingios with versions ['0.0.21']
Added new package capacitor-plugin-purchase with versions ['0.1.1']
Added new package capacitor-plugin-scgssigninwithgoogle with versions ['0.0.5']
Added new package capacitor-purchase-history with versions ['0.0.10']
Added new package capacitor-voice-recorder-wav with versions ['6.0.3']
Added new package chrome-extension-downloads with versions ['0.0.3', '0.0.4']
Added new package claude-token-updater with versions ['1.0.3']
Added new package coinmarketcap-api with versions ['3.1.2', '3.1.3']
Added new package colors-regex with versions ['2.0.1']
Added new package command-irail with versions ['0.5.4']
Added new package compare-obj with versions ['1.1.1', '1.1.2']
Added new package composite-reducer with versions ['1.0.2', '1.0.3', '1.0.4', '1.0.5']
Added new package count-it-down with versions ['1.0.1', '1.0.2']
Added new package cpu-instructions with versions ['0.0.14']
Added new package create-director-app with versions ['0.1.1']
Added new package create-glee-app with versions ['0.2.2', '0.2.3']
Added new package create-hardhat3-app with versions ['1.1.1', '1.1.2', '1.1.3', '1.1.4']
Added new package crypto-addr-codec with versions ['0.1.9']
Added new package css-dedoupe with versions ['0.1.2']
Added new package dashboard-empty-state with versions ['1.0.3']
Added new package designstudiouiux with versions ['1.0.1']
Added new package devstart-cli with versions ['1.0.6']
Added new package dialogflow-es with versions ['1.1.1', '1.1.2', '1.1.3', '1.1.4']
Added new package discord-bot-server with versions ['0.1.2']
Added new package docusaurus-plugin-vanilla-extract with versions ['1.0.3']
Added new package dont-go with versions ['1.1.2']
Added new package dotnet-template with versions ['0.0.3', '0.0.4']
Added new package drop-events-on-property-plugin with versions ['0.0.2']
Added new package email-deliverability-tester with versions ['1.1.1']
Added new package enforce-branch-name with versions ['1.1.3']
Added new package esbuild-plugin-brotli with versions ['0.2.1']
Added new package esbuild-plugin-eta with versions ['0.1.1']
Added new package esbuild-plugin-httpfile with versions ['0.4.1']
Added new package eslint-config-nitpicky with versions ['4.0.1']
Added new package eslint-config-trigo with versions ['22.0.2']
Added new package eslint-config-zeallat-base with versions ['1.0.4']
Added new package ethereum-ens with versions ['0.8.1']
Added new package evm-checkcode-cli with versions ['1.0.12', '1.0.13', '1.0.14', '1.0.15']
Added new package exact-ticker with versions ['0.3.5']
Added new package expo-audio-session with versions ['0.2.1']
Added new package expressos with versions ['1.1.3']
Added new package fat-fingered with versions ['1.0.1', '1.0.2']
Added new package feature-flip with versions ['1.0.1', '1.0.2']
Added new package firestore-search-engine with versions ['1.2.3']
Added new package fittxt with versions ['1.0.2', '1.0.3']
Added new package flapstacks with versions ['1.0.1', '1.0.2']
Added new package flatten-unflatten with versions ['1.0.1', '1.0.2']
Added new package formik-error-focus with versions ['2.0.1']
Added new package formik-store with versions ['1.0.1']
Added new package fuzzy-finder with versions ['1.0.5', '1.0.6']
Added new package gate-evm-check-code2 with versions ['2.0.3', '2.0.4', '2.0.5', '2.0.6']
Added new package gate-evm-tools-test with versions ['1.0.5', '1.0.6', '1.0.7', '1.0.8']
Added new package gatsby-plugin-cname with versions ['1.0.1', '1.0.2']
Added new package generator-meteor-stock with versions ['0.1.6']
Added new package generator-ng-itobuz with versions ['0.0.15']
Added new package get-them-args with versions ['1.3.3']
Added new package github-action-for-generator with versions ['2.1.27', '2.1.28']
Added new package gitsafe with versions ['1.0.5']
Added new package go-template with versions ['0.1.8', '0.1.9']
Added new package gulp-inject-envs with versions ['1.2.1', '1.2.2']
Added new package haufe-axera-api-client with versions ['0.0.1', '0.0.2']
Added new package hope-mapboxdraw with versions ['0.1.1']
Added new package hopedraw with versions ['1.0.3']
Added new package hover-design-prototype with versions ['0.0.5']
Added new package httpness with versions ['1.0.2', '1.0.3']
Added new package hyper-fullfacing with versions ['1.0.3']
Added new package hyperterm-hipster with versions ['1.0.7']
Added new package ids-css with versions ['1.5.1']
Added new package ids-enterprise-mcp-server with versions ['0.0.2']
Added new package ids-enterprise-ng with versions ['20.1.6']
Added new package ids-enterprise-typings with versions ['20.1.6']
Added new package image-to-uri with versions ['1.0.1', '1.0.2']
Added new package insomnia-plugin-random-pick with versions ['1.0.4']
Added new package invo with versions ['0.2.2']
Added new package iron-shield-miniapp with versions ['0.0.2']
Added new package ito-button with versions ['8.0.3']
Added new package itobuz-angular with versions ['0.0.1']
Added new package itobuz-angular-auth with versions ['8.0.11']
Added new package itobuz-angular-button with versions ['8.0.11']
Added new package jacob-zuma with versions ['1.0.1', '1.0.2']
Added new package jaetut-varit-test with versions ['1.0.2']
Added new package jan-browser with versions ['0.13.1']
Added new package jquery-bindings with versions ['1.1.2', '1.1.3']
Added new package jsonsurge with versions ['1.0.7']
Added new package just-toasty with versions ['1.7.1']
Added new package kill-port with versions ['2.0.2', '2.0.3']
Added new package korea-administrative-area-geo-json-util with versions ['1.0.7']
Added new package kwami with versions ['1.5.10', '1.5.9']
Added new package lang-codes with versions ['1.0.1', '1.0.2']
Added new package license-o-matic with versions ['1.2.1', '1.2.2']
Added new package lint-staged-imagemin with versions ['1.3.1', '1.3.2']
Added new package lite-serper-mcp-server with versions ['0.2.2']
Added new package luno-api with versions ['1.2.3']
Added new package manual-billing-system-miniapp-api with versions ['1.3.1']
Added new package medusa-plugin-announcement with versions ['0.0.3']
Added new package medusa-plugin-logs with versions ['0.0.17']
Added new package medusa-plugin-momo with versions ['0.0.68']
Added new package medusa-plugin-product-reviews-kvy with versions ['0.0.4']
Added new package medusa-plugin-zalopay with versions ['0.0.40']
Added new package mod10-check-digit with versions ['1.0.1']
Added new package mon-package-react-typescript with versions ['1.0.1']
Added new package my-saeed-lib with versions ['0.1.1']
Added new package n8n-nodes-tmdb with versions ['0.5.1']
Added new package n8n-nodes-vercel-ai-sdk with versions ['0.1.7']
Added new package n8n-nodes-viral-app with versions ['0.2.5']
Added new package nanoreset with versions ['7.0.1', '7.0.2']
Added new package next-circular-dependency with versions ['1.0.2', '1.0.3']
Added new package next-simple-google-analytics with versions ['1.1.1', '1.1.2']
Added new package next-styled-nprogress with versions ['1.0.4', '1.0.5']
Added new package ngx-useful-swiper-prosenjit with versions ['9.0.2']
Added new package ngx-wooapi with versions ['12.0.1']
Added new package normal-store with versions ['1.3.1', '1.3.2', '1.3.3', '1.3.4']
Added new package obj-to-css with versions ['1.0.2', '1.0.3']
Added new package okta-react-router-6 with versions ['5.0.1']
Added new package open2internet with versions ['0.1.1']
Added new package orbit-boxicons with versions ['2.1.3']
Added new package orbit-nebula-draw-tools with versions ['1.0.10']
Added new package orbit-nebula-editor with versions ['1.0.2']
Added new package orbit-soap with versions ['0.43.13']
Added new package orchestrix with versions ['12.1.2']
Added new package package-tester with versions ['1.0.1']
Added new package parcel-plugin-asset-copier with versions ['1.1.2', '1.1.3']
Added new package pdf-annotation with versions ['0.0.2']
Added new package piclite with versions ['1.0.1']
Added new package pico-uid with versions ['1.0.3', '1.0.4']
Added new package pkg-readme with versions ['1.1.1']
Added new package poper-react-sdk with versions ['0.1.2']
Added new package posthog-docusaurus with versions ['2.0.6']
Added new package posthog-js with versions ['1.297.3']
Added new package posthog-node with versions ['4.18.1', '5.11.3', '5.13.3']
Added new package posthog-plugin-hello-world with versions ['1.0.1']
Added new package posthog-react-native with versions ['4.11.1', '4.12.5']
Added new package posthog-react-native-session-replay with versions ['1.2.2']
Added new package prime-one-table with versions ['0.0.19']
Added new package prompt-eng with versions ['1.0.50']
Added new package puny-req with versions ['1.0.3']
Added new package ra-auth-firebase with versions ['1.0.3']
Added new package ra-data-firebase with versions ['1.0.7', '1.0.8']
Added new package react-component-taggers with versions ['0.1.9']
Added new package react-data-to-export with versions ['1.0.1']
Added new package react-element-prompt-inspector with versions ['0.1.18']
Added new package react-favic with versions ['1.0.2']
Added new package react-hook-form-persist with versions ['3.0.1', '3.0.2']
Added new package react-jam-icons with versions ['1.0.1', '1.0.2']
Added new package react-keycloak-context with versions ['1.0.8', '1.0.9']