fnlb 1.0.1 → 1.1.0

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 +14 -2
  2. package/package.json +2 -1
package/README.md CHANGED
@@ -5,12 +5,24 @@ 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 Documentation](https://docs.fnlb.net/introduction)**
23
+ - 📄 **[FNLB Changelog](https://docs.fnlb.net/bots/changelog)**
24
+ - 🗨️ **[FNLB Discord Server](https://fnlb.net/discord)**
25
+
14
26
  ## 🤖 Starting a Single Bot
15
27
 
16
28
  Get started with a single bot using your [FNLB API token](https://app.fnlb.net/account):
@@ -141,7 +153,7 @@ await startFNLB();
141
153
  setInterval(restartFNLB, 3_600_000);
142
154
  ```
143
155
 
144
- ## 💬 Join the Community
156
+ ## 🗨️ Join the Community
145
157
 
146
158
  Need help, support, or just want to chat with other developers?
147
159
  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.0",
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",