Let's check on how to deprecate your inhouse npm local packages in Artifactory

ARTIFACTORY: deprecate npm local packages

AuthorFullName__c
Pruthvi R B
articleNumber
000005489
FirstPublishedDate
2022-11-30T11:54:50Z
lastModifiedDate
2025-05-15
VersionNumber
2
For an instance, I have a "busybox" npm package in my local npm repository

User-added image

To deprecate an entire package, run the following command, replacing <package-name> with the name of your package, and "<message>" with your deprecation message:
npm deprecate <package-name> "<message>"

Deprecated the busybox package:
User-added image

Then the deprecation message will be added in the properties tab

User-added image
Once the property is set, the corresponding installation requests for the busybox local package should display the deprecation message.

User-added image