package.json 678 B

12345678910111213141516171819202122232425262728
  1. {
  2. "name": "xtweet",
  3. "version": "1.0.0",
  4. "description": "Cross tweet from Mastodon",
  5. "main": "app.js",
  6. "scripts": {
  7. "start": "node app.js"
  8. },
  9. "repository": {
  10. "type": "git",
  11. "url": "https://git.lattuga.net/ekardnam/XTweet.git"
  12. },
  13. "bugs": {
  14. "email": "ekardnam@autistici.org",
  15. "url": "https://git.lattuga.net/ekardnam/XTweet/issues"
  16. },
  17. "author": "ekardnam <ekardnam@autistici.org>",
  18. "license": "AGPL-3.0-or-later",
  19. "dependencies": {
  20. "express": "^4.17.1",
  21. "express-session": "^1.16.2",
  22. "mastodon": "^1.2.2",
  23. "mime-types": "^2.1.24",
  24. "passport": "^0.4.0",
  25. "passport-twitter": "^1.0.4",
  26. "twit": "^2.2.11"
  27. }
  28. }