-
Notifications
You must be signed in to change notification settings - Fork 0
/
packages.json
173 lines (173 loc) · 5.48 KB
/
packages.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
{
"info" : {
"description": "Information about all commands.",
"aliases": "info, help",
"category": "information"
},
"hash": {
"description": "Generate a hash of any string",
"available": "whirlpool, sha1, ripemd160, sha3_384, blake2s256, sha3_512, shake_128, md4, blake2b, sha3_224, sha256, blake2s, blake2b512, sha512, md5, sha384, md5-sha1, mdc2, sha224, shake_256, sha3_256, crc32, adler32",
"category": "crypto"
},
"cesar":{
"description": "Generates cesar encrypted/decrypted text from text with given factor",
"category":"crypto",
"usage": "cesar <mode> <factor> <text>"
},
"vigenere":{
"description": "Generates vigenere encrypted/decrypted text from text with given key",
"category":"crypto",
"usage": "vigenere <mode> <key> <text>"
},
"rotate": {
"description": "Rotate an image by given degree",
"usage":"rotate <degree> <File>",
"category": "images"
},
"mirrow": {
"description": "Mirrows image",
"usage":"mirrow <File>",
"category": "images"
},
"grayscale": {
"description": "Generates a grayscale of image",
"usage":"grayscale <File>",
"category": "images"
},
"negativescale": {
"description": "Generates a negative image",
"usage":"negativescale <File>",
"category": "images"
},
"blackscale": {
"description": "Generates a black image",
"usage":"blackscale <File>",
"category": "images"
},
"addnoise": {
"description": "Generates a image with noise",
"usage":"addnoise <File>",
"category": "images"
},
"textart": {
"description": "Generates a textart from text with given font",
"usage":"textart <font> <text>",
"category": "other"
},
"userinfo": {
"description": "Shows user info",
"usage":"userinfo <name>",
"category": "discord"
},
"serverinfo": {
"description": "Shows server info",
"category": "discord"
},
"ban": {
"description": "Bans user",
"usage":"ban <name>",
"category": "discord"
},
"kick": {
"description": "Kicks user",
"usage":"kick <name>",
"category": "discord"
},
"text2base": {
"description": "Converts text to base with given bitness (64 as default)",
"usage":"text2base <bitness> (optional), <text>",
"available": "16, 32, 64, 85",
"category": "converters"
},
"base2text": {
"description": "Converts base to text with given bitness (64 as default)",
"usage":"base2text <bitness> (optional), <text>",
"available": "16, 32, 64, 85",
"category": "converters"
},
"text2ascii": {
"description": "Converts any text to ascii numbers and shows chars sum",
"usage":"text2ascii <text>",
"category": "converters"
},
"ascii2text": {
"description": "Converts any string of ascii numbers to text",
"usage":"ascii2text <text>",
"category": "converters"
},
"base2base": {
"description": "Converts number from one base to another",
"usage":"base2base <from_base> <to_base> <number>",
"category": "converters"
},
"text2morse": {
"description": "Converts text to morse encoding",
"usage":"text2morse <text>",
"category": "converters"
},
"morse2text": {
"description": "Converts text in morse encoding to regular text",
"usage":"morse2text <text>",
"category": "converters"
},
"text2spelling": {
"description": "Converts text to spilling NATO encoding",
"usage":"text2spelling <text>",
"category": "converters"
},
"spelling2text": {
"description": "Converts spilling NATO encoding to text",
"usage":"spelling2text <text>",
"category": "converters"
},
"rgb2hex": {
"description": "Converts RGB to HEX",
"usage":"rbg2hex <R> <G> <B>",
"category": "converters"
},
"hex2rgb": {
"description": "Converts HEX to RGB",
"usage":"hex2rgb <HEX>",
"category": "converters"
},
"uppercase": {
"description": "Converts text to uppercase",
"usage":"uppercase <text>",
"category": "converters"
},
"lowercase": {
"description": "Converts text to lowecase",
"usage":"lowercase <text>",
"category": "converters"
},
"randomcase": {
"description": "Converts text to randomcase",
"usage":"randomcase <text>",
"category": "random"
},
"randint": {
"description": "Return random integer in range [a, b], including both end points.",
"usage":"randint <a> <b>",
"category": "random"
},
"gallow": {
"description": "Classic game gallow implemented in discord with our Reactions engine",
"usage": "gallow start",
"category": "minigames"
},
"rps": {
"description": "Play in rock paper scrissors against bot",
"usage": "rps <item>",
"category": "minigames",
"aliases": "rockpaperscrissors"
},
"crackmees":{
"description": "Steal some crackmes from https://crackmes.one/",
"usage": "crackmees <mode> *<args>",
"category": "pwn"
},
"link":{
"description": "Get link to invite bot to your server",
"category": "information"
}
}