package.json 943 B

12345678910111213141516171819202122232425262728293031323334353637
  1. {
  2. "name": "bot-noticias",
  3. "version": "0.0.9",
  4. "description": "Bot que busca noticias y las replica en mastodon.cl",
  5. "main": "dist/index.js",
  6. "scripts": {
  7. "build": "npx tsc",
  8. "test": "exit 0"
  9. },
  10. "repository": {
  11. "type": "git",
  12. "url": "https://git.pablo.by/Mastodon/bot-noticias.git"
  13. },
  14. "author": "Pablo Barrera Yaksic",
  15. "devDependencies": {
  16. "@types/aws-lambda": "^8.10.146",
  17. "@typescript-eslint/eslint-plugin": "^8.18.1",
  18. "@typescript-eslint/parser": "^8.18.1",
  19. "@typescript-eslint/typescript-estree": "^8.18.1",
  20. "@types/node": "^22.10.2",
  21. "eslint-config-prettier": "^9.1.0",
  22. "eslint-plugin-prettier": "^5.2.1",
  23. "eslint": "^9.17.0",
  24. "typescript": "^5.7.2"
  25. },
  26. "dependencies": {
  27. "axios": "^1.7.9",
  28. "cheerio": "^1.0.0-rc.12",
  29. "dotenv": "^16.4.7",
  30. "masto": "^6.10.1",
  31. "redis": "^4.7.0"
  32. },
  33. "trustedDependencies": [
  34. "aws-sdk",
  35. "es5-ext"
  36. ]
  37. }