The org api retrieves package permissions for a specific npm organization namespace, showing which packages the organization has access to and their permission levels.
org(namespace: string): Promise<NpmPackageOrg>type PermissionLevel = "read" | "write" | "admin" | "maintain";type NpmPackageOrg = Record<string, PermissionLevel>;