-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 2.49 KB
/
Copy pathpackage.json
File metadata and controls
46 lines (46 loc) · 2.49 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
{
"name": "social-agent",
"version": "1.0.0",
"description": "Tenant-scoped source records -> OpenAI -> LinkedIn + Threads + X + Instagram autoposter with durable Cloudinary image persistence.",
"main": "dist/src/agent.js",
"scripts": {
"build": "tsx scripts/build.ts",
"typecheck": "tsc --noEmit --project tsconfig.json",
"test": "npm run build && node dist/test/security-hardening.test.js && node dist/test/source-ssrf.test.js && node dist/test/browser-collector-ingest.test.js && node dist/test/slot-scheduler.test.js && node dist/test/daily-inventory-planner.test.js && node dist/test/refresh-queue-finalization.test.js && node dist/test/publish-summary.test.js && node dist/test/threads-refresh.test.js && node dist/test/linkedin-refresh.test.js && node dist/test/instagram-image-timeout.test.js && node dist/test/cost-control.test.js && node dist/test/recovery-scheduler.test.js && node dist/test/social-connector.test.js && node dist/test/meta-publication-boundary.test.js",
"smoke:dist": "node dist/src/cli.js status",
"ci": "npm run typecheck && npm run build && npm run smoke:dist && node dist/test/security-hardening.test.js && node dist/test/slot-scheduler.test.js && node dist/test/social-connector.test.js && node dist/test/meta-publication-boundary.test.js",
"dev": "tsx src/agent.ts",
"connector": "SOCIAL_CONNECTOR_ONLY=true tsx src/social-connector-main.ts",
"worker:supabase": "tsx src/supabase-worker.ts",
"start": "node dist/src/agent.js",
"start:connector": "SOCIAL_CONNECTOR_ONLY=true node dist/src/social-connector-main.js",
"start:supabase": "node dist/src/supabase-worker.js",
"start:pm2": "pm2 start dist/src/agent.js --name social-agent --restart-delay=5000",
"deploy:cloudflare": "wrangler deploy",
"deploy": "tsx scripts/deploy.ts",
"backup": "tsx scripts/backup.ts",
"restore": "tsx scripts/restore.ts",
"fetch": "tsx src/cli.ts fetch",
"queue": "tsx src/cli.ts queue",
"status": "tsx src/cli.ts status",
"memory": "tsx src/cli.ts memory",
"history": "tsx src/cli.ts history",
"post-now": "tsx src/cli.ts post-now",
"import-x-oauth2": "tsx src/cli.ts import-x-oauth2",
"test-meta": "tsx src/test-meta.ts",
"test-x": "tsx src/test-x.ts"
},
"dependencies": {
"node-cron": "^3.0.3",
"tsx": "^4.21.0"
},
"engines": {
"node": ">=24.0.0"
},
"devDependencies": {
"@types/node": "^25.6.0",
"@types/node-cron": "^3.0.11",
"typescript": "^6.0.3",
"wrangler": "^4.88.0"
}
}