Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: CI

on: [push]
on: [push, pull_request]

jobs:
test:
Expand All @@ -25,7 +25,7 @@ jobs:
run: pnpm install --frozen-lockfile

- name: Lint
run: pnpm lint
run: pnpm format:check

- name: Setup files & build
if: success() || failure()
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,7 @@ To raise an issue or bug report, please contact a developer or [open an issue](h
Parts of this project adapt code from the following repositories:

- [hychat-mc/self-host](https://github.com/hychat-mc/self-host) under the MIT License.
- [xMdb/hypixel-guild-chat-bot](https://github.com/xmdb/hypixel-guild-chat-bot) originally licensed under the GPL-3.0 License, relicensed under the MIT License with explicit permission from the original author.
- [xMdb/hypixel-guild-chat-bot](https://github.com/xmdb/hypixel-guild-chat-bot) originally licensed under the GPL-3.0 License, relicensed under the MIT License with explicit permission from the original author.
- [unaussprechlich/hypixel-api-typescript](https://github.com/unaussprechlich/hypixel-api-typescript) under the MIT License.

## License
Expand Down
30 changes: 15 additions & 15 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,32 +7,32 @@
"scripts": {
"build": "tsc && tsc-alias",
"clean": "rm -r dist/",
"dev": "ts-node-dev --respawn --transpile-only --poll -r tsconfig-paths/register src/index.ts",
"format": "prettier --write .",
"lint": "prettier --check . && eslint .",
"dev": "tsx watch src/index.ts",
"format:check": "prettier --check . && eslint .",
"format:fix": "prettier --write . && eslint --fix .",
"pm2:kill": "pm2 kill",
"pm2:start": "pm2 start dist/index.js --attach --name bridge",
"setup-files": "node scripts/setup-files.js",
"start": "node ."
},
"dependencies": {
"discord.js": "14.22.1",
"dotenv": "^17.2.2",
"mineflayer": "^4.32.0",
"obscenity": "^0.4.5",
"prismarine-chat": "^1.11.0",
"winston": "^3.17.0",
"zod": "^4.1.5"
"dotenv": "^17.4.2",
"mineflayer": "^4.37.1",
"obscenity": "^0.4.6",
"prismarine-chat": "^1.13.0",
"winston": "^3.19.0",
"zod": "^4.4.3"
},
"devDependencies": {
"@jejebecarte/eslint-config": "^1.0.7",
"@types/node-fetch": "^2.6.13",
"eslint": "^9.35.0",
"pm2": "^6.0.10",
"prettier": "^3.6.2",
"ts-node-dev": "^2.0.0",
"tsc-alias": "^1.8.16",
"eslint": "^8.57.1",
"pm2": "^6.0.14",
"prettier": "^2.8.8",
"tsc-alias": "^1.8.17",
"tsconfig-paths": "^4.2.0",
"typescript": "^5.9.2"
"tsx": "^4.22.4",
"typescript": "^5.9.3"
}
}
Loading