Skip to content

Commit 991de05

Browse files
committed
chore: update dependencies
1 parent 671ce0b commit 991de05

File tree

8 files changed

+152
-100
lines changed

8 files changed

+152
-100
lines changed

package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -31,25 +31,25 @@
3131
"@lerna-lite/run": "^4.4.1",
3232
"@sapphire/prettier-config": "^2.0.0",
3333
"@sapphire/ts-config": "^5.0.1",
34-
"@types/node": "^22.15.31",
34+
"@types/node": "^24.0.3",
3535
"chalk-cli": "^6.0.0",
3636
"eslint": "^9.29.0",
3737
"eslint-config-neon": "^0.2.7",
3838
"eslint-config-prettier": "^10.1.5",
3939
"eslint-plugin-html": "^8.1.3",
4040
"eslint-plugin-lit": "^2.1.1",
4141
"eslint-plugin-lit-a11y": "^5.0.1",
42-
"eslint-plugin-prettier": "^5.4.1",
42+
"eslint-plugin-prettier": "^5.5.0",
4343
"eslint-plugin-wc": "^3.0.1",
44-
"lint-staged": "^16.1.1",
44+
"lint-staged": "^16.1.2",
4545
"markdown-toc": "^1.2.0",
4646
"npm-run-all2": "^8.0.4",
4747
"prettier": "^3.5.3",
4848
"prettier-plugin-astro": "^0.14.1",
4949
"react": "^19.1.0",
5050
"rimraf": "^6.0.1",
5151
"tsup": "^8.5.0",
52-
"typescript": "^5.7.2"
52+
"typescript": "^5.8.3"
5353
},
5454
"resolutions": {
5555
"esbuild": "~0.25.5",

packages/core/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -133,7 +133,7 @@
133133
"@web/dev-server-esbuild": "^1.0.4",
134134
"concurrently": "^9.1.2",
135135
"ts-lit-plugin": "^2.0.2",
136-
"typescript": "^5.7.2"
136+
"typescript": "^5.8.3"
137137
},
138138
"files": [
139139
"dist/",

packages/core/src/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,6 +56,6 @@ export { DiscordComponentsError } from './util.js';
5656
export type * from './types.js';
5757

5858
declare global {
59-
// eslint-disable-next-line no-var, vars-on-top
59+
// eslint-disable-next-line vars-on-top
6060
var $discordMessage: DiscordMessageOptions | undefined;
6161
}

packages/documentation/astro.config.mts

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -510,10 +510,13 @@ export default defineConfig({
510510
alt: 'logo'
511511
},
512512
title: 'Discord Components',
513-
social: {
514-
github: 'https://github.com/skyra-project/discord-components',
515-
twitter: 'https://twitter.com/favna_'
516-
},
513+
social: [
514+
{
515+
icon: 'github',
516+
href: 'https://github.com/skyra-project/discord-components',
517+
label: 'GitHub'
518+
}
519+
],
517520
sidebar: [
518521
{ slug: 'api/readme', label: 'README', items: [] },
519522
{ slug: 'samples', items: [] }, //

packages/documentation/package.json

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -15,19 +15,19 @@
1515
"@astrojs/starlight": "0.34.4",
1616
"@sapphire/docusaurus-plugin-npm2yarn2pnpm": "2.0.2",
1717
"@webcomponents/template-shadowroot": "^0.2.1",
18-
"astro": "5.9.3",
18+
"astro": "5.9.4",
1919
"lit": "^3.3.0",
20-
"starlight-typedoc": "0.17.0",
21-
"typedoc": "0.27.4",
22-
"typedoc-plugin-frontmatter": "^1.1.2",
23-
"typedoc-plugin-markdown": "4.3.2"
20+
"starlight-typedoc": "0.21.3",
21+
"typedoc": "0.28.5",
22+
"typedoc-plugin-frontmatter": "^1.3.0",
23+
"typedoc-plugin-markdown": "4.6.4"
2424
},
2525
"devDependencies": {
2626
"@skyra/discord-components-core": "workspace:^",
2727
"@skyra/discord-components-react": "workspace:^",
2828
"@types/react": "19.1.8",
2929
"@types/react-dom": "^19.1.6",
3030
"react-dom": "^19.1.0",
31-
"typescript": "^5.7.2"
31+
"typescript": "^5.8.3"
3232
}
3333
}

packages/react/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@
3838
"colorette": "^2.0.20",
3939
"rimraf": "^6.0.1",
4040
"tsup": "^8.5.0",
41-
"typescript": "^5.7.2"
41+
"typescript": "^5.8.3"
4242
},
4343
"peerDependencies": {
4444
"react": "16.8.x || 17.x || 18.x || 19.x",

packages/react/src/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,6 +57,6 @@ export type { Avatars, DiscordMessageOptions, DiscordTimestamp, Emoji, LightThem
5757
export { getConfig, setConfig } from '@skyra/discord-components-core';
5858

5959
declare global {
60-
// eslint-disable-next-line no-var, vars-on-top
60+
// eslint-disable-next-line vars-on-top
6161
var $discordMessage: ReactComponents.DiscordMessageOptions | undefined;
6262
}

0 commit comments

Comments
 (0)