Skip to content

Commit 6cb97f5

Browse files
committed
chore: deps
1 parent 35882d3 commit 6cb97f5

File tree

29 files changed

+5087
-3147
lines changed

29 files changed

+5087
-3147
lines changed

apps/test-bot/commandkit.config.ts

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -4,15 +4,16 @@ import { devtools } from '@commandkit/devtools';
44
import { cache } from '@commandkit/cache';
55
import { ai } from '@commandkit/ai';
66
import { tasks, setDriver } from '@commandkit/tasks';
7-
import { BullMQDriver } from '@commandkit/tasks/bullmq';
7+
import { SQLiteDriver } from '@commandkit/tasks/sqlite';
88
import { workflow } from '@commandkit/workflow';
99

1010
noBuildOnly(() => {
11-
setDriver(
12-
new BullMQDriver({
13-
maxRetriesPerRequest: null,
14-
}),
15-
);
11+
setDriver(new SQLiteDriver());
12+
// setDriver(
13+
// new BullMQDriver({
14+
// maxRetriesPerRequest: null,
15+
// }),
16+
// );
1617
})();
1718

1819
export default defineConfig({

apps/test-bot/package.json

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,14 +21,13 @@
2121
"@commandkit/workflow": "workspace:*",
2222
"commandkit": "workspace:*",
2323
"discord.js": "catalog:discordjs",
24-
"dotenv": "^16.4.7",
2524
"ms": "^2.1.3",
2625
"workflow": "catalog:workflow",
2726
"zod": "^4.3.6"
2827
},
2928
"devDependencies": {
3029
"@types/ms": "^2.1.0",
3130
"cross-env": "^10.1.0",
32-
"tsx": "^4.7.0"
31+
"tsx": "^4.21.0"
3332
}
3433
}

apps/website/docs/guide/01-getting-started/01-introduction.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -201,7 +201,7 @@ communicate through a well-defined event system.
201201
Other official plugins include
202202
[`@commandkit/i18n`](../05-official-plugins/05-commandkit-i18n.mdx)
203203
for localization and
204-
[`@commandkit/analytics`](../05-official-plugins/06-commandkit-analytics.mdx)
204+
[`@commandkit/analytics`](../05-official-plugins/02-commandkit-analytics.mdx)
205205
for usage tracking.
206206

207207
### AI-powered command execution

apps/website/docusaurus.config.ts

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,6 @@ const config: Config = {
2525
url: 'https://commandkit.dev',
2626
baseUrl: '/',
2727
onBrokenLinks: 'warn',
28-
onBrokenMarkdownLinks: 'warn',
2928
i18n: {
3029
defaultLocale: 'en',
3130
locales: ['en'],
@@ -208,6 +207,10 @@ const config: Config = {
208207
],
209208
markdown: {
210209
mermaid: true,
210+
hooks: {
211+
onBrokenMarkdownLinks: 'warn',
212+
onBrokenMarkdownImages: 'warn',
213+
},
211214
},
212215
themes: ['@docusaurus/theme-mermaid'],
213216
};

apps/website/package.json

Lines changed: 20 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -16,29 +16,29 @@
1616
"check-types": "tsc"
1717
},
1818
"dependencies": {
19-
"@docusaurus/core": "3.8.1",
20-
"@docusaurus/plugin-sitemap": "3.8.1",
21-
"@docusaurus/plugin-vercel-analytics": "3.8.1",
22-
"@docusaurus/preset-classic": "3.8.1",
23-
"@docusaurus/theme-common": "^3.8.1",
24-
"@docusaurus/theme-mermaid": "^3.8.1",
25-
"@docusaurus/theme-search-algolia": "3.8.1",
26-
"@mdx-js/react": "^3.0.0",
27-
"clsx": "^2.0.0",
19+
"@docusaurus/core": "3.9.2",
20+
"@docusaurus/plugin-sitemap": "3.9.2",
21+
"@docusaurus/plugin-vercel-analytics": "3.9.2",
22+
"@docusaurus/preset-classic": "3.9.2",
23+
"@docusaurus/theme-common": "^3.9.2",
24+
"@docusaurus/theme-mermaid": "^3.9.2",
25+
"@docusaurus/theme-search-algolia": "3.9.2",
26+
"@mdx-js/react": "^3.1.1",
27+
"clsx": "^2.1.1",
2828
"gray-matter": "^4.0.3",
29-
"lucide-react": "0.545.0",
30-
"prism-react-renderer": "^2.3.0",
31-
"react": "^19.0.0",
32-
"react-dom": "^19.0.0"
29+
"lucide-react": "0.575.0",
30+
"prism-react-renderer": "^2.4.1",
31+
"react": "^19.2.4",
32+
"react-dom": "^19.2.4"
3333
},
3434
"devDependencies": {
35-
"@docusaurus/module-type-aliases": "3.8.1",
36-
"@docusaurus/remark-plugin-npm2yarn": "3.8.1",
37-
"@docusaurus/tsconfig": "3.8.1",
38-
"@docusaurus/types": "3.8.1",
39-
"@tailwindcss/postcss": "^4.1.7",
40-
"autoprefixer": "^10.4.20",
41-
"postcss": "^8.5.3",
35+
"@docusaurus/module-type-aliases": "3.9.2",
36+
"@docusaurus/remark-plugin-npm2yarn": "3.9.2",
37+
"@docusaurus/tsconfig": "3.9.2",
38+
"@docusaurus/types": "3.9.2",
39+
"@tailwindcss/postcss": "^4.2.1",
40+
"autoprefixer": "^10.4.27",
41+
"postcss": "^8.5.6",
4242
"tailwindcss": "^3.4.16",
4343
"typescript": "catalog:build"
4444
},

package.json

Lines changed: 40 additions & 62 deletions
Original file line numberDiff line numberDiff line change
@@ -16,82 +16,60 @@
1616
"format": "prettier --experimental-cli --write . --ignore-path=.prettierignore"
1717
},
1818
"devDependencies": {
19-
"@types/node": "^22.10.2",
20-
"prettier": "^3.6.0",
21-
"tsx": "^4.7.0",
22-
"turbo": "^2.5.3"
19+
"@types/node": "^25.3.2",
20+
"prettier": "^3.8.1",
21+
"tsx": "^4.21.0",
22+
"turbo": "^2.8.12"
2323
},
2424
"packageManager": "pnpm@10.15.0",
2525
"pnpm": {
26+
"onlyBuiltDependencies": [
27+
"@swc/core",
28+
"@tailwindcss/oxide",
29+
"core-js",
30+
"core-js-pure"
31+
],
2632
"overrides": {
27-
"undici@>=6.0.0 <6.21.1": ">=6.21.1",
28-
"esbuild@<=0.24.2": ">=0.25.0",
29-
"vite@>=6.0.0 <=6.0.8": ">=6.0.9",
30-
"prismjs@<1.30.0": ">=1.30.0",
31-
"@babel/runtime-corejs3@<7.26.10": ">=7.26.10",
32-
"@babel/runtime@<7.26.10": ">=7.26.10",
33-
"@babel/helpers@<7.26.10": ">=7.26.10",
34-
"vite@>=6.2.0 <6.2.3": ">=6.2.3",
35-
"vite@>=6.2.0 <6.2.4": ">=6.2.4",
36-
"vite@>=6.2.0 <6.2.5": ">=6.2.5",
37-
"image-size@>=1.1.0 <1.2.1": ">=1.2.1",
38-
"estree-util-value-to-estree@<3.3.3": ">=3.3.3",
39-
"vite@>=6.2.0 <6.2.6": ">=6.2.6",
40-
"http-proxy-middleware@>=1.3.0 <2.0.9": ">=2.0.9",
41-
"http-proxy-middleware@>=1.3.0 <2.0.8": ">=2.0.8",
42-
"undici@>=6.0.0 <6.21.2": ">=6.21.2",
43-
"webpack-dev-server@<=5.2.0": ">=5.2.1",
44-
"on-headers@<1.1.0": ">=1.1.0",
45-
"form-data@>=4.0.0 <4.0.4": ">=4.0.4",
4633
"tmp@<=0.2.3": ">=0.2.4",
47-
"mermaid@>=11.1.0 <11.10.0": ">=11.10.0",
48-
"mermaid@>=11.0.0-alpha.1 <11.10.0": ">=11.10.0",
49-
"devalue@<5.3.2": ">=5.3.2",
50-
"vite@>=7.0.0 <=7.0.6": ">=7.0.7",
51-
"vite@>=7.1.0 <=7.1.4": ">=7.1.5",
52-
"axios@<1.12.0": ">=1.12.0",
53-
"vite@>=7.0.0 <=7.0.7": ">=7.0.8",
54-
"tar@=7.5.1": ">=7.5.2",
55-
"js-yaml@<3.14.2": "^3.14.2",
56-
"js-yaml@>=4.0.0 <4.1.1": ">=4.1.1",
57-
"glob@>=10.2.0 <10.5.0": ">=10.5.0",
58-
"glob@>=11.0.0 <11.1.0": ">=11.1.0",
59-
"body-parser@>=2.2.0 <2.2.1": ">=2.2.1",
60-
"node-forge@<1.3.2": ">=1.3.2",
61-
"mdast-util-to-hast@>=13.0.0 <13.2.1": ">=13.2.1",
62-
"jws@<3.2.3": ">=3.2.3",
63-
"qs@<6.14.1": ">=6.14.1",
64-
"hono@<4.11.4": ">=4.11.4",
6534
"devalue@>=5.1.0 <5.6.2": ">=5.6.2",
6635
"devalue@>=5.3.0 <=5.6.1": ">=5.6.2",
67-
"tar@<=7.5.2": ">=7.5.3",
6836
"tar@<=7.5.3": ">=7.5.4",
6937
"lodash-es@>=4.0.0 <=4.17.22": ">=4.17.23",
70-
"lodash@>=4.0.0 <=4.17.22": ">=4.17.23",
71-
"seroval@<=1.4.0": ">=1.4.1",
72-
"seroval@<1.4.1": ">=1.4.1",
73-
"diff@<4.0.4": ">=4.0.4",
74-
"diff@>=6.0.0 <8.0.3": ">=8.0.3",
7538
"undici@<6.23.0": ">=6.23.0",
76-
"hono@<4.11.7": ">=4.11.7",
7739
"tar@<7.5.7": ">=7.5.7",
78-
"next@>=15.6.0-canary.0 <16.1.5": ">=16.1.5",
79-
"next@>=16.0.0-beta.0 <16.1.5": ">=16.1.5",
80-
"next@>=16.1.0-canary.0 <16.1.5": ">=16.1.5",
81-
"next@>=16.0.0-beta.0 <16.0.11": ">=16.0.11"
82-
},
83-
"onlyBuiltDependencies": [
84-
"@swc/core",
85-
"@tailwindcss/oxide",
86-
"core-js",
87-
"core-js-pure"
88-
]
40+
"@isaacs/brace-expansion@<=5.0.0": ">=5.0.1",
41+
"webpack@>=5.49.0 <=5.104.0": ">=5.104.1",
42+
"webpack@>=5.49.0 <5.104.0": ">=5.104.0",
43+
"qs@<6.14.1": ">=6.14.1",
44+
"fast-xml-parser@>=5.0.9 <=5.3.3": ">=5.3.4",
45+
"qs@>=6.7.0 <=6.14.1": ">=6.14.2",
46+
"axios@>=1.0.0 <=1.13.4": ">=1.13.5",
47+
"tar@<=7.5.2": ">=7.5.3",
48+
"hono@<4.11.10": ">=4.11.10",
49+
"devalue@<=5.6.2": ">=5.6.3",
50+
"tar@<7.5.8": ">=7.5.8",
51+
"ajv@<6.14.0": ">=6.14.0",
52+
"ajv@>=7.0.0-alpha.0 <8.18.0": ">=8.18.0",
53+
"minimatch@<3.1.3": ">=3.1.3",
54+
"minimatch@>=5.0.0 <5.1.7": ">=5.1.7",
55+
"minimatch@>=9.0.0 <9.0.6": ">=9.0.6",
56+
"minimatch@>=10.0.0 <10.2.1": ">=10.2.1",
57+
"rollup@>=4.0.0 <4.59.0": ">=4.59.0",
58+
"minimatch@>=5.0.0 <5.1.8": ">=5.1.8",
59+
"minimatch@>=9.0.0 <9.0.7": ">=9.0.7",
60+
"minimatch@>=10.0.0 <10.2.3": ">=10.2.3",
61+
"minimatch@<3.1.4": ">=3.1.4",
62+
"fast-xml-parser@<5.3.8": ">=5.3.8",
63+
"fast-xml-parser@>=5.0.0 <5.3.5": ">=5.3.5",
64+
"fast-xml-parser@>=5.0.0 <5.3.6": ">=5.3.6",
65+
"serialize-javascript@<=7.0.2": ">=7.0.3"
66+
}
8967
},
9068
"dependencies": {
91-
"@turbo/gen": "^2.8.0",
92-
"fs-extra": "^11.3.0",
69+
"@turbo/gen": "^2.8.12",
70+
"fs-extra": "^11.3.3",
9371
"klaw-sync": "^7.0.0",
9472
"typescript": "catalog:build",
95-
"yaml": "^2.8.0"
73+
"yaml": "^2.8.2"
9674
}
9775
}

packages/ai/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@
3535
"typescript": "catalog:build"
3636
},
3737
"dependencies": {
38-
"ai": "^6.0.79",
38+
"ai": "^6.0.105",
3939
"zod": "^4.3.6"
4040
}
4141
}

packages/analytics/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@
3939
"devDependencies": {
4040
"@umami/node": "^0.4.0",
4141
"commandkit": "workspace:*",
42-
"posthog-node": "^4.18.0",
42+
"posthog-node": "^5.26.0",
4343
"tsconfig": "workspace:*",
4444
"typescript": "catalog:build"
4545
}

packages/cache/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@
4848
"devDependencies": {
4949
"@types/ms": "^2.0.0",
5050
"commandkit": "workspace:*",
51-
"ioredis": "^5.8.1",
51+
"ioredis": "^5.10.0",
5252
"tsconfig": "workspace:*",
5353
"typescript": "catalog:build"
5454
},

packages/commandkit/package.json

Lines changed: 8 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -173,26 +173,23 @@
173173
"dependencies": {
174174
"@rollup/plugin-json": "^6.1.0",
175175
"chokidar": "^4.0.3",
176-
"commander": "^13.0.0",
177-
"directive-to-hof": "^0.0.2",
178-
"dotenv": "^16.4.7",
176+
"commander": "^14.0.3",
177+
"directive-to-hof": "^0.0.3",
179178
"ms": "^2.1.3",
180-
"ora": "^8.0.1",
179+
"ora": "^9.3.0",
181180
"picocolors": "^1.1.1",
182-
"rfdc": "^1.3.1",
183-
"rimraf": "^6.0.0",
181+
"rimraf": "^6.1.3",
184182
"tsdown": "catalog:build",
185183
"use-macro": "^1.1.0"
186184
},
187185
"devDependencies": {
188-
"@types/ms": "^2.0.0",
189-
"@types/node": "^22.10.2",
190-
"@types/yargs": "^17.0.32",
186+
"@types/ms": "^2.1.0",
187+
"@types/node": "^25.3.2",
191188
"discord.js": "catalog:discordjs",
192189
"tsconfig": "workspace:*",
193-
"tsx": "^4.19.2",
190+
"tsx": "^4.21.0",
194191
"typescript": "catalog:build",
195-
"vitest": "^3.0.5"
192+
"vitest": "^4.0.18"
196193
},
197194
"engines": {
198195
"node": ">=24"

0 commit comments

Comments
 (0)