@nuxt/modules 0.6.0-daf88c → 0.6.0-db72f9

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.
Files changed (3) hide show
  1. package/README.md +10 -25
  2. package/modules.json +54 -6
  3. package/package.json +10 -15
package/README.md CHANGED
@@ -1,14 +1,14 @@
1
- [![Explore Nuxt Modules to build Vue applications](https://user-images.githubusercontent.com/904724/210602531-624c6b8b-3add-4e5e-b3f4-d981e4f2d775.jpg)](https://nuxt.com/modules)
1
+ [![Explore Nuxt Modules to build Vue applications](https://user-images.githubusercontent.com/904724/210616249-25aec46e-ab06-4b4d-9154-10b02546d558.jpg)](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 supercharge your project! Created by the Nuxt team and community.
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
- yarn sync <name> <repo>
20
+ pnpm sync <name> <repo>
21
21
  ```
22
22
 
23
- Example: `yarn sync tailwindcss nuxt-community/tailwindcss-module`
23
+ Example: `pnpm sync tailwindcss nuxt-modules/tailwindcss`
24
24
 
25
- To sync with a branch different than `master`, suffix the repo with `#repo-branch`, example: `yarn sync tailwindcss nuxt-community/tailwindcss-module#dev`
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
- # yarn
48
- yarn add @nuxt/modules
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
- yarn sync
84
+ pnpm sync
85
85
  ```
86
86
 
87
87
  ### Generate `modules.json`
88
88
 
89
89
  ```bash
90
- yarn build
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
@@ -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
  },
@@ -3286,6 +3286,54 @@
3286
3286
  "requires": {}
3287
3287
  }
3288
3288
  },
3289
+ {
3290
+ "name": "pinia-orm",
3291
+ "description": "The Pinia plugin to enable Object-Relational Mapping access to the Pinia Store.",
3292
+ "repo": "CodeDredd/pinia-orm#master/packages/nuxt",
3293
+ "npm": "@pinia-orm/nuxt",
3294
+ "icon": "pinia-orm.svg",
3295
+ "github": "https://github.com/CodeDredd/pinia-orm/tree/master/packages/nuxt",
3296
+ "website": "https://pinia-orm.codedredd.de/",
3297
+ "learn_more": "",
3298
+ "category": "Extensions",
3299
+ "type": "3rd-party",
3300
+ "maintainers": [
3301
+ {
3302
+ "name": "CodeDredd",
3303
+ "github": "CodeDredd"
3304
+ }
3305
+ ],
3306
+ "compatibility": {
3307
+ "nuxt": "^2.0.0 || ^3.0.0",
3308
+ "requires": {
3309
+ "bridge": "optional"
3310
+ }
3311
+ }
3312
+ },
3313
+ {
3314
+ "name": "pinia-plugin-persistedstate",
3315
+ "description": "Configurable persistence and rehydration of Pinia stores.",
3316
+ "repo": "prazdevs/pinia-plugin-persistedstate#main/packages/nuxt",
3317
+ "npm": "@pinia-plugin-persistedstate/nuxt",
3318
+ "icon": "pinia-plugin-persistedstate.png",
3319
+ "github": "https://github.com/prazdevs/pinia-plugin-persistedstate/tree/main/packages/nuxt",
3320
+ "website": "https://prazdevs.github.io/pinia-plugin-persistedstate/",
3321
+ "learn_more": "",
3322
+ "category": "Extensions",
3323
+ "type": "3rd-party",
3324
+ "maintainers": [
3325
+ {
3326
+ "name": "PraZ",
3327
+ "github": "prazdevs"
3328
+ }
3329
+ ],
3330
+ "compatibility": {
3331
+ "nuxt": "^2.0.0 || ^3.0.0",
3332
+ "requires": {
3333
+ "bridge": "optional"
3334
+ }
3335
+ }
3336
+ },
3289
3337
  {
3290
3338
  "name": "pinia",
3291
3339
  "description": "The Vue Store that you will enjoy using",
@@ -4661,14 +4709,14 @@
4661
4709
  {
4662
4710
  "name": "turnstile",
4663
4711
  "description": "Privacy-focused alternative to CAPTCHA from Cloudflare",
4664
- "repo": "danielroe/nuxt-turnstile",
4665
- "npm": "nuxt-turnstile",
4712
+ "repo": "nuxt-modules/turnstile",
4713
+ "npm": "@nuxtjs/turnstile",
4666
4714
  "icon": "cloudflare.svg",
4667
- "github": "https://github.com/danielroe/nuxt-turnstile",
4668
- "website": "https://github.com/danielroe/nuxt-turnstile",
4715
+ "github": "https://github.com/nuxt-modules/turnstile",
4716
+ "website": "https://github.com/nuxt-modules/turnstile",
4669
4717
  "learn_more": "https://www.cloudflare.com/products/turnstile/",
4670
4718
  "category": "Security",
4671
- "type": "3rd-party",
4719
+ "type": "community",
4672
4720
  "maintainers": [
4673
4721
  {
4674
4722
  "name": "Daniel Roe",
package/package.json CHANGED
@@ -1,25 +1,23 @@
1
1
  {
2
2
  "name": "@nuxt/modules",
3
- "version": "0.6.0-daf88c",
3
+ "version": "0.6.0-db72f9",
4
4
  "license": "MIT",
5
5
  "main": "./modules.json",
6
6
  "files": [
7
7
  "modules.json"
8
8
  ],
9
9
  "scripts": {
10
- "build": "yarn cli build",
10
+ "build": "pnpm cli build",
11
11
  "cli": "jiti ./lib/cli",
12
- "dev": "yarn website:dev",
13
- "prepare": "nuxi prepare website",
14
- "website:build": "yarn build && nuxi build website",
15
- "website:dev": "yarn build && nuxi dev website",
12
+ "website:build": "pnpm build && nuxi build website",
13
+ "website:dev": "pnpm build && nuxi dev website",
16
14
  "lint": "eslint --ext .vue,.ts .",
17
- "release": "yarn cli version && npm publish",
18
- "sync": "yarn cli sync",
19
- "test": "yarn lint && yarn sync"
15
+ "release": "pnpm cli version && npm publish",
16
+ "sync": "pnpm cli sync",
17
+ "test": "pnpm lint && pnpm sync"
20
18
  },
21
19
  "devDependencies": {
22
- "@nuxtjs/eslint-config-typescript": "^11.0.0",
20
+ "@nuxt/eslint-config": "^0.1.1",
23
21
  "@types/js-yaml": "^4.0.5",
24
22
  "@types/node": "^18.8.5",
25
23
  "defu": "^6.1.0",
@@ -29,11 +27,8 @@
29
27
  "hasha": "^5.2.2",
30
28
  "jiti": "^1.16.0",
31
29
  "js-yaml": "^4.1.0",
32
- "nuxt": "^3.0.0-rc.11",
33
30
  "ohmyfetch": "^0.4.19",
34
- "p-limit": "^4.0.0",
35
- "typescript": "^4.8.4",
36
- "ufo": "^1.0.0"
31
+ "typescript": "^4.8.4"
37
32
  },
38
- "packageManager": "yarn@3.2.3"
33
+ "packageManager": "pnpm@7.22.0"
39
34
  }