mirror of
https://github.com/HuLaSpark/HuLa.git
synced 2026-08-30 17:14:56 +08:00
d2be80a5db
* fix(common): 🐛 chatmain scroll behavior * fix(common): 🐛 chatMain scroll bug * fix(common): 🐛 p2p chat sendTime * feat(mobile): ✨ added friend/group page and functionality * fix(common): 🐛 order group member * style(common): 💄 refactor layout center * fix(agreement): 🐛 chat and announcements * fix(common): 🐛 group basic information editing * refactor(common): ♻️ union config * ci(config): 🎡 change some configuration * refactor(common): ♻️ config yudao * fix(common): 🐛 exit group * refactor(common): ♻️ tencent config * fix(common): 🐛 network config * feat(mobile): ✨ added Friend or Group Message Page * fix(common): 🐛 exit group error * feat(message): ✨ add message management settings * fix(mobile): 🐛 fix the issue where the mobile client fails to locate the configuration file * fix(mobile): 🐛 resolve mobile misidentification of local and production environments * feat(mobile): ✨ optimize the maximum width of bot messages and reply messages * feat(mobile): ✨ optimize the maximum width of image messages * feat(common): ✨ msg multi choose relay * build(vite): 📦 update startup and vite configuration * perf(message forwarding): ⚡ optimize message forwarding styles * fix(common): 🐛 msg time block * feat(mobile): ✨ added ability to view detailed information about friends * feat(mobile): ✨ add functionality to remove friends * fix(style): 🐛 fix special message not centered issue * fix(mobile): 🐛 fix hmr host bug * fix(mobile): 🐛 fix contact page not showing friend requests * feat(common): ✨ msg merge * feat(mobile): ✨ added chatroom redirection feature on friend detail page * fix(common): 🐛 merge msg display * feat(mobile): ✨ add file and image uploader components * fix(common): 🐛 send new msg error when scroll too top * fix(common): 🐛 reconstruct the notification module * fix(system): 🐛 fix some style and logic issues --------- Co-authored-by: wanwanruwoxin <254693270@qq.com> Co-authored-by: 卡仔 <1271013637@qq.com> Co-authored-by: 乾乾 <1046762075@qq.com>
182 lines
6.7 KiB
JSON
Vendored
182 lines
6.7 KiB
JSON
Vendored
{
|
|
"$schema": "https://json.schemastore.org/jsconfig",
|
|
"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",
|
|
"========= 启动HuLa桌面应用程序(简化命令) =========": "",
|
|
"td": "tauri dev",
|
|
"========= windows中启动安卓纯前端(简化命令) =========": "",
|
|
"adev:win": "set TAURI_ENV_PLATFORM=android&& vite",
|
|
"========= mac中启动ios纯前端(简化命令) =========": "",
|
|
"idev:mac": "TAURI_ENV_PLATFORM=ios vite",
|
|
"========= 启动安卓程序(简化命令) =========": "",
|
|
"adev": "tauri android dev",
|
|
"========= 启动ios程序(简化命令) =========": "",
|
|
"idev": "tauri ios dev",
|
|
"========= 打包桌面应用程序(简化命令) =========": "",
|
|
"tb": "node scripts/interactive-build-inquirer.js",
|
|
"========= 打包桌面应用程序 =========": "",
|
|
"tauri:build": "node scripts/interactive-build-inquirer.js",
|
|
"========= 启动HuLa ios 程序 =========": "",
|
|
"tauri:ios:dev": "tauri ios dev",
|
|
"========= 启动HuLa android 程序 =========": "",
|
|
"tauri:android:dev": "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",
|
|
"========= 只检查代码问题和格式(不修复) =========": "",
|
|
"check": "biome check",
|
|
"========= 修复代码问题和格式并且检查 =========": "",
|
|
"check:write": "biome check --write --unsafe",
|
|
"========= 格式化Vue文件模板 =========": "",
|
|
"format:vue": "npx prettier --write \"src/**/*.vue\"",
|
|
"========= 完整格式化(JS+Vue) =========": "",
|
|
"format:all": "pnpm check:write && pnpm format:vue",
|
|
"========= Git提交前的代码检查(简化命令) =========": "",
|
|
"lint:s": "lint-staged && vue-tsc --noEmit",
|
|
"========= Git提交前的代码检查 =========": "",
|
|
"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.1",
|
|
"@breezystack/lamejs": "^1.2.7",
|
|
"@fingerprintjs/fingerprintjs": "^4.6.2",
|
|
"@tauri-apps/api": "2.8.0",
|
|
"@tauri-apps/plugin-autostart": "2.5.0",
|
|
"@tauri-apps/plugin-barcode-scanner": "^2.4.0",
|
|
"@tauri-apps/plugin-clipboard-manager": "2.3.0",
|
|
"@tauri-apps/plugin-dialog": "^2.4.0",
|
|
"@tauri-apps/plugin-fs": "^2.4.2",
|
|
"@tauri-apps/plugin-global-shortcut": "^2.3.0",
|
|
"@tauri-apps/plugin-http": "2.5.2",
|
|
"@tauri-apps/plugin-log": "^2.7.0",
|
|
"@tauri-apps/plugin-notification": "^2.3.1",
|
|
"@tauri-apps/plugin-opener": "^2.4.0",
|
|
"@tauri-apps/plugin-os": "2.3.1",
|
|
"@tauri-apps/plugin-process": "2.3.0",
|
|
"@tauri-apps/plugin-shell": "^2.3.1",
|
|
"@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",
|
|
"colorthief": "^2.6.0",
|
|
"crypto-js": "^4.2.0",
|
|
"dayjs": "^1.11.11",
|
|
"digest-wasm": "^0.1.4",
|
|
"dompurify": "^3.2.6",
|
|
"driver.js": "^1.3.6",
|
|
"file-type": "^21.0.0",
|
|
"grapheme-splitter": "^1.0.4",
|
|
"hula-emojis": "^1.2.26",
|
|
"internal-ip": "^8.0.0",
|
|
"lodash-es": "^4.17.21",
|
|
"mitt": "^3.0.1",
|
|
"naive-ui": "^2.43.1",
|
|
"pinia": "^3.0.3",
|
|
"pinia-plugin-persistedstate": "^4.5.0",
|
|
"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",
|
|
"vant": "^4.9.21",
|
|
"vue": "^3.5.18",
|
|
"vue-cropper": "1.1.4",
|
|
"vue-demi": "0.14.6",
|
|
"vue-router": "^4.5.1",
|
|
"vue-virtual-scroller": "2.0.0-beta.8"
|
|
},
|
|
"devDependencies": {
|
|
"@biomejs/biome": "^2.2.0",
|
|
"@commitlint/cli": "^19.8.1",
|
|
"@commitlint/config-conventional": "^19.8.1",
|
|
"@iconify/vue": "^5.0.0",
|
|
"@inquirer/prompts": "^7.8.3",
|
|
"@release-it/bumper": "^6.0.1",
|
|
"@release-it/conventional-changelog": "8.0.2",
|
|
"@rollup/plugin-terser": "^0.4.4",
|
|
"@tauri-apps/cli": "2.8.4",
|
|
"@types/crypto-js": "^4.2.2",
|
|
"@types/lodash-es": "^4.17.12",
|
|
"@types/node": "^24.3.0",
|
|
"@unocss/preset-wind3": "^66.5.1",
|
|
"@unocss/reset": "^66.5.1",
|
|
"@unocss/transformer-directives": "^66.5.1",
|
|
"@unocss/transformer-variant-group": "^66.5.1",
|
|
"@unocss/vite": "^66.5.1",
|
|
"@vitejs/plugin-vue": "^6.0.1",
|
|
"@vitejs/plugin-vue-jsx": "^5.0.1",
|
|
"@vitest/coverage-v8": "^3.2.4",
|
|
"@vitest/ui": "^3.2.4",
|
|
"@vue/test-utils": "^2.4.6",
|
|
"@vueuse/core": "^13.7.0",
|
|
"chalk": "^5.6.2",
|
|
"commitizen": "^4.3.1",
|
|
"cz-git": "^1.12.0",
|
|
"happy-dom": "^15.11.7",
|
|
"husky": "^9.1.7",
|
|
"lint-staged": "^16.1.6",
|
|
"postcss-pxtorem": "^6.1.0",
|
|
"prettier": "^3.6.2",
|
|
"release-it": "^17.11.0",
|
|
"sass": "1.92.1",
|
|
"typescript": "^5.9.2",
|
|
"unplugin-auto-import": "^20.1.0",
|
|
"unplugin-vue-components": "^29.0.0",
|
|
"vite": "7.1.6",
|
|
"vite-plugin-vue-setup-extend": "^0.4.0",
|
|
"vitest": "^3.2.4",
|
|
"vue-tsc": "^3.0.6"
|
|
},
|
|
"config": {
|
|
"commitizen": {
|
|
"path": "node_modules/cz-git"
|
|
}
|
|
},
|
|
"pnpm": {
|
|
"ignoredBuiltDependencies": ["esbuild", "vue-demi", "@parcel/watcher", "sharp"]
|
|
}
|
|
}
|