forked from MarvNC/twitter-rss-discord-webhook
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
27 lines (27 loc) · 981 Bytes
/
package.json
File metadata and controls
27 lines (27 loc) · 981 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
{
"name": "twitter2discord",
"version": "1.0.0",
"description": "This script posts Twitter feeds to a Discord webhook via a Nitter RSS feed. Notably, this script supports translation of the tweets using DeepL and replaces the tweet links with [fxtwitter/FixTweet](https://github.com/FixTweet/FixTweet) for better Discord embeds. Note that Nitter RSS is not supported by every instance of Nitter - you can view a list of supported instances [here](https://status.d420.de/).",
"main": "main.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "npm i && node main.js"
},
"keywords": [
"Twitter",
"Discord"
],
"author": "ivAkii",
"license": "ISC",
"dependencies": {
"axios": "^1.5.0",
"body-parser": "^1.20.3",
"chalk": "^4.1.0",
"express": "^4.21.0",
"express-session": "^1.18.0",
"fs": "^0.0.1-security",
"nodemon": "^3.1.7",
"rss-parser": "^3.13.0",
"socket.io": "^4.8.0"
}
}