- Add TTSService.js for text-to-speech functionality - Add comprehensive deployment documentation (guides, checklists, diagnostics) - Add new SBS content (chapters 8 & 9) - Refactor 14 game modules for better maintainability (-947 lines) - Enhance SettingsDebug.js with improved debugging capabilities - Update configuration files and startup scripts 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
133 lines
1.4 KiB
Plaintext
133 lines
1.4 KiB
Plaintext
# Dependencies
|
|
node_modules/
|
|
npm-debug.log*
|
|
yarn-debug.log*
|
|
yarn-error.log*
|
|
|
|
# Portable Node.js (for USB deployment)
|
|
nodejs-portable/
|
|
|
|
# Build outputs
|
|
dist/
|
|
build/
|
|
*.tgz
|
|
*.tar.gz
|
|
|
|
# Environment variables
|
|
.env
|
|
.env.local
|
|
.env.development.local
|
|
.env.test.local
|
|
.env.production.local
|
|
|
|
# IDE and editor files
|
|
.vscode/
|
|
.idea/
|
|
*.swp
|
|
*.swo
|
|
*~
|
|
|
|
# OS generated files
|
|
.DS_Store
|
|
.DS_Store?
|
|
._*
|
|
.Spotlight-V100
|
|
.Trashes
|
|
ehthumbs.db
|
|
Thumbs.db
|
|
|
|
# Logs
|
|
logs
|
|
*.log
|
|
|
|
# Runtime data
|
|
pids
|
|
*.pid
|
|
*.seed
|
|
*.pid.lock
|
|
|
|
# Media files (can be large) - Ignore everywhere
|
|
*.mp3
|
|
*.wav
|
|
*.ogg
|
|
*.m4a
|
|
*.flac
|
|
*.aac
|
|
*.wma
|
|
|
|
*.jpg
|
|
*.jpeg
|
|
*.png
|
|
*.gif
|
|
*.bmp
|
|
*.svg
|
|
*.webp
|
|
*.ico
|
|
*.tiff
|
|
*.tif
|
|
|
|
*.mp4
|
|
*.avi
|
|
*.mov
|
|
*.wmv
|
|
*.flv
|
|
*.mkv
|
|
*.webm
|
|
|
|
*.pdf
|
|
*.doc
|
|
*.docx
|
|
*.ppt
|
|
*.pptx
|
|
*.xls
|
|
*.xlsx
|
|
|
|
# Exception: Keep specific media in certain folders if needed
|
|
# !content/assets/*.png
|
|
# !docs/*.pdf
|
|
|
|
# Temporary files
|
|
tmp/
|
|
temp/
|
|
*.tmp
|
|
|
|
# Backup files
|
|
*.bak
|
|
*.backup
|
|
*.old
|
|
|
|
# Cache directories
|
|
.cache/
|
|
.parcel-cache/
|
|
|
|
# Coverage directory used by tools like istanbul
|
|
coverage/
|
|
|
|
# nyc test coverage
|
|
.nyc_output
|
|
|
|
# ESLint cache
|
|
.eslintcache
|
|
|
|
# Optional npm cache directory
|
|
.npm
|
|
|
|
# Optional REPL history
|
|
.node_repl_history
|
|
|
|
# Output of 'npm pack'
|
|
*.tgz
|
|
|
|
# Yarn Integrity file
|
|
.yarn-integrity
|
|
|
|
# User-specific content that shouldn't be shared
|
|
user-content/
|
|
personal-notes.txt
|
|
config/user-settings.json
|
|
|
|
# AI models and large datasets (if any)
|
|
models/
|
|
datasets/
|
|
*.model
|
|
*.dat |