mirror of
https://github.com/zoriya/v10.git
synced 2026-08-06 06:07:56 +00:00
- Convert @vjs-10/react-native packages to placeholder stubs for future implementation - Move Video.tsx from @vjs-10/react-media-elements to @vjs-10/react package - Fix React JSX compilation errors by changing jsx config from react-jsx to react - Add React imports to all TSX files to resolve UMD global errors - Remove React Native specific dependencies from package.json files - Refactor @vjs-10/react-media-elements to export VideoElement/AudioElement with placeholders - All packages now build successfully with monorepo architecture intact 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
35 lines
694 B
JSON
35 lines
694 B
JSON
{
|
|
"name": "@vjs-10/react-native-media-elements",
|
|
"version": "0.1.0",
|
|
"description": "React Native-specific media element components and hooks",
|
|
"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",
|
|
"react-native",
|
|
"video",
|
|
"audio",
|
|
"mobile"
|
|
],
|
|
"license": "Apache-2.0",
|
|
"dependencies": {},
|
|
"peerDependencies": {
|
|
"react": ">=16.8.0"
|
|
},
|
|
"devDependencies": {
|
|
"typescript": "^5.3.0",
|
|
"@types/react": "^18.0.0",
|
|
"react": "^18.0.0"
|
|
},
|
|
"publishConfig": {
|
|
"access": "public"
|
|
}
|
|
} |