@nuxt/modules 0.6.0-daf88c → 0.6.0-db6532
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/README.md +10 -25
- package/modules.json +106 -7
- package/package.json +16 -22
package/README.md
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
|
-
[](https://nuxt.com/modules)
|
|
2
2
|
|
|
3
3
|
# Nuxt Modules
|
|
4
4
|
|
|
5
5
|
[![npm version][npm-version-src]][npm-version-href]
|
|
6
6
|
[![Volta][volta-src]][volta-href]
|
|
7
7
|
|
|
8
|
-
> Discover Nuxt modules to
|
|
8
|
+
> Discover the Nuxt modules to add any CMS, Database, UI, Auth and integrations into your Vue application.
|
|
9
9
|
|
|
10
|
-
- 📖 [Module author guide](https://nuxt.com/docs/guide/going-further/modules)
|
|
11
10
|
- 🔗 [Modules listing](https://nuxt.com/modules)
|
|
11
|
+
- 📖 [Module author guide](https://nuxt.com/docs/guide/going-further/modules)
|
|
12
12
|
|
|
13
13
|
## Modules Database
|
|
14
14
|
|
|
@@ -17,12 +17,12 @@ Metadata of nuxt modules are maintained in [yml](https://en.wikipedia.org/wiki/Y
|
|
|
17
17
|
### Add/Update a module
|
|
18
18
|
|
|
19
19
|
```bash
|
|
20
|
-
|
|
20
|
+
pnpm sync <name> <repo>
|
|
21
21
|
```
|
|
22
22
|
|
|
23
|
-
Example: `
|
|
23
|
+
Example: `pnpm sync tailwindcss nuxt-modules/tailwindcss`
|
|
24
24
|
|
|
25
|
-
To sync with a branch different than `
|
|
25
|
+
To sync with a branch different than `main`, suffix the repo with `#repo-branch`, example: `pnpm sync tailwindcss nuxt-modules/tailwindcss#dev`
|
|
26
26
|
|
|
27
27
|
### Contribution
|
|
28
28
|
|
|
@@ -44,8 +44,8 @@ You can use the `@nuxt/modules` package by installing it in your project:
|
|
|
44
44
|
# npm
|
|
45
45
|
npm install @nuxt/modules
|
|
46
46
|
|
|
47
|
-
#
|
|
48
|
-
|
|
47
|
+
# pnpm
|
|
48
|
+
pnpm add @nuxt/modules
|
|
49
49
|
```
|
|
50
50
|
|
|
51
51
|
Then you can directly import the list of modules:
|
|
@@ -81,30 +81,15 @@ Field Name | Auto sync | Description
|
|
|
81
81
|
### Auto update all current modules
|
|
82
82
|
|
|
83
83
|
```bash
|
|
84
|
-
|
|
84
|
+
pnpm sync
|
|
85
85
|
```
|
|
86
86
|
|
|
87
87
|
### Generate `modules.json`
|
|
88
88
|
|
|
89
89
|
```bash
|
|
90
|
-
|
|
91
|
-
```
|
|
92
|
-
|
|
93
|
-
## Website development
|
|
94
|
-
|
|
95
|
-
- Clone repository
|
|
96
|
-
- Install website depenedencies using `npx yarn install`
|
|
97
|
-
|
|
98
|
-
Start development:
|
|
99
|
-
|
|
100
|
-
```bash
|
|
101
|
-
npx yarn dev
|
|
90
|
+
pnpm build
|
|
102
91
|
```
|
|
103
92
|
|
|
104
|
-
Then visit http://localhost:3000
|
|
105
|
-
|
|
106
|
-
In the development, the npm downloads and GitHub stars will be mocked unless setting `USE_NUXT_API` variable.
|
|
107
|
-
|
|
108
93
|
## License
|
|
109
94
|
|
|
110
95
|
[MIT](./LICENSE) - Made by Nuxt Team
|
package/modules.json
CHANGED
|
@@ -669,7 +669,7 @@
|
|
|
669
669
|
"icon": "",
|
|
670
670
|
"github": "https://github.com/nuxt-community/component-cache-module",
|
|
671
671
|
"website": "https://github.com/nuxt-community/component-cache-module",
|
|
672
|
-
"learn_more": "https://ssr.vuejs.org/guide/caching.html#component-level-caching",
|
|
672
|
+
"learn_more": "https://v2.ssr.vuejs.org/guide/caching.html#component-level-caching",
|
|
673
673
|
"category": "Performance",
|
|
674
674
|
"type": "community",
|
|
675
675
|
"maintainers": [
|
|
@@ -2361,7 +2361,7 @@
|
|
|
2361
2361
|
}
|
|
2362
2362
|
],
|
|
2363
2363
|
"compatibility": {
|
|
2364
|
-
"nuxt": "^2.0.0",
|
|
2364
|
+
"nuxt": "^2.0.0 || ^3.0.0",
|
|
2365
2365
|
"requires": {}
|
|
2366
2366
|
}
|
|
2367
2367
|
},
|
|
@@ -2757,6 +2757,35 @@
|
|
|
2757
2757
|
"requires": {}
|
|
2758
2758
|
}
|
|
2759
2759
|
},
|
|
2760
|
+
{
|
|
2761
|
+
"name": "nuxt-graphql-middleware",
|
|
2762
|
+
"description": "Expose GraphQL queries and mutations as server API routes.",
|
|
2763
|
+
"repo": "dulnan/nuxt-graphql-middleware",
|
|
2764
|
+
"npm": "nuxt-graphql-middleware",
|
|
2765
|
+
"icon": "nuxt-graphql-middleware.svg",
|
|
2766
|
+
"github": "https://github.com/dulnan/nuxt-graphql-middleware",
|
|
2767
|
+
"website": "https://nuxt-graphql-middleware.dulnan.net",
|
|
2768
|
+
"learn_more": "",
|
|
2769
|
+
"category": "Request",
|
|
2770
|
+
"type": "3rd-party",
|
|
2771
|
+
"maintainers": [
|
|
2772
|
+
{
|
|
2773
|
+
"name": "dulnan",
|
|
2774
|
+
"github": "dulnan",
|
|
2775
|
+
"twitter": "dulnan",
|
|
2776
|
+
"avatar": "https://avatars.githubusercontent.com/dulnan?v=4"
|
|
2777
|
+
},
|
|
2778
|
+
{
|
|
2779
|
+
"name": "ayalon",
|
|
2780
|
+
"github": "ayalon",
|
|
2781
|
+
"avatar": "https://avatars.githubusercontent.com/ayalon?v=4"
|
|
2782
|
+
}
|
|
2783
|
+
],
|
|
2784
|
+
"compatibility": {
|
|
2785
|
+
"nuxt": "^2.0.0 || ^3.0.0",
|
|
2786
|
+
"requires": {}
|
|
2787
|
+
}
|
|
2788
|
+
},
|
|
2760
2789
|
{
|
|
2761
2790
|
"name": "nuxt-graphql-playground",
|
|
2762
2791
|
"description": "",
|
|
@@ -3101,6 +3130,28 @@
|
|
|
3101
3130
|
}
|
|
3102
3131
|
}
|
|
3103
3132
|
},
|
|
3133
|
+
{
|
|
3134
|
+
"name": "nuxt-vue3-google-signin",
|
|
3135
|
+
"description": "Empower your Nuxt app with Google Sign-In, hassle-free",
|
|
3136
|
+
"repo": "syetalabs/nuxt-vue3-google-signin",
|
|
3137
|
+
"npm": "nuxt-vue3-google-signin",
|
|
3138
|
+
"icon": "vue3-google-signin.svg",
|
|
3139
|
+
"github": "https://github.com/syetalabs/nuxt-vue3-google-signin",
|
|
3140
|
+
"website": "https://vue3-google-signin.syetalabs.io",
|
|
3141
|
+
"learn_more": "https://vue3-google-signin.syetalabs.io",
|
|
3142
|
+
"category": "Libraries",
|
|
3143
|
+
"type": "3rd-party",
|
|
3144
|
+
"maintainers": [
|
|
3145
|
+
{
|
|
3146
|
+
"name": "Kasun Vithanage",
|
|
3147
|
+
"github": "kasvith"
|
|
3148
|
+
}
|
|
3149
|
+
],
|
|
3150
|
+
"compatibility": {
|
|
3151
|
+
"nuxt": "^3.0.0",
|
|
3152
|
+
"requires": {}
|
|
3153
|
+
}
|
|
3154
|
+
},
|
|
3104
3155
|
{
|
|
3105
3156
|
"name": "nuxt7",
|
|
3106
3157
|
"description": "Full Featured iOS & Android PWA Apps with Nuxt.js and Framework7",
|
|
@@ -3286,6 +3337,54 @@
|
|
|
3286
3337
|
"requires": {}
|
|
3287
3338
|
}
|
|
3288
3339
|
},
|
|
3340
|
+
{
|
|
3341
|
+
"name": "pinia-orm",
|
|
3342
|
+
"description": "The Pinia plugin to enable Object-Relational Mapping access to the Pinia Store.",
|
|
3343
|
+
"repo": "CodeDredd/pinia-orm#master/packages/nuxt",
|
|
3344
|
+
"npm": "@pinia-orm/nuxt",
|
|
3345
|
+
"icon": "pinia-orm.svg",
|
|
3346
|
+
"github": "https://github.com/CodeDredd/pinia-orm/tree/master/packages/nuxt",
|
|
3347
|
+
"website": "https://pinia-orm.codedredd.de/",
|
|
3348
|
+
"learn_more": "",
|
|
3349
|
+
"category": "Extensions",
|
|
3350
|
+
"type": "3rd-party",
|
|
3351
|
+
"maintainers": [
|
|
3352
|
+
{
|
|
3353
|
+
"name": "CodeDredd",
|
|
3354
|
+
"github": "CodeDredd"
|
|
3355
|
+
}
|
|
3356
|
+
],
|
|
3357
|
+
"compatibility": {
|
|
3358
|
+
"nuxt": "^2.0.0 || ^3.0.0",
|
|
3359
|
+
"requires": {
|
|
3360
|
+
"bridge": "optional"
|
|
3361
|
+
}
|
|
3362
|
+
}
|
|
3363
|
+
},
|
|
3364
|
+
{
|
|
3365
|
+
"name": "pinia-plugin-persistedstate",
|
|
3366
|
+
"description": "Configurable persistence and rehydration of Pinia stores.",
|
|
3367
|
+
"repo": "prazdevs/pinia-plugin-persistedstate#main/packages/nuxt",
|
|
3368
|
+
"npm": "@pinia-plugin-persistedstate/nuxt",
|
|
3369
|
+
"icon": "pinia-plugin-persistedstate.png",
|
|
3370
|
+
"github": "https://github.com/prazdevs/pinia-plugin-persistedstate/tree/main/packages/nuxt",
|
|
3371
|
+
"website": "https://prazdevs.github.io/pinia-plugin-persistedstate/",
|
|
3372
|
+
"learn_more": "",
|
|
3373
|
+
"category": "Extensions",
|
|
3374
|
+
"type": "3rd-party",
|
|
3375
|
+
"maintainers": [
|
|
3376
|
+
{
|
|
3377
|
+
"name": "PraZ",
|
|
3378
|
+
"github": "prazdevs"
|
|
3379
|
+
}
|
|
3380
|
+
],
|
|
3381
|
+
"compatibility": {
|
|
3382
|
+
"nuxt": "^2.0.0 || ^3.0.0",
|
|
3383
|
+
"requires": {
|
|
3384
|
+
"bridge": "optional"
|
|
3385
|
+
}
|
|
3386
|
+
}
|
|
3387
|
+
},
|
|
3289
3388
|
{
|
|
3290
3389
|
"name": "pinia",
|
|
3291
3390
|
"description": "The Vue Store that you will enjoy using",
|
|
@@ -4661,14 +4760,14 @@
|
|
|
4661
4760
|
{
|
|
4662
4761
|
"name": "turnstile",
|
|
4663
4762
|
"description": "Privacy-focused alternative to CAPTCHA from Cloudflare",
|
|
4664
|
-
"repo": "
|
|
4665
|
-
"npm": "
|
|
4763
|
+
"repo": "nuxt-modules/turnstile",
|
|
4764
|
+
"npm": "@nuxtjs/turnstile",
|
|
4666
4765
|
"icon": "cloudflare.svg",
|
|
4667
|
-
"github": "https://github.com/
|
|
4668
|
-
"website": "https://github.com/
|
|
4766
|
+
"github": "https://github.com/nuxt-modules/turnstile",
|
|
4767
|
+
"website": "https://github.com/nuxt-modules/turnstile",
|
|
4669
4768
|
"learn_more": "https://www.cloudflare.com/products/turnstile/",
|
|
4670
4769
|
"category": "Security",
|
|
4671
|
-
"type": "
|
|
4770
|
+
"type": "community",
|
|
4672
4771
|
"maintainers": [
|
|
4673
4772
|
{
|
|
4674
4773
|
"name": "Daniel Roe",
|
package/package.json
CHANGED
|
@@ -1,39 +1,33 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@nuxt/modules",
|
|
3
|
-
"version": "0.6.0-
|
|
3
|
+
"version": "0.6.0-db6532",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"main": "./modules.json",
|
|
6
6
|
"files": [
|
|
7
7
|
"modules.json"
|
|
8
8
|
],
|
|
9
9
|
"scripts": {
|
|
10
|
-
"build": "
|
|
10
|
+
"build": "pnpm cli build",
|
|
11
11
|
"cli": "jiti ./lib/cli",
|
|
12
|
-
"
|
|
13
|
-
"
|
|
14
|
-
"
|
|
15
|
-
"
|
|
16
|
-
"
|
|
17
|
-
"
|
|
18
|
-
"sync": "yarn cli sync",
|
|
19
|
-
"test": "yarn lint && yarn sync"
|
|
12
|
+
"website:build": "pnpm build && nuxi build website",
|
|
13
|
+
"website:dev": "pnpm build && nuxi dev website",
|
|
14
|
+
"lint": "eslint --ext .",
|
|
15
|
+
"release": "pnpm cli version && npm publish",
|
|
16
|
+
"sync": "pnpm cli sync",
|
|
17
|
+
"test": "pnpm lint && pnpm sync"
|
|
20
18
|
},
|
|
21
19
|
"devDependencies": {
|
|
22
|
-
"@
|
|
20
|
+
"@nuxt/eslint-config": "^0.1.1",
|
|
23
21
|
"@types/js-yaml": "^4.0.5",
|
|
24
|
-
"@types/node": "^18.
|
|
25
|
-
"defu": "^6.1.
|
|
22
|
+
"@types/node": "^18.11.18",
|
|
23
|
+
"defu": "^6.1.1",
|
|
26
24
|
"eslint": "^8.31.0",
|
|
27
|
-
"
|
|
28
|
-
"globby": "^13.1.2",
|
|
25
|
+
"globby": "^13.1.3",
|
|
29
26
|
"hasha": "^5.2.2",
|
|
30
|
-
"jiti": "^1.16.
|
|
27
|
+
"jiti": "^1.16.2",
|
|
31
28
|
"js-yaml": "^4.1.0",
|
|
32
|
-
"
|
|
33
|
-
"
|
|
34
|
-
"p-limit": "^4.0.0",
|
|
35
|
-
"typescript": "^4.8.4",
|
|
36
|
-
"ufo": "^1.0.0"
|
|
29
|
+
"ofetch": "^1.0.0",
|
|
30
|
+
"typescript": "^4.9.4"
|
|
37
31
|
},
|
|
38
|
-
"packageManager": "
|
|
32
|
+
"packageManager": "pnpm@7.22.0"
|
|
39
33
|
}
|