@nuxt/modules 0.5.0-cec111 → 0.5.0-e1125e

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/package.json CHANGED
@@ -1,50 +1,6 @@
1
1
  {
2
2
  "name": "@nuxt/modules",
3
- "version": "0.5.0-cec111",
3
+ "version": "0.5.0-e1125e",
4
4
  "license": "MIT",
5
- "main": "dist/modules.json",
6
- "files": [
7
- "dist"
8
- ],
9
- "scripts": {
10
- "build": "yarn cli build",
11
- "cli": "ts-node ./scripts/cli",
12
- "dev": "nuxt-ts",
13
- "generate": "nuxt-ts generate",
14
- "release": "yarn cli version && npm publish",
15
- "start": "nuxt-ts start",
16
- "sync": "yarn cli sync"
17
- },
18
- "devDependencies": {
19
- "@nuxt/content": "^1.10.0",
20
- "@nuxt/image": "^0.0.4",
21
- "@nuxt/types": "^2.14.7",
22
- "@nuxt/typescript-build": "^2.0.3",
23
- "@nuxt/typescript-runtime": "^2.0.0",
24
- "@nuxtjs/eslint-config-typescript": "^5.0.0",
25
- "@nuxtjs/google-fonts": "^1.2.0",
26
- "@nuxtjs/html-validator": "^0.1.3",
27
- "@nuxtjs/pwa": "^3.2.2",
28
- "@nuxtjs/tailwindcss": "^3.2.0",
29
- "@octokit/rest": "^18.0.9",
30
- "@tailwindcss/ui": "^0.7.2",
31
- "@types/node": "^14.14.7",
32
- "axios": "^0.21.0",
33
- "defu": "^3.2.2",
34
- "execa": "^4.1.0",
35
- "fs-extra": "^9.0.1",
36
- "fs-memo": "^1.0.1",
37
- "fuse.js": "^6.4.3",
38
- "globby": "^11.0.1",
39
- "got": "^11.8.0",
40
- "hasha": "^5.2.2",
41
- "js-yaml": "^3.14.0",
42
- "millify": "^3.3.0",
43
- "nuxt": "^2.14.7",
44
- "nuxt-ackee": "^2.0.0",
45
- "ts-loader": "^8.0.11",
46
- "ts-node": "^9.0.0",
47
- "typescript": "^4.0.5",
48
- "v-tooltip": "^2.0.3"
49
- }
5
+ "main": "./modules.json"
50
6
  }
package/LICENSE DELETED
@@ -1,21 +0,0 @@
1
- MIT License
2
-
3
- Copyright (c) 2020 Nuxt.js Team
4
-
5
- Permission is hereby granted, free of charge, to any person obtaining a copy
6
- of this software and associated documentation files (the "Software"), to deal
7
- in the Software without restriction, including without limitation the rights
8
- to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
- copies of the Software, and to permit persons to whom the Software is
10
- furnished to do so, subject to the following conditions:
11
-
12
- The above copyright notice and this permission notice shall be included in all
13
- copies or substantial portions of the Software.
14
-
15
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
- IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
- FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
- AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
- LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
- OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
- SOFTWARE.
package/README.md DELETED
@@ -1,91 +0,0 @@
1
- [![nuxt/modules](https://modules.nuxtjs.org/preview.png)](https://modules.nuxtjs.org)
2
-
3
- > Official and community [Nuxt](https://nuxtjs.org) modules united on [modules.nuxtjs.org](https://modules.nuxtjs.org)
4
-
5
- # Nuxt Modules
6
-
7
- [![automated](https://flat.badgen.net/badge/publish/automated/green)](#)
8
- [![npm version](https://flat.badgen.net/npm/v/@nuxt/modules)](https://www.npmjs.com/package/@nuxt/modules)
9
-
10
- ## Contributing
11
-
12
- - If you feel a module is missing, please create a new [issue](https://github.com/nuxt/modules/issues/new)
13
- - If some meta is wrong, feel free directly opening a pull request
14
-
15
- ### Add or update repository
16
-
17
- ```bash
18
- yarn sync <name> <repo>
19
- ```
20
-
21
- Example: `yarn sync tailwindcss nuxt-community/tailwindcss-module`
22
-
23
- To sync with a branch different than `master`, suffix the repo with `#repo-branch`, example: `yarn sync tailwindcss nuxt-community/tailwindcss-module#dev`
24
-
25
- ### Auto update all current modules
26
-
27
- ```bash
28
- yarn sync
29
- ```
30
-
31
- ### Generate `dist/module.json`
32
-
33
- ```
34
- yarn build
35
- ```
36
-
37
- ## Module Usage
38
-
39
- You can use the `@nuxt/modules` package by installing it in your project:
40
-
41
- ```bash
42
- npm install @nuxt/modules
43
- # Or yarn add @nuxt/modules
44
- ```
45
-
46
- Then you can directly import the list of modules:
47
-
48
- ```js
49
- const modules = require('@nuxt/modules')
50
- // modules is an array of objects
51
- // See https://unpkg.com/@nuxt/modules/dist/modules.json
52
- ```
53
-
54
- ## Website
55
-
56
- ### Development
57
-
58
- Start Nuxt in development:
59
-
60
- ```bash
61
- yarn dev
62
- ```
63
-
64
- Then visit http://localhost:3000.
65
-
66
- In development, the npm downloads and GitHub stars will be mocked.
67
-
68
- ### Production
69
-
70
- Create a [personnal GitHub token](https://github.com/settings/tokens) (no scope selected) and add it to `.env`:
71
-
72
- ```bash
73
- # .env
74
- GITHUB_TOKEN=<my-generated-github-token>
75
- ```
76
-
77
- Generate the website:
78
-
79
- ```
80
- yarn generate
81
- ```
82
-
83
- Start the production website:
84
-
85
- ```bash
86
- yarn start
87
- ```
88
-
89
- ## License
90
-
91
- MIT Nuxt.js Team