Files
kekbot.js/package.json
T
hllywluis e5124d33d4 chore: update ESLint configuration and dependencies
- Reordered ESLint extends in .eslintrc.js for better clarity.
- Updated ESLint version from 9.23.0 to 8.57.1 in package.json and package-lock.json.
- Adjusted import/extensions rule to ignorePackages in .eslintrc.js.
- Updated various dependencies in package-lock.json to maintain compatibility and improve performance.
2025-04-19 19:36:10 -04:00

37 lines
886 B
JSON

{
"name": "kekbot.js",
"version": "1.0.0",
"description": "A simple Discord bot",
"main": "bot.js",
"type": "module",
"scripts": {
"start": "node bot.js",
"deploy": "node deploy-commands.js",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage"
},
"keywords": [],
"author": "",
"license": "GPL-3.0",
"dependencies": {
"axios": "^1.8.4",
"chalk": "^5.4.1",
"discord.js": "^14.18.0",
"dotenv": "^16.4.7"
},
"devDependencies": {
"@babel/core": "^7.26.10",
"@babel/preset-env": "^7.26.9",
"@types/jest": "^29.5.14",
"babel-jest": "^29.7.0",
"eslint": "^8.57.1",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^10.1.1",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-prettier": "^5.2.4",
"jest": "^29.7.0",
"prettier": "^3.5.3"
}
}