-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.15 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
39
40
41
42
43
44
45
46
{
"name": "fairpost",
"version": "2.1.0",
"description": "Feeds data to social media platforms based on folders in a dir",
"main": "index.js",
"scripts": {
"build": "npx tsc",
"test": "npm run lint",
"prettier": "prettier --config .prettierrc 'src/**/*.ts' --write",
"lint": "eslint . --ext .ts",
"lint:fix": "eslint . --ext .ts --fix"
},
"keywords": [
"feed",
"social",
"twitter",
"facebook",
"instagram",
"reddit",
"ayrshare"
],
"author": "codepike",
"license": "ISC",
"dependencies": {
"@googleapis/youtube": "^13.0.0",
"dotenv": "^16.0.3",
"fast-xml-parser": "^4.3.2",
"google-auth-library": "^9.4.2",
"log4js": "^6.9.1",
"node-fetch": "^2.6.7",
"sharp": "0.33.1",
"twitter-api-v2": "^1.15.2"
},
"devDependencies": {
"@types/node": "^20.10.5",
"@typescript-eslint/eslint-plugin": "^6.7.5",
"@typescript-eslint/parser": "^6.7.5",
"eslint": "^8.51.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-jsdoc": "^46.8.2",
"eslint-plugin-prettier": "^5.0.1",
"prettier": "^3.0.3",
"ts-node": "^10.9.1",
"typescript": "^5.0.4"
}
}