There is bug when you download full vue js project. The package.json always contains default one
{
"name": "my-v0-project",
"version": "0.1.0",
"private": true,
"scripts": {
"build": "echo 'no build script'"
}
}
Not the project package.json
{
"name": "vue-component-marketplace",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "vite build",
"preview": "vite preview"
},
"dependencies": {
"vue": "^3.4.0",
"vue-router": "^4.2.5",
"pinia": "^2.1.7",
"lucide-vue-next": "^0.294.0",
"axios": "^1.6.0"
},
"devDependencies": {
"@vitejs/plugin-vue": "^4.5.0",
"vite": "^5.0.0",
"tailwindcss": "^3.3.6",
"autoprefixer": "^10.4.16",
"postcss": "^8.4.32"
}
}
while you download zip it doesn’t contain any text.