mirror of
https://github.com/Hessenuk/DiscordTickets.git
synced 2025-09-05 17:51:27 +03:00
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:
64
package.json
64
package.json
@@ -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"
|
||||
}
|
||||
|
Reference in New Issue
Block a user