A workspace alias is a short name for a workspace that can be used instead of the full name in commands such as run-script.
Aliases are validated to be unique to each workspace and to not clash with other workspaces' package.json names.
Workspace aliases are defined in the workspace configuration.
In the below examples, "myApp" may make a simpler reference to a workspace named "@my-organization/my-application".
{
"alias": "myApp"
}
A workspace can have multiple aliases:
{
"alias": [
"myApp",
"my-app"
]
}