mirror of
https://github.com/zoriya/v10.git
synced 2026-08-05 13:48:14 +00:00
- Set up monorepo structure with core, HTML, React, and React Native packages - Add TypeScript configuration with project references - Create foundational packages: media-store, playback-engine, media, icons - Implement platform-specific packages for HTML, React, and React Native - Add comprehensive documentation and development tooling - Include CLAUDE.md with development guidelines and conventional commits 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
105 lines
1.2 KiB
Plaintext
105 lines
1.2 KiB
Plaintext
# Dependencies
|
|
node_modules/
|
|
npm-debug.log*
|
|
yarn-debug.log*
|
|
yarn-error.log*
|
|
lerna-debug.log*
|
|
.pnpm-debug.log*
|
|
|
|
# Build outputs
|
|
dist/
|
|
build/
|
|
lib/
|
|
out/
|
|
*.tsbuildinfo
|
|
.turbo/
|
|
|
|
# Environment variables
|
|
.env
|
|
.env.*
|
|
!.env.example
|
|
|
|
# IDE files
|
|
.vscode/
|
|
.idea/
|
|
*.swp
|
|
*.swo
|
|
*~
|
|
.project
|
|
.classpath
|
|
.c9/
|
|
*.launch
|
|
.settings/
|
|
*.sublime-workspace
|
|
*.sublime-project
|
|
|
|
# OS generated files
|
|
.DS_Store
|
|
.DS_Store?
|
|
._*
|
|
.Spotlight-V100
|
|
.Trashes
|
|
ehthumbs.db
|
|
Thumbs.db
|
|
Desktop.ini
|
|
|
|
# Coverage reports
|
|
coverage/
|
|
*.lcov
|
|
.nyc_output/
|
|
.coverage/
|
|
|
|
# Testing
|
|
.jest/
|
|
__tests__/coverage/
|
|
|
|
# Logs
|
|
logs/
|
|
*.log
|
|
npm-debug.log*
|
|
yarn-debug.log*
|
|
yarn-error.log*
|
|
lerna-debug.log*
|
|
.pnpm-debug.log*
|
|
|
|
# Runtime data
|
|
pids/
|
|
*.pid
|
|
*.seed
|
|
*.pid.lock
|
|
|
|
# Temporary files
|
|
tmp/
|
|
temp/
|
|
.tmp/
|
|
|
|
# Editor directories and files
|
|
.vscode/*
|
|
!.vscode/extensions.json
|
|
!.vscode/tasks.json
|
|
!.vscode/launch.json
|
|
!.vscode/settings.json
|
|
|
|
# React Native
|
|
.expo/
|
|
.expo-shared/
|
|
.react-native/
|
|
|
|
# Web-specific
|
|
.next/
|
|
.nuxt/
|
|
.vuepress/dist/
|
|
.serverless/
|
|
.fusebox/
|
|
.dynamodb/
|
|
|
|
# Package manager lock files (keeping npm for this setup)
|
|
# package-lock.json # Uncommented for npm workspace
|
|
yarn.lock
|
|
pnpm-lock.yaml
|
|
bun.lockb
|
|
|
|
# Monorepo specific
|
|
.rush/
|
|
.turbo/
|
|
.lerna/ |