build(Needs bump): update dependencies

This commit is contained in:
PalmDevs
2025-06-23 20:32:18 +07:00
parent 3a0f0fe786
commit 858e989bdc
37 changed files with 321 additions and 317 deletions

View File

@@ -28,7 +28,7 @@
"homepage": "https://github.com/revanced/revanced-bots#readme",
"dependencies": {
"@revanced/bot-shared": "workspace:*",
"ws": "^8.18.1"
"ws": "^8.18.2"
},
"devDependencies": {
"@types/ws": "^8.18.1",

View File

@@ -1,16 +1,16 @@
import { EventEmitter } from 'events'
import {
type ClientOperation,
DisconnectReason,
type Packet,
ServerOperation,
deserializePacket,
isServerPacket,
type Packet,
ServerOperation,
serializePacket,
uncapitalize,
} from '@revanced/bot-shared'
import type TypedEmitter from 'typed-emitter'
import { EventEmitter } from 'events'
import { type RawData, WebSocket } from 'ws'
import type TypedEmitter from 'typed-emitter'
/**
* The class that handles the WebSocket connection to the server.

View File

@@ -1,3 +1,3 @@
export { default as Client } from './Client'
export * from './Client'
export { default as Client } from './Client'
export * from './ClientWebSocket'