Some checks failed
Vue3 Build and Serve (Persistent) / build-and-serve (push) Failing after 3s
- Created package.json with dependencies for Vue, Vue Router, and Element Plus. - Added favicon.ico for branding. - Implemented main App.vue with navigation and HelloWorld component. - Created base CSS for styling and main CSS for layout. - Added logo.svg for the application logo. - Developed HelloWorld component to display a greeting message. - Created TheWelcome component with multiple WelcomeItem components for project guidance. - Added WelcomeItem component for structured welcome messages. - Implemented various icons for documentation, tooling, ecosystem, community, and support. - Set up main.ts for application entry point and router integration. - Configured router with Home and About views. - Developed AboutView and HomeView components for routing. - Added TypeScript configuration files for app and node. - Configured Vite for development server and Vue plugin integration.
32 lines
750 B
JSON
32 lines
750 B
JSON
{
|
|
"name": "test",
|
|
"version": "0.0.0",
|
|
"private": true,
|
|
"type": "module",
|
|
"scripts": {
|
|
"dev": "vite",
|
|
"build": "run-p type-check \"build-only {@}\" --",
|
|
"preview": "vite preview",
|
|
"build-only": "vite build",
|
|
"type-check": "vue-tsc --build",
|
|
"format": "prettier --write src/"
|
|
},
|
|
"dependencies": {
|
|
"element-plus": "^2.9.9",
|
|
"vue": "^3.5.13",
|
|
"vue-router": "^4.5.0"
|
|
},
|
|
"devDependencies": {
|
|
"@tsconfig/node22": "^22.0.1",
|
|
"@types/node": "^22.14.0",
|
|
"@vitejs/plugin-vue": "^5.2.3",
|
|
"@vue/tsconfig": "^0.7.0",
|
|
"npm-run-all2": "^7.0.2",
|
|
"prettier": "3.5.3",
|
|
"typescript": "~5.8.0",
|
|
"vite": "^6.2.4",
|
|
"vite-plugin-vue-devtools": "^7.7.2",
|
|
"vue-tsc": "^2.2.8"
|
|
}
|
|
}
|