Skip to content

Commit

Permalink
deps: upgrade deps
Browse files Browse the repository at this point in the history
  • Loading branch information
Discreater committed Oct 6, 2024
1 parent 9439f5f commit 1d5bad1
Show file tree
Hide file tree
Showing 19 changed files with 9,132 additions and 5,703 deletions.
6 changes: 5 additions & 1 deletion .vscode/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
"postcss": "css"
},
// Enable the ESlint flat config support
"eslint.experimental.useFlatConfig": true,
"eslint.useFlatConfig": true,
// Disable the default formatter, use eslint instead
"prettier.enable": false,
"editor.formatOnSave": false,
Expand All @@ -23,6 +23,10 @@
"rule": "style/*",
"severity": "off"
},
{
"rule": "format/*",
"severity": "off"
},
{
"rule": "*-indent",
"severity": "off"
Expand Down
7 changes: 7 additions & 0 deletions buf.gen.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
version: v2
inputs:
- directory: protos
plugins:
- local: protoc-gen-es
opt: target=ts
out: src/gen
22 changes: 14 additions & 8 deletions eslint.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,11 @@ import antfu from '@antfu/eslint-config';

export default await antfu({ vue: true, typescript: true, ignores: [
'**/generated/**',
'**/gen/**',
'**/target/**',
] }, {
rules: {
'style/brace-style': 'off',
'ts/brace-style': [
'style/brace-style': [
'error',
'1tbs',
{
Expand All @@ -18,21 +18,27 @@ export default await antfu({ vue: true, typescript: true, ignores: [
'error',
'always',
],
'ts/semi': [
'error',
'always',
],
'style/quotes': 'off',
'ts/quotes': [
'style/quotes': [
'error',
'single',
{
avoidEscape: true,
},
],
'unused-imports/no-unused-vars': [
'error',
{
caughtErrorsIgnorePattern: '^_',
destructuredArrayIgnorePattern: '^_',
argsIgnorePattern: '^_',
varsIgnorePattern: '^_',
},
],
'ts/no-unused-vars': [
'error',
{
caughtErrorsIgnorePattern: '^_',
destructuredArrayIgnorePattern: '^_',
argsIgnorePattern: '^_',
varsIgnorePattern: '^_',
},
Expand Down
73 changes: 37 additions & 36 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,51 +11,52 @@
"lint:fix": "eslint . --fix"
},
"dependencies": {
"@iconify-json/fluent": "^1.1.41",
"@iconify-json/fluent": "^1.2.2",
"@improbable-eng/grpc-web": "^0.15.0",
"@jellyfin/sdk": "^0.8.2",
"@jellyfin/sdk": "^0.10.0",
"@tauri-apps/api": "2.0.0-alpha.11",
"@tauri-apps/plugin-dialog": "2.0.0-alpha.3",
"@tauri-apps/plugin-log": "2.0.0-alpha.3",
"@types/lodash": "^4.14.202",
"@vitejs/plugin-vue-jsx": "^3.1.0",
"@vueuse/core": "^10.6.1",
"@tauri-apps/plugin-dialog": "2.0.0",
"@tauri-apps/plugin-log": "2.0.0",
"@types/lodash": "^4.17.10",
"@vitejs/plugin-vue-jsx": "^4.0.1",
"@vueuse/core": "^11.1.0",
"browser-headers": "^0.4.1",
"jellyfin-apiclient": "^1.11.0",
"lodash": "^4.17.21",
"long": "^5.2.3",
"naive-ui": "^2.35.0",
"naive-ui": "^2.40.1",
"perfect-scrollbar": "^1.5.5",
"pinia": "^2.1.7",
"pinia-plugin-persistedstate": "^3.2.0",
"protobufjs": "^7.2.5",
"pinia": "^2.2.4",
"pinia-plugin-persistedstate": "^3.2.3",
"rxjs": "^7.8.1",
"smooth-scrollbar": "^8.8.4",
"ts-proto": "^1.164.0",
"tslog": "^4.9.2",
"vue": "^3.3.8",
"vue-i18n": "^9.7.0",
"vue-router": "^4.2.5"
"ts-proto": "^2.2.2",
"tslog": "^4.9.3",
"vue": "^3.5.11",
"vue-i18n": "^10.0.3",
"vue-router": "^4.4.5"
},
"devDependencies": {
"@antfu/eslint-config": "^2.0.0",
"@intlify/unplugin-vue-i18n": "^1.5.0",
"@tauri-apps/cli": "2.0.0-alpha.17",
"@types/node": "^20.9.4",
"@vitejs/plugin-basic-ssl": "^1.0.2",
"@vitejs/plugin-vue": "^4.5.0",
"@vue/compiler-sfc": "^3.3.8",
"autoprefixer": "^10.4.16",
"eslint": "^8.54.0",
"postcss": "^8.4.31",
"sass": "^1.69.5",
"stylelint": "^15.11.0",
"stylelint-config-standard-scss": "^11.1.0",
"tailwindcss": "^3.3.5",
"typescript": "^5.3.2",
"unplugin-icons": "^0.17.4",
"vite": "^5.0.2",
"vite-plugin-webfont-dl": "^3.9.1",
"vue-tsc": "^1.8.22"
"@antfu/eslint-config": "^3.7.3",
"@bufbuild/buf": "^1.44.0",
"@bufbuild/protobuf": "^2.1.0",
"@bufbuild/protoc-gen-es": "^2.1.0",
"@intlify/unplugin-vue-i18n": "^5.2.0",
"@tauri-apps/cli": "2.0.1",
"@types/node": "^22.7.4",
"@vitejs/plugin-basic-ssl": "^1.1.0",
"@vitejs/plugin-vue": "^5.1.4",
"@vue/compiler-sfc": "^3.5.11",
"autoprefixer": "^10.4.20",
"eslint": "^9.12.0",
"postcss": "^8.4.47",
"sass": "^1.79.4",
"stylelint": "^16.9.0",
"stylelint-config-standard-scss": "^13.1.0",
"tailwindcss": "^3.4.13",
"typescript": "^5.6.2",
"unplugin-icons": "^0.19.3",
"vite": "^5.4.8",
"vite-plugin-webfont-dl": "^3.9.5",
"vue-tsc": "^2.1.6"
}
}
Loading

0 comments on commit 1d5bad1

Please sign in to comment.