Update npm run commands and various dependencies

Npm run commands for 'dev' have been updated to 'start' in the Wordpress package. Also, removing peer dependencies for the CMS core and updating versions for various dependencies in pnpm-lock.yaml file. Furthermore, a modification to the SiteHeaderAccountSection function in the site-header-account-section.tsx file was made.
This commit is contained in:
giancarlo
2024-04-03 16:29:05 +08:00
parent 352ec874c1
commit 3fd216ba6e
7 changed files with 87 additions and 117 deletions

View File

@@ -16,16 +16,16 @@ import { Trans } from '@kit/ui/trans';
import featuresFlagConfig from '~/config/feature-flags.config';
import pathsConfig from '~/config/paths.config';
export function SiteHeaderAccountSection(
props: React.PropsWithChildren<{
user: User | null;
}>,
) {
if (!props.user) {
export function SiteHeaderAccountSection({
user,
}: React.PropsWithChildren<{
user: User | null;
}>) {
if (!user) {
return <AuthButtons />;
}
return <SuspendedPersonalAccountDropdown user={props.user} />;
return <SuspendedPersonalAccountDropdown user={user} />;
}
function SuspendedPersonalAccountDropdown(props: { user: User | null }) {

View File

@@ -35,8 +35,8 @@
"@supabase/ssr": "^0.1.0",
"@supabase/supabase-js": "^2.41.1",
"@tanstack/react-query": "5.28.6",
"@tanstack/react-query-next-experimental": "^5.28.9",
"@tanstack/react-table": "^8.15.0",
"@tanstack/react-query-next-experimental": "^5.28.14",
"@tanstack/react-table": "^8.15.3",
"date-fns": "^3.6.0",
"edge-csrf": "^1.0.9",
"i18next": "^23.10.1",
@@ -60,7 +60,7 @@
"@kit/tsconfig": "workspace:^",
"@next/bundle-analyzer": "14.2.0-canary.54",
"@types/mdx": "^2.0.12",
"@types/node": "^20.11.30",
"@types/node": "^20.12.3",
"@types/react": "^18.2.73",
"@types/react-dom": "^18.2.22",
"autoprefixer": "^10.4.19",

View File

@@ -12,9 +12,7 @@
"exports": {
".": "./src/index.ts"
},
"peerDependencies": {
"@kit/contentlayer": "workspace:*"
},
"peerDependencies": {},
"devDependencies": {
"@kit/eslint-config": "workspace:*",
"@kit/prettier-config": "workspace:*",

View File

@@ -23,7 +23,7 @@ docker-compose up
or
```
npm run dev
pnpm run start
```
from this package's root directory.

View File

@@ -8,7 +8,7 @@
"lint": "eslint .",
"typecheck": "tsc --noEmit",
"build": "contentlayer build",
"dev": "docker compose up"
"start": "docker compose up"
},
"prettier": "@kit/prettier-config",
"exports": {

View File

@@ -50,7 +50,7 @@
"@kit/tailwind-config": "workspace:*",
"@kit/tsconfig": "workspace:*",
"@radix-ui/react-icons": "^1.3.0",
"@tanstack/react-table": "^8.15.0",
"@tanstack/react-table": "^8.15.3",
"@types/react": "^18.2.73",
"@types/react-dom": "^18.2.22",
"class-variance-authority": "^0.7.0",

174
pnpm-lock.yaml generated
View File

@@ -13,7 +13,7 @@ importers:
version: 0.21.3
'@turbo/gen':
specifier: ^1.13.0
version: 1.13.0(@types/node@20.11.30)(typescript@5.4.3)
version: 1.13.0(@types/node@20.12.3)(typescript@5.4.3)
cross-env:
specifier: ^7.0.3
version: 7.0.3
@@ -85,19 +85,19 @@ importers:
version: 1.3.0(react@18.2.0)
'@supabase/ssr':
specifier: ^0.1.0
version: 0.1.0(@supabase/supabase-js@2.41.1)
version: 0.1.0(@supabase/supabase-js@2.42.0)
'@supabase/supabase-js':
specifier: ^2.41.1
version: 2.41.1
version: 2.42.0
'@tanstack/react-query':
specifier: 5.28.6
version: 5.28.6(react@18.2.0)
'@tanstack/react-query-next-experimental':
specifier: ^5.28.9
version: 5.28.9(@tanstack/react-query@5.28.6)(next@14.2.0-canary.54)(react@18.2.0)
specifier: ^5.28.14
version: 5.28.14(@tanstack/react-query@5.28.6)(next@14.2.0-canary.54)(react@18.2.0)
'@tanstack/react-table':
specifier: ^8.15.0
version: 8.15.0(react-dom@18.2.0)(react@18.2.0)
specifier: ^8.15.3
version: 8.15.3(react-dom@18.2.0)(react@18.2.0)
date-fns:
specifier: ^3.6.0
version: 3.6.0
@@ -163,8 +163,8 @@ importers:
specifier: ^2.0.12
version: 2.0.12
'@types/node':
specifier: ^20.11.30
version: 20.11.30
specifier: ^20.12.3
version: 20.12.3
'@types/react':
specifier: ^18.2.73
version: 18.2.73
@@ -359,10 +359,6 @@ importers:
version: link:../../ui
packages/cms/core:
dependencies:
'@kit/contentlayer':
specifier: workspace:*
version: link:../contentlayer
devDependencies:
'@kit/eslint-config':
specifier: workspace:*
@@ -825,8 +821,8 @@ importers:
specifier: ^1.3.0
version: 1.3.0(react@18.2.0)
'@tanstack/react-table':
specifier: ^8.15.0
version: 8.15.0(react-dom@18.2.0)(react@18.2.0)
specifier: ^8.15.3
version: 8.15.3(react-dom@18.2.0)(react@18.2.0)
'@types/react':
specifier: ^18.2.73
version: 18.2.73
@@ -4200,10 +4196,17 @@ packages:
dependencies:
whatwg-url: 5.0.0
/@supabase/postgrest-js@1.15.0:
resolution: {integrity: sha512-U4bwBOrhsXWqDjZiYNbVqMBtRGgIIYE0kE5ZNSwsIbeBWfr/UxOMrnkIQUBGIZRhpYW/tw1WnTdRl1AGNyaxcw==}
dependencies:
'@supabase/node-fetch': 2.6.15
dev: false
/@supabase/postgrest-js@1.9.2:
resolution: {integrity: sha512-I6yHo8CC9cxhOo6DouDMy9uOfW7hjdsnCxZiaJuIVZm1dBGTFiQPgfMa9zXCamEWzNyWRjZvupAUuX+tqcl5Sw==}
dependencies:
'@supabase/node-fetch': 2.6.15
dev: true
/@supabase/realtime-js@2.9.3:
resolution: {integrity: sha512-lAp50s2n3FhGJFq+wTSXLNIDPw5Y0Wxrgt44eM5nLSA3jZNUUP3Oq2Ccd1CbZdVntPCWLZvJaU//pAd2NE+QnQ==}
@@ -4224,6 +4227,17 @@ packages:
'@supabase/supabase-js': 2.41.1
cookie: 0.5.0
ramda: 0.29.1
dev: true
/@supabase/ssr@0.1.0(@supabase/supabase-js@2.42.0):
resolution: {integrity: sha512-bIVrkqjAK5G3KjkIMKYKtAOlCgRRplEWjrlyRyXSOYtgDieiOhk2ZyNAPsEOa1By9OZVxuX5eAW1fitdnuxayw==}
peerDependencies:
'@supabase/supabase-js': ^2.33.1
dependencies:
'@supabase/supabase-js': 2.42.0
cookie: 0.5.0
ramda: 0.29.1
dev: false
/@supabase/storage-js@2.5.5:
resolution: {integrity: sha512-OpLoDRjFwClwc2cjTJZG8XviTiQH4Ik8sCiMK5v7et0MDu2QlXjCAW3ljxJB5+z/KazdMOTnySi+hysxWUPu3w==}
@@ -4242,6 +4256,21 @@ packages:
transitivePeerDependencies:
- bufferutil
- utf-8-validate
dev: true
/@supabase/supabase-js@2.42.0:
resolution: {integrity: sha512-1PDqJiA4iG45w3AAu6xkccJ3wPqlGJUoz9CPhScRLLTStxhewYhz0mjryTpXz1kgtNHdUAsirALreezn8UZMjA==}
dependencies:
'@supabase/auth-js': 2.63.0
'@supabase/functions-js': 2.2.2
'@supabase/node-fetch': 2.6.15
'@supabase/postgrest-js': 1.15.0
'@supabase/realtime-js': 2.9.3
'@supabase/storage-js': 2.5.5
transitivePeerDependencies:
- bufferutil
- utf-8-validate
dev: false
/@swc/core-darwin-arm64@1.3.101:
resolution: {integrity: sha512-mNFK+uHNPRXSnfTOG34zJOeMl2waM4hF4a2NY7dkMXrPqw9CoJn4MwTXJcyMiSz1/BnNjjTCHF3Yhj0jPxmkzQ==}
@@ -4391,10 +4420,10 @@ packages:
/@tanstack/query-core@5.28.6:
resolution: {integrity: sha512-hnhotV+DnQtvtR3jPvbQMPNMW4KEK0J4k7c609zJ8muiNknm+yoDyMHmxTWM5ZnlZpsz0zOxYFr+mzRJNHWJsA==}
/@tanstack/react-query-next-experimental@5.28.9(@tanstack/react-query@5.28.6)(next@14.2.0-canary.54)(react@18.2.0):
resolution: {integrity: sha512-cihvqAme8nX6O5jeWtk19fnMsgXTX5puHwj6ya2Gf6FZIKhcFTrXQ9npH3ACcbinmVYPcQrShk/D3XAGKR/AUg==}
/@tanstack/react-query-next-experimental@5.28.14(@tanstack/react-query@5.28.6)(next@14.2.0-canary.54)(react@18.2.0):
resolution: {integrity: sha512-gGHx3uJkZNYYpFNFk8eEo96ssiFE2OmYA49wszHxHrtO5nL7kzRcnJF8SALGpqSEjo5D3fLMH24MrhbBsO0sig==}
peerDependencies:
'@tanstack/react-query': ^5.28.9
'@tanstack/react-query': ^5.28.14
next: ^13 || ^14
react: ^18.0.0
dependencies:
@@ -4411,19 +4440,19 @@ packages:
'@tanstack/query-core': 5.28.6
react: 18.2.0
/@tanstack/react-table@8.15.0(react-dom@18.2.0)(react@18.2.0):
resolution: {integrity: sha512-8K4RSROUtXUtfiezV6Ehl8z99axFrkQnxXi0vjWBJv3Tsm5x4EyrgXI7d2tOOMoANykKZLB6S1sGZGemoMRt7Q==}
/@tanstack/react-table@8.15.3(react-dom@18.2.0)(react@18.2.0):
resolution: {integrity: sha512-aocQ4WpWiAh7R+yxNp+DGQYXeVACh5lv2kk96DjYgFiHDCB0cOFoYMT/pM6eDOzeMXR9AvPoLeumTgq8/0qX+w==}
engines: {node: '>=12'}
peerDependencies:
react: '>=16.8'
react-dom: '>=16.8'
dependencies:
'@tanstack/table-core': 8.14.0
'@tanstack/table-core': 8.15.3
react: 18.2.0
react-dom: 18.2.0(react@18.2.0)
/@tanstack/table-core@8.14.0:
resolution: {integrity: sha512-wDhpKJahGHWhmRt4RxtV3pES63CoeadljGWS/xeS9OJr1HBl2NB+OO44ht3sxDH5j5TRDAbQzC0NvSlsUfn7lQ==}
/@tanstack/table-core@8.15.3:
resolution: {integrity: sha512-wOgV0HfEvuMOv8RlqdR9MdNNqq0uyvQtP39QOvGlggHvIObOE4exS+D5LGO8LZ3LUXxId2IlUKcHDHaGujWhUg==}
engines: {node: '>=12'}
/@tootallnate/quickjs-emscripten@0.23.0:
@@ -4466,7 +4495,7 @@ packages:
resolution: {integrity: sha512-vxhUy4J8lyeyinH7Azl1pdd43GJhZH/tP2weN8TntQblOY+A0XbT8DJk1/oCPuOOyg/Ja757rG0CgHcWC8OfMA==}
dev: false
/@turbo/gen@1.13.0(@types/node@20.11.30)(typescript@5.4.3):
/@turbo/gen@1.13.0(@types/node@20.12.3)(typescript@5.4.3):
resolution: {integrity: sha512-AxIrDubYDLdYBNZC/t3Gn0B7v+zhlM3V7VoMhopKrMWSL0YsjpW/OcDThmV+WglVlkPLmk95ncvXvgfn5RrsBw==}
hasBin: true
dependencies:
@@ -4478,7 +4507,7 @@ packages:
minimatch: 9.0.3
node-plop: 0.26.3
proxy-agent: 6.4.0
ts-node: 10.9.2(@types/node@20.11.30)(typescript@5.4.3)
ts-node: 10.9.2(@types/node@20.12.3)(typescript@5.4.3)
update-check: 1.5.4
validate-npm-package-name: 5.0.0
transitivePeerDependencies:
@@ -4520,7 +4549,7 @@ packages:
/@types/cors@2.8.17:
resolution: {integrity: sha512-8CGDvrBj1zgo2qE+oS3pOCyYNqCPryMWY2bGfwA0dcfopWGgxs+78df0Rs3rc9THP4JkOhLsAa+15VdpAqkcUA==}
dependencies:
'@types/node': 20.11.30
'@types/node': 20.12.3
dev: false
/@types/d3-array@3.2.1:
@@ -4599,7 +4628,7 @@ packages:
resolution: {integrity: sha512-ZUxbzKl0IfJILTS6t7ip5fQQM/J3TJYubDm3nMbgubNNYS62eXeUpoLUC8/7fJNiFYHTrGPQn7hspDUzIHX3UA==}
dependencies:
'@types/minimatch': 5.1.2
'@types/node': 20.11.30
'@types/node': 20.12.3
dev: false
/@types/hast@2.3.10:
@@ -4650,15 +4679,15 @@ packages:
resolution: {integrity: sha512-nG96G3Wp6acyAgJqGasjODb+acrI7KltPiRxzHPXnP3NgI28bpQDRv53olbqGXbfcgF5aiiHmO3xpwEpS5Ld9g==}
dev: false
/@types/node@20.11.30:
resolution: {integrity: sha512-dHM6ZxwlmuZaRmUPfv1p+KrdD1Dci04FbdEm/9wEMouFqxYoFl5aMkt0VMAUtYRQDyYvD41WJLukhq/ha3YuTw==}
/@types/node@20.12.3:
resolution: {integrity: sha512-sD+ia2ubTeWrOu+YMF+MTAB7E+O7qsMqAbMfW7DG3K1URwhZ5hN1pLlRVGbf4wDFzSfikL05M17EyorS86jShw==}
dependencies:
undici-types: 5.26.5
/@types/nodemailer@6.4.14:
resolution: {integrity: sha512-fUWthHO9k9DSdPCSPRqcu6TWhYyxTBg382vlNIttSe9M7XfsT06y0f24KHXtbnijPGGRIcVvdKHTNikOI6qiHA==}
dependencies:
'@types/node': 20.11.30
'@types/node': 20.12.3
dev: true
/@types/parse5@6.0.3:
@@ -4701,7 +4730,7 @@ packages:
/@types/through@0.0.33:
resolution: {integrity: sha512-HsJ+z3QuETzP3cswwtzt2vEIiHBk/dCcHGhbmG5X3ecnwFD/lPrMpliGXxSCg03L9AhrdwA4Oz/qfspkDW+xGQ==}
dependencies:
'@types/node': 20.11.30
'@types/node': 20.12.3
dev: false
/@types/tinycolor2@1.4.6:
@@ -4719,7 +4748,7 @@ packages:
/@types/webpack@5.28.5(@swc/core@1.3.101)(esbuild@0.19.11):
resolution: {integrity: sha512-wR87cgvxj3p6D0Crt1r5avwqffqPXUkNlnQ1mjU93G7gCuFjufZR4I6j8cz5g1F1tTYpfOOFvly+cmIQwL9wvw==}
dependencies:
'@types/node': 20.11.30
'@types/node': 20.12.3
tapable: 2.2.1
webpack: 5.91.0(@swc/core@1.3.101)(esbuild@0.19.11)
transitivePeerDependencies:
@@ -4732,7 +4761,7 @@ packages:
/@types/ws@8.5.10:
resolution: {integrity: sha512-vmQSUcfalpIq0R9q7uTo2lXs6eGIpt9wtnLdMv9LVpIjCA/+ufZRozlVoVelIYixx1ugCBKDhn89vnsEGOCx9A==}
dependencies:
'@types/node': 20.11.30
'@types/node': 20.12.3
/@typescript-eslint/eslint-plugin@7.4.0(@typescript-eslint/parser@7.4.0)(eslint@8.57.0)(typescript@5.4.3):
resolution: {integrity: sha512-yHMQ/oFaM7HZdVrVm/M2WHaNPgyuJH4WelkSVEWSSsir34kxW2kDJCxlXRhhGWEsMN0WAW/vLpKfKVcm8k+MPw==}
@@ -6209,7 +6238,7 @@ packages:
dependencies:
'@types/cookie': 0.4.1
'@types/cors': 2.8.17
'@types/node': 20.11.30
'@types/node': 20.12.3
accepts: 1.3.8
base64id: 2.0.0
cookie: 0.4.2
@@ -7941,7 +7970,7 @@ packages:
resolution: {integrity: sha512-7vuh85V5cdDofPyxn58nrPjBktZo0u9x1g8WtjQol+jZDaE+fhN+cIvTj11GndBnMnyfrUOG1sZQxCdjKh+DKg==}
engines: {node: '>= 10.13.0'}
dependencies:
'@types/node': 20.11.30
'@types/node': 20.12.3
merge-stream: 2.0.0
supports-color: 8.1.1
dev: false
@@ -9463,18 +9492,6 @@ packages:
postcss-value-parser: 4.2.0
read-cache: 1.0.0
resolve: 1.22.8
dev: false
/postcss-import@15.1.0(postcss@8.4.38):
resolution: {integrity: sha512-hpr+J05B2FVYUAXHeK1YyI267J/dDDhMU6B6civm8hSY1jYJnBXxzKDKDswzJmtLHryrjhnDjqqp/49t8FALew==}
engines: {node: '>=14.0.0'}
peerDependencies:
postcss: ^8.0.0
dependencies:
postcss: 8.4.38
postcss-value-parser: 4.2.0
read-cache: 1.0.0
resolve: 1.22.8
/postcss-js@4.0.1(postcss@8.4.33):
resolution: {integrity: sha512-dDLF8pEO191hJMtlHFPRa8xsizHaM82MLfNkUHdUtVEV3tgTp5oj+8qbEqYM57SLfc74KSbw//4SeJma2LRVIw==}
@@ -9484,16 +9501,6 @@ packages:
dependencies:
camelcase-css: 2.0.1
postcss: 8.4.33
dev: false
/postcss-js@4.0.1(postcss@8.4.38):
resolution: {integrity: sha512-dDLF8pEO191hJMtlHFPRa8xsizHaM82MLfNkUHdUtVEV3tgTp5oj+8qbEqYM57SLfc74KSbw//4SeJma2LRVIw==}
engines: {node: ^12 || ^14 || >= 16}
peerDependencies:
postcss: ^8.4.21
dependencies:
camelcase-css: 2.0.1
postcss: 8.4.38
/postcss-load-config@4.0.2(postcss@8.4.33):
resolution: {integrity: sha512-bSVhyJGL00wMVoPUzAVAnbEoWyqRxkjv64tUl427SKnPrENtq6hJwUojroMz2VB+Q1edmi4IfrAPpami5VVgMQ==}
@@ -9510,23 +9517,6 @@ packages:
lilconfig: 3.1.1
postcss: 8.4.33
yaml: 2.4.1
dev: false
/postcss-load-config@4.0.2(postcss@8.4.38):
resolution: {integrity: sha512-bSVhyJGL00wMVoPUzAVAnbEoWyqRxkjv64tUl427SKnPrENtq6hJwUojroMz2VB+Q1edmi4IfrAPpami5VVgMQ==}
engines: {node: '>= 14'}
peerDependencies:
postcss: '>=8.0.9'
ts-node: '>=9.0.0'
peerDependenciesMeta:
postcss:
optional: true
ts-node:
optional: true
dependencies:
lilconfig: 3.1.1
postcss: 8.4.38
yaml: 2.4.1
/postcss-nested@6.0.1(postcss@8.4.33):
resolution: {integrity: sha512-mEp4xPMi5bSWiMbsgoPfcP74lsWLHkQbZc3sY+jWYd65CUwXrUaTp0fmNpa01ZcETKlIgUdFN/MpS2xZtqL9dQ==}
@@ -9536,16 +9526,6 @@ packages:
dependencies:
postcss: 8.4.33
postcss-selector-parser: 6.0.16
dev: false
/postcss-nested@6.0.1(postcss@8.4.38):
resolution: {integrity: sha512-mEp4xPMi5bSWiMbsgoPfcP74lsWLHkQbZc3sY+jWYd65CUwXrUaTp0fmNpa01ZcETKlIgUdFN/MpS2xZtqL9dQ==}
engines: {node: '>=12.0'}
peerDependencies:
postcss: ^8.2.14
dependencies:
postcss: 8.4.38
postcss-selector-parser: 6.0.16
/postcss-selector-parser@6.0.16:
resolution: {integrity: sha512-A0RVJrX+IUkVZbW3ClroRWurercFhieevHB38sr2+l9eUClMqome3LmEmnhlNy+5Mr2EYN6B2Kaw9wYdd+VHiw==}
@@ -9583,14 +9563,6 @@ packages:
source-map-js: 1.2.0
dev: false
/postcss@8.4.38:
resolution: {integrity: sha512-Wglpdk03BSfXkHoQa3b/oulrotAkwrlLDRSOb9D0bN86FdRyE9lppSp33aHNPgBa0JKCoB+drFLZkQoRRYae5A==}
engines: {node: ^10 || ^12 || >=14}
dependencies:
nanoid: 3.3.7
picocolors: 1.0.0
source-map-js: 1.2.0
/prelude-ls@1.2.1:
resolution: {integrity: sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==}
engines: {node: '>= 0.8.0'}
@@ -9711,7 +9683,7 @@ packages:
'@protobufjs/path': 1.1.2
'@protobufjs/pool': 1.1.0
'@protobufjs/utf8': 1.1.0
'@types/node': 20.11.30
'@types/node': 20.12.3
long: 5.2.3
dev: false
@@ -10759,7 +10731,7 @@ packages:
resolution: {integrity: sha512-Pj8SAdTNjMq42UnWzBTTy8KMQ8qbQoVemPHbw3x+rHvwq1Psg9UFPT58j54F5os/SCgUAOZSEMcUedvzIDuqvw==}
engines: {node: '>=12.*'}
dependencies:
'@types/node': 20.11.30
'@types/node': 20.12.3
qs: 6.12.0
dev: false
@@ -10913,11 +10885,11 @@ packages:
normalize-path: 3.0.0
object-hash: 3.0.0
picocolors: 1.0.0
postcss: 8.4.38
postcss-import: 15.1.0(postcss@8.4.38)
postcss-js: 4.0.1(postcss@8.4.38)
postcss-load-config: 4.0.2(postcss@8.4.38)
postcss-nested: 6.0.1(postcss@8.4.38)
postcss: 8.4.33
postcss-import: 15.1.0(postcss@8.4.33)
postcss-js: 4.0.1(postcss@8.4.33)
postcss-load-config: 4.0.2(postcss@8.4.33)
postcss-nested: 6.0.1(postcss@8.4.33)
postcss-selector-parser: 6.0.16
resolve: 1.22.8
sucrase: 3.35.0
@@ -11074,7 +11046,7 @@ packages:
/ts-interface-checker@0.1.13:
resolution: {integrity: sha512-Y/arvbn+rrz3JCKl9C4kVNfTfSm2/mEp5FSz5EsZSANGPSlQrpRI5M4PKF+mJnE52jOO90PnPSc3Ur3bTQw0gA==}
/ts-node@10.9.2(@types/node@20.11.30)(typescript@5.4.3):
/ts-node@10.9.2(@types/node@20.12.3)(typescript@5.4.3):
resolution: {integrity: sha512-f0FFpIdcHgn8zcPSbf1dRevwt047YMnaiJM3u2w2RewrB+fob/zePZcrOyQoLMMO7aBIddLcQIEK5dYjkLnGrQ==}
hasBin: true
peerDependencies:
@@ -11093,7 +11065,7 @@ packages:
'@tsconfig/node12': 1.0.11
'@tsconfig/node14': 1.0.3
'@tsconfig/node16': 1.0.4
'@types/node': 20.11.30
'@types/node': 20.12.3
acorn: 8.11.3
acorn-walk: 8.3.2
arg: 4.1.3