This forks goal is to extend the compatibility and QOL for the 1.20.1 crafting station.
KubeJS tag examples:
ServerEvents.tags('block_entity_type', e => {
// When server whitelist config is enabled, only these blocks work
e.add('craftingstation:whitelisted', [
'minecraft:chest',
'minecraft:trapped_chest',
'supplementaries:sack'
])
// When config is disabled, these are forced to not work
e.add('craftingstation:blacklisted', [
'minecraft:furnace'
])
})