chrxmaticc-framework 1.1.1 → 1.1.3

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/index.js CHANGED
@@ -1,13 +1,10 @@
1
- /**
2
- * index.js
3
- * Main entry point — exports everything.
4
- */
5
-
6
- const { ChrxClient } = require("./Client");
7
- const Database = require("./Database");
8
- const XPSystem = require("./XPSystem");
9
- const AIWrapper = require("./AIWrapper");
10
- const MusicManager = require("./MusicManager");
1
+ // FINALLY IT L0ADS FUCKING PLUGINS AND FUCKING CORE SHIT
2
+ // Chrxmaticc Framework is so tuff gng💔
3
+ const { ChrxClient } = require("./core/Client");
4
+ const Database = require("./core/Database");
5
+ const XPSystem = require("./core/XPSystem");
6
+ const AIWrapper = require("./core/AIWrapper");
7
+ const MusicManager = require("./core/MusicManager");
11
8
  const {
12
9
  parseTime,
13
10
  formatTime,
@@ -17,7 +14,7 @@ const {
17
14
  applyStartMarker,
18
15
  startEndMarkerWatcher,
19
16
  stopEndMarkerWatcher,
20
- } = require("./songMarkers");
17
+ } = require("./core/songMarkers");
21
18
 
22
19
  // ── Plugins ───────────────────────────────────────────────────────────────
23
20
  const Economy = require("./plugins/Economy");
@@ -31,16 +28,11 @@ const Starboard = require("./plugins/Starboard");
31
28
  const AutoMod = require("./plugins/AutoMod");
32
29
 
33
30
  module.exports = {
34
- // Core
35
31
  ChrxClient,
36
-
37
- // Modules
38
32
  Database,
39
33
  XPSystem,
40
34
  AIWrapper,
41
35
  MusicManager,
42
-
43
- // Song marker utilities
44
36
  parseTime,
45
37
  formatTime,
46
38
  setMarker,
@@ -49,8 +41,6 @@ module.exports = {
49
41
  applyStartMarker,
50
42
  startEndMarkerWatcher,
51
43
  stopEndMarkerWatcher,
52
-
53
- // Plugins
54
44
  Economy,
55
45
  Moderation,
56
46
  Giveaways,
@@ -60,4 +50,4 @@ module.exports = {
60
50
  Reminders,
61
51
  Starboard,
62
52
  AutoMod,
63
- };
53
+ };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "chrxmaticc-framework",
3
- "version": "1.1.1",
3
+ "version": "1.1.3",
4
4
  "description": "A batteries-included Discord bot framework with music, AI, XP and database support.",
5
5
  "main": "index.js",
6
6
  "files": [
@@ -141,4 +141,4 @@ class AutoMod {
141
141
  }
142
142
  }
143
143
 
144
- module.exports = AutoMod;
144
+ module.exports = AutoMod;
@@ -178,4 +178,4 @@ class Economy {
178
178
  }
179
179
  }
180
180
 
181
- module.exports = Economy;
181
+ module.exports = Economy;
@@ -105,4 +105,4 @@ class Giveaways {
105
105
  }
106
106
  }
107
107
 
108
- module.exports = Giveaways;
108
+ module.exports = Giveaways;
@@ -205,4 +205,4 @@ class Moderation {
205
205
  }
206
206
  }
207
207
 
208
- module.exports = Moderation;
208
+ module.exports = Moderation;
@@ -101,4 +101,4 @@ class Polls {
101
101
  }
102
102
  }
103
103
 
104
- module.exports = Polls;
104
+ module.exports = Polls;
@@ -88,4 +88,4 @@ class Reminders {
88
88
  }
89
89
  }
90
90
 
91
- module.exports = Reminders;
91
+ module.exports = Reminders;
@@ -65,4 +65,4 @@ class Starboard {
65
65
  }
66
66
  }
67
67
 
68
- module.exports = Starboard;
68
+ module.exports = Starboard;
@@ -113,4 +113,4 @@ class Tickets {
113
113
  }
114
114
  }
115
115
 
116
- module.exports = Tickets;
116
+ module.exports = Tickets;
@@ -78,4 +78,4 @@ class Welcome {
78
78
  }
79
79
  }
80
80
 
81
- module.exports = Welcome;
81
+ module.exports = Welcome;