@nuxt/modules 0.5.0-afd854 → 0.5.0-b24f4d
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 +710 -96
- 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#
|
|
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",
|
|
900
|
+
"requires": {}
|
|
901
|
+
}
|
|
902
|
+
},
|
|
826
903
|
{
|
|
827
904
|
"name": "device",
|
|
828
905
|
"description": "Device detection module for Nuxt.js",
|
|
@@ -845,6 +922,31 @@
|
|
|
845
922
|
"requires": {}
|
|
846
923
|
}
|
|
847
924
|
},
|
|
925
|
+
{
|
|
926
|
+
"name": "directus",
|
|
927
|
+
"description": "Easily connect your Nuxt3 application to your directus server.",
|
|
928
|
+
"repo": "intevel/nuxt-directus",
|
|
929
|
+
"npm": "nuxt-directus",
|
|
930
|
+
"icon": "directus.svg",
|
|
931
|
+
"github": "https://github.com/directus/nuxt-directus/",
|
|
932
|
+
"website": "https://nuxt-directus.netlify.app/",
|
|
933
|
+
"learn_more": "https://nuxt-directus.netlify.app/",
|
|
934
|
+
"category": "CMS",
|
|
935
|
+
"type": "3rd-party",
|
|
936
|
+
"maintainers": [
|
|
937
|
+
{
|
|
938
|
+
"name": "Conner Bachmann",
|
|
939
|
+
"github": "intevel",
|
|
940
|
+
"avatar": "https://avatars.githubusercontent.com/u/59223342?v=4"
|
|
941
|
+
}
|
|
942
|
+
],
|
|
943
|
+
"compatibility": {
|
|
944
|
+
"nuxt": "^2.0.0 || ^3.0.0",
|
|
945
|
+
"requires": {
|
|
946
|
+
"bridge": true
|
|
947
|
+
}
|
|
948
|
+
}
|
|
949
|
+
},
|
|
848
950
|
{
|
|
849
951
|
"name": "dotenv",
|
|
850
952
|
"description": "A Nuxt.js module that loads your .env file into your context options",
|
|
@@ -1035,7 +1137,7 @@
|
|
|
1035
1137
|
},
|
|
1036
1138
|
{
|
|
1037
1139
|
"name": "feed",
|
|
1038
|
-
"description": "Feed module enables everyone to have RSS, Atom and
|
|
1140
|
+
"description": "Feed module enables everyone to have RSS, Atom and JSON.",
|
|
1039
1141
|
"repo": "nuxt-community/feed-module",
|
|
1040
1142
|
"npm": "@nuxtjs/feed",
|
|
1041
1143
|
"icon": "",
|
|
@@ -1059,8 +1161,8 @@
|
|
|
1059
1161
|
{
|
|
1060
1162
|
"name": "firebase",
|
|
1061
1163
|
"description": "Integrate Firebase into your Nuxt project.",
|
|
1062
|
-
"repo": "nuxt-community/firebase-module",
|
|
1063
|
-
"npm": "@nuxtjs/firebase
|
|
1164
|
+
"repo": "nuxt-community/firebase-module#master/packages/firebase-module",
|
|
1165
|
+
"npm": "@nuxtjs/firebase",
|
|
1064
1166
|
"icon": "firebase.png",
|
|
1065
1167
|
"github": "https://github.com/nuxt-community/firebase-module",
|
|
1066
1168
|
"website": "https://firebase.nuxtjs.org",
|
|
@@ -1144,6 +1246,29 @@
|
|
|
1144
1246
|
"requires": {}
|
|
1145
1247
|
}
|
|
1146
1248
|
},
|
|
1249
|
+
{
|
|
1250
|
+
"name": "fontaine",
|
|
1251
|
+
"description": "Automatically optimized font fallback based on font metrics",
|
|
1252
|
+
"repo": "nuxt-modules/fontaine",
|
|
1253
|
+
"npm": "@nuxtjs/fontaine",
|
|
1254
|
+
"icon": "fontaine.png",
|
|
1255
|
+
"github": "https://github.com/nuxt-modules/fontaine",
|
|
1256
|
+
"website": "https://github.com/unjs/fontaine",
|
|
1257
|
+
"learn_more": "https://github.com/unjs/fontaine",
|
|
1258
|
+
"category": "Performance",
|
|
1259
|
+
"type": "community",
|
|
1260
|
+
"maintainers": [
|
|
1261
|
+
{
|
|
1262
|
+
"name": "Daniel Roe",
|
|
1263
|
+
"github": "danielroe",
|
|
1264
|
+
"twitter": "danielcroe"
|
|
1265
|
+
}
|
|
1266
|
+
],
|
|
1267
|
+
"compatibility": {
|
|
1268
|
+
"nuxt": "^3.0.0",
|
|
1269
|
+
"requires": {}
|
|
1270
|
+
}
|
|
1271
|
+
},
|
|
1147
1272
|
{
|
|
1148
1273
|
"name": "fontawesome",
|
|
1149
1274
|
"description": "Module to join nuxt and Fontawesome 5",
|
|
@@ -1169,8 +1294,8 @@
|
|
|
1169
1294
|
{
|
|
1170
1295
|
"name": "formkit",
|
|
1171
1296
|
"description": "Seamless FormKit integration for Nuxt",
|
|
1172
|
-
"repo": "formkit/formkit",
|
|
1173
|
-
"npm": "",
|
|
1297
|
+
"repo": "formkit/formkit#master/packages/nuxt",
|
|
1298
|
+
"npm": "@formkit/nuxt",
|
|
1174
1299
|
"icon": "formkit.png",
|
|
1175
1300
|
"github": "https://github.com/formkit/formkit",
|
|
1176
1301
|
"website": "https://formkit.com",
|
|
@@ -1250,13 +1375,17 @@
|
|
|
1250
1375
|
"category": "Analytics",
|
|
1251
1376
|
"type": "community",
|
|
1252
1377
|
"maintainers": [
|
|
1378
|
+
{
|
|
1379
|
+
"name": "Alexander Lichter",
|
|
1380
|
+
"github": "manniL"
|
|
1381
|
+
},
|
|
1253
1382
|
{
|
|
1254
1383
|
"name": "Troy Morehouse",
|
|
1255
1384
|
"github": "tmorehouse"
|
|
1256
1385
|
}
|
|
1257
1386
|
],
|
|
1258
1387
|
"compatibility": {
|
|
1259
|
-
"nuxt": "^2.0.0",
|
|
1388
|
+
"nuxt": "^2.0.0 || ^3.0.0",
|
|
1260
1389
|
"requires": {}
|
|
1261
1390
|
}
|
|
1262
1391
|
},
|
|
@@ -1310,8 +1439,10 @@
|
|
|
1310
1439
|
}
|
|
1311
1440
|
],
|
|
1312
1441
|
"compatibility": {
|
|
1313
|
-
"nuxt": "^2.0.0",
|
|
1314
|
-
"requires": {
|
|
1442
|
+
"nuxt": "^2.0.0 || ^3.0.0",
|
|
1443
|
+
"requires": {
|
|
1444
|
+
"bridge": "optional"
|
|
1445
|
+
}
|
|
1315
1446
|
}
|
|
1316
1447
|
},
|
|
1317
1448
|
{
|
|
@@ -1373,6 +1504,28 @@
|
|
|
1373
1504
|
"requires": {}
|
|
1374
1505
|
}
|
|
1375
1506
|
},
|
|
1507
|
+
{
|
|
1508
|
+
"name": "graphql-client",
|
|
1509
|
+
"description": "Minimal GraphQL Client + Code Generation for Nuxt. Auto imports GraphQL Operations for easy execution.",
|
|
1510
|
+
"repo": "diizzayy/nuxt-graphql-client",
|
|
1511
|
+
"npm": "nuxt-graphql-client",
|
|
1512
|
+
"icon": "graphql-client.svg",
|
|
1513
|
+
"github": "https://github.com/diizzayy/nuxt-graphql-client",
|
|
1514
|
+
"website": "https://github.com/diizzayy/nuxt-graphql-client",
|
|
1515
|
+
"learn_more": "https://www.graphql-code-generator.com/plugins/typescript-graphql-request",
|
|
1516
|
+
"category": "Request",
|
|
1517
|
+
"type": "3rd-party",
|
|
1518
|
+
"maintainers": [
|
|
1519
|
+
{
|
|
1520
|
+
"name": "Diizzayy",
|
|
1521
|
+
"github": "diizzayy"
|
|
1522
|
+
}
|
|
1523
|
+
],
|
|
1524
|
+
"compatibility": {
|
|
1525
|
+
"nuxt": "^3.0.0",
|
|
1526
|
+
"requires": {}
|
|
1527
|
+
}
|
|
1528
|
+
},
|
|
1376
1529
|
{
|
|
1377
1530
|
"name": "graphql-request",
|
|
1378
1531
|
"description": "Easy Minimal GraphQL client integration with Nuxt.js",
|
|
@@ -1443,11 +1596,11 @@
|
|
|
1443
1596
|
{
|
|
1444
1597
|
"name": "harlem",
|
|
1445
1598
|
"description": "Harlem is a simple, unopinionated, lightweight and extensible state management solution for Vue 3.",
|
|
1446
|
-
"repo": "nuxt-
|
|
1599
|
+
"repo": "nuxt-modules/harlem",
|
|
1447
1600
|
"npm": "@nuxtjs/harlem",
|
|
1448
1601
|
"icon": "harlem.svg",
|
|
1449
|
-
"github": "https://github.com/nuxt-
|
|
1450
|
-
"website": "https://github.com/nuxt-
|
|
1602
|
+
"github": "https://github.com/nuxt-modules/harlem",
|
|
1603
|
+
"website": "https://github.com/nuxt-modules/harlem",
|
|
1451
1604
|
"learn_more": "https://harlemjs.com/",
|
|
1452
1605
|
"category": "Extensions",
|
|
1453
1606
|
"type": "community",
|
|
@@ -1459,10 +1612,30 @@
|
|
|
1459
1612
|
}
|
|
1460
1613
|
],
|
|
1461
1614
|
"compatibility": {
|
|
1462
|
-
"nuxt": "^
|
|
1463
|
-
"requires": {
|
|
1464
|
-
|
|
1615
|
+
"nuxt": "^3.0.0",
|
|
1616
|
+
"requires": {}
|
|
1617
|
+
}
|
|
1618
|
+
},
|
|
1619
|
+
{
|
|
1620
|
+
"name": "headlessui",
|
|
1621
|
+
"description": "Headless UI integration for Nuxt. Completely unstyled, fully accessible UI components, designed to integrate beautifully with Tailwind CSS.",
|
|
1622
|
+
"repo": "P4sca1/nuxt-headlessui",
|
|
1623
|
+
"npm": "nuxt-headlessui",
|
|
1624
|
+
"icon": "headlessui.png",
|
|
1625
|
+
"github": "https://github.com/P4sca1/nuxt-headlessui",
|
|
1626
|
+
"website": "https://github.com/P4sca1/nuxt-headlessui",
|
|
1627
|
+
"learn_more": "https://headlessui.com",
|
|
1628
|
+
"category": "UI",
|
|
1629
|
+
"type": "3rd-party",
|
|
1630
|
+
"maintainers": [
|
|
1631
|
+
{
|
|
1632
|
+
"name": "Pascal Sthamer",
|
|
1633
|
+
"github": "P4sca1"
|
|
1465
1634
|
}
|
|
1635
|
+
],
|
|
1636
|
+
"compatibility": {
|
|
1637
|
+
"nuxt": "^3.0.0",
|
|
1638
|
+
"requires": {}
|
|
1466
1639
|
}
|
|
1467
1640
|
},
|
|
1468
1641
|
{
|
|
@@ -1579,10 +1752,10 @@
|
|
|
1579
1752
|
{
|
|
1580
1753
|
"name": "html-validator",
|
|
1581
1754
|
"description": "Automatically validate Nuxt server-rendered HTML html",
|
|
1582
|
-
"repo": "nuxt-
|
|
1755
|
+
"repo": "nuxt-modules/html-validator",
|
|
1583
1756
|
"npm": "@nuxtjs/html-validator",
|
|
1584
1757
|
"icon": "html-validator.png",
|
|
1585
|
-
"github": "https://github.com/nuxt-
|
|
1758
|
+
"github": "https://github.com/nuxt-modules/html-validator",
|
|
1586
1759
|
"website": "https://html-validator.nuxtjs.org",
|
|
1587
1760
|
"learn_more": "https://html-validate.org",
|
|
1588
1761
|
"category": "Performance",
|
|
@@ -1595,8 +1768,10 @@
|
|
|
1595
1768
|
}
|
|
1596
1769
|
],
|
|
1597
1770
|
"compatibility": {
|
|
1598
|
-
"nuxt": "^2.0.0",
|
|
1599
|
-
"requires": {
|
|
1771
|
+
"nuxt": "^2.0.0 || ^3.0.0",
|
|
1772
|
+
"requires": {
|
|
1773
|
+
"bridge": "optional"
|
|
1774
|
+
}
|
|
1600
1775
|
}
|
|
1601
1776
|
},
|
|
1602
1777
|
{
|
|
@@ -1654,7 +1829,7 @@
|
|
|
1654
1829
|
"name": "i18n",
|
|
1655
1830
|
"description": "i18n features for your Nuxt project so you can easily add internationalization.",
|
|
1656
1831
|
"repo": "nuxt-community/i18n-module",
|
|
1657
|
-
"npm": "
|
|
1832
|
+
"npm": "@nuxtjs/i18n",
|
|
1658
1833
|
"icon": "i18n.png",
|
|
1659
1834
|
"github": "https://github.com/nuxt-community/i18n-module",
|
|
1660
1835
|
"website": "https://i18n.nuxtjs.org",
|
|
@@ -1672,7 +1847,51 @@
|
|
|
1672
1847
|
}
|
|
1673
1848
|
],
|
|
1674
1849
|
"compatibility": {
|
|
1675
|
-
"nuxt": "^2.0.0",
|
|
1850
|
+
"nuxt": "^2.0.0 || ^3.0.0",
|
|
1851
|
+
"requires": {}
|
|
1852
|
+
}
|
|
1853
|
+
},
|
|
1854
|
+
{
|
|
1855
|
+
"name": "icon",
|
|
1856
|
+
"description": "Icon module for Nuxt with 100,000+ ready to use icons from Iconify.",
|
|
1857
|
+
"repo": "nuxt-modules/icon",
|
|
1858
|
+
"npm": "nuxt-icon",
|
|
1859
|
+
"icon": "nuxt-icon.png",
|
|
1860
|
+
"github": "https://github.com/nuxt-modules/icon",
|
|
1861
|
+
"website": "https://github.com/nuxt-modules/icon",
|
|
1862
|
+
"learn_more": "",
|
|
1863
|
+
"category": "UI",
|
|
1864
|
+
"type": "community",
|
|
1865
|
+
"maintainers": [
|
|
1866
|
+
{
|
|
1867
|
+
"name": "Atinux",
|
|
1868
|
+
"github": "Atinux"
|
|
1869
|
+
}
|
|
1870
|
+
],
|
|
1871
|
+
"compatibility": {
|
|
1872
|
+
"nuxt": "^3.0.0",
|
|
1873
|
+
"requires": {}
|
|
1874
|
+
}
|
|
1875
|
+
},
|
|
1876
|
+
{
|
|
1877
|
+
"name": "icons",
|
|
1878
|
+
"description": "Use your own automatically imported SVG icons.",
|
|
1879
|
+
"repo": "gitfoxcode/nuxt-icons",
|
|
1880
|
+
"npm": "nuxt-icons",
|
|
1881
|
+
"icon": "icons.png",
|
|
1882
|
+
"github": "https://github.com/gitFoxCode/nuxt-icons",
|
|
1883
|
+
"website": "https://github.com/gitFoxCode/nuxt-icons",
|
|
1884
|
+
"learn_more": "",
|
|
1885
|
+
"category": "UI",
|
|
1886
|
+
"type": "3rd-party",
|
|
1887
|
+
"maintainers": [
|
|
1888
|
+
{
|
|
1889
|
+
"name": "Sebastian Wludzik",
|
|
1890
|
+
"github": "gitfoxcode"
|
|
1891
|
+
}
|
|
1892
|
+
],
|
|
1893
|
+
"compatibility": {
|
|
1894
|
+
"nuxt": "^3.0.0",
|
|
1676
1895
|
"requires": {}
|
|
1677
1896
|
}
|
|
1678
1897
|
},
|
|
@@ -1727,7 +1946,7 @@
|
|
|
1727
1946
|
}
|
|
1728
1947
|
],
|
|
1729
1948
|
"compatibility": {
|
|
1730
|
-
"nuxt": "^2.0.0",
|
|
1949
|
+
"nuxt": "^2.0.0 || ^3.0.0",
|
|
1731
1950
|
"requires": {
|
|
1732
1951
|
"bridge": "optional"
|
|
1733
1952
|
}
|
|
@@ -1802,6 +2021,29 @@
|
|
|
1802
2021
|
"requires": {}
|
|
1803
2022
|
}
|
|
1804
2023
|
},
|
|
2024
|
+
{
|
|
2025
|
+
"name": "ionic",
|
|
2026
|
+
"description": "Batteries-included Ionic integration for building iOS, Android and web apps.",
|
|
2027
|
+
"repo": "nuxt-modules/ionic",
|
|
2028
|
+
"npm": "@nuxtjs/ionic",
|
|
2029
|
+
"icon": "ionic.svg",
|
|
2030
|
+
"github": "https://github.com/nuxt-modules/ionic",
|
|
2031
|
+
"website": "https://ionic.nuxtjs.org",
|
|
2032
|
+
"learn_more": "https://ionicframework.com",
|
|
2033
|
+
"category": "Libraries",
|
|
2034
|
+
"type": "community",
|
|
2035
|
+
"maintainers": [
|
|
2036
|
+
{
|
|
2037
|
+
"name": "Daniel Roe",
|
|
2038
|
+
"github": "danielroe",
|
|
2039
|
+
"twitter": "danielcroe"
|
|
2040
|
+
}
|
|
2041
|
+
],
|
|
2042
|
+
"compatibility": {
|
|
2043
|
+
"nuxt": "^3.0.0",
|
|
2044
|
+
"requires": {}
|
|
2045
|
+
}
|
|
2046
|
+
},
|
|
1805
2047
|
{
|
|
1806
2048
|
"name": "jsonapi",
|
|
1807
2049
|
"description": "Easy JSON:API client integration for Nuxt.js",
|
|
@@ -1846,6 +2088,30 @@
|
|
|
1846
2088
|
"requires": {}
|
|
1847
2089
|
}
|
|
1848
2090
|
},
|
|
2091
|
+
{
|
|
2092
|
+
"name": "kql",
|
|
2093
|
+
"description": "Nuxt 3 module for Kirby's Query Language API",
|
|
2094
|
+
"repo": "johannschopplich/nuxt-kql",
|
|
2095
|
+
"npm": "nuxt-kql",
|
|
2096
|
+
"icon": "kql.svg",
|
|
2097
|
+
"github": "https://github.com/johannschopplich/nuxt-kql",
|
|
2098
|
+
"website": "https://nuxt-kql.jhnn.dev",
|
|
2099
|
+
"learn_more": "",
|
|
2100
|
+
"category": "CMS",
|
|
2101
|
+
"type": "3rd-party",
|
|
2102
|
+
"maintainers": [
|
|
2103
|
+
{
|
|
2104
|
+
"name": "Johann Schopplich",
|
|
2105
|
+
"github": "johannschopplich",
|
|
2106
|
+
"twitter": "jschopplich",
|
|
2107
|
+
"avatar": "https://avatars.githubusercontent.com/johannschopplich?v=4"
|
|
2108
|
+
}
|
|
2109
|
+
],
|
|
2110
|
+
"compatibility": {
|
|
2111
|
+
"nuxt": "^3.0.0",
|
|
2112
|
+
"requires": {}
|
|
2113
|
+
}
|
|
2114
|
+
},
|
|
1849
2115
|
{
|
|
1850
2116
|
"name": "laravel-echo",
|
|
1851
2117
|
"description": "Laravel Echo for Nuxt.js",
|
|
@@ -2051,6 +2317,29 @@
|
|
|
2051
2317
|
"requires": {}
|
|
2052
2318
|
}
|
|
2053
2319
|
},
|
|
2320
|
+
{
|
|
2321
|
+
"name": "magic-regexp",
|
|
2322
|
+
"description": "A compiled-away, type-safe, readable RegExp alternative",
|
|
2323
|
+
"repo": "danielroe/magic-regexp",
|
|
2324
|
+
"npm": "magic-regexp",
|
|
2325
|
+
"icon": "magic-regexp.svg",
|
|
2326
|
+
"github": "https://github.com/danielroe/magic-regexp",
|
|
2327
|
+
"website": "https://magic-regexp.roe.dev",
|
|
2328
|
+
"learn_more": "https://magic-regexp.roe.dev",
|
|
2329
|
+
"category": "Libraries",
|
|
2330
|
+
"type": "3rd-party",
|
|
2331
|
+
"maintainers": [
|
|
2332
|
+
{
|
|
2333
|
+
"name": "Daniel Roe",
|
|
2334
|
+
"github": "danielroe",
|
|
2335
|
+
"twitter": "danielcroe"
|
|
2336
|
+
}
|
|
2337
|
+
],
|
|
2338
|
+
"compatibility": {
|
|
2339
|
+
"nuxt": "^3.0.0",
|
|
2340
|
+
"requires": {}
|
|
2341
|
+
}
|
|
2342
|
+
},
|
|
2054
2343
|
{
|
|
2055
2344
|
"name": "markdownit",
|
|
2056
2345
|
"description": "Use Markdown in your Nuxt application with the markdownit-loader",
|
|
@@ -2119,6 +2408,31 @@
|
|
|
2119
2408
|
"requires": {}
|
|
2120
2409
|
}
|
|
2121
2410
|
},
|
|
2411
|
+
{
|
|
2412
|
+
"name": "meilisearch",
|
|
2413
|
+
"description": "Meilisearch Instant Search module for Nuxt 3",
|
|
2414
|
+
"repo": "xlanex6/nuxt-meilisearch",
|
|
2415
|
+
"npm": "nuxt-meilisearch",
|
|
2416
|
+
"icon": "meilisearch.svg",
|
|
2417
|
+
"github": "https://github.com/xlanex6/nuxt-meilisearch",
|
|
2418
|
+
"website": "https://github.com/xlanex6/nuxt-meilisearch",
|
|
2419
|
+
"learn_more": "https://github.com/xlanex6/nuxt-meilisearch",
|
|
2420
|
+
"category": "Libraries",
|
|
2421
|
+
"type": "3rd-party",
|
|
2422
|
+
"maintainers": [
|
|
2423
|
+
{
|
|
2424
|
+
"name": "Alex Duval",
|
|
2425
|
+
"github": "xlanex6",
|
|
2426
|
+
"avatar": "https://avatars.githubusercontent.com/u/13418668?v=4"
|
|
2427
|
+
}
|
|
2428
|
+
],
|
|
2429
|
+
"compatibility": {
|
|
2430
|
+
"nuxt": "^3.0.0",
|
|
2431
|
+
"requires": {
|
|
2432
|
+
"bridge": false
|
|
2433
|
+
}
|
|
2434
|
+
}
|
|
2435
|
+
},
|
|
2122
2436
|
{
|
|
2123
2437
|
"name": "memwatch",
|
|
2124
2438
|
"description": "Quickly watch real-time memory stats of your nuxt app",
|
|
@@ -2375,6 +2689,28 @@
|
|
|
2375
2689
|
}
|
|
2376
2690
|
}
|
|
2377
2691
|
},
|
|
2692
|
+
{
|
|
2693
|
+
"name": "nuxt-monaco-editor",
|
|
2694
|
+
"description": "Integrate monaco-editor with Nuxt",
|
|
2695
|
+
"repo": "e-chan1007/nuxt-monaco-editor",
|
|
2696
|
+
"npm": "nuxt-monaco-editor",
|
|
2697
|
+
"icon": "nuxt-monaco-editor.png",
|
|
2698
|
+
"github": "https://github.com/e-chan1007/nuxt-monaco-editor",
|
|
2699
|
+
"website": "https://github.com/e-chan1007/nuxt-monaco-editor",
|
|
2700
|
+
"learn_more": "https://e-chan1007.github.io/nuxt-monaco-editor",
|
|
2701
|
+
"category": "Libraries",
|
|
2702
|
+
"type": "3rd-party",
|
|
2703
|
+
"maintainers": [
|
|
2704
|
+
{
|
|
2705
|
+
"name": "e-chan1007",
|
|
2706
|
+
"github": "e-chan1007"
|
|
2707
|
+
}
|
|
2708
|
+
],
|
|
2709
|
+
"compatibility": {
|
|
2710
|
+
"nuxt": "^3.0.0",
|
|
2711
|
+
"requires": {}
|
|
2712
|
+
}
|
|
2713
|
+
},
|
|
2378
2714
|
{
|
|
2379
2715
|
"name": "nuxt-pino-log",
|
|
2380
2716
|
"description": "Structured logs for nuxt apps using pino",
|
|
@@ -2444,6 +2780,50 @@
|
|
|
2444
2780
|
"requires": {}
|
|
2445
2781
|
}
|
|
2446
2782
|
},
|
|
2783
|
+
{
|
|
2784
|
+
"name": "nuxt-svgo",
|
|
2785
|
+
"description": "Nuxt module to load optimized SVG files as Vue components",
|
|
2786
|
+
"repo": "cpsoinos/nuxt-svgo",
|
|
2787
|
+
"npm": "nuxt-svgo",
|
|
2788
|
+
"icon": "nuxt-svgo.png",
|
|
2789
|
+
"github": "https://github.com/cpsoinos/nuxt-svgo",
|
|
2790
|
+
"website": "https://github.com/cpsoinos/nuxt-svgo",
|
|
2791
|
+
"learn_more": "",
|
|
2792
|
+
"category": "Images",
|
|
2793
|
+
"type": "3rd-party",
|
|
2794
|
+
"maintainers": [
|
|
2795
|
+
{
|
|
2796
|
+
"name": "cpsoinos",
|
|
2797
|
+
"github": "cpsoinos"
|
|
2798
|
+
}
|
|
2799
|
+
],
|
|
2800
|
+
"compatibility": {
|
|
2801
|
+
"nuxt": "^3.0.0",
|
|
2802
|
+
"requires": {}
|
|
2803
|
+
}
|
|
2804
|
+
},
|
|
2805
|
+
{
|
|
2806
|
+
"name": "nuxt-unleash",
|
|
2807
|
+
"description": "Nuxt.js module to use Unleash toggle feature services",
|
|
2808
|
+
"repo": "conejerock/nuxt-unleash",
|
|
2809
|
+
"npm": "nuxt-unleash",
|
|
2810
|
+
"icon": "nuxt-unleash.svg",
|
|
2811
|
+
"github": "https://github.com/conejerock/nuxt-unleash",
|
|
2812
|
+
"website": "https://github.com/conejerock/nuxt-unleash",
|
|
2813
|
+
"learn_more": "https://github.com/Unleash/unleash",
|
|
2814
|
+
"category": "Deployment",
|
|
2815
|
+
"type": "3rd-party",
|
|
2816
|
+
"maintainers": [
|
|
2817
|
+
{
|
|
2818
|
+
"name": "Juanjo Conejerock",
|
|
2819
|
+
"github": "conejerock"
|
|
2820
|
+
}
|
|
2821
|
+
],
|
|
2822
|
+
"compatibility": {
|
|
2823
|
+
"nuxt": "^2.0.0",
|
|
2824
|
+
"requires": {}
|
|
2825
|
+
}
|
|
2826
|
+
},
|
|
2447
2827
|
{
|
|
2448
2828
|
"name": "nuxt-use-motion",
|
|
2449
2829
|
"description": "A Nuxt module putting your components in motion",
|
|
@@ -2506,8 +2886,10 @@
|
|
|
2506
2886
|
}
|
|
2507
2887
|
],
|
|
2508
2888
|
"compatibility": {
|
|
2509
|
-
"nuxt": "^2.0.0",
|
|
2510
|
-
"requires": {
|
|
2889
|
+
"nuxt": "^2.0.0 || ^3.0.0",
|
|
2890
|
+
"requires": {
|
|
2891
|
+
"bridge": "optional"
|
|
2892
|
+
}
|
|
2511
2893
|
}
|
|
2512
2894
|
},
|
|
2513
2895
|
{
|
|
@@ -2626,11 +3008,11 @@
|
|
|
2626
3008
|
{
|
|
2627
3009
|
"name": "partytown",
|
|
2628
3010
|
"description": "Partytown integration for Nuxt - relocate resource intensive scripts into a web worker, and off of the main thread.",
|
|
2629
|
-
"repo": "nuxt-
|
|
3011
|
+
"repo": "nuxt-modules/partytown",
|
|
2630
3012
|
"npm": "@nuxtjs/partytown",
|
|
2631
3013
|
"icon": "partytown.svg",
|
|
2632
|
-
"github": "https://github.com/nuxt-
|
|
2633
|
-
"website": "https://github.com/nuxt-
|
|
3014
|
+
"github": "https://github.com/nuxt-modules/partytown",
|
|
3015
|
+
"website": "https://github.com/nuxt-modules/partytown",
|
|
2634
3016
|
"learn_more": "https://partytown.builder.io/",
|
|
2635
3017
|
"category": "Performance",
|
|
2636
3018
|
"type": "community",
|
|
@@ -2744,28 +3126,19 @@
|
|
|
2744
3126
|
{
|
|
2745
3127
|
"name": "prismic",
|
|
2746
3128
|
"description": "Easily connect your Nuxt.js application to your content hosted on Prismic",
|
|
2747
|
-
"repo": "nuxt-
|
|
3129
|
+
"repo": "nuxt-modules/prismic",
|
|
2748
3130
|
"npm": "@nuxtjs/prismic",
|
|
2749
3131
|
"icon": "prismic.png",
|
|
2750
|
-
"github": "https://github.com/nuxt-
|
|
3132
|
+
"github": "https://github.com/nuxt-modules/prismic",
|
|
2751
3133
|
"website": "https://prismic.nuxtjs.org",
|
|
2752
|
-
"learn_more": "https://prismic.io
|
|
3134
|
+
"learn_more": "https://prismic.io",
|
|
2753
3135
|
"category": "CMS",
|
|
2754
3136
|
"type": "community",
|
|
2755
3137
|
"maintainers": [
|
|
2756
|
-
{
|
|
2757
|
-
"name": "Sébastien Chopin",
|
|
2758
|
-
"github": "Atinux",
|
|
2759
|
-
"twitter": "Atinux"
|
|
2760
|
-
},
|
|
2761
3138
|
{
|
|
2762
3139
|
"name": "lihbr",
|
|
2763
3140
|
"github": "lihbr",
|
|
2764
3141
|
"twitter": "li_hbr"
|
|
2765
|
-
},
|
|
2766
|
-
{
|
|
2767
|
-
"name": "James Pegg",
|
|
2768
|
-
"github": "jamespegg"
|
|
2769
3142
|
}
|
|
2770
3143
|
],
|
|
2771
3144
|
"compatibility": {
|
|
@@ -2844,7 +3217,7 @@
|
|
|
2844
3217
|
{
|
|
2845
3218
|
"name": "purgecss",
|
|
2846
3219
|
"description": "Drop superfluous CSS! A neat PurgeCSS wrapper for Nuxt.js",
|
|
2847
|
-
"repo": "Developmint/nuxt-purgecss",
|
|
3220
|
+
"repo": "Developmint/nuxt-purgecss#main",
|
|
2848
3221
|
"npm": "nuxt-purgecss",
|
|
2849
3222
|
"icon": "purgecss.png",
|
|
2850
3223
|
"github": "https://github.com/Developmint/nuxt-purgecss",
|
|
@@ -2859,7 +3232,7 @@
|
|
|
2859
3232
|
}
|
|
2860
3233
|
],
|
|
2861
3234
|
"compatibility": {
|
|
2862
|
-
"nuxt": "^2.0.0",
|
|
3235
|
+
"nuxt": "^2.0.0 || ^3.0.0",
|
|
2863
3236
|
"requires": {}
|
|
2864
3237
|
}
|
|
2865
3238
|
},
|
|
@@ -2982,7 +3355,7 @@
|
|
|
2982
3355
|
"description": "A Nuxt.js module thats inject a middleware to generate a robots.txt file",
|
|
2983
3356
|
"repo": "nuxt-community/robots-module",
|
|
2984
3357
|
"npm": "@nuxtjs/robots",
|
|
2985
|
-
"icon": "",
|
|
3358
|
+
"icon": "robots.png",
|
|
2986
3359
|
"github": "https://github.com/nuxt-community/robots-module",
|
|
2987
3360
|
"website": "https://github.com/nuxt-community/robots-module",
|
|
2988
3361
|
"learn_more": "https://support.google.com/webmasters/answer/6062608?hl=en",
|
|
@@ -2995,8 +3368,10 @@
|
|
|
2995
3368
|
}
|
|
2996
3369
|
],
|
|
2997
3370
|
"compatibility": {
|
|
2998
|
-
"nuxt": "^2.0.0",
|
|
2999
|
-
"requires": {
|
|
3371
|
+
"nuxt": "^2.0.0 || ^3.0.0",
|
|
3372
|
+
"requires": {
|
|
3373
|
+
"bridge": "optional"
|
|
3374
|
+
}
|
|
3000
3375
|
}
|
|
3001
3376
|
},
|
|
3002
3377
|
{
|
|
@@ -3070,10 +3445,10 @@
|
|
|
3070
3445
|
{
|
|
3071
3446
|
"name": "sanity",
|
|
3072
3447
|
"description": "Access text, images, and other media with Nuxt and the Sanity headless CMS.",
|
|
3073
|
-
"repo": "nuxt-
|
|
3448
|
+
"repo": "nuxt-modules/sanity#main",
|
|
3074
3449
|
"npm": "@nuxtjs/sanity",
|
|
3075
3450
|
"icon": "sanity.png",
|
|
3076
|
-
"github": "https://github.com/nuxt-
|
|
3451
|
+
"github": "https://github.com/nuxt-modules/sanity#main",
|
|
3077
3452
|
"website": "https://sanity.nuxtjs.org",
|
|
3078
3453
|
"learn_more": "https://www.sanity.io/",
|
|
3079
3454
|
"category": "CMS",
|
|
@@ -3092,6 +3467,30 @@
|
|
|
3092
3467
|
}
|
|
3093
3468
|
}
|
|
3094
3469
|
},
|
|
3470
|
+
{
|
|
3471
|
+
"name": "schema-org",
|
|
3472
|
+
"description": "Schema.org for Nuxt, supporting typed and automated Google Rich Results.",
|
|
3473
|
+
"repo": "vueuse/schema-org#main/packages/nuxt",
|
|
3474
|
+
"npm": "nuxt-schema-org",
|
|
3475
|
+
"icon": "schema-org.svg",
|
|
3476
|
+
"github": "https://github.com/vueuse/schema-org/tree/main/packages/nuxt",
|
|
3477
|
+
"website": "https://github.com/vueuse/schema-org/tree/main/packages/nuxt",
|
|
3478
|
+
"learn_more": "https://vue-schema-org.netlify.app/guide/setup/nuxt.html",
|
|
3479
|
+
"category": "SEO",
|
|
3480
|
+
"type": "3rd-party",
|
|
3481
|
+
"maintainers": [
|
|
3482
|
+
{
|
|
3483
|
+
"name": "Harlan Wilton",
|
|
3484
|
+
"github": "harlan-zw",
|
|
3485
|
+
"twitter": "harlan_zw",
|
|
3486
|
+
"avatar": "https://avatars.githubusercontent.com/harlan-zw?v=4"
|
|
3487
|
+
}
|
|
3488
|
+
],
|
|
3489
|
+
"compatibility": {
|
|
3490
|
+
"nuxt": "^3.0.0",
|
|
3491
|
+
"requires": {}
|
|
3492
|
+
}
|
|
3493
|
+
},
|
|
3095
3494
|
{
|
|
3096
3495
|
"name": "scss-to-js",
|
|
3097
3496
|
"description": "Load SCSS Variables into Nuxt instance for use in Templates/Scripts.",
|
|
@@ -3114,6 +3513,29 @@
|
|
|
3114
3513
|
"requires": {}
|
|
3115
3514
|
}
|
|
3116
3515
|
},
|
|
3516
|
+
{
|
|
3517
|
+
"name": "security",
|
|
3518
|
+
"description": "Security Module for Nuxt based on OWASP Top 10 and Helmet",
|
|
3519
|
+
"repo": "Baroshem/nuxt-security",
|
|
3520
|
+
"npm": "nuxt-security",
|
|
3521
|
+
"icon": "nuxt-security.svg",
|
|
3522
|
+
"github": "https://github.com/Baroshem/nuxt-security",
|
|
3523
|
+
"website": "https://nuxt-security.vercel.app/",
|
|
3524
|
+
"learn_more": "https://nuxt-security.vercel.app/",
|
|
3525
|
+
"category": "Security",
|
|
3526
|
+
"type": "3rd-party",
|
|
3527
|
+
"maintainers": [
|
|
3528
|
+
{
|
|
3529
|
+
"name": "Jakub Andrzejewski",
|
|
3530
|
+
"github": "Baroshem",
|
|
3531
|
+
"avatar": "https://avatars.githubusercontent.com/u/37120330?v=4"
|
|
3532
|
+
}
|
|
3533
|
+
],
|
|
3534
|
+
"compatibility": {
|
|
3535
|
+
"nuxt": "^3.0.0",
|
|
3536
|
+
"requires": {}
|
|
3537
|
+
}
|
|
3538
|
+
},
|
|
3117
3539
|
{
|
|
3118
3540
|
"name": "segment",
|
|
3119
3541
|
"description": "Nuxt.js module for Segment Analytics.js",
|
|
@@ -3161,7 +3583,7 @@
|
|
|
3161
3583
|
{
|
|
3162
3584
|
"name": "seo-meta",
|
|
3163
3585
|
"description": "Simple generate seo metadata",
|
|
3164
|
-
"repo": "ihavecoke/nuxtjs-seo-meta",
|
|
3586
|
+
"repo": "ihavecoke/nuxtjs-seo-meta#main/packages/core",
|
|
3165
3587
|
"npm": "nuxt-seo-meta",
|
|
3166
3588
|
"icon": "",
|
|
3167
3589
|
"github": "https://github.com/ihavecoke/nuxtjs-seo-meta",
|
|
@@ -3226,6 +3648,29 @@
|
|
|
3226
3648
|
"requires": {}
|
|
3227
3649
|
}
|
|
3228
3650
|
},
|
|
3651
|
+
{
|
|
3652
|
+
"name": "session",
|
|
3653
|
+
"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",
|
|
3654
|
+
"repo": "sidebase/nuxt-session",
|
|
3655
|
+
"npm": "@sidebase/nuxt-session",
|
|
3656
|
+
"icon": "session.png",
|
|
3657
|
+
"github": "https://github.com/sidebase/nuxt-session",
|
|
3658
|
+
"website": "https://github.com/sidebase/nuxt-session",
|
|
3659
|
+
"learn_more": "https://github.com/sidebase",
|
|
3660
|
+
"category": "Security",
|
|
3661
|
+
"type": "3rd-party",
|
|
3662
|
+
"maintainers": [
|
|
3663
|
+
{
|
|
3664
|
+
"name": "sidebase",
|
|
3665
|
+
"github": "sidebase",
|
|
3666
|
+
"twitter": "sidebase_io"
|
|
3667
|
+
}
|
|
3668
|
+
],
|
|
3669
|
+
"compatibility": {
|
|
3670
|
+
"nuxt": "^3.0.0",
|
|
3671
|
+
"requires": {}
|
|
3672
|
+
}
|
|
3673
|
+
},
|
|
3229
3674
|
{
|
|
3230
3675
|
"name": "shopify",
|
|
3231
3676
|
"description": "Easy Shopify Buy client module with Nuxt.js for ecommerce websites.",
|
|
@@ -3559,7 +4004,9 @@
|
|
|
3559
4004
|
],
|
|
3560
4005
|
"compatibility": {
|
|
3561
4006
|
"nuxt": "^2.0.0 || ^3.0.0",
|
|
3562
|
-
"requires": {
|
|
4007
|
+
"requires": {
|
|
4008
|
+
"bridge": true
|
|
4009
|
+
}
|
|
3563
4010
|
}
|
|
3564
4011
|
},
|
|
3565
4012
|
{
|
|
@@ -3631,13 +4078,13 @@
|
|
|
3631
4078
|
},
|
|
3632
4079
|
{
|
|
3633
4080
|
"name": "stylify",
|
|
3634
|
-
"description": "Stylify
|
|
3635
|
-
"repo": "stylify/packages#master/packages/nuxt
|
|
3636
|
-
"npm": "@stylify/nuxt
|
|
4081
|
+
"description": "Stylify generates utility-first CSS dynamically based on what you write. Write HTML. Get CSS.",
|
|
4082
|
+
"repo": "stylify/packages#master/packages/nuxt",
|
|
4083
|
+
"npm": "@stylify/nuxt",
|
|
3637
4084
|
"icon": "stylify.svg",
|
|
3638
|
-
"github": "https://github.com/stylify/packages/tree/master/packages/nuxt
|
|
3639
|
-
"website": "https://
|
|
3640
|
-
"learn_more": "https://
|
|
4085
|
+
"github": "https://github.com/stylify/packages/tree/master/packages/nuxt",
|
|
4086
|
+
"website": "https://stylifycss.com/docs/nuxt",
|
|
4087
|
+
"learn_more": "https://stylifycss.com",
|
|
3641
4088
|
"category": "UI",
|
|
3642
4089
|
"type": "3rd-party",
|
|
3643
4090
|
"maintainers": [
|
|
@@ -3648,22 +4095,32 @@
|
|
|
3648
4095
|
}
|
|
3649
4096
|
],
|
|
3650
4097
|
"compatibility": {
|
|
3651
|
-
"nuxt": "^2.0.0",
|
|
4098
|
+
"nuxt": "^2.0.0 || ^3.0.0",
|
|
3652
4099
|
"requires": {}
|
|
3653
4100
|
}
|
|
3654
4101
|
},
|
|
3655
4102
|
{
|
|
3656
4103
|
"name": "supabase",
|
|
3657
|
-
"description": "
|
|
3658
|
-
"repo": "
|
|
3659
|
-
"npm": "
|
|
4104
|
+
"description": "First class integration with Supabase",
|
|
4105
|
+
"repo": "nuxt-community/supabase-module",
|
|
4106
|
+
"npm": "@nuxtjs/supabase",
|
|
3660
4107
|
"icon": "supabase.png",
|
|
3661
|
-
"github": "https://github.com/
|
|
3662
|
-
"website": "https://
|
|
3663
|
-
"learn_more": "https://supabase.
|
|
4108
|
+
"github": "https://github.com/nuxt-community/supabase-module",
|
|
4109
|
+
"website": "https://supabase.nuxtjs.org",
|
|
4110
|
+
"learn_more": "https://supabase.com",
|
|
3664
4111
|
"category": "Database",
|
|
3665
|
-
"type": "
|
|
4112
|
+
"type": "community",
|
|
3666
4113
|
"maintainers": [
|
|
4114
|
+
{
|
|
4115
|
+
"name": "Baptiste Leproux",
|
|
4116
|
+
"github": "larbish",
|
|
4117
|
+
"twitter": "baptistelprx"
|
|
4118
|
+
},
|
|
4119
|
+
{
|
|
4120
|
+
"name": "Sebastien Chopin",
|
|
4121
|
+
"github": "Atinux",
|
|
4122
|
+
"twitter": "Atinux"
|
|
4123
|
+
},
|
|
3667
4124
|
{
|
|
3668
4125
|
"name": "Scott Robertson",
|
|
3669
4126
|
"github": "scottrobertson",
|
|
@@ -3671,7 +4128,7 @@
|
|
|
3671
4128
|
}
|
|
3672
4129
|
],
|
|
3673
4130
|
"compatibility": {
|
|
3674
|
-
"nuxt": "^2.0.0",
|
|
4131
|
+
"nuxt": "^2.0.0 || ^3.0.0",
|
|
3675
4132
|
"requires": {}
|
|
3676
4133
|
}
|
|
3677
4134
|
},
|
|
@@ -3833,6 +4290,31 @@
|
|
|
3833
4290
|
"requires": {}
|
|
3834
4291
|
}
|
|
3835
4292
|
},
|
|
4293
|
+
{
|
|
4294
|
+
"name": "turnstile",
|
|
4295
|
+
"description": "Privacy-focused alternative to CAPTCHA from Cloudflare",
|
|
4296
|
+
"repo": "danielroe/nuxt-turnstile",
|
|
4297
|
+
"npm": "nuxt-turnstile",
|
|
4298
|
+
"icon": "cloudflare.svg",
|
|
4299
|
+
"github": "https://github.com/danielroe/nuxt-turnstile",
|
|
4300
|
+
"website": "https://github.com/danielroe/nuxt-turnstile",
|
|
4301
|
+
"learn_more": "https://www.cloudflare.com/products/turnstile/",
|
|
4302
|
+
"category": "Security",
|
|
4303
|
+
"type": "3rd-party",
|
|
4304
|
+
"maintainers": [
|
|
4305
|
+
{
|
|
4306
|
+
"name": "Daniel Roe",
|
|
4307
|
+
"github": "danielroe",
|
|
4308
|
+
"twitter": "danielcroe"
|
|
4309
|
+
}
|
|
4310
|
+
],
|
|
4311
|
+
"compatibility": {
|
|
4312
|
+
"nuxt": "^2.0.0 || ^3.0.0",
|
|
4313
|
+
"requires": {
|
|
4314
|
+
"bridge": true
|
|
4315
|
+
}
|
|
4316
|
+
}
|
|
4317
|
+
},
|
|
3836
4318
|
{
|
|
3837
4319
|
"name": "twa",
|
|
3838
4320
|
"description": "Nuxt.js module for generating Trusted Web App from Nuxt.js app",
|
|
@@ -3857,6 +4339,39 @@
|
|
|
3857
4339
|
}
|
|
3858
4340
|
}
|
|
3859
4341
|
},
|
|
4342
|
+
{
|
|
4343
|
+
"name": "twicpics",
|
|
4344
|
+
"description": "Images and videos components - Context aware resizing and cropping, lazy-loading, LQIP, Next-Gen format, compression, CDN.",
|
|
4345
|
+
"repo": "TwicPics/components",
|
|
4346
|
+
"npm": "@twicpics/components",
|
|
4347
|
+
"icon": "twicpics.svg",
|
|
4348
|
+
"github": "https://github.com/TwicPics/components",
|
|
4349
|
+
"website": "https://www.twicpics.com/docs/components/nuxt-3",
|
|
4350
|
+
"learn_more": "https://www.twicpics.com",
|
|
4351
|
+
"category": "Images",
|
|
4352
|
+
"type": "3rd-party",
|
|
4353
|
+
"maintainers": [
|
|
4354
|
+
{
|
|
4355
|
+
"name": "Florent Bourgeois",
|
|
4356
|
+
"github": "florentb",
|
|
4357
|
+
"twitter": "florent_b"
|
|
4358
|
+
},
|
|
4359
|
+
{
|
|
4360
|
+
"name": "Julian Aubourg",
|
|
4361
|
+
"github": "jaubourg",
|
|
4362
|
+
"twitter": "jaubourg"
|
|
4363
|
+
},
|
|
4364
|
+
{
|
|
4365
|
+
"name": "Miguel Beignon",
|
|
4366
|
+
"github": "mbgspcii",
|
|
4367
|
+
"twitter": "m_beignon"
|
|
4368
|
+
}
|
|
4369
|
+
],
|
|
4370
|
+
"compatibility": {
|
|
4371
|
+
"nuxt": "^2.0.0 || ^3.0.0",
|
|
4372
|
+
"requires": {}
|
|
4373
|
+
}
|
|
4374
|
+
},
|
|
3860
4375
|
{
|
|
3861
4376
|
"name": "typed-router",
|
|
3862
4377
|
"description": "Provide autocompletion for pages route names generated by Nuxt router",
|
|
@@ -3875,15 +4390,15 @@
|
|
|
3875
4390
|
}
|
|
3876
4391
|
],
|
|
3877
4392
|
"compatibility": {
|
|
3878
|
-
"nuxt": "^2.0.0",
|
|
4393
|
+
"nuxt": "^2.0.0 || ^3.0.0",
|
|
3879
4394
|
"requires": {}
|
|
3880
4395
|
}
|
|
3881
4396
|
},
|
|
3882
4397
|
{
|
|
3883
4398
|
"name": "typed-vuex",
|
|
3884
4399
|
"description": "A vanilla, strongly typed store accessor for Vuex.",
|
|
3885
|
-
"repo": "danielroe/typed-vuex",
|
|
3886
|
-
"npm": "",
|
|
4400
|
+
"repo": "danielroe/typed-vuex#main/packages/nuxt-typed-vuex",
|
|
4401
|
+
"npm": "nuxt-typed-vuex",
|
|
3887
4402
|
"icon": "vue.png",
|
|
3888
4403
|
"github": "https://github.com/danielroe/typed-vuex",
|
|
3889
4404
|
"website": "https://github.com/danielroe/typed-vuex",
|
|
@@ -3968,6 +4483,30 @@
|
|
|
3968
4483
|
"requires": {}
|
|
3969
4484
|
}
|
|
3970
4485
|
},
|
|
4486
|
+
{
|
|
4487
|
+
"name": "umami",
|
|
4488
|
+
"description": "Embed the Umami analytics library into Nuxt",
|
|
4489
|
+
"repo": "ijkml/nuxt-umami",
|
|
4490
|
+
"npm": "nuxt-umami",
|
|
4491
|
+
"icon": "umami.svg",
|
|
4492
|
+
"github": "https://github.com/ijkml/nuxt-umami",
|
|
4493
|
+
"website": "https://github.com/ijkml/nuxt-umami",
|
|
4494
|
+
"learn_more": "https://umami.is/docs/",
|
|
4495
|
+
"category": "Analytics",
|
|
4496
|
+
"type": "3rd-party",
|
|
4497
|
+
"maintainers": [
|
|
4498
|
+
{
|
|
4499
|
+
"name": "ML",
|
|
4500
|
+
"github": "ijkml"
|
|
4501
|
+
}
|
|
4502
|
+
],
|
|
4503
|
+
"compatibility": {
|
|
4504
|
+
"nuxt": "^2.0.0 || ^3.0.0",
|
|
4505
|
+
"requires": {
|
|
4506
|
+
"bridge": "optional"
|
|
4507
|
+
}
|
|
4508
|
+
}
|
|
4509
|
+
},
|
|
3971
4510
|
{
|
|
3972
4511
|
"name": "universal-storage",
|
|
3973
4512
|
"description": "Universal Storage Utilities for Nuxt.js",
|
|
@@ -3996,6 +4535,32 @@
|
|
|
3996
4535
|
"requires": {}
|
|
3997
4536
|
}
|
|
3998
4537
|
},
|
|
4538
|
+
{
|
|
4539
|
+
"name": "unlighthouse",
|
|
4540
|
+
"description": "Unlighthouse scans your entire site using Google Lighthouse, with a modern UI, minimal config and smart sampling.",
|
|
4541
|
+
"repo": "harlan-zw/unlighthouse#main/integrations/nuxt",
|
|
4542
|
+
"npm": "@unlighthouse/nuxt",
|
|
4543
|
+
"icon": "unlighthouse.svg",
|
|
4544
|
+
"github": "https://github.com/harlan-zw/unlighthouse",
|
|
4545
|
+
"website": "https://github.com/harlan-zw/unlighthouse",
|
|
4546
|
+
"learn_more": "https://github.com/harlan-zw/unlighthouse",
|
|
4547
|
+
"category": "Devtools",
|
|
4548
|
+
"type": "3rd-party",
|
|
4549
|
+
"maintainers": [
|
|
4550
|
+
{
|
|
4551
|
+
"name": "Harlan Wilton",
|
|
4552
|
+
"github": "harlan-zw",
|
|
4553
|
+
"twitter": "harlan_zw",
|
|
4554
|
+
"avatar": "https://avatars.githubusercontent.com/harlan-zw?v=4"
|
|
4555
|
+
}
|
|
4556
|
+
],
|
|
4557
|
+
"compatibility": {
|
|
4558
|
+
"nuxt": "^2.0.0 || ^3.0.0",
|
|
4559
|
+
"requires": {
|
|
4560
|
+
"bridge": "optional"
|
|
4561
|
+
}
|
|
4562
|
+
}
|
|
4563
|
+
},
|
|
3999
4564
|
{
|
|
4000
4565
|
"name": "unocss",
|
|
4001
4566
|
"description": "The instant on-demand atomic CSS engine.",
|
|
@@ -4178,6 +4743,28 @@
|
|
|
4178
4743
|
"requires": {}
|
|
4179
4744
|
}
|
|
4180
4745
|
},
|
|
4746
|
+
{
|
|
4747
|
+
"name": "vuestic",
|
|
4748
|
+
"description": "Vuestic UI module for Nuxt 3",
|
|
4749
|
+
"repo": "epicmaxco/vuestic-ui#develop/packages/nuxt",
|
|
4750
|
+
"npm": "@vuestic/nuxt",
|
|
4751
|
+
"icon": "vuestic.png",
|
|
4752
|
+
"github": "https://github.com/epicmaxco/vuestic-ui/tree/develop/packages/nuxt",
|
|
4753
|
+
"website": "https://vuestic.dev",
|
|
4754
|
+
"learn_more": "https://vuestic.dev/en/getting-started/nuxt",
|
|
4755
|
+
"category": "UI",
|
|
4756
|
+
"type": "3rd-party",
|
|
4757
|
+
"maintainers": [
|
|
4758
|
+
{
|
|
4759
|
+
"name": "epicmaxco",
|
|
4760
|
+
"github": "epicmaxco"
|
|
4761
|
+
}
|
|
4762
|
+
],
|
|
4763
|
+
"compatibility": {
|
|
4764
|
+
"nuxt": "^3.0.0",
|
|
4765
|
+
"requires": {}
|
|
4766
|
+
}
|
|
4767
|
+
},
|
|
4181
4768
|
{
|
|
4182
4769
|
"name": "vuetify",
|
|
4183
4770
|
"description": "Vuetify Module for Nuxt.js to add Material Design components to your application.",
|
|
@@ -4208,8 +4795,8 @@
|
|
|
4208
4795
|
{
|
|
4209
4796
|
"name": "vueuse",
|
|
4210
4797
|
"description": "Collection of essential Vue Composition Utilities for Vue 2 and 3",
|
|
4211
|
-
"repo": "vueuse/vueuse#main/packages/
|
|
4212
|
-
"npm": "@vueuse/
|
|
4798
|
+
"repo": "vueuse/vueuse#main/packages/nuxt",
|
|
4799
|
+
"npm": "@vueuse/nuxt",
|
|
4213
4800
|
"icon": "vueuse.svg",
|
|
4214
4801
|
"github": "https://github.com/vueuse/vueuse",
|
|
4215
4802
|
"website": "https://vueuse.org",
|
|
@@ -4257,7 +4844,7 @@
|
|
|
4257
4844
|
"description": "Web Vitals for Nuxt",
|
|
4258
4845
|
"repo": "nuxt-community/web-vitals-module",
|
|
4259
4846
|
"npm": "@nuxtjs/web-vitals",
|
|
4260
|
-
"icon": "",
|
|
4847
|
+
"icon": "web-vitals.png",
|
|
4261
4848
|
"github": "https://github.com/nuxt-community/web-vitals-module",
|
|
4262
4849
|
"website": "https://github.com/nuxt-community/web-vitals-module",
|
|
4263
4850
|
"learn_more": "",
|
|
@@ -4280,8 +4867,10 @@
|
|
|
4280
4867
|
}
|
|
4281
4868
|
],
|
|
4282
4869
|
"compatibility": {
|
|
4283
|
-
"nuxt": "^2.0.0",
|
|
4284
|
-
"requires": {
|
|
4870
|
+
"nuxt": "^2.0.0 || ^3.0.0",
|
|
4871
|
+
"requires": {
|
|
4872
|
+
"bridge": "optional"
|
|
4873
|
+
}
|
|
4285
4874
|
}
|
|
4286
4875
|
},
|
|
4287
4876
|
{
|
|
@@ -4517,6 +5106,31 @@
|
|
|
4517
5106
|
"requires": {}
|
|
4518
5107
|
}
|
|
4519
5108
|
},
|
|
5109
|
+
{
|
|
5110
|
+
"name": "xstate",
|
|
5111
|
+
"description": "XState integration for Nuxt",
|
|
5112
|
+
"repo": "Lexpeartha/nuxt-xstate",
|
|
5113
|
+
"npm": "nuxt-xstate",
|
|
5114
|
+
"icon": "xstate.svg",
|
|
5115
|
+
"github": "https://github.com/Lexpeartha/nuxt-xstate",
|
|
5116
|
+
"website": "https://nuxt-xstate.lexpeartha.com",
|
|
5117
|
+
"learn_more": "https://xstate.js.org/",
|
|
5118
|
+
"category": "Extensions",
|
|
5119
|
+
"type": "3rd-party",
|
|
5120
|
+
"maintainers": [
|
|
5121
|
+
{
|
|
5122
|
+
"name": "Lexpeartha",
|
|
5123
|
+
"github": "Lexpeartha",
|
|
5124
|
+
"twitter": "lexpeartha"
|
|
5125
|
+
}
|
|
5126
|
+
],
|
|
5127
|
+
"compatibility": {
|
|
5128
|
+
"nuxt": "^2.0.0 || ^3.0.0",
|
|
5129
|
+
"requires": {
|
|
5130
|
+
"bridge": true
|
|
5131
|
+
}
|
|
5132
|
+
}
|
|
5133
|
+
},
|
|
4520
5134
|
{
|
|
4521
5135
|
"name": "xui",
|
|
4522
5136
|
"description": "Light module to help design websites with Nuxt.",
|