Never seen a package does this but like Asaf showed R is very convenient for plotting.
Here is another example:
https://colab.research.google.com/drive/1TZus8et3Wwe6LBSJQaLmjI7GHSGQFNVv?usp=sharing
aa <- c("A", "C", "D", "E", "F", "G", "H", "I", "K", "L", "M", "N", "P", "Q", "R", "S", "T", "V", "W", "Y")
peptide <- sample(aa, 500, TRUE)
positions = c()
for (a in 1: length(aa)) {
for (p in 1:length(peptide)) {
if (aa[a] == peptide[p]) {
positions <- rbind(c(aa[a], p,a), positions)
}
}
}
pos <- positions[,-1]
rownames(pos) <- positions[,1]
plot(pos, pch = 20, yaxt="n")
axis(2, at=pos[,2], labels=rownames(pos), las=2)

Solved! Thank you so much for the idea!
Use "Green checkmark" to accept the answers to provide closure to this thread. You can accept multiple answers as correct.