Files
v10/package.json
T
Christian PillsburyandClaude a5499b1931 feat(workspace): implement Turbo for build optimization and caching
- Add turbo.json with task pipeline configuration and dependency graph
- Update root package.json scripts to use Turbo commands for all tasks
- Add packageManager field required by Turbo
- Configure proper task dependencies (typecheck/dev depend on build)
- Enable intelligent caching for dramatic build performance improvements
- Add dev script filters for targeted example development

🤖 Generated with [Claude Code](https://claude.ai/code)

Co-Authored-By: Claude <noreply@anthropic.com>
2025-08-13 12:51:31 -07:00

44 lines
1.1 KiB
JSON

{
"name": "vjs-10-monorepo",
"version": "1.0.0",
"description": "A monorepo for Video.js 10 related library packages",
"private": true,
"workspaces": [
"packages/core/*",
"packages/html/*",
"packages/react/*",
"packages/react-native/*",
"examples/*"
],
"scripts": {
"build": "turbo run build",
"build:libs": "turbo run build --filter=!./examples/*",
"test": "turbo run test",
"lint": "turbo run lint",
"typecheck": "turbo run typecheck",
"clean": "turbo run clean",
"dev": "turbo run dev --parallel",
"dev:html": "turbo run dev --filter=html-demo...",
"dev:react": "turbo run dev --filter=react-demo..."
},
"devDependencies": {
"@types/node": "^20.0.0",
"@types/react": "^18.0.0",
"react": "^18.0.0",
"tsup": "^8.0.0",
"turbo": "^2.5.5",
"typescript": "^5.3.0"
},
"packageManager": "npm@10.9.2",
"engines": {
"node": ">=18.0.0",
"npm": ">=9.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/videojs/vjs-10-monorepo.git"
},
"license": "Apache-2.0",
"author": "Video.js Contributors"
}