@nuxt/modules 0.5.0 → 0.6.0-d622fc
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/LICENSE +21 -0
- package/README.md +86 -10
- package/modules.json +5687 -0
- package/package.json +26 -20
- package/dist/modules.json +0 -4548
package/package.json
CHANGED
|
@@ -1,28 +1,34 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@nuxt/modules",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.6.0-d622fc",
|
|
4
4
|
"license": "MIT",
|
|
5
|
-
"main": "
|
|
5
|
+
"main": "./modules.json",
|
|
6
6
|
"files": [
|
|
7
|
-
"
|
|
7
|
+
"modules.json"
|
|
8
8
|
],
|
|
9
9
|
"scripts": {
|
|
10
|
-
"build": "
|
|
11
|
-
"cli": "
|
|
12
|
-
"
|
|
13
|
-
"
|
|
10
|
+
"build": "pnpm cli build",
|
|
11
|
+
"cli": "jiti ./lib/cli",
|
|
12
|
+
"website:build": "pnpm build && nuxi build website",
|
|
13
|
+
"website:dev": "pnpm build && nuxi dev website",
|
|
14
|
+
"lint": "eslint --ext .vue,.ts .",
|
|
15
|
+
"release": "pnpm cli version && npm publish",
|
|
16
|
+
"sync": "pnpm cli sync",
|
|
17
|
+
"test": "pnpm lint && pnpm sync"
|
|
14
18
|
},
|
|
15
19
|
"devDependencies": {
|
|
16
|
-
"@
|
|
17
|
-
"@types/
|
|
18
|
-
"
|
|
19
|
-
"defu": "^
|
|
20
|
-
"
|
|
21
|
-
"
|
|
22
|
-
"globby": "^
|
|
23
|
-
"hasha": "^5.2.
|
|
24
|
-
"
|
|
25
|
-
"
|
|
26
|
-
"
|
|
27
|
-
|
|
28
|
-
}
|
|
20
|
+
"@nuxt/eslint-config": "^0.1.1",
|
|
21
|
+
"@types/js-yaml": "^4.0.5",
|
|
22
|
+
"@types/node": "^18.8.5",
|
|
23
|
+
"defu": "^6.1.0",
|
|
24
|
+
"eslint": "^8.31.0",
|
|
25
|
+
"eslint-plugin-nuxt": "^4.0.0",
|
|
26
|
+
"globby": "^13.1.2",
|
|
27
|
+
"hasha": "^5.2.2",
|
|
28
|
+
"jiti": "^1.16.0",
|
|
29
|
+
"js-yaml": "^4.1.0",
|
|
30
|
+
"ohmyfetch": "^0.4.19",
|
|
31
|
+
"typescript": "^4.8.4"
|
|
32
|
+
},
|
|
33
|
+
"packageManager": "pnpm@7.22.0"
|
|
34
|
+
}
|