Files
KrishnaAgarwal7531 c01680f070 Migration wing-command to Tinyfish SDK (#224)
Migrates Wing Command from raw TinyFish HTTP calls to the official SDK,
and tears out the Supabase + Redis infrastructure that was never needed
for this use case. The app now runs entirely in-memory — no database to
provision, no cache to configure, just two API keys and you're running.
The app itself finds the best chicken wing spots near you by zip code.
Pick a flavor persona, and it fires parallel browser agents at DoorDash,
Uber Eats, Grubhub, and Google simultaneously, streaming results back as
each source finishes rather than waiting for all of them.

---------

Co-authored-by: Krishna Agarwal <krishna.laptop3727@gmail.com>
Co-authored-by: Simantak Dabhade <simantak@mac.local>
2026-07-13 12:52:35 -07:00

40 lines
999 B
JSON

{
"name": "wing-command",
"version": "4.0.0",
"private": true,
"description": "Wing Command — Find the best chicken wings near you. Powered by TinyFish + Gemini.",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start -p ${PORT:-3000}",
"lint": "next lint",
"type-check": "tsc --noEmit"
},
"dependencies": {
"@tiny-fish/sdk": "latest",
"autoprefixer": "^10.4.19",
"clsx": "^2.1.1",
"framer-motion": "^11.3.0",
"lucide-react": "^0.400.0",
"next": "^14.2.35",
"postcss": "^8.4.39",
"react": "18.3.1",
"react-dom": "18.3.1",
"sharp": "^0.34.5",
"tailwind-merge": "^2.4.0",
"tailwindcss": "^3.4.4",
"@google/generative-ai": "latest"
},
"engines": {
"node": "22.x"
},
"devDependencies": {
"@types/node": "^20.14.10",
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"eslint": "^8.57.0",
"eslint-config-next": "14.2.35",
"typescript": "^5.5.3"
}
}