package.json 972 B

1234567891011121314151617181920212223242526272829303132333435363738
  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. "@types/node": "^22.10.2",
  18. "@typescript-eslint/eslint-plugin": "^8.18.1",
  19. "@typescript-eslint/parser": "^8.18.1",
  20. "@typescript-eslint/typescript-estree": "^8.18.1",
  21. "eslint": "^9.17.0",
  22. "eslint-config-prettier": "^9.1.0",
  23. "eslint-plugin-prettier": "^5.2.1",
  24. "typescript": "^5.7.2"
  25. },
  26. "dependencies": {
  27. "axios": "^1.7.9",
  28. "cheerio": "^1.0.0-rc.12",
  29. "chrono-node": "^2.9.0",
  30. "dotenv": "^16.4.7",
  31. "masto": "^6.10.1",
  32. "redis": "^4.7.0"
  33. },
  34. "trustedDependencies": [
  35. "aws-sdk",
  36. "es5-ext"
  37. ]
  38. }