This package implements small caps feature support for CKEditor 5.
npm install --save ckeditor5-small-caps
import SmallCaps from 'ckeditor5-small-caps/src/small-caps';
ClassicEditor.builtinPlugins = [
...,
SmallCaps
];
ClassicEditor.defaultConfig = {
toolbar: {
items: [
...
'smallCaps'
]
},
};