reciple 7.8.2 → 7.8.3-dev.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 (4) hide show
  1. package/LICENSE +674 -674
  2. package/README.md +213 -213
  3. package/package.json +8 -8
  4. package/static/config.yml +116 -116
package/static/config.yml CHANGED
@@ -1,116 +1,116 @@
1
- # The bot token
2
- # You can directly set the bot token as value or use token from env
3
- # To use token from env set the value like this:
4
- # token: env:TOKEN
5
- token: TOKEN
6
-
7
- # Commands Config
8
- commands:
9
- contextMenuCommand:
10
- # If false, the client will ignore this type of command when executed
11
- enabled: true
12
- # Enable user command cooldowns if available
13
- enableCooldown: true
14
- # Command register config
15
- registerCommands:
16
- # Allow commands to be registered globally
17
- registerGlobally: true
18
- # Allow commands to be registered a given guilds/servers
19
- registerToGuilds: []
20
- # If enabled, the client will accept replied interactions of this type
21
- acceptRepliedInteractions: false
22
- slashCommand:
23
- # If false, the client will ignore this type of command when executed
24
- enabled: true
25
- # Enable user command cooldowns if available
26
- enableCooldown: true
27
- # Command register config
28
- registerCommands:
29
- # Allow commands to be registered globally
30
- registerGlobally: true
31
- # Allow commands to be registered a given guilds/servers
32
- registerToGuilds: []
33
- # If enabled, the client will accept replied interactions of this type
34
- acceptRepliedInteractions: false
35
- additionalApplicationCommands:
36
- # Command register config
37
- registerCommands:
38
- # Allow commands to be registered globally
39
- registerGlobally: true
40
- # Allow commands to be registered a given guilds/servers
41
- registerToGuilds: []
42
- messageCommand:
43
- # If false, the client will ignore this type of command when executed
44
- enabled: true
45
- # Enable user command cooldowns if available
46
- enableCooldown: true
47
- # String separator for command options
48
- commandArgumentSeparator: ' '
49
- # Command prefix
50
- prefix: '!'
51
-
52
- # Application commands register config
53
- applicationCommandRegister:
54
- # If false, any application commands will not be registered
55
- enabled: true
56
- # Wether allow all application commands to be registered globally
57
- # This ignores their specific configs
58
- allowRegisterGlobally: true
59
- # Wether allow all application commands to be registered to guilds
60
- # This ignores their specific configs
61
- allowRegisterToGuilds: true
62
- # Register empty command list
63
- registerEmptyCommands: true
64
- # Register all application commands to guilds/servers
65
- registerToGuilds: []
66
-
67
- # Logger config
68
- logger:
69
- # Enables client logger
70
- enabled: true
71
- # Enables logger debug mode
72
- debugmode: false
73
- # Enables colored console logs
74
- coloredMessages: true
75
- # Disables the log prefix to logged messages
76
- disableLogPrefix: false
77
- # File file config
78
- logToFile:
79
- # Enables log file
80
- enabled: true
81
- # Sets the log file folder
82
- logsFolder: ./logs
83
- # Latest log file name
84
- file: latest.log
85
-
86
- # Modules config
87
- modules:
88
- # Reciple modules folders
89
- # You can add multiple folders by adding the folder path or using glob patterns
90
- modulesFolders:
91
- - ./modules
92
- # Excluded files or folders
93
- # You can add the file/folder name or use glob patterns
94
- exclude: []
95
- # If false, the client will still load unsupported modules
96
- disableModuleVersionCheck: false
97
-
98
- # Cooldown sweeper
99
- cooldownSweeper:
100
- # Enables cooldown sweeper
101
- enabled: true
102
- # Run sweeper every given milleseconds
103
- interval: 3600000
104
-
105
- # Discord.js client options
106
- client:
107
- intents:
108
- - Guilds
109
- - GuildMessages
110
- - MessageContent
111
-
112
- # Notifies you for package updates
113
- checkForUpdates: true
114
-
115
- # Don't change this value
116
- version: ^VERSION
1
+ # The bot token
2
+ # You can directly set the bot token as value or use token from env
3
+ # To use token from env set the value like this:
4
+ # token: env:TOKEN
5
+ token: TOKEN
6
+
7
+ # Commands Config
8
+ commands:
9
+ contextMenuCommand:
10
+ # If false, the client will ignore this type of command when executed
11
+ enabled: true
12
+ # Enable user command cooldowns if available
13
+ enableCooldown: true
14
+ # Command register config
15
+ registerCommands:
16
+ # Allow commands to be registered globally
17
+ registerGlobally: true
18
+ # Allow commands to be registered a given guilds/servers
19
+ registerToGuilds: []
20
+ # If enabled, the client will accept replied interactions of this type
21
+ acceptRepliedInteractions: false
22
+ slashCommand:
23
+ # If false, the client will ignore this type of command when executed
24
+ enabled: true
25
+ # Enable user command cooldowns if available
26
+ enableCooldown: true
27
+ # Command register config
28
+ registerCommands:
29
+ # Allow commands to be registered globally
30
+ registerGlobally: true
31
+ # Allow commands to be registered a given guilds/servers
32
+ registerToGuilds: []
33
+ # If enabled, the client will accept replied interactions of this type
34
+ acceptRepliedInteractions: false
35
+ additionalApplicationCommands:
36
+ # Command register config
37
+ registerCommands:
38
+ # Allow commands to be registered globally
39
+ registerGlobally: true
40
+ # Allow commands to be registered a given guilds/servers
41
+ registerToGuilds: []
42
+ messageCommand:
43
+ # If false, the client will ignore this type of command when executed
44
+ enabled: true
45
+ # Enable user command cooldowns if available
46
+ enableCooldown: true
47
+ # String separator for command options
48
+ commandArgumentSeparator: ' '
49
+ # Command prefix
50
+ prefix: '!'
51
+
52
+ # Application commands register config
53
+ applicationCommandRegister:
54
+ # If false, any application commands will not be registered
55
+ enabled: true
56
+ # Wether allow all application commands to be registered globally
57
+ # This ignores their specific configs
58
+ allowRegisterGlobally: true
59
+ # Wether allow all application commands to be registered to guilds
60
+ # This ignores their specific configs
61
+ allowRegisterToGuilds: true
62
+ # Register empty command list
63
+ registerEmptyCommands: true
64
+ # Register all application commands to guilds/servers
65
+ registerToGuilds: []
66
+
67
+ # Logger config
68
+ logger:
69
+ # Enables client logger
70
+ enabled: true
71
+ # Enables logger debug mode
72
+ debugmode: false
73
+ # Enables colored console logs
74
+ coloredMessages: true
75
+ # Disables the log prefix to logged messages
76
+ disableLogPrefix: false
77
+ # File file config
78
+ logToFile:
79
+ # Enables log file
80
+ enabled: true
81
+ # Sets the log file folder
82
+ logsFolder: ./logs
83
+ # Latest log file name
84
+ file: latest.log
85
+
86
+ # Modules config
87
+ modules:
88
+ # Reciple modules folders
89
+ # You can add multiple folders by adding the folder path or using glob patterns
90
+ modulesFolders:
91
+ - ./modules
92
+ # Excluded files or folders
93
+ # You can add the file/folder name or use glob patterns
94
+ exclude: []
95
+ # If false, the client will still load unsupported modules
96
+ disableModuleVersionCheck: false
97
+
98
+ # Cooldown sweeper
99
+ cooldownSweeper:
100
+ # Enables cooldown sweeper
101
+ enabled: true
102
+ # Run sweeper every given milleseconds
103
+ interval: 3600000
104
+
105
+ # Discord.js client options
106
+ client:
107
+ intents:
108
+ - Guilds
109
+ - GuildMessages
110
+ - MessageContent
111
+
112
+ # Notifies you for package updates
113
+ checkForUpdates: true
114
+
115
+ # Don't change this value
116
+ version: ^VERSION