feat: X API Cost Crisis Alert Chrome extension MVP with cost calculator, 8 alternatives, and 12 passing tests

This commit is contained in:
Bun Bun
2026-06-20 06:23:33 +00:00
commit 7052227f69
25 changed files with 3050 additions and 0 deletions
+19
View File
@@ -0,0 +1,19 @@
// ---- Types ----
export interface ApiAlternative {
name: string;
website: string;
freeTier: string;
paidTier: string;
pricingUrl: string;
description: string;
features: string[];
bestFor: string;
xApiReplacement: string;
}
export interface CostEstimate {
monthlyReads: number;
monthlyWrites: number;
xCost: number;
alternatives: { name: string; cost: number | string }[];
}