-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 998 Bytes
/
Copy pathpackage.json
File metadata and controls
37 lines (37 loc) · 998 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
28
29
30
31
32
33
34
35
36
37
{
"name": "twitter-bot",
"version": "1.0.0",
"description": "Twitter Marketing Automation Tool with anti-bot detection bypass",
"main": "dist/index.js",
"type": "module",
"scripts": {
"build": "tsc",
"start": "npm run build && node dist/index.js",
"validate": "npm run build && node dist/index.js validate",
"scrape": "npm run build && node dist/index.js scrape",
"campaign": "npm run build && node dist/index.js campaign",
"warmup": "npm run build && node dist/index.js warmup",
"action": "npm run build && node dist/index.js action",
"dev": "tsc --watch"
},
"keywords": [
"twitter",
"automation",
"marketing",
"bot"
],
"author": "",
"license": "MIT",
"dependencies": {
"http2-wrapper": "^2.2.0",
"undici": "^6.19.0",
"chalk": "^5.3.0",
"inquirer": "^9.2.15",
"dotenv": "^16.4.5"
},
"devDependencies": {
"@types/node": "^20.11.0",
"@types/inquirer": "^9.0.7",
"typescript": "^5.3.3"
}
}