更新依赖

pull/930/merge
lyswhut 2022-01-12 16:52:12 +08:00
parent 5146f083ff
commit d04a5a2f92
4 changed files with 598 additions and 1114 deletions

View File

@ -1,11 +1,10 @@
module.exports = {
// upgrade: true,
upgrade: true,
// target: 'newest',
reject: [
'webpack-dev-server',
'eslint',
'electron',
'electron-builder',
'chalk',
// 'eslint-config-standard'
]

1673
package-lock.json generated

File diff suppressed because it is too large Load Diff

View File

@ -64,13 +64,13 @@
"build:renderer": "cross-env NODE_ENV=production webpack --config build-config/renderer/webpack.config.prod.js --progress",
"build:renderer-lyric": "cross-env NODE_ENV=production webpack --config build-config/renderer-lyric/webpack.config.prod.js --progress",
"build": "npm run clean:electron && npm run build:main && npm run build:renderer && npm run build:renderer-lyric",
"lint": "eslint --ext .js,.vue -f ./node_modules/eslint-formatter-friendly src",
"lint:fix": "eslint --ext .js,.vue -f ./node_modules/eslint-formatter-friendly --fix src",
"lint": "eslint --ext .js,.vue -f node_modules/eslint-formatter-friendly src",
"lint:fix": "eslint --ext .js,.vue -f node_modules/eslint-formatter-friendly --fix src",
"dp": "cross-env ELECTRON_GET_USE_PROXY=true GLOBAL_AGENT_HTTPS_PROXY=http://localhost:1081 npm run pack",
"up": "cross-env ELECTRON_GET_USE_PROXY=true GLOBAL_AGENT_HTTPS_PROXY=http://localhost:1081 npm i"
},
"browserslist": [
"Electron 13.4.0"
"Electron 13.6.7"
],
"engines": {
"node": ">= 14"
@ -178,9 +178,9 @@
"@babel/plugin-proposal-class-properties": "^7.16.7",
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@babel/plugin-transform-modules-umd": "^7.16.7",
"@babel/plugin-transform-runtime": "^7.16.7",
"@babel/plugin-transform-runtime": "^7.16.8",
"@babel/polyfill": "^7.12.1",
"@babel/preset-env": "^7.16.7",
"@babel/preset-env": "^7.16.8",
"babel-loader": "^8.2.3",
"babel-preset-minify": "^0.5.1",
"browserslist": "^4.19.1",
@ -188,21 +188,21 @@
"chalk": "^4.1.2",
"changelog-parser": "^2.8.0",
"copy-webpack-plugin": "^10.2.0",
"core-js": "^3.20.1",
"core-js": "^3.20.2",
"cross-env": "^7.0.3",
"css-loader": "^6.5.1",
"css-minimizer-webpack-plugin": "^3.3.1",
"del": "^6.0.0",
"electron": "^13.4.0",
"electron-builder": "^22.11.7",
"electron": "^13.6.7",
"electron-builder": "^22.14.5",
"electron-debug": "^3.2.0",
"electron-devtools-installer": "^3.2.0",
"electron-to-chromium": "^1.4.31",
"electron-to-chromium": "^1.4.43",
"eslint": "^7.32.0",
"eslint-config-standard": "^16.0.3",
"eslint-formatter-friendly": "^7.0.0",
"eslint-plugin-html": "^6.2.0",
"eslint-plugin-import": "^2.25.3",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^6.0.0",
"eslint-plugin-standard": "^4.1.0",
@ -212,8 +212,8 @@
"html-webpack-plugin": "^5.5.0",
"less": "^4.1.2",
"less-loader": "^10.2.0",
"markdown-it": "^12.3.0",
"mini-css-extract-plugin": "^2.4.5",
"markdown-it": "^12.3.2",
"mini-css-extract-plugin": "^2.4.6",
"node-loader": "^2.0.0",
"postcss": "^8.4.5",
"postcss-loader": "^6.2.1",
@ -238,7 +238,7 @@
"webpack-merge": "^5.8.0"
},
"dependencies": {
"bufferutil": "^4.0.5",
"bufferutil": "^4.0.6",
"crypto-js": "^4.1.1",
"electron-log": "^4.4.4",
"electron-store": "^8.0.1",
@ -246,16 +246,16 @@
"font-list": "github:lyswhut/node-font-list#4edbb1933b49a9bac1eedd63a31da16b487fe57d",
"http-terminator": "^3.0.4",
"iconv-lite": "^0.6.3",
"image-size": "^1.0.0",
"image-size": "^1.0.1",
"koa": "^2.13.4",
"long": "^5.2.0",
"mitt": "^3.0.0",
"needle": "^3.0.0",
"node-id3": "^0.2.3",
"request": "^2.88.2",
"socket.io": "^4.4.0",
"socket.io": "^4.4.1",
"sortablejs": "^1.14.0",
"utf-8-validate": "^5.0.7",
"utf-8-validate": "^5.0.8",
"vue": "^3.2.26",
"vue-i18n": "^9.2.0-beta.26",
"vue-router": "^4.0.12",

View File

@ -12,3 +12,7 @@
- 修复代理不生效的问题
- 修复`openDevTools`选项无效的问题
### 其他
- 更新 Electron 到 v13.6.7