Initial commit, rough prototype

This commit is contained in:
Charlie Laabs
2018-01-30 22:37:39 -06:00
parent f7cfc5741f
commit 6bee324aa8
8 changed files with 635 additions and 0 deletions

25
package.json Normal file
View File

@@ -0,0 +1,25 @@
{
"name": "markbot",
"version": "0.1.0",
"description": "A conversational Markov chain bot for Discord",
"main": "index.js",
"scripts": {
"start": "node index.js"
},
"repository": "",
"keywords": [
"discord",
"markov",
"chain",
"bot"
],
"author": "Charlie Laabs <charlielaabs@gmail.com>",
"license": "MIT",
"dependencies": {
"big-json": "^2.0.0",
"discord.js": "^11.3.0",
"erlpack": "github:discordapp/erlpack",
"markov-strings": "^1.3.5",
"zlib-sync": "^0.1.4"
}
}