v2 rewrite with discord.js@v12 support. Now with SQLite or MySQL storage.

Code is at least 80% less bad.
This commit is contained in:
Isaac (eartharoid)
2020-08-12 23:02:33 +01:00
parent c77f38f209
commit 8431b2d241
44 changed files with 4072 additions and 802 deletions

View File

@@ -1,28 +1,40 @@
{
"name": "discordtickets",
"version": "1.1.5",
"description": "A Discord ticket/support - an open-source & self-hosted bot",
"main": "index.js",
"dependencies": {
"discord.js": "11.x",
"leekslazylogger": "^1.1.9"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/eartharoid/DiscordTickets.git"
},
"keywords": [
"discord",
"bot",
"tickets"
],
"author": "Eartharoid",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/eartharoid/DiscordTickets/issues"
},
"homepage": "https://github.com/eartharoid/DiscordTickets"
"name": "@eartharoid/discordtickets",
"version": "2.0.0",
"description": "A Discord ticket/support - an open-source & self-hosted bot",
"main": "src/index.js",
"dependencies": {
"discord.js": "^12.2.0",
"dotenv": "^8.2.0",
"leekslazylogger": "^2.0.0-alpha.5",
"node-fetch": "^2.6.0",
"sequelize": "^6.3.4",
"sqlite3": "^5.0.0"
},
"peerDependencies": {
"mysql2": "2.x"
},
"devDependencies": {
"eslint": "^7.6.0",
"nodemon": "^2.0.4"
},
"scripts": {
"start": "node src/",
"test": "echo \"Nothing to test! Run with 'npm start'\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/eartharoid/DiscordTickets.git"
},
"keywords": [
"discord",
"bot",
"tickets"
],
"author": "eartharoid",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/eartharoid/DiscordTickets/issues"
},
"homepage": "https://github.com/eartharoid/DiscordTickets"
}