fnlb 1.0.1 → 1.1.1

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 (2) hide show
  1. package/README.md +15 -2
  2. package/package.json +2 -1
package/README.md CHANGED
@@ -5,12 +5,25 @@ Whether you're running one bot or hundreds, FNLB gives you full control.
5
5
 
6
6
  ## 📦 Installation
7
7
 
8
- Install the latest version via npm:
8
+ Install the latest version via **npm install**:
9
9
 
10
10
  ```bash
11
11
  npm install fnlb@latest
12
12
  ```
13
13
 
14
+ Using **[bun](https://bun.sh)**? Install the latest version via **bun install**:
15
+
16
+ ```bash
17
+ bun install fnlb@latest
18
+ ```
19
+
20
+ ## 🔗 Useful Links
21
+
22
+ - 📖 **[FNLB Website](https://fnlb.net)**
23
+ - 📖 **[FNLB Documentation](https://docs.fnlb.net/introduction)**
24
+ - 📄 **[FNLB Changelog](https://docs.fnlb.net/bots/changelog)**
25
+ - 🗨️ **[FNLB Discord Server](https://fnlb.net/discord)**
26
+
14
27
  ## 🤖 Starting a Single Bot
15
28
 
16
29
  Get started with a single bot using your [FNLB API token](https://app.fnlb.net/account):
@@ -141,7 +154,7 @@ await startFNLB();
141
154
  setInterval(restartFNLB, 3_600_000);
142
155
  ```
143
156
 
144
- ## 💬 Join the Community
157
+ ## 🗨️ Join the Community
145
158
 
146
159
  Need help, support, or just want to chat with other developers?
147
160
  Come hang out with us on Discord! 👇
package/package.json CHANGED
@@ -1,8 +1,9 @@
1
1
  {
2
2
  "name": "fnlb",
3
- "version": "1.0.1",
3
+ "version": "1.1.1",
4
4
  "author": "FNLB",
5
5
  "main": "dist/index.js",
6
+ "homepage": "https://fnlb.net",
6
7
  "devDependencies": {
7
8
  "@biomejs/biome": "^1.9.4",
8
9
  "@types/bun": "^1.2.8",