-
-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
38 lines (38 loc) · 1.07 KB
/
package.json
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
28
29
30
31
32
33
34
35
36
37
38
{
"name": "twitter-mastodon-sync",
"version": "1.0.0",
"description": "A simple script to post tweets from a given Twitter account to a mastodon account.",
"main": "src/main.ts",
"scripts": {
"start": "ts-node ./src/main.ts",
"lint": "eslint \"{src,apps,libs,test}/**/*.ts\"",
"lint:fix": "eslint \"{src,apps,libs,test}/**/*.ts\" --fix"
},
"keywords": [
"cross post",
"titter to mastodon"
],
"author": "Ricardo Dantas Gonçalves <[email protected]>",
"license": "MIT",
"devDependencies": {
"@types/node": "^18.14.6",
"@types/twit": "^2.2.31",
"@typescript-eslint/eslint-plugin": "^5.54.0",
"@typescript-eslint/parser": "^5.54.0",
"eslint": "^8.11.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jest": "^26.1.1",
"eslint-plugin-prettier": "^4.0.0",
"jest": "^29.4.3",
"prettier": "^2.6.0",
"ts-node": "^10.9.1",
"typescript": "^4.9.4"
},
"dependencies": {
"chalk": "^4.1.2",
"dotenv": "^16.0.3",
"masto": "^5.1.1",
"twit": "^2.2.11"
}
}