mirror of
https://github.com/HuLaSpark/HuLa.git
synced 2026-08-28 19:11:16 +08:00
f63d18e854
* feat(view): :sparkles:新增启动页 * fix(router): 🐛 修复路由参数问题 * feat(mobile): ✨ 增加移动端的启动页面 * perf(Mobile): ⚡ 处理登录页、以及默认加载消息列表 * perf(Mobile): ⚡ 处理登录、注册逻辑 * fix(config): 🐛 修复ios因Cargo.toml中系统限制条件排序问题导致无法启动 * style(login): 💄 完善登录页面和图标 * fix(Android): 🐛 修改Android中的安全距离和启动页面 * fix(style): 🐛 修改pc登录按钮的样式 修复计时器worker计时问题 修改一些样式 移除修改ip地址的测试功能 修复刷新接口时候判断的群聊问题 * feat(system): ✨ 增加获取系统盘的信息和文件磁盘占用情况功能 优化一些重要提示的样式 * fix(mac): 🐛 修复mac上点击系统托盘图标和程序坞图标不展示主窗口的问题 * fix(windows): 🐛 修复win上右键任务栏图标关闭应用后无法再打开主窗口的问题 closed #IBQB1H * feat(util): ✨ 增强录音音频响度 * feat(setting): ✨ 增加应用占用磁盘空间计算功能和可视化 * fix(hook): 🐛 修复音频文件命名不一致问题 * feat(view): ✨ 新增自动下载音频功能,优先播放本地音频,修复音频频谱波形异常问题 * fix(view): 🐛 修复发送语音后无法播放本地音频问题 * fix(mac): 🐛 修复mac语音播放问题 增加机器人样式和类型 * build(system): 📦 移除一些依赖,更新图标 * fix(view): 🐛 修复系统托盘在自动登录时不显示退出问题 优化在其他不需要显示window.$message提示的窗口可禁用 * perf(voice): ⚡ 优化录音组件的样式 * fix(store): 🐛 修复安卓无法获取安全区域问题 * feat(mobile): ✨ 新增和优化消息页面布局 * build(system): 📦 修改项目一些样式和图标 修复判断安卓的方法异步问题导致mac release版本页面不加载问题 * build(icon): 📦 更新除了mac系统的图标 * feat(mobile): ✨ 新增联系人页面 * feat(mobile): ✨ 新增点击加号图标的小弹窗页面 * fix(router): 🐛 补充提交路由文件,前一次提交缺少更新的路由文件 * build(system): 📦 拉取master的内容 --------- Co-authored-by: OrionMark <67956761@qq.com> Co-authored-by: 卡仔 <1271013637@qq.com>
168 lines
5.6 KiB
JSON
168 lines
5.6 KiB
JSON
{
|
|
"name": "hula",
|
|
"type": "module",
|
|
"version": "2.6.13",
|
|
"license": "Apache-2.0",
|
|
"engines": {
|
|
"node": "^20.19.0 || >=22.12.0",
|
|
"pnpm": ">=10.x"
|
|
},
|
|
"repository": {
|
|
"url": "https://github.com/HuLaSpark/HuLa.git"
|
|
},
|
|
"author": {
|
|
"name": "HuLaSpark团队",
|
|
"email": "2439646234@qq.com",
|
|
"url": "https://github.com/HuLaSpark"
|
|
},
|
|
"scripts": {
|
|
"========= 启动vue(tauri项目会连带执行不需要单独执行) =========": "",
|
|
"dev": "vite",
|
|
"========= 打包vue(tauri项目会连带执行不需要单独执行) =========": "",
|
|
"build": "vue-tsc --noEmit && vite build",
|
|
"========= 启动HuLa桌面应用程序 =========": "",
|
|
"tauri:dev": "tauri dev",
|
|
"========= 打包桌面应用程序 =========": "",
|
|
"tauri:build": "tauri build",
|
|
"========= 打包后可调试并且可以弹出控制台 =========": "",
|
|
"tauri:build:debug": "tauri build --debug",
|
|
"========= 启动HuLa ios 程序 =========": "",
|
|
"tauri:ios:dev": "tauri ios dev",
|
|
"========= 启动HuLa android 程序 =========": "",
|
|
"tauri:android:dev": "tauri android dev",
|
|
"========= 启动安卓程序 =========": "",
|
|
"adev": "tauri android dev",
|
|
"========= 初始化 ios =========": "",
|
|
"tauri:ios:init": "tauri ios init",
|
|
"========= 初始化 android =========": "",
|
|
"tauri:android:init": "tauri android init",
|
|
"========= 生成icon =========": "",
|
|
"tauri:icon": "tauri icon public/light.png",
|
|
"========= 安装依赖前执行 =========": "",
|
|
"preinstall": "npx only-allow pnpm && node scripts/check-all.js",
|
|
"========= 使用commit来进行代码提交 =========": "",
|
|
"commit": "git add . && git-cz",
|
|
"========= 校验代码规范 =========": "",
|
|
"lint:staged": "lint-staged && vue-tsc --noEmit",
|
|
"========= 安装husky =========": "",
|
|
"prepare": "husky",
|
|
"========= 发版 =========": "",
|
|
"release": "release-it",
|
|
"========= commit后再次添加修改到上一次的commit =========": "",
|
|
"addition-commit": "git add . && git commit --amend --no-edit",
|
|
"========= 单元测试 =========": "",
|
|
"test:run": "vitest run",
|
|
"========= 使用 vitest UI =========": "",
|
|
"test:ui": "vitest --ui --coverage.enabled=true",
|
|
"========= 测试覆盖率 =========": "",
|
|
"coverage": "vitest run --coverage",
|
|
"========= 单独提交 =========": "",
|
|
"gitcz": "git-cz"
|
|
},
|
|
"dependencies": {
|
|
"@actions/github": "^6.0.0",
|
|
"@breezystack/lamejs": "^1.2.7",
|
|
"@fingerprintjs/fingerprintjs": "^4.6.2",
|
|
"@tauri-apps/api": "2.6.0",
|
|
"@tauri-apps/plugin-autostart": "2.5.0",
|
|
"@tauri-apps/plugin-clipboard-manager": "2.3.0",
|
|
"@tauri-apps/plugin-dialog": "^2.3.0",
|
|
"@tauri-apps/plugin-fs": "^2.4.0",
|
|
"@tauri-apps/plugin-http": "2.5.0",
|
|
"@tauri-apps/plugin-log": "^2.6.0",
|
|
"@tauri-apps/plugin-notification": "^2.3.0",
|
|
"@tauri-apps/plugin-opener": "^2.4.0",
|
|
"@tauri-apps/plugin-os": "2.3.0",
|
|
"@tauri-apps/plugin-process": "2.3.0",
|
|
"@tauri-apps/plugin-shell": "^2.3.0",
|
|
"@tauri-apps/plugin-sql": "^2.3.0",
|
|
"@tauri-apps/plugin-updater": "2.9.0",
|
|
"@vue-office/docx": "^1.6.3",
|
|
"@vue-office/excel": "^1.7.14",
|
|
"@vue-office/pdf": "^2.0.10",
|
|
"@vue-office/pptx": "^1.0.1",
|
|
"base64url": "^3.0.1",
|
|
"colorthief": "^2.6.0",
|
|
"crypto-js": "^4.2.0",
|
|
"dayjs": "^1.11.11",
|
|
"digest-wasm": "^0.1.4",
|
|
"dompurify": "^3.2.4",
|
|
"file-type": "^21.0.0",
|
|
"grapheme-splitter": "^1.0.4",
|
|
"hula-emojis": "^1.2.22",
|
|
"lodash-es": "^4.17.21",
|
|
"mitt": "^3.0.1",
|
|
"naive-ui": "^2.42.0",
|
|
"pinia": "^3.0.3",
|
|
"pinia-plugin-persistedstate": "^4.4.1",
|
|
"pinia-shared-state": "^1.0.1",
|
|
"seemly": "^0.3.10",
|
|
"tauri-plugin-mic-recorder-api": "^2.0.0",
|
|
"tauri-plugin-safe-area-insets": "^0.1.0",
|
|
"vue": "^3.5.17",
|
|
"vue-cropper": "1.1.4",
|
|
"vue-demi": "0.14.6",
|
|
"vue-router": "^4.5.1"
|
|
},
|
|
"devDependencies": {
|
|
"@babel/eslint-parser": "^7.25.9",
|
|
"@commitlint/cli": "^19.6.0",
|
|
"@commitlint/config-conventional": "^19.6.0",
|
|
"@release-it/bumper": "^6.0.1",
|
|
"@release-it/conventional-changelog": "8.0.2",
|
|
"@rollup/plugin-terser": "^0.4.4",
|
|
"@tauri-apps/cli": "2.6.2",
|
|
"@types/crypto-js": "^4.2.2",
|
|
"@types/lodash-es": "^4.17.12",
|
|
"@types/node": "^24.0.10",
|
|
"@typescript-eslint/eslint-plugin": "7.1.0",
|
|
"@typescript-eslint/parser": "^7.15.0",
|
|
"@unocss/preset-wind3": "^66.3.3",
|
|
"@unocss/reset": "^66.3.3",
|
|
"@unocss/transformer-directives": "^66.3.3",
|
|
"@unocss/transformer-variant-group": "^66.3.3",
|
|
"@unocss/vite": "^66.3.3",
|
|
"@vitejs/plugin-vue": "^6.0.0",
|
|
"@vitejs/plugin-vue-jsx": "^5.0.1",
|
|
"@vitest/coverage-v8": "^3.0.5",
|
|
"@vitest/ui": "^3.0.5",
|
|
"@vue/test-utils": "^2.4.6",
|
|
"@vueuse/core": "^13.5.0",
|
|
"chalk": "^5.3.0",
|
|
"commitizen": "^4.3.1",
|
|
"cz-git": "^1.11.0",
|
|
"eslint": "^8.57.0",
|
|
"eslint-config-prettier": "^9.1.0",
|
|
"eslint-plugin-import": "^2.29.1",
|
|
"eslint-plugin-prettier": "^5.1.3",
|
|
"eslint-plugin-vue": "^9.27.0",
|
|
"happy-dom": "^15.11.7",
|
|
"husky": "^9.0.11",
|
|
"lint-staged": "^15.2.7",
|
|
"oxlint": "^0.2.18",
|
|
"prettier": "^3.3.2",
|
|
"release-it": "^17.11.0",
|
|
"sass": "1.89.2",
|
|
"typescript": "^5.8.3",
|
|
"unplugin-auto-import": "^19.3.0",
|
|
"unplugin-vue-components": "^28.8.0",
|
|
"vite": "7.0.5",
|
|
"vite-plugin-vue-setup-extend": "^0.4.0",
|
|
"vitest": "^3.0.5",
|
|
"vue-tsc": "^3.0.1"
|
|
},
|
|
"config": {
|
|
"commitizen": {
|
|
"path": "node_modules/cz-git"
|
|
}
|
|
},
|
|
"pnpm": {
|
|
"ignoredBuiltDependencies": [
|
|
"esbuild",
|
|
"vue-demi",
|
|
"@parcel/watcher",
|
|
"sharp"
|
|
]
|
|
}
|
|
}
|