-
-
Notifications
You must be signed in to change notification settings - Fork 84
/
Copy pathpackage.json
46 lines (46 loc) · 1.38 KB
/
package.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
{
"name": "discordbot",
"version": "2.16.0",
"description": "A tutorial series for beginners on how to create a Discord bot using NodeJS and Discord.JS library.",
"main": "src/index.js",
"scripts": {
"dev": "node --es-module-specifier-resolution=node src/index.js",
"dev:watch": "nodemon --es-module-specifier-resolution=node src/index.js",
"start": "node src/index.js"
},
"dependencies": {
"ascii-table3": "^0.8.2",
"chalk": "^5.3.0",
"consola": "^3.2.3",
"dayjs": "^1.11.10",
"discord.js": "^14.13.0",
"dotenv": "^16.3.1",
"lodash-es": "^4.17.21"
},
"repository": {
"type": "git",
"url": "git+https://github.com/m7rlin/DiscordBot.git"
},
"keywords": [
"discord",
"discord-bot",
"discord-js",
"discord bot w discord.js",
"discordjs",
"discord.js",
"programowanie discordowego bota",
"discordowy bot"
],
"author": "Marcin (m7rlin) Stawowczyk",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/m7rlin/DiscordBot/issues"
},
"homepage": "https://github.com/m7rlin/DiscordBot#readme",
"devDependencies": {
"@babel/eslint-parser": "^7.22.11",
"@babel/plugin-syntax-import-assertions": "^7.22.5",
"eslint": "^8.48.0"
},
"type": "module"
}