Skip to content

Commit

Permalink
chore: bump deps
Browse files Browse the repository at this point in the history
  • Loading branch information
leomotors committed Jul 12, 2024
1 parent 8605104 commit b7a0ddd
Show file tree
Hide file tree
Showing 8 changed files with 4,431 additions and 3,700 deletions.
18 changes: 9 additions & 9 deletions apps/docs/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,18 +8,18 @@
"lint": "eslint src"
},
"devDependencies": {
"@vitejs/plugin-vue-jsx": "3.1.0",
"@vitejs/plugin-vue-jsx": "4.0.0",
"@vue/eslint-config-prettier": "9.0.0",
"@vue/eslint-config-typescript": "12.0.0",
"@vue/eslint-config-typescript": "13.0.0",
"@vue/tsconfig": "0.5.1",
"autoprefixer": "10.4.18",
"autoprefixer": "10.4.19",
"eslint": "8.57.0",
"eslint-plugin-vue": "9.22.0",
"postcss": "8.4.35",
"tailwindcss": "3.4.1",
"typescript": "5.3.3",
"vite": "5.1.4",
"eslint-plugin-vue": "9.27.0",
"postcss": "8.4.39",
"tailwindcss": "3.4.4",
"typescript": "5.5.3",
"vite": "5.3.3",
"vitepress": "1.0.0-rc.4",
"vue": "3.4.21"
"vue": "3.4.31"
}
}
12 changes: 6 additions & 6 deletions apps/example/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,16 +14,16 @@
"devDependencies": {
"@leomotors/config": "0.11.0",
"@trivago/prettier-plugin-sort-imports": "4.3.0",
"@typescript-eslint/eslint-plugin": "7.1.0",
"@typescript-eslint/parser": "7.1.0",
"@typescript-eslint/eslint-plugin": "7.16.0",
"@typescript-eslint/parser": "7.16.0",
"eslint": "8.57.0",
"prettier": "3.2.5",
"typescript": "5.3.3"
"prettier": "3.3.2",
"typescript": "5.5.3"
},
"dependencies": {
"cocoa-discord": "workspace:^",
"discord.js": "14.14.1",
"discord.js": "14.15.3",
"dotenv": "16.4.5",
"zod": "3.22.4"
"zod": "3.23.8"
}
}
18 changes: 9 additions & 9 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@cocoa-discord/turborepo",
"private": true,
"packageManager": "pnpm@8.15.4",
"packageManager": "pnpm@9.5.0",
"scripts": {
"build:app": "FORCE_COLOR=2 turbo run build:app",
"build": "FORCE_COLOR=2 turbo run build",
Expand All @@ -16,19 +16,19 @@
"devDependencies": {
"@leomotors/config": "0.11.0",
"@trivago/prettier-plugin-sort-imports": "4.3.0",
"@types/eslint": "8.56.5",
"@types/node": "20.11.24",
"@typescript-eslint/eslint-plugin": "7.1.0",
"@typescript-eslint/parser": "7.1.0",
"@types/eslint": "8.56.10",
"@types/node": "20.14.10",
"@typescript-eslint/eslint-plugin": "7.16.0",
"@typescript-eslint/parser": "7.16.0",
"eslint": "8.57.0",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-import": "2.29.1",
"eslint-plugin-prettier": "5.1.3",
"eslint-plugin-sort-destructure-keys": "1.5.0",
"prettier": "3.2.5",
"prettier": "3.3.2",
"turbo": "1.12.4",
"typescript": "5.3.3",
"vite": "5.1.4",
"vitest": "1.3.1"
"typescript": "5.5.3",
"vite": "5.3.3",
"vitest": "2.0.2"
}
}
18 changes: 9 additions & 9 deletions packages/cocoa-discord/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -34,19 +34,19 @@
"devDependencies": {
"@leomotors/scripts": "3.1.0",
"@types/sinon": "17.0.3",
"@vitest/coverage-v8": "1.3.1",
"rimraf": "5.0.5",
"sinon": "17.0.1",
"@vitest/coverage-v8": "2.0.2",
"rimraf": "6.0.1",
"sinon": "18.0.0",
"ts-node": "10.9.2",
"typedoc": "0.25.9",
"typescript": "5.3.3",
"vitest": "1.3.1"
"typedoc": "0.26.4",
"typescript": "5.5.3",
"vitest": "2.0.2"
},
"dependencies": {
"chalk": "^5.3.0",
"commander": "^12.0.0",
"discord-api-types": "^0.37.71",
"discord.js": "^14.14.1"
"commander": "^12.1.0",
"discord-api-types": "^0.37.92",
"discord.js": "^14.15.3"
},
"exports": {
".": "./dist/main/index.js",
Expand Down
3 changes: 2 additions & 1 deletion packages/cocoa-discord/src/main/readline.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { Client } from "discord.js";

import chalk from "chalk";
import readline from "readline";
import readline from "node:readline";

import { Awaitable } from "../base/index.js";

Expand All @@ -16,6 +16,7 @@ let rl: readline.Interface;
export function getReadlineInterface() {
if (!rl)
rl = readline.createInterface({
// @ts-expect-error it works, trust me
input: process.stdin,
output: process.stdout,
});
Expand Down
30 changes: 15 additions & 15 deletions packages/music-module/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -28,31 +28,31 @@
"@discordjs/opus": "0.9.0",
"@leomotors/scripts": "3.1.0",
"@trivago/prettier-plugin-sort-imports": "4.3.0",
"@types/uuid": "9.0.8",
"@typescript-eslint/eslint-plugin": "7.1.0",
"@typescript-eslint/parser": "7.1.0",
"@vitest/coverage-v8": "1.3.1",
"@types/uuid": "10.0.0",
"@typescript-eslint/eslint-plugin": "7.16.0",
"@typescript-eslint/parser": "7.16.0",
"@vitest/coverage-v8": "2.0.2",
"dotenv": "16.4.5",
"eslint": "8.57.0",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-import": "2.29.1",
"eslint-plugin-prettier": "5.1.3",
"libsodium-wrappers": "0.7.13",
"prettier": "3.2.5",
"rimraf": "5.0.5",
"typedoc": "0.25.9",
"typescript": "5.3.3",
"vitest": "1.3.1"
"libsodium-wrappers": "0.7.14",
"prettier": "3.3.2",
"rimraf": "6.0.1",
"typedoc": "0.26.4",
"typescript": "5.5.3",
"vitest": "2.0.2"
},
"dependencies": {
"@discordjs/voice": "^0.16.1",
"@discordjs/voice": "^0.17.0",
"chalk": "^5.3.0",
"cocoa-discord": "workspace:^",
"discord.js": "^14.14.1",
"microsoft-cognitiveservices-speech-sdk": "^1.35.0",
"discord.js": "^14.15.3",
"microsoft-cognitiveservices-speech-sdk": "^1.38.0",
"play-dl": "^1.9.7",
"tslib": "^2.6.2",
"uuid": "^9.0.1"
"tslib": "^2.6.3",
"uuid": "^10.0.0"
},
"keywords": [
"discord-bot",
Expand Down
4 changes: 2 additions & 2 deletions packages/tools/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
"test:cov": "vitest run --coverage"
},
"devDependencies": {
"@vitest/coverage-v8": "1.3.1",
"vitest": "1.3.1"
"@vitest/coverage-v8": "2.0.2",
"vitest": "2.0.2"
}
}
Loading

0 comments on commit b7a0ddd

Please sign in to comment.