feat: add PDF viewer command with page navigation and multi-project support improvements

This commit is contained in:
ɧσℓσ
2025-12-10 19:12:58 +01:00
parent 8c454bb0dc
commit e223be9452
10 changed files with 1255 additions and 38 deletions

View File

@@ -1,6 +1,6 @@
{
"name": "gitlab-issue-discord-bot",
"version": "1.0.0",
"version": "1.1.0",
"description": "Bot Discord pour synchroniser les issue boards GitLab avec Discord",
"main": "src/index.js",
"scripts": {
@@ -10,19 +10,28 @@
"lint": "eslint src/",
"lint:fix": "eslint src/ --fix"
},
"keywords": ["discord", "gitlab", "kanban", "bot", "issue-board"],
"keywords": [
"discord",
"gitlab",
"kanban",
"bot",
"issue-board"
],
"author": "Holo795",
"license": "MIT",
"dependencies": {
"discord.js": "^14.14.1",
"axios": "^1.6.2",
"canvas": "^2.11.2",
"discord.js": "^14.14.1",
"dotenv": "^16.3.1",
"node-cron": "^3.0.3"
"node-cron": "^3.0.3",
"pdfjs-dist": "^3.11.174",
"sharp": "^0.33.3"
},
"devDependencies": {
"nodemon": "^3.0.2",
"eslint": "^8.56.0",
"jest": "^29.7.0"
"jest": "^29.7.0",
"nodemon": "^3.0.2"
},
"engines": {
"node": ">=18.0.0"