diff --git a/betterdiscord.js b/betterdiscord.js new file mode 100644 index 0000000..1e6bc52 --- /dev/null +++ b/betterdiscord.js @@ -0,0 +1 @@ +module.exports = require('./lib/BetterDiscord'); diff --git a/lib/BetterDiscord.js b/lib/BetterDiscord.js new file mode 100644 index 0000000..1566fd8 --- /dev/null +++ b/lib/BetterDiscord.js @@ -0,0 +1,9 @@ +function BetterDiscord() { + +} + +BetterDiscord.prototype.init = function() { + console.log("WOLOLOLOLO"); +} + +exports.BetterDiscord = BetterDiscord; \ No newline at end of file diff --git a/lib/config.json b/lib/config.json new file mode 100644 index 0000000..2bb7167 --- /dev/null +++ b/lib/config.json @@ -0,0 +1,19 @@ +{ + "EmoteModule": { + "Twitch":{ + "EmoteData": "emotedata_twitch.json", + "EmoteUrlStart": "https://static-cdn.jtvnw.net/emoticons/v1/", + "EmoteUrlEnd": "/1.0" + }, + "FrankerFaceZ": { + "EmoteData": "emotedata_ffz.json", + "EmoteUrlStart": "https://cdn.frankerfacez.com/emoticon/", + "EmoteUrlEnd": "/1" + }, + "BetterTTV": { + "EmoteData": "", + "EmoteUrlStart": "", + "EmoteUrlEnd": "" + } + } +} \ No newline at end of file diff --git a/package.json b/package.json new file mode 100644 index 0000000..153abd0 --- /dev/null +++ b/package.json @@ -0,0 +1,8 @@ +{ + "name": "betterdiscord", + "description": "Better Discord enhances Discord.", + "version": "0.1.2", + "homepage": "https://github.com/Jiiks/BetterDiscordApp", + "license": "MIT", + "main": "betterdiscord.js" +}