@unchainedshop/plugins
Version:
Official plugin collection for the Unchained Engine with payment, delivery, and pricing adapters
11 lines (10 loc) • 371 B
JavaScript
import {} from '@unchainedshop/core';
import { DeliveryFreePrice } from "./adapter.js";
export const DeliveryFreePricePlugin = {
key: 'shop.unchained.pricing.delivery-free',
label: 'Free Delivery Pricing Plugin',
version: '1.0.0',
adapters: [DeliveryFreePrice],
};
export default DeliveryFreePricePlugin;
export { DeliveryFreePrice } from "./adapter.js";