mirror of
https://github.com/lqtmcstudio/QZMusic_PC.git
synced 2026-08-19 01:23:22 +08:00
- 新增低音增强功能: 支持普通/高级模式,预设扬声器/耳机两种方案,可调分频点/增益/激励器/湿声比例等参数 - 新增音频输出设备选择: 支持 WASAPI 独占模式、设备列表枚举与格式匹配 - 播放时后台保活: 使用 powerSaveBlocker 阻止系统休眠/息屏导致音频中断 - 隐私设置扩展: 新增「允许他人查看关注列表」选项 - 社交功能: 用户关注/取关、粉丝/关注列表查看、用户关系页 (UserConnections) - 歌单喜欢: 云歌单支持点赞/取消喜欢,显示喜欢数 - 最近播放: 自动记录用户最近播放歌曲并上报 - 一起听优化: 修复心跳计时器休眠挂起导致 Illegal heartbeat 的问题,改进远端状态同步逻辑 - 设置页 UI 大幅扩展: 音质设置、低音增强可视化控制、音频输出配置 - 新增 FFmpeg 许可证文件 - 用户主页增强: 听歌排行、听歌统计、最近播放等视图优化
71 lines
1.5 KiB
JSON
71 lines
1.5 KiB
JSON
{
|
|
"name": "@applemusic-like-lyrics/vue",
|
|
"version": "0.5.1",
|
|
"description": "AMLL 组件库的 Vue 绑定",
|
|
"repository": {
|
|
"url": "https://github.com/amll-dev/applemusic-like-lyrics.git",
|
|
"directory": "packages/vue",
|
|
"type": "git"
|
|
},
|
|
"type": "module",
|
|
"license": "AGPL-3.0-only",
|
|
"nx": {
|
|
"tags": [
|
|
"library"
|
|
],
|
|
"targets": {
|
|
"nx-release-publish": {
|
|
"executor": "@nx/js:release-publish",
|
|
"dependsOn": []
|
|
}
|
|
}
|
|
},
|
|
"files": [
|
|
"dist"
|
|
],
|
|
"scripts": {
|
|
"typecheck": "tsgo -b",
|
|
"build-only": "tsdown",
|
|
"build": "run-p typecheck \"build-only {@}\" --",
|
|
"build:dev": "tsdown",
|
|
"fmt": "biome format --write ./src",
|
|
"dev": "nx run @applemusic-like-lyrics/playground-vue:dev"
|
|
},
|
|
"main": "./dist/amll-vue.cjs",
|
|
"module": "./dist/amll-vue.mjs",
|
|
"typings": "./dist/amll-vue.d.mts",
|
|
"exports": {
|
|
".": {
|
|
"import": {
|
|
"types": "./dist/amll-vue.d.mts",
|
|
"default": "./dist/amll-vue.mjs"
|
|
},
|
|
"require": {
|
|
"types": "./dist/amll-vue.d.cts",
|
|
"default": "./dist/amll-vue.cjs"
|
|
}
|
|
}
|
|
},
|
|
"dependencies": {
|
|
"@applemusic-like-lyrics/core": "file:../core"
|
|
},
|
|
"peerDependencies": {
|
|
"vue": "*"
|
|
},
|
|
"devDependencies": {
|
|
"@biomejs/biome": "^2.4.8",
|
|
"@pixi/app": "^7.4.3",
|
|
"@pixi/core": "^7.4.3",
|
|
"@pixi/display": "^7.4.3",
|
|
"@pixi/filter-blur": "^7.4.3",
|
|
"@pixi/filter-color-matrix": "^7.4.3",
|
|
"@pixi/sprite": "^7.4.3",
|
|
"@rolldown/plugin-babel": "^0.2.3",
|
|
"@vue/babel-plugin-jsx": "^2.0.1",
|
|
"tsdown": "^0.22.0",
|
|
"typedoc": "^0.28.17",
|
|
"typedoc-plugin-markdown": "^4.11.0",
|
|
"vue": "^3.5.30"
|
|
}
|
|
}
|