rmtrollbot 3.2.0 → 3.2.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.
Files changed (3) hide show
  1. package/README.md +2 -0
  2. package/index.mts +1 -1
  3. package/package.json +3 -3
package/README.md CHANGED
@@ -107,5 +107,7 @@ To install this package by Bun, run the following:
107
107
  ```sh
108
108
  bun add rmtrollbot
109
109
  ```
110
+ # vs. trollbox-bot
111
+ ![Comparison between trollbox-bot and rmtrollbot](https://iili.io/BgZPC0P.png)
110
112
  # Bots using this package
111
113
  None have been recorded, but please use this package
package/index.mts CHANGED
@@ -1,6 +1,6 @@
1
1
  import { init } from "@rmtrollbot/loader";
2
2
  import ora from "ora"
3
- import { message, user, userchangenick, userupdate, rmtbID } from "rmtrollbot-types"
3
+ import { message, user, userchangenick, userupdate, rmtbID } from "@rmtrollbot/types"
4
4
 
5
5
  export class TrollBot {
6
6
  protected name: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "rmtrollbot",
3
- "version": "3.2.0",
3
+ "version": "3.2.2",
4
4
  "description": "A package making the producing of rmtrollbox bots easier.",
5
5
  "main": "index.mts",
6
6
  "scripts": {
@@ -18,7 +18,7 @@
18
18
  "type": "commonjs",
19
19
  "dependencies": {
20
20
  "@rmtrollbot/loader": "^1.0.0",
21
- "ora": "^9.3.0",
22
- "rmtrollbot-types": "^1.0.0"
21
+ "@rmtrollbot/types": "^1.0.0",
22
+ "ora": "^9.3.0"
23
23
  }
24
24
  }