-
-
Notifications
You must be signed in to change notification settings - Fork 103
Expand file tree
/
Copy pathpackage.json
More file actions
252 lines (252 loc) · 8.45 KB
/
Copy pathpackage.json
File metadata and controls
252 lines (252 loc) · 8.45 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
{
"name": "xactions",
"version": "3.5.0",
"description": "XActions - The Complete X/Twitter Automation Toolkit. Scrapers, MCP server for AI agents, CLI, and browser scripts. No API required. Open source by @nichxbt. Don't Panic.",
"homepage": "https://xactions.app",
"repository": {
"type": "git",
"url": "https://github.com/nirholas/xactions.git"
},
"bugs": {
"url": "https://github.com/nirholas/xactions/issues"
},
"type": "module",
"main": "src/index.js",
"types": "types/index.d.ts",
"exports": {
".": "./src/index.js",
"./scrapers": "./src/scrapers/index.js",
"./scrapers/twitter": "./src/scrapers/twitter/index.js",
"./scrapers/twitter/http": "./src/scrapers/twitter/http/index.js",
"./scrapers/bluesky": "./src/scrapers/bluesky/index.js",
"./scrapers/mastodon": "./src/scrapers/mastodon/index.js",
"./scrapers/threads": "./src/scrapers/threads/index.js",
"./streaming": "./src/streaming/index.js",
"./analytics": "./src/analytics/index.js",
"./plugins": "./src/plugins/index.js",
"./mcp": "./src/mcp/server.js",
"./cli": "./src/cli/index.js",
"./client": "./src/client/index.js",
"./spaces": "./src/spaces/agent.js",
"./portability": "./src/portability/index.js",
"./media": "./src/media/index.js"
},
"bin": {
"xactions": "./src/cli/index.js",
"xactions-mcp": "./src/mcp/server.js",
"xactions-agent": "./src/agents/thoughtLeaderAgent.js"
},
"scripts": {
"vercel-build": "prisma generate",
"dev": "NODE_ENV=development nodemon api/server.js",
"start": "NODE_ENV=production node api/server.js",
"cli": "node src/cli/index.js",
"mcp": "node src/mcp/server.js",
"worker": "node api/services/jobQueue.js",
"db:migrate": "prisma migrate dev",
"db:push": "prisma db push",
"db:seed": "node prisma/seed.js",
"db:studio": "prisma studio",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"test:x402": "vitest run tests/x402.test.js",
"test:x402:integration": "vitest run tests/x402-integration.test.js",
"test:x402:all": "vitest run tests/x402*.test.js",
"verify:x402": "node scripts/verify-x402.js",
"test:payment": "node scripts/test-x402-payment.js",
"audit": "node scripts/audit-console-errors.js",
"audit:verbose": "node scripts/audit-console-errors.js --verbose",
"docs:audit": "node scripts/audit-docs.mjs",
"docs:scripts": "node scripts/build-browser-scripts-doc.mjs",
"docs:check": "node scripts/build-browser-scripts-doc.mjs --check && node scripts/sync-registry.mjs --check && node scripts/build-ask-index.mjs --check && node scripts/audit-docs.mjs && node scripts/check-x402-routes.mjs",
"check:licenses": "node scripts/normalize-license-headers.mjs && node scripts/add-license-notices.mjs",
"ask:index": "node scripts/build-ask-index.mjs",
"ask:index:check": "node scripts/build-ask-index.mjs --check",
"check:endpoints": "node scripts/check-endpoints.mjs",
"sync:endpoints": "node scripts/sync-x-endpoints.mjs",
"sync:endpoints:check": "node scripts/sync-x-endpoints.mjs --check",
"sync:user-agents": "node scripts/sync-user-agents.mjs",
"sync:user-agents:check": "node scripts/sync-user-agents.mjs --check",
"deploy": "bash scripts/deploy.sh",
"deploy:railway": "bash scripts/deploy.sh railway",
"build:cloudflare": "node scripts/build-cloudflare.mjs",
"deploy:cloudflare": "bash scripts/deploy.sh cloudflare",
"deploy:pages": "bash deploy/cloudflare/build.sh && wrangler pages deploy pages-out --project-name xactions --branch main --commit-dirty=true",
"deploy:fly": "bash scripts/deploy.sh fly",
"deploy:docker": "bash scripts/deploy.sh docker",
"docker:up": "docker compose up -d --build",
"docker:down": "docker compose down",
"docker:logs": "docker compose logs -f api",
"agent": "node src/agents/thoughtLeaderAgent.js",
"agent:login": "node src/agents/thoughtLeaderAgent.js --login",
"agent:test": "node src/agents/thoughtLeaderAgent.js --test",
"agent:setup": "node src/agents/setup.js",
"video:preview": "cd site/video && npx remotion preview src/index.js",
"video:render": "node site/video/render.mjs",
"video:render:tweet": "node site/video/render.mjs TweetVideo",
"video:render:thread": "node site/video/render.mjs ThreadVideo",
"video:render:analytics": "node site/video/render.mjs AnalyticsDashboard",
"video:render:promo": "node site/video/render.mjs PromoVideo",
"site:docs": "node scripts/build-all-docs.js && node scripts/fix-doc-links.js",
"site:index": "node scripts/build-index-pages.mjs",
"site:scripts": "node scripts/build-script-pages.js",
"site:sitemap": "node scripts/build-sitemap.js",
"site:build": "npm run site:docs && npm run site:index && npm run site:scripts && npm run site:sitemap && bash deploy/cloudflare/build.sh",
"site:deploy": "npm run site:build && npx wrangler pages deploy pages-out --project-name xactions",
"lint": "eslint .",
"registry:sync": "node scripts/sync-registry.mjs",
"check:x402": "node scripts/check-x402-routes.mjs"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.30.0",
"@prisma/client": "^5.7.1",
"axios": "^1.15.2",
"bcryptjs": "^2.4.3",
"better-sqlite3": "^11.10.0",
"bull": "^4.12.0",
"chalk": "^5.3.0",
"commander": "^15.0.0",
"compression": "^1.8.1",
"cors": "^2.8.5",
"dotenv": "^17.4.2",
"exceljs": "^4.4.0",
"express": "^4.21.2",
"express-rate-limit": "^7.5.1",
"express-validator": "^7.0.1",
"helmet": "^7.1.0",
"inquirer": "^9.2.0",
"jsonwebtoken": "^9.0.2",
"morgan": "^1.10.1",
"node-cron": "^4.6.0",
"nodemailer": "^10.0.10",
"ora": "^8.0.0",
"prisma": "^5.7.1",
"puppeteer": "^24.34.0",
"puppeteer-extra": "^3.3.6",
"puppeteer-extra-plugin-stealth": "^2.11.2",
"redis": "^4.6.11",
"socket.io": "^4.7.5",
"stripe": "^14.10.0",
"yauzl": "^3.4.0"
},
"optionalDependencies": {
"@atproto/api": "^0.20.44",
"@x402/core": "^2.8.0",
"@x402/evm": "^2.8.0",
"@x402/express": "^2.8.0",
"ioredis": "^6.0.0",
"viem": "^2.0.0",
"xspace-agent": "^0.1.0"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@remotion/bundler": "^4.0.428",
"@remotion/cli": "^4.0.428",
"@remotion/player": "^4.0.428",
"@remotion/renderer": "^4.0.428",
"@vitest/coverage-v8": "^4.1.11",
"archiver": "^5.3.2",
"eslint": "^10.9.1",
"globals": "^17.11.0",
"jsdom": "^28.1.0",
"marked": "^18.0.13",
"nodemon": "^3.0.2",
"remotion": "^4.0.428",
"supertest": "^6.3.4",
"vitest": "^5.0.0"
},
"author": {
"name": "nich",
"url": "https://github.com/nirholas",
"twitter": "@nichxbt"
},
"license": "Apache-2.0",
"keywords": [
"xactions",
"twitter",
"x",
"twitter-automation",
"twitter-bot",
"twitter-scraper",
"twitter-unfollow",
"twitter-growth",
"mass-unfollow",
"unfollow-tool",
"twitter-tools",
"social-media-automation",
"twitter-api-alternative",
"puppeteer",
"twitter-manager",
"follower-management",
"twitter-cleanup",
"auto-follow",
"auto-like",
"twitter-analytics",
"mcp",
"model-context-protocol",
"ai-agent",
"claude",
"gpt",
"chatgpt",
"saas",
"hypefury-alternative",
"tweethunter-alternative",
"free-twitter-api",
"twitter-without-api",
"bulk-unfollow",
"who-unfollowed-me",
"twitter-followers-tracker",
"download-twitter-video",
"twitter-thread-saver",
"twitter-bookmark-export",
"vibe-coding",
"no-code-twitter",
"thought-leader",
"algorithm-training",
"x-algorithm"
],
"engines": {
"node": ">=20"
},
"files": [
"src",
"types",
"api/config/x402-config.js",
"skills",
".claude-plugin",
"THIRD-PARTY-NOTICES.md"
],
"mcpName": "io.github.nirholas/xactions",
"overrides": {
"uuid": "^11.1.1"
},
"peerDependencies": {
"cheerio": ">=1.0.0",
"crawlee": ">=3.0.0",
"googleapis": "^171.4.0",
"got-scraping": ">=4.0.0",
"playwright": ">=1.40.0",
"selenium-webdriver": ">=4.0.0"
},
"peerDependenciesMeta": {
"cheerio": {
"optional": true
},
"crawlee": {
"optional": true
},
"googleapis": {
"optional": true
},
"got-scraping": {
"optional": true
},
"playwright": {
"optional": true
},
"selenium-webdriver": {
"optional": true
}
}
}