Ah, need to put dispatch code in a hook…
import { dispatch } from '@wordpress/data';
import { addAction } from '@wordpress/hooks';
addAction('plugins.pluginRegistered', 'amilia/register-programs-entity', (() => {
dispatch( 'core' ).addEntities( [
{
name: 'program',
kind: 'amilia',
baseURL: '/amilia/v1/programs',
},
] );
}));