mirror of
https://github.com/ReVanced/revanced-bots.git
synced 2026-01-11 13:56:15 +00:00
# @revanced/bot-websocket-api 1.0.0 (2025-04-04) ### Bug Fixes * **apis/websocket:** also include tesseract core files in build ([7dfbf6c](7dfbf6c92c)) * **apis/websocket:** attempt to fix missing remote address ([9b2888b](9b2888b944)) * **apis/websocket:** build and runtime issues ([89d8ab1](89d8ab1ee5)) * **apis/websocket:** builds not working due to dynamic import requirement ([fc7be22](fc7be22c6c)) * **apis/websocket:** don't bundle `tesseract.js` ([51a6fb6](51a6fb65f0)) * **apis/websocket:** fix forever stuck Promise ([168f40d](168f40def6)) * **apis/websocket:** fix undefined error ([2f03800](2f03800c61)) * **apis/websocket:** hardcoded paths in tesseract worker builds ([38e00eb](38e00eb4e5)) * **apis/websocket:** improve logging and error handling ([b6cbe9d](b6cbe9d64c)) * **bots/discord:** hanging process when disconnecting from API too many times ([d31616e](d31616ebcb)) * fix typings and formatting ([479812e](479812e199)) * other small issues ([bc437a5](bc437a5ec7)) * remove error cb handling for `socket.send()` calls ([29544d4](29544d4e01)) * run projects with `--bun` ([bb2182e](bb2182e707)) * **types:** fix issues with typings ([669e24c](669e24ca81)) * update repo url ([a21aa34](a21aa348d7)) ### chore * fix more build issues ([77fefb9](77fefb9bef)) ### Features * **apis/websocket:** clear old client sessions and instances ([43bd0a0](43bd0a021c)) * **apis/websocket:** return `true` for data on a `TrainedMessage` packet ([65add4d](65add4dfee)) * **packages/shared:** add logger factory ([17c6be7](17c6be7bee)) ### BREAKING CHANGES * In `@revanced/discord-bot`, its environment variable `DATABASE_URL` has been renamed to `DATABASE_PATH` and the `file:` prefix is no longer needed
40 lines
1.1 KiB
JSON
Executable File
40 lines
1.1 KiB
JSON
Executable File
{
|
|
"name": "@revanced/bot-websocket-api",
|
|
"type": "module",
|
|
"private": true,
|
|
"version": "1.0.0",
|
|
"description": "🧦 WebSocket API server for bots assisting ReVanced",
|
|
"main": "dist/index.js",
|
|
"scripts": {
|
|
"bundle": "bun run scripts/build.ts",
|
|
"dev": "bun run src/index.ts --watch",
|
|
"build": "bun bundle",
|
|
"watch": "bun dev"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/revanced/revanced-bots.git",
|
|
"directory": "apis/websocket"
|
|
},
|
|
"author": "Palm <contact@palmdevs.me> (https://palmdevs.me)",
|
|
"contributors": [
|
|
"Palm <contact@palmdevs.me> (https://palmdevs.me)",
|
|
"ReVanced <nosupport@revanced.app> (https://revanced.app)"
|
|
],
|
|
"license": "GPL-3.0-or-later",
|
|
"bugs": {
|
|
"url": "https://github.com/revanced/revanced-bots/issues"
|
|
},
|
|
"homepage": "https://github.com/revanced/revanced-bots#readme",
|
|
"dependencies": {
|
|
"@revanced/bot-shared": "workspace:*",
|
|
"@sapphire/async-queue": "^1.5.5",
|
|
"chalk": "^5.4.1",
|
|
"tesseract.js": "^5.1.1",
|
|
"ws": "^8.18.1"
|
|
},
|
|
"devDependencies": {
|
|
"@types/ws": "^8.18.1",
|
|
"typed-emitter": "^2.1.0"
|
|
}
|
|
} |