DiscordTickets/package.json

70 lines
1.6 KiB
JSON
Raw Normal View History

2019-05-04 00:09:48 +03:00
{
2021-02-26 18:07:20 +02:00
"name": "@eartharoid/discord-tickets",
2021-09-26 01:56:12 +03:00
"version": "3.1.1",
2020-08-17 16:46:23 +03:00
"private": true,
2021-02-20 19:09:08 +02:00
"description": "An open-source Discord bot for ticket management",
"main": "src/index.js",
"scripts": {
2021-05-25 22:51:21 +03:00
"contributors:add": "all-contributors add",
"contributors:generate": "all-contributors generate",
2021-05-22 15:27:12 +03:00
"lint": "eslint src --fix",
"start": "node src/",
"test": "echo \"Nothing to test! Run with 'npm start'\" && exit 1"
},
2020-08-17 16:46:23 +03:00
"engines": {
"node": ">=16.6"
2020-08-17 16:46:23 +03:00
},
"repository": {
"type": "git",
2021-03-03 12:57:28 +02:00
"url": "git+https://github.com/discord-tickets/bot.git"
},
"keywords": [
"discord",
2021-02-15 20:34:59 +02:00
"tickets",
"bot"
],
"author": "eartharoid",
"license": "GPL-3.0",
"bugs": {
2021-03-03 12:57:28 +02:00
"url": "https://github.com/discord-tickets/bot/issues"
},
2021-02-26 18:07:20 +02:00
"homepage": "https://discordtickets.app",
2021-03-03 12:57:28 +02:00
"funding": "https://github.com/discord-tickets/bot/?sponsor=1",
"dependencies": {
2021-04-27 13:34:34 +03:00
"@eartharoid/i18n": "^1.0.0",
"boxen": "^5.0.1",
2021-04-07 02:02:07 +03:00
"cryptr": "^6.0.2",
"discord.js": "^13.1.0",
"dotenv": "^8.6.0",
2021-05-17 02:04:14 +03:00
"keyv": "^4.0.3",
"leeks.js": "^0.2.2",
"leekslazylogger": "^3.0.2",
feat: #206 convert to interactions (buttons and application commands) (#238) * feat: make command handler slash command-ready Only `help` and `settings` commands work so far * feat(commands): finish new settings command * fix(settings): convert `roles` and `ping` to an array * fix(commands): make `add` a slash command * fix(commands): make `blacklist` a slash command * fix(commands): remove URLs from `help` command * Add weblate badge and overview image * Update sponsors * sqlite things * imrpovements * update eslint rules * (⚠ untested) close command * fix: default locale for getting command option names * Update README.md * Update README.md * Update README.md * update new command to slash commands and fix close command * fixes and improvements * fix: closing a ticket when the creator has left * Revert "fix: closing a ticket when the creator has left" This reverts commit afc40ae17077782e344fd8cee03a089966c2347e. * fix: closing a ticket when the creator has left * fix: localisation issues in settings command * fix: delete category channel * New button and select panels + updated message panels Includes new options for panel embed message image and thumbnail Co-Authored-By: Puneet Gopinath <baalkrshna@gmail.com> Co-Authored-By: thevisuales <6569806+thevisuales@users.noreply.github.com> * Finish converting to buttons, added close button Co-Authored-By: Puneet Gopinath <baalkrshna@gmail.com> Co-Authored-By: thevisuales <6569806+thevisuales@users.noreply.github.com> * fully convert to slash commands * re-add "... has created a ticket" message * locales * fix add and remove commands * fix remove command * fix stats command * eslint Co-authored-by: Puneet Gopinath <baalkrshna@gmail.com> Co-authored-by: thevisuales <6569806+thevisuales@users.noreply.github.com>
2021-09-24 17:32:36 +03:00
"ms": "^2.1.3",
"mustache": "^4.2.0",
"node-fetch": "^2.6.1",
"semver": "^7.3.5",
"sequelize": "^6.6.5",
feat: #206 convert to interactions (buttons and application commands) (#238) * feat: make command handler slash command-ready Only `help` and `settings` commands work so far * feat(commands): finish new settings command * fix(settings): convert `roles` and `ping` to an array * fix(commands): make `add` a slash command * fix(commands): make `blacklist` a slash command * fix(commands): remove URLs from `help` command * Add weblate badge and overview image * Update sponsors * sqlite things * imrpovements * update eslint rules * (⚠ untested) close command * fix: default locale for getting command option names * Update README.md * Update README.md * Update README.md * update new command to slash commands and fix close command * fixes and improvements * fix: closing a ticket when the creator has left * Revert "fix: closing a ticket when the creator has left" This reverts commit afc40ae17077782e344fd8cee03a089966c2347e. * fix: closing a ticket when the creator has left * fix: localisation issues in settings command * fix: delete category channel * New button and select panels + updated message panels Includes new options for panel embed message image and thumbnail Co-Authored-By: Puneet Gopinath <baalkrshna@gmail.com> Co-Authored-By: thevisuales <6569806+thevisuales@users.noreply.github.com> * Finish converting to buttons, added close button Co-Authored-By: Puneet Gopinath <baalkrshna@gmail.com> Co-Authored-By: thevisuales <6569806+thevisuales@users.noreply.github.com> * fully convert to slash commands * re-add "... has created a ticket" message * locales * fix add and remove commands * fix remove command * fix stats command * eslint Co-authored-by: Puneet Gopinath <baalkrshna@gmail.com> Co-authored-by: thevisuales <6569806+thevisuales@users.noreply.github.com>
2021-09-24 17:32:36 +03:00
"terminal-link": "^2.1.1"
},
2021-02-16 16:48:04 +02:00
"devDependencies": {
2021-05-25 22:51:21 +03:00
"all-contributors-cli": "^6.20.0",
"eslint": "^7.32.0",
"mariadb": "^2.5.4",
"mysql2": "^2.3.0",
"nodemon": "^2.0.12",
"pg": "^8.7.1",
"pg-hstore": "^2.3.4",
"tedious": "^11.4.0"
2021-02-16 16:48:04 +02:00
},
"optionalDependencies": {
2021-02-16 16:48:04 +02:00
"sqlite3": "^5.0.2"
},
"peerDependencies": {
feat: #206 convert to interactions (buttons and application commands) (#238) * feat: make command handler slash command-ready Only `help` and `settings` commands work so far * feat(commands): finish new settings command * fix(settings): convert `roles` and `ping` to an array * fix(commands): make `add` a slash command * fix(commands): make `blacklist` a slash command * fix(commands): remove URLs from `help` command * Add weblate badge and overview image * Update sponsors * sqlite things * imrpovements * update eslint rules * (⚠ untested) close command * fix: default locale for getting command option names * Update README.md * Update README.md * Update README.md * update new command to slash commands and fix close command * fixes and improvements * fix: closing a ticket when the creator has left * Revert "fix: closing a ticket when the creator has left" This reverts commit afc40ae17077782e344fd8cee03a089966c2347e. * fix: closing a ticket when the creator has left * fix: localisation issues in settings command * fix: delete category channel * New button and select panels + updated message panels Includes new options for panel embed message image and thumbnail Co-Authored-By: Puneet Gopinath <baalkrshna@gmail.com> Co-Authored-By: thevisuales <6569806+thevisuales@users.noreply.github.com> * Finish converting to buttons, added close button Co-Authored-By: Puneet Gopinath <baalkrshna@gmail.com> Co-Authored-By: thevisuales <6569806+thevisuales@users.noreply.github.com> * fully convert to slash commands * re-add "... has created a ticket" message * locales * fix add and remove commands * fix remove command * fix stats command * eslint Co-authored-by: Puneet Gopinath <baalkrshna@gmail.com> Co-authored-by: thevisuales <6569806+thevisuales@users.noreply.github.com>
2021-09-24 17:32:36 +03:00
"mariadb": "^2.5.4",
"mysql2": "^2.3.0",
"pg": "^8.7.1",
"pg-hstore": "^2.3.4",
"tedious": "^11.4.0"
}
2019-05-04 00:09:48 +03:00
}