Add dependencies of the project

This commit is contained in:
Amir Husayn Panahifar 2025-04-08 00:53:16 +03:30
parent bd9cfdc079
commit 08149286b7
2 changed files with 1207 additions and 0 deletions

1170
package-lock.json generated Normal file

File diff suppressed because it is too large Load diff

37
package.json Normal file
View file

@ -0,0 +1,37 @@
{
"name": "parchex",
"version": "0.1.0",
"description": "Parchex: A simple and lightweight Telegram bot that fetches and sends the latest topic from the Parch Linux Discourse Forum",
"keywords": [
"nodejs",
"bot",
"telegam",
"discourse"
],
"repository": {
"type": "git",
"url": "https://git.parchlinux.com/ahp/parchex.git"
},
"license": "AGPL-3.0-or-later",
"author": "Amir Husayn Panahifar",
"type": "module",
"main": "src/main.js",
"scripts": {
"start": "node src/main.js",
"dev": "nodemon"
},
"dependencies": {
"axios": "^1.8.4",
"dotenv": "^16.4.7",
"telegraf": "^4.16.3",
"winston": "^3.17.0"
},
"devDependencies": {
"@types/axios": "^0.9.36",
"@types/dotenv": "^6.1.1",
"@types/node": "^22.14.0",
"@types/nodemon": "^1.19.6",
"@types/winston": "^2.4.4",
"nodemon": "^3.1.9"
}
}