forked from peterthehan/create-discord-bot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
37 lines (37 loc) · 895 Bytes
/
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
{
"name": "create-discord-bot",
"version": "2.0.0",
"description": "Create Discord bots using a simple widget-based framework.",
"keywords": [
"discord",
"bot",
"discord-bot",
"framework",
"template",
"widget"
],
"homepage": "https://github.com/peterthehan/create-discord-bot",
"bugs": {
"url": "https://github.com/peterthehan/create-discord-bot/issues",
"email": "[email protected]"
},
"license": "MIT",
"author": {
"name": "Peter Han",
"email": "[email protected]",
"url": "https://github.com/peterthehan"
},
"bin": {
"create-discord-bot": "./src/index.js"
},
"repository": {
"type": "git",
"url": "https://github.com/peterthehan/create-discord-bot.git"
},
"scripts": {
"start": "node ./src/index.js"
},
"dependencies": {
"discord.js": "github:discordjs/discord.js#master"
}
}