chore: use @misskey-dev/eslint-plugin (#12860)
Co-authored-by: syuilo <Syuilotan@yahoo.co.jp>
This commit is contained in:
		
							parent
							
								
									2a33981811
								
							
						
					
					
						commit
						1d5a0d0777
					
				
					 7 changed files with 162 additions and 159 deletions
				
			
		| 
						 | 
				
			
			@ -177,6 +177,7 @@
 | 
			
		|||
	},
 | 
			
		||||
	"devDependencies": {
 | 
			
		||||
		"@jest/globals": "29.7.0",
 | 
			
		||||
		"@misskey-dev/eslint-plugin": "^1.0.0",
 | 
			
		||||
		"@simplewebauthn/typescript-types": "8.3.4",
 | 
			
		||||
		"@swc/jest": "0.2.29",
 | 
			
		||||
		"@types/accepts": "1.3.7",
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
| 
						 | 
				
			
			@ -74,6 +74,7 @@
 | 
			
		|||
		"vuedraggable": "next"
 | 
			
		||||
	},
 | 
			
		||||
	"devDependencies": {
 | 
			
		||||
		"@misskey-dev/eslint-plugin": "^1.0.0",
 | 
			
		||||
		"@misskey-dev/summaly": "^5.0.3",
 | 
			
		||||
		"@storybook/addon-actions": "7.6.5",
 | 
			
		||||
		"@storybook/addon-essentials": "7.6.5",
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
| 
						 | 
				
			
			@ -8,15 +8,16 @@
 | 
			
		|||
	},
 | 
			
		||||
	"devDependencies": {
 | 
			
		||||
		"@apidevtools/swagger-parser": "10.1.0",
 | 
			
		||||
		"@misskey-dev/eslint-plugin": "^1.0.0",
 | 
			
		||||
		"@types/node": "20.9.1",
 | 
			
		||||
		"@typescript-eslint/eslint-plugin": "6.11.0",
 | 
			
		||||
		"@typescript-eslint/parser": "6.11.0",
 | 
			
		||||
		"eslint": "8.53.0",
 | 
			
		||||
		"typescript": "5.3.3",
 | 
			
		||||
		"tsx": "4.4.0",
 | 
			
		||||
		"ts-case-convert": "2.0.2",
 | 
			
		||||
		"openapi-types": "12.1.3",
 | 
			
		||||
		"openapi-typescript": "6.7.1"
 | 
			
		||||
		"openapi-typescript": "6.7.1",
 | 
			
		||||
		"ts-case-convert": "2.0.2",
 | 
			
		||||
		"tsx": "4.4.0",
 | 
			
		||||
		"typescript": "5.3.3"
 | 
			
		||||
	},
 | 
			
		||||
	"files": [
 | 
			
		||||
		"built"
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
| 
						 | 
				
			
			@ -23,6 +23,7 @@
 | 
			
		|||
	},
 | 
			
		||||
	"devDependencies": {
 | 
			
		||||
		"@microsoft/api-extractor": "7.38.5",
 | 
			
		||||
		"@misskey-dev/eslint-plugin": "^1.0.0",
 | 
			
		||||
		"@swc/jest": "0.2.29",
 | 
			
		||||
		"@types/jest": "29.5.11",
 | 
			
		||||
		"@types/node": "20.10.5",
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
| 
						 | 
				
			
			@ -1,118 +1,7 @@
 | 
			
		|||
module.exports = {
 | 
			
		||||
	root: true,
 | 
			
		||||
	parser: '@typescript-eslint/parser',
 | 
			
		||||
	plugins: [
 | 
			
		||||
		'@typescript-eslint',
 | 
			
		||||
		'import'
 | 
			
		||||
	],
 | 
			
		||||
	ignorePatterns: ['**/.eslintrc.cjs'],
 | 
			
		||||
	extends: [
 | 
			
		||||
		'eslint:recommended',
 | 
			
		||||
		'plugin:@typescript-eslint/recommended',
 | 
			
		||||
		'plugin:import/recommended',
 | 
			
		||||
		'plugin:import/typescript'
 | 
			
		||||
		'plugin:@misskey-dev/recommended',
 | 
			
		||||
	],
 | 
			
		||||
	rules: {
 | 
			
		||||
		'indent': ['warn', 'tab', {
 | 
			
		||||
			'SwitchCase': 1,
 | 
			
		||||
			'MemberExpression': 1,
 | 
			
		||||
			'flatTernaryExpressions': true,
 | 
			
		||||
			'ArrayExpression': 'first',
 | 
			
		||||
			'ObjectExpression': 'first',
 | 
			
		||||
		}],
 | 
			
		||||
		'eol-last': ['error', 'always'],
 | 
			
		||||
		'semi': ['error', 'always'],
 | 
			
		||||
		'semi-spacing': ['error', { 'before': false, 'after': true }],
 | 
			
		||||
		'quotes': ['warn', 'single'],
 | 
			
		||||
		'comma-dangle': ['warn', 'always-multiline'],
 | 
			
		||||
		'comma-spacing': ['error', { 'before': false, 'after': true }],
 | 
			
		||||
		'array-bracket-spacing': ['error', 'never'],
 | 
			
		||||
		'keyword-spacing': ['error', {
 | 
			
		||||
			'before': true,
 | 
			
		||||
			'after': true,
 | 
			
		||||
		}],
 | 
			
		||||
		'key-spacing': ['error', {
 | 
			
		||||
			'beforeColon': false,
 | 
			
		||||
			'afterColon': true,
 | 
			
		||||
		}],
 | 
			
		||||
		'arrow-spacing': ['error', {
 | 
			
		||||
			'before': true,
 | 
			
		||||
			'after': true,
 | 
			
		||||
		}],
 | 
			
		||||
		'brace-style': ['error', '1tbs', {
 | 
			
		||||
			'allowSingleLine': true,
 | 
			
		||||
		}],
 | 
			
		||||
		'padded-blocks': ['error', 'never'],
 | 
			
		||||
		/* TODO: path aliasを使わないとwarnする
 | 
			
		||||
		'no-restricted-imports': ['warn', {
 | 
			
		||||
			'patterns': [
 | 
			
		||||
			]
 | 
			
		||||
		}],
 | 
			
		||||
		*/
 | 
			
		||||
		'eqeqeq': ['error', 'always', { 'null': 'ignore' }],
 | 
			
		||||
		'no-multi-spaces': ['error'],
 | 
			
		||||
		'no-var': ['error'],
 | 
			
		||||
		'prefer-arrow-callback': ['error'],
 | 
			
		||||
		'no-throw-literal': ['error'],
 | 
			
		||||
		'no-param-reassign': ['warn'],
 | 
			
		||||
		'no-constant-condition': ['warn'],
 | 
			
		||||
		'no-empty-pattern': ['warn'],
 | 
			
		||||
		'no-async-promise-executor': ['off'],
 | 
			
		||||
		'no-useless-escape': ['off'],
 | 
			
		||||
		'no-multiple-empty-lines': ['error', { 'max': 1 }],
 | 
			
		||||
		'no-control-regex': ['warn'],
 | 
			
		||||
		'no-empty': ['warn'],
 | 
			
		||||
		'no-inner-declarations': ['off'],
 | 
			
		||||
		'no-sparse-arrays': ['off'],
 | 
			
		||||
		'nonblock-statement-body-position': ['error', 'beside'],
 | 
			
		||||
		'object-curly-spacing': ['error', 'always'],
 | 
			
		||||
		'space-infix-ops': ['error'],
 | 
			
		||||
		'space-before-blocks': ['error', 'always'],
 | 
			
		||||
		'padding-line-between-statements': [
 | 
			
		||||
			'error',
 | 
			
		||||
			{ 'blankLine': 'always', 'prev': 'function', 'next': '*' },
 | 
			
		||||
			{ 'blankLine': 'always', 'prev': '*', 'next': 'function' },
 | 
			
		||||
		],
 | 
			
		||||
		"lines-between-class-members": "off",
 | 
			
		||||
		/* typescript-eslint では enforce に対応してないっぽい
 | 
			
		||||
		'@typescript-eslint/lines-between-class-members': ['error', {
 | 
			
		||||
			enforce: [{
 | 
			
		||||
				blankLine: 'always',
 | 
			
		||||
				prev: 'method',
 | 
			
		||||
				next: '*',
 | 
			
		||||
			}]
 | 
			
		||||
		}],
 | 
			
		||||
		*/
 | 
			
		||||
		'@typescript-eslint/func-call-spacing': ['error', 'never'],
 | 
			
		||||
		'@typescript-eslint/no-explicit-any': ['warn'],
 | 
			
		||||
		'@typescript-eslint/no-unused-vars': ['warn'],
 | 
			
		||||
		'@typescript-eslint/no-unnecessary-condition': ['warn'],
 | 
			
		||||
		'@typescript-eslint/no-var-requires': ['warn'],
 | 
			
		||||
		'@typescript-eslint/no-inferrable-types': ['warn'],
 | 
			
		||||
		'@typescript-eslint/no-empty-function': ['off'],
 | 
			
		||||
		'@typescript-eslint/no-non-null-assertion': ['warn'],
 | 
			
		||||
		'@typescript-eslint/explicit-function-return-type': ['off'],
 | 
			
		||||
		'@typescript-eslint/no-misused-promises': ['error', {
 | 
			
		||||
			'checksVoidReturn': false,
 | 
			
		||||
		}],
 | 
			
		||||
		'@typescript-eslint/consistent-type-imports': 'off',
 | 
			
		||||
		'@typescript-eslint/prefer-nullish-coalescing': [
 | 
			
		||||
			'warn',
 | 
			
		||||
		],
 | 
			
		||||
		'@typescript-eslint/naming-convention': [
 | 
			
		||||
			'error',
 | 
			
		||||
			{
 | 
			
		||||
				"selector": "typeLike",
 | 
			
		||||
				"format": ["PascalCase"]
 | 
			
		||||
			},
 | 
			
		||||
			{
 | 
			
		||||
				"selector": "typeParameter",
 | 
			
		||||
				"format": []
 | 
			
		||||
			}
 | 
			
		||||
		],
 | 
			
		||||
		'import/no-unresolved': ['off'],
 | 
			
		||||
		'import/no-default-export': ['warn'],
 | 
			
		||||
		'import/order': ['warn', {
 | 
			
		||||
			'groups': ['builtin', 'external', 'internal', 'parent', 'sibling', 'index', 'object', 'type'],
 | 
			
		||||
		}]
 | 
			
		||||
	},
 | 
			
		||||
};
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
| 
						 | 
				
			
			@ -14,6 +14,7 @@
 | 
			
		|||
		"misskey-js": "workspace:*"
 | 
			
		||||
	},
 | 
			
		||||
	"devDependencies": {
 | 
			
		||||
		"@misskey-dev/eslint-plugin": "^1.0.0",
 | 
			
		||||
		"@typescript-eslint/parser": "6.14.0",
 | 
			
		||||
		"@typescript/lib-webworker": "npm:@types/serviceworker@0.0.67",
 | 
			
		||||
		"eslint": "8.56.0",
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
							
								
								
									
										193
									
								
								pnpm-lock.yaml
									
										
									
										generated
									
									
									
								
							
							
						
						
									
										193
									
								
								pnpm-lock.yaml
									
										
									
										generated
									
									
									
								
							| 
						 | 
				
			
			@ -493,6 +493,9 @@ importers:
 | 
			
		|||
      '@jest/globals':
 | 
			
		||||
        specifier: 29.7.0
 | 
			
		||||
        version: 29.7.0
 | 
			
		||||
      '@misskey-dev/eslint-plugin':
 | 
			
		||||
        specifier: ^1.0.0
 | 
			
		||||
        version: 1.0.0(@typescript-eslint/eslint-plugin@6.14.0)(@typescript-eslint/parser@6.14.0)(eslint-plugin-import@2.29.1)(eslint@8.56.0)
 | 
			
		||||
      '@simplewebauthn/typescript-types':
 | 
			
		||||
        specifier: 8.3.4
 | 
			
		||||
        version: 8.3.4
 | 
			
		||||
| 
						 | 
				
			
			@ -818,6 +821,9 @@ importers:
 | 
			
		|||
        specifier: next
 | 
			
		||||
        version: 4.1.0(vue@3.3.12)
 | 
			
		||||
    devDependencies:
 | 
			
		||||
      '@misskey-dev/eslint-plugin':
 | 
			
		||||
        specifier: ^1.0.0
 | 
			
		||||
        version: 1.0.0(@typescript-eslint/eslint-plugin@6.14.0)(@typescript-eslint/parser@6.14.0)(eslint-plugin-import@2.29.1)(eslint@8.56.0)
 | 
			
		||||
      '@misskey-dev/summaly':
 | 
			
		||||
        specifier: ^5.0.3
 | 
			
		||||
        version: 5.0.3
 | 
			
		||||
| 
						 | 
				
			
			@ -1014,6 +1020,9 @@ importers:
 | 
			
		|||
      '@microsoft/api-extractor':
 | 
			
		||||
        specifier: 7.38.5
 | 
			
		||||
        version: 7.38.5(@types/node@20.10.5)
 | 
			
		||||
      '@misskey-dev/eslint-plugin':
 | 
			
		||||
        specifier: ^1.0.0
 | 
			
		||||
        version: 1.0.0(@typescript-eslint/eslint-plugin@6.14.0)(@typescript-eslint/parser@6.14.0)(eslint-plugin-import@2.29.1)(eslint@8.56.0)
 | 
			
		||||
      '@swc/jest':
 | 
			
		||||
        specifier: 0.2.29
 | 
			
		||||
        version: 0.2.29(@swc/core@1.3.100)
 | 
			
		||||
| 
						 | 
				
			
			@ -1062,6 +1071,9 @@ importers:
 | 
			
		|||
      '@apidevtools/swagger-parser':
 | 
			
		||||
        specifier: 10.1.0
 | 
			
		||||
        version: 10.1.0(openapi-types@12.1.3)
 | 
			
		||||
      '@misskey-dev/eslint-plugin':
 | 
			
		||||
        specifier: ^1.0.0
 | 
			
		||||
        version: 1.0.0(@typescript-eslint/eslint-plugin@6.11.0)(@typescript-eslint/parser@6.11.0)(eslint-plugin-import@2.29.1)(eslint@8.53.0)
 | 
			
		||||
      '@types/node':
 | 
			
		||||
        specifier: 20.9.1
 | 
			
		||||
        version: 20.9.1
 | 
			
		||||
| 
						 | 
				
			
			@ -1102,6 +1114,9 @@ importers:
 | 
			
		|||
        specifier: workspace:*
 | 
			
		||||
        version: link:../misskey-js
 | 
			
		||||
    devDependencies:
 | 
			
		||||
      '@misskey-dev/eslint-plugin':
 | 
			
		||||
        specifier: ^1.0.0
 | 
			
		||||
        version: 1.0.0(@typescript-eslint/eslint-plugin@6.14.0)(@typescript-eslint/parser@6.14.0)(eslint-plugin-import@2.29.1)(eslint@8.56.0)
 | 
			
		||||
      '@typescript-eslint/parser':
 | 
			
		||||
        specifier: 6.14.0
 | 
			
		||||
        version: 6.14.0(eslint@8.56.0)(typescript@5.3.3)
 | 
			
		||||
| 
						 | 
				
			
			@ -1808,7 +1823,7 @@ packages:
 | 
			
		|||
      '@babel/traverse': 7.22.11
 | 
			
		||||
      '@babel/types': 7.22.17
 | 
			
		||||
      convert-source-map: 1.9.0
 | 
			
		||||
      debug: 4.3.4(supports-color@5.5.0)
 | 
			
		||||
      debug: 4.3.4(supports-color@8.1.1)
 | 
			
		||||
      gensync: 1.0.0-beta.2
 | 
			
		||||
      json5: 2.2.3
 | 
			
		||||
      semver: 6.3.1
 | 
			
		||||
| 
						 | 
				
			
			@ -1831,7 +1846,7 @@ packages:
 | 
			
		|||
      '@babel/traverse': 7.23.5
 | 
			
		||||
      '@babel/types': 7.23.5
 | 
			
		||||
      convert-source-map: 2.0.0
 | 
			
		||||
      debug: 4.3.4(supports-color@5.5.0)
 | 
			
		||||
      debug: 4.3.4(supports-color@8.1.1)
 | 
			
		||||
      gensync: 1.0.0-beta.2
 | 
			
		||||
      json5: 2.2.3
 | 
			
		||||
      semver: 6.3.1
 | 
			
		||||
| 
						 | 
				
			
			@ -1933,7 +1948,7 @@ packages:
 | 
			
		|||
      '@babel/core': 7.23.5
 | 
			
		||||
      '@babel/helper-compilation-targets': 7.22.15
 | 
			
		||||
      '@babel/helper-plugin-utils': 7.22.5
 | 
			
		||||
      debug: 4.3.4(supports-color@5.5.0)
 | 
			
		||||
      debug: 4.3.4(supports-color@8.1.1)
 | 
			
		||||
      lodash.debounce: 4.0.8
 | 
			
		||||
      resolve: 1.22.8
 | 
			
		||||
    transitivePeerDependencies:
 | 
			
		||||
| 
						 | 
				
			
			@ -3325,7 +3340,7 @@ packages:
 | 
			
		|||
      '@babel/helper-split-export-declaration': 7.22.6
 | 
			
		||||
      '@babel/parser': 7.23.5
 | 
			
		||||
      '@babel/types': 7.22.17
 | 
			
		||||
      debug: 4.3.4(supports-color@5.5.0)
 | 
			
		||||
      debug: 4.3.4(supports-color@8.1.1)
 | 
			
		||||
      globals: 11.12.0
 | 
			
		||||
    transitivePeerDependencies:
 | 
			
		||||
      - supports-color
 | 
			
		||||
| 
						 | 
				
			
			@ -3343,7 +3358,7 @@ packages:
 | 
			
		|||
      '@babel/helper-split-export-declaration': 7.22.6
 | 
			
		||||
      '@babel/parser': 7.23.5
 | 
			
		||||
      '@babel/types': 7.23.5
 | 
			
		||||
      debug: 4.3.4(supports-color@5.5.0)
 | 
			
		||||
      debug: 4.3.4(supports-color@8.1.1)
 | 
			
		||||
      globals: 11.12.0
 | 
			
		||||
    transitivePeerDependencies:
 | 
			
		||||
      - supports-color
 | 
			
		||||
| 
						 | 
				
			
			@ -4222,7 +4237,7 @@ packages:
 | 
			
		|||
    engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
 | 
			
		||||
    dependencies:
 | 
			
		||||
      ajv: 6.12.6
 | 
			
		||||
      debug: 4.3.4(supports-color@5.5.0)
 | 
			
		||||
      debug: 4.3.4(supports-color@8.1.1)
 | 
			
		||||
      espree: 9.6.1
 | 
			
		||||
      globals: 13.19.0
 | 
			
		||||
      ignore: 5.2.4
 | 
			
		||||
| 
						 | 
				
			
			@ -4239,7 +4254,7 @@ packages:
 | 
			
		|||
    engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
 | 
			
		||||
    dependencies:
 | 
			
		||||
      ajv: 6.12.6
 | 
			
		||||
      debug: 4.3.4(supports-color@5.5.0)
 | 
			
		||||
      debug: 4.3.4(supports-color@8.1.1)
 | 
			
		||||
      espree: 9.6.1
 | 
			
		||||
      globals: 13.19.0
 | 
			
		||||
      ignore: 5.2.4
 | 
			
		||||
| 
						 | 
				
			
			@ -4504,7 +4519,7 @@ packages:
 | 
			
		|||
    engines: {node: '>=10.10.0'}
 | 
			
		||||
    dependencies:
 | 
			
		||||
      '@humanwhocodes/object-schema': 2.0.1
 | 
			
		||||
      debug: 4.3.4(supports-color@5.5.0)
 | 
			
		||||
      debug: 4.3.4(supports-color@8.1.1)
 | 
			
		||||
      minimatch: 3.1.2
 | 
			
		||||
    transitivePeerDependencies:
 | 
			
		||||
      - supports-color
 | 
			
		||||
| 
						 | 
				
			
			@ -4939,6 +4954,34 @@ packages:
 | 
			
		|||
    resolution: {integrity: sha512-Spjiwa8brffhz4FiYrZ8VoPRyPPRzcdaIzLVb8oMnD9YGU3uzcX/CcZ08okFhrUR/N6IlQM86r5dNH/yY5Uyjg==}
 | 
			
		||||
    dev: false
 | 
			
		||||
 | 
			
		||||
  /@misskey-dev/eslint-plugin@1.0.0(@typescript-eslint/eslint-plugin@6.11.0)(@typescript-eslint/parser@6.11.0)(eslint-plugin-import@2.29.1)(eslint@8.53.0):
 | 
			
		||||
    resolution: {integrity: sha512-dh6UbcrNDVg5DD8k8Qh4ab30OPpuEYIlJCqaBV/lkIV8wNN/AfCJ2V7iTP8V8KjryM4t+sf5IqzQLQnT0mWI4A==}
 | 
			
		||||
    peerDependencies:
 | 
			
		||||
      '@typescript-eslint/eslint-plugin': '>= 6'
 | 
			
		||||
      '@typescript-eslint/parser': '>= 6'
 | 
			
		||||
      eslint: '>= 3'
 | 
			
		||||
      eslint-plugin-import: '>= 2'
 | 
			
		||||
    dependencies:
 | 
			
		||||
      '@typescript-eslint/eslint-plugin': 6.11.0(@typescript-eslint/parser@6.11.0)(eslint@8.53.0)(typescript@5.3.3)
 | 
			
		||||
      '@typescript-eslint/parser': 6.11.0(eslint@8.53.0)(typescript@5.3.3)
 | 
			
		||||
      eslint: 8.53.0
 | 
			
		||||
      eslint-plugin-import: 2.29.1(@typescript-eslint/parser@6.11.0)(eslint@8.53.0)
 | 
			
		||||
    dev: true
 | 
			
		||||
 | 
			
		||||
  /@misskey-dev/eslint-plugin@1.0.0(@typescript-eslint/eslint-plugin@6.14.0)(@typescript-eslint/parser@6.14.0)(eslint-plugin-import@2.29.1)(eslint@8.56.0):
 | 
			
		||||
    resolution: {integrity: sha512-dh6UbcrNDVg5DD8k8Qh4ab30OPpuEYIlJCqaBV/lkIV8wNN/AfCJ2V7iTP8V8KjryM4t+sf5IqzQLQnT0mWI4A==}
 | 
			
		||||
    peerDependencies:
 | 
			
		||||
      '@typescript-eslint/eslint-plugin': '>= 6'
 | 
			
		||||
      '@typescript-eslint/parser': '>= 6'
 | 
			
		||||
      eslint: '>= 3'
 | 
			
		||||
      eslint-plugin-import: '>= 2'
 | 
			
		||||
    dependencies:
 | 
			
		||||
      '@typescript-eslint/eslint-plugin': 6.14.0(@typescript-eslint/parser@6.14.0)(eslint@8.56.0)(typescript@5.3.3)
 | 
			
		||||
      '@typescript-eslint/parser': 6.14.0(eslint@8.56.0)(typescript@5.3.3)
 | 
			
		||||
      eslint: 8.56.0
 | 
			
		||||
      eslint-plugin-import: 2.29.1(@typescript-eslint/parser@6.14.0)(eslint@8.56.0)
 | 
			
		||||
    dev: true
 | 
			
		||||
 | 
			
		||||
  /@misskey-dev/sharp-read-bmp@1.1.1:
 | 
			
		||||
    resolution: {integrity: sha512-X52BQYL/I9mafypQ+wBhst+BUlYiPWnHhKGcF6ybcYSLl+zhcV0q5mezIXHozhM0Sv0A7xCdrWmR7TCNxHLrtQ==}
 | 
			
		||||
    dependencies:
 | 
			
		||||
| 
						 | 
				
			
			@ -5036,7 +5079,7 @@ packages:
 | 
			
		|||
      '@open-draft/until': 1.0.3
 | 
			
		||||
      '@types/debug': 4.1.7
 | 
			
		||||
      '@xmldom/xmldom': 0.8.6
 | 
			
		||||
      debug: 4.3.4(supports-color@5.5.0)
 | 
			
		||||
      debug: 4.3.4(supports-color@8.1.1)
 | 
			
		||||
      headers-polyfill: 3.2.5
 | 
			
		||||
      outvariant: 1.4.0
 | 
			
		||||
      strict-event-emitter: 0.2.8
 | 
			
		||||
| 
						 | 
				
			
			@ -8445,7 +8488,7 @@ packages:
 | 
			
		|||
      '@typescript-eslint/type-utils': 6.11.0(eslint@8.53.0)(typescript@5.3.3)
 | 
			
		||||
      '@typescript-eslint/utils': 6.11.0(eslint@8.53.0)(typescript@5.3.3)
 | 
			
		||||
      '@typescript-eslint/visitor-keys': 6.11.0
 | 
			
		||||
      debug: 4.3.4(supports-color@5.5.0)
 | 
			
		||||
      debug: 4.3.4(supports-color@8.1.1)
 | 
			
		||||
      eslint: 8.53.0
 | 
			
		||||
      graphemer: 1.4.0
 | 
			
		||||
      ignore: 5.2.4
 | 
			
		||||
| 
						 | 
				
			
			@ -8474,7 +8517,7 @@ packages:
 | 
			
		|||
      '@typescript-eslint/type-utils': 6.14.0(eslint@8.56.0)(typescript@5.3.3)
 | 
			
		||||
      '@typescript-eslint/utils': 6.14.0(eslint@8.56.0)(typescript@5.3.3)
 | 
			
		||||
      '@typescript-eslint/visitor-keys': 6.14.0
 | 
			
		||||
      debug: 4.3.4(supports-color@5.5.0)
 | 
			
		||||
      debug: 4.3.4(supports-color@8.1.1)
 | 
			
		||||
      eslint: 8.56.0
 | 
			
		||||
      graphemer: 1.4.0
 | 
			
		||||
      ignore: 5.2.4
 | 
			
		||||
| 
						 | 
				
			
			@ -8500,7 +8543,7 @@ packages:
 | 
			
		|||
      '@typescript-eslint/types': 6.11.0
 | 
			
		||||
      '@typescript-eslint/typescript-estree': 6.11.0(typescript@5.3.3)
 | 
			
		||||
      '@typescript-eslint/visitor-keys': 6.11.0
 | 
			
		||||
      debug: 4.3.4(supports-color@5.5.0)
 | 
			
		||||
      debug: 4.3.4(supports-color@8.1.1)
 | 
			
		||||
      eslint: 8.53.0
 | 
			
		||||
      typescript: 5.3.3
 | 
			
		||||
    transitivePeerDependencies:
 | 
			
		||||
| 
						 | 
				
			
			@ -8521,7 +8564,7 @@ packages:
 | 
			
		|||
      '@typescript-eslint/types': 6.14.0
 | 
			
		||||
      '@typescript-eslint/typescript-estree': 6.14.0(typescript@5.3.3)
 | 
			
		||||
      '@typescript-eslint/visitor-keys': 6.14.0
 | 
			
		||||
      debug: 4.3.4(supports-color@5.5.0)
 | 
			
		||||
      debug: 4.3.4(supports-color@8.1.1)
 | 
			
		||||
      eslint: 8.56.0
 | 
			
		||||
      typescript: 5.3.3
 | 
			
		||||
    transitivePeerDependencies:
 | 
			
		||||
| 
						 | 
				
			
			@ -8556,7 +8599,7 @@ packages:
 | 
			
		|||
    dependencies:
 | 
			
		||||
      '@typescript-eslint/typescript-estree': 6.11.0(typescript@5.3.3)
 | 
			
		||||
      '@typescript-eslint/utils': 6.11.0(eslint@8.53.0)(typescript@5.3.3)
 | 
			
		||||
      debug: 4.3.4(supports-color@5.5.0)
 | 
			
		||||
      debug: 4.3.4(supports-color@8.1.1)
 | 
			
		||||
      eslint: 8.53.0
 | 
			
		||||
      ts-api-utils: 1.0.1(typescript@5.3.3)
 | 
			
		||||
      typescript: 5.3.3
 | 
			
		||||
| 
						 | 
				
			
			@ -8576,7 +8619,7 @@ packages:
 | 
			
		|||
    dependencies:
 | 
			
		||||
      '@typescript-eslint/typescript-estree': 6.14.0(typescript@5.3.3)
 | 
			
		||||
      '@typescript-eslint/utils': 6.14.0(eslint@8.56.0)(typescript@5.3.3)
 | 
			
		||||
      debug: 4.3.4(supports-color@5.5.0)
 | 
			
		||||
      debug: 4.3.4(supports-color@8.1.1)
 | 
			
		||||
      eslint: 8.56.0
 | 
			
		||||
      ts-api-utils: 1.0.1(typescript@5.3.3)
 | 
			
		||||
      typescript: 5.3.3
 | 
			
		||||
| 
						 | 
				
			
			@ -8605,7 +8648,7 @@ packages:
 | 
			
		|||
    dependencies:
 | 
			
		||||
      '@typescript-eslint/types': 6.11.0
 | 
			
		||||
      '@typescript-eslint/visitor-keys': 6.11.0
 | 
			
		||||
      debug: 4.3.4(supports-color@5.5.0)
 | 
			
		||||
      debug: 4.3.4(supports-color@8.1.1)
 | 
			
		||||
      globby: 11.1.0
 | 
			
		||||
      is-glob: 4.0.3
 | 
			
		||||
      semver: 7.5.4
 | 
			
		||||
| 
						 | 
				
			
			@ -8626,7 +8669,7 @@ packages:
 | 
			
		|||
    dependencies:
 | 
			
		||||
      '@typescript-eslint/types': 6.14.0
 | 
			
		||||
      '@typescript-eslint/visitor-keys': 6.14.0
 | 
			
		||||
      debug: 4.3.4(supports-color@5.5.0)
 | 
			
		||||
      debug: 4.3.4(supports-color@8.1.1)
 | 
			
		||||
      globby: 11.1.0
 | 
			
		||||
      is-glob: 4.0.3
 | 
			
		||||
      semver: 7.5.4
 | 
			
		||||
| 
						 | 
				
			
			@ -9080,7 +9123,7 @@ packages:
 | 
			
		|||
    engines: {node: '>= 6.0.0'}
 | 
			
		||||
    requiresBuild: true
 | 
			
		||||
    dependencies:
 | 
			
		||||
      debug: 4.3.4(supports-color@5.5.0)
 | 
			
		||||
      debug: 4.3.4(supports-color@8.1.1)
 | 
			
		||||
    transitivePeerDependencies:
 | 
			
		||||
      - supports-color
 | 
			
		||||
 | 
			
		||||
| 
						 | 
				
			
			@ -9088,7 +9131,7 @@ packages:
 | 
			
		|||
    resolution: {integrity: sha512-o/zjMZRhJxny7OyEF+Op8X+efiELC7k7yOjMzgfzVqOzXqkBkWI79YoTdOtsuWd5BWhAGAuOY/Xa6xpiaWXiNg==}
 | 
			
		||||
    engines: {node: '>= 14'}
 | 
			
		||||
    dependencies:
 | 
			
		||||
      debug: 4.3.4(supports-color@5.5.0)
 | 
			
		||||
      debug: 4.3.4(supports-color@8.1.1)
 | 
			
		||||
    transitivePeerDependencies:
 | 
			
		||||
      - supports-color
 | 
			
		||||
    dev: false
 | 
			
		||||
| 
						 | 
				
			
			@ -9463,7 +9506,7 @@ packages:
 | 
			
		|||
    resolution: {integrity: sha512-TAlMYvOuwGyLK3PfBb5WKBXZmXz2fVCgv23d6zZFdle/q3gPjmxBaeuC0pY0Dzs5PWMSgfqqEZkrye19GlDTgw==}
 | 
			
		||||
    dependencies:
 | 
			
		||||
      archy: 1.0.0
 | 
			
		||||
      debug: 4.3.4(supports-color@5.5.0)
 | 
			
		||||
      debug: 4.3.4(supports-color@8.1.1)
 | 
			
		||||
      fastq: 1.15.0
 | 
			
		||||
    transitivePeerDependencies:
 | 
			
		||||
      - supports-color
 | 
			
		||||
| 
						 | 
				
			
			@ -10897,6 +10940,7 @@ packages:
 | 
			
		|||
    dependencies:
 | 
			
		||||
      ms: 2.1.2
 | 
			
		||||
      supports-color: 5.5.0
 | 
			
		||||
    dev: true
 | 
			
		||||
 | 
			
		||||
  /debug@4.3.4(supports-color@8.1.1):
 | 
			
		||||
    resolution: {integrity: sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==}
 | 
			
		||||
| 
						 | 
				
			
			@ -10909,7 +10953,6 @@ packages:
 | 
			
		|||
    dependencies:
 | 
			
		||||
      ms: 2.1.2
 | 
			
		||||
      supports-color: 8.1.1
 | 
			
		||||
    dev: true
 | 
			
		||||
 | 
			
		||||
  /decamelize-keys@1.1.1:
 | 
			
		||||
    resolution: {integrity: sha512-WiPxgEirIV0/eIOMcnFBA3/IJZAZqKnwAwWyvvdi4lsr1WCN22nhdf/3db3DoZcUjTV2SqfzIwNyp6y2xs3nmg==}
 | 
			
		||||
| 
						 | 
				
			
			@ -11126,7 +11169,7 @@ packages:
 | 
			
		|||
    hasBin: true
 | 
			
		||||
    dependencies:
 | 
			
		||||
      address: 1.2.2
 | 
			
		||||
      debug: 4.3.4(supports-color@5.5.0)
 | 
			
		||||
      debug: 4.3.4(supports-color@8.1.1)
 | 
			
		||||
    transitivePeerDependencies:
 | 
			
		||||
      - supports-color
 | 
			
		||||
    dev: true
 | 
			
		||||
| 
						 | 
				
			
			@ -11450,7 +11493,7 @@ packages:
 | 
			
		|||
    peerDependencies:
 | 
			
		||||
      esbuild: '>=0.12 <1'
 | 
			
		||||
    dependencies:
 | 
			
		||||
      debug: 4.3.4(supports-color@5.5.0)
 | 
			
		||||
      debug: 4.3.4(supports-color@8.1.1)
 | 
			
		||||
      esbuild: 0.18.20
 | 
			
		||||
    transitivePeerDependencies:
 | 
			
		||||
      - supports-color
 | 
			
		||||
| 
						 | 
				
			
			@ -11610,6 +11653,35 @@ packages:
 | 
			
		|||
      - supports-color
 | 
			
		||||
    dev: true
 | 
			
		||||
 | 
			
		||||
  /eslint-module-utils@2.8.0(@typescript-eslint/parser@6.11.0)(eslint-import-resolver-node@0.3.9)(eslint@8.53.0):
 | 
			
		||||
    resolution: {integrity: sha512-aWajIYfsqCKRDgUfjEXNN/JlrzauMuSEy5sbd7WXbtW3EH6A6MpwEh42c7qD+MqQo9QMJ6fWLAeIJynx0g6OAw==}
 | 
			
		||||
    engines: {node: '>=4'}
 | 
			
		||||
    peerDependencies:
 | 
			
		||||
      '@typescript-eslint/parser': '*'
 | 
			
		||||
      eslint: '*'
 | 
			
		||||
      eslint-import-resolver-node: '*'
 | 
			
		||||
      eslint-import-resolver-typescript: '*'
 | 
			
		||||
      eslint-import-resolver-webpack: '*'
 | 
			
		||||
    peerDependenciesMeta:
 | 
			
		||||
      '@typescript-eslint/parser':
 | 
			
		||||
        optional: true
 | 
			
		||||
      eslint:
 | 
			
		||||
        optional: true
 | 
			
		||||
      eslint-import-resolver-node:
 | 
			
		||||
        optional: true
 | 
			
		||||
      eslint-import-resolver-typescript:
 | 
			
		||||
        optional: true
 | 
			
		||||
      eslint-import-resolver-webpack:
 | 
			
		||||
        optional: true
 | 
			
		||||
    dependencies:
 | 
			
		||||
      '@typescript-eslint/parser': 6.11.0(eslint@8.53.0)(typescript@5.3.3)
 | 
			
		||||
      debug: 3.2.7(supports-color@8.1.1)
 | 
			
		||||
      eslint: 8.53.0
 | 
			
		||||
      eslint-import-resolver-node: 0.3.9
 | 
			
		||||
    transitivePeerDependencies:
 | 
			
		||||
      - supports-color
 | 
			
		||||
    dev: true
 | 
			
		||||
 | 
			
		||||
  /eslint-module-utils@2.8.0(@typescript-eslint/parser@6.14.0)(eslint-import-resolver-node@0.3.9)(eslint@8.56.0):
 | 
			
		||||
    resolution: {integrity: sha512-aWajIYfsqCKRDgUfjEXNN/JlrzauMuSEy5sbd7WXbtW3EH6A6MpwEh42c7qD+MqQo9QMJ6fWLAeIJynx0g6OAw==}
 | 
			
		||||
    engines: {node: '>=4'}
 | 
			
		||||
| 
						 | 
				
			
			@ -11639,6 +11711,41 @@ packages:
 | 
			
		|||
      - supports-color
 | 
			
		||||
    dev: true
 | 
			
		||||
 | 
			
		||||
  /eslint-plugin-import@2.29.1(@typescript-eslint/parser@6.11.0)(eslint@8.53.0):
 | 
			
		||||
    resolution: {integrity: sha512-BbPC0cuExzhiMo4Ff1BTVwHpjjv28C5R+btTOGaCRC7UEz801up0JadwkeSk5Ued6TG34uaczuVuH6qyy5YUxw==}
 | 
			
		||||
    engines: {node: '>=4'}
 | 
			
		||||
    peerDependencies:
 | 
			
		||||
      '@typescript-eslint/parser': '*'
 | 
			
		||||
      eslint: ^2 || ^3 || ^4 || ^5 || ^6 || ^7.2.0 || ^8
 | 
			
		||||
    peerDependenciesMeta:
 | 
			
		||||
      '@typescript-eslint/parser':
 | 
			
		||||
        optional: true
 | 
			
		||||
    dependencies:
 | 
			
		||||
      '@typescript-eslint/parser': 6.11.0(eslint@8.53.0)(typescript@5.3.3)
 | 
			
		||||
      array-includes: 3.1.7
 | 
			
		||||
      array.prototype.findlastindex: 1.2.3
 | 
			
		||||
      array.prototype.flat: 1.3.2
 | 
			
		||||
      array.prototype.flatmap: 1.3.2
 | 
			
		||||
      debug: 3.2.7(supports-color@8.1.1)
 | 
			
		||||
      doctrine: 2.1.0
 | 
			
		||||
      eslint: 8.53.0
 | 
			
		||||
      eslint-import-resolver-node: 0.3.9
 | 
			
		||||
      eslint-module-utils: 2.8.0(@typescript-eslint/parser@6.11.0)(eslint-import-resolver-node@0.3.9)(eslint@8.53.0)
 | 
			
		||||
      hasown: 2.0.0
 | 
			
		||||
      is-core-module: 2.13.1
 | 
			
		||||
      is-glob: 4.0.3
 | 
			
		||||
      minimatch: 3.1.2
 | 
			
		||||
      object.fromentries: 2.0.7
 | 
			
		||||
      object.groupby: 1.0.1
 | 
			
		||||
      object.values: 1.1.7
 | 
			
		||||
      semver: 6.3.1
 | 
			
		||||
      tsconfig-paths: 3.15.0
 | 
			
		||||
    transitivePeerDependencies:
 | 
			
		||||
      - eslint-import-resolver-typescript
 | 
			
		||||
      - eslint-import-resolver-webpack
 | 
			
		||||
      - supports-color
 | 
			
		||||
    dev: true
 | 
			
		||||
 | 
			
		||||
  /eslint-plugin-import@2.29.1(@typescript-eslint/parser@6.14.0)(eslint@8.56.0):
 | 
			
		||||
    resolution: {integrity: sha512-BbPC0cuExzhiMo4Ff1BTVwHpjjv28C5R+btTOGaCRC7UEz801up0JadwkeSk5Ued6TG34uaczuVuH6qyy5YUxw==}
 | 
			
		||||
    engines: {node: '>=4'}
 | 
			
		||||
| 
						 | 
				
			
			@ -11725,7 +11832,7 @@ packages:
 | 
			
		|||
      ajv: 6.12.6
 | 
			
		||||
      chalk: 4.1.2
 | 
			
		||||
      cross-spawn: 7.0.3
 | 
			
		||||
      debug: 4.3.4(supports-color@5.5.0)
 | 
			
		||||
      debug: 4.3.4(supports-color@8.1.1)
 | 
			
		||||
      doctrine: 3.0.0
 | 
			
		||||
      escape-string-regexp: 4.0.0
 | 
			
		||||
      eslint-scope: 7.2.2
 | 
			
		||||
| 
						 | 
				
			
			@ -11772,7 +11879,7 @@ packages:
 | 
			
		|||
      ajv: 6.12.6
 | 
			
		||||
      chalk: 4.1.2
 | 
			
		||||
      cross-spawn: 7.0.3
 | 
			
		||||
      debug: 4.3.4(supports-color@5.5.0)
 | 
			
		||||
      debug: 4.3.4(supports-color@8.1.1)
 | 
			
		||||
      doctrine: 3.0.0
 | 
			
		||||
      escape-string-regexp: 4.0.0
 | 
			
		||||
      eslint-scope: 7.2.2
 | 
			
		||||
| 
						 | 
				
			
			@ -12376,7 +12483,7 @@ packages:
 | 
			
		|||
      debug:
 | 
			
		||||
        optional: true
 | 
			
		||||
    dependencies:
 | 
			
		||||
      debug: 4.3.4(supports-color@5.5.0)
 | 
			
		||||
      debug: 4.3.4(supports-color@8.1.1)
 | 
			
		||||
 | 
			
		||||
  /for-each@0.3.3:
 | 
			
		||||
    resolution: {integrity: sha512-jqYfLp7mo9vIyQf8ykW2v7A+2N4QjeCeI5+Dz9XraiO1ign81wjiH7Fb9vSOWvQfNtmSa4H2RoQTrrXivdUZmw==}
 | 
			
		||||
| 
						 | 
				
			
			@ -12932,6 +13039,7 @@ packages:
 | 
			
		|||
  /has-flag@3.0.0:
 | 
			
		||||
    resolution: {integrity: sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==}
 | 
			
		||||
    engines: {node: '>=4'}
 | 
			
		||||
    dev: true
 | 
			
		||||
 | 
			
		||||
  /has-flag@4.0.0:
 | 
			
		||||
    resolution: {integrity: sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==}
 | 
			
		||||
| 
						 | 
				
			
			@ -13069,7 +13177,7 @@ packages:
 | 
			
		|||
    engines: {node: '>= 14'}
 | 
			
		||||
    dependencies:
 | 
			
		||||
      agent-base: 7.1.0
 | 
			
		||||
      debug: 4.3.4(supports-color@5.5.0)
 | 
			
		||||
      debug: 4.3.4(supports-color@8.1.1)
 | 
			
		||||
    transitivePeerDependencies:
 | 
			
		||||
      - supports-color
 | 
			
		||||
    dev: false
 | 
			
		||||
| 
						 | 
				
			
			@ -13131,7 +13239,7 @@ packages:
 | 
			
		|||
    engines: {node: '>= 6.0.0'}
 | 
			
		||||
    dependencies:
 | 
			
		||||
      agent-base: 5.1.1
 | 
			
		||||
      debug: 4.3.4(supports-color@5.5.0)
 | 
			
		||||
      debug: 4.3.4(supports-color@8.1.1)
 | 
			
		||||
    transitivePeerDependencies:
 | 
			
		||||
      - supports-color
 | 
			
		||||
    dev: true
 | 
			
		||||
| 
						 | 
				
			
			@ -13141,7 +13249,7 @@ packages:
 | 
			
		|||
    engines: {node: '>= 6'}
 | 
			
		||||
    dependencies:
 | 
			
		||||
      agent-base: 6.0.2
 | 
			
		||||
      debug: 4.3.4(supports-color@5.5.0)
 | 
			
		||||
      debug: 4.3.4(supports-color@8.1.1)
 | 
			
		||||
    transitivePeerDependencies:
 | 
			
		||||
      - supports-color
 | 
			
		||||
 | 
			
		||||
| 
						 | 
				
			
			@ -13150,7 +13258,7 @@ packages:
 | 
			
		|||
    engines: {node: '>= 14'}
 | 
			
		||||
    dependencies:
 | 
			
		||||
      agent-base: 7.1.0
 | 
			
		||||
      debug: 4.3.4(supports-color@5.5.0)
 | 
			
		||||
      debug: 4.3.4(supports-color@8.1.1)
 | 
			
		||||
    transitivePeerDependencies:
 | 
			
		||||
      - supports-color
 | 
			
		||||
    dev: false
 | 
			
		||||
| 
						 | 
				
			
			@ -13160,7 +13268,7 @@ packages:
 | 
			
		|||
    engines: {node: '>= 14'}
 | 
			
		||||
    dependencies:
 | 
			
		||||
      agent-base: 7.1.0
 | 
			
		||||
      debug: 4.3.4(supports-color@5.5.0)
 | 
			
		||||
      debug: 4.3.4(supports-color@8.1.1)
 | 
			
		||||
    transitivePeerDependencies:
 | 
			
		||||
      - supports-color
 | 
			
		||||
    dev: false
 | 
			
		||||
| 
						 | 
				
			
			@ -13310,7 +13418,7 @@ packages:
 | 
			
		|||
    dependencies:
 | 
			
		||||
      '@ioredis/commands': 1.2.0
 | 
			
		||||
      cluster-key-slot: 1.1.2
 | 
			
		||||
      debug: 4.3.4(supports-color@5.5.0)
 | 
			
		||||
      debug: 4.3.4(supports-color@8.1.1)
 | 
			
		||||
      denque: 2.1.0
 | 
			
		||||
      lodash.defaults: 4.2.0
 | 
			
		||||
      lodash.isarguments: 3.1.0
 | 
			
		||||
| 
						 | 
				
			
			@ -13751,7 +13859,7 @@ packages:
 | 
			
		|||
    resolution: {integrity: sha512-n3s8EwkdFIJCG3BPKBYvskgXGoy88ARzvegkitk60NxRdwltLOTaH7CUiMRXvwYorl0Q712iEjcWB+fK/MrWVw==}
 | 
			
		||||
    engines: {node: '>=10'}
 | 
			
		||||
    dependencies:
 | 
			
		||||
      debug: 4.3.4(supports-color@5.5.0)
 | 
			
		||||
      debug: 4.3.4(supports-color@8.1.1)
 | 
			
		||||
      istanbul-lib-coverage: 3.2.0
 | 
			
		||||
      source-map: 0.6.1
 | 
			
		||||
    transitivePeerDependencies:
 | 
			
		||||
| 
						 | 
				
			
			@ -14429,7 +14537,7 @@ packages:
 | 
			
		|||
    resolution: {integrity: sha512-pJ4XLQP4Q9HTxl6RVDLJ8Cyh1uitSs0CzDBAz1uoJ4sRD/Bk7cFSXL1FUXDW3zJ7YnfliJx6eu8Jn283bpZ4Yg==}
 | 
			
		||||
    engines: {node: '>=10'}
 | 
			
		||||
    dependencies:
 | 
			
		||||
      debug: 4.3.4(supports-color@5.5.0)
 | 
			
		||||
      debug: 4.3.4(supports-color@8.1.1)
 | 
			
		||||
      rfdc: 1.3.0
 | 
			
		||||
      uri-js: 4.4.1
 | 
			
		||||
    transitivePeerDependencies:
 | 
			
		||||
| 
						 | 
				
			
			@ -16997,7 +17105,7 @@ packages:
 | 
			
		|||
    engines: {node: '>=8.16.0'}
 | 
			
		||||
    dependencies:
 | 
			
		||||
      '@types/mime-types': 2.1.4
 | 
			
		||||
      debug: 4.3.4(supports-color@5.5.0)
 | 
			
		||||
      debug: 4.3.4(supports-color@8.1.1)
 | 
			
		||||
      extract-zip: 1.7.0
 | 
			
		||||
      https-proxy-agent: 4.0.0
 | 
			
		||||
      mime: 2.6.0
 | 
			
		||||
| 
						 | 
				
			
			@ -17996,7 +18104,7 @@ packages:
 | 
			
		|||
    dependencies:
 | 
			
		||||
      '@hapi/hoek': 10.0.1
 | 
			
		||||
      '@hapi/wreck': 18.0.1
 | 
			
		||||
      debug: 4.3.4(supports-color@5.5.0)
 | 
			
		||||
      debug: 4.3.4(supports-color@8.1.1)
 | 
			
		||||
      joi: 17.7.0
 | 
			
		||||
    transitivePeerDependencies:
 | 
			
		||||
      - supports-color
 | 
			
		||||
| 
						 | 
				
			
			@ -18196,7 +18304,7 @@ packages:
 | 
			
		|||
    engines: {node: '>= 14'}
 | 
			
		||||
    dependencies:
 | 
			
		||||
      agent-base: 7.1.0
 | 
			
		||||
      debug: 4.3.4(supports-color@5.5.0)
 | 
			
		||||
      debug: 4.3.4(supports-color@8.1.1)
 | 
			
		||||
      socks: 2.7.1
 | 
			
		||||
    transitivePeerDependencies:
 | 
			
		||||
      - supports-color
 | 
			
		||||
| 
						 | 
				
			
			@ -18349,7 +18457,7 @@ packages:
 | 
			
		|||
      arg: 5.0.2
 | 
			
		||||
      bluebird: 3.7.2
 | 
			
		||||
      check-more-types: 2.24.0
 | 
			
		||||
      debug: 4.3.4(supports-color@5.5.0)
 | 
			
		||||
      debug: 4.3.4(supports-color@8.1.1)
 | 
			
		||||
      execa: 5.1.1
 | 
			
		||||
      lazy-ass: 1.6.0
 | 
			
		||||
      ps-tree: 1.2.0
 | 
			
		||||
| 
						 | 
				
			
			@ -18614,6 +18722,7 @@ packages:
 | 
			
		|||
    engines: {node: '>=4'}
 | 
			
		||||
    dependencies:
 | 
			
		||||
      has-flag: 3.0.0
 | 
			
		||||
    dev: true
 | 
			
		||||
 | 
			
		||||
  /supports-color@7.2.0:
 | 
			
		||||
    resolution: {integrity: sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==}
 | 
			
		||||
| 
						 | 
				
			
			@ -19230,7 +19339,7 @@ packages:
 | 
			
		|||
      chalk: 4.1.2
 | 
			
		||||
      cli-highlight: 2.1.11
 | 
			
		||||
      date-fns: 2.30.0
 | 
			
		||||
      debug: 4.3.4(supports-color@5.5.0)
 | 
			
		||||
      debug: 4.3.4(supports-color@8.1.1)
 | 
			
		||||
      dotenv: 16.0.3
 | 
			
		||||
      glob: 8.1.0
 | 
			
		||||
      ioredis: 5.3.2
 | 
			
		||||
| 
						 | 
				
			
			@ -19588,7 +19697,7 @@ packages:
 | 
			
		|||
    hasBin: true
 | 
			
		||||
    dependencies:
 | 
			
		||||
      cac: 6.7.14
 | 
			
		||||
      debug: 4.3.4(supports-color@5.5.0)
 | 
			
		||||
      debug: 4.3.4(supports-color@8.1.1)
 | 
			
		||||
      mlly: 1.4.0
 | 
			
		||||
      pathe: 1.1.1
 | 
			
		||||
      picocolors: 1.0.0
 | 
			
		||||
| 
						 | 
				
			
			@ -19700,7 +19809,7 @@ packages:
 | 
			
		|||
      acorn-walk: 8.2.0
 | 
			
		||||
      cac: 6.7.14
 | 
			
		||||
      chai: 4.3.10
 | 
			
		||||
      debug: 4.3.4(supports-color@5.5.0)
 | 
			
		||||
      debug: 4.3.4(supports-color@8.1.1)
 | 
			
		||||
      happy-dom: 10.0.3
 | 
			
		||||
      local-pkg: 0.4.3
 | 
			
		||||
      magic-string: 0.30.3
 | 
			
		||||
| 
						 | 
				
			
			@ -19782,7 +19891,7 @@ packages:
 | 
			
		|||
    peerDependencies:
 | 
			
		||||
      eslint: '>=6.0.0'
 | 
			
		||||
    dependencies:
 | 
			
		||||
      debug: 4.3.4(supports-color@5.5.0)
 | 
			
		||||
      debug: 4.3.4(supports-color@8.1.1)
 | 
			
		||||
      eslint: 8.56.0
 | 
			
		||||
      eslint-scope: 7.2.2
 | 
			
		||||
      eslint-visitor-keys: 3.4.3
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue