Files
everything-is-suitable/everything-is-suitable-uniapp/package.json
T
zhangxiang 810081ac0a feat: 小程序端 UI 优化与纯客户端化改造
- 移除微信订阅推送功能(云函数/订阅管理页),回归纯客户端零后端架构
- 新增今日黄历默认展示卡片 TodayAlmanacCard(9 语言翻译)
- i18n 修复:启用 globalInjection 修复 $t 未注入,插值消息全部改为
  Messages Functions 适配小程序端(63 处)
- 修复底部导航切换失效与运势页数据不刷新
- 统一设计令牌(深褐主色 + 印红强调色),组件 UI 规范重构
- 图标 iconfont 化(FontAwesome 子集化,修复 Android 豆腐块)
- 新增 postcss-px2rpx 机型自适应(仅 mp-weixin 构建生效)
- 新增 5 个用户旅程 E2E 测试(31 用例)与验收报告
- 补充微信小程序项目配置(appid)
2026-08-28 07:51:02 +08:00

48 lines
1.7 KiB
JSON

{
"name": "everything-is-suitable-uniapp",
"version": "1.0.0",
"description": "Uniapp移动端应用",
"type": "module",
"scripts": {
"dev:h5": "uni -p h5",
"build:h5": "uni build -p h5",
"dev:mp-weixin": "uni -p mp-weixin",
"build:mp-weixin": "uni build -p mp-weixin",
"test": "vitest --run",
"test:coverage": "vitest --run --coverage",
"test:ui": "vitest --ui",
"test:e2e": "playwright test",
"test:e2e:ui": "playwright test --ui",
"test:journeys": "playwright test e2e/journeys/ --project=chromium",
"test:journeys:critical": "playwright test e2e/journeys/ziwei-journey.spec.ts e2e/journeys/almanac-journey.spec.ts --project=chromium",
"test:journeys:report": "playwright show-report"
},
"dependencies": {
"@dcloudio/uni-app": "^3.0.0-alpha-5000820260420001",
"@dcloudio/uni-components": "^3.0.0-alpha-5000820260420001",
"@dcloudio/uni-h5": "^3.0.0-alpha-5000820260420001",
"@dcloudio/uni-mp-weixin": "^3.0.0-alpha-5000820260420001",
"@everything-suitable/algorithm": "file:../packages/algorithm",
"lunar-javascript": "1.7.7",
"vue": "3.4.21",
"vue-i18n": "^9.14.5"
},
"devDependencies": {
"@dcloudio/uni-cli-shared": "3.0.0-alpha-5000820260420001",
"@dcloudio/vite-plugin-uni": "3.0.0-alpha-5000820260420001",
"@fortawesome/fontawesome-free": "^7.3.1",
"@playwright/test": "1.57.0",
"@vitejs/plugin-vue": "^5.2.3",
"@vitest/coverage-v8": "4.0.18",
"@vitest/ui": "4.0.18",
"@vue/test-utils": "^2.4.9",
"jsdom": "^29.1.0",
"playwright": "1.57.0",
"postcss-px2rpx": "^0.0.4",
"sass-embedded": "^1.99.0",
"typescript": "5.9.3",
"vite": "5.2.8",
"vitest": "4.0.18"
}
}