更新依赖

pull/1471/head
lyswhut 2023-07-11 15:18:08 +08:00
parent d97a27307c
commit 54f6255fe4
4 changed files with 400 additions and 263 deletions

View File

@ -9,6 +9,8 @@ module.exports = {
'eslint-plugin-n',
'@types/ws',
'eslint-config-standard-with-typescript',
'@typescript-eslint/eslint-plugin',
'@typescript-eslint/parser',
],
// target: 'newest',
@ -27,5 +29,7 @@ module.exports = {
// 'eslint-plugin-n',
// 'electron',
// 'eslint-config-standard-with-typescript',
// '@typescript-eslint/eslint-plugin',
// '@typescript-eslint/parser',
// ],
}

631
package-lock.json generated

File diff suppressed because it is too large Load Diff

View File

@ -1,6 +1,6 @@
{
"name": "lx-music-desktop",
"version": "2.3.1-beta.1",
"version": "2.4.0-beta.1",
"description": "一个免费的音乐查找助手",
"main": "./dist/main.js",
"productName": "lx-music-desktop",
@ -208,13 +208,13 @@
},
"homepage": "https://github.com/lyswhut/lx-music-desktop#readme",
"devDependencies": {
"@babel/core": "^7.22.6",
"@babel/eslint-parser": "^7.22.6",
"@babel/core": "^7.22.8",
"@babel/eslint-parser": "^7.22.7",
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@babel/plugin-transform-modules-umd": "^7.22.5",
"@babel/plugin-transform-runtime": "^7.22.6",
"@babel/preset-env": "^7.22.6",
"@babel/plugin-transform-runtime": "^7.22.7",
"@babel/preset-env": "^7.22.7",
"@babel/preset-typescript": "^7.22.5",
"@tsconfig/recommended": "^1.0.2",
"@types/better-sqlite3": "^7.6.4",
@ -224,22 +224,22 @@
"@typescript-eslint/eslint-plugin": "^5.61.0",
"@typescript-eslint/parser": "^5.61.0",
"@volar/vue-language-plugin-pug": "^1.6.5",
"@vue/language-plugin-pug": "^1.8.3",
"babel-loader": "^9.1.2",
"@vue/language-plugin-pug": "^1.8.4",
"babel-loader": "^9.1.3",
"browserslist": "^4.21.9",
"chalk": "^4.1.2",
"changelog-parser": "^3.0.1",
"copy-webpack-plugin": "^11.0.0",
"core-js": "^3.31.0",
"core-js": "^3.31.1",
"cross-env": "^7.0.3",
"css-loader": "^6.8.1",
"css-minimizer-webpack-plugin": "^5.0.1",
"del": "^6.1.1",
"electron": "^22.3.15",
"electron": "^22.3.16",
"electron-builder": "^24.5.2",
"electron-debug": "^3.2.0",
"electron-devtools-installer": "^3.2.0",
"electron-to-chromium": "^1.4.449",
"electron-to-chromium": "^1.4.455",
"electron-updater": "^6.1.3",
"eslint": "^8.44.0",
"eslint-config-standard": "^17.1.0",
@ -257,7 +257,7 @@
"less-loader": "^11.1.3",
"mini-css-extract-plugin": "^2.7.6",
"node-loader": "^2.0.0",
"postcss": "^8.4.24",
"postcss": "^8.4.25",
"postcss-loader": "^7.3.3",
"postcss-pxtorem": "^6.0.0",
"pug": "^3.0.2",
@ -301,7 +301,7 @@
"tunnel": "^0.0.6",
"utf-8-validate": "^6.0.3",
"vue": "~3.2.47",
"vue-router": "^4.2.2",
"vue-router": "^4.2.4",
"ws": "^8.13.0"
},
"overrides": {

View File

@ -7,3 +7,7 @@
- 修复字体设置某些字体无法应用的问题
- 修复搜索提示功能失效的问题(#1452, @Folltoshe
- 修复我的列表名右键菜单-排序歌曲按专辑名排序无效的问题(#1440
### 其他
- 更新 electron 到 v22.3.16