Files
v10/packages/react/react-media-elements/package.json
T
Christian Pillsbury fc5a0e46fd fix(workspace): convert pnpm workspace protocol to npm workspace syntax
Replace 'workspace:*' with '*' in all package.json dependencies to fix
  npm workspace compatibility. This resolves EUNSUPPORTEDPROTOCOL errors
  when running npm install.

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

  Co-Authored-By: Claude <noreply@anthropic.com>
2025-07-29 11:06:35 -07:00

38 lines
736 B
JSON

{
"name": "@vjs-10/react-media-elements",
"version": "0.1.0",
"description": "React-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",
"hooks",
"video",
"audio"
],
"license": "Apache-2.0",
"dependencies": {
"@vjs-10/media": "*",
"@vjs-10/playback-engine": "*"
},
"peerDependencies": {
"react": ">=16.8.0"
},
"devDependencies": {
"typescript": "^5.3.0",
"@types/react": "^18.0.0",
"react": "^18.0.0"
},
"publishConfig": {
"access": "public"
}
}