-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
55 lines (55 loc) · 1.85 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
47
48
49
50
51
52
53
54
55
{
"name": "auto-post-bot",
"version": "1.2.1",
"repository": {
"type": "git",
"url": "git+https://github.com/L422Y/AutoPostBot.git"
},
"bugs": {
"url": "https://github.com/L422Y/AutoPostBot/issues"
},
"homepage": "https://github.com/L422Y/AutoPostBot#readme",
"description": "AutoPostBot is designed to automate the process of generating and posting content to different social media platforms. It achieves this by providing a framework for integrating generator and destination plugins. Generator plugins handle the generation of content, while destination plugins handle posting to specific platforms. The project's value proposition lies in its ability to streamline the content creation and posting process, saving time and effort for social media managers and individuals looking to automate their content strategy.",
"main": "main.ts",
"contributors": [
{
"name": "Larry Williamson",
"email": "[email protected]",
"url": "https://l422y.com/",
"username": "l422y"
}
],
"scripts": {
"build": "tsc",
"watch": "tsc -w",
"dev": "electron -r tsconfig-paths/register -r ts-node/register main.ts",
"start-electron": "xvfb-run electron -r ts-node/register main.ts",
"start": "ts-node -r tsconfig-paths/register main.ts"
},
"keywords": [],
"author": "",
"license": "CC BY-NC 4.0",
"dependencies": {
"axios": "^1.4.0",
"cheerio": "1.0.0-rc.12",
"dotenv": "^16.3.1",
"oauth": "^0.10.0",
"rss-parser": "^3.13.0",
"twitter-api-v2": "^1.15.1"
},
"devDependencies": {
"typescript": "^5.2.2",
"@types/oauth": "^0.9.1",
"electron-cli": "^0.2.8",
"ts-node": "^10.9.1",
"tsconfig-paths": "^4.2.0"
},
"optionalDependencies": {
"electron": "^26.1.0",
"puppeteer": "^21.1.0"
},
"engines": {
"node": ">=18.16.0",
"ts-node": ">=10.9.1"
}
}