mirror of
https://github.com/zoriya/v10.git
synced 2026-08-06 06:07:56 +00:00
Migrate all prototype code from vjs10-prototype repository into the monorepo structure following established dependency hierarchy and package organization patterns. Core packages migrated: - @vjs-10/media-store: Complete media store with nanostores integration - @vjs-10/playback-engine: HLS.js playback engine implementation - @vjs-10/media: Core media state owner and interfaces HTML packages migrated: - @vjs-10/html-icons: Web component icons with proper base classes - @vjs-10/html-media-elements: Context provider integration - @vjs-10/html: Main HTML UI components, skins, and utilities React packages migrated: - @vjs-10/react-icons: React icon components - @vjs-10/react-media-elements: Video component with state integration - @vjs-10/react-media-store: MediaProvider and React hooks - @vjs-10/react: Main React UI components and skins Changes made: - Updated all imports to use monorepo package names (@vjs-10/*) - Distributed dependencies to specific packages that use them - Preserved all prototype functionality and component structure - Created proper index files for all packages - Fixed workspace protocol usage for npm compatibility 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
34 lines
666 B
JSON
34 lines
666 B
JSON
{
|
|
"name": "@vjs-10/html-media-elements",
|
|
"version": "0.1.0",
|
|
"description": "HTML/DOM-specific media element components and utilities",
|
|
"main": "dist/index.js",
|
|
"types": "dist/index.d.ts",
|
|
"files": [
|
|
"dist"
|
|
],
|
|
"scripts": {
|
|
"build": "tsc",
|
|
"test": "echo \"No tests yet\"",
|
|
"clean": "rm -rf dist"
|
|
},
|
|
"keywords": [
|
|
"media",
|
|
"html",
|
|
"dom",
|
|
"web-components",
|
|
"video",
|
|
"audio"
|
|
],
|
|
"license": "Apache-2.0",
|
|
"dependencies": {
|
|
"@open-wc/context-protocol": "^0.0.9",
|
|
"@vjs-10/media-store": "*"
|
|
},
|
|
"devDependencies": {
|
|
"typescript": "^5.3.0"
|
|
},
|
|
"publishConfig": {
|
|
"access": "public"
|
|
}
|
|
} |