mirror of
https://github.com/th-ch/youtube-music.git
synced 2026-01-11 18:41:47 +00:00
Compare commits
1 Commits
renovate/e
...
966cf90a93
| Author | SHA1 | Date | |
|---|---|---|---|
| 966cf90a93 |
14
README.md
14
README.md
@ -1,17 +1,3 @@
|
|||||||
<div align="center" markdown="1">
|
|
||||||
<sup>Special thanks to:</sup>
|
|
||||||
<br>
|
|
||||||
<br>
|
|
||||||
<a href="https://go.warp.dev/pear-desktop">
|
|
||||||
<img alt="Warp sponsorship" width="400" src="https://github.com/user-attachments/assets/8307ea56-e872-494a-8a9c-de0e296a06ed" />
|
|
||||||
</a>
|
|
||||||
|
|
||||||
### [Warp, built for coding with multiple AI agents](https://go.warp.dev/pear-desktop)
|
|
||||||
[Available for macOS, Linux, & Windows](https://go.warp.dev/pear-desktop)<br>
|
|
||||||
|
|
||||||
</div>
|
|
||||||
<hr>
|
|
||||||
|
|
||||||
<div align="center">
|
<div align="center">
|
||||||
|
|
||||||
# :pear: Pear Desktop
|
# :pear: Pear Desktop
|
||||||
|
|||||||
@ -18,89 +18,51 @@ export default tsEslint.config(
|
|||||||
{
|
{
|
||||||
plugins: {
|
plugins: {
|
||||||
stylistic,
|
stylistic,
|
||||||
importPlugin,
|
importPlugin
|
||||||
},
|
},
|
||||||
languageOptions: {
|
languageOptions: {
|
||||||
parser: tsEslint.parser,
|
parser: tsEslint.parser,
|
||||||
parserOptions: {
|
parserOptions: {
|
||||||
project: ['tsconfig.json', 'tsconfig.test.json'],
|
project: true,
|
||||||
sourceType: 'module',
|
sourceType: 'module',
|
||||||
ecmaVersion: 'latest',
|
ecmaVersion: 'latest'
|
||||||
},
|
}
|
||||||
},
|
},
|
||||||
rules: {
|
rules: {
|
||||||
'stylistic/arrow-parens': ['error', 'always'],
|
'stylistic/arrow-parens': ['error', 'always'],
|
||||||
'stylistic/object-curly-spacing': ['error', 'always'],
|
'stylistic/object-curly-spacing': ['error', 'always'],
|
||||||
'stylistic/jsx-pascal-case': 'error',
|
'stylistic/jsx-pascal-case': 'error',
|
||||||
'stylistic/jsx-curly-spacing': [
|
'stylistic/jsx-curly-spacing': ['error', { when: 'never', children: true }],
|
||||||
'error',
|
|
||||||
{ when: 'never', children: true },
|
|
||||||
],
|
|
||||||
'stylistic/jsx-sort-props': 'error',
|
'stylistic/jsx-sort-props': 'error',
|
||||||
'prettier/prettier': [
|
'prettier/prettier': ['error', { singleQuote: true, semi: true, tabWidth: 2, trailingComma: 'all', quoteProps: 'preserve' }],
|
||||||
'error',
|
|
||||||
{
|
|
||||||
singleQuote: true,
|
|
||||||
semi: true,
|
|
||||||
tabWidth: 2,
|
|
||||||
trailingComma: 'all',
|
|
||||||
quoteProps: 'preserve',
|
|
||||||
},
|
|
||||||
],
|
|
||||||
'@typescript-eslint/no-floating-promises': 'off',
|
'@typescript-eslint/no-floating-promises': 'off',
|
||||||
'@typescript-eslint/no-misused-promises': [
|
'@typescript-eslint/no-misused-promises': ['off', { checksVoidReturn: false }],
|
||||||
'off',
|
'@typescript-eslint/no-unused-vars': ['warn', { argsIgnorePattern: '^_' }],
|
||||||
{ checksVoidReturn: false },
|
|
||||||
],
|
|
||||||
'@typescript-eslint/no-unused-vars': [
|
|
||||||
'warn',
|
|
||||||
{ argsIgnorePattern: '^_' },
|
|
||||||
],
|
|
||||||
'@typescript-eslint/no-non-null-assertion': 'off',
|
'@typescript-eslint/no-non-null-assertion': 'off',
|
||||||
'@typescript-eslint/consistent-type-imports': [
|
'@typescript-eslint/consistent-type-imports': ['error', {
|
||||||
'error',
|
fixStyle: 'inline-type-imports',
|
||||||
{
|
prefer: 'type-imports',
|
||||||
fixStyle: 'inline-type-imports',
|
disallowTypeAnnotations: false,
|
||||||
prefer: 'type-imports',
|
}],
|
||||||
disallowTypeAnnotations: false,
|
|
||||||
},
|
|
||||||
],
|
|
||||||
'importPlugin/first': 'error',
|
'importPlugin/first': 'error',
|
||||||
'importPlugin/newline-after-import': 'off',
|
'importPlugin/newline-after-import': 'off',
|
||||||
'importPlugin/no-default-export': 'off',
|
'importPlugin/no-default-export': 'off',
|
||||||
'importPlugin/no-duplicates': 'error',
|
'importPlugin/no-duplicates': 'error',
|
||||||
'importPlugin/no-unresolved': [
|
'importPlugin/no-unresolved': ['error', { ignore: ['^virtual:', '\\?inline$', '\\?raw$', '\\?asset&asarUnpack'] }],
|
||||||
'error',
|
'importPlugin/order': ['error', {
|
||||||
{
|
'groups': ['builtin', 'external', ['internal', 'index', 'sibling'], 'parent', 'type'],
|
||||||
ignore: ['^virtual:', '\\?inline$', '\\?raw$', '\\?asset&asarUnpack'],
|
'newlines-between': 'always-and-inside-groups',
|
||||||
},
|
'alphabetize': { order: 'ignore', caseInsensitive: false }
|
||||||
],
|
}],
|
||||||
'importPlugin/order': [
|
|
||||||
'error',
|
|
||||||
{
|
|
||||||
'groups': [
|
|
||||||
'builtin',
|
|
||||||
'external',
|
|
||||||
['internal', 'index', 'sibling'],
|
|
||||||
'parent',
|
|
||||||
'type',
|
|
||||||
],
|
|
||||||
'newlines-between': 'always-and-inside-groups',
|
|
||||||
'alphabetize': { order: 'ignore', caseInsensitive: false },
|
|
||||||
},
|
|
||||||
],
|
|
||||||
'importPlugin/prefer-default-export': 'off',
|
'importPlugin/prefer-default-export': 'off',
|
||||||
'camelcase': ['error', { properties: 'never' }],
|
'camelcase': ['error', { properties: 'never' }],
|
||||||
'class-methods-use-this': 'off',
|
'class-methods-use-this': 'off',
|
||||||
'stylistic/lines-around-comment': [
|
'stylistic/lines-around-comment': ['error', {
|
||||||
'error',
|
beforeBlockComment: false,
|
||||||
{
|
afterBlockComment: false,
|
||||||
beforeBlockComment: false,
|
beforeLineComment: false,
|
||||||
afterBlockComment: false,
|
afterLineComment: false,
|
||||||
beforeLineComment: false,
|
}],
|
||||||
afterLineComment: false,
|
|
||||||
},
|
|
||||||
],
|
|
||||||
'stylistic/max-len': 'off',
|
'stylistic/max-len': 'off',
|
||||||
'stylistic/no-mixed-operators': 'warn', // prettier does not support no-mixed-operators
|
'stylistic/no-mixed-operators': 'warn', // prettier does not support no-mixed-operators
|
||||||
'stylistic/no-multi-spaces': ['error', { ignoreEOLComments: true }],
|
'stylistic/no-multi-spaces': ['error', { ignoreEOLComments: true }],
|
||||||
@ -108,20 +70,16 @@ export default tsEslint.config(
|
|||||||
'no-void': 'error',
|
'no-void': 'error',
|
||||||
'no-empty': 'off',
|
'no-empty': 'off',
|
||||||
'prefer-promise-reject-errors': 'off',
|
'prefer-promise-reject-errors': 'off',
|
||||||
'stylistic/quotes': [
|
'stylistic/quotes': ['error', 'single', {
|
||||||
'error',
|
avoidEscape: true,
|
||||||
'single',
|
allowTemplateLiterals: false,
|
||||||
{
|
}],
|
||||||
avoidEscape: true,
|
|
||||||
allowTemplateLiterals: 'never',
|
|
||||||
},
|
|
||||||
],
|
|
||||||
'stylistic/quote-props': ['error', 'consistent'],
|
'stylistic/quote-props': ['error', 'consistent'],
|
||||||
'stylistic/semi': ['error', 'always'],
|
'stylistic/semi': ['error', 'always'],
|
||||||
},
|
},
|
||||||
settings: {
|
settings: {
|
||||||
'import/parsers': {
|
'import/parsers': {
|
||||||
'@typescript-eslint/parser': ['.ts'],
|
'@typescript-eslint/parser': ['.ts']
|
||||||
},
|
},
|
||||||
'import/resolver': {
|
'import/resolver': {
|
||||||
typescript: {},
|
typescript: {},
|
||||||
|
|||||||
@ -142,7 +142,7 @@
|
|||||||
"@eslint/js": "9.35.0",
|
"@eslint/js": "9.35.0",
|
||||||
"@malept/flatpak-bundler": "0.4.0",
|
"@malept/flatpak-bundler": "0.4.0",
|
||||||
"@playwright/test": "1.55.0",
|
"@playwright/test": "1.55.0",
|
||||||
"@stylistic/eslint-plugin": "5.7.0",
|
"@stylistic/eslint-plugin": "5.3.1",
|
||||||
"@total-typescript/ts-reset": "0.6.1",
|
"@total-typescript/ts-reset": "0.6.1",
|
||||||
"@types/electron-localshortcut": "3.1.3",
|
"@types/electron-localshortcut": "3.1.3",
|
||||||
"@types/howler": "2.2.12",
|
"@types/howler": "2.2.12",
|
||||||
@ -168,9 +168,10 @@
|
|||||||
"eslint-plugin-solid": "0.14.5",
|
"eslint-plugin-solid": "0.14.5",
|
||||||
"glob": "11.1.0",
|
"glob": "11.1.0",
|
||||||
"node-gyp": "11.4.2",
|
"node-gyp": "11.4.2",
|
||||||
|
"playwright": "1.55.1",
|
||||||
"ts-morph": "27.0.2",
|
"ts-morph": "27.0.2",
|
||||||
"typescript": "5.9.3",
|
"typescript": "5.9.3",
|
||||||
"typescript-eslint": "8.43.0",
|
"typescript-eslint": "8.50.1",
|
||||||
"utf-8-validate": "6.0.6",
|
"utf-8-validate": "6.0.6",
|
||||||
"vite": "npm:rolldown-vite@7.3.0",
|
"vite": "npm:rolldown-vite@7.3.0",
|
||||||
"vite-plugin-inspect": "11.3.3",
|
"vite-plugin-inspect": "11.3.3",
|
||||||
|
|||||||
226
pnpm-lock.yaml
generated
226
pnpm-lock.yaml
generated
@ -266,8 +266,8 @@ importers:
|
|||||||
specifier: 1.55.0
|
specifier: 1.55.0
|
||||||
version: 1.55.0
|
version: 1.55.0
|
||||||
'@stylistic/eslint-plugin':
|
'@stylistic/eslint-plugin':
|
||||||
specifier: 5.7.0
|
specifier: 5.3.1
|
||||||
version: 5.7.0(eslint@9.35.0(jiti@2.6.1))
|
version: 5.3.1(eslint@9.35.0(jiti@2.6.1))
|
||||||
'@total-typescript/ts-reset':
|
'@total-typescript/ts-reset':
|
||||||
specifier: 0.6.1
|
specifier: 0.6.1
|
||||||
version: 0.6.1
|
version: 0.6.1
|
||||||
@ -330,7 +330,7 @@ importers:
|
|||||||
version: 4.4.4(eslint-plugin-import@2.32.0)(eslint@9.35.0(jiti@2.6.1))
|
version: 4.4.4(eslint-plugin-import@2.32.0)(eslint@9.35.0(jiti@2.6.1))
|
||||||
eslint-plugin-import:
|
eslint-plugin-import:
|
||||||
specifier: 2.32.0
|
specifier: 2.32.0
|
||||||
version: 2.32.0(@typescript-eslint/parser@8.43.0(eslint@9.35.0(jiti@2.6.1))(typescript@5.9.3))(eslint-import-resolver-typescript@4.4.4)(eslint@9.35.0(jiti@2.6.1))
|
version: 2.32.0(@typescript-eslint/parser@8.50.1(eslint@9.35.0(jiti@2.6.1))(typescript@5.9.3))(eslint-import-resolver-typescript@4.4.4)(eslint@9.35.0(jiti@2.6.1))
|
||||||
eslint-plugin-prettier:
|
eslint-plugin-prettier:
|
||||||
specifier: 5.5.4
|
specifier: 5.5.4
|
||||||
version: 5.5.4(eslint-config-prettier@10.1.8(eslint@9.35.0(jiti@2.6.1)))(eslint@9.35.0(jiti@2.6.1))(prettier@3.6.2)
|
version: 5.5.4(eslint-config-prettier@10.1.8(eslint@9.35.0(jiti@2.6.1)))(eslint@9.35.0(jiti@2.6.1))(prettier@3.6.2)
|
||||||
@ -343,6 +343,9 @@ importers:
|
|||||||
node-gyp:
|
node-gyp:
|
||||||
specifier: 11.4.2
|
specifier: 11.4.2
|
||||||
version: 11.4.2
|
version: 11.4.2
|
||||||
|
playwright:
|
||||||
|
specifier: 1.55.1
|
||||||
|
version: 1.55.1
|
||||||
ts-morph:
|
ts-morph:
|
||||||
specifier: 27.0.2
|
specifier: 27.0.2
|
||||||
version: 27.0.2
|
version: 27.0.2
|
||||||
@ -350,8 +353,8 @@ importers:
|
|||||||
specifier: 5.9.3
|
specifier: 5.9.3
|
||||||
version: 5.9.3
|
version: 5.9.3
|
||||||
typescript-eslint:
|
typescript-eslint:
|
||||||
specifier: 8.43.0
|
specifier: 8.50.1
|
||||||
version: 8.43.0(eslint@9.35.0(jiti@2.6.1))(typescript@5.9.3)
|
version: 8.50.1(eslint@9.35.0(jiti@2.6.1))(typescript@5.9.3)
|
||||||
utf-8-validate:
|
utf-8-validate:
|
||||||
specifier: 6.0.6
|
specifier: 6.0.6
|
||||||
version: 6.0.6
|
version: 6.0.6
|
||||||
@ -741,8 +744,8 @@ packages:
|
|||||||
cpu: [x64]
|
cpu: [x64]
|
||||||
os: [win32]
|
os: [win32]
|
||||||
|
|
||||||
'@eslint-community/eslint-utils@4.9.1':
|
'@eslint-community/eslint-utils@4.8.0':
|
||||||
resolution: {integrity: sha512-phrYmNiYppR7znFEdqgfWHXR6NCkZEK7hwWDHZUjit/2/U0r6XvkDl0SYnoM51Hq7FhCGdLDT6zxCCOY1hexsQ==}
|
resolution: {integrity: sha512-MJQFqrZgcW0UNYLGOuQpey/oTN59vyWwplvCGZztn1cKz9agZPPYpJB7h2OMmuu7VLqkvEjN8feFZJmxNF9D+Q==}
|
||||||
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
|
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
|
||||||
peerDependencies:
|
peerDependencies:
|
||||||
eslint: ^6.0.0 || ^7.0.0 || >=8.0.0
|
eslint: ^6.0.0 || ^7.0.0 || >=8.0.0
|
||||||
@ -1258,8 +1261,8 @@ packages:
|
|||||||
peerDependencies:
|
peerDependencies:
|
||||||
solid-js: ^1.6.12
|
solid-js: ^1.6.12
|
||||||
|
|
||||||
'@stylistic/eslint-plugin@5.7.0':
|
'@stylistic/eslint-plugin@5.3.1':
|
||||||
resolution: {integrity: sha512-PsSugIf9ip1H/mWKj4bi/BlEoerxXAda9ByRFsYuwsmr6af9NxJL0AaiNXs8Le7R21QR5KMiD/KdxZZ71LjAxQ==}
|
resolution: {integrity: sha512-Ykums1VYonM0TgkD0VteVq9mrlO2FhF48MDJnPyv3MktIB2ydtuhlO0AfWm7xnW1kyf5bjOqA6xc7JjviuVTxg==}
|
||||||
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
|
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
|
||||||
peerDependencies:
|
peerDependencies:
|
||||||
eslint: '>=9.0.0'
|
eslint: '>=9.0.0'
|
||||||
@ -1365,67 +1368,63 @@ packages:
|
|||||||
'@types/yauzl@2.10.3':
|
'@types/yauzl@2.10.3':
|
||||||
resolution: {integrity: sha512-oJoftv0LSuaDZE3Le4DbKX+KS9G36NzOeSap90UIK0yMA/NhKJhqlSGtNDORNRaIbQfzjXDrQa0ytJ6mNRGz/Q==}
|
resolution: {integrity: sha512-oJoftv0LSuaDZE3Le4DbKX+KS9G36NzOeSap90UIK0yMA/NhKJhqlSGtNDORNRaIbQfzjXDrQa0ytJ6mNRGz/Q==}
|
||||||
|
|
||||||
'@typescript-eslint/eslint-plugin@8.43.0':
|
'@typescript-eslint/eslint-plugin@8.50.1':
|
||||||
resolution: {integrity: sha512-8tg+gt7ENL7KewsKMKDHXR1vm8tt9eMxjJBYINf6swonlWgkYn5NwyIgXpbbDxTNU5DgpDFfj95prcTq2clIQQ==}
|
resolution: {integrity: sha512-PKhLGDq3JAg0Jk/aK890knnqduuI/Qj+udH7wCf0217IGi4gt+acgCyPVe79qoT+qKUvHMDQkwJeKW9fwl8Cyw==}
|
||||||
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
|
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
|
||||||
peerDependencies:
|
peerDependencies:
|
||||||
'@typescript-eslint/parser': ^8.43.0
|
'@typescript-eslint/parser': ^8.50.1
|
||||||
eslint: ^8.57.0 || ^9.0.0
|
eslint: ^8.57.0 || ^9.0.0
|
||||||
typescript: '>=4.8.4 <6.0.0'
|
typescript: '>=4.8.4 <6.0.0'
|
||||||
|
|
||||||
'@typescript-eslint/parser@8.43.0':
|
'@typescript-eslint/parser@8.50.1':
|
||||||
resolution: {integrity: sha512-B7RIQiTsCBBmY+yW4+ILd6mF5h1FUwJsVvpqkrgpszYifetQ2Ke+Z4u6aZh0CblkUGIdR59iYVyXqqZGkZ3aBw==}
|
resolution: {integrity: sha512-hM5faZwg7aVNa819m/5r7D0h0c9yC4DUlWAOvHAtISdFTc8xB86VmX5Xqabrama3wIPJ/q9RbGS1worb6JfnMg==}
|
||||||
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
|
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
|
||||||
peerDependencies:
|
peerDependencies:
|
||||||
eslint: ^8.57.0 || ^9.0.0
|
eslint: ^8.57.0 || ^9.0.0
|
||||||
typescript: '>=4.8.4 <6.0.0'
|
typescript: '>=4.8.4 <6.0.0'
|
||||||
|
|
||||||
'@typescript-eslint/project-service@8.43.0':
|
'@typescript-eslint/project-service@8.50.1':
|
||||||
resolution: {integrity: sha512-htB/+D/BIGoNTQYffZw4uM4NzzuolCoaA/BusuSIcC8YjmBYQioew5VUZAYdAETPjeed0hqCaW7EHg+Robq8uw==}
|
resolution: {integrity: sha512-E1ur1MCVf+YiP89+o4Les/oBAVzmSbeRB0MQLfSlYtbWU17HPxZ6Bhs5iYmKZRALvEuBoXIZMOIRRc/P++Ortg==}
|
||||||
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
|
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
|
||||||
peerDependencies:
|
peerDependencies:
|
||||||
typescript: '>=4.8.4 <6.0.0'
|
typescript: '>=4.8.4 <6.0.0'
|
||||||
|
|
||||||
'@typescript-eslint/scope-manager@8.43.0':
|
'@typescript-eslint/scope-manager@8.50.1':
|
||||||
resolution: {integrity: sha512-daSWlQ87ZhsjrbMLvpuuMAt3y4ba57AuvadcR7f3nl8eS3BjRc8L9VLxFLk92RL5xdXOg6IQ+qKjjqNEimGuAg==}
|
resolution: {integrity: sha512-mfRx06Myt3T4vuoHaKi8ZWNTPdzKPNBhiblze5N50//TSHOAQQevl/aolqA/BcqqbJ88GUnLqjjcBc8EWdBcVw==}
|
||||||
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
|
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
|
||||||
|
|
||||||
'@typescript-eslint/tsconfig-utils@8.43.0':
|
'@typescript-eslint/tsconfig-utils@8.50.1':
|
||||||
resolution: {integrity: sha512-ALC2prjZcj2YqqL5X/bwWQmHA2em6/94GcbB/KKu5SX3EBDOsqztmmX1kMkvAJHzxk7TazKzJfFiEIagNV3qEA==}
|
resolution: {integrity: sha512-ooHmotT/lCWLXi55G4mvaUF60aJa012QzvLK0Y+Mp4WdSt17QhMhWOaBWeGTFVkb2gDgBe19Cxy1elPXylslDw==}
|
||||||
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
|
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
|
||||||
peerDependencies:
|
peerDependencies:
|
||||||
typescript: '>=4.8.4 <6.0.0'
|
typescript: '>=4.8.4 <6.0.0'
|
||||||
|
|
||||||
'@typescript-eslint/type-utils@8.43.0':
|
'@typescript-eslint/type-utils@8.50.1':
|
||||||
resolution: {integrity: sha512-qaH1uLBpBuBBuRf8c1mLJ6swOfzCXryhKND04Igr4pckzSEW9JX5Aw9AgW00kwfjWJF0kk0ps9ExKTfvXfw4Qg==}
|
resolution: {integrity: sha512-7J3bf022QZE42tYMO6SL+6lTPKFk/WphhRPe9Tw/el+cEwzLz1Jjz2PX3GtGQVxooLDKeMVmMt7fWpYRdG5Etg==}
|
||||||
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
|
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
|
||||||
peerDependencies:
|
peerDependencies:
|
||||||
eslint: ^8.57.0 || ^9.0.0
|
eslint: ^8.57.0 || ^9.0.0
|
||||||
typescript: '>=4.8.4 <6.0.0'
|
typescript: '>=4.8.4 <6.0.0'
|
||||||
|
|
||||||
'@typescript-eslint/types@8.43.0':
|
'@typescript-eslint/types@8.50.1':
|
||||||
resolution: {integrity: sha512-vQ2FZaxJpydjSZJKiSW/LJsabFFvV7KgLC5DiLhkBcykhQj8iK9BOaDmQt74nnKdLvceM5xmhaTF+pLekrxEkw==}
|
resolution: {integrity: sha512-v5lFIS2feTkNyMhd7AucE/9j/4V9v5iIbpVRncjk/K0sQ6Sb+Np9fgYS/63n6nwqahHQvbmujeBL7mp07Q9mlA==}
|
||||||
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
|
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
|
||||||
|
|
||||||
'@typescript-eslint/types@8.52.0':
|
'@typescript-eslint/typescript-estree@8.50.1':
|
||||||
resolution: {integrity: sha512-LWQV1V4q9V4cT4H5JCIx3481iIFxH1UkVk+ZkGGAV1ZGcjGI9IoFOfg3O6ywz8QqCDEp7Inlg6kovMofsNRaGg==}
|
resolution: {integrity: sha512-woHPdW+0gj53aM+cxchymJCrh0cyS7BTIdcDxWUNsclr9VDkOSbqC13juHzxOmQ22dDkMZEpZB+3X1WpUvzgVQ==}
|
||||||
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
|
|
||||||
|
|
||||||
'@typescript-eslint/typescript-estree@8.43.0':
|
|
||||||
resolution: {integrity: sha512-7Vv6zlAhPb+cvEpP06WXXy/ZByph9iL6BQRBDj4kmBsW98AqEeQHlj/13X+sZOrKSo9/rNKH4Ul4f6EICREFdw==}
|
|
||||||
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
|
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
|
||||||
peerDependencies:
|
peerDependencies:
|
||||||
typescript: '>=4.8.4 <6.0.0'
|
typescript: '>=4.8.4 <6.0.0'
|
||||||
|
|
||||||
'@typescript-eslint/utils@8.43.0':
|
'@typescript-eslint/utils@8.50.1':
|
||||||
resolution: {integrity: sha512-S1/tEmkUeeswxd0GGcnwuVQPFWo8NzZTOMxCvw8BX7OMxnNae+i8Tm7REQen/SwUIPoPqfKn7EaZ+YLpiB3k9g==}
|
resolution: {integrity: sha512-lCLp8H1T9T7gPbEuJSnHwnSuO9mDf8mfK/Nion5mZmiEaQD9sWf9W4dfeFqRyqRjF06/kBuTmAqcs9sewM2NbQ==}
|
||||||
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
|
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
|
||||||
peerDependencies:
|
peerDependencies:
|
||||||
eslint: ^8.57.0 || ^9.0.0
|
eslint: ^8.57.0 || ^9.0.0
|
||||||
typescript: '>=4.8.4 <6.0.0'
|
typescript: '>=4.8.4 <6.0.0'
|
||||||
|
|
||||||
'@typescript-eslint/visitor-keys@8.43.0':
|
'@typescript-eslint/visitor-keys@8.50.1':
|
||||||
resolution: {integrity: sha512-T+S1KqRD4sg/bHfLwrpF/K3gQLBM1n7Rp7OjjikjTEssI2YJzQpi5WXoynOaQ93ERIuq3O8RBTOUYDKszUCEHw==}
|
resolution: {integrity: sha512-IrDKrw7pCRUR94zeuCSUWQ+w8JEf5ZX5jl/e6AHGSLi1/zIr0lgutfn/7JpfCey+urpgQEdrZVYzCaVVKiTwhQ==}
|
||||||
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
|
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
|
||||||
|
|
||||||
'@unrs/resolver-binding-android-arm-eabi@1.11.1':
|
'@unrs/resolver-binding-android-arm-eabi@1.11.1':
|
||||||
@ -2506,10 +2505,6 @@ packages:
|
|||||||
resolution: {integrity: sha512-Uhdk5sfqcee/9H/rCOJikYz67o0a2Tw2hGRPOG2Y1R2dg7brRe1uG0yaNQDHu+TO/uQPF/5eCapvYSmHUjt7JQ==}
|
resolution: {integrity: sha512-Uhdk5sfqcee/9H/rCOJikYz67o0a2Tw2hGRPOG2Y1R2dg7brRe1uG0yaNQDHu+TO/uQPF/5eCapvYSmHUjt7JQ==}
|
||||||
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
|
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
|
||||||
|
|
||||||
eslint-visitor-keys@5.0.0:
|
|
||||||
resolution: {integrity: sha512-A0XeIi7CXU7nPlfHS9loMYEKxUaONu/hTEzHTGba9Huu94Cq1hPivf+DE5erJozZOky0LfvXAyrV/tcswpLI0Q==}
|
|
||||||
engines: {node: ^20.19.0 || ^22.13.0 || >=24}
|
|
||||||
|
|
||||||
eslint@9.35.0:
|
eslint@9.35.0:
|
||||||
resolution: {integrity: sha512-QePbBFMJFjgmlE+cXAlbHZbHpdFVS2E/6vzCy7aKlebddvl1vadiC4JFV5u/wqTkNUwEV8WrQi257jf5f06hrg==}
|
resolution: {integrity: sha512-QePbBFMJFjgmlE+cXAlbHZbHpdFVS2E/6vzCy7aKlebddvl1vadiC4JFV5u/wqTkNUwEV8WrQi257jf5f06hrg==}
|
||||||
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
|
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
|
||||||
@ -2524,10 +2519,6 @@ packages:
|
|||||||
resolution: {integrity: sha512-j6PAQ2uUr79PZhBjP5C5fhl8e39FmRnOjsD5lGnWrFU8i2G776tBK7+nP8KuQUTTyAZUwfQqXAgrVH5MbH9CYQ==}
|
resolution: {integrity: sha512-j6PAQ2uUr79PZhBjP5C5fhl8e39FmRnOjsD5lGnWrFU8i2G776tBK7+nP8KuQUTTyAZUwfQqXAgrVH5MbH9CYQ==}
|
||||||
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
|
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
|
||||||
|
|
||||||
espree@11.0.0:
|
|
||||||
resolution: {integrity: sha512-+gMeWRrIh/NsG+3NaLeWHuyeyk70p2tbvZIWBYcqQ4/7Xvars6GYTZNhF1sIeLcc6Wb11He5ffz3hsHyXFrw5A==}
|
|
||||||
engines: {node: ^20.19.0 || ^22.13.0 || >=24}
|
|
||||||
|
|
||||||
esquery@1.6.0:
|
esquery@1.6.0:
|
||||||
resolution: {integrity: sha512-ca9pw9fomFcKPvFLXhBKUK90ZvGibiGOvRJNbjljY7s7uq/5YO4BOzcYtJqExdx99rF6aAcnRxHmcUHcz6sQsg==}
|
resolution: {integrity: sha512-ca9pw9fomFcKPvFLXhBKUK90ZvGibiGOvRJNbjljY7s7uq/5YO4BOzcYtJqExdx99rF6aAcnRxHmcUHcz6sQsg==}
|
||||||
engines: {node: '>=0.10'}
|
engines: {node: '>=0.10'}
|
||||||
@ -2825,9 +2816,6 @@ packages:
|
|||||||
graceful-fs@4.2.11:
|
graceful-fs@4.2.11:
|
||||||
resolution: {integrity: sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==}
|
resolution: {integrity: sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==}
|
||||||
|
|
||||||
graphemer@1.4.0:
|
|
||||||
resolution: {integrity: sha512-EtKwoO6kxCL9WO5xipiHTZlSzBm7WLT627TqC/uVRd0HKmq8NXyebnNYxDoBi7wt8eTWrUrKXCOVaFq9x1kgag==}
|
|
||||||
|
|
||||||
hanja@1.1.5:
|
hanja@1.1.5:
|
||||||
resolution: {integrity: sha512-gKNEkX+IIBmxXUIm5Lf859YlvHnGD01kbiHL+7CoV1ZxGI+EttflD1k/Ntz8zbymMVIlVELunTk8pK5SNYOVlg==}
|
resolution: {integrity: sha512-gKNEkX+IIBmxXUIm5Lf859YlvHnGD01kbiHL+7CoV1ZxGI+EttflD1k/Ntz8zbymMVIlVELunTk8pK5SNYOVlg==}
|
||||||
|
|
||||||
@ -3911,11 +3899,21 @@ packages:
|
|||||||
engines: {node: '>=18'}
|
engines: {node: '>=18'}
|
||||||
hasBin: true
|
hasBin: true
|
||||||
|
|
||||||
|
playwright-core@1.55.1:
|
||||||
|
resolution: {integrity: sha512-Z6Mh9mkwX+zxSlHqdr5AOcJnfp+xUWLCt9uKV18fhzA8eyxUd8NUWzAjxUh55RZKSYwDGX0cfaySdhZJGMoJ+w==}
|
||||||
|
engines: {node: '>=18'}
|
||||||
|
hasBin: true
|
||||||
|
|
||||||
playwright@1.55.0:
|
playwright@1.55.0:
|
||||||
resolution: {integrity: sha512-sdCWStblvV1YU909Xqx0DhOjPZE4/5lJsIS84IfN9dAZfcl/CIZ5O8l3o0j7hPMjDvqoTF8ZUcc+i/GL5erstA==}
|
resolution: {integrity: sha512-sdCWStblvV1YU909Xqx0DhOjPZE4/5lJsIS84IfN9dAZfcl/CIZ5O8l3o0j7hPMjDvqoTF8ZUcc+i/GL5erstA==}
|
||||||
engines: {node: '>=18'}
|
engines: {node: '>=18'}
|
||||||
hasBin: true
|
hasBin: true
|
||||||
|
|
||||||
|
playwright@1.55.1:
|
||||||
|
resolution: {integrity: sha512-cJW4Xd/G3v5ovXtJJ52MAOclqeac9S/aGGgRzLabuF8TnIb6xHvMzKIa6JmrRzUkeXJgfL1MhukP0NK6l39h3A==}
|
||||||
|
engines: {node: '>=18'}
|
||||||
|
hasBin: true
|
||||||
|
|
||||||
plist@3.1.0:
|
plist@3.1.0:
|
||||||
resolution: {integrity: sha512-uysumyrvkUX0rX/dEVqt8gC3sTBzd4zoWfLeS29nb53imdaXVvLINYXTI2GNqzaMuvacNx4uJQ8+b3zXR0pkgQ==}
|
resolution: {integrity: sha512-uysumyrvkUX0rX/dEVqt8gC3sTBzd4zoWfLeS29nb53imdaXVvLINYXTI2GNqzaMuvacNx4uJQ8+b3zXR0pkgQ==}
|
||||||
engines: {node: '>=10.4.0'}
|
engines: {node: '>=10.4.0'}
|
||||||
@ -4577,8 +4575,8 @@ packages:
|
|||||||
resolution: {integrity: sha512-3KS2b+kL7fsuk/eJZ7EQdnEmQoaho/r6KUef7hxvltNA5DR8NAUM+8wJMbJyZ4G9/7i3v5zPBIMN5aybAh2/Jg==}
|
resolution: {integrity: sha512-3KS2b+kL7fsuk/eJZ7EQdnEmQoaho/r6KUef7hxvltNA5DR8NAUM+8wJMbJyZ4G9/7i3v5zPBIMN5aybAh2/Jg==}
|
||||||
engines: {node: '>= 0.4'}
|
engines: {node: '>= 0.4'}
|
||||||
|
|
||||||
typescript-eslint@8.43.0:
|
typescript-eslint@8.50.1:
|
||||||
resolution: {integrity: sha512-FyRGJKUGvcFekRRcBKFBlAhnp4Ng8rhe8tuvvkR9OiU0gfd4vyvTRQHEckO6VDlH57jbeUQem2IpqPq9kLJH+w==}
|
resolution: {integrity: sha512-ytTHO+SoYSbhAH9CrYnMhiLx8To6PSSvqnvXyPUgPETCvB6eBKmTI9w6XMPS3HsBRGkwTVBX+urA8dYQx6bHfQ==}
|
||||||
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
|
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
|
||||||
peerDependencies:
|
peerDependencies:
|
||||||
eslint: ^8.57.0 || ^9.0.0
|
eslint: ^8.57.0 || ^9.0.0
|
||||||
@ -5303,7 +5301,7 @@ snapshots:
|
|||||||
'@esbuild/win32-x64@0.25.9':
|
'@esbuild/win32-x64@0.25.9':
|
||||||
optional: true
|
optional: true
|
||||||
|
|
||||||
'@eslint-community/eslint-utils@4.9.1(eslint@9.35.0(jiti@2.6.1))':
|
'@eslint-community/eslint-utils@4.8.0(eslint@9.35.0(jiti@2.6.1))':
|
||||||
dependencies:
|
dependencies:
|
||||||
eslint: 9.35.0(jiti@2.6.1)
|
eslint: 9.35.0(jiti@2.6.1)
|
||||||
eslint-visitor-keys: 3.4.3
|
eslint-visitor-keys: 3.4.3
|
||||||
@ -5890,13 +5888,13 @@ snapshots:
|
|||||||
dependencies:
|
dependencies:
|
||||||
solid-js: 1.9.9
|
solid-js: 1.9.9
|
||||||
|
|
||||||
'@stylistic/eslint-plugin@5.7.0(eslint@9.35.0(jiti@2.6.1))':
|
'@stylistic/eslint-plugin@5.3.1(eslint@9.35.0(jiti@2.6.1))':
|
||||||
dependencies:
|
dependencies:
|
||||||
'@eslint-community/eslint-utils': 4.9.1(eslint@9.35.0(jiti@2.6.1))
|
'@eslint-community/eslint-utils': 4.8.0(eslint@9.35.0(jiti@2.6.1))
|
||||||
'@typescript-eslint/types': 8.52.0
|
'@typescript-eslint/types': 8.50.1
|
||||||
eslint: 9.35.0(jiti@2.6.1)
|
eslint: 9.35.0(jiti@2.6.1)
|
||||||
eslint-visitor-keys: 5.0.0
|
eslint-visitor-keys: 4.2.1
|
||||||
espree: 11.0.0
|
espree: 10.4.0
|
||||||
estraverse: 5.3.0
|
estraverse: 5.3.0
|
||||||
picomatch: 4.0.3
|
picomatch: 4.0.3
|
||||||
|
|
||||||
@ -6019,16 +6017,15 @@ snapshots:
|
|||||||
'@types/node': 24.3.0
|
'@types/node': 24.3.0
|
||||||
optional: true
|
optional: true
|
||||||
|
|
||||||
'@typescript-eslint/eslint-plugin@8.43.0(@typescript-eslint/parser@8.43.0(eslint@9.35.0(jiti@2.6.1))(typescript@5.9.3))(eslint@9.35.0(jiti@2.6.1))(typescript@5.9.3)':
|
'@typescript-eslint/eslint-plugin@8.50.1(@typescript-eslint/parser@8.50.1(eslint@9.35.0(jiti@2.6.1))(typescript@5.9.3))(eslint@9.35.0(jiti@2.6.1))(typescript@5.9.3)':
|
||||||
dependencies:
|
dependencies:
|
||||||
'@eslint-community/regexpp': 4.12.1
|
'@eslint-community/regexpp': 4.12.1
|
||||||
'@typescript-eslint/parser': 8.43.0(eslint@9.35.0(jiti@2.6.1))(typescript@5.9.3)
|
'@typescript-eslint/parser': 8.50.1(eslint@9.35.0(jiti@2.6.1))(typescript@5.9.3)
|
||||||
'@typescript-eslint/scope-manager': 8.43.0
|
'@typescript-eslint/scope-manager': 8.50.1
|
||||||
'@typescript-eslint/type-utils': 8.43.0(eslint@9.35.0(jiti@2.6.1))(typescript@5.9.3)
|
'@typescript-eslint/type-utils': 8.50.1(eslint@9.35.0(jiti@2.6.1))(typescript@5.9.3)
|
||||||
'@typescript-eslint/utils': 8.43.0(eslint@9.35.0(jiti@2.6.1))(typescript@5.9.3)
|
'@typescript-eslint/utils': 8.50.1(eslint@9.35.0(jiti@2.6.1))(typescript@5.9.3)
|
||||||
'@typescript-eslint/visitor-keys': 8.43.0
|
'@typescript-eslint/visitor-keys': 8.50.1
|
||||||
eslint: 9.35.0(jiti@2.6.1)
|
eslint: 9.35.0(jiti@2.6.1)
|
||||||
graphemer: 1.4.0
|
|
||||||
ignore: 7.0.5
|
ignore: 7.0.5
|
||||||
natural-compare: 1.4.0
|
natural-compare: 1.4.0
|
||||||
ts-api-utils: 2.1.0(typescript@5.9.3)
|
ts-api-utils: 2.1.0(typescript@5.9.3)
|
||||||
@ -6036,41 +6033,41 @@ snapshots:
|
|||||||
transitivePeerDependencies:
|
transitivePeerDependencies:
|
||||||
- supports-color
|
- supports-color
|
||||||
|
|
||||||
'@typescript-eslint/parser@8.43.0(eslint@9.35.0(jiti@2.6.1))(typescript@5.9.3)':
|
'@typescript-eslint/parser@8.50.1(eslint@9.35.0(jiti@2.6.1))(typescript@5.9.3)':
|
||||||
dependencies:
|
dependencies:
|
||||||
'@typescript-eslint/scope-manager': 8.43.0
|
'@typescript-eslint/scope-manager': 8.50.1
|
||||||
'@typescript-eslint/types': 8.43.0
|
'@typescript-eslint/types': 8.50.1
|
||||||
'@typescript-eslint/typescript-estree': 8.43.0(typescript@5.9.3)
|
'@typescript-eslint/typescript-estree': 8.50.1(typescript@5.9.3)
|
||||||
'@typescript-eslint/visitor-keys': 8.43.0
|
'@typescript-eslint/visitor-keys': 8.50.1
|
||||||
debug: 4.4.1
|
debug: 4.4.1
|
||||||
eslint: 9.35.0(jiti@2.6.1)
|
eslint: 9.35.0(jiti@2.6.1)
|
||||||
typescript: 5.9.3
|
typescript: 5.9.3
|
||||||
transitivePeerDependencies:
|
transitivePeerDependencies:
|
||||||
- supports-color
|
- supports-color
|
||||||
|
|
||||||
'@typescript-eslint/project-service@8.43.0(typescript@5.9.3)':
|
'@typescript-eslint/project-service@8.50.1(typescript@5.9.3)':
|
||||||
dependencies:
|
dependencies:
|
||||||
'@typescript-eslint/tsconfig-utils': 8.43.0(typescript@5.9.3)
|
'@typescript-eslint/tsconfig-utils': 8.50.1(typescript@5.9.3)
|
||||||
'@typescript-eslint/types': 8.52.0
|
'@typescript-eslint/types': 8.50.1
|
||||||
debug: 4.4.1
|
debug: 4.4.1
|
||||||
typescript: 5.9.3
|
typescript: 5.9.3
|
||||||
transitivePeerDependencies:
|
transitivePeerDependencies:
|
||||||
- supports-color
|
- supports-color
|
||||||
|
|
||||||
'@typescript-eslint/scope-manager@8.43.0':
|
'@typescript-eslint/scope-manager@8.50.1':
|
||||||
dependencies:
|
dependencies:
|
||||||
'@typescript-eslint/types': 8.43.0
|
'@typescript-eslint/types': 8.50.1
|
||||||
'@typescript-eslint/visitor-keys': 8.43.0
|
'@typescript-eslint/visitor-keys': 8.50.1
|
||||||
|
|
||||||
'@typescript-eslint/tsconfig-utils@8.43.0(typescript@5.9.3)':
|
'@typescript-eslint/tsconfig-utils@8.50.1(typescript@5.9.3)':
|
||||||
dependencies:
|
dependencies:
|
||||||
typescript: 5.9.3
|
typescript: 5.9.3
|
||||||
|
|
||||||
'@typescript-eslint/type-utils@8.43.0(eslint@9.35.0(jiti@2.6.1))(typescript@5.9.3)':
|
'@typescript-eslint/type-utils@8.50.1(eslint@9.35.0(jiti@2.6.1))(typescript@5.9.3)':
|
||||||
dependencies:
|
dependencies:
|
||||||
'@typescript-eslint/types': 8.43.0
|
'@typescript-eslint/types': 8.50.1
|
||||||
'@typescript-eslint/typescript-estree': 8.43.0(typescript@5.9.3)
|
'@typescript-eslint/typescript-estree': 8.50.1(typescript@5.9.3)
|
||||||
'@typescript-eslint/utils': 8.43.0(eslint@9.35.0(jiti@2.6.1))(typescript@5.9.3)
|
'@typescript-eslint/utils': 8.50.1(eslint@9.35.0(jiti@2.6.1))(typescript@5.9.3)
|
||||||
debug: 4.4.1
|
debug: 4.4.1
|
||||||
eslint: 9.35.0(jiti@2.6.1)
|
eslint: 9.35.0(jiti@2.6.1)
|
||||||
ts-api-utils: 2.1.0(typescript@5.9.3)
|
ts-api-utils: 2.1.0(typescript@5.9.3)
|
||||||
@ -6078,40 +6075,37 @@ snapshots:
|
|||||||
transitivePeerDependencies:
|
transitivePeerDependencies:
|
||||||
- supports-color
|
- supports-color
|
||||||
|
|
||||||
'@typescript-eslint/types@8.43.0': {}
|
'@typescript-eslint/types@8.50.1': {}
|
||||||
|
|
||||||
'@typescript-eslint/types@8.52.0': {}
|
'@typescript-eslint/typescript-estree@8.50.1(typescript@5.9.3)':
|
||||||
|
|
||||||
'@typescript-eslint/typescript-estree@8.43.0(typescript@5.9.3)':
|
|
||||||
dependencies:
|
dependencies:
|
||||||
'@typescript-eslint/project-service': 8.43.0(typescript@5.9.3)
|
'@typescript-eslint/project-service': 8.50.1(typescript@5.9.3)
|
||||||
'@typescript-eslint/tsconfig-utils': 8.43.0(typescript@5.9.3)
|
'@typescript-eslint/tsconfig-utils': 8.50.1(typescript@5.9.3)
|
||||||
'@typescript-eslint/types': 8.43.0
|
'@typescript-eslint/types': 8.50.1
|
||||||
'@typescript-eslint/visitor-keys': 8.43.0
|
'@typescript-eslint/visitor-keys': 8.50.1
|
||||||
debug: 4.4.1
|
debug: 4.4.1
|
||||||
fast-glob: 3.3.3
|
|
||||||
is-glob: 4.0.3
|
|
||||||
minimatch: 9.0.5
|
minimatch: 9.0.5
|
||||||
semver: 7.7.3
|
semver: 7.7.3
|
||||||
|
tinyglobby: 0.2.15
|
||||||
ts-api-utils: 2.1.0(typescript@5.9.3)
|
ts-api-utils: 2.1.0(typescript@5.9.3)
|
||||||
typescript: 5.9.3
|
typescript: 5.9.3
|
||||||
transitivePeerDependencies:
|
transitivePeerDependencies:
|
||||||
- supports-color
|
- supports-color
|
||||||
|
|
||||||
'@typescript-eslint/utils@8.43.0(eslint@9.35.0(jiti@2.6.1))(typescript@5.9.3)':
|
'@typescript-eslint/utils@8.50.1(eslint@9.35.0(jiti@2.6.1))(typescript@5.9.3)':
|
||||||
dependencies:
|
dependencies:
|
||||||
'@eslint-community/eslint-utils': 4.9.1(eslint@9.35.0(jiti@2.6.1))
|
'@eslint-community/eslint-utils': 4.8.0(eslint@9.35.0(jiti@2.6.1))
|
||||||
'@typescript-eslint/scope-manager': 8.43.0
|
'@typescript-eslint/scope-manager': 8.50.1
|
||||||
'@typescript-eslint/types': 8.43.0
|
'@typescript-eslint/types': 8.50.1
|
||||||
'@typescript-eslint/typescript-estree': 8.43.0(typescript@5.9.3)
|
'@typescript-eslint/typescript-estree': 8.50.1(typescript@5.9.3)
|
||||||
eslint: 9.35.0(jiti@2.6.1)
|
eslint: 9.35.0(jiti@2.6.1)
|
||||||
typescript: 5.9.3
|
typescript: 5.9.3
|
||||||
transitivePeerDependencies:
|
transitivePeerDependencies:
|
||||||
- supports-color
|
- supports-color
|
||||||
|
|
||||||
'@typescript-eslint/visitor-keys@8.43.0':
|
'@typescript-eslint/visitor-keys@8.50.1':
|
||||||
dependencies:
|
dependencies:
|
||||||
'@typescript-eslint/types': 8.43.0
|
'@typescript-eslint/types': 8.50.1
|
||||||
eslint-visitor-keys: 4.2.1
|
eslint-visitor-keys: 4.2.1
|
||||||
|
|
||||||
'@unrs/resolver-binding-android-arm-eabi@1.11.1':
|
'@unrs/resolver-binding-android-arm-eabi@1.11.1':
|
||||||
@ -7384,7 +7378,7 @@ snapshots:
|
|||||||
eslint-import-resolver-exports@1.0.0-beta.5(eslint-plugin-import@2.32.0)(eslint@9.35.0(jiti@2.6.1)):
|
eslint-import-resolver-exports@1.0.0-beta.5(eslint-plugin-import@2.32.0)(eslint@9.35.0(jiti@2.6.1)):
|
||||||
dependencies:
|
dependencies:
|
||||||
eslint: 9.35.0(jiti@2.6.1)
|
eslint: 9.35.0(jiti@2.6.1)
|
||||||
eslint-plugin-import: 2.32.0(@typescript-eslint/parser@8.43.0(eslint@9.35.0(jiti@2.6.1))(typescript@5.9.3))(eslint-import-resolver-typescript@4.4.4)(eslint@9.35.0(jiti@2.6.1))
|
eslint-plugin-import: 2.32.0(@typescript-eslint/parser@8.50.1(eslint@9.35.0(jiti@2.6.1))(typescript@5.9.3))(eslint-import-resolver-typescript@4.4.4)(eslint@9.35.0(jiti@2.6.1))
|
||||||
resolve.exports: 2.0.3
|
resolve.exports: 2.0.3
|
||||||
|
|
||||||
eslint-import-resolver-node@0.3.9:
|
eslint-import-resolver-node@0.3.9:
|
||||||
@ -7406,22 +7400,22 @@ snapshots:
|
|||||||
tinyglobby: 0.2.15
|
tinyglobby: 0.2.15
|
||||||
unrs-resolver: 1.11.1
|
unrs-resolver: 1.11.1
|
||||||
optionalDependencies:
|
optionalDependencies:
|
||||||
eslint-plugin-import: 2.32.0(@typescript-eslint/parser@8.43.0(eslint@9.35.0(jiti@2.6.1))(typescript@5.9.3))(eslint-import-resolver-typescript@4.4.4)(eslint@9.35.0(jiti@2.6.1))
|
eslint-plugin-import: 2.32.0(@typescript-eslint/parser@8.50.1(eslint@9.35.0(jiti@2.6.1))(typescript@5.9.3))(eslint-import-resolver-typescript@4.4.4)(eslint@9.35.0(jiti@2.6.1))
|
||||||
transitivePeerDependencies:
|
transitivePeerDependencies:
|
||||||
- supports-color
|
- supports-color
|
||||||
|
|
||||||
eslint-module-utils@2.12.1(@typescript-eslint/parser@8.43.0(eslint@9.35.0(jiti@2.6.1))(typescript@5.9.3))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@4.4.4)(eslint@9.35.0(jiti@2.6.1)):
|
eslint-module-utils@2.12.1(@typescript-eslint/parser@8.50.1(eslint@9.35.0(jiti@2.6.1))(typescript@5.9.3))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@4.4.4)(eslint@9.35.0(jiti@2.6.1)):
|
||||||
dependencies:
|
dependencies:
|
||||||
debug: 3.2.7
|
debug: 3.2.7
|
||||||
optionalDependencies:
|
optionalDependencies:
|
||||||
'@typescript-eslint/parser': 8.43.0(eslint@9.35.0(jiti@2.6.1))(typescript@5.9.3)
|
'@typescript-eslint/parser': 8.50.1(eslint@9.35.0(jiti@2.6.1))(typescript@5.9.3)
|
||||||
eslint: 9.35.0(jiti@2.6.1)
|
eslint: 9.35.0(jiti@2.6.1)
|
||||||
eslint-import-resolver-node: 0.3.9
|
eslint-import-resolver-node: 0.3.9
|
||||||
eslint-import-resolver-typescript: 4.4.4(eslint-plugin-import@2.32.0)(eslint@9.35.0(jiti@2.6.1))
|
eslint-import-resolver-typescript: 4.4.4(eslint-plugin-import@2.32.0)(eslint@9.35.0(jiti@2.6.1))
|
||||||
transitivePeerDependencies:
|
transitivePeerDependencies:
|
||||||
- supports-color
|
- supports-color
|
||||||
|
|
||||||
eslint-plugin-import@2.32.0(@typescript-eslint/parser@8.43.0(eslint@9.35.0(jiti@2.6.1))(typescript@5.9.3))(eslint-import-resolver-typescript@4.4.4)(eslint@9.35.0(jiti@2.6.1)):
|
eslint-plugin-import@2.32.0(@typescript-eslint/parser@8.50.1(eslint@9.35.0(jiti@2.6.1))(typescript@5.9.3))(eslint-import-resolver-typescript@4.4.4)(eslint@9.35.0(jiti@2.6.1)):
|
||||||
dependencies:
|
dependencies:
|
||||||
'@rtsao/scc': 1.1.0
|
'@rtsao/scc': 1.1.0
|
||||||
array-includes: 3.1.9
|
array-includes: 3.1.9
|
||||||
@ -7432,7 +7426,7 @@ snapshots:
|
|||||||
doctrine: 2.1.0
|
doctrine: 2.1.0
|
||||||
eslint: 9.35.0(jiti@2.6.1)
|
eslint: 9.35.0(jiti@2.6.1)
|
||||||
eslint-import-resolver-node: 0.3.9
|
eslint-import-resolver-node: 0.3.9
|
||||||
eslint-module-utils: 2.12.1(@typescript-eslint/parser@8.43.0(eslint@9.35.0(jiti@2.6.1))(typescript@5.9.3))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@4.4.4)(eslint@9.35.0(jiti@2.6.1))
|
eslint-module-utils: 2.12.1(@typescript-eslint/parser@8.50.1(eslint@9.35.0(jiti@2.6.1))(typescript@5.9.3))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@4.4.4)(eslint@9.35.0(jiti@2.6.1))
|
||||||
hasown: 2.0.2
|
hasown: 2.0.2
|
||||||
is-core-module: 2.16.1
|
is-core-module: 2.16.1
|
||||||
is-glob: 4.0.3
|
is-glob: 4.0.3
|
||||||
@ -7444,7 +7438,7 @@ snapshots:
|
|||||||
string.prototype.trimend: 1.0.9
|
string.prototype.trimend: 1.0.9
|
||||||
tsconfig-paths: 3.15.0
|
tsconfig-paths: 3.15.0
|
||||||
optionalDependencies:
|
optionalDependencies:
|
||||||
'@typescript-eslint/parser': 8.43.0(eslint@9.35.0(jiti@2.6.1))(typescript@5.9.3)
|
'@typescript-eslint/parser': 8.50.1(eslint@9.35.0(jiti@2.6.1))(typescript@5.9.3)
|
||||||
transitivePeerDependencies:
|
transitivePeerDependencies:
|
||||||
- eslint-import-resolver-typescript
|
- eslint-import-resolver-typescript
|
||||||
- eslint-import-resolver-webpack
|
- eslint-import-resolver-webpack
|
||||||
@ -7461,7 +7455,7 @@ snapshots:
|
|||||||
|
|
||||||
eslint-plugin-solid@0.14.5(eslint@9.35.0(jiti@2.6.1))(typescript@5.9.3):
|
eslint-plugin-solid@0.14.5(eslint@9.35.0(jiti@2.6.1))(typescript@5.9.3):
|
||||||
dependencies:
|
dependencies:
|
||||||
'@typescript-eslint/utils': 8.43.0(eslint@9.35.0(jiti@2.6.1))(typescript@5.9.3)
|
'@typescript-eslint/utils': 8.50.1(eslint@9.35.0(jiti@2.6.1))(typescript@5.9.3)
|
||||||
eslint: 9.35.0(jiti@2.6.1)
|
eslint: 9.35.0(jiti@2.6.1)
|
||||||
estraverse: 5.3.0
|
estraverse: 5.3.0
|
||||||
is-html: 2.0.0
|
is-html: 2.0.0
|
||||||
@ -7481,11 +7475,9 @@ snapshots:
|
|||||||
|
|
||||||
eslint-visitor-keys@4.2.1: {}
|
eslint-visitor-keys@4.2.1: {}
|
||||||
|
|
||||||
eslint-visitor-keys@5.0.0: {}
|
|
||||||
|
|
||||||
eslint@9.35.0(jiti@2.6.1):
|
eslint@9.35.0(jiti@2.6.1):
|
||||||
dependencies:
|
dependencies:
|
||||||
'@eslint-community/eslint-utils': 4.9.1(eslint@9.35.0(jiti@2.6.1))
|
'@eslint-community/eslint-utils': 4.8.0(eslint@9.35.0(jiti@2.6.1))
|
||||||
'@eslint-community/regexpp': 4.12.1
|
'@eslint-community/regexpp': 4.12.1
|
||||||
'@eslint/config-array': 0.21.0
|
'@eslint/config-array': 0.21.0
|
||||||
'@eslint/config-helpers': 0.3.1
|
'@eslint/config-helpers': 0.3.1
|
||||||
@ -7531,12 +7523,6 @@ snapshots:
|
|||||||
acorn-jsx: 5.3.2(acorn@8.15.0)
|
acorn-jsx: 5.3.2(acorn@8.15.0)
|
||||||
eslint-visitor-keys: 4.2.1
|
eslint-visitor-keys: 4.2.1
|
||||||
|
|
||||||
espree@11.0.0:
|
|
||||||
dependencies:
|
|
||||||
acorn: 8.15.0
|
|
||||||
acorn-jsx: 5.3.2(acorn@8.15.0)
|
|
||||||
eslint-visitor-keys: 5.0.0
|
|
||||||
|
|
||||||
esquery@1.6.0:
|
esquery@1.6.0:
|
||||||
dependencies:
|
dependencies:
|
||||||
estraverse: 5.3.0
|
estraverse: 5.3.0
|
||||||
@ -7891,8 +7877,6 @@ snapshots:
|
|||||||
|
|
||||||
graceful-fs@4.2.11: {}
|
graceful-fs@4.2.11: {}
|
||||||
|
|
||||||
graphemer@1.4.0: {}
|
|
||||||
|
|
||||||
hanja@1.1.5: {}
|
hanja@1.1.5: {}
|
||||||
|
|
||||||
happy-dom@20.0.11:
|
happy-dom@20.0.11:
|
||||||
@ -8942,12 +8926,20 @@ snapshots:
|
|||||||
|
|
||||||
playwright-core@1.55.0: {}
|
playwright-core@1.55.0: {}
|
||||||
|
|
||||||
|
playwright-core@1.55.1: {}
|
||||||
|
|
||||||
playwright@1.55.0:
|
playwright@1.55.0:
|
||||||
dependencies:
|
dependencies:
|
||||||
playwright-core: 1.55.0
|
playwright-core: 1.55.0
|
||||||
optionalDependencies:
|
optionalDependencies:
|
||||||
fsevents: 2.3.2
|
fsevents: 2.3.2
|
||||||
|
|
||||||
|
playwright@1.55.1:
|
||||||
|
dependencies:
|
||||||
|
playwright-core: 1.55.1
|
||||||
|
optionalDependencies:
|
||||||
|
fsevents: 2.3.2
|
||||||
|
|
||||||
plist@3.1.0:
|
plist@3.1.0:
|
||||||
dependencies:
|
dependencies:
|
||||||
'@xmldom/xmldom': 0.8.11
|
'@xmldom/xmldom': 0.8.11
|
||||||
@ -9666,12 +9658,12 @@ snapshots:
|
|||||||
possible-typed-array-names: 1.1.0
|
possible-typed-array-names: 1.1.0
|
||||||
reflect.getprototypeof: 1.0.10
|
reflect.getprototypeof: 1.0.10
|
||||||
|
|
||||||
typescript-eslint@8.43.0(eslint@9.35.0(jiti@2.6.1))(typescript@5.9.3):
|
typescript-eslint@8.50.1(eslint@9.35.0(jiti@2.6.1))(typescript@5.9.3):
|
||||||
dependencies:
|
dependencies:
|
||||||
'@typescript-eslint/eslint-plugin': 8.43.0(@typescript-eslint/parser@8.43.0(eslint@9.35.0(jiti@2.6.1))(typescript@5.9.3))(eslint@9.35.0(jiti@2.6.1))(typescript@5.9.3)
|
'@typescript-eslint/eslint-plugin': 8.50.1(@typescript-eslint/parser@8.50.1(eslint@9.35.0(jiti@2.6.1))(typescript@5.9.3))(eslint@9.35.0(jiti@2.6.1))(typescript@5.9.3)
|
||||||
'@typescript-eslint/parser': 8.43.0(eslint@9.35.0(jiti@2.6.1))(typescript@5.9.3)
|
'@typescript-eslint/parser': 8.50.1(eslint@9.35.0(jiti@2.6.1))(typescript@5.9.3)
|
||||||
'@typescript-eslint/typescript-estree': 8.43.0(typescript@5.9.3)
|
'@typescript-eslint/typescript-estree': 8.50.1(typescript@5.9.3)
|
||||||
'@typescript-eslint/utils': 8.43.0(eslint@9.35.0(jiti@2.6.1))(typescript@5.9.3)
|
'@typescript-eslint/utils': 8.50.1(eslint@9.35.0(jiti@2.6.1))(typescript@5.9.3)
|
||||||
eslint: 9.35.0(jiti@2.6.1)
|
eslint: 9.35.0(jiti@2.6.1)
|
||||||
typescript: 5.9.3
|
typescript: 5.9.3
|
||||||
transitivePeerDependencies:
|
transitivePeerDependencies:
|
||||||
|
|||||||
@ -883,12 +883,12 @@
|
|||||||
},
|
},
|
||||||
"name": "Synchronisierte Texte",
|
"name": "Synchronisierte Texte",
|
||||||
"refetch-btn": {
|
"refetch-btn": {
|
||||||
"fetching": "Laden...",
|
"fetching": "Hole Songtext...",
|
||||||
"normal": "Songtext neu laden"
|
"normal": "Songtext neu holen"
|
||||||
},
|
},
|
||||||
"warnings": {
|
"warnings": {
|
||||||
"duration-mismatch": "⚠️ - Es kann sein, dass die Synchronization nicht stimmt, da die Songdauer nicht übereinstimmt.",
|
"duration-mismatch": "⚠️ - Es kann sein, dass die Synchronization nicht stimmt, da die Songdauer nicht übereinstimmt.",
|
||||||
"inexact": "⚠️ - Es ist möglich, dass der Songtext für diesen Song nicht übereinstimmt.",
|
"inexact": "⚠️ - Der Songtext stimmt möglicherweise nicht überein",
|
||||||
"instrumental": "⚠️ - Das ist ein instrumentales Lied"
|
"instrumental": "⚠️ - Das ist ein instrumentales Lied"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|||||||
@ -320,22 +320,6 @@
|
|||||||
"hostname": {
|
"hostname": {
|
||||||
"label": "نام میزبان"
|
"label": "نام میزبان"
|
||||||
},
|
},
|
||||||
"https": {
|
|
||||||
"label": "HTTPS و گواهینامهها",
|
|
||||||
"submenu": {
|
|
||||||
"cert": {
|
|
||||||
"dialogTitle": "پرونده گواهینامه HTTPS را انتخاب کنید",
|
|
||||||
"label": "پرونده گواهینامه (crt/.pem.)"
|
|
||||||
},
|
|
||||||
"enable-https": {
|
|
||||||
"label": "فعال کردن HTTPS"
|
|
||||||
},
|
|
||||||
"key": {
|
|
||||||
"dialogTitle": "پرونده کلید خصوصی HTTPS را انتخاب کنید",
|
|
||||||
"label": "پرونده کلید خصوصی (key/.pem)"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"port": {
|
"port": {
|
||||||
"label": "پورت"
|
"label": "پورت"
|
||||||
}
|
}
|
||||||
|
|||||||
@ -237,8 +237,7 @@
|
|||||||
"submenu": {
|
"submenu": {
|
||||||
"percent": "{{ratio}}%"
|
"percent": "{{ratio}}%"
|
||||||
}
|
}
|
||||||
},
|
}
|
||||||
"enable-seekbar": "Abilita tematizzazione della seekbar"
|
|
||||||
},
|
},
|
||||||
"name": "Tema abbinato a colore album"
|
"name": "Tema abbinato a colore album"
|
||||||
},
|
},
|
||||||
@ -321,22 +320,6 @@
|
|||||||
"hostname": {
|
"hostname": {
|
||||||
"label": "Hostname"
|
"label": "Hostname"
|
||||||
},
|
},
|
||||||
"https": {
|
|
||||||
"label": "HTTPS & Certificati",
|
|
||||||
"submenu": {
|
|
||||||
"cert": {
|
|
||||||
"dialogTitle": "Seleziona file di certificato HTTPS",
|
|
||||||
"label": "File di certificato (.crt/.pem)"
|
|
||||||
},
|
|
||||||
"enable-https": {
|
|
||||||
"label": "Abilita HTTPS"
|
|
||||||
},
|
|
||||||
"key": {
|
|
||||||
"dialogTitle": "Seleziona il file della chiave privata HTTPS",
|
|
||||||
"label": "File della chiave privata (.key/.pem)"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"port": {
|
"port": {
|
||||||
"label": "Porta"
|
"label": "Porta"
|
||||||
}
|
}
|
||||||
@ -478,9 +461,9 @@
|
|||||||
"set-status-display-type": {
|
"set-status-display-type": {
|
||||||
"label": "Testo dello status",
|
"label": "Testo dello status",
|
||||||
"submenu": {
|
"submenu": {
|
||||||
"application": "Ascoltando {{applicationName}}",
|
|
||||||
"artist": "Stai ascoltando {artist}",
|
"artist": "Stai ascoltando {artist}",
|
||||||
"title": "Stai ascoltando {song title}"
|
"title": "Stai ascoltando {song title}",
|
||||||
|
"application": "Ascoltando {{applicationName}}"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
@ -883,7 +866,7 @@
|
|||||||
},
|
},
|
||||||
"name": "Testi sincronizzati",
|
"name": "Testi sincronizzati",
|
||||||
"refetch-btn": {
|
"refetch-btn": {
|
||||||
"fetching": "Caricamento...",
|
"fetching": "Sto recuperando...",
|
||||||
"normal": "Recupera i testi"
|
"normal": "Recupera i testi"
|
||||||
},
|
},
|
||||||
"warnings": {
|
"warnings": {
|
||||||
|
|||||||
@ -117,7 +117,7 @@
|
|||||||
"hide-menu": {
|
"hide-menu": {
|
||||||
"dialog": {
|
"dialog": {
|
||||||
"message": "მენიუ შემდეგი გაშვებისას დაიმალება, მის საჩვენებლად გამოიყენეთ [Alt] (ან თუ აპლიკაციის მენიუს იყენებთ, უკან დააწკაპუნეთ [`])",
|
"message": "მენიუ შემდეგი გაშვებისას დაიმალება, მის საჩვენებლად გამოიყენეთ [Alt] (ან თუ აპლიკაციის მენიუს იყენებთ, უკან დააწკაპუნეთ [`])",
|
||||||
"title": "მენიუს დამალვა ჩაირთო"
|
"title": "მენიუს დამალვა ჩართულია"
|
||||||
},
|
},
|
||||||
"label": "მენიუს დამალვა"
|
"label": "მენიუს დამალვა"
|
||||||
},
|
},
|
||||||
|
|||||||
@ -171,7 +171,7 @@
|
|||||||
"remove": "제거"
|
"remove": "제거"
|
||||||
},
|
},
|
||||||
"remove-theme": "사용자 정의 테마를 제거하시겠습니까?",
|
"remove-theme": "사용자 정의 테마를 제거하시겠습니까?",
|
||||||
"remove-theme-message": "이 설정을 변경하면 커스텀 테마가 삭제됩니다"
|
"remove-theme-message": "사용자 정의 테마를 제거하시겠습니까?"
|
||||||
},
|
},
|
||||||
"label": "테마",
|
"label": "테마",
|
||||||
"submenu": {
|
"submenu": {
|
||||||
@ -289,7 +289,7 @@
|
|||||||
},
|
},
|
||||||
"amuse": {
|
"amuse": {
|
||||||
"description": "6K Labs Amuse의 'now playing' 위젯에 {{applicationName}} 지원 추가",
|
"description": "6K Labs Amuse의 'now playing' 위젯에 {{applicationName}} 지원 추가",
|
||||||
"name": "Amuseio AB",
|
"name": "Amuse",
|
||||||
"response": {
|
"response": {
|
||||||
"query": "Amuse API 서버가 실행 중입니다. GET /query로 노래 정보를 가져오세요."
|
"query": "Amuse API 서버가 실행 중입니다. GET /query로 노래 정보를 가져오세요."
|
||||||
}
|
}
|
||||||
@ -321,22 +321,6 @@
|
|||||||
"hostname": {
|
"hostname": {
|
||||||
"label": "호스트 명"
|
"label": "호스트 명"
|
||||||
},
|
},
|
||||||
"https": {
|
|
||||||
"label": "HTTPS 및 인증서",
|
|
||||||
"submenu": {
|
|
||||||
"cert": {
|
|
||||||
"dialogTitle": "HTTPS 인증서 파일을 선택해 주세요",
|
|
||||||
"label": "인증서 파일(.crt/.pem)"
|
|
||||||
},
|
|
||||||
"enable-https": {
|
|
||||||
"label": "HTTPS 활성화"
|
|
||||||
},
|
|
||||||
"key": {
|
|
||||||
"dialogTitle": "HTTPS 개인 키 파일을 선택해 주세요",
|
|
||||||
"label": "개인 키 파일(.key/.pem)"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"port": {
|
"port": {
|
||||||
"label": "포트"
|
"label": "포트"
|
||||||
}
|
}
|
||||||
@ -473,13 +457,13 @@
|
|||||||
"disconnected": "연결 해제 됨",
|
"disconnected": "연결 해제 됨",
|
||||||
"hide-duration-left": "남은 재생 시간 숨기기",
|
"hide-duration-left": "남은 재생 시간 숨기기",
|
||||||
"hide-github-button": "GitHub 링크 버튼 숨기기",
|
"hide-github-button": "GitHub 링크 버튼 숨기기",
|
||||||
"play-on-application": "{{applicationName}} 에서 재생",
|
"play-on-application": "유튜브 뮤직에서 재생",
|
||||||
"set-inactivity-timeout": "비활성 시간 제한 설정",
|
"set-inactivity-timeout": "비활성 시간 제한 설정",
|
||||||
"set-status-display-type": {
|
"set-status-display-type": {
|
||||||
"label": "상태 텍스트",
|
"label": "상태 텍스트",
|
||||||
"submenu": {
|
"submenu": {
|
||||||
"application": "{{applicationName}} 듣는 중",
|
|
||||||
"artist": "{아티스트} 듣는 중",
|
"artist": "{아티스트} 듣는 중",
|
||||||
|
"application": "{{applicationName}} 듣는 중",
|
||||||
"title": "{곡 제목} 듣는 중"
|
"title": "{곡 제목} 듣는 중"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@ -151,9 +151,7 @@
|
|||||||
"label": "Vizualiniai patobulinimai",
|
"label": "Vizualiniai patobulinimai",
|
||||||
"submenu": {
|
"submenu": {
|
||||||
"custom-window-title": {
|
"custom-window-title": {
|
||||||
"label": "Pasirinktinis lango pavadinimas",
|
|
||||||
"prompt": {
|
"prompt": {
|
||||||
"label": "Įveskite pasirinktinį lango pavadinimą: (palikite tuščią, jei norite išjungti)",
|
|
||||||
"placeholder": "Pavyzdys: {{applicationName}}"
|
"placeholder": "Pavyzdys: {{applicationName}}"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
@ -433,9 +431,9 @@
|
|||||||
"set-inactivity-timeout": "Nustatyti neveiklumo laiką",
|
"set-inactivity-timeout": "Nustatyti neveiklumo laiką",
|
||||||
"set-status-display-type": {
|
"set-status-display-type": {
|
||||||
"submenu": {
|
"submenu": {
|
||||||
"application": "Klausosi {{applicationName}}",
|
|
||||||
"artist": "Klausosi {artist]",
|
"artist": "Klausosi {artist]",
|
||||||
"title": "Klausosi {song title}"
|
"title": "Klausosi {song title}",
|
||||||
|
"application": "Klausosi {{applicationName}}"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|||||||
@ -237,8 +237,7 @@
|
|||||||
"submenu": {
|
"submenu": {
|
||||||
"percent": "{{ratio}}%"
|
"percent": "{{ratio}}%"
|
||||||
}
|
}
|
||||||
},
|
}
|
||||||
"enable-seekbar": "Zezwól stylowanie paska wyszukiwań"
|
|
||||||
},
|
},
|
||||||
"name": "Motyw kolorów albumu"
|
"name": "Motyw kolorów albumu"
|
||||||
},
|
},
|
||||||
@ -321,22 +320,6 @@
|
|||||||
"hostname": {
|
"hostname": {
|
||||||
"label": "Nazwa hosta (IP)"
|
"label": "Nazwa hosta (IP)"
|
||||||
},
|
},
|
||||||
"https": {
|
|
||||||
"label": "HTTPS i Certyfikaty",
|
|
||||||
"submenu": {
|
|
||||||
"cert": {
|
|
||||||
"dialogTitle": "Wybierz plik certyfikatu HTTPS",
|
|
||||||
"label": "Certyfikat (.crt/.pem)"
|
|
||||||
},
|
|
||||||
"enable-https": {
|
|
||||||
"label": "Zezwól HTTPS"
|
|
||||||
},
|
|
||||||
"key": {
|
|
||||||
"dialogTitle": "Wybierz plik prywatnego klucza HTTPS",
|
|
||||||
"label": "Klucz prywatny (.key/.pem)"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"port": {
|
"port": {
|
||||||
"label": "Port"
|
"label": "Port"
|
||||||
}
|
}
|
||||||
@ -478,8 +461,8 @@
|
|||||||
"set-status-display-type": {
|
"set-status-display-type": {
|
||||||
"label": "Opis statusu",
|
"label": "Opis statusu",
|
||||||
"submenu": {
|
"submenu": {
|
||||||
"application": "Słucha {{applicationName}}",
|
|
||||||
"artist": "Słucha {artist}",
|
"artist": "Słucha {artist}",
|
||||||
|
"application": "Słucha {{applicationName}}",
|
||||||
"title": "Słucha {song title}"
|
"title": "Słucha {song title}"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@ -321,22 +321,6 @@
|
|||||||
"hostname": {
|
"hostname": {
|
||||||
"label": "Nome do anfitrião"
|
"label": "Nome do anfitrião"
|
||||||
},
|
},
|
||||||
"https": {
|
|
||||||
"label": "HTTPS & Certificados",
|
|
||||||
"submenu": {
|
|
||||||
"cert": {
|
|
||||||
"dialogTitle": "Selecione o certificado do HTTPS",
|
|
||||||
"label": "Arquivo de certificado (.crt/.pem)"
|
|
||||||
},
|
|
||||||
"enable-https": {
|
|
||||||
"label": "Habilitar HTTPS"
|
|
||||||
},
|
|
||||||
"key": {
|
|
||||||
"dialogTitle": "Selecione a chave privada do HTTPS",
|
|
||||||
"label": "Arquivo de chave privada (.key/.pem)"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"port": {
|
"port": {
|
||||||
"label": "Porta"
|
"label": "Porta"
|
||||||
}
|
}
|
||||||
@ -478,8 +462,8 @@
|
|||||||
"set-status-display-type": {
|
"set-status-display-type": {
|
||||||
"label": "Texto de status",
|
"label": "Texto de status",
|
||||||
"submenu": {
|
"submenu": {
|
||||||
"application": "Ouvindo {{applicationName}}",
|
|
||||||
"artist": "Ouvindo {artist}",
|
"artist": "Ouvindo {artist}",
|
||||||
|
"application": "Ouvindo {{applicationName}}",
|
||||||
"title": "Ouvindo {song title}"
|
"title": "Ouvindo {song title}"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@ -2,13 +2,13 @@
|
|||||||
"common": {
|
"common": {
|
||||||
"console": {
|
"console": {
|
||||||
"plugins": {
|
"plugins": {
|
||||||
"execute-failed": "Ошибка при выполнении плагина {{pluginName}}::{{contextName}}",
|
"execute-failed": "Ошибка загрузки плагина {{pluginName}}::{{contextName}}",
|
||||||
"executed-at-ms": "Плагин {{pluginName}}::{{contextName}} загружен за {{ms}}мс",
|
"executed-at-ms": "Плагин {{pluginName}}::{{contextName}} загружен за {{ms}}мс",
|
||||||
"initialize-failed": "Ошибка инициализации плагина \"{{pluginName}}\"",
|
"initialize-failed": "Ошибка инициализации плагина \"{{pluginName}}\"",
|
||||||
"load-all": "Загружаем все плагины",
|
"load-all": "Загружаем все плагины",
|
||||||
"load-failed": "Ошибка загрузки плагина \"{{pluginName}}\"",
|
"load-failed": "Ошибка загрузки плагина \"{{pluginName}}\"",
|
||||||
"loaded": "Плагин \"{{pluginName}}\" загружен",
|
"loaded": "Плагин \"{{pluginName}}\" загружен",
|
||||||
"unload-failed": "Ошибка при выгрузке плагина \"{{pluginName}}\"",
|
"unload-failed": "Ошибка выгрузки плагина \"{{pluginName}}\"",
|
||||||
"unloaded": "Плагин \"{{pluginName}}\" выгружен"
|
"unloaded": "Плагин \"{{pluginName}}\" выгружен"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -44,7 +44,7 @@
|
|||||||
},
|
},
|
||||||
"dialog": {
|
"dialog": {
|
||||||
"hide-menu-enabled": {
|
"hide-menu-enabled": {
|
||||||
"detail": "Меню скрыто, используйте 'Alt' чтобы показать его ('Escape' если используете внутреннее меню приложения)",
|
"detail": "Меню скрыто, 'Alt' чтобы показать его ('Escape' если используете внутреннее меню приложения)",
|
||||||
"message": "Скрытие меню включено",
|
"message": "Скрытие меню включено",
|
||||||
"title": "Включено скрытие меню"
|
"title": "Включено скрытие меню"
|
||||||
},
|
},
|
||||||
@ -53,8 +53,8 @@
|
|||||||
"later": "Позже",
|
"later": "Позже",
|
||||||
"restart-now": "Перезапустить сейчас"
|
"restart-now": "Перезапустить сейчас"
|
||||||
},
|
},
|
||||||
"detail": "Для вступления изменений в силу плагину \"{{pluginName}}\" требуется перезапуск",
|
"detail": "Перезапустите приложение для включения плагина {{pluginName}}",
|
||||||
"message": "Требуется перезапуск плагина \"{{pluginName}}\"",
|
"message": "Перезапуск для применения плагина {{pluginName}}",
|
||||||
"title": "Нужен перезапуск"
|
"title": "Нужен перезапуск"
|
||||||
},
|
},
|
||||||
"unresponsive": {
|
"unresponsive": {
|
||||||
@ -100,7 +100,7 @@
|
|||||||
"disable-hardware-acceleration": "Отключить аппаратное ускорение",
|
"disable-hardware-acceleration": "Отключить аппаратное ускорение",
|
||||||
"edit-config-json": "Редактировать config.json",
|
"edit-config-json": "Редактировать config.json",
|
||||||
"override-user-agent": "Переопределить User-Agent",
|
"override-user-agent": "Переопределить User-Agent",
|
||||||
"restart-on-config-changes": "Перезапускать при изменениях конфигурации",
|
"restart-on-config-changes": "Перезапускать при изменениях конфига",
|
||||||
"set-proxy": {
|
"set-proxy": {
|
||||||
"label": "Задать прокси",
|
"label": "Задать прокси",
|
||||||
"prompt": {
|
"prompt": {
|
||||||
@ -237,8 +237,7 @@
|
|||||||
"submenu": {
|
"submenu": {
|
||||||
"percent": "{{ratio}}%"
|
"percent": "{{ratio}}%"
|
||||||
}
|
}
|
||||||
},
|
}
|
||||||
"enable-seekbar": "Включить тематическое оформление полосы прокрутки"
|
|
||||||
},
|
},
|
||||||
"name": "Цветовая тема альбома"
|
"name": "Цветовая тема альбома"
|
||||||
},
|
},
|
||||||
@ -288,7 +287,7 @@
|
|||||||
"name": "Режим Ambient"
|
"name": "Режим Ambient"
|
||||||
},
|
},
|
||||||
"amuse": {
|
"amuse": {
|
||||||
"description": "Добавляет {{applicationName}} поддержку виджета Amuse „сейчас играет“ от 6K Labs",
|
"description": "Добавляет поддержку виджета Amuse „сейчас играет“ от 6K Labs",
|
||||||
"name": "Amuse",
|
"name": "Amuse",
|
||||||
"response": {
|
"response": {
|
||||||
"query": "Сервер Amuse API запущен. GET /query чтобы получить информацию о треке."
|
"query": "Сервер Amuse API запущен. GET /query чтобы получить информацию о треке."
|
||||||
@ -321,22 +320,6 @@
|
|||||||
"hostname": {
|
"hostname": {
|
||||||
"label": "Имя хоста"
|
"label": "Имя хоста"
|
||||||
},
|
},
|
||||||
"https": {
|
|
||||||
"label": "HTTPS и сертификаты",
|
|
||||||
"submenu": {
|
|
||||||
"cert": {
|
|
||||||
"dialogTitle": "Выберите файл сертификата HTTPS",
|
|
||||||
"label": "Файл сертификата (.crt/.pem)"
|
|
||||||
},
|
|
||||||
"enable-https": {
|
|
||||||
"label": "Включить HTTPS"
|
|
||||||
},
|
|
||||||
"key": {
|
|
||||||
"dialogTitle": "Выберите файл приватного ключа HTTPS",
|
|
||||||
"label": "Файл приватного ключа (.key/.pem)"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"port": {
|
"port": {
|
||||||
"label": "Порт"
|
"label": "Порт"
|
||||||
}
|
}
|
||||||
|
|||||||
@ -320,13 +320,6 @@
|
|||||||
"hostname": {
|
"hostname": {
|
||||||
"label": "Tên máy chủ"
|
"label": "Tên máy chủ"
|
||||||
},
|
},
|
||||||
"https": {
|
|
||||||
"submenu": {
|
|
||||||
"enable-https": {
|
|
||||||
"label": "Bật HTTPS"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"port": {
|
"port": {
|
||||||
"label": "Cổng"
|
"label": "Cổng"
|
||||||
}
|
}
|
||||||
@ -468,9 +461,9 @@
|
|||||||
"set-status-display-type": {
|
"set-status-display-type": {
|
||||||
"label": "Văn bản trạng thái",
|
"label": "Văn bản trạng thái",
|
||||||
"submenu": {
|
"submenu": {
|
||||||
"application": "Đang nghe {{applicationName}}",
|
|
||||||
"artist": "Đang nghe nhạc của {artist}",
|
"artist": "Đang nghe nhạc của {artist}",
|
||||||
"title": "Đang nghe nhạc {song title}"
|
"title": "Đang nghe nhạc {song title}",
|
||||||
|
"application": "Đang nghe {{applicationName}}"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|||||||
@ -1,7 +1,7 @@
|
|||||||
import path from 'node:path';
|
import path from 'node:path';
|
||||||
import process from 'node:process';
|
import process from 'node:process';
|
||||||
|
import { _electron as electron } from 'playwright';
|
||||||
import { test, expect, _electron as electron } from '@playwright/test';
|
import { test, expect } from '@playwright/test';
|
||||||
|
|
||||||
process.env.NODE_ENV = 'test';
|
process.env.NODE_ENV = 'test';
|
||||||
|
|
||||||
@ -32,11 +32,7 @@ test('Pear Desktop App - With default settings, app is launched and visible', as
|
|||||||
// expect(title.replaceAll(/\s/g, ' ')).toEqual('Pear Desktop');
|
// expect(title.replaceAll(/\s/g, ' ')).toEqual('Pear Desktop');
|
||||||
|
|
||||||
const url = window.url();
|
const url = window.url();
|
||||||
expect(
|
expect(url.startsWith('https://music.\u0079\u006f\u0075\u0074\u0075\u0062\u0065.com')).toBe(true);
|
||||||
url.startsWith(
|
|
||||||
'https://music.\u0079\u006f\u0075\u0074\u0075\u0062\u0065.com',
|
|
||||||
),
|
|
||||||
).toBe(true);
|
|
||||||
|
|
||||||
await app.close();
|
await app.close();
|
||||||
});
|
});
|
||||||
|
|||||||
@ -25,8 +25,7 @@
|
|||||||
"exclude": ["./dist"],
|
"exclude": ["./dist"],
|
||||||
"include": [
|
"include": [
|
||||||
"electron.vite.config.mts",
|
"electron.vite.config.mts",
|
||||||
"playwright.config.ts",
|
|
||||||
"./src/**/*",
|
"./src/**/*",
|
||||||
"*.config.*js"
|
"*.config.*js",
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
|||||||
@ -1,8 +0,0 @@
|
|||||||
{
|
|
||||||
"extends": "./tsconfig.json",
|
|
||||||
"exclude": ["./dist"],
|
|
||||||
"include": [
|
|
||||||
"playwright.config.ts",
|
|
||||||
"./tests/**/*"
|
|
||||||
]
|
|
||||||
}
|
|
||||||
Reference in New Issue
Block a user