File tree 2 files changed +5
-3
lines changed 2 files changed +5
-3
lines changed Original file line number Diff line number Diff line change @@ -7,13 +7,15 @@ import {
7
7
installModule ,
8
8
} from '@nuxt/kit'
9
9
import { defu } from 'defu'
10
+ import { name , version } from '../package.json'
10
11
11
12
// Types
12
13
import type { ModuleOptions } from './types'
13
14
14
15
export default defineNuxtModule < ModuleOptions > ( {
15
16
meta : {
16
- name : 'nuxtify-core' ,
17
+ name,
18
+ version,
17
19
configKey : 'nuxtifyCore' ,
18
20
compatibility : {
19
21
nuxt : '>=3.16.0' ,
@@ -23,7 +25,7 @@ export default defineNuxtModule<ModuleOptions>({
23
25
defaults : {
24
26
// Brand
25
27
brand : {
26
- name : 'nuxtify- core' ,
28
+ name : '@ nuxtify/ core' ,
27
29
domain : '' ,
28
30
tagline : '' ,
29
31
logo : {
Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ interface BrandOptions {
2
2
/**
3
3
* The name of the brand.
4
4
*
5
- * @default "nuxtify- core"
5
+ * @default "@ nuxtify/ core"
6
6
*/
7
7
name ?: string
8
8
/**
You can’t perform that action at this time.
0 commit comments