mirror of
https://github.com/zoriya/v10.git
synced 2026-08-05 05:37:21 +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>
33 lines
886 B
JSON
33 lines
886 B
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/*"
|
|
],
|
|
"scripts": {
|
|
"build": "npm run build --workspaces --if-present",
|
|
"test": "npm run test --workspaces --if-present",
|
|
"lint": "npm run lint --workspaces --if-present",
|
|
"typecheck": "npm run typecheck --workspaces --if-present",
|
|
"clean": "npm run clean --workspaces --if-present"
|
|
},
|
|
"devDependencies": {
|
|
"typescript": "^5.3.0",
|
|
"@types/node": "^20.0.0"
|
|
},
|
|
"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"
|
|
} |