vuetifyjs / create

🛠️ Build tooling for Vuetify 3
63 stars 19 forks source link

Package.json dependencies showing wrong version #36

Closed rashnk closed 8 months ago

rashnk commented 8 months ago

Created a vuetify project with npm create vuetify

after the npm install completed, package.json in project root showing as below

 "dependencies": {
    "@mdi/font": "7.0.96",
    "core-js": "^3.29.0",
    "roboto-fontface": "*",
    "vue": "^3.2.0",
    "vue-router": "^4.0.0",
    "vuetify": "^3.0.0"
  },

where the \node_modules\vuetify\package.json shows

  "name": "vuetify",
  "description": "Vue Material Component Framework",
  "version": "3.4.10",
  "author": {
    "name": "John Leider",
    "email": "john@vuetifyjs.com"
  },

same for vueand vuetifypackages

Expected package.json dependencies need to be same as the installed version

Correct me if I'm wrong, thanks