Files
v10/packages/react-native/react-native-media-elements/package.json
T
Christian PillsburyandClaude 4b0d84e9c8 feat: initialize Video.js 10 monorepo with core architecture
- 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>
2025-07-29 10:41:46 -07:00

41 lines
870 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": {
"@vjs-10/media": "workspace:*"
},
"peerDependencies": {
"react": ">=16.8.0",
"react-native": ">=0.60.0",
"react-native-video": ">=5.0.0"
},
"devDependencies": {
"typescript": "^5.3.0",
"@types/react": "^18.0.0",
"@types/react-native": "^0.72.0",
"react": "^18.0.0",
"react-native": "^0.72.0"
},
"publishConfig": {
"access": "public"
}
}