@nuxtify/pages 0.3.3 → 0.4.1
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 -21
- package/README.md +230 -222
- package/dist/module.d.mts +0 -21
- package/dist/module.json +1 -1
- package/dist/module.mjs +2 -10
- package/dist/runtime/components/EmailSubscribeForm.vue +68 -68
- package/dist/runtime/components/FooterCallToAction.vue +29 -29
- package/dist/runtime/components/app/AppBar.vue +108 -108
- package/dist/runtime/components/app/AppFooter.vue +103 -133
- package/dist/runtime/components/app/AppNavigationDrawer.vue +85 -85
- package/dist/runtime/layouts/DefaultLayout.vue +27 -26
- package/dist/runtime/pages/DynamicSlug.vue +14 -14
- package/dist/runtime/pages/IndexPage.vue +12 -12
- package/dist/runtime/server/tsconfig.json +3 -3
- package/package.json +64 -64
package/package.json
CHANGED
|
@@ -1,64 +1,64 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "@nuxtify/pages",
|
|
3
|
-
"version": "0.
|
|
4
|
-
"description": "Nuxtify pages module powered by Nuxt and Vuetify.",
|
|
5
|
-
"license": "MIT",
|
|
6
|
-
"homepage": "https://nuxtify.dev",
|
|
7
|
-
"author": "Nuxtify.dev <hello@nuxtify.dev>",
|
|
8
|
-
"funding": "https://github.com/sponsors/davidstackio",
|
|
9
|
-
"repository": {
|
|
10
|
-
"type": "git",
|
|
11
|
-
"url": "git+https://github.com/nuxtify-dev/pages"
|
|
12
|
-
},
|
|
13
|
-
"bugs": {
|
|
14
|
-
"url": "https://github.com/nuxtify-dev/pages/issues"
|
|
15
|
-
},
|
|
16
|
-
"type": "module",
|
|
17
|
-
"exports": {
|
|
18
|
-
".": {
|
|
19
|
-
"types": "./dist/types.d.mts",
|
|
20
|
-
"import": "./dist/module.mjs"
|
|
21
|
-
}
|
|
22
|
-
},
|
|
23
|
-
"main": "./dist/module.mjs",
|
|
24
|
-
"typesVersions": {
|
|
25
|
-
"*": {
|
|
26
|
-
".": [
|
|
27
|
-
"./dist/types.d.mts"
|
|
28
|
-
]
|
|
29
|
-
}
|
|
30
|
-
},
|
|
31
|
-
"files": [
|
|
32
|
-
"dist"
|
|
33
|
-
],
|
|
34
|
-
"scripts": {
|
|
35
|
-
"prepack": "nuxt-module-build build",
|
|
36
|
-
"dev": "nuxi dev playground",
|
|
37
|
-
"dev:build": "nuxi build playground",
|
|
38
|
-
"dev:prepare": "nuxt-module-build build --stub && nuxt-module-build prepare && nuxi prepare playground",
|
|
39
|
-
"release": "npm run lint && npm run test && npm run prepack && changelogen --release && npm publish && git push --follow-tags",
|
|
40
|
-
"lint": "eslint .",
|
|
41
|
-
"test": "vitest run",
|
|
42
|
-
"test:watch": "vitest watch",
|
|
43
|
-
"test:types": "vue-tsc --noEmit && cd playground && vue-tsc --noEmit"
|
|
44
|
-
},
|
|
45
|
-
"dependencies": {
|
|
46
|
-
"@nuxtify/core": "^0.1.
|
|
47
|
-
"defu": "^6.1.4"
|
|
48
|
-
},
|
|
49
|
-
"devDependencies": {
|
|
50
|
-
"@nuxt/devtools": "^2.
|
|
51
|
-
"@nuxt/eslint-config": "^1.
|
|
52
|
-
"@nuxt/kit": "^3.17.
|
|
53
|
-
"@nuxt/module-builder": "^1.0.1",
|
|
54
|
-
"@nuxt/schema": "^3.17.
|
|
55
|
-
"@nuxt/test-utils": "^3.19.
|
|
56
|
-
"@types/node": "^22.15.
|
|
57
|
-
"changelogen": "^0.6.1",
|
|
58
|
-
"eslint": "^9.
|
|
59
|
-
"nuxt": "^3.17.
|
|
60
|
-
"typescript": "~5.8.2",
|
|
61
|
-
"vitest": "^3.
|
|
62
|
-
"vue-tsc": "^2.2.10"
|
|
63
|
-
}
|
|
64
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"name": "@nuxtify/pages",
|
|
3
|
+
"version": "0.4.1",
|
|
4
|
+
"description": "Nuxtify pages module powered by Nuxt and Vuetify.",
|
|
5
|
+
"license": "MIT",
|
|
6
|
+
"homepage": "https://nuxtify.dev",
|
|
7
|
+
"author": "Nuxtify.dev <hello@nuxtify.dev>",
|
|
8
|
+
"funding": "https://github.com/sponsors/davidstackio",
|
|
9
|
+
"repository": {
|
|
10
|
+
"type": "git",
|
|
11
|
+
"url": "git+https://github.com/nuxtify-dev/pages"
|
|
12
|
+
},
|
|
13
|
+
"bugs": {
|
|
14
|
+
"url": "https://github.com/nuxtify-dev/pages/issues"
|
|
15
|
+
},
|
|
16
|
+
"type": "module",
|
|
17
|
+
"exports": {
|
|
18
|
+
".": {
|
|
19
|
+
"types": "./dist/types.d.mts",
|
|
20
|
+
"import": "./dist/module.mjs"
|
|
21
|
+
}
|
|
22
|
+
},
|
|
23
|
+
"main": "./dist/module.mjs",
|
|
24
|
+
"typesVersions": {
|
|
25
|
+
"*": {
|
|
26
|
+
".": [
|
|
27
|
+
"./dist/types.d.mts"
|
|
28
|
+
]
|
|
29
|
+
}
|
|
30
|
+
},
|
|
31
|
+
"files": [
|
|
32
|
+
"dist"
|
|
33
|
+
],
|
|
34
|
+
"scripts": {
|
|
35
|
+
"prepack": "nuxt-module-build build",
|
|
36
|
+
"dev": "nuxi dev playground",
|
|
37
|
+
"dev:build": "nuxi build playground",
|
|
38
|
+
"dev:prepare": "nuxt-module-build build --stub && nuxt-module-build prepare && nuxi prepare playground",
|
|
39
|
+
"release": "npm run lint && npm run test && npm run prepack && changelogen --release && npm publish && git push --follow-tags",
|
|
40
|
+
"lint": "eslint .",
|
|
41
|
+
"test": "vitest run",
|
|
42
|
+
"test:watch": "vitest watch",
|
|
43
|
+
"test:types": "vue-tsc --noEmit && cd playground && vue-tsc --noEmit"
|
|
44
|
+
},
|
|
45
|
+
"dependencies": {
|
|
46
|
+
"@nuxtify/core": "^0.1.8",
|
|
47
|
+
"defu": "^6.1.4"
|
|
48
|
+
},
|
|
49
|
+
"devDependencies": {
|
|
50
|
+
"@nuxt/devtools": "^2.5.0",
|
|
51
|
+
"@nuxt/eslint-config": "^1.4.1",
|
|
52
|
+
"@nuxt/kit": "^3.17.5",
|
|
53
|
+
"@nuxt/module-builder": "^1.0.1",
|
|
54
|
+
"@nuxt/schema": "^3.17.5",
|
|
55
|
+
"@nuxt/test-utils": "^3.19.1",
|
|
56
|
+
"@types/node": "^22.15.32",
|
|
57
|
+
"changelogen": "^0.6.1",
|
|
58
|
+
"eslint": "^9.29.0",
|
|
59
|
+
"nuxt": "^3.17.5",
|
|
60
|
+
"typescript": "~5.8.2",
|
|
61
|
+
"vitest": "^3.2.4",
|
|
62
|
+
"vue-tsc": "^2.2.10"
|
|
63
|
+
}
|
|
64
|
+
}
|