mirror of
https://github.com/nbd-wtf/nostr-tools.git
synced 2025-12-08 16:28:49 +00:00
17 lines
229 B
JavaScript
17 lines
229 B
JavaScript
import pkg from './package.json'
|
|
|
|
export default {
|
|
input: 'index.js',
|
|
output: [
|
|
{
|
|
name: 'nostrtools',
|
|
file: pkg.browser,
|
|
format: 'umd'
|
|
},
|
|
{
|
|
file: pkg.module,
|
|
format: 'es'
|
|
}
|
|
]
|
|
}
|