2022-03-18 16:27:32 +00:00
|
|
|
{
|
|
|
|
"name": "discord-tickets",
|
2025-01-14 04:04:30 +00:00
|
|
|
"version": "4.0.28",
|
2022-03-18 16:27:32 +00:00
|
|
|
"private": "true",
|
2023-06-16 22:50:47 +01:00
|
|
|
"description": "The most popular open-source ticket management bot for Discord.",
|
2022-05-05 21:29:28 +01:00
|
|
|
"main": "src/",
|
2022-03-18 16:27:32 +00:00
|
|
|
"scripts": {
|
2025-02-01 01:17:00 +00:00
|
|
|
"bot.export": "node --no-warnings scripts/export.mjs",
|
|
|
|
"bot.import": "node --no-warnings scripts/import.mjs",
|
2023-02-13 16:42:35 +00:00
|
|
|
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s",
|
2022-03-18 16:27:32 +00:00
|
|
|
"contributors:add": "all-contributors add",
|
|
|
|
"contributors:generate": "all-contributors generate",
|
2022-05-05 21:29:28 +01:00
|
|
|
"keygen": "node scripts/keygen",
|
2023-02-13 14:36:15 +00:00
|
|
|
"lint": "eslint src scripts --fix",
|
2022-07-23 13:27:32 +01:00
|
|
|
"preinstall": "node scripts/preinstall",
|
|
|
|
"postinstall": "node scripts/postinstall",
|
2022-08-25 23:29:07 +01:00
|
|
|
"start": "node .",
|
2022-07-21 01:25:37 +01:00
|
|
|
"studio": "npx prisma studio",
|
2024-04-18 00:33:17 +01:00
|
|
|
"test": "node scripts/check-i18n",
|
2024-04-25 01:13:17 +01:00
|
|
|
"__prepare": "husky install"
|
2022-03-18 16:27:32 +00:00
|
|
|
},
|
2023-06-11 23:59:27 +01:00
|
|
|
"commitlint": {
|
|
|
|
"extends": [
|
|
|
|
"@commitlint/config-conventional"
|
|
|
|
]
|
|
|
|
},
|
2023-02-13 15:07:35 +00:00
|
|
|
"lint-staged": {
|
2023-02-13 16:41:56 +00:00
|
|
|
"**/*.js": [
|
|
|
|
"npm run lint --"
|
|
|
|
]
|
2023-02-13 15:07:35 +00:00
|
|
|
},
|
2022-03-18 16:27:32 +00:00
|
|
|
"repository": {
|
|
|
|
"type": "git",
|
|
|
|
"url": "git+https://github.com/discord-tickets/bot.git"
|
|
|
|
},
|
|
|
|
"keywords": [
|
|
|
|
"discord",
|
|
|
|
"tickets",
|
|
|
|
"bot"
|
|
|
|
],
|
|
|
|
"author": "eartharoid",
|
2023-06-15 00:21:52 +01:00
|
|
|
"license": "GPL-3.0-or-later",
|
2022-03-18 16:27:32 +00:00
|
|
|
"bugs": {
|
|
|
|
"url": "https://github.com/discord-tickets/bot/issues"
|
|
|
|
},
|
|
|
|
"homepage": "https://discordtickets.app",
|
|
|
|
"engines": {
|
2023-03-06 22:09:05 +00:00
|
|
|
"node": ">=18"
|
2022-03-18 16:27:32 +00:00
|
|
|
},
|
|
|
|
"dependencies": {
|
2025-02-11 05:06:03 +00:00
|
|
|
"@discord-tickets/settings": "~2.5.0",
|
2024-01-15 02:14:38 +00:00
|
|
|
"@eartharoid/dbf": "^0.4.2",
|
2022-03-18 16:27:32 +00:00
|
|
|
"@eartharoid/dtf": "^2.0.1",
|
2022-10-26 18:58:46 +01:00
|
|
|
"@eartharoid/i18n": "^1.2.1",
|
2025-02-09 23:12:53 +00:00
|
|
|
"@fastify/cookie": "^11.0.2",
|
|
|
|
"@fastify/jwt": "^9.0.3",
|
|
|
|
"@fastify/multipart": "^9.0.3",
|
2025-02-10 01:13:46 +00:00
|
|
|
"@prisma/client": "^5.22.0",
|
2025-02-01 01:17:00 +00:00
|
|
|
"archiver": "^7.0.1",
|
2024-01-15 02:14:38 +00:00
|
|
|
"boxen": "^7.1.1",
|
2025-01-13 20:45:44 +00:00
|
|
|
"commander": "^12.1.0",
|
2024-01-15 02:14:38 +00:00
|
|
|
"cryptr": "^6.3.0",
|
2025-01-30 03:08:46 +00:00
|
|
|
"discord.js": "^14.17.3",
|
|
|
|
"dotenv": "^16.4.7",
|
2025-02-09 23:12:53 +00:00
|
|
|
"fastify": "^5.2.1",
|
2024-11-08 23:41:28 +00:00
|
|
|
"figlet": "^1.8.0",
|
2022-07-23 01:44:03 +01:00
|
|
|
"fs-extra": "^10.1.0",
|
2024-01-15 02:14:38 +00:00
|
|
|
"keyv": "^4.5.4",
|
2023-02-24 16:32:52 +00:00
|
|
|
"leeks.js": "^0.3.0",
|
2024-01-15 02:14:38 +00:00
|
|
|
"leekslazylogger": "^6.0.0",
|
2022-07-15 23:19:42 +01:00
|
|
|
"ms": "^2.1.3",
|
2022-10-24 20:17:40 +01:00
|
|
|
"mustache": "^4.2.0",
|
2022-05-06 00:01:19 +01:00
|
|
|
"node-dir": "^0.1.17",
|
2022-07-18 21:53:17 +01:00
|
|
|
"node-emoji": "^1.11.0",
|
2022-07-17 14:13:44 +01:00
|
|
|
"object-diffy": "^1.0.4",
|
2025-01-13 20:45:44 +00:00
|
|
|
"ora": "^8.1.1",
|
2025-02-10 01:13:46 +00:00
|
|
|
"prisma": "^5.22.0",
|
2025-01-30 03:08:46 +00:00
|
|
|
"semver": "^7.7.0",
|
2023-06-25 13:41:07 +01:00
|
|
|
"short-unique-id": "^4.4.4",
|
2025-01-30 03:08:46 +00:00
|
|
|
"spacetime": "^7.7.0",
|
2022-05-05 21:29:28 +01:00
|
|
|
"terminal-link": "^2.1.1",
|
2025-02-01 01:17:00 +00:00
|
|
|
"threads": "^1.7.0",
|
2025-02-09 23:12:53 +00:00
|
|
|
"unzipper": "^0.12.3",
|
2025-01-30 03:08:46 +00:00
|
|
|
"yaml": "^2.7.0"
|
2022-03-18 16:27:32 +00:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
2024-01-15 02:14:38 +00:00
|
|
|
"@commitlint/cli": "^17.8.1",
|
|
|
|
"@commitlint/config-conventional": "^17.8.1",
|
|
|
|
"all-contributors-cli": "^6.26.1",
|
2023-02-13 16:42:35 +00:00
|
|
|
"conventional-changelog-cli": "^2.2.2",
|
2024-11-08 23:41:28 +00:00
|
|
|
"eslint": "^8.57.1",
|
2022-03-21 23:28:20 +00:00
|
|
|
"eslint-plugin-unused-imports": "^2.0.0",
|
2024-04-25 01:05:47 +01:00
|
|
|
"husky": "^8.0.3",
|
2024-01-15 02:14:38 +00:00
|
|
|
"lint-staged": "^13.3.0",
|
2024-11-08 23:41:28 +00:00
|
|
|
"markdown-table": "^3.0.4",
|
2025-01-13 20:45:44 +00:00
|
|
|
"nodemon": "^2.0.22"
|
2022-10-09 17:04:43 +01:00
|
|
|
},
|
|
|
|
"optionalDependencies": {
|
2025-01-30 03:08:46 +00:00
|
|
|
"bufferutil": "^4.0.9",
|
2022-10-09 17:04:43 +01:00
|
|
|
"erlpack": "github:discord/erlpack",
|
2022-10-18 14:58:30 +01:00
|
|
|
"utf-8-validate": "^5.0.10",
|
2024-01-15 02:14:38 +00:00
|
|
|
"zlib-sync": "^0.1.9"
|
2022-03-18 16:27:32 +00:00
|
|
|
}
|
2023-02-13 15:07:35 +00:00
|
|
|
}
|