-
Notifications
You must be signed in to change notification settings - Fork 66
/
Copy pathplugins.json
1046 lines (1046 loc) · 36.9 KB
/
plugins.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
[
{
"author": "bencevans",
"description": "Install the Flutter SDK for Building and Deploying Flutter Web Apps",
"name": "Flutter SDK",
"package": "netlify-plugin-flutter",
"repo": "https://github.com/bencevans/netlify-plugin-flutter",
"version": "1.1.0"
},
{
"author": "nimbella",
"description": "Nimbella plugin to extend Netlify Sites with stateful and portable serverless APIs.",
"name": "Nimbella",
"package": "netlify-plugin-nimbella",
"repo": "https://github.com/nimbella/netlify-plugin-nimbella",
"version": "2.1.0"
},
{
"author": "chrism2671",
"description": "Clear Cloudflare cache when build completes.",
"name": "Cloudflare cache purge",
"package": "netlify-purge-cloudflare-on-deploy",
"repo": "https://github.com/chrism2671/netlify-purge-cloudflare-on-deploy",
"version": "1.2.0",
"variables": [
{
"name": "CLOUDFLARE_ZONE_ID",
"description": "Cloudflare Zone ID"
},
{
"name": "CLOUDFLARE_API_TOKEN",
"description": "In Cloudflare, navigate to My Profile --> API Tokens"
}
]
},
{
"author": "lukeocodes",
"description": "Generate an Algolia friendly search index of your site",
"name": "Algolia search index",
"package": "netlify-plugin-algolia-index",
"repo": "https://github.com/lukeocodes/netlify-plugin-algolia-index",
"version": "0.3.0",
"status": "DEACTIVATED"
},
{
"author": "tkadlec",
"description": "After a successful build, tell SpeedCurve you've deployed and trigger a round of testing.",
"name": "Speedcurve",
"package": "netlify-build-plugin-speedcurve",
"repo": "https://github.com/andydavies/netlify-build-plugin-speedcurve",
"version": "2.0.0",
"variables": [
{
"name": "SPEEDCURVE_SITE_ID",
"description": "ID for the site you want to test (under Settings > Sites)"
},
{
"name": "SPEEDCURVE_API_KEY",
"description": "Your SpeedCurve API Key (Admin > Teams)"
}
]
},
{
"author": "munter",
"description": "Checklinks helps you keep all your asset references correct and avoid embarrassing broken links to your internal pages, or even to external pages you link out to.",
"name": "Checklinks",
"package": "netlify-plugin-checklinks",
"repo": "https://github.com/munter/netlify-plugin-checklinks",
"version": "4.1.1"
},
{
"author": "munter",
"description": "Subfont post-processes your web page to analyse you usage of web fonts, then reworks your webpage to use an optimal font loading strategy for the best performance.",
"name": "Subfont",
"package": "netlify-plugin-subfont",
"repo": "https://github.com/munter/netlify-plugin-subfont",
"version": "6.0.0"
},
{
"author": "munter",
"description": "Hashfiles sets you up with an optimal caching strategy for static sites, where static assets across pages are cached for as long as possible in the visitors browser and never have to be re-requested.",
"name": "Hashfiles",
"package": "netlify-plugin-hashfiles",
"repo": "https://github.com/munter/netlify-plugin-hashfiles",
"version": "4.0.2"
},
{
"author": "neverendingqs",
"description": "A Netlify build plugin that blocks deployment if it is outside of deployment hours.",
"name": "Deployment hours",
"package": "netlify-deployment-hours-plugin",
"repo": "https://github.com/neverendingqs/netlify-deployment-hours-plugin",
"version": "0.0.10"
},
{
"author": "jlengstorf",
"description": "This plugin is deprecated. Please install the Essential Gatsby plugin instead",
"name": "Gatsby cache",
"package": "netlify-plugin-gatsby-cache",
"repo": "https://github.com/jlengstorf/netlify-plugin-gatsby-cache",
"version": "0.3.0",
"status": "DEACTIVATED"
},
{
"author": "edm00se",
"description": "Persist the Gridsome cache between Netlify builds for huge speed improvements! ⚡️",
"name": "Gridsome cache",
"package": "netlify-plugin-gridsome-cache",
"repo": "https://github.com/edm00se/netlify-plugin-gridsome-cache",
"version": "1.0.3"
},
{
"author": "applitools",
"description": "Require visual changes on production to be manually approved before going live!",
"name": "Visual Diff (Applitools)",
"package": "netlify-plugin-visual-diff",
"repo": "https://github.com/applitools/netlify-plugin-visual-diff",
"version": "2.0.0",
"compatibility": [
{
"version": "2.0.0"
},
{
"nodeVersion": "<12.0.0",
"version": "1.3.0"
}
],
"variables": [
{
"name": "APPLITOOLS_API_KEY",
"description": "Applitools [API key](https://eyes.applitools.com/)"
}
],
"docs": "https://github.com/applitools/netlify-plugin-visual-diff#readme"
},
{
"author": "pizzafox",
"description": "This plugin is deprecated. The functionality is now built in",
"name": "Next.js cache",
"package": "netlify-plugin-cache-nextjs",
"repo": "https://github.com/pizzafox/netlify-cache-nextjs",
"version": "1.4.0",
"status": "DEACTIVATED"
},
{
"author": "netlify-labs",
"description": "Automatically generate a sitemap for your site on PostBuild in Netlify",
"name": "Sitemap",
"package": "@netlify/plugin-sitemap",
"repo": "https://github.com/netlify-labs/netlify-plugin-sitemap",
"version": "0.8.1"
},
{
"author": "daviddarnes",
"description": "Generates posts, pages, tag pages and author pages from a Ghost publication as markdown files, using the Ghost Content API.",
"name": "Ghost Markdown",
"package": "netlify-plugin-ghost-markdown",
"repo": "https://github.com/daviddarnes/netlify-plugin-ghost-markdown",
"version": "3.1.0"
},
{
"author": "netlify-labs",
"description": "Debug & verify the contents of your Netlify build cache",
"name": "Debug cache",
"package": "netlify-plugin-debug-cache",
"repo": "https://github.com/netlify-labs/netlify-plugin-debug-cache",
"version": "1.0.4"
},
{
"author": "shortdiv",
"description": "Streamline local build development by grabbing environment variables from the UI to use locally",
"name": "Get environment variables",
"package": "netlify-plugin-get-env-vars",
"repo": "https://github.com/shortdiv/netlify-plugin-get-env-vars",
"version": "1.0.0",
"status": "DEACTIVATED"
},
{
"author": "shortdiv",
"description": "Prerenders a SPA into separate pages. Useful for letting Netlify identify forms in a SPA",
"name": "Prerender SPA",
"package": "netlify-plugin-prerender-spa",
"repo": "https://github.com/shortdiv/netlify-plugin-prerender-spa",
"version": "1.0.1",
"status": "DEACTIVATED"
},
{
"author": "Snaplet",
"description": "Bootstrap preview databases with your deploy previews on Netlify without affecting production. ",
"name": "Snaplet",
"package": "@snaplet/netlify-preview-database-plugin",
"repo": "https://github.com/snaplet/netlify-preview-database-plugin",
"version": "2.0.0"
},
{
"author": "sw-yx",
"description": "Check that you preserve your own internal URL structure between builds, accounting for Netlify Redirects. Don't break the web!",
"name": "No more 404",
"package": "netlify-plugin-no-more-404",
"repo": "https://github.com/sw-yx/netlify-plugin-no-more-404",
"version": "0.0.15"
},
{
"author": "sw-yx",
"description": "Netlify Build Plugin to partially obscure files (names and contents) in git repos! This enables you to partially open source your site, while still being able to work as normal on your local machine and in your Netlify builds.",
"name": "Encrypted files",
"package": "netlify-plugin-encrypted-files",
"repo": "https://github.com/sw-yx/netlify-plugin-encrypted-files",
"version": "0.0.5",
"status": "DEACTIVATED"
},
{
"author": "sw-yx",
"description": "Generate a Search Index of your site you can query via JavaScript or a Netlify Function",
"name": "Search index",
"package": "netlify-plugin-search-index",
"repo": "https://github.com/sw-yx/netlify-plugin-search-index",
"version": "0.1.5",
"status": "DEACTIVATED"
},
{
"author": "sw-yx",
"description": "Generate an RSS feed from your static html files, agnostic of static site generator!",
"name": "RSS",
"package": "netlify-plugin-rss",
"repo": "https://github.com/sw-yx/netlify-plugin-rss",
"version": "0.0.8",
"status": "DEACTIVATED"
},
{
"author": "sw-yx",
"description": "Build a more accessible web! Run your critical pages through pa11y and fail build if accessibility failures are found.",
"name": "A11y",
"package": "netlify-plugin-a11y",
"repo": "https://github.com/sw-yx/netlify-plugin-a11y",
"version": "0.0.12"
},
{
"author": "bahmutov",
"description": "Runs Cypress end-to-end tests after Netlify builds the site.",
"name": "Cypress",
"package": "netlify-plugin-cypress",
"repo": "https://github.com/cypress-io/netlify-plugin-cypress",
"version": "2.2.0",
"compatibility": [
{
"migrationGuide": "https://github.com/cypress-io/netlify-plugin-cypress/releases/tag/v2.0.0",
"version": "2.2.0"
},
{
"version": "1.11.1"
}
],
"variables": [
{
"name": "CYPRESS_CACHE_FOLDER",
"description": "Where to cache Cypress binary"
}
],
"docs": "https://github.com/cypress-io/netlify-plugin-cypress#readme"
},
{
"author": "cannikin",
"description": "Replaces the database provider in Prisma's schema.prisma at build time.",
"name": "Prisma Provider",
"package": "netlify-plugin-prisma-provider",
"repo": "https://github.com/redwoodjs/netlify-plugin-prisma-provider",
"version": "0.3.0",
"variables": [
{
"name": "DATABASE_PROVIDER",
"description": "The name of the ENV variable that contains the provider name."
}
]
},
{
"author": "cball",
"description": "Replaces ENV vars with ENV vars that are prefixed/suffixed with the context or branch name",
"name": "Contextual ENV",
"package": "netlify-plugin-contextual-env",
"repo": "https://github.com/cball/netlify-plugin-contextual-env",
"version": "0.3.0"
},
{
"author": "soofka",
"description": "Installs Chromium (installs NPM Chromium package and sets environment variable to location of binaries); useful for other tools requiring Chromium to run, e.g. Lighthouse CI.",
"name": "Chromium",
"package": "netlify-plugin-chromium",
"repo": "https://github.com/soofka/netlify-plugin-chromium",
"version": "1.1.4"
},
{
"author": "Tom-Bonnike",
"description": "Improve your site’s performance by inlining some of your assets/sources, reducing the number of HTTP requests your users need to make.",
"name": "Inline source",
"package": "netlify-plugin-inline-source",
"repo": "https://github.com/Tom-Bonnike/netlify-plugin-inline-source",
"version": "1.0.4"
},
{
"author": "Tom-Bonnike",
"description": "Automatically extract and inline the critical CSS of your pages in order to render content to the user as fast as possible.",
"name": "Inline critical CSS",
"package": "netlify-plugin-inline-critical-css",
"repo": "https://github.com/Tom-Bonnike/netlify-plugin-inline-critical-css",
"version": "2.0.0",
"compatibility": [
{
"version": "2.0.0",
"migrationGuide": "https://github.com/Tom-Bonnike/netlify-plugin-inline-critical-css/blob/master/CHANGELOG.md#200"
},
{
"version": "1.2.0",
"nodeVersion": "^11 || ^13"
}
]
},
{
"author": "tzmanics",
"description": "🔌A Netlify Build Plugin to check your project for misspellings of important, brand-related words ☑️.",
"name": "Brand guardian",
"package": "netlify-plugin-brand-guardian",
"repo": "https://github.com/tzmanics/netlify-plugin-brand-guardian",
"version": "1.0.1",
"status": "DEACTIVATED"
},
{
"author": "tzmanics",
"description": "🔌A Netlify Build Plugin to show you how to use Netlify Build Plugins",
"name": "All events",
"package": "netlify-plugin-to-all-events",
"repo": "https://github.com/tzmanics/netlify-plugin-to-all-events",
"version": "1.3.1",
"status": "DEACTIVATED"
},
{
"author": "philhawksworth",
"description": "A plugin to add HTML minification as a post-processing optimisation in Netlify",
"name": "Minify HTML",
"package": "netlify-plugin-minify-html",
"repo": "https://github.com/philhawksworth/netlify-plugin-minify-html",
"version": "0.3.1"
},
{
"author": "pagewatch",
"description": "Check your site for layout errors, spelling mistakes, broken links and performance issues on every build.",
"name": "PageWatch Audit",
"package": "netlify-plugin-pagewatch",
"repo": "https://github.com/pagewatchdev/netlify-plugin-pagewatch",
"version": "1.0.4",
"variables": [
{
"name": "PAGEWATCH_SITE_KEY",
"description": "PageWatch [Api Key](https://docs.pagewatch.dev/guide/api.html)"
}
],
"docs": "https://github.com/pagewatchdev/netlify-plugin-pagewatch#readme"
},
{
"author": "philhawksworth",
"description": "A Netlify plugin to fetch and cache content from remote feeds including RSS and JSON",
"name": "Fetch feeds",
"package": "netlify-plugin-fetch-feeds",
"repo": "https://github.com/philhawksworth/netlify-plugin-fetch-feeds",
"version": "0.2.3"
},
{
"author": "philhawksworth",
"description": "A Netlify plugin to fetch and cache recent Instagram data and images",
"name": "Add Instagram",
"package": "netlify-plugin-add-instagram",
"repo": "https://github.com/philhawksworth/netlify-plugin-add-instagram",
"version": "0.2.2",
"status": "DEACTIVATED"
},
{
"author": "getsentry",
"description": "The Sentry integration on Netlify helps you quickly identify how code errors and performance issues impact your users. ",
"name": "Sentry",
"package": "@sentry/netlify-build-plugin",
"repo": "https://github.com/getsentry/sentry-netlify-build-plugin",
"version": "1.1.1",
"variables": [
{
"name": "SENTRY_AUTH_TOKEN",
"description": "Authentication token for Sentry"
},
{
"name": "SENTRY_ORG",
"description": "The slug of the organization name in Sentry"
},
{
"name": "SENTRY_PROJECT",
"description": "The slug of the project name in Sentry"
}
],
"docs": "https://github.com/getsentry/sentry-netlify-build-plugin#readme"
},
{
"author": "AshikNesin",
"description": "Send real time notification to your devices on build success/error via Pushover.net.",
"name": "Pushover Notification",
"package": "netlify-plugin-pushover",
"repo": "https://github.com/AshikNesin/netlify-plugin-pushover",
"version": "0.1.1",
"variables": [
{
"name": "PUSHOVER_USER_KEY",
"description": "User key from Pushover"
},
{
"name": "PUSHOVER_API_TOKEN",
"description": "[API token](https://pushover.net/api) from Pushover "
}
],
"docs": "https://github.com/AshikNesin/netlify-plugin-pushover#readme"
},
{
"author": "erezrokah",
"description": "A Netlify plugin that uses Snyk to test for security vulnerabilities in a website's JavaScript libraries.",
"name": "Is Website Vulnerable",
"package": "netlify-plugin-is-website-vulnerable",
"repo": "https://github.com/erezrokah/netlify-plugin-is-website-vulnerable",
"version": "2.0.3",
"compatibility": [
{
"version": "2.0.3"
},
{
"version": "1.0.10",
"nodeVersion": "<12.20.0"
}
]
},
{
"author": "martinbean",
"description": "A Netlify plugin to server-side render your AMP pages",
"name": "AMP server-side rendering",
"package": "netlify-plugin-amp-server-side-rendering",
"repo": "https://github.com/martinbean/netlify-plugin-amp-server-side-rendering",
"version": "1.0.2"
},
{
"author": "chrisdwheatley",
"description": "Optimize images as part of your Netlify build process. Optimizes PNG, JPEG, GIF and SVG file formats.",
"name": "Image Optim",
"package": "netlify-plugin-image-optim",
"repo": "https://github.com/chrisdwheatley/netlify-plugin-image-optim",
"version": "0.4.0"
},
{
"author": "borisschapira",
"description": "After a successful build, create an event in your Dareboost monitoring. If you have subscribed to API credits, you can automatically launch analyses.",
"name": "Dareboost",
"package": "netlify-build-plugin-dareboost",
"repo": "https://github.com/borisschapira/netlify-build-plugin-dareboost",
"version": "1.2.1",
"variables": [
{
"name": "DAREBOOST_API_TOKEN",
"description": "Dareboost API Token"
}
]
},
{
"author": "bencao",
"description": "Inline process.env.VARIABLE in netlify functions with netlify build time environment variables.",
"name": "Inline functions environment variables",
"package": "netlify-plugin-inline-functions-env",
"repo": "https://github.com/bencao/netlify-plugin-inline-functions-env",
"version": "1.0.8"
},
{
"author": "cdeleeuwe",
"description": "Persist Hugo resources folder between Netlify builds for huge build speed improvements!",
"name": "Hugo cache resources",
"package": "netlify-plugin-hugo-cache-resources",
"repo": "https://github.com/cdeleeuwe/netlify-plugin-hugo-cache-resources",
"version": "0.2.1"
},
{
"author": "cdeleeuwe",
"description": "Automatically submit your sitemap to Google and Yandex after every production build!",
"name": "Submit sitemap",
"package": "netlify-plugin-submit-sitemap",
"repo": "https://github.com/cdeleeuwe/netlify-plugin-submit-sitemap",
"version": "0.4.0"
},
{
"author": "netlify-labs",
"description": "Automatically run a Lighthouse audit on your website after every build.",
"name": "Lighthouse",
"package": "@netlify/plugin-lighthouse",
"repo": "https://github.com/netlify/netlify-plugin-lighthouse",
"version": "6.0.1",
"compatibility": [
{
"version": "6.0.1",
"overridePinnedVersion": ">=5.0.0"
},
{
"nodeVersion": "<18.14.0",
"version": "5.0.0"
},
{
"nodeVersion": "<14.0.0",
"version": "2.1.3"
},
{
"nodeVersion": "<12.13.0",
"version": "1.4.3"
}
]
},
{
"author": "oliverroick",
"description": "Validate HTML generated by your build.",
"name": "HTML Validate",
"package": "netlify-plugin-html-validate",
"repo": "https://github.com/oliverroick/netlify-plugin-html-validate",
"version": "1.0.0",
"compatibility": [
{
"version": "1.0.0",
"migrationGuide": "https://github.com/oliverroick/netlify-plugin-html-validate/releases/tag/v1.0.0"
},
{
"version": "0.1.1"
}
]
},
{
"author": "rozenmd",
"description": "Tell PerfBeacon to measure page speed after a successful build",
"name": "PerfBeacon",
"package": "netlify-build-plugin-perfbeacon",
"repo": "https://github.com/perfbeacon/netlify-build-plugin-perfbeacon",
"version": "1.0.3",
"status": "DEACTIVATED"
},
{
"author": "rayriffy",
"description": "This plugin is deprecated. The functionality is now built in",
"name": "Next dynamic routes",
"package": "netlify-plugin-next-dynamic",
"repo": "https://github.com/Brikl/opensource/tree/master/libs/netlify-plugin-next-dynamic",
"version": "1.0.9",
"status": "DEACTIVATED"
},
{
"author": "ample",
"description": "Replace ENV variables in your publish directory",
"name": "Replace",
"package": "@helloample/netlify-plugin-replace",
"repo": "https://github.com/ample/netlify-plugin-replace",
"version": "1.1.4"
},
{
"author": "mattzeunert",
"description": "Run tests on DebugBear to see how your deployments affect page performance and Lighthouse scores",
"name": "DebugBear web performance",
"package": "netlify-build-plugin-debugbear",
"repo": "https://github.com/DebugBear/netlify-build-plugin-debugbear",
"version": "1.0.6",
"variables": [
{
"name": "DEBUGBEAR_API_KEY",
"description": "[API key](https://www.debugbear.com/docs/getting-started-api-cli) for your DebugBear project"
},
{
"name": "DEBUGBEAR_PAGE_IDS",
"description": "Comma-separated list of [page IDs](https://www.debugbear.com/docs/getting-started-api-cli#) for pages that should be tested after each deployment"
}
]
},
{
"author": "lirantal",
"description": "A Snyk Netlify plugin to find and monitor new security vulnerabilities in JavaScript libraries.",
"name": "Snyk Security",
"package": "netlify-plugin-snyk",
"repo": "https://github.com/snyk-labs/netlify-plugin-snyk",
"version": "1.2.0",
"variables": [
{
"name": "SNYK_TOKEN",
"description": "Snyk token, can be obtained via Snyk CLI: `snyk config get api`"
}
]
},
{
"author": "algolia",
"description": "Automatically crawls your website and generates an Algolia Search index.",
"name": "Algolia Crawler",
"package": "@algolia/netlify-plugin-crawler",
"repo": "https://github.com/algolia/algoliasearch-netlify",
"version": "1.0.0",
"variables": [
{
"name": " ALGOLIA_BASE_URL",
"description": "URL to target, should be “https://crawler.algolia.com/”"
},
{
"name": "ALGOLIA_API_KEY",
"description": "API Key to authenticate the call to the crawler."
},
{
"name": "ALGOLIA_DISABLED",
"description": "Set to true to turn off the plugin without removing it."
}
]
},
{
"author": "netlify",
"description": "Build and deploy Next.js applications with server-side rendering. No extra configuration required.",
"name": "Next.js Runtime",
"package": "@netlify/plugin-nextjs",
"repo": "https://github.com/netlify/next-runtime",
"version": "4.41.3",
"compatibility": [
{
"version": "5.7.0-ipx.0",
"featureFlag": "plugins-aerodactyl",
"overridePinnedVersion": ">=4.0.0",
"nodeVersion": ">=18.0.0",
"siteDependencies": {
"next": ">=13.5.0"
}
},
{
"version": "5.9.4",
"featureFlag": "project_ceruledge_ui",
"overridePinnedVersion": ">=4.0.0",
"nodeVersion": ">=18.0.0",
"siteDependencies": {
"next": ">=13.5.0"
}
},
{
"version": "4.41.3",
"migrationGuide": "https://ntl.fyi/next-plugin-migration"
},
{
"version": "3.9.2",
"siteDependencies": {
"next": "<10.0.9"
}
},
{
"version": "1.1.5",
"siteDependencies": {
"next": "<10.0.6"
}
}
]
},
{
"author": "netlify",
"description": "Build and deploy Gatsby applications seamlessly. No extra configuration required.",
"name": "Essential Gatsby",
"package": "@netlify/plugin-gatsby",
"repo": "https://github.com/netlify/netlify-plugin-gatsby",
"version": "3.8.2",
"compatibility": [
{
"version": "3.8.2",
"migrationGuide": "https://ntl.fyi/gatsby-plugin-migration"
},
{
"version": "1.0.3",
"siteDependencies": {
"gatsby": "<2.0.0"
}
}
]
},
{
"author": "netlify",
"description": "Use Angular on Netlify",
"name": "Angular Runtime",
"package": "@netlify/angular-runtime",
"repo": "https://github.com/netlify/angular-runtime",
"version": "2.2.1"
},
{
"author": "netlify",
"description": "Use Angular Universal on Netlify (in beta). For v17+, use Angular Runtime.",
"name": "Angular Universal",
"package": "@netlify/plugin-angular-universal",
"repo": "https://github.com/netlify/netlify-plugin-angular-universal",
"version": "1.0.1"
},
{
"author": "Anish-Roy",
"description": "An obfuscator for your JavaScript source code.",
"name": "JavaScript obfuscator",
"package": "netlify-plugin-js-obfuscator",
"repo": "https://github.com/iamanishroy/netlify-plugin-js-obfuscator",
"version": "1.0.20"
},
{
"author": "racoonx2p",
"description": "Send an email from Gmail after successful/failed Netlify build.",
"name": "Gmail",
"package": "netlify-plugin-gmail",
"repo": "https://github.com/racoonx2p/netlify-plugin-gmail",
"version": "1.1.0",
"status": "DEACTIVATED"
},
{
"author": "mesomorphic",
"description": "Persist the Jekyll cache between Netlify builds",
"name": "Jekyll cache",
"package": "netlify-plugin-jekyll-cache",
"repo": "https://github.com/Mesomorphic/netlify-plugin-jekyll-cache",
"version": "1.0.0"
},
{
"author": "CodeFoodPixels",
"description": "Automatically discover any webmentions and send them after every production build",
"name": "Webmentions",
"package": "netlify-plugin-webmentions",
"repo": "https://github.com/CodeFoodPixels/netlify-plugin-webmentions",
"version": "1.1.0"
},
{
"author": "flaurida",
"description": "Run QA Wolf end-to-end tests on Netlify deployments 🐺",
"name": "QA Wolf",
"package": "netlify-plugin-qawolf",
"repo": "https://github.com/qawolf/netlify-plugin-qawolf",
"version": "1.2.0"
},
{
"author": "Ghost Inspector",
"description": "Run Ghost Inspector automated browser tests on your Netlify deploys.",
"name": "Ghost Inspector",
"package": "netlify-plugin-ghost-inspector",
"repo": "https://github.com/ghost-inspector/netlify-plugin",
"version": "1.0.1",
"variables": [
{
"name": "GHOST_INSPECTOR_API_KEY",
"description": "Ghost Inspector API Key, which can be found in your [account settings](https://app.ghostinspector.com/account)"
},
{
"name": "GHOST_INSPECTOR_SUITE",
"description": "Ghost Inspector suite ID. To find your suite ID, navigate to the suite you want to use and copy the ID in the URL (after /suites/)."
}
],
"docs": "https://github.com/ghost-inspector/netlify-plugin#readme"
},
{
"author": "StepZen <[email protected]>",
"description": "Deploy a StepZen (http://stepzen.com) GraphQL API with any Netlify build.",
"name": "StepZen",
"package": "netlify-plugin-stepzen",
"repo": "https://github.com/steprz/netlify-plugin-stepzen",
"version": "1.0.4",
"variables": [
{
"name": "STEPZEN_ACCOUNT",
"description": "Specifies the name of your StepZen account. This can be found on the My Account page on [StepZen.com](https://login.stepzen.com)"
},
{
"name": "STEPZEN_ADMIN_KEY",
"description": "Specifies the admin API Key that enables access to deploy APIs on your account on StepZen. This can be found on the My Account page on [StepZen.com.\\](https://login.stepzen.com)"
},
{
"name": "STEPZEN_NAME",
"description": "Specifies the endpoint name for your API. This will determine the URL that your endpoint will deployed to."
}
],
"docs": "https://github.com/steprz/netlify-plugin-stepzen#readme"
},
{
"author": "bharathvaj-ganesan",
"description": "Automatically notifies Airbrake of new site deploys.",
"name": "Airbrake",
"package": "@bharathvaj/netlify-plugin-airbrake",
"repo": "https://github.com/bharathvaj-ganesan/netlify-plugin-airbrake",
"version": "1.0.2",
"variables": [
{
"name": "AIRBRAKE_PROJECT_ID",
"description": "Project Id"
},
{
"name": "AIRBRAKE_PROJECT_KEY",
"description": "Project Key"
}
]
},
{
"author": "Arnaud Ligny",
"description": "Persist the Cecil cache between Netlify builds.",
"name": "Cecil cache",
"package": "netlify-plugin-cecil-cache",
"repo": "https://github.com/Cecilapp/netlify-plugin-cecil-cache",
"version": "0.3.3",
"compatibility": [
{
"version": "0.3.3"
},
{
"version": "0.2.5"
}
]
},
{
"author": "Ben Lmsc",
"description": "Make some environment variables available only at build time in the runtime of your app.",
"name": "Use Env in Runtime",
"package": "netlify-plugin-use-env-in-runtime",
"repo": "https://github.com/ARKHN3B/netlify-plugin-use-env-in-runtime",
"version": "1.2.1",
"variables": [
{
"name": "NETLIFY_PLUGIN_USE_ENV_IN_RUNTIME_PREFIX",
"description": "The prefix we want to add to our environment variables."
},
{
"name": "NETLIFY_PLUGIN_USE_ENV_IN_RUNTIME_DEF",
"description": "The names of the variables you want to use. Accept two naming schemes: 1. use an array of strings: [\"VAR_1\", \"VAR_2\"] 2. use a string with a comma or semicolon to separate the names: \"VAR_1; VAR_2; VAR_3\" or \"VAR_1, VAR_2, VAR_3\""
}
]
},
{
"author": "Fahad Allibdi",
"description": "Skip not affected apps in a nx monorepo.",
"name": "Skip nx",
"package": "netlify-plugin-nx-skip-build",
"repo": "https://www.npmjs.com/package/netlify-plugin-nx-skip-build",
"version": "0.0.7",
"variables": [
{
"name": "PROJECT_NAME",
"description": "NX Application name"
},
{
"name": "NX_FORCE_DEPLOYMENT",
"description": "If set to `true` allows force deployment when you need to redeploy your site and skip any plugin logic"
}
],
"docs": "https://github.com/f22hd/netlify-plugin-nx-skip-build#readme"
},
{
"author": "Amar Parmar",
"description": "Send build events to a logging service.",
"name": "Build Logger",
"package": "netlify-plugin-build-logger",
"repo": "https://github.com/amar-p6/netlify-build-logger-plugin",
"version": "1.0.3",
"variables": [
{
"name": "DATADOG_API_KEY",
"description": "Datadog API key"
},
{
"name": "ENVIRONMENT",
"description": "Takes any string (dev, staging, etc.)"
},
{
"name": "LOGGER_TYPE",
"description": "Either console or datadog"
}
]
},
{
"author": "aaronbassett",
"description": "Automatically notifies New Relic of Netlify build events and installs the New Relic browser agent to monitor your sites.",
"name": "New Relic",
"package": "@newrelic/netlify-plugin",
"repo": "https://github.com/newrelic-experimental/netlify-plugin",
"version": "1.0.2",
"variables": [
{
"name": "NEWRELIC_ACCOUNT_ID",
"description": "Your New Relic [Account ID](https://docs.newrelic.com/docs/accounts/accounts-billing/account-structure/account-id/)"
},
{
"name": " NEWRELIC_INGEST_LICENSE_KEY",
"description": "A New Relic ingest [license key](https://docs.newrelic.com/docs/apis/intro-apis/new-relic-api-keys/#ingest-license-key)"
},
{
"name": "NEWRELIC_BROWSER_LICENSE_KEY",
"description": "A New Relic browser ingest [license key](https://docs.newrelic.com/docs/apis/intro-apis/new-relic-api-keys/#ingest-browser-key)"
},
{
"name": "NEWRELIC_APP_ID",
"description": "Your New Relic Browser [App ID](https://docs.newrelic.com/docs/apis/rest-api-v2/get-started/get-app-other-ids-new-relic-one/#browser)"
},
{
"name": "ENABLE_BROWSER_MONITORING",
"description": "Set this to `true`"
}
],
"docs": "https://github.com/newrelic-experimental/netlify-plugin#readme"
},
{
"author": "CommandBar",
"description": "CommandBar plugin for websites deployed to Netlify.",
"name": "CommandBar",
"package": "@commandbar/netlify-plugin-commandbar",
"repo": "https://github.com/tryfoobar/netlify-plugin-commandbar",
"version": "0.0.4",
"variables": [
{
"name": "COMMANDBAR_ORG_ID",
"description": "Your CommandBar organization id"
}
]
},
{
"author": "Colby Fayock",
"description": "Automatically optimize your Netlify site images and deliver them in modern formats with Cloudinary.",
"name": "Cloudinary",
"package": "netlify-plugin-cloudinary",
"repo": "https://github.com/cloudinary-community/netlify-plugin-cloudinary",
"version": "1.17.0",
"variables": [
{
"name": "CLOUDINARY_CLOUD_NAME",
"description": "Cloudinary Cloud Name"
}
]
},
{
"author": "Dima Marynych",
"description": "Securely collect and use sensitive data without having it ever touch your systems.",
"name": "Very Good Security",
"package": "@vgs/netlify-plugin-vgs",
"repo": "https://github.com/verygoodsecurity/netlify-plugin-vgs",
"version": "0.0.2",
"variables": [
{
"name": "VGS_CLIENT_ID",
"description": "Very Good Security's [client ID](https://www.verygoodsecurity.com/docs/development/vgs-git-flow/#1-provision-a-service-account)"
},
{
"name": "VGS_CLIENT_SECRET",
"description": "Very Good Security's [client secret](https://www.verygoodsecurity.com/docs/development/vgs-git-flow/#1-provision-a-service-account)"
},
{
"name": "VGS_VAULT_ID",
"description": "ID of [your vault](https://dashboard.verygoodsecurity.com/)"
}
],
"docs": "https://github.com/verygoodsecurity/netlify-plugin-vgs#readme"
},
{
"author": "Rob Grant",
"description": "Automatically create and configure a TakeShape project for use with your Netlify site.",
"name": "TakeShape",
"package": "@takeshape/netlify-plugin-takeshape",
"repo": "https://github.com/takeshape/netlify-plugin-takeshape",
"version": "1.0.0",
"variables": [
{
"name": "TAKESHAPE_ACCESS_TOKEN",
"description": "Takeshape [personal access token](https://app.takeshape.io/personal-access-tokens)"
}
],
"docs": "https://github.com/takeshape/netlify-plugin-takeshape#readme"
},
{
"author": "Hung Viet Nguyen",
"description": "Persist the Playwright executables between Netlify builds.",
"name": "Playwright cache",
"package": "netlify-plugin-playwright-cache",
"repo": "https://github.com/nvh95/netlify-plugin-playwright-cache",
"version": "0.0.1"
},
{
"author": "Sean Roberts",
"description": "Feature Package Pilot",
"name": "Feature Package Pilot",
"package": "@netlify/feature-package-pilot",
"repo": "https://github.com/netlify/plugins",
"version": "0.1.11",
"status": "DEACTIVATED",
"workflow": true
},
{
"author": "Inngest",
"description": "Automatically deploy Inngest functions to Netlify’s platform. ",
"name": "Inngest",
"package": "netlify-plugin-inngest",
"repo": "https://github.com/inngest/netlify-plugin-inngest",
"version": "1.0.0"
},
{
"author": "Formspree",
"description": "Deploy React forms with formspree.json",
"name": "Formspree",
"package": "netlify-plugin-formspree",
"repo": "https://github.com/formspree/netlify-plugin-formspree",
"version": "1.0.1"
},
{
"author": "Netlify",