mirror of
https://github.com/logto-io/logto.git
synced 2024-12-23 20:33:16 -05:00
Merge pull request #474 from logto-io/charles-bump-configs-version
chore: bump version of configs
This commit is contained in:
commit
4c18734530
13 changed files with 68 additions and 54 deletions
|
@ -44,10 +44,10 @@
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@parcel/core": "^2.3.2",
|
"@parcel/core": "^2.3.2",
|
||||||
"@parcel/transformer-sass": "^2.3.2",
|
"@parcel/transformer-sass": "^2.3.2",
|
||||||
"@silverhand/eslint-config": "^0.9.4",
|
"@silverhand/eslint-config": "^0.10.2",
|
||||||
"@silverhand/eslint-config-react": "^0.9.5",
|
"@silverhand/eslint-config-react": "^0.10.3",
|
||||||
"@silverhand/ts-config": "^0.9.4",
|
"@silverhand/ts-config": "^0.10.2",
|
||||||
"@silverhand/ts-config-react": "^0.9.5",
|
"@silverhand/ts-config-react": "^0.10.3",
|
||||||
"@types/lodash.kebabcase": "^4.1.6",
|
"@types/lodash.kebabcase": "^4.1.6",
|
||||||
"@types/react": "^17.0.14",
|
"@types/react": "^17.0.14",
|
||||||
"@types/react-dom": "^17.0.9",
|
"@types/react-dom": "^17.0.9",
|
||||||
|
|
|
@ -48,8 +48,8 @@
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@shopify/jest-koa-mocks": "^3.0.8",
|
"@shopify/jest-koa-mocks": "^3.0.8",
|
||||||
"@silverhand/eslint-config": "^0.9.4",
|
"@silverhand/eslint-config": "^0.10.2",
|
||||||
"@silverhand/ts-config": "^0.9.4",
|
"@silverhand/ts-config": "^0.10.2",
|
||||||
"@types/jest": "^27.0.1",
|
"@types/jest": "^27.0.1",
|
||||||
"@types/koa": "^2.13.3",
|
"@types/koa": "^2.13.3",
|
||||||
"@types/koa-logger": "^3.1.1",
|
"@types/koa-logger": "^3.1.1",
|
||||||
|
|
2
packages/core/src/include.d/koa-router.d.ts
vendored
2
packages/core/src/include.d/koa-router.d.ts
vendored
|
@ -1,3 +1,4 @@
|
||||||
|
/* eslint-disable max-lines */
|
||||||
/* eslint-disable unicorn/prevent-abbreviations */
|
/* eslint-disable unicorn/prevent-abbreviations */
|
||||||
// Modified from `@types/koa-router`
|
// Modified from `@types/koa-router`
|
||||||
// Added more precise middleware chain typings
|
// Added more precise middleware chain typings
|
||||||
|
@ -724,3 +725,4 @@ declare module 'koa-router' {
|
||||||
export = Router;
|
export = Router;
|
||||||
}
|
}
|
||||||
/* eslint-enable unicorn/prevent-abbreviations */
|
/* eslint-enable unicorn/prevent-abbreviations */
|
||||||
|
/* eslint-enable max-lines */
|
||||||
|
|
|
@ -1,3 +1,4 @@
|
||||||
|
/* eslint-disable max-lines */
|
||||||
import { Connector, ConnectorType } from '@logto/schemas';
|
import { Connector, ConnectorType } from '@logto/schemas';
|
||||||
|
|
||||||
import {
|
import {
|
||||||
|
@ -561,3 +562,4 @@ describe('connector route', () => {
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
/* eslint-enable max-lines */
|
||||||
|
|
|
@ -1,3 +1,4 @@
|
||||||
|
/* eslint-disable max-lines */
|
||||||
import { Provider } from 'oidc-provider';
|
import { Provider } from 'oidc-provider';
|
||||||
|
|
||||||
import { ConnectorType } from '@/connectors/types';
|
import { ConnectorType } from '@/connectors/types';
|
||||||
|
@ -861,3 +862,4 @@ describe('sessionRoutes', () => {
|
||||||
);
|
);
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
/* eslint-enable max-lines */
|
||||||
|
|
|
@ -1,3 +1,4 @@
|
||||||
|
/* eslint-disable max-lines */
|
||||||
import path from 'path';
|
import path from 'path';
|
||||||
|
|
||||||
import { LogtoErrorCode } from '@logto/phrases';
|
import { LogtoErrorCode } from '@logto/phrases';
|
||||||
|
@ -512,3 +513,4 @@ export default function sessionRoutes<T extends AnonymousRouter>(router: T, prov
|
||||||
return next();
|
return next();
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
/* eslint-enable max-lines */
|
||||||
|
|
|
@ -1,3 +1,4 @@
|
||||||
|
/* eslint-disable max-lines */
|
||||||
import {
|
import {
|
||||||
User,
|
User,
|
||||||
userInfoSelectFields,
|
userInfoSelectFields,
|
||||||
|
@ -369,3 +370,4 @@ export const mockUserLog: UserLog = {
|
||||||
payload: {},
|
payload: {},
|
||||||
createdAt: 10,
|
createdAt: 10,
|
||||||
};
|
};
|
||||||
|
/* eslint-enable max-lines */
|
||||||
|
|
|
@ -28,8 +28,8 @@
|
||||||
"@silverhand/essentials": "^1.1.4"
|
"@silverhand/essentials": "^1.1.4"
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@silverhand/eslint-config": "^0.9.4",
|
"@silverhand/eslint-config": "^0.10.2",
|
||||||
"@silverhand/ts-config": "^0.9.4",
|
"@silverhand/ts-config": "^0.10.2",
|
||||||
"eslint": "^8.10.0",
|
"eslint": "^8.10.0",
|
||||||
"lint-staged": "^11.1.1",
|
"lint-staged": "^11.1.1",
|
||||||
"prettier": "^2.3.2",
|
"prettier": "^2.3.2",
|
||||||
|
|
|
@ -1,3 +1,4 @@
|
||||||
|
/* eslint-disable max-lines */
|
||||||
const translation = {
|
const translation = {
|
||||||
general: {
|
general: {
|
||||||
placeholder: 'Placeholder',
|
placeholder: 'Placeholder',
|
||||||
|
@ -113,7 +114,7 @@ const translation = {
|
||||||
advanced_settings: 'Advanced Settings',
|
advanced_settings: 'Advanced Settings',
|
||||||
application_name: 'Application Name',
|
application_name: 'Application Name',
|
||||||
description: 'Description',
|
description: 'Description',
|
||||||
authorization_endpoint: 'Authorization Endpiont',
|
authorization_endpoint: 'Authorization Endpoint',
|
||||||
redirect_uri: 'Redirect URI',
|
redirect_uri: 'Redirect URI',
|
||||||
post_sign_out_redirect_uri: 'Post Sign Out Redirect URI',
|
post_sign_out_redirect_uri: 'Post Sign Out Redirect URI',
|
||||||
add_another: 'Add another',
|
add_another: 'Add another',
|
||||||
|
@ -360,3 +361,4 @@ const en = Object.freeze({
|
||||||
});
|
});
|
||||||
|
|
||||||
export default en;
|
export default en;
|
||||||
|
/* eslint-enable max-lines */
|
||||||
|
|
|
@ -1,3 +1,4 @@
|
||||||
|
/* eslint-disable max-lines */
|
||||||
import en from './en';
|
import en from './en';
|
||||||
|
|
||||||
const translation = {
|
const translation = {
|
||||||
|
@ -113,7 +114,7 @@ const translation = {
|
||||||
advanced_settings: 'Advanced Settings',
|
advanced_settings: 'Advanced Settings',
|
||||||
application_name: 'Application Name',
|
application_name: 'Application Name',
|
||||||
description: 'Description',
|
description: 'Description',
|
||||||
authorization_endpoint: 'Authorization Endpiont',
|
authorization_endpoint: 'Authorization Endpoint',
|
||||||
redirect_uri: 'Redirect URI',
|
redirect_uri: 'Redirect URI',
|
||||||
post_sign_out_redirect_uri: 'Post Sign Out Redirect URI',
|
post_sign_out_redirect_uri: 'Post Sign Out Redirect URI',
|
||||||
add_another: 'Add another',
|
add_another: 'Add another',
|
||||||
|
@ -358,3 +359,4 @@ const zhCN: typeof en = Object.freeze({
|
||||||
});
|
});
|
||||||
|
|
||||||
export default zhCN;
|
export default zhCN;
|
||||||
|
/* eslint-enable max-lines */
|
||||||
|
|
|
@ -21,9 +21,9 @@
|
||||||
"node": ">=14.15.0"
|
"node": ">=14.15.0"
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@silverhand/eslint-config": "^0.9.4",
|
"@silverhand/eslint-config": "^0.10.2",
|
||||||
"@silverhand/essentials": "^1.1.0",
|
"@silverhand/essentials": "^1.1.0",
|
||||||
"@silverhand/ts-config": "^0.9.4",
|
"@silverhand/ts-config": "^0.10.2",
|
||||||
"@types/lodash.uniq": "^4.5.6",
|
"@types/lodash.uniq": "^4.5.6",
|
||||||
"@types/node": "14",
|
"@types/node": "14",
|
||||||
"@types/pluralize": "^0.0.29",
|
"@types/pluralize": "^0.0.29",
|
||||||
|
|
|
@ -33,10 +33,10 @@
|
||||||
"@jest/types": "^27.5.1",
|
"@jest/types": "^27.5.1",
|
||||||
"@parcel/core": "^2.3.2",
|
"@parcel/core": "^2.3.2",
|
||||||
"@parcel/transformer-sass": "^2.3.2",
|
"@parcel/transformer-sass": "^2.3.2",
|
||||||
"@silverhand/eslint-config": "^0.9.4",
|
"@silverhand/eslint-config": "^0.10.2",
|
||||||
"@silverhand/eslint-config-react": "^0.9.5",
|
"@silverhand/eslint-config-react": "^0.10.3",
|
||||||
"@silverhand/ts-config": "^0.9.4",
|
"@silverhand/ts-config": "^0.10.2",
|
||||||
"@silverhand/ts-config-react": "^0.9.5",
|
"@silverhand/ts-config-react": "^0.10.3",
|
||||||
"@testing-library/react": "^12.0.0",
|
"@testing-library/react": "^12.0.0",
|
||||||
"@types/jest": "^27.4.0",
|
"@types/jest": "^27.4.0",
|
||||||
"@types/react": "^17.0.14",
|
"@types/react": "^17.0.14",
|
||||||
|
|
|
@ -26,11 +26,11 @@ importers:
|
||||||
'@monaco-editor/react': ^4.3.1
|
'@monaco-editor/react': ^4.3.1
|
||||||
'@parcel/core': ^2.3.2
|
'@parcel/core': ^2.3.2
|
||||||
'@parcel/transformer-sass': ^2.3.2
|
'@parcel/transformer-sass': ^2.3.2
|
||||||
'@silverhand/eslint-config': ^0.9.4
|
'@silverhand/eslint-config': ^0.10.2
|
||||||
'@silverhand/eslint-config-react': ^0.9.5
|
'@silverhand/eslint-config-react': ^0.10.3
|
||||||
'@silverhand/essentials': ^1.1.6
|
'@silverhand/essentials': ^1.1.6
|
||||||
'@silverhand/ts-config': ^0.9.4
|
'@silverhand/ts-config': ^0.10.2
|
||||||
'@silverhand/ts-config-react': ^0.9.5
|
'@silverhand/ts-config-react': ^0.10.3
|
||||||
'@types/lodash.kebabcase': ^4.1.6
|
'@types/lodash.kebabcase': ^4.1.6
|
||||||
'@types/react': ^17.0.14
|
'@types/react': ^17.0.14
|
||||||
'@types/react-dom': ^17.0.9
|
'@types/react-dom': ^17.0.9
|
||||||
|
@ -90,10 +90,10 @@ importers:
|
||||||
devDependencies:
|
devDependencies:
|
||||||
'@parcel/core': 2.3.2
|
'@parcel/core': 2.3.2
|
||||||
'@parcel/transformer-sass': 2.3.2_@parcel+core@2.3.2
|
'@parcel/transformer-sass': 2.3.2_@parcel+core@2.3.2
|
||||||
'@silverhand/eslint-config': 0.9.4_3a533fa6cc3da0cf8525ef55d41c4384
|
'@silverhand/eslint-config': 0.10.2_3a533fa6cc3da0cf8525ef55d41c4384
|
||||||
'@silverhand/eslint-config-react': 0.9.5_75f27ebc3d08f23e7ca8c3f63c7fa502
|
'@silverhand/eslint-config-react': 0.10.3_75f27ebc3d08f23e7ca8c3f63c7fa502
|
||||||
'@silverhand/ts-config': 0.9.4_typescript@4.6.2
|
'@silverhand/ts-config': 0.10.2_typescript@4.6.2
|
||||||
'@silverhand/ts-config-react': 0.9.5_typescript@4.6.2
|
'@silverhand/ts-config-react': 0.10.3_typescript@4.6.2
|
||||||
'@types/lodash.kebabcase': 4.1.6
|
'@types/lodash.kebabcase': 4.1.6
|
||||||
'@types/react': 17.0.37
|
'@types/react': 17.0.37
|
||||||
'@types/react-dom': 17.0.11
|
'@types/react-dom': 17.0.11
|
||||||
|
@ -114,9 +114,9 @@ importers:
|
||||||
'@logto/phrases': ^0.1.0
|
'@logto/phrases': ^0.1.0
|
||||||
'@logto/schemas': ^0.1.0
|
'@logto/schemas': ^0.1.0
|
||||||
'@shopify/jest-koa-mocks': ^3.0.8
|
'@shopify/jest-koa-mocks': ^3.0.8
|
||||||
'@silverhand/eslint-config': ^0.9.4
|
'@silverhand/eslint-config': ^0.10.2
|
||||||
'@silverhand/essentials': ^1.1.0
|
'@silverhand/essentials': ^1.1.0
|
||||||
'@silverhand/ts-config': ^0.9.4
|
'@silverhand/ts-config': ^0.10.2
|
||||||
'@types/jest': ^27.0.1
|
'@types/jest': ^27.0.1
|
||||||
'@types/koa': ^2.13.3
|
'@types/koa': ^2.13.3
|
||||||
'@types/koa-logger': ^3.1.1
|
'@types/koa-logger': ^3.1.1
|
||||||
|
@ -191,8 +191,8 @@ importers:
|
||||||
zod: 3.14.3
|
zod: 3.14.3
|
||||||
devDependencies:
|
devDependencies:
|
||||||
'@shopify/jest-koa-mocks': 3.0.8
|
'@shopify/jest-koa-mocks': 3.0.8
|
||||||
'@silverhand/eslint-config': 0.9.4_3a533fa6cc3da0cf8525ef55d41c4384
|
'@silverhand/eslint-config': 0.10.2_3a533fa6cc3da0cf8525ef55d41c4384
|
||||||
'@silverhand/ts-config': 0.9.4_typescript@4.6.2
|
'@silverhand/ts-config': 0.10.2_typescript@4.6.2
|
||||||
'@types/jest': 27.0.3
|
'@types/jest': 27.0.3
|
||||||
'@types/koa': 2.13.4
|
'@types/koa': 2.13.4
|
||||||
'@types/koa-logger': 3.1.2
|
'@types/koa-logger': 3.1.2
|
||||||
|
@ -218,9 +218,9 @@ importers:
|
||||||
|
|
||||||
packages/phrases:
|
packages/phrases:
|
||||||
specifiers:
|
specifiers:
|
||||||
'@silverhand/eslint-config': ^0.9.4
|
'@silverhand/eslint-config': ^0.10.2
|
||||||
'@silverhand/essentials': ^1.1.4
|
'@silverhand/essentials': ^1.1.4
|
||||||
'@silverhand/ts-config': ^0.9.4
|
'@silverhand/ts-config': ^0.10.2
|
||||||
eslint: ^8.10.0
|
eslint: ^8.10.0
|
||||||
lint-staged: ^11.1.1
|
lint-staged: ^11.1.1
|
||||||
prettier: ^2.3.2
|
prettier: ^2.3.2
|
||||||
|
@ -228,8 +228,8 @@ importers:
|
||||||
dependencies:
|
dependencies:
|
||||||
'@silverhand/essentials': 1.1.4
|
'@silverhand/essentials': 1.1.4
|
||||||
devDependencies:
|
devDependencies:
|
||||||
'@silverhand/eslint-config': 0.9.4_3a533fa6cc3da0cf8525ef55d41c4384
|
'@silverhand/eslint-config': 0.10.2_3a533fa6cc3da0cf8525ef55d41c4384
|
||||||
'@silverhand/ts-config': 0.9.4_typescript@4.6.2
|
'@silverhand/ts-config': 0.10.2_typescript@4.6.2
|
||||||
eslint: 8.10.0
|
eslint: 8.10.0
|
||||||
lint-staged: 11.2.6
|
lint-staged: 11.2.6
|
||||||
prettier: 2.5.1
|
prettier: 2.5.1
|
||||||
|
@ -238,9 +238,9 @@ importers:
|
||||||
packages/schemas:
|
packages/schemas:
|
||||||
specifiers:
|
specifiers:
|
||||||
'@logto/phrases': ^0.1.0
|
'@logto/phrases': ^0.1.0
|
||||||
'@silverhand/eslint-config': ^0.9.4
|
'@silverhand/eslint-config': ^0.10.2
|
||||||
'@silverhand/essentials': ^1.1.0
|
'@silverhand/essentials': ^1.1.0
|
||||||
'@silverhand/ts-config': ^0.9.4
|
'@silverhand/ts-config': ^0.10.2
|
||||||
'@types/lodash.uniq': ^4.5.6
|
'@types/lodash.uniq': ^4.5.6
|
||||||
'@types/node': '14'
|
'@types/node': '14'
|
||||||
'@types/pluralize': ^0.0.29
|
'@types/pluralize': ^0.0.29
|
||||||
|
@ -257,9 +257,9 @@ importers:
|
||||||
'@logto/phrases': link:../phrases
|
'@logto/phrases': link:../phrases
|
||||||
zod: 3.14.3
|
zod: 3.14.3
|
||||||
devDependencies:
|
devDependencies:
|
||||||
'@silverhand/eslint-config': 0.9.4_3a533fa6cc3da0cf8525ef55d41c4384
|
'@silverhand/eslint-config': 0.10.2_3a533fa6cc3da0cf8525ef55d41c4384
|
||||||
'@silverhand/essentials': 1.1.2
|
'@silverhand/essentials': 1.1.2
|
||||||
'@silverhand/ts-config': 0.9.4_typescript@4.6.2
|
'@silverhand/ts-config': 0.10.2_typescript@4.6.2
|
||||||
'@types/lodash.uniq': 4.5.6
|
'@types/lodash.uniq': 4.5.6
|
||||||
'@types/node': 14.18.0
|
'@types/node': 14.18.0
|
||||||
'@types/pluralize': 0.0.29
|
'@types/pluralize': 0.0.29
|
||||||
|
@ -279,10 +279,10 @@ importers:
|
||||||
'@logto/schemas': ^0.1.0
|
'@logto/schemas': ^0.1.0
|
||||||
'@parcel/core': ^2.3.2
|
'@parcel/core': ^2.3.2
|
||||||
'@parcel/transformer-sass': ^2.3.2
|
'@parcel/transformer-sass': ^2.3.2
|
||||||
'@silverhand/eslint-config': ^0.9.4
|
'@silverhand/eslint-config': ^0.10.2
|
||||||
'@silverhand/eslint-config-react': ^0.9.5
|
'@silverhand/eslint-config-react': ^0.10.3
|
||||||
'@silverhand/ts-config': ^0.9.4
|
'@silverhand/ts-config': ^0.10.2
|
||||||
'@silverhand/ts-config-react': ^0.9.5
|
'@silverhand/ts-config-react': ^0.10.3
|
||||||
'@testing-library/react': ^12.0.0
|
'@testing-library/react': ^12.0.0
|
||||||
'@types/jest': ^27.4.0
|
'@types/jest': ^27.4.0
|
||||||
'@types/react': ^17.0.14
|
'@types/react': ^17.0.14
|
||||||
|
@ -330,10 +330,10 @@ importers:
|
||||||
'@jest/types': 27.5.1
|
'@jest/types': 27.5.1
|
||||||
'@parcel/core': 2.3.2
|
'@parcel/core': 2.3.2
|
||||||
'@parcel/transformer-sass': 2.3.2_@parcel+core@2.3.2
|
'@parcel/transformer-sass': 2.3.2_@parcel+core@2.3.2
|
||||||
'@silverhand/eslint-config': 0.9.4_3a533fa6cc3da0cf8525ef55d41c4384
|
'@silverhand/eslint-config': 0.10.2_3a533fa6cc3da0cf8525ef55d41c4384
|
||||||
'@silverhand/eslint-config-react': 0.9.5_75f27ebc3d08f23e7ca8c3f63c7fa502
|
'@silverhand/eslint-config-react': 0.10.3_75f27ebc3d08f23e7ca8c3f63c7fa502
|
||||||
'@silverhand/ts-config': 0.9.4_typescript@4.6.2
|
'@silverhand/ts-config': 0.10.2_typescript@4.6.2
|
||||||
'@silverhand/ts-config-react': 0.9.5_typescript@4.6.2
|
'@silverhand/ts-config-react': 0.10.3_typescript@4.6.2
|
||||||
'@testing-library/react': 12.1.2_react-dom@17.0.2+react@17.0.2
|
'@testing-library/react': 12.1.2_react-dom@17.0.2+react@17.0.2
|
||||||
'@types/jest': 27.4.0
|
'@types/jest': 27.4.0
|
||||||
'@types/react': 17.0.37
|
'@types/react': 17.0.37
|
||||||
|
@ -3149,12 +3149,12 @@ packages:
|
||||||
- supports-color
|
- supports-color
|
||||||
dev: true
|
dev: true
|
||||||
|
|
||||||
/@silverhand/eslint-config-react/0.9.5_75f27ebc3d08f23e7ca8c3f63c7fa502:
|
/@silverhand/eslint-config-react/0.10.3_75f27ebc3d08f23e7ca8c3f63c7fa502:
|
||||||
resolution: {integrity: sha512-3teJha0YxzPWHn3wBSuuUA2UDUGyX9RtyhfWgddRg1rKLUO429Go7SFQ20oRVeJRPFfwJSJI8/0pD8iMjCs62A==}
|
resolution: {integrity: sha512-qFDRYhYTDUgEgAxaSexgiImDosXPWB//9Pfz7pwFDIpjha9PzcsSgQnCS8/o4aTrvgK8rougZcvrJLvqLoxmKA==}
|
||||||
peerDependencies:
|
peerDependencies:
|
||||||
stylelint: '>=13.13.1'
|
stylelint: '>=13.13.1'
|
||||||
dependencies:
|
dependencies:
|
||||||
'@silverhand/eslint-config': 0.9.4_3a533fa6cc3da0cf8525ef55d41c4384
|
'@silverhand/eslint-config': 0.10.2_3a533fa6cc3da0cf8525ef55d41c4384
|
||||||
eslint-config-xo-react: 0.25.0_e4a0611724b3ba59fbf3ee8e61d9dcd0
|
eslint-config-xo-react: 0.25.0_e4a0611724b3ba59fbf3ee8e61d9dcd0
|
||||||
eslint-plugin-react: 7.29.3_eslint@8.10.0
|
eslint-plugin-react: 7.29.3_eslint@8.10.0
|
||||||
eslint-plugin-react-hooks: 4.3.0_eslint@8.10.0
|
eslint-plugin-react-hooks: 4.3.0_eslint@8.10.0
|
||||||
|
@ -3167,8 +3167,8 @@ packages:
|
||||||
- typescript
|
- typescript
|
||||||
dev: true
|
dev: true
|
||||||
|
|
||||||
/@silverhand/eslint-config/0.9.4_3a533fa6cc3da0cf8525ef55d41c4384:
|
/@silverhand/eslint-config/0.10.2_3a533fa6cc3da0cf8525ef55d41c4384:
|
||||||
resolution: {integrity: sha512-TlMi206oWQLIFr1Tq2pk8swuEehIlCJiXeNPZcSpRfruXV9zbJNeK9vwMGTTmyO0J3zo3AcKXZEnIftbBu2yNw==}
|
resolution: {integrity: sha512-MT2nj7NMA2T9sWFEDPq4JP6dWrrNWWfmcD/oHbmH3LAZAZtfJQWtzPtd/yy5EDO6qn7Oo+TZqsvk/v95ah79EA==}
|
||||||
engines: {node: '>=14.15.0'}
|
engines: {node: '>=14.15.0'}
|
||||||
peerDependencies:
|
peerDependencies:
|
||||||
eslint: ^8.1.0
|
eslint: ^8.1.0
|
||||||
|
@ -3234,18 +3234,18 @@ packages:
|
||||||
lodash.pick: 4.4.0
|
lodash.pick: 4.4.0
|
||||||
dev: false
|
dev: false
|
||||||
|
|
||||||
/@silverhand/ts-config-react/0.9.5_typescript@4.6.2:
|
/@silverhand/ts-config-react/0.10.3_typescript@4.6.2:
|
||||||
resolution: {integrity: sha512-KYMBwVypUVwxDcE+OCwNSEG/k3N7gGFsLZ+i/JCtPVqPBK25VQg0uATc/YwMxKjY6VkXrIr5uHer4b3tMM5ZSQ==}
|
resolution: {integrity: sha512-xGOwcw1HTixfP3PSSdJT3leGnlUV0dLna9xp58bDDLul7UCnIn+PNp1VNJxUZ/HvtKbV4ZSYdGsGE6Xqmwn7Ag==}
|
||||||
engines: {node: '>=14.15.0'}
|
engines: {node: '>=14.15.0'}
|
||||||
peerDependencies:
|
peerDependencies:
|
||||||
typescript: ^4.3.5
|
typescript: ^4.3.5
|
||||||
dependencies:
|
dependencies:
|
||||||
'@silverhand/ts-config': 0.9.4_typescript@4.6.2
|
'@silverhand/ts-config': 0.10.2_typescript@4.6.2
|
||||||
typescript: 4.6.2
|
typescript: 4.6.2
|
||||||
dev: true
|
dev: true
|
||||||
|
|
||||||
/@silverhand/ts-config/0.9.4_typescript@4.6.2:
|
/@silverhand/ts-config/0.10.2_typescript@4.6.2:
|
||||||
resolution: {integrity: sha512-EJOqlBYy6BV8cOIq6Owv9OaPB79nqtKe6En61SgcfwveL1MM0CbaJNjsYXVZvpriEkCDfXQ1+QMw6Vb9iQaM7Q==}
|
resolution: {integrity: sha512-ihkZhwpChO5mDEggsA6gYcwNaCS/HXtisXYR8l4yFVpX2vydGyTjo3Rxo8ZzgqXTKFy2F4N8EnnLEiudFsXE0Q==}
|
||||||
engines: {node: '>=14.15.0'}
|
engines: {node: '>=14.15.0'}
|
||||||
peerDependencies:
|
peerDependencies:
|
||||||
typescript: ^4.3.5
|
typescript: ^4.3.5
|
||||||
|
|
Loading…
Reference in a new issue