-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.28 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.28 KB
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
56
{
"name": "@l1ad/agent-x",
"description": "AI-powered X (Twitter) engagement agent. Monitor keywords, draft replies in your brand voice, quote tweet, like, and follow from one dashboard.",
"version": "0.1.2",
"type": "module",
"license": "MIT",
"author": "L1AD",
"homepage": "https://github.com/L1AD/agent-x",
"repository": {
"type": "git",
"url": "https://github.com/L1AD/agent-x.git"
},
"keywords": [
"twitter",
"x",
"x-api",
"twitter-api",
"ai",
"agent",
"engagement",
"social-media",
"claude",
"anthropic",
"automation",
"reply",
"quote-tweet",
"brand",
"monitoring",
"social-listening",
"twitter-bot",
"x-bot",
"content",
"marketing"
],
"files": ["src/", "bin/", "README.md", "LICENSE", ".env.example", "tsconfig.json"],
"bin": {
"agent-x": "./bin/agent-x.js"
},
"scripts": {
"dev": "tsx watch src/index.ts",
"start": "tsx src/index.ts",
"review": "tsx src/review.ts"
},
"dependencies": {
"twitter-api-v2": "^1.19.0",
"better-sqlite3": "^11.0.0",
"@anthropic-ai/sdk": "^0.82.0",
"dotenv": "^16.4.0"
},
"devDependencies": {
"tsx": "^4.19.0",
"@types/better-sqlite3": "^7.6.0",
"@types/node": "^22.0.0",
"typescript": "^5.7.0"
}
}