- 将根 package.json 中的 pnpm engine 升级至 >=9.0.0 - 在 mobile 包中添加 @vueuse/core、dayjs 和 @h5/shared - 在 screen 包中添加 vue-router、pinia、element-plus、@element-plus/icons-vue、@vueuse/core 和 @h5/shared - 调整 screen 包中依赖的顺序以保持一致
29 lines
606 B
JSON
29 lines
606 B
JSON
{
|
|
"name": "@h5/mobile",
|
|
"version": "1.0.0",
|
|
"private": true,
|
|
"type": "module",
|
|
"scripts": {
|
|
"dev": "vite",
|
|
"build": "vite build",
|
|
"preview": "vite preview"
|
|
},
|
|
"dependencies": {
|
|
"vue": "^3.5.18",
|
|
"vue-router": "^4.6.3",
|
|
"pinia": "^3.0.3",
|
|
"vant": "^4.9.21",
|
|
"@vueuse/core": "^14.0.0",
|
|
"dayjs": "^1.11.19",
|
|
"axios": "^1.13.2",
|
|
"@h5/shared": "workspace:*"
|
|
},
|
|
"devDependencies": {
|
|
"@vitejs/plugin-vue": "^6.0.1",
|
|
"vite": "^7.2.0",
|
|
"sass": "^1.93.3",
|
|
"unplugin-vue-components": "^0.26.0",
|
|
"unplugin-auto-import": "^20.2.0"
|
|
}
|
|
}
|