bonktools 1.0.0 → 1.0.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +25 -0
- package/package.json +30 -8
package/README.md
ADDED
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
# 🤖 BonkTools
|
|
2
|
+
|
|
3
|
+
A powerful **Node.js + TypeScript** library to create **automated bots for [Bonk.io](https://bonk.io)** — with full event handling, room control, chat management, and in-game automation.
|
|
4
|
+
|
|
5
|
+
---
|
|
6
|
+
|
|
7
|
+
## 🚀 Features
|
|
8
|
+
|
|
9
|
+
✅ Automatic connection to Bonk.io servers
|
|
10
|
+
✅ Supports chat, players, teams, and game state
|
|
11
|
+
✅ Fully typed with **TypeScript**
|
|
12
|
+
✅ Clean, modular structure
|
|
13
|
+
✅ Detailed debug logs (`[DEBUG] [BONKTOOLS] ...`)
|
|
14
|
+
|
|
15
|
+
---
|
|
16
|
+
|
|
17
|
+
## 📦 Installation
|
|
18
|
+
|
|
19
|
+
```bash
|
|
20
|
+
npm install bonktools
|
|
21
|
+
```
|
|
22
|
+
|
|
23
|
+
[](https://www.npmjs.com/package/bonktools)
|
|
24
|
+
[](https://github.com/brenoluizdev/bonktools/blob/main/LICENSE)
|
|
25
|
+
[](https://github.com/brenoluizdev/bonktools)
|
package/package.json
CHANGED
|
@@ -1,12 +1,34 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "bonktools",
|
|
3
|
-
"version": "1.0.
|
|
4
|
-
"description": "",
|
|
5
|
-
"
|
|
6
|
-
"
|
|
7
|
-
"type": "commonjs",
|
|
8
|
-
"main": "index.js",
|
|
3
|
+
"version": "1.0.2",
|
|
4
|
+
"description": "Uma biblioteca Node.js para criar bots do jogo Bonk.io com suporte a eventos, sockets e tipagem TypeScript.",
|
|
5
|
+
"main": "dist/index.js",
|
|
6
|
+
"types": "dist/types/index.d.ts",
|
|
9
7
|
"scripts": {
|
|
10
|
-
"
|
|
11
|
-
|
|
8
|
+
"build": "tsc",
|
|
9
|
+
"dev": "nodemon src/index.ts"
|
|
10
|
+
},
|
|
11
|
+
"repository": {
|
|
12
|
+
"type": "git",
|
|
13
|
+
"url": "https://github.com/brenoluizdev/bonktools.git"
|
|
14
|
+
},
|
|
15
|
+
"keywords": [
|
|
16
|
+
"bonk.io",
|
|
17
|
+
"bot",
|
|
18
|
+
"game",
|
|
19
|
+
"typescript",
|
|
20
|
+
"websocket",
|
|
21
|
+
"automation"
|
|
22
|
+
],
|
|
23
|
+
"author": "brenoluizdev",
|
|
24
|
+
"license": "MIT",
|
|
25
|
+
"dependencies": {},
|
|
26
|
+
"devDependencies": {
|
|
27
|
+
"typescript": "^5.3.3",
|
|
28
|
+
"nodemon": "^3.0.2"
|
|
29
|
+
},
|
|
30
|
+
"publishConfig": {
|
|
31
|
+
"registry": "https://registry.npmjs.org/"
|
|
32
|
+
}
|
|
33
|
+
|
|
12
34
|
}
|