init:搭建基座框架

This commit is contained in:
liangdong
2025-12-29 19:20:21 +08:00
parent a360d36605
commit 6a2c315a87
35 changed files with 6313 additions and 2 deletions

32
package.json Normal file
View File

@@ -0,0 +1,32 @@
{
"name": "vite-project",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "vue-tsc -b && vite build",
"preview": "vite preview"
},
"dependencies": {
"@micro-zoe/micro-app": "^1.0.0-rc.28",
"element-plus": "^2.13.0",
"pinia": "^3.0.4",
"vue": "^3.5.24",
"vue-i18n": "^11.2.7",
"vue-router": "^4.6.4"
},
"devDependencies": {
"@types/node": "^24.10.1",
"@vitejs/plugin-vue": "^6.0.1",
"@vue/tsconfig": "^0.8.1",
"axios": "^1.13.2",
"dayjs": "^1.11.19",
"sass": "^1.97.1",
"typescript": "~5.9.3",
"unplugin-auto-import": "^20.3.0",
"unplugin-vue-components": "^30.0.0",
"vite": "^7.2.4",
"vue-tsc": "^3.1.4"
}
}