mirror of
https://github.com/getpaseo/paseo.git
synced 2026-07-29 12:01:31 +00:00
- Created new Expo app with SDK 54+ and Expo Router - Installed and configured NativeWind v5 for Tailwind styling - Upgraded voice-assistant to React 19 for consistency - Kept voice-mobile outside workspace to avoid Metro bundler conflicts - Disabled React Compiler experimental feature for stability Setup includes: - postcss.config.mjs with Tailwind PostCSS plugin - global.css with Tailwind and NativeWind imports - metro.config.js with NativeWind wrapper - lightningcss pinned to 1.30.1 for stability Generated with [Claude Code](https://claude.ai/code) via [Happy](https://happy.engineering) Co-Authored-By: Claude <noreply@anthropic.com> Co-Authored-By: Happy <yesreply@happy.engineering>
39 lines
1.2 KiB
JSON
39 lines
1.2 KiB
JSON
{
|
|
"name": "voice-dev",
|
|
"version": "1.0.0",
|
|
"private": true,
|
|
"workspaces": [
|
|
"packages/voice-assistant"
|
|
],
|
|
"scripts": {
|
|
"dev": "npm run dev --workspace=@voice-dev/web",
|
|
"dev:agent": "npm run dev --workspace=@voice-dev/agent",
|
|
"dev:mcp": "npm run dev --workspace=@voice-dev/mcp-server",
|
|
"build": "npm run build --workspaces --if-present",
|
|
"build:agent": "npm run build --workspace=@voice-dev/agent",
|
|
"build:mcp": "npm run build --workspace=@voice-dev/mcp-server",
|
|
"build:web": "npm run build --workspace=@voice-dev/web",
|
|
"typecheck": "npm run typecheck --workspaces --if-present",
|
|
"start": "npm run start --workspace=@voice-dev/web",
|
|
"start:agent": "npm run start --workspace=@voice-dev/agent",
|
|
"start:mcp": "npm run start --workspace=@voice-dev/mcp-server"
|
|
},
|
|
"devDependencies": {
|
|
"typescript": "^5.9.3"
|
|
},
|
|
"description": "Voice-controlled development environment with OpenAI Realtime API",
|
|
"keywords": [
|
|
"openai",
|
|
"realtime",
|
|
"voice",
|
|
"voice-assistant",
|
|
"development",
|
|
"mcp"
|
|
],
|
|
"author": "moboudra",
|
|
"license": "MIT",
|
|
"dependencies": {
|
|
"@tailwindcss/oxide": "^4.1.14"
|
|
}
|
|
}
|