This commit is contained in:
Isaac 2021-09-25 00:05:39 +01:00
parent b9b8a84831
commit 5acdf3b4c0
No known key found for this signature in database
GPG Key ID: 87B9B6BD04EB7534
3 changed files with 6 additions and 5 deletions

View File

@ -1,6 +1,6 @@
{ {
"name": "@eartharoid/discord-tickets", "name": "@eartharoid/discord-tickets",
"version": "3.1.0-dev", "version": "3.1.0",
"private": true, "private": true,
"description": "An open-source Discord bot for ticket management", "description": "An open-source Discord bot for ticket management",
"main": "src/index.js", "main": "src/index.js",

View File

@ -6,7 +6,7 @@
}, },
"exported_at": "2021-05-26T22:41:44+02:00", "exported_at": "2021-05-26T22:41:44+02:00",
"name": "Discord Tickets", "name": "Discord Tickets",
"author": "contact@eartharoid.me", "author": "contact@discordtickets.app",
"description": "https:\/\/discordtickets.app", "description": "https:\/\/discordtickets.app",
"features": null, "features": null,
"images": [ "images": [
@ -32,7 +32,7 @@
"name": "Version", "name": "Version",
"description": "The version of the bot to use.", "description": "The version of the bot to use.",
"env_variable": "VERSION", "env_variable": "VERSION",
"default_value": "v3.0.0", "default_value": "v3.1.0",
"user_viewable": true, "user_viewable": true,
"user_editable": true, "user_editable": true,
"rules": "required|string|max:20" "rules": "required|string|max:20"

View File

@ -1,4 +1,3 @@
/* eslint-disable no-console */
/** /**
* Discord Tickets * Discord Tickets
* Copyright (C) 2021 Isaac Saunders * Copyright (C) 2021 Isaac Saunders
@ -16,12 +15,14 @@
* You should have received a copy of the GNU General Public License * You should have received a copy of the GNU General Public License
* along with this program. If not, see <https://www.gnu.org/licenses/>. * along with this program. If not, see <https://www.gnu.org/licenses/>.
* *
* @name @eartharoid/discord-tickets * @name @discord-tickets/bot
* @description An open-source Discord bot for ticket management * @description An open-source Discord bot for ticket management
* @copyright 2021 Isaac Saunders * @copyright 2021 Isaac Saunders
* @license GNU-GPLv3 * @license GNU-GPLv3
*/ */
/* eslint-disable no-console */
process.title = 'Discord Tickets'; process.title = 'Discord Tickets';
const min_node_version = '16.6.0'; const min_node_version = '16.6.0';