iota-sdk 0.2.0

The IOTA SDK provides developers with a seamless experience to develop on IOTA by providing account abstractions and clients to interact with node APIs.
Documentation
// Copyright 2021 IOTA Stiftung
// SPDX-License-Identifier: Apache-2.0

export default [{
  input: ['dist/esm/index.js'],
  output: [
    {
      file: 'dist/plugin.js',
      format: 'iife',
      name: 'capacitorPlugin',
      globals: {
        '@capacitor/core': 'capacitorExports',
      },
      sourcemap: true,
      inlineDynamicImports: true,
    },
  ],
  external: ['@capacitor/core'],
},
{
  input: ['dist/esm/lib/index.js'],
  output: [
    {
      file: 'dist/api.js',
    },
  ],
  external: ['@capacitor/core'],
}];