vuetify-nuxt4-module 1.1.0

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.
@@ -0,0 +1,3 @@
1
+ export { default } from './module.mjs'
2
+
3
+ export { type ModuleOptions, type VuetifyHookContext, type VuetifyHooks } from './module.mjs'
package/package.json ADDED
@@ -0,0 +1,140 @@
1
+ {
2
+ "name": "vuetify-nuxt4-module",
3
+ "description": "Nuxt 4 module for Vuetify with theming and performance optimizations",
4
+ "keywords": [
5
+ "nuxt",
6
+ "nuxt4",
7
+ "nuxt-module",
8
+ "vuetify",
9
+ "vuetify3",
10
+ "material-design-3",
11
+ "ui-framework",
12
+ "component-library",
13
+ "vue",
14
+ "vue3",
15
+ "material-design",
16
+ "tree-shaking",
17
+ "ssr"
18
+ ],
19
+ "version": "1.1.0",
20
+ "homepage": "https://github.com/KHNexTech/Vuetify-Nuxt4-Module",
21
+ "author": {
22
+ "name": "KHNexTech",
23
+ "email": "chenhaitry64@gmail.com",
24
+ "url": "https://github.com/KHNexTech"
25
+ },
26
+ "bugs": {
27
+ "url": "https://github.com/KHNexTech/Vuetify-Nuxt4-Module/issues"
28
+ },
29
+ "repository": {
30
+ "type": "git",
31
+ "url": "https://github.com/KHNexTech/Vuetify-Nuxt4-Module"
32
+ },
33
+ "license": "MIT",
34
+ "type": "module",
35
+ "exports": {
36
+ ".": {
37
+ "types": "./dist/types.d.mts",
38
+ "import": "./dist/module.mjs"
39
+ }
40
+ },
41
+ "main": "./dist/module.mjs",
42
+ "typesVersions": {
43
+ "*": {
44
+ ".": [
45
+ "./dist/types.d.mts"
46
+ ]
47
+ }
48
+ },
49
+ "files": [
50
+ "dist"
51
+ ],
52
+ "scripts": {
53
+ "prepack": "nuxt-module-build build",
54
+ "dev": "npm run dev:prepare && nuxi dev playground",
55
+ "dev:build": "nuxi build playground",
56
+ "dev:prepare": "nuxt-module-build build --stub && nuxt-module-build prepare && nuxi prepare playground",
57
+ "release": "npm run lint && npm run test && npm run prepack && changelogen --release && npm publish && git push --follow-tags",
58
+ "lint": "eslint .",
59
+ "test": "vitest run",
60
+ "test:watch": "vitest watch",
61
+ "test:types": "vue-tsc --noEmit && cd playground && vue-tsc --noEmit",
62
+ "analyze": "nuxi analyze playground",
63
+ "build:report": "ANALYZE=true npm run dev:build"
64
+ },
65
+ "dependencies": {
66
+ "@nuxt/kit": "^4.2.2",
67
+ "defu": "^6.1.4"
68
+ },
69
+ "devDependencies": {
70
+ "@date-io/date-fns": "^3.2.1",
71
+ "@date-io/dayjs": "^3.2.0",
72
+ "@date-io/luxon": "^3.2.0",
73
+ "@date-io/moment": "^3.2.0",
74
+ "@mdi/font": "^7.4.47",
75
+ "@nuxt/devtools": "^3.1.1",
76
+ "@nuxt/eslint-config": "^1.12.1",
77
+ "@nuxt/module-builder": "^1.0.2",
78
+ "@nuxt/schema": "^4.2.2",
79
+ "@nuxt/test-utils": "^3.21.0",
80
+ "@types/node": "^24.1.0",
81
+ "changelogen": "^0.6.2",
82
+ "date-fns": "^4.1.0",
83
+ "dayjs": "^1.11.19",
84
+ "eslint": "^9.39.2",
85
+ "lightningcss": "^1.30.2",
86
+ "luxon": "^3.7.2",
87
+ "moment": "^2.30.1",
88
+ "nuxt": "^4.2.2",
89
+ "sass": "^1.97.0",
90
+ "typescript": "~5.9.3",
91
+ "vite-plugin-vuetify": "^2.1.2",
92
+ "vitest": "^4.0.15",
93
+ "vue-tsc": "^3.1.8",
94
+ "vuetify": "^3.11.3"
95
+ },
96
+ "peerDependencies": {
97
+ "@date-io/date-fns": "^3.2.1",
98
+ "@date-io/dayjs": "^3.2.0",
99
+ "@date-io/luxon": "^3.2.0",
100
+ "@date-io/moment": "^3.2.0",
101
+ "date-fns": "^4.1.0",
102
+ "dayjs": "^1.11.19",
103
+ "luxon": "^3.7.2",
104
+ "moment": "^2.30.1",
105
+ "nuxt": "^4.2.2",
106
+ "vite-plugin-vuetify": "^2.1.2",
107
+ "vuetify": "^3.11.3"
108
+ },
109
+ "peerDependenciesMeta": {
110
+ "@date-io/date-fns": {
111
+ "optional": true
112
+ },
113
+ "@date-io/dayjs": {
114
+ "optional": true
115
+ },
116
+ "@date-io/luxon": {
117
+ "optional": true
118
+ },
119
+ "@date-io/moment": {
120
+ "optional": true
121
+ },
122
+ "date-fns": {
123
+ "optional": true
124
+ },
125
+ "dayjs": {
126
+ "optional": true
127
+ },
128
+ "luxon": {
129
+ "optional": true
130
+ },
131
+ "moment": {
132
+ "optional": true
133
+ }
134
+ },
135
+ "overrides": {
136
+ "@nuxt/test-utils": {
137
+ "vitest": "$vitest"
138
+ }
139
+ }
140
+ }