mirror of
https://github.com/gitroomhq/postiz-agent.git
synced 2026-09-14 13:46:24 +08:00
ae99586c46
- Complete CLI for Postiz social media automation - Support for 28+ platforms (Twitter/X, LinkedIn, Reddit, YouTube, TikTok, Instagram, etc.) - Required date scheduling with schedule/draft modes - Integration tools workflow for dynamic data fetching - Platform-specific settings auto-detection - Comprehensive documentation for AI agents Features: - posts:create - Create scheduled posts with media - posts:list - List posts with date filtering - posts:delete - Delete posts - integrations:list - List connected integrations - integrations:settings - Get platform settings and tools - integrations:trigger - Fetch dynamic data (flairs, playlists, companies) - upload - Upload media files Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
23 lines
547 B
JSON
23 lines
547 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "ES2017",
|
|
"module": "commonjs",
|
|
"lib": ["ES2017"],
|
|
"outDir": "./dist",
|
|
"rootDir": "./src",
|
|
"strict": true,
|
|
"esModuleInterop": true,
|
|
"skipLibCheck": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"resolveJsonModule": true,
|
|
"moduleResolution": "node",
|
|
"declaration": true,
|
|
"declarationMap": true,
|
|
"sourceMap": true,
|
|
"removeComments": true,
|
|
"allowSyntheticDefaultImports": true
|
|
},
|
|
"include": ["src/**/*"],
|
|
"exclude": ["node_modules", "dist"]
|
|
}
|