mirror of
https://github.com/Hessenuk/DiscordTickets.git
synced 2024-11-05 12:23:09 +02:00
0f10908ee0
* build: bump djs version * refactor(add): update * refactor(blacklist): update * refactor(close): update * refactor(help): update * refactor(new): update * refactor(panel): update * refactor(remove): update * refactor(stats): update * refactor(survey): update * refactor(tag): update * refactor(topic): update * refactor(guild): update, now Structures doesn't exist Also I don't know if this would work actually, let's see * refactor(guild_member) * refactor(index.js): add intents I can't understand how you do the indentation, sorry if I made a mistake * Update package.json * fix(intents): add `DIRECT_MESSAGES` intents - also fix code style and indentation * style: fix properties order and indentation * fix(guild) * Update and rename message.js to messageCreate.js * Update guild.js * refactor(manager): fix * Update manager.js * fix(help) * style: fix spacing * fix: permission overwrites * fix(new) * fix(presence): rename activity to activities * fix(presence): fix debug message * fix: update channel types * Update new.js * fix(embeds): update footer function * fix: broken code * style: add new lines around embed blocks * fix(messages): update remaining `send()` calls * fix(messages): i missed one * build: replace fastify logger with standard logger * refactor: update message and reaction collectors Co-authored-by: Isaac <git@eartharoid.me>
74 lines
1.7 KiB
JSON
74 lines
1.7 KiB
JSON
{
|
|
"name": "@eartharoid/discord-tickets",
|
|
"version": "3.1.0-dev",
|
|
"private": true,
|
|
"description": "An open-source Discord bot for ticket management",
|
|
"main": "src/index.js",
|
|
"scripts": {
|
|
"contributors:add": "all-contributors add",
|
|
"contributors:generate": "all-contributors generate",
|
|
"lint": "eslint src --fix",
|
|
"start": "node src/",
|
|
"test": "echo \"Nothing to test! Run with 'npm start'\" && exit 1"
|
|
},
|
|
"engines": {
|
|
"node": ">=16.6"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/discord-tickets/bot.git"
|
|
},
|
|
"keywords": [
|
|
"discord",
|
|
"tickets",
|
|
"bot"
|
|
],
|
|
"author": "eartharoid",
|
|
"license": "GPL-3.0",
|
|
"bugs": {
|
|
"url": "https://github.com/discord-tickets/bot/issues"
|
|
},
|
|
"homepage": "https://discordtickets.app",
|
|
"funding": "https://github.com/discord-tickets/bot/?sponsor=1",
|
|
"dependencies": {
|
|
"@eartharoid/i18n": "^1.0.0",
|
|
"boxen": "^5.0.1",
|
|
"command-line-args": "^5.2.0",
|
|
"cryptr": "^6.0.2",
|
|
"discord.js": "^13.1.0",
|
|
"dotenv": "^8.6.0",
|
|
"jsonschema": "^1.4.0",
|
|
"keyv": "^4.0.3",
|
|
"leeks.js": "^0.2.2",
|
|
"leekslazylogger": "^3.0.2",
|
|
"mustache": "^4.2.0",
|
|
"node-emoji": "^1.11.0",
|
|
"node-fetch": "^2.6.1",
|
|
"semver": "^7.3.5",
|
|
"sequelize": "^6.6.5",
|
|
"string-argv": "^0.3.1",
|
|
"terminal-link": "^2.1.1",
|
|
"to-time-monthsfork": "^1.1.4"
|
|
},
|
|
"devDependencies": {
|
|
"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"
|
|
},
|
|
"optionalDependencies": {
|
|
"sqlite3": "^5.0.2"
|
|
},
|
|
"peerDependencies": {
|
|
"mariadb": "^2.5.2",
|
|
"mysql2": "^2.2.5",
|
|
"pg": "^8.5.1",
|
|
"pg-hstore": "^2.3.3",
|
|
"tedious": "^11.0.3"
|
|
}
|
|
}
|