@nuxt/modules 0.5.0-996ac4 → 0.5.0-9c6129
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/modules.json +1076 -114
- package/package.json +1 -1
package/modules.json
CHANGED
|
@@ -52,10 +52,10 @@
|
|
|
52
52
|
{
|
|
53
53
|
"name": "algolia",
|
|
54
54
|
"description": "Algolia Search Module for Nuxt 3",
|
|
55
|
-
"repo": "nuxt-
|
|
55
|
+
"repo": "nuxt-modules/algolia",
|
|
56
56
|
"npm": "@nuxtjs/algolia",
|
|
57
57
|
"icon": "algolia.svg",
|
|
58
|
-
"github": "https://github.com/nuxt-
|
|
58
|
+
"github": "https://github.com/nuxt-modules/algolia",
|
|
59
59
|
"website": "https://algolia.nuxtjs.org/",
|
|
60
60
|
"learn_more": "https://algolia.nuxtjs.org/",
|
|
61
61
|
"category": "Libraries",
|
|
@@ -73,8 +73,10 @@
|
|
|
73
73
|
}
|
|
74
74
|
],
|
|
75
75
|
"compatibility": {
|
|
76
|
-
"nuxt": "^3.0.0",
|
|
77
|
-
"requires": {
|
|
76
|
+
"nuxt": "^2.0.0 || ^3.0.0",
|
|
77
|
+
"requires": {
|
|
78
|
+
"bridge": true
|
|
79
|
+
}
|
|
78
80
|
}
|
|
79
81
|
},
|
|
80
82
|
{
|
|
@@ -144,6 +146,30 @@
|
|
|
144
146
|
"requires": {}
|
|
145
147
|
}
|
|
146
148
|
},
|
|
149
|
+
{
|
|
150
|
+
"name": "api-party",
|
|
151
|
+
"description": "Nuxt 3 module to securely connect with any API – server proxy & dynamic composable names",
|
|
152
|
+
"repo": "johannschopplich/nuxt-api-party",
|
|
153
|
+
"npm": "nuxt-api-party",
|
|
154
|
+
"icon": "api-party.svg",
|
|
155
|
+
"github": "https://github.com/johannschopplich/nuxt-api-party",
|
|
156
|
+
"website": "https://github.com/johannschopplich/nuxt-api-party#readme",
|
|
157
|
+
"learn_more": "",
|
|
158
|
+
"category": "Request",
|
|
159
|
+
"type": "3rd-party",
|
|
160
|
+
"maintainers": [
|
|
161
|
+
{
|
|
162
|
+
"name": "Johann Schopplich",
|
|
163
|
+
"github": "johannschopplich",
|
|
164
|
+
"twitter": "jschopplich",
|
|
165
|
+
"avatar": "https://avatars.githubusercontent.com/johannschopplich?v=4"
|
|
166
|
+
}
|
|
167
|
+
],
|
|
168
|
+
"compatibility": {
|
|
169
|
+
"nuxt": "^3.0.0",
|
|
170
|
+
"requires": {}
|
|
171
|
+
}
|
|
172
|
+
},
|
|
147
173
|
{
|
|
148
174
|
"name": "apis-to-file",
|
|
149
175
|
"description": "Build module to merge and transform multiple API and GraphQL requests into a single one and loaded only when needed, like a payload extractor",
|
|
@@ -171,26 +197,24 @@
|
|
|
171
197
|
{
|
|
172
198
|
"name": "apollo",
|
|
173
199
|
"description": "Integrate GraphQL in your Nuxt.js apps using vue-apollo.",
|
|
174
|
-
"repo": "nuxt-
|
|
200
|
+
"repo": "nuxt-modules/apollo",
|
|
175
201
|
"npm": "@nuxtjs/apollo",
|
|
176
202
|
"icon": "apollo.png",
|
|
177
|
-
"github": "https://github.com/nuxt-
|
|
178
|
-
"website": "https://
|
|
203
|
+
"github": "https://github.com/nuxt-modules/apollo",
|
|
204
|
+
"website": "https://apollo.nuxtjs.org",
|
|
179
205
|
"learn_more": "https://apollo.vuejs.org/guide/#what-is-graphql",
|
|
180
206
|
"category": "Request",
|
|
181
207
|
"type": "community",
|
|
182
208
|
"maintainers": [
|
|
183
209
|
{
|
|
184
|
-
"name": "
|
|
185
|
-
"github": "
|
|
186
|
-
|
|
187
|
-
|
|
188
|
-
"name": "Dominic Garms",
|
|
189
|
-
"github": "dohomi"
|
|
210
|
+
"name": "Conrawl Rogers",
|
|
211
|
+
"github": "diizzayy",
|
|
212
|
+
"twitter": "diizzayy",
|
|
213
|
+
"avatar": "https://avatars.githubusercontent.com/diizzayy?v=4"
|
|
190
214
|
}
|
|
191
215
|
],
|
|
192
216
|
"compatibility": {
|
|
193
|
-
"nuxt": "^2.0.0",
|
|
217
|
+
"nuxt": "^2.0.0 || ^3.0.0",
|
|
194
218
|
"requires": {}
|
|
195
219
|
}
|
|
196
220
|
},
|
|
@@ -389,7 +413,7 @@
|
|
|
389
413
|
},
|
|
390
414
|
{
|
|
391
415
|
"name": "bugsnag",
|
|
392
|
-
"description": "Bugsnag
|
|
416
|
+
"description": "Bugsnag integration for nuxt.js. Makes it easy to add bugsnag to your Project. Supports uploading source maps.",
|
|
393
417
|
"repo": "JulianMar/nuxt-bugsnag",
|
|
394
418
|
"npm": "nuxt-bugsnag",
|
|
395
419
|
"icon": "bugsnag.png",
|
|
@@ -401,12 +425,15 @@
|
|
|
401
425
|
"maintainers": [
|
|
402
426
|
{
|
|
403
427
|
"name": "JulianMar",
|
|
404
|
-
"github": "JulianMar"
|
|
428
|
+
"github": "JulianMar",
|
|
429
|
+
"twitter": "julian_martin96"
|
|
405
430
|
}
|
|
406
431
|
],
|
|
407
432
|
"compatibility": {
|
|
408
|
-
"nuxt": "^2.0.0",
|
|
409
|
-
"requires": {
|
|
433
|
+
"nuxt": "^2.0.0 || ^3.0.0",
|
|
434
|
+
"requires": {
|
|
435
|
+
"bridge": true
|
|
436
|
+
}
|
|
410
437
|
}
|
|
411
438
|
},
|
|
412
439
|
{
|
|
@@ -455,7 +482,7 @@
|
|
|
455
482
|
},
|
|
456
483
|
{
|
|
457
484
|
"name": "canvas-sketch",
|
|
458
|
-
"description": "Nuxt.js module for making generative and 3D artwork with canvas-sketch in
|
|
485
|
+
"description": "Nuxt.js module for making generative and 3D artwork with canvas-sketch in JavaScript",
|
|
459
486
|
"repo": "LuXDAmore/generative-art",
|
|
460
487
|
"npm": "@luxdamore/nuxt-canvas-sketch",
|
|
461
488
|
"icon": "",
|
|
@@ -498,6 +525,28 @@
|
|
|
498
525
|
"requires": {}
|
|
499
526
|
}
|
|
500
527
|
},
|
|
528
|
+
{
|
|
529
|
+
"name": "chatwoot",
|
|
530
|
+
"description": "Chatwoot is an open-source customer engagement platform that helps companies engage their customers on their website",
|
|
531
|
+
"repo": "huntersofbook/huntersofbook#main/projects/chatwoot/packages/nuxt",
|
|
532
|
+
"npm": "@huntersofbook/chatwoot-nuxt",
|
|
533
|
+
"icon": "chatwoot.png",
|
|
534
|
+
"github": "https://github.com/huntersofbook/huntersofbook/tree/main/projects/chatwoot/packages/nuxt",
|
|
535
|
+
"website": "https://github.com/huntersofbook/huntersofbook/tree/main/projects/chatwoot/packages/nuxt",
|
|
536
|
+
"learn_more": "https://www.chatwoot.com",
|
|
537
|
+
"category": "Libraries",
|
|
538
|
+
"type": "3rd-party",
|
|
539
|
+
"maintainers": [
|
|
540
|
+
{
|
|
541
|
+
"name": "productdevbook",
|
|
542
|
+
"github": "productdevbook"
|
|
543
|
+
}
|
|
544
|
+
],
|
|
545
|
+
"compatibility": {
|
|
546
|
+
"nuxt": "^3.0.0",
|
|
547
|
+
"requires": {}
|
|
548
|
+
}
|
|
549
|
+
},
|
|
501
550
|
{
|
|
502
551
|
"name": "chiffre",
|
|
503
552
|
"description": "Privacy-first, end-to-end encrypted analytics",
|
|
@@ -660,10 +709,10 @@
|
|
|
660
709
|
},
|
|
661
710
|
{
|
|
662
711
|
"name": "content",
|
|
663
|
-
"description": "
|
|
664
|
-
"repo": "nuxt/content#main
|
|
712
|
+
"description": "Nuxt Content reads the content/ directory in your project, parses .md, .yml, .csv or .json files and creates a powerful data layer for your application. Bonus, use Vue components in Markdown with the MDC syntax.",
|
|
713
|
+
"repo": "nuxt/content#main",
|
|
665
714
|
"npm": "@nuxt/content",
|
|
666
|
-
"icon": "
|
|
715
|
+
"icon": "nuxt.png",
|
|
667
716
|
"github": "https://github.com/nuxt/content",
|
|
668
717
|
"website": "https://content.nuxtjs.org",
|
|
669
718
|
"learn_more": "",
|
|
@@ -671,9 +720,14 @@
|
|
|
671
720
|
"type": "official",
|
|
672
721
|
"maintainers": [
|
|
673
722
|
{
|
|
674
|
-
"name": "
|
|
675
|
-
"github": "
|
|
676
|
-
"twitter": "
|
|
723
|
+
"name": "Yaël Guilloux",
|
|
724
|
+
"github": "Tahul",
|
|
725
|
+
"twitter": "yaeeelglx"
|
|
726
|
+
},
|
|
727
|
+
{
|
|
728
|
+
"name": "Ahad Birang",
|
|
729
|
+
"github": "farnabaz",
|
|
730
|
+
"twitter": "a_birang"
|
|
677
731
|
},
|
|
678
732
|
{
|
|
679
733
|
"name": "Sebastien Chopin",
|
|
@@ -682,7 +736,7 @@
|
|
|
682
736
|
}
|
|
683
737
|
],
|
|
684
738
|
"compatibility": {
|
|
685
|
-
"nuxt": "^2.0.0",
|
|
739
|
+
"nuxt": "^2.0.0 || ^3.0.0",
|
|
686
740
|
"requires": {}
|
|
687
741
|
}
|
|
688
742
|
},
|
|
@@ -823,6 +877,29 @@
|
|
|
823
877
|
"requires": {}
|
|
824
878
|
}
|
|
825
879
|
},
|
|
880
|
+
{
|
|
881
|
+
"name": "delay-hydration",
|
|
882
|
+
"description": "Improve your Nuxt.js v2 Google Lighthouse score by delaying hydration.",
|
|
883
|
+
"repo": "harlan-zw/nuxt-delay-hydration#main/packages/nuxt-delay-hydration",
|
|
884
|
+
"npm": "nuxt-delay-hydration",
|
|
885
|
+
"icon": "lighthouse.svg",
|
|
886
|
+
"github": "https://github.com/harlan-zw/nuxt-delay-hydration",
|
|
887
|
+
"website": "https://github.com/harlan-zw/nuxt-delay-hydration",
|
|
888
|
+
"learn_more": "",
|
|
889
|
+
"category": "Performance",
|
|
890
|
+
"type": "3rd-party",
|
|
891
|
+
"maintainers": [
|
|
892
|
+
{
|
|
893
|
+
"name": "Harlan Wilton",
|
|
894
|
+
"github": "harlan-zw",
|
|
895
|
+
"twitter": "harlan_zw"
|
|
896
|
+
}
|
|
897
|
+
],
|
|
898
|
+
"compatibility": {
|
|
899
|
+
"nuxt": "^2.0.0 || ^3.0.0",
|
|
900
|
+
"requires": {}
|
|
901
|
+
}
|
|
902
|
+
},
|
|
826
903
|
{
|
|
827
904
|
"name": "device",
|
|
828
905
|
"description": "Device detection module for Nuxt.js",
|
|
@@ -841,7 +918,7 @@
|
|
|
841
918
|
}
|
|
842
919
|
],
|
|
843
920
|
"compatibility": {
|
|
844
|
-
"nuxt": "^2.0.0",
|
|
921
|
+
"nuxt": "^2.0.0 || ^3.0.0",
|
|
845
922
|
"requires": {}
|
|
846
923
|
}
|
|
847
924
|
},
|
|
@@ -851,7 +928,7 @@
|
|
|
851
928
|
"repo": "intevel/nuxt-directus",
|
|
852
929
|
"npm": "nuxt-directus",
|
|
853
930
|
"icon": "directus.svg",
|
|
854
|
-
"github": "https://github.com/
|
|
931
|
+
"github": "https://github.com/directus/nuxt-directus/",
|
|
855
932
|
"website": "https://nuxt-directus.netlify.app/",
|
|
856
933
|
"learn_more": "https://nuxt-directus.netlify.app/",
|
|
857
934
|
"category": "CMS",
|
|
@@ -864,8 +941,10 @@
|
|
|
864
941
|
}
|
|
865
942
|
],
|
|
866
943
|
"compatibility": {
|
|
867
|
-
"nuxt": "^3.0.0",
|
|
868
|
-
"requires": {
|
|
944
|
+
"nuxt": "^2.0.0 || ^3.0.0",
|
|
945
|
+
"requires": {
|
|
946
|
+
"bridge": true
|
|
947
|
+
}
|
|
869
948
|
}
|
|
870
949
|
},
|
|
871
950
|
{
|
|
@@ -945,6 +1024,30 @@
|
|
|
945
1024
|
"requires": {}
|
|
946
1025
|
}
|
|
947
1026
|
},
|
|
1027
|
+
{
|
|
1028
|
+
"name": "element-plus",
|
|
1029
|
+
"description": "A Vue 3 based component library for designers and developers",
|
|
1030
|
+
"repo": "element-plus/element-plus-nuxt",
|
|
1031
|
+
"npm": "@element-plus/nuxt",
|
|
1032
|
+
"icon": "element-plus.svg",
|
|
1033
|
+
"github": "https://github.com/element-plus/element-plus",
|
|
1034
|
+
"website": "https://element-plus.org",
|
|
1035
|
+
"learn_more": "https://github.com/element-plus/element-plus-nuxt",
|
|
1036
|
+
"category": "UI",
|
|
1037
|
+
"type": "3rd-party",
|
|
1038
|
+
"maintainers": [
|
|
1039
|
+
{
|
|
1040
|
+
"name": "tolking",
|
|
1041
|
+
"github": "tolking"
|
|
1042
|
+
}
|
|
1043
|
+
],
|
|
1044
|
+
"compatibility": {
|
|
1045
|
+
"nuxt": "^3.0.0",
|
|
1046
|
+
"requires": {
|
|
1047
|
+
"bridge": "optional"
|
|
1048
|
+
}
|
|
1049
|
+
}
|
|
1050
|
+
},
|
|
948
1051
|
{
|
|
949
1052
|
"name": "emotion",
|
|
950
1053
|
"description": "The Next Generation of CSS-in-JS for Nuxt.js",
|
|
@@ -1058,7 +1161,7 @@
|
|
|
1058
1161
|
},
|
|
1059
1162
|
{
|
|
1060
1163
|
"name": "feed",
|
|
1061
|
-
"description": "Feed module enables everyone to have RSS, Atom and
|
|
1164
|
+
"description": "Feed module enables everyone to have RSS, Atom and JSON.",
|
|
1062
1165
|
"repo": "nuxt-community/feed-module",
|
|
1063
1166
|
"npm": "@nuxtjs/feed",
|
|
1064
1167
|
"icon": "",
|
|
@@ -1082,8 +1185,8 @@
|
|
|
1082
1185
|
{
|
|
1083
1186
|
"name": "firebase",
|
|
1084
1187
|
"description": "Integrate Firebase into your Nuxt project.",
|
|
1085
|
-
"repo": "nuxt-community/firebase-module",
|
|
1086
|
-
"npm": "@nuxtjs/firebase
|
|
1188
|
+
"repo": "nuxt-community/firebase-module#master/packages/firebase-module",
|
|
1189
|
+
"npm": "@nuxtjs/firebase",
|
|
1087
1190
|
"icon": "firebase.png",
|
|
1088
1191
|
"github": "https://github.com/nuxt-community/firebase-module",
|
|
1089
1192
|
"website": "https://firebase.nuxtjs.org",
|
|
@@ -1167,6 +1270,29 @@
|
|
|
1167
1270
|
"requires": {}
|
|
1168
1271
|
}
|
|
1169
1272
|
},
|
|
1273
|
+
{
|
|
1274
|
+
"name": "fontaine",
|
|
1275
|
+
"description": "Automatically optimized font fallback based on font metrics",
|
|
1276
|
+
"repo": "nuxt-modules/fontaine",
|
|
1277
|
+
"npm": "@nuxtjs/fontaine",
|
|
1278
|
+
"icon": "fontaine.png",
|
|
1279
|
+
"github": "https://github.com/nuxt-modules/fontaine",
|
|
1280
|
+
"website": "https://github.com/unjs/fontaine",
|
|
1281
|
+
"learn_more": "https://github.com/unjs/fontaine",
|
|
1282
|
+
"category": "Performance",
|
|
1283
|
+
"type": "community",
|
|
1284
|
+
"maintainers": [
|
|
1285
|
+
{
|
|
1286
|
+
"name": "Daniel Roe",
|
|
1287
|
+
"github": "danielroe",
|
|
1288
|
+
"twitter": "danielcroe"
|
|
1289
|
+
}
|
|
1290
|
+
],
|
|
1291
|
+
"compatibility": {
|
|
1292
|
+
"nuxt": "^3.0.0",
|
|
1293
|
+
"requires": {}
|
|
1294
|
+
}
|
|
1295
|
+
},
|
|
1170
1296
|
{
|
|
1171
1297
|
"name": "fontawesome",
|
|
1172
1298
|
"description": "Module to join nuxt and Fontawesome 5",
|
|
@@ -1192,8 +1318,8 @@
|
|
|
1192
1318
|
{
|
|
1193
1319
|
"name": "formkit",
|
|
1194
1320
|
"description": "Seamless FormKit integration for Nuxt",
|
|
1195
|
-
"repo": "formkit/formkit",
|
|
1196
|
-
"npm": "",
|
|
1321
|
+
"repo": "formkit/formkit#master/packages/nuxt",
|
|
1322
|
+
"npm": "@formkit/nuxt",
|
|
1197
1323
|
"icon": "formkit.png",
|
|
1198
1324
|
"github": "https://github.com/formkit/formkit",
|
|
1199
1325
|
"website": "https://formkit.com",
|
|
@@ -1273,13 +1399,17 @@
|
|
|
1273
1399
|
"category": "Analytics",
|
|
1274
1400
|
"type": "community",
|
|
1275
1401
|
"maintainers": [
|
|
1402
|
+
{
|
|
1403
|
+
"name": "Alexander Lichter",
|
|
1404
|
+
"github": "manniL"
|
|
1405
|
+
},
|
|
1276
1406
|
{
|
|
1277
1407
|
"name": "Troy Morehouse",
|
|
1278
1408
|
"github": "tmorehouse"
|
|
1279
1409
|
}
|
|
1280
1410
|
],
|
|
1281
1411
|
"compatibility": {
|
|
1282
|
-
"nuxt": "^2.0.0",
|
|
1412
|
+
"nuxt": "^2.0.0 || ^3.0.0",
|
|
1283
1413
|
"requires": {}
|
|
1284
1414
|
}
|
|
1285
1415
|
},
|
|
@@ -1333,8 +1463,10 @@
|
|
|
1333
1463
|
}
|
|
1334
1464
|
],
|
|
1335
1465
|
"compatibility": {
|
|
1336
|
-
"nuxt": "^2.0.0",
|
|
1337
|
-
"requires": {
|
|
1466
|
+
"nuxt": "^2.0.0 || ^3.0.0",
|
|
1467
|
+
"requires": {
|
|
1468
|
+
"bridge": "optional"
|
|
1469
|
+
}
|
|
1338
1470
|
}
|
|
1339
1471
|
},
|
|
1340
1472
|
{
|
|
@@ -1440,6 +1572,28 @@
|
|
|
1440
1572
|
"requires": {}
|
|
1441
1573
|
}
|
|
1442
1574
|
},
|
|
1575
|
+
{
|
|
1576
|
+
"name": "graphql-server",
|
|
1577
|
+
"description": "Easy GraphQL server implementation with Nuxt",
|
|
1578
|
+
"repo": "tobiasdiez/nuxt-graphql-server",
|
|
1579
|
+
"npm": "nuxt-graphql-server",
|
|
1580
|
+
"icon": "",
|
|
1581
|
+
"github": "https://github.com/tobiasdiez/nuxt-graphql-server",
|
|
1582
|
+
"website": "https://github.com/tobiasdiez/nuxt-graphql-server",
|
|
1583
|
+
"learn_more": "",
|
|
1584
|
+
"category": "Request",
|
|
1585
|
+
"type": "3rd-party",
|
|
1586
|
+
"maintainers": [
|
|
1587
|
+
{
|
|
1588
|
+
"name": "tobiasdiez",
|
|
1589
|
+
"github": "tobiasdiez"
|
|
1590
|
+
}
|
|
1591
|
+
],
|
|
1592
|
+
"compatibility": {
|
|
1593
|
+
"nuxt": "^3.0.0",
|
|
1594
|
+
"requires": {}
|
|
1595
|
+
}
|
|
1596
|
+
},
|
|
1443
1597
|
{
|
|
1444
1598
|
"name": "gtm",
|
|
1445
1599
|
"description": "Google Tag Manager Module for Nuxt.js",
|
|
@@ -1488,11 +1642,11 @@
|
|
|
1488
1642
|
{
|
|
1489
1643
|
"name": "harlem",
|
|
1490
1644
|
"description": "Harlem is a simple, unopinionated, lightweight and extensible state management solution for Vue 3.",
|
|
1491
|
-
"repo": "nuxt-
|
|
1645
|
+
"repo": "nuxt-modules/harlem",
|
|
1492
1646
|
"npm": "@nuxtjs/harlem",
|
|
1493
1647
|
"icon": "harlem.svg",
|
|
1494
|
-
"github": "https://github.com/nuxt-
|
|
1495
|
-
"website": "https://github.com/nuxt-
|
|
1648
|
+
"github": "https://github.com/nuxt-modules/harlem",
|
|
1649
|
+
"website": "https://github.com/nuxt-modules/harlem",
|
|
1496
1650
|
"learn_more": "https://harlemjs.com/",
|
|
1497
1651
|
"category": "Extensions",
|
|
1498
1652
|
"type": "community",
|
|
@@ -1508,6 +1662,28 @@
|
|
|
1508
1662
|
"requires": {}
|
|
1509
1663
|
}
|
|
1510
1664
|
},
|
|
1665
|
+
{
|
|
1666
|
+
"name": "headlessui",
|
|
1667
|
+
"description": "Headless UI integration for Nuxt. Completely unstyled, fully accessible UI components, designed to integrate beautifully with Tailwind CSS.",
|
|
1668
|
+
"repo": "P4sca1/nuxt-headlessui",
|
|
1669
|
+
"npm": "nuxt-headlessui",
|
|
1670
|
+
"icon": "headlessui.png",
|
|
1671
|
+
"github": "https://github.com/P4sca1/nuxt-headlessui",
|
|
1672
|
+
"website": "https://github.com/P4sca1/nuxt-headlessui",
|
|
1673
|
+
"learn_more": "https://headlessui.com",
|
|
1674
|
+
"category": "UI",
|
|
1675
|
+
"type": "3rd-party",
|
|
1676
|
+
"maintainers": [
|
|
1677
|
+
{
|
|
1678
|
+
"name": "Pascal Sthamer",
|
|
1679
|
+
"github": "P4sca1"
|
|
1680
|
+
}
|
|
1681
|
+
],
|
|
1682
|
+
"compatibility": {
|
|
1683
|
+
"nuxt": "^3.0.0",
|
|
1684
|
+
"requires": {}
|
|
1685
|
+
}
|
|
1686
|
+
},
|
|
1511
1687
|
{
|
|
1512
1688
|
"name": "headway",
|
|
1513
1689
|
"description": "Headway changelog widget for Nuxt",
|
|
@@ -1622,10 +1798,10 @@
|
|
|
1622
1798
|
{
|
|
1623
1799
|
"name": "html-validator",
|
|
1624
1800
|
"description": "Automatically validate Nuxt server-rendered HTML html",
|
|
1625
|
-
"repo": "nuxt-
|
|
1801
|
+
"repo": "nuxt-modules/html-validator",
|
|
1626
1802
|
"npm": "@nuxtjs/html-validator",
|
|
1627
1803
|
"icon": "html-validator.png",
|
|
1628
|
-
"github": "https://github.com/nuxt-
|
|
1804
|
+
"github": "https://github.com/nuxt-modules/html-validator",
|
|
1629
1805
|
"website": "https://html-validator.nuxtjs.org",
|
|
1630
1806
|
"learn_more": "https://html-validate.org",
|
|
1631
1807
|
"category": "Performance",
|
|
@@ -1638,8 +1814,10 @@
|
|
|
1638
1814
|
}
|
|
1639
1815
|
],
|
|
1640
1816
|
"compatibility": {
|
|
1641
|
-
"nuxt": "^2.0.0",
|
|
1642
|
-
"requires": {
|
|
1817
|
+
"nuxt": "^2.0.0 || ^3.0.0",
|
|
1818
|
+
"requires": {
|
|
1819
|
+
"bridge": "optional"
|
|
1820
|
+
}
|
|
1643
1821
|
}
|
|
1644
1822
|
},
|
|
1645
1823
|
{
|
|
@@ -1697,7 +1875,7 @@
|
|
|
1697
1875
|
"name": "i18n",
|
|
1698
1876
|
"description": "i18n features for your Nuxt project so you can easily add internationalization.",
|
|
1699
1877
|
"repo": "nuxt-community/i18n-module",
|
|
1700
|
-
"npm": "
|
|
1878
|
+
"npm": "@nuxtjs/i18n",
|
|
1701
1879
|
"icon": "i18n.png",
|
|
1702
1880
|
"github": "https://github.com/nuxt-community/i18n-module",
|
|
1703
1881
|
"website": "https://i18n.nuxtjs.org",
|
|
@@ -1715,7 +1893,51 @@
|
|
|
1715
1893
|
}
|
|
1716
1894
|
],
|
|
1717
1895
|
"compatibility": {
|
|
1718
|
-
"nuxt": "^2.0.0",
|
|
1896
|
+
"nuxt": "^2.0.0 || ^3.0.0",
|
|
1897
|
+
"requires": {}
|
|
1898
|
+
}
|
|
1899
|
+
},
|
|
1900
|
+
{
|
|
1901
|
+
"name": "icon",
|
|
1902
|
+
"description": "Icon module for Nuxt with 100,000+ ready to use icons from Iconify.",
|
|
1903
|
+
"repo": "nuxt-modules/icon",
|
|
1904
|
+
"npm": "nuxt-icon",
|
|
1905
|
+
"icon": "nuxt-icon.png",
|
|
1906
|
+
"github": "https://github.com/nuxt-modules/icon",
|
|
1907
|
+
"website": "https://github.com/nuxt-modules/icon",
|
|
1908
|
+
"learn_more": "",
|
|
1909
|
+
"category": "UI",
|
|
1910
|
+
"type": "community",
|
|
1911
|
+
"maintainers": [
|
|
1912
|
+
{
|
|
1913
|
+
"name": "Atinux",
|
|
1914
|
+
"github": "Atinux"
|
|
1915
|
+
}
|
|
1916
|
+
],
|
|
1917
|
+
"compatibility": {
|
|
1918
|
+
"nuxt": "^3.0.0",
|
|
1919
|
+
"requires": {}
|
|
1920
|
+
}
|
|
1921
|
+
},
|
|
1922
|
+
{
|
|
1923
|
+
"name": "icons",
|
|
1924
|
+
"description": "Use your own automatically imported SVG icons.",
|
|
1925
|
+
"repo": "gitfoxcode/nuxt-icons",
|
|
1926
|
+
"npm": "nuxt-icons",
|
|
1927
|
+
"icon": "icons.png",
|
|
1928
|
+
"github": "https://github.com/gitFoxCode/nuxt-icons",
|
|
1929
|
+
"website": "https://github.com/gitFoxCode/nuxt-icons",
|
|
1930
|
+
"learn_more": "",
|
|
1931
|
+
"category": "UI",
|
|
1932
|
+
"type": "3rd-party",
|
|
1933
|
+
"maintainers": [
|
|
1934
|
+
{
|
|
1935
|
+
"name": "Sebastian Wludzik",
|
|
1936
|
+
"github": "gitfoxcode"
|
|
1937
|
+
}
|
|
1938
|
+
],
|
|
1939
|
+
"compatibility": {
|
|
1940
|
+
"nuxt": "^3.0.0",
|
|
1719
1941
|
"requires": {}
|
|
1720
1942
|
}
|
|
1721
1943
|
},
|
|
@@ -1770,7 +1992,7 @@
|
|
|
1770
1992
|
}
|
|
1771
1993
|
],
|
|
1772
1994
|
"compatibility": {
|
|
1773
|
-
"nuxt": "^2.0.0",
|
|
1995
|
+
"nuxt": "^2.0.0 || ^3.0.0",
|
|
1774
1996
|
"requires": {
|
|
1775
1997
|
"bridge": "optional"
|
|
1776
1998
|
}
|
|
@@ -1845,6 +2067,29 @@
|
|
|
1845
2067
|
"requires": {}
|
|
1846
2068
|
}
|
|
1847
2069
|
},
|
|
2070
|
+
{
|
|
2071
|
+
"name": "ionic",
|
|
2072
|
+
"description": "Batteries-included Ionic integration for building iOS, Android and web apps.",
|
|
2073
|
+
"repo": "nuxt-modules/ionic",
|
|
2074
|
+
"npm": "@nuxtjs/ionic",
|
|
2075
|
+
"icon": "ionic.svg",
|
|
2076
|
+
"github": "https://github.com/nuxt-modules/ionic",
|
|
2077
|
+
"website": "https://ionic.nuxtjs.org",
|
|
2078
|
+
"learn_more": "https://ionicframework.com",
|
|
2079
|
+
"category": "Libraries",
|
|
2080
|
+
"type": "community",
|
|
2081
|
+
"maintainers": [
|
|
2082
|
+
{
|
|
2083
|
+
"name": "Daniel Roe",
|
|
2084
|
+
"github": "danielroe",
|
|
2085
|
+
"twitter": "danielcroe"
|
|
2086
|
+
}
|
|
2087
|
+
],
|
|
2088
|
+
"compatibility": {
|
|
2089
|
+
"nuxt": "^3.0.0",
|
|
2090
|
+
"requires": {}
|
|
2091
|
+
}
|
|
2092
|
+
},
|
|
1848
2093
|
{
|
|
1849
2094
|
"name": "jsonapi",
|
|
1850
2095
|
"description": "Easy JSON:API client integration for Nuxt.js",
|
|
@@ -1858,12 +2103,12 @@
|
|
|
1858
2103
|
"type": "3rd-party",
|
|
1859
2104
|
"maintainers": [
|
|
1860
2105
|
{
|
|
1861
|
-
"name": "
|
|
2106
|
+
"name": "Patrick Cate",
|
|
1862
2107
|
"github": "patrickcate"
|
|
1863
2108
|
}
|
|
1864
2109
|
],
|
|
1865
2110
|
"compatibility": {
|
|
1866
|
-
"nuxt": "^2.0.0",
|
|
2111
|
+
"nuxt": "^2.0.0 || ^3.0.0",
|
|
1867
2112
|
"requires": {}
|
|
1868
2113
|
}
|
|
1869
2114
|
},
|
|
@@ -1889,6 +2134,30 @@
|
|
|
1889
2134
|
"requires": {}
|
|
1890
2135
|
}
|
|
1891
2136
|
},
|
|
2137
|
+
{
|
|
2138
|
+
"name": "kql",
|
|
2139
|
+
"description": "Nuxt 3 module for Kirby's Query Language API",
|
|
2140
|
+
"repo": "johannschopplich/nuxt-kql",
|
|
2141
|
+
"npm": "nuxt-kql",
|
|
2142
|
+
"icon": "kql.svg",
|
|
2143
|
+
"github": "https://github.com/johannschopplich/nuxt-kql",
|
|
2144
|
+
"website": "https://nuxt-kql.jhnn.dev",
|
|
2145
|
+
"learn_more": "",
|
|
2146
|
+
"category": "CMS",
|
|
2147
|
+
"type": "3rd-party",
|
|
2148
|
+
"maintainers": [
|
|
2149
|
+
{
|
|
2150
|
+
"name": "Johann Schopplich",
|
|
2151
|
+
"github": "johannschopplich",
|
|
2152
|
+
"twitter": "jschopplich",
|
|
2153
|
+
"avatar": "https://avatars.githubusercontent.com/johannschopplich?v=4"
|
|
2154
|
+
}
|
|
2155
|
+
],
|
|
2156
|
+
"compatibility": {
|
|
2157
|
+
"nuxt": "^3.0.0",
|
|
2158
|
+
"requires": {}
|
|
2159
|
+
}
|
|
2160
|
+
},
|
|
1892
2161
|
{
|
|
1893
2162
|
"name": "laravel-echo",
|
|
1894
2163
|
"description": "Laravel Echo for Nuxt.js",
|
|
@@ -1977,6 +2246,30 @@
|
|
|
1977
2246
|
"requires": {}
|
|
1978
2247
|
}
|
|
1979
2248
|
},
|
|
2249
|
+
{
|
|
2250
|
+
"name": "link-checker",
|
|
2251
|
+
"description": "",
|
|
2252
|
+
"repo": "harlan-zw/nuxt-link-checker",
|
|
2253
|
+
"npm": "nuxt-link-checker",
|
|
2254
|
+
"icon": "",
|
|
2255
|
+
"github": "https://github.com/harlan-zw/nuxt-link-checker",
|
|
2256
|
+
"website": "https://github.com/harlan-zw/nuxt-link-checker",
|
|
2257
|
+
"learn_more": "",
|
|
2258
|
+
"category": "SEO",
|
|
2259
|
+
"type": "3rd-party",
|
|
2260
|
+
"maintainers": [
|
|
2261
|
+
{
|
|
2262
|
+
"name": "Harlan Wilton",
|
|
2263
|
+
"github": "harlan-zw",
|
|
2264
|
+
"twitter": "harlan_zw",
|
|
2265
|
+
"avatar": "https://avatars.githubusercontent.com/harlan-zw?v=4"
|
|
2266
|
+
}
|
|
2267
|
+
],
|
|
2268
|
+
"compatibility": {
|
|
2269
|
+
"nuxt": "^3.0.0",
|
|
2270
|
+
"requires": {}
|
|
2271
|
+
}
|
|
2272
|
+
},
|
|
1980
2273
|
{
|
|
1981
2274
|
"name": "localforage",
|
|
1982
2275
|
"description": "LocalForage is a fast and simple storage library for JavaScript",
|
|
@@ -2094,6 +2387,29 @@
|
|
|
2094
2387
|
"requires": {}
|
|
2095
2388
|
}
|
|
2096
2389
|
},
|
|
2390
|
+
{
|
|
2391
|
+
"name": "magic-regexp",
|
|
2392
|
+
"description": "A compiled-away, type-safe, readable RegExp alternative",
|
|
2393
|
+
"repo": "danielroe/magic-regexp",
|
|
2394
|
+
"npm": "magic-regexp",
|
|
2395
|
+
"icon": "magic-regexp.svg",
|
|
2396
|
+
"github": "https://github.com/danielroe/magic-regexp",
|
|
2397
|
+
"website": "https://magic-regexp.roe.dev",
|
|
2398
|
+
"learn_more": "https://magic-regexp.roe.dev",
|
|
2399
|
+
"category": "Libraries",
|
|
2400
|
+
"type": "3rd-party",
|
|
2401
|
+
"maintainers": [
|
|
2402
|
+
{
|
|
2403
|
+
"name": "Daniel Roe",
|
|
2404
|
+
"github": "danielroe",
|
|
2405
|
+
"twitter": "danielcroe"
|
|
2406
|
+
}
|
|
2407
|
+
],
|
|
2408
|
+
"compatibility": {
|
|
2409
|
+
"nuxt": "^3.0.0",
|
|
2410
|
+
"requires": {}
|
|
2411
|
+
}
|
|
2412
|
+
},
|
|
2097
2413
|
{
|
|
2098
2414
|
"name": "markdownit",
|
|
2099
2415
|
"description": "Use Markdown in your Nuxt application with the markdownit-loader",
|
|
@@ -2162,6 +2478,31 @@
|
|
|
2162
2478
|
"requires": {}
|
|
2163
2479
|
}
|
|
2164
2480
|
},
|
|
2481
|
+
{
|
|
2482
|
+
"name": "meilisearch",
|
|
2483
|
+
"description": "Meilisearch Instant Search module for Nuxt 3",
|
|
2484
|
+
"repo": "xlanex6/nuxt-meilisearch",
|
|
2485
|
+
"npm": "nuxt-meilisearch",
|
|
2486
|
+
"icon": "meilisearch.svg",
|
|
2487
|
+
"github": "https://github.com/xlanex6/nuxt-meilisearch",
|
|
2488
|
+
"website": "https://github.com/xlanex6/nuxt-meilisearch",
|
|
2489
|
+
"learn_more": "https://github.com/xlanex6/nuxt-meilisearch",
|
|
2490
|
+
"category": "Libraries",
|
|
2491
|
+
"type": "3rd-party",
|
|
2492
|
+
"maintainers": [
|
|
2493
|
+
{
|
|
2494
|
+
"name": "Alex Duval",
|
|
2495
|
+
"github": "xlanex6",
|
|
2496
|
+
"avatar": "https://avatars.githubusercontent.com/u/13418668?v=4"
|
|
2497
|
+
}
|
|
2498
|
+
],
|
|
2499
|
+
"compatibility": {
|
|
2500
|
+
"nuxt": "^3.0.0",
|
|
2501
|
+
"requires": {
|
|
2502
|
+
"bridge": false
|
|
2503
|
+
}
|
|
2504
|
+
}
|
|
2505
|
+
},
|
|
2165
2506
|
{
|
|
2166
2507
|
"name": "memwatch",
|
|
2167
2508
|
"description": "Quickly watch real-time memory stats of your nuxt app",
|
|
@@ -2394,6 +2735,50 @@
|
|
|
2394
2735
|
"requires": {}
|
|
2395
2736
|
}
|
|
2396
2737
|
},
|
|
2738
|
+
{
|
|
2739
|
+
"name": "nuxt-auth",
|
|
2740
|
+
"description": "",
|
|
2741
|
+
"repo": "sidebase/nuxt-auth",
|
|
2742
|
+
"npm": "@sidebase/nuxt-auth",
|
|
2743
|
+
"icon": "",
|
|
2744
|
+
"github": "https://github.com/sidebase/nuxt-auth",
|
|
2745
|
+
"website": "https://github.com/sidebase/nuxt-auth",
|
|
2746
|
+
"learn_more": "",
|
|
2747
|
+
"category": "Devtools",
|
|
2748
|
+
"type": "3rd-party",
|
|
2749
|
+
"maintainers": [
|
|
2750
|
+
{
|
|
2751
|
+
"name": "sidebase",
|
|
2752
|
+
"github": "sidebase"
|
|
2753
|
+
}
|
|
2754
|
+
],
|
|
2755
|
+
"compatibility": {
|
|
2756
|
+
"nuxt": "^2.0.0",
|
|
2757
|
+
"requires": {}
|
|
2758
|
+
}
|
|
2759
|
+
},
|
|
2760
|
+
{
|
|
2761
|
+
"name": "nuxt-graphql-playground",
|
|
2762
|
+
"description": "",
|
|
2763
|
+
"repo": "pinpon-dev/nuxt-graphql-playground",
|
|
2764
|
+
"npm": "@pin-pon/nuxt-graphql-playground",
|
|
2765
|
+
"icon": "",
|
|
2766
|
+
"github": "https://github.com/pinpon-dev/nuxt-graphql-playground",
|
|
2767
|
+
"website": "https://github.com/pinpon-dev/nuxt-graphql-playground",
|
|
2768
|
+
"learn_more": "",
|
|
2769
|
+
"category": "Devtools",
|
|
2770
|
+
"type": "3rd-party",
|
|
2771
|
+
"maintainers": [
|
|
2772
|
+
{
|
|
2773
|
+
"name": "pinpon-dev",
|
|
2774
|
+
"github": "pinpon-dev"
|
|
2775
|
+
}
|
|
2776
|
+
],
|
|
2777
|
+
"compatibility": {
|
|
2778
|
+
"nuxt": "^2.0.0",
|
|
2779
|
+
"requires": {}
|
|
2780
|
+
}
|
|
2781
|
+
},
|
|
2397
2782
|
{
|
|
2398
2783
|
"name": "nuxt-hue",
|
|
2399
2784
|
"description": "Enlighten your Nuxt experience",
|
|
@@ -2418,6 +2803,28 @@
|
|
|
2418
2803
|
}
|
|
2419
2804
|
}
|
|
2420
2805
|
},
|
|
2806
|
+
{
|
|
2807
|
+
"name": "nuxt-monaco-editor",
|
|
2808
|
+
"description": "Integrate monaco-editor with Nuxt",
|
|
2809
|
+
"repo": "e-chan1007/nuxt-monaco-editor",
|
|
2810
|
+
"npm": "nuxt-monaco-editor",
|
|
2811
|
+
"icon": "nuxt-monaco-editor.png",
|
|
2812
|
+
"github": "https://github.com/e-chan1007/nuxt-monaco-editor",
|
|
2813
|
+
"website": "https://github.com/e-chan1007/nuxt-monaco-editor",
|
|
2814
|
+
"learn_more": "https://e-chan1007.github.io/nuxt-monaco-editor",
|
|
2815
|
+
"category": "Libraries",
|
|
2816
|
+
"type": "3rd-party",
|
|
2817
|
+
"maintainers": [
|
|
2818
|
+
{
|
|
2819
|
+
"name": "e-chan1007",
|
|
2820
|
+
"github": "e-chan1007"
|
|
2821
|
+
}
|
|
2822
|
+
],
|
|
2823
|
+
"compatibility": {
|
|
2824
|
+
"nuxt": "^3.0.0",
|
|
2825
|
+
"requires": {}
|
|
2826
|
+
}
|
|
2827
|
+
},
|
|
2421
2828
|
{
|
|
2422
2829
|
"name": "nuxt-pino-log",
|
|
2423
2830
|
"description": "Structured logs for nuxt apps using pino",
|
|
@@ -2440,6 +2847,28 @@
|
|
|
2440
2847
|
"requires": {}
|
|
2441
2848
|
}
|
|
2442
2849
|
},
|
|
2850
|
+
{
|
|
2851
|
+
"name": "plausible",
|
|
2852
|
+
"description": "Nuxt 3 module to natively integrate Plausible analytics",
|
|
2853
|
+
"repo": "nuxt-modules/plausible",
|
|
2854
|
+
"npm": "@nuxtjs/plausible",
|
|
2855
|
+
"icon": "plausible.png",
|
|
2856
|
+
"github": "https://github.com/nuxt-modules/plausible",
|
|
2857
|
+
"website": "https://github.com/nuxt-modules/plausible",
|
|
2858
|
+
"learn_more": "https://plausible.io/",
|
|
2859
|
+
"category": "Analytics",
|
|
2860
|
+
"type": "community",
|
|
2861
|
+
"maintainers": [
|
|
2862
|
+
{
|
|
2863
|
+
"name": "Johann Schopplich",
|
|
2864
|
+
"github": "johannschopplich"
|
|
2865
|
+
}
|
|
2866
|
+
],
|
|
2867
|
+
"compatibility": {
|
|
2868
|
+
"nuxt": "^3.0.0",
|
|
2869
|
+
"requires": {}
|
|
2870
|
+
}
|
|
2871
|
+
},
|
|
2443
2872
|
{
|
|
2444
2873
|
"name": "nuxt-png-to-ico",
|
|
2445
2874
|
"description": "Nuxt.js module for auto generating favicons",
|
|
@@ -2487,6 +2916,100 @@
|
|
|
2487
2916
|
"requires": {}
|
|
2488
2917
|
}
|
|
2489
2918
|
},
|
|
2919
|
+
{
|
|
2920
|
+
"name": "ssr-lit",
|
|
2921
|
+
"description": "Server-Side Rendering for Lit Element components",
|
|
2922
|
+
"repo": "prashantpalikhe/nuxt-ssr-lit",
|
|
2923
|
+
"npm": "nuxt-ssr-lit",
|
|
2924
|
+
"icon": "",
|
|
2925
|
+
"github": "https://github.com/prashantpalikhe/nuxt-ssr-lit",
|
|
2926
|
+
"website": "https://github.com/prashantpalikhe/nuxt-ssr-lit",
|
|
2927
|
+
"learn_more": "",
|
|
2928
|
+
"category": "Libraries",
|
|
2929
|
+
"type": "3rd-party",
|
|
2930
|
+
"maintainers": [
|
|
2931
|
+
{
|
|
2932
|
+
"name": "Prashant Palikhe",
|
|
2933
|
+
"github": "prashantpalikhe",
|
|
2934
|
+
"twitter": "prashantpalikhe"
|
|
2935
|
+
},
|
|
2936
|
+
{
|
|
2937
|
+
"name": "Steve Workman",
|
|
2938
|
+
"github": "steveworkman",
|
|
2939
|
+
"twitter": "steveworkman"
|
|
2940
|
+
}
|
|
2941
|
+
],
|
|
2942
|
+
"compatibility": {
|
|
2943
|
+
"nuxt": "^3.0.0",
|
|
2944
|
+
"requires": {}
|
|
2945
|
+
}
|
|
2946
|
+
},
|
|
2947
|
+
{
|
|
2948
|
+
"name": "nuxt-storm",
|
|
2949
|
+
"description": "WebStorm & PHPStorm support for NuxtJS components",
|
|
2950
|
+
"repo": "fumeapp/nuxt-storm",
|
|
2951
|
+
"npm": "nuxt-storm",
|
|
2952
|
+
"icon": "nuxt-storm.png",
|
|
2953
|
+
"github": "https://github.com/fumeapp/nuxt-storm",
|
|
2954
|
+
"website": "https://github.com/fumeapp/nuxt-storm",
|
|
2955
|
+
"learn_more": "https://github.com/fumeapp/nuxt-storm",
|
|
2956
|
+
"category": "Devtools",
|
|
2957
|
+
"type": "3rd-party",
|
|
2958
|
+
"maintainers": [
|
|
2959
|
+
{
|
|
2960
|
+
"name": "fumeapp",
|
|
2961
|
+
"github": "fumeapp"
|
|
2962
|
+
}
|
|
2963
|
+
],
|
|
2964
|
+
"compatibility": {
|
|
2965
|
+
"nuxt": "^2.0.0",
|
|
2966
|
+
"requires": {}
|
|
2967
|
+
}
|
|
2968
|
+
},
|
|
2969
|
+
{
|
|
2970
|
+
"name": "nuxt-svgo",
|
|
2971
|
+
"description": "Nuxt module to load optimized SVG files as Vue components",
|
|
2972
|
+
"repo": "cpsoinos/nuxt-svgo",
|
|
2973
|
+
"npm": "nuxt-svgo",
|
|
2974
|
+
"icon": "nuxt-svgo.png",
|
|
2975
|
+
"github": "https://github.com/cpsoinos/nuxt-svgo",
|
|
2976
|
+
"website": "https://github.com/cpsoinos/nuxt-svgo",
|
|
2977
|
+
"learn_more": "",
|
|
2978
|
+
"category": "Images",
|
|
2979
|
+
"type": "3rd-party",
|
|
2980
|
+
"maintainers": [
|
|
2981
|
+
{
|
|
2982
|
+
"name": "cpsoinos",
|
|
2983
|
+
"github": "cpsoinos"
|
|
2984
|
+
}
|
|
2985
|
+
],
|
|
2986
|
+
"compatibility": {
|
|
2987
|
+
"nuxt": "^3.0.0",
|
|
2988
|
+
"requires": {}
|
|
2989
|
+
}
|
|
2990
|
+
},
|
|
2991
|
+
{
|
|
2992
|
+
"name": "nuxt-unleash",
|
|
2993
|
+
"description": "Nuxt.js module to use Unleash toggle feature services",
|
|
2994
|
+
"repo": "conejerock/nuxt-unleash",
|
|
2995
|
+
"npm": "nuxt-unleash",
|
|
2996
|
+
"icon": "nuxt-unleash.svg",
|
|
2997
|
+
"github": "https://github.com/conejerock/nuxt-unleash",
|
|
2998
|
+
"website": "https://github.com/conejerock/nuxt-unleash",
|
|
2999
|
+
"learn_more": "https://github.com/Unleash/unleash",
|
|
3000
|
+
"category": "Deployment",
|
|
3001
|
+
"type": "3rd-party",
|
|
3002
|
+
"maintainers": [
|
|
3003
|
+
{
|
|
3004
|
+
"name": "Juanjo Conejerock",
|
|
3005
|
+
"github": "conejerock"
|
|
3006
|
+
}
|
|
3007
|
+
],
|
|
3008
|
+
"compatibility": {
|
|
3009
|
+
"nuxt": "^2.0.0",
|
|
3010
|
+
"requires": {}
|
|
3011
|
+
}
|
|
3012
|
+
},
|
|
2490
3013
|
{
|
|
2491
3014
|
"name": "nuxt-use-motion",
|
|
2492
3015
|
"description": "A Nuxt module putting your components in motion",
|
|
@@ -2549,8 +3072,10 @@
|
|
|
2549
3072
|
}
|
|
2550
3073
|
],
|
|
2551
3074
|
"compatibility": {
|
|
2552
|
-
"nuxt": "^2.0.0",
|
|
2553
|
-
"requires": {
|
|
3075
|
+
"nuxt": "^2.0.0 || ^3.0.0",
|
|
3076
|
+
"requires": {
|
|
3077
|
+
"bridge": "optional"
|
|
3078
|
+
}
|
|
2554
3079
|
}
|
|
2555
3080
|
},
|
|
2556
3081
|
{
|
|
@@ -2576,6 +3101,30 @@
|
|
|
2576
3101
|
"requires": {}
|
|
2577
3102
|
}
|
|
2578
3103
|
},
|
|
3104
|
+
{
|
|
3105
|
+
"name": "og-image",
|
|
3106
|
+
"description": "Easily generate dynamic social share images.",
|
|
3107
|
+
"repo": "harlan-zw/nuxt-og-image",
|
|
3108
|
+
"npm": "nuxt-og-image",
|
|
3109
|
+
"icon": "",
|
|
3110
|
+
"github": "https://github.com/harlan-zw/nuxt-og-image",
|
|
3111
|
+
"website": "https://github.com/harlan-zw/nuxt-og-image",
|
|
3112
|
+
"learn_more": "",
|
|
3113
|
+
"category": "SEO",
|
|
3114
|
+
"type": "3rd-party",
|
|
3115
|
+
"maintainers": [
|
|
3116
|
+
{
|
|
3117
|
+
"name": "Harlan Wilton",
|
|
3118
|
+
"github": "harlan-zw",
|
|
3119
|
+
"twitter": "harlan_zw",
|
|
3120
|
+
"avatar": "https://avatars.githubusercontent.com/harlan-zw?v=4"
|
|
3121
|
+
}
|
|
3122
|
+
],
|
|
3123
|
+
"compatibility": {
|
|
3124
|
+
"nuxt": "^3.0.0",
|
|
3125
|
+
"requires": {}
|
|
3126
|
+
}
|
|
3127
|
+
},
|
|
2579
3128
|
{
|
|
2580
3129
|
"name": "onesignal",
|
|
2581
3130
|
"description": "OneSignal is a Free, high volume and reliable push notification service for websites and mobile applications.",
|
|
@@ -2669,11 +3218,11 @@
|
|
|
2669
3218
|
{
|
|
2670
3219
|
"name": "partytown",
|
|
2671
3220
|
"description": "Partytown integration for Nuxt - relocate resource intensive scripts into a web worker, and off of the main thread.",
|
|
2672
|
-
"repo": "nuxt-
|
|
3221
|
+
"repo": "nuxt-modules/partytown",
|
|
2673
3222
|
"npm": "@nuxtjs/partytown",
|
|
2674
3223
|
"icon": "partytown.svg",
|
|
2675
|
-
"github": "https://github.com/nuxt-
|
|
2676
|
-
"website": "https://github.com/nuxt-
|
|
3224
|
+
"github": "https://github.com/nuxt-modules/partytown",
|
|
3225
|
+
"website": "https://github.com/nuxt-modules/partytown",
|
|
2677
3226
|
"learn_more": "https://partytown.builder.io/",
|
|
2678
3227
|
"category": "Performance",
|
|
2679
3228
|
"type": "community",
|
|
@@ -2740,26 +3289,24 @@
|
|
|
2740
3289
|
},
|
|
2741
3290
|
{
|
|
2742
3291
|
"name": "plausible",
|
|
2743
|
-
"description": "
|
|
2744
|
-
"repo": "
|
|
2745
|
-
"npm": "
|
|
2746
|
-
"icon": "
|
|
2747
|
-
"github": "https://github.com/
|
|
2748
|
-
"website": "https://github.com/
|
|
3292
|
+
"description": "Nuxt 3 module to natively integrate Plausible analytics",
|
|
3293
|
+
"repo": "nuxt-modules/plausible",
|
|
3294
|
+
"npm": "@nuxtjs/plausible",
|
|
3295
|
+
"icon": "",
|
|
3296
|
+
"github": "https://github.com/nuxt-modules/plausible",
|
|
3297
|
+
"website": "https://github.com/nuxt-modules/plausible",
|
|
2749
3298
|
"learn_more": "",
|
|
2750
|
-
"category": "
|
|
2751
|
-
"type": "
|
|
3299
|
+
"category": "Devtools",
|
|
3300
|
+
"type": "community",
|
|
2752
3301
|
"maintainers": [
|
|
2753
3302
|
{
|
|
2754
|
-
"name": "
|
|
2755
|
-
"github": "
|
|
3303
|
+
"name": "nuxt-modules",
|
|
3304
|
+
"github": "nuxt-modules"
|
|
2756
3305
|
}
|
|
2757
3306
|
],
|
|
2758
3307
|
"compatibility": {
|
|
2759
|
-
"nuxt": "^2.0.0
|
|
2760
|
-
"requires": {
|
|
2761
|
-
"bridge": "optional"
|
|
2762
|
-
}
|
|
3308
|
+
"nuxt": "^2.0.0",
|
|
3309
|
+
"requires": {}
|
|
2763
3310
|
}
|
|
2764
3311
|
},
|
|
2765
3312
|
{
|
|
@@ -2787,28 +3334,19 @@
|
|
|
2787
3334
|
{
|
|
2788
3335
|
"name": "prismic",
|
|
2789
3336
|
"description": "Easily connect your Nuxt.js application to your content hosted on Prismic",
|
|
2790
|
-
"repo": "nuxt-
|
|
3337
|
+
"repo": "nuxt-modules/prismic",
|
|
2791
3338
|
"npm": "@nuxtjs/prismic",
|
|
2792
3339
|
"icon": "prismic.png",
|
|
2793
|
-
"github": "https://github.com/nuxt-
|
|
3340
|
+
"github": "https://github.com/nuxt-modules/prismic",
|
|
2794
3341
|
"website": "https://prismic.nuxtjs.org",
|
|
2795
|
-
"learn_more": "https://prismic.io
|
|
3342
|
+
"learn_more": "https://prismic.io",
|
|
2796
3343
|
"category": "CMS",
|
|
2797
3344
|
"type": "community",
|
|
2798
3345
|
"maintainers": [
|
|
2799
|
-
{
|
|
2800
|
-
"name": "Sébastien Chopin",
|
|
2801
|
-
"github": "Atinux",
|
|
2802
|
-
"twitter": "Atinux"
|
|
2803
|
-
},
|
|
2804
3346
|
{
|
|
2805
3347
|
"name": "lihbr",
|
|
2806
3348
|
"github": "lihbr",
|
|
2807
3349
|
"twitter": "li_hbr"
|
|
2808
|
-
},
|
|
2809
|
-
{
|
|
2810
|
-
"name": "James Pegg",
|
|
2811
|
-
"github": "jamespegg"
|
|
2812
3350
|
}
|
|
2813
3351
|
],
|
|
2814
3352
|
"compatibility": {
|
|
@@ -2887,7 +3425,7 @@
|
|
|
2887
3425
|
{
|
|
2888
3426
|
"name": "purgecss",
|
|
2889
3427
|
"description": "Drop superfluous CSS! A neat PurgeCSS wrapper for Nuxt.js",
|
|
2890
|
-
"repo": "Developmint/nuxt-purgecss",
|
|
3428
|
+
"repo": "Developmint/nuxt-purgecss#main",
|
|
2891
3429
|
"npm": "nuxt-purgecss",
|
|
2892
3430
|
"icon": "purgecss.png",
|
|
2893
3431
|
"github": "https://github.com/Developmint/nuxt-purgecss",
|
|
@@ -2902,7 +3440,7 @@
|
|
|
2902
3440
|
}
|
|
2903
3441
|
],
|
|
2904
3442
|
"compatibility": {
|
|
2905
|
-
"nuxt": "^2.0.0",
|
|
3443
|
+
"nuxt": "^2.0.0 || ^3.0.0",
|
|
2906
3444
|
"requires": {}
|
|
2907
3445
|
}
|
|
2908
3446
|
},
|
|
@@ -3025,7 +3563,7 @@
|
|
|
3025
3563
|
"description": "A Nuxt.js module thats inject a middleware to generate a robots.txt file",
|
|
3026
3564
|
"repo": "nuxt-community/robots-module",
|
|
3027
3565
|
"npm": "@nuxtjs/robots",
|
|
3028
|
-
"icon": "",
|
|
3566
|
+
"icon": "robots.png",
|
|
3029
3567
|
"github": "https://github.com/nuxt-community/robots-module",
|
|
3030
3568
|
"website": "https://github.com/nuxt-community/robots-module",
|
|
3031
3569
|
"learn_more": "https://support.google.com/webmasters/answer/6062608?hl=en",
|
|
@@ -3038,8 +3576,10 @@
|
|
|
3038
3576
|
}
|
|
3039
3577
|
],
|
|
3040
3578
|
"compatibility": {
|
|
3041
|
-
"nuxt": "^2.0.0",
|
|
3042
|
-
"requires": {
|
|
3579
|
+
"nuxt": "^2.0.0 || ^3.0.0",
|
|
3580
|
+
"requires": {
|
|
3581
|
+
"bridge": "optional"
|
|
3582
|
+
}
|
|
3043
3583
|
}
|
|
3044
3584
|
},
|
|
3045
3585
|
{
|
|
@@ -3113,10 +3653,10 @@
|
|
|
3113
3653
|
{
|
|
3114
3654
|
"name": "sanity",
|
|
3115
3655
|
"description": "Access text, images, and other media with Nuxt and the Sanity headless CMS.",
|
|
3116
|
-
"repo": "nuxt-
|
|
3656
|
+
"repo": "nuxt-modules/sanity#main",
|
|
3117
3657
|
"npm": "@nuxtjs/sanity",
|
|
3118
3658
|
"icon": "sanity.png",
|
|
3119
|
-
"github": "https://github.com/nuxt-
|
|
3659
|
+
"github": "https://github.com/nuxt-modules/sanity#main",
|
|
3120
3660
|
"website": "https://sanity.nuxtjs.org",
|
|
3121
3661
|
"learn_more": "https://www.sanity.io/",
|
|
3122
3662
|
"category": "CMS",
|
|
@@ -3135,6 +3675,30 @@
|
|
|
3135
3675
|
}
|
|
3136
3676
|
}
|
|
3137
3677
|
},
|
|
3678
|
+
{
|
|
3679
|
+
"name": "schema-org",
|
|
3680
|
+
"description": "Schema.org for Nuxt, supporting typed and automated Google Rich Results.",
|
|
3681
|
+
"repo": "vueuse/schema-org#main/packages/nuxt",
|
|
3682
|
+
"npm": "nuxt-schema-org",
|
|
3683
|
+
"icon": "schema-org.svg",
|
|
3684
|
+
"github": "https://github.com/vueuse/schema-org/tree/main/packages/nuxt",
|
|
3685
|
+
"website": "https://github.com/vueuse/schema-org/tree/main/packages/nuxt",
|
|
3686
|
+
"learn_more": "https://vue-schema-org.netlify.app/guide/setup/nuxt.html",
|
|
3687
|
+
"category": "SEO",
|
|
3688
|
+
"type": "3rd-party",
|
|
3689
|
+
"maintainers": [
|
|
3690
|
+
{
|
|
3691
|
+
"name": "Harlan Wilton",
|
|
3692
|
+
"github": "harlan-zw",
|
|
3693
|
+
"twitter": "harlan_zw",
|
|
3694
|
+
"avatar": "https://avatars.githubusercontent.com/harlan-zw?v=4"
|
|
3695
|
+
}
|
|
3696
|
+
],
|
|
3697
|
+
"compatibility": {
|
|
3698
|
+
"nuxt": "^3.0.0",
|
|
3699
|
+
"requires": {}
|
|
3700
|
+
}
|
|
3701
|
+
},
|
|
3138
3702
|
{
|
|
3139
3703
|
"name": "scss-to-js",
|
|
3140
3704
|
"description": "Load SCSS Variables into Nuxt instance for use in Templates/Scripts.",
|
|
@@ -3157,6 +3721,29 @@
|
|
|
3157
3721
|
"requires": {}
|
|
3158
3722
|
}
|
|
3159
3723
|
},
|
|
3724
|
+
{
|
|
3725
|
+
"name": "security",
|
|
3726
|
+
"description": "Security Module for Nuxt based on OWASP Top 10 and Helmet",
|
|
3727
|
+
"repo": "Baroshem/nuxt-security",
|
|
3728
|
+
"npm": "nuxt-security",
|
|
3729
|
+
"icon": "nuxt-security.svg",
|
|
3730
|
+
"github": "https://github.com/Baroshem/nuxt-security",
|
|
3731
|
+
"website": "https://nuxt-security.vercel.app/",
|
|
3732
|
+
"learn_more": "https://nuxt-security.vercel.app/",
|
|
3733
|
+
"category": "Security",
|
|
3734
|
+
"type": "3rd-party",
|
|
3735
|
+
"maintainers": [
|
|
3736
|
+
{
|
|
3737
|
+
"name": "Jakub Andrzejewski",
|
|
3738
|
+
"github": "Baroshem",
|
|
3739
|
+
"avatar": "https://avatars.githubusercontent.com/u/37120330?v=4"
|
|
3740
|
+
}
|
|
3741
|
+
],
|
|
3742
|
+
"compatibility": {
|
|
3743
|
+
"nuxt": "^3.0.0",
|
|
3744
|
+
"requires": {}
|
|
3745
|
+
}
|
|
3746
|
+
},
|
|
3160
3747
|
{
|
|
3161
3748
|
"name": "segment",
|
|
3162
3749
|
"description": "Nuxt.js module for Segment Analytics.js",
|
|
@@ -3201,10 +3788,32 @@
|
|
|
3201
3788
|
"requires": {}
|
|
3202
3789
|
}
|
|
3203
3790
|
},
|
|
3791
|
+
{
|
|
3792
|
+
"name": "seo-kit",
|
|
3793
|
+
"description": "Supercharge your Nuxt app with the all-in-one SEO layer.",
|
|
3794
|
+
"repo": "harlan-zw/nuxt-seo-kit",
|
|
3795
|
+
"npm": "nuxt-seo-kit",
|
|
3796
|
+
"icon": "seo-kit.svg",
|
|
3797
|
+
"github": "https://github.com/harlan-zw/nuxt-seo-kit",
|
|
3798
|
+
"website": "https://github.com/harlan-zw/nuxt-seo-kit",
|
|
3799
|
+
"learn_more": "",
|
|
3800
|
+
"category": "SEO",
|
|
3801
|
+
"type": "3rd-party",
|
|
3802
|
+
"maintainers": [
|
|
3803
|
+
{
|
|
3804
|
+
"name": "harlan-zw",
|
|
3805
|
+
"github": "harlan-zw"
|
|
3806
|
+
}
|
|
3807
|
+
],
|
|
3808
|
+
"compatibility": {
|
|
3809
|
+
"nuxt": "^3.0.0",
|
|
3810
|
+
"requires": {}
|
|
3811
|
+
}
|
|
3812
|
+
},
|
|
3204
3813
|
{
|
|
3205
3814
|
"name": "seo-meta",
|
|
3206
3815
|
"description": "Simple generate seo metadata",
|
|
3207
|
-
"repo": "ihavecoke/nuxtjs-seo-meta",
|
|
3816
|
+
"repo": "ihavecoke/nuxtjs-seo-meta#main/packages/core",
|
|
3208
3817
|
"npm": "nuxt-seo-meta",
|
|
3209
3818
|
"icon": "",
|
|
3210
3819
|
"github": "https://github.com/ihavecoke/nuxtjs-seo-meta",
|
|
@@ -3269,6 +3878,29 @@
|
|
|
3269
3878
|
"requires": {}
|
|
3270
3879
|
}
|
|
3271
3880
|
},
|
|
3881
|
+
{
|
|
3882
|
+
"name": "session",
|
|
3883
|
+
"description": "Session middleware to persist user data across requests, a client-side useSession composable to interact with the session, supports many storage backends via unjs/unstorage",
|
|
3884
|
+
"repo": "sidebase/nuxt-session",
|
|
3885
|
+
"npm": "@sidebase/nuxt-session",
|
|
3886
|
+
"icon": "session.png",
|
|
3887
|
+
"github": "https://github.com/sidebase/nuxt-session",
|
|
3888
|
+
"website": "https://github.com/sidebase/nuxt-session",
|
|
3889
|
+
"learn_more": "https://github.com/sidebase",
|
|
3890
|
+
"category": "Security",
|
|
3891
|
+
"type": "3rd-party",
|
|
3892
|
+
"maintainers": [
|
|
3893
|
+
{
|
|
3894
|
+
"name": "sidebase",
|
|
3895
|
+
"github": "sidebase",
|
|
3896
|
+
"twitter": "sidebase_io"
|
|
3897
|
+
}
|
|
3898
|
+
],
|
|
3899
|
+
"compatibility": {
|
|
3900
|
+
"nuxt": "^3.0.0",
|
|
3901
|
+
"requires": {}
|
|
3902
|
+
}
|
|
3903
|
+
},
|
|
3272
3904
|
{
|
|
3273
3905
|
"name": "shopify",
|
|
3274
3906
|
"description": "Easy Shopify Buy client module with Nuxt.js for ecommerce websites.",
|
|
@@ -3291,6 +3923,29 @@
|
|
|
3291
3923
|
"requires": {}
|
|
3292
3924
|
}
|
|
3293
3925
|
},
|
|
3926
|
+
{
|
|
3927
|
+
"name": "nuxt-auth",
|
|
3928
|
+
"description": "Zero-boilerplate authentication for nuxt 3 with support for many strategies (oauth, credentials, ...) and providers (google, azure, ...). Additionally supports session manipulation, client- and server-side protection and more.",
|
|
3929
|
+
"repo": "sidebase/nuxt-auth",
|
|
3930
|
+
"npm": "@sidebase/nuxt-auth",
|
|
3931
|
+
"icon": "sidebase-auth.png",
|
|
3932
|
+
"github": "https://github.com/sidebase/nuxt-auth",
|
|
3933
|
+
"website": "https://github.com/sidebase/nuxt-auth",
|
|
3934
|
+
"learn_more": "https://github.com/sidebase",
|
|
3935
|
+
"category": "Security",
|
|
3936
|
+
"type": "3rd-party",
|
|
3937
|
+
"maintainers": [
|
|
3938
|
+
{
|
|
3939
|
+
"name": "sidebase",
|
|
3940
|
+
"github": "sidebase",
|
|
3941
|
+
"twitter": "sidebase_io"
|
|
3942
|
+
}
|
|
3943
|
+
],
|
|
3944
|
+
"compatibility": {
|
|
3945
|
+
"nuxt": "^3.0.0",
|
|
3946
|
+
"requires": {}
|
|
3947
|
+
}
|
|
3948
|
+
},
|
|
3294
3949
|
{
|
|
3295
3950
|
"name": "simple-line-icons",
|
|
3296
3951
|
"description": "Nuxt module to add simple-line-icons ",
|
|
@@ -3313,6 +3968,54 @@
|
|
|
3313
3968
|
"requires": {}
|
|
3314
3969
|
}
|
|
3315
3970
|
},
|
|
3971
|
+
{
|
|
3972
|
+
"name": "simple-robots",
|
|
3973
|
+
"description": "Simply manage the robots crawling your Nuxt app.",
|
|
3974
|
+
"repo": "harlan-zw/nuxt-simple-robots",
|
|
3975
|
+
"npm": "nuxt-simple-robots",
|
|
3976
|
+
"icon": "",
|
|
3977
|
+
"github": "https://github.com/harlan-zw/nuxt-simple-robots",
|
|
3978
|
+
"website": "https://github.com/harlan-zw/nuxt-simple-robots",
|
|
3979
|
+
"learn_more": "",
|
|
3980
|
+
"category": "SEO",
|
|
3981
|
+
"type": "3rd-party",
|
|
3982
|
+
"maintainers": [
|
|
3983
|
+
{
|
|
3984
|
+
"name": "Harlan Wilton",
|
|
3985
|
+
"github": "harlan-zw",
|
|
3986
|
+
"twitter": "harlan_zw",
|
|
3987
|
+
"avatar": "https://avatars.githubusercontent.com/harlan-zw?v=4"
|
|
3988
|
+
}
|
|
3989
|
+
],
|
|
3990
|
+
"compatibility": {
|
|
3991
|
+
"nuxt": "^3.0.0",
|
|
3992
|
+
"requires": {}
|
|
3993
|
+
}
|
|
3994
|
+
},
|
|
3995
|
+
{
|
|
3996
|
+
"name": "simple-sitemap",
|
|
3997
|
+
"description": "Simple, minimal sitemap.xml generation.",
|
|
3998
|
+
"repo": "harlan-zw/nuxt-simple-sitemap",
|
|
3999
|
+
"npm": "nuxt-simple-sitemap",
|
|
4000
|
+
"icon": "",
|
|
4001
|
+
"github": "https://github.com/harlan-zw/nuxt-simple-sitemap",
|
|
4002
|
+
"website": "https://github.com/harlan-zw/nuxt-simple-sitemap",
|
|
4003
|
+
"learn_more": "",
|
|
4004
|
+
"category": "SEO",
|
|
4005
|
+
"type": "3rd-party",
|
|
4006
|
+
"maintainers": [
|
|
4007
|
+
{
|
|
4008
|
+
"name": "Harlan Wilton",
|
|
4009
|
+
"github": "harlan-zw",
|
|
4010
|
+
"twitter": "harlan_zw",
|
|
4011
|
+
"avatar": "https://avatars.githubusercontent.com/harlan-zw?v=4"
|
|
4012
|
+
}
|
|
4013
|
+
],
|
|
4014
|
+
"compatibility": {
|
|
4015
|
+
"nuxt": "^3.0.0",
|
|
4016
|
+
"requires": {}
|
|
4017
|
+
}
|
|
4018
|
+
},
|
|
3316
4019
|
{
|
|
3317
4020
|
"name": "sitemap",
|
|
3318
4021
|
"description": "Automatically generate or serve dynamic sitemap.xml for Nuxt.js projects",
|
|
@@ -3459,6 +4162,28 @@
|
|
|
3459
4162
|
"requires": {}
|
|
3460
4163
|
}
|
|
3461
4164
|
},
|
|
4165
|
+
{
|
|
4166
|
+
"name": "ssr-lit",
|
|
4167
|
+
"description": "",
|
|
4168
|
+
"repo": "prashantpalikhe/nuxt-ssr-lit",
|
|
4169
|
+
"npm": "nuxt-ssr-lit",
|
|
4170
|
+
"icon": "",
|
|
4171
|
+
"github": "https://github.com/prashantpalikhe/nuxt-ssr-lit",
|
|
4172
|
+
"website": "https://github.com/prashantpalikhe/nuxt-ssr-lit",
|
|
4173
|
+
"learn_more": "",
|
|
4174
|
+
"category": "Devtools",
|
|
4175
|
+
"type": "3rd-party",
|
|
4176
|
+
"maintainers": [
|
|
4177
|
+
{
|
|
4178
|
+
"name": "prashantpalikhe",
|
|
4179
|
+
"github": "prashantpalikhe"
|
|
4180
|
+
}
|
|
4181
|
+
],
|
|
4182
|
+
"compatibility": {
|
|
4183
|
+
"nuxt": "^2.0.0",
|
|
4184
|
+
"requires": {}
|
|
4185
|
+
}
|
|
4186
|
+
},
|
|
3462
4187
|
{
|
|
3463
4188
|
"name": "storage",
|
|
3464
4189
|
"description": "Utilities to easily read and write to the browser's storage in a Nuxt.js project",
|
|
@@ -3602,7 +4327,9 @@
|
|
|
3602
4327
|
],
|
|
3603
4328
|
"compatibility": {
|
|
3604
4329
|
"nuxt": "^2.0.0 || ^3.0.0",
|
|
3605
|
-
"requires": {
|
|
4330
|
+
"requires": {
|
|
4331
|
+
"bridge": true
|
|
4332
|
+
}
|
|
3606
4333
|
}
|
|
3607
4334
|
},
|
|
3608
4335
|
{
|
|
@@ -3674,13 +4401,13 @@
|
|
|
3674
4401
|
},
|
|
3675
4402
|
{
|
|
3676
4403
|
"name": "stylify",
|
|
3677
|
-
"description": "Stylify
|
|
3678
|
-
"repo": "stylify/packages#master/packages/nuxt
|
|
3679
|
-
"npm": "@stylify/nuxt
|
|
4404
|
+
"description": "Stylify generates utility-first CSS dynamically based on what you write. Write HTML. Get CSS.",
|
|
4405
|
+
"repo": "stylify/packages#master/packages/nuxt",
|
|
4406
|
+
"npm": "@stylify/nuxt",
|
|
3680
4407
|
"icon": "stylify.svg",
|
|
3681
|
-
"github": "https://github.com/stylify/packages/tree/master/packages/nuxt
|
|
3682
|
-
"website": "https://
|
|
3683
|
-
"learn_more": "https://
|
|
4408
|
+
"github": "https://github.com/stylify/packages/tree/master/packages/nuxt",
|
|
4409
|
+
"website": "https://stylifycss.com/docs/nuxt",
|
|
4410
|
+
"learn_more": "https://stylifycss.com",
|
|
3684
4411
|
"category": "UI",
|
|
3685
4412
|
"type": "3rd-party",
|
|
3686
4413
|
"maintainers": [
|
|
@@ -3691,22 +4418,32 @@
|
|
|
3691
4418
|
}
|
|
3692
4419
|
],
|
|
3693
4420
|
"compatibility": {
|
|
3694
|
-
"nuxt": "^2.0.0",
|
|
4421
|
+
"nuxt": "^2.0.0 || ^3.0.0",
|
|
3695
4422
|
"requires": {}
|
|
3696
4423
|
}
|
|
3697
4424
|
},
|
|
3698
4425
|
{
|
|
3699
4426
|
"name": "supabase",
|
|
3700
|
-
"description": "
|
|
3701
|
-
"repo": "
|
|
3702
|
-
"npm": "
|
|
4427
|
+
"description": "First class integration with Supabase",
|
|
4428
|
+
"repo": "nuxt-community/supabase-module",
|
|
4429
|
+
"npm": "@nuxtjs/supabase",
|
|
3703
4430
|
"icon": "supabase.png",
|
|
3704
|
-
"github": "https://github.com/
|
|
3705
|
-
"website": "https://
|
|
3706
|
-
"learn_more": "https://supabase.
|
|
4431
|
+
"github": "https://github.com/nuxt-community/supabase-module",
|
|
4432
|
+
"website": "https://supabase.nuxtjs.org",
|
|
4433
|
+
"learn_more": "https://supabase.com",
|
|
3707
4434
|
"category": "Database",
|
|
3708
|
-
"type": "
|
|
4435
|
+
"type": "community",
|
|
3709
4436
|
"maintainers": [
|
|
4437
|
+
{
|
|
4438
|
+
"name": "Baptiste Leproux",
|
|
4439
|
+
"github": "larbish",
|
|
4440
|
+
"twitter": "baptistelprx"
|
|
4441
|
+
},
|
|
4442
|
+
{
|
|
4443
|
+
"name": "Sebastien Chopin",
|
|
4444
|
+
"github": "Atinux",
|
|
4445
|
+
"twitter": "Atinux"
|
|
4446
|
+
},
|
|
3710
4447
|
{
|
|
3711
4448
|
"name": "Scott Robertson",
|
|
3712
4449
|
"github": "scottrobertson",
|
|
@@ -3714,7 +4451,7 @@
|
|
|
3714
4451
|
}
|
|
3715
4452
|
],
|
|
3716
4453
|
"compatibility": {
|
|
3717
|
-
"nuxt": "^2.0.0",
|
|
4454
|
+
"nuxt": "^2.0.0 || ^3.0.0",
|
|
3718
4455
|
"requires": {}
|
|
3719
4456
|
}
|
|
3720
4457
|
},
|
|
@@ -3876,6 +4613,31 @@
|
|
|
3876
4613
|
"requires": {}
|
|
3877
4614
|
}
|
|
3878
4615
|
},
|
|
4616
|
+
{
|
|
4617
|
+
"name": "turnstile",
|
|
4618
|
+
"description": "Privacy-focused alternative to CAPTCHA from Cloudflare",
|
|
4619
|
+
"repo": "danielroe/nuxt-turnstile",
|
|
4620
|
+
"npm": "nuxt-turnstile",
|
|
4621
|
+
"icon": "cloudflare.svg",
|
|
4622
|
+
"github": "https://github.com/danielroe/nuxt-turnstile",
|
|
4623
|
+
"website": "https://github.com/danielroe/nuxt-turnstile",
|
|
4624
|
+
"learn_more": "https://www.cloudflare.com/products/turnstile/",
|
|
4625
|
+
"category": "Security",
|
|
4626
|
+
"type": "3rd-party",
|
|
4627
|
+
"maintainers": [
|
|
4628
|
+
{
|
|
4629
|
+
"name": "Daniel Roe",
|
|
4630
|
+
"github": "danielroe",
|
|
4631
|
+
"twitter": "danielcroe"
|
|
4632
|
+
}
|
|
4633
|
+
],
|
|
4634
|
+
"compatibility": {
|
|
4635
|
+
"nuxt": "^2.0.0 || ^3.0.0",
|
|
4636
|
+
"requires": {
|
|
4637
|
+
"bridge": true
|
|
4638
|
+
}
|
|
4639
|
+
}
|
|
4640
|
+
},
|
|
3879
4641
|
{
|
|
3880
4642
|
"name": "twa",
|
|
3881
4643
|
"description": "Nuxt.js module for generating Trusted Web App from Nuxt.js app",
|
|
@@ -3900,12 +4662,45 @@
|
|
|
3900
4662
|
}
|
|
3901
4663
|
}
|
|
3902
4664
|
},
|
|
4665
|
+
{
|
|
4666
|
+
"name": "twicpics",
|
|
4667
|
+
"description": "Images and videos components - Context aware resizing and cropping, lazy-loading, LQIP, Next-Gen format, compression, CDN.",
|
|
4668
|
+
"repo": "TwicPics/components",
|
|
4669
|
+
"npm": "@twicpics/components",
|
|
4670
|
+
"icon": "twicpics.svg",
|
|
4671
|
+
"github": "https://github.com/TwicPics/components",
|
|
4672
|
+
"website": "https://www.twicpics.com/docs/components/nuxt-3",
|
|
4673
|
+
"learn_more": "https://www.twicpics.com",
|
|
4674
|
+
"category": "Images",
|
|
4675
|
+
"type": "3rd-party",
|
|
4676
|
+
"maintainers": [
|
|
4677
|
+
{
|
|
4678
|
+
"name": "Florent Bourgeois",
|
|
4679
|
+
"github": "florentb",
|
|
4680
|
+
"twitter": "florent_b"
|
|
4681
|
+
},
|
|
4682
|
+
{
|
|
4683
|
+
"name": "Julian Aubourg",
|
|
4684
|
+
"github": "jaubourg",
|
|
4685
|
+
"twitter": "jaubourg"
|
|
4686
|
+
},
|
|
4687
|
+
{
|
|
4688
|
+
"name": "Miguel Beignon",
|
|
4689
|
+
"github": "mbgspcii",
|
|
4690
|
+
"twitter": "m_beignon"
|
|
4691
|
+
}
|
|
4692
|
+
],
|
|
4693
|
+
"compatibility": {
|
|
4694
|
+
"nuxt": "^2.0.0 || ^3.0.0",
|
|
4695
|
+
"requires": {}
|
|
4696
|
+
}
|
|
4697
|
+
},
|
|
3903
4698
|
{
|
|
3904
4699
|
"name": "typed-router",
|
|
3905
4700
|
"description": "Provide autocompletion for pages route names generated by Nuxt router",
|
|
3906
4701
|
"repo": "victorgarciaesgi/nuxt-typed-router",
|
|
3907
4702
|
"npm": "nuxt-typed-router",
|
|
3908
|
-
"icon": "
|
|
4703
|
+
"icon": "typed-router.png",
|
|
3909
4704
|
"github": "https://github.com/victorgarciaesgi/nuxt-typed-router",
|
|
3910
4705
|
"website": "https://github.com/victorgarciaesgi/nuxt-typed-router",
|
|
3911
4706
|
"learn_more": "",
|
|
@@ -3918,15 +4713,15 @@
|
|
|
3918
4713
|
}
|
|
3919
4714
|
],
|
|
3920
4715
|
"compatibility": {
|
|
3921
|
-
"nuxt": "^2.0.0",
|
|
4716
|
+
"nuxt": "^2.0.0 || ^3.0.0",
|
|
3922
4717
|
"requires": {}
|
|
3923
4718
|
}
|
|
3924
4719
|
},
|
|
3925
4720
|
{
|
|
3926
4721
|
"name": "typed-vuex",
|
|
3927
4722
|
"description": "A vanilla, strongly typed store accessor for Vuex.",
|
|
3928
|
-
"repo": "danielroe/typed-vuex",
|
|
3929
|
-
"npm": "",
|
|
4723
|
+
"repo": "danielroe/typed-vuex#main/packages/nuxt-typed-vuex",
|
|
4724
|
+
"npm": "nuxt-typed-vuex",
|
|
3930
4725
|
"icon": "vue.png",
|
|
3931
4726
|
"github": "https://github.com/danielroe/typed-vuex",
|
|
3932
4727
|
"website": "https://github.com/danielroe/typed-vuex",
|
|
@@ -4011,6 +4806,52 @@
|
|
|
4011
4806
|
"requires": {}
|
|
4012
4807
|
}
|
|
4013
4808
|
},
|
|
4809
|
+
{
|
|
4810
|
+
"name": "umami",
|
|
4811
|
+
"description": "Embed the Umami analytics library into Nuxt",
|
|
4812
|
+
"repo": "ijkml/nuxt-umami",
|
|
4813
|
+
"npm": "nuxt-umami",
|
|
4814
|
+
"icon": "umami.svg",
|
|
4815
|
+
"github": "https://github.com/ijkml/nuxt-umami",
|
|
4816
|
+
"website": "https://github.com/ijkml/nuxt-umami",
|
|
4817
|
+
"learn_more": "https://umami.is/docs/",
|
|
4818
|
+
"category": "Analytics",
|
|
4819
|
+
"type": "3rd-party",
|
|
4820
|
+
"maintainers": [
|
|
4821
|
+
{
|
|
4822
|
+
"name": "ML",
|
|
4823
|
+
"github": "ijkml"
|
|
4824
|
+
}
|
|
4825
|
+
],
|
|
4826
|
+
"compatibility": {
|
|
4827
|
+
"nuxt": "^2.0.0 || ^3.0.0",
|
|
4828
|
+
"requires": {
|
|
4829
|
+
"bridge": "optional"
|
|
4830
|
+
}
|
|
4831
|
+
}
|
|
4832
|
+
},
|
|
4833
|
+
{
|
|
4834
|
+
"name": "unhead",
|
|
4835
|
+
"description": "Experimental features for Nuxt SEO / head management.",
|
|
4836
|
+
"repo": "harlan-zw/nuxt-unhead",
|
|
4837
|
+
"npm": "nuxt-unhead",
|
|
4838
|
+
"icon": "",
|
|
4839
|
+
"github": "https://github.com/harlan-zw/nuxt-unhead",
|
|
4840
|
+
"website": "https://github.com/harlan-zw/nuxt-unhead",
|
|
4841
|
+
"learn_more": "",
|
|
4842
|
+
"category": "SEO",
|
|
4843
|
+
"type": "3rd-party",
|
|
4844
|
+
"maintainers": [
|
|
4845
|
+
{
|
|
4846
|
+
"name": "harlan-zw",
|
|
4847
|
+
"github": "harlan-zw"
|
|
4848
|
+
}
|
|
4849
|
+
],
|
|
4850
|
+
"compatibility": {
|
|
4851
|
+
"nuxt": "^3.0.0",
|
|
4852
|
+
"requires": {}
|
|
4853
|
+
}
|
|
4854
|
+
},
|
|
4014
4855
|
{
|
|
4015
4856
|
"name": "universal-storage",
|
|
4016
4857
|
"description": "Universal Storage Utilities for Nuxt.js",
|
|
@@ -4158,6 +4999,31 @@
|
|
|
4158
4999
|
"requires": {}
|
|
4159
5000
|
}
|
|
4160
5001
|
},
|
|
5002
|
+
{
|
|
5003
|
+
"name": "vue-macros",
|
|
5004
|
+
"description": "Explore and extend more macros and syntax sugar to Vue.",
|
|
5005
|
+
"repo": "sxzz/unplugin-vue-macros#main/packages/nuxt",
|
|
5006
|
+
"npm": "@vue-macros/nuxt",
|
|
5007
|
+
"icon": "vue-macros.svg",
|
|
5008
|
+
"github": "https://github.com/sxzz/unplugin-vue-macros",
|
|
5009
|
+
"website": "https://vue-macros.sxzz.moe",
|
|
5010
|
+
"learn_more": "https://github.com/sxzz/unplugin-vue-macros",
|
|
5011
|
+
"category": "Extensions",
|
|
5012
|
+
"type": "3rd-party",
|
|
5013
|
+
"maintainers": [
|
|
5014
|
+
{
|
|
5015
|
+
"name": "三咲智子 Kevin Deng",
|
|
5016
|
+
"github": "sxzz",
|
|
5017
|
+
"twitter": "sanxiaozhizi"
|
|
5018
|
+
}
|
|
5019
|
+
],
|
|
5020
|
+
"compatibility": {
|
|
5021
|
+
"nuxt": "^3.0.0",
|
|
5022
|
+
"requires": {
|
|
5023
|
+
"bridge": "optional"
|
|
5024
|
+
}
|
|
5025
|
+
}
|
|
5026
|
+
},
|
|
4161
5027
|
{
|
|
4162
5028
|
"name": "vue-material",
|
|
4163
5029
|
"description": "Module to join nuxt and vue-material framework so you can build well-designed apps with dynamic themes and components with an ease-to-use API.",
|
|
@@ -4202,6 +5068,28 @@
|
|
|
4202
5068
|
"requires": {}
|
|
4203
5069
|
}
|
|
4204
5070
|
},
|
|
5071
|
+
{
|
|
5072
|
+
"name": "vue-plausible",
|
|
5073
|
+
"description": "Plausible analytics for Vue.js and Nuxt",
|
|
5074
|
+
"repo": "moritzsternemann/vue-plausible",
|
|
5075
|
+
"npm": "vue-plausible",
|
|
5076
|
+
"icon": "plausible.png",
|
|
5077
|
+
"github": "https://github.com/moritzsternemann/vue-plausible",
|
|
5078
|
+
"website": "https://github.com/moritzsternemann/vue-plausible",
|
|
5079
|
+
"learn_more": "",
|
|
5080
|
+
"category": "Analytics",
|
|
5081
|
+
"type": "3rd-party",
|
|
5082
|
+
"maintainers": [
|
|
5083
|
+
{
|
|
5084
|
+
"name": "moritzsternemann",
|
|
5085
|
+
"github": "moritzsternemann"
|
|
5086
|
+
}
|
|
5087
|
+
],
|
|
5088
|
+
"compatibility": {
|
|
5089
|
+
"nuxt": "^2.0.0",
|
|
5090
|
+
"requires": {}
|
|
5091
|
+
}
|
|
5092
|
+
},
|
|
4205
5093
|
{
|
|
4206
5094
|
"name": "vue-select",
|
|
4207
5095
|
"description": "Nuxt module for vue-select, a feature rich select/dropdown/typeahead component.",
|
|
@@ -4224,6 +5112,31 @@
|
|
|
4224
5112
|
"requires": {}
|
|
4225
5113
|
}
|
|
4226
5114
|
},
|
|
5115
|
+
{
|
|
5116
|
+
"name": "vue-transitions",
|
|
5117
|
+
"description": "Reusable interface transitions with no CSS needed ❤️",
|
|
5118
|
+
"repo": "MorevM/vue-transitions",
|
|
5119
|
+
"npm": "@morev/vue-transitions",
|
|
5120
|
+
"icon": "vue-transitions.svg",
|
|
5121
|
+
"github": "https://github.com/MorevM/vue-transitions",
|
|
5122
|
+
"website": "https://github.com/MorevM/vue-transitions#readme",
|
|
5123
|
+
"learn_more": "",
|
|
5124
|
+
"category": "UI",
|
|
5125
|
+
"type": "3rd-party",
|
|
5126
|
+
"maintainers": [
|
|
5127
|
+
{
|
|
5128
|
+
"name": "Maxim Morev",
|
|
5129
|
+
"github": "MorevM",
|
|
5130
|
+
"avatar": "https://avatars.githubusercontent.com/u/49679666?v=4"
|
|
5131
|
+
}
|
|
5132
|
+
],
|
|
5133
|
+
"compatibility": {
|
|
5134
|
+
"nuxt": "^2.0.0 || ^3.0.0",
|
|
5135
|
+
"requires": {
|
|
5136
|
+
"bridge": "optional"
|
|
5137
|
+
}
|
|
5138
|
+
}
|
|
5139
|
+
},
|
|
4227
5140
|
{
|
|
4228
5141
|
"name": "vue-warehouse",
|
|
4229
5142
|
"description": "A Cross-browser storage for Vue.js and Nuxt.js, with plugins support and easy extensibility based on Store.js",
|
|
@@ -4247,6 +5160,28 @@
|
|
|
4247
5160
|
"requires": {}
|
|
4248
5161
|
}
|
|
4249
5162
|
},
|
|
5163
|
+
{
|
|
5164
|
+
"name": "vuestic",
|
|
5165
|
+
"description": "Vuestic UI module for Nuxt 3",
|
|
5166
|
+
"repo": "epicmaxco/vuestic-ui#develop/packages/nuxt",
|
|
5167
|
+
"npm": "@vuestic/nuxt",
|
|
5168
|
+
"icon": "vuestic.png",
|
|
5169
|
+
"github": "https://github.com/epicmaxco/vuestic-ui/tree/develop/packages/nuxt",
|
|
5170
|
+
"website": "https://vuestic.dev",
|
|
5171
|
+
"learn_more": "https://vuestic.dev/en/getting-started/nuxt",
|
|
5172
|
+
"category": "UI",
|
|
5173
|
+
"type": "3rd-party",
|
|
5174
|
+
"maintainers": [
|
|
5175
|
+
{
|
|
5176
|
+
"name": "epicmaxco",
|
|
5177
|
+
"github": "epicmaxco"
|
|
5178
|
+
}
|
|
5179
|
+
],
|
|
5180
|
+
"compatibility": {
|
|
5181
|
+
"nuxt": "^3.0.0",
|
|
5182
|
+
"requires": {}
|
|
5183
|
+
}
|
|
5184
|
+
},
|
|
4250
5185
|
{
|
|
4251
5186
|
"name": "vuetify",
|
|
4252
5187
|
"description": "Vuetify Module for Nuxt.js to add Material Design components to your application.",
|
|
@@ -4277,8 +5212,8 @@
|
|
|
4277
5212
|
{
|
|
4278
5213
|
"name": "vueuse",
|
|
4279
5214
|
"description": "Collection of essential Vue Composition Utilities for Vue 2 and 3",
|
|
4280
|
-
"repo": "vueuse/vueuse#main/packages/
|
|
4281
|
-
"npm": "@vueuse/
|
|
5215
|
+
"repo": "vueuse/vueuse#main/packages/nuxt",
|
|
5216
|
+
"npm": "@vueuse/nuxt",
|
|
4282
5217
|
"icon": "vueuse.svg",
|
|
4283
5218
|
"github": "https://github.com/vueuse/vueuse",
|
|
4284
5219
|
"website": "https://vueuse.org",
|
|
@@ -4326,7 +5261,7 @@
|
|
|
4326
5261
|
"description": "Web Vitals for Nuxt",
|
|
4327
5262
|
"repo": "nuxt-community/web-vitals-module",
|
|
4328
5263
|
"npm": "@nuxtjs/web-vitals",
|
|
4329
|
-
"icon": "",
|
|
5264
|
+
"icon": "web-vitals.png",
|
|
4330
5265
|
"github": "https://github.com/nuxt-community/web-vitals-module",
|
|
4331
5266
|
"website": "https://github.com/nuxt-community/web-vitals-module",
|
|
4332
5267
|
"learn_more": "",
|
|
@@ -4349,8 +5284,10 @@
|
|
|
4349
5284
|
}
|
|
4350
5285
|
],
|
|
4351
5286
|
"compatibility": {
|
|
4352
|
-
"nuxt": "^2.0.0",
|
|
4353
|
-
"requires": {
|
|
5287
|
+
"nuxt": "^2.0.0 || ^3.0.0",
|
|
5288
|
+
"requires": {
|
|
5289
|
+
"bridge": "optional"
|
|
5290
|
+
}
|
|
4354
5291
|
}
|
|
4355
5292
|
},
|
|
4356
5293
|
{
|
|
@@ -4586,6 +5523,31 @@
|
|
|
4586
5523
|
"requires": {}
|
|
4587
5524
|
}
|
|
4588
5525
|
},
|
|
5526
|
+
{
|
|
5527
|
+
"name": "xstate",
|
|
5528
|
+
"description": "XState integration for Nuxt",
|
|
5529
|
+
"repo": "Lexpeartha/nuxt-xstate",
|
|
5530
|
+
"npm": "nuxt-xstate",
|
|
5531
|
+
"icon": "xstate.svg",
|
|
5532
|
+
"github": "https://github.com/Lexpeartha/nuxt-xstate",
|
|
5533
|
+
"website": "https://nuxt-xstate.lexpeartha.com",
|
|
5534
|
+
"learn_more": "https://xstate.js.org/",
|
|
5535
|
+
"category": "Extensions",
|
|
5536
|
+
"type": "3rd-party",
|
|
5537
|
+
"maintainers": [
|
|
5538
|
+
{
|
|
5539
|
+
"name": "Lexpeartha",
|
|
5540
|
+
"github": "Lexpeartha",
|
|
5541
|
+
"twitter": "lexpeartha"
|
|
5542
|
+
}
|
|
5543
|
+
],
|
|
5544
|
+
"compatibility": {
|
|
5545
|
+
"nuxt": "^2.0.0 || ^3.0.0",
|
|
5546
|
+
"requires": {
|
|
5547
|
+
"bridge": true
|
|
5548
|
+
}
|
|
5549
|
+
}
|
|
5550
|
+
},
|
|
4589
5551
|
{
|
|
4590
5552
|
"name": "xui",
|
|
4591
5553
|
"description": "Light module to help design websites with Nuxt.",
|