- Translate all ~430 prompts to Spanish with cultural adaptations - Translate all UI strings (frontend, admin, history, broadcast) - Translate AI system prompts; models now respond in Spanish - Replace Twitch/Fossabot viewer voting with in-site vote buttons - Add POST /api/vote endpoint (IP-based, supports vote switching) - Vote buttons appear during voting phase with active state highlight - Rename project to argument.es throughout (package.json, cookie, DB) - Add docker-compose.yml with SQLite volume mount - Add .env.sample documenting all required and optional vars Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
30 lines
711 B
JSON
30 lines
711 B
JSON
{
|
|
"name": "argument.es",
|
|
"module": "index.ts",
|
|
"type": "module",
|
|
"private": true,
|
|
"scripts": {
|
|
"start": "bun server.ts",
|
|
"start:cli": "bun quipslop.tsx",
|
|
"start:web": "bun --hot server.ts",
|
|
"start:stream": "bun ./scripts/stream-browser.ts live",
|
|
"start:stream:dryrun": "bun ./scripts/stream-browser.ts dryrun"
|
|
},
|
|
"devDependencies": {
|
|
"@types/bun": "latest",
|
|
"@types/react": "^19.2.14",
|
|
"@types/react-dom": "^19.2.3"
|
|
},
|
|
"peerDependencies": {
|
|
"typescript": "^5"
|
|
},
|
|
"dependencies": {
|
|
"@openrouter/ai-sdk-provider": "^2.2.3",
|
|
"ai": "^6.0.94",
|
|
"ink": "^6.8.0",
|
|
"puppeteer": "^24.2.0",
|
|
"react": "^19.2.4",
|
|
"react-dom": "^19.2.4"
|
|
}
|
|
}
|