Support for bundlephobia
Go to https://bundlephobia.com/package/vidstack
The site is telling this error:
"EntryPointError We could not guess a valid entry point for this package. Perhaps the author hasn't specified one in its package.json ?"
Here are some steps that might help:
-
Verify Entry Points: Ensure each package in your workspaces (e.g., packages/*) has a package.json with a specified entry point. This is typically done using the "main" or "exports" field. For example:
-
Check Workspace Packages: Confirm that every package within the packages/* directory includes its own package.json with the correct entry point configuration.
-
Module Compatibility: Since your root package.json includes "type": "module", make sure your entry points and imports are compatible with ECMAScript modules. Use .mjs or .js extensions as needed.