-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.48 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.48 KB
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
{
"type": "commonjs",
"name": "pluginwizard_community_discord_bot",
"description": "The official community Discord bot for managing the PluginWizard Discord server.",
"version": "0.0.1",
"homepage": "https://github.com/PluginWizard/PluginWizard-Bot#readme",
"license": "ISC",
"main": "index.js",
"bugs": {
"url": "https://github.com/PluginWizard/PluginWizard-Bot/issues"
},
"author": {
"name": "PluginWizard Development Team",
"url": "https://github.com/PluginWizard",
"email": "COMPANY EMAIL COMING SOON"
},
"repository": {
"type": "git",
"url": "git+https://github.com/PluginWizard/PluginWizard-Bot.git"
},
"engines": {
"node": "20"
},
"os": [
"win32",
"linux",
"darwin"
],
"keywords": [
"minecraft, coding, development, pluginwizard, spigot, paper, coding, javascript, discord.js"
],
"contributors": [
{
"name": "Kalbskinder",
"email": "COMING SOON",
"url": "https://github.com/Kalbskinder"
},
{
"name": "Brentan Rath",
"email": "COMPANY EMAIL COMING SOON",
"url": "https://github.com/BrentanRath"
}
],
"scripts": {
"start": "npm run build && node index.js",
"dev": "nodemon index.js",
"build": "node build.js"
},
"dependencies": {
"discord.js": "^14.25.1",
"dotenv": "^17.2.3"
}
}